diff --git a/.dockerignore b/.dockerignore deleted file mode 100644 index d25d71bcc9..0000000000 --- a/.dockerignore +++ /dev/null @@ -1,4 +0,0 @@ -.git -.github -resources/materials -CuraEngine \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/featurerequest.yaml b/.github/ISSUE_TEMPLATE/featurerequest.yaml index 83c448fe44..bbdd3908bd 100644 --- a/.github/ISSUE_TEMPLATE/featurerequest.yaml +++ b/.github/ISSUE_TEMPLATE/featurerequest.yaml @@ -1,6 +1,6 @@ name: Feature Request description: Suggest an idea for this project. -labels: "Type: New Feature" +labels: ["Type: New Feature", "Status: Triage"] body: - type: markdown attributes: @@ -41,4 +41,4 @@ body: - type: textarea attributes: label: Additional information & file uploads - description: You can add pictures or files to visualize your feature request in the comments below. \ No newline at end of file + description: You can add pictures or files to visualize your feature request in the comments below. diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000000..a6327de3b6 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,33 @@ +# Description + + + +## Type of change + + + +- [ ] Bug fix (non-breaking change which fixes an issue) +- [ ] New feature (non-breaking change which adds functionality) +- [ ] Printer definition file(s) +- [ ] Translations + +# How Has This Been Tested? + + + +- [ ] Test A +- [ ] Test B + +**Test Configuration**: +* Operating System: + +# Checklist: + + +- [ ] My code follows the style guidelines of this project as described in [UltiMaker Meta](https://github.com/Ultimaker/Meta) and [Cura QML best practices](https://github.com/Ultimaker/Cura/wiki/QML-Best-Practices) +- [ ] I have read the [Contribution guide](https://github.com/Ultimaker/Cura/blob/main/contributing.md) +- [ ] I have commented my code, particularly in hard-to-understand areas +- [ ] I have uploaded any files required to test this change \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 21a41d53af..0000000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: CI -on: - push: - branches: - - master - - 'WIP**' - - '4.*' - - 'CURA-*' - pull_request: -permissions: - contents: read - -jobs: - build: - runs-on: ubuntu-latest - container: ultimaker/cura-build-environment - steps: - - name: Checkout Cura - uses: actions/checkout@v2 - - name: Build - run: docker/build.sh - - name: Test - run: docker/test.sh diff --git a/.github/workflows/conan-package-create.yml b/.github/workflows/conan-package-create.yml new file mode 100644 index 0000000000..701a978cd8 --- /dev/null +++ b/.github/workflows/conan-package-create.yml @@ -0,0 +1,158 @@ +name: Create and Upload Conan package + +on: + workflow_call: + inputs: + project_name: + required: true + type: string + + recipe_id_full: + required: true + type: string + + build_id: + required: true + type: number + + build_info: + required: false + default: true + type: boolean + + recipe_id_latest: + required: false + type: string + + runs_on: + required: true + type: string + + python_version: + required: true + type: string + + conan_config_branch: + required: false + type: string + + conan_logging_level: + required: false + type: string + + conan_clean_local_cache: + required: false + type: boolean + default: false + + conan_upload_community: + required: false + default: true + type: boolean + +env: + CONAN_LOGIN_USERNAME: ${{ secrets.CONAN_USER }} + CONAN_PASSWORD: ${{ secrets.CONAN_PASS }} + CONAN_LOG_RUN_TO_OUTPUT: 1 + CONAN_LOGGING_LEVEL: ${{ inputs.conan_logging_level }} + CONAN_NON_INTERACTIVE: 1 + +jobs: + conan-package-create: + runs-on: ${{ inputs.runs_on }} + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Setup Python and pip + uses: actions/setup-python@v4 + with: + python-version: ${{ inputs.python_version }} + cache: 'pip' + cache-dependency-path: .github/workflows/requirements-conan-package.txt + + - name: Install Python requirements for runner + run: pip install -r https://raw.githubusercontent.com/Ultimaker/Cura/main/.github/workflows/requirements-conan-package.txt + # Note the runner requirements are always installed from the main branch in the Ultimaker/Cura repo + + - name: Use Conan download cache (Bash) + if: ${{ runner.os != 'Windows' }} + run: conan config set storage.download_cache="$HOME/.conan/conan_download_cache" + + - name: Use Conan download cache (Powershell) + if: ${{ runner.os == 'Windows' }} + run: conan config set storage.download_cache="C:\Users\runneradmin\.conan\conan_download_cache" + + - name: Cache Conan local repository packages (Bash) + uses: actions/cache@v3 + if: ${{ runner.os != 'Windows' }} + with: + path: | + $HOME/.conan/data + $HOME/.conan/conan_download_cache + key: conan-${{ inputs.runs_on }}-${{ runner.arch }}-create-cache + + - name: Cache Conan local repository packages (Powershell) + uses: actions/cache@v3 + if: ${{ runner.os == 'Windows' }} + with: + path: | + C:\Users\runneradmin\.conan\data + C:\.conan + C:\Users\runneradmin\.conan\conan_download_cache + key: conan-${{ inputs.runs_on }}-${{ runner.arch }}-create-cache + + - name: Install MacOS system requirements + if: ${{ runner.os == 'Macos' }} + run: brew install autoconf automake ninja + + # 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 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 -y + + - name: Install GCC-12 on ubuntu-22.04 + if: ${{ startsWith(inputs.runs_on, 'ubuntu-22.04') }} + run: | + sudo apt install g++-12 gcc-12 -y + sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 12 + sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 12 + + - name: Use GCC-10 on ubuntu-20.04 + if: ${{ startsWith(inputs.runs_on, 'ubuntu-20.04') }} + run: | + sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 10 + sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-10 10 + + - name: Create the default Conan profile + run: conan profile new default --detect + + - name: Get Conan configuration from branch + if: ${{ inputs.conan_config_branch != '' }} + run: conan config install https://github.com/Ultimaker/conan-config.git -a "-b ${{ inputs.conan_config_branch }}" + + - name: Get Conan configuration + if: ${{ inputs.conan_config_branch == '' }} + run: conan config install https://github.com/Ultimaker/conan-config.git + + - name: Add Cura private Artifactory remote + run: conan remote add cura-private https://ultimaker.jfrog.io/artifactory/api/conan/cura-private True + + - name: Create the Packages + run: conan install ${{ inputs.recipe_id_full }} --build=missing --update + + - name: Upload the Package(s) + if: ${{ always() && inputs.conan_upload_community }} + run: conan upload ${{ inputs.recipe_id_full }} -r cura --all -c + + - name: Upload the Package(s) to the private Artifactory + if: ${{ always() && ! inputs.conan_upload_community }} + run: conan upload ${{ inputs.recipe_id_full }} -r cura-private --all -c diff --git a/.github/workflows/conan-package.yml b/.github/workflows/conan-package.yml new file mode 100644 index 0000000000..9949621251 --- /dev/null +++ b/.github/workflows/conan-package.yml @@ -0,0 +1,140 @@ +--- +name: conan-package + +# Exports the recipe, sources and binaries for Mac, Windows and Linux and upload these to the server such that these can +# be used downstream. +# +# It should run on pushes against main or CURA-* branches, but it will only create the binaries for main and release branches + +on: + workflow_dispatch: + inputs: + create_binaries_windows: + required: true + default: false + description: 'create binaries Windows' + create_binaries_linux: + required: true + default: false + description: 'create binaries Linux' + create_binaries_macos: + required: true + default: false + description: 'create binaries Macos' + + 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: + - main + - 'CURA-*' + - '[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]*' + +env: + CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }} + CONAN_PASSWORD_CURA: ${{ secrets.CONAN_PASS }} + CONAN_LOGIN_USERNAME_CURA_CE: ${{ secrets.CONAN_USER }} + CONAN_PASSWORD_CURA_CE: ${{ secrets.CONAN_PASS }} + CONAN_LOG_RUN_TO_OUTPUT: 1 + CONAN_LOGGING_LEVEL: ${{ inputs.conan_logging_level }} + CONAN_NON_INTERACTIVE: 1 + +permissions: {} +jobs: + conan-recipe-version: + permissions: + contents: read + + uses: ultimaker/cura/.github/workflows/conan-recipe-version.yml@main + with: + project_name: cura + + conan-package-create-linux: + needs: [ conan-recipe-version ] + 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 + sudo apt install g++-12 gcc-12 -y + sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 12 + sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 12 + + - 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 + + - name: Create the Packages + run: conan create . ${{ needs.conan-recipe-version.outputs.recipe_id_full }} --build=missing --update -o ${{ needs.conan-recipe-version.outputs.project_name }}:devtools=True + + - name: Create the latest alias + if: always() + run: conan alias ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} ${{ needs.conan-recipe-version.outputs.recipe_id_full }} + + - name: Upload the Package(s) + if: always() + run: | + conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_full }} -r cura --all -c + conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} -r cura -c + + notify-create: + if: ${{ always() && (github.event_name == 'push' && (github.ref_name == 'main' || github.ref_name == 'master' || needs.conan-recipe-version.outputs.is_release_branch == 'true')) }} + needs: [ conan-recipe-version, conan-package-create-linux ] + + uses: ultimaker/cura/.github/workflows/notify.yml@main + with: + success: ${{ contains(join(needs.*.result, ','), 'success') }} + success_title: "New binaries created in ${{ github.repository }}" + success_body: "Created binaries for ${{ needs.conan-recipe-version.outputs.recipe_id_full }}" + failure_title: "Failed to create binaries in ${{ github.repository }}" + failure_body: "Failed to created binaries for ${{ needs.conan-recipe-version.outputs.recipe_id_full }}" + secrets: inherit diff --git a/.github/workflows/conan-recipe-export.yml b/.github/workflows/conan-recipe-export.yml new file mode 100644 index 0000000000..869a9de59e --- /dev/null +++ b/.github/workflows/conan-recipe-export.yml @@ -0,0 +1,106 @@ +name: Export Conan Recipe to server + +on: + workflow_call: + inputs: + recipe_id_full: + required: true + type: string + + recipe_id_latest: + required: false + type: string + + runs_on: + required: true + type: string + + python_version: + required: true + type: string + + conan_config_branch: + required: false + type: string + + conan_logging_level: + required: false + type: string + + conan_export_binaries: + required: false + type: boolean + + conan_upload_community: + required: false + default: true + type: boolean + +env: + CONAN_LOGIN_USERNAME: ${{ secrets.CONAN_USER }} + CONAN_PASSWORD: ${{ secrets.CONAN_PASS }} + CONAN_LOG_RUN_TO_OUTPUT: 1 + CONAN_LOGGING_LEVEL: ${{ inputs.conan_logging_level }} + CONAN_NON_INTERACTIVE: 1 + +jobs: + package-export: + runs-on: ${{ inputs.runs_on }} + + steps: + - name: Checkout project + uses: actions/checkout@v3 + + - name: Setup Python and pip + uses: actions/setup-python@v4 + with: + python-version: ${{ inputs.python_version }} + cache: 'pip' + cache-dependency-path: .github/workflows/requirements-conan-package.txt + + - name: Install Python requirements and Create default Conan profile + run: | + pip install -r https://raw.githubusercontent.com/Ultimaker/Cura/main/.github/workflows/requirements-conan-package.txt + conan profile new default --detect + # Note the runner requirements are always installed from the main branch in the Ultimaker/Cura repo + + - name: Cache Conan local repository packages + uses: actions/cache@v3 + with: + path: $HOME/.conan/data + key: ${{ runner.os }}-conan-export-cache + + - name: Get Conan configuration from branch + if: ${{ inputs.conan_config_branch != '' }} + run: conan config install https://github.com/Ultimaker/conan-config.git -a "-b ${{ inputs.conan_config_branch }}" + + - name: Get Conan configuration + if: ${{ inputs.conan_config_branch == '' }} + run: conan config install https://github.com/Ultimaker/conan-config.git + + - name: Add Cura private Artifactory remote + run: conan remote add cura-private https://ultimaker.jfrog.io/artifactory/api/conan/cura-private True + + - name: Export the Package (binaries) + if: ${{ inputs.conan_export_binaries }} + run: conan create . ${{ inputs.recipe_id_full }} --build=missing --update + + - name: Export the Package + if: ${{ !inputs.conan_export_binaries }} + run: conan export . ${{ inputs.recipe_id_full }} + + - name: Create the latest alias + if: always() + run: conan alias ${{ inputs.recipe_id_latest }} ${{ inputs.recipe_id_full }} + + - name: Upload the Package(s) + if: ${{ always() && inputs.conan_upload_community }} + run: | + conan upload ${{ inputs.recipe_id_full }} -r cura --all -c + conan upload ${{ inputs.recipe_id_latest }} -r cura -c + + - name: Upload the Package(s) to the private Artifactory + if: ${{ always() && ! inputs.conan_upload_community }} + run: | + conan upload ${{ inputs.recipe_id_full }} -r cura-private --all -c + conan upload ${{ inputs.recipe_id_latest }} -r cura-private -c diff --git a/.github/workflows/conan-recipe-version.yml b/.github/workflows/conan-recipe-version.yml new file mode 100644 index 0000000000..78ff37b712 --- /dev/null +++ b/.github/workflows/conan-recipe-version.yml @@ -0,0 +1,223 @@ +name: Get Conan Recipe Version + +on: + workflow_call: + inputs: + project_name: + required: true + type: string + + user: + required: false + default: ultimaker + type: string + + additional_buildmetadata: + required: false + default: "" + type: string + + outputs: + recipe_id_full: + description: "The full Conan recipe id: /@/" + value: ${{ jobs.get-semver.outputs.recipe_id_full }} + + recipe_id_latest: + description: "The full Conan recipe aliased (latest) id: /(latest)@/" + value: ${{ jobs.get-semver.outputs.recipe_id_latest }} + + recipe_semver_full: + description: "The full semver ..-+" + value: ${{ jobs.get-semver.outputs.semver_full }} + + is_release_branch: + description: "is current branch a release branch?" + value: ${{ jobs.get-semver.outputs.release_branch }} + + user: + description: "The conan user" + value: ${{ jobs.get-semver.outputs.user }} + + channel: + description: "The conan channel" + value: ${{ jobs.get-semver.outputs.channel }} + + project_name: + description: "The conan projectname" + value: ${{ inputs.project_name }} + +jobs: + get-semver: + + runs-on: ubuntu-latest + + outputs: + recipe_id_full: ${{ steps.get-conan-broadcast-data.outputs.recipe_id_full }} + recipe_id_latest: ${{ steps.get-conan-broadcast-data.outputs.recipe_id_latest }} + semver_full: ${{ steps.get-conan-broadcast-data.outputs.semver_full }} + is_release_branch: ${{ steps.get-conan-broadcast-data.outputs.is_release_branch }} + user: ${{ steps.get-conan-broadcast-data.outputs.user }} + channel: ${{ steps.get-conan-broadcast-data.outputs.channel }} + + steps: + - name: Checkout repo + uses: actions/checkout@v3 + if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} + with: + fetch-depth: 0 + ref: ${{ github.head_ref }} + + - name: Checkout repo PR + uses: actions/checkout@v3 + if: ${{ github.event.pull_request.head.repo.full_name != github.repository }} + with: + fetch-depth: 0 + ref: ${{ github.base_ref }} + + - name: Setup Python and pip + uses: actions/setup-python@v4 + with: + python-version: "3.10.x" + cache: 'pip' + cache-dependency-path: .github/workflows/requirements-conan-package.txt + + - name: Install Python requirements and Create default Conan profile + run: | + pip install -r .github/workflows/requirements-conan-package.txt + pip install gitpython + + - id: get-conan-broadcast-data + name: Get Conan broadcast data + run: | + import subprocess + import os + from conan.tools.scm import Version + from conan.errors import ConanException + from git import Repo + + repo = Repo('.') + user = "${{ inputs.user }}".lower() + project_name = "${{ inputs.project_name }}" + event_name = "${{ github.event_name }}" + issue_number = "${{ github.ref }}".split('/')[2] + is_tag = "${{ github.ref_type }}" == "tag" + is_release_branch = False + ref_name = "${{ github.base_ref }}" if event_name == "pull_request" else "${{ github.ref_name }}" + buildmetadata = "" if "${{ inputs.additional_buildmetadata }}" == "" else "${{ inputs.additional_buildmetadata }}_" + + # FIXME: for when we push a tag (such as an release) + channel = "testing" + if is_tag: + branch_version = Version(ref_name) + is_release_branch = True + channel = "_" + user = "_" + actual_version = f"{branch_version}" + else: + try: + branch_version = Version(repo.active_branch.name) + except ConanException: + branch_version = Version('0.0.0') + if ref_name == f"{branch_version.major}.{branch_version.minor}": + channel = 'stable' + is_release_branch = True + elif ref_name in ("main", "master"): + channel = 'testing' + else: + channel = "_".join(repo.active_branch.name.replace("-", "_").split("_")[:2]).lower() + + if "pull_request" in event_name: + channel = f"pr_{issue_number}" + + # %% Get the actual version + latest_branch_version = Version("0.0.0") + latest_branch_tag = None + for tag in repo.active_branch.repo.tags: + if str(tag).startswith("firmware") or str(tag).startswith("master"): + continue # Quick-fix for the versioning scheme name of the embedded team in fdm_materials(_private) repo + try: + version = Version(tag) + except ConanException: + continue + if version > latest_branch_version and version < Version("6.0.0"): + # FIXME: stupid old Cura tags 13.04 etc. keep popping up, als the fdm_material tag for firmware are messing with this + latest_branch_version = version + latest_branch_tag = repo.tag(tag) + + if latest_branch_tag: + # %% Get the actual version + no_commits = 0 + for commit in repo.iter_commits("HEAD"): + if commit == latest_branch_tag.commit: + break + no_commits += 1 + latest_branch_version_prerelease = latest_branch_version.pre + if latest_branch_version.pre and not "." in str(latest_branch_version.pre): + # The prerealese did not contain a version number, default it to 1 + latest_branch_version_prerelease = f"{latest_branch_version.pre}.1" + if event_name == "pull_request": + actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{latest_branch_version.patch}-{str(latest_branch_version_prerelease).lower()}+{buildmetadata}pr_{issue_number}_{no_commits}" + channel_metadata = f"{channel}_{no_commits}" + else: + if channel in ("stable", "_", ""): + channel_metadata = f"{no_commits}" + else: + channel_metadata = f"{channel}_{no_commits}" + if is_release_branch: + if latest_branch_version.pre == "" and branch_version > latest_branch_version: + actual_version = f"{branch_version.major}.{branch_version.minor}.0-beta.1+{buildmetadata}{channel_metadata}" + elif latest_branch_version.pre == "": + # An actual full release has been created, we are working on patch + bump_up_patch = int(str(latest_branch_version.patch)) + 1 + actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{bump_up_patch}-beta.1+{buildmetadata}{channel_metadata}" + elif latest_branch_version.pre is None: + actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{int(latest_branch_version.patch.value) + 1}-beta.1+{buildmetadata}{channel_metadata}" + else: + # An beta release has been created we are working toward a next beta or full release + bump_up_release_tag = int(str(latest_branch_version.pre).split('.')[1]) + 1 + actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{latest_branch_version.patch}-{str(latest_branch_version.pre).split('.')[0]}.{bump_up_release_tag}+{buildmetadata}{channel_metadata}" + else: + max_branches_version = Version("0.0.0") + branches_no_commits = no_commits + for branch in repo.references: + try: + if "remotes/origin" in branch.abspath: + b_version = Version(branch.name.split("/")[-1]) + if b_version < Version("6.0.0") and b_version > max_branches_version: + max_branches_version = b_version + branches_no_commits = repo.commit().count() - branch.commit.count() + except: + pass + if max_branches_version > latest_branch_version: + actual_version = f"{max_branches_version.major}.{int(str(max_branches_version.minor)) + 1}.0-alpha+{buildmetadata}{channel}_{branches_no_commits}" + else: + actual_version = f"{latest_branch_version.major}.{int(str(latest_branch_version.minor)) + 1}.0-alpha+{buildmetadata}{channel_metadata}" + + # %% Set the environment output + 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"name={project_name}\n") + f.writelines(f"version={actual_version}\n") + f.writelines(f"channel={channel}\n") + f.writelines(f"recipe_id_full={project_name}/{actual_version}@{user}/{channel}\n") + f.writelines(f"recipe_id_latest={project_name}/latest@{user}/{channel}\n") + f.writelines(f"semver_full={actual_version}\n") + f.writelines(f"is_release_branch={str(is_release_branch).lower()}\n") + + summary_env = os.environ["GITHUB_STEP_SUMMARY"] + with open(summary_env, "w") as f: + f.writelines(f"# {project_name}\n") + f.writelines(f"name={project_name}\n") + f.writelines(f"version={actual_version}\n") + f.writelines(f"channel={channel}\n") + f.writelines(f"recipe_id_full={project_name}/{actual_version}@{user}/{channel}\n") + f.writelines(f"recipe_id_latest={project_name}/latest@{user}/{channel}\n") + f.writelines(f"semver_full={actual_version}\n") + f.writelines(f"is_release_branch={str(is_release_branch).lower()}\n") + shell: python diff --git a/.github/workflows/cura-all-installers.yml b/.github/workflows/cura-all-installers.yml new file mode 100644 index 0000000000..4729c4198a --- /dev/null +++ b/.github/workflows/cura-all-installers.yml @@ -0,0 +1,151 @@ +name: Cura All Installers +run-name: ${{ inputs.cura_conan_version }} for exe ${{ inputs.build_windows_exe }}, msi ${{ inputs.build_windows_msi }}, dmg ${{ inputs.build_macos }}, pkg ${{ inputs.build_macos_installer }}, appimage ${{ inputs.build_linux }} - enterprise ${{ inputs.enterprise }} + +on: + workflow_dispatch: + inputs: + cura_conan_version: + description: 'Cura Conan Version' + default: 'cura/latest@ultimaker/testing' + required: true + type: string + conan_args: + description: 'Conan args: eq.: --require-override' + default: '' + required: false + type: string + conan_config: + description: 'Conan config branch to use' + 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 + installer: + description: 'Create the installer' + default: true + required: true + type: boolean + build_windows_exe: + description: 'Build for Windows exe' + default: false + required: true + type: boolean + build_windows_msi: + description: 'Build for msi+pkg' + default: true + required: true + type: boolean + build_linux: + description: 'Build for Linux' + default: true + required: true + type: boolean + build_macos: + description: 'Build dmg for MacOS' + default: true + required: true + type: boolean + + # Run the nightly at 3:25 UTC on working days + schedule: + - cron: '25 3 * * 1-5' + +jobs: + windows-installer-create-exe: + if: ${{ inputs.build_windows_exe }} + uses: ./.github/workflows/cura-installer.yml + with: + platform: 'windows-2022' + os_name: 'win64' + cura_conan_version: ${{ inputs.cura_conan_version }} + conan_args: ${{ inputs.conan_args }} + conan_config: ${{ inputs.conan_config }} + enterprise: ${{ inputs.enterprise }} + staging: ${{ inputs.staging }} + installer: ${{ inputs.installer }} + msi_installer: false + secrets: inherit + + windows-installer-create-msi: + if: ${{ inputs.build_windows_msi }} + uses: ./.github/workflows/cura-installer.yml + with: + platform: 'windows-2022' + os_name: 'win64' + cura_conan_version: ${{ inputs.cura_conan_version }} + conan_args: ${{ inputs.conan_args }} + conan_config: ${{ inputs.conan_config }} + enterprise: ${{ inputs.enterprise }} + staging: ${{ inputs.staging }} + installer: ${{ inputs.installer }} + msi_installer: true + secrets: inherit + + linux-installer-create: + if: ${{ inputs.build_linux }} + uses: ./.github/workflows/cura-installer.yml + with: + platform: 'ubuntu-20.04' + os_name: 'linux' + cura_conan_version: ${{ inputs.cura_conan_version }} + conan_args: ${{ inputs.conan_args }} + conan_config: ${{ inputs.conan_config }} + enterprise: ${{ inputs.enterprise }} + staging: ${{ inputs.staging }} + installer: ${{ inputs.installer }} + msi_installer: false + secrets: inherit + + linux-modern-installer-create: + if: ${{ inputs.build_linux }} + uses: ./.github/workflows/cura-installer.yml + with: + platform: 'ubuntu-22.04' + os_name: 'linux-modern' + cura_conan_version: ${{ inputs.cura_conan_version }} + conan_args: ${{ inputs.conan_args }} + conan_config: ${{ inputs.conan_config }} + enterprise: ${{ inputs.enterprise }} + staging: ${{ inputs.staging }} + installer: ${{ inputs.installer }} + msi_installer: false + secrets: inherit + + macos-dmg-create: + if: ${{ inputs.build_macos }} + uses: ./.github/workflows/cura-installer.yml + with: + platform: 'macos-11' + os_name: 'mac' + cura_conan_version: ${{ inputs.cura_conan_version }} + conan_args: ${{ inputs.conan_args }} + conan_config: ${{ inputs.conan_config }} + enterprise: ${{ inputs.enterprise }} + staging: ${{ inputs.staging }} + installer: ${{ inputs.installer }} + msi_installer: false + secrets: inherit + + macos-installer-create: + if: ${{ inputs.build_macos }} + uses: ./.github/workflows/cura-installer.yml + with: + platform: 'macos-11' + os_name: 'mac' + cura_conan_version: ${{ inputs.cura_conan_version }} + conan_args: ${{ inputs.conan_args }} + conan_config: ${{ inputs.conan_config }} + enterprise: ${{ inputs.enterprise }} + staging: ${{ inputs.staging }} + installer: ${{ inputs.installer }} + msi_installer: true + secrets: inherit diff --git a/.github/workflows/cura-installer.yml b/.github/workflows/cura-installer.yml index 11e9b4979b..998ef067f7 100644 --- a/.github/workflows/cura-installer.yml +++ b/.github/workflows/cura-installer.yml @@ -1,36 +1,54 @@ name: Cura Installer +run-name: ${{ inputs.cura_conan_version }} for ${{ inputs.platform }} by @${{ github.actor }} on: - workflow_dispatch: + workflow_call: inputs: + platform: + description: 'Selected Installer OS' + default: 'ubuntu-20.04' + required: true + type: string + os_name: + description: 'OS Friendly Name' + default: 'linux' + required: true + type: string cura_conan_version: description: 'Cura Conan Version' - # Fixme: default to cura/latest@testing (which is main) - default: 'cura/latest@ultimaker/stable' + default: 'cura/latest@ultimaker/testing' required: true + type: string + conan_args: + description: 'Conan args: eq.: --require-override' + default: '' + required: false + type: string conan_config: description: 'Conan config branch to use' default: '' required: false + type: string enterprise: description: 'Build Cura as an Enterprise edition' - required: true default: false + required: true type: boolean staging: description: 'Use staging API' - required: true default: false + required: true type: boolean installer: description: 'Create the installer' + default: true + required: true + type: boolean + msi_installer: + description: 'Create the msi' + default: false required: true - default: false type: boolean - -# Run the nightly at 5:25 UTC on working days - schedule: - - cron: '25 3 * * 1-5' env: CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }} @@ -44,19 +62,19 @@ env: MAC_NOTARIZE_USER: ${{ secrets.MAC_NOTARIZE_USER }} MAC_NOTARIZE_PASS: ${{ secrets.MAC_NOTARIZE_PASS }} MACOS_CERT_P12: ${{ secrets.MACOS_CERT_P12 }} - MACOS_CERT_PASS: ${{ secrets.MACOS_CERT_PASS }} + MACOS_CERT_INSTALLER_P12: ${{ secrets.MACOS_CERT_INSTALLER_P12 }} MACOS_CERT_USER: ${{ secrets.MACOS_CERT_USER }} GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} MACOS_CERT_PASSPHRASE: ${{ secrets.MACOS_CERT_PASSPHRASE }} + WIN_CERT_INSTALLER_CER: ${{ secrets.WIN_CERT_INSTALLER_CER }} + WIN_CERT_INSTALLER_CER_PASS: ${{ secrets.WIN_CERT_INSTALLER_CER_PASS }} + CURA_CONAN_VERSION: ${{ inputs.cura_conan_version }} + ENTERPRISE: ${{ inputs.enterprise }} + STAGING: ${{ inputs.staging }} jobs: cura-installer-create: - runs-on: ${{ matrix.os }} - - strategy: - fail-fast: false - matrix: - os: [ macos-10.15, windows-2022, ubuntu-20.04 ] + runs-on: ${{ inputs.platform }} steps: - name: Checkout @@ -69,10 +87,9 @@ jobs: cache: 'pip' cache-dependency-path: .github/workflows/requirements-conan-package.txt - - name: Install Python requirements and Create default Conan profile - run: | - pip install -r .github/workflows/requirements-conan-package.txt - conan profile new default --detect + - name: Install Python requirements for runner + run: pip install -r https://raw.githubusercontent.com/Ultimaker/Cura/main/.github/workflows/requirements-conan-package.txt + # Note the runner requirements are always installed from the main branch in the Ultimaker/Cura repo - name: Use Conan download cache (Bash) if: ${{ runner.os != 'Windows' }} @@ -89,7 +106,7 @@ jobs: path: | $HOME/.conan/data $HOME/.conan/conan_download_cache - key: conan-${{ runner.os }}-${{ runner.arch }} + key: conan-${{ runner.os }}-${{ runner.arch }}-installer-cache - name: Cache Conan local repository packages (Powershell) uses: actions/cache@v3 @@ -99,46 +116,96 @@ jobs: C:\Users\runneradmin\.conan\data C:\.conan C:\Users\runneradmin\.conan\conan_download_cache - key: conan-${{ runner.os }}-${{ runner.arch }} + key: conan-${{ runner.os }}-${{ runner.arch }}-installer-cache - name: Install MacOS system requirements if: ${{ runner.os == 'Macos' }} - run: brew install autoconf automake ninja + run: brew install autoconf automake ninja create-dmg # Delete create-dmg when deprecating dmg + - name: Hack needed specifically for ubuntu-22.04 from mid-Feb 2023 onwards + if: ${{ runner.os == 'Linux' && startsWith(inputs.platform, 'ubuntu-22.04') }} + run: sudo apt remove libodbc2 libodbcinst2 unixodbc-common -y + + # 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 apt install build-essential checkinstall 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 -y + 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 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 -y wget --no-check-certificate --quiet https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage -O $GITHUB_WORKSPACE/appimagetool chmod +x $GITHUB_WORKSPACE/appimagetool echo "APPIMAGETOOL_LOCATION=$GITHUB_WORKSPACE/appimagetool" >> $GITHUB_ENV + - name: Install GCC-12 on ubuntu-22.04 + if: ${{ startsWith(inputs.platform, 'ubuntu-22.04') }} + run: | + sudo apt install g++-12 gcc-12 -y + sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 12 + sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 12 + + - name: Use GCC-10 on ubuntu-20.04 + if: ${{ startsWith(inputs.platform, 'ubuntu-20.04') }} + run: | + sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 10 + sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-10 10 + + - name: Create the default Conan profile + run: conan profile new default --detect + - name: Configure GPG Key Linux (Bash) if: ${{ runner.os == 'Linux' }} run: echo -n "$GPG_PRIVATE_KEY" | base64 --decode | gpg --import - - name: Configure Macos keychain (Bash) + - name: Configure Macos keychain Developer Cert(Bash) + id: macos-keychain-developer-cert if: ${{ runner.os == 'Macos' }} - run: | - CERTIFICATE_PATH=$RUNNER_TEMP/um_keychain.p12 - echo -n "$MACOS_CERT_P12" | base64 --decode --output $CERTIFICATE_PATH - security import $CERTIFICATE_PATH -p $MACOS_CERT_PASSPHRASE -A - security unlock -p $MACOS_CERT_USER $CERTIFICATE_PATH + uses: apple-actions/import-codesign-certs@v1 + with: + keychain-password: ${{ secrets.MACOS_KEYCHAIN_PASSWORD }} + p12-file-base64: ${{ secrets.MACOS_CERT_P12 }} + p12-password: ${{ secrets.MACOS_CERT_PASSPHRASE }} - - name: Clean Conan local cache - if: ${{ inputs.conan_clean_local_cache }} - run: conan remove "*" -f + - name: Configure Macos keychain Installer Cert (Bash) + id: macos-keychain-installer-cert + if: ${{ runner.os == 'Macos' }} + uses: apple-actions/import-codesign-certs@v1 + with: + keychain-password: ${{ secrets.MACOS_KEYCHAIN_PASSWORD }} + create-keychain: false # keychain is created in previous use of action. + p12-file-base64: ${{ secrets.MACOS_CERT_INSTALLER_P12 }} + p12-password: ${{ secrets.MACOS_CERT_PASSPHRASE }} + + - name: Create PFX certificate from BASE64_PFX_CONTENT secret + if: ${{ runner.os == 'Windows' }} + id: create-pfx + env: + PFX_CONTENT: ${{ secrets.WIN_CERT_INSTALLER_CER }} + run: | + $pfxPath = Join-Path -Path $env:RUNNER_TEMP -ChildPath "cert.pfx"; + $encodedBytes = [System.Convert]::FromBase64String($env:PFX_CONTENT); + Set-Content $pfxPath -Value $encodedBytes -AsByteStream; + echo "PFX_PATH=$pfxPath" >> $env:GITHUB_OUTPUT; - name: Get Conan configuration from branch - if: ${{ inputs.conan_config_branch != '' }} - run: conan config install https://github.com/Ultimaker/conan-config.git -a "-b ${{ inputs.conan_config_branch }}" + if: ${{ inputs.conan_config != '' }} + run: conan config install https://github.com/Ultimaker/conan-config.git -a "-b ${{ inputs.conan_config }}" - name: Get Conan configuration - if: ${{ inputs.conan_config_branch == '' }} + if: ${{ inputs.conan_config == '' }} run: conan config install https://github.com/Ultimaker/conan-config.git - - name: Create the Packages - run: conan install ${{ inputs.cura_conan_version }} --build=missing --update -c tools.env.virtualenv:powershell=True -if cura_inst -g VirtualPythonEnv -o cura:enterprise=${{ inputs.enterprise }} -o cura:staging=${{ inputs.staging }} + - name: Create the Packages (Bash) + if: ${{ runner.os != 'Windows' }} + run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING --json "cura_inst/conan_install_info.json" + + - name: Create the Packages (Powershell) + if: ${{ runner.os == 'Windows' }} + run: conan install $Env:CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$Env:ENTERPRISE -o cura:staging=$Env:STAGING --json "cura_inst/conan_install_info.json" - name: Set Environment variables for Cura (bash) if: ${{ runner.os != 'Windows' }} @@ -149,67 +216,157 @@ jobs: - name: Set Environment variables for Cura (Powershell) if: ${{ runner.os == 'Windows' }} run: | + echo "${Env:WIX}\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append .\cura_inst\Scripts\activate_github_actions_env.ps1 .\cura_inst\Scripts\activate_github_actions_version_env.ps1 + - name: Unlock Macos keychain (Bash) + if: ${{ runner.os == 'Macos' }} + run: security unlock -p $TEMP_KEYCHAIN_PASSWORD signing_temp.keychain + env: + TEMP_KEYCHAIN_PASSWORD: ${{ steps.macos-keychain-developer-cert.outputs.keychain-password }} + + # FIXME: This is a workaround to ensure that we use and pack a shared library for OpenSSL 1.1.1l. We currently compile + # OpenSSL statically for CPython, but our Python Dependenies (such as PyQt6) require a shared library. + # Because Conan won't allow for building the same library with two different options (easily) we need to install it explicitly + # and do a manual copy to the VirtualEnv, such that Pyinstaller can find it. + + - name: Install OpenSSL shared + run: conan install openssl/1.1.1l@_/_ --build=missing --update -o openssl:shared=True -g deploy + + - name: Copy OpenSSL shared (Bash) + if: ${{ runner.os != 'Windows' }} + run: | + cp ./openssl/lib/*.so* ./cura_inst/bin/ || true + cp ./openssl/lib/*.dylib* ./cura_inst/bin/ || true + + - name: Copy OpenSSL shared (Powershell) + if: ${{ runner.os == 'Windows' }} + run: | + cp openssl/bin/*.dll ./cura_inst/Scripts/ + cp openssl/lib/*.lib ./cura_inst/Lib/ + - name: Create the Cura dist - run: pyinstaller ./cura_inst/Ultimaker-Cura.spec + run: pyinstaller ./cura_inst/UltiMaker-Cura.spec + + - name: Output the name file name and extension + id: filename + shell: python + run: | + import os + enterprise = "-Enterprise" if "${{ inputs.enterprise }}" == "true" else "" + installer_filename = f"UltiMaker-Cura-{os.getenv('CURA_VERSION_FULL')}{enterprise}-${{ inputs.os_name }}" + if "${{ runner.os }}" == "Windows": + installer_ext = "msi" if "${{ inputs.msi_installer }}" == "true" else "exe" + elif "${{ runner.os }}" == "macOS": + installer_ext = "pkg" if "${{ inputs.msi_installer }}" == "true" else "dmg" + else: + installer_ext = "AppImage" + 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"INSTALLER_FILENAME={installer_filename}\n") + f.writelines(f"INSTALLER_EXT={installer_ext}\n") + f.writelines(f"FULL_INSTALLER_FILENAME={installer_filename}.{installer_ext}\n") + + - name: Summarize the used Conan dependencies + shell: python + run: | + import os + import json + from pathlib import Path + + conan_install_info_path = Path("cura_inst/conan_install_info.json") + conan_info = {"installed": []} + if os.path.exists(conan_install_info_path): + with open(conan_install_info_path, "r") as f: + conan_info = json.load(f) + sorted_deps = sorted([dep["recipe"]["id"].replace('#', r' rev: ') for dep in conan_info["installed"]]) + + summary_env = os.environ["GITHUB_STEP_SUMMARY"] + content = "" + if os.path.exists(summary_env): + with open(summary_env, "r") as f: + content = f.read() + + with open(summary_env, "w") as f: + f.write(content) + f.writelines("# ${{ steps.filename.outputs.FULL_INSTALLER_FILENAME }} uses:\n") + for dep in sorted_deps: + f.writelines(f"`{dep}`\n") - name: Archive the artifacts (bash) - if: ${{ github.event.inputs.installer == 'false' && runner.os != 'Windows' }} - run: tar -zcf "./Ultimaker-Cura-$CURA_VERSION_FULL-${{ runner.os }}-${{ runner.arch }}.tar.gz" "./Ultimaker-Cura/" + if: ${{ !inputs.installer && runner.os != 'Windows' }} + run: tar -zcf "./${{ steps.filename.outputs.INSTALLER_FILENAME }}.tar.gz" "./UltiMaker-Cura/" working-directory: dist - name: Archive the artifacts (Powershell) - if: ${{ github.event.inputs.installer == 'false' && runner.os == 'Windows' }} - run: Compress-Archive -Path ".\Ultimaker-Cura" -DestinationPath ".\Ultimaker-Cura-$Env:CURA_VERSION_FULL-${{ runner.os }}-${{ runner.arch }}.zip" + if: ${{ !inputs.installer && runner.os == 'Windows' }} + run: Compress-Archive -Path ".\UltiMaker-Cura" -DestinationPath ".\${{ steps.filename.outputs.INSTALLER_FILENAME }}.zip" working-directory: dist - name: Create the Windows exe installer (Powershell) - if: ${{ github.event.inputs.installer == 'true' && runner.os == 'Windows' }} + if: ${{ inputs.installer && runner.os == 'Windows' && !inputs.msi_installer }} run: | - python ..\cura_inst\packaging\NSIS\nsis-configurator.py ".\Ultimaker-Cura" "..\cura_inst\packaging\NSIS\Ultimaker-Cura.nsi.jinja" "Ultimaker Cura" "Ultimaker-Cura.exe" "$Env:CURA_VERSION_MAJOR" "$Env:CURA_VERSION_MINOR" "$Env:CURA_VERSION_PATCH" "$Env:CURA_VERSION_BUILD" "Ultimaker B.V." "https://ultimaker.com" "..\cura_inst\packaging\cura_license.txt" "LZMA" "..\cura_inst\packaging\NSIS\cura_banner_nsis.bmp" "..\cura_inst\packaging\icons\Cura.ico" "Ultimaker-Cura-$Env:CURA_VERSION_FULL-${{ runner.os }}-${{ runner.arch }}.exe" - makensis /V2 /P4 Ultimaker-Cura.nsi + python ..\cura_inst\packaging\NSIS\create_windows_installer.py ../cura_inst . "${{ steps.filename.outputs.FULL_INSTALLER_FILENAME }}" + working-directory: dist + + - name: Create the Windows msi installer (Powershell) + if: ${{ inputs.installer && runner.os == 'Windows' && inputs.msi_installer }} + run: | + python ..\cura_inst\packaging\msi\create_windows_msi.py ..\cura_inst .\UltiMaker-Cura "${{ steps.filename.outputs.FULL_INSTALLER_FILENAME }}" "$Env:CURA_APP_NAME" + working-directory: dist + + - name: Sign the Windows exe installer (Powershell) + if: ${{ inputs.installer && runner.os == 'Windows' && !inputs.msi_installer }} + env: + PFX_PATH: ${{ steps.create-pfx.outputs.PFX_PATH }} + run: | + & "C:/Program Files (x86)/Windows Kits/10/bin/10.0.17763.0/x86/signtool.exe" sign /f $Env:PFX_PATH /p "$Env:WIN_CERT_INSTALLER_CER_PASS" /fd SHA256 /t http://timestamp.digicert.com "${{ steps.filename.outputs.FULL_INSTALLER_FILENAME }}" + working-directory: dist + + - name: Sign the Windows msi installer (Powershell) + if: ${{ inputs.installer && runner.os == 'Windows' && inputs.msi_installer }} + env: + PFX_PATH: ${{ steps.create-pfx.outputs.PFX_PATH }} + run: | + & "C:/Program Files (x86)/Windows Kits/10/bin/10.0.17763.0/x86/signtool.exe" sign /f $Env:PFX_PATH /p "$Env:WIN_CERT_INSTALLER_CER_PASS" /fd SHA256 /t http://timestamp.digicert.com "${{ steps.filename.outputs.FULL_INSTALLER_FILENAME }}" working-directory: dist - name: Create the Linux AppImage (Bash) - if: ${{ github.event.inputs.installer == 'true' && runner.os == 'Linux' }} - run: python ../cura_inst/packaging/AppImage/create_appimage.py ./Ultimaker-Cura $CURA_VERSION_FULL + if: ${{ inputs.installer && runner.os == 'Linux' }} + run: python ../cura_inst/packaging/AppImage/create_appimage.py ./UltiMaker-Cura $CURA_VERSION_FULL "${{ steps.filename.outputs.FULL_INSTALLER_FILENAME }}" working-directory: dist - - name: Create the MacOS dmg (Bash) alternative + - name: Create the MacOS dmg and/or pkg (Bash) if: ${{ github.event.inputs.installer == 'true' && runner.os == 'Macos' }} - run: create-dmg --window-pos 640 360 --volicon "../cura_inst/packaging/icons/VolumeIcons_Cura.icns" --window-size 690 503 --icon-size 90 --icon "Ultimaker-Cura.app" 169 272 --app-drop-link 520 272 --eula "../cura_inst/packaging/cura_license.txt" --background "../cura_inst/packaging/icons/cura_background_dmg.png" --rez Rez "./Ultimaker-Cura.dmg" "./Ultimaker-Cura.app" + run: python ../cura_inst/packaging/MacOS/build_macos.py ../cura_inst . $CURA_CONAN_VERSION "${{ steps.filename.outputs.FULL_INSTALLER_FILENAME }}" "$CURA_APP_NAME" working-directory: dist - - name: Sign the MacOS dmg (Bash) alternative - if: ${{ github.event.inputs.installer == 'true' && runner.os == 'Macos' }} - run: codesign -s "$CODESIGN_IDENTITY" --timestamp -i "nl.ultimaker.cura.dmg" "./Ultimaker-Cura.dmg" - working-directory: dist - - - name: Notarize the MacOS dmg (Bash) alternative - if: ${{ github.event.inputs.installer == 'true' && runner.os == 'Macos' }} - run: xcrun altool --notarize-app --primary-bundle-id "nl.ultimaker.cura" --username "$MAC_NOTARIZE_USER" --password "$MAC_NOTARIZE_PASS" --file "./Ultimaker-Cura.dmg" - working-directory: dist - - - name: Create the MacOS dmg (Bash) - if: ${{ github.event.inputs.installer == 'true' && runner.os == 'Macos' }} - run: python ../cura_inst/packaging/dmg/dmg_sign_notarize.py - working-directory: dist - env: - SOURCE_DIR: ${{ env.GITHUB_WORKSPACE }}/cura_inst - DIST_DIR: ${{ env.GITHUB_WORKSPACE }}/dist - - name: Upload the artifacts uses: actions/upload-artifact@v3 with: - name: Ultimaker-Cura-${{ env.CURA_VERSION_FULL }}-${{ runner.os }}-${{ runner.arch }} + name: ${{ steps.filename.outputs.INSTALLER_FILENAME }}-${{ steps.filename.outputs.INSTALLER_EXT }} path: | dist/*.tar.gz dist/*.zip - dist/*.exe - dist/*.msi - dist/*.dmg - dist/*.AppImage + dist/${{ steps.filename.outputs.FULL_INSTALLER_FILENAME }} dist/*.asc - retention-days: 2 + retention-days: 5 + + notify-export: + if: ${{ always() }} + needs: [ cura-installer-create ] + + uses: ultimaker/cura/.github/workflows/notify.yml@main + with: + success: ${{ contains(join(needs.*.result, ','), 'success') }} + success_title: "Create the Cura distributions" + success_body: "Installers for ${{ inputs.cura_conan_version }}" + failure_title: "Failed to create the Cura distributions" + failure_body: "Failed to create at least 1 installer for ${{ inputs.cura_conan_version }}" + secrets: inherit diff --git a/.github/workflows/no-response.yml b/.github/workflows/no-response.yml index 776aa1c652..b22c825c8c 100644 --- a/.github/workflows/no-response.yml +++ b/.github/workflows/no-response.yml @@ -7,7 +7,7 @@ on: types: [created] schedule: # Schedule for ten minutes after the hour, every hour - - cron: '10 * * * *' + - cron: '* */12 * * *' # By specifying the access of one of the scopes, all of those that are not # specified are set to 'none'. diff --git a/.github/workflows/notify.yml b/.github/workflows/notify.yml new file mode 100644 index 0000000000..370b54c78b --- /dev/null +++ b/.github/workflows/notify.yml @@ -0,0 +1,54 @@ +name: Get Conan Recipe Version + +on: + workflow_call: + inputs: + success: + required: true + type: boolean + + success_title: + required: true + type: string + + success_body: + required: true + type: string + + failure_title: + required: true + type: string + + failure_body: + required: true + type: string + + +jobs: + slackNotification: + name: Slack Notification + + runs-on: ubuntu-latest + + steps: + - name: Slack notify on-success + if: ${{ inputs.success }} + uses: rtCamp/action-slack-notify@v2 + env: + SLACK_USERNAME: ${{ github.repository }} + SLACK_COLOR: green + SLACK_ICON: https://github.com/Ultimaker/Cura/blob/main/icons/cura-128.png?raw=true + SLACK_TITLE: ${{ inputs.success_title }} + SLACK_MESSAGE: ${{ inputs.success_body }} + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} + + - name: Slack notify on-failure + if: ${{ !inputs.success }} + uses: rtCamp/action-slack-notify@v2 + env: + SLACK_USERNAME: ${{ github.repository }} + SLACK_COLOR: red + SLACK_ICON: https://github.com/Ultimaker/Cura/blob/main/icons/cura-128.png?raw=true + SLACK_TITLE: ${{ inputs.failure_title }} + SLACK_MESSAGE: ${{ inputs.failure_body }} + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} diff --git a/.github/workflows/notify_on_print_profile_change.yml b/.github/workflows/notify_on_print_profile_change.yml new file mode 100644 index 0000000000..c8747a9828 --- /dev/null +++ b/.github/workflows/notify_on_print_profile_change.yml @@ -0,0 +1,36 @@ +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 new file mode 100644 index 0000000000..8e65a481c4 --- /dev/null +++ b/.github/workflows/printer-linter-format.yml @@ -0,0 +1,46 @@ +name: printer-linter-format + +on: + 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" diff --git a/.github/workflows/printer-linter-pr-diagnose.yml b/.github/workflows/printer-linter-pr-diagnose.yml new file mode 100644 index 0000000000..57c3732d81 --- /dev/null +++ b/.github/workflows/printer-linter-pr-diagnose.yml @@ -0,0 +1,60 @@ +name: printer-linter-pr-diagnose + +on: + pull_request: + path: + - "resources/**" + +jobs: + printer-linter-diagnose: + name: Printer linter PR diagnose + + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + fetch-depth: 2 + + - uses: technote-space/get-diff-action@v6 + with: + 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 + + - name: Diagnose file(s) + if: env.GIT_DIFF && !env.MATCHED_FILES + run: python printer-linter/src/terminal.py --diagnose --report printer-linter-result/fixes.yml ${{ env.GIT_DIFF_FILTERED }} + + - name: Save PR metadata + run: | + echo ${{ github.event.number }} > printer-linter-result/pr-id.txt + echo ${{ github.event.pull_request.head.repo.full_name }} > printer-linter-result/pr-head-repo.txt + echo ${{ github.event.pull_request.head.ref }} > printer-linter-result/pr-head-ref.txt + + - uses: actions/upload-artifact@v2 + with: + name: printer-linter-result + path: printer-linter-result/ + + - name: Run clang-tidy-pr-comments action + uses: platisd/clang-tidy-pr-comments@bc0bb7da034a8317d54e7fe1e819159002f4cc40 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + clang_tidy_fixes: result.yml + request_changes: true diff --git a/.github/workflows/printer-linter-pr-post.yml b/.github/workflows/printer-linter-pr-post.yml new file mode 100644 index 0000000000..81dbf96469 --- /dev/null +++ b/.github/workflows/printer-linter-pr-post.yml @@ -0,0 +1,81 @@ +name: printer-linter-pr-post + +on: + workflow_run: + workflows: ["printer-linter-pr-diagnose"] + types: [completed] + +jobs: + clang-tidy-results: + # Trigger the job only if the previous (insecure) workflow completed successfully + if: ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' }} + runs-on: ubuntu-latest + steps: + - name: Download analysis results + uses: actions/github-script@v3.1.0 + with: + script: | + let artifacts = await github.actions.listWorkflowRunArtifacts({ + owner: context.repo.owner, + repo: context.repo.repo, + run_id: ${{github.event.workflow_run.id }}, + }); + let matchArtifact = artifacts.data.artifacts.filter((artifact) => { + return artifact.name == "printer-linter-result" + })[0]; + let download = await github.actions.downloadArtifact({ + owner: context.repo.owner, + repo: context.repo.repo, + artifact_id: matchArtifact.id, + archive_format: "zip", + }); + let fs = require("fs"); + fs.writeFileSync("${{github.workspace}}/printer-linter-result.zip", Buffer.from(download.data)); + + - name: Set environment variables + run: | + mkdir printer-linter-result + unzip printer-linter-result.zip -d printer-linter-result + echo "pr_id=$(cat printer-linter-result/pr-id.txt)" >> $GITHUB_ENV + echo "pr_head_repo=$(cat printer-linter-result/pr-head-repo.txt)" >> $GITHUB_ENV + echo "pr_head_ref=$(cat printer-linter-result/pr-head-ref.txt)" >> $GITHUB_ENV + + - uses: actions/checkout@v3 + with: + repository: ${{ env.pr_head_repo }} + ref: ${{ env.pr_head_ref }} + persist-credentials: false + + - name: Redownload analysis results + uses: actions/github-script@v3.1.0 + with: + script: | + let artifacts = await github.actions.listWorkflowRunArtifacts({ + owner: context.repo.owner, + repo: context.repo.repo, + run_id: ${{github.event.workflow_run.id }}, + }); + let matchArtifact = artifacts.data.artifacts.filter((artifact) => { + return artifact.name == "printer-linter-result" + })[0]; + let download = await github.actions.downloadArtifact({ + owner: context.repo.owner, + repo: context.repo.repo, + artifact_id: matchArtifact.id, + archive_format: "zip", + }); + let fs = require("fs"); + fs.writeFileSync("${{github.workspace}}/printer-linter-result.zip", Buffer.from(download.data)); + + - name: Extract analysis results + run: | + mkdir printer-linter-result + unzip printer-linter-result.zip -d printer-linter-result + + - name: Run clang-tidy-pr-comments action + uses: platisd/clang-tidy-pr-comments@bc0bb7da034a8317d54e7fe1e819159002f4cc40 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + clang_tidy_fixes: printer-linter-result/fixes.yml + pull_request_id: ${{ env.pr_id }} + request_changes: true diff --git a/.github/workflows/process-pull-request.yml b/.github/workflows/process-pull-request.yml new file mode 100644 index 0000000000..7fe3aedc96 --- /dev/null +++ b/.github/workflows/process-pull-request.yml @@ -0,0 +1,15 @@ +name: process-pull-request + +on: + pull_request_target: + types: [opened, reopened, edited, synchronize, review_requested, ready_for_review, assigned] + +jobs: + add_label: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions-ecosystem/action-add-labels@v1 + if: ${{ github.event.pull_request.head.repo.full_name != github.repository }} + with: + labels: 'PR: Community Contribution :crown:' \ No newline at end of file diff --git a/.github/workflows/requirements-conan-package.txt b/.github/workflows/requirements-conan-package.txt index c6b564e450..26d167db2b 100644 --- a/.github/workflows/requirements-conan-package.txt +++ b/.github/workflows/requirements-conan-package.txt @@ -1,2 +1,2 @@ -conan -sip==6.5.1 +conan==1.56.0 +sip diff --git a/.github/workflows/requirements-printer-linter.txt b/.github/workflows/requirements-printer-linter.txt new file mode 100644 index 0000000000..4818cc5419 --- /dev/null +++ b/.github/workflows/requirements-printer-linter.txt @@ -0,0 +1 @@ +pyyaml \ No newline at end of file diff --git a/.github/workflows/security_badge.yml b/.github/workflows/security_badge.yml new file mode 100644 index 0000000000..b3785a0b0e --- /dev/null +++ b/.github/workflows/security_badge.yml @@ -0,0 +1,71 @@ +# NOTE: Best to keep all of these remarks in, they might prove useful in the future. +# This is basically just the standard one that is sugested on 'new workflow'. + +name: Scorecard supply-chain security +on: + # For Branch-Protection check. Only the default branch is supported. See + # https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection + branch_protection_rule: + # To guarantee Maintained check is occasionally updated. See + # https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained + schedule: + - cron: '25 2 * * 5' + push: + branches: [ "main" ] + +# Declare default permissions as read only. +permissions: read-all + +jobs: + analysis: + name: Scorecard analysis + runs-on: ubuntu-latest + permissions: + # Needed to upload the results to code-scanning dashboard. + security-events: write + # Needed to publish results and get a badge (see publish_results below). + id-token: write + # Uncomment the permissions below if installing in a private repository. + # contents: read + # actions: read + + steps: + - name: "Checkout code" + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 + with: + persist-credentials: false + + - name: "Run analysis" + uses: ossf/scorecard-action@e38b1902ae4f44df626f11ba0734b14fb91f8f86 # v2.1.2 + with: + results_file: results.sarif + results_format: sarif + # (Optional) "write" PAT token. Uncomment the `repo_token` line below if: + # - you want to enable the Branch-Protection check on a *public* repository, or + # - you are installing Scorecard on a *private* repository + # To create the PAT, follow the steps in https://github.com/ossf/scorecard-action#authentication-with-pat. + # repo_token: ${{ secrets.SCORECARD_TOKEN }} + + # Public repositories: + # - Publish results to OpenSSF REST API for easy access by consumers + # - Allows the repository to include the Scorecard badge. + # - See https://github.com/ossf/scorecard-action#publishing-results. + # For private repositories: + # - `publish_results` will always be set to `false`, regardless + # of the value entered here. + publish_results: true + + # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF + # format to the repository Actions tab. + - name: "Upload artifact" + uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0 + with: + name: SARIF file + path: results.sarif + retention-days: 5 + + # Upload the results to GitHub's code scanning dashboard. + - name: "Upload to code-scanning" + uses: github/codeql-action/upload-sarif@17573ee1cc1b9d061760f3a006fc4aac4f944fd5 # v2.2.4 + with: + sarif_file: results.sarif diff --git a/.github/workflows/unit-test-post.yml b/.github/workflows/unit-test-post.yml new file mode 100644 index 0000000000..36c1d5acfd --- /dev/null +++ b/.github/workflows/unit-test-post.yml @@ -0,0 +1,82 @@ +name: unit-test-post + +on: + workflow_run: + workflows: [ "unit-test" ] + types: [ completed ] + +jobs: + publish-test-results: + if: ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' }} + runs-on: ubuntu-latest + + steps: + - name: Download analysis results + uses: actions/github-script@v3.1.0 + with: + script: | + let artifacts = await github.actions.listWorkflowRunArtifacts({ + owner: context.repo.owner, + repo: context.repo.repo, + run_id: ${{github.event.workflow_run.id }}, + }); + let matchArtifact = artifacts.data.artifacts.filter((artifact) => { + return artifact.name == "test-result" + })[0]; + let download = await github.actions.downloadArtifact({ + owner: context.repo.owner, + repo: context.repo.repo, + artifact_id: matchArtifact.id, + archive_format: "zip", + }); + let fs = require("fs"); + fs.writeFileSync("${{github.workspace}}/test-result.zip", Buffer.from(download.data)); + + - name: Set environment variables + run: | + mkdir pr_env + unzip test-result.zip -d pr_env + echo "pr_id=$(cat pr_env/pr-id.txt)" >> $GITHUB_ENV + echo "pr_head_repo=$(cat pr_env/pr-head-repo.txt)" >> $GITHUB_ENV + echo "pr_head_ref=$(cat pr_env/pr-head-ref.txt)" >> $GITHUB_ENV + + - uses: actions/checkout@v3 + with: + repository: ${{ env.pr_head_repo }} + ref: ${{ env.pr_head_ref }} + persist-credentials: false + + - name: Redownload analysis results + uses: actions/github-script@v3.1.0 + with: + script: | + let artifacts = await github.actions.listWorkflowRunArtifacts({ + owner: context.repo.owner, + repo: context.repo.repo, + run_id: ${{github.event.workflow_run.id }}, + }); + let matchArtifact = artifacts.data.artifacts.filter((artifact) => { + return artifact.name == "test-result" + })[0]; + let download = await github.actions.downloadArtifact({ + owner: context.repo.owner, + repo: context.repo.repo, + artifact_id: matchArtifact.id, + archive_format: "zip", + }); + let fs = require("fs"); + fs.writeFileSync("${{github.workspace}}/test-result.zip", Buffer.from(download.data)); + + - name: Extract analysis results + run: | + mkdir -p tests + unzip test-result.zip -d tests + + - name: Publish Unit Test Results + id: test-results + uses: EnricoMi/publish-unit-test-result-action@v1 + with: + files: "tests/**/*.xml" + + - name: Conclusion + run: echo "Conclusion is ${{ steps.test-results.outputs.json && fromJSON( steps.test-results.outputs.json ).conclusion }}" diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml new file mode 100644 index 0000000000..f08acbdb04 --- /dev/null +++ b/.github/workflows/unit-test.yml @@ -0,0 +1,164 @@ +--- +name: unit-test + +on: + push: + paths: + - 'plugins/**' + - 'resources/**' + - 'cura/**' + - 'icons/**' + - 'tests/**' + - 'packaging/**' + - '.github/workflows/conan-*.yml' + - '.github/workflows/unit-test.yml' + - '.github/workflows/notify.yml' + - '.github/workflows/requirements-conan-package.txt' + - 'requirements*.txt' + - 'conanfile.py' + - 'conandata.yml' + - 'GitVersion.yml' + - '*.jinja' + branches: + - main + - 'CURA-*' + - '[1-9]+.[0-9]+' + tags: + - '[0-9]+.[0-9]+.[0-9]+' + - '[0-9]+.[0-9]+-beta' + pull_request: + paths: + - 'plugins/**' + - 'resources/**' + - 'cura/**' + - 'icons/**' + - 'tests/**' + - 'packaging/**' + - '.github/workflows/conan-*.yml' + - '.github/workflows/unit-test.yml' + - '.github/workflows/notify.yml' + - '.github/workflows/requirements-conan-package.txt' + - 'requirements*.txt' + - 'conanfile.py' + - 'conandata.yml' + - 'GitVersion.yml' + - '*.jinja' + branches: + - main + - '[1-9]+.[0-9]+' + tags: + - '[0-9]+.[0-9]+.[0-9]+' + - '[0-9]+.[0-9]+-beta' + +env: + CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }} + CONAN_PASSWORD_CURA: ${{ secrets.CONAN_PASS }} + CONAN_LOGIN_USERNAME_CURA_CE: ${{ secrets.CONAN_USER }} + CONAN_PASSWORD_CURA_CE: ${{ secrets.CONAN_PASS }} + CONAN_LOG_RUN_TO_OUTPUT: 1 + CONAN_LOGGING_LEVEL: info + CONAN_NON_INTERACTIVE: 1 + +permissions: + contents: read + +jobs: + conan-recipe-version: + uses: ultimaker/cura/.github/workflows/conan-recipe-version.yml@main + with: + project_name: cura + + testing: + runs-on: ubuntu-22.04 + needs: [ conan-recipe-version ] + + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + fetch-depth: 2 + + - name: Setup Python and pip + uses: actions/setup-python@v4 + with: + python-version: '3.11.x' + architecture: 'x64' + cache: 'pip' + cache-dependency-path: .github/workflows/requirements-conan-package.txt + + - name: Install Python requirements and Create default Conan profile + run: pip install -r requirements-conan-package.txt + working-directory: .github/workflows/ + + - name: Use Conan download cache (Bash) + if: ${{ runner.os != 'Windows' }} + run: conan config set storage.download_cache="$HOME/.conan/conan_download_cache" + + - name: Cache Conan local repository packages (Bash) + uses: actions/cache@v3 + if: ${{ runner.os != 'Windows' }} + with: + path: | + $HOME/.conan/data + $HOME/.conan/conan_download_cache + key: conan-${{ runner.os }}-${{ runner.arch }}-unit-cache + + # 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 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 -y + + - name: Install GCC-12 on ubuntu-22.04 + run: | + sudo apt install g++-12 gcc-12 -y + sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 12 + sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 12 + + - name: Get Conan configuration + run: conan config install https://github.com/Ultimaker/conan-config.git + + - name: Get Conan profile + run: conan profile new default --detect --force + + - name: Install dependencies + run: conan install . ${{ needs.conan-recipe-version.outputs.recipe_id_full }} --build=missing --update -o cura:devtools=True -g VirtualPythonEnv -if venv + + - name: Upload the Dependency package(s) + run: conan upload "*" -r cura --all -c + + - name: Set Environment variables for Cura (bash) + if: ${{ runner.os != 'Windows' }} + run: | + . ./venv/bin/activate_github_actions_env.sh + + - name: Run Unit Test + id: run-test + run: | + pytest --junitxml=junit_cura.xml + working-directory: tests + + - name: Save PR metadata + if: always() + run: | + echo ${{ github.event.number }} > pr-id.txt + echo ${{ github.event.pull_request.head.repo.full_name }} > pr-head-repo.txt + echo ${{ github.event.pull_request.head.ref }} > pr-head-ref.txt + working-directory: tests + + - name: Upload Test Results + if: always() + uses: actions/upload-artifact@v3 + with: + name: test-result + path: | + tests/**/*.xml + tests/pr-id.txt + tests/pr-head-repo.txt + tests/pr-head-ref.txt diff --git a/.github/workflows/update-translation.yml b/.github/workflows/update-translation.yml new file mode 100644 index 0000000000..b49bcf1ef2 --- /dev/null +++ b/.github/workflows/update-translation.yml @@ -0,0 +1,75 @@ +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' + +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 + sudo apt install g++-12 gcc-12 -y + sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 12 + sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 12 + + - 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 + + - 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 diff --git a/.gitignore b/.gitignore index c1fd5477d9..45cf4400f6 100644 --- a/.gitignore +++ b/.gitignore @@ -31,6 +31,7 @@ LC_MESSAGES .directory .idea cura.desktop +*.bak # Eclipse+PyDev .project @@ -89,4 +90,14 @@ CuraEngine #Prevents import failures when plugin running tests plugins/__init__.py -/venv +venv/ +build/ +dist/ +conaninfo.txt +conan.lock +conan_imports_manifest.txt +conanbuildinfo.txt +graph_info.json +Ultimaker-Cura.spec +.run/ +/printer-linter/src/printerlinter.egg-info/ diff --git a/.printer-linter b/.printer-linter new file mode 100644 index 0000000000..2ead01ffb1 --- /dev/null +++ b/.printer-linter @@ -0,0 +1,17 @@ +checks: + diagnostic-mesh-file-extension: true + diagnostic-mesh-file-size: true + diagnostic-definition-redundant-override: true +fixes: + diagnostic-definition-redundant-override: true +format: + format-definition-bracket-newline: true + format-definition-paired-coordinate-array: true + format-definition-sort-keys: true + format-definition-indent: 4 + format-definition-single-value-single-line: true # Format dicts and lists with a single item on one line "dict": { "value": 10 } + format-profile-space-around-delimiters: true + format-profile-sort-keys: true +diagnostic-mesh-file-size: 1200000 +diagnostic-definition-redundant-override-ignore: + - machine_.* diff --git a/.run_templates/pycharm_cura_run.run.xml.jinja b/.run_templates/pycharm_cura_run.run.xml.jinja new file mode 100644 index 0000000000..3c04c5eaef --- /dev/null +++ b/.run_templates/pycharm_cura_run.run.xml.jinja @@ -0,0 +1,25 @@ + + + + + \ No newline at end of file diff --git a/.run_templates/pycharm_cura_test.run.xml.jinja b/.run_templates/pycharm_cura_test.run.xml.jinja new file mode 100644 index 0000000000..428876ee52 --- /dev/null +++ b/.run_templates/pycharm_cura_test.run.xml.jinja @@ -0,0 +1,23 @@ + + + + + diff --git a/CITATION.cff b/CITATION.cff index 7efa45fda7..627cfa2515 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -14,17 +14,17 @@ authors: contact: - email: info@ultimaker.com name: "Ultimaker B.V." -url: 'https://ultimaker.com/software/ultimaker-cura' -repository-code: 'https://github.com/Ultimaker/Cura' +url: "https://ultimaker.com/software/ultimaker-cura" +repository-code: "https://github.com/Ultimaker/Cura" license: LGPL-3.0 license-url: "https://github.com/Ultimaker/Cura/blob/main/LICENSE" -version: 5.0.0 -date-released: '2022-05-17' +version: 5.2.1 +date-released: "2022-10-19" keywords: - Ultimaker - Cura + - Slicer - Uranium - Arachne - - 3DPrinting - - Slicer -... + - 3D Printing + - Additive Manufacturing diff --git a/CMakeLists.txt b/CMakeLists.txt index f61737fbcf..61c6d1cf41 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,10 @@ # Copyright (c) 2022 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. +# NOTE: This is only being used for translation scripts. + +# For MSVC flags, will be ignored on non-Windows OS's and this project in general. Only needed for cura-build-environment. +cmake_policy(SET CMP0091 NEW) project(cura) cmake_minimum_required(VERSION 3.18) @@ -11,47 +15,8 @@ list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake) set(URANIUM_DIR "${CMAKE_SOURCE_DIR}/../Uranium" CACHE PATH "The location of the Uranium repository") set(URANIUM_SCRIPTS_DIR "${URANIUM_DIR}/scripts" CACHE PATH "The location of the scripts directory of the Uranium repository") -option(CURA_DEBUGMODE "Enable debug dialog and other debug features" OFF) -if(CURA_DEBUGMODE) - set(_cura_debugmode "ON") -endif() - option(GENERATE_TRANSLATIONS "Should the translations be generated?" ON) -set(CURA_APP_NAME "cura" CACHE STRING "Short name of Cura, used for configuration folder") -set(CURA_APP_DISPLAY_NAME "Ultimaker Cura" CACHE STRING "Display name of Cura") -set(CURA_VERSION "master" CACHE STRING "Version name of Cura") -set(CURA_BUILDTYPE "" CACHE STRING "Build type of Cura, eg. 'PPA'") -set(CURA_CLOUD_API_ROOT "" CACHE STRING "Alternative Cura cloud API root") -set(CURA_CLOUD_API_VERSION "" CACHE STRING "Alternative Cura cloud API version") -set(CURA_CLOUD_ACCOUNT_API_ROOT "" CACHE STRING "Alternative Cura cloud account API version") -set(CURA_MARKETPLACE_ROOT "" CACHE STRING "Alternative Marketplace location") -set(CURA_DIGITAL_FACTORY_URL "" CACHE STRING "Alternative Digital Factory location") - -configure_file(${CMAKE_SOURCE_DIR}/com.ultimaker.cura.desktop.in ${CMAKE_BINARY_DIR}/com.ultimaker.cura.desktop @ONLY) - -configure_file(cura/CuraVersion.py.in CuraVersion.py @ONLY) - -if(NOT DEFINED Python_VERSION) - set(Python_VERSION - 3.10 - CACHE STRING "Python Version" FORCE) - message(STATUS "Setting Python version to ${Python_VERSION}. Set Python_VERSION if you want to compile against an other version.") -endif() -if(APPLE) - set(Python_FIND_FRAMEWORK NEVER) -endif() -find_package(Python ${Python_VERSION} EXACT REQUIRED COMPONENTS Interpreter) -message(STATUS "Linking and building ${project_name} against Python ${Python_VERSION}") -if(NOT DEFINED Python_SITELIB_LOCAL) - set(Python_SITELIB_LOCAL - "${Python_SITELIB}" - CACHE PATH "Local alternative site-package location to install Cura" FORCE) -endif() - -# Tests -include(CuraTests) - if(NOT ${URANIUM_DIR} STREQUAL "") set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH};${URANIUM_DIR}/cmake") endif() @@ -64,24 +29,4 @@ if(NOT ${URANIUM_SCRIPTS_DIR} STREQUAL "") if(${GENERATE_TRANSLATIONS}) CREATE_TRANSLATION_TARGETS() endif() -endif() - -install(DIRECTORY resources DESTINATION ${CMAKE_INSTALL_DATADIR}/cura) - -include(CuraPluginInstall) - -install(FILES cura_app.py DESTINATION ${CMAKE_INSTALL_BINDIR} - PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE) -install(DIRECTORY cura DESTINATION "${Python_SITELIB_LOCAL}") -install(FILES ${CMAKE_BINARY_DIR}/CuraVersion.py DESTINATION "${Python_SITELIB_LOCAL}/cura/") -if(NOT APPLE AND NOT WIN32) - install(FILES ${CMAKE_BINARY_DIR}/com.ultimaker.cura.desktop - DESTINATION ${CMAKE_INSTALL_DATADIR}/applications) - install(FILES ${CMAKE_SOURCE_DIR}/resources/images/cura-icon.png - DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/128x128/apps/) - install(FILES com.ultimaker.cura.appdata.xml - DESTINATION ${CMAKE_INSTALL_DATADIR}/metainfo) - install(FILES cura.sharedmimeinfo - DESTINATION ${CMAKE_INSTALL_DATADIR}/mime/packages/ - RENAME cura.xml ) -endif() +endif() \ No newline at end of file diff --git a/CuraVersion.py.jinja b/CuraVersion.py.jinja new file mode 100644 index 0000000000..87ef7d205d --- /dev/null +++ b/CuraVersion.py.jinja @@ -0,0 +1,14 @@ +# Copyright (c) 2022 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +CuraAppName = "{{ cura_app_name }}" +CuraAppDisplayName = "{{ cura_app_display_name }}" +CuraVersion = "{{ cura_version }}" +CuraBuildType = "{{ cura_build_type }}" +CuraDebugMode = {{ cura_debug_mode }} +CuraCloudAPIRoot = "{{ cura_cloud_api_root }}" +CuraCloudAPIVersion = "{{ cura_cloud_api_version }}" +CuraCloudAccountAPIRoot = "{{ cura_cloud_account_api_root }}" +CuraMarketplaceRoot = "{{ cura_marketplace_root }}" +CuraDigitalFactoryURL = "{{ cura_digital_factory_url }}" +CuraLatestURL = "{{ cura_latest_url }}" diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 68255c56b9..0000000000 --- a/Dockerfile +++ /dev/null @@ -1,45 +0,0 @@ -FROM ultimaker/cura-build-environment:1 - -# Environment vars for easy configuration -ENV CURA_APP_DIR=/srv/cura - -# Ensure our sources dir exists -RUN mkdir $CURA_APP_DIR - -# Setup CuraEngine -ENV CURA_ENGINE_BRANCH=master -WORKDIR $CURA_APP_DIR -RUN git clone -b $CURA_ENGINE_BRANCH --depth 1 https://github.com/Ultimaker/CuraEngine -WORKDIR $CURA_APP_DIR/CuraEngine -RUN mkdir build -WORKDIR $CURA_APP_DIR/CuraEngine/build -RUN cmake3 .. -RUN make -RUN make install - -# TODO: setup libCharon - -# Setup Uranium -ENV URANIUM_BRANCH=master -WORKDIR $CURA_APP_DIR -RUN git clone -b $URANIUM_BRANCH --depth 1 https://github.com/Ultimaker/Uranium - -# Setup materials -ENV MATERIALS_BRANCH=master -WORKDIR $CURA_APP_DIR -RUN git clone -b $MATERIALS_BRANCH --depth 1 https://github.com/Ultimaker/fdm_materials materials - -# Setup Cura -WORKDIR $CURA_APP_DIR/Cura -ADD . . -RUN mv $CURA_APP_DIR/materials resources/materials - -# Make sure Cura can find CuraEngine -RUN ln -s /usr/local/bin/CuraEngine $CURA_APP_DIR/Cura - -# Run Cura -WORKDIR $CURA_APP_DIR/Cura -ENV PYTHONPATH=${PYTHONPATH}:$CURA_APP_DIR/Uranium -RUN chmod +x ./CuraEngine -RUN chmod +x ./run_in_docker.sh -CMD "./run_in_docker.sh" diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index a345ebbd05..0000000000 --- a/Jenkinsfile +++ /dev/null @@ -1,74 +0,0 @@ -parallel_nodes(['linux && cura', 'windows && cura']) -{ - timeout(time: 2, unit: "HOURS") - { - - // Prepare building - stage('Prepare') - { - // Ensure we start with a clean build directory. - step([$class: 'WsCleanup']) - - // Checkout whatever sources are linked to this pipeline. - checkout scm - } - - // If any error occurs during building, we want to catch it and continue with the "finale" stage. - catchError - { - // Building and testing should happen in a subdirectory. - dir('build') - { - // Perform the "build". Since Uranium is Python code, this basically only ensures CMake is setup. - stage('Build') - { - def branch = env.BRANCH_NAME - if(!fileExists("${env.CURA_ENVIRONMENT_PATH}/${branch}")) - { - branch = "master" - } - - // Ensure CMake is setup. Note that since this is Python code we do not really "build" it. - def uranium_dir = get_workspace_dir("Ultimaker/Uranium/${branch}") - cmake("..", "-DCMAKE_PREFIX_PATH=\"${env.CURA_ENVIRONMENT_PATH}/${branch}\" -DCMAKE_BUILD_TYPE=Release -DURANIUM_DIR=\"${uranium_dir}\"") - } - - // Try and run the unit tests. If this stage fails, we consider the build to be "unstable". - stage('Unit Test') - { - if (isUnix()) - { - // For Linux - try { - sh 'make CTEST_OUTPUT_ON_FAILURE=TRUE test' - } catch(e) - { - currentBuild.result = "UNSTABLE" - } - } - else - { - // For Windows - try - { - // This also does code style checks. - bat 'ctest -V' - } catch(e) - { - currentBuild.result = "UNSTABLE" - } - } - } - } - } - - // Perform any post-build actions like notification and publishing of unit tests. - stage('Finalize') - { - // Publish the test results to Jenkins. - junit allowEmptyResults: true, testResults: 'build/junit*.xml' - - notify_build_result(env.CURA_EMAIL_RECIPIENTS, '#cura-dev', ['master', '2.']) - } - } -} diff --git a/README.md b/README.md index 1090d13aa7..94d81ad90f 100644 --- a/README.md +++ b/README.md @@ -1,61 +1,105 @@ -Cura -==== -Ultimaker Cura is a state-of-the-art slicer application to prepare your 3D models for printing with a 3D printer. With hundreds of settings and hundreds of community-managed print profiles, Ultimaker Cura is sure to lead your next project to a success. -![Screenshot](cura-logo.PNG) +> # Work with us! +> If you're interested in working with us on Cura and Thingiverse, please apply to one of the open positions below. +> - [Software Engineer C++ & Python](https://www.linkedin.com/jobs/view/3516545085) for [Cura](https://github.com/Ultimaker/Cura) +> - [DevOps Engineer Community Software](https://www.linkedin.com/jobs/view/3516542580) for [Cura](https://github.com/Ultimaker/Cura) and [Thingiverse](https://www.thingiverse.com/) +> - [QA / Test Engineer Cura (3D printing)](https://www.linkedin.com/jobs/view/3516538895) for [Cura](https://github.com/Ultimaker/Cura) and [Thingiverse](https://www.thingiverse.com/) -Logging Issues ------------- -For crashes and similar issues, please attach the following information: +
-* (On Windows) The log as produced by dxdiag (start -> run -> dxdiag -> save output) -* The Cura GUI log file, located at - * `%APPDATA%\cura\\cura.log` (Windows), or usually `C:\Users\\AppData\Roaming\cura\\cura.log` - * `$HOME/Library/Application Support/cura//cura.log` (OSX) - * `$HOME/.local/share/cura//cura.log` (Ubuntu/Linux) +
-If the Cura user interface still starts, you can also reach this directory from the application menu in Help -> Show settings folder +[![Badge Issues]][Issues]    +[![Badge PullRequests]][PullRequests]    +[![Badge Closed]][Closed] -For additional support, you could also ask in the [#cura channel](https://web.libera.chat/#cura) on [libera.chat](https://libera.chat/). For help with development, there is also the [#cura-dev channel](https://web.libera.chat/#cura-dev). +[![Badge Size]][#]    +[![Badge License]][License]    +[![Badge Contributors]][Contributors] -Dependencies ------------- -* [Uranium](https://github.com/Ultimaker/Uranium) Cura is built on top of the Uranium framework. -* [CuraEngine](https://github.com/Ultimaker/CuraEngine) This will be needed at runtime to perform the actual slicing. -* [fdm_materials](https://github.com/Ultimaker/fdm_materials) Required to load a printer that has swappable material profiles. -* [PySerial](https://github.com/pyserial/pyserial) Only required for USB printing support. -* [python-zeroconf](https://github.com/jstasiak/python-zeroconf) Only required to detect mDNS-enabled printers. +[![Badge Test]][Test]    +[![Badge Conan]][Conan]    -For a list of required Python packages, with their recommended version, see `requirements.txt`. +
+
-This list is not exhaustive at the moment, please check the links in the next section for more details. +![Logo] -Build scripts -------------- -Please check out [cura-build](https://github.com/Ultimaker/cura-build) for detailed building instructions. +# Ultimaker Cura -If you want to build the entire environment from scratch before building Cura as well, [cura-build-environment](https://github.com/Ultimaker/cura-build-environment) might be a starting point before cura-build. (Again, see cura-build for more details.) +*State-of-the-art slicer app to prepare*
+*your 3D models for your 3D printer.* -Running from Source -------------- -Please check our [Wiki page](https://github.com/Ultimaker/Cura/wiki/Running-Cura-from-Source) for details about running Cura from source. +*With hundreds of settings & community-managed print profiles,*
+*Ultimaker Cura is sure to lead your next project to a success.* -Plugins -------------- -Please check our [Wiki page](https://github.com/Ultimaker/Cura/wiki/Plugin-Directory) for details about creating and using plugins. +
+
-Supported printers -------------- -Please check our [Wiki page](https://github.com/Ultimaker/Cura/wiki/Adding-new-machine-profiles-to-Cura) for guidelines about adding support for new machines. +[![Button Building]][Building]    +[![Button Plugins]][Plugins]    +[![Button Machines]][Machines] -Configuring Cura ----------------- -Please check out [Wiki page](https://github.com/Ultimaker/Cura/wiki/Cura-Settings) about configuration options for developers. +[![Button Report]][Report]    +[![Button Settings]][Settings]    +[![Button Localize]][Localize] + +
+
+ + + + + Shows cura open on the preview screen with a large benchy model in the center. + + +
+ +
+ +[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/Ultimaker/Cura/badge)](https://api.securityscorecards.dev/projects/github.com/Ultimaker/Cura) + +
+ + + +[Contributors]: https://github.com/Ultimaker/Cura/graphs/contributors +[PullRequests]: https://github.com/Ultimaker/Cura/pulls +[Machines]: https://github.com/Ultimaker/Cura/wiki/Adding-new-machine-profiles-to-Cura +[Building]: https://github.com/Ultimaker/Cura/wiki/Running-Cura-from-Source +[Localize]: https://github.com/Ultimaker/Cura/wiki/Translating-Cura +[Settings]: https://github.com/Ultimaker/Cura/wiki/Cura-Settings +[Plugins]: https://github.com/Ultimaker/Cura/wiki/Plugin-Directory +[Closed]: https://github.com/Ultimaker/Cura/issues?q=is%3Aissue+is%3Aclosed +[Issues]: https://github.com/Ultimaker/Cura/issues +[Conan]: https://github.com/Ultimaker/Cura/actions/workflows/conan-package.yml +[Test]: https://github.com/Ultimaker/Cura/actions/workflows/unit-test.yml + +[License]: LICENSE +[Report]: docs/Report.md +[Logo]: resources/images/cura-icon.png +[#]: # + + + + +[Badge Contributors]: https://img.shields.io/github/contributors/ultimaker/cura?style=for-the-badge&logoColor=white&labelColor=db5e8a&color=ab4a6c&logo=GitHub +[Badge PullRequests]: https://img.shields.io/github/issues-pr/ultimaker/cura?style=for-the-badge&logoColor=white&labelColor=bb9f3e&color=937d31&logo=GitExtensions +[Badge License]: https://img.shields.io/badge/License-LGPL3-336887.svg?style=for-the-badge&labelColor=458cb5&logoColor=white&logo=GNU +[Badge Closed]: https://img.shields.io/github/issues-closed/ultimaker/cura?style=for-the-badge&logoColor=white&labelColor=629944&color=446a30&logo=AddThis +[Badge Issues]: https://img.shields.io/github/issues/ultimaker/cura?style=for-the-badge&logoColor=white&labelColor=c34360&color=933349&logo=AdBlock +[Badge Conan]: https://img.shields.io/github/workflow/status/Ultimaker/Cura/conan-package?style=for-the-badge&logoColor=white&labelColor=6185aa&color=4c6987&logo=Conan&label=Conan%20Package +[Badge Test]: https://img.shields.io/github/workflow/status/Ultimaker/Cura/unit-test?style=for-the-badge&logoColor=white&labelColor=4a999d&color=346c6e&logo=Codacy&label=Unit%20Test +[Badge Size]: https://img.shields.io/github/repo-size/ultimaker/cura?style=for-the-badge&logoColor=white&labelColor=715a97&color=584674&logo=GoogleAnalytics + + + + +[Button Localize]: https://img.shields.io/badge/Help_Localize-e2467d?style=for-the-badge&logoColor=white&logo=GoogleTranslate +[Button Machines]: https://img.shields.io/badge/Adding_Machines-yellow?style=for-the-badge&logoColor=white&logo=CloudFoundry +[Button Settings]: https://img.shields.io/badge/Configuration-00979D?style=for-the-badge&logoColor=white&logo=CodeReview +[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 -Translating Cura ----------------- -Please check out [Wiki page](https://github.com/Ultimaker/Cura/wiki/Translating-Cura) about how to translate Cura into other languages. -License ----------------- -Cura is released under the terms of the LGPLv3 or higher. A copy of this license should be included with the software. diff --git a/UltiMaker-Cura.spec.jinja b/UltiMaker-Cura.spec.jinja new file mode 100644 index 0000000000..3d540d3b8f --- /dev/null +++ b/UltiMaker-Cura.spec.jinja @@ -0,0 +1,275 @@ +# -*- mode: python ; coding: utf-8 -*- +import os +from pathlib import Path +from PyInstaller.utils.hooks import collect_all + + +datas = {{ datas }} +binaries = {{ binaries }} + +hiddenimports = {{ hiddenimports }} + +{% for value in collect_all %}tmp_ret = collect_all('{{ value }}') +datas += tmp_ret[0]; binaries += tmp_ret[1]; hiddenimports += tmp_ret[2] +{% endfor %} + +# Add dynamic libs in the venv bin/Script Path. This is needed because we might copy some additional libs +# e.q.: OpenSSL 1.1.1l in that directory with a separate: +# `conan install openssl@1.1.1l -g deploy && cp openssl/bin/*.so cura_inst/bin` +binaries.extend([(str(bin), ".") for bin in Path(r"{{ venv_script_path }}").glob("*.so*")]) +binaries.extend([(str(bin), ".") for bin in Path(r"{{ venv_script_path }}").glob("*.dll")]) +binaries.extend([(str(bin), ".") for bin in Path(r"{{ venv_script_path }}").glob("*.dylib")]) + +block_cipher = None + +a = Analysis( + [{{ entrypoint }}], + pathex=[], + binaries=binaries, + datas=datas, + hiddenimports=hiddenimports, + hookspath=[], + hooksconfig={}, + runtime_hooks=[], + excludes=[], + win_no_prefer_redirects=False, + win_private_assemblies=False, + cipher=block_cipher, + noarchive=False +) +pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher) + +exe = EXE( + pyz, + a.scripts, + [], + exclude_binaries=True, + name=r'{{ name }}', + debug=False, + bootloader_ignore_signals=False, + strip={{ strip }}, + upx={{ upx }}, + console=False, + disable_windowed_traceback=False, + argv_emulation=False, + target_arch={{ target_arch }}, + codesign_identity=os.getenv('CODESIGN_IDENTITY', None), + entitlements_file={{ entitlements_file }}, + icon={{ icon }} +) + +coll = COLLECT( + exe, + a.binaries, + a.zipfiles, + a.datas, + strip=False, + upx=True, + upx_exclude=[], + name=r'{{ name }}' +) + +{% if macos == true %} +# PyInstaller seems to copy everything in the resource folder for the MacOS, this causes issues with codesigning and notarizing +# The folder structure should adhere to the one specified in Table 2-5 +# https://developer.apple.com/library/archive/documentation/CoreFoundation/Conceptual/CFBundles/BundleTypes/BundleTypes.html#//apple_ref/doc/uid/10000123i-CH101-SW1 +# The class below is basically ducktyping the BUNDLE class of PyInstaller and using our own `assemble` method for more fine-grain and specific +# control. Some code of the method below is copied from: +# https://github.com/pyinstaller/pyinstaller/blob/22d1d2a5378228744cc95f14904dae1664df32c4/PyInstaller/building/osx.py#L115 +#----------------------------------------------------------------------------- +# Copyright (c) 2005-2022, PyInstaller Development Team. +# +# Distributed under the terms of the GNU General Public License (version 2 +# or later) with exception for distributing the bootloader. +# +# The full license is in the file COPYING.txt, distributed with this software. +# +# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception) +#----------------------------------------------------------------------------- + +import plistlib +import shutil +import PyInstaller.utils.osx as osxutils +from pathlib import Path +from PyInstaller.building.osx import BUNDLE +from PyInstaller.building.utils import (_check_path_overlap, _rmtree, add_suffix_to_extension, checkCache) +from PyInstaller.building.datastruct import logger +from PyInstaller.building.icon import normalize_icon_type + + +class UMBUNDLE(BUNDLE): + def assemble(self): + from PyInstaller.config import CONF + + if _check_path_overlap(self.name) and os.path.isdir(self.name): + _rmtree(self.name) + logger.info("Building BUNDLE %s", self.tocbasename) + + # Create a minimal Mac bundle structure. + macos_path = Path(self.name, "Contents", "MacOS") + resources_path = Path(self.name, "Contents", "Resources") + frameworks_path = Path(self.name, "Contents", "Frameworks") + os.makedirs(macos_path) + os.makedirs(resources_path) + os.makedirs(frameworks_path) + + # Makes sure the icon exists and attempts to convert to the proper format if applicable + self.icon = normalize_icon_type(self.icon, ("icns",), "icns", CONF["workpath"]) + + # Ensure icon path is absolute + self.icon = os.path.abspath(self.icon) + + # Copy icns icon to Resources directory. + shutil.copy(self.icon, os.path.join(self.name, 'Contents', 'Resources')) + + # Key/values for a minimal Info.plist file + info_plist_dict = { + "CFBundleDisplayName": self.appname, + "CFBundleName": self.appname, + + # Required by 'codesign' utility. + # The value for CFBundleIdentifier is used as the default unique name of your program for Code Signing + # purposes. It even identifies the APP for access to restricted OS X areas like Keychain. + # + # The identifier used for signing must be globally unique. The usual form for this identifier is a + # hierarchical name in reverse DNS notation, starting with the toplevel domain, followed by the company + # name, followed by the department within the company, and ending with the product name. Usually in the + # form: com.mycompany.department.appname + # CLI option --osx-bundle-identifier sets this value. + "CFBundleIdentifier": self.bundle_identifier, + "CFBundleExecutable": os.path.basename(self.exename), + "CFBundleIconFile": os.path.basename(self.icon), + "CFBundleInfoDictionaryVersion": "6.0", + "CFBundlePackageType": "APPL", + "CFBundleVersionString": self.version, + "CFBundleShortVersionString": self.version, + } + + # Set some default values. But they still can be overwritten by the user. + if self.console: + # Setting EXE console=True implies LSBackgroundOnly=True. + info_plist_dict['LSBackgroundOnly'] = True + else: + # Let's use high resolution by default. + info_plist_dict['NSHighResolutionCapable'] = True + + # Merge info_plist settings from spec file + if isinstance(self.info_plist, dict) and self.info_plist: + info_plist_dict.update(self.info_plist) + + plist_filename = os.path.join(self.name, "Contents", "Info.plist") + with open(plist_filename, "wb") as plist_fh: + plistlib.dump(info_plist_dict, plist_fh) + + links = [] + _QT_BASE_PATH = {'PySide2', 'PySide6', 'PyQt5', 'PyQt6', 'PySide6'} + for inm, fnm, typ in self.toc: + # Adjust name for extensions, if applicable + inm, fnm, typ = add_suffix_to_extension(inm, fnm, typ) + inm = Path(inm) + fnm = Path(fnm) + # Copy files from cache. This ensures that are used files with relative paths to dynamic library + # dependencies (@executable_path) + if typ in ('EXTENSION', 'BINARY') or (typ == 'DATA' and inm.suffix == '.so'): + if any(['.' in p for p in inm.parent.parts]): + inm = Path(inm.name) + fnm = Path(checkCache( + str(fnm), + strip = self.strip, + upx = self.upx, + upx_exclude = self.upx_exclude, + dist_nm = str(inm), + target_arch = self.target_arch, + codesign_identity = self.codesign_identity, + entitlements_file = self.entitlements_file, + strict_arch_validation = (typ == 'EXTENSION'), + )) + frame_dst = frameworks_path.joinpath(inm) + if not frame_dst.exists(): + if frame_dst.is_dir(): + os.makedirs(frame_dst, exist_ok = True) + else: + os.makedirs(frame_dst.parent, exist_ok = True) + shutil.copy(fnm, frame_dst, follow_symlinks = True) + macos_dst = macos_path.joinpath(inm) + if not macos_dst.exists(): + if macos_dst.is_dir(): + os.makedirs(macos_dst, exist_ok = True) + else: + os.makedirs(macos_dst.parent, exist_ok = True) + + # Create relative symlink to the framework + symlink_to = Path(*[".." for p in macos_dst.relative_to(macos_path).parts], "Frameworks").joinpath( + frame_dst.relative_to(frameworks_path)) + try: + macos_dst.symlink_to(symlink_to) + except FileExistsError: + pass + else: + if typ == 'DATA': + if any(['.' in p for p in inm.parent.parts]) or inm.suffix == '.so': + # Skip info dist egg and some not needed folders in tcl and tk, since they all contain dots in their files + logger.warning(f"Skipping DATA file {inm}") + continue + res_dst = resources_path.joinpath(inm) + if not res_dst.exists(): + if res_dst.is_dir(): + os.makedirs(res_dst, exist_ok = True) + else: + os.makedirs(res_dst.parent, exist_ok = True) + shutil.copy(fnm, res_dst, follow_symlinks = True) + macos_dst = macos_path.joinpath(inm) + if not macos_dst.exists(): + if macos_dst.is_dir(): + os.makedirs(macos_dst, exist_ok = True) + else: + os.makedirs(macos_dst.parent, exist_ok = True) + + # Create relative symlink to the resource + symlink_to = Path(*[".." for p in macos_dst.relative_to(macos_path).parts], "Resources").joinpath( + res_dst.relative_to(resources_path)) + try: + macos_dst.symlink_to(symlink_to) + except FileExistsError: + pass + else: + macos_dst = macos_path.joinpath(inm) + if not macos_dst.exists(): + if macos_dst.is_dir(): + os.makedirs(macos_dst, exist_ok = True) + else: + os.makedirs(macos_dst.parent, exist_ok = True) + shutil.copy(fnm, macos_dst, follow_symlinks = True) + + # Sign the bundle + logger.info('Signing the BUNDLE...') + try: + osxutils.sign_binary(self.name, self.codesign_identity, self.entitlements_file, deep = True) + except Exception as e: + logger.warning(f"Error while signing the bundle: {e}") + logger.warning("You will need to sign the bundle manually!") + + logger.info(f"Building BUNDLE {self.tocbasename} completed successfully.") + +app = UMBUNDLE( + coll, + name='{{ display_name }}.app', + icon={{ icon }}, + bundle_identifier={{ osx_bundle_identifier }} + "_" + '{{ display_name }}'.replace(" ", "_") + "_" {{ short_version }}, + version={{ version }}, + info_plist={ + 'CFBundleDisplayName': '{{ display_name }}', + 'NSPrincipalClass': 'NSApplication', + 'CFBundleDevelopmentRegion': 'English', + 'CFBundleExecutable': '{{ name }}', + 'CFBundleInfoDictionaryVersion': '6.0', + 'CFBundlePackageType': 'APPL', + 'CFBundleVersionString': {{ version }}, + 'CFBundleShortVersionString': {{ short_version }}, + 'CFBundleDocumentTypes': [{ + 'CFBundleTypeRole': 'Viewer', + 'CFBundleTypeExtensions': ['*'], + 'CFBundleTypeName': 'Model Files', + }] + }, +){% endif %} diff --git a/build.sh b/build.sh deleted file mode 100644 index 7da99d0de5..0000000000 --- a/build.sh +++ /dev/null @@ -1,34 +0,0 @@ -set -e -set -u - -export OLD_PWD=`pwd` -export CMAKE=/c/software/PCL/cmake-3.0.1-win32-x86/bin/cmake.exe -export MAKE=mingw32-make.exe -export PATH=/c/mingw-w64/i686-4.9.2-posix-dwarf-rt_v3-rev1/mingw32/bin:$PATH - -mkdir -p /c/software/protobuf/_build -cd /c/software/protobuf/_build -$CMAKE ../ -$MAKE install - -mkdir -p /c/software/libArcus/_build -cd /c/software/libArcus/_build -$CMAKE ../ -$MAKE install - -mkdir -p /c/software/PinkUnicornEngine/_build -cd /c/software/PinkUnicornEngine/_build -$CMAKE ../ -$MAKE - -cd $OLD_PWD -export PYTHONPATH=`pwd`/../libArcus/python:/c/Software/Uranium/ -/c/python34/python setup.py py2exe - -cp /c/software/PinkUnicornEngine/_build/CuraEngine.exe dist/ -cp /c/software/libArcus/_install/bin/libArcus.dll dist/ -cp /c/mingw-w64/i686-4.9.2-posix-dwarf-rt_v3-rev1/mingw32/bin/libgcc_s_dw2-1.dll dist/ -cp /c/mingw-w64/i686-4.9.2-posix-dwarf-rt_v3-rev1/mingw32/bin/libwinpthread-1.dll dist/ -cp /c/mingw-w64/i686-4.9.2-posix-dwarf-rt_v3-rev1/mingw32/bin/libstdc++-6.dll dist/ - -/c/program\ files\ \(x86\)/NSIS/makensis.exe installer.nsi diff --git a/cmake/CuraPluginInstall.cmake b/cmake/CuraPluginInstall.cmake deleted file mode 100644 index 79b86ebdc6..0000000000 --- a/cmake/CuraPluginInstall.cmake +++ /dev/null @@ -1,92 +0,0 @@ -# Copyright (c) 2022 Ultimaker B.V. -# CuraPluginInstall.cmake is released under the terms of the LGPLv3 or higher. - -# -# This module detects all plugins that need to be installed and adds them using the CMake install() command. -# It detects all plugin folder in the path "plugins/*" where there's a "plugin.json" in it. -# -# Plugins can be configured to NOT BE INSTALLED via the variable "CURA_NO_INSTALL_PLUGINS" as a list of string in the -# form of "a;b;c" or "a,b,c". By default all plugins will be installed. -# - -option(PRINT_PLUGIN_LIST "Should the list of plugins that are installed be printed?" ON) - -# Options or configuration variables -set(CURA_NO_INSTALL_PLUGINS "" CACHE STRING "A list of plugins that should not be installed, separated with ';' or ','.") - -file(GLOB_RECURSE _plugin_json_list ${CMAKE_SOURCE_DIR}/plugins/*/plugin.json) -list(LENGTH _plugin_json_list _plugin_json_list_len) - -# Sort the lists alphabetically so we can handle cases like this: -# - plugins/my_plugin/plugin.json -# - plugins/my_plugin/my_module/plugin.json -# In this case, only "plugins/my_plugin" should be added via install(). -set(_no_install_plugin_list ${CURA_NO_INSTALL_PLUGINS}) -# Sanitize the string so the comparison will be case-insensitive. -string(STRIP "${_no_install_plugin_list}" _no_install_plugin_list) -string(TOLOWER "${_no_install_plugin_list}" _no_install_plugin_list) - -# WORKAROUND counterpart of what's in cura-build. -string(REPLACE "," ";" _no_install_plugin_list "${_no_install_plugin_list}") - -list(LENGTH _no_install_plugin_list _no_install_plugin_list_len) - -if(_no_install_plugin_list_len GREATER 0) - list(SORT _no_install_plugin_list) -endif() -if(_plugin_json_list_len GREATER 0) - list(SORT _plugin_json_list) -endif() - -# Check all plugin directories and add them via install() if needed. -set(_install_plugin_list "") -foreach(_plugin_json_path ${_plugin_json_list}) - get_filename_component(_plugin_dir ${_plugin_json_path} DIRECTORY) - file(RELATIVE_PATH _rel_plugin_dir ${CMAKE_CURRENT_SOURCE_DIR} ${_plugin_dir}) - get_filename_component(_plugin_dir_name ${_plugin_dir} NAME) - - # Make plugin name comparison case-insensitive - string(TOLOWER "${_plugin_dir_name}" _plugin_dir_name_lowercase) - - # Check if this plugin needs to be skipped for installation - set(_add_plugin ON) # Indicates if this plugin should be added to the build or not. - set(_is_no_install_plugin OFF) # If this plugin will not be added, this indicates if it's because the plugin is - # specified in the NO_INSTALL_PLUGINS list. - if(_no_install_plugin_list) - if("${_plugin_dir_name_lowercase}" IN_LIST _no_install_plugin_list) - set(_add_plugin OFF) - set(_is_no_install_plugin ON) - endif() - endif() - - # Make sure this is not a subdirectory in a plugin that's already in the install list - if(_add_plugin) - foreach(_known_install_plugin_dir ${_install_plugin_list}) - if(_plugin_dir MATCHES "${_known_install_plugin_dir}.+") - set(_add_plugin OFF) - break() - endif() - endforeach() - endif() - - if(_add_plugin) - if(${PRINT_PLUGIN_LIST}) - message(STATUS "[+] PLUGIN TO INSTALL: ${_rel_plugin_dir}") - endif() - get_filename_component(_rel_plugin_parent_dir ${_rel_plugin_dir} DIRECTORY) - install(DIRECTORY ${_rel_plugin_dir} - DESTINATION lib${LIB_SUFFIX}/cura/${_rel_plugin_parent_dir} - PATTERN "__pycache__" EXCLUDE - PATTERN "*.qmlc" EXCLUDE - ) - list(APPEND _install_plugin_list ${_plugin_dir}) - elseif(_is_no_install_plugin) - if(${PRINT_PLUGIN_LIST}) - message(STATUS "[-] PLUGIN TO REMOVE : ${_rel_plugin_dir}") - endif() - execute_process(COMMAND ${Python_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/cmake/mod_bundled_packages_json.py - -d ${CMAKE_CURRENT_SOURCE_DIR}/resources/bundled_packages - ${_plugin_dir_name} - RESULT_VARIABLE _mod_json_result) - endif() -endforeach() diff --git a/cmake/CuraTests.cmake b/cmake/CuraTests.cmake deleted file mode 100644 index 09e8dadbab..0000000000 --- a/cmake/CuraTests.cmake +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright (c) 2022 Ultimaker B.V. -# Cura is released under the terms of the LGPLv3 or higher. - -include(CTest) -include(CMakeParseArguments) - -add_custom_target(test-verbose COMMAND ${CMAKE_CTEST_COMMAND} --verbose) - -function(cura_add_test) - set(_single_args NAME DIRECTORY PYTHONPATH) - cmake_parse_arguments("" "" "${_single_args}" "" ${ARGN}) - - if(NOT _NAME) - message(FATAL_ERROR "cura_add_test requires a test name argument") - endif() - - if(NOT _DIRECTORY) - message(FATAL_ERROR "cura_add_test requires a directory to test") - endif() - - if(NOT _PYTHONPATH) - set(_PYTHONPATH ${_DIRECTORY}) - endif() - - if(WIN32) - string(REPLACE "|" "\\;" _PYTHONPATH ${_PYTHONPATH}) - set(_PYTHONPATH "${_PYTHONPATH}\\;$ENV{PYTHONPATH}") - else() - string(REPLACE "|" ":" _PYTHONPATH ${_PYTHONPATH}) - set(_PYTHONPATH "${_PYTHONPATH}:$ENV{PYTHONPATH}") - endif() - - get_test_property(${_NAME} ENVIRONMENT test_exists) #Find out if the test exists by getting a property from it that always exists (such as ENVIRONMENT because we set that ourselves). - if (NOT ${test_exists}) - add_test( - NAME ${_NAME} - COMMAND ${Python_EXECUTABLE} -m pytest --junitxml=${CMAKE_BINARY_DIR}/junit-${_NAME}.xml ${_DIRECTORY} - ) - set_tests_properties(${_NAME} PROPERTIES ENVIRONMENT LANG=C) - set_tests_properties(${_NAME} PROPERTIES ENVIRONMENT "PYTHONPATH=${_PYTHONPATH}") - else() - message(WARNING "Duplicate test ${_NAME}!") - endif() -endfunction() - - -#Add code style test. -add_test( - NAME "code-style" - COMMAND ${Python_EXECUTABLE} run_mypy.py - WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} -) - -#Add test for import statements which are not compatible with all builds -add_test( - NAME "invalid-imports" - COMMAND ${Python_EXECUTABLE} scripts/check_invalid_imports.py - WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} -) - -cura_add_test(NAME pytest-main DIRECTORY ${CMAKE_SOURCE_DIR}/tests PYTHONPATH "${CMAKE_SOURCE_DIR}|${URANIUM_DIR}") - -file(GLOB_RECURSE _plugins plugins/*/__init__.py) -foreach(_plugin ${_plugins}) - get_filename_component(_plugin_directory ${_plugin} DIRECTORY) - if(EXISTS ${_plugin_directory}/tests) - get_filename_component(_plugin_name ${_plugin_directory} NAME) - cura_add_test(NAME pytest-${_plugin_name} DIRECTORY ${_plugin_directory} PYTHONPATH "${_plugin_directory}|${CMAKE_SOURCE_DIR}|${URANIUM_DIR}") - endif() -endforeach() - -#Add test for whether the shortcut alt-keys are unique in every translation. -add_test( - NAME "shortcut-keys" - COMMAND ${Python_EXECUTABLE} scripts/check_shortcut_keys.py - WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} -) diff --git a/cmake/mod_bundled_packages_json.py b/cmake/mod_bundled_packages_json.py deleted file mode 100755 index e03261b479..0000000000 --- a/cmake/mod_bundled_packages_json.py +++ /dev/null @@ -1,73 +0,0 @@ -#!/usr/bin/env python3 -# -# This script removes the given package entries in the bundled_packages JSON files. This is used by the PluginInstall -# CMake module. -# - -import argparse -import collections -import json -import os -import sys - - -def find_json_files(work_dir: str) -> list: - """Finds all JSON files in the given directory recursively and returns a list of those files in absolute paths. - - :param work_dir: The directory to look for JSON files recursively. - :return: A list of JSON files in absolute paths that are found in the given directory. - """ - - json_file_list = [] - for root, dir_names, file_names in os.walk(work_dir): - for file_name in file_names: - abs_path = os.path.abspath(os.path.join(root, file_name)) - json_file_list.append(abs_path) - return json_file_list - - -def remove_entries_from_json_file(file_path: str, entries: list) -> None: - """Removes the given entries from the given JSON file. The file will modified in-place. - - :param file_path: The JSON file to modify. - :param entries: A list of strings as entries to remove. - :return: None - """ - - try: - with open(file_path, "r", encoding = "utf-8") as f: - package_dict = json.load(f, object_hook = collections.OrderedDict) - except Exception as e: - msg = "Failed to load '{file_path}' as a JSON file. This file will be ignored Exception: {e}"\ - .format(file_path = file_path, e = e) - sys.stderr.write(msg + os.linesep) - return - - for entry in entries: - if entry in package_dict: - del package_dict[entry] - print("[INFO] Remove entry [{entry}] from [{file_path}]".format(file_path = file_path, entry = entry)) - - try: - with open(file_path, "w", encoding = "utf-8", newline = "\n") as f: - json.dump(package_dict, f, indent = 4) - except Exception as e: - msg = "Failed to write '{file_path}' as a JSON file. Exception: {e}".format(file_path = file_path, e = e) - raise IOError(msg) - - -def main() -> None: - parser = argparse.ArgumentParser("mod_bundled_packages_json") - parser.add_argument("-d", "--dir", dest = "work_dir", - help = "The directory to look for bundled packages JSON files, recursively.") - parser.add_argument("entries", metavar = "ENTRIES", type = str, nargs = "+") - - args = parser.parse_args() - - json_file_list = find_json_files(args.work_dir) - for json_file_path in json_file_list: - remove_entries_from_json_file(json_file_path, args.entries) - - -if __name__ == "__main__": - main() diff --git a/com.ultimaker.cura.appdata.xml b/com.ultimaker.cura.appdata.xml deleted file mode 100644 index 3af0e9c352..0000000000 --- a/com.ultimaker.cura.appdata.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - com.ultimaker.cura.desktop - CC0-1.0 - LGPL-3.0 and CC-BY-SA-4.0 - Cura - The world's most advanced 3d printer software - -

- Cura creates a seamless integration between hardware, software and - materials for the best 3D printing experience around. - Cura supports the 3MF, OBJ and STL file formats and is available on - Windows, Mac and Linux. -

-
    -
  • Novices can start printing right away
  • -
  • Experts are able to customize 300 settings to achieve the best results
  • -
  • Optimized profiles for Ultimaker materials
  • -
  • Supported by a global network of Ultimaker certified service partners
  • -
  • Print multiple objects at once with different settings for each object
  • -
  • Cura supports STL, 3MF and OBJ file formats
  • -
  • Open source and completely free
  • -
-
- - - https://raw.githubusercontent.com/Ultimaker/Cura/main/cura-logo.PNG - - - https://ultimaker.com/software/ultimaker-cura?utm_source=cura&utm_medium=software&utm_campaign=cura-update-linux - Cura - -
diff --git a/com.ultimaker.cura.desktop.in b/com.ultimaker.cura.desktop.in deleted file mode 100644 index 1e17e30f4e..0000000000 --- a/com.ultimaker.cura.desktop.in +++ /dev/null @@ -1,19 +0,0 @@ -[Desktop Entry] -Name=Ultimaker Cura -Name[de]=Ultimaker Cura -Name[nl]=Ultimaker Cura -GenericName=3D Printing Software -GenericName[de]=3D-Druck-Software -GenericName[nl]=3D-printsoftware -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. -Comment[de]=Cura wandelt 3D-Modelle in Pfade für einen 3D-Drucker um. Es bereitet Ihren Druck für maximale Genauigkeit, minimale Druckzeit und guter Zuverlässigkeit mit vielen zusätzlichen Funktionen vor, damit Ihr Druck großartig wird. -Comment[nl]=Cura converteert 3D-modellen naar paden voor een 3D printer. Het bereidt je print voor om zeer precies, snel en betrouwbaar te kunnen printen, met veel extra functionaliteit om je print er goed uit te laten komen. -Exec=@CMAKE_INSTALL_FULL_BINDIR@/cura %F -TryExec=@CMAKE_INSTALL_FULL_BINDIR@/cura -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; -Categories=Graphics; -Keywords=3D;Printing;Slicer; -StartupWMClass=cura.real diff --git a/conandata.yml b/conandata.yml new file mode 100644 index 0000000000..efbb7f8349 --- /dev/null +++ b/conandata.yml @@ -0,0 +1,210 @@ +urls: + default: + cloud_api_root: "https://api.ultimaker.com" + cloud_account_api_root: "https://account.ultimaker.com" + marketplace_root: "https://marketplace.ultimaker.com" + digital_factory_url: "https://digitalfactory.ultimaker.com" + cura_latest_url: "https://software.ultimaker.com/latest.json" + staging: + cloud_api_root: "https://api-staging.ultimaker.com" + cloud_account_api_root: "https://account-staging.ultimaker.com" + 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" + datas: + cura_plugins: + package: "cura" + src: "plugins" + dst: "share/cura/plugins" + cura_resources: + package: "cura" + src: "resources" + dst: "share/cura/resources" + cura_private_data: + package: "cura_private_data" + src: "res" + dst: "share/cura" + internal: true + uranium_plugins: + package: "uranium" + src: "plugins" + dst: "share/uranium/plugins" + uranium_resources: + package: "uranium" + src: "resources" + dst: "share/uranium/resources" + uranium_um_qt_qml_um: + package: "uranium" + src: "site-packages/UM/Qt/qml/UM" + dst: "PyQt6/Qt6/qml/UM" + cura_binary_data: + package: "cura_binary_data" + src: "resources/cura/resources" + dst: "share/cura/resources" + uranium_binary_data: + package: "cura_binary_data" + src: "resources/uranium/resources" + dst: "share/uranium/resources" + windows_binary_data: + package: "cura_binary_data" + src: "windows" + dst: "share/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" + hiddenimports: + - "pySavitar" + - "pyArcus" + - "pynest2d" + - "PyQt6" + - "PyQt6.QtNetwork" + - "PyQt6.sip" + - "logging.handlers" + - "zeroconf" + - "fcntl" + - "stl" + - "serial" + collect_all: + - "cura" + - "UM" + - "serial" + - "Charon" + - "sqlite3" + - "trimesh" + - "win32ctypes" + - "PyQt6" + - "PyQt6.QtNetwork" + - "PyQt6.sip" + - "stl" + icon: + Windows: "./icons/Cura.ico" + Macos: "./icons/cura.icns" + Linux: "./icons/cura-128.png" +pycharm_targets: + - jinja_path: .run_templates/pycharm_cura_run.run.xml.jinja + module_name: Cura + name: cura + script_name: cura_app.py + - jinja_path: .run_templates/pycharm_cura_run.run.xml.jinja + module_name: Cura + name: cura_external_engine + parameters: --external-backend + script_name: cura_app.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in tests + script_name: tests/ + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestBuildVolume.py + script_name: tests/TestBuildVolume.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestConvexHullDecorator.py + script_name: tests/TestConvexHullDecorator.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestCuraSceneNode.py + script_name: tests/TestCuraSceneNode.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestCuraSceneNode.py + script_name: tests/TestExtruderManager.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestGCodeListDecorator.py + script_name: tests/TestGCodeListDecorator.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestIntentManager.py + script_name: tests/TestIntentManager.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestLayer.py + script_name: tests/TestLayer.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestMachineAction.py + script_name: tests/TestMachineAction.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestMachineManager.py + script_name: tests/TestMachineManager.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestOAuth2.py + script_name: tests/TestOAuth2.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestObjectsModel.py + script_name: tests/TestObjectsModel.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestPrintInformation.py + script_name: tests/TestPrintInformation.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestProfileRequirements.py + script_name: tests/TestProfileRequirements.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestThemes.py + script_name: tests/TestThemes.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestContainerManager.py + script_name: tests/Settings/TestContainerManager.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestCuraContainerRegistry.py + script_name: tests/Settings/TestCuraContainerRegistry.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestCuraStackBuilder.py + script_name: tests/Settings/TestCuraStackBuilder.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestDefinitionContainer.py + script_name: tests/Settings/TestDefinitionContainer.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestExtruderStack.py + script_name: tests/Settings/TestExtruderStack.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestGlobalStack.py + script_name: tests/Settings/TestGlobalStack.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestProfiles.py + script_name: tests/Settings/TestProfiles.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestSettingInheritanceManager.py + script_name: tests/Settings/TestSettingInheritanceManager.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestSettingOverrideDecorator.py + script_name: tests/Settings/TestSettingOverrideDecorator.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestSettingVisibilityPresets.py + script_name: tests/Settings/TestSettingVisibilityPresets.py diff --git a/conanfile.py b/conanfile.py new file mode 100644 index 0000000000..47b0b7de6a --- /dev/null +++ b/conanfile.py @@ -0,0 +1,477 @@ +import os +from pathlib import Path + +from jinja2 import Template + +from conan import ConanFile +from conan.tools.files import copy, rmdir, save, mkdir +from conan.tools.microsoft import unix_path +from conan.tools.env import VirtualRunEnv, Environment, VirtualBuildEnv +from conan.tools.scm import Version +from conan.errors import ConanInvalidConfiguration, ConanException + +required_conan_version = "<=1.56.0" + + +class CuraConan(ConanFile): + name = "cura" + license = "LGPL-3.0" + author = "UltiMaker" + url = "https://github.com/Ultimaker/cura" + description = "3D printer / slicing GUI built on top of the Uranium framework" + topics = ("conan", "python", "pyqt6", "qt", "qml", "3d-printing", "slicer") + build_policy = "missing" + exports = "LICENSE*", "UltiMaker-Cura.spec.jinja", "CuraVersion.py.jinja" + settings = "os", "compiler", "build_type", "arch" + + # FIXME: Remove specific branch once merged to main + python_requires = "umbase/[>=0.1.7]@ultimaker/stable", "translationextractor/[>=2.1.1]@ultimaker/stable" + python_requires_extend = "umbase.UMBaseConanfile" + + 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?? + "cura_debug_mode": [True, False], # FIXME: Use profiles + "internal": [True, False] + } + default_options = { + "enterprise": "False", + "staging": "False", + "devtools": False, + "cloud_api_version": "1", + "display_name": "UltiMaker Cura", + "cura_debug_mode": False, # Not yet implemented + "internal": False, + } + + def set_version(self): + if not self.version: + self.version = "5.4.0-alpha" + + @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 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 _app_name(self): + if self._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']: + 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"] + + @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") + + @property + def _share_dir(self): + return self._base_dir.joinpath("share") + + @property + def _script_dir(self): + if self.settings.os == "Windows": + return self._base_dir.joinpath("Scripts") + return self._base_dir.joinpath("bin") + + @property + 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) + return self._base_dir.joinpath("lib", f"python{py_version.major}.{py_version.minor}", "site-packages") + + @property + def _py_interp(self): + py_interp = self._script_dir.joinpath(Path(self.deps_user_info["cpython"].python).name) + if self.settings.os == "Windows": + py_interp = Path(*[f'"{p}"' if " " in p else p for p in py_interp.parts]) + return py_interp + + @property + def _pyinstaller_spec_arch(self): + if self.settings.os == "Macos": + if self.settings.arch == "armv8": + return "'arm64'" + return "'x86_64'" + return "None" + + 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()) + + # If you want a specific Cura version to show up on the splash screen add the user configuration `user.cura:version=VERSION` + # the global.conf, profile, package_info (of dependency) or via the cmd line `-c user.cura:version=VERSION` + 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.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: + 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_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, + cura_cloud_account_api_root = self.conan_data["urls"][self._urls]["cloud_account_api_root"], + cura_marketplace_root = self.conan_data["urls"][self._urls]["marketplace_root"], + cura_digital_factory_url = self.conan_data["urls"][self._urls]["digital_factory_url"], + cura_latest_url = self.conan_data["urls"][self._urls]["cura_latest_url"])) + + def _generate_pyinstaller_spec(self, location, entrypoint_location, icon_path, entitlements_file): + pyinstaller_metadata = self.conan_data["pyinstaller"] + datas = [(str(self._base_dir.joinpath("conan_install_info.json")), ".")] + for data in pyinstaller_metadata["datas"].values(): + if not self.options.internal and data.get("internal", False): + 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"]) + else: + src_path = os.path.join(self.deps_cpp_info[data["package"]].rootpath, data["src"]) + elif "root" in data: # get the paths relative from the sourcefolder + src_path = os.path.join(self.source_folder, data["root"], data["src"]) + else: + continue + if Path(src_path).exists(): + 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"]) + elif "root" in binary: # get the paths relative from the sourcefolder + src_path = os.path.join(self.source_folder, binary["root"], binary["src"]) + else: + continue + if not Path(src_path).exists(): + self.output.warning(f"Source path for binary {binary['binary']} does not exist") + continue + + for bin in Path(src_path).glob(binary["binary"] + "*[.exe|.dll|.so|.dylib|.so.]*"): + binaries.append((str(bin), binary["dst"])) + for bin in Path(src_path).glob(binary["binary"]): + binaries.append((str(bin), binary["dst"])) + + # Make sure all Conan dependencies which are shared are added to the binary list for pyinstaller + for _, dependency in self.dependencies.host.items(): + for bin_paths in dependency.cpp_info.bindirs: + binaries.extend([(f"{p}", ".") for p in Path(bin_paths).glob("**/*.dll")]) + for lib_paths in dependency.cpp_info.libdirs: + binaries.extend([(f"{p}", ".") for p in Path(lib_paths).glob("**/*.so*")]) + binaries.extend([(f"{p}", ".") for p in Path(lib_paths).glob("**/*.dylib*")]) + + # Copy dynamic libs from lib path + binaries.extend([(f"{p}", ".") for p in Path(self._base_dir.joinpath("lib")).glob("**/*.dylib*")]) + binaries.extend([(f"{p}", ".") for p in Path(self._base_dir.joinpath("lib")).glob("**/*.so*")]) + + # Collect all dll's from PyQt6 and place them in the root + binaries.extend([(f"{p}", ".") for p in Path(self._site_packages, "PyQt6", "Qt6").glob("**/*.dll")]) + + with open(os.path.join(self.recipe_folder, "UltiMaker-Cura.spec.jinja"), "r") as f: + pyinstaller = Template(f.read()) + + version = self.conf_info.get("user.cura:version", default = self.version, check_type = str) + cura_version = Version(version) + + 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, + venv_script_path = str(self._script_dir), + hiddenimports = pyinstaller_metadata["hiddenimports"], + collect_all = pyinstaller_metadata["collect_all"], + icon = icon_path, + entitlements_file = entitlements_file, + osx_bundle_identifier = "'nl.ultimaker.cura'" if self.settings.os == "Macos" else "None", + upx = str(self.settings.os == "Windows"), + strip = False, # This should be possible on Linux and MacOS but, it can also cause issues on some distributions. Safest is to disable it for now + target_arch = self._pyinstaller_spec_arch, + macos = self.settings.os == "Macos", + version = f"'{version}'", + short_version = f"'{cura_version.major}.{cura_version.minor}.{cura_version.patch}'", + )) + + def export_sources(self): + 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, "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 configure(self): + self.options["pyarcus"].shared = True + self.options["pysavitar"].shared = True + self.options["pynest2d"].shared = True + self.options["cpython"].shared = True + + def validate(self): + version = self.conf_info.get("user.cura:version", default = self.version, check_type = str) + if version and Version(version) <= Version("4"): + raise ConanInvalidConfiguration("Only versions 5+ are support") + + def requirements(self): + self.requires("pyarcus/5.2.2") + self.requires("curaengine/(latest)@ultimaker/testing") + self.requires("pysavitar/5.2.2") + self.requires("pynest2d/5.2.2") + self.requires("uranium/(latest)@ultimaker/testing") + self.requires("cura_binary_data/(latest)@ultimaker/testing") + self.requires("cpython/3.10.4") + if self.options.internal: + self.requires("cura_private_data/(latest)@ultimaker/testing") + self.requires("fdm_materials/(latest)@internal/testing") + else: + self.requires("fdm_materials/(latest)@ultimaker/testing") + + def build_requirements(self): + if self.options.devtools: + if self.settings.os != "Windows" or self.conf.get("tools.microsoft.bash:path", check_type = str): + # FIXME: once m4, autoconf, automake are Conan V2 ready use self.win_bash and add gettext as base tool_requirement + self.tool_requires("gettext/0.21@ultimaker/testing", force_host_context = True) + + def layout(self): + self.folders.source = "." + self.folders.build = "venv" + self.folders.generators = os.path.join(self.folders.build, "conan") + + 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 + + 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(os.path.join(self.source_folder, "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") + + # Update the po and pot files + if self.settings.os != "Windows" or self.conf.get("tools.microsoft.bash:path", check_type=str): + 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.generate() + + def build(self): + if self.options.devtools: + if self.settings.os != "Windows" or self.conf.get("tools.microsoft.bash:path", check_type = str): + # FIXME: once m4, autoconf, automake are Conan V2 ready use self.win_bash and add gettext as base tool_requirement + 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) + + def imports(self): + self.copy("CuraEngine.exe", root_package = "curaengine", src = "@bindirs", dst = "", keep_path = False) + self.copy("CuraEngine", root_package = "curaengine", src = "@bindirs", dst = "", keep_path = False) + + rmdir(self, os.path.join(self.source_folder, "resources", "materials")) + self.copy("*.fdm_material", root_package = "fdm_materials", src = "@resdirs", dst = "resources/materials", keep_path = False) + self.copy("*.sig", root_package = "fdm_materials", src = "@resdirs", dst = "resources/materials", keep_path = False) + + if self.options.internal: + self.copy("*", root_package = "cura_private_data", src = self.deps_cpp_info["cura_private_data"].resdirs[0], + dst = self._share_dir.joinpath("cura", "resources"), keep_path = True) + + # Copy resources of cura_binary_data + self.copy("*", root_package = "cura_binary_data", src = self.deps_cpp_info["cura_binary_data"].resdirs[0], + dst = self._share_dir.joinpath("cura", "resources"), keep_path = True) + self.copy("*", root_package = "cura_binary_data", src = self.deps_cpp_info["cura_binary_data"].resdirs[1], + dst =self._share_dir.joinpath("uranium", "resources"), keep_path = True) + + self.copy("*.dll", src = "@bindirs", dst = self._site_packages) + self.copy("*.pyd", src = "@libdirs", dst = self._site_packages) + self.copy("*.pyi", src = "@libdirs", dst = self._site_packages) + self.copy("*.dylib", src = "@libdirs", dst = self._script_dir) + + def deploy(self): + # Copy CuraEngine.exe to bindirs of Virtual Python Environment + curaengine = self.dependencies["curaengine"].cpp_info + copy(self, "CuraEngine.exe", curaengine.bindirs[0], str(self._base_dir), keep_path = False) + copy(self, "CuraEngine", curaengine.bindirs[0], str(self._base_dir), keep_path = False) + + # Copy resources of Cura (keep folder structure) + copy(self, "*", os.path.join(self.package_folder, self.cpp_info.bindirs[0]), str(self._base_dir), keep_path = False) + copy(self, "*", os.path.join(self.package_folder, self.cpp_info.libdirs[0]), str(self._site_packages.joinpath("cura")), keep_path = True) + copy(self, "*", os.path.join(self.package_folder, self.cpp_info.resdirs[0]), str(self._share_dir.joinpath("cura", "resources")), keep_path = True) + copy(self, "*", os.path.join(self.package_folder, self.cpp_info.resdirs[1]), str(self._share_dir.joinpath("cura", "plugins")), keep_path = True) + + # Copy materials (flat) + fdm_materials = self.dependencies["fdm_materials"].cpp_info + copy(self, "*", fdm_materials.resdirs[0], str(self._share_dir.joinpath("cura"))) + + # Copy internal resources + 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"))) + + # Copy resources of Uranium (keep folder structure) + uranium = self.dependencies["uranium"].cpp_info + copy(self, "*", uranium.resdirs[0], str(self._share_dir.joinpath("uranium", "resources")), keep_path = True) + 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) + + # TODO: figure out if this is still needed + copy(self, "*", os.path.join(uranium.libdirs[0], "Qt", "qml", "UM"), str(self._site_packages.joinpath("PyQt6", "Qt6", "qml", "UM")), keep_path = True) + + # Copy resources of cura_binary_data + cura_binary_data = self.dependencies["cura_binary_data"].cpp_info + copy(self, "*", cura_binary_data.resdirs[0], str(self._share_dir.joinpath("cura")), keep_path = True) + copy(self, "*", cura_binary_data.resdirs[1], str(self._share_dir.joinpath("uranium")), keep_path = True) + if self.settings.os == "Windows": + copy(self, "*", cura_binary_data.resdirs[2], str(self._share_dir.joinpath("windows")), keep_path = True) + + for dependency in self.dependencies.host.values(): + for bindir in dependency.cpp_info.bindirs: + copy(self, "*.dll", bindir, str(self._site_packages), keep_path = False) + for libdir in dependency.cpp_info.libdirs: + 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 packaging scripts + copy(self, "*", os.path.join(self.package_folder, self.cpp_info.resdirs[2]), str(self._base_dir.joinpath("packaging")), keep_path = True) + + # Copy requirements.txt's + copy(self, "*.txt", os.path.join(self.package_folder, self.cpp_info.resdirs[-1]), str(self._base_dir.joinpath("pip_requirements")), keep_path = False) + + # Generate the GitHub Action version info Environment + version = self.conf_info.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) + + 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, + 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") + + def package(self): + copy(self, "cura_app.py", src = self.source_folder, dst = os.path.join(self.package_folder, self.cpp.package.bindirs[0])) + copy(self, "*", src = os.path.join(self.source_folder, "cura"), dst = os.path.join(self.package_folder, self.cpp.package.libdirs[0])) + 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])) + + 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.runenv_info.append_path("PYTHONPATH", os.path.join(self.package_folder, "plugins")) + else: + self.runenv_info.append_path("PYTHONPATH", self.source_folder) + self.runenv_info.append_path("PYTHONPATH", os.path.join(self.source_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 + + # 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. diff --git a/contributing.md b/contributing.md index 06f9dd472b..180b6b1461 100644 --- a/contributing.md +++ b/contributing.md @@ -16,4 +16,6 @@ Making pull requests -------------------- If you want to propose a change to Cura's source code, please create a pull request in the appropriate repository (being [Cura](https://github.com/Ultimaker/Cura), [Uranium](https://github.com/Ultimaker/Uranium), [CuraEngine](https://github.com/Ultimaker/CuraEngine), [fdm_materials](https://github.com/Ultimaker/fdm_materials), [libArcus](https://github.com/Ultimaker/libArcus), [cura-build](https://github.com/Ultimaker/cura-build), [cura-build-environment](https://github.com/Ultimaker/cura-build-environment), [libSavitar](https://github.com/Ultimaker/libSavitar), [libCharon](https://github.com/Ultimaker/libCharon) or [cura-binary-data](https://github.com/Ultimaker/cura-binary-data)) and if your change requires changes on multiple of these repositories, please link them together so that we know to merge them together. -Some of these repositories will have automated tests running when you create a pull request, indicated by green check marks or red crosses in the Github web page. If you see a red cross, that means that a test has failed. If the test doesn't fail on the Master branch but does fail on your branch, that indicates that you've probably made a mistake and you need to do that. Click on the cross for more details, or run the test locally by running `cmake . && ctest --verbose`. \ No newline at end of file +The style guide for code contributions to Cura and other Ultimaker projects can be found [here](https://github.com/Ultimaker/Meta/blob/master/general/generic_code_conventions.md). + +Some of these repositories will have automated tests running when you create a pull request, indicated by green check marks or red crosses in the Github web page. If you see a red cross, that means that a test has failed. If the test doesn't fail on the Master branch but does fail on your branch, that indicates that you've probably made a mistake and you need to do that. Click on the cross for more details, or run the test locally by running `cmake . && ctest --verbose`. diff --git a/cura-logo-dark.PNG b/cura-logo-dark.PNG new file mode 100644 index 0000000000..c176eda379 Binary files /dev/null and b/cura-logo-dark.PNG differ diff --git a/cura-logo.PNG b/cura-logo.PNG index 52da8203a8..972dcd7535 100644 Binary files a/cura-logo.PNG and b/cura-logo.PNG differ diff --git a/cura/API/Account.py b/cura/API/Account.py index b63983e0cc..2651037e9e 100644 --- a/cura/API/Account.py +++ b/cura/API/Account.py @@ -1,19 +1,26 @@ -# Copyright (c) 2021 Ultimaker B.V. +# Copyright (c) 2022 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. import enum from datetime import datetime +import json from PyQt6.QtCore import QObject, pyqtSignal, pyqtSlot, pyqtProperty, QTimer, pyqtEnum -from typing import Any, Optional, Dict, TYPE_CHECKING, Callable +from PyQt6.QtNetwork import QNetworkRequest +from typing import Any, Callable, Dict, List, Optional, TYPE_CHECKING +from UM.Decorators import deprecated from UM.Logger import Logger from UM.Message import Message from UM.i18n import i18nCatalog +from UM.TaskManagement.HttpRequestManager import HttpRequestManager +from UM.TaskManagement.HttpRequestScope import JsonDecoratorScope from cura.OAuth2.AuthorizationService import AuthorizationService from cura.OAuth2.Models import OAuth2Settings, UserProfile from cura.UltimakerCloud import UltimakerCloudConstants +from cura.UltimakerCloud.UltimakerCloudScope import UltimakerCloudScope if TYPE_CHECKING: from cura.CuraApplication import CuraApplication + from PyQt6.QtNetwork import QNetworkReply i18n_catalog = i18nCatalog("cura") @@ -78,6 +85,7 @@ class Account(QObject): self._logged_in = False self._user_profile: Optional[UserProfile] = None self._additional_rights: Dict[str, Any] = {} + self._permissions: List[str] = [] # List of account permission keys, e.g. ["digital-factory.print-job.write"] self._sync_state = SyncState.IDLE self._manual_sync_enabled = False self._update_packages_enabled = False @@ -109,6 +117,7 @@ class Account(QObject): self._sync_services: Dict[str, int] = {} """contains entries "service_name" : SyncState""" + self.syncRequested.connect(self._updatePermissions) def initialize(self) -> None: self._authorization_service.initialize(self._application.getPreferences()) @@ -311,13 +320,63 @@ class Account(QObject): self._authorization_service.deleteAuthData() + @deprecated("Get permissions from the 'permissions' property", since = "5.2.0") def updateAdditionalRight(self, **kwargs) -> None: """Update the additional rights of the account. The argument(s) are the rights that need to be set""" self._additional_rights.update(kwargs) self.additionalRightsChanged.emit(self._additional_rights) + @deprecated("Get permissions from the 'permissions' property", since = "5.2.0") @pyqtProperty("QVariantMap", notify = additionalRightsChanged) def additionalRights(self) -> Dict[str, Any]: """A dictionary which can be queried for additional account rights.""" return self._additional_rights + + permissionsChanged = pyqtSignal() + @pyqtProperty("QVariantList", notify = permissionsChanged) + def permissions(self) -> List[str]: + """ + The permission keys that the user has in his account. + """ + return self._permissions + + def _updatePermissions(self) -> None: + """ + Update the list of permissions that the user has. + """ + def callback(reply: "QNetworkReply"): + status_code = reply.attribute(QNetworkRequest.Attribute.HttpStatusCodeAttribute) + if status_code is None: + Logger.error("Server did not respond to request to get list of permissions.") + return + if status_code >= 300: + Logger.error(f"Request to get list of permission resulted in HTTP error {status_code}") + return + + try: + reply_data = json.loads(bytes(reply.readAll()).decode("UTF-8")) + except (UnicodeDecodeError, json.JSONDecodeError, ValueError) as e: + Logger.logException("e", f"Could not parse response to permission list request: {e}") + return + if "errors" in reply_data: + Logger.error(f"Request to get list of permission resulted in error response: {reply_data['errors']}") + return + + if "data" in reply_data and "permissions" in reply_data["data"]: + permissions = sorted(reply_data["data"]["permissions"]) + if permissions != self._permissions: + self._permissions = permissions + self.permissionsChanged.emit() + + def error_callback(reply: "QNetworkReply", error: "QNetworkReply.NetworkError"): + Logger.error(f"Request for user permissions list failed. Network error: {error}") + + HttpRequestManager.getInstance().get( + url = f"{self._oauth_root}/users/permissions", + scope = JsonDecoratorScope(UltimakerCloudScope(self._application)), + callback = callback, + error_callback = error_callback, + timeout = 10 + ) + diff --git a/cura/ApplicationMetadata.py b/cura/ApplicationMetadata.py index cb80c12416..3e0b0290aa 100644 --- a/cura/ApplicationMetadata.py +++ b/cura/ApplicationMetadata.py @@ -1,19 +1,27 @@ -# Copyright (c) 2022 Ultimaker B.V. -# Cura is released under the terms of the LGPLv3 or higher. +# Copyright (c) 2022 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. # --------- # General constants used in Cura # --------- DEFAULT_CURA_APP_NAME = "cura" -DEFAULT_CURA_DISPLAY_NAME = "Ultimaker Cura" -DEFAULT_CURA_VERSION = "master" +DEFAULT_CURA_DISPLAY_NAME = "UltiMaker Cura" +DEFAULT_CURA_VERSION = "dev" DEFAULT_CURA_BUILD_TYPE = "" DEFAULT_CURA_DEBUG_MODE = False +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.0.0" +CuraSDKVersion = "8.3.0" + +try: + from cura.CuraVersion import CuraLatestURL + if CuraLatestURL == "": + CuraLatestURL = DEFAULT_CURA_LATEST_URL +except ImportError: + CuraLatestURL = DEFAULT_CURA_LATEST_URL try: from cura.CuraVersion import CuraAppName # type: ignore @@ -56,7 +64,18 @@ try: if CuraAppDisplayName == "": CuraAppDisplayName = DEFAULT_CURA_DISPLAY_NAME if IsEnterpriseVersion: - CuraAppDisplayName = CuraAppDisplayName + " Enterprise" + CuraAppDisplayName = CuraAppDisplayName except ImportError: CuraAppDisplayName = DEFAULT_CURA_DISPLAY_NAME + +DEPENDENCY_INFO = {} +try: + from pathlib import Path + conan_install_info = Path(__file__).parent.parent.joinpath("conan_install_info.json") + if conan_install_info.exists(): + import json + with open(conan_install_info, "r") as f: + DEPENDENCY_INFO = json.loads(f.read()) +except: + pass diff --git a/cura/Arranging/ArrangeObjectsJob.py b/cura/Arranging/ArrangeObjectsJob.py index e65a442acb..6ba6717191 100644 --- a/cura/Arranging/ArrangeObjectsJob.py +++ b/cura/Arranging/ArrangeObjectsJob.py @@ -21,6 +21,7 @@ class ArrangeObjectsJob(Job): self._min_offset = min_offset def run(self): + found_solution_for_all = False status_message = Message(i18n_catalog.i18nc("@info:status", "Finding new location for objects"), lifetime = 0, dismissable = False, @@ -28,18 +29,19 @@ class ArrangeObjectsJob(Job): title = i18n_catalog.i18nc("@info:title", "Finding Location")) status_message.show() - found_solution_for_all = None try: found_solution_for_all = arrange(self._nodes, Application.getInstance().getBuildVolume(), self._fixed_nodes) 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.") status_message.hide() - if found_solution_for_all is not None and not found_solution_for_all: + + if not found_solution_for_all: no_full_solution_message = Message( i18n_catalog.i18nc("@info:status", "Unable to find a location within the build volume for all objects"), title = i18n_catalog.i18nc("@info:title", "Can't Find Location"), message_type = Message.MessageType.ERROR) no_full_solution_message.show() + self.finished.emit(self) diff --git a/cura/Arranging/ShapeArray.py b/cura/Arranging/ShapeArray.py index 5607c03663..714d9d3837 100644 --- a/cura/Arranging/ShapeArray.py +++ b/cura/Arranging/ShapeArray.py @@ -74,14 +74,14 @@ class ShapeArray: # If the child-nodes are included, adjust convex hulls as well: if include_children: children = node.getAllChildren() - if not children is None: + if children is not None: for child in children: # 'Inefficient' combination of convex hulls through known code rather than mess it up: child_hull = child.callDecoration("getConvexHull") - if not child_hull is None: + if child_hull is not None: hull_verts = hull_verts.unionConvexHulls(child_hull) child_hull_head = child.callDecoration("getConvexHullHead") or child_hull - if not child_hull_head is None: + if child_hull_head is not None: hull_head_verts = hull_head_verts.unionConvexHulls(child_hull_head) offset_verts = hull_head_verts.getMinkowskiHull(Polygon.approximatedCircle(min_offset)) @@ -159,4 +159,4 @@ class ShapeArray: max_col_idx = (idxs[0] - p1[0]) / (p2[0] - p1[0]) * (p2[1] - p1[1]) + p1[1] sign = numpy.sign(p2[0] - p1[0]) - return idxs[1] * sign <= max_col_idx * sign \ No newline at end of file + return idxs[1] * sign <= max_col_idx * sign diff --git a/cura/Backups/Backup.py b/cura/Backups/Backup.py index a5fc3044ce..19655df531 100644 --- a/cura/Backups/Backup.py +++ b/cura/Backups/Backup.py @@ -136,7 +136,7 @@ class Backup: return False current_version = Version(self._application.getVersion()) - version_to_restore = Version(self.meta_data.get("cura_release", "master")) + version_to_restore = Version(self.meta_data.get("cura_release", "dev")) if current_version < version_to_restore: # Cannot restore version newer than current because settings might have changed. diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index 776d92a1f6..1536d541c7 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -810,11 +810,6 @@ class BuildVolume(SceneNode): break if prime_tower_collision: # Already found a collision. break - if self._global_container_stack.getProperty("prime_tower_brim_enable", "value") and self._global_container_stack.getProperty("adhesion_type", "value") != "raft": - brim_size = self._calculateBedAdhesionSize(used_extruders, "brim") - # Use 2x the brim size, since we need 1x brim size distance due to the object brim and another - # times the brim due to the brim of the prime tower - prime_tower_areas[extruder_id][area_index] = prime_tower_area.getMinkowskiHull(Polygon.approximatedCircle(2 * brim_size, num_segments = 24)) if not prime_tower_collision: result_areas[extruder_id].extend(prime_tower_areas[extruder_id]) result_areas_no_brim[extruder_id].extend(prime_tower_areas[extruder_id]) @@ -840,9 +835,13 @@ class BuildVolume(SceneNode): result = {} skirt_brim_extruder: ExtruderStack = None + skirt_brim_extruder_nr = self._global_container_stack.getProperty("skirt_brim_extruder_nr", "value") + for extruder in used_extruders: - if int(extruder.getProperty("extruder_nr", "value")) == int(self._global_container_stack.getProperty("skirt_brim_extruder_nr", "value")): - skirt_brim_extruder = extruder + if skirt_brim_extruder_nr == -1: + skirt_brim_extruder = used_extruders[0] # The prime tower brim is always printed with the first extruder + elif int(extruder.getProperty("extruder_nr", "value")) == int(skirt_brim_extruder_nr): + skirt_brim_extruder = extruder result[extruder.getId()] = [] # Currently, the only normally printed object is the prime tower. @@ -856,15 +855,6 @@ class BuildVolume(SceneNode): prime_tower_x = prime_tower_x - machine_width / 2 #Offset by half machine_width and _depth to put the origin in the front-left. prime_tower_y = prime_tower_y + machine_depth / 2 - if skirt_brim_extruder is not None and self._global_container_stack.getProperty("prime_tower_brim_enable", "value") and self._global_container_stack.getProperty("adhesion_type", "value") != "raft": - brim_size = ( - skirt_brim_extruder.getProperty("brim_line_count", "value") * - skirt_brim_extruder.getProperty("skirt_brim_line_width", "value") / 100.0 * - skirt_brim_extruder.getProperty("initial_layer_line_width_factor", "value") - ) - prime_tower_x -= brim_size - prime_tower_y += brim_size - radius = prime_tower_size / 2 prime_tower_area = Polygon.approximatedCircle(radius, num_segments = 24) prime_tower_area = prime_tower_area.translate(prime_tower_x - radius, prime_tower_y - radius) @@ -1076,7 +1066,7 @@ class BuildVolume(SceneNode): all_values[i] = 0 return all_values - def _calculateBedAdhesionSize(self, used_extruders, adhesion_override = None): + def _calculateBedAdhesionSize(self, used_extruders): """Get the bed adhesion size for the global container stack and used extruders :param adhesion_override: override adhesion type. @@ -1086,52 +1076,12 @@ class BuildVolume(SceneNode): return None container_stack = self._global_container_stack - adhesion_type = adhesion_override - if adhesion_type is None: - adhesion_type = container_stack.getProperty("adhesion_type", "value") + adhesion_type = container_stack.getProperty("adhesion_type", "value") - # Skirt_brim_line_width is a bit of an odd one out. The primary bit of the skirt/brim is printed - # with the adhesion extruder, but it also prints one extra line by all other extruders. As such, the - # setting does *not* have a limit_to_extruder setting (which means that we can't ask the global extruder what - # the value is. - skirt_brim_extruder_nr = self._global_container_stack.getProperty("skirt_brim_extruder_nr", "value") - try: - skirt_brim_stack = self._global_container_stack.extruderList[int(skirt_brim_extruder_nr)] - except IndexError: - Logger.warning(f"Couldn't find extruder with index '{skirt_brim_extruder_nr}', defaulting to 0 instead.") - skirt_brim_stack = self._global_container_stack.extruderList[0] - skirt_brim_line_width = skirt_brim_stack.getProperty("skirt_brim_line_width", "value") - - initial_layer_line_width_factor = skirt_brim_stack.getProperty("initial_layer_line_width_factor", "value") - # Use brim width if brim is enabled OR the prime tower has a brim. - if adhesion_type == "brim": - brim_line_count = skirt_brim_stack.getProperty("brim_line_count", "value") - brim_gap = skirt_brim_stack.getProperty("brim_gap", "value") - bed_adhesion_size = brim_gap + skirt_brim_line_width * brim_line_count * initial_layer_line_width_factor / 100.0 - - for extruder_stack in used_extruders: - bed_adhesion_size += extruder_stack.getProperty("skirt_brim_line_width", "value") * extruder_stack.getProperty("initial_layer_line_width_factor", "value") / 100.0 - - # We don't create an additional line for the extruder we're printing the brim with. - bed_adhesion_size -= skirt_brim_line_width * initial_layer_line_width_factor / 100.0 - elif adhesion_type == "skirt": - skirt_distance = skirt_brim_stack.getProperty("skirt_gap", "value") - skirt_line_count = skirt_brim_stack.getProperty("skirt_line_count", "value") - - bed_adhesion_size = skirt_distance + ( - skirt_brim_line_width * skirt_line_count) * initial_layer_line_width_factor / 100.0 - - for extruder_stack in used_extruders: - bed_adhesion_size += extruder_stack.getProperty("skirt_brim_line_width", "value") * extruder_stack.getProperty("initial_layer_line_width_factor", "value") / 100.0 - - # We don't create an additional line for the extruder we're printing the skirt with. - bed_adhesion_size -= skirt_brim_line_width * initial_layer_line_width_factor / 100.0 - elif adhesion_type == "raft": + if adhesion_type == "raft": bed_adhesion_size = self._global_container_stack.getProperty("raft_margin", "value") # Should refer to the raft extruder if set. - elif adhesion_type == "none": + else: # raft, brim or skirt. Those last two are handled by CuraEngine. bed_adhesion_size = 0 - else: - raise Exception("Unknown bed adhesion type. Did you forget to update the build volume calculations for your new bed adhesion type?") max_length_available = 0.5 * min( self._global_container_stack.getProperty("machine_width", "value"), diff --git a/cura/CrashHandler.py b/cura/CrashHandler.py index 541a270058..e6214d7073 100644 --- a/cura/CrashHandler.py +++ b/cura/CrashHandler.py @@ -1,5 +1,5 @@ -# Copyright (c) 2019 Ultimaker B.V. -# Cura is released under the terms of the LGPLv3 or higher. +# Copyright (c) 2022 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. import platform import traceback @@ -110,7 +110,7 @@ class CrashHandler: layout = QVBoxLayout(dialog) label = QLabel() - label.setText(catalog.i18nc("@label crash message", """

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

+ label.setText(catalog.i18nc("@label crash message", """

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

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.

Backups can be found in the configuration folder.

Please send us this Crash Report to fix the problem.

@@ -119,7 +119,7 @@ class CrashHandler: layout.addWidget(label) # "send report" check box and show details - self._send_report_checkbox = QCheckBox(catalog.i18nc("@action:button", "Send crash report to Ultimaker"), dialog) + self._send_report_checkbox = QCheckBox(catalog.i18nc("@action:button", "Send crash report to UltiMaker"), dialog) self._send_report_checkbox.setChecked(True) show_details_button = QPushButton(catalog.i18nc("@action:button", "Show detailed crash report"), dialog) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index e1805584b0..113e7b3ff4 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -115,6 +115,8 @@ from . import CuraActions from . import PlatformPhysics from . import PrintJobPreviewImageProvider from .AutoSave import AutoSave +from .Machines.Models.CompatibleMachineModel import CompatibleMachineModel +from .Machines.Models.MachineListModel import MachineListModel from .Machines.Models.ActiveIntentQualitiesModel import ActiveIntentQualitiesModel from .Machines.Models.IntentSelectionModel import IntentSelectionModel from .SingleInstance import SingleInstance @@ -128,7 +130,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 = 20 + SettingVersion = 22 Created = False @@ -152,6 +154,7 @@ class CuraApplication(QtApplication): super().__init__(name = ApplicationMetadata.CuraAppName, app_display_name = ApplicationMetadata.CuraAppDisplayName, version = ApplicationMetadata.CuraVersion if not ApplicationMetadata.IsAlternateVersion else ApplicationMetadata.CuraBuildType, + latest_url = ApplicationMetadata.CuraLatestURL, api_version = ApplicationMetadata.CuraSDKVersion, build_type = ApplicationMetadata.CuraBuildType, is_debug_mode = ApplicationMetadata.CuraDebugMode, @@ -355,8 +358,14 @@ class CuraApplication(QtApplication): Resources.addSecureSearchPath(os.path.join(self._app_install_dir, "share", "cura", "resources")) if not hasattr(sys, "frozen"): - resource_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "resources") - Resources.addSecureSearchPath(resource_path) + Resources.addSearchPath(os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "resources")) + + # local Conan cache + Resources.addSearchPath(os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "..", "resources")) + Resources.addSearchPath(os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "..", "plugins")) + + # venv site-packages + Resources.addSearchPath(os.path.join(app_root, "..", "share", "cura", "resources")) @classmethod def _initializeSettingDefinitions(cls): @@ -700,6 +709,7 @@ class CuraApplication(QtApplication): self.showMessageBox.emit(title, text, informativeText, detailedText, buttons, icon) showDiscardOrKeepProfileChanges = pyqtSignal() + showCompareAndSaveProfileChanges = pyqtSignal(int) def discardOrKeepProfileChanges(self) -> bool: has_user_interaction = False @@ -814,6 +824,12 @@ class CuraApplication(QtApplication): def run(self): super().run() + if len(ApplicationMetadata.DEPENDENCY_INFO) > 0: + Logger.debug("Using Conan managed dependencies: " + ", ".join( + [dep["recipe"]["id"] for dep in ApplicationMetadata.DEPENDENCY_INFO["installed"] if dep["recipe"]["version"] != "latest"])) + else: + Logger.warning("Could not find conan_install_info.json") + Logger.log("i", "Initializing machine error checker") self._machine_error_checker = MachineErrorChecker(self) self._machine_error_checker.initialize() @@ -1176,6 +1192,8 @@ class CuraApplication(QtApplication): qmlRegisterType(InstanceContainer, "Cura", 1, 0, "InstanceContainer") qmlRegisterType(ExtrudersModel, "Cura", 1, 0, "ExtrudersModel") qmlRegisterType(GlobalStacksModel, "Cura", 1, 0, "GlobalStacksModel") + qmlRegisterType(MachineListModel, "Cura", 1, 0, "MachineListModel") + qmlRegisterType(CompatibleMachineModel, "Cura", 1, 0, "CompatibleMachineModel") self.processEvents() qmlRegisterType(FavoriteMaterialsModel, "Cura", 1, 0, "FavoriteMaterialsModel") @@ -1430,7 +1448,7 @@ class CuraApplication(QtApplication): bounding_box = node.getBoundingBox() if bounding_box is None or bounding_box.width < self._volume.getBoundingBox().width or bounding_box.depth < self._volume.getBoundingBox().depth: # Arrange only the unlocked nodes and keep the locked ones in place - if UM.Util.parseBool(node.getSetting(SceneNodeSettings.LockPosition)): + if node.getSetting(SceneNodeSettings.LockPosition): locked_nodes.append(node) else: nodes_to_arrange.append(node) @@ -2058,3 +2076,7 @@ class CuraApplication(QtApplication): @classmethod def getInstance(cls, *args, **kwargs) -> "CuraApplication": return cast(CuraApplication, super().getInstance(**kwargs)) + + @pyqtProperty(bool, constant=True) + def isEnterprise(self) -> bool: + return ApplicationMetadata.IsEnterpriseVersion diff --git a/cura/CuraPackageManager.py b/cura/CuraPackageManager.py index da71021d1f..a8f5b24a7b 100644 --- a/cura/CuraPackageManager.py +++ b/cura/CuraPackageManager.py @@ -14,6 +14,7 @@ from cura.Settings.GlobalStack import GlobalStack from UM.PackageManager import PackageManager # The class we're extending. from UM.Resources import Resources # To find storage paths for some resource types. from UM.i18n import i18nCatalog +from urllib.parse import unquote_plus catalog = i18nCatalog("cura") @@ -54,6 +55,14 @@ class CuraPackageManager(PackageManager): def initialize(self) -> None: self._installation_dirs_dict["materials"] = Resources.getStoragePath(CuraApplication.ResourceTypes.MaterialInstanceContainer) self._installation_dirs_dict["qualities"] = Resources.getStoragePath(CuraApplication.ResourceTypes.QualityInstanceContainer) + self._installation_dirs_dict["variants"] = Resources.getStoragePath(CuraApplication.ResourceTypes.VariantInstanceContainer) + + # Due to a bug in Cura 5.1.0 we needed to change the directory structure of the curapackage on the server side (See SD-3871). + # Although the material intent profiles will be installed in the `intent` folder, the curapackage from the server side will + # have an `intents` folder. For completeness, we will look in both locations of in the curapackage and map them both to the + # `intent` folder. + self._installation_dirs_dict["intents"] = Resources.getStoragePath(CuraApplication.ResourceTypes.IntentInstanceContainer) + self._installation_dirs_dict["intent"] = Resources.getStoragePath(CuraApplication.ResourceTypes.IntentInstanceContainer) super().initialize() @@ -80,6 +89,7 @@ class CuraPackageManager(PackageManager): def getMaterialFilePackageId(self, file_name: str, guid: str) -> str: """Get the id of the installed material package that contains file_name""" + file_name = unquote_plus(file_name) for material_package in [f for f in os.scandir(self._installation_dirs_dict["materials"]) if f.is_dir()]: package_id = material_package.name @@ -98,6 +108,7 @@ class CuraPackageManager(PackageManager): return package_id Logger.error("Could not find package_id for file: {} with GUID: {} ".format(file_name, guid)) + Logger.error(f"Bundled paths searched: {list(Resources.getSecureSearchPaths())}") return "" def getMachinesUsingPackage(self, package_id: str) -> Tuple[List[Tuple[GlobalStack, str, str]], List[Tuple[GlobalStack, str, str]]]: diff --git a/cura/CuraVersion.py.in b/cura/CuraVersion.py.in deleted file mode 100644 index ce2264f5fc..0000000000 --- a/cura/CuraVersion.py.in +++ /dev/null @@ -1,13 +0,0 @@ -# Copyright (c) 2020 Ultimaker B.V. -# Cura is released under the terms of the LGPLv3 or higher. - -CuraAppName = "@CURA_APP_NAME@" -CuraAppDisplayName = "@CURA_APP_DISPLAY_NAME@" -CuraVersion = "@CURA_VERSION@" -CuraBuildType = "@CURA_BUILDTYPE@" -CuraDebugMode = True if "@_cura_debugmode@" == "ON" else False -CuraCloudAPIRoot = "@CURA_CLOUD_API_ROOT@" -CuraCloudAPIVersion = "@CURA_CLOUD_API_VERSION@" -CuraCloudAccountAPIRoot = "@CURA_CLOUD_ACCOUNT_API_ROOT@" -CuraMarketplaceRoot = "@CURA_MARKETPLACE_ROOT@" -CuraDigitalFactoryURL = "@CURA_DIGITAL_FACTORY_URL@" diff --git a/cura/LayerPolygon.py b/cura/LayerPolygon.py index 2c3b432b1d..103703e594 100644 --- a/cura/LayerPolygon.py +++ b/cura/LayerPolygon.py @@ -24,9 +24,12 @@ class LayerPolygon: PrimeTowerType = 11 __number_of_types = 12 - __jump_map = numpy.logical_or(numpy.logical_or(numpy.arange(__number_of_types) == NoneType, numpy.arange(__number_of_types) == MoveCombingType), numpy.arange(__number_of_types) == MoveRetractionType) + __jump_map = numpy.logical_or(numpy.logical_or(numpy.arange(__number_of_types) == NoneType, + numpy.arange(__number_of_types) == MoveCombingType), + numpy.arange(__number_of_types) == MoveRetractionType) - def __init__(self, extruder: int, line_types: numpy.ndarray, data: numpy.ndarray, line_widths: numpy.ndarray, line_thicknesses: numpy.ndarray, line_feedrates: numpy.ndarray) -> None: + def __init__(self, extruder: int, line_types: numpy.ndarray, data: numpy.ndarray, + line_widths: numpy.ndarray, line_thicknesses: numpy.ndarray, line_feedrates: numpy.ndarray) -> None: """LayerPolygon, used in ProcessSlicedLayersJob :param extruder: The position of the extruder @@ -39,10 +42,12 @@ class LayerPolygon: self._extruder = extruder self._types = line_types - for i in range(len(self._types)): - if self._types[i] >= self.__number_of_types: # Got faulty line data from the engine. - Logger.log("w", "Found an unknown line type: %s", i) - self._types[i] = self.NoneType + unknown_types = numpy.where(self._types >= self.__number_of_types, self._types, None) + if unknown_types.any(): + # Got faulty line data from the engine. + for idx in unknown_types: + Logger.warning(f"Found an unknown line type at: {idx}") + self._types[idx] = self.NoneType self._data = data self._line_widths = line_widths self._line_thicknesses = line_thicknesses @@ -58,14 +63,16 @@ class LayerPolygon: self._mesh_line_count = len(self._types) - self._jump_count self._vertex_count = self._mesh_line_count + numpy.sum(self._types[1:] == self._types[:-1]) - # Buffering the colors shouldn't be necessary as it is not + # Buffering the colors shouldn't be necessary as it is not # re-used and can save a lot of memory usage. self._color_map = LayerPolygon.getColorMap() self._colors = self._color_map[self._types] # type: numpy.ndarray - # When type is used as index returns true if type == LayerPolygon.InfillType or type == LayerPolygon.SkinType or type == LayerPolygon.SupportInfillType + # When type is used as index returns true if type == LayerPolygon.InfillType + # or type == LayerPolygon.SkinType + # or type == LayerPolygon.SupportInfillType # Should be generated in better way, not hardcoded. - self._is_infill_or_skin_type_map = numpy.array([0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0], dtype = bool) + self._is_infill_or_skin_type_map = numpy.array([0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0], dtype=bool) self._build_cache_line_mesh_mask = None # type: Optional[numpy.ndarray] self._build_cache_needed_points = None # type: Optional[numpy.ndarray] @@ -80,12 +87,14 @@ class LayerPolygon: # Only if the type of line segment changes do we need to add an extra vertex to change colors self._build_cache_needed_points[1:, 0][:, numpy.newaxis] = self._types[1:] != self._types[:-1] # Mark points as unneeded if they are of types we don't want in the line mesh according to the calculated mask - numpy.logical_and(self._build_cache_needed_points, self._build_cache_line_mesh_mask, self._build_cache_needed_points ) + numpy.logical_and(self._build_cache_needed_points, self._build_cache_line_mesh_mask, self._build_cache_needed_points) self._vertex_begin = 0 self._vertex_end = cast(int, numpy.sum(self._build_cache_needed_points)) - def build(self, vertex_offset: int, index_offset: int, vertices: numpy.ndarray, colors: numpy.ndarray, line_dimensions: numpy.ndarray, feedrates: numpy.ndarray, extruders: numpy.ndarray, line_types: numpy.ndarray, indices: numpy.ndarray) -> None: + def build(self, vertex_offset: int, index_offset: int, vertices: numpy.ndarray, + colors: numpy.ndarray, line_dimensions: numpy.ndarray, feedrates: numpy.ndarray, + extruders: numpy.ndarray, line_types: numpy.ndarray, indices: numpy.ndarray) -> None: """Set all the arrays provided by the function caller, representing the LayerPolygon The arrays are either by vertex or by indices. @@ -111,19 +120,20 @@ class LayerPolygon: line_mesh_mask = self._build_cache_line_mesh_mask needed_points_list = self._build_cache_needed_points - # Index to the points we need to represent the line mesh. This is constructed by generating simple - # start and end points for each line. For line segment n these are points n and n+1. Row n reads [n n+1] - # Then then the indices for the points we don't need are thrown away based on the pre-calculated list. - index_list = ( numpy.arange(len(self._types)).reshape((-1, 1)) + numpy.array([[0, 1]]) ).reshape((-1, 1))[needed_points_list.reshape((-1, 1))] + # Index to the points we need to represent the line mesh. + # This is constructed by generating simple start and end points for each line. + # For line segment n, these are points n and n+1. Row n reads [n n+1] + # Then the indices for the points we don't need are thrown away based on the pre-calculated list. + index_list = (numpy.arange(len(self._types)).reshape((-1, 1)) + numpy.array([[0, 1]])).reshape((-1, 1))[needed_points_list.reshape((-1, 1))] # The relative values of begin and end indices have already been set in buildCache, so we only need to offset them to the parents offset. self._vertex_begin += vertex_offset self._vertex_end += vertex_offset - # Points are picked based on the index list to get the vertices needed. + # Points are picked based on the index list to get the vertices needed. vertices[self._vertex_begin:self._vertex_end, :] = self._data[index_list, :] - # Create an array with colors for each vertex and remove the color data for the points that has been thrown away. + # Create an array with colors for each vertex and remove the color data for the points that has been thrown away. colors[self._vertex_begin:self._vertex_end, :] = numpy.tile(self._colors, (1, 2)).reshape((-1, 4))[needed_points_list.ravel()] # Create an array with line widths and thicknesses for each vertex. @@ -138,14 +148,15 @@ class LayerPolygon: # Convert type per vertex to type per line line_types[self._vertex_begin:self._vertex_end] = numpy.tile(self._types, (1, 2)).reshape((-1, 1))[needed_points_list.ravel()][:, 0] - # The relative values of begin and end indices have already been set in buildCache, so we only need to offset them to the parents offset. + # The relative values of begin and end indices have already been set in buildCache, + # so we only need to offset them to the parents offset. self._index_begin += index_offset self._index_end += index_offset - indices[self._index_begin:self._index_end, :] = numpy.arange(self._index_end-self._index_begin, dtype = numpy.int32).reshape((-1, 1)) + indices[self._index_begin:self._index_end, :] = numpy.arange(self._index_end-self._index_begin, dtype=numpy.int32).reshape((-1, 1)) # When the line type changes the index needs to be increased by 2. indices[self._index_begin:self._index_end, :] += numpy.cumsum(needed_points_list[line_mesh_mask.ravel(), 0], dtype = numpy.int32).reshape((-1, 1)) - # Each line segment goes from it's starting point p to p+1, offset by the vertex index. + # Each line segment goes from it's starting point p to p+1, offset by the vertex index. # The -1 is to compensate for the necessarily True value of needed_points_list[0,0] which causes an unwanted +1 in cumsum above. indices[self._index_begin:self._index_end, :] += numpy.array([self._vertex_begin - 1, self._vertex_begin]) @@ -214,13 +225,12 @@ class LayerPolygon: """ normals = numpy.copy(self._data) - normals[:, 1] = 0.0 # We are only interested in 2D normals + normals[:, 1] = 0.0 # We are only interested in 2D normals # Calculate the edges between points. - # The call to numpy.roll shifts the entire array by one so that - # we end up subtracting each next point from the current, wrapping - # around. This gives us the edges from the next point to the current - # point. + # The call to numpy.roll shifts the entire array by one + # so that we end up subtracting each next point from the current, wrapping around. + # This gives us the edges from the next point to the current point. normals = numpy.diff(normals, 1, 0) # Calculate the length of each edge using standard Pythagoras @@ -245,17 +255,17 @@ class LayerPolygon: if cls.__color_map is None: theme = cast(Theme, QtApplication.getInstance().getTheme()) cls.__color_map = numpy.array([ - theme.getColor("layerview_none").getRgbF(), # NoneType - theme.getColor("layerview_inset_0").getRgbF(), # Inset0Type - theme.getColor("layerview_inset_x").getRgbF(), # InsetXType - theme.getColor("layerview_skin").getRgbF(), # SkinType - theme.getColor("layerview_support").getRgbF(), # SupportType - theme.getColor("layerview_skirt").getRgbF(), # SkirtType - theme.getColor("layerview_infill").getRgbF(), # InfillType - theme.getColor("layerview_support_infill").getRgbF(), # SupportInfillType - theme.getColor("layerview_move_combing").getRgbF(), # MoveCombingType - theme.getColor("layerview_move_retraction").getRgbF(), # MoveRetractionType - theme.getColor("layerview_support_interface").getRgbF(), # SupportInterfaceType + theme.getColor("layerview_none").getRgbF(), # NoneType + theme.getColor("layerview_inset_0").getRgbF(), # Inset0Type + theme.getColor("layerview_inset_x").getRgbF(), # InsetXType + theme.getColor("layerview_skin").getRgbF(), # SkinType + theme.getColor("layerview_support").getRgbF(), # SupportType + theme.getColor("layerview_skirt").getRgbF(), # SkirtType + theme.getColor("layerview_infill").getRgbF(), # InfillType + theme.getColor("layerview_support_infill").getRgbF(), # SupportInfillType + theme.getColor("layerview_move_combing").getRgbF(), # MoveCombingType + theme.getColor("layerview_move_retraction").getRgbF(), # MoveRetractionType + theme.getColor("layerview_support_interface").getRgbF(), # SupportInterfaceType theme.getColor("layerview_prime_tower").getRgbF() # PrimeTowerType ]) diff --git a/cura/MachineAction.py b/cura/MachineAction.py index 15d9ab1ca1..eaddebec42 100644 --- a/cura/MachineAction.py +++ b/cura/MachineAction.py @@ -33,8 +33,11 @@ class MachineAction(QObject, PluginObject): self._qml_url = "" self._view = None self._finished = False + self._open_as_dialog = True + self._visible = True labelChanged = pyqtSignal() + visibilityChanged = pyqtSignal() onFinished = pyqtSignal() def getKey(self) -> str: @@ -79,6 +82,15 @@ class MachineAction(QObject, PluginObject): pass + @pyqtSlot() + def execute(self) -> None: + self._execute() + + def _execute(self) -> None: + """Protected implementation of execute.""" + + pass + @pyqtSlot() def setFinished(self) -> None: self._finished = True @@ -94,7 +106,7 @@ class MachineAction(QObject, PluginObject): plugin_path = PluginRegistry.getInstance().getPluginPath(self.getPluginId()) if plugin_path is None: - Logger.log("e", "Cannot create QML view: cannot find plugin path for plugin [%s]", self.getPluginId()) + Logger.error(f"Cannot create QML view: cannot find plugin path for plugin {self.getPluginId()}") return None path = os.path.join(plugin_path, self._qml_url) @@ -106,7 +118,7 @@ class MachineAction(QObject, PluginObject): def qmlPath(self) -> "QUrl": plugin_path = PluginRegistry.getInstance().getPluginPath(self.getPluginId()) if plugin_path is None: - Logger.log("e", "Cannot create QML view: cannot find plugin path for plugin [%s]", self.getPluginId()) + Logger.error(f"Cannot create QML view: cannot find plugin path for plugin {self.getPluginId()}") return QUrl("") path = os.path.join(plugin_path, self._qml_url) return QUrl.fromLocalFile(path) @@ -114,3 +126,30 @@ class MachineAction(QObject, PluginObject): @pyqtSlot(result = QObject) def getDisplayItem(self) -> Optional["QObject"]: return self._createViewFromQML() + + @pyqtProperty(bool, constant=True) + def shouldOpenAsDialog(self) -> bool: + """Whether this action will show a dialog. + + If not, the action will directly run the function inside execute(). + + :return: Defaults to true to be in line with the old behaviour. + """ + return self._open_as_dialog + + @pyqtSlot() + def setVisible(self, visible: bool) -> None: + if self._visible != visible: + self._visible = visible + self.visibilityChanged.emit() + + @pyqtProperty(bool, notify = visibilityChanged) + def visible(self) -> bool: + """Whether this action button will be visible. + + Example: Show only when isLoggedIn + + :return: Defaults to true to be in line with the old behaviour. + """ + + return self._visible \ No newline at end of file diff --git a/cura/Machines/MachineErrorChecker.py b/cura/Machines/MachineErrorChecker.py index 2cb333d157..cc6560378d 100644 --- a/cura/Machines/MachineErrorChecker.py +++ b/cura/Machines/MachineErrorChecker.py @@ -43,13 +43,9 @@ class MachineErrorChecker(QObject): self._application = cura.CuraApplication.CuraApplication.getInstance() self._machine_manager = self._application.getMachineManager() - self._start_time = 0. # measure checking time + self._check_start_time = time.time() - # This timer delays the starting of error check so we can react less frequently if the user is frequently - # changing settings. - self._error_check_timer = QTimer(self) - self._error_check_timer.setInterval(100) - self._error_check_timer.setSingleShot(True) + self._setCheckTimer() self._keys_to_check = set() # type: Set[str] @@ -66,6 +62,18 @@ class MachineErrorChecker(QObject): self._onMachineChanged() + def _setCheckTimer(self) -> None: + """A QTimer to regulate error check frequency + + This timer delays the starting of error check + so we can react less frequently if the user is frequently + changing settings. + """ + + self._error_check_timer = QTimer(self) + self._error_check_timer.setInterval(100) + self._error_check_timer.setSingleShot(True) + def _onMachineChanged(self) -> None: if self._global_stack: self._global_stack.propertyChanged.disconnect(self.startErrorCheckPropertyChanged) @@ -152,7 +160,7 @@ class MachineErrorChecker(QObject): self._stacks_and_keys_to_check.append((stack, key)) self._application.callLater(self._checkStack) - self._start_time = time.time() + self._check_start_time = time.time() Logger.log("d", "New error check scheduled.") def _checkStack(self) -> None: @@ -204,12 +212,10 @@ class MachineErrorChecker(QObject): self._has_errors = result self.hasErrorUpdated.emit() self._machine_manager.stacksValidationChanged.emit() - if keys_to_recheck is None: - self._keys_to_check = set() - else: - self._keys_to_check = keys_to_recheck + self._keys_to_check = keys_to_recheck if keys_to_recheck else set() self._need_to_check = False self._check_in_progress = False self.needToWaitForResultChanged.emit() self.errorCheckFinished.emit() - Logger.log("i", "Error check finished, result = %s, time = %0.1fs", result, time.time() - self._start_time) + execution_time = time.time() - self._check_start_time + Logger.info(f"Error check finished, result = {result}, time = {execution_time:.2f}s") diff --git a/cura/Machines/Models/CompatibleMachineModel.py b/cura/Machines/Models/CompatibleMachineModel.py new file mode 100644 index 0000000000..40a3618b31 --- /dev/null +++ b/cura/Machines/Models/CompatibleMachineModel.py @@ -0,0 +1,83 @@ +# Copyright (c) 2022 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from typing import Optional + +from PyQt6.QtCore import Qt, QObject, pyqtSlot, pyqtProperty, pyqtSignal + +from UM.Logger import Logger +from UM.Qt.ListModel import ListModel +from UM.i18n import i18nCatalog + + +class CompatibleMachineModel(ListModel): + NameRole = Qt.ItemDataRole.UserRole + 1 + UniqueIdRole = Qt.ItemDataRole.UserRole + 2 + ExtrudersRole = Qt.ItemDataRole.UserRole + 3 + + def __init__(self, parent: Optional[QObject] = None) -> None: + super().__init__(parent) + + self._catalog = i18nCatalog("cura") + + self.addRoleName(self.NameRole, "name") + self.addRoleName(self.UniqueIdRole, "unique_id") + self.addRoleName(self.ExtrudersRole, "extruders") + + self._update() + + from cura.CuraApplication import CuraApplication + machine_manager = CuraApplication.getInstance().getMachineManager() + machine_manager.globalContainerChanged.connect(self._update) + machine_manager.outputDevicesChanged.connect(self._update) + + @pyqtSlot() + def forceUpdate(self): + self._update() + + def _update(self) -> None: + self.clear() + + def _makeMaterial(brand, name, color): + if name.lower() in ["", "empty"]: + return {"brand": "", "name": "(empty)", "hexcolor": "#ffffff"} + else: + return {"brand": brand, "name": name, "hexcolor": color} + + from cura.CuraApplication import CuraApplication + machine_manager = CuraApplication.getInstance().getMachineManager() + + # Loop over the output-devices, not the stacks; need all applicable configurations, not just the current loaded one. + for output_device in machine_manager.printerOutputDevices: + for printer in output_device.printers: + extruder_configs = dict() + + # initialize & add current active material: + for extruder in printer.extruders: + if not extruder.activeMaterial: + continue + materials = [_makeMaterial( + extruder.activeMaterial.brand, extruder.activeMaterial.name, extruder.activeMaterial.color)] + extruder_configs[extruder.getPosition()] = { + "position": extruder.getPosition(), + "core": extruder.hotendID, + "materials": materials + } + + # add currently inactive, but possible materials: + for configuration in printer.availableConfigurations: + for extruder in configuration.extruderConfigurations: + if not extruder.position in extruder_configs: + Logger.log("w", f"No active extruder for position {extruder.position}.") + continue + + entry = _makeMaterial(extruder.material.brand, extruder.material.name, extruder.material.color) + if entry not in extruder_configs[extruder.position]["materials"]: + extruder_configs[extruder.position]["materials"].append(entry) + + if any([len(extruder["materials"]) > 0 for extruder in extruder_configs.values()]): + self.appendItem({ + "name": printer.name, + "unique_id": printer.name, # <- Can assume the cloud doesn't have duplicate names? + "extruders": list(extruder_configs.values()) + }) diff --git a/cura/Machines/Models/GlobalStacksModel.py b/cura/Machines/Models/GlobalStacksModel.py index 8f13d34ccf..69f2ec3822 100644 --- a/cura/Machines/Models/GlobalStacksModel.py +++ b/cura/Machines/Models/GlobalStacksModel.py @@ -44,6 +44,7 @@ class GlobalStacksModel(ListModel): self._filter_connection_type = None # type: Optional[ConnectionType] self._filter_online_only = False self._filter_capabilities: List[str] = [] # Required capabilities that all listed printers must have. + self._filter_abstract_machines: Optional[bool] = None # Listen to changes CuraContainerRegistry.getInstance().containerAdded.connect(self._onContainerChanged) @@ -54,6 +55,7 @@ class GlobalStacksModel(ListModel): filterConnectionTypeChanged = pyqtSignal() filterCapabilitiesChanged = pyqtSignal() filterOnlineOnlyChanged = pyqtSignal() + filterAbstractMachinesChanged = pyqtSignal() def setFilterConnectionType(self, new_filter: Optional[ConnectionType]) -> None: if self._filter_connection_type != new_filter: @@ -98,6 +100,22 @@ class GlobalStacksModel(ListModel): """ return self._filter_capabilities + def setFilterAbstractMachines(self, new_filter: Optional[bool]) -> None: + if self._filter_abstract_machines != new_filter: + self._filter_abstract_machines = new_filter + self.filterAbstractMachinesChanged.emit() + + @pyqtProperty(bool, fset = setFilterAbstractMachines, notify = filterAbstractMachinesChanged) + def filterAbstractMachines(self) -> Optional[bool]: + """ + Weather we include abstract printers, non-abstract printers or both + + if this is set to None both abstract and non-abstract printers will be included in the list + set to True will only include abstract printers + set to False will only inclde non-abstract printers + """ + return self._filter_abstract_machines + def _onContainerChanged(self, container) -> None: """Handler for container added/removed events from registry""" @@ -130,6 +148,10 @@ class GlobalStacksModel(ListModel): if self._filter_online_only and not is_online: continue + is_abstract_machine = parseBool(container_stack.getMetaDataEntry("is_abstract_machine", False)) + if self._filter_abstract_machines is not None and self._filter_abstract_machines is not is_abstract_machine: + continue + capabilities = set(container_stack.getMetaDataEntry(META_CAPABILITIES, "").split(",")) if set(self._filter_capabilities) - capabilities: # Not all required capabilities are met. continue diff --git a/cura/Machines/Models/MachineListModel.py b/cura/Machines/Models/MachineListModel.py new file mode 100644 index 0000000000..74ef7ae7b4 --- /dev/null +++ b/cura/Machines/Models/MachineListModel.py @@ -0,0 +1,161 @@ +# Copyright (c) 2022 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +# The MachineListModel is used to display the connected printers in the interface. Both the abstract machines and all +# online cloud connected printers are represented within this ListModel. Additional information such as the number of +# connected printers for each printer type is gathered. + +from typing import Optional, List, cast + +from PyQt6.QtCore import Qt, QTimer, QObject, pyqtSlot, pyqtProperty, pyqtSignal + +from UM.Qt.ListModel import ListModel +from UM.Settings.ContainerStack import ContainerStack +from UM.Settings.Interfaces import ContainerInterface +from UM.i18n import i18nCatalog +from UM.Util import parseBool + +from cura.Settings.CuraContainerRegistry import CuraContainerRegistry +from cura.Settings.GlobalStack import GlobalStack + + +class MachineListModel(ListModel): + NameRole = Qt.ItemDataRole.UserRole + 1 + IdRole = Qt.ItemDataRole.UserRole + 2 + HasRemoteConnectionRole = Qt.ItemDataRole.UserRole + 3 + MetaDataRole = Qt.ItemDataRole.UserRole + 4 + IsOnlineRole = Qt.ItemDataRole.UserRole + 5 + MachineCountRole = Qt.ItemDataRole.UserRole + 6 + IsAbstractMachineRole = Qt.ItemDataRole.UserRole + 7 + ComponentTypeRole = Qt.ItemDataRole.UserRole + 8 + IsNetworkedMachineRole = Qt.ItemDataRole.UserRole + 9 + + def __init__(self, parent: Optional[QObject] = None, machines_filter: List[GlobalStack] = None, listenToChanges: bool = True) -> None: + super().__init__(parent) + + self._show_cloud_printers = False + self._machines_filter = machines_filter + + self._catalog = i18nCatalog("cura") + + self.addRoleName(self.NameRole, "name") + self.addRoleName(self.IdRole, "id") + self.addRoleName(self.HasRemoteConnectionRole, "hasRemoteConnection") + self.addRoleName(self.MetaDataRole, "metadata") + self.addRoleName(self.IsOnlineRole, "isOnline") + self.addRoleName(self.MachineCountRole, "machineCount") + self.addRoleName(self.IsAbstractMachineRole, "isAbstractMachine") + self.addRoleName(self.ComponentTypeRole, "componentType") + self.addRoleName(self.IsNetworkedMachineRole, "isNetworked") + + self._change_timer = QTimer() + self._change_timer.setInterval(200) + self._change_timer.setSingleShot(True) + self._change_timer.timeout.connect(self._update) + + if listenToChanges: + CuraContainerRegistry.getInstance().containerAdded.connect(self._onContainerChanged) + CuraContainerRegistry.getInstance().containerMetaDataChanged.connect(self._onContainerChanged) + CuraContainerRegistry.getInstance().containerRemoved.connect(self._onContainerChanged) + self._updateDelayed() + + showCloudPrintersChanged = pyqtSignal(bool) + + @pyqtProperty(bool, notify=showCloudPrintersChanged) + def showCloudPrinters(self) -> bool: + return self._show_cloud_printers + + @pyqtSlot(bool) + def setShowCloudPrinters(self, show_cloud_printers: bool) -> None: + self._show_cloud_printers = show_cloud_printers + self._updateDelayed() + self.showCloudPrintersChanged.emit(show_cloud_printers) + + def _onContainerChanged(self, container: ContainerInterface) -> None: + """Handler for container added/removed events from registry""" + + # We only need to update when the added / removed container GlobalStack + if isinstance(container, GlobalStack): + self._updateDelayed() + + def _updateDelayed(self) -> None: + self._change_timer.start() + + def _getMachineStacks(self) -> List[ContainerStack]: + return CuraContainerRegistry.getInstance().findContainerStacks(type = "machine") + + def _getAbstractMachineStacks(self) -> List[ContainerStack]: + return CuraContainerRegistry.getInstance().findContainerStacks(is_abstract_machine = "True") + + def set_machines_filter(self, machines_filter: Optional[List[GlobalStack]]) -> None: + self._machines_filter = machines_filter + self._update() + + def _update(self) -> None: + self.clear() + + from cura.CuraApplication import CuraApplication + machines_manager = CuraApplication.getInstance().getMachineManager() + + other_machine_stacks = self._getMachineStacks() + other_machine_stacks.sort(key = lambda machine: machine.getName().upper()) + + abstract_machine_stacks = self._getAbstractMachineStacks() + abstract_machine_stacks.sort(key = lambda machine: machine.getName().upper(), reverse = True) + + if self._machines_filter is not None: + filter_ids = [machine_filter.id for machine_filter in self._machines_filter] + other_machine_stacks = [machine for machine in other_machine_stacks if machine.id in filter_ids] + abstract_machine_stacks = [machine for machine in abstract_machine_stacks if machine.id in filter_ids] + + for abstract_machine in abstract_machine_stacks: + definition_id = abstract_machine.definition.getId() + online_machine_stacks = machines_manager.getMachinesWithDefinition(definition_id, online_only = True) + + online_machine_stacks = list(filter(lambda machine: machine.hasNetworkedConnection(), online_machine_stacks)) + online_machine_stacks.sort(key=lambda machine: machine.getName().upper()) + + if abstract_machine in other_machine_stacks: + other_machine_stacks.remove(abstract_machine) + + if abstract_machine in online_machine_stacks: + online_machine_stacks.remove(abstract_machine) + + # Create a list item for abstract machine + self.addItem(abstract_machine, True, len(online_machine_stacks)) + + # Create list of machines that are children of the abstract machine + for stack in online_machine_stacks: + if self._show_cloud_printers: + self.addItem(stack, True) + # Remove this machine from the other stack list + if stack in other_machine_stacks: + other_machine_stacks.remove(stack) + + if len(abstract_machine_stacks) > 0: + self.appendItem({ + "componentType": "HIDE_BUTTON" if self._show_cloud_printers else "SHOW_BUTTON", + "isOnline": True, + "isAbstractMachine": False, + "machineCount": 0, + "catergory": "connected", + }) + + for stack in other_machine_stacks: + self.addItem(stack, False) + + def addItem(self, container_stack: ContainerStack, is_online: bool, machine_count: int = 0) -> None: + if parseBool(container_stack.getMetaDataEntry("hidden", False)): + return + + self.appendItem({ + "componentType": "MACHINE", + "name": container_stack.getName(), + "id": container_stack.getId(), + "metadata": container_stack.getMetaData().copy(), + "isOnline": is_online, + "isAbstractMachine": parseBool(container_stack.getMetaDataEntry("is_abstract_machine", False)), + "isNetworked": cast(GlobalStack, container_stack).hasNetworkedConnection() if isinstance(container_stack, GlobalStack) else False, + "machineCount": machine_count, + "catergory": "connected" if is_online else "other", + }) diff --git a/cura/Machines/Models/QualityManagementModel.py b/cura/Machines/Models/QualityManagementModel.py index b4fb8b38b5..3c3bc9a6e9 100644 --- a/cura/Machines/Models/QualityManagementModel.py +++ b/cura/Machines/Models/QualityManagementModel.py @@ -184,7 +184,8 @@ class QualityManagementModel(ListModel): container_registry.addContainer(container.duplicate(new_id, new_name)) @pyqtSlot(str) - def createQualityChanges(self, base_name: str) -> None: + @pyqtSlot(str, bool) + def createQualityChanges(self, base_name: str, activate_after_success: bool = False) -> None: """Create quality changes containers from the user containers in the active stacks. This will go through the global and extruder stacks and create quality_changes containers from the user @@ -233,6 +234,14 @@ class QualityManagementModel(ListModel): container_registry.addContainer(new_changes) + if activate_after_success: + # At this point, the QualityChangesGroup object for the new changes may not exist yet. + # This can be forced by asking for all of them. At that point it's just as well to loop. + for quality_changes in ContainerTree.getInstance().getCurrentQualityChangesGroups(): + if quality_changes.name == unique_name: + machine_manager.setQualityChangesGroup(quality_changes) + break + def _createQualityChanges(self, quality_type: str, intent_category: Optional[str], new_name: str, machine: "GlobalStack", extruder_stack: Optional["ExtruderStack"]) -> "InstanceContainer": """Create a quality changes container with the given set-up. diff --git a/cura/Machines/Models/UserChangesModel.py b/cura/Machines/Models/UserChangesModel.py index 171e910dd8..daea45eb52 100644 --- a/cura/Machines/Models/UserChangesModel.py +++ b/cura/Machines/Models/UserChangesModel.py @@ -118,12 +118,14 @@ class UserChangesModel(ListModel): if original_value is not None: break - item_to_add = {"key": setting_key, - "label": label, - "user_value": str(user_changes.getProperty(setting_key, "value")), - "original_value": str(original_value), - "extruder": "", - "category": category_label} + item_to_add = { + "key": setting_key, + "label": label, + "user_value": str(user_changes.getProperty(setting_key, "value", default_value_resolve_context)), + "original_value": str(original_value), + "extruder": "", + "category": category_label, + } if stack != global_stack: item_to_add["extruder"] = stack.getName() diff --git a/cura/OAuth2/AuthorizationService.py b/cura/OAuth2/AuthorizationService.py index f2e6cd27ec..62bf31982a 100644 --- a/cura/OAuth2/AuthorizationService.py +++ b/cura/OAuth2/AuthorizationService.py @@ -274,7 +274,7 @@ class AuthorizationService: self._unable_to_get_data_message.show() else: self._unable_to_get_data_message = Message(i18n_catalog.i18nc("@info", - "Unable to reach the Ultimaker account server."), + "Unable to reach the UltiMaker account server."), title = i18n_catalog.i18nc("@info:title", "Log-in failed"), message_type = Message.MessageType.ERROR) Logger.warning("Unable to get user profile using auth data from preferences.") diff --git a/cura/PlatformPhysics.py b/cura/PlatformPhysics.py index e054528c42..402b9fe250 100755 --- a/cura/PlatformPhysics.py +++ b/cura/PlatformPhysics.py @@ -50,8 +50,13 @@ class PlatformPhysics: if not self._enabled: return + app_instance = Application.getInstance() + app_preferences = app_instance.getPreferences() + app_automatic_drop_down = app_preferences.getValue("physics/automatic_drop_down") + app_automatic_push_free = app_preferences.getValue("physics/automatic_push_free") + root = self._controller.getScene().getRoot() - build_volume = Application.getInstance().getBuildVolume() + build_volume = app_instance.getBuildVolume() build_volume.updateNodeBoundaryCheck() # Keep a list of nodes that are moving. We use this so that we don't move two intersecting objects in the @@ -75,7 +80,7 @@ class PlatformPhysics: # Move it downwards if bottom is above platform move_vector = Vector() - if Application.getInstance().getPreferences().getValue("physics/automatic_drop_down") and not (node.getParent() and node.getParent().callDecoration("isGroup") or node.getParent() != root) and node.isEnabled(): #If an object is grouped, don't move it down + if node.getSetting(SceneNodeSettings.AutoDropDown, app_automatic_drop_down) and not (node.getParent() and node.getParent().callDecoration("isGroup") or node.getParent() != root) and node.isEnabled(): #If an object is grouped, don't move it down z_offset = node.callDecoration("getZOffset") if node.getDecorator(ZOffsetDecorator.ZOffsetDecorator) else 0 move_vector = move_vector.set(y = -bbox.bottom + z_offset) @@ -84,7 +89,7 @@ class PlatformPhysics: node.addDecorator(ConvexHullDecorator()) # only push away objects if this node is a printing mesh - if not node.callDecoration("isNonPrintingMesh") and Application.getInstance().getPreferences().getValue("physics/automatic_push_free"): + if not node.callDecoration("isNonPrintingMesh") and app_automatic_push_free: # Do not move locked nodes if node.getSetting(SceneNodeSettings.LockPosition): continue diff --git a/cura/PrinterOutput/Models/ExtruderConfigurationModel.py b/cura/PrinterOutput/Models/ExtruderConfigurationModel.py index 4cc3e81f56..d54092b8c9 100644 --- a/cura/PrinterOutput/Models/ExtruderConfigurationModel.py +++ b/cura/PrinterOutput/Models/ExtruderConfigurationModel.py @@ -13,9 +13,9 @@ class ExtruderConfigurationModel(QObject): def __init__(self, position: int = -1) -> None: super().__init__() - self._position = position # type: int - self._material = None # type: Optional[MaterialOutputModel] - self._hotend_id = None # type: Optional[str] + self._position: int = position + self._material: Optional[MaterialOutputModel] = None + self._hotend_id: Optional[str] = None def setPosition(self, position: int) -> None: self._position = position diff --git a/cura/PrinterOutput/Models/PrintJobOutputModel.py b/cura/PrinterOutput/Models/PrintJobOutputModel.py index 164dc5cb67..6b8e07b29e 100644 --- a/cura/PrinterOutput/Models/PrintJobOutputModel.py +++ b/cura/PrinterOutput/Models/PrintJobOutputModel.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018 Ultimaker B.V. +# Copyright (c) 2022 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. from typing import Optional, TYPE_CHECKING, List @@ -6,6 +6,8 @@ from typing import Optional, TYPE_CHECKING, List from PyQt6.QtCore import pyqtSignal, pyqtProperty, QObject, pyqtSlot, QUrl from PyQt6.QtGui import QImage +from cura.CuraApplication import CuraApplication + if TYPE_CHECKING: from cura.PrinterOutput.PrinterOutputController import PrinterOutputController from cura.PrinterOutput.Models.PrinterOutputModel import PrinterOutputModel @@ -86,6 +88,18 @@ class PrintJobOutputModel(QObject): self._owner = owner self.ownerChanged.emit() + @pyqtProperty(bool, notify = ownerChanged) + def isMine(self) -> bool: + """ + Returns whether this print job was sent by the currently logged in user. + + This checks the owner of the print job with the owner of the currently + logged in account. Both of these are human-readable account names which + may be duplicate. In practice the harm here is limited, but it's the + best we can do with the information available to the API. + """ + return self._owner == CuraApplication.getInstance().getCuraAPI().account.userName + @pyqtProperty(QObject, notify=assignedPrinterChanged) def assignedPrinter(self): return self._assigned_printer diff --git a/cura/PrinterOutput/Models/PrinterOutputModel.py b/cura/PrinterOutput/Models/PrinterOutputModel.py index 2f7091e014..5605ce0de9 100644 --- a/cura/PrinterOutput/Models/PrinterOutputModel.py +++ b/cura/PrinterOutput/Models/PrinterOutputModel.py @@ -350,5 +350,6 @@ class PrinterOutputModel(QObject): self.availableConfigurationsChanged.emit() def setAvailableConfigurations(self, new_configurations: List[PrinterConfigurationModel]) -> None: - self._available_printer_configurations = new_configurations - self.availableConfigurationsChanged.emit() + if self._available_printer_configurations != new_configurations: + self._available_printer_configurations = new_configurations + self.availableConfigurationsChanged.emit() diff --git a/cura/PrinterOutput/Peripheral.py b/cura/PrinterOutput/Peripheral.py index 27d127832b..4613506978 100644 --- a/cura/PrinterOutput/Peripheral.py +++ b/cura/PrinterOutput/Peripheral.py @@ -1,20 +1,19 @@ # Copyright (c) 2019 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. +from dataclasses import dataclass +@dataclass class Peripheral: """Data class that represents a peripheral for a printer. Output device plug-ins may specify that the printer has a certain set of peripherals. This set is then possibly shown in the interface of the monitor stage. + + Args: + type (string): A unique ID for the type of peripheral. + name (string): A human-readable name for the peripheral. """ - - def __init__(self, peripheral_type: str, name: str) -> None: - """Constructs the peripheral. - - :param peripheral_type: A unique ID for the type of peripheral. - :param name: A human-readable name for the peripheral. - """ - self.type = peripheral_type - self.name = name + type: str + name: str diff --git a/cura/PrinterOutput/PrinterOutputDevice.py b/cura/PrinterOutput/PrinterOutputDevice.py index d3a5e252d3..9c1727f569 100644 --- a/cura/PrinterOutput/PrinterOutputDevice.py +++ b/cura/PrinterOutput/PrinterOutputDevice.py @@ -50,13 +50,12 @@ class PrinterOutputDevice(QObject, OutputDevice): The assumption is made the printer is a FDM printer. Note that a number of settings are marked as "final". This is because decorators - are not inherited by children. To fix this we use the private counter part of those + are not inherited by children. To fix this we use the private counterpart of those functions to actually have the implementation. For all other uses it should be used in the same way as a "regular" OutputDevice. """ - printersChanged = pyqtSignal() connectionStateChanged = pyqtSignal(str) acceptsCommandsChanged = pyqtSignal() @@ -183,8 +182,8 @@ class PrinterOutputDevice(QObject, OutputDevice): @pyqtProperty(QObject, constant = True) def monitorItem(self) -> QObject: # Note that we specifically only check if the monitor component is created. - # It could be that it failed to actually create the qml item! If we check if the item was created, it will try to - # create the item (and fail) every time. + # It could be that it failed to actually create the qml item! If we check if the item was created, it will try + # to create the item (and fail) every time. if not self._monitor_component: self._createMonitorViewFromQML() return self._monitor_item @@ -237,9 +236,9 @@ class PrinterOutputDevice(QObject, OutputDevice): self.acceptsCommandsChanged.emit() - # Returns the unique configurations of the printers within this output device @pyqtProperty("QVariantList", notify = uniqueConfigurationsChanged) def uniqueConfigurations(self) -> List["PrinterConfigurationModel"]: + """ Returns the unique configurations of the printers within this output device """ return self._unique_configurations def _updateUniqueConfigurations(self) -> None: @@ -248,17 +247,19 @@ class PrinterOutputDevice(QObject, OutputDevice): if printer.printerConfiguration is not None and printer.printerConfiguration.hasAnyMaterialLoaded(): all_configurations.add(printer.printerConfiguration) all_configurations.update(printer.availableConfigurations) - if None in all_configurations: # Shouldn't happen, but it does. I don't see how it could ever happen. Skip adding that configuration. List could end up empty! + if None in all_configurations: + # Shouldn't happen, but it does. I don't see how it could ever happen. Skip adding that configuration. + # List could end up empty! Logger.log("e", "Found a broken configuration in the synced list!") all_configurations.remove(None) - new_configurations = sorted(all_configurations, key = lambda config: config.printerType or "") + new_configurations = sorted(all_configurations, key = lambda config: config.printerType or "", reverse = True) if new_configurations != self._unique_configurations: self._unique_configurations = new_configurations self.uniqueConfigurationsChanged.emit() - # Returns the unique configurations of the printers within this output device @pyqtProperty("QStringList", notify = uniqueConfigurationsChanged) def uniquePrinterTypes(self) -> List[str]: + """ Returns the unique configurations of the printers within this output device """ return list(sorted(set([configuration.printerType or "" for configuration in self._unique_configurations]))) def _onPrintersChanged(self) -> None: diff --git a/cura/Scene/ConvexHullDecorator.py b/cura/Scene/ConvexHullDecorator.py index b15eaf2ae1..06ec247ae4 100644 --- a/cura/Scene/ConvexHullDecorator.py +++ b/cura/Scene/ConvexHullDecorator.py @@ -390,7 +390,7 @@ class ConvexHullDecorator(SceneNodeDecorator): if self._global_stack.getProperty("print_sequence", "value") == "one_at_a_time": # Find the root node that's placed in the scene; the root of the mesh group. ancestor = self.getNode() - while ancestor.getParent() != self._root: + while ancestor.getParent() != self._root and ancestor.getParent() is not None: ancestor = ancestor.getParent() center = ancestor.getBoundingBox().center else: diff --git a/cura/Scene/CuraSceneController.py b/cura/Scene/CuraSceneController.py index 1d604b74b6..54f1cc56f2 100644 --- a/cura/Scene/CuraSceneController.py +++ b/cura/Scene/CuraSceneController.py @@ -139,7 +139,7 @@ class CuraSceneController(QObject): def setActiveBuildPlate(self, nr): if nr == self._active_build_plate: return - Logger.log("d", "Select build plate: %s" % nr) + Logger.debug(f"Selected build plate: {nr}") self._active_build_plate = nr Selection.clear() diff --git a/cura/Settings/ActiveQuality.py b/cura/Settings/ActiveQuality.py new file mode 100644 index 0000000000..18f5a23cc4 --- /dev/null +++ b/cura/Settings/ActiveQuality.py @@ -0,0 +1,48 @@ +from dataclasses import dataclass +from typing import List + +from UM import i18nCatalog + +catalog = i18nCatalog("cura") + + +@dataclass +class ActiveQuality: + """ Represents the active intent+profile combination, contains all information needed to display active quality. """ + intent_category: str = "" # Name of the base intent. For example "visual" or "engineering". + intent_name: str = "" # Name of the base intent formatted for display. For Example "Visual" or "Engineering" + profile: str = "" # Name of the base profile. For example "Fine" or "Fast" + custom_profile: str = "" # Name of the custom profile, this is based on profile. For example "MyCoolCustomProfile" + layer_height: float = None # Layer height of quality in mm. For example 0.4 + is_experimental: bool = False # If the quality experimental. + + def getMainStringParts(self) -> List[str]: + string_parts = [] + + if self.custom_profile is not None: + string_parts.append(self.custom_profile) + else: + string_parts.append(self.profile) + if self.intent_category != "default": + string_parts.append(self.intent_name) + + return string_parts + + def getTailStringParts(self) -> List[str]: + string_parts = [] + + if self.custom_profile is not None: + string_parts.append(self.profile) + if self.intent_category != "default": + string_parts.append(self.intent_name) + + if self.layer_height: + string_parts.append(f"{self.layer_height}mm") + + if self.is_experimental: + string_parts.append(catalog.i18nc("@label", "Experimental")) + + return string_parts + + def getStringParts(self) -> List[str]: + return self.getMainStringParts() + self.getTailStringParts() diff --git a/cura/Settings/CuraContainerRegistry.py b/cura/Settings/CuraContainerRegistry.py index 6ff856efcb..1a711ef919 100644 --- a/cura/Settings/CuraContainerRegistry.py +++ b/cura/Settings/CuraContainerRegistry.py @@ -108,7 +108,7 @@ class CuraContainerRegistry(ContainerRegistry): :param container_type: :type{string} Type of the container (machine, quality, ...) :param container_name: :type{string} Name to check """ - container_class = ContainerStack if container_type == "machine" else InstanceContainer + container_class = ContainerStack if "machine" in container_type else InstanceContainer return self.findContainersMetadata(container_type = container_class, id = container_name, type = container_type, ignore_case = True) or \ self.findContainersMetadata(container_type = container_class, name = container_name, type = container_type) diff --git a/cura/Settings/CuraContainerStack.py b/cura/Settings/CuraContainerStack.py index 5348deb4bd..41502f8874 100755 --- a/cura/Settings/CuraContainerStack.py +++ b/cura/Settings/CuraContainerStack.py @@ -49,7 +49,7 @@ class CuraContainerStack(ContainerStack): self._empty_material = cura_empty_instance_containers.empty_material_container #type: InstanceContainer self._empty_variant = cura_empty_instance_containers.empty_variant_container #type: InstanceContainer - self._containers = [self._empty_instance_container for i in range(len(_ContainerIndexes.IndexTypeMap))] #type: List[ContainerInterface] + self._containers: List[ContainerInterface] = [self._empty_instance_container for i in _ContainerIndexes.IndexTypeMap] self._containers[_ContainerIndexes.QualityChanges] = self._empty_quality_changes self._containers[_ContainerIndexes.Quality] = self._empty_quality self._containers[_ContainerIndexes.Material] = self._empty_material @@ -427,4 +427,4 @@ class _ContainerIndexes: } # Reverse lookup: type -> index - TypeIndexMap = dict([(v, k) for k, v in IndexTypeMap.items()]) + TypeIndexMap = {v: k for k, v in IndexTypeMap.items()} diff --git a/cura/Settings/CuraStackBuilder.py b/cura/Settings/CuraStackBuilder.py index ff9a795c43..a25a487c6e 100644 --- a/cura/Settings/CuraStackBuilder.py +++ b/cura/Settings/CuraStackBuilder.py @@ -1,7 +1,9 @@ -# Copyright (c) 2019 Ultimaker B.V. +# Copyright (c) 2022 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from typing import Optional +import copy + +from typing import Optional, cast from UM.ConfigurationErrorMessage import ConfigurationErrorMessage from UM.Logger import Logger @@ -27,7 +29,7 @@ class CuraStackBuilder: :return: The new global stack or None if an error occurred. """ - from cura.CuraApplication import CuraApplication + from cura.CuraApplication import CuraApplication # inline import needed due to circular import application = CuraApplication.getInstance() registry = application.getContainerRegistry() container_tree = ContainerTree.getInstance() @@ -91,7 +93,7 @@ class CuraStackBuilder: :param extruder_position: The position of the current extruder. """ - from cura.CuraApplication import CuraApplication + from cura.CuraApplication import CuraApplication # inline import needed due to circular import application = CuraApplication.getInstance() registry = application.getContainerRegistry() @@ -199,13 +201,21 @@ class CuraStackBuilder: :return: A new Global stack instance with the specified parameters. """ - - from cura.CuraApplication import CuraApplication - application = CuraApplication.getInstance() - registry = application.getContainerRegistry() - stack = GlobalStack(new_stack_id) stack.setDefinition(definition) + cls.createUserContainer(new_stack_id, definition, stack, variant_container, material_container, quality_container) + return stack + + @classmethod + def createUserContainer(cls, new_stack_id: str, definition: DefinitionContainerInterface, + stack: GlobalStack, + variant_container: "InstanceContainer", + material_container: "InstanceContainer", + quality_container: "InstanceContainer") -> None: + from cura.CuraApplication import CuraApplication + application = CuraApplication.getInstance() + + registry = application.getContainerRegistry() # Create user container user_container = cls.createUserChangesContainer(new_stack_id + "_user", definition.getId(), new_stack_id, @@ -221,8 +231,6 @@ class CuraStackBuilder: registry.addContainer(user_container) - return stack - @classmethod def createUserChangesContainer(cls, container_name: str, definition_id: str, stack_id: str, is_global_stack: bool) -> "InstanceContainer": @@ -259,3 +267,36 @@ class CuraStackBuilder: container_stack.definitionChanges = definition_changes_container return definition_changes_container + + @classmethod + def createAbstractMachine(cls, definition_id: str) -> Optional[GlobalStack]: + """Create a new instance of an abstract machine. + + :param definition_id: The ID of the machine definition to use. + + :return: The new Abstract Machine or None if an error occurred. + """ + abstract_machine_id = f"{definition_id}_abstract_machine" + from cura.CuraApplication import CuraApplication + application = CuraApplication.getInstance() + registry = application.getContainerRegistry() + + abstract_machines = registry.findContainerStacks(id = abstract_machine_id) + if abstract_machines: + return cast(GlobalStack, abstract_machines[0]) + definitions = registry.findDefinitionContainers(id=definition_id) + + name = "" + + if definitions: + name = definitions[0].getName() + stack = cls.createMachine(abstract_machine_id, definition_id, show_warning_message=False) + if not stack: + return None + + stack.setName(name) + + stack.setMetaDataEntry("is_abstract_machine", True) + stack.setMetaDataEntry("is_online", True) + + return stack \ No newline at end of file diff --git a/cura/Settings/ExtruderManager.py b/cura/Settings/ExtruderManager.py index 52d63b611b..6a152ab51b 100755 --- a/cura/Settings/ExtruderManager.py +++ b/cura/Settings/ExtruderManager.py @@ -2,13 +2,15 @@ # Cura is released under the terms of the LGPLv3 or higher. from PyQt6.QtCore import pyqtSignal, pyqtProperty, QObject, QVariant # For communicating data and events to Qt. + +from UM.Application import Application from UM.FlameProfiler import pyqtSlot import cura.CuraApplication # To get the global container stack to find the current machine. +from UM.Util import parseBool from cura.Settings.GlobalStack import GlobalStack from UM.Logger import Logger from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator -from UM.Scene.SceneNode import SceneNode from UM.Scene.Selection import Selection from UM.Scene.Iterator.BreadthFirstIterator import BreadthFirstIterator from UM.Settings.ContainerRegistry import ContainerRegistry # Finding containers by ID. @@ -45,6 +47,7 @@ class ExtruderManager(QObject): self._selected_object_extruders = [] # type: List[Union[str, "ExtruderStack"]] Selection.selectionChanged.connect(self.resetSelectedObjectExtruders) + Application.getInstance().globalContainerStackChanged.connect(self.emitGlobalStackExtrudersChanged) # When the machine is swapped we must update the active machine extruders extrudersChanged = pyqtSignal(QVariant) """Signal to notify other components when the list of extruders for a machine definition changes.""" @@ -52,6 +55,21 @@ class ExtruderManager(QObject): activeExtruderChanged = pyqtSignal() """Notify when the user switches the currently active extruder.""" + def emitGlobalStackExtrudersChanged(self): + # HACK + # The emit function can't be directly connected to another signal. This wrapper function is required. + # The extrudersChanged signal is emitted early when changing machines. This triggers it a second time + # after the extruder have changed properly. This is important for any QML using ExtruderManager.extruderIds + # This is a hack, but other behaviour relys on the updating in this order. + self.extrudersChanged.emit(self._application.getGlobalContainerStack().getId()) + + @pyqtProperty(int, notify = extrudersChanged) + def enabledExtruderCount(self) -> int: + global_container_stack = self._application.getGlobalContainerStack() + if global_container_stack: + return len([extruder for extruder in global_container_stack.extruderList if parseBool(extruder.getMetaDataEntry("enabled", "True"))]) + return 0 + @pyqtProperty(str, notify = activeExtruderChanged) def activeExtruderStackId(self) -> Optional[str]: """Gets the unique identifier of the currently active extruder stack. @@ -275,7 +293,7 @@ class ExtruderManager(QObject): for extruder_setting in used_adhesion_extruders: extruder_str_nr = str(global_stack.getProperty(extruder_setting, "value")) if extruder_str_nr == "-1": - extruder_str_nr = self._application.getMachineManager().defaultExtruderPosition + continue # An optional extruder doesn't force any extruder to be used if it isn't used already if extruder_str_nr in self.extruderIds: used_extruder_stack_ids.add(self.extruderIds[extruder_str_nr]) @@ -298,7 +316,7 @@ class ExtruderManager(QObject): # Starts with the adhesion extruder. adhesion_type = global_stack.getProperty("adhesion_type", "value") if adhesion_type in {"skirt", "brim"}: - return global_stack.getProperty("skirt_brim_extruder_nr", "value") + return max(0, int(global_stack.getProperty("skirt_brim_extruder_nr", "value"))) # optional skirt/brim extruder defaults to zero if adhesion_type == "raft": return global_stack.getProperty("raft_base_extruder_nr", "value") @@ -448,7 +466,6 @@ class ExtruderManager(QObject): return False return list(active_material_node_qualities.keys())[0] != "empty_quality" - @pyqtSlot(str, result="QVariant") def getInstanceExtruderValues(self, key: str) -> List: """Get all extruder values for a certain setting. diff --git a/cura/Settings/ExtruderStack.py b/cura/Settings/ExtruderStack.py index e93193818c..eba41569b7 100644 --- a/cura/Settings/ExtruderStack.py +++ b/cura/Settings/ExtruderStack.py @@ -142,8 +142,6 @@ class ExtruderStack(CuraContainerStack): limit_to_extruder = super().getProperty(key, "limit_to_extruder", context) if limit_to_extruder is not None: - if limit_to_extruder == -1: - limit_to_extruder = int(cura.CuraApplication.CuraApplication.getInstance().getMachineManager().defaultExtruderPosition) limit_to_extruder = str(limit_to_extruder) if (limit_to_extruder is not None and limit_to_extruder != "-1") and self.getMetaDataEntry("position") != str(limit_to_extruder): diff --git a/cura/Settings/GlobalStack.py b/cura/Settings/GlobalStack.py index f0a6946f88..25fc74b28f 100755 --- a/cura/Settings/GlobalStack.py +++ b/cura/Settings/GlobalStack.py @@ -1,4 +1,4 @@ -# Copyright (c) 2019 Ultimaker B.V. +# Copyright (c) 2022 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. from collections import defaultdict @@ -8,10 +8,9 @@ import uuid from PyQt6.QtCore import pyqtProperty, pyqtSlot, pyqtSignal -from UM.Decorators import deprecated, override +from UM.Decorators import override from UM.MimeTypeDatabase import MimeType, MimeTypeDatabase from UM.Settings.ContainerStack import ContainerStack -from UM.Settings.SettingInstance import InstanceState from UM.Settings.ContainerRegistry import ContainerRegistry from UM.Settings.Interfaces import PropertyEvaluationContext from UM.Logger import Logger @@ -91,7 +90,6 @@ class GlobalStack(CuraContainerStack): @pyqtProperty("QVariantList", notify=configuredConnectionTypesChanged) def configuredConnectionTypes(self) -> List[int]: """The configured connection types can be used to find out if the global - stack is configured to be connected with a printer, without having to know all the details as to how this is exactly done (and without actually setting the stack to be active). @@ -228,8 +226,6 @@ class GlobalStack(CuraContainerStack): # Handle the "limit_to_extruder" property. limit_to_extruder = super().getProperty(key, "limit_to_extruder", context) if limit_to_extruder is not None: - if limit_to_extruder == -1: - limit_to_extruder = int(cura.CuraApplication.CuraApplication.getInstance().getMachineManager().defaultExtruderPosition) limit_to_extruder = str(limit_to_extruder) if limit_to_extruder is not None and limit_to_extruder != "-1" and limit_to_extruder in self._extruders: if super().getProperty(key, "settable_per_extruder", context): @@ -293,7 +289,6 @@ class GlobalStack(CuraContainerStack): for extruder_train in extruder_trains: extruder_position = extruder_train.getMetaDataEntry("position") extruder_check_position.add(extruder_position) - for check_position in range(machine_extruder_count): if str(check_position) not in extruder_check_position: return False @@ -344,13 +339,17 @@ class GlobalStack(CuraContainerStack): def getName(self) -> str: return self._metadata.get("group_name", self._metadata.get("name", "")) - def setName(self, name: "str") -> None: + def setName(self, name: str) -> None: super().setName(name) nameChanged = pyqtSignal() name = pyqtProperty(str, fget=getName, fset=setName, notify=nameChanged) - + def hasNetworkedConnection(self) -> bool: + has_connection = False + for connection_type in [ConnectionType.NetworkConnection.value, ConnectionType.CloudConnection.value]: + has_connection |= connection_type in self.configuredConnectionTypes + return has_connection ## private: global_stack_mime = MimeType( diff --git a/cura/Settings/MachineManager.py b/cura/Settings/MachineManager.py index 64d34d6c3e..b8a5e7d885 100755 --- a/cura/Settings/MachineManager.py +++ b/cura/Settings/MachineManager.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021 Ultimaker B.V. +# Copyright (c) 2022 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. import time @@ -19,6 +19,7 @@ from UM.Logger import Logger from UM.Message import Message from UM.Settings.SettingFunction import SettingFunction +from UM.Settings.ContainerStack import ContainerStack from UM.Signal import postponeSignals, CompressTechnique import cura.CuraApplication # Imported like this to prevent circular references. @@ -39,6 +40,7 @@ from cura.Settings.cura_empty_instance_containers import (empty_definition_chang empty_material_container, empty_quality_container, empty_quality_changes_container, empty_intent_container) from cura.UltimakerCloud.UltimakerCloudConstants import META_UM_LINKED_TO_ACCOUNT +from .ActiveQuality import ActiveQuality from .CuraStackBuilder import CuraStackBuilder @@ -98,7 +100,7 @@ class MachineManager(QObject): self._application.getPreferences().addPreference("cura/active_machine", "") - self._printer_output_devices = [] # type: List[PrinterOutputDevice] + self._printer_output_devices: List[PrinterOutputDevice] = [] self._application.getOutputDeviceManager().outputDevicesChanged.connect(self._onOutputDevicesChanged) # There might already be some output devices by the time the signal is connected self._onOutputDevicesChanged() @@ -111,7 +113,7 @@ class MachineManager(QObject): self._application.callLater(self.setInitialActiveMachine) - containers = CuraContainerRegistry.getInstance().findInstanceContainers(id = self.activeMaterialId) # type: List[InstanceContainer] + containers: List[InstanceContainer] = CuraContainerRegistry.getInstance().findInstanceContainers(id = self.activeMaterialId) if containers: containers[0].nameChanged.connect(self._onMaterialNameChanged) @@ -186,6 +188,32 @@ class MachineManager(QObject): self.outputDevicesChanged.emit() + def getMachinesWithDefinition(self, definition_id: str, online_only=False) -> List[ContainerStack]: + """ Fetches all container stacks that match definition_id. + + :param definition_id: The id of the machine definition. + :return: A list of Containers that match definition_id + """ + from cura.CuraApplication import CuraApplication # In function to avoid circular import + application = CuraApplication.getInstance() + registry = application.getContainerRegistry() + + machines = registry.findContainerStacks(type="machine") + # Filter machines that match definition + machines = filter(lambda machine: machine.definition.id == definition_id, machines) + # Filter only LAN and Cloud printers + machines = filter(lambda machine: ConnectionType.CloudConnection in machine.configuredConnectionTypes or + ConnectionType.NetworkConnection in machine.configuredConnectionTypes, + machines) + if online_only: + # LAN printers can have is_online = False but should still be included, + # their online status is only checked when they are the active printer. + machines = filter(lambda machine: parseBool(machine.getMetaDataEntry("is_online", False) or + ConnectionType.NetworkConnection in machine.configuredConnectionTypes), + machines) + + return list(machines) + @pyqtProperty(QObject, notify = currentConfigurationChanged) def currentConfiguration(self) -> PrinterConfigurationModel: return self._current_printer_configuration @@ -332,6 +360,7 @@ class MachineManager(QObject): extruder_manager = ExtruderManager.getInstance() extruder_manager.fixSingleExtrusionMachineExtruderDefinition(global_stack) if not global_stack.isValid(): + Logger.warning("Global stack isn't valid, adding it to faulty container list") # Mark global stack as invalid ConfigurationErrorMessage.getInstance().addFaultyContainers(global_stack.getId()) return # We're done here @@ -503,6 +532,10 @@ class MachineManager(QObject): def printerConnected(self) -> bool: return bool(self._printer_output_devices) + @pyqtProperty(bool, notify = globalContainerChanged) + def activeMachineIsAbstractCloudPrinter(self) -> bool: + return len(self._printer_output_devices) == 1 and self._printer_output_devices[0].__class__.__name__ == "AbstractCloudOutputDevice" + @pyqtProperty(bool, notify = printerConnectedStatusChanged) def activeMachineIsGroup(self) -> bool: if self.activeMachine is None: @@ -872,7 +905,8 @@ class MachineManager(QObject): if self._global_container_stack is None \ or self._global_container_stack.getProperty(setting_key, "value") == new_value \ - or self.numberExtrudersEnabled < 2: + or self._global_container_stack.definitionChanges.getProperty("extruders_enabled_count", "value") is None \ + or self._global_container_stack.definitionChanges.getProperty("extruders_enabled_count", "value") < 2: return user_changes_container = self._global_container_stack.userChanges @@ -977,7 +1011,7 @@ class MachineManager(QObject): for position, extruder in enumerate(self._global_container_stack.extruderList): if extruder.isEnabled and int(position) < machine_extruder_count: extruder_count += 1 - if self.numberExtrudersEnabled != extruder_count: + if self._global_container_stack.definitionChanges.getProperty("extruders_enabled_count", "value") != extruder_count: definition_changes_container.setProperty("extruders_enabled_count", "value", extruder_count) self.numberExtrudersEnabledChanged.emit() @@ -1598,33 +1632,31 @@ class MachineManager(QObject): # Examples: # - "my_profile - Fine" (only based on a default quality, no intent involved) # - "my_profile - Engineering - Fine" (based on an intent) - @pyqtProperty("QVariantMap", notify = activeQualityDisplayNameChanged) - def activeQualityDisplayNameMap(self) -> Dict[str, str]: + @pyqtProperty("QList", notify = activeQualityDisplayNameChanged) + def activeQualityDisplayNameStringParts(self) -> List[str]: + return self.activeQualityDisplayNameMap().getStringParts() + + @pyqtProperty("QList", notify = activeQualityDisplayNameChanged) + def activeQualityDisplayNameMainStringParts(self) -> List[str]: + return self.activeQualityDisplayNameMap().getMainStringParts() + + @pyqtProperty("QList", notify = activeQualityDisplayNameChanged) + def activeQualityDisplayNameTailStringParts(self) -> List[str]: + return self.activeQualityDisplayNameMap().getTailStringParts() + + def activeQualityDisplayNameMap(self) -> ActiveQuality: global_stack = self._application.getGlobalContainerStack() if global_stack is None: - return {"main": "", - "suffix": ""} + return ActiveQuality() - display_name = global_stack.quality.getName() - - intent_category = self.activeIntentCategory - if intent_category != "default": - intent_display_name = IntentCategoryModel.translation(intent_category, - "name", - intent_category.title()) - display_name = "{intent_name} - {the_rest}".format(intent_name = intent_display_name, - the_rest = display_name) - - main_part = display_name - suffix_part = "" - - # Not a custom quality - if global_stack.qualityChanges != empty_quality_changes_container: - main_part = self.activeQualityOrQualityChangesName - suffix_part = display_name - - return {"main": main_part, - "suffix": suffix_part} + return ActiveQuality( + profile = global_stack.quality.getName(), + 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, + is_experimental = self.isActiveQualityExperimental and self.isActiveQualitySupported + ) @pyqtSlot(str) def setIntentByCategory(self, intent_category: str) -> None: @@ -1743,7 +1775,9 @@ class MachineManager(QObject): @pyqtProperty(bool, notify = activeQualityGroupChanged) def hasNotSupportedQuality(self) -> bool: global_container_stack = self._application.getGlobalContainerStack() - return (not global_container_stack is None) and global_container_stack.quality == empty_quality_container and global_container_stack.qualityChanges == empty_quality_changes_container + return global_container_stack is not None\ + and global_container_stack.quality == empty_quality_container \ + and global_container_stack.qualityChanges == empty_quality_changes_container @pyqtProperty(bool, notify = activeQualityGroupChanged) def isActiveQualityCustom(self) -> bool: diff --git a/cura/Settings/SimpleModeSettingsManager.py b/cura/Settings/SimpleModeSettingsManager.py index af8707f235..7ea21ed295 100644 --- a/cura/Settings/SimpleModeSettingsManager.py +++ b/cura/Settings/SimpleModeSettingsManager.py @@ -42,21 +42,8 @@ class SimpleModeSettingsManager(QObject): for extruder_stack in global_stack.extruderList: user_setting_keys.update(extruder_stack.userChanges.getAllKeys()) - # remove settings that are visible in recommended (we don't show the reset button for those) - for skip_key in self.__ignored_custom_setting_keys: - if skip_key in user_setting_keys: - user_setting_keys.remove(skip_key) - has_customized_user_settings = len(user_setting_keys) > 0 if has_customized_user_settings != self._is_profile_customized: self._is_profile_customized = has_customized_user_settings self.isProfileCustomizedChanged.emit() - - # These are the settings included in the Simple ("Recommended") Mode, so only when the other settings have been - # changed, we consider it as a user customized profile in the Simple ("Recommended") Mode. - __ignored_custom_setting_keys = ["support_enable", - "infill_sparse_density", - "gradual_infill_steps", - "adhesion_type", - "support_extruder_nr"] diff --git a/cura/TaskManagement/OnExitCallbackManager.py b/cura/TaskManagement/OnExitCallbackManager.py index 7894931e9c..54121a2960 100644 --- a/cura/TaskManagement/OnExitCallbackManager.py +++ b/cura/TaskManagement/OnExitCallbackManager.py @@ -10,10 +10,13 @@ if TYPE_CHECKING: # -# This class manages a all registered upon-exit checks that need to be perform when the application tries to exit. -# For example, to show a confirmation dialog when there is USB printing in progress, etc. All callbacks will be called -# in the order of when they got registered. If all callbacks "passes", that is, for example, if the user clicks "yes" -# on the exit confirmation dialog or nothing that's blocking the exit, then the application will quit after that. +# This class manages all registered upon-exit checks +# that need to be performed when the application tries to exit. +# For example, show a confirmation dialog when there is USB printing in progress. +# All callbacks will be called in the order of when they were registered. +# If all callbacks "pass", for example: +# if the user clicks "yes" on the exit confirmation dialog +# and nothing else is blocking the exit, then the application will quit. # class OnExitCallbackManager: @@ -35,10 +38,12 @@ class OnExitCallbackManager: def getIsAllChecksPassed(self) -> bool: return self._is_all_checks_passed - # Trigger the next callback if available. If not, it means that all callbacks have "passed", which means we should - # not block the application to quit, and it will call the application to actually quit. + # Trigger the next callback if there is one. + # If not, all callbacks have "passed", + # which means we should not prevent the application from quitting, + # and we call the application to actually quit. def triggerNextCallback(self) -> None: - # Get the next callback and schedule that if + # Get the next callback and schedule it this_callback = None if self._current_callback_idx < len(self._on_exit_callback_list): this_callback = self._on_exit_callback_list[self._current_callback_idx] @@ -55,10 +60,11 @@ class OnExitCallbackManager: # Tell the application to exit self._application.callLater(self._application.closeApplication) - # This is the callback function which an on-exit callback should call when it finishes, it should provide the - # "should_proceed" flag indicating whether this check has "passed", or in other words, whether quitting the - # application should be blocked. If the last on-exit callback doesn't block the quitting, it will call the next - # registered on-exit callback if available. + # Callback function which an on-exit callback calls when it finishes. + # It provides a "should_proceed" flag indicating whether the check has "passed", + # or whether quitting the application should be blocked. + # If the last on-exit callback doesn't block quitting, it will call the next + # registered on-exit callback if one is available. def onCurrentCallbackFinished(self, should_proceed: bool = True) -> None: if not should_proceed: Logger.log("d", "on-app-exit callback finished and we should not proceed.") diff --git a/cura/UI/AddPrinterPagesModel.py b/cura/UI/AddPrinterPagesModel.py index 9b35dbcacc..1962a6e2ec 100644 --- a/cura/UI/AddPrinterPagesModel.py +++ b/cura/UI/AddPrinterPagesModel.py @@ -12,7 +12,7 @@ class AddPrinterPagesModel(WelcomePagesModel): def initialize(self, cancellable: bool = True) -> None: self._pages.append({"id": "add_network_or_local_printer", - "page_url": self._getBuiltinWelcomePagePath("AddNetworkOrLocalPrinterContent.qml"), + "page_url": self._getBuiltinWelcomePagePath("AddUltimakerOrThirdPartyPrinterStack.qml"), "next_page_id": "machine_actions", "next_page_button_text": self._catalog.i18nc("@action:button", "Add"), }) diff --git a/cura/UI/PrintInformation.py b/cura/UI/PrintInformation.py index e18fc38247..936e646946 100644 --- a/cura/UI/PrintInformation.py +++ b/cura/UI/PrintInformation.py @@ -23,9 +23,9 @@ catalog = i18nCatalog("cura") class PrintInformation(QObject): - """A class for processing and the print times per build plate as well as managing the job name + """A class for processing the print times per build plate and managing the job name - This class also mangles the current machine name and the filename of the first loaded mesh into a job name. + This class also combines the current machine name and the filename of the first loaded mesh into a job name. This job name is requested by the JobSpecs qml file. """ @@ -38,6 +38,8 @@ class PrintInformation(QObject): self.initializeCuraMessagePrintTimeProperties() + self.slice_uuid: Optional[str] = None + # Indexed by build plate number self._material_lengths = {} # type: Dict[int, List[float]] self._material_weights = {} # type: Dict[int, List[float]] @@ -184,7 +186,7 @@ class PrintInformation(QObject): if time != time: # Check for NaN. Engine can sometimes give us weird values. duration.setDuration(0) - Logger.log("w", "Received NaN for print duration message") + Logger.warning("Received NaN for print duration message") continue total_estimated_time += time @@ -366,7 +368,7 @@ class PrintInformation(QObject): mime_type = MimeTypeDatabase.getMimeTypeForFile(name) data = mime_type.stripExtension(name) except MimeTypeNotFoundError: - Logger.log("w", "Unsupported Mime Type Database file extension %s", name) + Logger.warning(f"Unsupported Mime Type Database file extension {name}") if data is not None and check_name is not None: self._base_name = data @@ -390,7 +392,7 @@ class PrintInformation(QObject): return self._base_name def _defineAbbreviatedMachineName(self) -> None: - """Created an acronym-like abbreviated machine name from the currently active machine name. + """Creates an abbreviated machine name from the currently active machine name. Called each time the global stack is switched. """ @@ -444,7 +446,7 @@ class PrintInformation(QObject): self.setToZeroPrintInformation(self._active_build_plate) def _onOutputStart(self, output_device: OutputDevice) -> None: - """If this is the sort of output 'device' (like local or online file storage, rather than a printer), + """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() diff --git a/cura/UI/WelcomePagesModel.py b/cura/UI/WelcomePagesModel.py index 26c27418cf..5faf39311e 100644 --- a/cura/UI/WelcomePagesModel.py +++ b/cura/UI/WelcomePagesModel.py @@ -265,7 +265,7 @@ class WelcomePagesModel(ListModel): "should_show_function": self.shouldShowCloudPage, }, {"id": "add_network_or_local_printer", - "page_url": self._getBuiltinWelcomePagePath("AddNetworkOrLocalPrinterContent.qml"), + "page_url": self._getBuiltinWelcomePagePath("AddUltimakerOrThirdPartyPrinterStack.qml"), "next_page_id": "machine_actions", }, {"id": "add_printer_by_ip", diff --git a/cura/UI/WhatsNewPagesModel.py b/cura/UI/WhatsNewPagesModel.py index 4fb7802924..1faf9572c7 100644 --- a/cura/UI/WhatsNewPagesModel.py +++ b/cura/UI/WhatsNewPagesModel.py @@ -62,15 +62,21 @@ class WhatsNewPagesModel(WelcomePagesModel): def initialize(self) -> None: self._pages = [] - self._pages.append({"id": "whats_new", - "page_url": self._getBuiltinWelcomePagePath("WhatsNewContent.qml"), - "next_page_button_text": self._catalog.i18nc("@action:button", "Skip"), - "next_page_id": "changelog" - }) - self._pages.append({"id": "changelog", - "page_url": self._getBuiltinWelcomePagePath("ChangelogContent.qml"), - "next_page_button_text": self._catalog.i18nc("@action:button", "Close"), - }) + try: + self._pages.append({"id": "whats_new", + "page_url": self._getBuiltinWelcomePagePath("WhatsNewContent.qml"), + "next_page_button_text": self._catalog.i18nc("@action:button", "Skip"), + "next_page_id": "changelog" + }) + except FileNotFoundError: + Logger.warning("Unable to find what's new page") + try: + self._pages.append({"id": "changelog", + "page_url": self._getBuiltinWelcomePagePath("ChangelogContent.qml"), + "next_page_button_text": self._catalog.i18nc("@action:button", "Close"), + }) + except FileNotFoundError: + Logger.warning("Unable to find changelog page") self.setItems(self._pages) images, max_image = WhatsNewPagesModel._collectOrdinalFiles(Resources.Images, WhatsNewPagesModel.image_formats) diff --git a/docker/build.sh b/docker/build.sh deleted file mode 100755 index 1092ba4852..0000000000 --- a/docker/build.sh +++ /dev/null @@ -1,71 +0,0 @@ -#!/usr/bin/env bash - -# Abort at the first error. -set -e - -SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" -PROJECT_DIR="$( cd "${SCRIPT_DIR}/.." && pwd )" - -# Make sure that environment variables are set properly -export PATH="${CURA_BUILD_ENV_PATH}/bin:${PATH}" -export PKG_CONFIG_PATH="${CURA_BUILD_ENV_PATH}/lib/pkgconfig:${PKG_CONFIG_PATH}" -export LD_LIBRARY_PATH="${CURA_BUILD_ENV_PATH}/lib:${LD_LIBRARY_PATH}" - -cd "${PROJECT_DIR}" - - - -# -# Clone Uranium and set PYTHONPATH first -# - -# Check the branch to use for Uranium. -# It tries the following branch names and uses the first one that's available. -# - GITHUB_HEAD_REF: the branch name of a PR. If it's not a PR, it will be empty. -# - GITHUB_BASE_REF: the branch a PR is based on. If it's not a PR, it will be empty. -# - GITHUB_REF: the branch name if it's a branch on the repository; -# refs/pull/123/merge if it's a pull_request. -# - master: the master branch. It should always exist. - -# For debugging. -echo "GITHUB_REF: ${GITHUB_REF}" -echo "GITHUB_HEAD_REF: ${GITHUB_HEAD_REF}" -echo "GITHUB_BASE_REF: ${GITHUB_BASE_REF}" - -GIT_REF_NAME_LIST=( "${GITHUB_HEAD_REF}" "${GITHUB_BASE_REF}" "${GITHUB_REF}" "master" ) -for git_ref_name in "${GIT_REF_NAME_LIST[@]}" -do - if [ -z "${git_ref_name}" ]; then - continue - fi - git_ref_name="$(basename "${git_ref_name}")" - # Skip refs/pull/1234/merge as pull requests use it as GITHUB_REF - if [[ "${git_ref_name}" == "merge" ]]; then - echo "Skip [${git_ref_name}]" - continue - fi - URANIUM_BRANCH="${git_ref_name}" - output="$(git ls-remote --heads https://github.com/Ultimaker/Uranium.git "${URANIUM_BRANCH}")" - if [ -n "${output}" ]; then - echo "Found Uranium branch [${URANIUM_BRANCH}]." - break - else - echo "Could not find Uranium branch [${URANIUM_BRANCH}], try next." - fi -done - -echo "Using Uranium branch ${URANIUM_BRANCH} ..." -git clone --depth=1 -b "${URANIUM_BRANCH}" https://github.com/Ultimaker/Uranium.git "${PROJECT_DIR}"/Uranium -export PYTHONPATH="${PROJECT_DIR}/Uranium:.:${PYTHONPATH}" - -mkdir build -cd build -cmake \ - -DCMAKE_BUILD_TYPE=Debug \ - -DCMAKE_PREFIX_PATH="${CURA_BUILD_ENV_PATH}" \ - -DURANIUM_DIR="${PROJECT_DIR}/Uranium" \ - -DBUILD_TESTS=ON \ - -DPRINT_PLUGIN_LIST=OFF \ - -DGENERATE_TRANSLATIONS=OFF \ - .. -make diff --git a/docker/test.sh b/docker/test.sh deleted file mode 100755 index bae2bf785e..0000000000 --- a/docker/test.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env bash -cd build -ctest -j4 --output-on-failure -T Test diff --git a/docs/Report.md b/docs/Report.md new file mode 100644 index 0000000000..8b24903878 --- /dev/null +++ b/docs/Report.md @@ -0,0 +1,81 @@ + +# Reporting Issues + +Please attach the following information in case
+you want to report crashing or similar issues. + +
+ +## DxDiag + +### ![Badge Windows] + +The log as produced by **dxdiag**. + +  start    »    run    »    dxdiag    »    save output   + +
+
+ +## Cura GUI Log + +If the Cura user interface still starts, you can also
+reach these directories from the application menu: + +  Help    »    Show settings folder   + +
+ +### ![Badge Windows] + +``` +%APPDATA%\cura\<Cura Version>\cura.log +``` + +or + +``` +C:\Users\\AppData\Roaming\cura\<Cura Version>\cura.log +``` + +
+ +### ![Badge Linux] + +``` +~/.local/share/cura/<Cura Version>/cura.log +``` + +
+ +### ![Badge MacOS] + +``` +~/Library/Application Support/cura/<Cura Version>/cura.log +``` + +
+
+ +## Alternative + +An alternative is to install the **[ExtensiveSupportLogging]**
+plugin this creates a zip folder of the relevant log files. + +If you're experiencing performance issues, we might ask
+you to connect the CPU profiler in this plugin and attach
+the collected data to your support ticket. + +
+ + + + +[ExtensiveSupportLogging]: https://marketplace.ultimaker.com/app/cura/plugins/UltimakerPackages/ExtensiveSupportLogging + + + + +[Badge Windows]: https://img.shields.io/badge/Windows-0078D6?style=for-the-badge&logoColor=white&logo=Windows +[Badge Linux]: https://img.shields.io/badge/Linux-00A95C?style=for-the-badge&logoColor=white&logo=Linux +[Badge MacOS]: https://img.shields.io/badge/MacOS-403C3D?style=for-the-badge&logoColor=white&logo=MacOS diff --git a/docs/profiles/setting_properties.md b/docs/profiles/setting_properties.md index 84fb458c63..27a0d17c4d 100644 --- a/docs/profiles/setting_properties.md +++ b/docs/profiles/setting_properties.md @@ -2,32 +2,77 @@ Setting Properties ==== Each setting in Cura has a number of properties. It's not just a key and a value. This page lists the properties that a setting can define. -* `key` (string): The identifier by which the setting is referenced. This is not a human-readable name, but just a reference string, such as `layer_height_0`. Typically these are named with the most significant category first, in order to sort them better, such as `material_print_temperature`. This is not actually a real property but just an identifier; it can't be changed. -* `value` (optional): The current value of the setting. This can be a function, an arbitrary Python expression that depends on the values of other settings. If it's not present, the `default_value` is used. -* `default_value`: A default value for the setting if `value` is undefined. This property is required however. It can't be a Python expression, but it can be any JSON type. This is made separate so that CuraEngine can read it out as well for its debugging mode via the command line, without needing a complete Python interpreter. -* `label` (string): The human-readable name for the setting. This label is translated. -* `description` (string): A longer description of what the setting does when you change it. This description is translated as well. -* `type` (string): The type of value that this setting contains. Allowed types are: `bool`, `str`, `float`, `int`, `enum`, `category`, `[int]`, `vec3`, `polygon` and `polygons`. -* `unit` (optional string): A unit that is displayed at the right-hand side of the text field where the user enters the setting value. -* `resolve` (optional string): A Python expression that resolves disagreements for global settings if multiple per-extruder profiles define different values for a setting. Typically this takes the values for the setting from all stacks and computes one final value for it that will be used for the global setting. For instance, the `resolve` function for the build plate temperature is `max(extruderValues('material_bed_temperature')`, meaning that it will use the hottest bed temperature of all materials of the extruders in use. -* `limit_to_extruder` (optional): A Python expression that indicates which extruder a setting will be obtained from. This is used for settings that may be extruder-specific but the extruder is not necessarily the current extruder. For instance, support settings need to be evaluated for the support extruder. Infill settings need to be evaluated for the infill extruder if the infill extruder is changed. -* `enabled` (optional string or boolean): Whether the setting can currently be made visible for the user. This can be a simple true/false, or a Python expression that depends on other settings. Typically used for settings that don't apply when another setting is disabled, such as to hide the support settings if support is disabled. -* `minimum_value` (optional): The lowest acceptable value for this setting. If it's any lower, Cura will not allow the user to slice. By convention this is used to prevent setting values that are technically or physically impossible, such as a layer height of 0mm. This property only applies to numerical settings. -* `maximum_value` (optional): The highest acceptable value for this setting. If it's any higher, Cura will not allow the user to slice. By convention this is used to prevent setting values that are technically or physically impossible, such as a support overhang angle of more than 90 degrees. This property only applies to numerical settings. -* `minimum_value_warning` (optional): The threshold under which a warning is displayed to the user. By convention this is used to indicate that it will probably not print very nicely with such a low setting value. This property only applies to numerical settings. -* `maximum_value_warning` (optional): The threshold above which a warning is displayed to the user. By convention this is used to indicate that it will probably not print very nicely with such a high setting value. This property only applies to numerical settings. -* `settable_globally` (optional boolean): Whether the setting can be changed globally. For some mesh-type settings such as `support_mesh` this doesn't make sense, so those can't be changed globally. They are not displayed in the main settings list then. -* `settable_per_meshgroup` (optional boolean): Whether a setting can be changed per group of meshes. Currently unused in Cura. -* `settable_per_extruder` (optional boolean): Whether a setting can be changed per extruder. Some settings, like the build plate temperature, can't be adjusted separately for each extruder. An icon is shown in the interface to indicate this. If the user changes these settings they are stored in the global stack. -* `settable_per_mesh` (optional boolean): Whether a setting can be changed per mesh. The settings that can be changed per mesh are shown in the list of available settings in the per-object settings tool. -* `children` (optional list): A list of child settings. These are displayed with an indentation. If all child settings are overridden by the user, the parent setting gets greyed out to indicate that the parent setting has no effect any more. This is not strictly always the case though, because that would depend on the inheritance functions in the `value`. -* `icon` (optional string): A path to an icon to be displayed. Only applies to setting categories. -* `allow_empty` (optional bool): Whether the setting is allowed to be empty. If it's not, this will be treated as a setting error and Cura will not allow the user to slice. Only applies to string-type settings. -* `warning_description` (optional string): A warning message to display when the setting has a warning value. This is currently unused by Cura. -* `error_description` (optional string): An error message to display when the setting has an error value. This is currently unused by Cura. -* `options` (dictionary): A list of values that the user can choose from. The keys of this dictionary are keys that CuraEngine identifies the option with. The values are human-readable strings and will be translated. Only applies to (and only required for) enum-type settings. -* `comments` (optional string): Comments to other programmers about the setting. This is not used by Cura. -* `is_uuid` (optional boolean): Whether or not this setting indicates a UUID-4. If it is, the setting will indicate an error if it's not in the correct format. Only applies to string-type settings. -* `regex_blacklist_pattern` (optional string): A regular expression, where if the setting value matches with this regular expression, it gets an error state. Only applies to string-type settings. -* `error_value` (optional): If the setting value is equal to this value, it will show a setting error. This is used to display errors for non-numerical settings such as checkboxes. -* `warning_value` (optional): If the setting value is equal to this value, it will show a setting warning. This is used to display warnings for non-numerical settings such as checkboxes. \ No newline at end of file +* `key` (string): __The identifier by which the setting is referenced.__ + * This is not a human-readable name, but just a reference string, such as `layer_height_0`. + * This is not actually a real property but just an identifier; it can't be changed. + * Typically these are named with the most significant category first, in order to sort them better, such as `material_print_temperature`. +* `value` (optional): __The current value of the setting.__ + * This can be a function (an arbitrary Python expression) that depends on the values of other settings. + * If it's not present, the `default_value` is used. +* `default_value`: __A default value for the setting if `value` is undefined.__ + * This property is required. + * It can't be a Python expression, but it can be any JSON type. + * This is made separate so that CuraEngine can read it out for its debugging mode via the command line, without needing a complete Python interpreter. +* `label` (string): __The human-readable name for the setting.__ + * This label is translated. +* `description` (string): __A longer description of what the setting does when you change it.__ + * This description is translated. +* `type` (string): __The type of value that this setting contains.__ + * Allowed types are: `bool`, `str`, `float`, `int`, `enum`, `category`, `[int]`, `vec3`, `polygon` and `polygons`. +* `unit` (optional string): __A unit that is displayed at the right-hand side of the text field where the user enters the setting value.__ +* `resolve` (optional string): __A Python expression that resolves disagreements for global settings if multiple per-extruder profiles define different values for a setting.__ + * Typically this takes the values for the setting from all stacks and computes one final value for it that will be used for the global setting. For instance, the `resolve` function for the build plate temperature is `max(extruderValues('material_bed_temperature')`, meaning that it will use the hottest bed temperature of all materials of the extruders in use. +* `limit_to_extruder` (optional): __A Python expression that indicates which extruder a setting will be obtained from.__ + * This is used for settings that may be extruder-specific but the extruder is not necessarily the current extruder. For instance, support settings need to be evaluated for the support extruder. Infill settings need to be evaluated for the infill extruder if the infill extruder is changed. +* `enabled` (optional string or boolean): __Whether the setting can currently be made visible for the user.__ + * This can be a simple true/false, or a Python expression that depends on other settings. + * Typically used for settings that don't apply when another setting is disabled, such as to hide the support settings if support is disabled. +* `minimum_value` (optional): __The lowest acceptable value for this setting.__ + * If it's any lower, Cura will not allow the user to slice. + * This property only applies to numerical settings. + * By convention this is used to prevent setting values that are technically or physically impossible, such as a layer height of 0mm. +* `maximum_value` (optional): __The highest acceptable value for this setting.__ + * If it's any higher, Cura will not allow the user to slice. + * This property only applies to numerical settings. + * By convention this is used to prevent setting values that are technically or physically impossible, such as a support overhang angle of more than 90 degrees. +* `minimum_value_warning` (optional): __The threshold under which a warning is displayed to the user.__ + * This property only applies to numerical settings. + * By convention this is used to indicate that it will probably not print very nicely with such a low setting value. +* `maximum_value_warning` (optional): __The threshold above which a warning is displayed to the user.__ + * This property only applies to numerical settings. + * By convention this is used to indicate that it will probably not print very nicely with such a high setting value. +* `settable_globally` (optional boolean): __Whether the setting can be changed globally.__ + * For some mesh-type settings such as `support_mesh` this doesn't make sense, so those can't be changed globally. They are not displayed in the main settings list then. +* `settable_per_meshgroup` (optional boolean): __Whether a setting can be changed per group of meshes.__ + * *This is currently unused by Cura.* +* `settable_per_extruder` (optional boolean): __Whether a setting can be changed per extruder.__ + * Some settings, like the build plate temperature, can't be adjusted separately for each extruder. An icon is shown in the interface to indicate this. + * If the user changes these settings they are stored in the global stack. +* `settable_per_mesh` (optional boolean): __Whether a setting can be changed per mesh.__ + * The settings that can be changed per mesh are shown in the list of available settings in the per-object settings tool. +* `children` (optional list): __A list of child settings.__ + * These are displayed with an indentation. If all child settings are overridden by the user, the parent setting gets greyed out to indicate that the parent setting has no effect any more. This is not strictly always the case though, because that would depend on the inheritance functions in the `value`. +* `icon` (optional string): __A path to an icon to be displayed.__ + * Only applies to setting categories. +* `allow_empty` (optional bool): __Whether the setting is allowed to be empty.__ + * If it's not, this will be treated as a setting error and Cura will not allow the user to slice. + * Only applies to string-type settings. +* `warning_description` (optional string): __A warning message to display when the setting has a warning value.__ + * *This is currently unused by Cura.* +* `error_description` (optional string): __An error message to display when the setting has an error value.__ + * *This is currently unused by Cura.* +* `options` (dictionary): __A list of values that the user can choose from.__ + * The keys of this dictionary are keys that CuraEngine identifies the option with. + * The values are human-readable strings and will be translated. + * Only applies to (and only required for) enum-type settings. +* `comments` (optional string): __Comments to other programmers about the setting.__ + * *This is currently unused by Cura.* +* `is_uuid` (optional boolean): __Whether or not this setting indicates a UUID-4.__ + * If it is, the setting will indicate an error if it's not in the correct format. + * Only applies to string-type settings. +* `regex_blacklist_pattern` (optional string): __A regular expression, where if the setting value matches with this regular expression, it gets an error state.__ + * Only applies to string-type settings. +* `error_value` (optional): __If the setting value is equal to this value, it will show a setting error.__ + * This is used to display errors for non-numerical settings such as checkboxes. +* `warning_value` (optional): __If the setting value is equal to this value, it will show a setting warning.__ + * This is used to display warnings for non-numerical settings such as checkboxes. diff --git a/docs/repositories.md b/docs/repositories.md index 3b4c4bc317..0d882c44b2 100644 --- a/docs/repositories.md +++ b/docs/repositories.md @@ -1,21 +1,33 @@ Repositories ==== Cura uses a number of repositories where parts of our source code are separated, in order to get a cleaner architecture. Those repositories are: -* [Cura](https://github.com/Ultimaker/Cura), the main repository for the front-end of Cura. This contains all of the business logic for the front-end, including the specific types of profiles that are available, the concept of 3D printers and materials, specific tools for handling 3D printed models, pretty much all of the GUI, as well as Ultimaker services such as the Marketplace and accounts. -* The Cura repository is built on [Uranium](https://github.com/Ultimaker/Uranium), a framework for desktop applications that handle 3D models and have a separate back-end. This provides Cura with a basic GUI framework ([Qt](https://www.qt.io/)), a 3D scene, a rendering system, a plug-in system and a system for stacked profiles that change settings. -* In order to slice, Cura starts [CuraEngine](https://github.com/Ultimaker/CuraEngine) in the background. This does the actual process that converts 3D models into a toolpath for the printer. -* Communication to CuraEngine goes via [libArcus](https://github.com/Ultimaker/libArcus), a small library that wraps around [Protobuf](https://developers.google.com/protocol-buffers/) in order to make it run over a local socket. -* Cura's build scripts are in [cura-build](https://github.com/Ultimaker/cura-build) and build scripts for building dependencies are in [cura-build-environment](https://github.com/Ultimaker/cura-build-environment). +* [Cura](https://github.com/Ultimaker/Cura) is the main repository for the front-end of Cura. This contains: + - all of the business logic for the front-end, including the specific types of profiles that are available + - the concept of 3D printers and materials + - specific tools for handling 3D printed models + - pretty much all of the GUI + - Ultimaker services such as the Marketplace and accounts. +* [Uranium](https://github.com/Ultimaker/Uranium) is the underlying framework the Cura repository is built on. [Uranium](https://github.com/Ultimaker/Uranium) is a framework for desktop applications that handle 3D models. It has a separate back-end. This provides Cura with: + - a basic GUI framework ([Qt](https://www.qt.io/)) + - a 3D scene, a rendering system + - a plug-in system + - a system for stacked profiles that change settings. +* [CuraEngine](https://github.com/Ultimaker/CuraEngine) is the slicer used by Cura in the background. This does the actual process that converts 3D models into a toolpath for the printer. +* [libArcus](https://github.com/Ultimaker/libArcus) handles the communication to CuraEngine. [libArcus](https://github.com/Ultimaker/libArcus) is a small library that wraps around [Protobuf](https://developers.google.com/protocol-buffers/) in order to make it run over a local socket. +* [cura-build](https://github.com/Ultimaker/cura-build): Cura's build scripts. +* [cura-build-environment](https://github.com/Ultimaker/cura-build-environment) build scripts for building dependencies. There are also a number of repositories under our control that are not integral parts of Cura's architecture, but more like separated side-gigs: -* Loading and writing 3MF files is done through [libSavitar](https://github.com/Ultimaker/libSavitar). -* Loading and writing UFP files is done through [libCharon](https://github.com/Ultimaker/libCharon). -* To make the build system a bit simpler, some parts are pre-compiled in [cura-binary-data](https://github.com/Ultimaker/cura-binary-data). This holds things like the machine-readable translation files and the Marlin builds for firmware updates, which would require considerable tooling to build automatically. -* There are automated GUI tests in [Cura-squish-tests](https://github.com/Ultimaker/Cura-squish-tests). -* Material profiles are stored in [fdm_materials](https://github.com/Ultimaker/fdm_materials). This is separated out and combined in our build process, so that the firmware for Ultimaker's printers can use the same set of profiles too. +* [libSavitar](https://github.com/Ultimaker/libSavitar) is used for loading and writing 3MF files. +* [libCharon](https://github.com/Ultimaker/libCharon) is used for loading and writing UFP files. +* [cura-binary-data](https://github.com/Ultimaker/cura-binary-data) pre-compiled parts to make the build system a bit simpler. This holds things which would require considerable tooling to build automatically like: + - the machine-readable translation files + - the Marlin builds for firmware updates +* [Cura-squish-tests](https://github.com/Ultimaker/Cura-squish-tests): automated GUI tests. +* [fdm_materials](https://github.com/Ultimaker/fdm_materials) stores Material profiles. This is separated out and combined in our build process, so that the firmware for Ultimaker's printers can use the same set of profiles too. Interplay ---- At a very high level, Cura's repositories interconnect as follows: -![Overview of interplay between repositories](resources/repositories.svg) \ No newline at end of file +![Overview of interplay between repositories](resources/repositories.svg) diff --git a/docs/resources/deps.dot b/docs/resources/deps.dot new file mode 100644 index 0000000000..dbfe8f4530 --- /dev/null +++ b/docs/resources/deps.dot @@ -0,0 +1,54 @@ +digraph { + "cpython/3.10.4@ultimaker/testing" -> "zlib/1.2.12" + "cpython/3.10.4@ultimaker/testing" -> "openssl/1.1.1l" + "cpython/3.10.4@ultimaker/testing" -> "expat/2.4.1" + "cpython/3.10.4@ultimaker/testing" -> "libffi/3.2.1" + "cpython/3.10.4@ultimaker/testing" -> "mpdecimal/2.5.0@ultimaker/testing" + "cpython/3.10.4@ultimaker/testing" -> "libuuid/1.0.3" + "cpython/3.10.4@ultimaker/testing" -> "libxcrypt/4.4.25" + "cpython/3.10.4@ultimaker/testing" -> "bzip2/1.0.8" + "cpython/3.10.4@ultimaker/testing" -> "gdbm/1.19" + "cpython/3.10.4@ultimaker/testing" -> "sqlite3/3.36.0" + "cpython/3.10.4@ultimaker/testing" -> "tk/8.6.10" + "cpython/3.10.4@ultimaker/testing" -> "ncurses/6.2" + "cpython/3.10.4@ultimaker/testing" -> "xz_utils/5.2.5" + "pynest2d/5.1.0-beta+3@ultimaker/stable" -> "libnest2d/5.1.0-beta+3@ultimaker/stable" + "pynest2d/5.1.0-beta+3@ultimaker/stable" -> "cpython/3.10.4@ultimaker/testing" + "freetype/2.12.1" -> "libpng/1.6.37" + "freetype/2.12.1" -> "zlib/1.2.12" + "freetype/2.12.1" -> "bzip2/1.0.8" + "freetype/2.12.1" -> "brotli/1.0.9" + "savitar/5.1.0-beta+3@ultimaker/stable" -> "pugixml/1.12.1" + "savitar/5.1.0-beta+3@ultimaker/stable" -> "cpython/3.10.4@ultimaker/testing" + "arcus/5.1.0-beta+3@ultimaker/stable" -> "protobuf/3.17.1" + "arcus/5.1.0-beta+3@ultimaker/stable" -> "cpython/3.10.4@ultimaker/testing" + "arcus/5.1.0-beta+3@ultimaker/stable" -> "zlib/1.2.12" + "libpng/1.6.37" -> "zlib/1.2.12" + "curaengine/5.1.0-beta+3@ultimaker/stable" -> "clipper/6.4.2" + "curaengine/5.1.0-beta+3@ultimaker/stable" -> "boost/1.78.0" + "curaengine/5.1.0-beta+3@ultimaker/stable" -> "rapidjson/1.1.0" + "curaengine/5.1.0-beta+3@ultimaker/stable" -> "stb/20200203" + "curaengine/5.1.0-beta+3@ultimaker/stable" -> "protobuf/3.17.1" + "curaengine/5.1.0-beta+3@ultimaker/stable" -> "arcus/5.1.0-beta+3@ultimaker/stable" + "tcl/8.6.10" -> "zlib/1.2.12" + "uranium/5.1.0-beta+3@ultimaker/stable" -> "arcus/5.1.0-beta+3@ultimaker/stable" + "uranium/5.1.0-beta+3@ultimaker/stable" -> "cpython/3.10.4@ultimaker/testing" + "libnest2d/5.1.0-beta+3@ultimaker/stable" -> "boost/1.78.0" + "libnest2d/5.1.0-beta+3@ultimaker/stable" -> "clipper/6.4.2" + "libnest2d/5.1.0-beta+3@ultimaker/stable" -> "nlopt/2.7.0" + "conanfile.py (cura/5.1.0-beta+3@ultimaker/testing)" -> "arcus/5.1.0-beta+3@ultimaker/stable" + "conanfile.py (cura/5.1.0-beta+3@ultimaker/testing)" -> "curaengine/5.1.0-beta+3@ultimaker/stable" + "conanfile.py (cura/5.1.0-beta+3@ultimaker/testing)" -> "savitar/5.1.0-beta+3@ultimaker/stable" + "conanfile.py (cura/5.1.0-beta+3@ultimaker/testing)" -> "pynest2d/5.1.0-beta+3@ultimaker/stable" + "conanfile.py (cura/5.1.0-beta+3@ultimaker/testing)" -> "uranium/5.1.0-beta+3@ultimaker/stable" + "conanfile.py (cura/5.1.0-beta+3@ultimaker/testing)" -> "fdm_materials/5.1.0-beta+3@ultimaker/stable" + "conanfile.py (cura/5.1.0-beta+3@ultimaker/testing)" -> "cura_binary_data/5.1.0-beta+3@ultimaker/stable" + "conanfile.py (cura/5.1.0-beta+3@ultimaker/testing)" -> "cpython/3.10.4@ultimaker/testing" + "fontconfig/2.13.93" -> "freetype/2.12.1" + "fontconfig/2.13.93" -> "expat/2.4.1" + "fontconfig/2.13.93" -> "libuuid/1.0.3" + "tk/8.6.10" -> "tcl/8.6.10" + "tk/8.6.10" -> "fontconfig/2.13.93" + "tk/8.6.10" -> "xorg/system" + "protobuf/3.17.1" -> "zlib/1.2.12" +} diff --git a/icons/cura.icns b/icons/cura.icns deleted file mode 100644 index 51d8ea71e8..0000000000 Binary files a/icons/cura.icns and /dev/null differ diff --git a/packaging/AppImage/AppRun b/packaging/AppImage/AppRun new file mode 100644 index 0000000000..369ce54c6c --- /dev/null +++ b/packaging/AppImage/AppRun @@ -0,0 +1,25 @@ +#!/bin/bash + +scriptdir=$(dirname $0) + +export PYTHONPATH="$scriptdir/lib/python3.10" +export LD_LIBRARY_PATH=$scriptdir +export QT_PLUGIN_PATH="$scriptdir/qt/plugins" +export QML2_IMPORT_PATH="$scriptdir/qt/qml" +export QT_QPA_FONTDIR=/usr/share/fonts +export QT_QPA_PLATFORMTHEME=xdgdesktopportal +export QT_XKB_CONFIG_ROOT=/usr/share/X11/xkb + +# Use the openssl.cnf packaged in the AppImage +export OPENSSL_CONF="$scriptdir/openssl.cnf" + +# If this variable is set on Zorin OS 16 Cura would crash +# unset `QT_STYLE_OVERRIDE` as a precaution +unset QT_STYLE_OVERRIDE + +BIN=`basename "$ARGV0" .AppImage` +if [ -f $scriptdir/$BIN ]; then + $scriptdir/$BIN "$@" +else + $scriptdir/UltiMaker-Cura "$@" +fi; diff --git a/packaging/AppImage/create_appimage.py b/packaging/AppImage/create_appimage.py new file mode 100644 index 0000000000..242c45aa5d --- /dev/null +++ b/packaging/AppImage/create_appimage.py @@ -0,0 +1,77 @@ +# Copyright (c) 2022 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + + +import argparse # Command line arguments parsing and help. +from jinja2 import Template +import os # Finding installation directory. +import os.path # Finding files. +import shutil # Copying files. +import stat # For setting file permissions. +import subprocess # For calling system commands. + +def build_appimage(dist_path, version, appimage_filename): + """ + Creates an AppImage file from the build artefacts created so far. + """ + copy_metadata_files(dist_path, version) + + try: + os.remove(os.path.join(dist_path, appimage_filename)) # Ensure any old file is removed, if it exists. + except FileNotFoundError: + pass # If it didn't exist, that's even better. + + generate_appimage(dist_path, appimage_filename) + + sign_appimage(dist_path, appimage_filename) + +def copy_metadata_files(dist_path, version): + """ + Copy metadata files for the metadata of the AppImage. + """ + copied_files = { + os.path.join("..", "icons", "cura-icon_256x256.png"): "cura-icon.png", + "cura.appdata.xml": "cura.appdata.xml", + "AppRun": "AppRun" + } + + packaging_dir = os.path.dirname(__file__) + for source, dest in copied_files.items(): + print("Copying", os.path.join(packaging_dir, source), "to", os.path.join(dist_path, dest)) + shutil.copyfile(os.path.join(packaging_dir, source), os.path.join(dist_path, dest)) + + # Ensure that AppRun has the proper permissions: 755 (user reads, writes and executes, group reads and executes, world reads and executes). + print("Changing permissions for AppRun") + os.chmod(os.path.join(dist_path, "AppRun"), stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR | stat.S_IRGRP | stat.S_IXGRP | stat.S_IROTH | stat.S_IXOTH) + + # Provision the Desktop file with the correct version number. + template_path = os.path.join(packaging_dir, "cura.desktop.jinja") + desktop_path = os.path.join(dist_path, "cura.desktop") + print("Provisioning desktop file from", template_path, "to", desktop_path) + with open(template_path, "r") as f: + desktop_file = Template(f.read()) + with open(desktop_path, "w") as f: + f.write(desktop_file.render(cura_version = version)) + +def generate_appimage(dist_path, appimage_filename): + appimage_path = os.path.join(dist_path, "..", appimage_filename) + appimagetool = os.getenv("APPIMAGETOOL_LOCATION", "appimagetool") + command = [appimagetool, "--appimage-extract-and-run", f"{dist_path}/", appimage_path] + result = subprocess.call(command) + if result != 0: + raise RuntimeError(f"The AppImageTool command returned non-zero: {result}") + +def sign_appimage(dist_path, appimage_filename): + appimage_path = os.path.join(dist_path, "..", appimage_filename) + command = ["gpg", "--yes", "--armor", "--detach-sig", appimage_path] + result = subprocess.call(command) + if result != 0: + raise RuntimeError(f"The GPG command returned non-zero: {result}") + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description = "Create AppImages of Cura.") + parser.add_argument("dist_path", type=str, help="Path to where PyInstaller installed the distribution of Cura.") + parser.add_argument("version", type=str, help="Full version number of Cura (e.g. '5.1.0-beta')") + parser.add_argument("filename", type = str, help = "Filename of the AppImage (e.g. 'UltiMaker-Cura-5.1.0-beta-Linux-X64.AppImage')") + args = parser.parse_args() + build_appimage(args.dist_path, args.version, args.filename) diff --git a/packaging/AppImage/cura.appdata.xml b/packaging/AppImage/cura.appdata.xml new file mode 100644 index 0000000000..5f187b8bb8 --- /dev/null +++ b/packaging/AppImage/cura.appdata.xml @@ -0,0 +1,18 @@ + + + com.ultimaker.cura + CC0-1.0 + LGPL-3.0 + UltiMaker Cura + Slicer to prepare your 3D printing projects + +

UltiMaker Cura is a slicer, an application that prepares your model for 3D printing. Optimized, expert-tested profiles for 3D printers and materials mean you can start printing reliably in no time. And with industry-standard software integration, you can streamline your workflow for maximum efficiency.

+
+ https://ultimaker.com/en/software/ultimaker-cura + + + Print preparation screen + https://raw.githubusercontent.com/Ultimaker/Cura/main/cura-logo.PNG + + +
diff --git a/packaging/AppImage/cura.desktop.jinja b/packaging/AppImage/cura.desktop.jinja new file mode 100644 index 0000000000..1230d4ff5c --- /dev/null +++ b/packaging/AppImage/cura.desktop.jinja @@ -0,0 +1,15 @@ +[Desktop Entry] +Name=UltiMaker Cura +Name[de]=UltiMaker Cura +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 +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; +Categories=Graphics; +Keywords=3D;Printing; +X-AppImage-Version={{ cura_version }} diff --git a/packaging/MacOS/build_macos.py b/packaging/MacOS/build_macos.py new file mode 100644 index 0000000000..dcde629900 --- /dev/null +++ b/packaging/MacOS/build_macos.py @@ -0,0 +1,155 @@ +# Copyright (c) 2023 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + + +import os +import argparse # Command line arguments parsing and help. +import subprocess +from pathlib import Path + +ULTIMAKER_CURA_DOMAIN = os.environ.get("ULTIMAKER_CURA_DOMAIN", "nl.ultimaker.cura") + +def build_dmg(source_path: str, dist_path: str, filename: str, app_name: str) -> None: + create_dmg_executable = os.environ.get("CREATE_DMG_EXECUTABLE", "create-dmg") + + arguments = [create_dmg_executable, + "--window-pos", "640", "360", + "--window-size", "690", "503", + "--app-drop-link", "520", "272", + "--volicon", f"{source_path}/packaging/icons/VolumeIcons_Cura.icns", + "--icon-size", "90", + "--icon", app_name, "169", "272", + "--eula", f"{source_path}/packaging/cura_license.txt", + "--background", f"{source_path}/packaging/MacOs/cura_background_dmg.png", + f"{dist_path}/{filename}", + f"{dist_path}/{app_name}"] + + subprocess.run(arguments) + + +def build_pkg(dist_path: str, app_filename: str, component_filename: str, cura_version: str, installer_filename: str) -> None: + """ Builds and signs the pkg installer. + + @param dist_path: Path to put output pkg in + @param app_filename: name of the .app file to bundle inside the pkg + @param component_filename: Name of the pkg component package to bundle the app in + @param cura_version: The version is used when automatically replacing existing versions with the installer. + @param installer_filename: Name of the installer that contains the component package + """ + pkg_build_executable = os.environ.get("PKG_BUILD_EXECUTABLE", "pkgbuild") + product_build_executable = os.environ.get("PRODUCT_BUILD_EXECUTABLE", "productbuild") + codesign_identity = os.environ.get("CODESIGN_IDENTITY") + + # This builds the component package that contains UltiMaker-Cura.app. This component package will be bundled in a distribution package. + pkg_build_arguments = [ + pkg_build_executable, + "--identifier", f"{ULTIMAKER_CURA_DOMAIN}_{cura_version}", # If we want to replace previous version automatically remove {cure_version} + "--component", + Path(dist_path, app_filename), + Path(dist_path, component_filename), + "--install-location", "/Applications", + ] + + if codesign_identity: + pkg_build_arguments.extend(["--sign", codesign_identity]) + else: + print("CODESIGN_IDENTITY missing. The installer is not being signed") + + subprocess.run(pkg_build_arguments) + + # 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. + # TODO: Use --product {property_list_file} to pull keys out of file for distribution.xml. This can be used to set min requirements + distribution_creation_arguments = [ + product_build_executable, + "--synthesize", + "--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) + + # This creates the distributable package (Installer) + installer_creation_arguments = [ + product_build_executable, + "--distribution", Path(dist_path, "distribution.xml"), + "--package-path", dist_path, # Where to find the component packages mentioned in distribution.xml (UltiMaker-Cura.pkg) + Path(dist_path, installer_filename), + ] + + if codesign_identity: + installer_creation_arguments.extend(["--sign", codesign_identity]) + + subprocess.run(installer_creation_arguments) + + +def notarize_file(dist_path: str, filename: str) -> None: + """ Notarize a file. This takes 5+ minutes, there is indication that this step is successful.""" + notarize_user = os.environ.get("MAC_NOTARIZE_USER") + notarize_password = os.environ.get("MAC_NOTARIZE_PASS") + altool_executable = os.environ.get("ALTOOL_EXECUTABLE", "altool") + + notarize_arguments = [ + "xcrun", altool_executable, + "--notarize-app", + "--primary-bundle-id", ULTIMAKER_CURA_DOMAIN, + "--username", notarize_user, + "--password", notarize_password, + "--file", Path(dist_path, filename) + ] + + subprocess.run(notarize_arguments) + + +def create_pkg_installer(filename: str, dist_path: str, cura_version: str, app_name: str) -> None: + """ Creates a pkg installer from {filename}.app called {filename}-Installer.pkg + + The final package structure is UltiMaker-Cura-XXX-Installer.pkg[UltiMaker-Cura.pkg[UltiMaker-Cura.app]]. The outer + pkg file is a distributable pkg (Installer). Inside the distributable pkg there is a component pkg. The component + pkg contains the .app file that will be installed in the users Applications folder. + + @param filename: The name of the app file and the app component package file without the extension + @param dist_path: The location to read the app from and save the pkg to + """ + + filename_stem = Path(filename).stem + cura_component_package_name = f"{filename_stem}-Component.pkg" # This is a component package that is nested inside the installer, it contains the UltiMaker-Cura.app file This is the app file that will end up in your applications folder + + build_pkg(dist_path, app_name, cura_component_package_name, cura_version, filename) + + notarize = bool(os.environ.get("NOTARIZE_INSTALLER", "FALSE")) + if notarize: + notarize_file(dist_path, filename) + + +def create_dmg(filename: str, dist_path: str, source_path: str, app_name: str) -> None: + """ Creates a dmg executable from UltiMaker-Cura.app named {filename}.dmg + + @param filename: The name of the app file and the output dmg file without the extension + @param dist_path: The location to read the app from and save the dmg to + @param source_path: The location of the project source files + """ + + build_dmg(source_path, dist_path, filename, app_name) + + notarize_dmg = bool(os.environ.get("NOTARIZE_DMG", "TRUE")) + if notarize_dmg: + notarize_file(dist_path, filename) + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description = "Create installer for Cura.") + parser.add_argument("source_path", type = str, help = "Path to Pyinstaller source folder") + parser.add_argument("dist_path", type = str, help = "Path to Pyinstaller dist folder") + parser.add_argument("cura_conan_version", type = str, help="The version of cura") + parser.add_argument("filename", type = str, help = "Filename of the pkg/dmg (e.g. 'UltiMaker-Cura-5.1.0-beta-Macos-X64.pkg' or 'UltiMaker-Cura-5.1.0-beta-Macos-X64.dmg')") + parser.add_argument("app_name", 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] + + app_name = f"{args.app_name}.app" + + if Path(args.filename).suffix == ".pkg": + create_pkg_installer(args.filename, args.dist_path, cura_version, app_name) + else: + create_dmg(args.filename, args.dist_path, args.source_path, app_name) diff --git a/packaging/MacOS/cura.entitlements b/packaging/MacOS/cura.entitlements new file mode 100644 index 0000000000..3b95f077c9 --- /dev/null +++ b/packaging/MacOS/cura.entitlements @@ -0,0 +1,12 @@ + + + + + com.apple.security.cs.allow-dyld-environment-variables + + com.apple.security.cs.disable-executable-page-protection + + com.apple.security.cs.disable-library-validation + + + diff --git a/packaging/MacOS/cura_background_dmg.png b/packaging/MacOS/cura_background_dmg.png new file mode 100644 index 0000000000..8f2fb50b05 Binary files /dev/null and b/packaging/MacOS/cura_background_dmg.png differ diff --git a/packaging/NSIS/Ultimaker-Cura.nsi.jinja b/packaging/NSIS/Ultimaker-Cura.nsi.jinja new file mode 100644 index 0000000000..9996b24773 --- /dev/null +++ b/packaging/NSIS/Ultimaker-Cura.nsi.jinja @@ -0,0 +1,194 @@ +# Copyright (c) 2022 UltiMaker B.V. +# 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 }}" +!define DESCRIPTION "Application" +!define LICENSE_TXT "{{ cura_license_file }}" +!define INSTALLER_NAME "{{ destination }}" +!define MAIN_APP_EXE "{{ main_app }}" +!define INSTALL_TYPE "SetShellVarContext all" +!define REG_ROOT "HKLM" +!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" + +;Require administrator access +RequestExecutionLevel admin + +var SM_Folder + +###################################################################### + +VIProductVersion "${VIVERSION}" +VIAddVersionKey "ProductName" "{{ app_name }}" +VIAddVersionKey "CompanyName" "${COMP_NAME}" +VIAddVersionKey "LegalCopyright" "${COPYRIGHT}" +VIAddVersionKey "FileDescription" "${DESCRIPTION}" +VIAddVersionKey "FileVersion" "${VIVERSION}" + +###################################################################### + +SetCompressor {{ compression_method }} +Name "${APP_NAME}" +Caption "${APP_NAME}" +OutFile "${INSTALLER_NAME}" +BrandingText "${APP_NAME}" +InstallDir "$PROGRAMFILES64\${APP_NAME}" + +###################################################################### + +!include "MUI2.nsh" +!include fileassoc.nsh + +!define MUI_ABORTWARNING +!define MUI_UNABORTWARNING + +!define MUI_ICON "{{ cura_icon }}" + +!define MUI_WELCOMEFINISHPAGE_BITMAP "{{ cura_banner_img }}" +!define MUI_UNWELCOMEFINISHPAGE_BITMAP "{{ cura_banner_img }}" + +!insertmacro MUI_PAGE_WELCOME + +!ifdef LICENSE_TXT +!insertmacro MUI_PAGE_LICENSE "${LICENSE_TXT}" +!endif + +!insertmacro MUI_PAGE_DIRECTORY + +!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 + +# Set up explorer to run Cura instead of directly, so it's not executed elevated (with all negative consequences that brings for an unelevated user). +!define MUI_FINISHPAGE_RUN "$WINDIR\explorer.exe" +!define MUI_FINISHPAGE_RUN_PARAMETERS "$INSTDIR\${MAIN_APP_EXE}" +!insertmacro MUI_PAGE_FINISH + +!insertmacro MUI_UNPAGE_CONFIRM + +!insertmacro MUI_UNPAGE_INSTFILES + +!insertmacro MUI_UNPAGE_FINISH + +!insertmacro MUI_LANGUAGE "English" + +###################################################################### + +Section -MainProgram +${INSTALL_TYPE} +SetOverwrite ifnewer +{% for out_path, files in mapped_out_paths.items() %}SetOutPath "{{ out_path }}"{% for file in files %} +File "{{ file[0] }}"{% endfor %} +{% endfor %}SectionEnd + +###################################################################### + +Section -Extension_Reg +!insertmacro APP_ASSOCIATE "stl" "Cura.model" "Standard Tessellation Language (STL) files" "$INSTDIR\${MAIN_APP_EXE},0" "Open with {{ app_name }}" "$INSTDIR\${MAIN_APP_EXE} $\"%1$\"" +!insertmacro APP_ASSOCIATE "3mf" "Cura.project" "3D Manufacturing Format (3MF) files" "$INSTDIR\${MAIN_APP_EXE},0" "Open with {{ app_name }}" "$INSTDIR\${MAIN_APP_EXE} $\"%1$\"" +SectionEnd + +Section -Icons_Reg +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 +!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 +!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}" "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 + +###################################################################### + +Section Uninstall +${INSTALL_TYPE}{% for files in mapped_out_paths.values() %}{% for file in files %} +Delete "{{ file[1] }}"{% endfor %}{% endfor %}{% for rem_dir in rmdir_paths %} +RmDir "{{ rem_dir }}"{% endfor %} + +# FIXME: dirty solution, but for some reason these directories aren't removed +RmDir "$INSTDIR\share\cura\resources\scripts" +RmDir "$INSTDIR\share\cura\resources" +RmDir "$INSTDIR\share\cura" +RmDir "$INSTDIR\share\uranium\resources\scripts" +RmDir "$INSTDIR\share\uranium\resources" +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" +!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 }}" +!endif + +!insertmacro APP_UNASSOCIATE "stl" "Cura.model" +!insertmacro APP_UNASSOCIATE "3mf" "Cura.project" + +DeleteRegKey ${REG_ROOT} "${REG_APP_PATH}" +DeleteRegKey ${REG_ROOT} "${UNINSTALL_PATH}" +SectionEnd + +###################################################################### diff --git a/packaging/NSIS/create_windows_installer.py b/packaging/NSIS/create_windows_installer.py new file mode 100644 index 0000000000..5ec31c8e35 --- /dev/null +++ b/packaging/NSIS/create_windows_installer.py @@ -0,0 +1,82 @@ +# Copyright (c) 2022 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 shutil +from datetime import datetime + +from pathlib import Path + +from jinja2 import Template + + +def generate_nsi(source_path: str, dist_path: str, filename: 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()] + mapped_out_paths = {} + for dist_path in dist_paths: + if "__pycache__" not in dist_path.parts: + out_path = instdir.joinpath(dist_path).parent + if out_path not in mapped_out_paths: + mapped_out_paths[out_path] = [(dist_loc.joinpath("UltiMaker-Cura", dist_path), instdir.joinpath(dist_path))] + else: + mapped_out_paths[out_path].append((dist_loc.joinpath("UltiMaker-Cura", dist_path), instdir.joinpath(dist_path))) + + rmdir_paths = set() + for rmdir_f in mapped_out_paths.values(): + for _, rmdir_p in rmdir_f: + for rmdir in rmdir_p.parents: + rmdir_paths.add(rmdir) + + rmdir_paths = sorted(list(rmdir_paths), reverse = True)[:-2] # Removes the `.` and `..` from the list + + jinja_template_path = Path(source_loc.joinpath("packaging", "NSIS", "Ultimaker-Cura.nsi.jinja")) + with open(jinja_template_path, "r") as f: + template = Template(f.read()) + + + nsis_content = template.render( + app_name = f"UltiMaker Cura {os.getenv('CURA_VERSION_FULL')}", + 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"), + 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 + cura_banner_img = str(source_loc.joinpath("packaging", "NSIS", "cura_banner_nsis.bmp")), + cura_icon = str(source_loc.joinpath("packaging", "icons", "Cura.ico")), + mapped_out_paths = mapped_out_paths, + rmdir_paths = rmdir_paths, + destination = filename + ) + + with open(dist_loc.joinpath("UltiMaker-Cura.nsi"), "w") as f: + f.write(nsis_content) + + shutil.copy(source_loc.joinpath("packaging", "NSIS", "fileassoc.nsh"), dist_loc.joinpath("fileassoc.nsh")) + + +def build(dist_path: str): + dist_loc = Path(os.getcwd(), dist_path) + command = ["makensis", "/V2", "/P4", str(dist_loc.joinpath("UltiMaker-Cura.nsi"))] + subprocess.run(command) + + +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')") + args = parser.parse_args() + generate_nsi(args.source_path, args.dist_path, args.filename) + build(args.dist_path) diff --git a/packaging/NSIS/cura_banner_nsis.bmp b/packaging/NSIS/cura_banner_nsis.bmp new file mode 100644 index 0000000000..31c5344a2f Binary files /dev/null and b/packaging/NSIS/cura_banner_nsis.bmp differ diff --git a/packaging/NSIS/fileassoc.nsh b/packaging/NSIS/fileassoc.nsh new file mode 100644 index 0000000000..cb0fb2fe65 --- /dev/null +++ b/packaging/NSIS/fileassoc.nsh @@ -0,0 +1,134 @@ +; fileassoc.nsh +; File association helper macros +; Written by Saivert +; +; Improved by Nikku. +; +; Features automatic backup system and UPDATEFILEASSOC macro for +; shell change notification. +; +; |> How to use <| +; To associate a file with an application so you can double-click it in explorer, use +; the APP_ASSOCIATE macro like this: +; +; Example: +; !insertmacro APP_ASSOCIATE "txt" "myapp.textfile" "Description of txt files" \ +; "$INSTDIR\myapp.exe,0" "Open with myapp" "$INSTDIR\myapp.exe $\"%1$\"" +; +; Never insert the APP_ASSOCIATE macro multiple times, it is only ment +; to associate an application with a single file and using the +; the "open" verb as default. To add more verbs (actions) to a file +; use the APP_ASSOCIATE_ADDVERB macro. +; +; Example: +; !insertmacro APP_ASSOCIATE_ADDVERB "myapp.textfile" "edit" "Edit with myapp" \ +; "$INSTDIR\myapp.exe /edit $\"%1$\"" +; +; To have access to more options when registering the file association use the +; APP_ASSOCIATE_EX macro. Here you can specify the verb and what verb is to be the +; standard action (default verb). +; +; Note, that this script takes into account user versus global installs. +; To properly work you must initialize the SHELL_CONTEXT variable via SetShellVarContext. +; +; And finally: To remove the association from the registry use the APP_UNASSOCIATE +; macro. Here is another example just to wrap it up: +; !insertmacro APP_UNASSOCIATE "txt" "myapp.textfile" +; +; |> Note <| +; When defining your file class string always use the short form of your application title +; then a period (dot) and the type of file. This keeps the file class sort of unique. +; Examples: +; Winamp.Playlist +; NSIS.Script +; Photoshop.JPEGFile +; +; |> Tech info <| +; The registry key layout for a global file association is: +; +; HKEY_LOCAL_MACHINE\Software\Classes +; <".ext"> = +; = <"description"> +; shell +; = <"menu-item text"> +; command = <"command string"> +; +; +; The registry key layout for a per-user file association is: +; +; HKEY_CURRENT_USER\Software\Classes +; <".ext"> = +; = <"description"> +; shell +; = <"menu-item text"> +; command = <"command string"> +; + +!macro APP_ASSOCIATE EXT FILECLASS DESCRIPTION ICON COMMANDTEXT COMMAND + ; Backup the previously associated file class + ReadRegStr $R0 SHELL_CONTEXT "Software\Classes\.${EXT}" "" + WriteRegStr SHELL_CONTEXT "Software\Classes\.${EXT}" "${FILECLASS}_backup" "$R0" + + WriteRegStr SHELL_CONTEXT "Software\Classes\.${EXT}" "" "${FILECLASS}" + + WriteRegStr SHELL_CONTEXT "Software\Classes\${FILECLASS}" "" `${DESCRIPTION}` + WriteRegStr SHELL_CONTEXT "Software\Classes\${FILECLASS}\DefaultIcon" "" `${ICON}` + WriteRegStr SHELL_CONTEXT "Software\Classes\${FILECLASS}\shell" "" "open" + WriteRegStr SHELL_CONTEXT "Software\Classes\${FILECLASS}\shell\open" "" `${COMMANDTEXT}` + WriteRegStr SHELL_CONTEXT "Software\Classes\${FILECLASS}\shell\open\command" "" `${COMMAND}` +!macroend + +!macro APP_ASSOCIATE_EX EXT FILECLASS DESCRIPTION ICON VERB DEFAULTVERB SHELLNEW COMMANDTEXT COMMAND + ; Backup the previously associated file class + ReadRegStr $R0 SHELL_CONTEXT "Software\Classes\.${EXT}" "" + WriteRegStr SHELL_CONTEXT "Software\Classes\.${EXT}" "${FILECLASS}_backup" "$R0" + + WriteRegStr SHELL_CONTEXT "Software\Classes\.${EXT}" "" "${FILECLASS}" + StrCmp "${SHELLNEW}" "0" +2 + WriteRegStr SHELL_CONTEXT "Software\Classes\.${EXT}\ShellNew" "NullFile" "" + + WriteRegStr SHELL_CONTEXT "Software\Classes\${FILECLASS}" "" `${DESCRIPTION}` + WriteRegStr SHELL_CONTEXT "Software\Classes\${FILECLASS}\DefaultIcon" "" `${ICON}` + WriteRegStr SHELL_CONTEXT "Software\Classes\${FILECLASS}\shell" "" `${DEFAULTVERB}` + WriteRegStr SHELL_CONTEXT "Software\Classes\${FILECLASS}\shell\${VERB}" "" `${COMMANDTEXT}` + WriteRegStr SHELL_CONTEXT "Software\Classes\${FILECLASS}\shell\${VERB}\command" "" `${COMMAND}` +!macroend + +!macro APP_ASSOCIATE_ADDVERB FILECLASS VERB COMMANDTEXT COMMAND + WriteRegStr SHELL_CONTEXT "Software\Classes\${FILECLASS}\shell\${VERB}" "" `${COMMANDTEXT}` + WriteRegStr SHELL_CONTEXT "Software\Classes\${FILECLASS}\shell\${VERB}\command" "" `${COMMAND}` +!macroend + +!macro APP_ASSOCIATE_REMOVEVERB FILECLASS VERB + DeleteRegKey SHELL_CONTEXT `Software\Classes\${FILECLASS}\shell\${VERB}` +!macroend + + +!macro APP_UNASSOCIATE EXT FILECLASS + ; Backup the previously associated file class + ReadRegStr $R0 SHELL_CONTEXT "Software\Classes\.${EXT}" `${FILECLASS}_backup` + WriteRegStr SHELL_CONTEXT "Software\Classes\.${EXT}" "" "$R0" + + DeleteRegKey SHELL_CONTEXT `Software\Classes\${FILECLASS}` +!macroend + +!macro APP_ASSOCIATE_GETFILECLASS OUTPUT EXT + ReadRegStr ${OUTPUT} SHELL_CONTEXT "Software\Classes\.${EXT}" "" +!macroend + + +; !defines for use with SHChangeNotify +!ifdef SHCNE_ASSOCCHANGED +!undef SHCNE_ASSOCCHANGED +!endif +!define SHCNE_ASSOCCHANGED 0x08000000 +!ifdef SHCNF_FLUSH +!undef SHCNF_FLUSH +!endif +!define SHCNF_FLUSH 0x1000 + +!macro UPDATEFILEASSOC +; Using the system.dll plugin to call the SHChangeNotify Win32 API function so we +; can update the shell. + System::Call "shell32::SHChangeNotify(i,i,i,i) (${SHCNE_ASSOCCHANGED}, ${SHCNF_FLUSH}, 0, 0)" +!macroend \ No newline at end of file diff --git a/packaging/cura_license.txt b/packaging/cura_license.txt new file mode 100644 index 0000000000..07b1d92c0e --- /dev/null +++ b/packaging/cura_license.txt @@ -0,0 +1,165 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. \ No newline at end of file diff --git a/icons/cura.ico b/packaging/icons/Cura.ico similarity index 100% rename from icons/cura.ico rename to packaging/icons/Cura.ico diff --git a/packaging/icons/VolumeIcons_Cura.icns b/packaging/icons/VolumeIcons_Cura.icns new file mode 100644 index 0000000000..6ea4526293 Binary files /dev/null and b/packaging/icons/VolumeIcons_Cura.icns differ diff --git a/icons/cura-128.png b/packaging/icons/cura-128.png similarity index 100% rename from icons/cura-128.png rename to packaging/icons/cura-128.png diff --git a/icons/cura-32.png b/packaging/icons/cura-32.png similarity index 100% rename from icons/cura-32.png rename to packaging/icons/cura-32.png diff --git a/icons/cura-48.png b/packaging/icons/cura-48.png similarity index 100% rename from icons/cura-48.png rename to packaging/icons/cura-48.png diff --git a/icons/cura-64.png b/packaging/icons/cura-64.png similarity index 100% rename from icons/cura-64.png rename to packaging/icons/cura-64.png diff --git a/packaging/icons/cura-icon_128x128.png b/packaging/icons/cura-icon_128x128.png new file mode 100644 index 0000000000..7f70fe330e Binary files /dev/null and b/packaging/icons/cura-icon_128x128.png differ diff --git a/packaging/icons/cura-icon_256x256.png b/packaging/icons/cura-icon_256x256.png new file mode 100644 index 0000000000..a9ddbd94c4 Binary files /dev/null and b/packaging/icons/cura-icon_256x256.png differ diff --git a/packaging/icons/cura-icon_64x64.png b/packaging/icons/cura-icon_64x64.png new file mode 100644 index 0000000000..5bfbf782ce Binary files /dev/null and b/packaging/icons/cura-icon_64x64.png differ diff --git a/packaging/icons/cura.icns b/packaging/icons/cura.icns new file mode 100644 index 0000000000..8e8e09b389 Binary files /dev/null and b/packaging/icons/cura.icns differ diff --git a/packaging/msi/ExcludeComponents.xslt b/packaging/msi/ExcludeComponents.xslt new file mode 100644 index 0000000000..b964484922 --- /dev/null +++ b/packaging/msi/ExcludeComponents.xslt @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/packaging/msi/UltiMaker-Cura.wxs.jinja b/packaging/msi/UltiMaker-Cura.wxs.jinja new file mode 100644 index 0000000000..a183a97d5f --- /dev/null +++ b/packaging/msi/UltiMaker-Cura.wxs.jinja @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + {% if "Enterprise" in app_name %} + + + + + {% endif %} + + + = 600]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 127.0.0.1 + + + + + + + 127.0.0.1 + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/packaging/msi/banner_side.bmp b/packaging/msi/banner_side.bmp new file mode 100644 index 0000000000..125d6df25b Binary files /dev/null and b/packaging/msi/banner_side.bmp differ diff --git a/packaging/msi/banner_top.bmp b/packaging/msi/banner_top.bmp new file mode 100644 index 0000000000..6436dad278 Binary files /dev/null and b/packaging/msi/banner_top.bmp differ diff --git a/packaging/msi/create_windows_msi.py b/packaging/msi/create_windows_msi.py new file mode 100644 index 0000000000..268fc670a2 --- /dev/null +++ b/packaging/msi/create_windows_msi.py @@ -0,0 +1,122 @@ +# Copyright (c) 2022 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + + +import argparse # Command line arguments parsing and help. +import os +import shutil +import subprocess +import uuid +from datetime import datetime +from pathlib import Path + +from jinja2 import Template + + +def work_path(filename: Path) -> Path: + if not filename.is_absolute(): + return Path(os.getcwd(), filename.parent) + else: + return filename.parent + + +def generate_wxs(source_path: Path, dist_path: Path, filename: Path, app_name: 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) + + jinja_template_path = Path(source_loc.joinpath("packaging", "msi", "UltiMaker-Cura.wxs.jinja")) + with open(jinja_template_path, "r") as f: + template = Template(f.read()) + + 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"), + 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")), + cura_banner_top=str(source_loc.joinpath("packaging", "msi", "banner_top.bmp")), + cura_banner_side=str(source_loc.joinpath("packaging", "msi", "banner_side.bmp")), + cura_icon=str(source_loc.joinpath("packaging", "icons", "Cura.ico")), + ) + + with open(work_loc.joinpath("UltiMaker-Cura.wxs"), "w") as f: + f.write(wxs_content) + + try: + shutil.copy(source_loc.joinpath("packaging", "msi", "ExcludeComponents.xslt"), + work_loc.joinpath("ExcludeComponents.xslt")) + except shutil.SameFileError: + pass + + +def cleanup_artifacts(dist_path: Path): + dist_loc = Path(os.getcwd(), dist_path) + dirt = [d for d in dist_loc.rglob("__pycache__") if d.is_dir()] + dirt += [d for d in dist_loc.rglob("*.dist-info") if d.is_dir()] + for d in dirt: + if d.exists(): + shutil.rmtree(d, ignore_errors=True) + + +def build(dist_path: Path, filename: Path): + dist_loc = Path(os.getcwd(), dist_path) + work_loc = work_path(filename) + wxs_loc = work_loc.joinpath("UltiMaker-Cura.wxs") + heat_loc = work_loc.joinpath("HeatFile.wxs") + exclude_components_loc = work_loc.joinpath("ExcludeComponents.xslt") + build_loc = work_loc.joinpath("build_msi") + + heat_command = ["heat", + "dir", f"{dist_loc.as_posix()}\\", + "-dr", "APPLICATIONFOLDER", + "-cg", "NewFilesGroup", + "-sw5150", # Don't pollute logs with warnings from auto generated content + "-gg", + "-g1", + "-sf", + "-srd", + "-var", "var.CuraDir", + "-t", f"{exclude_components_loc.as_posix()}", + "-out", f"{heat_loc.as_posix()}"] + subprocess.call(heat_command) + + build_command = ["candle", + "-arch", "x64", + f"-dCuraDir={dist_loc}\\", + "-ext", "WixFirewallExtension", + "-out", f"{build_loc.as_posix()}\\", + f"{wxs_loc.as_posix()}", + f"{heat_loc.as_posix()}"] + subprocess.call(build_command) + + link_command = ["light", + f"{build_loc.joinpath(wxs_loc.name).with_suffix('.wixobj')}", + f"{build_loc.joinpath(heat_loc.name).with_suffix('.wixobj')}", + "-sw1076", # Don't pollute logs with warnings from auto generated content + "-dcl:high", # Use high compression ratio + "-sval", # Disable ICE validation otherwise the CI complains + "-ext", "WixUIExtension", + "-ext", "WixFirewallExtension", + "-out", f"{work_loc.joinpath(filename.name)}"] + subprocess.call(link_command) + + +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, + 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')") + args = parser.parse_args() + generate_wxs(args.source_path.resolve(), args.dist_path.resolve(), args.filename.resolve(), args.name) + cleanup_artifacts(args.dist_path.resolve()) + build(args.dist_path.resolve(), args.filename) diff --git a/packaging/msi/cura_license.rtf b/packaging/msi/cura_license.rtf new file mode 100644 index 0000000000..67f58e099a --- /dev/null +++ b/packaging/msi/cura_license.rtf @@ -0,0 +1,183 @@ +{\rtf1\ansi\ansicpg1252\deff0\deflang1033\deflangfe1033{\fonttbl{\f0\froman\fprq2\fcharset0 Times New Roman;}{\f1\froman\fprq2\fcharset2 Symbol;}{\f2\fmodern\fprq1\fcharset0 Courier New;}} +{\colortbl ;\red0\green0\blue255;} +{\stylesheet{ Normal;}{\s1 heading 1;}{\s2 heading 2;}{\s3 heading 3;}{\s4 heading 4;}} +{\*\generator Msftedit 5.41.21.2510;}\viewkind4\uc1\pard\s3\sb100\sa100\qc\b\f0\fs27 GNU LESSER GENERAL PUBLIC LICENSE\par +\pard\sb100\sa100\qc\b0\fs24 Version 3, 29 June 2007\par +\pard Copyright \'a9 2007 Free Software Foundation, Inc. <{\field{\*\fldinst{HYPERLINK "http://fsf.org/"}}{\fldrslt{\ul\cf1 http://fsf.org/}}}\f0\fs24 >\par +Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\par +This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below.\par +\pard\s4\sb100\sa100\b 0. Additional Definitions.\par +\pard\sb100\sa100\b0 As used herein, \ldblquote this License\rdblquote refers to version 3 of the GNU Lesser General Public License, and the \ldblquote GNU GPL\rdblquote refers to version 3 of the GNU General Public License.\par +\ldblquote The Library\rdblquote refers to a covered work governed by this License, other than an Application or a Combined Work as defined below.\par +An \ldblquote Application\rdblquote is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library.\par +A \ldblquote Combined Work\rdblquote is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the \ldblquote Linked Version\rdblquote .\par +The \ldblquote Minimal Corresponding Source\rdblquote for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version.\par +The \ldblquote Corresponding Application Code\rdblquote for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work.\par +\pard\s4\sb100\sa100\b 1. Exception to Section 3 of the GNU GPL.\par +\pard\sb100\sa100\b0 You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL.\par +\pard\s4\sb100\sa100\b 2. Conveying Modified Versions.\par +\pard\sb100\sa100\b0 If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version:\par +\pard\fi-360\li720\sb100\sa100\tx720\f1\fs20\'b7\tab\f0\fs24 a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or\par +\pard\fi-360\li720\sb100\sa100\f1\fs20\'b7\tab\f0\fs24 b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy.\par +\pard\s4\sb100\sa100\b 3. Object Code Incorporating Material from Library Header Files.\par +\pard\sb100\sa100\b0 The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following:\par +\pard\fi-360\li720\sb100\sa100\tx720\f1\fs20\'b7\tab\f0\fs24 a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License.\par +\pard\fi-360\li720\sb100\sa100\f1\fs20\'b7\tab\f0\fs24 b) Accompany the object code with a copy of the GNU GPL and this license document.\par +\pard\s4\sb100\sa100\b 4. Combined Works.\par +\pard\sb100\sa100\b0 You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following:\par +\pard\fi-360\li720\sb100\sa100\tx720\f1\fs20\'b7\tab\f0\fs24 a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License.\par +\pard\fi-360\li720\sb100\sa100\f1\fs20\'b7\tab\f0\fs24 b) Accompany the Combined Work with a copy of the GNU GPL and this license document.\par +\f1\fs20\'b7\tab\f0\fs24 c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document.\par +\f1\fs20\'b7\tab\f0\fs24 d) Do one of the following: \par +\pard\fi-360\li1440\sb100\sa100\tx1440\f2\fs20 o\tab\f0\fs24 0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.\par +\pard\fi-360\li1440\sb100\sa100\f2\fs20 o\tab\f0\fs24 1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version.\par +\pard\fi-360\li720\sb100\sa100\tx720\f1\fs20\'b7\tab\f0\fs24 e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.)\par +\pard\s4\sb100\sa100\b 5. Combined Libraries.\par +\pard\sb100\sa100\b0 You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following:\par +\pard\fi-360\li720\sb100\sa100\tx720\f1\fs20\'b7\tab\f0\fs24 a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License.\par +\pard\fi-360\li720\sb100\sa100\f1\fs20\'b7\tab\f0\fs24 b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work.\par +\pard\s4\sb100\sa100\b 6. Revised Versions of the GNU Lesser General Public License.\par +\pard\sb100\sa100\b0 The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\par +Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License \ldblquote or any later version\rdblquote applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation.\par +If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library.\par +\par +\pard\s3\sb100\sa100\qc\b\fs27 GNU GENERAL PUBLIC LICENSE\par +\pard\sb100\sa100\qc\b0\fs24 Version 3, 29 June 2007\par +\pard Copyright \'a9 2007 Free Software Foundation, Inc. <{\field{\*\fldinst{HYPERLINK "http://fsf.org/"}}{\fldrslt{\ul\cf1 http://fsf.org/}}}\f0\fs24 >\par +Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\par +\pard\s3\sb100\sa100\b\fs27 Preamble\par +\pard\sb100\sa100\b0\fs24 The GNU General Public License is a free, copyleft license for software and other kinds of works.\par +The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.\par +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.\par +To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.\par +For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.\par +Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.\par +For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.\par +Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.\par +Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.\par +The precise terms and conditions for copying, distribution and modification follow.\par +\pard\s3\sb100\sa100\b\fs27 TERMS AND CONDITIONS\par +\pard\s4\sb100\sa100\fs24 0. Definitions.\par +\pard\sb100\sa100\b0\ldblquote This License\rdblquote refers to version 3 of the GNU General Public License.\par +\ldblquote Copyright\rdblquote also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.\par +\ldblquote The Program\rdblquote refers to any copyrightable work licensed under this License. Each licensee is addressed as \ldblquote you\rdblquote . \ldblquote Licensees\rdblquote and \ldblquote recipients\rdblquote may be individuals or organizations.\par +To \ldblquote modify\rdblquote a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a \ldblquote modified version\rdblquote of the earlier work or a work \ldblquote based on\rdblquote the earlier work.\par +A \ldblquote covered work\rdblquote means either the unmodified Program or a work based on the Program.\par +To \ldblquote propagate\rdblquote a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.\par +To \ldblquote convey\rdblquote a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.\par +An interactive user interface displays \ldblquote Appropriate Legal Notices\rdblquote to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.\par +\pard\s4\sb100\sa100\b 1. Source Code.\par +\pard\sb100\sa100\b0 The \ldblquote source code\rdblquote for a work means the preferred form of the work for making modifications to it. \ldblquote Object code\rdblquote means any non-source form of a work.\par +A \ldblquote Standard Interface\rdblquote means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.\par +The \ldblquote System Libraries\rdblquote of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A \ldblquote Major Component\rdblquote , in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.\par +The \ldblquote Corresponding Source\rdblquote for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.\par +The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.\par +The Corresponding Source for a work in source code form is that same work.\par +\pard\s4\sb100\sa100\b 2. Basic Permissions.\par +\pard\sb100\sa100\b0 All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.\par +You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.\par +Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.\par +\pard\s4\sb100\sa100\b 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\par +\pard\sb100\sa100\b0 No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.\par +When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.\par +\pard\s4\sb100\sa100\b 4. Conveying Verbatim Copies.\par +\pard\sb100\sa100\b0 You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.\par +You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.\par +\pard\s4\sb100\sa100\b 5. Conveying Modified Source Versions.\par +\pard\sb100\sa100\b0 You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:\par +\pard\fi-360\li720\sb100\sa100\tx720\f1\fs20\'b7\tab\f0\fs24 a) The work must carry prominent notices stating that you modified it, and giving a relevant date.\par +\pard\fi-360\li720\sb100\sa100\f1\fs20\'b7\tab\f0\fs24 b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to \ldblquote keep intact all notices\rdblquote .\par +\f1\fs20\'b7\tab\f0\fs24 c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.\par +\f1\fs20\'b7\tab\f0\fs24 d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.\par +\pard\sb100\sa100 A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an \ldblquote aggregate\rdblquote if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.\par +\pard\s4\sb100\sa100\b 6. Conveying Non-Source Forms.\par +\pard\sb100\sa100\b0 You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:\par +\pard\fi-360\li720\sb100\sa100\tx720\f1\fs20\'b7\tab\f0\fs24 a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.\par +\pard\fi-360\li720\sb100\sa100\f1\fs20\'b7\tab\f0\fs24 b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.\par +\f1\fs20\'b7\tab\f0\fs24 c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.\par +\f1\fs20\'b7\tab\f0\fs24 d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.\par +\f1\fs20\'b7\tab\f0\fs24 e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.\par +\pard\sb100\sa100 A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.\par +A \ldblquote User Product\rdblquote is either (1) a \ldblquote consumer product\rdblquote , which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, \ldblquote normally used\rdblquote refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.\par +\ldblquote Installation Information\rdblquote for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.\par +If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).\par +The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.\par +Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.\par +\pard\s4\sb100\sa100\b 7. Additional Terms.\par +\pard\sb100\sa100\b0\ldblquote Additional permissions\rdblquote are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.\par +When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.\par +Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:\par +\pard\fi-360\li720\sb100\sa100\tx720\f1\fs20\'b7\tab\f0\fs24 a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or\par +\pard\fi-360\li720\sb100\sa100\f1\fs20\'b7\tab\f0\fs24 b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or\par +\f1\fs20\'b7\tab\f0\fs24 c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or\par +\f1\fs20\'b7\tab\f0\fs24 d) Limiting the use for publicity purposes of names of licensors or authors of the material; or\par +\f1\fs20\'b7\tab\f0\fs24 e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or\par +\f1\fs20\'b7\tab\f0\fs24 f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.\par +\pard\sb100\sa100 All other non-permissive additional terms are considered \ldblquote further restrictions\rdblquote within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.\par +If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.\par +Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.\par +\pard\s4\sb100\sa100\b 8. Termination.\par +\pard\sb100\sa100\b0 You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).\par +However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.\par +Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.\par +Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.\par +\pard\s4\sb100\sa100\b 9. Acceptance Not Required for Having Copies.\par +\pard\sb100\sa100\b0 You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.\par +\pard\s4\sb100\sa100\b 10. Automatic Licensing of Downstream Recipients.\par +\pard\sb100\sa100\b0 Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.\par +An \ldblquote entity transaction\rdblquote is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.\par +You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.\par +\pard\s4\sb100\sa100\b 11. Patents.\par +\pard\sb100\sa100\b0 A \ldblquote contributor\rdblquote is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's \ldblquote contributor version\rdblquote .\par +A contributor's \ldblquote essential patent claims\rdblquote are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, \ldblquote control\rdblquote includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.\par +Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.\par +In the following three paragraphs, a \ldblquote patent license\rdblquote is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To \ldblquote grant\rdblquote such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.\par +If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. \ldblquote Knowingly relying\rdblquote means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.\par +If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.\par +A patent license is \ldblquote discriminatory\rdblquote if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.\par +Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.\par +\pard\s4\sb100\sa100\b 12. No Surrender of Others' Freedom.\par +\pard\sb100\sa100\b0 If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.\par +\pard\s4\sb100\sa100\b 13. Use with the GNU Affero General Public License.\par +\pard\sb100\sa100\b0 Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.\par +\pard\s4\sb100\sa100\b 14. Revised Versions of this License.\par +\pard\sb100\sa100\b0 The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\par +Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License \ldblquote or any later version\rdblquote applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.\par +If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.\par +Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.\par +\pard\s4\sb100\sa100\b 15. Disclaimer of Warranty.\par +\pard\sb100\sa100\b0 THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \ldblquote AS IS\rdblquote WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\par +\pard\s4\sb100\sa100\b 16. Limitation of Liability.\par +\pard\sb100\sa100\b0 IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\par +\pard\s4\sb100\sa100\b 17. Interpretation of Sections 15 and 16.\par +\pard\sb100\sa100\b0 If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.\par +END OF TERMS AND CONDITIONS\par +\pard\s3\sb100\sa100\b\fs27 How to Apply These Terms to Your New Programs\par +\pard\sb100\sa100\b0\fs24 If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.\par +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the \ldblquote copyright\rdblquote line and a pointer to where the full notice is found.\par +\pard\tx916\tx1832\tx2748\tx3664\tx4580\tx5496\tx6412\tx7328\tx8244\tx9160\tx10076\tx10992\tx11908\tx12824\tx13740\tx14656\f2\fs20 \par + Copyright (C) \par +\par + This program is free software: you can redistribute it and/or modify\par + it under the terms of the GNU General Public License as published by\par + the Free Software Foundation, either version 3 of the License, or\par + (at your option) any later version.\par +\par + This program is distributed in the hope that it will be useful,\par + but WITHOUT ANY WARRANTY; without even the implied warranty of\par + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\par + GNU General Public License for more details.\par +\par + You should have received a copy of the GNU General Public License\par + along with this program. If not, see <{\field{\*\fldinst{HYPERLINK "http://www.gnu.org/licenses/"}}{\fldrslt{\ul\cf1 http://www.gnu.org/licenses/}}}\f2\fs20 >.\par +\pard\sb100\sa100\f0\fs24 Also add information on how to contact you by electronic and paper mail.\par +If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:\par +\pard\tx916\tx1832\tx2748\tx3664\tx4580\tx5496\tx6412\tx7328\tx8244\tx9160\tx10076\tx10992\tx11908\tx12824\tx13740\tx14656\f2\fs20 Copyright (C) \par + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\par + This is free software, and you are welcome to redistribute it\par + under certain conditions; type `show c' for details.\par +\pard\sb100\sa100\f0\fs24 The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an \ldblquote about box\rdblquote .\par +\pard You should also get your employer (if you work as a programmer) or school, if any, to sign a \ldblquote copyright disclaimer\rdblquote for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see <{\field{\*\fldinst{HYPERLINK "http://www.gnu.org/licenses/"}}{\fldrslt{\ul\cf1 http://www.gnu.org/licenses/}}}\f0\fs24 >.\par +The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read <{\field{\*\fldinst{HYPERLINK "http://www.gnu.org/philosophy/why-not-lgpl.html"}}{\fldrslt{\ul\cf1 http://www.gnu.org/philosophy/why-not-lgpl.html}}}\f0\fs24 >.\par +\pard\sb100\sa100\par +} diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index c8f7bc8abd..f25d98a10b 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -9,6 +9,7 @@ from typing import cast, Dict, List, Optional, Tuple, Any, Set import xml.etree.ElementTree as ET +from UM.Util import parseBool from UM.Workspace.WorkspaceReader import WorkspaceReader from UM.Application import Application @@ -42,7 +43,7 @@ from .WorkspaceDialog import WorkspaceDialog i18n_catalog = i18nCatalog("cura") -_ignored_machine_network_metadata = { +_ignored_machine_network_metadata: Set[str] = { "um_cloud_cluster_id", "um_network_key", "um_linked_to_account", @@ -53,7 +54,8 @@ _ignored_machine_network_metadata = { "connection_type", "capabilities", "octoprint_api_key", -} # type: Set[str] + "is_abstract_machine" +} class ContainerInfo: @@ -67,41 +69,41 @@ class ContainerInfo: class QualityChangesInfo: def __init__(self) -> None: - self.name = None + self.name: Optional[str] = None self.global_info = None - self.extruder_info_dict = {} # type: Dict[str, ContainerInfo] + self.extruder_info_dict: Dict[str, ContainerInfo] = {} class MachineInfo: def __init__(self) -> None: - self.container_id = None - self.name = None - self.definition_id = None + self.container_id: Optional[str] = None + self.name: Optional[str] = None + self.definition_id: Optional[str] = None - self.metadata_dict = {} # type: Dict[str, str] + self.metadata_dict: Dict[str, str] = {} - self.quality_type = None - self.intent_category = None - self.custom_quality_name = None - self.quality_changes_info = None - self.variant_info = None + self.quality_type: Optional[str] = None + self.intent_category: Optional[str] = None + self.custom_quality_name: Optional[str] = None + self.quality_changes_info: Optional[QualityChangesInfo] = None + self.variant_info: Optional[ContainerInfo] = None - self.definition_changes_info = None - self.user_changes_info = None + self.definition_changes_info: Optional[ContainerInfo] = None + self.user_changes_info: Optional[ContainerInfo] = None - self.extruder_info_dict = {} # type: Dict[str, ExtruderInfo] + self.extruder_info_dict: Dict[str, str] = {} class ExtruderInfo: def __init__(self) -> None: self.position = None self.enabled = True - self.variant_info = None - self.root_material_id = None + self.variant_info: Optional[ContainerInfo] = None + self.root_material_id: Optional[str] = None - self.definition_changes_info = None - self.user_changes_info = None - self.intent_info = None + self.definition_changes_info: Optional[ContainerInfo] = None + self.user_changes_info: Optional[ContainerInfo] = None + self.intent_info: Optional[ContainerInfo] = None class ThreeMFWorkspaceReader(WorkspaceReader): @@ -129,14 +131,14 @@ class ThreeMFWorkspaceReader(WorkspaceReader): # - variant self._ignored_instance_container_types = {"quality", "variant"} - self._resolve_strategies = {} # type: Dict[str, str] + self._resolve_strategies: Dict[str, str] = {} - self._id_mapping = {} # type: Dict[str, str] + self._id_mapping: Dict[str, str] = {} # In Cura 2.5 and 2.6, the empty profiles used to have those long names self._old_empty_profile_id_dict = {"empty_%s" % k: "empty" for k in ["material", "variant"]} - self._old_new_materials = {} # type: Dict[str, str] + self._old_new_materials: Dict[str, str] = {} self._machine_info = None def _clearState(self): @@ -459,11 +461,15 @@ class ThreeMFWorkspaceReader(WorkspaceReader): materials_in_extruders_dict = {} # Which material is in which extruder - # if the global stack is found, we check if there are conflicts in the extruder stacks + # If the global stack is found, we check if there are conflicts in the extruder stacks for extruder_stack_file in extruder_stack_files: serialized = archive.open(extruder_stack_file).read().decode("utf-8") + + not_upgraded_parser = ConfigParser(interpolation=None) + not_upgraded_parser.read_string(serialized) + serialized = ExtruderStack._updateSerialized(serialized, extruder_stack_file) - parser = ConfigParser(interpolation = None) + parser = ConfigParser(interpolation=None) parser.read_string(serialized) # The check should be done for the extruder stack that's associated with the existing global stack, @@ -495,19 +501,26 @@ class ThreeMFWorkspaceReader(WorkspaceReader): extruder_info.user_changes_info = instance_container_info_dict[user_changes_id] self._machine_info.extruder_info_dict[position] = extruder_info + intent_container_id = parser["containers"][str(_ContainerIndexes.Intent)] + intent_id = parser["containers"][str(_ContainerIndexes.Intent)] if intent_id not in ("empty", "empty_intent"): - extruder_info.intent_info = instance_container_info_dict[intent_id] + if intent_container_id in instance_container_info_dict: + extruder_info.intent_info = instance_container_info_dict[intent_id] + else: + # It can happen that an intent has been renamed. In that case, we should still use the old + # name, since we used that to generate the instance_container_info_dict keys. + extruder_info.intent_info = instance_container_info_dict[not_upgraded_parser["containers"][str(_ContainerIndexes.Intent)]] if not machine_conflict and containers_found_dict["machine"] and global_stack: if int(position) >= len(global_stack.extruderList): continue existing_extruder_stack = global_stack.extruderList[int(position)] - # check if there are any changes at all in any of the container stacks. + # Check if there are any changes at all in any of the container stacks. id_list = self._getContainerIdListFromSerialized(serialized) for index, container_id in enumerate(id_list): - # take into account the old empty container IDs + # Take into account the old empty container IDs container_id = self._old_empty_profile_id_dict.get(container_id, container_id) if existing_extruder_stack.getContainer(index).getId() != container_id: machine_conflict = True @@ -598,7 +611,6 @@ class ThreeMFWorkspaceReader(WorkspaceReader): self._dialog.setNumUserSettings(num_user_settings) self._dialog.setActiveMode(active_mode) self._dialog.setUpdatableMachines(updatable_machines) - self._dialog.setMachineName(machine_name) self._dialog.setMaterialLabels(material_labels) self._dialog.setMachineType(machine_type) self._dialog.setExtruders(extruders) @@ -607,6 +619,36 @@ class ThreeMFWorkspaceReader(WorkspaceReader): self._dialog.setMissingPackagesMetadata(missing_package_metadata) self._dialog.show() + # Choosing the initially selected printer in MachineSelector + is_networked_machine = False + is_abstract_machine = False + if global_stack and isinstance(global_stack, GlobalStack): + # The machine included in the project file exists locally already, no need to change selected printers. + is_networked_machine = global_stack.hasNetworkedConnection() + is_abstract_machine = parseBool(existing_global_stack.getMetaDataEntry("is_abstract_machine", False)) + self._dialog.setMachineToOverride(global_stack.getId()) + self._dialog.setResolveStrategy("machine", "override") + elif self._dialog.updatableMachinesModel.count > 0: + # The machine included in the project file does not exist. There is another machine of the same type. + # This will always default to an abstract machine first. + machine = self._dialog.updatableMachinesModel.getItem(0) + machine_name = machine["name"] + is_networked_machine = machine["isNetworked"] + is_abstract_machine = machine["isAbstractMachine"] + self._dialog.setMachineToOverride(machine["id"]) + self._dialog.setResolveStrategy("machine", "override") + else: + # The machine included in the project file does not exist. There are no other printers of the same type. Default to "Create New". + machine_name = i18n_catalog.i18nc("@button", "Create new") + is_networked_machine = False + is_abstract_machine = False + self._dialog.setMachineToOverride(None) + self._dialog.setResolveStrategy("machine", "new") + + self._dialog.setIsNetworkedMachine(is_networked_machine) + self._dialog.setIsAbstractMachine(is_abstract_machine) + self._dialog.setMachineName(machine_name) + # Block until the dialog is closed. self._dialog.waitForClose() @@ -664,10 +706,22 @@ class ThreeMFWorkspaceReader(WorkspaceReader): cura_file_names = [name for name in archive.namelist() if name.startswith("Cura/")] - # Create a shadow copy of the preferences (we don't want all of the preferences, but we do want to re-use its + # Create a shadow copy of the preferences (We don't want all of the preferences, but we do want to re-use its # parsing code. temp_preferences = Preferences() - serialized = archive.open("Cura/preferences.cfg").read().decode("utf-8") + try: + serialized = archive.open("Cura/preferences.cfg").read().decode("utf-8") + except KeyError as e: + # If there is no preferences file, it's not a workspace, so notify user of failure. + Logger.log("w", "File %s is not a valid workspace.", file_name) + message = Message(i18n_catalog.i18nc("@info:error Don't translate the XML tags or !", + "Project file {0} is corrupt: {1}.", + file_name, str(e)), + title=i18n_catalog.i18nc("@info:title", "Can't Open Project File"), + message_type=Message.MessageType.ERROR) + message.show() + self.setWorkspaceName("") + return [], {} temp_preferences.deserialize(serialized) # Copy a number of settings from the temp preferences to the global @@ -689,7 +743,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader): application.expandedCategoriesChanged.emit() # Notify the GUI of the change # If there are no machines of the same type, create a new machine. - if self._resolve_strategies["machine"] != "override" or self._dialog.updatableMachinesModel.count <= 1: + if self._resolve_strategies["machine"] != "override" or self._dialog.updatableMachinesModel.count == 0: # We need to create a new machine machine_name = self._container_registry.uniqueName(self._machine_info.name) @@ -697,7 +751,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader): # quality_changes file. If that's the case, take the extruder count into account when creating the machine # or else the extruderList will return only the first extruder, leading to missing non-global settings in # the other extruders. - machine_extruder_count = self._getMachineExtruderCount() # type: Optional[int] + machine_extruder_count: Optional[int] = self._getMachineExtruderCount() global_stack = CuraStackBuilder.createMachine(machine_name, self._machine_info.definition_id, machine_extruder_count) if global_stack: # Only switch if creating the machine was successful. extruder_stack_dict = {str(position): extruder for position, extruder in enumerate(global_stack.extruderList)} @@ -708,8 +762,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader): global_stacks = self._container_registry.findContainerStacks(id = self._dialog.getMachineToOverride(), type = "machine") if not global_stacks: message = Message(i18n_catalog.i18nc("@info:error Don't translate the XML tag !", - "Project file {0} is made using profiles that" - " are unknown to this version of Ultimaker Cura.", file_name), + "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura.", file_name), message_type = Message.MessageType.ERROR) message.show() self.setWorkspaceName("") @@ -825,7 +878,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader): @staticmethod def _loadMetadata(file_name: str) -> Dict[str, Dict[str, Any]]: - result = dict() # type: Dict[str, Dict[str, Any]] + result: Dict[str, Dict[str, Any]] = dict() try: archive = zipfile.ZipFile(file_name, "r") except zipfile.BadZipFile: @@ -837,7 +890,6 @@ class ThreeMFWorkspaceReader(WorkspaceReader): metadata_files = [name for name in archive.namelist() if name.endswith("plugin_metadata.json")] - for metadata_file in metadata_files: try: plugin_id = metadata_file.split("/")[0] @@ -878,7 +930,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader): quality_changes_name = self._container_registry.uniqueName(quality_changes_name) for position, container_info in container_info_dict.items(): extruder_stack = None - intent_category = None # type: Optional[str] + intent_category: Optional[str] = None if position is not None: try: extruder_stack = global_stack.extruderList[int(position)] @@ -1119,7 +1171,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader): root_material_id = self._old_new_materials.get(root_material_id, root_material_id) material_node = machine_node.variants[extruder_stack.variant.getName()].materials[root_material_id] - extruder_stack.material = material_node.container # type: InstanceContainer + extruder_stack.material = material_node.container def _applyChangesToMachine(self, global_stack, extruder_stack_dict): # Clear all first diff --git a/plugins/3MFReader/UpdatableMachinesModel.py b/plugins/3MFReader/UpdatableMachinesModel.py deleted file mode 100644 index 9d6eee6c3e..0000000000 --- a/plugins/3MFReader/UpdatableMachinesModel.py +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright (c) 2020 Ultimaker B.V. -# Cura is released under the terms of the LGPLv3 or higher. - -from typing import Dict, List - -from PyQt6.QtCore import Qt - -from UM.Qt.ListModel import ListModel -from cura.Settings.GlobalStack import GlobalStack - -create_new_list_item = { - "id": "new", - "name": "Create new", - "displayName": "Create new", - "type": "default_option" # to make sure we are not mixing the "Create new" option with a printer with id "new" -} # type: Dict[str, str] - - -class UpdatableMachinesModel(ListModel): - """Model that holds cura packages. - - By setting the filter property the instances held by this model can be changed. - """ - - def __init__(self, parent = None) -> None: - super().__init__(parent) - - self.addRoleName(Qt.ItemDataRole.UserRole + 1, "id") - self.addRoleName(Qt.ItemDataRole.UserRole + 2, "name") - self.addRoleName(Qt.ItemDataRole.UserRole + 3, "displayName") - self.addRoleName(Qt.ItemDataRole.UserRole + 4, "type") # Either "default_option" or "machine" - - def update(self, machines: List[GlobalStack]) -> None: - items = [create_new_list_item] # type: List[Dict[str, str]] - - for machine in sorted(machines, key = lambda printer: printer.name): - items.append({ - "id": machine.id, - "name": machine.name, - "displayName": "Update " + machine.name, - "type": "machine" - }) - self.setItems(items) diff --git a/plugins/3MFReader/WorkspaceDialog.py b/plugins/3MFReader/WorkspaceDialog.py index 0a8f7784b2..afa1deecfd 100644 --- a/plugins/3MFReader/WorkspaceDialog.py +++ b/plugins/3MFReader/WorkspaceDialog.py @@ -5,6 +5,7 @@ from PyQt6.QtCore import pyqtSignal, QObject, pyqtProperty, QCoreApplication, QU from PyQt6.QtGui import QDesktopServices from typing import List, Optional, Dict, cast +from cura.Machines.Models.MachineListModel import MachineListModel from cura.Settings.GlobalStack import GlobalStack from UM.Application import Application from UM.FlameProfiler import pyqtSlot @@ -14,8 +15,6 @@ from UM.Message import Message from UM.PluginRegistry import PluginRegistry from UM.Settings.ContainerRegistry import ContainerRegistry -from .UpdatableMachinesModel import UpdatableMachinesModel - import os import threading import time @@ -63,10 +62,12 @@ class WorkspaceDialog(QObject): self._extruders = [] self._objects_on_plate = False self._is_printer_group = False - self._updatable_machines_model = UpdatableMachinesModel(self) + self._updatable_machines_model = MachineListModel(self, listenToChanges=False) self._missing_package_metadata: List[Dict[str, str]] = [] self._plugin_registry: PluginRegistry = CuraApplication.getInstance().getPluginRegistry() self._install_missing_package_dialog: Optional[QObject] = None + self._is_abstract_machine = False + self._is_networked_machine = False machineConflictChanged = pyqtSignal() qualityChangesConflictChanged = pyqtSignal() @@ -80,6 +81,8 @@ class WorkspaceDialog(QObject): intentNameChanged = pyqtSignal() machineNameChanged = pyqtSignal() updatableMachinesChanged = pyqtSignal() + isAbstractMachineChanged = pyqtSignal() + isNetworkedChanged = pyqtSignal() materialLabelsChanged = pyqtSignal() objectsOnPlateChanged = pyqtSignal() numUserSettingsChanged = pyqtSignal() @@ -161,13 +164,31 @@ class WorkspaceDialog(QObject): self.machineNameChanged.emit() @pyqtProperty(QObject, notify = updatableMachinesChanged) - def updatableMachinesModel(self) -> UpdatableMachinesModel: - return cast(UpdatableMachinesModel, self._updatable_machines_model) + def updatableMachinesModel(self) -> MachineListModel: + return cast(MachineListModel, self._updatable_machines_model) def setUpdatableMachines(self, updatable_machines: List[GlobalStack]) -> None: - self._updatable_machines_model.update(updatable_machines) + self._updatable_machines_model.set_machines_filter(updatable_machines) self.updatableMachinesChanged.emit() + @pyqtProperty(bool, notify = isAbstractMachineChanged) + def isAbstractMachine(self) -> bool: + return self._is_abstract_machine + + @pyqtSlot(bool) + def setIsAbstractMachine(self, is_abstract_machine: bool) -> None: + self._is_abstract_machine = is_abstract_machine + self.isAbstractMachineChanged.emit() + + @pyqtProperty(bool, notify = isNetworkedChanged) + def isNetworked(self) -> bool: + return self._is_networked_machine + + @pyqtSlot(bool) + def setIsNetworkedMachine(self, is_networked_machine: bool) -> None: + self._is_networked_machine = is_networked_machine + self.isNetworkedChanged.emit() + @pyqtProperty(str, notify=qualityTypeChanged) def qualityType(self) -> str: return self._quality_type diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index d0250abfd8..d1a000bae4 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2020 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 @@ -11,46 +11,48 @@ import Cura 1.1 as Cura UM.Dialog { - id: base + id: workspaceDialog title: catalog.i18nc("@title:window", "Open Project") - minimumWidth: UM.Theme.getSize("popup_dialog").width - minimumHeight: UM.Theme.getSize("popup_dialog").height - width: minimumWidth margin: UM.Theme.getSize("default_margin").width - property int comboboxHeight: UM.Theme.getSize("default_margin").height + minimumWidth: UM.Theme.getSize("modal_window_minimum").width + minimumHeight: UM.Theme.getSize("modal_window_minimum").height - onClosing: manager.notifyClosed() - onVisibleChanged: + backgroundColor: UM.Theme.getColor("detail_background") + + headerComponent: Rectangle { - if (visible) + height: childrenRect.height + 2 * UM.Theme.getSize("default_margin").height + color: UM.Theme.getColor("main_background") + + UM.Label { - machineResolveComboBox.currentIndex = 0 - qualityChangesResolveComboBox.currentIndex = 0 - materialResolveComboBox.currentIndex = 0 + id: titleLabel + text: catalog.i18nc("@action:title", "Summary - Cura Project") + font: UM.Theme.getFont("large") + anchors.top: parent.top + anchors.left: parent.left + anchors.topMargin: UM.Theme.getSize("default_margin").height + anchors.leftMargin: UM.Theme.getSize("default_margin").height } } - Flickable + Rectangle { - clip: true - width: parent.width - height: parent.height - contentHeight: dialogSummaryItem.height - ScrollBar.vertical: UM.ScrollBar { id: verticalScrollBar } + anchors.fill: parent + UM.I18nCatalog { id: catalog; name: "cura" } + color: UM.Theme.getColor("main_background") - Item + Flickable { id: dialogSummaryItem - width: verticalScrollBar.visible ? parent.width - verticalScrollBar.width - UM.Theme.getSize("default_margin").width : parent.width - height: childrenRect.height - anchors.margins: 10 * screenScaleFactor + width: parent.width + height: parent.height - UM.I18nCatalog - { - id: catalog - name: "cura" - } + clip: true + + contentHeight: contentColumn.height + ScrollBar.vertical: UM.ScrollBar { id: scrollbar } ListModel { @@ -67,373 +69,245 @@ UM.Dialog Column { - width: parent.width + id: contentColumn + width: parent.width - scrollbar.width - UM.Theme.getSize("default_margin").width height: childrenRect.height + spacing: UM.Theme.getSize("default_margin").height + leftPadding: UM.Theme.getSize("default_margin").width + rightPadding: UM.Theme.getSize("default_margin").width - Column + WorkspaceSection { - width: parent.width - height: childrenRect.height - - UM.Label + id: printerSection + title: catalog.i18nc("@action:label", "Printer settings") + iconSource: UM.Theme.getIcon("Printer") + content: Column { - id: titleLabel - text: catalog.i18nc("@action:title", "Summary - Cura Project") - font: UM.Theme.getFont("large") - } + spacing: UM.Theme.getSize("default_margin").height + leftPadding: UM.Theme.getSize("medium_button_icon").width + UM.Theme.getSize("default_margin").width - Rectangle - { - id: separator - color: UM.Theme.getColor("text") - width: parent.width - height: UM.Theme.getSize("default_lining").height - } - } - - Item - { - width: parent.width - height: childrenRect.height - - UM.TooltipArea - { - id: machineResolveStrategyTooltip - anchors.top: parent.top - anchors.right: parent.right - width: (parent.width / 3) | 0 - height: visible ? comboboxHeight : 0 - visible: base.visible && machineResolveComboBox.model.count > 1 - text: catalog.i18nc("@info:tooltip", "How should the conflict in the machine be resolved?") - Cura.ComboBox + WorkspaceRow { - id: machineResolveComboBox - model: manager.updatableMachinesModel - visible: machineResolveStrategyTooltip.visible - textRole: "displayName" - width: parent.width - height: UM.Theme.getSize("button").height - onCurrentIndexChanged: + leftLabelText: catalog.i18nc("@action:label", "Type") + rightLabelText: manager.machineType + } + + WorkspaceRow + { + leftLabelText: catalog.i18nc("@action:label", manager.isPrinterGroup ? "Printer Group" : "Printer Name") + rightLabelText: manager.machineName == catalog.i18nc("@button", "Create new") ? "" : manager.machineName + } + } + + comboboxTitle: catalog.i18nc("@action:label", "Open With") + comboboxTooltipText: catalog.i18nc("@info:tooltip", "Printer settings will be updated to match the settings saved with the project.") + comboboxVisible: workspaceDialog.visible && manager.updatableMachinesModel.count > 1 + combobox: Cura.MachineSelector + { + id: machineSelector + headerCornerSide: Cura.RoundedRectangle.Direction.All + width: parent.width + height: parent.height + machineListModel: manager.updatableMachinesModel + machineName: manager.machineName + + isConnectedCloudPrinter: false + isCloudRegistered: false + isNetworkPrinter: manager.isNetworked + isGroup: manager.isAbstractMachine + connectionStatus: "" + + minDropDownWidth: machineSelector.width + + buttons: [ + Cura.SecondaryButton { - if (model.getItem(currentIndex).id == "new" - && model.getItem(currentIndex).type == "default_option") + id: createNewPrinter + text: catalog.i18nc("@button", "Create new") + fixedWidthMode: true + width: parent.width - leftPadding * 1.5 + onClicked: { + toggleContent() manager.setResolveStrategy("machine", "new") - } - else - { - manager.setResolveStrategy("machine", "override") - manager.setMachineToOverride(model.getItem(currentIndex).id) + machineSelector.machineName = catalog.i18nc("@button", "Create new") + manager.setIsAbstractMachine(false) + manager.setIsNetworkedMachine(false) } } + ] - onVisibleChanged: - { - if (!visible) {return} - - currentIndex = 0 - // If the project printer exists in Cura, set it as the default dropdown menu option. - // No need to check object 0, which is the "Create new" option - for (var i = 1; i < model.count; i++) - { - if (model.getItem(i).name == manager.machineName) - { - currentIndex = i - break - } - } - // The project printer does not exist in Cura. If there is at least one printer of the same - // type, select the first one, else set the index to "Create new" - if (currentIndex == 0 && model.count > 1) - { - currentIndex = 1 - } - } - } - } - - Column - { - width: parent.width - height: childrenRect.height - - UM.Label + onSelectPrinter: function(machine) { - id: printer_settings_label - text: catalog.i18nc("@action:label", "Printer settings") - font: UM.Theme.getFont("default_bold") - } - - Row - { - width: parent.width - height: childrenRect.height - - UM.Label - { - text: catalog.i18nc("@action:label", "Type") - width: (parent.width / 3) | 0 - } - UM.Label - { - text: manager.machineType - width: (parent.width / 3) | 0 - } - } - - Row - { - width: parent.width - height: childrenRect.height - - UM.Label - { - text: catalog.i18nc("@action:label", manager.isPrinterGroup ? "Printer Group" : "Printer Name") - width: (parent.width / 3) | 0 - } - UM.Label - { - text: manager.machineName - width: (parent.width / 3) | 0 - wrapMode: Text.WordWrap - } + toggleContent(); + machineSelector.machineName = machine.name + manager.setResolveStrategy("machine", "override") + manager.setMachineToOverride(machine.id) + manager.setIsAbstractMachine(machine.isAbstractMachine) + manager.setIsNetworkedMachine(machine.isNetworked) } } } - Item + WorkspaceSection { - width: parent.width - height: childrenRect.height - - UM.TooltipArea + id: profileSection + title: catalog.i18nc("@action:label", "Profile settings") + iconSource: UM.Theme.getIcon("Sliders") + content: Column { - anchors.right: parent.right - anchors.top: parent.top - width: (parent.width / 3) | 0 - height: visible ? comboboxHeight : 0 + id: profileSettingsValuesTable + spacing: UM.Theme.getSize("default_margin").height + leftPadding: UM.Theme.getSize("medium_button_icon").width + UM.Theme.getSize("default_margin").width + + WorkspaceRow + { + leftLabelText: catalog.i18nc("@action:label", "Name") + rightLabelText: manager.qualityName + } + + WorkspaceRow + { + leftLabelText: catalog.i18nc("@action:label", "Intent") + rightLabelText: manager.intentName + } + + WorkspaceRow + { + leftLabelText: catalog.i18nc("@action:label", "Not in profile") + rightLabelText: catalog.i18ncp("@action:label", "%1 override", "%1 overrides", manager.numUserSettings).arg(manager.numUserSettings) + visible: manager.numUserSettings != 0 + } + + WorkspaceRow + { + leftLabelText: catalog.i18nc("@action:label", "Derivative from") + rightLabelText: catalog.i18ncp("@action:label", "%1, %2 override", "%1, %2 overrides", manager.numSettingsOverridenByQualityChanges).arg(manager.qualityType).arg(manager.numSettingsOverridenByQualityChanges) + visible: manager.numSettingsOverridenByQualityChanges != 0 + } + } + + comboboxVisible: manager.qualityChangesConflict + combobox: Cura.ComboBox + { + id: qualityChangesResolveComboBox + model: resolveStrategiesModel + textRole: "label" visible: manager.qualityChangesConflict - text: catalog.i18nc("@info:tooltip", "How should the conflict in the profile be resolved?") - Cura.ComboBox - { - model: resolveStrategiesModel - textRole: "label" - id: qualityChangesResolveComboBox - width: parent.width - height: UM.Theme.getSize("button").height - onActivated: - { - manager.setResolveStrategy("quality_changes", resolveStrategiesModel.get(index).key) - } - } - } + contentLeftPadding: UM.Theme.getSize("default_margin").width + UM.Theme.getSize("narrow_margin").width + textFont: UM.Theme.getFont("medium") - Column - { - width: parent.width - height: childrenRect.height - - UM.Label + background: Cura.RoundedRectangle { - text: catalog.i18nc("@action:label", "Profile settings") - font: UM.Theme.getFont("default_bold") + border.width: UM.Theme.getSize("default_lining").width + border.color: UM.Theme.getColor("lining") + color: qualityChangesResolveComboBox.hovered ? UM.Theme.getColor("expandable_hover") : UM.Theme.getColor("action_button") + cornerSide: Cura.RoundedRectangle.Direction.All + radius: UM.Theme.getSize("default_radius").width } - Row + // This is a hack. This will trigger onCurrentIndexChanged and set the index when this component in loaded + currentIndex: { - width: parent.width - height: childrenRect.height - - UM.Label - { - text: catalog.i18nc("@action:label", "Name") - width: (parent.width / 3) | 0 - } - UM.Label - { - text: manager.qualityName - width: (parent.width / 3) | 0 - wrapMode: Text.WordWrap - } + currentIndex = 0 } - Row + onCurrentIndexChanged: { - width: parent.width - height: childrenRect.height - - UM.Label - { - text: catalog.i18nc("@action:label", "Intent") - width: (parent.width / 3) | 0 - } - UM.Label - { - text: manager.intentName - width: (parent.width / 3) | 0 - wrapMode: Text.WordWrap - } - } - - Row - { - width: parent.width - height: childrenRect.height - - UM.Label - { - text: catalog.i18nc("@action:label", "Not in profile") - visible: manager.numUserSettings != 0 - width: (parent.width / 3) | 0 - } - UM.Label - { - text: catalog.i18ncp("@action:label", "%1 override", "%1 overrides", manager.numUserSettings).arg(manager.numUserSettings) - visible: manager.numUserSettings != 0 - width: (parent.width / 3) | 0 - } - } - - Row - { - width: parent.width - height: childrenRect.height - - UM.Label - { - text: catalog.i18nc("@action:label", "Derivative from") - visible: manager.numSettingsOverridenByQualityChanges != 0 - width: (parent.width / 3) | 0 - } - UM.Label - { - text: catalog.i18ncp("@action:label", "%1, %2 override", "%1, %2 overrides", manager.numSettingsOverridenByQualityChanges).arg(manager.qualityType).arg(manager.numSettingsOverridenByQualityChanges) - width: (parent.width / 3) | 0 - visible: manager.numSettingsOverridenByQualityChanges != 0 - wrapMode: Text.WordWrap - } + manager.setResolveStrategy("quality_changes", resolveStrategiesModel.get(currentIndex).key) } } } - Item + WorkspaceSection { - width: parent.width - height: childrenRect.height - - UM.TooltipArea + id: materialSection + title: catalog.i18nc("@action:label", "Material settings") + iconSource: UM.Theme.getIcon("Spool") + content: Column { - id: materialResolveTooltip - anchors.right: parent.right - anchors.top: parent.top - width: (parent.width / 3) | 0 - height: visible ? comboboxHeight : 0 - visible: manager.materialConflict - text: catalog.i18nc("@info:tooltip", "How should the conflict in the material be resolved?") - Cura.ComboBox - { - model: resolveStrategiesModel - textRole: "label" - id: materialResolveComboBox - width: parent.width - height: UM.Theme.getSize("button").height - onActivated: - { - manager.setResolveStrategy("material", resolveStrategiesModel.get(index).key) - } - } - } - - Column - { - width: parent.width - height: childrenRect.height - Row - { - height: childrenRect.height - width: parent.width - spacing: UM.Theme.getSize("narrow_margin").width - - UM.Label - { - text: catalog.i18nc("@action:label", "Material settings") - font: UM.Theme.getFont("default_bold") - width: (parent.width / 3) | 0 - } - } + spacing: UM.Theme.getSize("default_margin").height + leftPadding: UM.Theme.getSize("medium_button_icon").width + UM.Theme.getSize("default_margin").width Repeater { model: manager.materialLabels - delegate: Row + delegate: WorkspaceRow { - width: parent.width - height: childrenRect.height - UM.Label - { - text: catalog.i18nc("@action:label", "Name") - width: (parent.width / 3) | 0 - } - UM.Label - { - text: modelData - width: (parent.width / 3) | 0 - wrapMode: Text.WordWrap - } + leftLabelText: catalog.i18nc("@action:label", "Name") + rightLabelText: modelData } } } + + comboboxVisible: manager.materialConflict + + combobox: Cura.ComboBox + { + id: materialResolveComboBox + model: resolveStrategiesModel + textRole: "label" + visible: manager.materialConflict + contentLeftPadding: UM.Theme.getSize("default_margin").width + UM.Theme.getSize("narrow_margin").width + textFont: UM.Theme.getFont("medium") + + background: Cura.RoundedRectangle + { + border.width: UM.Theme.getSize("default_lining").width + border.color: UM.Theme.getColor("lining") + color: materialResolveComboBox.hovered ? UM.Theme.getColor("expandable_hover") : UM.Theme.getColor("action_button") + cornerSide: Cura.RoundedRectangle.Direction.All + radius: UM.Theme.getSize("default_radius").width + } + + // This is a hack. This will trigger onCurrentIndexChanged and set the index when this component in loaded + currentIndex: + { + currentIndex = 0 + } + + onCurrentIndexChanged: + { + manager.setResolveStrategy("material", resolveStrategiesModel.get(currentIndex).key) + } + } } - Column + WorkspaceSection { - width: parent.width - height: childrenRect.height + id: visibilitySection + title: catalog.i18nc("@action:label", "Setting visibility") + iconSource: UM.Theme.getIcon("Eye") + content: Column + { + spacing: UM.Theme.getSize("default_margin").height + leftPadding: UM.Theme.getSize("medium_button_icon").width + UM.Theme.getSize("default_margin").width + bottomPadding: UM.Theme.getSize("narrow_margin").height - UM.Label - { - text: catalog.i18nc("@action:label", "Setting visibility") - font: UM.Theme.getFont("default_bold") - } - Row - { - width: parent.width - height: childrenRect.height - UM.Label + WorkspaceRow { - text: catalog.i18nc("@action:label", "Mode") - width: (parent.width / 3) | 0 + leftLabelText: catalog.i18nc("@action:label", "Mode") + rightLabelText: manager.activeMode } - UM.Label + + WorkspaceRow { - text: manager.activeMode - width: (parent.width / 3) | 0 - } - } - Row - { - width: parent.width - height: childrenRect.height - visible: manager.hasVisibleSettingsField - UM.Label - { - text: catalog.i18nc("@action:label", "Visible settings:") - width: (parent.width / 3) | 0 - } - UM.Label - { - text: catalog.i18nc("@action:label", "%1 out of %2" ).arg(manager.numVisibleSettings).arg(manager.totalNumberOfSettings) - width: (parent.width / 3) | 0 + leftLabelText: catalog.i18nc("@action:label", "%1 out of %2" ).arg(manager.numVisibleSettings).arg(manager.totalNumberOfSettings) + rightLabelText: manager.activeMode + visible: manager.hasVisibleSettingsField } } } Row { + id: clearBuildPlateWarning width: parent.width height: childrenRect.height + spacing: UM.Theme.getSize("default_margin").width visible: manager.hasObjectsOnPlate + UM.ColorImage { width: warningLabel.height @@ -458,14 +332,18 @@ UM.Dialog color: warning ? UM.Theme.getColor("warning") : "transparent" anchors.bottom: parent.bottom width: parent.width - height: childrenRect.height + 2 * base.margin + height: childrenRect.height + (warning ? 2 * workspaceDialog.margin : workspaceDialog.margin) Column { height: childrenRect.height - spacing: base.margin + spacing: workspaceDialog.margin + + anchors.leftMargin: workspaceDialog.margin + anchors.rightMargin: workspaceDialog.margin + anchors.bottomMargin: workspaceDialog.margin + anchors.topMargin: warning ? workspaceDialog.margin : 0 - anchors.margins: base.margin anchors.left: parent.left anchors.right: parent.right anchors.top: parent.top @@ -475,7 +353,7 @@ UM.Dialog id: warningRow height: childrenRect.height visible: warning - spacing: base.margin + spacing: workspaceDialog.margin UM.ColorImage { width: UM.Theme.getSize("extruder_icon").width @@ -486,7 +364,7 @@ UM.Dialog UM.Label { id: warningText - text: "The material used in this project is currently not installed in Cura.
Install the material profile and reopen the project." + text: catalog.i18nc("@label", "The material used in this project is currently not installed in Cura.
Install the material profile and reopen the project.") } } @@ -499,7 +377,7 @@ UM.Dialog } } - buttonSpacing: UM.Theme.getSize("default_margin").width + buttonSpacing: UM.Theme.getSize("wide_margin").width rightButtons: [ Cura.TertiaryButton @@ -531,6 +409,19 @@ UM.Dialog } ] + onClosing: manager.notifyClosed() onRejected: manager.onCancelButtonClicked() onAccepted: manager.onOkButtonClicked() + onVisibleChanged: + { + if (visible) + { + // Force relead the comboboxes + // Since this dialog is only created once the first time you open it, these comboxes need to be reloaded + // each time it is shown after the first time so that the indexes will update correctly. + materialSection.reloadValues() + profileSection.reloadValues() + printerSection.reloadValues() + } + } } diff --git a/plugins/3MFReader/WorkspaceRow.qml b/plugins/3MFReader/WorkspaceRow.qml new file mode 100644 index 0000000000..8d9f1f25b3 --- /dev/null +++ b/plugins/3MFReader/WorkspaceRow.qml @@ -0,0 +1,34 @@ +// Copyright (c) 2022 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 +import QtQuick.Controls 2.3 +import QtQuick.Layouts 1.3 +import QtQuick.Window 2.2 + +import UM 1.5 as UM +import Cura 1.1 as Cura + +Row +{ + property alias leftLabelText: leftLabel.text + property alias rightLabelText: rightLabel.text + + width: parent.width + height: visible ? childrenRect.height : 0 + + UM.Label + { + id: leftLabel + text: catalog.i18nc("@action:label", "Type") + width: Math.round(parent.width / 4) + wrapMode: Text.WordWrap + } + UM.Label + { + id: rightLabel + text: manager.machineType + width: Math.round(parent.width / 3) + wrapMode: Text.WordWrap + } +} \ No newline at end of file diff --git a/plugins/3MFReader/WorkspaceSection.qml b/plugins/3MFReader/WorkspaceSection.qml new file mode 100644 index 0000000000..0c94ab5d6a --- /dev/null +++ b/plugins/3MFReader/WorkspaceSection.qml @@ -0,0 +1,128 @@ +// Copyright (c) 2022 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 +import QtQuick.Controls 2.3 + + +import UM 1.5 as UM + + +Item +{ + property alias title: sectionTitle.text + property alias iconSource: sectionTitleIcon.source + property Component content: Item { visible: false } + + property alias comboboxTitle: comboboxLabel.text + property Component combobox: Item { visible: false } + property string comboboxTooltipText: "" + property bool comboboxVisible: false + + width: parent.width + height: childrenRect.height + anchors.leftMargin: UM.Theme.getSize("default_margin").width + + Row + { + id: sectionTitleRow + anchors.top: parent.top + bottomPadding: UM.Theme.getSize("default_margin").height + spacing: UM.Theme.getSize("default_margin").width + + UM.ColorImage + { + id: sectionTitleIcon + anchors.verticalCenter: parent.verticalCenter + source: "" + height: UM.Theme.getSize("medium_button_icon").height + color: UM.Theme.getColor("text") + width: height + } + UM.Label + { + id: sectionTitle + text: "" + anchors.verticalCenter: parent.verticalCenter + font: UM.Theme.getFont("default_bold") + } + } + + Item + { + id: comboboxTooltip + width: Math.round(parent.width / 2.5) + height: visible ? UM.Theme.getSize("default_margin").height : 0 + anchors.top: parent.top + anchors.right: parent.right + anchors.rightMargin: UM.Theme.getSize("default_margin").width + visible: comboboxVisible + + UM.Label + { + id: comboboxLabel + anchors.top: parent.top + anchors.left: parent.left + anchors.topMargin: UM.Theme.getSize("default_margin").height + visible: comboboxVisible && text != "" + text: "" + font: UM.Theme.getFont("default_bold") + } + + Loader + { + id: comboboxLoader + width: parent.width + height: UM.Theme.getSize("button").height + anchors.top: comboboxLabel.bottom + anchors.topMargin: UM.Theme.getSize("default_margin").height + anchors.left: parent.left + sourceComponent: combobox + } + + MouseArea + { + id: helpIconMouseArea + anchors.right: parent.right + anchors.verticalCenter: comboboxLabel.verticalCenter + width: childrenRect.width + height: childrenRect.height + hoverEnabled: true + + UM.ColorImage + { + width: UM.Theme.getSize("section_icon").width + height: width + + visible: comboboxTooltipText != "" + source: UM.Theme.getIcon("Help") + color: UM.Theme.getColor("text") + + UM.ToolTip + { + text: comboboxTooltipText + visible: helpIconMouseArea.containsMouse + targetPoint: Qt.point(parent.x + Math.round(parent.width / 2), parent.y) + x: 0 + y: parent.y + parent.height + UM.Theme.getSize("default_margin").height + width: UM.Theme.getSize("tooltip").width + } + } + } + } + + + Loader + { + width: parent.width + height: content.height + anchors.top: sectionTitleRow.bottom + sourceComponent: content + } + + function reloadValues() + { + comboboxLoader.sourceComponent = null + comboboxLoader.sourceComponent = combobox + } +} \ No newline at end of file diff --git a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py index d6cc6ea159..1bc1432b67 100644 --- a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py +++ b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py @@ -156,6 +156,7 @@ class ThreeMFWorkspaceWriter(WorkspaceWriter): "connection_type", "capabilities", "octoprint_api_key", + "is_online", } serialized_data = container.serialize(ignored_metadata_keys = ignore_keys) diff --git a/plugins/CuraEngineBackend/Cura.proto b/plugins/CuraEngineBackend/Cura.proto index 2eabe62366..b420a6ecc2 100644 --- a/plugins/CuraEngineBackend/Cura.proto +++ b/plugins/CuraEngineBackend/Cura.proto @@ -139,5 +139,9 @@ message GCodePrefix { bytes data = 2; //Header string to be prepended before the rest of the g-code sent from the engine. } +message SliceUUID { + string slice_uuid = 1; //The UUID of the slice. +} + message SlicingFinished { } diff --git a/plugins/CuraEngineBackend/CuraEngineBackend.py b/plugins/CuraEngineBackend/CuraEngineBackend.py index 18088a99c6..f5d701f6f7 100755 --- a/plugins/CuraEngineBackend/CuraEngineBackend.py +++ b/plugins/CuraEngineBackend/CuraEngineBackend.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021-2022 Ultimaker B.V. +# Copyright (c) 2022 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. import argparse #To run the engine in debug mode if the front-end is in debug mode. @@ -124,6 +124,7 @@ class CuraEngineBackend(QObject, Backend): self._message_handlers["cura.proto.Progress"] = self._onProgressMessage self._message_handlers["cura.proto.GCodeLayer"] = self._onGCodeLayerMessage self._message_handlers["cura.proto.GCodePrefix"] = self._onGCodePrefixMessage + self._message_handlers["cura.proto.SliceUUID"] = self._onSliceUUIDMessage self._message_handlers["cura.proto.PrintTimeMaterialEstimates"] = self._onPrintTimeMaterialEstimates self._message_handlers["cura.proto.SlicingFinished"] = self._onSlicingFinishedMessage @@ -142,7 +143,7 @@ class CuraEngineBackend(QObject, Backend): self._last_num_objects = defaultdict(int) #type: Dict[int, int] # Count number of objects to see if there is something changed self._postponed_scene_change_sources = [] #type: List[SceneNode] # scene change is postponed (by a tool) - self._slice_start_time = None #type: Optional[float] + self._time_start_process = None #type: Optional[float] self._is_disabled = False #type: bool application.getPreferences().addPreference("general/auto_slice", False) @@ -165,15 +166,30 @@ class CuraEngineBackend(QObject, Backend): self._slicing_error_message.addAction( action_id = "report_bug", name = catalog.i18nc("@message:button", "Report a bug"), - description = catalog.i18nc("@message:description", "Report a bug on Ultimaker Cura's issue tracker."), + description = catalog.i18nc("@message:description", "Report a bug on UltiMaker Cura's issue tracker."), icon = "[no_icon]" ) self._slicing_error_message.actionTriggered.connect(self._reportBackendError) + self._resetLastSliceTimeStats() self._snapshot = None #type: Optional[QImage] application.initializationFinished.connect(self.initialize) + def _resetLastSliceTimeStats(self) -> None: + self._time_start_process = None + self._time_send_message = None + self._time_end_slice = None + + def resetAndReturnLastSliceTimeStats(self) -> Dict[str, float]: + last_slice_data = { + "time_start_process": self._time_start_process, + "time_send_message": self._time_send_message, + "time_end_slice": self._time_end_slice, + } + self._resetLastSliceTimeStats() + return last_slice_data + def initialize(self) -> None: application = CuraApplication.getInstance() self._multi_build_plate_model = application.getMultiBuildPlateModel() @@ -287,7 +303,7 @@ class CuraEngineBackend(QObject, Backend): self._createSnapshot() Logger.log("i", "Starting to slice...") - self._slice_start_time = time() + self._time_start_process = time() if not self._build_plates_to_be_sliced: self.processingProgress.emit(1.0) Logger.log("w", "Slice unnecessary, nothing has changed that needs reslicing.") @@ -511,8 +527,10 @@ class CuraEngineBackend(QObject, Backend): # Notify the user that it's now up to the backend to do it's job self.setState(BackendState.Processing) - if self._slice_start_time: - Logger.log("d", "Sending slice message took %s seconds", time() - self._slice_start_time ) + # Handle time reporting. + self._time_send_message = time() + if self._time_start_process: + Logger.log("d", "Sending slice message took %s seconds", self._time_send_message - self._time_start_process) def determineAutoSlicing(self) -> bool: """Determine enable or disable auto slicing. Return True for enable timer and False otherwise. @@ -749,6 +767,7 @@ class CuraEngineBackend(QObject, Backend): self.setState(BackendState.Done) self.processingProgress.emit(1.0) + self._time_end_slice = time() try: gcode_list = self._scene.gcode_dict[self._start_slice_job_build_plate] #type: ignore #Because we generate this attribute dynamically. @@ -765,8 +784,8 @@ class CuraEngineBackend(QObject, Backend): gcode_list[index] = replaced self._slicing = False - if self._slice_start_time: - Logger.log("d", "Slicing took %s seconds", time() - self._slice_start_time ) + if self._time_start_process: + Logger.log("d", "Slicing took %s seconds", time() - self._time_start_process) Logger.log("d", "Number of models per buildplate: %s", dict(self._numObjectsPerBuildPlate())) # See if we need to process the sliced layers job. @@ -812,6 +831,10 @@ class CuraEngineBackend(QObject, Backend): except KeyError: # Can occur if the g-code has been cleared while a slice message is still arriving from the other end. pass # Throw the message away. + def _onSliceUUIDMessage(self, message: Arcus.PythonMessage) -> None: + application = CuraApplication.getInstance() + application.getPrintInformation().slice_uuid = message.slice_uuid + def _createSocket(self, protocol_file: str = None) -> None: """Creates a new socket connection.""" diff --git a/plugins/CuraEngineBackend/StartSliceJob.py b/plugins/CuraEngineBackend/StartSliceJob.py index 64216f373f..d06136a2b4 100644 --- a/plugins/CuraEngineBackend/StartSliceJob.py +++ b/plugins/CuraEngineBackend/StartSliceJob.py @@ -487,6 +487,10 @@ class StartSliceJob(Job): settings["machine_start_gcode"] = self._expandGcodeTokens(settings["machine_start_gcode"], initial_extruder_nr) settings["machine_end_gcode"] = self._expandGcodeTokens(settings["machine_end_gcode"], initial_extruder_nr) + # Manually add 'nozzle offsetting', since that is a metadata-entry instead for some reason. + # NOTE: This probably needs to be an actual setting at some point. + settings["nozzle_offsetting_for_disallowed_areas"] = CuraApplication.getInstance().getGlobalContainerStack().getMetaDataEntry("nozzle_offsetting_for_disallowed_areas", True) + # Add all sub-messages for each individual setting. for key, value in settings.items(): setting_message = self._slice_message.getMessage("global_settings").addRepeatedMessage("settings") diff --git a/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py b/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py index 4defd2f409..26912abd9a 100644 --- a/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py +++ b/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py @@ -135,9 +135,21 @@ class DFFileExportAndUploadManager: file_name = file_upload_response.job_name if file_upload_response.job_name is not None else "" else: Logger.log("e", "Wrong response type received. Aborting uploading file to the Digital Library") + getBackwardsCompatibleMessage( + text = "Upload error", + title = f"Failed to upload {file_name}. Received unexpected response from server.", + message_type_str = "ERROR", + lifetime = 0 + ).show() return if file_name not in self._file_upload_job_metadata: Logger.error(f"API response for uploading doesn't match the file name we just uploaded: {file_name} was never uploaded.") + getBackwardsCompatibleMessage( + text = "Upload error", + title = f"Failed to upload {file_name}. Name doesn't match the one sent back in confirmation.", + message_type_str = "ERROR", + lifetime = 0 + ).show() return with self._message_lock: self.progress_message.show() diff --git a/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py b/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py index de09ea2a09..13c65f79c4 100644 --- a/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py +++ b/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py @@ -71,8 +71,6 @@ class DigitalFactoryApiClient: has_access = response.library_max_private_projects == -1 or response.library_max_private_projects > 0 callback(has_access) self._library_max_private_projects = response.library_max_private_projects - # update the account with the additional user rights - self._account.updateAdditionalRight(df_access = has_access) else: Logger.warning(f"Digital Factory: Response is not a feature budget, likely an error: {str(response)}") callback(False) diff --git a/plugins/DigitalLibrary/src/DigitalFactoryController.py b/plugins/DigitalLibrary/src/DigitalFactoryController.py index cee367e188..a64a0cee0f 100644 --- a/plugins/DigitalLibrary/src/DigitalFactoryController.py +++ b/plugins/DigitalLibrary/src/DigitalFactoryController.py @@ -501,6 +501,12 @@ class DigitalFactoryController(QObject): """ if not download_url: Logger.log("e", "No download url for file '{}'".format(file_name)) + getBackwardsCompatibleMessage( + text = "Download error", + title = f"No download url could be found for '{file_name}'.", + message_type_str = "ERROR", + lifetime = 0 + ).show() return progress_message = Message(text = "{0}/{1}".format(project_name, file_name), dismissable = False, lifetime = 0, @@ -584,6 +590,12 @@ class DigitalFactoryController(QObject): """ if self._selected_project_idx == -1: Logger.log("e", "No DF Library project is selected.") + getBackwardsCompatibleMessage( + text = "No Digital Library project was selected", + title = "No project selected", + message_type_str = "ERROR", + lifetime = 0 + ).show() return if filename == "": diff --git a/plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py b/plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py index a511a11bd5..bef90e5125 100644 --- a/plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py +++ b/plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py @@ -1,11 +1,14 @@ -# Copyright (c) 2021 Ultimaker B.V. +# Copyright (c) 2022 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. + from datetime import datetime from typing import Optional, List, Dict, Any from .BaseModel import BaseModel from .DigitalFactoryFileResponse import DIGITAL_FACTORY_RESPONSE_DATETIME_FORMAT +from UM.i18n import i18nCatalog +catalog = i18nCatalog("cura") class DigitalFactoryProjectResponse(BaseModel): """Class representing a cloud project.""" @@ -13,8 +16,8 @@ class DigitalFactoryProjectResponse(BaseModel): def __init__(self, library_project_id: str, display_name: str, - username: str, - organization_shared: bool, + username: str = catalog.i18nc("@text Placeholder for the username if it has been deleted", "deleted user"), + organization_shared: bool = False, last_updated: Optional[str] = None, created_at: Optional[str] = None, thumbnail_url: Optional[str] = None, diff --git a/plugins/GCodeReader/FlavorParser.py b/plugins/GCodeReader/FlavorParser.py index 555d9d594e..372ee83135 100644 --- a/plugins/GCodeReader/FlavorParser.py +++ b/plugins/GCodeReader/FlavorParser.py @@ -32,6 +32,7 @@ class FlavorParser: """This parser is intended to interpret the common firmware codes among all the different flavors""" MAX_EXTRUDER_COUNT = 16 + DEFAULT_FILAMENT_DIAMETER = 2.85 def __init__(self) -> None: CuraApplication.getInstance().hideMessageSignal.connect(self._onHideMessage) @@ -48,7 +49,7 @@ class FlavorParser: self._is_layers_in_file = False # Does the Gcode have the layers comment? self._extruder_offsets = {} # type: Dict[int, List[float]] # Offsets for multi extruders. key is index, value is [x-offset, y-offset] self._current_layer_thickness = 0.2 # default - self._filament_diameter = 2.85 # default + self._current_filament_diameter = 2.85 # default self._previous_extrusion_value = 0.0 # keep track of the filament retractions CuraApplication.getInstance().getPreferences().addPreference("gcodereader/show_caution", True) @@ -152,7 +153,7 @@ class FlavorParser: def _calculateLineWidth(self, current_point: Position, previous_point: Position, current_extrusion: float, previous_extrusion: float, layer_thickness: float) -> float: # Area of the filament - Af = (self._filament_diameter / 2) ** 2 * numpy.pi + Af = (self._current_filament_diameter / 2) ** 2 * numpy.pi # Length of the extruded filament de = current_extrusion - previous_extrusion # Volume of the extruded filament @@ -287,7 +288,11 @@ class FlavorParser: def processTCode(self, global_stack, T: int, line: str, position: Position, path: List[List[Union[float, int]]]) -> Position: self._extruder_number = T - self._filament_diameter = global_stack.extruderList[self._extruder_number].getProperty("material_diameter", "value") + try: + self._current_filament_diameter = global_stack.extruderList[self._extruder_number].getProperty("material_diameter", "value") + except IndexError: + self._current_filament_diameter = self.DEFAULT_FILAMENT_DIAMETER + if self._extruder_number + 1 > len(position.e): self._extrusion_length_offset.extend([0] * (self._extruder_number - len(position.e) + 1)) position.e.extend([0] * (self._extruder_number - len(position.e) + 1)) @@ -323,7 +328,11 @@ class FlavorParser: if not global_stack: return None - self._filament_diameter = global_stack.extruderList[self._extruder_number].getProperty("material_diameter", "value") + try: + self._current_filament_diameter = global_stack.extruderList[self._extruder_number].getProperty("material_diameter", "value") + except IndexError: + # There can be a mismatch between the number of extruders in the G-Code file and the number of extruders in the current machine. + self._current_filament_diameter = self.DEFAULT_FILAMENT_DIAMETER scene_node = CuraSceneNode() diff --git a/plugins/GCodeWriter/GCodeWriter.py b/plugins/GCodeWriter/GCodeWriter.py index 7323ffd35c..667e064d90 100644 --- a/plugins/GCodeWriter/GCodeWriter.py +++ b/plugins/GCodeWriter/GCodeWriter.py @@ -1,9 +1,8 @@ -# Copyright (c) 2019 Ultimaker B.V. +# Copyright (c) 2022 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. import re # For escaping characters in the settings. import json -import copy from UM.Mesh.MeshWriter import MeshWriter from UM.Logger import Logger @@ -12,6 +11,8 @@ from UM.Settings.InstanceContainer import InstanceContainer from cura.Machines.ContainerTree import ContainerTree from UM.i18n import i18nCatalog +from cura.Settings.CuraStackBuilder import CuraStackBuilder + catalog = i18nCatalog("cura") @@ -96,25 +97,6 @@ class GCodeWriter(MeshWriter): self.setInformation(catalog.i18nc("@warning:status", "Please prepare G-code before exporting.")) return False - def _createFlattenedContainerInstance(self, instance_container1, instance_container2): - """Create a new container with container 2 as base and container 1 written over it.""" - - flat_container = InstanceContainer(instance_container2.getName()) - - # The metadata includes id, name and definition - flat_container.setMetaData(copy.deepcopy(instance_container2.getMetaData())) - - if instance_container1.getDefinition(): - flat_container.setDefinition(instance_container1.getDefinition().getId()) - - for key in instance_container2.getAllKeys(): - flat_container.setProperty(key, "value", instance_container2.getProperty(key, "value")) - - for key in instance_container1.getAllKeys(): - flat_container.setProperty(key, "value", instance_container1.getProperty(key, "value")) - - return flat_container - def _serialiseSettings(self, stack): """Serialises a container stack to prepare it for writing at the end of the g-code. @@ -145,22 +127,22 @@ class GCodeWriter(MeshWriter): container_with_profile.setDefinition(machine_definition_id_for_quality) container_with_profile.setMetaDataEntry("setting_version", stack.quality.getMetaDataEntry("setting_version")) - flat_global_container = self._createFlattenedContainerInstance(stack.userChanges, container_with_profile) + merged_global_instance_container = InstanceContainer.createMergedInstanceContainer(stack.userChanges, container_with_profile) # If the quality changes is not set, we need to set type manually - if flat_global_container.getMetaDataEntry("type", None) is None: - flat_global_container.setMetaDataEntry("type", "quality_changes") + if merged_global_instance_container.getMetaDataEntry("type", None) is None: + merged_global_instance_container.setMetaDataEntry("type", "quality_changes") # Ensure that quality_type is set. (Can happen if we have empty quality changes). - if flat_global_container.getMetaDataEntry("quality_type", None) is None: - flat_global_container.setMetaDataEntry("quality_type", stack.quality.getMetaDataEntry("quality_type", "normal")) + if merged_global_instance_container.getMetaDataEntry("quality_type", None) is None: + merged_global_instance_container.setMetaDataEntry("quality_type", stack.quality.getMetaDataEntry("quality_type", "normal")) # Get the machine definition ID for quality profiles - flat_global_container.setMetaDataEntry("definition", machine_definition_id_for_quality) + merged_global_instance_container.setMetaDataEntry("definition", machine_definition_id_for_quality) - serialized = flat_global_container.serialize() + serialized = merged_global_instance_container.serialize() data = {"global_quality": serialized} - all_setting_keys = flat_global_container.getAllKeys() + all_setting_keys = merged_global_instance_container.getAllKeys() for extruder in stack.extruderList: extruder_quality = extruder.qualityChanges if extruder_quality.getId() == "empty_quality_changes": @@ -174,7 +156,7 @@ class GCodeWriter(MeshWriter): extruder_quality.setDefinition(machine_definition_id_for_quality) extruder_quality.setMetaDataEntry("setting_version", stack.quality.getMetaDataEntry("setting_version")) - flat_extruder_quality = self._createFlattenedContainerInstance(extruder.userChanges, extruder_quality) + flat_extruder_quality = InstanceContainer.createMergedInstanceContainer(extruder.userChanges, extruder_quality) # If the quality changes is not set, we need to set type manually if flat_extruder_quality.getMetaDataEntry("type", None) is None: flat_extruder_quality.setMetaDataEntry("type", "quality_changes") diff --git a/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml b/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml index c1c54954f1..740e248828 100644 --- a/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml +++ b/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml @@ -303,18 +303,17 @@ Item Component.onCompleted: { - update() + updateModel(); } - function update() + function updateModel() { - clear() - for (var i = 1; i <= Cura.MachineManager.activeMachine.maxExtruderCount; i++) - { + clear(); + for (var i = 1; i <= Cura.MachineManager.activeMachine.maxExtruderCount; i ++) { // Use String as value. JavaScript only has Number. PropertyProvider.setPropertyValue() // takes a QVariant as value, and Number gets translated into a float. This will cause problem // for integer settings such as "Number of Extruders". - append({ text: String(i), value: String(i) }) + append({ text: String(i), value: String(i) }); } } } @@ -322,7 +321,9 @@ Item Connections { target: Cura.MachineManager - function onGlobalContainerChanged() { extruderCountModel.update() } + function onGlobalContainerChanged() { + extruderCountModel.updateModel(); + } } } diff --git a/plugins/Marketplace/CloudSync/CloudPackageChecker.py b/plugins/Marketplace/CloudSync/CloudPackageChecker.py index 53087e0502..d3f20a84ed 100644 --- a/plugins/Marketplace/CloudSync/CloudPackageChecker.py +++ b/plugins/Marketplace/CloudSync/CloudPackageChecker.py @@ -1,5 +1,5 @@ -# Copyright (c) 2022 Ultimaker B.V. -# Cura is released under the terms of the LGPLv3 or higher. +# Copyright (c) 2022 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. import json from typing import List, Dict, Any, Set @@ -142,7 +142,7 @@ class CloudPackageChecker(QObject): sync_message = Message(self._i18n_catalog.i18nc( "@info:generic", "Do you want to sync material and software packages with your account?"), - title = self._i18n_catalog.i18nc("@info:title", "Changes detected from your Ultimaker account", )) + title = self._i18n_catalog.i18nc("@info:title", "Changes detected from your UltiMaker account", )) sync_message.addAction("sync", name = self._i18n_catalog.i18nc("@action:button", "Sync"), icon = "", diff --git a/plugins/Marketplace/CloudSync/DownloadPresenter.py b/plugins/Marketplace/CloudSync/DownloadPresenter.py index 8325c27eb7..35764ad654 100644 --- a/plugins/Marketplace/CloudSync/DownloadPresenter.py +++ b/plugins/Marketplace/CloudSync/DownloadPresenter.py @@ -1,5 +1,5 @@ -# Copyright (c) 2022 Ultimaker B.V. -# Cura is released under the terms of the LGPLv3 or higher. +# Copyright (c) 2022 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. import tempfile from typing import Dict, List, Any @@ -92,7 +92,7 @@ class DownloadPresenter: lifetime = 0, use_inactivity_timer = False, progress = 0.0, - title = i18n_catalog.i18nc("@info:title", "Changes detected from your Ultimaker account")) + title = i18n_catalog.i18nc("@info:title", "Changes detected from your UltiMaker account")) def _onFinished(self, package_id: str, reply: QNetworkReply) -> None: self._progress[package_id]["received"] = self._progress[package_id]["total"] diff --git a/plugins/Marketplace/LocalPackageList.py b/plugins/Marketplace/LocalPackageList.py index 85f835980b..3aa3ab6bfd 100644 --- a/plugins/Marketplace/LocalPackageList.py +++ b/plugins/Marketplace/LocalPackageList.py @@ -44,7 +44,7 @@ class LocalPackageList(PackageList): def _sortSectionsOnUpdate(self) -> None: section_order = dict(zip([i for k, v in self.PACKAGE_CATEGORIES.items() for i in self.PACKAGE_CATEGORIES[k].values()], ["a", "b", "c", "d"])) - self.sort(lambda model: (section_order[model.sectionTitle], model.canUpdate, model.displayName.lower()), key = "package") + self.sort(lambda model: (section_order[model.sectionTitle], not model.canUpdate, model.displayName.lower()), key = "package") def _removePackageModel(self, package_id: str) -> None: """ diff --git a/plugins/Marketplace/PackageModel.py b/plugins/Marketplace/PackageModel.py index 078bfc879e..fa909b4120 100644 --- a/plugins/Marketplace/PackageModel.py +++ b/plugins/Marketplace/PackageModel.py @@ -92,7 +92,7 @@ class PackageModel(QObject): "display_name": display_name, "package_version": package_version, "package_type": package_type, - "description": "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." + "description": catalog.i18nc("@label:label Ultimaker Marketplace is a brand name, don't translate", "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.") } package_model = cls(package_data) package_model.setIsMissingPackageInformation(True) diff --git a/plugins/Marketplace/plugin.json b/plugins/Marketplace/plugin.json index 9cb81461a1..87bca76092 100644 --- a/plugins/Marketplace/plugin.json +++ b/plugins/Marketplace/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "api": 8, - "description": "Manages extensions to the application and allows browsing extensions from the Ultimaker website.", + "description": "Manages extensions to the application and allows browsing extensions from the UltiMaker website.", "i18n-catalog": "cura" } diff --git a/plugins/Marketplace/resources/qml/ManagedPackages.qml b/plugins/Marketplace/resources/qml/ManagedPackages.qml index 9358a04f07..2280cc90ed 100644 --- a/plugins/Marketplace/resources/qml/ManagedPackages.qml +++ b/plugins/Marketplace/resources/qml/ManagedPackages.qml @@ -1,5 +1,6 @@ -// Copyright (c) 2021 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. + import QtQuick 2.15 import QtQuick.Controls 2.15 import QtQuick.Layouts 1.15 @@ -12,7 +13,7 @@ Packages bannerVisible: UM.Preferences.getValue("cura/market_place_show_manage_packages_banner"); bannerIcon: UM.Theme.getIcon("ArrowDoubleCircleRight") - bannerText: catalog.i18nc("@text", "Manage your Ultimaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly.") + bannerText: catalog.i18nc("@text", "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly.") bannerReadMoreUrl: "https://support.ultimaker.com/hc/en-us/articles/4411125921426/?utm_source=cura&utm_medium=software&utm_campaign=marketplace-learn-manage" onRemoveBanner: function() { UM.Preferences.setValue("cura/market_place_show_manage_packages_banner", false); diff --git a/plugins/Marketplace/resources/qml/Marketplace.qml b/plugins/Marketplace/resources/qml/Marketplace.qml index 2a3c5f69ce..97ba2303e9 100644 --- a/plugins/Marketplace/resources/qml/Marketplace.qml +++ b/plugins/Marketplace/resources/qml/Marketplace.qml @@ -285,4 +285,33 @@ Window } } } + + Rectangle + { + color: UM.Theme.getColor("main_background") + anchors.fill: parent + visible: !Cura.API.account.isLoggedIn && CuraApplication.isEnterprise + + UM.Label + { + id: signInLabel + anchors.centerIn: parent + width: Math.round(UM.Theme.getSize("modal_window_minimum").width / 2.5) + text: catalog.i18nc("@description","Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise") + horizontalAlignment: Text.AlignHCenter + } + + Cura.PrimaryButton + { + id: loginButton + width: UM.Theme.getSize("account_button").width + height: UM.Theme.getSize("account_button").height + anchors.horizontalCenter: parent.horizontalCenter + anchors.top: signInLabel.bottom + anchors.topMargin: UM.Theme.getSize("default_margin").height * 2 + text: catalog.i18nc("@button", "Sign in") + fixedWidthMode: true + onClicked: Cura.API.account.login() + } + } } diff --git a/plugins/Marketplace/resources/qml/Materials.qml b/plugins/Marketplace/resources/qml/Materials.qml index c10a937d67..6527a76358 100644 --- a/plugins/Marketplace/resources/qml/Materials.qml +++ b/plugins/Marketplace/resources/qml/Materials.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2021 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import UM 1.4 as UM @@ -9,7 +9,7 @@ Packages bannerVisible: UM.Preferences.getValue("cura/market_place_show_material_banner") bannerIcon: UM.Theme.getIcon("Spool") - bannerText: catalog.i18nc("@text", "Select and install material profiles optimised for your Ultimaker 3D printers.") + bannerText: catalog.i18nc("@text", "Select and install material profiles optimised for your UltiMaker 3D printers.") bannerReadMoreUrl: "https://support.ultimaker.com/hc/en-us/articles/360011968360/?utm_source=cura&utm_medium=software&utm_campaign=marketplace-learn-materials" onRemoveBanner: function() { UM.Preferences.setValue("cura/market_place_show_material_banner", false); diff --git a/plugins/Marketplace/resources/qml/PackageCardHeader.qml b/plugins/Marketplace/resources/qml/PackageCardHeader.qml index 58dfba84e1..83e16c9b5a 100644 --- a/plugins/Marketplace/resources/qml/PackageCardHeader.qml +++ b/plugins/Marketplace/resources/qml/PackageCardHeader.qml @@ -45,8 +45,6 @@ Item visible: parent.packageHasIcon anchors.fill: parent source: packageData.iconUrl - sourceSize.height: height - sourceSize.width: width } UM.ColorImage diff --git a/plugins/Marketplace/resources/qml/Plugins.qml b/plugins/Marketplace/resources/qml/Plugins.qml index 739e0c01a7..c4f96374dc 100644 --- a/plugins/Marketplace/resources/qml/Plugins.qml +++ b/plugins/Marketplace/resources/qml/Plugins.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2021 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import UM 1.4 as UM @@ -9,7 +9,7 @@ Packages bannerVisible: UM.Preferences.getValue("cura/market_place_show_plugin_banner") bannerIcon: UM.Theme.getIcon("Shop") - bannerText: catalog.i18nc("@text", "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users.") + bannerText: catalog.i18nc("@text", "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users.") bannerReadMoreUrl: "https://support.ultimaker.com/hc/en-us/articles/360011968360/?utm_source=cura&utm_medium=software&utm_campaign=marketplace-learn-plugins" onRemoveBanner: function() { UM.Preferences.setValue("cura/market_place_show_plugin_banner", false) diff --git a/plugins/Marketplace/resources/qml/VerifiedIcon.qml b/plugins/Marketplace/resources/qml/VerifiedIcon.qml index e701c5a91b..dd22d40246 100644 --- a/plugins/Marketplace/resources/qml/VerifiedIcon.qml +++ b/plugins/Marketplace/resources/qml/VerifiedIcon.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2021 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.15 @@ -18,9 +18,9 @@ Control { switch(packageData.packageType) { - case "plugin": return catalog.i18nc("@info", "Ultimaker Verified Plug-in"); - case "material": return catalog.i18nc("@info", "Ultimaker Certified Material"); - default: return catalog.i18nc("@info", "Ultimaker Verified Package"); + case "plugin": return catalog.i18nc("@info", "UltiMaker Verified Plug-in"); + case "material": return catalog.i18nc("@info", "UltiMaker Certified Material"); + default: return catalog.i18nc("@info", "UltiMaker Verified Package"); } } visible: parent.hovered diff --git a/plugins/ModelChecker/model_checker.svg b/plugins/ModelChecker/model_checker.svg index ce9594302e..e63e082e27 100644 --- a/plugins/ModelChecker/model_checker.svg +++ b/plugins/ModelChecker/model_checker.svg @@ -1,7 +1,7 @@ - - - - + + + + diff --git a/plugins/MonitorStage/MonitorMain.qml b/plugins/MonitorStage/MonitorMain.qml index 5d63ac5b83..a89938530c 100644 --- a/plugins/MonitorStage/MonitorMain.qml +++ b/plugins/MonitorStage/MonitorMain.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2018 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 @@ -114,6 +114,7 @@ Rectangle font: UM.Theme.getFont("medium") width: contentWidth } + Item { anchors diff --git a/plugins/MonitorStage/MonitorMenu.qml b/plugins/MonitorStage/MonitorMenu.qml index bc95c276e8..5715d9a27c 100644 --- a/plugins/MonitorStage/MonitorMenu.qml +++ b/plugins/MonitorStage/MonitorMenu.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2018 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 @@ -19,5 +19,15 @@ Item width: UM.Theme.getSize("machine_selector_widget").width height: parent.height anchors.centerIn: parent + + machineListModel: Cura.MachineListModel {} + + machineManager: Cura.MachineManager + + onSelectPrinter: function(machine) + { + toggleContent(); + Cura.MachineManager.setActiveMachine(machine.id); + } } } \ No newline at end of file diff --git a/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml b/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml index 2d4b3e01e5..be7aebcf7a 100644 --- a/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml +++ b/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml @@ -150,6 +150,7 @@ Item width: parent.width / 2 - UM.Theme.getSize("default_margin").width height: UM.Theme.getSize("setting_control").height textRole: "text" + forceHighlight: base.hovered model: ListModel { diff --git a/plugins/PostProcessingPlugin/PostProcessingPlugin.qml b/plugins/PostProcessingPlugin/PostProcessingPlugin.qml index c252f13c68..a80f304aaa 100644 --- a/plugins/PostProcessingPlugin/PostProcessingPlugin.qml +++ b/plugins/PostProcessingPlugin/PostProcessingPlugin.qml @@ -19,7 +19,7 @@ UM.Dialog height: 500 * screenScaleFactor minimumWidth: 400 * screenScaleFactor minimumHeight: 250 * screenScaleFactor - + backgroundColor: UM.Theme.getColor("main_background") onVisibleChanged: { // Whenever the window is closed (either via the "Close" button or the X on the window frame), we want to update it in the stack. @@ -286,6 +286,7 @@ UM.Dialog { id: definitionsModel containerId: manager.selectedScriptDefinitionId + onContainerIdChanged: definitionsModel.setAllVisible(true) showAll: true } diff --git a/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py index 69489bfcad..b9184b59c3 100644 --- a/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py +++ b/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py @@ -4,10 +4,12 @@ # Modified: November 16, 2018 by Joshua Pope-Lewis # Description: This plugin shows custom messages about your print on the Status bar... -# Please look at the 3 options +# Please look at the 5 options # - Scrolling (SCROLL_LONG_FILENAMES) if enabled in Marlin and you aren't printing a small item select this option. # - Name: By default it will use the name generated by Cura (EG: TT_Test_Cube) - Type a custom name in here +# - Start Num: Choose which number you prefer for the initial layer, 0 or 1 # - Max Layer: Enabling this will show how many layers are in the entire print (EG: Layer 1 of 265!) +# - Add prefix 'Printing': Enabling this will add the prefix 'Printing' from ..Script import Script from UM.Application import Application @@ -53,23 +55,30 @@ class DisplayFilenameAndLayerOnLCD(Script): "description": "Display how many layers are in the entire print on status bar?", "type": "bool", "default_value": true + }, + "addPrefixPrinting": + { + "label": "Add prefix 'Printing'?", + "description": "This will add the prefix 'Printing'", + "type": "bool", + "default_value": true } } }""" def execute(self, data): max_layer = 0 + lcd_text = "M117 " if self.getSettingValueByKey("name") != "": name = self.getSettingValueByKey("name") else: name = Application.getInstance().getPrintInformation().jobName + if self.getSettingValueByKey("addPrefixPrinting"): + lcd_text += "Printing " if not self.getSettingValueByKey("scroll"): - if self.getSettingValueByKey("maxlayer"): - lcd_text = "M117 Layer " - else: - lcd_text = "M117 Printing Layer " + lcd_text += "Layer " else: - lcd_text = "M117 Printing " + name + " - Layer " + lcd_text += name + " - Layer " i = self.getSettingValueByKey("startNum") for layer in data: display_text = lcd_text + str(i) diff --git a/plugins/PostProcessingPlugin/scripts/FilamentChange.py b/plugins/PostProcessingPlugin/scripts/FilamentChange.py index ff62e1949c..ef85d5ae36 100644 --- a/plugins/PostProcessingPlugin/scripts/FilamentChange.py +++ b/plugins/PostProcessingPlugin/scripts/FilamentChange.py @@ -24,20 +24,29 @@ class FilamentChange(Script): "version": 2, "settings": { + "enabled": + { + "label": "Enable", + "description": "Uncheck to temporarily disable this feature.", + "type": "bool", + "default_value": true + }, "layer_number": { "label": "Layer", "description": "At what layer should color change occur. This will be before the layer starts printing. Specify multiple color changes with a comma.", "unit": "", "type": "str", - "default_value": "1" + "default_value": "1", + "enabled": "enabled" }, "firmware_config": { "label": "Use Firmware Configuration", "description": "Use the settings in your firmware, or customise the parameters of the filament change here.", "type": "bool", - "default_value": false + "default_value": false, + "enabled": "enabled" }, "initial_retract": { @@ -46,7 +55,7 @@ class FilamentChange(Script): "unit": "mm", "type": "float", "default_value": 30.0, - "enabled": "not firmware_config" + "enabled": "enabled and not firmware_config" }, "later_retract": { @@ -55,7 +64,7 @@ class FilamentChange(Script): "unit": "mm", "type": "float", "default_value": 300.0, - "enabled": "not firmware_config" + "enabled": "enabled and not firmware_config" }, "x_position": { @@ -64,7 +73,7 @@ class FilamentChange(Script): "unit": "mm", "type": "float", "default_value": 0, - "enabled": "not firmware_config" + "enabled": "enabled and not firmware_config" }, "y_position": { @@ -73,7 +82,7 @@ class FilamentChange(Script): "unit": "mm", "type": "float", "default_value": 0, - "enabled": "not firmware_config" + "enabled": "enabled and not firmware_config" }, "z_position": { @@ -82,7 +91,8 @@ class FilamentChange(Script): "unit": "mm", "type": "float", "default_value": 0, - "minimum_value": 0 + "minimum_value": 0, + "enabled": "enabled" }, "retract_method": { @@ -92,7 +102,7 @@ class FilamentChange(Script): "options": {"U": "Marlin (M600 U)", "L": "Reprap (M600 L)"}, "default_value": "U", "value": "\\\"L\\\" if machine_gcode_flavor==\\\"RepRap (RepRap)\\\" else \\\"U\\\"", - "enabled": "not firmware_config" + "enabled": "enabled and not firmware_config" }, "machine_gcode_flavor": { @@ -113,6 +123,40 @@ class FilamentChange(Script): }, "default_value": "RepRap (Marlin/Sprinter)", "enabled": "false" + }, + "enable_before_macro": + { + "label": "Enable G-code Before", + "description": "Use this to insert a custom G-code macro before the filament change happens", + "type": "bool", + "default_value": false, + "enabled": "enabled" + }, + "before_macro": + { + "label": "G-code Before", + "description": "Any custom G-code to run before the filament change happens, for example, M300 S1000 P10000 for a long beep.", + "unit": "", + "type": "str", + "default_value": "M300 S1000 P10000", + "enabled": "enabled and enable_before_macro" + }, + "enable_after_macro": + { + "label": "Enable G-code After", + "description": "Use this to insert a custom G-code macro after the filament change", + "type": "bool", + "default_value": false, + "enabled": "enabled" + }, + "after_macro": + { + "label": "G-code After", + "description": "Any custom G-code to run after the filament has been changed right before continuing the print, for example, you can add a sequence to purge filament and wipe the nozzle.", + "unit": "", + "type": "str", + "default_value": "M300 S440 P500", + "enabled": "enabled and enable_after_macro" } } }""" @@ -134,6 +178,7 @@ class FilamentChange(Script): :param data: A list of layers of g-code. :return: A similar list, with filament change commands inserted. """ + enabled = self.getSettingValueByKey("enabled") layer_nums = self.getSettingValueByKey("layer_number") initial_retract = self.getSettingValueByKey("initial_retract") later_retract = self.getSettingValueByKey("later_retract") @@ -141,8 +186,20 @@ class FilamentChange(Script): y_pos = self.getSettingValueByKey("y_position") z_pos = self.getSettingValueByKey("z_position") firmware_config = self.getSettingValueByKey("firmware_config") + enable_before_macro = self.getSettingValueByKey("enable_before_macro") + before_macro = self.getSettingValueByKey("before_macro") + enable_after_macro = self.getSettingValueByKey("enable_after_macro") + after_macro = self.getSettingValueByKey("after_macro") - color_change = "M600" + if not enabled: + return data + + color_change = ";BEGIN FilamentChange plugin\n" + + if enable_before_macro: + color_change = color_change + before_macro + "\n" + + color_change = color_change + "M600\n" if not firmware_config: if initial_retract is not None and initial_retract > 0.: @@ -163,7 +220,10 @@ class FilamentChange(Script): if z_pos is not None and z_pos > 0.: color_change = color_change + (" Z%.2f" % z_pos) - color_change = color_change + " ; Generated by FilamentChange plugin\n" + if enable_after_macro: + color_change = color_change + after_macro + "\n" + + color_change = color_change + ";END FilamentChange plugin\n" layer_targets = layer_nums.split(",") if len(layer_targets) > 0: diff --git a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py index 5923a53adf..f39b0e5db1 100644 --- a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py +++ b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py @@ -1,8 +1,12 @@ -# Copyright (c) 2021 Ultimaker B.V. +# Copyright (c) 2023 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. -from ..Script import Script +# Revised by GregValiant 10-17-2022 +# Changed "extrude" line to before the nozzle moves back to the print (if not Repetier or Griffin). +# Add M104 option for Resume temperature +from ..Script import Script +import re from UM.Application import Application #To get the current printer's settings. from UM.Logger import Logger @@ -26,7 +30,7 @@ class PauseAtHeight(Script): "description": "Whether to pause at a certain height or at a certain layer.", "type": "enum", "options": {"height": "Height", "layer_no": "Layer Number"}, - "default_value": "height" + "default_value": "layer_no" }, "pause_height": { @@ -42,7 +46,7 @@ class PauseAtHeight(Script): "pause_layer": { "label": "Pause Layer", - "description": "At what layer should the pause occur?", + "description": "Enter the Number of the LAST layer you want to finish prior to the pause. Note that 0 is the first layer printed.", "type": "int", "value": "math.floor((pause_height - 0.27) / 0.1) + 1", "minimum_value": "0", @@ -58,16 +62,25 @@ class PauseAtHeight(Script): "default_value": "marlin", "value": "\\\"griffin\\\" if machine_gcode_flavor==\\\"Griffin\\\" else \\\"reprap\\\" if machine_gcode_flavor==\\\"RepRap (RepRap)\\\" else \\\"repetier\\\" if machine_gcode_flavor==\\\"Repetier\\\" else \\\"bq\\\" if \\\"BQ\\\" in machine_name or \\\"Flying Bear Ghost 4S\\\" in machine_name else \\\"marlin\\\"" }, + "hold_steppers_on": + { + "label": "Keep motors engaged", + "description": "Keep the steppers engaged to allow change of filament without moving the head. Applying too much force will move the head/bed anyway", + "type": "bool", + "default_value": false, + "enabled": "pause_method != \\\"griffin\\\"" + }, "disarm_timeout": { "label": "Disarm timeout", - "description": "After this time steppers are going to disarm (meaning that they can easily lose their positions). Set this to 0 if you don't want to set any duration.", + "description": "After this time steppers are going to disarm (meaning that they can easily lose their positions). Set this to 0 if you don't want to set any duration and disarm immediately.", "type": "int", "value": "0", "minimum_value": "0", "minimum_value_warning": "0", "maximum_value_warning": "1800", - "unit": "s" + "unit": "s", + "enabled": "not hold_steppers_on" }, "head_park_enabled": { @@ -147,6 +160,14 @@ class PauseAtHeight(Script): "type": "bool", "default_value": false }, + "standby_wait_for_temperature_enabled": + { + "label": "Use M109 for standby temperature? (M104 when false)", + "description": "Wait for hot end after Resume? (If your standby temperature is lower than the Printing temperature CHECK and use M109", + "type": "bool", + "default_value": true, + "enabled": "pause_method not in [\\\"griffin\\\", \\\"repetier\\\"]" + }, "standby_temperature": { "label": "Standby Temperature", @@ -192,17 +213,33 @@ class PauseAtHeight(Script): "default_value": "RepRap (Marlin/Sprinter)", "enabled": false }, + "beep_at_pause": + { + "label": "Beep at pause", + "description": "Make a beep when pausing", + "type": "bool", + "default_value": false + }, + "beep_length": + { + "label": "Beep length", + "description": "How much should the beep last", + "type": "int", + "default_value": "1000", + "unit": "ms", + "enabled": "beep_at_pause" + }, "custom_gcode_before_pause": { "label": "G-code Before Pause", - "description": "Any custom g-code to run before the pause, for example, M300 S440 P200 to beep.", + "description": "Custom g-code to run before the pause. EX: M300 to beep. Use a comma to separate multiple commands. EX: M400,M300,M117 Pause", "type": "str", "default_value": "" }, "custom_gcode_after_pause": { "label": "G-code After Pause", - "description": "Any custom g-code to run after the pause, for example, M300 S440 P200 to beep.", + "description": "Custom g-code to run after the pause. Use a comma to separate multiple commands. EX: M204 X8 Y8,M106 S0,M117 Resume", "type": "str", "default_value": "" } @@ -242,6 +279,7 @@ class PauseAtHeight(Script): pause_at = self.getSettingValueByKey("pause_at") pause_height = self.getSettingValueByKey("pause_height") pause_layer = self.getSettingValueByKey("pause_layer") + hold_steppers_on = self.getSettingValueByKey("hold_steppers_on") disarm_timeout = self.getSettingValueByKey("disarm_timeout") retraction_amount = self.getSettingValueByKey("retraction_amount") retraction_speed = self.getSettingValueByKey("retraction_speed") @@ -253,13 +291,16 @@ class PauseAtHeight(Script): move_z = self.getSettingValueByKey("head_move_z") layers_started = False redo_layer = self.getSettingValueByKey("redo_layer") + standby_wait_for_temperature_enabled = self.getSettingValueByKey("standby_wait_for_temperature_enabled") standby_temperature = self.getSettingValueByKey("standby_temperature") firmware_retract = Application.getInstance().getGlobalContainerStack().getProperty("machine_firmware_retract", "value") control_temperatures = Application.getInstance().getGlobalContainerStack().getProperty("machine_nozzle_temp_enabled", "value") initial_layer_height = Application.getInstance().getGlobalContainerStack().getProperty("layer_height_0", "value") display_text = self.getSettingValueByKey("display_text") - gcode_before = self.getSettingValueByKey("custom_gcode_before_pause") - gcode_after = self.getSettingValueByKey("custom_gcode_after_pause") + gcode_before = re.sub("\\s*,\\s*", "\n", self.getSettingValueByKey("custom_gcode_before_pause")) + gcode_after = re.sub("\\s*,\\s*", "\n", self.getSettingValueByKey("custom_gcode_after_pause")) + beep_at_pause = self.getSettingValueByKey("beep_at_pause") + beep_length = self.getSettingValueByKey("beep_length") pause_method = self.getSettingValueByKey("pause_method") pause_command = { @@ -437,8 +478,16 @@ class PauseAtHeight(Script): prepend_gcode += "M117 " + display_text + "\n" # Set the disarm timeout - if disarm_timeout > 0: - prepend_gcode += self.putValue(M = 18, S = disarm_timeout) + " ; Set the disarm timeout\n" + if pause_method != "griffin": + if hold_steppers_on: + prepend_gcode += self.putValue(M = 84, S = 3600) + " ; Keep steppers engaged for 1h\n" + elif disarm_timeout > 0: + prepend_gcode += self.putValue(M = 84, S = disarm_timeout) + " ; Set the disarm timeout\n" + + # Beep at pause + if beep_at_pause: + prepend_gcode += self.putValue(M = 300, S = 440, P = beep_length) + " ; Beep\n" + # Set a custom GCODE section before pause if gcode_before: @@ -447,7 +496,7 @@ class PauseAtHeight(Script): # Wait till the user continues printing prepend_gcode += pause_command + " ; Do the actual pause\n" - # Set a custom GCODE section before pause + # Set a custom GCODE section after pause if gcode_after: prepend_gcode += gcode_after + "\n" @@ -495,19 +544,23 @@ class PauseAtHeight(Script): elif pause_method != "griffin": if control_temperatures: # Set extruder resume temperature - prepend_gcode += self.putValue(M = 109, S = int(target_temperature.get(current_t, 0))) + " ; resume temperature\n" + if standby_wait_for_temperature_enabled: + WFT_numeric = 109 + Temp_resume_Text = " ; WAIT for resume temperature\n" + else: + WFT_numeric = 104 + Temp_resume_Text = " ; resume temperature\n" + + prepend_gcode += self.putValue(M=WFT_numeric, + S=int(target_temperature.get(current_t, 0))) + Temp_resume_Text if extrude_amount != 0: # Need to prime after the pause. # Push the filament back. - if retraction_amount != 0: - prepend_gcode += self.putValue(G = 1, E = retraction_amount, F = retraction_speed * 60) + "\n" + if extrude_speed == 0: + extrude_speed = 25 - # Prime the material. - prepend_gcode += self.putValue(G = 1, E = extrude_amount, F = extrude_speed * 60) + "; Extra extrude after the unpause\n" - - # And retract again to make the movements back to the starting position. - if retraction_amount != 0: - prepend_gcode += self.putValue(G = 1, E = -retraction_amount, F = retraction_speed * 60) + "\n" + if extrude_amount != 0: + prepend_gcode += self.putValue(G=1, E=extrude_amount, F=extrude_speed * 60) + "\n" # Move the head back if park_enabled: @@ -521,8 +574,6 @@ class PauseAtHeight(Script): retraction_count = 1 if control_temperatures else 3 #Retract more if we don't control the temperature. for i in range(retraction_count): prepend_gcode += self.putValue(G = 11) + "\n" - else: - prepend_gcode += self.putValue(G = 1, E = retraction_amount, F = retraction_speed * 60) + "\n" if current_extrusion_f != 0: prepend_gcode += self.putValue(G = 1, F = current_extrusion_f) + " ; restore extrusion feedrate\n" diff --git a/plugins/PostProcessingPlugin/scripts/RetractContinue.py b/plugins/PostProcessingPlugin/scripts/RetractContinue.py index 3e095bd395..b5ea4d4eda 100644 --- a/plugins/PostProcessingPlugin/scripts/RetractContinue.py +++ b/plugins/PostProcessingPlugin/scripts/RetractContinue.py @@ -1,15 +1,18 @@ -# Copyright (c) 2019 Ultimaker B.V. +# Copyright (c) 2023 UltiMaker B.V. # The PostProcessingPlugin is released under the terms of the AGPLv3 or higher. -import math - from ..Script import Script +from UM.Application import Application # To get current absolute/relative setting. +from UM.Math.Vector import Vector + +from typing import List, Tuple + class RetractContinue(Script): """Continues retracting during all travel moves.""" - def getSettingDataString(self): + def getSettingDataString(self) -> str: return """{ "name": "Retract Continue", "key": "RetractContinue", @@ -27,58 +30,90 @@ class RetractContinue(Script): } }""" - def execute(self, data): - current_e = 0 - current_x = 0 - current_y = 0 - current_z = 0 + def _getTravelMove(self, travel_move: str, default_pos: Vector) -> Tuple[Vector, float]: + travel = Vector( + self.getValue(travel_move, "X", default_pos.x), + self.getValue(travel_move, "Y", default_pos.y), + self.getValue(travel_move, "Z", default_pos.z) + ) + f = self.getValue(travel_move, "F", -1.0) + return travel, f + + def _travelMoveString(self, travel: Vector, f: float, e: float) -> str: + # Note that only G1 moves are written, since extrusion is included. + if f <= 0.0: + return f"G1 X{travel.x:.5f} Y{travel.y:.5f} Z{travel.z:.5f} E{e:.5f}" + else: + return f"G1 F{f:.5f} X{travel.x:.5f} Y{travel.y:.5f} Z{travel.z:.5f} E{e:.5f}" + + def execute(self, data: List[str]) -> List[str]: + current_e = 0.0 + to_compensate = 0 # Used when extrusion mode is relative. + is_active = False # Whether retract-continue is in effect. + + current_pos = Vector(0.0, 0.0, 0.0) + last_pos = Vector(0.0, 0.0, 0.0) + extra_retraction_speed = self.getSettingValueByKey("extra_retraction_speed") + relative_extrusion = Application.getInstance().getGlobalContainerStack().getProperty( + "relative_extrusion", "value" + ) for layer_number, layer in enumerate(data): lines = layer.split("\n") for line_number, line in enumerate(lines): - if self.getValue(line, "G") in {0, 1}: # Track X,Y,Z location. - current_x = self.getValue(line, "X", current_x) - current_y = self.getValue(line, "Y", current_y) - current_z = self.getValue(line, "Z", current_z) - if self.getValue(line, "G") == 1: - if not self.getValue(line, "E"): # Either None or 0: Not a retraction then. - continue - new_e = self.getValue(line, "E") - if new_e - current_e >= -0.0001: # Not a retraction. Account for floating point rounding errors. - current_e = new_e - continue - # A retracted travel move may consist of multiple commands, due to combing. - # This continues retracting over all of these moves and only unretracts at the end. - delta_line = 1 - dx = current_x # Track the difference in X for this move only to compute the length of the travel. - dy = current_y - dz = current_z - while line_number + delta_line < len(lines) and self.getValue(lines[line_number + delta_line], "G") != 1: - travel_move = lines[line_number + delta_line] - if self.getValue(travel_move, "G") != 0: - delta_line += 1 - continue - travel_x = self.getValue(travel_move, "X", dx) - travel_y = self.getValue(travel_move, "Y", dy) - travel_z = self.getValue(travel_move, "Z", dz) - f = self.getValue(travel_move, "F", "no f") - length = math.sqrt((travel_x - dx) * (travel_x - dx) + (travel_y - dy) * (travel_y - dy) + (travel_z - dz) * (travel_z - dz)) # Length of the travel move. - new_e -= length * extra_retraction_speed # New retraction is by ratio of this travel move. - if f == "no f": - new_travel_move = "G1 X{travel_x} Y{travel_y} Z{travel_z} E{new_e}".format(travel_x = travel_x, travel_y = travel_y, travel_z = travel_z, new_e = new_e) - else: - new_travel_move = "G1 F{f} X{travel_x} Y{travel_y} Z{travel_z} E{new_e}".format(f = f, travel_x = travel_x, travel_y = travel_y, travel_z = travel_z, new_e = new_e) - lines[line_number + delta_line] = new_travel_move - delta_line += 1 - dx = travel_x - dy = travel_y - dz = travel_z + # Focus on move-type lines. + code_g = self.getValue(line, "G") + if code_g not in [0, 1]: + continue - current_e = new_e + # Track X,Y,Z location. + last_pos = last_pos.set(current_pos.x, current_pos.y, current_pos.z) + current_pos = current_pos.set( + self.getValue(line, "X", current_pos.x), + self.getValue(line, "Y", current_pos.y), + self.getValue(line, "Z", current_pos.z) + ) + + # Track extrusion 'axis' position. + last_e = current_e + e_value = self.getValue(line, "E") + if e_value: + current_e = (current_e if relative_extrusion else 0) + e_value + + # Handle lines: Detect retractions and compensate relative if G1, potential retract-continue if G0. + if code_g == 1: + if last_e > (current_e + 0.0001): # Account for floating point inaccuracies. + + # There is a retraction, each following G0 command needs to continue the retraction. + is_active = True + continue + + elif relative_extrusion and is_active: + + # If 'relative', the first G1 command after the total retraction will have to compensate more. + travel, f = self._getTravelMove(lines[line_number], current_pos) + lines[line_number] = self._travelMoveString(travel, f, to_compensate + e_value) + to_compensate = 0.0 + + # There is no retraction (see continue in the retract-clause) and everything else has been handled. + is_active = False + + elif code_g == 0: + if not is_active: + continue + + # The retract-continue is active, so each G0 until the next extrusion needs to continue retraction. + travel, f = self._getTravelMove(lines[line_number], current_pos) + travel_length = (current_pos - last_pos).length() + extra_retract = travel_length * extra_retraction_speed + new_e = (0 if relative_extrusion else current_e) - extra_retract + to_compensate += extra_retract + current_e -= extra_retract + lines[line_number] = self._travelMoveString(travel, f, new_e) new_layer = "\n".join(lines) data[layer_number] = new_layer - return data \ No newline at end of file + return data diff --git a/plugins/PostProcessingPlugin/scripts/Stretch.py b/plugins/PostProcessingPlugin/scripts/Stretch.py index 924563d305..8d35f68822 100644 --- a/plugins/PostProcessingPlugin/scripts/Stretch.py +++ b/plugins/PostProcessingPlugin/scripts/Stretch.py @@ -432,7 +432,7 @@ class Stretcher: """ dist_palp = self.line_width # Palpation distance to seek for a wall mrot = np.array([[0, -1], [1, 0]]) # Rotation matrix for a quarter turn - for i in range(len(orig_seq)): + for i, _ in enumerate(orig_seq): ibeg = i # Index of the first point of the segment iend = i + 1 # Index of the last point of the segment if iend == len(orig_seq): diff --git a/plugins/PrepareStage/PrepareMenu.qml b/plugins/PrepareStage/PrepareMenu.qml index 42c3c8dde6..ab9b9b1b3d 100644 --- a/plugins/PrepareStage/PrepareMenu.qml +++ b/plugins/PrepareStage/PrepareMenu.qml @@ -55,6 +55,50 @@ Item Layout.preferredWidth: parent.machineSelectorWidth Layout.fillWidth: true Layout.fillHeight: true + + machineManager: Cura.MachineManager + onSelectPrinter: function(machine) + { + toggleContent(); + Cura.MachineManager.setActiveMachine(machine.id); + } + + machineListModel: Cura.MachineListModel {} + + buttons: [ + Cura.SecondaryButton + { + id: addPrinterButton + leftPadding: UM.Theme.getSize("default_margin").width + rightPadding: UM.Theme.getSize("default_margin").width + text: catalog.i18nc("@button", "Add printer") + // The maximum width of the button is half of the total space, minus the padding of the parent, the left + // padding of the component and half the spacing because of the space between buttons. + fixedWidthMode: true + width: Math.round(parent.width / 2 - leftPadding * 1.5) + onClicked: + { + machineSelection.toggleContent() + Cura.Actions.addMachine.trigger() + } + }, + Cura.SecondaryButton + { + id: managePrinterButton + leftPadding: UM.Theme.getSize("default_margin").width + rightPadding: UM.Theme.getSize("default_margin").width + text: catalog.i18nc("@button", "Manage printers") + fixedWidthMode: true + // The maximum width of the button is half of the total space, minus the padding of the parent, the right + // padding of the component and half the spacing because of the space between buttons. + width: Math.round(parent.width / 2 - rightPadding * 1.5) + onClicked: + { + machineSelection.toggleContent() + Cura.Actions.configureMachines.trigger() + } + } + ] } Cura.ConfigurationMenu diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py index 532ef459c0..473948bc46 100644 --- a/plugins/SimulationView/SimulationView.py +++ b/plugins/SimulationView/SimulationView.py @@ -125,10 +125,6 @@ class SimulationView(CuraView): self._only_show_top_layers = bool(Application.getInstance().getPreferences().getValue("view/only_show_top_layers")) self._compatibility_mode = self._evaluateCompatibilityMode() - self._wireprint_warning_message = Message(catalog.i18nc("@info:status", - "Cura does not accurately display layers when Wire Printing is enabled."), - title = catalog.i18nc("@info:title", "Simulation View"), - message_type = Message.MessageType.WARNING) self._slice_first_warning_message = Message(catalog.i18nc("@info:status", "Nothing is shown because you need to slice first."), title = catalog.i18nc("@info:title", "No layers to show"), @@ -671,11 +667,8 @@ class SimulationView(CuraView): elif event.type == Event.ViewDeactivateEvent: self._controller.getScene().getRoot().childrenChanged.disconnect(self._onSceneChanged) Application.getInstance().getPreferences().preferenceChanged.disconnect(self._onPreferencesChanged) - self._wireprint_warning_message.hide() self._slice_first_warning_message.hide() Application.getInstance().globalContainerStackChanged.disconnect(self._onGlobalStackChanged) - if self._global_container_stack: - self._global_container_stack.propertyChanged.disconnect(self._onPropertyChanged) if self._nozzle_node: self._nozzle_node.setParent(None) @@ -698,23 +691,10 @@ class SimulationView(CuraView): return self._current_layer_jumps def _onGlobalStackChanged(self) -> None: - if self._global_container_stack: - self._global_container_stack.propertyChanged.disconnect(self._onPropertyChanged) self._global_container_stack = Application.getInstance().getGlobalContainerStack() if self._global_container_stack: - self._global_container_stack.propertyChanged.connect(self._onPropertyChanged) self._extruder_count = self._global_container_stack.getProperty("machine_extruder_count", "value") - self._onPropertyChanged("wireframe_enabled", "value") self.globalStackChanged.emit() - else: - self._wireprint_warning_message.hide() - - def _onPropertyChanged(self, key: str, property_name: str) -> None: - if key == "wireframe_enabled" and property_name == "value": - if self._global_container_stack and self._global_container_stack.getProperty("wireframe_enabled", "value"): - self._wireprint_warning_message.show() - else: - self._wireprint_warning_message.hide() def _onCurrentLayerNumChanged(self) -> None: self.calculateMaxPathsOnLayer(self._current_layer_num) diff --git a/plugins/SliceInfoPlugin/MoreInfoWindow.qml b/plugins/SliceInfoPlugin/MoreInfoWindow.qml index 310fa29c17..e0954dc55e 100644 --- a/plugins/SliceInfoPlugin/MoreInfoWindow.qml +++ b/plugins/SliceInfoPlugin/MoreInfoWindow.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 @@ -70,7 +70,7 @@ Window left: parent.left right: parent.right } - text: catalog.i18nc("@text:window", "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:") + text: catalog.i18nc("@text:window", "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:") wrapMode: Text.WordWrap } diff --git a/plugins/SliceInfoPlugin/SliceInfo.py b/plugins/SliceInfoPlugin/SliceInfo.py index 0bf76f8423..7e7a132c98 100755 --- a/plugins/SliceInfoPlugin/SliceInfo.py +++ b/plugins/SliceInfoPlugin/SliceInfo.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021 Ultimaker B.V. +# Copyright (c) 2023 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. import json @@ -27,7 +27,7 @@ catalog = i18nCatalog("cura") class SliceInfo(QObject, Extension): - """This Extension runs in the background and sends several bits of information to the Ultimaker servers. + """This Extension runs in the background and sends several bits of information to the UltiMaker servers. The data is only sent when the user in question gave permission to do so. All data is anonymous and no model files are being sent (Just a SHA256 hash of the model). @@ -133,6 +133,7 @@ class SliceInfo(QObject, Extension): data["is_logged_in"] = self._application.getCuraAPI().account.isLoggedIn data["organization_id"] = org_id if org_id else None data["subscriptions"] = user_profile.get("subscriptions", []) if user_profile else [] + data["slice_uuid"] = print_information.slice_uuid active_mode = self._application.getPreferences().getValue("cura/active_mode") if active_mode == 0: @@ -276,6 +277,26 @@ class SliceInfo(QObject, Extension): # Send the name of the output device type that is used. data["output_to"] = type(output_device).__name__ + # Engine Statistics (Slicing Time, ...) + # Call it backend-time, sice we might want to get the actual slice time from the engine itself, + # to also identify problems in between the users pressing the button and the engine actually starting + # (and the other way around with data that arrives back from the engine). + time_setup = 0.0 + time_backend = 0.0 + if not print_information.preSliced: + backend_info = self._application.getBackend().resetAndReturnLastSliceTimeStats() + time_start_process = backend_info["time_start_process"] + time_send_message = backend_info["time_send_message"] + time_end_slice = backend_info["time_end_slice"] + if time_start_process and time_send_message and time_end_slice: + time_setup = time_send_message - time_start_process + time_backend = time_end_slice - time_send_message + data["engine_stats"] = { + "is_presliced": int(print_information.preSliced), + "time_setup": int(round(time_setup)), + "time_backend": int(round(time_backend)), + } + # Convert data to bytes binary_data = json.dumps(data).encode("utf-8") diff --git a/plugins/SliceInfoPlugin/example_data.html b/plugins/SliceInfoPlugin/example_data.html index 85a9f554ff..5f074f32ea 100644 --- a/plugins/SliceInfoPlugin/example_data.html +++ b/plugins/SliceInfoPlugin/example_data.html @@ -1,3 +1,7 @@ + + Cura Version: 4.8
@@ -9,6 +13,7 @@ Using Custom Settings: No
Is Logged In: Yes
Organization ID (if any): ABCDefGHIjKlMNOpQrSTUvYxWZ0-1234567890abcDE=
+ Slice ID: aBcDeF01-2345-6789-aBcD-eF0123456789
Subscriptions (if any):
  • Level: 10, Type: Enterprise, Plan: Basic
  • @@ -62,11 +67,18 @@

    Print Times:

      -
    • Infill: 61200 sec.
    • -
    • Support: 25480 sec.
    • -
    • Travel: 6224 sec.
    • -
    • Walls: 10225 sec.
    • -
    • Total: 103129 sec.
    • +
    • Infill: 61200 sec.
    • +
    • Support: 25480 sec.
    • +
    • Travel: 6224 sec.
    • +
    • Walls: 10225 sec.
    • +
    • Total: 103129 sec.
    • +
    + +

    Engine Statistics:

    +
      +
    • Is Pre-Sliced: no
    • +
    • Pre-Process Time: 7 sec.
    • +
    • Slicing Time: 69 sec.
    diff --git a/plugins/UFPReader/UFPReader.py b/plugins/UFPReader/UFPReader.py index 71061f938b..8596de9bf0 100644 --- a/plugins/UFPReader/UFPReader.py +++ b/plugins/UFPReader/UFPReader.py @@ -21,7 +21,7 @@ class UFPReader(MeshReader): MimeTypeDatabase.addMimeType( MimeType( name = "application/x-ufp", - comment = "Ultimaker Format Package", + comment = "UltiMaker Format Package", suffixes = ["ufp"] ) ) diff --git a/plugins/UFPReader/__init__.py b/plugins/UFPReader/__init__.py index cfea4b9882..ce4bf9730e 100644 --- a/plugins/UFPReader/__init__.py +++ b/plugins/UFPReader/__init__.py @@ -1,5 +1,5 @@ -#Copyright (c) 2019 Ultimaker B.V. -#Cura is released under the terms of the LGPLv3 or higher. +# Copyright (c) 2022 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. import sys @@ -19,7 +19,7 @@ def getMetaData(): { "mime_type": "application/x-ufp", "extension": "ufp", - "description": i18n_catalog.i18nc("@item:inlistbox", "Ultimaker Format Package") + "description": i18n_catalog.i18nc("@item:inlistbox", "UltiMaker Format Package") } ] } diff --git a/plugins/UFPWriter/UFPWriter.py b/plugins/UFPWriter/UFPWriter.py index 52dab1efc7..c8064ac37f 100644 --- a/plugins/UFPWriter/UFPWriter.py +++ b/plugins/UFPWriter/UFPWriter.py @@ -1,6 +1,7 @@ -# Copyright (c) 2021 Ultimaker B.V. +# Copyright (c) 2022 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. - +import json +from dataclasses import asdict from typing import cast, List, Dict from Charon.VirtualFile import VirtualFile # To open UFP files. @@ -10,19 +11,25 @@ from io import StringIO # For converting g-code to bytes. from PyQt6.QtCore import QBuffer +from UM.Application import Application from UM.Logger import Logger +from UM.Settings.SettingFunction import SettingFunction from UM.Mesh.MeshWriter import MeshWriter # The writer we need to implement. from UM.MimeTypeDatabase import MimeTypeDatabase, MimeType from UM.PluginRegistry import PluginRegistry # To get the g-code writer. from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator from UM.Scene.SceneNode import SceneNode +from UM.Settings.InstanceContainer import InstanceContainer from cura.CuraApplication import CuraApplication +from cura.Settings.CuraStackBuilder import CuraStackBuilder +from cura.Settings.GlobalStack import GlobalStack from cura.Utils.Threading import call_on_qt_thread from UM.i18n import i18nCatalog METADATA_OBJECTS_PATH = "metadata/objects" +SLICE_METADATA_PATH = "Cura/slicemetadata.json" catalog = i18nCatalog("cura") @@ -34,7 +41,7 @@ class UFPWriter(MeshWriter): MimeTypeDatabase.addMimeType( MimeType( name = "application/x-ufp", - comment = "Ultimaker Format Package", + comment = "UltiMaker Format Package", suffixes = ["ufp"] ) ) @@ -67,7 +74,21 @@ class UFPWriter(MeshWriter): try: gcode = archive.getStream("/3D/model.gcode") gcode.write(gcode_textio.getvalue().encode("UTF-8")) - archive.addRelation(virtual_path = "/3D/model.gcode", relation_type = "http://schemas.ultimaker.org/package/2018/relationships/gcode") + archive.addRelation(virtual_path = "/3D/model.gcode", + relation_type = "http://schemas.ultimaker.org/package/2018/relationships/gcode") + except EnvironmentError as e: + error_msg = catalog.i18nc("@info:error", "Can't write to UFP file:") + " " + str(e) + self.setInformation(error_msg) + Logger.error(error_msg) + return False + + # Write settings + try: + archive.addContentType(extension="json", mime_type="application/json") + setting_textio = StringIO() + json.dump(self._getSliceMetadata(), setting_textio, separators=(", ", ": "), indent=4) + steam = archive.getStream(SLICE_METADATA_PATH) + steam.write(setting_textio.getvalue().encode("UTF-8")) except EnvironmentError as e: error_msg = catalog.i18nc("@info:error", "Can't write to UFP file:") + " " + str(e) self.setInformation(error_msg) @@ -190,3 +211,57 @@ 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/UFPWriter/__init__.py b/plugins/UFPWriter/__init__.py index 9db6b042f8..ae51f78e95 100644 --- a/plugins/UFPWriter/__init__.py +++ b/plugins/UFPWriter/__init__.py @@ -1,5 +1,5 @@ -#Copyright (c) 2018 Ultimaker B.V. -#Cura is released under the terms of the LGPLv3 or higher. +# Copyright (c) 2022 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. import sys @@ -25,7 +25,7 @@ def getMetaData(): "mime_type": "application/x-ufp", "mode": MeshWriter.OutputMode.BinaryMode, "extension": "ufp", - "description": i18n_catalog.i18nc("@item:inlistbox", "Ultimaker Format Package") + "description": i18n_catalog.i18nc("@item:inlistbox", "UltiMaker Format Package") } ] } diff --git a/plugins/UM3NetworkPrinting/plugin.json b/plugins/UM3NetworkPrinting/plugin.json index 46f0b8bace..02851228f4 100644 --- a/plugins/UM3NetworkPrinting/plugin.json +++ b/plugins/UM3NetworkPrinting/plugin.json @@ -1,7 +1,7 @@ { - "name": "Ultimaker Network Connection", + "name": "UltiMaker Network Connection", "author": "Ultimaker B.V.", - "description": "Manages network connections to Ultimaker networked printers.", + "description": "Manages network connections to UltiMaker networked printers.", "version": "2.0.0", "api": 8, "i18n-catalog": "cura" diff --git a/plugins/UM3NetworkPrinting/resources/png/Ultimaker S7.png b/plugins/UM3NetworkPrinting/resources/png/Ultimaker S7.png new file mode 100644 index 0000000000..6f75d02005 Binary files /dev/null and b/plugins/UM3NetworkPrinting/resources/png/Ultimaker S7.png differ diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorBuildplateConfiguration.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorBuildplateConfiguration.qml deleted file mode 100644 index 0bd57e76d8..0000000000 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorBuildplateConfiguration.qml +++ /dev/null @@ -1,71 +0,0 @@ -// Copyright (c) 2019 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.2 -import QtQuick.Controls 2.0 -import UM 1.5 as UM - -/** - * This component comprises a buildplate icon and the buildplate name. It is - * used by the MonitorPrinterConfiguration component along with two instances - * of MonitorExtruderConfiguration. - * - * NOTE: For most labels, a fixed height with vertical alignment is used to make - * layouts more deterministic (like the fixed-size textboxes used in original - * mock-ups). This is also a stand-in for CSS's 'line-height' property. Denoted - * with '// FIXED-LINE-HEIGHT:'. - */ -Item -{ - // The buildplate name - property var buildplate: null - - // Height is one 18px label/icon - height: 18 * screenScaleFactor // TODO: Theme! - width: childrenRect.width - - Row - { - height: parent.height - spacing: UM.Theme.getSize("print_setup_slider_handle").width // TODO: Theme! (Should be same as extruder spacing) - - // This wrapper ensures that the buildplate icon is located centered - // below an extruder icon. - Item - { - height: parent.height - width: 32 * screenScaleFactor // Ensure the icon is centered under the extruder icon (same width) - - Rectangle - { - anchors.centerIn: parent - height: parent.height - width: height - color: buildplateIcon.visible > 0 ? "transparent" : UM.Theme.getColor("monitor_skeleton_loading") - radius: Math.floor(height / 2) - } - - UM.ColorImage - { - id: buildplateIcon - anchors.centerIn: parent - color: UM.Theme.getColor("monitor_icon_primary") - height: UM.Theme.getSize("medium_button_icon").width - source: UM.Theme.getIcon("Buildplate") - width: height - visible: buildplate - } - } - - UM.Label - { - id: buildplateLabel - elide: Text.ElideRight - text: buildplate ? buildplate : "" - visible: text !== "" - - // FIXED-LINE-HEIGHT: - height: 18 * screenScaleFactor // TODO: Theme! - } - } -} diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml index 47586f3925..5baae741ac 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml @@ -102,9 +102,6 @@ UM.Dialog case "print_core_change": text = catalog.i18nc("@label", "Change print core %1 from %2 to %3.").arg(change.index + 1).arg(change.originName).arg(change.targetName) break - case "buildplate_change": - text = catalog.i18nc("@label", "Change build plate to %1 (This cannot be overridden).").arg(formatBuildPlateType(change.target_name)) - break default: text = "unknown" } @@ -143,19 +140,4 @@ UM.Dialog } return true } - function formatBuildPlateType(buildPlateType) - { - var translationText = "" - switch (buildPlateType) { - case "glass": - translationText = catalog.i18nc("@label", "Glass") - break - case "aluminum": - translationText = catalog.i18nc("@label", "Aluminum") - break - default: - translationText = null - } - return translationText - } } diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml index 03e9477d08..3acaba68fc 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml @@ -13,10 +13,98 @@ import Cura 1.6 as Cura */ Item { + id: monitorContextMenu property alias target: popUp.target property var printJob: null + //Everything in the pop-up only gets evaluated when showing the pop-up. + //However we want to show the button for showing the pop-up only if there is anything visible inside it. + //So compute here the visibility of the menu items, so that we can use it for the visibility of the button. + property bool sendToTopVisible: + { + if (printJob && (printJob.state == "queued" || printJob.state == "error")) { + if (OutputDevice && OutputDevice.queuedPrintJobs[0] && OutputDevice.canWriteOthersPrintJobs) { + return OutputDevice.queuedPrintJobs[0].key != printJob.key; + } + } + return false; + } + + property bool deleteVisible: + { + if(!printJob) + { + return false; + } + if(printJob.isMine) + { + if(!OutputDevice.canWriteOwnPrintJobs) + { + return false; + } + } + else + { + if(!OutputDevice.canWriteOthersPrintJobs) + { + return false; + } + } + var states = ["queued", "error", "sent_to_printer"]; + return states.indexOf(printJob.state) !== -1; + } + + property bool pauseVisible: + { + if(!printJob) + { + return false; + } + if(printJob.isMine) + { + if(!OutputDevice.canWriteOwnPrintJobs) + { + return false; + } + } + else + { + if(!OutputDevice.canWriteOthersPrintJobs) + { + return false; + } + } + var states = ["printing", "pausing", "paused", "resuming"]; + return states.indexOf(printJob.state) !== -1; + } + + property bool abortVisible: + { + if(!printJob) + { + return false; + } + if(printJob.isMine) + { + if(!OutputDevice.canWriteOwnPrintJobs) + { + return false; + } + } + else + { + if(!OutputDevice.canWriteOthersPrintJobs) + { + return false; + } + } + var states = ["pre_print", "printing", "pausing", "paused", "resuming"]; + return states.indexOf(printJob.state) !== -1; + } + + property bool hasItems: sendToTopVisible || deleteVisible || pauseVisible || abortVisible + GenericPopUp { id: popUp @@ -46,56 +134,54 @@ Item spacing: Math.floor(UM.Theme.getSize("default_margin").height / 2) - PrintJobContextMenuItem { - onClicked: { + PrintJobContextMenuItem + { + onClicked: + { sendToTopConfirmationDialog.visible = true; popUp.close(); } text: catalog.i18nc("@label", "Move to top"); - visible: { - if (printJob && (printJob.state == "queued" || printJob.state == "error") && !isAssigned(printJob)) { - if (OutputDevice && OutputDevice.queuedPrintJobs[0]) { - return OutputDevice.queuedPrintJobs[0].key != printJob.key; - } - } - return false; - } + visible: monitorContextMenu.sendToTopVisible } - PrintJobContextMenuItem { - onClicked: { + PrintJobContextMenuItem + { + onClicked: + { deleteConfirmationDialog.visible = true; popUp.close(); } text: catalog.i18nc("@label", "Delete"); - visible: { - if (!printJob) { - return false; - } - var states = ["queued", "error", "sent_to_printer"]; - return states.indexOf(printJob.state) !== -1; - } + visible: monitorContextMenu.deleteVisible } - PrintJobContextMenuItem { + PrintJobContextMenuItem + { enabled: visible && !(printJob.state == "pausing" || printJob.state == "resuming"); - onClicked: { - if (printJob.state == "paused") { + onClicked: + { + if (printJob.state == "paused") + { printJob.setState("resume"); popUp.close(); return; } - if (printJob.state == "printing") { + if (printJob.state == "printing") + { printJob.setState("pause"); popUp.close(); return; } } - text: { - if (!printJob) { + text: + { + if(!printJob) + { return ""; } - switch(printJob.state) { + switch(printJob.state) + { case "paused": return catalog.i18nc("@label", "Resume"); case "pausing": @@ -106,29 +192,19 @@ Item catalog.i18nc("@label", "Pause"); } } - visible: { - if (!printJob) { - return false; - } - var states = ["printing", "pausing", "paused", "resuming"]; - return states.indexOf(printJob.state) !== -1; - } + visible: monitorContextMenu.pauseVisible } - PrintJobContextMenuItem { + PrintJobContextMenuItem + { enabled: visible && printJob.state !== "aborting"; - onClicked: { + onClicked: + { abortConfirmationDialog.visible = true; popUp.close(); } text: printJob && printJob.state == "aborting" ? catalog.i18nc("@label", "Aborting...") : catalog.i18nc("@label", "Abort"); - visible: { - if (!printJob) { - return false; - } - var states = ["pre_print", "printing", "pausing", "paused", "resuming"]; - return states.indexOf(printJob.state) !== -1; - } + visible: monitorContextMenu.abortVisible } } } @@ -170,10 +246,4 @@ Item function close() { popUp.close() } - function isAssigned(job) { - if (!job) { - return false; - } - return job.assignedPrinter ? true : false; - } } diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorExtruderConfiguration.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorExtruderConfiguration.qml index 1b2be71e55..428b462371 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorExtruderConfiguration.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorExtruderConfiguration.qml @@ -10,7 +10,7 @@ import Cura 1.6 as Cura /** * This component comprises a colored extruder icon, the material name, and the * print core name. It is used by the MonitorPrinterConfiguration component with - * a sibling instance as well as a MonitorBuildplateConfiguration instance. + * a sibling instance. * * NOTE: For most labels, a fixed height with vertical alignment is used to make * layouts more deterministic (like the fixed-size textboxes used in original diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml index 2974e5ce6b..dbbc88d316 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml @@ -153,7 +153,7 @@ Item MonitorPrinterPill { - text: printJob.configuration.printerType + text: printJob ? printJob.configuration.printerType : "" } } } @@ -172,8 +172,7 @@ Item { id: printerConfiguration anchors.verticalCenter: parent.verticalCenter - buildplate: catalog.i18nc("@label", "Glass") - configurations: base.printJob.configuration.extruderConfigurations + configurations: base.printJob ? base.printJob.configuration.extruderConfigurations : null height: Math.round(72 * screenScaleFactor) // TODO: Theme! } @@ -206,7 +205,11 @@ Item onClicked: enabled ? contextMenu.switchPopupState() : {} visible: { - if (!printJob) + if(!printJob) + { + return false; + } + if(!contextMenu.hasItems) { return false; } diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml index 0069d017f6..7e2969f189 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.3 @@ -175,7 +175,7 @@ Item { id: printerConfiguration anchors.verticalCenter: parent.verticalCenter - buildplate: printer ? catalog.i18nc("@label", "Glass") : null // 'Glass' as a default + configurations: { var configs = [] @@ -209,8 +209,13 @@ Item onClicked: enabled ? contextMenu.switchPopupState() : {} visible: { - if (!printer || !printer.activePrintJob) { - return false + if(!printer || !printer.activePrintJob) + { + return false; + } + if(!contextMenu.hasItems) + { + return false; } var states = ["queued", "error", "sent_to_printer", "pre_print", "printing", "pausing", "paused", "resuming"] return states.indexOf(printer.activePrintJob.state) !== -1 @@ -272,7 +277,7 @@ Item MonitorInfoBlurb { id: cameraDisabledInfo - text: catalog.i18nc("@info", "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." + + text: catalog.i18nc("@info", "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura." + " Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam.") target: cameraButton } diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterConfiguration.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterConfiguration.qml index 21d08a310c..8bcedb6808 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterConfiguration.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterConfiguration.qml @@ -7,17 +7,13 @@ import UM 1.3 as UM /** * The MonitorPrinterConfiguration accepts 2 configuration objects as input and - * applies them to a MonitorBuildplateConfiguration instance and two instances - * of MonitorExtruderConfiguration. It's used in both the MonitorPrintJobCard - * component as well as the MonitorPrinterCard component. + * applies them to two instances of MonitorExtruderConfiguration. + * It's used in both the MonitorPrintJobCard component as well as the MonitorPrinterCard component. */ Item { id: base - // Extracted buildplate configuration - property alias buildplate: buildplateConfig.buildplate - // Array of extracted extruder configurations property var configurations: [null,null] @@ -48,11 +44,4 @@ Item } } - - MonitorBuildplateConfiguration - { - id: buildplateConfig - anchors.bottom: parent.bottom - buildplate: null - } } diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml index 3fd500cfca..d559e99cc1 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml @@ -39,6 +39,7 @@ Item } height: 18 * screenScaleFactor // TODO: Theme! width: childrenRect.width + visible: OutputDevice.canReadPrinterDetails UM.ColorImage { diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml index 9e73662e1d..2a0609dab4 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml @@ -1,8 +1,8 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. -import QtQuick 2.2 -import UM 1.3 as UM +import QtQuick 2.15 +import UM 1.5 as UM import Cura 1.0 as Cura // This is the root component for the monitor stage. @@ -37,6 +37,7 @@ Component Item { id: printers + visible: !Cura.MachineManager.activeMachineIsAbstractCloudPrinter anchors { top: parent.top @@ -69,14 +70,66 @@ Component top: printers.bottom topMargin: 48 * screenScaleFactor // TODO: Theme! } - visible: OutputDevice.supportsPrintJobQueue + visible: OutputDevice.supportsPrintJobQueue && OutputDevice.canReadPrintJobs && !Cura.MachineManager.activeMachineIsAbstractCloudPrinter } PrinterVideoStream { anchors.fill: parent cameraUrl: OutputDevice.activeCameraUrl - visible: OutputDevice.activeCameraUrl != "" + visible: OutputDevice.activeCameraUrl != "" && !Cura.MachineManager.activeMachineIsAbstractCloudPrinter + } + + Rectangle + { + id: sendToFactoryCard + + visible: Cura.MachineManager.activeMachineIsAbstractCloudPrinter + + color: UM.Theme.getColor("monitor_stage_background") + height: childrenRect.height + UM.Theme.getSize("default_margin").height * 2 + width: childrenRect.width + UM.Theme.getSize("wide_margin").width * 2 + anchors + { + horizontalCenter: parent.horizontalCenter + top: parent.top + topMargin: UM.Theme.getSize("wide_margin").height * screenScaleFactor * 2 + } + + Column + { + anchors.horizontalCenter: parent.horizontalCenter + anchors.verticalCenter: parent.verticalCenter + spacing: UM.Theme.getSize("wide_margin").height + padding: UM.Theme.getSize("default_margin").width + topPadding: 0 + + Image + { + id: sendToFactoryImage + anchors.horizontalCenter: parent.horizontalCenter + source: UM.Theme.getImage("cura_connected_printers") + } + + UM.Label + { + anchors.horizontalCenter: parent.horizontalCenter + text: catalog.i18nc("@info", "Monitor your printers from everywhere using Ultimaker Digital Factory") + font: UM.Theme.getFont("medium") + width: sendToFactoryImage.width + wrapMode: Text.WordWrap + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + } + + Cura.PrimaryButton + { + id: sendToFactoryButton + anchors.horizontalCenter: parent.horizontalCenter + text: catalog.i18nc("@button", "View printers in Digital Factory") + onClicked: Qt.openUrlExternally("https://digitalfactory.ultimaker.com/app/welcome?utm_source=cura&utm_medium=software&utm_campaign=monitor-view-cloud-printer-type") + } + } } } } diff --git a/plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py b/plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py new file mode 100644 index 0000000000..fdbeb051cf --- /dev/null +++ b/plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py @@ -0,0 +1,125 @@ +from time import time +from typing import Callable, List, Optional + +from PyQt6.QtCore import QObject, pyqtSlot +from PyQt6.QtNetwork import QNetworkReply + +from UM import i18nCatalog +from UM.Logger import Logger +from UM.FileHandler.FileHandler import FileHandler +from UM.Resources import Resources +from UM.Scene.SceneNode import SceneNode + +from cura.CuraApplication import CuraApplication +from cura.PrinterOutput.NetworkedPrinterOutputDevice import AuthState +from cura.PrinterOutput.PrinterOutputDevice import ConnectionType +from .CloudApiClient import CloudApiClient +from ..Models.Http.CloudClusterWithConfigResponse import CloudClusterWithConfigResponse +from ..UltimakerNetworkedPrinterOutputDevice import UltimakerNetworkedPrinterOutputDevice + +I18N_CATALOG = i18nCatalog("cura") + + +class AbstractCloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): + API_CHECK_INTERVAL = 10.0 # seconds + + def __init__(self, api_client: CloudApiClient, printer_type: str, request_write_callback: Callable, refresh_callback: Callable, parent: QObject = None) -> None: + + self._api = api_client + properties = {b"printer_type": printer_type.encode()} + super().__init__( + device_id=f"ABSTRACT_{printer_type}", + address="", + connection_type=ConnectionType.CloudConnection, + properties=properties, + parent=parent + ) + + self._on_print_dialog: Optional[QObject] = None + self._nodes: List[SceneNode] = None + self._request_write_callback = request_write_callback + self._refresh_callback = refresh_callback + + self._setInterfaceElements() + + def connect(self) -> None: + """Connects this device.""" + + if self.isConnected(): + return + Logger.log("i", "Attempting to connect AbstractCloudOutputDevice %s", self.key) + super().connect() + + self._update() + + def disconnect(self) -> None: + """Disconnects the device""" + + if not self.isConnected(): + return + super().disconnect() + + def _update(self) -> None: + """Called when the network data should be updated.""" + + super()._update() + if time() - self._time_of_last_request < self.API_CHECK_INTERVAL: + return # avoid calling the cloud too often + self._time_of_last_request = time() + if self._api.account.isLoggedIn: + self.setAuthenticationState(AuthState.Authenticated) + self._last_request_time = time() + self._api.getClustersByMachineType(self.printerType, self._onCompleted, self._onError) + else: + self.setAuthenticationState(AuthState.NotAuthenticated) + + def _setInterfaceElements(self) -> None: + """Set all the interface elements and texts for this output device.""" + + self.setPriority(2) # Make sure we end up below the local networking and above 'save to file'. + self.setShortDescription(I18N_CATALOG.i18nc("@action:button", "Print via cloud")) + self.setDescription(I18N_CATALOG.i18nc("@properties:tooltip", "Print via cloud")) + self.setConnectionText(I18N_CATALOG.i18nc("@info:status", "Connected via cloud")) + + def _onCompleted(self, clusters: List[CloudClusterWithConfigResponse]) -> None: + self._responseReceived() + + all_configurations = [] + for resp in clusters: + if resp.configuration is not None: + # Usually when the printer is offline, it doesn't have a configuration... + all_configurations.append(resp.configuration) + self._updatePrinters(all_configurations) + + def _onError(self, reply: QNetworkReply, error: QNetworkReply.NetworkError) -> None: + Logger.log("w", f"Failed to get clusters by machine type: {str(error)}.") + + @pyqtSlot(str) + def printerSelected(self, unique_id: str): + # The device that it defers the actual write to isn't hooked up correctly. So we should emit the write signal + # here. + self.writeStarted.emit(self) + self._request_write_callback(unique_id, self._nodes) + if self._on_print_dialog: + self._on_print_dialog.close() + + @pyqtSlot() + def refresh(self): + self._refresh_callback() + self._update() + + def _openChoosePrinterDialog(self) -> None: + if self._on_print_dialog is None: + qml_path = Resources.getPath(CuraApplication.ResourceTypes.QmlFiles, "Dialogs", "ChoosePrinterDialog.qml") + self._on_print_dialog = CuraApplication.getInstance().createQmlComponent(qml_path, {}) + if self._on_print_dialog is None: # Failed to load QML file. + return + self._on_print_dialog.setProperty("manager", self) + self._on_print_dialog.show() + + def requestWrite(self, nodes: List[SceneNode], file_name: Optional[str] = None, limit_mimetypes: bool = False, file_handler: Optional[FileHandler] = None, **kwargs) -> None: + if not nodes or len(nodes) < 1: + Logger.log("w", "Nothing to print.") + return + self._nodes = nodes + self._openChoosePrinterDialog() diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py index 470e57947e..318fceeb40 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py @@ -1,6 +1,7 @@ # Copyright (c) 2019 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. import json +import urllib.parse from json import JSONDecodeError from time import time from typing import Callable, List, Type, TypeVar, Union, Optional, Tuple, Dict, Any, cast @@ -17,6 +18,7 @@ from cura.UltimakerCloud import UltimakerCloudConstants from cura.UltimakerCloud.UltimakerCloudScope import UltimakerCloudScope from .ToolPathUploader import ToolPathUploader from ..Models.BaseModel import BaseModel +from ..Models.Http.CloudClusterWithConfigResponse import CloudClusterWithConfigResponse from ..Models.Http.CloudClusterResponse import CloudClusterResponse from ..Models.Http.CloudClusterStatus import CloudClusterStatus from ..Models.Http.CloudError import CloudError @@ -48,7 +50,6 @@ class CloudApiClient: """Initializes a new cloud API client. :param app: - :param account: The user's account object :param on_error: The callback to be called whenever we receive errors from the server. """ super().__init__() @@ -57,12 +58,11 @@ class CloudApiClient: self._scope = JsonDecoratorScope(UltimakerCloudScope(app)) self._http = HttpRequestManager.getInstance() self._on_error = on_error - self._upload = None # type: Optional[ToolPathUploader] + self._upload: Optional[ToolPathUploader] = None @property def account(self) -> Account: """Gets the account used for the API.""" - return self._account def getClusters(self, on_finished: Callable[[List[CloudClusterResponse]], Any], failed: Callable) -> None: @@ -71,13 +71,31 @@ class CloudApiClient: :param on_finished: The function to be called after the result is parsed. """ - url = "{}/clusters?status=active".format(self.CLUSTER_API_ROOT) + url = f"{self.CLUSTER_API_ROOT}/clusters?status=active" self._http.get(url, scope = self._scope, callback = self._parseCallback(on_finished, CloudClusterResponse, failed), error_callback = failed, timeout = self.DEFAULT_REQUEST_TIMEOUT) + def getClustersByMachineType(self, machine_type, on_finished: Callable[[List[CloudClusterWithConfigResponse]], Any], failed: Callable) -> None: + # HACK: There is something weird going on with the API, as it reports printer types in formats like + # "ultimaker_s3", but wants "Ultimaker S3" when using the machine_variant filter query. So we need to do some + # conversion! + + machine_type = machine_type.replace("_plus", "+") + machine_type = machine_type.replace("_", " ") + machine_type = machine_type.replace("ultimaker", "ultimaker ") + machine_type = machine_type.replace(" ", " ") + machine_type = machine_type.title() + machine_type = urllib.parse.quote_plus(machine_type) + url = f"{self.CLUSTER_API_ROOT}/clusters?machine_variant={machine_type}" + self._http.get(url, + scope=self._scope, + callback=self._parseCallback(on_finished, CloudClusterWithConfigResponse, failed), + error_callback=failed, + timeout=self.DEFAULT_REQUEST_TIMEOUT) + def getClusterStatus(self, cluster_id: str, on_finished: Callable[[CloudClusterStatus], Any]) -> None: """Retrieves the status of the given cluster. @@ -85,7 +103,7 @@ class CloudApiClient: :param on_finished: The function to be called after the result is parsed. """ - url = "{}/clusters/{}/status".format(self.CLUSTER_API_ROOT, cluster_id) + url = f"{self.CLUSTER_API_ROOT}/clusters/{cluster_id}/status" self._http.get(url, scope = self._scope, callback = self._parseCallback(on_finished, CloudClusterStatus), @@ -100,7 +118,7 @@ class CloudApiClient: :param on_finished: The function to be called after the result is parsed. """ - url = "{}/jobs/upload".format(self.CURA_API_ROOT) + url = f"{self.CURA_API_ROOT}/jobs/upload" data = json.dumps({"data": request.toDict()}).encode() self._http.put(url, @@ -131,7 +149,7 @@ class CloudApiClient: # specific to sending print jobs) such as lost connection, unparsable responses, etc. are not returned here, but # handled in a generic way by the CloudApiClient. def requestPrint(self, cluster_id: str, job_id: str, on_finished: Callable[[CloudPrintResponse], Any], on_error) -> None: - url = "{}/clusters/{}/print/{}".format(self.CLUSTER_API_ROOT, cluster_id, job_id) + url = f"{self.CLUSTER_API_ROOT}/clusters/{cluster_id}/print/{job_id}" self._http.post(url, scope = self._scope, data = b"", @@ -150,7 +168,7 @@ class CloudApiClient: """ body = json.dumps({"data": data}).encode() if data else b"" - url = "{}/clusters/{}/print_jobs/{}/action/{}".format(self.CLUSTER_API_ROOT, cluster_id, cluster_job_id, action) + url = f"{self.CLUSTER_API_ROOT}/clusters/{cluster_id}/print_jobs/{cluster_job_id}/action/{action}" self._http.post(url, scope = self._scope, data = body, @@ -159,7 +177,7 @@ class CloudApiClient: def _createEmptyRequest(self, path: str, content_type: Optional[str] = "application/json") -> QNetworkRequest: """We override _createEmptyRequest in order to add the user credentials. - :param url: The URL to request + :param path: The URL to request :param content_type: The type of the body contents. """ @@ -168,7 +186,7 @@ class CloudApiClient: request.setHeader(QNetworkRequest.KnownHeaders.ContentTypeHeader, content_type) access_token = self._account.accessToken if access_token: - request.setRawHeader(b"Authorization", "Bearer {}".format(access_token).encode()) + request.setRawHeader(b"Authorization", f"Bearer {access_token}".encode()) return request @staticmethod @@ -189,9 +207,9 @@ class CloudApiClient: Logger.logException("e", "Could not parse the stardust response: %s", error.toDict()) return status_code, {"errors": [error.toDict()]} - def _parseModels(self, response: Dict[str, Any], on_finished: Union[Callable[[CloudApiClientModel], Any], - Callable[[List[CloudApiClientModel]], Any]], model_class: Type[CloudApiClientModel]) -> None: - """Parses the given models and calls the correct callback depending on the result. + def _parseResponse(self, response: Dict[str, Any], on_finished: Union[Callable[[CloudApiClientModel], Any], + Callable[[List[CloudApiClientModel]], Any]], model_class: Type[CloudApiClientModel]) -> None: + """Parses the given response and calls the correct callback depending on the result. :param response: The response from the server, after being converted to a dict. :param on_finished: The callback in case the response is successful. @@ -200,7 +218,10 @@ class CloudApiClient: if "data" in response: data = response["data"] - if isinstance(data, list): + if "status" in data and data["status"] == "wait_approval": + on_finished_empty = cast(Callable[[List], Any], on_finished) + on_finished_empty([]) + elif isinstance(data, list): results = [model_class(**c) for c in data] # type: List[CloudApiClientModel] on_finished_list = cast(Callable[[List[CloudApiClientModel]], Any], on_finished) on_finished_list(results) @@ -242,7 +263,7 @@ class CloudApiClient: if status_code >= 300 and on_error is not None: on_error() else: - self._parseModels(response, on_finished, model) + self._parseResponse(response, on_finished, model) self._anti_gc_callbacks.append(parse) return parse diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py index 8c45ce537f..c5c144d273 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py @@ -1,16 +1,15 @@ -# Copyright (c) 2021 Ultimaker B.V. -# Cura is released under the terms of the LGPLv3 or higher. +# Copyright (c) 2022 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. from time import time import os -from typing import cast, List, Optional, TYPE_CHECKING +from typing import cast, List, Optional from PyQt6.QtCore import QObject, QUrl, pyqtProperty, pyqtSignal, pyqtSlot from PyQt6.QtGui import QDesktopServices from PyQt6.QtNetwork import QNetworkReply, QNetworkRequest # Parse errors specific to print job uploading. from UM import i18nCatalog -from UM.Backend.Backend import BackendState from UM.FileHandler.FileHandler import FileHandler from UM.Logger import Logger from UM.Scene.SceneNode import SceneNode @@ -18,9 +17,12 @@ from UM.Version import Version from cura.CuraApplication import CuraApplication from cura.PrinterOutput.NetworkedPrinterOutputDevice import AuthState from cura.PrinterOutput.PrinterOutputDevice import ConnectionType +from cura.Scene.GCodeListDecorator import GCodeListDecorator +from cura.Scene.SliceableObjectDecorator import SliceableObjectDecorator from .CloudApiClient import CloudApiClient from ..ExportFileJob import ExportFileJob +from ..Messages.PrintJobAwaitingApprovalMessage import PrintJobPendingApprovalMessage from ..UltimakerNetworkedPrinterOutputDevice import UltimakerNetworkedPrinterOutputDevice from ..Messages.PrintJobUploadBlockedMessage import PrintJobUploadBlockedMessage from ..Messages.PrintJobUploadErrorMessage import PrintJobUploadErrorMessage @@ -41,7 +43,7 @@ I18N_CATALOG = i18nCatalog("cura") class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): """The cloud output device is a network output device that works remotely but has limited functionality. - Currently it only supports viewing the printer and print job status and adding a new job to the queue. + Currently, it only supports viewing the printer and print job status and adding a new job to the queue. As such, those methods have been implemented here. Note that this device represents a single remote cluster, not a list of multiple clusters. """ @@ -58,7 +60,7 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): PRINT_JOB_ACTIONS_MIN_VERSION = Version("5.2.12") # Notify can only use signals that are defined by the class that they are in, not inherited ones. - # Therefore we create a private signal used to trigger the printersChanged signal. + # Therefore, we create a private signal used to trigger the printersChanged signal. _cloudClusterPrintersChanged = pyqtSignal() def __init__(self, api_client: CloudApiClient, cluster: CloudClusterResponse, parent: QObject = None) -> None: @@ -96,6 +98,8 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): # Trigger the printersChanged signal when the private signal is triggered. self.printersChanged.connect(self._cloudClusterPrintersChanged) + # Trigger the permissionsChanged signal when the account's permissions change. + self._account.permissionsChanged.connect(self.permissionsChanged) # Keep server string of the last generated time to avoid updating models more than once for the same response self._received_printers = None # type: Optional[List[ClusterPrinterStatus]] @@ -107,6 +111,9 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): self._pre_upload_print_job = None # type: Optional[CloudPrintJobResponse] self._uploaded_print_job = None # type: Optional[CloudPrintJobResponse] + CuraApplication.getInstance().getBackend().backendDone.connect(self._resetPrintJob) + CuraApplication.getInstance().getController().getScene().sceneChanged.connect(self._onSceneChanged) + def connect(self) -> None: """Connects this device.""" @@ -114,8 +121,6 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): return Logger.log("i", "Attempting to connect to cluster %s", self.key) super().connect() - - CuraApplication.getInstance().getBackend().backendStateChange.connect(self._onBackendStateChange) self._update() def disconnect(self) -> None: @@ -125,11 +130,14 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): return super().disconnect() Logger.log("i", "Disconnected from cluster %s", self.key) - CuraApplication.getInstance().getBackend().backendStateChange.disconnect(self._onBackendStateChange) - def _onBackendStateChange(self, _: BackendState) -> None: - """Resets the print job that was uploaded to force a new upload, runs whenever the user re-slices.""" + def _onSceneChanged(self, node: SceneNode): + # This will reset the print job if a ufp file is loaded. This forces a new upload when printing via cloud from ufp. + if node.getDecorator(GCodeListDecorator) or node.getDecorator(SliceableObjectDecorator): + self._resetPrintJob() + def _resetPrintJob(self) -> None: + """Resets the print job that was uploaded to force a new upload, runs whenever slice finishes.""" self._tool_path = None self._pre_upload_print_job = None self._uploaded_print_job = None @@ -200,7 +208,8 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): # Note that self.writeFinished is called in _onPrintUploadCompleted as well. if self._uploaded_print_job: Logger.log("i", "Current mesh is already attached to a print-job, immediately request reprint.") - self._api.requestPrint(self.key, self._uploaded_print_job.job_id, self._onPrintUploadCompleted, self._onPrintUploadSpecificError) + self._api.requestPrint(self.key, self._uploaded_print_job.job_id, self._onPrintUploadCompleted, + self._onPrintUploadSpecificError) return # Export the scene to the correct file type. @@ -228,6 +237,7 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): :param job_response: The response received from the cloud API. """ + if not self._tool_path: return self._onUploadError() self._pre_upload_print_job = job_response # store the last uploaded job to prevent re-upload of the same file @@ -242,12 +252,15 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): self._progress.update(100) print_job = cast(CloudPrintJobResponse, self._pre_upload_print_job) - if not print_job: # It's possible that another print job is requested in the meanwhile, which then fails to upload with an error, which sets self._pre_uploaded_print_job to `None`. + if not print_job: + # It's possible that another print job is requested in the meanwhile, which then fails to upload with an + # error, which sets self._pre_uploaded_print_job to `None`. self._pre_upload_print_job = None self._uploaded_print_job = None Logger.log("w", "Interference from another job uploaded at roughly the same time, not uploading print!") return # Prevent a crash. - self._api.requestPrint(self.key, print_job.job_id, self._onPrintUploadCompleted, self._onPrintUploadSpecificError) + self._api.requestPrint(self.key, print_job.job_id, self._onPrintUploadCompleted, + self._onPrintUploadSpecificError) def _onPrintUploadCompleted(self, response: CloudPrintResponse) -> None: """Shows a message when the upload has succeeded @@ -256,16 +269,21 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): """ self._uploaded_print_job = self._pre_upload_print_job self._progress.hide() - message = PrintJobUploadSuccessMessage() - message.addAction("monitor print", - name=I18N_CATALOG.i18nc("@action:button", "Monitor print"), - icon="", - description=I18N_CATALOG.i18nc("@action:tooltip", "Track the print in Ultimaker Digital Factory"), - button_align=message.ActionButtonAlignment.ALIGN_RIGHT) - df_url = f"https://digitalfactory.ultimaker.com/app/jobs/{self._cluster.cluster_id}?utm_source=cura&utm_medium=software&utm_campaign=message-printjob-sent" - message.pyQtActionTriggered.connect(lambda message, action: (QDesktopServices.openUrl(QUrl(df_url)), message.hide())) - message.show() + if response: + message = PrintJobUploadSuccessMessage() + message.addAction("monitor print", + name=I18N_CATALOG.i18nc("@action:button", "Monitor print"), + icon="", + description=I18N_CATALOG.i18nc("@action:tooltip", "Track the print in Ultimaker Digital Factory"), + button_align=message.ActionButtonAlignment.ALIGN_RIGHT) + df_url = f"https://digitalfactory.ultimaker.com/app/jobs/{self._cluster.cluster_id}?utm_source=cura&utm_medium=software&utm_campaign=message-printjob-sent" + message.pyQtActionTriggered.connect(lambda message, action: (QDesktopServices.openUrl(QUrl(df_url)), message.hide())) + + message.show() + else: + PrintJobPendingApprovalMessage(self._cluster.cluster_id).show() + self.writeFinished.emit() def _onPrintUploadSpecificError(self, reply: "QNetworkReply", _: "QNetworkReply.NetworkError"): @@ -276,7 +294,9 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): if error_code == 409: PrintJobUploadQueueFullMessage().show() else: - PrintJobUploadErrorMessage(I18N_CATALOG.i18nc("@error:send", "Unknown error code when uploading print job: {0}", error_code)).show() + PrintJobUploadErrorMessage(I18N_CATALOG.i18nc("@error:send", + "Unknown error code when uploading print job: {0}", + error_code)).show() Logger.log("w", "Upload of print job failed specifically with error code {}".format(error_code)) @@ -334,11 +354,44 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): @pyqtSlot(name="openPrintJobControlPanel") def openPrintJobControlPanel(self) -> None: - QDesktopServices.openUrl(QUrl(self.clusterCloudUrl + "?utm_source=cura&utm_medium=software&utm_campaign=monitor-manage-browser")) + QDesktopServices.openUrl(QUrl(f"{self.clusterCloudUrl}?utm_source=cura&utm_medium=software&" + f"utm_campaign=monitor-manage-browser")) @pyqtSlot(name="openPrinterControlPanel") def openPrinterControlPanel(self) -> None: - QDesktopServices.openUrl(QUrl(self.clusterCloudUrl + "?utm_source=cura&utm_medium=software&utm_campaign=monitor-manage-printer")) + QDesktopServices.openUrl(QUrl(f"{self.clusterCloudUrl}?utm_source=cura&utm_medium=software" + f"&utm_campaign=monitor-manage-printer")) + + permissionsChanged = pyqtSignal() + + @pyqtProperty(bool, notify = permissionsChanged) + def canReadPrintJobs(self) -> bool: + """ + Whether this user can read the list of print jobs and their properties. + """ + return "digital-factory.print-job.read" in self._account.permissions + + @pyqtProperty(bool, notify = permissionsChanged) + def canWriteOthersPrintJobs(self) -> bool: + """ + Whether this user can change things about print jobs made by other + people. + """ + return "digital-factory.print-job.write" in self._account.permissions + + @pyqtProperty(bool, notify = permissionsChanged) + def canWriteOwnPrintJobs(self) -> bool: + """ + Whether this user can change things about print jobs made by them. + """ + return "digital-factory.print-job.write.own" in self._account.permissions + + @pyqtProperty(bool, constant = True) + def canReadPrinterDetails(self) -> bool: + """ + Whether this user can read the status of the printer. + """ + return "digital-factory.printer.read" in self._account.permissions @property def clusterData(self) -> CloudClusterResponse: @@ -357,4 +410,8 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): """Gets the URL on which to monitor the cluster via the cloud.""" root_url_prefix = "-staging" if self._account.is_staging else "" - return "https://digitalfactory{}.ultimaker.com/app/jobs/{}".format(root_url_prefix, self.clusterData.cluster_id) + return f"https://digitalfactory{root_url_prefix}.ultimaker.com/app/jobs/{self.clusterData.cluster_id}" + + def __del__(self): + CuraApplication.getInstance().getBackend().backendDone.disconnect(self._resetPrintJob) + CuraApplication.getInstance().getController().getScene().sceneChanged.disconnect(self._onSceneChanged) diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py index f7f659124c..5ec0db8a66 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py @@ -1,5 +1,5 @@ -# Copyright (c) 2021 Ultimaker B.V. -# Cura is released under the terms of the LGPLv3 or higher. +# Copyright (c) 2022 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. import os from typing import Dict, List, Optional, Set @@ -9,7 +9,6 @@ from PyQt6.QtWidgets import QMessageBox from UM import i18nCatalog from UM.Logger import Logger # To log errors talking to the API. -from UM.Message import Message from UM.Settings.Interfaces import ContainerInterface from UM.Signal import Signal from UM.Util import parseBool @@ -20,16 +19,19 @@ from cura.Settings.CuraContainerRegistry import CuraContainerRegistry # To upda from cura.Settings.CuraStackBuilder import CuraStackBuilder from cura.Settings.GlobalStack import GlobalStack from cura.UltimakerCloud.UltimakerCloudConstants import META_CAPABILITIES, META_UM_LINKED_TO_ACCOUNT +from .AbstractCloudOutputDevice import AbstractCloudOutputDevice from .CloudApiClient import CloudApiClient from .CloudOutputDevice import CloudOutputDevice +from ..Messages.RemovedPrintersMessage import RemovedPrintersMessage from ..Models.Http.CloudClusterResponse import CloudClusterResponse +from ..Messages.NewPrinterDetectedMessage import NewPrinterDetectedMessage class CloudOutputDeviceManager: """The cloud output device manager is responsible for using the Ultimaker Cloud APIs to manage remote clusters. Keeping all cloud related logic in this class instead of the UM3OutputDevicePlugin results in more readable code. - API spec is available on https://api.ultimaker.com/docs/connect/spec/. + API spec is available on https://docs.api.ultimaker.com/connect/index.html. """ META_CLUSTER_ID = "um_cloud_cluster_id" @@ -46,21 +48,22 @@ class CloudOutputDeviceManager: def __init__(self) -> None: # Persistent dict containing the remote clusters for the authenticated user. - self._remote_clusters = {} # type: Dict[str, CloudOutputDevice] + self._remote_clusters: Dict[str, CloudOutputDevice] = {} + + self._abstract_clusters: Dict[str, AbstractCloudOutputDevice] = {} # Dictionary containing all the cloud printers loaded in Cura - self._um_cloud_printers = {} # type: Dict[str, GlobalStack] + self._um_cloud_printers: Dict[str, GlobalStack] = {} - self._account = CuraApplication.getInstance().getCuraAPI().account # type: Account + self._account: Account = CuraApplication.getInstance().getCuraAPI().account self._api = CloudApiClient(CuraApplication.getInstance(), on_error = lambda error: Logger.log("e", str(error))) self._account.loginStateChanged.connect(self._onLoginStateChanged) - self._removed_printers_message = None # type: Optional[Message] + self._removed_printers_message: Optional[RemovedPrintersMessage] = None # Ensure we don't start twice. self._running = False self._syncing = False - CuraApplication.getInstance().getContainerRegistry().containerRemoved.connect(self._printerRemoved) def start(self): @@ -113,8 +116,8 @@ class CloudOutputDeviceManager: CuraApplication.getInstance().getContainerRegistry().findContainerStacks( type = "machine") if m.getMetaDataEntry(self.META_CLUSTER_ID, None)} new_clusters = [] - all_clusters = {c.cluster_id: c for c in clusters} # type: Dict[str, CloudClusterResponse] - online_clusters = {c.cluster_id: c for c in clusters if c.is_online} # type: Dict[str, CloudClusterResponse] + all_clusters: Dict[str, CloudClusterResponse] = {c.cluster_id: c for c in clusters} + online_clusters: Dict[str, CloudClusterResponse] = {c.cluster_id: c for c in clusters if c.is_online} # Add the new printers in Cura. for device_id, cluster_data in all_clusters.items(): @@ -130,8 +133,11 @@ class CloudOutputDeviceManager: self._um_cloud_printers[device_id].setMetaDataEntry(META_UM_LINKED_TO_ACCOUNT, True) if not self._um_cloud_printers[device_id].getMetaDataEntry(META_CAPABILITIES, None): self._um_cloud_printers[device_id].setMetaDataEntry(META_CAPABILITIES, ",".join(cluster_data.capabilities)) - self._onDevicesDiscovered(new_clusters) + # We want a machine stack per remote printer that we discovered. Create them now! + self._createMachineStacksForDiscoveredClusters(new_clusters) + + # Update the online vs offline status for all found devices self._updateOnlinePrinters(all_clusters) # Hide the current removed_printers_message, if there is any @@ -152,6 +158,7 @@ class CloudOutputDeviceManager: if new_clusters or offline_device_keys or removed_device_keys: self.discoveredDevicesChanged.emit() + if offline_device_keys: # If the removed device was active we should connect to the new active device self._connectToActiveMachine() @@ -165,54 +172,72 @@ class CloudOutputDeviceManager: self._syncing = False self._account.setSyncState(self.SYNC_SERVICE_NAME, SyncState.ERROR) - def _onDevicesDiscovered(self, clusters: List[CloudClusterResponse]) -> None: + def _requestWrite(self, unique_id: str, nodes: List["SceneNode"]): + for remote in self._remote_clusters.values(): + if unique_id == remote.name: # No other id-type would match. Assume cloud doesn't have duplicate names. + remote.requestWrite(nodes) + return + Logger.log("e", f"Failed writing to specific cloud printer: {unique_id} not in remote clusters.") + + def _createMachineStacksForDiscoveredClusters(self, discovered_clusters: List[CloudClusterResponse]) -> None: """**Synchronously** create machines for discovered devices Any new machines are made available to the user. - May take a long time to complete. As this code needs access to the Application - and blocks the GIL, creating a Job for this would not make sense. - Shows a Message informing the user of progress. + May take a long time to complete. This currently forcefully calls the "processEvents", which isn't + the nicest solution out there. We might need to consider moving this into a job later! """ - new_devices = [] + new_output_devices: List[CloudOutputDevice] = [] remote_clusters_added = False - host_guid_map = {machine.getMetaDataEntry(self.META_HOST_GUID): device_cluster_id - for device_cluster_id, machine in self._um_cloud_printers.items() - if machine.getMetaDataEntry(self.META_HOST_GUID)} + + # Create a map that maps the HOST_GUID to the DEVICE_CLUSTER_ID + host_guid_map: Dict[str, str] = {machine.getMetaDataEntry(self.META_HOST_GUID): device_cluster_id + for device_cluster_id, machine in self._um_cloud_printers.items() + if machine.getMetaDataEntry(self.META_HOST_GUID)} + machine_manager = CuraApplication.getInstance().getMachineManager() - for cluster_data in clusters: - device = CloudOutputDevice(self._api, cluster_data) + for cluster_data in discovered_clusters: + output_device = CloudOutputDevice(self._api, cluster_data) + + if cluster_data.printer_type not in self._abstract_clusters: + self._abstract_clusters[cluster_data.printer_type] = AbstractCloudOutputDevice(self._api, cluster_data.printer_type, self._requestWrite, self.refreshConnections) + # Ensure that the abstract machine is added (either because it was never added, or it somehow got + # removed) + _abstract_machine = CuraStackBuilder.createAbstractMachine(cluster_data.printer_type) + # If the machine already existed before, it will be present in the host_guid_map if cluster_data.host_guid in host_guid_map: - machine = machine_manager.getMachine(device.printerType, {self.META_HOST_GUID: cluster_data.host_guid}) - if machine and machine.getMetaDataEntry(self.META_CLUSTER_ID) != device.key: + machine = machine_manager.getMachine(output_device.printerType, {self.META_HOST_GUID: cluster_data.host_guid}) + if machine and machine.getMetaDataEntry(self.META_CLUSTER_ID) != output_device.key: # If the retrieved device has a different cluster_id than the existing machine, bring the existing # machine up-to-date. - self._updateOutdatedMachine(outdated_machine = machine, new_cloud_output_device = device) + self._updateOutdatedMachine(outdated_machine = machine, new_cloud_output_device = output_device) # Create a machine if we don't already have it. Do not make it the active machine. # We only need to add it if it wasn't already added by "local" network or by cloud. - if machine_manager.getMachine(device.printerType, {self.META_CLUSTER_ID: device.key}) is None \ - and machine_manager.getMachine(device.printerType, {self.META_NETWORK_KEY: cluster_data.host_name + "*"}) is None: # The host name is part of the network key. - new_devices.append(device) - elif device.getId() not in self._remote_clusters: - self._remote_clusters[device.getId()] = device + if machine_manager.getMachine(output_device.printerType, {self.META_CLUSTER_ID: output_device.key}) is None \ + and machine_manager.getMachine(output_device.printerType, {self.META_NETWORK_KEY: cluster_data.host_name + "*"}) is None: # The host name is part of the network key. + new_output_devices.append(output_device) + elif output_device.getId() not in self._remote_clusters: + self._remote_clusters[output_device.getId()] = output_device remote_clusters_added = True # If a printer that was removed from the account is re-added, change its metadata to mark it not removed # from the account - elif not parseBool(self._um_cloud_printers[device.key].getMetaDataEntry(META_UM_LINKED_TO_ACCOUNT, "true")): - self._um_cloud_printers[device.key].setMetaDataEntry(META_UM_LINKED_TO_ACCOUNT, True) + elif not parseBool(self._um_cloud_printers[output_device.key].getMetaDataEntry(META_UM_LINKED_TO_ACCOUNT, "true")): + self._um_cloud_printers[output_device.key].setMetaDataEntry(META_UM_LINKED_TO_ACCOUNT, True) + # As adding a lot of machines might take some time, ensure that the GUI (and progress message) is updated + CuraApplication.getInstance().processEvents() # Inform the Cloud printers model about new devices. new_devices_list_of_dicts = [{ "key": d.getId(), "name": d.name, "machine_type": d.printerTypeName, - "firmware_version": d.firmwareVersion} for d in new_devices] + "firmware_version": d.firmwareVersion} for d in new_output_devices] discovered_cloud_printers_model = CuraApplication.getInstance().getDiscoveredCloudPrintersModel() discovered_cloud_printers_model.addDiscoveredCloudPrinters(new_devices_list_of_dicts) - if not new_devices: + if not new_output_devices: if remote_clusters_added: self._connectToActiveMachine() return @@ -220,55 +245,29 @@ class CloudOutputDeviceManager: # Sort new_devices on online status first, alphabetical second. # Since the first device might be activated in case there is no active printer yet, # it would be nice to prioritize online devices - online_cluster_names = {c.friendly_name.lower() for c in clusters if c.is_online and not c.friendly_name is None} - new_devices.sort(key = lambda x: ("a{}" if x.name.lower() in online_cluster_names else "b{}").format(x.name.lower())) + online_cluster_names = {c.friendly_name.lower() for c in discovered_clusters if c.is_online and not c.friendly_name is None} + new_output_devices.sort(key = lambda x: ("a{}" if x.name.lower() in online_cluster_names else "b{}").format(x.name.lower())) - message = Message( - title = self.i18n_catalog.i18ncp( - "info:status", - "New printer detected from your Ultimaker account", - "New printers detected from your Ultimaker account", - len(new_devices) - ), - progress = 0, - lifetime = 0, - message_type = Message.MessageType.POSITIVE - ) + message = NewPrinterDetectedMessage(num_printers_found = len(new_output_devices)) message.show() new_devices_added = [] - for idx, device in enumerate(new_devices): - message_text = self.i18n_catalog.i18nc("info:status Filled in with printer name and printer model.", "Adding printer {name} ({model}) from your account").format(name = device.name, model = device.printerTypeName) - message.setText(message_text) - if len(new_devices) > 1: - message.setProgress((idx / len(new_devices)) * 100) - CuraApplication.getInstance().processEvents() - self._remote_clusters[device.getId()] = device + for idx, output_device in enumerate(new_output_devices): + message.updateProgressText(output_device) + + self._remote_clusters[output_device.getId()] = output_device # If there is no active machine, activate the first available cloud printer activate = not CuraApplication.getInstance().getMachineManager().activeMachine - if self._createMachineFromDiscoveredDevice(device.getId(), activate = activate): - new_devices_added.append(device) + if self._createMachineFromDiscoveredDevice(output_device.getId(), activate = activate): + new_devices_added.append(output_device) - message.setProgress(None) + message.finalize(new_devices_added, new_output_devices) - max_disp_devices = 3 - if len(new_devices_added) > max_disp_devices: - num_hidden = len(new_devices_added) - max_disp_devices - device_name_list = ["
  • {} ({})
  • ".format(device.name, device.printerTypeName) for device in new_devices[0:max_disp_devices]] - device_name_list.append("
  • " + self.i18n_catalog.i18ncp("info:{0} gets replaced by a number of printers", "... and {0} other", "... and {0} others", num_hidden) + "
  • ") - device_names = "".join(device_name_list) - else: - device_names = "".join(["
  • {} ({})
  • ".format(device.name, device.printerTypeName) for device in new_devices_added]) - if new_devices_added: - message_text = self.i18n_catalog.i18nc("info:status", "Printers added from Digital Factory:") + "
      " + device_names + "
    " - message.setText(message_text) - else: - message.hide() - - def _updateOnlinePrinters(self, printer_responses: Dict[str, CloudClusterResponse]) -> None: + @staticmethod + def _updateOnlinePrinters(printer_responses: Dict[str, CloudClusterResponse]) -> None: """ Update the metadata of the printers to store whether they are online or not. :param printer_responses: The responses received from the API about the printer statuses. @@ -291,7 +290,8 @@ class CloudOutputDeviceManager: old_cluster_id = outdated_machine.getMetaDataEntry(self.META_CLUSTER_ID) outdated_machine.setMetaDataEntry(self.META_CLUSTER_ID, new_cloud_output_device.key) outdated_machine.setMetaDataEntry(META_UM_LINKED_TO_ACCOUNT, True) - # Cleanup the remainings of the old CloudOutputDevice(old_cluster_id) + + # Cleanup the remains of the old CloudOutputDevice(old_cluster_id) self._um_cloud_printers[new_cloud_output_device.key] = self._um_cloud_printers.pop(old_cluster_id) output_device_manager = CuraApplication.getInstance().getOutputDeviceManager() if old_cluster_id in output_device_manager.getOutputDeviceIds(): @@ -321,56 +321,19 @@ class CloudOutputDeviceManager: for device_id in removed_device_ids: if not parseBool(self._um_cloud_printers[device_id].getMetaDataEntry(META_UM_LINKED_TO_ACCOUNT, "true")): ignored_device_ids.add(device_id) + # Keep the reported_device_ids list in a class variable, so that the message button actions can access it and # take the necessary steps to fulfill their purpose. self.reported_device_ids = removed_device_ids - ignored_device_ids if not self.reported_device_ids: return - # Generate message - self._removed_printers_message = Message( - title = self.i18n_catalog.i18ncp( - "info:status", - "A cloud connection is not available for a printer", - "A cloud connection is not available for some printers", - len(self.reported_device_ids) - ), - message_type = Message.MessageType.WARNING - ) - device_names = "".join(["
  • {} ({})
  • ".format(self._um_cloud_printers[device].name, self._um_cloud_printers[device].definition.name) for device in self.reported_device_ids]) - message_text = self.i18n_catalog.i18ncp( - "info:status", - "This printer is not linked to the Digital Factory:", - "These printers are not linked to the Digital Factory:", - len(self.reported_device_ids) - ) - message_text += "
      {}

    ".format(device_names) - digital_factory_string = self.i18n_catalog.i18nc("info:name", "Ultimaker Digital Factory") - - message_text += self.i18n_catalog.i18nc( - "info:status", - "To establish a connection, please visit the {website_link}".format(website_link = "{}.".format(digital_factory_string)) - ) - self._removed_printers_message.setText(message_text) - self._removed_printers_message.addAction("keep_printer_configurations_action", - name = self.i18n_catalog.i18nc("@action:button", "Keep printer configurations"), - icon = "", - description = "Keep cloud printers in Ultimaker Cura when not connected to your account.", - button_align = Message.ActionButtonAlignment.ALIGN_RIGHT) - self._removed_printers_message.addAction("remove_printers_action", - name = self.i18n_catalog.i18nc("@action:button", "Remove printers"), - icon = "", - description = "Remove cloud printer(s) which aren't linked to your account.", - button_style = Message.ActionButtonStyle.SECONDARY, - button_align = Message.ActionButtonAlignment.ALIGN_LEFT) - self._removed_printers_message.actionTriggered.connect(self._onRemovedPrintersMessageActionTriggered) - output_device_manager = CuraApplication.getInstance().getOutputDeviceManager() # Remove the output device from the printers for device_id in removed_device_ids: - device = self._um_cloud_printers.get(device_id, None) # type: Optional[GlobalStack] - if not device: + global_stack: Optional[GlobalStack] = self._um_cloud_printers.get(device_id, None) + if not global_stack: continue if device_id in output_device_manager.getOutputDeviceIds(): output_device_manager.removeOutputDevice(device_id) @@ -378,12 +341,19 @@ class CloudOutputDeviceManager: del self._remote_clusters[device_id] # Update the printer's metadata to mark it as not linked to the account - device.setMetaDataEntry(META_UM_LINKED_TO_ACCOUNT, False) + global_stack.setMetaDataEntry(META_UM_LINKED_TO_ACCOUNT, False) + # Generate message to show + device_names = "".join(["
  • {} ({})
  • ".format(self._um_cloud_printers[device].name, + self._um_cloud_printers[device].definition.name) for device in + self.reported_device_ids]) + self._removed_printers_message = RemovedPrintersMessage(self.reported_device_ids, device_names) + self._removed_printers_message.actionTriggered.connect(self._onRemovedPrintersMessageActionTriggered) self._removed_printers_message.show() def _onDiscoveredDeviceRemoved(self, device_id: str) -> None: - device = self._remote_clusters.pop(device_id, None) # type: Optional[CloudOutputDevice] + """ Remove the CloudOutputDevices for printers that are offline""" + device: Optional[CloudOutputDevice] = self._remote_clusters.pop(device_id, None) if not device: return device.close() @@ -392,15 +362,15 @@ class CloudOutputDeviceManager: output_device_manager.removeOutputDevice(device.key) def _createMachineFromDiscoveredDevice(self, key: str, activate: bool = True) -> bool: - device = self._remote_clusters[key] + device = self._remote_clusters.get(key) if not device: return False # Create a new machine. - # We do not use use MachineManager.addMachine here because we need to set the cluster ID before activating it. + # We do not use MachineManager.addMachine here because we need to set the cluster ID before activating it. new_machine = CuraStackBuilder.createMachine(device.name, device.printerType, show_warning_message=False) if not new_machine: - Logger.log("e", "Failed creating a new machine") + Logger.error(f"Failed creating a new machine for {device.name}") return False self._setOutputDeviceMetadata(device, new_machine) @@ -412,15 +382,19 @@ class CloudOutputDeviceManager: def _connectToActiveMachine(self) -> None: """Callback for when the active machine was changed by the user""" - active_machine = CuraApplication.getInstance().getGlobalContainerStack() if not active_machine: return + # Check if we should directly connect with a "normal" CloudOutputDevice or that we should connect to an + # 'abstract' one output_device_manager = CuraApplication.getInstance().getOutputDeviceManager() stored_cluster_id = active_machine.getMetaDataEntry(self.META_CLUSTER_ID) local_network_key = active_machine.getMetaDataEntry(self.META_NETWORK_KEY) - for device in list(self._remote_clusters.values()): # Make a copy of the remote devices list, to prevent modifying the list while iterating, if a device gets added asynchronously. + + # Copy of the device list, to prevent modifying the list while iterating, if a device gets added asynchronously. + remote_cluster_copy: List[CloudOutputDevice] = list(self._remote_clusters.values()) + for device in remote_cluster_copy: if device.key == stored_cluster_id: # Connect to it if the stored ID matches. self._connectToOutputDevice(device, active_machine) @@ -431,6 +405,14 @@ class CloudOutputDeviceManager: # Remove device if it is not meant for the active machine. output_device_manager.removeOutputDevice(device.key) + # Update state of all abstract output devices + remote_abstract_cluster_copy: List[CloudOutputDevice] = list(self._abstract_clusters.values()) + for device in remote_abstract_cluster_copy: + if device.printerType == active_machine.definition.getId() and parseBool(active_machine.getMetaDataEntry("is_abstract_machine", False)): + self._connectToAbstractOutputDevice(device, active_machine) + elif device.key in output_device_manager.getOutputDeviceIds(): + output_device_manager.removeOutputDevice(device.key) + def _setOutputDeviceMetadata(self, device: CloudOutputDevice, machine: GlobalStack): machine.setName(device.name) machine.setMetaDataEntry(self.META_CLUSTER_ID, device.key) @@ -438,13 +420,24 @@ class CloudOutputDeviceManager: machine.setMetaDataEntry("group_name", device.name) machine.setMetaDataEntry("group_size", device.clusterSize) digital_factory_string = self.i18n_catalog.i18nc("info:name", "Ultimaker Digital Factory") - digital_factory_link = "{digital_factory_string}".format(digital_factory_string = digital_factory_string) + digital_factory_link = f"{digital_factory_string}" removal_warning_string = self.i18n_catalog.i18nc("@message {printer_name} is replaced with the name of the printer", "{printer_name} will be removed until the next account sync.").format(printer_name = device.name) \ + "
    " + self.i18n_catalog.i18nc("@message {printer_name} is replaced with the name of the printer", "To remove {printer_name} permanently, visit {digital_factory_link}").format(printer_name = device.name, digital_factory_link = digital_factory_link) \ + "

    " + self.i18n_catalog.i18nc("@message {printer_name} is replaced with the name of the printer", "Are you sure you want to remove {printer_name} temporarily?").format(printer_name = device.name) machine.setMetaDataEntry("removal_warning", removal_warning_string) machine.addConfiguredConnectionType(device.connectionType.value) + def _connectToAbstractOutputDevice(self, device: AbstractCloudOutputDevice, machine: GlobalStack) -> None: + Logger.debug(f"Attempting to connect to abstract machine {machine.id}") + if not device.isConnected(): + device.connect() + machine.addConfiguredConnectionType(device.connectionType.value) + + output_device_manager = CuraApplication.getInstance().getOutputDeviceManager() + if device.key not in output_device_manager.getOutputDeviceIds(): + output_device_manager.addOutputDevice(device) + def _connectToOutputDevice(self, device: CloudOutputDevice, machine: GlobalStack) -> None: """Connects to an output device and makes sure it is registered in the output device manager.""" @@ -470,7 +463,7 @@ class CloudOutputDeviceManager: if container_cluster_id in self._remote_clusters.keys(): del self._remote_clusters[container_cluster_id] - def _onRemovedPrintersMessageActionTriggered(self, removed_printers_message: Message, action: str) -> None: + def _onRemovedPrintersMessageActionTriggered(self, removed_printers_message: RemovedPrintersMessage, action: str) -> None: if action == "keep_printer_configurations_action": removed_printers_message.hide() elif action == "remove_printers_action": @@ -481,12 +474,16 @@ class CloudOutputDeviceManager: question_title = self.i18n_catalog.i18nc("@title:window", "Remove printers?") question_content = self.i18n_catalog.i18ncp( "@label", - "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?", - "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?", + "You are about to remove {0} printer from Cura. This action cannot be undone.\n" + "Are you sure you want to continue?", + "You are about to remove {0} printers from Cura. This action cannot be undone.\n" + "Are you sure you want to continue?", len(remove_printers_ids) ) if remove_printers_ids == all_ids: - question_content = self.i18n_catalog.i18nc("@label", "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?") + question_content = self.i18n_catalog.i18nc("@label", "You are about to remove all printers from Cura. " + "This action cannot be undone.\n" + "Are you sure you want to continue?") result = QMessageBox.question(None, question_title, question_content) if result == QMessageBox.StandardButton.No: return diff --git a/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py b/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py index 9014cc2d70..f43b20151c 100644 --- a/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py +++ b/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py @@ -16,7 +16,7 @@ class LegacyDeviceNoLongerSupportedMessage(Message): def __init__(self) -> None: super().__init__( text = I18N_CATALOG.i18nc("@info:status", "You are attempting to connect to a printer that is not " - "running Ultimaker Connect. Please update the printer to the " + "running UltiMaker Connect. Please update the printer to the " "latest firmware."), title = I18N_CATALOG.i18nc("@info:title", "Update your printer"), lifetime = 10, diff --git a/plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py b/plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py new file mode 100644 index 0000000000..d85ade9dce --- /dev/null +++ b/plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py @@ -0,0 +1,60 @@ +# Copyright (c) 2022 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. +from UM import i18nCatalog +from UM.Message import Message +from cura.CuraApplication import CuraApplication + + +class NewPrinterDetectedMessage(Message): + i18n_catalog = i18nCatalog("cura") + + def __init__(self, num_printers_found: int) -> None: + super().__init__(title = self.i18n_catalog.i18ncp("info:status", + "New printer detected from your Ultimaker account", + "New printers detected from your Ultimaker account", + num_printers_found), + progress = 0, + lifetime = 0, + message_type = Message.MessageType.POSITIVE) + self._printers_added = 0 + self._num_printers_found = num_printers_found + + def updateProgressText(self, output_device): + """ + While the progress of adding printers is running, update the text displayed. + :param output_device: The output device that is being added. + :return: + """ + message_text = self.i18n_catalog.i18nc("info:status Filled in with printer name and printer model.", + "Adding printer {name} ({model}) from your account").format( + name=output_device.name, model=output_device.printerTypeName) + self.setText(message_text) + if self._num_printers_found > 1: + self.setProgress((self._printers_added / self._num_printers_found) * 100) + self._printers_added += 1 + + CuraApplication.getInstance().processEvents() + + def finalize(self, new_devices_added, new_output_devices): + self.setProgress(None) + num_devices_added = len(new_devices_added) + max_disp_devices = 3 + + if num_devices_added > max_disp_devices: + num_hidden = num_devices_added - max_disp_devices + device_name_list = ["
  • {} ({})
  • ".format(device.name, device.printerTypeName) for device in + new_output_devices[0: max_disp_devices]] + device_name_list.append( + "
  • " + self.i18n_catalog.i18ncp("info:{0} gets replaced by a number of printers", "... and {0} other", + "... and {0} others", num_hidden) + "
  • ") + device_names = "".join(device_name_list) + else: + device_names = "".join( + ["
  • {} ({})
  • ".format(device.name, device.printerTypeName) for device in new_devices_added]) + + if new_devices_added: + message_text = self.i18n_catalog.i18nc("info:status", + "Printers added from Digital Factory:") + f"
      {device_names}
    " + self.setText(message_text) + else: + self.hide() diff --git a/plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py b/plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py new file mode 100644 index 0000000000..c60d596da9 --- /dev/null +++ b/plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py @@ -0,0 +1,38 @@ +# Copyright (c) 2022 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. +from PyQt6.QtCore import QUrl +from PyQt6.QtGui import QDesktopServices + +from UM import i18nCatalog +from UM.Message import Message + + +I18N_CATALOG = i18nCatalog("cura") + + +class PrintJobPendingApprovalMessage(Message): + """Message shown when waiting for approval on an uploaded print job.""" + + def __init__(self, cluster_id: str) -> None: + super().__init__( + text = I18N_CATALOG.i18nc("@info:status", "You will receive a confirmation via email when the print job is approved"), + title=I18N_CATALOG.i18nc("@info:title", "The print job was successfully submitted"), + message_type=Message.MessageType.POSITIVE + ) + self.addAction("manage_print_jobs", I18N_CATALOG.i18nc("@action", "Manage print jobs"), "", "") + + self.addAction("learn_more", I18N_CATALOG.i18nc("@action", "Learn more"), "", "", + button_style = Message.ActionButtonStyle.LINK, + button_align = Message.ActionButtonAlignment.ALIGN_LEFT) + + self.actionTriggered.connect(self._onActionTriggered) + + self.cluster_id = cluster_id + + def _onActionTriggered(self, message: Message, action: str) -> None: + """ Callback function for the "Manage print jobs" button on the pending approval notification. """ + match action: + case "manage_print_jobs": + QDesktopServices.openUrl(QUrl(f"https://digitalfactory.ultimaker.com/app/jobs/{self._cluster.cluster_id}?utm_source=cura&utm_medium=software&utm_campaign=message-printjob-sent")) + case "learn_more": + QDesktopServices.openUrl(QUrl("https://support.ultimaker.com/hc/en-us/articles/5329940078620?utm_source=cura&utm_medium=software&utm_campaign=message-printjob-sent")) diff --git a/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py b/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py new file mode 100644 index 0000000000..e31615816e --- /dev/null +++ b/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py @@ -0,0 +1,53 @@ +# Copyright (c) 2022 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +from UM import i18nCatalog +from UM.Message import Message +from cura.CuraApplication import CuraApplication + + +class RemovedPrintersMessage(Message): + i18n_catalog = i18nCatalog("cura") + + def __init__(self, removed_devices, device_names) -> None: + self._removed_devices = removed_devices + + message_text = self.i18n_catalog.i18ncp( + "info:status", + "This printer is not linked to the Digital Factory:", + "These printers are not linked to the Digital Factory:", + len(self._removed_devices) + ) + message_text += "
      {}

    ".format(device_names) + + digital_factory_string = self.i18n_catalog.i18nc("info:name", "Ultimaker Digital Factory") + website_link = f"{digital_factory_string}." + + message_text += self.i18n_catalog.i18nc( + "info:status", + f"To establish a connection, please visit the {website_link}" + ) + + super().__init__(title=self.i18n_catalog.i18ncp("info:status", + "A cloud connection is not available for a printer", + "A cloud connection is not available for some printers", + len(self._removed_devices)), + message_type=Message.MessageType.WARNING, + text = message_text) + + self.addAction("keep_printer_configurations_action", + name=self.i18n_catalog.i18nc("@action:button", + "Keep printer configurations"), + icon="", + description="Keep cloud printers in Ultimaker Cura when not connected to your account.", + button_align=Message.ActionButtonAlignment.ALIGN_RIGHT) + self.addAction("remove_printers_action", + name=self.i18n_catalog.i18nc("@action:button", "Remove printers"), + icon="", + description="Remove cloud printer(s) which aren't linked to your account.", + button_style=Message.ActionButtonStyle.SECONDARY, + button_align=Message.ActionButtonAlignment.ALIGN_LEFT) + + + diff --git a/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py b/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py index ce6dd1de4d..c8f3be282e 100644 --- a/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py +++ b/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py @@ -8,7 +8,6 @@ from ..BaseModel import BaseModel class CloudClusterResponse(BaseModel): """Class representing a cloud connected cluster.""" - def __init__(self, cluster_id: str, host_guid: str, host_name: str, is_online: bool, status: str, host_internal_ip: Optional[str] = None, host_version: Optional[str] = None, friendly_name: Optional[str] = None, printer_type: str = "ultimaker3", printer_count: int = 1, diff --git a/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterWithConfigResponse.py b/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterWithConfigResponse.py new file mode 100644 index 0000000000..eb6389910c --- /dev/null +++ b/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterWithConfigResponse.py @@ -0,0 +1,14 @@ +# Copyright (c) 2019 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. +from typing import Optional, List + +from .CloudClusterResponse import CloudClusterResponse +from .ClusterPrinterStatus import ClusterPrinterStatus + + +class CloudClusterWithConfigResponse(CloudClusterResponse): + """Class representing a cloud connected cluster.""" + + def __init__(self, **kwargs) -> None: + self.configuration = self.parseModel(ClusterPrinterStatus, kwargs.get("host_printer")) + super().__init__(**kwargs) diff --git a/plugins/UM3NetworkPrinting/src/Models/Http/ClusterPrinterStatus.py b/plugins/UM3NetworkPrinting/src/Models/Http/ClusterPrinterStatus.py index 16b4b6d656..925b4844c1 100644 --- a/plugins/UM3NetworkPrinting/src/Models/Http/ClusterPrinterStatus.py +++ b/plugins/UM3NetworkPrinting/src/Models/Http/ClusterPrinterStatus.py @@ -20,7 +20,6 @@ from ..BaseModel import BaseModel class ClusterPrinterStatus(BaseModel): """Class representing a cluster printer""" - def __init__(self, enabled: bool, firmware_version: str, friendly_name: str, ip_address: str, machine_variant: str, status: str, unique_name: str, uuid: str, configuration: List[Union[Dict[str, Any], ClusterPrintCoreConfiguration]], @@ -28,9 +27,9 @@ class ClusterPrinterStatus(BaseModel): firmware_update_status: Optional[str] = None, latest_available_firmware: Optional[str] = None, build_plate: Union[Dict[str, Any], ClusterBuildPlate] = None, material_station: Union[Dict[str, Any], ClusterPrinterMaterialStation] = None, **kwargs) -> None: - """Creates a new cluster printer status - - :param enabled: A printer can be disabled if it should not receive new jobs. By default every printer is enabled. + """ + Creates a new cluster printer status + :param enabled: A printer can be disabled if it should not receive new jobs. By default, every printer is enabled. :param firmware_version: Firmware version installed on the printer. Can differ for each printer in a cluster. :param friendly_name: Human readable name of the printer. Can be used for identification purposes. :param ip_address: The IP address of the printer in the local network. diff --git a/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py b/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py index 2d27b7c3be..466f7debde 100644 --- a/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py +++ b/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py @@ -1,8 +1,10 @@ -# Copyright (c) 2019 Ultimaker B.V. +# Copyright (c) 2020 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. import os from typing import Optional, Dict, List, Callable, Any +from time import time + from PyQt6.QtGui import QDesktopServices from PyQt6.QtCore import pyqtSlot, QUrl, pyqtSignal, pyqtProperty, QObject from PyQt6.QtNetwork import QNetworkReply @@ -32,6 +34,8 @@ class LocalClusterOutputDevice(UltimakerNetworkedPrinterOutputDevice): activeCameraUrlChanged = pyqtSignal() + CHECK_CLUSTER_INTERVAL = 10.0 # seconds + def __init__(self, device_id: str, address: str, properties: Dict[bytes, bytes], parent=None) -> None: super().__init__( @@ -107,6 +111,8 @@ class LocalClusterOutputDevice(UltimakerNetworkedPrinterOutputDevice): def _update(self) -> None: super()._update() + if time() - self._time_of_last_request < self.CHECK_CLUSTER_INTERVAL: + return # avoid calling the cluster too often self._getApiClient().getPrinters(self._updatePrinters) self._getApiClient().getPrintJobs(self._updatePrintJobs) self._updatePrintJobPreviewImages() diff --git a/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDeviceManager.py b/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDeviceManager.py index 0cd5304cf9..d35e409086 100644 --- a/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDeviceManager.py +++ b/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDeviceManager.py @@ -221,7 +221,7 @@ class LocalClusterOutputDeviceManager: return # Create a new machine and activate it. - # We do not use use MachineManager.addMachine here because we need to set the network key before activating it. + # We do not use MachineManager.addMachine here because we need to set the network key before activating it. # If we do not do this the auto-pairing with the cloud-equivalent device will not work. new_machine = CuraStackBuilder.createMachine(device.name, device.printerType) if not new_machine: @@ -232,6 +232,8 @@ class LocalClusterOutputDeviceManager: self._connectToOutputDevice(device, new_machine) self._showCloudFlowMessage(device) + _abstract_machine = CuraStackBuilder.createAbstractMachine(device.printerType) + def _storeManualAddress(self, address: str) -> None: """Add an address to the stored preferences.""" diff --git a/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterOutputDevice.py b/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterOutputDevice.py index 769e92610a..8f25df37db 100644 --- a/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterOutputDevice.py +++ b/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterOutputDevice.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Ultimaker B.V. +# Copyright (c) 2022 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. import os from time import time @@ -184,6 +184,42 @@ class UltimakerNetworkedPrinterOutputDevice(NetworkedPrinterOutputDevice): def forceSendJob(self, print_job_uuid: str) -> None: raise NotImplementedError("forceSendJob must be implemented") + @pyqtProperty(bool, constant = True) + def supportsPrintJobQueue(self) -> bool: + """ + Whether this printer knows about queueing print jobs. + """ + return True # This API always supports print job queueing. + + @pyqtProperty(bool, constant = True) + def canReadPrintJobs(self) -> bool: + """ + Whether this user can read the list of print jobs and their properties. + """ + return True + + @pyqtProperty(bool, constant = True) + def canWriteOthersPrintJobs(self) -> bool: + """ + Whether this user can change things about print jobs made by other + people. + """ + return True + + @pyqtProperty(bool, constant = True) + def canWriteOwnPrintJobs(self) -> bool: + """ + Whether this user can change things about print jobs made by themself. + """ + return True + + @pyqtProperty(bool, constant = True) + def canReadPrinterDetails(self) -> bool: + """ + Whether this user can read the status of the printer. + """ + return True + @pyqtSlot(name="openPrintJobControlPanel") def openPrintJobControlPanel(self) -> None: raise NotImplementedError("openPrintJobControlPanel must be implemented") diff --git a/plugins/USBPrinting/AutoDetectBaudJob.py b/plugins/USBPrinting/AutoDetectBaudJob.py index 1ebd74af4f..1b791f6187 100644 --- a/plugins/USBPrinting/AutoDetectBaudJob.py +++ b/plugins/USBPrinting/AutoDetectBaudJob.py @@ -53,7 +53,7 @@ class AutoDetectBaudJob(Job): try: serial = Serial(str(self._serial_port), baud_rate, timeout = read_timeout, writeTimeout = write_timeout) except SerialException: - Logger.logException("w", "Unable to create serial") + Logger.warning(f"Unable to create serial connection to {serial} with baud rate {baud_rate}") continue else: # We already have a serial connection, just change the baud rate. diff --git a/plugins/USBPrinting/USBPrinterOutputDevice.py b/plugins/USBPrinting/USBPrinterOutputDevice.py index d91be99f46..1155420b60 100644 --- a/plugins/USBPrinting/USBPrinterOutputDevice.py +++ b/plugins/USBPrinting/USBPrinterOutputDevice.py @@ -398,7 +398,7 @@ class USBPrinterOutputDevice(PrinterOutputDevice): line = line[:line.find(";")] line = line.strip() - + # Don't send empty lines. But we do have to send something, so send M105 instead. # Don't send the M0 or M1 to the machine, as M0 and M1 are handled as an LCD menu pause. if line == "" or line == "M0" or line == "M1": @@ -429,7 +429,7 @@ class USBPrinterOutputDevice(PrinterOutputDevice): print_job.updateTimeElapsed(elapsed_time) estimated_time = self._print_estimated_time if progress > .1: - estimated_time = self._print_estimated_time * (1 - progress) + elapsed_time + estimated_time = int(self._print_estimated_time * (1 - progress) + elapsed_time) print_job.updateTimeTotal(estimated_time) self._gcode_position += 1 diff --git a/plugins/USBPrinting/USBPrinterOutputDeviceManager.py b/plugins/USBPrinting/USBPrinterOutputDeviceManager.py index 02e3cc137d..4eeeb7970b 100644 --- a/plugins/USBPrinting/USBPrinterOutputDeviceManager.py +++ b/plugins/USBPrinting/USBPrinterOutputDeviceManager.py @@ -9,6 +9,7 @@ from re import search from PyQt6.QtCore import QObject, pyqtSignal +from UM.Platform import Platform from UM.Signal import Signal, signalemitter from UM.OutputDevice.OutputDevicePlugin import OutputDevicePlugin from UM.i18n import i18nCatalog @@ -83,7 +84,8 @@ class USBPrinterOutputDeviceManager(QObject, OutputDevicePlugin): if container_stack.getMetaDataEntry("supports_usb_connection"): machine_file_formats = [file_type.strip() for file_type in container_stack.getMetaDataEntry("file_formats").split(";")] if "text/x-gcode" in machine_file_formats: - port_list = self.getSerialPortList(only_list_usb=True) + # We only limit listing usb on windows is a fix for connecting tty/cu printers on MacOS and Linux + port_list = self.getSerialPortList(only_list_usb=Platform.isWindows()) self._addRemovePorts(port_list) time.sleep(5) diff --git a/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml b/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml index 8136e63a47..cb176a3ae4 100644 --- a/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml +++ b/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 @@ -27,7 +27,7 @@ Cura.MachineAction anchors.topMargin: UM.Theme.getSize("default_margin").height width: parent.width wrapMode: Text.WordWrap - text: catalog.i18nc("@label","Please select any upgrades made to this Ultimaker Original") + text: catalog.i18nc("@label","Please select any upgrades made to this UltiMaker Original") font: UM.Theme.getFont("medium") } diff --git a/plugins/UltimakerMachineActions/plugin.json b/plugins/UltimakerMachineActions/plugin.json index 82e4a21408..a66fa738f8 100644 --- a/plugins/UltimakerMachineActions/plugin.json +++ b/plugins/UltimakerMachineActions/plugin.json @@ -1,5 +1,5 @@ { - "name": "Ultimaker machine actions", + "name": "UltiMaker machine actions", "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.).", diff --git a/plugins/VersionUpgrade/VersionUpgrade22to24/VersionUpgrade.py b/plugins/VersionUpgrade/VersionUpgrade22to24/VersionUpgrade.py index ded892d137..2c3a0939a8 100644 --- a/plugins/VersionUpgrade/VersionUpgrade22to24/VersionUpgrade.py +++ b/plugins/VersionUpgrade/VersionUpgrade22to24/VersionUpgrade.py @@ -64,7 +64,7 @@ class VersionUpgrade22to24(VersionUpgrade): config.remove_option("general", "containers") - for idx in range(len(container_list)): + for idx, _ in enumerate(container_list): config.set("containers", str(idx), container_list[idx]) output = io.StringIO() diff --git a/plugins/VersionUpgrade/VersionUpgrade52to53/VersionUpgrade52to53.py b/plugins/VersionUpgrade/VersionUpgrade52to53/VersionUpgrade52to53.py new file mode 100644 index 0000000000..63574d5cc2 --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade52to53/VersionUpgrade52to53.py @@ -0,0 +1,372 @@ +# Copyright (c) 2023 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +import configparser +from typing import Tuple, List +import io +from UM.VersionUpgrade import VersionUpgrade + +_REMOVED_SETTINGS = { + "limit_support_retractions", + "material_flow_dependent_temperature", +} + +_RENAMED_PROFILES = { + "um_s3_aa0.25_ABS_Normal_Quality": "um_s3_aa0.25_abs_0.1mm", + "um_s3_aa0.25_CPE_Normal_Quality": "um_s3_aa0.25_cpe_0.1mm", + "um_s3_aa0.25_Nylon_Normal_Quality": "um_s3_aa0.25_nylon_0.1mm", + "um_s3_aa0.25_PC_Normal_Quality": "um_s3_aa0.25_pc_0.1mm", + "um_s3_aa0.25_PETG_Normal_Quality": "um_s3_aa0.25_petg_0.1mm", + "um_s3_aa0.25_PLA_Normal_Quality": "um_s3_aa0.25_pla_0.1mm", + "um_s3_aa0.25_PP_Normal_Quality": "um_s3_aa0.25_pp_0.1mm", + "um_s3_aa0.25_TPLA_Normal_Quality": "um_s3_aa0.25_tough-pla_0.1mm", + "um_s3_aa0.4_ABS_Draft_Print": "um_s3_aa0.4_abs_0.2mm", + "um_s3_aa0.4_ABS_Draft_Print_Quick": "um_s3_aa0.4_abs_0.2mm_quick", + "um_s3_aa0.4_ABS_Fast_Print": "um_s3_aa0.4_abs_0.15mm", + "um_s3_aa0.4_ABS_Fast_Print_Accurate": "um_s3_aa0.4_abs_0.15mm_engineering", + "um_s3_aa0.4_ABS_Fast_Visual": "um_s3_aa0.4_abs_0.15mm_visual", + "um_s3_aa0.4_ABS_High_Quality": "um_s3_aa0.4_abs_0.06mm", + "um_s3_aa0.4_ABS_High_Visual": "um_s3_aa0.4_abs_0.06mm_visual", + "um_s3_aa0.4_ABS_Normal_Quality": "um_s3_aa0.4_abs_0.1mm", + "um_s3_aa0.4_ABS_Normal_Quality_Accurate": "um_s3_aa0.4_abs_0.1mm_engineering", + "um_s3_aa0.4_ABS_Normal_Visual": "um_s3_aa0.4_abs_0.1mm_visual", + "um_s3_aa0.4_BAM_Draft_Print": "um_s3_aa0.4_bam_0.2mm", + "um_s3_aa0.4_BAM_Fast_Print": "um_s3_aa0.4_bam_0.15mm", + "um_s3_aa0.4_BAM_Normal_Quality": "um_s3_aa0.4_bam_0.1mm", + "um_s3_aa0.4_BAM_VeryDraft_Print": "um_s3_aa0.4_bam_0.3mm", + "um_s3_aa0.4_CPE_Draft_Print": "um_s3_aa0.4_cpe_0.2mm", + "um_s3_aa0.4_CPE_Fast_Print": "um_s3_aa0.4_cpe_0.15mm", + "um_s3_aa0.4_CPE_Fast_Print_Accurate": "um_s3_aa0.4_cpe_0.15mm_engineering", + "um_s3_aa0.4_CPE_High_Quality": "um_s3_aa0.4_cpe_0.06mm", + "um_s3_aa0.4_CPE_Normal_Quality": "um_s3_aa0.4_cpe_0.1mm", + "um_s3_aa0.4_CPE_Normal_Quality_Accurate": "um_s3_aa0.4_cpe_0.1mm_engineering", + "um_s3_aa0.4_CPEP_Draft_Print": "um_s3_aa0.4_cpe-plus_0.2mm", + "um_s3_aa0.4_CPEP_Fast_Print": "um_s3_aa0.4_cpe-plus_0.15mm", + "um_s3_aa0.4_CPEP_Fast_Print_Accurate": "um_s3_aa0.4_cpe-plus_0.15mm_engineering", + "um_s3_aa0.4_CPEP_High_Quality": "um_s3_aa0.4_cpe-plus_0.06mm", + "um_s3_aa0.4_CPEP_Normal_Quality": "um_s3_aa0.4_cpe-plus_0.1mm", + "um_s3_aa0.4_CPEP_Normal_Quality_Accurate": "um_s3_aa0.4_cpe-plus_0.1mm_engineering", + "um_s3_aa0.4_Nylon_Draft_Print": "um_s3_aa0.4_nylon_0.2mm", + "um_s3_aa0.4_Nylon_Fast_Print": "um_s3_aa0.4_nylon_0.15mm", + "um_s3_aa0.4_Nylon_Fast_Print_Accurate": "um_s3_aa0.4_nylon_0.15mm_engineering", + "um_s3_aa0.4_Nylon_High_Quality": "um_s3_aa0.4_nylon_0.06mm", + "um_s3_aa0.4_Nylon_Normal_Quality": "um_s3_aa0.4_nylon_0.1mm", + "um_s3_aa0.4_Nylon_Normal_Quality_Accurate": "um_s3_aa0.4_nylon_0.1mm_engineering", + "um_s3_aa0.4_PC_Draft_Print": "um_s3_aa0.4_pc_0.2mm", + "um_s3_aa0.4_PC_Fast_Print": "um_s3_aa0.4_pc_0.15mm", + "um_s3_aa0.4_PC_Fast_Print_Accurate": "um_s3_aa0.4_pc_0.15mm_engineering", + "um_s3_aa0.4_PC_High_Quality": "um_s3_aa0.4_pc_0.06mm", + "um_s3_aa0.4_PC_Normal_Quality": "um_s3_aa0.4_pc_0.1mm", + "um_s3_aa0.4_PC_Normal_Quality_Accurate": "um_s3_aa0.4_pc_0.1mm_engineering", + "um_s3_aa0.4_PETG_Draft_Print": "um_s3_aa0.4_petg_0.2mm", + "um_s3_aa0.4_PETG_Fast_Print": "um_s3_aa0.4_petg_0.15mm", + "um_s3_aa0.4_PETG_Fast_Print_Accurate": "um_s3_aa0.4_petg_0.15mm_engineering", + "um_s3_aa0.4_PETG_High_Quality": "um_s3_aa0.4_petg_0.06mm", + "um_s3_aa0.4_PETG_Normal_Quality": "um_s3_aa0.4_petg_0.1mm", + "um_s3_aa0.4_PETG_Normal_Quality_Accurate": "um_s3_aa0.4_petg_0.1mm_engineering", + "um_s3_aa0.4_PLA_Draft_Print": "um_s3_aa0.4_pla_0.2mm", + "um_s3_aa0.4_PLA_Draft_Print_Quick": "um_s3_aa0.4_pla_0.2mm_quick", + "um_s3_aa0.4_PLA_Fast_Print": "um_s3_aa0.4_pla_0.15mm", + "um_s3_aa0.4_PLA_Fast_Print_Accurate": "um_s3_aa0.4_pla_0.15mm_engineering", + "um_s3_aa0.4_PLA_Fast_Visual": "um_s3_aa0.4_pla_0.15mm_visual", + "um_s3_aa0.4_PLA_High_Quality": "um_s3_aa0.4_pla_0.06mm", + "um_s3_aa0.4_PLA_High_Visual": "um_s3_aa0.4_pla_0.06mm_visual", + "um_s3_aa0.4_PLA_Normal_Quality": "um_s3_aa0.4_pla_0.1mm", + "um_s3_aa0.4_PLA_Normal_Quality_Accurate": "um_s3_aa0.4_pla_0.1mm_engineering", + "um_s3_aa0.4_PLA_Normal_Visual": "um_s3_aa0.4_pla_0.1mm_visual", + "um_s3_aa0.4_PLA_VeryDraft_Print": "um_s3_aa0.4_pla_0.3mm", + "um_s3_aa0.4_PLA_VeryDraft_Print_Quick": "um_s3_aa0.4_pla_0.3mm_quick", + "um_s3_aa0.4_PP_Draft_Print": "um_s3_aa0.4_pp_0.2mm", + "um_s3_aa0.4_PP_Fast_Print": "um_s3_aa0.4_pp_0.15mm", + "um_s3_aa0.4_PP_Normal_Quality": "um_s3_aa0.4_pp_0.1mm", + "um_s3_aa0.4_TPLA_Draft_Print": "um_s3_aa0.4_tough-pla_0.2mm", + "um_s3_aa0.4_TPLA_Draft_Print_Quick": "um_s3_aa0.4_tough-pla_0.2mm_quick", + "um_s3_aa0.4_TPLA_Fast_Print": "um_s3_aa0.4_tough-pla_0.15mm", + "um_s3_aa0.4_TPLA_Fast_Print_Accurate": "um_s3_aa0.4_tough-pla_0.15mm_engineering", + "um_s3_aa0.4_TPLA_Fast_Visual": "um_s3_aa0.4_tough-pla_0.15mm_visual", + "um_s3_aa0.4_TPLA_High_Quality": "um_s3_aa0.4_tough-pla_0.06mm", + "um_s3_aa0.4_TPLA_High_Visual": "um_s3_aa0.4_tough-pla_0.06mm_visual", + "um_s3_aa0.4_TPLA_Normal_Quality": "um_s3_aa0.4_tough-pla_0.1mm", + "um_s3_aa0.4_TPLA_Normal_Quality_Accurate": "um_s3_aa0.4_tough-pla_0.1mm_engineering", + "um_s3_aa0.4_TPLA_Normal_Visual": "um_s3_aa0.4_tough-pla_0.1mm_visual", + "um_s3_aa0.4_TPLA_VeryDraft_Print": "um_s3_aa0.4_tough-pla_0.3mm", + "um_s3_aa0.4_TPLA_VeryDraft_Print_Quick": "um_s3_aa0.4_tough-pla_0.3mm_quick", + "um_s3_aa0.4_TPU_Draft_Print": "um_s3_aa0.4_tpu_0.2mm", + "um_s3_aa0.4_TPU_Fast_Print": "um_s3_aa0.4_tpu_0.15mm", + "um_s3_aa0.4_TPU_Normal_Quality": "um_s3_aa0.4_tpu_0.1mm", + "um_s3_aa0.8_ABS_Draft_Print": "um_s3_aa0.8_abs_0.2mm", + "um_s3_aa0.8_ABS_Superdraft_Print": "um_s3_aa0.8_abs_0.4mm", + "um_s3_aa0.8_ABS_VeryDraft_Print": "um_s3_aa0.8_abs_0.3mm", + "um_s3_aa0.8_CPE_Draft_Print": "um_s3_aa0.8_cpe_0.2mm", + "um_s3_aa0.8_CPE_Superdraft_Print": "um_s3_aa0.8_cpe_0.4mm", + "um_s3_aa0.8_CPE_VeryDraft_Print": "um_s3_aa0.8_cpe_0.3mm", + "um_s3_aa0.8_CPEP_Fast_Print": "um_s3_aa0.8_cpe-plus_0.2mm", + "um_s3_aa0.8_CPEP_Superdraft_Print": "um_s3_aa0.8_cpe-plus_0.4mm", + "um_s3_aa0.8_CPEP_VeryDraft_Print": "um_s3_aa0.8_cpe-plus_0.3mm", + "um_s3_aa0.8_Nylon_Draft_Print": "um_s3_aa0.8_nylon_0.2mm", + "um_s3_aa0.8_Nylon_Superdraft_Print": "um_s3_aa0.8_nylon_0.4mm", + "um_s3_aa0.8_Nylon_VeryDraft_Print": "um_s3_aa0.8_nylon_0.3mm", + "um_s3_aa0.8_PC_Fast_Print": "um_s3_aa0.8_pc_0.2mm", + "um_s3_aa0.8_PC_Superdraft_Print": "um_s3_aa0.8_pc_0.4mm", + "um_s3_aa0.8_PC_VeryDraft_Print": "um_s3_aa0.8_pc_0.3mm", + "um_s3_aa0.8_PETG_Draft_Print": "um_s3_aa0.8_petg_0.2mm", + "um_s3_aa0.8_PETG_Superdraft_Print": "um_s3_aa0.8_petg_0.4mm", + "um_s3_aa0.8_PETG_VeryDraft_Print": "um_s3_aa0.8_petg_0.3mm", + "um_s3_aa0.8_PLA_Draft_Print": "um_s3_aa0.8_pla_0.2mm", + "um_s3_aa0.8_PLA_Superdraft_Print": "um_s3_aa0.8_pla_0.4mm", + "um_s3_aa0.8_PLA_VeryDraft_Print": "um_s3_aa0.8_pla_0.3mm", + "um_s3_aa0.8_PP_Draft_Print": "um_s3_aa0.8_pp_0.2mm", + "um_s3_aa0.8_PP_Superdraft_Print": "um_s3_aa0.8_pp_0.4mm", + "um_s3_aa0.8_PP_VeryDraft_Print": "um_s3_aa0.8_pp_0.3mm", + "um_s3_aa0.8_TPLA_Draft_Print": "um_s3_aa0.8_tough-pla_0.2mm", + "um_s3_aa0.8_TPLA_Superdraft_Print": "um_s3_aa0.8_tough-pla_0.4mm", + "um_s3_aa0.8_TPLA_VeryDraft_Print": "um_s3_aa0.8_tough-pla_0.3mm", + "um_s3_aa0.8_TPU_Draft_Print": "um_s3_aa0.8_tpu_0.2mm", + "um_s3_aa0.8_TPU_Superdraft_Print": "um_s3_aa0.8_tpu_0.4mm", + "um_s3_aa0.8_TPU_VeryDraft_Print": "um_s3_aa0.8_tpu_0.3mm", + "um_s3_bb0.4_PVA_Draft_Print": "um_s3_bb0.4_pva_0.2mm", + "um_s3_bb0.4_PVA_Fast_Print": "um_s3_bb0.4_pva_0.15mm", + "um_s3_bb0.4_PVA_High_Quality": "um_s3_bb0.4_pva_0.06mm", + "um_s3_bb0.4_PVA_Normal_Quality": "um_s3_bb0.4_pva_0.1mm", + "um_s3_bb0.4_PVA_VeryDraft_Print": "um_s3_bb0.4_pva_0.3mm", + "um_s3_bb0.8_PVA_Draft_Print": "um_s3_bb0.8_pva_0.2mm", + "um_s3_bb0.8_PVA_Superdraft_Print": "um_s3_bb0.8_pva_0.4mm", + "um_s3_bb0.8_PVA_VeryDraft_Print": "um_s3_bb0.8_pva_0.3mm", + "um_s3_cc0.4_CFFCPE_Draft_Print": "um_s3_cc0.4_cffcpe_0.2mm", + "um_s3_cc0.4_CFFCPE_Fast_Print": "um_s3_cc0.4_cffcpe_0.15mm", + "um_s3_cc0.4_CFFPA_Draft_Print": "um_s3_cc0.4_cffpa_0.2mm", + "um_s3_cc0.4_CFFPA_Fast_Print": "um_s3_cc0.4_cffpa_0.15mm", + "um_s3_cc0.4_GFFCPE_Draft_Print": "um_s3_cc0.4_gffcpe_0.2mm", + "um_s3_cc0.4_GFFCPE_Fast_Print": "um_s3_cc0.4_gffcpe_0.15mm", + "um_s3_cc0.4_GFFPA_Draft_Print": "um_s3_cc0.4_gffpa_0.2mm", + "um_s3_cc0.4_GFFPA_Fast_Print": "um_s3_cc0.4_gffpa_0.15mm", + "um_s3_cc0.4_PLA_Draft_Print": "um_s3_cc0.4_pla_0.2mm", + "um_s3_cc0.4_PLA_Fast_Print": "um_s3_cc0.4_pla_0.15mm", + "um_s3_cc0.6_CFFCPE_Draft_Print": "um_s3_cc0.6_cffcpe_0.2mm", + "um_s3_cc0.6_CFFPA_Draft_Print": "um_s3_cc0.6_cffpa_0.2mm", + "um_s3_cc0.6_GFFCPE_Draft_Print": "um_s3_cc0.6_gffcpe_0.2mm", + "um_s3_cc0.6_GFFPA_Draft_Print": "um_s3_cc0.6_gffpa_0.2mm", + "um_s3_cc0.6_PLA_Draft_Print": "um_s3_cc0.6_pla_0.2mm", + "um_s3_cc0.6_PLA_Fast_Print": "um_s3_cc0.6_pla_0.15mm", + "um_s5_aa0.25_ABS_Normal_Quality": "um_s5_aa0.25_abs_0.1mm", + "um_s5_aa0.25_CPE_Normal_Quality": "um_s5_aa0.25_cpe_0.1mm", + "um_s5_aa0.25_Nylon_Normal_Quality": "um_s5_aa0.25_nylon_0.1mm", + "um_s5_aa0.25_PC_Normal_Quality": "um_s5_aa0.25_pc_0.1mm", + "um_s5_aa0.25_PETG_Normal_Quality": "um_s5_aa0.25_petg_0.1mm", + "um_s5_aa0.25_PLA_Normal_Quality": "um_s5_aa0.25_pla_0.1mm", + "um_s5_aa0.25_PP_Normal_Quality": "um_s5_aa0.25_pp_0.1mm", + "um_s5_aa0.25_TPLA_Normal_Quality": "um_s5_aa0.25_tough-pla_0.1mm", + "um_s5_aa0.4_ABS_Draft_Print": "um_s5_aa0.4_abs_0.2mm", + "um_s5_aa0.4_ABS_Draft_Print_Quick": "um_s5_aa0.4_abs_0.2mm_quick", + "um_s5_aa0.4_ABS_Fast_Print": "um_s5_aa0.4_abs_0.15mm", + "um_s5_aa0.4_ABS_Fast_Print_Accurate": "um_s5_aa0.4_abs_0.15mm_engineering", + "um_s5_aa0.4_ABS_Fast_Visual": "um_s5_aa0.4_abs_0.15mm_visual", + "um_s5_aa0.4_ABS_High_Quality": "um_s5_aa0.4_abs_0.06mm", + "um_s5_aa0.4_ABS_High_Visual": "um_s5_aa0.4_abs_0.06mm_visual", + "um_s5_aa0.4_ABS_Normal_Quality": "um_s5_aa0.4_abs_0.1mm", + "um_s5_aa0.4_ABS_Normal_Quality_Accurate": "um_s5_aa0.4_abs_0.1mm_engineering", + "um_s5_aa0.4_ABS_Normal_Visual": "um_s5_aa0.4_abs_0.1mm_visual", + "um_s5_aa0.4_BAM_Draft_Print": "um_s5_aa0.4_bam_0.2mm", + "um_s5_aa0.4_BAM_Fast_Print": "um_s5_aa0.4_bam_0.15mm", + "um_s5_aa0.4_BAM_Normal_Quality": "um_s5_aa0.4_bam_0.1mm", + "um_s5_aa0.4_BAM_VeryDraft_Print": "um_s5_aa0.4_bam_0.3mm", + "um_s5_aa0.4_CPE_Draft_Print": "um_s5_aa0.4_cpe_0.2mm", + "um_s5_aa0.4_CPE_Fast_Print": "um_s5_aa0.4_cpe_0.15mm", + "um_s5_aa0.4_CPE_Fast_Print_Accurate": "um_s5_aa0.4_cpe_0.15mm_engineering", + "um_s5_aa0.4_CPE_High_Quality": "um_s5_aa0.4_cpe_0.06mm", + "um_s5_aa0.4_CPE_Normal_Quality": "um_s5_aa0.4_cpe_0.1mm", + "um_s5_aa0.4_CPE_Normal_Quality_Accurate": "um_s5_aa0.4_cpe_0.1mm_engineering", + "um_s5_aa0.4_CPEP_Draft_Print": "um_s5_aa0.4_cpe-plus_0.2mm", + "um_s5_aa0.4_CPEP_Fast_Print": "um_s5_aa0.4_cpe-plus_0.15mm", + "um_s5_aa0.4_CPEP_Fast_Print_Accurate": "um_s5_aa0.4_cpe-plus_0.15mm_engineering", + "um_s5_aa0.4_CPEP_High_Quality": "um_s5_aa0.4_cpe-plus_0.06mm", + "um_s5_aa0.4_CPEP_Normal_Quality": "um_s5_aa0.4_cpe-plus_0.1mm", + "um_s5_aa0.4_CPEP_Normal_Quality_Accurate": "um_s5_aa0.4_cpe-plus_0.1mm_engineering", + "um_s5_aa0.4_Nylon_Draft_Print": "um_s5_aa0.4_nylon_0.2mm", + "um_s5_aa0.4_Nylon_Fast_Print": "um_s5_aa0.4_nylon_0.15mm", + "um_s5_aa0.4_Nylon_Fast_Print_Accurate": "um_s5_aa0.4_nylon_0.15mm_engineering", + "um_s5_aa0.4_Nylon_High_Quality": "um_s5_aa0.4_nylon_0.06mm", + "um_s5_aa0.4_Nylon_Normal_Quality": "um_s5_aa0.4_nylon_0.1mm", + "um_s5_aa0.4_Nylon_Normal_Quality_Accurate": "um_s5_aa0.4_nylon_0.1mm_engineering", + "um_s5_aa0.4_PC_Draft_Print": "um_s5_aa0.4_pc_0.2mm", + "um_s5_aa0.4_PC_Fast_Print": "um_s5_aa0.4_pc_0.15mm", + "um_s5_aa0.4_PC_Fast_Print_Accurate": "um_s5_aa0.4_pc_0.15mm_engineering", + "um_s5_aa0.4_PC_High_Quality": "um_s5_aa0.4_pc_0.06mm", + "um_s5_aa0.4_PC_Normal_Quality": "um_s5_aa0.4_pc_0.1mm", + "um_s5_aa0.4_PC_Normal_Quality_Accurate": "um_s5_aa0.4_pc_0.1mm_engineering", + "um_s5_aa0.4_PETG_Draft_Print": "um_s5_aa0.4_petg_0.2mm", + "um_s5_aa0.4_PETG_Fast_Print": "um_s5_aa0.4_petg_0.15mm", + "um_s5_aa0.4_PETG_Fast_Print_Accurate": "um_s5_aa0.4_petg_0.15mm_engineering", + "um_s5_aa0.4_PETG_High_Quality": "um_s5_aa0.4_petg_0.06mm", + "um_s5_aa0.4_PETG_Normal_Quality": "um_s5_aa0.4_petg_0.1mm", + "um_s5_aa0.4_PETG_Normal_Quality_Accurate": "um_s5_aa0.4_petg_0.1mm_engineering", + "um_s5_aa0.4_PLA_Draft_Print": "um_s5_aa0.4_pla_0.2mm", + "um_s5_aa0.4_PLA_Draft_Print_Quick": "um_s5_aa0.4_pla_0.2mm_quick", + "um_s5_aa0.4_PLA_Fast_Print": "um_s5_aa0.4_pla_0.15mm", + "um_s5_aa0.4_PLA_Fast_Print_Accurate": "um_s5_aa0.4_pla_0.15mm_engineering", + "um_s5_aa0.4_PLA_Fast_Visual": "um_s5_aa0.4_pla_0.15mm_visual", + "um_s5_aa0.4_PLA_High_Quality": "um_s5_aa0.4_pla_0.06mm", + "um_s5_aa0.4_PLA_High_Visual": "um_s5_aa0.4_pla_0.06mm_visual", + "um_s5_aa0.4_PLA_Normal_Quality": "um_s5_aa0.4_pla_0.1mm", + "um_s5_aa0.4_PLA_Normal_Quality_Accurate": "um_s5_aa0.4_pla_0.1mm_engineering", + "um_s5_aa0.4_PLA_Normal_Visual": "um_s5_aa0.4_pla_0.1mm_visual", + "um_s5_aa0.4_PLA_VeryDraft_Print": "um_s5_aa0.4_pla_0.3mm", + "um_s5_aa0.4_PLA_VeryDraft_Print_Quick": "um_s5_aa0.4_pla_0.3mm_quick", + "um_s5_aa0.4_PP_Draft_Print": "um_s5_aa0.4_pp_0.2mm", + "um_s5_aa0.4_PP_Fast_Print": "um_s5_aa0.4_pp_0.15mm", + "um_s5_aa0.4_PP_Normal_Quality": "um_s5_aa0.4_pp_0.1mm", + "um_s5_aa0.4_TPLA_Draft_Print": "um_s5_aa0.4_tough-pla_0.2mm", + "um_s5_aa0.4_TPLA_Draft_Print_Quick": "um_s5_aa0.4_tough-pla_0.2mm_quick", + "um_s5_aa0.4_TPLA_Fast_Print": "um_s5_aa0.4_tough-pla_0.15mm", + "um_s5_aa0.4_TPLA_Fast_Print_Accurate": "um_s5_aa0.4_tough-pla_0.15mm_engineering", + "um_s5_aa0.4_TPLA_Fast_Visual": "um_s5_aa0.4_tough-pla_0.15mm_visual", + "um_s5_aa0.4_TPLA_High_Quality": "um_s5_aa0.4_tough-pla_0.06mm", + "um_s5_aa0.4_TPLA_High_Visual": "um_s5_aa0.4_tough-pla_0.06mm_visual", + "um_s5_aa0.4_TPLA_Normal_Quality": "um_s5_aa0.4_tough-pla_0.1mm", + "um_s5_aa0.4_TPLA_Normal_Quality_Accurate": "um_s5_aa0.4_tough-pla_0.1mm_engineering", + "um_s5_aa0.4_TPLA_Normal_Visual": "um_s5_aa0.4_tough-pla_0.1mm_visual", + "um_s5_aa0.4_TPLA_VeryDraft_Print": "um_s5_aa0.4_tough-pla_0.3mm", + "um_s5_aa0.4_TPLA_VeryDraft_Print_Quick": "um_s5_aa0.4_tough-pla_0.3mm_quick", + "um_s5_aa0.4_TPU_Draft_Print": "um_s5_aa0.4_tpu_0.2mm", + "um_s5_aa0.4_TPU_Fast_Print": "um_s5_aa0.4_tpu_0.15mm", + "um_s5_aa0.4_TPU_Normal_Quality": "um_s5_aa0.4_tpu_0.1mm", + "um_s5_aa0.8_ABS_Draft_Print": "um_s5_aa0.8_abs_0.2mm", + "um_s5_aa0.8_ABS_Superdraft_Print": "um_s5_aa0.8_abs_0.4mm", + "um_s5_aa0.8_ABS_VeryDraft_Print": "um_s5_aa0.8_abs_0.3mm", + "um_s5_aa0.8_CPE_Draft_Print": "um_s5_aa0.8_cpe_0.2mm", + "um_s5_aa0.8_CPE_Superdraft_Print": "um_s5_aa0.8_cpe_0.4mm", + "um_s5_aa0.8_CPE_VeryDraft_Print": "um_s5_aa0.8_cpe_0.3mm", + "um_s5_aa0.8_CPEP_Fast_Print": "um_s5_aa0.8_cpe-plus_0.2mm", + "um_s5_aa0.8_CPEP_Superdraft_Print": "um_s5_aa0.8_cpe-plus_0.4mm", + "um_s5_aa0.8_CPEP_VeryDraft_Print": "um_s5_aa0.8_cpe-plus_0.3mm", + "um_s5_aa0.8_Nylon_Draft_Print": "um_s5_aa0.8_nylon_0.2mm", + "um_s5_aa0.8_Nylon_Superdraft_Print": "um_s5_aa0.8_nylon_0.4mm", + "um_s5_aa0.8_Nylon_VeryDraft_Print": "um_s5_aa0.8_nylon_0.3mm", + "um_s5_aa0.8_PC_Fast_Print": "um_s5_aa0.8_pc_0.2mm", + "um_s5_aa0.8_PC_Superdraft_Print": "um_s5_aa0.8_pc_0.4mm", + "um_s5_aa0.8_PC_VeryDraft_Print": "um_s5_aa0.8_pc_0.3mm", + "um_s5_aa0.8_PETG_Draft_Print": "um_s5_aa0.8_petg_0.2mm", + "um_s5_aa0.8_PETG_Superdraft_Print": "um_s5_aa0.8_petg_0.4mm", + "um_s5_aa0.8_PETG_VeryDraft_Print": "um_s5_aa0.8_petg_0.3mm", + "um_s5_aa0.8_PLA_Draft_Print": "um_s5_aa0.8_pla_0.2mm", + "um_s5_aa0.8_PLA_Superdraft_Print": "um_s5_aa0.8_pla_0.4mm", + "um_s5_aa0.8_PLA_VeryDraft_Print": "um_s5_aa0.8_pla_0.3mm", + "um_s5_aa0.8_PP_Draft_Print": "um_s5_aa0.8_pp_0.2mm", + "um_s5_aa0.8_PP_Superdraft_Print": "um_s5_aa0.8_pp_0.4mm", + "um_s5_aa0.8_PP_VeryDraft_Print": "um_s5_aa0.8_pp_0.3mm", + "um_s5_aa0.8_TPLA_Draft_Print": "um_s5_aa0.8_tough-pla_0.2mm", + "um_s5_aa0.8_TPLA_Superdraft_Print": "um_s5_aa0.8_tough-pla_0.4mm", + "um_s5_aa0.8_TPLA_VeryDraft_Print": "um_s5_aa0.8_tough-pla_0.3mm", + "um_s5_aa0.8_TPU_Draft_Print": "um_s5_aa0.8_tpu_0.2mm", + "um_s5_aa0.8_TPU_Superdraft_Print": "um_s5_aa0.8_tpu_0.4mm", + "um_s5_aa0.8_TPU_VeryDraft_Print": "um_s5_aa0.8_tpu_0.3mm", + "um_s5_bb0.4_PVA_Draft_Print": "um_s5_bb0.4_pva_0.2mm", + "um_s5_bb0.4_PVA_Fast_Print": "um_s5_bb0.4_pva_0.15mm", + "um_s5_bb0.4_PVA_High_Quality": "um_s5_bb0.4_pva_0.06mm", + "um_s5_bb0.4_PVA_Normal_Quality": "um_s5_bb0.4_pva_0.1mm", + "um_s5_bb0.4_PVA_VeryDraft_Print": "um_s5_bb0.4_pva_0.3mm", + "um_s5_bb0.8_PVA_Draft_Print": "um_s5_bb0.8_pva_0.2mm", + "um_s5_bb0.8_PVA_Superdraft_Print": "um_s5_bb0.8_pva_0.4mm", + "um_s5_bb0.8_PVA_VeryDraft_Print": "um_s5_bb0.8_pva_0.3mm", + "um_s5_cc0.4_CFFCPE_Draft_Print": "um_s5_cc0.4_cffcpe_0.2mm", + "um_s5_cc0.4_CFFCPE_Fast_Print": "um_s5_cc0.4_cffcpe_0.15mm", + "um_s5_cc0.4_CFFPA_Draft_Print": "um_s5_cc0.4_cffpa_0.2mm", + "um_s5_cc0.4_CFFPA_Fast_Print": "um_s5_cc0.4_cffpa_0.15mm", + "um_s5_cc0.4_GFFCPE_Draft_Print": "um_s5_cc0.4_gffcpe_0.2mm", + "um_s5_cc0.4_GFFCPE_Fast_Print": "um_s5_cc0.4_gffcpe_0.15mm", + "um_s5_cc0.4_GFFPA_Draft_Print": "um_s5_cc0.4_gffpa_0.2mm", + "um_s5_cc0.4_GFFPA_Fast_Print": "um_s5_cc0.4_gffpa_0.15mm", + "um_s5_cc0.4_PLA_Draft_Print": "um_s5_cc0.4_pla_0.2mm", + "um_s5_cc0.4_PLA_Fast_Print": "um_s5_cc0.4_pla_0.15mm", + "um_s5_cc0.6_CFFCPE_Draft_Print": "um_s5_cc0.6_cffcpe_0.2mm", + "um_s5_cc0.6_CFFPA_Draft_Print": "um_s5_cc0.6_cffpa_0.2mm", + "um_s5_cc0.6_GFFCPE_Draft_Print": "um_s5_cc0.6_gffcpe_0.2mm", + "um_s5_cc0.6_GFFPA_Draft_Print": "um_s5_cc0.6_gffpa_0.2mm", + "um_s5_cc0.6_PLA_Draft_Print": "um_s5_cc0.6_pla_0.2mm", + "um_s5_cc0.6_PLA_Fast_Print": "um_s5_cc0.6_pla_0.15mm" +} + +class VersionUpgrade52to53(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"] = "21" + + # Remove deleted settings from the visible settings list. + if "general" in parser and "visible_settings" in parser["general"]: + visible_settings = set(parser["general"]["visible_settings"].split(";")) + for removed in _REMOVED_SETTINGS: + if removed in visible_settings: + visible_settings.remove(removed) + + parser["general"]["visible_settings"] = ";".join(visible_settings) + + 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"] = "21" + + if "values" in parser: + # Remove deleted settings from the instance containers. + for removed in _REMOVED_SETTINGS: + if removed in parser["values"]: + del parser["values"][removed] + + 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"] = "21" + + for container in parser['containers']: + parser['containers'][container] = _RENAMED_PROFILES.get(parser['containers'][container], parser['containers'][container]) + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] diff --git a/plugins/VersionUpgrade/VersionUpgrade52to53/__init__.py b/plugins/VersionUpgrade/VersionUpgrade52to53/__init__.py new file mode 100644 index 0000000000..bc0736b6fe --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade52to53/__init__.py @@ -0,0 +1,61 @@ +# Copyright (c) 2023 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +from typing import Any, Dict, TYPE_CHECKING + +from . import VersionUpgrade52to53 + +if TYPE_CHECKING: + from UM.Application import Application + +upgrade = VersionUpgrade52to53.VersionUpgrade52to53() + + +def getMetaData() -> Dict[str, Any]: + return { + "version_upgrade": { + # From To Upgrade function + ("preferences", 7000020): ("preferences", 7000021, upgrade.upgradePreferences), + ("machine_stack", 5000020): ("machine_stack", 5000021, upgrade.upgradeStack), + ("extruder_train", 5000020): ("extruder_train", 5000021, upgrade.upgradeStack), + ("definition_changes", 4000020): ("definition_changes", 4000021, upgrade.upgradeInstanceContainer), + ("quality_changes", 4000020): ("quality_changes", 4000021, upgrade.upgradeInstanceContainer), + ("quality", 4000020): ("quality", 4000021, upgrade.upgradeInstanceContainer), + ("user", 4000020): ("user", 4000021, upgrade.upgradeInstanceContainer), + ("intent", 4000020): ("intent", 4000021, 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/VersionUpgrade52to53/plugin.json b/plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json new file mode 100644 index 0000000000..1cbdb06b48 --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json @@ -0,0 +1,8 @@ +{ + "name": "Version Upgrade 5.2 to 5.3", + "author": "UltiMaker", + "version": "1.0.0", + "description": "Upgrades configurations from Cura 5.2 to Cura 5.3.", + "api": 8, + "i18n-catalog": "cura" +} diff --git a/plugins/VersionUpgrade/VersionUpgrade53to54/VersionUpgrade53to54.py b/plugins/VersionUpgrade/VersionUpgrade53to54/VersionUpgrade53to54.py new file mode 100644 index 0000000000..c84ff268b0 --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade53to54/VersionUpgrade53to54.py @@ -0,0 +1,117 @@ +# Copyright (c) 2023 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +import configparser +from typing import Tuple, List +import io +from UM.VersionUpgrade import VersionUpgrade + +_REMOVED_SETTINGS = { + "wireframe_enabled", + "wireframe_height", + "wireframe_roof_inset", + "wireframe_printspeed", + "wireframe_printspeed_bottom", + "wireframe_printspeed_up", + "wireframe_printspeed_down", + "wireframe_printspeed_flat", + "wireframe_flow", + "wireframe_flow_connection", + "wireframe_flow_flat", + "wireframe_top_delay", + "wireframe_bottom_delay", + "wireframe_flat_delay", + "wireframe_up_half_speed", + "wireframe_top_jump", + "wireframe_fall_down", + "wireframe_drag_along", + "wireframe_strategy", + "wireframe_straight_before_down", + "wireframe_roof_fall_down", + "wireframe_roof_drag_along", + "wireframe_roof_outer_delay", + "wireframe_nozzle_clearance", +} + + +class VersionUpgrade53to54(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"] = "22" + + # Remove deleted settings from the visible settings list. + if "general" in parser and "visible_settings" in parser["general"]: + visible_settings = set(parser["general"]["visible_settings"].split(";")) + for removed in _REMOVED_SETTINGS: + if removed in visible_settings: + visible_settings.remove(removed) + + parser["general"]["visible_settings"] = ";".join(visible_settings) + + 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"] = "22" + + if "values" in parser: + # Remove deleted settings from the instance containers. + for removed in _REMOVED_SETTINGS: + if removed in parser["values"]: + del parser["values"][removed] + + 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"] = "22" + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] diff --git a/plugins/VersionUpgrade/VersionUpgrade53to54/__init__.py b/plugins/VersionUpgrade/VersionUpgrade53to54/__init__.py new file mode 100644 index 0000000000..75122fb12b --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade53to54/__init__.py @@ -0,0 +1,61 @@ +# Copyright (c) 2023 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +from typing import Any, Dict, TYPE_CHECKING + +from . import VersionUpgrade53to54 + +if TYPE_CHECKING: + from UM.Application import Application + +upgrade = VersionUpgrade53to54.VersionUpgrade53to54() + + +def getMetaData() -> Dict[str, Any]: + return { + "version_upgrade": { + # From To Upgrade function + ("preferences", 7000021): ("preferences", 7000022, upgrade.upgradePreferences), + ("machine_stack", 5000021): ("machine_stack", 5000022, upgrade.upgradeStack), + ("extruder_train", 5000021): ("extruder_train", 5000022, upgrade.upgradeStack), + ("definition_changes", 4000021): ("definition_changes", 4000022, upgrade.upgradeInstanceContainer), + ("quality_changes", 4000021): ("quality_changes", 4000022, upgrade.upgradeInstanceContainer), + ("quality", 4000021): ("quality", 4000022, upgrade.upgradeInstanceContainer), + ("user", 4000021): ("user", 4000022, upgrade.upgradeInstanceContainer), + ("intent", 4000021): ("intent", 4000022, 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/VersionUpgrade53to54/plugin.json b/plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json new file mode 100644 index 0000000000..96f00d3ba5 --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json @@ -0,0 +1,8 @@ +{ + "name": "Version Upgrade 5.3 to 5.4", + "author": "UltiMaker", + "version": "1.0.0", + "description": "Upgrades configurations from Cura 5.3 to Cura 5.4.", + "api": 8, + "i18n-catalog": "cura" +} diff --git a/plugins/X3DReader/X3DReader.py b/plugins/X3DReader/X3DReader.py index 548c9f44e6..57105b66a1 100644 --- a/plugins/X3DReader/X3DReader.py +++ b/plugins/X3DReader/X3DReader.py @@ -134,7 +134,7 @@ class X3DReader(MeshReader): geometry = self.resolveDefUse(sub_node) # TODO: appearance is completely ignored. At least apply the material color... - if not geometry is None: + if geometry is not None: try: self.verts = self.faces = [] # Safeguard self.geometry_importers[geometry.tag](self, geometry) @@ -493,12 +493,12 @@ class X3DReader(MeshReader): # Columns are the unit vectors for the xz plane for the cross-section if orient: mrot = orient[i] if len(orient) > 1 else orient[0] - if not mrot is None: + if mrot is not None: m = m.dot(mrot) # Tested against X3DOM, the result matches, still not sure :( if scale: mscale = scale[i] if len(scale) > 1 else scale[0] - if not mscale is None: + if mscale is not None: m = m.dot(mscale) # First the cross-section 2-vector is scaled, @@ -703,7 +703,7 @@ class X3DReader(MeshReader): for c in node: if c.tag == "Coordinate": c = self.resolveDefUse(c) - if not c is None: + if c is not None: pt = c.attrib.get("point") if pt: # allow the list of float values in 'point' attribute to @@ -866,13 +866,13 @@ def readIndex(node, attr): v = readIntArray(node, attr, []) chunks = [] chunk = [] - for i in range(len(v)): - if v[i] == -1: + for i in v: + if i == -1: if chunk: chunks.append(chunk) chunk = [] else: - chunk.append(v[i]) + chunk.append(i) if chunk: chunks.append(chunk) return chunks diff --git a/plugins/XmlMaterialProfile/XmlMaterialProfile.py b/plugins/XmlMaterialProfile/XmlMaterialProfile.py index d7d11a1f44..524b7f099c 100644 --- a/plugins/XmlMaterialProfile/XmlMaterialProfile.py +++ b/plugins/XmlMaterialProfile/XmlMaterialProfile.py @@ -152,12 +152,15 @@ class XmlMaterialProfile(InstanceContainer): ## Begin Metadata Block builder.start("metadata", {}) # type: ignore - metadata = copy.deepcopy(self.getMetaData()) + + # Get the to reserialize keys from the metadata before they are deleted. + reserialize_settings = copy.deepcopy(metadata["reserialize_settings"]) + # setting_version is derived from the "version" tag in the schema, so don't serialize it into a file if ignored_metadata_keys is None: ignored_metadata_keys = set() - ignored_metadata_keys |= {"setting_version", "definition", "status", "variant", "type", "base_file", "approximate_diameter", "id", "container_type", "name", "compatible"} + ignored_metadata_keys |= {"setting_version", "definition", "status", "variant", "type", "base_file", "approximate_diameter", "id", "container_type", "name", "compatible", "reserialize_settings"} # remove the keys that we want to ignore in the metadata for key in ignored_metadata_keys: if key in metadata: @@ -304,6 +307,12 @@ class XmlMaterialProfile(InstanceContainer): buildplate_dict["buildplate_recommended"] = material_container.getMetaDataEntry("buildplate_recommended") buildplate_dict["material_container"] = material_container + hotend_reserialize_settings = material_container.getMetaDataEntry("reserialize_settings") + for key, value in hotend_reserialize_settings.items(): + builder.start("setting", {"key": key}) + builder.data(value) + builder.end("setting") + builder.end("hotend") if buildplate_dict: @@ -325,10 +334,27 @@ class XmlMaterialProfile(InstanceContainer): builder.data("yes" if recommended else "no") builder.end("setting") + buildplate_reserialize_settings = material_container.getMetaDataEntry("reserialize_settings") + for key, value in buildplate_reserialize_settings.items(): + builder.start("setting", {"key": key}) + builder.data(value) + builder.end("setting") + builder.end("buildplate") + machine_reserialize_settings = container.getMetaDataEntry("reserialize_settings") + for key, value in machine_reserialize_settings.items(): + builder.start("setting", {"key": key}) + builder.data(value) + builder.end("setting") + builder.end("machine") + for key, value in reserialize_settings.items(): + builder.start("setting", {"key": key}) + builder.data(value) + builder.end("setting") + builder.end("settings") ## End Settings Block @@ -512,6 +538,7 @@ class XmlMaterialProfile(InstanceContainer): meta_data["status"] = "unknown" # TODO: Add material verification meta_data["id"] = old_id meta_data["container_type"] = XmlMaterialProfile + meta_data["reserialize_settings"] = {} common_setting_values = {} @@ -598,6 +625,8 @@ class XmlMaterialProfile(InstanceContainer): elif key in self.__unmapped_settings: if key == "hardware compatible": common_compatibility = self._parseCompatibleValue(entry.text) + elif key in self.__keep_serialized_settings: + meta_data["reserialize_settings"][key] = entry.text # Add namespaced Cura-specific settings settings = data.iterfind("./um:settings/cura:setting", self.__namespaces) @@ -624,6 +653,7 @@ class XmlMaterialProfile(InstanceContainer): machine_compatibility = common_compatibility machine_setting_values = {} settings = machine.iterfind("./um:setting", self.__namespaces) + machine_reserialize_settings = {} for entry in settings: key = entry.get("key") if key in self.__material_settings_setting_map: @@ -640,6 +670,8 @@ class XmlMaterialProfile(InstanceContainer): elif key in self.__unmapped_settings: if key == "hardware compatible": machine_compatibility = self._parseCompatibleValue(entry.text) + elif key in self.__keep_serialized_settings: + machine_reserialize_settings[key] = entry.text else: Logger.log("d", "Unsupported material setting %s", key) @@ -694,6 +726,7 @@ class XmlMaterialProfile(InstanceContainer): new_material.getMetaData()["compatible"] = machine_compatibility new_material.getMetaData()["machine_manufacturer"] = machine_manufacturer new_material.getMetaData()["definition"] = machine_id + new_material.getMetaData()["reserialize_settings"] = machine_reserialize_settings new_material.setCachedValues(cached_machine_setting_properties) @@ -709,7 +742,7 @@ class XmlMaterialProfile(InstanceContainer): if hotend_name is None: continue - hotend_mapped_settings, hotend_unmapped_settings = self._getSettingsDictForNode(hotend) + hotend_mapped_settings, hotend_unmapped_settings, hotend_reserialize_settings = self._getSettingsDictForNode(hotend) hotend_compatibility = hotend_unmapped_settings.get("hardware compatible", machine_compatibility) # Generate container ID for the hotend-specific material container @@ -732,6 +765,7 @@ class XmlMaterialProfile(InstanceContainer): new_hotend_material.getMetaData()["compatible"] = hotend_compatibility new_hotend_material.getMetaData()["machine_manufacturer"] = machine_manufacturer new_hotend_material.getMetaData()["definition"] = machine_id + new_hotend_material.getMetaData()["reserialize_settings"] = hotend_reserialize_settings cached_hotend_setting_properties = cached_machine_setting_properties.copy() cached_hotend_setting_properties.update(hotend_mapped_settings) @@ -753,9 +787,10 @@ class XmlMaterialProfile(InstanceContainer): ContainerRegistry.getInstance().addContainer(container_to_add) @classmethod - def _getSettingsDictForNode(cls, node) -> Tuple[Dict[str, Any], Dict[str, Any]]: - node_mapped_settings_dict = dict() # type: Dict[str, Any] - node_unmapped_settings_dict = dict() # type: Dict[str, Any] + def _getSettingsDictForNode(cls, node) -> Tuple[Dict[str, Any], Dict[str, Any], Dict[str, Any]]: + node_mapped_settings_dict: Dict[str, Any] = dict() + node_unmapped_settings_dict: Dict[str, Any] = dict() + node_reserialize_settings_dict: Dict[str, Any] = dict() # Fetch settings in the "um" namespace um_settings = node.iterfind("./um:setting", cls.__namespaces) @@ -781,6 +816,10 @@ class XmlMaterialProfile(InstanceContainer): if setting_key in ("hardware compatible", "hardware recommended"): node_unmapped_settings_dict[setting_key] = cls._parseCompatibleValue(um_setting_entry.text) + # Settings unused by Cura itself, but which need reserialization since they might be important to others. + elif setting_key in cls.__keep_serialized_settings: + node_reserialize_settings_dict[setting_key] = um_setting_entry.text + # Unknown settings else: Logger.log("w", "Unsupported material setting %s", setting_key) @@ -798,7 +837,7 @@ class XmlMaterialProfile(InstanceContainer): # Cura settings are all mapped node_mapped_settings_dict[key] = value - return node_mapped_settings_dict, node_unmapped_settings_dict + return node_mapped_settings_dict, node_unmapped_settings_dict, node_reserialize_settings_dict @classmethod def deserializeMetadata(cls, serialized: str, container_id: str) -> List[Dict[str, Any]]: @@ -988,7 +1027,7 @@ class XmlMaterialProfile(InstanceContainer): if buildplate_name is None: continue - buildplate_mapped_settings, buildplate_unmapped_settings = cls._getSettingsDictForNode(buildplate) + buildplate_mapped_settings, buildplate_unmapped_settings, buildplate_reserialize_settings = cls._getSettingsDictForNode(buildplate) buildplate_compatibility = buildplate_unmapped_settings.get("hardware compatible", buildplate_map["buildplate_compatible"]) buildplate_recommended = buildplate_unmapped_settings.get("hardware recommended", @@ -1005,6 +1044,7 @@ class XmlMaterialProfile(InstanceContainer): new_hotend_and_buildplate_material_metadata["compatible"] = buildplate_compatibility new_hotend_and_buildplate_material_metadata["buildplate_compatible"] = buildplate_compatibility new_hotend_and_buildplate_material_metadata["buildplate_recommended"] = buildplate_recommended + new_hotend_and_buildplate_material_metadata["reserialize_settings"] = buildplate_reserialize_settings result_metadata.append(new_hotend_and_buildplate_material_metadata) @@ -1085,21 +1125,28 @@ 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: - product_to_id_map = json.load(f) - product_to_id_map = {key: [value] for key, value in product_to_id_map.items()} + 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 product_to_id_map + return cls.__product_to_id_map @staticmethod def _parseCompatibleValue(value: str): @@ -1145,6 +1192,29 @@ class XmlMaterialProfile(InstanceContainer): "hardware compatible", "hardware recommended" ] + __keep_serialized_settings = { # Settings irrelevant to Cura, but that could be present in the files so we must store them and keep them serialized. + "relative extrusion", + "flow sensor detection margin", + "different material purge volume", + "same material purge volume", + "end of print purge volume", + "end of filament purge volume", + "purge anti ooze retract position", + "purge drop retract position", + "purge retract speed", + "purge unretract speed", + "purge anti ooze dwell time", + "purge drop dwell time", + "dwell time before break preparation move", + "pressure release dwell time", + "tainted print core max temperature", + "recommend cleaning after n prints", + "maximum heated bed temperature", + "material bed adhesion temperature", + "maximum heated chamber temperature", + "shrinkage percentage", + "move to die distance", + } __material_properties_setting_map = { "diameter": "material_diameter" } diff --git a/plugins/XmlMaterialProfile/product_to_id.json b/plugins/XmlMaterialProfile/product_to_id.json index 053c8d13f5..07e14f1276 100644 --- a/plugins/XmlMaterialProfile/product_to_id.json +++ b/plugins/XmlMaterialProfile/product_to_id.json @@ -1,14 +1,11 @@ { - "Ultimaker 2": "ultimaker2", - "Ultimaker 2 Extended": "ultimaker2_extended", - "Ultimaker 2 Extended+": "ultimaker2_extended_plus", - "Ultimaker 2 Go": "ultimaker2_go", - "Ultimaker 2+": "ultimaker2_plus", - "Ultimaker 2+ Connect": "ultimaker2_plus_connect", - "Ultimaker 3": "ultimaker3", - "Ultimaker 3 Extended": "ultimaker3_extended", - "Ultimaker S3": "ultimaker_s3", - "Ultimaker S5": "ultimaker_s5", + "Ultimaker #": "ultimaker#", + "Ultimaker # Extended": "ultimaker#_extended", + "Ultimaker # Extended+": "ultimaker#_extended_plus", + "Ultimaker # Go": "ultimaker#_go", + "Ultimaker #+": "ultimaker#_plus", + "Ultimaker #+ Connect": "ultimaker#_plus_connect", + "Ultimaker S#": "ultimaker_s#", "Ultimaker Original": "ultimaker_original", "Ultimaker Original+": "ultimaker_original_plus", "Ultimaker Original Dual Extrusion": "ultimaker_original_dual", diff --git a/printer-linter/README.md b/printer-linter/README.md new file mode 100644 index 0000000000..36212d6881 --- /dev/null +++ b/printer-linter/README.md @@ -0,0 +1,33 @@ +# Printer Linter +Printer linter is a python package that does linting on Cura definitions files. +Running this on your definition files will get them ready for a pull request. + +## Running Locally +From the Cura root folder and pointing to the relative paths of the wanted definition files: + +```python3 printer-linter/src/terminal.py "resources/definitions/flashforge_dreamer_nx.def.json" "resources/definitions/flashforge_base.def.json" --fix --format``` + +## Developing +### Printer Linter Rules +Inside ```.printer-linter``` you can find a list of rules. These are seperated into roughly three categories. + +1. Checks + 1. These rules are about checking if a file meets some requirements that can't be fixed by replacing its content. + 2. An example of a check is ```diagnostic-mesh-file-extension``` this checks if a mesh file extension is acceptable. +2. Format + 1. These rules are purely about how a file is structured, not content. + 2. An example of a format rule is ```format-definition-bracket-newline``` This rule says that when assigning a dict value the bracket should go on a new line. +3. Fixes + 1. These are about the content of the file. + 2. An example of a fix is ```diagnostic-definition-redundant-override``` This removes settings that have already been defined by a parent definition + +### Linters +Linters find issues within a file. There are separate linters for each type of file. The linter that is used is decided by the create function in factory.py. All linters implement the abstract class Linter. + +A Linter class returns an iterator of Diagnostics, each diagnostic is an issue with the file. The diagnostics can also contain suggested fixes. + +### Formatters +Formatters load a file reformat it and write it to disk. There are separate formatters for each file type. All formatters implement the abstract class Formatter. + +Formatters should format based on the Format rules in .printer-linter + diff --git a/printer-linter/pyproject.toml b/printer-linter/pyproject.toml new file mode 100644 index 0000000000..74c6531c87 --- /dev/null +++ b/printer-linter/pyproject.toml @@ -0,0 +1,17 @@ +[project] +name = "printerlinter" +description = "Cura UltiMaker printer linting tool" +version = "0.1.0" +authors = [ + { name = "UltiMaker", email = "cura@ultimaker.com" } +] +dependencies = [ + "pyyaml" +] + +[project.scripts] +printer-linter = "terminal:main" + +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" \ No newline at end of file diff --git a/printer-linter/setup.cfg b/printer-linter/setup.cfg new file mode 100644 index 0000000000..68b0484162 --- /dev/null +++ b/printer-linter/setup.cfg @@ -0,0 +1,10 @@ +[metadata] +name = printerlinter + +[options] +package_dir= + =src +packages=find: + +[options.packages.find] +where=src \ No newline at end of file diff --git a/printer-linter/setup.py b/printer-linter/setup.py new file mode 100644 index 0000000000..25536050b2 --- /dev/null +++ b/printer-linter/setup.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python + +from setuptools import setup + +if __name__ == "__main__": + setup() diff --git a/printer-linter/src/printerlinter/__init__.py b/printer-linter/src/printerlinter/__init__.py new file mode 100644 index 0000000000..3ec571c3c6 --- /dev/null +++ b/printer-linter/src/printerlinter/__init__.py @@ -0,0 +1,4 @@ +from .diagnostic import Diagnostic +from .factory import getLinter + +__all__ = ["Diagnostic", "getLinter"] diff --git a/printer-linter/src/printerlinter/diagnostic.py b/printer-linter/src/printerlinter/diagnostic.py new file mode 100644 index 0000000000..27f4fdd14a --- /dev/null +++ b/printer-linter/src/printerlinter/diagnostic.py @@ -0,0 +1,34 @@ +from pathlib import Path +from typing import Optional, List, Dict, Any + +from .replacement import Replacement + + +class Diagnostic: + def __init__(self, file: Path, diagnostic_name: str, message: str, level: str, offset: int, replacements: Optional[List[Replacement]] = None) -> None: + """ A diagnosis of an issue in "file" at "offset" in that file. May include suggested replacements. + + @param file: The path to the file this diagnostic is for. + @param diagnostic_name: The name of the diagnostic rule that spawned this result. A list can be found in .printer-linter. + @param message: A message explaining the issue with this file. + @param level: How important this diagnostic is, ranges from Warning -> Error. + @param offset: The offset in file where the issue is. + @param replacements: A list of Replacement that contain replacement text. + """ + self.file = file + self.diagnostic_name = diagnostic_name + self.message = message + self.offset = offset + self.level = level + self.replacements = replacements + + def toDict(self) -> Dict[str, Any]: + return {"DiagnosticName": self.diagnostic_name, + "DiagnosticMessage": { + "Message": self.message, + "FilePath": self.file.as_posix(), + "FileOffset": self.offset, + "Replacements": [] if self.replacements is None else [r.toDict() for r in self.replacements], + }, + "Level": self.level + } diff --git a/printer-linter/src/printerlinter/factory.py b/printer-linter/src/printerlinter/factory.py new file mode 100644 index 0000000000..d27f82244b --- /dev/null +++ b/printer-linter/src/printerlinter/factory.py @@ -0,0 +1,26 @@ +from pathlib import Path +from typing import Optional + +from .linters.profile import Profile +from .linters.defintion import Definition +from .linters.linter import Linter +from .linters.meshes import Meshes + + +def getLinter(file: Path, settings: dict) -> Optional[Linter]: + """ Returns a Linter depending on the file format """ + if not file.exists(): + return None + + if ".inst" in file.suffixes and ".cfg" in file.suffixes: + return Profile(file, settings) + + if ".def" in file.suffixes and ".json" in file.suffixes: + if file.stem in ("fdmprinter.def", "fdmextruder.def"): + return None + return Definition(file, settings) + + if file.parent.stem == "meshes": + return Meshes(file, settings) + + return None diff --git a/printer-linter/src/printerlinter/formatters/__init__.py b/printer-linter/src/printerlinter/formatters/__init__.py new file mode 100644 index 0000000000..00d9c7eef3 --- /dev/null +++ b/printer-linter/src/printerlinter/formatters/__init__.py @@ -0,0 +1,4 @@ +from .def_json_formatter import DefJsonFormatter +from .inst_cfg_formatter import InstCfgFormatter + +__all__ = ["DefJsonFormatter", "InstCfgFormatter"] \ No newline at end of file diff --git a/printer-linter/src/printerlinter/formatters/def_json_formatter.py b/printer-linter/src/printerlinter/formatters/def_json_formatter.py new file mode 100644 index 0000000000..e3e238363e --- /dev/null +++ b/printer-linter/src/printerlinter/formatters/def_json_formatter.py @@ -0,0 +1,83 @@ +import json +import re +from collections import OrderedDict +from pathlib import Path +from typing import Dict + +from .formatter import FileFormatter + + +# Dictionary items with matching keys will be sorted as if they were the value +# Example: "version" will be sorted as if it was "0" +TOP_LEVEL_SORT_PRIORITY = { + "version": "0", + "name": "1", + "inherits": "3", +} + +METADATA_SORT_PRIORITY = { + "visible": "0", + "author": "1", + "manufacturer": "2", + "file_formats": "3", + "platform": "4", +} + +class DefJsonFormatter(FileFormatter): + def formatFile(self, file: Path): + """ Format .def.json files according to the rules in settings. + + You can assume that you will be running regex on standard formatted json files, because we load the json first and then + dump it to a string. This means you only have to write regex that works on the output of json.dump() + """ + + definition = json.loads(file.read_text(), object_pairs_hook=OrderedDict) + + if self._settings["format"].get("format-definition-sort-keys", True) and file.stem.split(".")[0] != "fdmprinter": + definition = self.order_keys(definition) + + content = json.dumps(definition, indent=self._settings["format"].get("format-definition-indent", 4)) + + if self._settings["format"].get("format-definition-bracket-newline", True): + newline = re.compile(r"(\B\s+)(\"[\w\"]+)(\:\s\{)") + content = newline.sub(r"\1\2:\1{", content) + + if self._settings["format"].get("format-definition-single-value-single-line", True): + single_value_dict = re.compile(r"(:)(\s*\n?.*\{\s+)(\".*)(\d*\s*\})(.*\n,?)") + content = single_value_dict.sub(r"\1 { \3 }\5", content) + + single_value_list = re.compile(r"(:)(\s*\n?.*\[\s+)(\".*)(\d*\s*\])(.*\n,?)") + content = single_value_list.sub(r"\1 [ \3 ]\5", content) + + if self._settings["format"].get("format-definition-paired-coordinate-array", True): + paired_coordinates = re.compile(r"(\s*\[)\s*([-\d\.]+),\s*([-\d\.]+)[\s]*(\])") + content = paired_coordinates.sub(r"\1\2, \3\4", content) + + file.write_text(content) + + def order_keys(self, json_content: OrderedDict) -> OrderedDict: + """ Orders json keys lexicographically """ + # First order all keys (Recursive) lexicographically + json_content_text = json.dumps(json_content, sort_keys=True) + json_content = json.loads(json_content_text, object_pairs_hook=OrderedDict) + + # Do a custom ordered sort on the top level items in the json. This is so that keys like "version" appear at the top. + json_content = self.custom_sort_keys(json_content, TOP_LEVEL_SORT_PRIORITY) + + # Do a custom ordered sort on collections that are one level deep into the json + if "metadata" in json_content.keys(): + json_content["metadata"] = self.custom_sort_keys(json_content["metadata"], METADATA_SORT_PRIORITY) + + return json_content + + + def custom_sort_keys(self, ordered_dictionary: OrderedDict, sort_priority: Dict[str, str]) -> OrderedDict: + """ Orders keys in dictionary lexicographically, except for keys with matching strings in sort_priority. + + Keys in ordered_dictionary that match keys in sort_priority will sort based on the value in sort_priority. + + @param ordered_dictionary: A dictionary that will have it's top level keys sorted + @param sort_priority: A mapping from string keys to alternative strings to be used instead when sorting. + @return: A dictionary sorted by it's top level keys + """ + return OrderedDict(sorted(ordered_dictionary.items(), key=lambda x: sort_priority[x[0]] if str(x[0]) in sort_priority.keys() else str(x[0]))) diff --git a/printer-linter/src/printerlinter/formatters/formatter.py b/printer-linter/src/printerlinter/formatters/formatter.py new file mode 100644 index 0000000000..c668744f42 --- /dev/null +++ b/printer-linter/src/printerlinter/formatters/formatter.py @@ -0,0 +1,16 @@ +from abc import ABC, abstractmethod +from pathlib import Path + + +class FileFormatter(ABC): + def __init__(self, settings: dict) -> None: + """ Yields Diagnostics for file, these are issues with the file such as bad text format or too large file size. + + @param file: A file to generate diagnostics for + @param settings: A list of settings containing rules for creating diagnostics + """ + self._settings = settings + + @abstractmethod + def formatFile(self, file: Path) -> None: + pass \ No newline at end of file diff --git a/printer-linter/src/printerlinter/formatters/inst_cfg_formatter.py b/printer-linter/src/printerlinter/formatters/inst_cfg_formatter.py new file mode 100644 index 0000000000..c4113bcb48 --- /dev/null +++ b/printer-linter/src/printerlinter/formatters/inst_cfg_formatter.py @@ -0,0 +1,21 @@ +import configparser +import json +import re +from collections import OrderedDict +from pathlib import Path + +from .formatter import FileFormatter + +class InstCfgFormatter(FileFormatter): + def formatFile(self, file: Path): + """ Format .inst.cfg files according to the rules in settings """ + config = configparser.ConfigParser() + config.read(file) + + if self._settings["format"].get("format-profile-sort-keys", True): + for section in config._sections: + config._sections[section] = OrderedDict(sorted(config._sections[section].items(), key=lambda t: t[0])) + config._sections = OrderedDict(sorted(config._sections.items(), key=lambda t: t[0])) + + with open(file, "w") as f: + config.write(f, space_around_delimiters=self._settings["format"].get("format-profile-space-around-delimiters", True)) \ No newline at end of file diff --git a/printer-linter/src/printerlinter/linters/__init__.py b/printer-linter/src/printerlinter/linters/__init__.py new file mode 100644 index 0000000000..a4a48acb3d --- /dev/null +++ b/printer-linter/src/printerlinter/linters/__init__.py @@ -0,0 +1,6 @@ +from .profile import Profile +from .meshes import Meshes +from .linter import Linter +from .defintion import Definition + +__all__ = ["Profile", "Meshes", "Linter", "Definition"] \ No newline at end of file diff --git a/printer-linter/src/printerlinter/linters/defintion.py b/printer-linter/src/printerlinter/linters/defintion.py new file mode 100644 index 0000000000..c4e955a2a5 --- /dev/null +++ b/printer-linter/src/printerlinter/linters/defintion.py @@ -0,0 +1,141 @@ +import json +import re +from pathlib import Path +from typing import Iterator + +from ..diagnostic import Diagnostic +from .linter import Linter +from ..replacement import Replacement + + +class Definition(Linter): + """ Finds issues in definition files, such as overriding default parameters """ + def __init__(self, file: Path, settings: dict) -> None: + super().__init__(file, settings) + self._definitions = {} + self._loadDefinitionFiles(file) + self._content = self._file.read_text() + self._loadBasePrinterSettings() + + @property + def base_def(self): + if "fdmextruder" in self._definitions: + return "fdmextruder" + return "fdmprinter" + + def check(self) -> Iterator[Diagnostic]: + if self._settings["checks"].get("diagnostic-definition-redundant-override", False): + for check in self.checkRedefineOverride(): + yield check + + # Add other which will yield Diagnostic's + # TODO: A check to determine if the user set value is with the min and max value defined in the parent and doesn't trigger a warning + # TODO: A check if the key exist in the first place + # TODO: Check if the model platform exist + + yield + + def checkRedefineOverride(self) -> Iterator[Diagnostic]: + """ Checks if definition file overrides its parents settings with the same value. """ + definition_name = list(self._definitions.keys())[0] + definition = self._definitions[definition_name] + if "overrides" in definition and definition_name not in ("fdmprinter", "fdmextruder"): + for key, value_dict in definition["overrides"].items(): + is_redefined, child_key, child_value, parent = self._isDefinedInParent(key, value_dict, definition['inherits']) + if is_redefined: + redefined = re.compile(r'.*(\"' + key + r'\"[\s\:\S]*?)\{[\s\S]*?\},?') + found = redefined.search(self._content) + # TODO: Figure out a way to support multiline fixes in the PR review GH Action, for now suggest no fix to ensure no ill-formed json are created + # see: https://github.com/platisd/clang-tidy-pr-comments/issues/37 + if len(found.group().splitlines()) > 1: + replacements = [] + else: + replacements = [Replacement( + file = self._file, + offset = found.span(1)[0], + length = len(found.group()), + replacement_text = "")] + + yield Diagnostic( + file = self._file, + diagnostic_name = "diagnostic-definition-redundant-override", + message = f"Overriding {key} with the same value ({child_key}: {child_value}) as defined in parent definition: {definition['inherits']}", + level = "Warning", + offset = found.span(0)[0], + replacements = replacements + ) + + def _loadDefinitionFiles(self, definition_file) -> None: + """ Loads definition file contents into self._definitions. Also load parent definition if it exists. """ + definition_name = Path(definition_file.stem).stem + + if not definition_file.exists() or definition_name in self._definitions: + return + + # Load definition file into dictionary + self._definitions[definition_name] = json.loads(definition_file.read_text()) + + # Load parent definition if it exists + if "inherits" in self._definitions[definition_name]: + if self._definitions[definition_name]['inherits'] in ("fdmextruder", "fdmprinter"): + parent_file = definition_file.parent.parent.joinpath("definitions", f"{self._definitions[definition_name]['inherits']}.def.json") + else: + parent_file = definition_file.parent.joinpath(f"{self._definitions[definition_name]['inherits']}.def.json") + self._loadDefinitionFiles(parent_file) + + def _isDefinedInParent(self, key, value_dict, inherits_from): + if self._ignore(key, "diagnostic-definition-redundant-override"): + return False, None, None, None + if "overrides" not in self._definitions[inherits_from]: + return self._isDefinedInParent(key, value_dict, self._definitions[inherits_from]["inherits"]) + + parent = self._definitions[inherits_from]["overrides"] + if key not in self._definitions[self.base_def]["overrides"]: + is_number = False + else: + is_number = self._definitions[self.base_def]["overrides"][key]["type"] in ("float", "int") + for child_key, child_value in value_dict.items(): + if key in parent: + if child_key in ("default_value", "value"): + check_values = [cv for cv in [parent[key].get("default_value", None), parent[key].get("value", None)] if cv is not None] + else: + check_values = [parent[key].get(child_key, None)] + for check_value in check_values: + if is_number and child_key in ("default_value", "value"): + try: + v = str(float(child_value)) + except: + v = child_value + try: + cv = str(float(check_value)) + except: + cv = check_value + else: + v = child_value + cv = check_value + if v == cv: + return True, child_key, child_value, parent + + if "inherits" in parent: + return self._isDefinedInParent(key, value_dict, parent["inherits"]) + return False, None, None, None + + def _loadBasePrinterSettings(self): + settings = {} + for k, v in self._definitions[self.base_def]["settings"].items(): + self._getSetting(k, v, settings) + self._definitions[self.base_def] = {"overrides": settings} + + def _getSetting(self, name, setting, settings) -> None: + if "children" in setting: + for childname, child in setting["children"].items(): + self._getSetting(childname, child, settings) + settings |= {name: setting} + + def _ignore(self, key: dict, type_of_check: str) -> bool: + if f"{type_of_check}-ignore" in self._settings: + filters = [re.compile(f) for f in self._settings[f"{type_of_check}-ignore"]] + for f in filters: + if f.match(key): + return True + return False diff --git a/printer-linter/src/printerlinter/linters/linter.py b/printer-linter/src/printerlinter/linters/linter.py new file mode 100644 index 0000000000..fbcd91196d --- /dev/null +++ b/printer-linter/src/printerlinter/linters/linter.py @@ -0,0 +1,20 @@ +from abc import ABC, abstractmethod +from pathlib import Path +from typing import Iterator + +from ..diagnostic import Diagnostic + + +class Linter(ABC): + def __init__(self, file: Path, settings: dict) -> None: + """ Yields Diagnostics for file, these are issues with the file such as bad text format or too large file size. + + @param file: A file to generate diagnostics for + @param settings: A list of settings containing rules for creating diagnostics + """ + self._settings = settings + self._file = file + + @abstractmethod + def check(self) -> Iterator[Diagnostic]: + pass \ No newline at end of file diff --git a/printer-linter/src/printerlinter/linters/meshes.py b/printer-linter/src/printerlinter/linters/meshes.py new file mode 100644 index 0000000000..3023d9bc77 --- /dev/null +++ b/printer-linter/src/printerlinter/linters/meshes.py @@ -0,0 +1,49 @@ +from pathlib import Path +from typing import Iterator + +from ..diagnostic import Diagnostic +from .linter import Linter + +MAX_MESH_FILE_SIZE = 1 * 1024 * 1024 # 1MB + + +class Meshes(Linter): + def __init__(self, file: Path, settings: dict) -> None: + """ Finds issues in model files, such as incorrect file format or too large size """ + super().__init__(file, settings) + self._max_file_size = self._settings.get("diagnostic-mesh-file-size", MAX_MESH_FILE_SIZE) + + def check(self) -> Iterator[Diagnostic]: + if self._settings["checks"].get("diagnostic-mesh-file-extension", False): + for check in self.checkFileFormat(): + yield check + + if self._settings["checks"].get("diagnostic-mesh-file-size", False): + for check in self.checkFileSize(): + yield check + + yield + + def checkFileFormat(self) -> Iterator[Diagnostic]: + """ Check if mesh is in supported format """ + if self._file.suffix.lower() not in (".3mf", ".obj", ".stl"): + yield Diagnostic( + file = self._file, + diagnostic_name = "diagnostic-mesh-file-extension", + message = f"Extension {self._file.suffix} not supported, use 3mf, obj or stl", + level = "Error", + offset = 1 + ) + yield + + def checkFileSize(self) -> Iterator[Diagnostic]: + """ Check if file is within size limits for Cura """ + if self._file.stat().st_size > self._max_file_size: + yield Diagnostic( + file = self._file, + diagnostic_name = "diagnostic-mesh-file-size", + message = f"Mesh file with a size {self._file.stat().st_size} is bigger then allowed maximum of {self._max_file_size}", + level = "Error", + offset = 1 + ) + yield diff --git a/printer-linter/src/printerlinter/linters/profile.py b/printer-linter/src/printerlinter/linters/profile.py new file mode 100644 index 0000000000..85cc2d9f0b --- /dev/null +++ b/printer-linter/src/printerlinter/linters/profile.py @@ -0,0 +1,9 @@ +from typing import Iterator + +from ..diagnostic import Diagnostic +from .linter import Linter + + +class Profile(Linter): + def check(self) -> Iterator[Diagnostic]: + yield diff --git a/printer-linter/src/printerlinter/replacement.py b/printer-linter/src/printerlinter/replacement.py new file mode 100644 index 0000000000..b9f390107d --- /dev/null +++ b/printer-linter/src/printerlinter/replacement.py @@ -0,0 +1,21 @@ +from pathlib import Path + +class Replacement: + def __init__(self, file: Path, offset: int, length: int, replacement_text: str): + """ Replacement text for file between offset and offset+length. + + @param file: File to replace text in + @param offset: Offset in file to start text replace + @param length: Length of text that will be replaced. offset -> offset+length is the section of text to replace. + @param replacement_text: Text to insert of offset in file. + """ + self.file = file + self.offset = offset + self.length = length + self.replacement_text = replacement_text + + def toDict(self) -> dict: + return {"FilePath": self.file.as_posix(), + "Offset": self.offset, + "Length": self.length, + "ReplacementText": self.replacement_text} diff --git a/printer-linter/src/terminal.py b/printer-linter/src/terminal.py new file mode 100644 index 0000000000..71103a0db2 --- /dev/null +++ b/printer-linter/src/terminal.py @@ -0,0 +1,126 @@ +from argparse import ArgumentParser +from os import getcwd +from os import path +from pathlib import Path +from typing import List + +import yaml + +from printerlinter import factory +from printerlinter.diagnostic import Diagnostic +from printerlinter.formatters.def_json_formatter import DefJsonFormatter +from printerlinter.formatters.inst_cfg_formatter import InstCfgFormatter + + +def main() -> None: + parser = ArgumentParser( + description="UltiMaker Cura printer linting, static analysis and formatting of Cura printer definitions and other resources") + parser.add_argument("--setting", required=False, type=Path, help="Path to the `.printer-linter` setting file") + parser.add_argument("--report", required=False, type=Path, help="Path where the diagnostic report should be stored") + parser.add_argument("--format", action="store_true", help="Format the files") + parser.add_argument("--diagnose", action="store_true", help="Diagnose the 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") + + args = parser.parse_args() + files = extractFilePaths(args.Files) + setting_path = args.setting + to_format = args.format + to_fix = args.fix + to_diagnose = args.diagnose + report = args.report + + if not setting_path: + setting_path = Path(getcwd(), ".printer-linter") + + if not setting_path.exists(): + print(f"Can't find the settings: {setting_path}") + return + + with open(setting_path, "r") as f: + settings = yaml.load(f, yaml.FullLoader) + + full_body_check = {"Diagnostics": []} + + for file in files: + if not path.exists(file): + print(f"Can't find the file: {file}") + return + + if to_fix or to_diagnose: + for file in files: + diagnostics = diagnoseIssuesWithFile(file, settings) + full_body_check["Diagnostics"].extend([d.toDict() for d in diagnostics]) + + results = yaml.dump(full_body_check, default_flow_style=False, indent=4, width=240) + + if report: + report.write_text(results) + else: + print(results) + + if to_fix: + for file in files: + if f"{file.as_posix()}" in full_body_check: + applyFixesToFile(file, settings, full_body_check) + + if to_format: + for file in files: + applyFormattingToFile(file, settings) + + +def diagnoseIssuesWithFile(file: Path, settings: dict) -> List[Diagnostic]: + """ For file, runs all diagnostic checks in settings and returns a list of diagnostics """ + linter = factory.getLinter(file, settings) + + if not linter: + return [] + + return list(filter(lambda d: d is not None, linter.check())) + + +def applyFixesToFile(file, settings, full_body_check) -> None: + if not file.exists(): + return + ext = ".".join(file.name.split(".")[-2:]) + + if ext == "def.json": + issues = full_body_check[f"{file.as_posix()}"] + for issue in issues: + if issue["diagnostic"] == "diagnostic-definition-redundant-override" and settings["fixes"].get( + "diagnostic-definition-redundant-override", True): + pass + + +def applyFormattingToFile(file: Path, settings) -> None: + if not file.exists(): + return + + ext = ".".join(file.name.split(".")[-2:]) + + if ext == "def.json": + formatter = DefJsonFormatter(settings) + formatter.formatFile(file) + + if ext == "inst.cfg": + formatter = InstCfgFormatter(settings) + formatter.formatFile(file) + + +def extractFilePaths(paths: List[Path]) -> List[Path]: + """ Takes list of files and directories, returns the files as well as all files within directories as a List """ + file_paths = [] + for path in paths: + if path.is_dir(): + file_paths.extend(path.rglob("**/*")) + if not path.match("*"): + file_paths.append(path) + else: + file_paths.extend(Path(*path.parts[:-1]).glob(path.parts[-1])) + continue + + return file_paths + + +if __name__ == "__main__": + main() diff --git a/requirements-dev.txt b/requirements-dev.txt new file mode 100644 index 0000000000..a1b191009a --- /dev/null +++ b/requirements-dev.txt @@ -0,0 +1,6 @@ +pytest +pyinstaller==5.8.0 +pyinstaller-hooks-contrib +pyyaml +sip==6.5.1 +jinja2 diff --git a/requirements-ultimaker.txt b/requirements-ultimaker.txt new file mode 100644 index 0000000000..8a412d8596 --- /dev/null +++ b/requirements-ultimaker.txt @@ -0,0 +1 @@ +git+https://github.com/ultimaker/libcharon@master/s-line#egg=charon diff --git a/requirements.txt b/requirements.txt index dc14e2e041..4586fee6c3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,36 +1,377 @@ -appdirs==1.4.3 -certifi==2019.11.28 -cffi==1.14.1 -chardet==3.0.4 -colorlog -cryptography==3.4.8 -decorator==4.4.0 -idna==2.8 -importlib-metadata==4.10.0 -keyring==23.0.1 -lxml==4.7.1 -mypy==0.740 -netifaces==0.10.9 -networkx==2.6.2 -numpy==1.21.5 -numpy-stl==2.10.1 -packaging==18.0 -pyclipper==1.3.0.post2 -pycollada==0.6 -pycparser==2.20 -pyparsing==2.4.2 -PyQt5==5.15.6 -PyQt5-sip==12.9.0 -pyserial==3.4 -pytest -python-dateutil==2.8.0 -python-utils==2.3.0 -pywin32==303 -scipy==1.8.0rc2 -sentry-sdk==0.13.5 -six==1.12.0 -trimesh==3.9.36 -twisted==21.2.0 -typing -urllib3==1.25.9 -zeroconf==0.31.0 +### Direct requirements for Uranium and libCharon ### +PyQt6-sip==13.4.1 \ + --hash=sha256:0df998f2b6ceeacfd10de773441572e215be0c9cae566cc7dd36e231bf714a12 \ + --hash=sha256:224575e84805c4317bacd5d1b8e93e0ad5c48685dadbbe1e902d4ebe16f22828 \ + --hash=sha256:36ae29cdc223cacc1257d0f5075cf81474550c6d26b728f922487a2aa935f130 \ + --hash=sha256:3a674c591d4274d4ea8127205290e927a7dab0eb87a0038d4f4ea1d430782649 \ + --hash=sha256:3ef9392e4ae29d393b79237d85840cdc6b8831f36eed5d56c7d9b329b380cc8d \ + --hash=sha256:43935873d60f57719632840d517afee04ef8f30e92cfe0dadc7e6326691920fc \ + --hash=sha256:5731f22618435654352ef07684549a17be82b75254227fc80b4b5b0b59fc6656 \ + --hash=sha256:5bc4beb6fb1de4c9ba8beee7b1a4a813fa888c3b095206dafcd25d7e6e4ed2a7 \ + --hash=sha256:5c36ab984402e96792eebf4b031abfaa589aa20af3190a79c54502c16964d97e \ + --hash=sha256:a2a0461992c6657f343308b150c4d6b57e9e7a0e5c2f79538434e7fb869ea827 \ + --hash=sha256:a81490ee84d7a41a126b116081bd97d758f41bf706aee0a8cec24d6e4c660184 \ + --hash=sha256:e00e287ea05bbc293fc6e2198301962af9b7b622bd2daf4288f925a88ae35dc9 \ + --hash=sha256:e670a7b2fb7e32204ce67d274017bfff3e21139d217d60cebbfcb75b019c91ee \ + --hash=sha256:ee06f255787a0b4957f357f93b78d2a11ca3761916833e3afa83f1381d4d1a46 \ + --hash=sha256:fbee0d554e0e98f56dbf6d94b00a28cc32425938ad7ae98fd91f8822c5b24d45 \ + --hash=sha256:fcc6d78314783f4a193f02353f431b7ea4d357f47c3c7a7d0740e723f69c64dc +PyQt6==6.4.2 \ + --hash=sha256:18d1daf98d9236d55102cdadafd1056f5802f3c9288fcf7238569937b71a89f0 \ + --hash=sha256:25bd399b4a95dce65d5f937c1aa85d3c7e14a21745ae2a4ca14c0116cd104290 \ + --hash=sha256:740244f608fe15ee1d89695c43f31a14caeca41c4f02ac36c86dfba4a5d5813d \ + --hash=sha256:c128bc0f17833e324593e3db83e99470d451a197dd17ff0333927b946c935bd9 +PyQt6-Qt6==6.4.2 \ + --hash=sha256:9f07c3c100cb46cca4074965e7494d4df4f0fc016497d5303c1fe135822876e1 \ + --hash=sha256:a29b8c858babd523e80c8db5f8fd19792641588ec04eab49af18b7a4423eb99f \ + --hash=sha256:c0e91d0275d428496cacff717a9b719c52bfa52b21f124d638b79cc2217bc81e \ + --hash=sha256:d19c4e72615762cd6f0b043f23fa5f0b02656091427ce6de1efccd58e10e6a53 +PyQt6-NetworkAuth==6.4.0 \ + --hash=sha256:ab6178b3b2902ae9939a148555cfcee8c7803d6b0d5924cd1bd8f3407b8b9210 \ + --hash=sha256:c16ec80232d88024b60d04386a23cc93067e5644a65f47f26ffb13d84dcd4a6d \ + --hash=sha256:c302cd0d838c7229eda5e26e0b1b3d3ec4f8720f8d9379472bce5a89ff0735c2 \ + --hash=sha256:d948fc0cf43b64afbda2acb5bf2392f785a1e7a2950d79ea850c1a3f4ae12f1a +PyQt6-NetworkAuth-Qt6==6.4.2 \ + --hash=sha256:179094bcb4d4d056316c22d3d067cd94d4591da23f804461bfb025ccfa29b2b4 \ + --hash=sha256:1de6abbb5fa6585b97ae49d3f64b0dfad40bd56b1a31744d9775ff26247241c8 \ + --hash=sha256:79ec4b0fc9450bbedbff03541b93b10d1c7e761cd2cc16ce70d2b09dcdf8c720 \ + --hash=sha256:d96d557fe61edb9b68d189f270f0393d6579c8d308e6b0d41bc0699371d7cb4e +certifi==2021.10.8 \ + --hash=sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872 \ + --hash=sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569 +cryptography==3.4.8; \ + --hash=sha256:0a7dcbcd3f1913f664aca35d47c1331fce738d44ec34b7be8b9d332151b0b01e \ + --hash=sha256:1eb7bb0df6f6f583dd8e054689def236255161ebbcf62b226454ab9ec663746b \ + --hash=sha256:21ca464b3a4b8d8e86ba0ee5045e103a1fcfac3b39319727bc0fc58c09c6aff7 \ + --hash=sha256:34dae04a0dce5730d8eb7894eab617d8a70d0c97da76b905de9efb7128ad7085 \ + --hash=sha256:3520667fda779eb788ea00080124875be18f2d8f0848ec00733c0ec3bb8219fc \ + --hash=sha256:3c4129fc3fdc0fa8e40861b5ac0c673315b3c902bbdc05fc176764815b43dd1d \ + --hash=sha256:3fa3a7ccf96e826affdf1a0a9432be74dc73423125c8f96a909e3835a5ef194a \ + --hash=sha256:5b0fbfae7ff7febdb74b574055c7466da334a5371f253732d7e2e7525d570498 \ + --hash=sha256:695104a9223a7239d155d7627ad912953b540929ef97ae0c34c7b8bf30857e89 \ + --hash=sha256:8695456444f277af73a4877db9fc979849cd3ee74c198d04fc0776ebc3db52b9 \ + --hash=sha256:94cc5ed4ceaefcbe5bf38c8fba6a21fc1d365bb8fb826ea1688e3370b2e24a1c \ + --hash=sha256:94fff993ee9bc1b2440d3b7243d488c6a3d9724cc2b09cdb297f6a886d040ef7 \ + --hash=sha256:9965c46c674ba8cc572bc09a03f4c649292ee73e1b683adb1ce81e82e9a6a0fb \ + --hash=sha256:a00cf305f07b26c351d8d4e1af84ad7501eca8a342dedf24a7acb0e7b7406e14 \ + --hash=sha256:a305600e7a6b7b855cd798e00278161b681ad6e9b7eca94c721d5f588ab212af \ + --hash=sha256:cd65b60cfe004790c795cc35f272e41a3df4631e2fb6b35aa7ac6ef2859d554e \ + --hash=sha256:d2a6e5ef66503da51d2110edf6c403dc6b494cc0082f85db12f54e9c5d4c3ec5 \ + --hash=sha256:d9ec0e67a14f9d1d48dd87a2531009a9b251c02ea42851c060b25c782516ff06 \ + --hash=sha256:f44d141b8c4ea5eb4dbc9b3ad992d45580c1d22bf5e24363f2fbf50c2d7ae8a7 +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.2.0 \ + --hash=sha256:149e90d6d8ac20db7a955ad60cf0e6881a3f20d37096140088356da6c716b0b1 \ + --hash=sha256:ef6aaac3ca6cd92904cdd0d83f629a15f18053ec84e6432106f7a4d04ae4f5fb +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==21.3.0 \ + --hash=sha256:02f5de5aff48f6b9f665d99d48bfc7ec03b6e3943210de7cfc88856d755d6f57 \ + --hash=sha256:92014aebc6a20b78a8084cdd5645eeaa7f74b8933f70fa3ada2cfbd1e3b54321 +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==1.8.2 \ + --hash=sha256:572af9d5006fd5e3213e37ee548912b0341fb26724d6dc8a4e3950c10197ebb6 \ + --hash=sha256:c60f3758212ec480675b820b13035dda8af8f7cc560d2cc67999b2717fb8faef \ + --hash=sha256:6bdc7728f1e5df430d8c588661f79f1eed4a2728c8b689e12707cfec217f68f8 \ + --hash=sha256:ce0b5c5f7acbccf98b3460eecaa40e9b18272b2a734f74fcddf1d7696e047e95 \ + --hash=sha256:7c9e3400b716c51ba43eea1678c28272580114e009b6c78cdd00c44df3e325fa \ + --hash=sha256:3423299254deec075e79fb7dc7909d702104e4167149de7f45510c3a6342eeea \ + --hash=sha256:3423299254deec075e79fb7dc7909d702104e4167149de7f45510c3a6342eeea \ + --hash=sha256:44d2832c1b706bf43101fda92831a083467cc4b4923a7ed17319ab599c1025d8 \ + --hash=sha256:44d2832c1b706bf43101fda92831a083467cc4b4923a7ed17319ab599c1025d8 \ + --hash=sha256:75042e8039c79dd01f102bb288beace9dc2f49fc44a2dea875f9b697aa8cd30d \ + --hash=sha256:75042e8039c79dd01f102bb288beace9dc2f49fc44a2dea875f9b697aa8cd30d \ + --hash=sha256:5254240eefc44139ab0d128faf671635d8bdd9c23955ee063d4d6b8f20073ae0 +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.1 \ + --hash=sha256:422d82c36172d88d6a0ed5afdec956514b189ddbfb72fefab0c8a1cee4eaf71f \ + --hash=sha256:fd666c51a6bf200643495a04abb261f83229dcb6fd8472ec393df7ffc8b6f195 +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 6ec6d5a7b9..f111187161 100644 --- a/resources/bundled_packages/cura.json +++ b/resources/bundled_packages/cura.json @@ -6,11 +6,11 @@ "display_name": "3MF Reader", "description": "Provides support for reading 3MF files.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -23,11 +23,11 @@ "display_name": "3MF Writer", "description": "Provides support for writing 3MF files.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -40,7 +40,7 @@ "display_name": "AMF Reader", "description": "Provides support for reading AMF files.", "package_version": "1.0.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "fieldOfView", @@ -57,11 +57,11 @@ "display_name": "Cura Backups", "description": "Backup and restore your configuration.", "package_version": "1.2.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -74,11 +74,11 @@ "display_name": "CuraEngine Backend", "description": "Provides the link to the CuraEngine slicing backend.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -91,11 +91,11 @@ "display_name": "Cura Profile Reader", "description": "Provides support for importing Cura profiles.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -108,11 +108,11 @@ "display_name": "Cura Profile Writer", "description": "Provides support for exporting Cura profiles.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -125,11 +125,11 @@ "display_name": "Ultimaker Digital Library", "description": "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library.", "package_version": "1.1.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -142,11 +142,11 @@ "display_name": "Firmware Update Checker", "description": "Checks for firmware updates.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -159,11 +159,11 @@ "display_name": "Firmware Updater", "description": "Provides a machine actions for updating firmware.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -176,11 +176,11 @@ "display_name": "Compressed G-code Reader", "description": "Reads g-code from a compressed archive.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -193,11 +193,11 @@ "display_name": "Compressed G-code Writer", "description": "Writes g-code to a compressed archive.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -210,11 +210,11 @@ "display_name": "G-Code Profile Reader", "description": "Provides support for importing profiles from g-code files.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -227,7 +227,7 @@ "display_name": "G-Code Reader", "description": "Allows loading and displaying G-code files.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "VictorLarchenko", @@ -244,11 +244,11 @@ "display_name": "G-Code Writer", "description": "Writes g-code to a file.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -261,11 +261,11 @@ "display_name": "Image Reader", "description": "Enables ability to generate printable geometry from 2D image files.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -278,11 +278,11 @@ "display_name": "Legacy Cura Profile Reader", "description": "Provides support for importing profiles from legacy Cura versions.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -295,7 +295,7 @@ "display_name": "Machine Settings Action", "description": "Provides a way to change machine settings (such as build volume, nozzle size, etc.).", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "fieldOfView", @@ -312,11 +312,11 @@ "display_name": "Model Checker", "description": "Checks models and print configuration for possible printing issues and give suggestions.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -329,11 +329,11 @@ "display_name": "Monitor Stage", "description": "Provides a monitor stage in Cura.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -346,11 +346,11 @@ "display_name": "Per-Object Settings Tool", "description": "Provides the per-model settings.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -363,11 +363,11 @@ "display_name": "Post Processing", "description": "Extension that allows for user created scripts for post processing.", "package_version": "2.2.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -380,11 +380,11 @@ "display_name": "Prepare Stage", "description": "Provides a prepare stage in Cura.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -397,11 +397,11 @@ "display_name": "Preview Stage", "description": "Provides a preview stage in Cura.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -414,11 +414,11 @@ "display_name": "Removable Drive Output Device", "description": "Provides removable drive hotplugging and writing support.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -431,11 +431,11 @@ "display_name": "Sentry Logger", "description": "Logs certain events so that they can be used by the crash reporter", "package_version": "1.0.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -448,11 +448,11 @@ "display_name": "Simulation View", "description": "Provides the Simulation view.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -465,11 +465,11 @@ "display_name": "Slice Info", "description": "Submits anonymous slice info. Can be disabled through preferences.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -482,11 +482,11 @@ "display_name": "Solid View", "description": "Provides a normal solid mesh view.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -499,11 +499,11 @@ "display_name": "Support Eraser Tool", "description": "Creates an eraser mesh to block the printing of support in certain places.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -516,11 +516,11 @@ "display_name": "Trimesh Reader", "description": "Provides support for reading model files.", "package_version": "1.0.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -533,11 +533,11 @@ "display_name": "Marketplace", "description": "Find, manage and install new Cura packages.", "package_version": "1.0.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -550,11 +550,11 @@ "display_name": "UFP Reader", "description": "Provides support for reading Ultimaker Format Packages.", "package_version": "1.0.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -567,11 +567,11 @@ "display_name": "UFP Writer", "description": "Provides support for writing Ultimaker Format Packages.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -584,11 +584,11 @@ "display_name": "Ultimaker Machine Actions", "description": "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.).", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -601,11 +601,11 @@ "display_name": "UM3 Network Printing", "description": "Manages network connections to Ultimaker 3 printers.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -618,11 +618,11 @@ "display_name": "USB Printing", "description": "Accepts G-Code and sends them to a printer. Plugin can also update firmware.", "package_version": "1.0.2", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -635,11 +635,11 @@ "display_name": "Version Upgrade 2.1 to 2.2", "description": "Upgrades configurations from Cura 2.1 to Cura 2.2.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -652,11 +652,11 @@ "display_name": "Version Upgrade 2.2 to 2.4", "description": "Upgrades configurations from Cura 2.2 to Cura 2.4.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -669,11 +669,11 @@ "display_name": "Version Upgrade 2.5 to 2.6", "description": "Upgrades configurations from Cura 2.5 to Cura 2.6.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -686,11 +686,11 @@ "display_name": "Version Upgrade 2.6 to 2.7", "description": "Upgrades configurations from Cura 2.6 to Cura 2.7.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -703,11 +703,11 @@ "display_name": "Version Upgrade 2.7 to 3.0", "description": "Upgrades configurations from Cura 2.7 to Cura 3.0.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -720,11 +720,11 @@ "display_name": "Version Upgrade 3.0 to 3.1", "description": "Upgrades configurations from Cura 3.0 to Cura 3.1.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -737,11 +737,11 @@ "display_name": "Version Upgrade 3.2 to 3.3", "description": "Upgrades configurations from Cura 3.2 to Cura 3.3.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -754,11 +754,11 @@ "display_name": "Version Upgrade 3.3 to 3.4", "description": "Upgrades configurations from Cura 3.3 to Cura 3.4.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -771,11 +771,11 @@ "display_name": "Version Upgrade 3.4 to 3.5", "description": "Upgrades configurations from Cura 3.4 to Cura 3.5.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -788,11 +788,11 @@ "display_name": "Version Upgrade 3.5 to 4.0", "description": "Upgrades configurations from Cura 3.5 to Cura 4.0.", "package_version": "1.0.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -805,11 +805,11 @@ "display_name": "Version Upgrade 4.0 to 4.1", "description": "Upgrades configurations from Cura 4.0 to Cura 4.1.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -822,11 +822,11 @@ "display_name": "Version Upgrade 4.1 to 4.2", "description": "Upgrades configurations from Cura 4.1 to Cura 4.2.", "package_version": "1.0.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -839,11 +839,11 @@ "display_name": "Version Upgrade 4.2 to 4.3", "description": "Upgrades configurations from Cura 4.2 to Cura 4.3.", "package_version": "1.0.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -856,11 +856,11 @@ "display_name": "Version Upgrade 4.3 to 4.4", "description": "Upgrades configurations from Cura 4.3 to Cura 4.4.", "package_version": "1.0.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -873,11 +873,11 @@ "display_name": "Version Upgrade 4.4 to 4.5", "description": "Upgrades configurations from Cura 4.4 to Cura 4.5.", "package_version": "1.0.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -890,11 +890,11 @@ "display_name": "Version Upgrade 4.5 to 4.6", "description": "Upgrades configurations from Cura 4.5 to Cura 4.6.", "package_version": "1.0.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -907,11 +907,11 @@ "display_name": "Version Upgrade 4.6.0 to 4.6.2", "description": "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2.", "package_version": "1.0.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -924,11 +924,11 @@ "display_name": "Version Upgrade 4.6.2 to 4.7", "description": "Upgrades configurations from Cura 4.6.2 to Cura 4.7.", "package_version": "1.0.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -941,11 +941,11 @@ "display_name": "Version Upgrade 4.7.0 to 4.8.0", "description": "Upgrades configurations from Cura 4.7.0 to Cura 4.8.0", "package_version": "1.0.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -958,11 +958,11 @@ "display_name": "Version Upgrade 4.8.0 to 4.9.0", "description": "Upgrades configurations from Cura 4.8.0 to Cura 4.9.0", "package_version": "1.0.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -975,11 +975,11 @@ "display_name": "Version Upgrade 4.9 to 4.10", "description": "Upgrades configurations from Cura 4.9 to Cura 4.10", "package_version": "1.0.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -992,12 +992,46 @@ "display_name": "Version Upgrade 4.11 to 4.12", "description": "Upgrades configurations from Cura 4.11 to Cura 4.12", "package_version": "1.0.0", - "sdk_version": 7, + "sdk_version": "8.2.0", "sdk_version_semver": "7.7.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", + "email": "plugins@ultimaker.com", + "website": "https://ultimaker.com" + } + } + }, + "VersionUpgrade413to50": { + "package_info": { + "package_id": "VersionUpgrade413to50", + "package_type": "plugin", + "display_name": "Version Upgrade 4.13 to 5.0", + "description": "Upgrades configurations from Cura 4.13 to Cura 5.0", + "package_version": "1.0.0", + "sdk_version": "8.2.0", + "website": "https://ultimaker.com", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "plugins@ultimaker.com", + "website": "https://ultimaker.com" + } + } + }, + "VersionUpgrade52to53": { + "package_info": { + "package_id": "VersionUpgrade52to53", + "package_type": "plugin", + "display_name": "Version Upgrade 5.2 to 5.3", + "description": "Upgrades configurations from Cura 5.2 to Cura 5.3", + "package_version": "1.0.0", + "sdk_version": "8.2.0", + "website": "https://ultimaker.com", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -1010,7 +1044,7 @@ "display_name": "X3D Reader", "description": "Provides support for reading X3D files.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "SevaAlekseyev", @@ -1027,11 +1061,11 @@ "display_name": "XML Material Profiles", "description": "Provides capabilities to read and write XML-based material profiles.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -1044,11 +1078,11 @@ "display_name": "X-Ray View", "description": "Provides the X-Ray view.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "plugins@ultimaker.com", "website": "https://ultimaker.com" } @@ -1061,7 +1095,7 @@ "display_name": "Generic ABS", "description": "The generic ABS profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1079,7 +1113,7 @@ "display_name": "Generic BAM", "description": "The generic BAM profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1097,7 +1131,7 @@ "display_name": "Generic CFF CPE", "description": "The generic CFF CPE profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1115,7 +1149,7 @@ "display_name": "Generic CFF PA", "description": "The generic CFF PA profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1133,7 +1167,7 @@ "display_name": "Generic CPE", "description": "The generic CPE profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1151,7 +1185,7 @@ "display_name": "Generic CPE+", "description": "The generic CPE+ profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1169,7 +1203,7 @@ "display_name": "Generic GFF CPE", "description": "The generic GFF CPE profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1187,7 +1221,7 @@ "display_name": "Generic GFF PA", "description": "The generic GFF PA profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1205,7 +1239,7 @@ "display_name": "Generic HIPS", "description": "The generic HIPS profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1223,7 +1257,7 @@ "display_name": "Generic Nylon", "description": "The generic Nylon profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1241,7 +1275,7 @@ "display_name": "Generic PC", "description": "The generic PC profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1259,7 +1293,7 @@ "display_name": "Generic PETG", "description": "The generic PETG profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1277,7 +1311,7 @@ "display_name": "Generic PLA", "description": "The generic PLA profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1295,7 +1329,7 @@ "display_name": "Generic PP", "description": "The generic PP profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1313,7 +1347,7 @@ "display_name": "Generic PVA", "description": "The generic PVA profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1331,7 +1365,7 @@ "display_name": "Generic Tough PLA", "description": "The generic Tough PLA profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1349,7 +1383,7 @@ "display_name": "Generic TPU", "description": "The generic TPU profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1367,7 +1401,7 @@ "display_name": "Dagoma Chromatik PLA", "description": "Filament testé et approuvé pour les imprimantes 3D Dagoma. Chromatik est l'idéal pour débuter et suivre les tutoriels premiers pas. Il vous offre qualité et résistance pour chacune de vos impressions.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://dagoma.fr/boutique/filaments.html", "author": { "author_id": "Dagoma", @@ -1384,7 +1418,7 @@ "display_name": "FABtotum ABS", "description": "This material is easy to be extruded but it is not the simplest to use. It is one of the most used in 3D printing to get very well finished objects. It is not sustainable and its smoke can be dangerous if inhaled. The reason to prefer this filament to PLA is mainly because of its precision and mechanical specs. ABS (for plastic) stands for Acrylonitrile Butadiene Styrene and it is a thermoplastic which is widely used in everyday objects. It can be printed with any FFF 3D printer which can get to high temperatures as it must be extruded in a range between 220° and 245°, so it’s compatible with all versions of the FABtotum Personal fabricator.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=40", "author": { "author_id": "FABtotum", @@ -1401,7 +1435,7 @@ "display_name": "FABtotum Nylon", "description": "When 3D printing started this material was not listed among the extrudable filaments. It is flexible as well as resistant to tractions. It is well known for its uses in textile but also in industries which require a strong and flexible material. There are different kinds of Nylon: 3D printing mostly uses Nylon 6 and Nylon 6.6, which are the most common. It requires higher temperatures to be printed, so a 3D printer must be able to reach them (around 240°C): the FABtotum, of course, can.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=53", "author": { "author_id": "FABtotum", @@ -1418,7 +1452,7 @@ "display_name": "FABtotum PLA", "description": "It is the most common filament used for 3D printing. It is studied to be bio-degradable as it comes from corn starch’s sugar mainly. It is completely made of renewable sources and has no footprint on polluting. PLA stands for PolyLactic Acid and it is a thermoplastic that today is still considered the easiest material to be 3D printed. It can be extruded at lower temperatures: the standard range of FABtotum’s one is between 185° and 195°.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=39", "author": { "author_id": "FABtotum", @@ -1435,7 +1469,7 @@ "display_name": "FABtotum TPU Shore 98A", "description": "", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=66", "author": { "author_id": "FABtotum", @@ -1452,7 +1486,7 @@ "display_name": "Fiberlogy HD PLA", "description": "With our HD PLA you have many more options. You can use this material in two ways. Choose the one you like best. You can use it as a normal PLA and get prints characterized by a very good adhesion between the layers and high precision. You can also make your prints acquire similar properties to that of ABS – better impact resistance and high temperature resistance. All you need is an oven. Yes, an oven! By annealing our HD PLA in an oven, in accordance with the manual, you will avoid all the inconveniences of printing with ABS, such as unpleasant odour or hazardous fumes.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "http://fiberlogy.com/en/fiberlogy-filaments/filament-hd-pla/", "author": { "author_id": "Fiberlogy", @@ -1469,7 +1503,7 @@ "display_name": "Filo3D PLA", "description": "Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://dagoma.fr", "author": { "author_id": "Dagoma", @@ -1486,7 +1520,7 @@ "display_name": "IMADE3D JellyBOX PETG", "description": "", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "http://shop.imade3d.com/filament.html", "author": { "author_id": "IMADE3D", @@ -1503,7 +1537,7 @@ "display_name": "IMADE3D JellyBOX PLA", "description": "", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "http://shop.imade3d.com/filament.html", "author": { "author_id": "IMADE3D", @@ -1520,7 +1554,7 @@ "display_name": "Octofiber PLA", "description": "PLA material from Octofiber.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://nl.octofiber.com/3d-printing-filament/pla.html", "author": { "author_id": "Octofiber", @@ -1537,7 +1571,7 @@ "display_name": "PolyFlex™ PLA", "description": "PolyFlex™ is a highly flexible yet easy to print 3D printing material. Featuring good elasticity and a large strain-to- failure, PolyFlex™ opens up a completely new realm of applications.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "http://www.polymaker.com/shop/polyflex/", "author": { "author_id": "Polymaker", @@ -1554,7 +1588,7 @@ "display_name": "PolyMax™ PLA", "description": "PolyMax™ PLA is a 3D printing material with excellent mechanical properties and printing quality. PolyMax™ PLA has an impact resistance of up to nine times that of regular PLA, and better overall mechanical properties than ABS.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "http://www.polymaker.com/shop/polymax/", "author": { "author_id": "Polymaker", @@ -1571,7 +1605,7 @@ "display_name": "PolyPlus™ PLA True Colour", "description": "PolyPlus™ PLA is a premium PLA designed for all desktop FDM/FFF 3D printers. It is produced with our patented Jam-Free™ technology that ensures consistent extrusion and prevents jams.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "http://www.polymaker.com/shop/polyplus-true-colour/", "author": { "author_id": "Polymaker", @@ -1588,7 +1622,7 @@ "display_name": "PolyWood™ PLA", "description": "PolyWood™ is a wood mimic printing material that contains no actual wood ensuring a clean Jam-Free™ printing experience.", "package_version": "1.0.1", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "http://www.polymaker.com/shop/polywood/", "author": { "author_id": "Polymaker", @@ -1605,11 +1639,11 @@ "display_name": "Ultimaker ABS", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", @@ -1624,11 +1658,11 @@ "display_name": "Ultimaker Breakaway", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com/products/materials/breakaway", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", @@ -1643,11 +1677,11 @@ "display_name": "Ultimaker CPE", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", @@ -1662,11 +1696,11 @@ "display_name": "Ultimaker CPE+", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com/products/materials/cpe", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", @@ -1681,11 +1715,11 @@ "display_name": "Ultimaker Nylon", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", @@ -1700,11 +1734,11 @@ "display_name": "Ultimaker PC", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com/products/materials/pc", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", @@ -1719,11 +1753,11 @@ "display_name": "Ultimaker PLA", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", @@ -1738,11 +1772,11 @@ "display_name": "Ultimaker PP", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com/products/materials/pp", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", @@ -1757,11 +1791,11 @@ "display_name": "Ultimaker PVA", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", @@ -1776,11 +1810,11 @@ "display_name": "Ultimaker TPU 95A", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com/products/materials/tpu-95a", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", @@ -1795,11 +1829,11 @@ "display_name": "Ultimaker Tough PLA", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://ultimaker.com/products/materials/tough-pla", "author": { "author_id": "UltimakerPackages", - "display_name": "Ultimaker B.V.", + "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", @@ -1814,7 +1848,7 @@ "display_name": "Vertex Delta ABS", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", @@ -1831,7 +1865,7 @@ "display_name": "Vertex Delta PET", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", @@ -1848,7 +1882,7 @@ "display_name": "Vertex Delta PLA", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", @@ -1865,7 +1899,7 @@ "display_name": "Vertex Delta TPU", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.4.0", - "sdk_version": "8.0.0", + "sdk_version": "8.2.0", "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", diff --git a/resources/definitions/101Hero.def.json b/resources/definitions/101Hero.def.json index 613a9670fd..2921d403da 100644 --- a/resources/definitions/101Hero.def.json +++ b/resources/definitions/101Hero.def.json @@ -1,52 +1,46 @@ { - "version": 2, + "version": 2, "name": "101Hero", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "rikky", "manufacturer": "101Hero", "file_formats": "text/x-gcode", "platform": "101hero-platform.3mf", - "supports_usb_connection": true, + "machine_extruder_trains": { "0": "101Hero_extruder_0" }, "preferred_quality_type": "draft", - "machine_extruder_trains": - { - "0": "101Hero_extruder_0" - } + "supports_usb_connection": true }, - - "overrides": { - "machine_name": { "default_value": "101Hero" }, - "machine_shape": { "default_value": "elliptic"}, - "machine_heated_bed": { "default_value": false }, - "machine_width": { "default_value": 149.86 }, - "machine_depth": { "default_value": 149.86 }, - "machine_height": { "default_value": 99.822 }, + "overrides": + { + "gantry_height": { "value": "0" }, "machine_center_is_zero": { "default_value": true }, - "machine_head_with_fans_polygon": { + "machine_depth": { "default_value": 149.86 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit\nG1 Z0.5 E-5 F840 ;move Z up a bit and retract even more\nG28 X0 Y0 ;home X/Y, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ - [ 0, 0 ], - [ 0, 0 ], - [ 0, 0 ], - [ 0, 0 ] + [0, 0], + [0, 0], + [0, 0], + [0, 0] ] }, - "speed_print": { "default_value": 14 }, - "speed_travel": { "value": "speed_print" }, - "speed_wall": { "value": "speed_print * 0.7" }, - "speed_topbottom": { "value": "speed_print * 0.7" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 99.822 }, + "machine_name": { "default_value": "101Hero" }, + "machine_shape": { "default_value": "elliptic" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 Z0 ;home Z\nG1 Z15.0 F840\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F840\n;Put printing message on LCD screen\nM117 Printing...\n" }, + "machine_width": { "default_value": 149.86 }, + "retraction_amount": { "default_value": 2.5 }, + "retraction_speed": { "default_value": 10 }, "speed_layer_0": { "value": "speed_print * 0.7" }, - "gantry_height": { "value": "0" }, - "retraction_speed": { "default_value" : 10 }, - "retraction_amount": { "default_value" : 2.5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - - "machine_start_gcode": { - "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 Z0 ;home Z\nG1 Z15.0 F840\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F840\n;Put printing message on LCD screen\nM117 Printing...\n" - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit\nG1 Z0.5 E-5 F840 ;move Z up a bit and retract even more\nG28 X0 Y0 ;home X/Y, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning" - } + "speed_print": { "default_value": 14 }, + "speed_topbottom": { "value": "speed_print * 0.7" }, + "speed_travel": { "value": "speed_print" }, + "speed_wall": { "value": "speed_print * 0.7" } } -} +} \ No newline at end of file diff --git a/resources/definitions/3dator.def.json b/resources/definitions/3dator.def.json index ece74ce0b4..dbcef20f24 100644 --- a/resources/definitions/3dator.def.json +++ b/resources/definitions/3dator.def.json @@ -2,34 +2,28 @@ "version": 2, "name": "3Dator", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "3Dator GmbH", "manufacturer": "3Dator GmbH", "file_formats": "text/x-gcode", - "supports_usb_connection": true, "platform": "3dator_platform.3mf", - "machine_extruder_trains": - { - "0": "3dator_extruder_0" - } + "machine_extruder_trains": { "0": "3dator_extruder_0" }, + "supports_usb_connection": true }, - - "overrides": { - "machine_name": { "default_value": "3Dator" }, - "prime_tower_size": { "default_value": 8.660254037844387 }, + "overrides": + { + "adhesion_type": { "default_value": "none" }, + "gantry_height": { "value": "30" }, "infill_sparse_density": { "default_value": 20 }, "layer_height": { "default_value": 0.2 }, - "speed_print": { "default_value": 50 }, - "machine_heated_bed": { "default_value": true }, "machine_center_is_zero": { "default_value": false }, - "machine_height": { "default_value": 260 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_depth": { "default_value": 170 }, - "machine_width": { "default_value": 180 }, - "retraction_speed": {"default_value":100}, - "adhesion_type": { "default_value": "none" }, - "machine_head_with_fans_polygon": { + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\nG28 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ [-15, -25], [-15, 35], @@ -37,13 +31,13 @@ [40, -25] ] }, - "gantry_height": { - "value": "30" - }, - "machine_start_gcode": { - "default_value": ";Sliced at: {day} {date} {time}\nM104 S{material_print_temperature} ;set temperatures\nM140 S{material_bed_temperature}\nM109 S{material_print_temperature} ;wait for temperatures\nM190 S{material_bed_temperature}\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 Z0 ;move Z to min endstops\nG28 X0 Y0 ;move X/Y to min endstops\nG29 ;Auto Level\nG1 Z0.6 F{speed_travel} ;move the Nozzle near the Bed\nG92 E0\nG1 Y0 ;zero the extruded length\nG1 X10 E30 F500 ;printing a Line from right to left\nG92 E0 ;zero the extruded length again\nG1 Z2\nG1 F{speed_travel}\nM117 Printing...;Put printing message on LCD screen\nM150 R255 U255 B255 P4 ;Change LED Color to white" }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\nG28 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 260 }, + "machine_name": { "default_value": "3Dator" }, + "machine_start_gcode": { "default_value": ";Sliced at: {day} {date} {time}\nM104 S{material_print_temperature} ;set temperatures\nM140 S{material_bed_temperature}\nM109 S{material_print_temperature} ;wait for temperatures\nM190 S{material_bed_temperature}\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 Z0 ;move Z to min endstops\nG28 X0 Y0 ;move X/Y to min endstops\nG29 ;Auto Level\nG1 Z0.6 F{speed_travel} ;move the Nozzle near the Bed\nG92 E0\nG1 Y0 ;zero the extruded length\nG1 X10 E30 F500 ;printing a Line from right to left\nG92 E0 ;zero the extruded length again\nG1 Z2\nG1 F{speed_travel}\nM117 Printing...;Put printing message on LCD screen\nM150 R255 U255 B255 P4 ;Change LED Color to white" }, + "machine_width": { "default_value": 180 }, + "prime_tower_size": { "default_value": 8.660254037844387 }, + "retraction_speed": { "default_value": 100 }, + "speed_print": { "default_value": 50 } } -} +} \ No newline at end of file diff --git a/resources/definitions/3di_base.def.json b/resources/definitions/3di_base.def.json index b86ff4707c..e2972009f1 100644 --- a/resources/definitions/3di_base.def.json +++ b/resources/definitions/3di_base.def.json @@ -1,49 +1,26 @@ -{ - "version": 2, - "name": "3DI Base Printer", - "inherits": "fdmprinter", - "metadata": { - "visible": false, - "author": "Vaibhav Jain", - "manufacturer": "3Deometry Innovations", - "file_formats": "text/x-gcode", - "machine_extruder_trains": - { - "0": "3di_base_extruder_0" - } - }, - - "overrides": { - "machine_name":{ - "default_value": "3DI Base Printer" - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_width": { - "default_value": 220 - }, - "machine_height": { - "default_value": 220 - }, - "machine_depth": { - "default_value": 220 - }, - "machine_center_is_zero": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Home all axes (max endstops)\nG1 Z15.0 F9000 ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG28 ;Home all axes (max endstops)\nM84 ;steppers off\nG90 ;absolute positioning" - }, - "machine_shape": { - "default_value": "elliptic" - } - } -} - +{ + "version": 2, + "name": "3DI Base Printer", + "inherits": "fdmprinter", + "metadata": + { + "visible": false, + "author": "Vaibhav Jain", + "manufacturer": "3Deometry Innovations", + "file_formats": "text/x-gcode", + "machine_extruder_trains": { "0": "3di_base_extruder_0" } + }, + "overrides": + { + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG28 ;Home all axes (max endstops)\nM84 ;steppers off\nG90 ;absolute positioning" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 220 }, + "machine_name": { "default_value": "3DI Base Printer" }, + "machine_shape": { "default_value": "elliptic" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Home all axes (max endstops)\nG1 Z15.0 F9000 ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm 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": 220 } + } +} \ No newline at end of file diff --git a/resources/definitions/3di_d300.def.json b/resources/definitions/3di_d300.def.json index 3fad62d339..c3d5c4b8bd 100644 --- a/resources/definitions/3di_d300.def.json +++ b/resources/definitions/3di_d300.def.json @@ -1,26 +1,22 @@ -{ - "version": 2, - "name": "3DI D300", - "inherits": "3di_base", - "metadata": { - "visible": true, - "platform": "3di_d300_platform.STL", - "platform_offset": [-200, -5, 173.205] - }, - - "overrides": { - "machine_name": { - "default_value": "3DI D300" - }, - "machine_width": { - "default_value": 300 - }, - "machine_height": { - "default_value": 300 - }, - "machine_depth": { - "default_value": 300 - } - } -} - +{ + "version": 2, + "name": "3DI D300", + "inherits": "3di_base", + "metadata": + { + "visible": true, + "platform": "3di_d300_platform.STL", + "platform_offset": [ + -200, + -5, + 173.205 + ] + }, + "overrides": + { + "machine_depth": { "default_value": 300 }, + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "3DI D300" }, + "machine_width": { "default_value": 300 } + } +} \ No newline at end of file diff --git a/resources/definitions/3dtech_semi_professional.def.json b/resources/definitions/3dtech_semi_professional.def.json index 42111c3d98..5058bb9a99 100644 --- a/resources/definitions/3dtech_semi_professional.def.json +++ b/resources/definitions/3dtech_semi_professional.def.json @@ -2,40 +2,29 @@ "version": 2, "name": "3DTech Semi-Professional", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "3DTech", "manufacturer": "3DTech", "file_formats": "text/x-gcode", "platform": "3dtech_semi_professional_platform.3mf", - "platform_offset": [0, -2.5, 0 ], - "machine_extruder_trains": - { - "0": "3dtech_semi_professional_extruder_0" - } + "machine_extruder_trains": { "0": "3dtech_semi_professional_extruder_0" }, + "platform_offset": [ + 0, + -2.5, + 0 + ] }, - "overrides": { + "overrides": + { + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 250 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0 ; Retract the filament\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_height": { "default_value": 300 }, "machine_name": { "default_value": "3DTECH SP Control" }, - "machine_width": { - "default_value": 250 - }, - "machine_depth": { - "default_value": 250 - }, - "machine_height": { - "default_value": 300 - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G28 ; home all axes\nG29 ;\nG1 Z5 F3000 ; lift\nG1 X5 Y25 F5000 ; move to prime\nG1 Z0.2 F3000 ; get ready to prime\nG92 E0 ; reset extrusion distance\nG1 Y100 E20 F600 ; prime nozzle\nG1 Y140 F5000 ; quick wipe" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0 ; Retract the filament\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" - } + "machine_start_gcode": { "default_value": "G28 ; home all axes\nG29 ;\nG1 Z5 F3000 ; lift\nG1 X5 Y25 F5000 ; move to prime\nG1 Z0.2 F3000 ; get ready to prime\nG92 E0 ; reset extrusion distance\nG1 Y100 E20 F600 ; prime nozzle\nG1 Y140 F5000 ; quick wipe" }, + "machine_width": { "default_value": 250 } } -} +} \ No newline at end of file diff --git a/resources/definitions/Geeetech_Base_Dual_Extruder.def.json b/resources/definitions/Geeetech_Base_Dual_Extruder.def.json new file mode 100644 index 0000000000..7bc2bc529c --- /dev/null +++ b/resources/definitions/Geeetech_Base_Dual_Extruder.def.json @@ -0,0 +1,147 @@ +{ + "version": 2, + "name": "Geeetech Base Dual-Extruder Printer", + "inherits": "fdmprinter", + "metadata": + { + "visible": false, + "author": "Teddy.Hu", + "manufacturer": "Geeetech", + "file_formats": "text/x-gcode", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": false, + "machine_extruder_trains": + { + "0": "Geeetech_Dual_Extruder_0", + "1": "Geeetech_Dual_Extruder_1" + }, + "preferred_material": "generic_pla", + "preferred_quality_type": "standard", + "preferred_variant_name": "0.4mm Nozzle", + "quality_definition": "Geeetech_Base_Single_Extruder", + "variants_name": "Nozzle Size" + }, + "overrides": + { + "acceleration_print": { "value": 500 }, + "acceleration_travel": { "value": 500 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel" }, + "adhesion_type": { "value": "'skirt'" }, + "brim_replaces_support": { "value": false }, + "cool_min_layer_time": { "value": "1.3 if speed_infill>=200 else 5" }, + "gantry_height": { "value": 40 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'grid'" }, + "line_width": { "value": "1.125*machine_nozzle_size if speed_infill<=100 else machine_nozzle_size" }, + "machine_acceleration": { "value": 500 }, + "machine_depth": { "default_value": 350 }, + "machine_end_gcode": { "default_value": ";Geeetech Custom end G-code\nG91 ;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\n\n\n" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-40, 40], + [40, 40], + [40, -40], + [-40, -40] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 350 }, + "machine_max_acceleration_e": { "value": 1000 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 111 }, + "machine_max_feedrate_e": { "value": 40 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 4.9 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.3 }, + "machine_name": { "default_value": "Geeetech Base Dual-Extruder Printer" }, + "machine_start_gcode": { "default_value": ";Geeetech Custom Start G-code\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": 350 }, + "material_bed_temperature": { "maximum_value_warning": 110 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": + { + "minimum_value_warning": "material_standby_temperature - 10", + "value": "material_print_temperature - 5" + }, + "material_print_temperature": + { + "maximum_value": "250", + "value": "200 if speed_infill <=100 else 210 if speed_infill <= 150 else 220 if speed_infill <= 180 else 230" + }, + "material_print_temperature_layer_0": + { + "maximum_value_warning": 250, + "value": "material_print_temperature + 5" + }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "optimize_wall_printing_order": { "value": true }, + "prime_tower_brim_enable": { "value": true }, + "prime_tower_min_volume": + { + "maximum_value_warning": 150, + "value": 85 + }, + "prime_tower_size": { "value": 30 }, + "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'all'" }, + "retraction_combing_max_distance": { "value": 30 }, + "retraction_hop": { "value": 0.5 }, + "retraction_speed": { "value": 35 }, + "skirt_brim_speed": + { + "maximum_value_warning": "60", + "value": "speed_print_layer_0" + }, + "skirt_gap": { "value": 6 }, + "small_hole_max_size": { "value": "5 if speed_infill>=150 else 0" }, + "speed_layer_0": + { + "maximum_value_warning": "100", + "value": "50 if speed_infill <= 150 else 75" + }, + "speed_print_layer_0": + { + "maximum_value_warning": "60", + "value": "25 if speed_infill <= 150 else 35" + }, + "speed_support": { "value": "speed_print*0.5" }, + "speed_support_bottom": { "value": "speed_support_roof" }, + "speed_support_interface": { "value": "speed_support / 0.8" }, + "speed_support_roof": { "value": "speed_support_interface / 2" }, + "speed_topbottom": { "value": "speed_print" }, + "speed_travel": { "value": "200 if 120<=speed_print<=200 else speed_print if speed_print>200 else 120" }, + "speed_travel_layer_0": + { + "maximum_value_warning": "150", + "value": "speed_layer_0" + }, + "speed_wall": { "value": "60 if speed_print==60 else math.ceil(round(speed_print*0.90))" }, + "speed_wall_0": { "value": "30 if speed_print==60 else math.ceil(round(speed_print*0.75))" }, + "speed_wall_x": { "value": "60 if speed_print==60 else math.ceil(round(speed_print*0.90))" }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 5 }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_height": { "value": "layer_height * 3" }, + "support_interface_pattern": { "value": "zigzag" }, + "support_interface_skip_height": { "value": 0.2 }, + "support_pattern": { "value": "'zigzag'" }, + "support_wall_count": { "value": 0 }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, + "travel_avoid_supports": { "value": true }, + "wall_thickness": { "value": "line_width * 2" }, + "wall_transition_filter_deviation": { "value": 0.15 }, + "z_seam_corner": { "value": "'z_seam_corner_inner'" }, + "z_seam_type": { "value": "'sharpest_corner'" } + } +} \ No newline at end of file diff --git a/resources/definitions/Geeetech_Base_Multi_Extruder.def.json b/resources/definitions/Geeetech_Base_Multi_Extruder.def.json new file mode 100644 index 0000000000..4d4bc3363a --- /dev/null +++ b/resources/definitions/Geeetech_Base_Multi_Extruder.def.json @@ -0,0 +1,148 @@ +{ + "version": 2, + "name": "Geeetech Base Multi-Extruder Printer", + "inherits": "fdmprinter", + "metadata": + { + "visible": false, + "author": "Teddy.Hu", + "manufacturer": "Geeetech", + "file_formats": "text/x-gcode", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": false, + "machine_extruder_trains": + { + "0": "Geeetech_Multi_Extruder_0", + "1": "Geeetech_Multi_Extruder_1", + "2": "Geeetech_Multi_Extruder_2" + }, + "preferred_material": "generic_pla", + "preferred_quality_type": "standard", + "preferred_variant_name": "0.4mm Nozzle", + "quality_definition": "Geeetech_Base_Single_Extruder", + "variants_name": "Nozzle Size" + }, + "overrides": + { + "acceleration_print": { "value": 500 }, + "acceleration_travel": { "value": 500 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel" }, + "adhesion_type": { "value": "'skirt'" }, + "brim_replaces_support": { "value": false }, + "cool_min_layer_time": { "value": "1.3 if speed_infill>=200 else 5" }, + "gantry_height": { "value": 40 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'grid'" }, + "line_width": { "value": "1.125*machine_nozzle_size if speed_infill<=100 else machine_nozzle_size" }, + "machine_acceleration": { "value": 500 }, + "machine_depth": { "default_value": 350 }, + "machine_end_gcode": { "default_value": ";Geeetech Custom end G-code\nG91 ;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\n\n\n" }, + "machine_extruder_count": { "default_value": 3 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-40, 40], + [40, 40], + [40, -40], + [-40, -40] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 350 }, + "machine_max_acceleration_e": { "value": 1000 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 111 }, + "machine_max_feedrate_e": { "value": 40 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 4.9 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.3 }, + "machine_name": { "default_value": "Geeetech Base Multi-Extruder Printer" }, + "machine_start_gcode": { "default_value": ";Geeetech Custom Start G-code\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": 350 }, + "material_bed_temperature": { "maximum_value_warning": 110 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": + { + "minimum_value_warning": "material_standby_temperature - 10", + "value": "material_print_temperature - 5" + }, + "material_print_temperature": + { + "maximum_value": "250", + "value": "200 if speed_infill <=100 else 210 if speed_infill <= 150 else 220 if speed_infill <= 180 else 230" + }, + "material_print_temperature_layer_0": + { + "maximum_value_warning": 250, + "value": "material_print_temperature + 5" + }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "optimize_wall_printing_order": { "value": true }, + "prime_tower_brim_enable": { "value": true }, + "prime_tower_min_volume": + { + "maximum_value_warning": 150, + "value": 85 + }, + "prime_tower_size": { "value": 30 }, + "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'all'" }, + "retraction_combing_max_distance": { "value": 30 }, + "retraction_hop": { "value": 0.5 }, + "retraction_speed": { "value": 35 }, + "skirt_brim_speed": + { + "maximum_value_warning": "60", + "value": "speed_print_layer_0" + }, + "skirt_gap": { "value": 6 }, + "small_hole_max_size": { "value": "5 if speed_infill>=150 else 0" }, + "speed_layer_0": + { + "maximum_value_warning": "100", + "value": "50 if speed_infill <= 150 else 75" + }, + "speed_print_layer_0": + { + "maximum_value_warning": "60", + "value": "25 if speed_infill <= 150 else 35" + }, + "speed_support": { "value": "speed_print*0.5" }, + "speed_support_bottom": { "value": "speed_support_roof" }, + "speed_support_interface": { "value": "speed_support / 0.8" }, + "speed_support_roof": { "value": "speed_support_interface / 2" }, + "speed_topbottom": { "value": "speed_print" }, + "speed_travel": { "value": "200 if 120<=speed_print<=200 else speed_print if speed_print>200 else 120" }, + "speed_travel_layer_0": + { + "maximum_value_warning": "150", + "value": "speed_layer_0" + }, + "speed_wall": { "value": "60 if speed_print==60 else math.ceil(round(speed_print*0.90))" }, + "speed_wall_0": { "value": "30 if speed_print==60 else math.ceil(round(speed_print*0.75))" }, + "speed_wall_x": { "value": "60 if speed_print==60 else math.ceil(round(speed_print*0.90))" }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 5 }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_height": { "value": "layer_height * 3" }, + "support_interface_pattern": { "value": "zigzag" }, + "support_interface_skip_height": { "value": 0.2 }, + "support_pattern": { "value": "'zigzag'" }, + "support_wall_count": { "value": 0 }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, + "travel_avoid_supports": { "value": true }, + "wall_thickness": { "value": "line_width * 2" }, + "wall_transition_filter_deviation": { "value": 0.15 }, + "z_seam_corner": { "value": "'z_seam_corner_inner'" }, + "z_seam_type": { "value": "'sharpest_corner'" } + } +} \ No newline at end of file diff --git a/resources/definitions/Geeetech_Base_Single_Extruder.def.json b/resources/definitions/Geeetech_Base_Single_Extruder.def.json new file mode 100644 index 0000000000..b155a0ee6c --- /dev/null +++ b/resources/definitions/Geeetech_Base_Single_Extruder.def.json @@ -0,0 +1,135 @@ +{ + "version": 2, + "name": "Geeetech Base Single Extruder Printer", + "inherits": "fdmprinter", + "metadata": + { + "visible": false, + "author": "Teddy.Hu", + "manufacturer": "Geeetech", + "file_formats": "text/x-gcode", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "Geeetech_Single_Extruder" }, + "preferred_material": "generic_pla", + "preferred_quality_type": "standard", + "preferred_variant_name": "0.4mm Nozzle", + "quality_definition": "Geeetech_Base_Single_Extruder", + "variants_name": "Nozzle Size" + }, + "overrides": + { + "acceleration_print": { "value": 500 }, + "acceleration_travel": { "value": 500 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel" }, + "adhesion_type": { "value": "'skirt'" }, + "brim_replaces_support": { "value": false }, + "cool_min_layer_time": { "value": "1.3 if speed_infill>=200 else 5" }, + "gantry_height": { "value": 40 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'grid'" }, + "line_width": { "value": "1.125*machine_nozzle_size if speed_infill<=100 else machine_nozzle_size" }, + "machine_acceleration": { "value": 500 }, + "machine_depth": { "default_value": 350 }, + "machine_end_gcode": { "default_value": ";Geeetech Custom end G-code\nG91 ;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\n\n\n" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-40, 40], + [40, 40], + [40, -40], + [-40, -40] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 350 }, + "machine_max_acceleration_e": { "value": 1000 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 111 }, + "machine_max_feedrate_e": { "value": 40 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 4.9 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.3 }, + "machine_name": { "default_value": "Geeetech Base Single Extruder Printer" }, + "machine_start_gcode": { "default_value": ";Geeetech Custom Start G-code\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": 350 }, + "material_bed_temperature": { "maximum_value_warning": 110 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": + { + "minimum_value_warning": "material_standby_temperature - 10", + "value": "material_print_temperature - 5" + }, + "material_print_temperature": + { + "maximum_value": "250", + "value": "200 if speed_infill <=100 else 210 if speed_infill <= 150 else 220 if speed_infill <= 180 else 230" + }, + "material_print_temperature_layer_0": + { + "maximum_value_warning": 250, + "value": "material_print_temperature + 5" + }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "optimize_wall_printing_order": { "value": true }, + "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'all'" }, + "retraction_combing_max_distance": { "value": 30 }, + "retraction_hop": { "value": 0.5 }, + "retraction_speed": { "value": 40 }, + "skirt_brim_speed": + { + "maximum_value_warning": "60", + "value": "speed_print_layer_0" + }, + "skirt_gap": { "value": 6 }, + "small_hole_max_size": { "value": "5 if speed_infill>=150 else 0" }, + "speed_layer_0": + { + "maximum_value_warning": "100", + "value": "50 if speed_infill <= 150 else 75" + }, + "speed_print_layer_0": + { + "maximum_value_warning": "60", + "value": "25 if speed_infill <= 150 else 35" + }, + "speed_support": { "value": "speed_print*0.5" }, + "speed_support_bottom": { "value": "speed_support_roof" }, + "speed_support_interface": { "value": "speed_support / 0.8" }, + "speed_support_roof": { "value": "speed_support_interface / 2" }, + "speed_topbottom": { "value": "speed_print" }, + "speed_travel": { "value": "200 if 120<=speed_print<=200 else speed_print if speed_print>200 else 120" }, + "speed_travel_layer_0": + { + "maximum_value_warning": "150", + "value": "speed_layer_0" + }, + "speed_wall": { "value": "60 if speed_print==60 else math.ceil(round(speed_print*0.90))" }, + "speed_wall_0": { "value": "30 if speed_print==60 else math.ceil(round(speed_print*0.75))" }, + "speed_wall_x": { "value": "60 if speed_print==60 else math.ceil(round(speed_print*0.90))" }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 5 }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_height": { "value": "layer_height * 3" }, + "support_interface_pattern": { "value": "zigzag" }, + "support_interface_skip_height": { "value": 0.2 }, + "support_pattern": { "value": "'zigzag'" }, + "support_wall_count": { "value": 0 }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, + "travel_avoid_supports": { "value": true }, + "wall_thickness": { "value": "line_width * 2" }, + "wall_transition_filter_deviation": { "value": 0.15 }, + "z_seam_corner": { "value": "'z_seam_corner_inner'" }, + "z_seam_type": { "value": "'sharpest_corner'" } + } +} \ No newline at end of file diff --git a/resources/definitions/I3MetalMotion.def.json b/resources/definitions/I3MetalMotion.def.json index a9d55969bb..ad191301e1 100644 --- a/resources/definitions/I3MetalMotion.def.json +++ b/resources/definitions/I3MetalMotion.def.json @@ -2,32 +2,26 @@ "version": 2, "name": "I3 Metal Motion", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Peter Felecan", "manufacturer": "eMotionTech", "file_formats": "text/x-gcode", "has_materials": true, - "preferred_material": "emotiontech_pla", - "machine_extruder_trains": - { - "0": "I3MetalMotion_extruder_0" - } + "machine_extruder_trains": { "0": "I3MetalMotion_extruder_0" }, + "preferred_material": "emotiontech_pla" }, - - "overrides": { - "machine_name": { "default_value": "I3MetalMotion" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 200 }, - "machine_height": { "default_value": 200 }, - "machine_depth": { "default_value": 200 }, + "overrides": + { "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "G28 Z\nG28 X\nG28 Y\nM107 ; Turn off the fan\nG91; Relative positioning\nG1 E-1 ; reduce filament pressure\nM104 T0 S0\nG90 ; Absolute positioning\nG92 E0 ; Reset extruder position\nM140 S0 ; Disable heated bed\nM84 ; Turn the steppers off" }, "machine_gcode_flavor": { "default_value": "RepRap (RepRap)" }, - "machine_start_gcode": { - "default_value": "G21 ; set units to millimeters\nG90 ; use absolute positioning\nM82 ; absolute extrusion mode\nM104 S{material_print_temperature_layer_0} ; set extruder temp\nM140 S{material_bed_temperature_layer_0} ; set bed temp\nM190 S{material_bed_temperature_layer_0} ; wait for bed temp\nM109 S{material_print_temperature_layer_0} ; wait for extruder temp\nG28 W ; home all\nG92 E0.0 ; reset extruder distance position\nG1 Y-3.0 F1000.0 ; go outside print area\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E21.5 F1000.0 ; intro line\nG92 E0.0 ; reset extruder distance position" - }, - "machine_end_gcode": { - "default_value": "G28 Z\nG28 X\nG28 Y\nM107 ; Turn off the fan\nG91; Relative positioning\nG1 E-1 ; reduce filament pressure\nM104 T0 S0\nG90 ; Absolute positioning\nG92 E0 ; Reset extruder position\nM140 S0 ; Disable heated bed\nM84 ; Turn the steppers off" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "I3MetalMotion" }, + "machine_start_gcode": { "default_value": "G21 ; set units to millimeters\nG90 ; use absolute positioning\nM82 ; absolute extrusion mode\nM104 S{material_print_temperature_layer_0} ; set extruder temp\nM140 S{material_bed_temperature_layer_0} ; set bed temp\nM190 S{material_bed_temperature_layer_0} ; wait for bed temp\nM109 S{material_print_temperature_layer_0} ; wait for extruder temp\nG28 W ; home all\nG92 E0.0 ; reset extruder distance position\nG1 Y-3.0 F1000.0 ; go outside print area\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E21.5 F1000.0 ; intro line\nG92 E0.0 ; reset extruder distance position" }, + "machine_width": { "default_value": 200 } } -} +} \ No newline at end of file diff --git a/resources/definitions/Mark2_for_Ultimaker2.def.json b/resources/definitions/Mark2_for_Ultimaker2.def.json index 68498db423..305a9b18da 100644 --- a/resources/definitions/Mark2_for_Ultimaker2.def.json +++ b/resources/definitions/Mark2_for_Ultimaker2.def.json @@ -2,182 +2,69 @@ "version": 2, "name": "Mark2 for Ultimaker2", "inherits": "ultimaker2_plus", - "metadata": { + "metadata": + { "visible": true, "author": "TheUltimakerCommunity", "manufacturer": "Foehnsturm", - "weight": 0, - "has_variants": true, - "has_materials": true, - "has_machine_quality": false, "file_formats": "text/x-gcode", - "icon": "icon_ultimaker.png", "platform": "ultimaker2_platform.obj", - "platform_texture": "Mark2_for_Ultimaker2_backplate.png", + "has_machine_quality": false, + "has_materials": true, + "has_variants": true, + "icon": "icon_ultimaker.png", "machine_extruder_trains": { "0": "Mark2_extruder1", "1": "Mark2_extruder2" }, - "supported_actions": ["MachineSettingsAction", "UpgradeFirmware"] + "platform_texture": "Mark2_for_Ultimaker2_backplate.png", + "supported_actions": [ + "MachineSettingsAction", + "UpgradeFirmware" + ], + "weight": 0 }, - "overrides": { - "machine_name": { "default_value": "Mark2_for_Ultimaker2" }, - "machine_width": { - "default_value": 223 - }, - "machine_depth": { - "default_value": 223 - }, - "machine_height": { - "default_value": 203 - }, - "gantry_height": { - "value": "52" - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "machine_nozzle_heat_up_speed": { - "default_value": 3.5 - }, - "machine_nozzle_cool_down_speed": { - "default_value": 1.5 - }, - "machine_min_cool_heat_time_window": - { - "default_value": 15.0 - }, - "machine_show_variants": { - "default_value": true - }, - "machine_nozzle_head_distance": { - "default_value": 5 - }, - "machine_heat_zone_length": { - "default_value": 20 - }, - "machine_heated_bed": { - "default_value": true - }, - "speed_infill": { - "value": "speed_print" - }, - "speed_wall_x": { - "value": "speed_wall" - }, - "layer_height_0": { - "value": "round(machine_nozzle_size / 1.5, 2)" - }, - "line_width": { - "value": "round(machine_nozzle_size * 0.875, 2)" - }, - "speed_support": { - "value": "speed_wall_0" - }, - "machine_max_feedrate_x": { - "default_value": 250 - }, - "machine_max_feedrate_y": { - "default_value": 250 - }, - "machine_max_feedrate_z": { - "default_value": 40 - }, - "machine_max_feedrate_e": { - "default_value": 45 - }, - "machine_acceleration": { - "default_value": 3000 - }, - "retraction_amount": { - "default_value": 5.1 - }, - "retraction_speed": { - "default_value": 25 - }, - "switch_extruder_retraction_amount": { - "value": "retraction_amount", - "enabled": false - }, - "switch_extruder_retraction_speeds": { - "value": "retraction_speed", - "enabled": false - }, - "switch_extruder_retraction_speed": { - "value": "retraction_retract_speed", - "enabled": false - }, - "switch_extruder_prime_speed": { - "value": "retraction_prime_speed", - "enabled": false - }, - "machine_head_with_fans_polygon": - { - "default_value": [ - [ -44, 14 ], - [ -44, -34 ], - [ 64, 14 ], - [ 64, -34 ] - ] - }, - "machine_use_extruder_offset_to_offset_coords": { - "default_value": false - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode" : { - "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \"G21 ;metric values\\nG90 ;absolute positioning\\nM82 ;set extruder to absolute mode\\nM107 ;start with the fan off\\nM200 D0 T0 ;reset filament diameter\\nM200 D0 T1\\nG28 Z0; home all\\nG28 X0 Y0\\nG0 Z20 F2400 ;move the platform to 20mm\\nG92 E0\\nM190 S{material_bed_temperature_layer_0}\\nM109 T0 S{material_standby_temperature, 0}\\nM109 T1 S{material_print_temperature_layer_0, 1}\\nM104 T0 S{material_print_temperature_layer_0, 0}\\nT1 ; move to the 2th head\\nG0 Z20 F2400\\nG92 E-7.0 ;prime distance\\nG1 E0 F45 ;purge nozzle\\nG1 E-5.1 F1500 ; retract\\nG1 X90 Z0.01 F5000 ; move away from the prime poop\\nG1 X50 F9000\\nG0 Z20 F2400\\nT0 ; move to the first head\\nM104 T1 S{material_standby_temperature, 1}\\nG0 Z20 F2400\\nM104 T{initial_extruder_nr} S{material_print_temperature_layer_0, initial_extruder_nr}\\nG92 E-7.0\\nG1 E0 F45 ;purge nozzle\\nG1 X60 Z0.01 F5000 ; move away from the prime poop\\nG1 X20 F9000\\nM400 ;finish all moves\\nG92 E0\\n;end of startup sequence\\n\"" - }, - "machine_end_gcode" : { - "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \"G90 ;absolute positioning\\nM104 S0 T0 ;extruder heater off\\nM104 S0 T1\\nM140 S0 ;turn off bed\\nT0 ; move to the first head\\nM107 ;fan off\"" - }, - "machine_extruder_count": { - "default_value": 2 - }, - "acceleration_enabled": - { - "default_value": true - }, - "acceleration_print": - { - "value": "2000" - }, - "acceleration_travel": - { - "value": "acceleration_print if magic_spiralize else 3000" - }, + "overrides": + { + "acceleration_enabled": { "default_value": true }, "acceleration_layer_0": { "value": "acceleration_topbottom" }, "acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, + "acceleration_print": { "value": "2000" }, "acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, "acceleration_support_interface": { "value": "acceleration_topbottom" }, "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 500 / 4000)" }, + "acceleration_travel": { "value": "acceleration_print if magic_spiralize else 3000" }, "acceleration_wall": { "value": "math.ceil(acceleration_print * 1000 / 4000)" }, "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 500 / 1000)" }, - "jerk_enabled": + "extruder_prime_pos_abs": { "default_value": false }, + "extruder_prime_pos_x": { - "default_value": true + "default_value": 0.0, + "enabled": false }, - "jerk_travel": + "extruder_prime_pos_y": { - "value": "jerk_print if magic_spiralize else 20" + "default_value": 0.0, + "enabled": false }, + "extruder_prime_pos_z": + { + "default_value": 0.0, + "enabled": false + }, + "gantry_height": { "value": "52" }, + "jerk_enabled": { "default_value": true }, "jerk_layer_0": { "value": "jerk_topbottom" }, "jerk_prime_tower": { "value": "10 if jerk_print < 16 else math.ceil(jerk_print * 15 / 25)" }, "jerk_support": { "value": "10 if jerk_print < 16 else math.ceil(jerk_print * 15 / 25)" }, "jerk_support_interface": { "value": "jerk_topbottom" }, "jerk_topbottom": { "value": "10 if jerk_print < 25 else math.ceil(jerk_print * 10 / 25)" }, + "jerk_travel": { "value": "jerk_print if magic_spiralize else 20" }, + "jerk_travel_layer_0": { "value": "math.ceil(jerk_layer_0 * jerk_travel / jerk_print)" }, "jerk_wall": { "value": "10 if jerk_print < 16 else math.ceil(jerk_print * 15 / 25)" }, "jerk_wall_0": { "value": "10 if jerk_wall < 16 else math.ceil(jerk_wall * 6 / 10)" }, - "jerk_travel_layer_0": { "value": "math.ceil(jerk_layer_0 * jerk_travel / jerk_print)" }, - "extruder_prime_pos_abs": { "default_value": false }, - "extruder_prime_pos_x": { "default_value": 0.0, "enabled": false }, - "extruder_prime_pos_y": { "default_value": 0.0, "enabled": false }, - "extruder_prime_pos_z": { "default_value": 0.0, "enabled": false }, + "layer_height_0": { "value": "round(machine_nozzle_size / 1.5, 2)" }, "layer_start_x": { "default_value": 105.0, @@ -188,19 +75,93 @@ "default_value": 27.0, "enabled": false }, - "prime_tower_position_x": { - "value": "185" - }, - "prime_tower_position_y": { - "value": "160" - }, - "machine_disallowed_areas": { + "line_width": { "value": "round(machine_nozzle_size * 0.875, 2)" }, + "machine_acceleration": { "default_value": 3000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 223 }, + "machine_disallowed_areas": + { "default_value": [ - [[-115, 112.5], [ -10, 112.5], [ -10, 72.5], [-115, 72.5]], - [[ 115, 112.5], [ 115, 72.5], [ 15, 72.5], [ 15, 112.5]], - [[-115, -112.5], [-115, -87.5], [ 115, -87.5], [ 115, -112.5]], - [[-115, 72.5], [-97, 72.5], [-97, -112.5], [-115, -112.5]] + [ + [-115, 112.5], + [-10, 112.5], + [-10, 72.5], + [-115, 72.5] + ], + [ + [115, 112.5], + [115, 72.5], + [15, 72.5], + [15, 112.5] + ], + [ + [-115, -112.5], + [-115, -87.5], + [115, -87.5], + [115, -112.5] + ], + [ + [-115, 72.5], + [-97, 72.5], + [-97, -112.5], + [-115, -112.5] + ] ] + }, + "machine_end_gcode": { "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \"G90 ;absolute positioning\\nM104 S0 T0 ;extruder heater off\\nM104 S0 T1\\nM140 S0 ;turn off bed\\nT0 ; move to the first head\\nM107 ;fan off\"" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-44, 14], + [-44, -34], + [64, 14], + [64, -34] + ] + }, + "machine_heat_zone_length": { "default_value": 20 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 203 }, + "machine_max_feedrate_e": { "default_value": 45 }, + "machine_max_feedrate_x": { "default_value": 250 }, + "machine_max_feedrate_y": { "default_value": 250 }, + "machine_max_feedrate_z": { "default_value": 40 }, + "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 }, + "machine_start_gcode": { "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \"G21 ;metric values\\nG90 ;absolute positioning\\nM82 ;set extruder to absolute mode\\nM107 ;start with the fan off\\nM200 D0 T0 ;reset filament diameter\\nM200 D0 T1\\nG28 Z0; home all\\nG28 X0 Y0\\nG0 Z20 F2400 ;move the platform to 20mm\\nG92 E0\\nM190 S{material_bed_temperature_layer_0}\\nM109 T0 S{material_standby_temperature, 0}\\nM109 T1 S{material_print_temperature_layer_0, 1}\\nM104 T0 S{material_print_temperature_layer_0, 0}\\nT1 ; move to the 2th head\\nG0 Z20 F2400\\nG92 E-7.0 ;prime distance\\nG1 E0 F45 ;purge nozzle\\nG1 E-5.1 F1500 ; retract\\nG1 X90 Z0.01 F5000 ; move away from the prime poop\\nG1 X50 F9000\\nG0 Z20 F2400\\nT0 ; move to the first head\\nM104 T1 S{material_standby_temperature, 1}\\nG0 Z20 F2400\\nM104 T{initial_extruder_nr} S{material_print_temperature_layer_0, initial_extruder_nr}\\nG92 E-7.0\\nG1 E0 F45 ;purge nozzle\\nG1 X60 Z0.01 F5000 ; move away from the prime poop\\nG1 X20 F9000\\nM400 ;finish all moves\\nG92 E0\\n;end of startup sequence\\n\"" }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": false }, + "machine_width": { "default_value": 223 }, + "prime_tower_position_x": { "value": "185" }, + "prime_tower_position_y": { "value": "160" }, + "retraction_amount": { "default_value": 5.1 }, + "retraction_speed": { "default_value": 25 }, + "speed_support": { "value": "speed_wall_0" }, + "speed_wall_x": { "value": "speed_wall" }, + "switch_extruder_prime_speed": + { + "enabled": false, + "value": "retraction_prime_speed" + }, + "switch_extruder_retraction_amount": + { + "enabled": false, + "value": "retraction_amount" + }, + "switch_extruder_retraction_speed": + { + "enabled": false, + "value": "retraction_retract_speed" + }, + "switch_extruder_retraction_speeds": + { + "enabled": false, + "value": "retraction_speed" } } -} +} \ No newline at end of file diff --git a/resources/definitions/SV01.def.json b/resources/definitions/SV01.def.json index 439ced7d38..3a9d6522da 100644 --- a/resources/definitions/SV01.def.json +++ b/resources/definitions/SV01.def.json @@ -1,70 +1,62 @@ -{ - "version": 2, - "name": "Sovol-SV01", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Sovol", - "manufacturer": "Sovol 3D", - "file_formats": "text/x-gcode", - "has_variants": false, - "has_machine_quality": false, - "preferred_quality_type": "draft", - "machine_extruder_trains": { - "0": "SV01_extruder_0" - } - }, - - "overrides": { - "machine_name": { "default_value": "SV01" }, - "machine_extruder_count": { "default_value": 1 }, - "machine_width": { "default_value": 280 }, - "machine_depth": { "default_value": 260 }, - "machine_height": { "default_value": 300 }, - "machine_max_feedrate_x": { "value": 500 }, - "machine_max_feedrate_y": { "value": 500 }, - "machine_max_feedrate_z": { "value": 10 }, - "machine_max_feedrate_e": { "value": 50 }, - "machine_max_acceleration_x": { "value": 500 }, - "machine_max_acceleration_y": { "value": 500 }, - "machine_max_acceleration_z": { "value": 100 }, - "machine_max_acceleration_e": { "value": 5000 }, - "machine_acceleration": { "value": 500 }, - "machine_max_jerk_xy": { "value": 10 }, - "machine_max_jerk_z": { "value": 0.4 }, - "machine_max_jerk_e": { "value": 5 }, - "machine_heated_bed": { "default_value": true }, - "material_diameter": { "default_value": 1.75 }, - "acceleration_print": { "value": 500 }, - "acceleration_travel": { "value": 500 }, - "acceleration_travel_layer_0": { "value": "acceleration_travel" }, - "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, - "jerk_print": { "value": 8 }, - "jerk_travel": { "value": "jerk_print" }, - "jerk_travel_layer_0": { "value": "jerk_travel" }, - "acceleration_enabled": { "value": false }, - "jerk_enabled": { "value": false }, - "speed_print": { "value": 50.0 } , - "speed_infill": { "value": "speed_print" }, - "skirt_brim_speed": { "value": "speed_layer_0" }, - "line_width": { "value": "machine_nozzle_size" }, - "optimize_wall_printing_order": { "value": "True" }, - "material_initial_print_temperature": { "value": "material_print_temperature" }, - "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_flow": { "value": 100 }, - "z_seam_type": { "value": "'back'" }, - "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, - "infill_sparse_density": { "value": "20" }, - "infill_pattern": { "value": "'lines'" }, - "infill_before_walls": { "value": false }, - "infill_overlap": { "value": 30.0 }, - "skin_overlap": { "value": 10.0 }, - "infill_wipe_dist": { "value": 0.0 }, - "wall_0_wipe_dist": { "value": 0.0 }, - "retraction_amount": { "default_value": 3}, - "retraction_speed": { "default_value": 50}, - "adhesion_type": { "value": "'skirt'" }, - "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" }, - "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y240 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" } - } -} +{ + "version": 2, + "name": "Sovol-SV01 (Legacy)", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Sovol", + "manufacturer": "Sovol 3D", + "file_formats": "text/x-gcode", + "has_machine_quality": false, + "has_variants": false, + "machine_extruder_trains": { "0": "SV01_extruder_0" }, + "preferred_quality_type": "draft" + }, + "overrides": + { + "acceleration_print": { "value": 500 }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, + "acceleration_travel": { "value": 500 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel" }, + "adhesion_type": { "value": "'skirt'" }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 30.0 }, + "infill_pattern": { "value": "'lines'" }, + "infill_wipe_dist": { "value": 0.0 }, + "jerk_enabled": { "value": false }, + "jerk_print": { "value": 8 }, + "jerk_travel": { "value": "jerk_print" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "machine_acceleration": { "value": 500 }, + "machine_depth": { "default_value": 240 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y240 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 300 }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_feedrate_e": { "value": 50 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_name": { "default_value": "SV01" }, + "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" }, + "machine_width": { "default_value": 280 }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "optimize_wall_printing_order": { "value": "True" }, + "retraction_amount": { "default_value": 3 }, + "retraction_speed": { "default_value": 50 }, + "skin_overlap": { "value": 10.0 }, + "speed_print": { "value": 50.0 }, + "wall_0_wipe_dist": { "value": 0.0 }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, + "z_seam_type": { "value": "'back'" } + } +} \ No newline at end of file diff --git a/resources/definitions/SV02.def.json b/resources/definitions/SV02.def.json index 352cd23394..95b165075b 100644 --- a/resources/definitions/SV02.def.json +++ b/resources/definitions/SV02.def.json @@ -1,85 +1,76 @@ -{ - "version": 2, - "name": "Sovol-SV02", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Sovol", - "manufacturer": "Sovol 3D", - "file_formats": "text/x-gcode", - "has_variants": false, - "has_machine_quality": false, - "preferred_quality_type": "draft", - "machine_extruder_trains": { - "0": "SV02_extruder_0", - "1": "SV02_extruder_1" - } - }, - - "overrides": { - "machine_name": { "default_value": "SV02" }, - "machine_extruder_count": { "default_value": 2 }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 300 }, - "machine_depth": { "default_value": 250 }, - "machine_height": { "default_value": 300 }, - "machine_center_is_zero": { "default_value": false }, - "retraction_amount": { "default_value": 5}, - "retraction_speed": { "default_value": 50}, - "gantry_height": { "value": "30" }, - "speed_print": { "default_value": 50 }, - "material_print_temperature": { "value": 195 }, - "material_print_temperature_layer_0": { "value": "material_print_temperature" }, - "material_initial_print_temperature": { "value": "material_print_temperature" }, - "material_final_print_temperature": { "value": 195 }, - "machine_max_feedrate_x": { "value": 500 }, - "machine_max_feedrate_y": { "value": 500 }, - "machine_max_feedrate_z": { "value": 10 }, - "machine_max_feedrate_e": { "value": 50 }, - "machine_max_acceleration_x": { "value": 500 }, - "machine_max_acceleration_y": { "value": 500 }, - "machine_max_acceleration_z": { "value": 100 }, - "machine_max_acceleration_e": { "value": 500 }, - "machine_acceleration": { "value": 500 }, - "machine_max_jerk_xy": { "value": 8 }, - "machine_max_jerk_z": { "value": 0.4 }, - "machine_max_jerk_e": { "value": 5 }, - "material_diameter": { "default_value": 1.75 }, - "infill_overlap": { "default_value": 15 }, - "acceleration_print": { "value": 500 }, - "acceleration_travel": { "value": 500 }, - "acceleration_travel_layer_0": { "value": "acceleration_travel" }, - "jerk_print": { "value": 8 }, - "jerk_travel": { "value": "jerk_print" }, - "jerk_travel_layer_0": { "value": "jerk_travel" }, - "acceleration_enabled": { "value": false }, - "jerk_enabled": { "value": false }, - "machine_max_jerk_xy": { "default_value": 5.0 }, - "machine_max_jerk_z": { "default_value": 0.4 }, - "machine_max_jerk_e": { "default_value": 5.0 }, - "prime_tower_position_x": { "value": "240" }, - "prime_tower_position_y": { "value": "190" }, - "prime_tower_size": { "value": "30" }, - "prime_tower_wipe_enabled": { "default_value": true }, - "prime_tower_min_volume": { "value": "((resolveOrValue('prime_tower_size') * 0.5) ** 2 * 3.14159 * resolveOrValue('layer_height'))/2"}, - "travel_retract_before_outer_wall": { "default_value": true }, - "infill_sparse_density": { "value": "15" }, - "infill_pattern": { "value": "'lines'" }, - "infill_before_walls": { "value": false }, - "infill_overlap": { "value": 30.0 }, - "skin_overlap": { "value": 10.0 }, - "infill_wipe_dist": { "value": 0.0 }, - "wall_0_wipe_dist": { "value": 0.0 }, - "adhesion_type": { "value": "'skirt'" }, - "brim_replaces_support": { "value": false }, - "skirt_gap": { "value": 2 }, - "skirt_line_count": { "value": 3 }, - "adhesion_extruder_nr": { "value": 1 }, - "brim_width": { "value": 4 }, - "coasting_enable": { "default_value": true }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { "default_value": "G21 ;metric values\nG28 ;home all\nG90 ;absolute positioning\nM107 ;start with the fan off\nG1 F2400 Z15.0 ;raise the nozzle 15mm\nM109 S{material_print_temperature} ;Set Extruder Temperature and Wait\nM190 S{material_bed_temperature}; Wait for bed temperature to reach target temp\nT0 ;Switch to Extruder 1\nG1 F3000 X5 Y10 Z0.2 ;move to prime start position\nG92 E0 ;reset extrusion distance\nG1 F600 X160 E5 ;prime nozzle in a line\nG1 F5000 X180 ;quick wipe\nG92 E0 ;reset extrusion distance" }, - "machine_end_gcode": { "default_value": "M104 S0 ;hotend off\nM140 S0 ;bed off\nG92 E0\nG1 F2000 E-100 ;retract filament 100mm\nG92 E0\nG1 F3000 X0 Y240 ;move bed for easy part removal\nM84 ;disable steppers" }, - "top_bottom_thickness": { "default_value": 1 } - } -} +{ + "version": 2, + "name": "Sovol-SV02 (Legacy)", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Sovol", + "manufacturer": "Sovol 3D", + "file_formats": "text/x-gcode", + "has_machine_quality": false, + "has_variants": false, + "machine_extruder_trains": + { + "0": "SV02_extruder_0", + "1": "SV02_extruder_1" + }, + "preferred_quality_type": "draft" + }, + "overrides": + { + "acceleration_print": { "value": 500 }, + "acceleration_travel": { "value": 500 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel" }, + "adhesion_extruder_nr": { "value": 1 }, + "adhesion_type": { "value": "'skirt'" }, + "brim_replaces_support": { "value": false }, + "brim_width": { "value": 4 }, + "coasting_enable": { "default_value": true }, + "default_material_print_temperature": { "value": 195 }, + "gantry_height": { "value": "30" }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 30.0 }, + "infill_pattern": { "value": "'lines'" }, + "infill_sparse_density": { "value": "15" }, + "infill_wipe_dist": { "value": 0.0 }, + "jerk_enabled": { "value": false }, + "jerk_print": { "value": 8 }, + "jerk_travel": { "value": "jerk_print" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "machine_acceleration": { "value": 500 }, + "machine_depth": { "default_value": 240 }, + "machine_end_gcode": { "default_value": "M104 S0 ;hotend off\nM140 S0 ;bed off\nG92 E0\nG1 F2000 E-100 ;retract filament 100mm\nG92 E0\nG1 F3000 X0 Y240 ;move bed for easy part removal\nM84 ;disable steppers" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 300 }, + "machine_max_acceleration_e": { "value": 500 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_feedrate_e": { "value": 50 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_xy": { "default_value": 5.0 }, + "machine_max_jerk_z": { "default_value": 0.4 }, + "machine_name": { "default_value": "SV02" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\nG28 ;home all\nG90 ;absolute positioning\nM107 ;start with the fan off\nG1 F2400 Z15.0 ;raise the nozzle 15mm\nM109 S{material_print_temperature} ;Set Extruder Temperature and Wait\nM190 S{material_bed_temperature}; Wait for bed temperature to reach target temp\nT0 ;Switch to Extruder 1\nG1 F3000 X5 Y10 Z0.2 ;move to prime start position\nG92 E0 ;reset extrusion distance\nG1 F600 X160 E5 ;prime nozzle in a line\nG1 F5000 X180 ;quick wipe\nG92 E0 ;reset extrusion distance" }, + "machine_width": { "default_value": 280 }, + "material_diameter": { "default_value": 1.75 }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "prime_tower_min_volume": { "value": "((reveOrValue('layer_height'))/2" }, + "prime_tower_position_x": { "value": "240" }, + "prime_tower_position_y": { "value": "190" }, + "prime_tower_size": { "value": "30" }, + "prime_tower_wipe_enabled": { "default_value": true }, + "retraction_amount": { "default_value": 5 }, + "retraction_speed": { "default_value": 50 }, + "skin_overlap": { "value": 10.0 }, + "skirt_gap": { "value": 2 }, + "skirt_line_count": { "value": 3 }, + "speed_print": { "default_value": 50 }, + "top_bottom_thickness": { "default_value": 1 }, + "wall_0_wipe_dist": { "value": 0.0 } + } +} \ No newline at end of file diff --git a/resources/definitions/SV03.def.json b/resources/definitions/SV03.def.json index 5968a82c0d..b3ace64f4a 100644 --- a/resources/definitions/SV03.def.json +++ b/resources/definitions/SV03.def.json @@ -1,70 +1,64 @@ -{ - "version": 2, - "name": "Sovol-SV03", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Sovol", - "manufacturer": "Sovol 3D", - "file_formats": "text/x-gcode", - "has_variants": false, - "has_machine_quality": false, - "preferred_quality_type": "draft", - "machine_extruder_trains": { - "0": "SV03_extruder_0" - } - }, - - "overrides": { - "machine_name": { "default_value": "SV03" }, - "machine_extruder_count": { "default_value": 1 }, - "machine_width": { "default_value": 350 }, - "machine_depth": { "default_value": 350 }, - "machine_height": { "default_value": 400 }, - "machine_max_feedrate_x": { "value": 500 }, - "machine_max_feedrate_y": { "value": 500 }, - "machine_max_feedrate_z": { "value": 10 }, - "machine_max_feedrate_e": { "value": 50 }, - "machine_max_acceleration_x": { "value": 500 }, - "machine_max_acceleration_y": { "value": 500 }, - "machine_max_acceleration_z": { "value": 100 }, - "machine_max_acceleration_e": { "value": 5000 }, - "machine_acceleration": { "value": 500 }, - "machine_max_jerk_xy": { "value": 10 }, - "machine_max_jerk_z": { "value": 0.4 }, - "machine_max_jerk_e": { "value": 5 }, - "machine_heated_bed": { "default_value": true }, - "material_diameter": { "default_value": 1.75 }, - "acceleration_print": { "value": 500 }, - "acceleration_travel": { "value": 500 }, - "acceleration_travel_layer_0": { "value": "acceleration_travel" }, - "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, - "jerk_print": { "value": 8 }, - "jerk_travel": { "value": "jerk_print" }, - "jerk_travel_layer_0": { "value": "jerk_travel" }, - "acceleration_enabled": { "value": false }, - "jerk_enabled": { "value": false }, - "speed_print": { "value": 50.0 } , - "speed_infill": { "value": "speed_print" }, - "skirt_brim_speed": { "value": "speed_layer_0" }, - "line_width": { "value": "machine_nozzle_size" }, - "optimize_wall_printing_order": { "value": "True" }, - "material_initial_print_temperature": { "value": "material_print_temperature" }, - "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_flow": { "value": 100 }, - "z_seam_type": { "value": "'back'" }, - "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, - "infill_sparse_density": { "value": "20" }, - "infill_pattern": { "value": "'lines'" }, - "infill_before_walls": { "value": false }, - "infill_overlap": { "value": 30.0 }, - "skin_overlap": { "value": 10.0 }, - "infill_wipe_dist": { "value": 0.0 }, - "wall_0_wipe_dist": { "value": 0.0 }, - "retraction_amount": { "default_value": 3}, - "retraction_speed": { "default_value": 50}, - "adhesion_type": { "value": "'skirt'" }, - "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\nG29 ;Automatic Leveling\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" }, - "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y240 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" } - } -} +{ + "version": 2, + "name": "Sovol-SV03 (Legacy)", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Sovol", + "manufacturer": "Sovol 3D", + "file_formats": "text/x-gcode", + "has_machine_quality": false, + "has_variants": false, + "machine_extruder_trains": { "0": "SV03_extruder_0" }, + "preferred_quality_type": "draft" + }, + "overrides": + { + "acceleration_enabled": { "value": false }, + "acceleration_print": { "value": 500 }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, + "acceleration_travel": { "value": 500 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel" }, + "adhesion_type": { "value": "'skirt'" }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 30.0 }, + "infill_pattern": { "value": "'lines'" }, + "infill_wipe_dist": { "value": 0.0 }, + "jerk_enabled": { "value": false }, + "jerk_print": { "value": 8 }, + "jerk_travel": { "value": "jerk_print" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "machine_acceleration": { "value": 500 }, + "machine_depth": { "default_value": 350 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y240 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 400 }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_feedrate_e": { "value": 50 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_name": { "default_value": "SV03" }, + "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\nG29 ;Automatic Leveling\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" }, + "machine_width": { "default_value": 350 }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "optimize_wall_printing_order": { "value": "True" }, + "retraction_amount": { "default_value": 3 }, + "retraction_speed": { "default_value": 50 }, + "skin_overlap": { "value": 10.0 }, + "skirt_brim_speed": { "value": "speed_layer_0" }, + "speed_print": { "value": 50.0 }, + "wall_0_wipe_dist": { "value": 0.0 }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, + "z_seam_type": { "value": "'back'" } + } +} \ No newline at end of file diff --git a/resources/definitions/abax_pri3.def.json b/resources/definitions/abax_pri3.def.json index 914dc4d3e0..cfea23812f 100644 --- a/resources/definitions/abax_pri3.def.json +++ b/resources/definitions/abax_pri3.def.json @@ -1,59 +1,31 @@ { - "name": "Abax PRi3", "version": 2, + "name": "Abax PRi3", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Abax 3D Technologies", "manufacturer": "Abax 3D Technologies", "file_formats": "text/x-gcode", - "machine_extruder_trains": - { - "0": "abax_pri3_extruder_0" - } + "has_machine_quality": "true", + "machine_extruder_trains": { "0": "abax_pri3_extruder_0" } }, - "overrides": { - "machine_start_gcode": { - "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 X0 Y0 ;move to the X/Y origin (Home)\nG28 Z0 ;move to the Z origin (Home)\nG1 Z5.0 F200 ;move Z to position 5.0 mm\nG92 E0 ;zero the extruded length\n; -- end of START GCODE --" - }, - "machine_end_gcode": { - "default_value": "; -- END GCODE --\nM104 S0 ;set extruder temperature to zero (turned off)\nM140 S0 ;set temp of bed to Zero \nG91 ;set to relative positioning\nG1 E-10 F300 ;retract the filament a bit to release some of the pressure\nG1 F2000 X0 Y215 ;move X to min and Y to max \nG90 ;set to absolute positioning\nM84 ;turn off steppers\n; -- end of END GCODE --" - }, - "machine_width": { - "default_value": 225 - }, - "machine_depth": { - "default_value": 220 - }, - "machine_height": { - "default_value": 200 - }, - "machine_heated_bed": { - "default_value": false - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_gcode_flavor": { - "default_value": "RepRap" - }, - "layer_height": { - "default_value": 0.2 - }, - "layer_height_0": { - "default_value": 0.2 - }, - "wall_thickness": { - "value": "1" - }, - "top_bottom_thickness": { - "default_value": 1 - }, - "speed_print": { - "default_value": 40 - }, - "support_enable": { - "default_value": true - } + "overrides": + { + "layer_height": { "default_value": 0.2 }, + "layer_height_0": { "default_value": 0.2 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "; -- END GCODE --\nM104 S0 ;set extruder temperature to zero (turned off)\nM140 S0 ;set temp of bed to Zero \nG91 ;set to relative positioning\nG1 E-10 F300 ;retract the filament a bit to release some of the pressure\nG1 F2000 X0 Y215 ;move X to min and Y to max \nG90 ;set to absolute positioning\nM84 ;turn off steppers\n; -- end of END GCODE --" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 200 }, + "machine_start_gcode": { "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 X0 Y0 ;move to the X/Y origin (Home)\nG28 Z0 ;move to the Z origin (Home)\nG1 Z5.0 F200 ;move Z to position 5.0 mm\nG92 E0 ;zero the extruded length\n; -- end of START GCODE --" }, + "machine_width": { "default_value": 225 }, + "speed_print": { "default_value": 40 }, + "support_enable": { "default_value": true }, + "top_bottom_thickness": { "default_value": 1 }, + "wall_thickness": { "value": "1" } } -} +} \ No newline at end of file diff --git a/resources/definitions/abax_pri5.def.json b/resources/definitions/abax_pri5.def.json index cb6566e08c..10fba30245 100644 --- a/resources/definitions/abax_pri5.def.json +++ b/resources/definitions/abax_pri5.def.json @@ -1,59 +1,31 @@ { - "name": "Abax PRi5", "version": 2, + "name": "Abax PRi5", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Abax 3D Technologies", "manufacturer": "Abax 3D Technologies", "file_formats": "text/x-gcode", - "machine_extruder_trains": - { - "0": "abax_pri5_extruder_0" - } + "has_machine_quality": "true", + "machine_extruder_trains": { "0": "abax_pri5_extruder_0" } }, - "overrides": { - "machine_start_gcode": { - "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 X0 Y0 ;move to the X/Y origin (Home)\nG28 Z0 ;move to the Z origin (Home)\nG1 Z5.0 F200 ;move Z to position 5.0 mm\nG92 E0 ;zero the extruded length\n; -- end of START GCODE --" - }, - "machine_end_gcode": { - "default_value": "; -- END GCODE --\nM104 S0 ;set extruder temperature to zero (turned off)\nM140 S0 ;set temp of bed to Zero \nG91 ;set to relative positioning\nG1 E-10 F300 ;retract the filament a bit to release some of the pressure\nG1 F2000 X0 Y300 ;move X to min and Y to max \nG90 ;set to absolute positioning\nM84 ;turn off steppers\n; -- end of END GCODE --" - }, - "machine_width": { - "default_value": 310 - }, - "machine_depth": { - "default_value": 310 - }, - "machine_height": { - "default_value": 300 - }, - "machine_heated_bed": { - "default_value": false - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_gcode_flavor": { - "default_value": "RepRap" - }, - "layer_height": { - "default_value": 0.2 - }, - "layer_height_0": { - "default_value": 0.2 - }, - "wall_thickness": { - "value": "1" - }, - "top_bottom_thickness": { - "default_value": 1 - }, - "speed_print": { - "default_value": 40 - }, - "support_enable": { - "default_value": true - } + "overrides": + { + "layer_height": { "default_value": 0.2 }, + "layer_height_0": { "default_value": 0.2 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 310 }, + "machine_end_gcode": { "default_value": "; -- END GCODE --\nM104 S0 ;set extruder temperature to zero (turned off)\nM140 S0 ;set temp of bed to Zero \nG91 ;set to relative positioning\nG1 E-10 F300 ;retract the filament a bit to release some of the pressure\nG1 F2000 X0 Y300 ;move X to min and Y to max \nG90 ;set to absolute positioning\nM84 ;turn off steppers\n; -- end of END GCODE --" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 300 }, + "machine_start_gcode": { "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 X0 Y0 ;move to the X/Y origin (Home)\nG28 Z0 ;move to the Z origin (Home)\nG1 Z5.0 F200 ;move Z to position 5.0 mm\nG92 E0 ;zero the extruded length\n; -- end of START GCODE --" }, + "machine_width": { "default_value": 310 }, + "speed_print": { "default_value": 40 }, + "support_enable": { "default_value": true }, + "top_bottom_thickness": { "default_value": 1 }, + "wall_thickness": { "value": "1" } } -} +} \ No newline at end of file diff --git a/resources/definitions/abax_titan.def.json b/resources/definitions/abax_titan.def.json index 0b22634e1f..910b2c9355 100644 --- a/resources/definitions/abax_titan.def.json +++ b/resources/definitions/abax_titan.def.json @@ -1,59 +1,30 @@ { - "name": "Abax Titan", "version": 2, + "name": "Abax Titan", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Abax 3D Technologies", "manufacturer": "Abax 3D Technologies", "file_formats": "text/x-gcode", - "machine_extruder_trains": - { - "0": "abax_titan_extruder_0" - } + "machine_extruder_trains": { "0": "abax_titan_extruder_0" } }, - "overrides": { - "machine_start_gcode": { - "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 X0 Y0 ;move to the X/Y origin (Home)\nG28 Z0 ;move to the Z origin (Home)\nG1 Z5.0 F200 ;move Z to position 5.0 mm\nG92 E0 ;zero the extruded length\n; -- end of START GCODE --" - }, - "machine_end_gcode": { - "default_value": "; -- END GCODE --\nM104 S0 ;set extruder temperature to zero (turned off)\nM140 S0 ;set temp of bed to Zero \nG91 ;set to relative positioning\nG1 E-10 F300 ;retract the filament a bit to release some of the pressure\nG1 F2000 X0 Y300 ;move X to min and Y to max \nG90 ;set to absolute positioning\nM84 ;turn off steppers\n; -- end of END GCODE --" - }, - "machine_width": { - "default_value": 310 - }, - "machine_depth": { - "default_value": 310 - }, - "machine_height": { - "default_value": 300 - }, - "machine_heated_bed": { - "default_value": false - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_gcode_flavor": { - "default_value": "RepRap" - }, - "layer_height": { - "default_value": 0.2 - }, - "layer_height_0": { - "default_value": 0.2 - }, - "wall_thickness": { - "value": "1" - }, - "top_bottom_thickness": { - "default_value": 1 - }, - "speed_print": { - "default_value": 40 - }, - "support_enable": { - "default_value": true - } + "overrides": + { + "layer_height": { "default_value": 0.2 }, + "layer_height_0": { "default_value": 0.2 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 310 }, + "machine_end_gcode": { "default_value": "; -- END GCODE --\nM104 S0 ;set extruder temperature to zero (turned off)\nM140 S0 ;set temp of bed to Zero \nG91 ;set to relative positioning\nG1 E-10 F300 ;retract the filament a bit to release some of the pressure\nG1 F2000 X0 Y300 ;move X to min and Y to max \nG90 ;set to absolute positioning\nM84 ;turn off steppers\n; -- end of END GCODE --" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 300 }, + "machine_start_gcode": { "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 X0 Y0 ;move to the X/Y origin (Home)\nG28 Z0 ;move to the Z origin (Home)\nG1 Z5.0 F200 ;move Z to position 5.0 mm\nG92 E0 ;zero the extruded length\n; -- end of START GCODE --" }, + "machine_width": { "default_value": 310 }, + "speed_print": { "default_value": 40 }, + "support_enable": { "default_value": true }, + "top_bottom_thickness": { "default_value": 1 }, + "wall_thickness": { "value": "1" } } -} +} \ No newline at end of file diff --git a/resources/definitions/alfawise_u20.def.json b/resources/definitions/alfawise_u20.def.json index 5b9b8471c6..fc35da2550 100644 --- a/resources/definitions/alfawise_u20.def.json +++ b/resources/definitions/alfawise_u20.def.json @@ -1,72 +1,35 @@ { - "name": "Alfawise U20", "version": 2, + "name": "Alfawise U20", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Samuel Pinches", "manufacturer": "Alfawise", "file_formats": "text/x-gcode", - "preferred_quality_type": "fast", - "machine_extruder_trains": - { - "0": "alfawise_u20_extruder_0" - } + "machine_extruder_trains": { "0": "alfawise_u20_extruder_0" }, + "preferred_quality_type": "fast" }, - "overrides": { - "machine_name": { - "default_value": "Alfawise U20" - }, - "machine_start_gcode": { - "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 ;home all axis\nG92 E0 ;zero the extruded length\nG1 Z1 F1000 ;move up slightly\nG1 Y60.0 Z0 E9.0 F1000.0;intro line\nG1 Y100.0 E21.5 F1000.0 ;continue line\nG92 E0 ;zero the extruded length again\n; -- end of START GCODE --" - }, - "machine_end_gcode": { - "default_value": "; -- END GCODE --\nM104 S0 ;turn off nozzle heater\nM140 S0 ;turn off bed heater\nG91 ;set to relative positioning\nG1 E-10 F300 ;retract the filament slightly\nG90 ;set to absolute positioning\nG28 X0 ;move to the X-axis origin (Home)\nG0 Y280 F600 ;bring the bed to the front for easy print removal\nM84 ;turn off stepper motors\n; -- end of END GCODE --" - }, - "machine_width": { - "default_value": 300 - }, - "machine_height": { - "default_value": 400 - }, - "machine_depth": { - "default_value": 300 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": false - }, - "gantry_height": { - "value": "10" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "material_diameter": { - "default_value": 1.75 - }, - "layer_height_0": { - "default_value": 0.2 - }, - "wall_thickness": { - "value": "1.2" - }, - "speed_print": { - "default_value": 40 - }, - "support_enable": { - "default_value": true - }, - "retraction_enable": { - "default_value": true - }, - "retraction_amount": { - "default_value": 5 - }, - "retraction_speed": { - "default_value": 45 - } + "overrides": + { + "gantry_height": { "value": "10" }, + "layer_height_0": { "default_value": 0.2 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "; -- END GCODE --\nM104 S0 ;turn off nozzle heater\nM140 S0 ;turn off bed heater\nG91 ;set to relative positioning\nG1 E-10 F300 ;retract the filament slightly\nG90 ;set to absolute positioning\nG28 X0 ;move to the X-axis origin (Home)\nG0 Y280 F600 ;bring the bed to the front for easy print removal\nM84 ;turn off stepper motors\n; -- end of END GCODE --" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Alfawise U20" }, + "machine_start_gcode": { "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 ;home all axis\nG92 E0 ;zero the extruded length\nG1 Z1 F1000 ;move up slightly\nG1 Y60.0 Z0 E9.0 F1000.0;intro line\nG1 Y100.0 E21.5 F1000.0 ;continue line\nG92 E0 ;zero the extruded length again\n; -- end of START GCODE --" }, + "machine_width": { "default_value": 300 }, + "material_diameter": { "default_value": 1.75 }, + "retraction_amount": { "default_value": 5 }, + "retraction_enable": { "default_value": true }, + "retraction_speed": { "default_value": 45 }, + "speed_print": { "default_value": 40 }, + "support_enable": { "default_value": true }, + "wall_thickness": { "value": "1.2" } } -} +} \ No newline at end of file diff --git a/resources/definitions/alfawise_u30.def.json b/resources/definitions/alfawise_u30.def.json index 3bfc1aaa4e..1bfd6441c9 100644 --- a/resources/definitions/alfawise_u30.def.json +++ b/resources/definitions/alfawise_u30.def.json @@ -1,58 +1,54 @@ { - "name": "Alfawise U30", "version": 2, + "name": "Alfawise U30", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Nicolas Nussbaum", "manufacturer": "Alfawise", "file_formats": "text/x-gcode", - "preferred_quality_type": "fast", - "machine_extruder_trains": - { - "0": "alfawise_u30_extruder_0" - } + "machine_extruder_trains": { "0": "alfawise_u30_extruder_0" }, + "preferred_quality_type": "fast" }, - "overrides": { - "machine_name": { "default_value": "Alfawise U30" }, - "machine_start_gcode": { - "default_value": "; -- START GCODE --\nG21 ;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 Z1 F1000 ;move up slightly\nG1 Y60.0 Z0 E9.0 F1000.0;intro line\nG1 Y100.0 E21.5 F1000.0 ;continue line\nG92 E0 ;zero the extruded length again\nG1 F80\n;Put printing message on LCD screen\nM117 Printing...\n; -- end of START GCODE --" - }, - "machine_end_gcode": { - "default_value": "; -- END GCODE --\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F80 ;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\nM107 ;turn the fan off; -- end of END GCODE --" - }, - "material_diameter": { "default_value": 1.75 }, - "layer_height_0": { "default_value": 0.2 }, - "wall_thickness": { "value": "1.2" }, - "speed_print": { "default_value": 40 }, - "support_enable": { "default_value": true }, - "retraction_enable": { "default_value": true }, - "retraction_amount": { "default_value": 5 }, - "retraction_speed": { "default_value": 45 }, + "overrides": + { "gantry_height": { "value": "25" }, - "machine_width": { "default_value": 220 }, - "machine_height": { "default_value": 250 }, - "machine_depth": { "default_value": 220 }, + "layer_height_0": { "default_value": 0.2 }, + "machine_acceleration": { "default_value": 300 }, "machine_center_is_zero": { "default_value": false }, - "machine_heated_bed": { "default_value": true }, + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "; -- END GCODE --\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F80 ;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\nM107 ;turn the fan off; -- end of END GCODE --" }, "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_max_feedrate_x": { "default_value": 200 }, - "machine_max_feedrate_y": { "default_value": 200 }, - "machine_max_feedrate_z": { "default_value": 5 }, - "machine_max_feedrate_e": { "default_value": 100 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 250 }, + "machine_max_acceleration_e": { "default_value": 3000 }, "machine_max_acceleration_x": { "default_value": 500 }, "machine_max_acceleration_y": { "default_value": 500 }, "machine_max_acceleration_z": { "default_value": 10 }, - "machine_max_acceleration_e": { "default_value": 3000 }, - "machine_acceleration": { "default_value": 300 }, + "machine_max_feedrate_e": { "default_value": 100 }, + "machine_max_feedrate_x": { "default_value": 200 }, + "machine_max_feedrate_y": { "default_value": 200 }, + "machine_max_feedrate_z": { "default_value": 5 }, + "machine_max_jerk_e": { "default_value": 5.0 }, "machine_max_jerk_xy": { "default_value": 20.0 }, "machine_max_jerk_z": { "default_value": 0.4 }, - "machine_max_jerk_e": { "default_value": 5.0 }, + "machine_name": { "default_value": "Alfawise U30" }, + "machine_start_gcode": { "default_value": "; -- START GCODE --\nG21 ;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 Z1 F1000 ;move up slightly\nG1 Y60.0 Z0 E9.0 F1000.0;intro line\nG1 Y100.0 E21.5 F1000.0 ;continue line\nG92 E0 ;zero the extruded length again\nG1 F80\n;Put printing message on LCD screen\nM117 Printing...\n; -- end of START GCODE --" }, + "machine_steps_per_mm_e": { "default_value": 93 }, "machine_steps_per_mm_x": { "default_value": 80 }, "machine_steps_per_mm_y": { "default_value": 80 }, "machine_steps_per_mm_z": { "default_value": 400 }, - "machine_steps_per_mm_e": { "default_value": 93 }, + "machine_width": { "default_value": 220 }, + "material_diameter": { "default_value": 1.75 }, + "retraction_amount": { "default_value": 5 }, + "retraction_enable": { "default_value": true }, + "retraction_speed": { "default_value": 45 }, + "skirt_brim_minimal_length": { "default_value": 250 }, "skirt_line_count": { "default_value": 1 }, - "skirt_brim_minimal_length": { "default_value": 250 } + "speed_print": { "default_value": 40 }, + "speed_z_hop": { "value": "machine_max_feedrate_z" }, + "support_enable": { "default_value": true }, + "wall_thickness": { "value": "1.2" } } -} +} \ No newline at end of file diff --git a/resources/definitions/alya3dp.def.json b/resources/definitions/alya3dp.def.json index f335285cfb..636a020184 100644 --- a/resources/definitions/alya3dp.def.json +++ b/resources/definitions/alya3dp.def.json @@ -9,41 +9,103 @@ "manufacturer": "Kati Hal ARGE", "file_formats": "text/x-gcode", "platform": "alya_platform.3mf", - "platform_offset": [-60, -45, 75 ], - "exclude_materials": ["chromatik_pla", "dsm_arnitel2045_175", "dsm_novamid1070_175", "fabtotum_abs", "fabtotum_nylon", "fabtotum_pla", "fabtotum_tpu", "fiberlogy_hd_pla", "filo3d_pla", "filo3d_pla_green", "filo3d_pla_red", "generic_abs", "generic_abs_175", "generic_bam", "generic_cpe", "generic_cpe_175", "generic_cpe_plus", "generic_hips", "generic_hips_175", "generic_nylon", "generic_nylon_175", "generic_pc", "generic_pc_175", "generic_petg", "generic_petg_175", "generic_pp", "generic_pva", "generic_pva_175", "generic_tough_pla", "generic_tpu", "generic_tpu_175", "imade3d_petg_green", "imade3d_petg_pink", "imade3d_pla_green", "imade3d_pla_pink", "innofill_innoflex60_175", "octofiber_pla", "polyflex_pla", "polymax_pla", "polyplus_pla", "polywood_pla", "ultimaker_abs_black", "ultimaker_abs_blue", "ultimaker_abs_green", "ultimaker_abs_grey", "ultimaker_abs_orange", "ultimaker_abs_pearl-gold", "ultimaker_abs_red", "ultimaker_abs_silver-metallic", "ultimaker_abs_white", "ultimaker_abs_yellow", "ultimaker_bam", "ultimaker_cpe_black", "ultimaker_cpe_blue", "ultimaker_cpe_dark-grey", "ultimaker_cpe_green", "ultimaker_cpe_light-grey", "ultimaker_cpe_plus_black", "ultimaker_cpe_plus_transparent", "ultimaker_cpe_plus_white", "ultimaker_cpe_red", "ultimaker_cpe_transparent", "ultimaker_cpe_white", "ultimaker_cpe_yellow", "ultimaker_nylon_black", "ultimaker_nylon_transparent", "ultimaker_pc_black", "ultimaker_pc_transparent", "ultimaker_pc_white", "ultimaker_pla_black", "ultimaker_pla_blue", "ultimaker_pla_green", "ultimaker_pla_magenta", "ultimaker_pla_orange", "ultimaker_pla_pearl-white", "ultimaker_pla_red", "ultimaker_pla_silver-metallic", "ultimaker_pla_transparent", "ultimaker_pla_white", "ultimaker_pla_yellow", "ultimaker_pp_transparent", "ultimaker_pva", "ultimaker_tough_pla_black", "ultimaker_tough_pla_green", "ultimaker_tough_pla_red", "ultimaker_tough_pla_white", "ultimaker_tpu_black", "ultimaker_tpu_blue", "ultimaker_tpu_red", "ultimaker_tpu_white", "verbatim_bvoh_175", "Vertex_Delta_ABS", "Vertex_Delta_PET", "Vertex_Delta_PLA", "Vertex_Delta_TPU", "zyyx_pro_flex", "zyyx_pro_pla","tizyx_pla","tizyx_abs","tizyx_pla_bois" ], - "preferred_material": "generic_pla", + "exclude_materials": [ + "chromatik_pla", + "dsm_arnitel2045_175", + "dsm_novamid1070_175", + "fabtotum_abs", + "fabtotum_nylon", + "fabtotum_pla", + "fabtotum_tpu", + "fiberlogy_hd_pla", + "filo3d_pla", + "filo3d_pla_green", + "filo3d_pla_red", + "generic_abs", + "generic_abs_175", + "generic_bam", + "generic_cpe", + "generic_cpe_175", + "generic_cpe_plus", + "generic_hips", + "generic_hips_175", + "generic_nylon", + "generic_nylon_175", + "generic_pc", + "generic_pc_175", + "generic_petg", + "generic_petg_175", + "generic_pp", + "generic_pva", + "generic_pva_175", + "generic_tough_pla", + "generic_tpu", + "generic_tpu_175", + "imade3d_petg_green", + "imade3d_petg_pink", + "imade3d_pla_green", + "imade3d_pla_pink", + "innofill_innoflex60_175", + "octofiber_pla", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "verbatim_bvoh_175", + "Vertex_Delta_ABS", + "Vertex_Delta_PET", + "Vertex_Delta_PLA", + "Vertex_Delta_TPU", + "zyyx_pro_flex", + "zyyx_pro_pla", + "tizyx_pla", + "tizyx_abs", + "tizyx_pla_bois" + ], "has_machine_quality": true, "has_materials": true, "has_variants": false, - "supports_usb_connection": false, - "machine_extruder_trains": - { - "0": "alya3dp_extruder_0" - } + "machine_extruder_trains": { "0": "alya3dp_extruder_0" }, + "platform_offset": [ + -60, + -45, + 75 + ], + "preferred_material": "generic_pla", + "supports_usb_connection": false }, - - "overrides": { + "overrides": + { + "adhesion_type": + { + "default_value": "raft", + "options": + { + "brim": "Brim", + "none": "None", + "raft": "Raft" + } + }, + "gantry_height": { "value": "55" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 100 }, + "machine_end_gcode": { "default_value": ";End GCode\nM104 S0 ;extruder heater off \nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;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\nG28 Z0\nM84 ;steppers off\nG90 ;absolute positioning\n;{profile_string}" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [75, 18], + [18, 18], + [18, 35], + [75, 35] + ] + }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 133 }, "machine_name": { "default_value": "ALYA 3DP" }, - "machine_heated_bed": { "default_value": false }, - "machine_width": { "default_value": 100 }, - "machine_height": { "default_value": 133 }, - "machine_depth": { "default_value": 100 }, - "machine_center_is_zero": { "default_value": false }, - "gantry_height": { "value": "55"}, - "retraction_amount": { "default_value": 1.5 }, - "support_enable": { "default_value": true}, - "machine_head_with_fans_polygon": { - "default_value": [[75, 18],[18, 18],[18, 35],[75, 35]] - }, - "adhesion_type": {"options": {"raft": "Raft" ,"none": "None", "brim": "Brim"}, "default_value": "raft"}, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": - { - "default_value": ";Sliced at: {day} {date} {time} \n ;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {fill_density} \n ;Print time: {print_time} \n ;Filament used: {filament_amount}m {filament_weight}g \n ;Filament cost: {filament_cost} \n G28 X0 Y0 ;move X Y to endstops \n G28 Z0 ;move Z to endstops \n ; M190 S{material_bed_temperature} ;bed temp \n M107 ; switch fan off \n M109 S{material_print_temperature} ;extruder temp set \n G1 F3000 \n G1 Z10 \n G92 E0 ;zero the extruded length \n G1 F200 E1 ;extrude 1mm of feed stock \n G92 E0 ;zero the extruded length again \n G4 P7000 ; wait 7000ms \n M117 Printing... ;Put printing message on LCD screen" - }, - "machine_end_gcode": - { - "default_value": ";End GCode\nM104 S0 ;extruder heater off \nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;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\nG28 Z0\nM84 ;steppers off\nG90 ;absolute positioning\n;{profile_string}" - } + "machine_start_gcode": { "default_value": ";Sliced at: {day} {date} {time} \n ;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {fill_density} \n ;Print time: {print_time} \n ;Filament used: {filament_amount}m {filament_weight}g \n ;Filament cost: {filament_cost} \n G28 X0 Y0 ;move X Y to endstops \n G28 Z0 ;move Z to endstops \n ; M190 S{material_bed_temperature} ;bed temp \n M107 ; switch fan off \n M109 S{material_print_temperature} ;extruder temp set \n G1 F3000 \n G1 Z10 \n G92 E0 ;zero the extruded length \n G1 F200 E1 ;extrude 1mm of feed stock \n G92 E0 ;zero the extruded length again \n G4 P7000 ; wait 7000ms \n M117 Printing... ;Put printing message on LCD screen" }, + "machine_width": { "default_value": 100 }, + "retraction_amount": { "default_value": 1.5 }, + "support_enable": { "default_value": true } } } \ No newline at end of file diff --git a/resources/definitions/alyanx3dp.def.json b/resources/definitions/alyanx3dp.def.json index 76ce87445b..2572e9db95 100644 --- a/resources/definitions/alyanx3dp.def.json +++ b/resources/definitions/alyanx3dp.def.json @@ -9,41 +9,103 @@ "manufacturer": "Kati Hal ARGE", "file_formats": "text/x-gcode", "platform": "alya_nx_platform.3mf", - "platform_offset": [-104, 0, 93 ], - "exclude_materials": ["chromatik_pla", "dsm_arnitel2045_175", "dsm_novamid1070_175", "fabtotum_abs", "fabtotum_nylon", "fabtotum_pla", "fabtotum_tpu", "fiberlogy_hd_pla", "filo3d_pla", "filo3d_pla_green", "filo3d_pla_red", "generic_abs", "generic_abs_175", "generic_bam", "generic_cpe", "generic_cpe_175", "generic_cpe_plus", "generic_hips", "generic_hips_175", "generic_nylon", "generic_nylon_175", "generic_pc", "generic_pc_175", "generic_petg", "generic_petg_175", "generic_pp", "generic_pva", "generic_pva_175", "generic_tough_pla", "generic_tpu", "generic_tpu_175", "imade3d_petg_green", "imade3d_petg_pink", "imade3d_pla_green", "imade3d_pla_pink", "innofill_innoflex60_175", "octofiber_pla", "polyflex_pla", "polymax_pla", "polyplus_pla", "polywood_pla", "ultimaker_abs_black", "ultimaker_abs_blue", "ultimaker_abs_green", "ultimaker_abs_grey", "ultimaker_abs_orange", "ultimaker_abs_pearl-gold", "ultimaker_abs_red", "ultimaker_abs_silver-metallic", "ultimaker_abs_white", "ultimaker_abs_yellow", "ultimaker_bam", "ultimaker_cpe_black", "ultimaker_cpe_blue", "ultimaker_cpe_dark-grey", "ultimaker_cpe_green", "ultimaker_cpe_light-grey", "ultimaker_cpe_plus_black", "ultimaker_cpe_plus_transparent", "ultimaker_cpe_plus_white", "ultimaker_cpe_red", "ultimaker_cpe_transparent", "ultimaker_cpe_white", "ultimaker_cpe_yellow", "ultimaker_nylon_black", "ultimaker_nylon_transparent", "ultimaker_pc_black", "ultimaker_pc_transparent", "ultimaker_pc_white", "ultimaker_pla_black", "ultimaker_pla_blue", "ultimaker_pla_green", "ultimaker_pla_magenta", "ultimaker_pla_orange", "ultimaker_pla_pearl-white", "ultimaker_pla_red", "ultimaker_pla_silver-metallic", "ultimaker_pla_transparent", "ultimaker_pla_white", "ultimaker_pla_yellow", "ultimaker_pp_transparent", "ultimaker_pva", "ultimaker_tough_pla_black", "ultimaker_tough_pla_green", "ultimaker_tough_pla_red", "ultimaker_tough_pla_white", "ultimaker_tpu_black", "ultimaker_tpu_blue", "ultimaker_tpu_red", "ultimaker_tpu_white", "verbatim_bvoh_175", "Vertex_Delta_ABS", "Vertex_Delta_PET", "Vertex_Delta_PLA", "Vertex_Delta_TPU", "zyyx_pro_flex", "zyyx_pro_pla","tizyx_pla","tizyx_abs","tizyx_pla_bois" ], - "preferred_material": "generic_pla", + "exclude_materials": [ + "chromatik_pla", + "dsm_arnitel2045_175", + "dsm_novamid1070_175", + "fabtotum_abs", + "fabtotum_nylon", + "fabtotum_pla", + "fabtotum_tpu", + "fiberlogy_hd_pla", + "filo3d_pla", + "filo3d_pla_green", + "filo3d_pla_red", + "generic_abs", + "generic_abs_175", + "generic_bam", + "generic_cpe", + "generic_cpe_175", + "generic_cpe_plus", + "generic_hips", + "generic_hips_175", + "generic_nylon", + "generic_nylon_175", + "generic_pc", + "generic_pc_175", + "generic_petg", + "generic_petg_175", + "generic_pp", + "generic_pva", + "generic_pva_175", + "generic_tough_pla", + "generic_tpu", + "generic_tpu_175", + "imade3d_petg_green", + "imade3d_petg_pink", + "imade3d_pla_green", + "imade3d_pla_pink", + "innofill_innoflex60_175", + "octofiber_pla", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "verbatim_bvoh_175", + "Vertex_Delta_ABS", + "Vertex_Delta_PET", + "Vertex_Delta_PLA", + "Vertex_Delta_TPU", + "zyyx_pro_flex", + "zyyx_pro_pla", + "tizyx_pla", + "tizyx_abs", + "tizyx_pla_bois" + ], "has_machine_quality": true, "has_materials": true, "has_variants": false, - "supports_usb_connection": false, - "machine_extruder_trains": - { - "0": "alya3dp_extruder_0" - } + "machine_extruder_trains": { "0": "alya3dp_extruder_0" }, + "platform_offset": [ + -104, + 0, + 93 + ], + "preferred_material": "generic_pla", + "supports_usb_connection": false }, - - "overrides": { + "overrides": + { + "adhesion_type": + { + "default_value": "raft", + "options": + { + "brim": "Brim", + "none": "None", + "raft": "Raft" + } + }, + "gantry_height": { "value": "55" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 160 }, + "machine_end_gcode": { "default_value": ";End GCode\nM104 S0 ;extruder heater off \nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;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\nG28 Z0\nM84 ;steppers off\nG90 ;absolute positioning\n;{profile_string}" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [75, 18], + [18, 18], + [18, 35], + [75, 35] + ] + }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 170 }, "machine_name": { "default_value": "ALYA NX 3DP" }, - "machine_heated_bed": { "default_value": false }, - "machine_width": { "default_value": 180 }, - "machine_height": { "default_value": 170 }, - "machine_depth": { "default_value": 160 }, - "machine_center_is_zero": { "default_value": false }, - "gantry_height": { "value": "55"}, - "retraction_amount": { "default_value": 1.5 }, - "support_enable": { "default_value": true}, - "machine_head_with_fans_polygon": { - "default_value": [[75, 18],[18, 18],[18, 35],[75, 35]] - }, - "adhesion_type": {"options": {"raft": "Raft" ,"none": "None", "brim": "Brim"}, "default_value": "raft"}, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": - { - "default_value": ";Sliced at: {day} {date} {time} \n ;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {fill_density} \n ;Print time: {print_time} \n ;Filament used: {filament_amount}m {filament_weight}g \n ;Filament cost: {filament_cost} \n G28 X0 Y0 ;move X Y to endstops \n G28 Z0 ;move Z to endstops \n ; M190 S{material_bed_temperature} ;bed temp \n M107 ; switch fan off \n M109 S{material_print_temperature} ;extruder temp set \n G1 F3000 \n G1 Z10 \n G92 E0 ;zero the extruded length \n G1 F200 E1 ;extrude 1mm of feed stock \n G92 E0 ;zero the extruded length again \n G4 P7000 ; wait 7000ms \n M117 Printing... ;Put printing message on LCD screen" - }, - "machine_end_gcode": - { - "default_value": ";End GCode\nM104 S0 ;extruder heater off \nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;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\nG28 Z0\nM84 ;steppers off\nG90 ;absolute positioning\n;{profile_string}" - } + "machine_start_gcode": { "default_value": ";Sliced at: {day} {date} {time} \n ;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {fill_density} \n ;Print time: {print_time} \n ;Filament used: {filament_amount}m {filament_weight}g \n ;Filament cost: {filament_cost} \n G28 X0 Y0 ;move X Y to endstops \n G28 Z0 ;move Z to endstops \n ; M190 S{material_bed_temperature} ;bed temp \n M107 ; switch fan off \n M109 S{material_print_temperature} ;extruder temp set \n G1 F3000 \n G1 Z10 \n G92 E0 ;zero the extruded length \n G1 F200 E1 ;extrude 1mm of feed stock \n G92 E0 ;zero the extruded length again \n G4 P7000 ; wait 7000ms \n M117 Printing... ;Put printing message on LCD screen" }, + "machine_width": { "default_value": 180 }, + "retraction_amount": { "default_value": 1.5 }, + "support_enable": { "default_value": true } } } \ No newline at end of file diff --git a/resources/definitions/anet3d.def.json b/resources/definitions/anet3d.def.json index 59ad93416c..8698d6b5d4 100644 --- a/resources/definitions/anet3d.def.json +++ b/resources/definitions/anet3d.def.json @@ -2,147 +2,120 @@ "version": 2, "name": "anet3d", "inherits": "fdmprinter", - "metadata": { + "metadata": + { + "visible": false, "author": "Tiger.He", "manufacturer": "Anet", - "visible": false, "file_formats": "text/x-gcode", - "first_start_actions": ["MachineSettingsAction"], - - "preferred_variant_name": "0.4mm Nozzle", - "preferred_quality_type": "standard", + "first_start_actions": [ "MachineSettingsAction" ], + "machine_extruder_trains": { "0": "anet3d_extruder_0" }, "preferred_material": "generic_pla", - "machine_extruder_trains": - { - "0": "anet3d_extruder_0" - } + "preferred_quality_type": "standard", + "preferred_variant_name": "0.4mm Nozzle" }, - "overrides": { - "machine_max_feedrate_x": { "value": 500 }, - "machine_max_feedrate_y": { "value": 500 }, - "machine_max_feedrate_z": { "value": 10 }, - "machine_max_feedrate_e": { "value": 50 }, - - "machine_max_acceleration_x": { "value": 500 }, - "machine_max_acceleration_y": { "value": 500 }, - "machine_max_acceleration_z": { "value": 100 }, - "machine_max_acceleration_e": { "value": 5000 }, - "machine_acceleration": { "value": 500 }, - - "machine_max_jerk_xy": { "value": 10 }, - "machine_max_jerk_z": { "value": 0.4 }, - "machine_max_jerk_e": { "value": 5 }, - - "machine_heated_bed": { "default_value": true }, - - "material_diameter": { "default_value": 1.75 }, - + "overrides": + { + "acceleration_enabled": { "value": true }, "acceleration_print": { "value": 1000 }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, "acceleration_travel": { "value": 1000 }, "acceleration_travel_layer_0": { "value": "acceleration_travel" }, - "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, - + "adaptive_layer_height_variation": { "value": 0.04 }, + "adaptive_layer_height_variation_step": { "value": 0.04 }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "value": 10 }, + "extruder_prime_pos_x": + { + "maximum_value": "machine_width", + "minimum_value": "0" + }, + "extruder_prime_pos_y": + { + "maximum_value": "machine_depth", + "minimum_value": "0" + }, + "fill_outline_gaps": { "value": false }, + "gantry_height": { "value": "0" }, + "infill_before_walls": { "value": true }, + "infill_overlap": { "value": 30.0 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_wipe_dist": { "value": 0 }, + "jerk_enabled": { "value": false }, "jerk_print": { "value": 30.0 }, "jerk_travel": { "value": "jerk_print" }, "jerk_travel_layer_0": { "value": "jerk_travel" }, - - "acceleration_enabled": { "value": true }, - "jerk_enabled": { "value": false }, - - "speed_print": { "value": 50.0 } , - "speed_infill": { "value": "speed_print * 2" }, - "speed_wall": { "value": "speed_print / 2" }, - "speed_wall_0": { "value": "speed_wall" }, - "speed_wall_x": { "value": "speed_wall" }, - "speed_topbottom": { "value": "speed_print / 2" }, - "speed_roofing": { "value": "speed_topbottom" }, - "speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" }, - "speed_layer_0": { "value": "speed_print / 2" }, - "speed_print_layer_0": { "value": "speed_layer_0" }, - "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, - "speed_prime_tower": { "value": "speed_print" }, - "speed_support": { "value": "speed_print" }, - "speed_support_interface": { "value": "speed_print" }, - "speed_z_hop": { "value": 5 }, - - "skirt_brim_speed": { "value": "speed_layer_0" }, - - "line_width": { "value": "machine_nozzle_size" }, - - "optimize_wall_printing_order": { "value": true }, - - "material_initial_print_temperature": { "value": "material_print_temperature" }, + "machine_acceleration": { "value": 500 }, + "machine_center_is_zero": { "default_value": false }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_feedrate_e": { "value": 50 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, + "material_bed_temperature": { "minimum_value": "0" }, + "material_diameter": { "default_value": 1.75 }, "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_flow": { "value": 100 }, - - "z_seam_type": { "value": "'back'" }, - "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, - - "infill_sparse_density": { "value": "20" }, - "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, - "infill_before_walls": { "value": true }, - "infill_overlap": { "value": 30.0 }, - "skin_overlap": { "value": 10.0 }, - "infill_wipe_dist": { "value": 0 }, - "wall_0_wipe_dist": { "value": 0.2 }, - - "fill_outline_gaps": { "value": false }, - - "retraction_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "material_print_temperature": { "minimum_value": "0" }, + "material_standby_temperature": { "minimum_value": "0" }, + "meshfix_maximum_resolution": { "value": "0.25" }, + "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, + "optimize_wall_printing_order": { "value": true }, + "relative_extrusion": + { + "enabled": false, + "value": false }, - "retraction_retract_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 - }, - "retraction_prime_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 - }, - - "retraction_hop_enabled": { "value": "False" }, - "retraction_hop": { "value": 1 }, "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, "retraction_combing_max_distance": { "value": 30 }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 10 }, + "retraction_hop": { "value": 1 }, + "retraction_min_travel": { "value": 1.5 }, + "retraction_prime_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "retraction_retract_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "retraction_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "skin_overlap": { "value": 10.0 }, + "skirt_brim_speed": { "value": "speed_layer_0" }, + "speed_infill": { "value": "speed_print * 2" }, + "speed_layer_0": { "value": "speed_print / 2" }, + "speed_prime_tower": { "value": "speed_print" }, + "speed_print": { "value": 50.0 }, + "speed_roofing": { "value": "speed_topbottom" }, + "speed_support": { "value": "speed_print" }, + "speed_support_interface": { "value": "speed_print" }, + "speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" }, + "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 5 }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, "travel_avoid_other_parts": { "value": true }, "travel_avoid_supports": { "value": true }, "travel_retract_before_outer_wall": { "value": true }, - - "retraction_enable": { "value": true }, - "retraction_count_max": { "value": 100 }, - "retraction_extrusion_window": { "value": 10 }, - "retraction_min_travel": { "value": 1.5 }, - - "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, - "cool_fan_enabled": { "value": true }, - "cool_min_layer_time": { "value": 10 }, - - "adaptive_layer_height_variation": { "value": 0.04 }, - "adaptive_layer_height_variation_step": { "value": 0.04 }, - - "meshfix_maximum_resolution": { "value": "0.25" }, - "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, - - "top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" }, - "wall_thickness": {"value": "line_width * 2" }, - - "material_print_temperature": {"minimum_value": "0"}, - "material_bed_temperature": {"minimum_value": "0"}, - "material_standby_temperature": {"minimum_value": "0"}, - - "extruder_prime_pos_y":{"minimum_value": "0","maximum_value": "machine_depth"}, - "extruder_prime_pos_x":{"minimum_value": "0","maximum_value": "machine_width"}, - "relative_extrusion":{"value": false,"enabled": false}, - - "machine_use_extruder_offset_to_offset_coords": {"default_value": true}, - "machine_gcode_flavor": {"default_value": "RepRap (Marlin/Sprinter)"}, - - "machine_center_is_zero": { - "default_value": false - }, - "gantry_height": { - "value": "0" - } + "wall_0_wipe_dist": { "value": 0.2 }, + "wall_thickness": { "value": "line_width * 2" }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, + "z_seam_type": { "value": "'back'" } } -} +} \ No newline at end of file diff --git a/resources/definitions/anet3d_a2.def.json b/resources/definitions/anet3d_a2.def.json index a6192d6c12..118e500de0 100644 --- a/resources/definitions/anet3d_a2.def.json +++ b/resources/definitions/anet3d_a2.def.json @@ -2,30 +2,18 @@ "version": 2, "name": "Anet A2", "inherits": "anet3d", - "metadata": { + "metadata": + { "visible": true, - "machine_extruder_trains": - { - "0": "anet3d_extruder_0" - } + "machine_extruder_trains": { "0": "anet3d_extruder_0" } }, - - "overrides": { + "overrides": + { + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" }, + "machine_height": { "default_value": 220 }, "machine_name": { "default_value": "Anet A2" }, - "machine_width": { - "default_value": 220 - }, - "machine_depth": { - "default_value": 220 - }, - "machine_height": { - "default_value": 220 - }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" - } + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" }, + "machine_width": { "default_value": 220 } } -} +} \ No newline at end of file diff --git a/resources/definitions/anet3d_a2_plus.def.json b/resources/definitions/anet3d_a2_plus.def.json index 8c766577ac..7e8a14a87e 100644 --- a/resources/definitions/anet3d_a2_plus.def.json +++ b/resources/definitions/anet3d_a2_plus.def.json @@ -2,30 +2,18 @@ "version": 2, "name": "Anet A2 Plus", "inherits": "anet3d", - "metadata": { + "metadata": + { "visible": true, - "machine_extruder_trains": - { - "0": "anet3d_extruder_0" - } + "machine_extruder_trains": { "0": "anet3d_extruder_0" } }, - - "overrides": { + "overrides": + { + "machine_depth": { "default_value": 270 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" }, + "machine_height": { "default_value": 220 }, "machine_name": { "default_value": "Anet A2 Plus" }, - "machine_width": { - "default_value": 220 - }, - "machine_depth": { - "default_value": 270 - }, - "machine_height": { - "default_value": 220 - }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" - } + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" }, + "machine_width": { "default_value": 220 } } -} +} \ No newline at end of file diff --git a/resources/definitions/anet3d_a6.def.json b/resources/definitions/anet3d_a6.def.json index a98d99a8ca..ecef00b5b5 100644 --- a/resources/definitions/anet3d_a6.def.json +++ b/resources/definitions/anet3d_a6.def.json @@ -2,30 +2,18 @@ "version": 2, "name": "Anet A6", "inherits": "anet3d", - "metadata": { + "metadata": + { "visible": true, - "machine_extruder_trains": - { - "0": "anet3d_extruder_0" - } + "machine_extruder_trains": { "0": "anet3d_extruder_0" } }, - - "overrides": { + "overrides": + { + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" }, + "machine_height": { "default_value": 250 }, "machine_name": { "default_value": "Anet A6" }, - "machine_width": { - "default_value": 220 - }, - "machine_depth": { - "default_value": 220 - }, - "machine_height": { - "default_value": 250 - }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" - } + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" }, + "machine_width": { "default_value": 220 } } -} +} \ No newline at end of file diff --git a/resources/definitions/anet3d_a8.def.json b/resources/definitions/anet3d_a8.def.json index ed0c2a0cc1..d2c8d1b06d 100644 --- a/resources/definitions/anet3d_a8.def.json +++ b/resources/definitions/anet3d_a8.def.json @@ -2,30 +2,18 @@ "version": 2, "name": "Anet A8", "inherits": "anet3d", - "metadata": { + "metadata": + { "visible": true, - "machine_extruder_trains": - { - "0": "anet3d_extruder_0" - } + "machine_extruder_trains": { "0": "anet3d_extruder_0" } }, - - "overrides": { + "overrides": + { + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" }, + "machine_height": { "default_value": 240 }, "machine_name": { "default_value": "Anet A8" }, - "machine_width": { - "default_value": 220 - }, - "machine_depth": { - "default_value": 220 - }, - "machine_height": { - "default_value": 240 - }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" - } + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" }, + "machine_width": { "default_value": 220 } } -} +} \ No newline at end of file diff --git a/resources/definitions/anet3d_a8_plus.def.json b/resources/definitions/anet3d_a8_plus.def.json index baafd53710..84da2bafe2 100644 --- a/resources/definitions/anet3d_a8_plus.def.json +++ b/resources/definitions/anet3d_a8_plus.def.json @@ -2,30 +2,18 @@ "version": 2, "name": "Anet A8 Plus", "inherits": "anet3d", - "metadata": { + "metadata": + { "visible": true, - "machine_extruder_trains": - { - "0": "anet3d_extruder_0" - } + "machine_extruder_trains": { "0": "anet3d_extruder_0" } }, - - "overrides": { + "overrides": + { + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" }, + "machine_height": { "default_value": 350 }, "machine_name": { "default_value": "Anet A8 Plus" }, - "machine_width": { - "default_value": 300 - }, - "machine_depth": { - "default_value": 300 - }, - "machine_height": { - "default_value": 350 - }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" - } + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" }, + "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/anet3d_e10.def.json b/resources/definitions/anet3d_e10.def.json index 1366751d63..4f742489ae 100644 --- a/resources/definitions/anet3d_e10.def.json +++ b/resources/definitions/anet3d_e10.def.json @@ -2,30 +2,18 @@ "version": 2, "name": "Anet E10", "inherits": "anet3d", - "metadata": { - "visible": true, - "machine_extruder_trains": - { - "0": "anet3d_extruder_0" - } + "metadata": + { + "visible": true, + "machine_extruder_trains": { "0": "anet3d_extruder_0" } }, - - "overrides": { + "overrides": + { + "machine_depth": { "default_value": 270 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" }, + "machine_height": { "default_value": 300 }, "machine_name": { "default_value": "Anet E10" }, - "machine_width": { - "default_value": 220 - }, - "machine_depth": { - "default_value": 270 - }, - "machine_height": { - "default_value": 300 - }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" - } + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" }, + "machine_width": { "default_value": 220 } } -} +} \ No newline at end of file diff --git a/resources/definitions/anet3d_e12.def.json b/resources/definitions/anet3d_e12.def.json index d46db2a4bc..a7cc4ea902 100644 --- a/resources/definitions/anet3d_e12.def.json +++ b/resources/definitions/anet3d_e12.def.json @@ -2,30 +2,18 @@ "version": 2, "name": "Anet E12", "inherits": "anet3d", - "metadata": { - "visible": true, - "machine_extruder_trains": - { - "0": "anet3d_extruder_0" - } + "metadata": + { + "visible": true, + "machine_extruder_trains": { "0": "anet3d_extruder_0" } }, - - "overrides": { + "overrides": + { + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" }, + "machine_height": { "default_value": 400 }, "machine_name": { "default_value": "Anet E12" }, - "machine_width": { - "default_value": 300 - }, - "machine_depth": { - "default_value": 300 - }, - "machine_height": { - "default_value": 400 - }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" - } + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" }, + "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/anet3d_e16.def.json b/resources/definitions/anet3d_e16.def.json index 6488b8292d..e0e848a38c 100644 --- a/resources/definitions/anet3d_e16.def.json +++ b/resources/definitions/anet3d_e16.def.json @@ -2,30 +2,18 @@ "version": 2, "name": "Anet E16", "inherits": "anet3d", - "metadata": { - "visible": true, - "machine_extruder_trains": - { - "0": "anet3d_extruder_0" - } + "metadata": + { + "visible": true, + "machine_extruder_trains": { "0": "anet3d_extruder_0" } }, - - "overrides": { + "overrides": + { + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" }, + "machine_height": { "default_value": 400 }, "machine_name": { "default_value": "Anet E16" }, - "machine_width": { - "default_value": 300 - }, - "machine_depth": { - "default_value": 300 - }, - "machine_height": { - "default_value": 400 - }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" - } + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" }, + "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/anet3d_et4.def.json b/resources/definitions/anet3d_et4.def.json index 4f626f88aa..ee224f4d14 100644 --- a/resources/definitions/anet3d_et4.def.json +++ b/resources/definitions/anet3d_et4.def.json @@ -2,30 +2,18 @@ "version": 2, "name": "Anet ET4", "inherits": "anet3d", - "metadata": { - "visible": true, - "machine_extruder_trains": - { - "0": "anet3d_extruder_0" - } + "metadata": + { + "visible": true, + "machine_extruder_trains": { "0": "anet3d_extruder_0" } }, - - "overrides": { + "overrides": + { + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" }, + "machine_height": { "default_value": 250 }, "machine_name": { "default_value": "Anet ET4" }, - "machine_width": { - "default_value": 220 - }, - "machine_depth": { - "default_value": 220 - }, - "machine_height": { - "default_value": 250 - }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" - } + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" }, + "machine_width": { "default_value": 220 } } -} +} \ No newline at end of file diff --git a/resources/definitions/anet3d_et4_pro.def.json b/resources/definitions/anet3d_et4_pro.def.json index 47cd08f50f..fd3f09f85c 100644 --- a/resources/definitions/anet3d_et4_pro.def.json +++ b/resources/definitions/anet3d_et4_pro.def.json @@ -2,30 +2,18 @@ "version": 2, "name": "Anet ET4 Pro", "inherits": "anet3d", - "metadata": { + "metadata": + { "visible": true, - "machine_extruder_trains": - { - "0": "anet3d_extruder_0" - } + "machine_extruder_trains": { "0": "anet3d_extruder_0" } }, - - "overrides": { + "overrides": + { + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" }, + "machine_height": { "default_value": 250 }, "machine_name": { "default_value": "Anet ET4 Pro" }, - "machine_width": { - "default_value": 220 - }, - "machine_depth": { - "default_value": 220 - }, - "machine_height": { - "default_value": 250 - }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" - } + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" }, + "machine_width": { "default_value": 220 } } -} +} \ No newline at end of file diff --git a/resources/definitions/anet3d_et4_x.def.json b/resources/definitions/anet3d_et4_x.def.json index 588bf346ab..1a0b004be3 100644 --- a/resources/definitions/anet3d_et4_x.def.json +++ b/resources/definitions/anet3d_et4_x.def.json @@ -2,30 +2,18 @@ "version": 2, "name": "Anet ET4 X", "inherits": "anet3d", - "metadata": { + "metadata": + { "visible": true, - "machine_extruder_trains": - { - "0": "anet3d_extruder_0" - } + "machine_extruder_trains": { "0": "anet3d_extruder_0" } }, - - "overrides": { + "overrides": + { + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" }, + "machine_height": { "default_value": 250 }, "machine_name": { "default_value": "Anet ET4 X" }, - "machine_width": { - "default_value": 220 - }, - "machine_depth": { - "default_value": 220 - }, - "machine_height": { - "default_value": 250 - }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" - } + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" }, + "machine_width": { "default_value": 220 } } -} +} \ No newline at end of file diff --git a/resources/definitions/anet3d_et5.def.json b/resources/definitions/anet3d_et5.def.json index 36ae4b7405..7c894b666b 100644 --- a/resources/definitions/anet3d_et5.def.json +++ b/resources/definitions/anet3d_et5.def.json @@ -2,30 +2,18 @@ "version": 2, "name": "Anet ET5", "inherits": "anet3d", - "metadata": { - "visible": true, - "machine_extruder_trains": - { - "0": "anet3d_extruder_0" - } + "metadata": + { + "visible": true, + "machine_extruder_trains": { "0": "anet3d_extruder_0" } }, - - "overrides": { + "overrides": + { + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" }, + "machine_height": { "default_value": 400 }, "machine_name": { "default_value": "Anet ET5" }, - "machine_width": { - "default_value": 300 - }, - "machine_depth": { - "default_value": 300 - }, - "machine_height": { - "default_value": 400 - }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" - } + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" }, + "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/anet3d_et5_x.def.json b/resources/definitions/anet3d_et5_x.def.json index 471a7e68ba..bae2670362 100644 --- a/resources/definitions/anet3d_et5_x.def.json +++ b/resources/definitions/anet3d_et5_x.def.json @@ -2,30 +2,18 @@ "version": 2, "name": "Anet ET5 X", "inherits": "anet3d", - "metadata": { + "metadata": + { "visible": true, - "machine_extruder_trains": - { - "0": "anet3d_extruder_0" - } + "machine_extruder_trains": { "0": "anet3d_extruder_0" } }, - - "overrides": { + "overrides": + { + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" }, + "machine_height": { "default_value": 400 }, "machine_name": { "default_value": "Anet ET5 X" }, - "machine_width": { - "default_value": 300 - }, - "machine_depth": { - "default_value": 300 - }, - "machine_height": { - "default_value": 400 - }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" - } + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" }, + "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/ankermake_m5.def.json b/resources/definitions/ankermake_m5.def.json new file mode 100644 index 0000000000..6d8b0b15e9 --- /dev/null +++ b/resources/definitions/ankermake_m5.def.json @@ -0,0 +1,126 @@ +{ + "version": 2, + "name": "AnkerMake M5", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "just-trey", + "manufacturer": "AnkerMake", + "file_formats": "text/x-gcode", + "platform": "ankermake_m5_platform.obj", + "has_machine_quality": true, + "machine_extruder_trains": { "0": "ankermake_m5_extruder_0" }, + "platform_texture": "ankermake_m5.png", + "preferred_material": "generic_pla", + "preferred_quality_type": "normal" + }, + "overrides": + { + "acceleration_enabled": { "value": "true" }, + "acceleration_infill": { "maximum_value_warning": "2500" }, + "acceleration_layer_0": { "maximum_value_warning": "2500" }, + "acceleration_prime_tower": { "maximum_value_warning": "2500" }, + "acceleration_print": + { + "maximum_value_warning": "2500", + "value": "2500" + }, + "acceleration_print_layer_0": { "maximum_value_warning": "2500" }, + "acceleration_roofing": { "maximum_value_warning": "2500" }, + "acceleration_skirt_brim": { "maximum_value_warning": "2500" }, + "acceleration_support": { "maximum_value_warning": "2500" }, + "acceleration_support_bottom": { "maximum_value_warning": "2500" }, + "acceleration_support_infill": { "maximum_value_warning": "2500" }, + "acceleration_support_interface": { "maximum_value_warning": "2500" }, + "acceleration_support_roof": { "maximum_value_warning": "2500" }, + "acceleration_topbottom": { "maximum_value_warning": "2500" }, + "acceleration_travel": + { + "maximum_value_warning": "2500", + "value": "acceleration_print" + }, + "acceleration_travel_layer_0": + { + "maximum_value_warning": "2500", + "value": "acceleration_travel" + }, + "acceleration_wall": { "maximum_value_warning": "2500" }, + "acceleration_wall_0": { "maximum_value_warning": "2500" }, + "acceleration_wall_x": { "maximum_value_warning": "2500" }, + "adhesion_type": { "default_value": "skirt" }, + "cool_min_layer_time": { "value": 6 }, + "cool_min_speed": { "value": 30 }, + "gantry_height": { "value": 25 }, + "hole_xy_offset": { "value": 0.2 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density >= 25 else 'grid'" }, + "infill_sparse_density": { "value": 25 }, + "machine_depth": { "default_value": 235 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "AnkerMake M5" }, + "machine_start_gcode": { "default_value": "M104 S{material_print_temperature_layer_0} ; set final nozzle temp\nM190 S{material_bed_temperature_layer_0} ; set and wait for nozzle temp to stabilize\nM109 S{material_print_temperature_layer_0} ; wait for nozzle temp to stabilize\nG28 ;Home\nG1 E10 F3600; push out retracted filament(fix for over retraction after prime)" }, + "machine_width": { "default_value": 235 }, + "material_bed_temperature": { "maximum_value_warning": "110" }, + "material_bed_temperature_layer_0": { "maximum_value_warning": "110" }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_flow_layer_0": { "value": 115 }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "material_print_temperature": { "maximum_value_warning": "260" }, + "material_print_temperature_layer_0": + { + "maximum_value_warning": "270", + "value": "material_print_temperature + 5" + }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "retraction_amount": { "default_value": 1.5 }, + "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'infill'" }, + "retraction_hop": { "value": 0.2 }, + "retraction_speed": { "default_value": 60 }, + "skin_material_flow": { "value": 97 }, + "skin_monotonic": { "default_value": true }, + "skirt_line_count": { "value": 3 }, + "small_hole_max_size": { "value": 10 }, + "speed_infill": { "maximum_value_warning": 255 }, + "speed_print": + { + "maximum_value_warning": 255, + "value": 250.0 + }, + "speed_support": { "maximum_value_warning": 255 }, + "speed_support_bottom": { "maximum_value_warning": 255 }, + "speed_support_infill": { "maximum_value_warning": 255 }, + "speed_support_interface": { "maximum_value_warning": 255 }, + "speed_support_roof": { "maximum_value_warning": 255 }, + "speed_topbottom": { "value": 150.0 }, + "speed_travel": { "value": 250.0 }, + "speed_wall": + { + "maximum_value_warning": 255, + "value": 150.0 + }, + "speed_wall_x": + { + "maximum_value_warning": 255, + "value": 250.0 + }, + "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width / 2.0 /layer_height)))" }, + "support_brim_width": { "value": 4.0 }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_enable": { "value": true }, + "support_interface_pattern": { "value": "'grid'" }, + "support_interface_skip_height": { "value": 0.2 }, + "support_roof_enable": { "value": true }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "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 }, + "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/anycubic_4max.def.json b/resources/definitions/anycubic_4max.def.json index 6d6c20e8f5..8b9c26c89e 100644 --- a/resources/definitions/anycubic_4max.def.json +++ b/resources/definitions/anycubic_4max.def.json @@ -9,49 +9,15 @@ "manufacturer": "Anycubic", "file_formats": "text/x-gcode", "platform": "anycubic_4max_platform.3mf", - "has_materials": true, - "quality_definition": "anycubic_4max", "has_machine_quality": true, + "has_materials": true, + "machine_extruder_trains": { "0": "anycubic_4max_extruder_0" }, "preferred_quality_type": "normal", - "machine_extruder_trains": - { - "0": "anycubic_4max_extruder_0" - } + "quality_definition": "anycubic_4max" }, - "overrides": { - "machine_name": { "default_value": "Anycubic 4Max" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 220 }, - "machine_height": {"default_value": 300 }, - "machine_depth": { "default_value": 220 }, - "machine_center_is_zero": { "default_value": false }, - "machine_max_feedrate_x": { "default_value": 300 }, - "machine_max_feedrate_y": { "default_value": 300 }, - "machine_max_feedrate_z": { "default_value": 10 }, - "machine_acceleration": { "default_value": 1500 }, - "machine_max_acceleration_x": { "default_value": 1500 }, - "machine_max_acceleration_y": { "default_value": 1500 }, - "machine_max_acceleration_z": { "default_value": 100 }, - "machine_max_jerk_xy": { "default_value": 11.0 }, - "machine_max_jerk_z": { "default_value": 0.4 }, - "machine_max_jerk_e": { "default_value": 11.0 }, - - "jerk_enabled": { "value": "True" }, - "jerk_layer_0": { "value": "jerk_topbottom" }, - "jerk_prime_tower": { "value": "math.ceil(jerk_print * 15 / 25)" }, - "jerk_print": { "value": "11" }, - "jerk_support": { "value": "math.ceil(jerk_print * 15 / 25)" }, - "jerk_support_interface": { "value": "jerk_topbottom" }, - "jerk_topbottom": { "value": "math.ceil(jerk_print * 5 / 25)" }, - "jerk_wall": { "value": "math.ceil(jerk_print * 10 / 25)" }, - "jerk_wall_0": { "value": "math.ceil(jerk_wall * 5 / 10)" }, - - "gantry_height": { "value": "25.0" }, - "skin_overlap": { "value": "10" }, - - "acceleration_enabled": { "value": "True" }, + "acceleration_enabled": { "value": true }, "acceleration_layer_0": { "value": "acceleration_topbottom" }, "acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, "acceleration_print": { "value": "900" }, @@ -61,7 +27,41 @@ "acceleration_travel": { "value": "acceleration_print" }, "acceleration_wall": { "value": "math.ceil(acceleration_print * 1000 / 3000)" }, "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 1000 / 1000)" }, - + "adhesion_type": { "default_value": "skirt" }, + "gantry_height": { "value": "25.0" }, + "infill_before_walls": { "value": false }, + "infill_pattern": { "value": "'zigzag'" }, + "jerk_enabled": { "value": "True" }, + "jerk_layer_0": { "value": "jerk_topbottom" }, + "jerk_prime_tower": { "value": "math.ceil(jerk_print * 15 / 25)" }, + "jerk_print": { "value": "11" }, + "jerk_support": { "value": "math.ceil(jerk_print * 15 / 25)" }, + "jerk_support_interface": { "value": "jerk_topbottom" }, + "jerk_topbottom": { "value": "math.ceil(jerk_print * 5 / 25)" }, + "jerk_wall": { "value": "math.ceil(jerk_print * 10 / 25)" }, + "jerk_wall_0": { "value": "math.ceil(jerk_wall * 5 / 10)" }, + "machine_acceleration": { "default_value": 1500 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off bed\nM84 ; disable motors\nM107\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 F{speed_travel} ;move Z up a bit and retract filament even more\nG28 X0 ;Y0 ;move X/Y to min endstops, so the head is out of the way\nG1 Y180 F2000\nM84 ;steppers off\nG90\nM300 P300 S4000" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 300 }, + "machine_max_acceleration_x": { "default_value": 1500 }, + "machine_max_acceleration_y": { "default_value": 1500 }, + "machine_max_acceleration_z": { "default_value": 100 }, + "machine_max_feedrate_x": { "default_value": 300 }, + "machine_max_feedrate_y": { "default_value": 300 }, + "machine_max_feedrate_z": { "default_value": 10 }, + "machine_max_jerk_e": { "default_value": 11.0 }, + "machine_max_jerk_xy": { "default_value": 11.0 }, + "machine_max_jerk_z": { "default_value": 0.4 }, + "machine_name": { "default_value": "Anycubic 4Max" }, + "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 F{speed_travel} ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F{speed_travel}\nM117 Printing...\nG5" }, + "machine_width": { "default_value": 220 }, + "material_bed_temperature": { "maximum_value": "150" }, + "material_bed_temperature_layer_0": { "maximum_value": "150" }, + "skin_overlap": { "value": "10" }, "speed_layer_0": { "value": "20" }, "speed_print": { "value": "40" }, "speed_support": { "value": "speed_wall_0" }, @@ -70,17 +70,6 @@ "speed_travel": { "value": "60" }, "speed_wall": { "value": "math.ceil(speed_print * 30 / 35)" }, "speed_wall_0": { "value": "math.ceil(speed_wall * 20 / 30)" }, - "speed_wall_x": { "value": "speed_wall" }, - - "infill_pattern": {"value": "'zigzag'" }, - "infill_before_walls": {"value": false }, - - "adhesion_type": { "default_value": "skirt" }, - "material_bed_temperature": { "maximum_value": "150" }, - "material_bed_temperature_layer_0": { "maximum_value": "150" }, - - "machine_gcode_flavor":{"default_value": "RepRap (Marlin/Sprinter)"}, - "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 F{speed_travel} ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F{speed_travel}\nM117 Printing...\nG5"}, - "machine_end_gcode":{"default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off bed\nM84 ; disable motors\nM107\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 F{speed_travel} ;move Z up a bit and retract filament even more\nG28 X0 ;Y0 ;move X/Y to min endstops, so the head is out of the way\nG1 Y180 F2000\nM84 ;steppers off\nG90\nM300 P300 S4000"} + "speed_wall_x": { "value": "speed_wall" } } -} +} \ No newline at end of file diff --git a/resources/definitions/anycubic_chiron.def.json b/resources/definitions/anycubic_chiron.def.json index 7d6f53603f..56201c3dd2 100644 --- a/resources/definitions/anycubic_chiron.def.json +++ b/resources/definitions/anycubic_chiron.def.json @@ -9,70 +9,35 @@ "manufacturer": "Anycubic", "file_formats": "text/x-gcode", "platform": "anycubic_chiron_platform.obj", - "platform_texture": "anycubic-chiron.png", - "has_materials": true, - "preferred_material": "generic_pla", + "firmware_file": "MarlinChiron.hex", "has_machine_quality": true, - "quality_definition": "anycubic_chiron", + "has_materials": true, + "machine_extruder_trains": { "0": "anycubic_chiron_extruder_0" }, + "platform_texture": "anycubic-chiron.png", + "preferred_material": "generic_pla", "preferred_quality_type": "normal", - "machine_extruder_trains": - { - "0": "anycubic_chiron_extruder_0" - }, - "firmware_file": "MarlinChiron.hex" + "quality_definition": "anycubic_chiron" }, - "overrides": { - "machine_name": - { - "default_value": "Anycubic Chiron" - }, - "machine_heated_bed": - { - "default_value": true - }, - "machine_width": - { - "default_value": 400 - }, - "machine_height": - { - "default_value": 450 - }, - "machine_depth": - { - "default_value": 400 - }, - "machine_center_is_zero": - { - "default_value": false - }, - "gantry_height": - { - "value": "35" - }, + "gantry_height": { "value": "35" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 400 }, + "machine_end_gcode": { "default_value": "G91 ;Change to relative positioning mode for filament retraction and nozzle lifting\nG1 F200 E-4;Retract the filament a bit before lifting the nozzle\nG1 F1000 Z5;Lift nozzle 5mm\nG90 ;Change to absolute positioning mode to prepare for part rermoval\nG1 X0 Y400 ;Move the print to max y pos for part rermoval\nM104 S0 ; Turn off hotend\nM106 S0 ; Turn off cooling fan\nM140 S0 ; Turn off bed\nM84 ; Disable motors\n" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { - "default_value": - [ + "default_value": [ [-45, 50], [-45, -45], [45, 50], [45, -45] ] }, - "machine_gcode_flavor": - { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": - { - "default_value": "M107 ;Start with the fan off\nG21 ;Set units to millimeters\nG91 ;Change to relative positioning mode for retract filament and nozzle lifting\nG1 F200 E-3 ;Retract 3mm filament for a clean start\nG92 E0 ;Zero the extruded length\nG1 F1000 Z5 ;Lift the nozzle 5mm before homing axes\nG90 ;Absolute positioning\nM82 ;Set extruder to absolute mode too\nG28 X0 Y0 ;First move X/Y to min endstops\nG28 Z0 ;Then move Z to min endstops\nG1 F1000 Z15 ;After homing lift the nozzle 15mm before start printing\n" - }, - "machine_end_gcode": - { - "default_value": "G91 ;Change to relative positioning mode for filament retraction and nozzle lifting\nG1 F200 E-4;Retract the filament a bit before lifting the nozzle\nG1 F1000 Z5;Lift nozzle 5mm\nG90 ;Change to absolute positioning mode to prepare for part rermoval\nG1 X0 Y400 ;Move the print to max y pos for part rermoval\nM104 S0 ; Turn off hotend\nM106 S0 ; Turn off cooling fan\nM140 S0 ; Turn off bed\nM84 ; Disable motors\n" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 450 }, + "machine_name": { "default_value": "Anycubic Chiron" }, + "machine_start_gcode": { "default_value": "M107 ;Start with the fan off\nG21 ;Set units to millimeters\nG91 ;Change to relative positioning mode for retract filament and nozzle lifting\nG1 F200 E-3 ;Retract 3mm filament for a clean start\nG92 E0 ;Zero the extruded length\nG1 F1000 Z5 ;Lift the nozzle 5mm before homing axes\nG90 ;Absolute positioning\nM82 ;Set extruder to absolute mode too\nG28 X0 Y0 ;First move X/Y to min endstops\nG28 Z0 ;Then move Z to min endstops\nG1 F1000 Z15 ;After homing lift the nozzle 15mm before start printing\n" }, + "machine_width": { "default_value": 400 } } -} +} \ No newline at end of file diff --git a/resources/definitions/anycubic_i3_mega.def.json b/resources/definitions/anycubic_i3_mega.def.json index 17817b982c..e52cc5a3a9 100644 --- a/resources/definitions/anycubic_i3_mega.def.json +++ b/resources/definitions/anycubic_i3_mega.def.json @@ -9,56 +9,22 @@ "manufacturer": "Anycubic", "file_formats": "text/x-gcode", "platform": "anycubic_i3_mega_platform.3mf", - "has_materials": true, "has_machine_quality": true, - "preferred_quality_type": "normal", - "machine_extruder_trains": - { - "0": "anycubic_i3_mega_extruder_0" - } + "has_materials": true, + "machine_extruder_trains": { "0": "anycubic_i3_mega_extruder_0" }, + "preferred_quality_type": "normal" }, - "overrides": { - "machine_name": - { - "default_value": "Anycubic i3 Mega" - }, - "machine_heated_bed": - { - "default_value": true - }, - "machine_width": - { - "default_value": 210 - }, - "machine_height": - { - "default_value": 205 - }, - "machine_depth": - { - "default_value": 210 - }, - "machine_center_is_zero": - { - "default_value": false - }, - "gantry_height": - { - "value": "0" - }, - "machine_gcode_flavor": - { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "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 F{speed_travel} ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F{speed_travel}\nG0 Y20 F{speed_travel}\nM117 Printing...\nG5" - }, - "machine_end_gcode": - { - "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off bed\nM84 ; disable motors\nM107\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 F{speed_travel} ;move Z up a bit and retract filament even more\nG28 X0 ;Y0 ;move X/Y to min endstops, so the head is out of the way\nG1 Y180 F2000\nM84 ;steppers off\nG90\nM300 P300 S4000" - } + "gantry_height": { "value": "0" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 210 }, + "machine_end_gcode": { "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off bed\nM84 ; disable motors\nM107\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 F{speed_travel} ;move Z up a bit and retract filament even more\nG28 X0 ;Y0 ;move X/Y to min endstops, so the head is out of the way\nG1 Y180 F2000\nM84 ;steppers off\nG90\nM300 P300 S4000" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 205 }, + "machine_name": { "default_value": "Anycubic i3 Mega" }, + "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 F{speed_travel} ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F{speed_travel}\nG0 Y20 F{speed_travel}\nM117 Printing...\nG5" }, + "machine_width": { "default_value": 210 } } -} +} \ No newline at end of file diff --git a/resources/definitions/anycubic_i3_mega_s.def.json b/resources/definitions/anycubic_i3_mega_s.def.json index bf14aed04c..60b5bf652c 100644 --- a/resources/definitions/anycubic_i3_mega_s.def.json +++ b/resources/definitions/anycubic_i3_mega_s.def.json @@ -9,136 +9,121 @@ "manufacturer": "Anycubic", "file_formats": "text/x-gcode", "platform": "anycubic_i3_mega_s_platform.3mf", + "has_machine_quality": true, "has_materials": true, "has_variants": false, - "has_machine_quality": true, - "preferred_quality_type": "normal", - "machine_extruder_trains": - { - "0": "anycubic_i3_mega_s_extruder_0" - } + "machine_extruder_trains": { "0": "anycubic_i3_mega_s_extruder_0" }, + "preferred_quality_type": "normal" }, - "overrides": { - "machine_name": { "default_value": "Anycubic i3 Mega S/Pro" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 210 }, - "machine_height": { "default_value": 205 }, - "machine_depth": { "default_value": 210 }, - "machine_center_is_zero": { "default_value": false }, - "gantry_height": { "value": "0" }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { "default_value": ";Profil Homepage: https://github.com/NilsRo/Cura_Anycubic_MegaS_Profile\n\n;Slicer Information - (Support for OctoPrint Slicer Estimator)\n;Slicer info:material_guid;{material_guid}\n;Slicer info:material_id;{material_id}\n;Slicer info:material_brand;{material_brand}\n;Slicer info:material_name;{material_name}\n;Slicer info:material_bed_temperature;{material_bed_temperature}\n;Slicer info:material_bed_temperature_layer_0;{material_bed_temperature_layer_0}\n;Slicer info:material_print_temperature;{material_print_temperature}\n;Slicer info:material_print_temperature_layer_0;{material_print_temperature_layer_0}\n;Slicer info:material_flow;{material_flow}\n;Slicer info:layer_height;{layer_height}\n;Slicer info:wall_thickness;{wall_thickness}\n;Slicer info:speed_print;{speed_print}\n;Slicer info:speed_topbottom;{speed_topbottom}\n;Slicer info:travel_speed;{travel_speed}\n;Slicer info:support;{support}\n;Slicer info:retraction_speed;{retraction_speed}\n;Slicer info:retraction_amount;{retraction_amount}\n;Slicer info:layer_height;{layer_height}\n;Slicer info:infill_pattern;{infill_pattern}\n;Slicer info:infill_sparse_density;{infill_sparse_density}\n;Slicer info:cool_fan_enabled;{cool_fan_enabled}\n;Slicer info:cool_fan_speed;{cool_fan_speed}\n;Slicer info:sliced_at;{day} {date} {time}\nG21 ; metric values \nG90 ; absolute positioning \nM82 ; set extruder to absolute mode \nM107 ; start with the fan off \nM140 S{material_bed_temperature_layer_0} ; Start heating the bed \nG4 S60 ; wait 1 minute \nM104 S{material_print_temperature_layer_0} ; start heating the hot end \nM190 S{material_bed_temperature_layer_0} ; wait for bed \nM109 S{material_print_temperature_layer_0} ; wait for hotend \nM300 S1000 P500 ; BEEP heating done \nG28 X0 Y10 Z0 ; move X/Y to min endstops \nM420 S1 ; Enable leveling \nM420 Z2.0 ; Set leveling fading height to 2 mm \nG0 Z0.15 ; lift nozzle a bit \nG92 E0 ; zero the extruded length \nG1 X50 E20 F500 ; Extrude 20mm of filament in a 5cm line. \nG92 E0 ; zero the extruded length again \nG1 E-2 F500 ; Retract a little \nG1 X120 F4000 ; Quickly wipe away from the filament line`" }, - "machine_end_gcode": { "default_value": "M104 S0 ; Extruder off \nM140 S0 ; Heatbed off \nM107 ; Fan off \nG91 ; relative positioning \nG1 E-5 F300 ; retract a little \nG1 Z+10 E-5 ; X-20 Y-20 F{travel_xy_speed} ; lift print head \nG28 X0 Y0 ; homing \nG1 Y180 F2000 ; reset feedrate \nM84 ; disable stepper motors \nG90 ; absolute positioning \nM300 S440 P200 ; Make Print Completed Tones \nM300 S660 P250 ; beep \nM300 S880 P300 ; beep" }, - - "machine_max_acceleration_x": { "value": 3000 }, - "machine_max_acceleration_y": { "value": 2000 }, - "machine_max_acceleration_z": { "value": 60 }, - "machine_max_acceleration_e": { "value": 10000 }, - "machine_acceleration": { "value": 3000 }, - - "machine_max_feedrate_x": { "default_value": 500 }, - "machine_max_feedrate_y": { "default_value": 500 }, - "machine_max_feedrate_z": { "default_value": 8 }, - - "machine_max_jerk_xy": { "value": 10 }, - "machine_max_jerk_z": { "value": 0.4 }, - "machine_max_jerk_e": { "value": 5 }, - - "material_diameter": { "default_value": 1.75 }, - "material_print_temperature_layer_0": { "value": "material_print_temperature + 5"}, - "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_flow": { "value": 100 }, - - "acceleration_print": { "value": 1500 }, "acceleration_enabled": { "value": false }, + "acceleration_print": { "value": 1500 }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, "acceleration_travel": { "value": 3000 }, "acceleration_travel_layer_0": { "value": "acceleration_travel" }, - "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, - + "adhesion_type": { "value": "'none' if support_enable else 'skirt'" }, + "brim_replaces_support": { "value": false }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_fan_speed": { "value": 100 }, + "cool_fan_speed_0": { "value": 30 }, + "cool_min_layer_time": { "value": 10 }, + "gantry_height": { "value": "0" }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 15.0 }, + "infill_sparse_density": { "value": 25 }, + "jerk_enabled": { "value": true }, "jerk_print": { "value": 8 }, "jerk_travel": { "value": 10 }, "jerk_travel_layer_0": { "value": "jerk_travel" }, - "jerk_enabled": { "value": true }, - - "speed_print": { "value": 50.0 } , - "speed_infill": { "value": "speed_print" }, - "speed_wall": { "value": "speed_print / 2" }, - "speed_wall_0": { "value": "speed_wall" }, - "speed_wall_x": { "value": "speed_wall" }, - "speed_topbottom": { "value": "speed_print / 2" }, - "speed_roofing": { "value": "speed_topbottom" }, - "speed_travel": { "value": 100.0, "maximum_value_warning": 150.0, "maximum_value": 200.0 }, - "speed_layer_0": { "value": "speed_topbottom if speed_topbottom < 20 else 20" }, - "speed_print_layer_0": { "value": "speed_topbottom if speed_topbottom < 20 else 20" }, - "speed_travel_layer_0": { "value": 100.0 }, - "speed_prime_tower": { "value": "speed_topbottom" }, - "speed_support": { "value": "speed_wall_0" }, - "speed_support_interface": { "value": "speed_topbottom" }, - "speed_z_hop": { "value": 8 }, - - "skirt_brim_speed": { "value": "speed_layer_0" }, - + "machine_acceleration": { "value": 3000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 210 }, + "machine_end_gcode": { "default_value": "M104 S0 ; Extruder off \nM140 S0 ; Heatbed off \nM107 ; Fan off \nG91 ; relative positioning \nG1 E-5 F300 ; retract a little \nG1 Z+10 E-5 ; X-20 Y-20 F{travel_xy_speed} ; lift print head \nG28 X0 Y0 ; homing \nG1 Y180 F2000 ; reset feedrate \nM84 ; disable stepper motors \nG90 ; absolute positioning \nM300 S440 P200 ; Make Print Completed Tones \nM300 S660 P250 ; beep \nM300 S880 P300 ; beep" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 205 }, + "machine_max_acceleration_e": { "value": 10000 }, + "machine_max_acceleration_x": { "value": 3000 }, + "machine_max_acceleration_y": { "value": 2000 }, + "machine_max_acceleration_z": { "value": 60 }, + "machine_max_feedrate_x": { "default_value": 500 }, + "machine_max_feedrate_y": { "default_value": 500 }, + "machine_max_feedrate_z": { "default_value": 8 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_name": { "default_value": "Anycubic i3 Mega S/Pro" }, + "machine_start_gcode": { "default_value": ";Profil Homepage: https://github.com/NilsRo/Cura_Anycubic_MegaS_Profile\n\n;Slicer Information - (Support for OctoPrint Slicer Estimator)\n;Slicer info:material_guid;{material_guid}\n;Slicer info:material_id;{material_id}\n;Slicer info:material_brand;{material_brand}\n;Slicer info:material_name;{material_name}\n;Slicer info:filament_cost;{filament_cost}\n;Slicer info:material_bed_temperature;{material_bed_temperature}\n;Slicer info:material_bed_temperature_layer_0;{material_bed_temperature_layer_0}\n;Slicer info:material_print_temperature;{material_print_temperature}\n;Slicer info:material_print_temperature_layer_0;{material_print_temperature_layer_0}\n;Slicer info:material_flow;{material_flow}\n;Slicer info:layer_height;{layer_height}\n;Slicer info:machine_nozzle_size;{machine_nozzle_size}\n;Slicer info:wall_thickness;{wall_thickness}\n;Slicer info:speed_print;{speed_print}\n;Slicer info:speed_topbottom;{speed_topbottom}\n;Slicer info:travel_speed;{travel_speed}\n;Slicer info:support;{support}\n;Slicer info:retraction_speed;{retraction_speed}\n;Slicer info:retraction_amount;{retraction_amount}\n;Slicer info:layer_height;{layer_height}\n;Slicer info:infill_pattern;{infill_pattern}\n;Slicer info:infill_sparse_density;{infill_sparse_density}\n;Slicer info:cool_fan_enabled;{cool_fan_enabled}\n;Slicer info:cool_fan_speed;{cool_fan_speed}\n;Slicer info:sliced_at;{day} {date} {time}\nG21 ; metric values \nG90 ; absolute positioning \nM82 ; set extruder to absolute mode \nM900 K0 ; disable lin. adv. if not set in GCODE\nM107 ; start with the fan off \nM140 S{material_bed_temperature_layer_0} ; Start heating the bed \nG4 S60 ; wait 1 minute \nM104 S{material_print_temperature_layer_0} ; start heating the hot end \nM190 S{material_bed_temperature_layer_0} ; wait for bed \nM109 S{material_print_temperature_layer_0} ; wait for hotend \nM300 S1000 P500 ; BEEP heating done \nG28 X0 Y10 Z0 ; move X/Y to min endstops \nM420 S1 ; Enable leveling \nM420 Z2.0 ; Set leveling fading height to 2 mm \nG0 Z0.15 ; lift nozzle a bit \nG92 E0 ; zero the extruded length \nG1 X50 E20 F500 ; Extrude 20mm of filament in a 5cm line. \nG92 E0 ; zero the extruded length again \nG1 E-2 F500 ; Retract a little \nG1 X50 F500 ; wipe away from the filament line\nG1 X100 F9000 ; Quickly wipe away from the filament line" }, + "machine_width": { "default_value": 210 }, + "material_bed_temperature": { "maximum_value_warning": 110 }, + "material_bed_temperature_layer_0": { "maximum_value_warning": 110 }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_print_temperature": { "maximum_value_warning": 260 }, + "material_print_temperature_layer_0": + { + "maximum_value_warning": 260, + "value": "material_print_temperature + 5" + }, + "meshfix_maximum_deviation": { "value": 0.05 }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, "optimize_wall_printing_order": { "value": "True" }, - - "infill_sparse_density": { "value": 25 }, - "infill_before_walls": { "value": false }, - "infill_overlap": { "value": 15.0 }, - - "retraction_speed": { "value": 30, "maximum_value_warning": 60 }, - "retraction_retract_speed": { "maximum_value_warning": 60 }, - "retraction_prime_speed": { "maximum_value_warning": 60 }, - - "retraction_hop_enabled": { "value": true }, - "retraction_hop": { "value": 0.075 }, - "retraction_hop_only_when_collides": { "value": true }, "retraction_amount": { "value": 6 }, - "retraction_enable": { "value": true }, - "retraction_min_travel": { "value": 1.5 }, "retraction_combing": { "value": "'off'" }, "retraction_combing_max_distance": { "value": 30 }, - + "retraction_hop": { "value": 0.075 }, + "retraction_hop_enabled": { "value": true }, + "retraction_hop_only_when_collides": { "value": true }, + "retraction_min_travel": { "value": 1.5 }, + "retraction_prime_speed": { "maximum_value_warning": 60 }, + "retraction_retract_speed": { "maximum_value_warning": 60 }, + "retraction_speed": + { + "maximum_value_warning": 60, + "value": 30 + }, + "skirt_brim_speed": { "value": "speed_layer_0" }, + "skirt_gap": { "value": 5.0 }, + "skirt_line_count": { "value": 2 }, + "speed_layer_0": { "value": "speed_topbottom if speed_topbottom < 20 else 20" }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": 50.0 }, + "speed_roofing": { "value": "speed_topbottom" }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_travel": + { + "maximum_value": 200.0, + "maximum_value_warning": 150.0, + "value": 100.0 + }, + "speed_travel_layer_0": { "value": "speed_travel" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 8 }, + "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width / 2.0 / layer_height)))" }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 4 }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_interface_skip_height": { "value": 0.2 }, + "support_pattern": { "value": "'zigzag'" }, + "support_structure": { "value": "'tree'" }, + "support_top_distance": { "value": "extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (layer_height if support_structure == 'tree' else 0)" }, + "support_type": { "value": "'buildplate' if support_structure == 'tree' else 'everywhere'" }, + "support_wall_count": { "value": 1 }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * math.floor(1.2 / layer_height)" }, "travel_avoid_other_parts": { "value": true }, "travel_avoid_supports": { "value": true }, "travel_retract_before_outer_wall": { "value": true }, - - "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, - "cool_fan_speed": { "value": 70 }, - "cool_fan_speed_0": { "value": 30 }, - - "cool_fan_enabled": { "value": true }, - "cool_min_layer_time": { "value": 10 }, - - "adhesion_type": { "value": "'none' if support_enable else 'skirt'" }, - "brim_replaces_support": { "value": false }, - "skirt_gap": { "value": 5.0 }, - "skirt_line_count": { "value": 2 }, - - "meshfix_maximum_deviation": { "value": 0.05 }, - "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width / 2.0 / layer_height)))" }, - "support_pattern": { "value": "'zigzag'" }, - "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, - "support_use_towers": { "value": false }, - "support_xy_distance": { "value": "wall_line_width_0 * 2" }, - "support_xy_distance_overhang": { "value": "wall_line_width_0" }, - "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" }, - "support_top_distance": { "value": "extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (layer_height if support_structure == 'tree' else 0)"}, - "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, - "support_wall_count": { "value": 1 }, - "support_brim_enable": { "value": true }, - "support_brim_width": { "value": 4 }, - - "support_interface_enable": { "value": true }, - "support_structure": { "value": "'tree'" }, - "support_type": { "value": "'buildplate' if support_structure == 'tree' else 'everywhere'" }, - "support_interface_height": { "value": "layer_height * 4" }, - "support_interface_density": { "value": 33.333 }, - "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, - "minimum_support_area": { "value": 2 }, - "minimum_interface_area": { "value": 10 }, - "top_bottom_thickness": { "value": "layer_height_0 + layer_height * math.floor(1.2 / layer_height)" }, - "wall_thickness": { "value": "line_width * 3" } + "wall_thickness": { "value": "line_width * 3 if line_width < 0.6 else line_width * 2" } } -} +} \ No newline at end of file diff --git a/resources/definitions/anycubic_i3_mega_x.def.json b/resources/definitions/anycubic_i3_mega_x.def.json index 52ce84bd33..d7c4e107d2 100644 --- a/resources/definitions/anycubic_i3_mega_x.def.json +++ b/resources/definitions/anycubic_i3_mega_x.def.json @@ -4,33 +4,36 @@ "inherits": "anycubic_i3_mega_s", "metadata": { - "quality_definition": "anycubic_i3_mega_s", - "platform": "anycubic_i3_mega_x_platform.stl" + "platform": "anycubic_i3_mega_x_platform.stl", + "quality_definition": "anycubic_i3_mega_s" }, "overrides": { - "machine_name": { "default_value": "Anycubic i3 Mega X" }, - "machine_width": { "default_value": 300 }, - "machine_height": { "default_value": 305 }, + "acceleration_print": { "value": 400 }, + "acceleration_travel": { "value": 400 }, + "machine_acceleration": { "value": 3000 }, "machine_depth": { "default_value": 300 }, - + "machine_height": { "default_value": 305 }, + "machine_max_acceleration_e": { "value": 10000 }, "machine_max_acceleration_x": { "value": 400 }, "machine_max_acceleration_y": { "value": 400 }, "machine_max_acceleration_z": { "value": 60 }, - "machine_max_acceleration_e": { "value": 10000 }, - "machine_acceleration": { "value": 3000 }, - "machine_max_feedrate_x": { "default_value": 120 }, "machine_max_feedrate_y": { "default_value": 120 }, "machine_max_feedrate_z": { "default_value": 20 }, - - "speed_travel": { "value": 100.0, "maximum_value": 120.0 }, - - "acceleration_print": { "value": 400 }, - "acceleration_travel": { "value": 400 }, - - "retraction_speed": { "value": 30, "maximum_value_warning": 60 }, + "machine_name": { "default_value": "Anycubic i3 Mega X" }, + "machine_width": { "default_value": 300 }, + "retraction_prime_speed": { "maximum_value_warning": 60 }, "retraction_retract_speed": { "maximum_value_warning": 60 }, - "retraction_prime_speed": { "maximum_value_warning": 60 } + "retraction_speed": + { + "maximum_value_warning": 60, + "value": 30 + }, + "speed_travel": + { + "maximum_value": 120.0, + "value": 100.0 + } } } \ No newline at end of file diff --git a/resources/definitions/anycubic_kobra.def.json b/resources/definitions/anycubic_kobra.def.json new file mode 100644 index 0000000000..695740d5da --- /dev/null +++ b/resources/definitions/anycubic_kobra.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "Anycubic Kobra", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Jason Chen", + "manufacturer": "Anycubic", + "file_formats": "text/x-gcode", + "firmware_file": "MarlinChiron.hex", + "has_machine_quality": true, + "has_materials": true, + "machine_extruder_trains": { "0": "anycubic_kobra_extruder_0" }, + "preferred_material": "generic_pla", + "preferred_quality_type": "pla", + "quality_definition": "anycubic_kobra" + }, + "overrides": + { + "machine_depth": { "default_value": 222 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 252 }, + "machine_name": { "default_value": "Anycubic Kobra" }, + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F1200 ;Move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" }, + "machine_width": { "default_value": 222 } + } +} \ No newline at end of file diff --git a/resources/definitions/anycubic_kobra_go.def.json b/resources/definitions/anycubic_kobra_go.def.json new file mode 100644 index 0000000000..8c546bdbb7 --- /dev/null +++ b/resources/definitions/anycubic_kobra_go.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "Anycubic Kobra Go", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Kolja Lampe", + "manufacturer": "Anycubic", + "file_formats": "text/x-gcode", + "firmware_file": "MarlinChiron.hex", + "has_machine_quality": true, + "has_materials": true, + "machine_extruder_trains": { "0": "anycubic_kobra_go_extruder_0" }, + "preferred_material": "generic_pla", + "preferred_quality_type": "pla", + "quality_definition": "anycubic_kobra_go" + }, + "overrides": + { + "machine_depth": { "default_value": 222 }, + "machine_end_gcode": { "default_value": "M400 ; Wait for current moves to finish\nM220 S100 ; Reset Speed factor override percentage to default (100%)\nM221 S100 ; Reset Extrude factor override percentage to default (100%)\nG91 ; Set coordinates to relative\nG1 F2400 E-1 ; Retract filament 3mm at 40mm/s to prevent stringing\nG0 F5000 Z20 ; Move Z Axis up 20mm to allow filament ooze freely\nG90 ; Set coordinates to absolute\nG0 X0 Y220 F5000 ; Move Heat Bed to the front for easy print removal\nM104 S0 ; turn off extruder\nM140 S0 ; turn off bed\nM84 ; Disable stepper motors\n; End of custom end GCode" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "Anycubic Kobra Go" }, + "machine_start_gcode": { "default_value": "M140 S[first_layer_bed_temperature]; Heat bed\nM104 S[first_layer_temperature\n ]; Heat extruder\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nG28 ; Home all axes\nG92 E0 ; Reset Extruder\nM420 S1 ; Enable Bed Levelling Mesh\nM190 S[first_layer_bed_temperature\n ]; Wait for bed to get up to temperature\nM109 S[first_layer_temperature\n ]; Wait for extruder to get up to temperature\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X2 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X2 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X2.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X2.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 F2400 E-1\nG1 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish" }, + "machine_width": { "default_value": 222 } + } +} \ No newline at end of file diff --git a/resources/definitions/anycubic_kobra_max.def.json b/resources/definitions/anycubic_kobra_max.def.json new file mode 100644 index 0000000000..d1c344ebca --- /dev/null +++ b/resources/definitions/anycubic_kobra_max.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "Anycubic Kobra Max", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Jason Chen", + "manufacturer": "Anycubic", + "file_formats": "text/x-gcode", + "firmware_file": "MarlinChiron.hex", + "has_machine_quality": true, + "has_materials": true, + "machine_extruder_trains": { "0": "anycubic_kobra_max_extruder_0" }, + "preferred_material": "generic_pla", + "preferred_quality_type": "pla", + "quality_definition": "anycubic_kobra_max" + }, + "overrides": + { + "machine_depth": { "default_value": 402 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 452 }, + "machine_name": { "default_value": "Anycubic Kobra Max" }, + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F1200 ;Move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" }, + "machine_width": { "default_value": 402 } + } +} \ No newline at end of file diff --git a/resources/definitions/anycubic_kossel.def.json b/resources/definitions/anycubic_kossel.def.json index 33eb6ccaa1..28d6ac141d 100644 --- a/resources/definitions/anycubic_kossel.def.json +++ b/resources/definitions/anycubic_kossel.def.json @@ -1,65 +1,76 @@ { - "name": "Anycubic Kossel", "version": 2, + "name": "Anycubic Kossel", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": false, "author": "Allester Fox", "manufacturer": "Anycubic", "file_formats": "text/x-gcode", - "preferred_variant_name": "0.4mm Nozzle", - "preferred_quality_type": "standard", - "preferred_material": "generic_pla", "platform": "kossel_platform.3mf", - "machine_extruder_trains": { - "0": "anycubic_kossel_extruder_0" - } + "machine_extruder_trains": { "0": "anycubic_kossel_extruder_0" }, + "preferred_material": "generic_pla", + "preferred_quality_type": "standard", + "preferred_variant_name": "0.4mm Nozzle" }, - "overrides": { - "machine_heated_bed": { - "default_value": true - }, - "machine_width": { - "default_value": 180 - }, - "machine_height": { - "default_value": 300 - }, - "machine_depth": { - "default_value": 180 - }, - "machine_center_is_zero": { - "default_value": true - }, - "machine_nozzle_heat_up_speed": { - "default_value": 2 - }, - "machine_nozzle_cool_down_speed": { - "default_value": 2 - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM107 ;start with the fan off\nG28 ;move to endstops\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F{speed_travel}\n;Put printing message on LCD screen\nM117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M400 ;Free buffer\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 F{speed_travel} Z+1 E-5 ;move Z up a bit and retract filament even more\nG90 ;absolute positioning\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off\nM107 ;fan off\nM84 ;steppers off\nG28 ;move to endstop\nM84 ;steppers off" - }, - "machine_shape": { - "default_value": "elliptic" - }, - "machine_disallowed_areas": { + "overrides": + { + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 180 }, + "machine_disallowed_areas": + { "default_value": [ - [[-50, -85], [-85, -85], [-90, -90]], - [[-85, -85], [-85, -50], [-90, -90]], - [[50, -85], [85, -85], [90, -90]], - [[85, -85], [85, -50], [90, -90]], - [[-50, 85], [-85, 85], [-90, 90]], - [[-85, 85], [-85, 50], [-90, 90]], - [[50, 85], [85, 85], [90, 90]], - [[85, 85], [85, 50], [90, 90]] + [ + [-50, -85], + [-85, -85], + [-90, -90] + ], + [ + [-85, -85], + [-85, -50], + [-90, -90] + ], + [ + [50, -85], + [85, -85], + [90, -90] + ], + [ + [85, -85], + [85, -50], + [90, -90] + ], + [ + [-50, 85], + [-85, 85], + [-90, 90] + ], + [ + [-85, 85], + [-85, 50], + [-90, 90] + ], + [ + [50, 85], + [85, 85], + [90, 90] + ], + [ + [85, 85], + [85, 50], + [90, 90] + ] ] - } + }, + "machine_end_gcode": { "default_value": "M400 ;Free buffer\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 F{speed_travel} Z+1 E-5 ;move Z up a bit and retract filament even more\nG90 ;absolute positioning\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off\nM107 ;fan off\nM84 ;steppers off\nG28 ;move to endstop\nM84 ;steppers off" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 300 }, + "machine_nozzle_cool_down_speed": { "default_value": 2 }, + "machine_nozzle_heat_up_speed": { "default_value": 2 }, + "machine_shape": { "default_value": "elliptic" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM107 ;start with the fan off\nG28 ;move to endstops\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F{speed_travel}\n;Put printing message on LCD screen\nM117 Printing..." }, + "machine_width": { "default_value": 180 } } -} +} \ No newline at end of file diff --git a/resources/definitions/anycubic_kossel_linear_plus.def.json b/resources/definitions/anycubic_kossel_linear_plus.def.json index 9683cf61cf..8f8080d58f 100644 --- a/resources/definitions/anycubic_kossel_linear_plus.def.json +++ b/resources/definitions/anycubic_kossel_linear_plus.def.json @@ -1,36 +1,67 @@ { - "name": "Anycubic Kossel Linear Plus", "version": 2, + "name": "Anycubic Kossel Linear Plus", "inherits": "anycubic_kossel", - "metadata": { + "metadata": + { "visible": true, "platform": "kossel_pro_build_platform.3mf", - "platform_offset": [0, -0.25, 0], - "machine_extruder_trains": { - "0": "anycubic_kossel_extruder_0" - } + "machine_extruder_trains": { "0": "anycubic_kossel_extruder_0" }, + "platform_offset": [ + 0, + -0.25, + 0 + ] }, - "overrides": { - "machine_name": { - "default_value": "Anycubic Kossel Linear Plus" - }, - "machine_width": { - "default_value": 240 - }, - "machine_depth": { - "default_value": 240 - }, - "machine_disallowed_areas": { + "overrides": + { + "machine_depth": { "default_value": 240 }, + "machine_disallowed_areas": + { "default_value": [ - [[-50, -115], [-115, -115], [-90, -90]], - [[-115, -115], [-115, -50], [-90, -90]], - [[50, -115], [115, -115], [90, -90]], - [[115, -115], [115, -50], [90, -90]], - [[-50, 115], [-115, 115], [-90, 90]], - [[-115, 115], [-115, 50], [-90, 90]], - [[50, 115], [115, 115], [90, 90]], - [[115, 115], [115, 50], [90, 90]] + [ + [-50, -115], + [-115, -115], + [-90, -90] + ], + [ + [-115, -115], + [-115, -50], + [-90, -90] + ], + [ + [50, -115], + [115, -115], + [90, -90] + ], + [ + [115, -115], + [115, -50], + [90, -90] + ], + [ + [-50, 115], + [-115, 115], + [-90, 90] + ], + [ + [-115, 115], + [-115, 50], + [-90, 90] + ], + [ + [50, 115], + [115, 115], + [90, 90] + ], + [ + [115, 115], + [115, 50], + [90, 90] + ] ] - } + }, + "machine_name": { "default_value": "Anycubic Kossel Linear Plus" }, + "machine_width": { "default_value": 240 } } -} +} \ No newline at end of file diff --git a/resources/definitions/anycubic_kossel_pulley.def.json b/resources/definitions/anycubic_kossel_pulley.def.json index fd9e1ee4ef..d9d32d965f 100644 --- a/resources/definitions/anycubic_kossel_pulley.def.json +++ b/resources/definitions/anycubic_kossel_pulley.def.json @@ -1,16 +1,14 @@ { - "name": "Anycubic Kossel Pulley", "version": 2, + "name": "Anycubic Kossel Pulley", "inherits": "anycubic_kossel", - "metadata": { + "metadata": + { "visible": true, - "machine_extruder_trains": { - "0": "anycubic_kossel_extruder_0" - } + "machine_extruder_trains": { "0": "anycubic_kossel_extruder_0" } }, - "overrides": { - "machine_name": { - "default_value": "Anycubic Kossel Pulley" - } + "overrides": + { + "machine_name": { "default_value": "Anycubic Kossel Pulley" } } -} +} \ No newline at end of file diff --git a/resources/definitions/anycubic_mega_zero.def.json b/resources/definitions/anycubic_mega_zero.def.json index 5f71d243ab..177f659652 100644 --- a/resources/definitions/anycubic_mega_zero.def.json +++ b/resources/definitions/anycubic_mega_zero.def.json @@ -9,108 +9,65 @@ "manufacturer": "Anycubic", "file_formats": "text/x-gcode", "platform": "anycubic_mega_zero_platform.stl", - "has_materials": true, "has_machine_quality": true, - "preferred_quality_type": "normal", + "has_materials": true, + "machine_extruder_trains": { "0": "anycubic_mega_zero_extruder_0" }, "preferred_material": "generic_pla", - "machine_extruder_trains": - { - "0": "anycubic_mega_zero_extruder_0" - } + "preferred_quality_type": "normal" }, - "overrides": { - "machine_name": - { - "default_value": "Anycubic Mega Zero" - }, - "machine_heated_bed": - { - "default_value": false - }, - "machine_width": - { - "default_value": 220 - }, - "machine_depth": - { - "default_value": 220 - }, - "machine_height": - { - "default_value": 250 - }, - "machine_center_is_zero": - { - "default_value": false - }, - "gantry_height": - { - "value": 25 - }, - "machine_gcode_flavor": - { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": - { - "default_value": ";Sliced at: {day} {date} {time}\n;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {infill_sparse_density}\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nM117 Start heating ...\nM104 S{material_print_temperature_layer_0}\nM117 Homing X/Y ...\nG28 X0 Y0 ;move X/Y to min endstops\nM117 Homing Z ...\nG28 Z0 ;move Z to min endstops\nG1 Z15.0 F{speed_travel} ;move the platform down 15mm\nM117 Heating ...\nM109 S{material_print_temperature_layer_0}\nM117 Start cleaning ...\nG92 E0 ;zero the extruded length\nG1 F200 E10 ;extrude 10mm of feed stock\nG92 E0 ;zero the extruded length again\nM117 Intro line ...\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z{layer_height} F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z{layer_height} F1500.0 E15 ; Draw the first line\nG1 X0.4 Y200.0 Z{layer_height} F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 E-1 F500 ; Retract filiment by 1 mm\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.3 F{speed_travel} ; Move over to prevent blob squish\nG1 F{speed_travel}\nG92 E0 ; Reset Extruder\nM117 Printing...\n" - }, - "machine_end_gcode": - { - "default_value": "M117 Cooling down...\nM104 S0 ; turn off extruder\nM84 ; disable motors\nM107 ; Fan off\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 F{speed_travel} ;move Z up a bit and retract filament even more\nG28 X0 ;move X to min endstops, so the head is out of the way\nG90 ;Absolute positioning\nG1 Y200 F3000 ;Present print\nM84 ;steppers off\nM300 P300 S4000\nM117 Finished.\n" - }, - "machine_max_feedrate_x": { "value": 500 }, - "machine_max_feedrate_y": { "value": 500 }, - "machine_max_feedrate_z": { "value": 5 }, - "machine_max_feedrate_e": { "value": 30 }, - - "machine_max_acceleration_x": { "value": 500 }, - "machine_max_acceleration_y": { "value": 500 }, - "machine_max_acceleration_z": { "value": 100 }, - "machine_max_acceleration_e": { "value": 5000 }, - "machine_acceleration": { "value": 500 }, + "acceleration_enabled": { "value": false }, "acceleration_print": { "value": 500 }, "acceleration_travel": { "value": 500 }, - "acceleration_enabled": { "value": false }, - - "machine_max_jerk_xy": { "value": 10 }, - "machine_max_jerk_z": { "value": 0.4 }, - "machine_max_jerk_e": { "value": 5 }, + "adhesion_type": { "value": "'skirt'" }, + "cool_fan_full_at_height": { "value": "layer_height_0" }, + "gantry_height": { "value": 25 }, + "jerk_enabled": { "value": false }, "jerk_print": { "value": 10 }, "jerk_travel": { "value": "jerk_print" }, "jerk_travel_layer_0": { "value": "jerk_travel" }, - "jerk_enabled": { "value": false }, - - "speed_print": { "value": 50.0 }, - "speed_z_hop": { "value": "machine_max_feedrate_z" }, - - "optimize_wall_printing_order": { "value": "True" }, - "material_initial_print_temperature": { "value": "material_print_temperature" }, + "machine_acceleration": { "value": 500 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "M117 Cooling down...\nM104 S0 ; turn off extruder\nM84 ; disable motors\nM107 ; Fan off\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 F{speed_travel} ;move Z up a bit and retract filament even more\nG28 X0 ;move X to min endstops, so the head is out of the way\nG90 ;Absolute positioning\nG1 Y200 F3000 ;Present print\nM84 ;steppers off\nM300 P300 S4000\nM117 Finished.\n" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 250 }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_feedrate_e": { "value": 30 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 5 }, + "machine_max_jerk_e": { "value": 15 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.3 }, + "machine_name": { "default_value": "Anycubic Mega Zero" }, + "machine_start_gcode": { "default_value": ";Sliced at: {day} {date} {time}\n;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {infill_sparse_density}\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nM117 Start heating ...\nM104 S{material_print_temperature_layer_0}\nM117 Homing X/Y ...\nG28 X0 Y0 ;move X/Y to min endstops\nM117 Homing Z ...\nG28 Z0 ;move Z to min endstops\nG1 Z15.0 F{speed_travel} ;move the platform down 15mm\nM117 Heating ...\nM109 S{material_print_temperature_layer_0}\nM117 Start cleaning ...\nG92 E0 ;zero the extruded length\nG1 F200 E10 ;extrude 10mm of feed stock\nG92 E0 ;zero the extruded length again\nM117 Intro line ...\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z{layer_height} F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z{layer_height} F1500.0 E15 ; Draw the first line\nG1 X0.4 Y200.0 Z{layer_height} F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 E-1 F500 ; Retract filiment by 1 mm\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.3 F{speed_travel} ; Move over to prevent blob squish\nG1 F{speed_travel}\nG92 E0 ; Reset Extruder\nM117 Printing...\n" }, + "machine_width": { "default_value": 220 }, "material_final_print_temperature": { "value": "material_print_temperature" }, - - "retraction_hop_enabled": { "value": "True" }, - "retraction_hop": { "value": 0.2 }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "optimize_wall_printing_order": { "value": "True" }, + "retraction_amount": { "value": 7 }, "retraction_combing": { "value": "'noskin'" }, "retraction_combing_max_distance": { "value": 30 }, - - "travel_avoid_other_parts": { "value": true }, - "travel_avoid_supports": { "value": true }, - "travel_retract_before_outer_wall": { "value": true }, - - "retraction_enable": { "value": true }, - "retraction_speed": { "value": 30 }, - "retraction_amount": { "value": 7 }, "retraction_count_max": { "value": 100 }, "retraction_extrusion_window": { "value": 10 }, + "retraction_hop": { "value": 0.2 }, + "retraction_hop_enabled": { "value": "True" }, "retraction_min_travel": { "value": 1.5 }, - - "cool_fan_full_at_height": { "value": "layer_height_0" }, - "adhesion_type": { "value": "'skirt'" }, - "skirt_line_count": {"default_value": 3}, + "retraction_speed": { "value": 30 }, + "skirt_line_count": { "default_value": 3 }, + "speed_print": { "value": 50.0 }, + "speed_z_hop": { "value": "machine_max_feedrate_z" }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, "support_xy_distance_overhang": { "value": "wall_line_width_0" }, - "support_z_distance": { "value": "layer_height if layer_height > 0.1 else layer_height*2" } + "support_z_distance": { "value": "layer_height if layer_height > 0.1 else layer_height*2" }, + "travel_avoid_other_parts": { "value": true }, + "travel_avoid_supports": { "value": true }, + "travel_retract_before_outer_wall": { "value": true } } -} +} \ No newline at end of file diff --git a/resources/definitions/anycubic_vyper.def.json b/resources/definitions/anycubic_vyper.def.json index 7fe4877214..5547b53806 100644 --- a/resources/definitions/anycubic_vyper.def.json +++ b/resources/definitions/anycubic_vyper.def.json @@ -1,47 +1,27 @@ { - "version": 2, - "name": "Anycubic Vyper", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "ThatGuyZim", - "manufacturer": "Anycubic", - "file_formats": "text/x-gcode", - "platform": "anycubic_vyper_platform.stl", - "machine_extruder_trains": { - "0": "anycubic_vyper_extruder_0" - } - }, - "overrides": { - "machine_name": { - "default_value": "Anycubic Vyper" - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_width": { - "default_value": 250 - }, - "machine_height": { - "default_value": 265 - }, - "machine_depth": { - "default_value": 255 - }, - "machine_center_is_zero": { - "default_value": false - }, - "gantry_height": { - "value": "0" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "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\nM300 S1318 P266\nG28 Z0 ;move Z to min endstops\nG0 Z0.2\nG92 E0 ;zero the extruded length\nG1 X40 E25 F400 ; Extrude 25mm of filament in a 4cm line. Reduce speed (F) if you have a nozzle smaller than 0.4mm!\nG92 E0 ;zero the extruded length again\nG1 E-1 F500 ; Retract a little\nG1 X80 F4000 ; Quickly wipe away from the filament line\nM117 ; Printing…\nG5" - }, - "machine_end_gcode": { - "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off bed\nM84 ; disable motors\nM107\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 F{speed_travel} ;move Z up a bit and retract filament even more\nG28 X0 ;Y0 ;move X/Y to min endstops, so the head is out of the way\nG1 Y180 F2000\nM84 ;steppers off\nG90\nM300 S1318 P266" - } - } + "version": 2, + "name": "Anycubic Vyper", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "ThatGuyZim", + "manufacturer": "Anycubic", + "file_formats": "text/x-gcode", + "platform": "anycubic_vyper_platform.stl", + "machine_extruder_trains": { "0": "anycubic_vyper_extruder_0" } + }, + "overrides": + { + "gantry_height": { "value": "0" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 255 }, + "machine_end_gcode": { "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off bed\nM84 ; disable motors\nM107\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 F{speed_travel} ;move Z up a bit and retract filament even more\nG28 X0 ;Y0 ;move X/Y to min endstops, so the head is out of the way\nG1 Y180 F2000\nM84 ;steppers off\nG90\nM300 S1318 P266" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 265 }, + "machine_name": { "default_value": "Anycubic Vyper" }, + "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\nM300 S1318 P266\nG28 Z0 ;move Z to min endstops\nG0 Z0.2\nG92 E0 ;zero the extruded length\nG1 X40 E25 F400 ; Extrude 25mm of filament in a 4cm line. Reduce speed (F) if you have a nozzle smaller than 0.4mm!\nG92 E0 ;zero the extruded length again\nG1 E-1 F500 ; Retract a little\nG1 X80 F4000 ; Quickly wipe away from the filament line\nM117 ; Printing\u2026\nG5" }, + "machine_width": { "default_value": 250 } + } } \ No newline at end of file diff --git a/resources/definitions/arjun300.def.json b/resources/definitions/arjun300.def.json index 94c1889fd3..8b3af6e704 100644 --- a/resources/definitions/arjun300.def.json +++ b/resources/definitions/arjun300.def.json @@ -2,51 +2,59 @@ "version": 2, "name": "Arjun 300", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Venkat Kamesh", "manufacturer": "Sri Vignan Technologies", - "weight": 3, "file_formats": "text/x-gcode", "platform": "arjun300_platform.stl", - "platform_offset": [-155, -6, 190], "has_material": true, "has_variants": true, - "preferred_variant_name": "0.4 mm Nozzle", "machine_extruder_trains": { "0": "arjun_extruder_0", "1": "arjun_extruder_1" - } + }, + "platform_offset": [ + -155, + -6, + 190 + ], + "preferred_variant_name": "0.4 mm Nozzle", + "weight": 3 }, - - "overrides": { - "machine_name": { "default_value": "Arjun 300" }, - "machine_width": { "default_value": 317 }, - "machine_height": { "default_value": 290 }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "ironing_enabled": { "default_value": true }, + "line_width": { "value": "machine_nozzle_size" }, + "machine_acceleration": { "default_value": 2000 }, + "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 310 }, - "machine_center_is_zero": {"default_value": false}, + "machine_end_gcode": { "default_value": "G91\nG1 Z+0.5 E-16 Y+10 F9000\nG90\nM107\nM104 S0 T1\nM104 S0 T0\nM140 S0\nM117\nG28 X0 Y0\nT0\nM84" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_heated_bed": { "default_value": true }, - "machine_nozzle_size": {"default_value": 0.4}, - "machine_show_variants": {"default_value": true}, - "machine_acceleration": {"default_value": 2000}, + "machine_height": { "default_value": 290 }, + "machine_max_feedrate_e": { "value": 150 }, "machine_max_feedrate_x": { "value": 300 }, "machine_max_feedrate_y": { "value": 300 }, "machine_max_feedrate_z": { "value": 15 }, - "machine_max_feedrate_e": { "value": 150 }, - "machine_use_extruder_offset_to_offset_coords": {"default_value": false}, - "line_width": {"value": "machine_nozzle_size"}, - "speed_travel": {"maximum_value": "300", "value": "200"}, + "machine_name": { "default_value": "Arjun 300" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_show_variants": { "default_value": true }, + "machine_start_gcode": { "default_value": "M605 S0\nG21\nG90\nM82\nM107\nT1\nG28\nG1 Z0.3 F150\nT1\nG92 E0\nG1 E45 F210\nG92 E0\nT0\nG92 E0\nG1 E45 F210\nG92 E0\nM117\n" }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": false }, + "machine_width": { "default_value": 317 }, + "material_diameter": { "default_value": 1.75 }, "optimize_wall_printing_order": { "value": "True" }, - "material_diameter": { "default_value": 1.75}, - "retraction_amount": {"default_value": 6.5}, - "retraction_speed": { "default_value": 30}, - - "adhesion_type": { "default_value": "skirt" }, - "machine_gcode_flavor": { "default_value": "Marlin"}, - "ironing_enabled":{"default_value": true}, - "machine_start_gcode": { "default_value": "M605 S0\nG21\nG90\nM82\nM107\nT1\nG28\nG1 Z0.3 F150\nT1\nG92 E0\nG1 E45 F210\nG92 E0\nT0\nG92 E0\nG1 E45 F210\nG92 E0\nM117\n"}, - "machine_end_gcode": { "default_value": "G91\nG1 Z+0.5 E-16 Y+10 F9000\nG90\nM107\nM104 S0 T1\nM104 S0 T0\nM140 S0\nM117\nG28 X0 Y0\nT0\nM84"}, - "machine_extruder_count": { "default_value": 2 } + "retraction_amount": { "default_value": 6.5 }, + "retraction_speed": { "default_value": 30 }, + "speed_travel": + { + "maximum_value": "300", + "value": "200" + } } -} +} \ No newline at end of file diff --git a/resources/definitions/arjun_duplication.def.json b/resources/definitions/arjun_duplication.def.json index d5a4b2ee72..8acc001010 100644 --- a/resources/definitions/arjun_duplication.def.json +++ b/resources/definitions/arjun_duplication.def.json @@ -2,48 +2,49 @@ "version": 2, "name": "Arjun 300 Duplication", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Venkat Kamesh", "manufacturer": "Sri Vignan Technologies", - "weight": 3, "file_formats": "text/x-gcode", "has_material": true, "has_variants": true, + "machine_extruder_trains": { "0": "arjun_dm_extruder" }, "preferred_variant_name": "0.4 mm Nozzle", - "machine_extruder_trains": - { - "0": "arjun_dm_extruder" - } + "weight": 3 }, - - "overrides": { - "machine_name": { "default_value": "Arjun 300 Duplication" }, - "machine_width": { "default_value": 158.5 }, - "machine_height": { "default_value": 290 }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "ironing_enabled": { "default_value": true }, + "line_width": { "value": "machine_nozzle_size" }, + "machine_acceleration": { "default_value": 2000 }, + "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 310 }, - "machine_center_is_zero": {"default_value": false}, + "machine_end_gcode": { "default_value": "G91\nG1 Z+0.5 E-16 Y+10 F9000\nG90\nM107\nM107 P1\nM104 S0\nM140 S0\nM117\nM605 S0\nG28 X0 Y0\nM84" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_heated_bed": { "default_value": true }, - "machine_nozzle_size": {"default_value": 0.4}, - "machine_show_variants": {"default_value": true}, - "machine_acceleration": {"default_value": 2000}, + "machine_height": { "default_value": 290 }, + "machine_max_feedrate_e": { "value": 150 }, "machine_max_feedrate_x": { "value": 300 }, "machine_max_feedrate_y": { "value": 300 }, "machine_max_feedrate_z": { "value": 15 }, - "machine_max_feedrate_e": { "value": 150 }, - "machine_use_extruder_offset_to_offset_coords": {"default_value": false}, - "line_width": {"value": "machine_nozzle_size"}, - "speed_travel": {"maximum_value": "300", "value": "200"}, + "machine_name": { "default_value": "Arjun 300 Duplication" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_show_variants": { "default_value": true }, + "machine_start_gcode": { "default_value": "M605 S2 R0 X155\nG21\nG90\nM82\nM107\nM104 S{material_print_temperature}\nM105\nM109 S{material_print_temperature}\nG28 Z0\nG1 Z15 F150\nG28 Y0\nG1 Y20 F6000\nG28 X0\nG1 X80 F9000\nT0\nG92 E0\nG1 E35 F250\nG1 E45 F120\nG92 E0\nG1 X100 Z0 F5000\nG1 X145 F9000\nM117\n" }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": false }, + "machine_width": { "default_value": 158.5 }, + "material_diameter": { "default_value": 1.75 }, "optimize_wall_printing_order": { "value": "True" }, - "material_diameter": { "default_value": 1.75}, - "retraction_amount": {"default_value": 6.5}, - "retraction_speed": { "default_value": 30}, - - "adhesion_type": { "default_value": "skirt" }, - "machine_gcode_flavor": { "default_value": "Marlin"}, - "ironing_enabled":{"default_value": true}, - "machine_start_gcode": {"default_value": "M605 S2 R0 X155\nG21\nG90\nM82\nM107\nM104 S{material_print_temperature}\nM105\nM109 S{material_print_temperature}\nG28 Z0\nG1 Z15 F150\nG28 Y0\nG1 Y20 F6000\nG28 X0\nG1 X80 F9000\nT0\nG92 E0\nG1 E35 F250\nG1 E45 F120\nG92 E0\nG1 X100 Z0 F5000\nG1 X145 F9000\nM117\n"}, - "machine_end_gcode": {"default_value": "G91\nG1 Z+0.5 E-16 Y+10 F9000\nG90\nM107\nM107 P1\nM104 S0\nM140 S0\nM117\nM605 S0\nG28 X0 Y0\nM84"}, - "machine_extruder_count": { "default_value": 1 } + "retraction_amount": { "default_value": 6.5 }, + "retraction_speed": { "default_value": 30 }, + "speed_travel": + { + "maximum_value": "300", + "value": "200" + } } -} +} \ No newline at end of file diff --git a/resources/definitions/arjun_mirrored.def.json b/resources/definitions/arjun_mirrored.def.json index a4c0f3d3d1..bf91c3d323 100644 --- a/resources/definitions/arjun_mirrored.def.json +++ b/resources/definitions/arjun_mirrored.def.json @@ -2,48 +2,49 @@ "version": 2, "name": "Arjun 300 Mirror", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Venkat Kamesh", "manufacturer": "Sri Vignan Technologies", - "weight": 3, "file_formats": "text/x-gcode", "has_material": true, "has_variants": true, + "machine_extruder_trains": { "0": "arjun_mm_extruder" }, "preferred_variant_name": "0.4 mm Nozzle", - "machine_extruder_trains": - { - "0": "arjun_mm_extruder" - } + "weight": 3 }, - - "overrides": { - "machine_name": { "default_value": "Arjun 300 Mirror" }, - "machine_width": { "default_value": 158.5 }, - "machine_height": { "default_value": 290 }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "ironing_enabled": { "default_value": true }, + "line_width": { "value": "machine_nozzle_size" }, + "machine_acceleration": { "default_value": 2000 }, + "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 310 }, - "machine_center_is_zero": {"default_value": false}, + "machine_end_gcode": { "default_value": "G91\nG1 Z+0.5 E-16 Y+10 F9000\nG90\nM107\nM107 P1\nM104 S0\nM140 S0\nM117\nM605 S0\nG28 X0 Y0\nM84" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_heated_bed": { "default_value": true }, - "machine_nozzle_size": {"default_value": 0.4}, - "machine_show_variants": {"default_value": true}, - "machine_acceleration": {"default_value": 2000}, + "machine_height": { "default_value": 290 }, + "machine_max_feedrate_e": { "value": 150 }, "machine_max_feedrate_x": { "value": 300 }, "machine_max_feedrate_y": { "value": 300 }, "machine_max_feedrate_z": { "value": 15 }, - "machine_max_feedrate_e": { "value": 150 }, - "machine_use_extruder_offset_to_offset_coords": {"default_value": false}, - "line_width": {"value": "machine_nozzle_size"}, - "speed_travel": {"maximum_value": "300", "value": "200"}, + "machine_name": { "default_value": "Arjun 300 Mirror" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_show_variants": { "default_value": true }, + "machine_start_gcode": { "default_value": "M605 S2 R0 X155\nM605 S3 X155\nG21\nG90\nM82\nM107\nM104 S{material_print_temperature}\nM105\nM109 S{material_print_temperature}\nG28 Z0\nG1 Z15 F150\nG28 Y0\nG1 Y20 F6000\nG28 X0\nG1 X80 F9000\nT0\nG92 E0\nG1 E35 F250\nG1 E45 F120\nG92 E0\nG1 X100 Z0 F5000\nG1 X145 F9000\nM117\n" }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": false }, + "machine_width": { "default_value": 158.5 }, + "material_diameter": { "default_value": 1.75 }, "optimize_wall_printing_order": { "value": "True" }, - "material_diameter": { "default_value": 1.75}, - "retraction_amount": {"default_value": 6.5}, - "retraction_speed": { "default_value": 30}, - - "adhesion_type": { "default_value": "skirt" }, - "machine_gcode_flavor": { "default_value": "Marlin"}, - "ironing_enabled":{"default_value": true}, - "machine_start_gcode": {"default_value": "M605 S2 R0 X155\nM605 S3 X155\nG21\nG90\nM82\nM107\nM104 S{material_print_temperature}\nM105\nM109 S{material_print_temperature}\nG28 Z0\nG1 Z15 F150\nG28 Y0\nG1 Y20 F6000\nG28 X0\nG1 X80 F9000\nT0\nG92 E0\nG1 E35 F250\nG1 E45 F120\nG92 E0\nG1 X100 Z0 F5000\nG1 X145 F9000\nM117\n"}, - "machine_end_gcode": {"default_value": "G91\nG1 Z+0.5 E-16 Y+10 F9000\nG90\nM107\nM107 P1\nM104 S0\nM140 S0\nM117\nM605 S0\nG28 X0 Y0\nM84"}, - "machine_extruder_count": { "default_value": 1 } + "retraction_amount": { "default_value": 6.5 }, + "retraction_speed": { "default_value": 30 }, + "speed_travel": + { + "maximum_value": "300", + "value": "200" + } } -} +} \ No newline at end of file diff --git a/resources/definitions/arjunpro300.def.json b/resources/definitions/arjunpro300.def.json index 7f7160f777..22755a12f7 100644 --- a/resources/definitions/arjunpro300.def.json +++ b/resources/definitions/arjunpro300.def.json @@ -2,51 +2,59 @@ "version": 2, "name": "Arjun Pro 300", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Venkat Kamesh", "manufacturer": "Sri Vignan Technologies", - "weight": 3, "file_formats": "text/x-gcode", "platform": "arjunpro300_platform.STL", - "platform_offset": [-155, -6, 190], "has_material": true, "has_variants": true, - "preferred_variant_name": "0.4 mm Nozzle", "machine_extruder_trains": { "0": "arjunpro_extruder_0", "1": "arjunpro_extruder_1" - } + }, + "platform_offset": [ + -155, + -6, + 190 + ], + "preferred_variant_name": "0.4 mm Nozzle", + "weight": 3 }, - - "overrides": { - "machine_name": { "default_value": "Arjun Pro 300" }, - "machine_width": { "default_value": 300 }, - "machine_height": { "default_value": 293 }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "ironing_enabled": { "default_value": true }, + "line_width": { "value": "machine_nozzle_size" }, + "machine_acceleration": { "default_value": 2000 }, + "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 300 }, - "machine_center_is_zero": {"default_value": false}, + "machine_end_gcode": { "default_value": "G91\nG1 Z+0.5 E-16 Y+10 F9000\nG90\nM107\nM104 S0 T1\nM104 S0 T0\nM140 S0\nM117\nG28 X0 Y0\nT0\nM84" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_heated_bed": { "default_value": true }, - "machine_nozzle_size": {"default_value": 0.4}, - "machine_show_variants": {"default_value": true}, - "machine_acceleration": {"default_value": 2000}, + "machine_height": { "default_value": 293 }, + "machine_max_feedrate_e": { "value": 150 }, "machine_max_feedrate_x": { "value": 300 }, "machine_max_feedrate_y": { "value": 300 }, "machine_max_feedrate_z": { "value": 15 }, - "machine_max_feedrate_e": { "value": 150 }, - "machine_use_extruder_offset_to_offset_coords": {"default_value": false}, - "line_width": {"value": "machine_nozzle_size"}, - "speed_travel": {"maximum_value": "300", "value": "200"}, + "machine_name": { "default_value": "Arjun Pro 300" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_show_variants": { "default_value": true }, + "machine_start_gcode": { "default_value": "M605 S0\nG21\nG90\nM82\nM107\nT1\nG28 \nG29 \nG1 X0 Y5 F2000\nT1\nG92 E0\nG1 E45 F210\nG92 E0\nT0\nG92 E0\nG1 E45 F210\nG92 E0\nM117\n" }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": false }, + "machine_width": { "default_value": 300 }, + "material_diameter": { "default_value": 1.75 }, "optimize_wall_printing_order": { "value": "True" }, - "material_diameter": { "default_value": 1.75}, - "retraction_amount": {"default_value": 6.5}, - "retraction_speed": { "default_value": 30}, - - "adhesion_type": { "default_value": "skirt" }, - "machine_gcode_flavor": { "default_value": "Marlin"}, - "ironing_enabled":{"default_value": true}, - "machine_start_gcode": { "default_value": "M605 S0\nG21\nG90\nM82\nM107\nT1\nG28 \nG29 \nG1 X0 Y5 F2000\nT1\nG92 E0\nG1 E45 F210\nG92 E0\nT0\nG92 E0\nG1 E45 F210\nG92 E0\nM117\n"}, - "machine_end_gcode": { "default_value": "G91\nG1 Z+0.5 E-16 Y+10 F9000\nG90\nM107\nM104 S0 T1\nM104 S0 T0\nM140 S0\nM117\nG28 X0 Y0\nT0\nM84"}, - "machine_extruder_count": { "default_value": 2 } + "retraction_amount": { "default_value": 6.5 }, + "retraction_speed": { "default_value": 30 }, + "speed_travel": + { + "maximum_value": "300", + "value": "200" + } } -} +} \ No newline at end of file diff --git a/resources/definitions/arjunpro_duplication.def.json b/resources/definitions/arjunpro_duplication.def.json index 9aebd197a7..f7171e0b5d 100644 --- a/resources/definitions/arjunpro_duplication.def.json +++ b/resources/definitions/arjunpro_duplication.def.json @@ -2,48 +2,49 @@ "version": 2, "name": "Arjun Pro 300 Duplication", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Venkat Kamesh", "manufacturer": "Sri Vignan Technologies", - "weight": 3, "file_formats": "text/x-gcode", "has_material": true, "has_variants": true, + "machine_extruder_trains": { "0": "arjunpro_dm_extruder" }, "preferred_variant_name": "0.4 mm Nozzle", - "machine_extruder_trains": - { - "0": "arjunpro_dm_extruder" - } + "weight": 3 }, - - "overrides": { - "machine_name": { "default_value": "Arjunpro 300 Duplication" }, - "machine_width": { "default_value": 120 }, - "machine_height": { "default_value": 293 }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "ironing_enabled": { "default_value": true }, + "line_width": { "value": "machine_nozzle_size" }, + "machine_acceleration": { "default_value": 2000 }, + "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 300 }, - "machine_center_is_zero": {"default_value": false}, + "machine_end_gcode": { "default_value": "G91\nG1 Z+0.5 E-16 Y+10 F9000\nG90\nM107\nM107 P1\nM104 S0\nM140 S0\nM117\nM605 S0\nG28 X0 Y0\nM84" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_heated_bed": { "default_value": true }, - "machine_nozzle_size": {"default_value": 0.4}, - "machine_show_variants": {"default_value": true}, - "machine_acceleration": {"default_value": 2000}, + "machine_height": { "default_value": 293 }, + "machine_max_feedrate_e": { "value": 150 }, "machine_max_feedrate_x": { "value": 300 }, "machine_max_feedrate_y": { "value": 300 }, "machine_max_feedrate_z": { "value": 15 }, - "machine_max_feedrate_e": { "value": 150 }, - "machine_use_extruder_offset_to_offset_coords": {"default_value": false}, - "line_width": {"value": "machine_nozzle_size"}, - "speed_travel": {"maximum_value": "300", "value": "200"}, + "machine_name": { "default_value": "Arjunpro 300 Duplication" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_show_variants": { "default_value": true }, + "machine_start_gcode": { "default_value": "M605 S2 R0 X125\nG21\nG90\nM82\nM107\nM104 S{material_print_temperature}\nM105\nM109 S{material_print_temperature}\nG28 \nG29 \nG1 Z15 F150\nG28 Y5\nG1 Y20 F6000\nG28 X0\nG1 X80 F6000\nT0\nG92 E0\nG1 E35 F250\nG1 E45 F120\nG92 E0\nG1 X100 Z0 F5000\nG1 X125 F6000\nM117\n" }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": false }, + "machine_width": { "default_value": 120 }, + "material_diameter": { "default_value": 1.75 }, "optimize_wall_printing_order": { "value": "True" }, - "material_diameter": { "default_value": 1.75}, - "retraction_amount": {"default_value": 6.5}, - "retraction_speed": { "default_value": 30}, - - "adhesion_type": { "default_value": "skirt" }, - "machine_gcode_flavor": { "default_value": "Marlin"}, - "ironing_enabled":{"default_value": true}, - "machine_start_gcode": {"default_value": "M605 S2 R0 X125\nG21\nG90\nM82\nM107\nM104 S{material_print_temperature}\nM105\nM109 S{material_print_temperature}\nG28 \nG29 \nG1 Z15 F150\nG28 Y5\nG1 Y20 F6000\nG28 X0\nG1 X80 F6000\nT0\nG92 E0\nG1 E35 F250\nG1 E45 F120\nG92 E0\nG1 X100 Z0 F5000\nG1 X125 F6000\nM117\n"}, - "machine_end_gcode": {"default_value": "G91\nG1 Z+0.5 E-16 Y+10 F9000\nG90\nM107\nM107 P1\nM104 S0\nM140 S0\nM117\nM605 S0\nG28 X0 Y0\nM84"}, - "machine_extruder_count": { "default_value": 1 } + "retraction_amount": { "default_value": 6.5 }, + "retraction_speed": { "default_value": 30 }, + "speed_travel": + { + "maximum_value": "300", + "value": "200" + } } -} +} \ No newline at end of file diff --git a/resources/definitions/arjunpro_mirrored.def.json b/resources/definitions/arjunpro_mirrored.def.json index 5502708186..0d2c44ada4 100644 --- a/resources/definitions/arjunpro_mirrored.def.json +++ b/resources/definitions/arjunpro_mirrored.def.json @@ -2,48 +2,49 @@ "version": 2, "name": "Arjun Pro 300 Mirror", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Venkat Kamesh", "manufacturer": "Sri Vignan Technologies", - "weight": 3, "file_formats": "text/x-gcode", "has_material": true, "has_variants": true, + "machine_extruder_trains": { "0": "arjunpro_mm_extruder" }, "preferred_variant_name": "0.4 mm Nozzle", - "machine_extruder_trains": - { - "0": "arjunpro_mm_extruder" - } + "weight": 3 }, - - "overrides": { - "machine_name": { "default_value": "Arjunpro 300 Mirror" }, - "machine_width": { "default_value": 120 }, - "machine_height": { "default_value": 293 }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "ironing_enabled": { "default_value": true }, + "line_width": { "value": "machine_nozzle_size" }, + "machine_acceleration": { "default_value": 2000 }, + "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 300 }, - "machine_center_is_zero": {"default_value": false}, + "machine_end_gcode": { "default_value": "G91\nG1 Z+0.5 E-16 Y+10 F9000\nG90\nM107\nM107 P1\nM104 S0\nM140 S0\nM117\nM605 S0\nG28 X0 Y0\nM84" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_heated_bed": { "default_value": true }, - "machine_nozzle_size": {"default_value": 0.4}, - "machine_show_variants": {"default_value": true}, - "machine_acceleration": {"default_value": 2000}, + "machine_height": { "default_value": 293 }, + "machine_max_feedrate_e": { "value": 150 }, "machine_max_feedrate_x": { "value": 300 }, "machine_max_feedrate_y": { "value": 300 }, "machine_max_feedrate_z": { "value": 15 }, - "machine_max_feedrate_e": { "value": 150 }, - "machine_use_extruder_offset_to_offset_coords": {"default_value": false}, - "line_width": {"value": "machine_nozzle_size"}, - "speed_travel": {"maximum_value": "300", "value": "200"}, + "machine_name": { "default_value": "Arjunpro 300 Mirror" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_show_variants": { "default_value": true }, + "machine_start_gcode": { "default_value": "M605 S2 R0 X125\nM605 S3 X125\nG21\nG90\nM82\nM107\nM104 S{material_print_temperature}\nM105\nM109 S{material_print_temperature}\nG28 \nG29 \nG1 Z15 F150\nG28 Y5\nG1 Y20 F6000\nG28 X0\nG1 X80 F6000\nT0\nG92 E0\nG1 E35 F250\nG1 E45 F120\nG92 E0\nG1 X100 Z0 F5000\nG1 X125 F6000\nM117\n" }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": false }, + "machine_width": { "default_value": 120 }, + "material_diameter": { "default_value": 1.75 }, "optimize_wall_printing_order": { "value": "True" }, - "material_diameter": { "default_value": 1.75}, - "retraction_amount": {"default_value": 6.5}, - "retraction_speed": { "default_value": 30}, - - "adhesion_type": { "default_value": "skirt" }, - "machine_gcode_flavor": { "default_value": "Marlin"}, - "ironing_enabled":{"default_value": true}, - "machine_start_gcode": {"default_value": "M605 S2 R0 X125\nM605 S3 X125\nG21\nG90\nM82\nM107\nM104 S{material_print_temperature}\nM105\nM109 S{material_print_temperature}\nG28 \nG29 \nG1 Z15 F150\nG28 Y5\nG1 Y20 F6000\nG28 X0\nG1 X80 F6000\nT0\nG92 E0\nG1 E35 F250\nG1 E45 F120\nG92 E0\nG1 X100 Z0 F5000\nG1 X125 F6000\nM117\n"}, - "machine_end_gcode": {"default_value": "G91\nG1 Z+0.5 E-16 Y+10 F9000\nG90\nM107\nM107 P1\nM104 S0\nM140 S0\nM117\nM605 S0\nG28 X0 Y0\nM84"}, - "machine_extruder_count": { "default_value": 1 } + "retraction_amount": { "default_value": 6.5 }, + "retraction_speed": { "default_value": 30 }, + "speed_travel": + { + "maximum_value": "300", + "value": "200" + } } -} +} \ No newline at end of file diff --git a/resources/definitions/artillery_base.def.json b/resources/definitions/artillery_base.def.json index eabe97ba03..e8b779bf00 100644 --- a/resources/definitions/artillery_base.def.json +++ b/resources/definitions/artillery_base.def.json @@ -1,26 +1,13 @@ { - "name": "Artillery Base Printer", "version": 2, + "name": "Artillery Base Printer", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": false, "author": "3D-Nexus.com, cataclism, Wondro", "manufacturer": "Artillery", "file_formats": "text/x-gcode", - "first_start_actions": ["MachineSettingsAction"], - - "machine_extruder_trains": { - "0": "artillery_base_extruder_0" - }, - - "has_materials": true, - "has_variants": true, - "has_machine_quality": true, - "variants_name": "Nozzle Size", - - "preferred_variant_name": "0.4mm Nozzle", - "preferred_quality_type": "standard", - "preferred_material": "generic_pla", "exclude_materials": [ "Vertex_Delta_ABS", "Vertex_Delta_PET", @@ -64,199 +51,122 @@ "tizyx_abs", "tizyx_pla", "tizyx_pla_bois", - "ultimaker_abs_black", - "ultimaker_abs_blue", - "ultimaker_abs_green", - "ultimaker_abs_grey", - "ultimaker_abs_orange", - "ultimaker_abs_pearl-gold", - "ultimaker_abs_red", - "ultimaker_abs_silver-metallic", - "ultimaker_abs_white", - "ultimaker_abs_yellow", - "ultimaker_bam", - "ultimaker_cpe_black", - "ultimaker_cpe_blue", - "ultimaker_cpe_dark-grey", - "ultimaker_cpe_green", - "ultimaker_cpe_light-grey", - "ultimaker_cpe_plus_black", - "ultimaker_cpe_plus_transparent", - "ultimaker_cpe_plus_white", - "ultimaker_cpe_red", - "ultimaker_cpe_transparent", - "ultimaker_cpe_white", - "ultimaker_cpe_yellow", - "ultimaker_nylon_black", - "ultimaker_nylon_transparent", - "ultimaker_pc_black", - "ultimaker_pc_transparent", - "ultimaker_pc_white", - "ultimaker_pla_black", - "ultimaker_pla_blue", - "ultimaker_pla_green", - "ultimaker_pla_magenta", - "ultimaker_pla_orange", - "ultimaker_pla_pearl-white", - "ultimaker_pla_red", - "ultimaker_pla_silver-metallic", - "ultimaker_pla_transparent", - "ultimaker_pla_white", - "ultimaker_pla_yellow", - "ultimaker_pp_transparent", - "ultimaker_pva", - "ultimaker_tough_pla_black", - "ultimaker_tough_pla_green", - "ultimaker_tough_pla_red", - "ultimaker_tough_pla_white", - "ultimaker_tpu_black", - "ultimaker_tpu_blue", - "ultimaker_tpu_red", - "ultimaker_tpu_white", "verbatim_bvoh_175", "zyyx_pro_flex", "zyyx_pro_pla" - ] + ], + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "artillery_base_extruder_0" }, + "preferred_material": "generic_pla", + "preferred_quality_type": "standard", + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Size" }, - "overrides": { - "machine_name": { "default_value": "Artillery Base Printer" }, - "machine_start_gcode": { "default_value": "G28 ; home all axes\n M117 Purge extruder\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface\n G1 X2 Y20 Z0.3 F5000.0 ; move to start-line position\n G1 X2 Y200.0 Z0.3 F1500.0 E15 ; draw 1st line\n G1 X2 Y200.0 Z0.4 F5000.0 ; move to side a little\n G1 X2 Y20 Z0.4 F1500.0 E30 ; draw 2nd line\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface"}, - "machine_end_gcode": { "default_value": "G91; relative positioning\n G1 Z1.0 F3000 ; move z up little to prevent scratching of print\n G90; absolute positioning\n G1 X0 Y200 F1000 ; prepare for part removal\n M104 S0; turn off extruder\n M140 S0 ; turn off bed\n G1 X0 Y300 F1000 ; prepare for part removal\n M84 ; disable motors\n M106 S0 ; turn off fan" }, - - "machine_max_feedrate_x": { "value": 500 }, - "machine_max_feedrate_y": { "value": 500 }, - "machine_max_feedrate_z": { "value": 10 }, - "machine_max_feedrate_e": { "value": 50 }, - - "machine_max_acceleration_x": { "value": 500 }, - "machine_max_acceleration_y": { "value": 500 }, - "machine_max_acceleration_z": { "value": 100 }, - "machine_max_acceleration_e": { "value": 5000 }, - "machine_acceleration": { "value": 500 }, - - "machine_max_jerk_xy": { "value": 10 }, - "machine_max_jerk_z": { "value": 0.4 }, - "machine_max_jerk_e": { "value": 5 }, - - "machine_heated_bed": { "default_value": true }, - - "material_diameter": { "default_value": 1.75 }, - + "overrides": + { + "acceleration_enabled": { "value": false }, "acceleration_print": { "value": 500 }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, "acceleration_travel": { "value": 500 }, "acceleration_travel_layer_0": { "value": "acceleration_travel" }, - "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, - + "adaptive_layer_height_variation": { "value": 0.04 }, + "adaptive_layer_height_variation_step": { "value": 0.04 }, + "adhesion_type": { "value": "'none' if support_enable else 'skirt'" }, + "brim_replaces_support": { "value": false }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "value": 10 }, + "fill_outline_gaps": { "value": false }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 30.0 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_wipe_dist": { "value": 0.0 }, + "jerk_enabled": { "value": false }, "jerk_print": { "value": 8 }, "jerk_travel": { "value": "jerk_print" }, "jerk_travel_layer_0": { "value": "jerk_travel" }, - - "acceleration_enabled": { "value": false }, - "jerk_enabled": { "value": false }, - - "speed_print": { "value": 60.0 } , - "speed_infill": { "value": "speed_print" }, - "speed_wall": { "value": "speed_print / 2" }, - "speed_wall_0": { "value": "speed_wall" }, - "speed_wall_x": { "value": "speed_wall" }, - "speed_topbottom": { "value": "speed_print / 2" }, - "speed_roofing": { "value": "speed_topbottom" }, - "speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" }, - "speed_layer_0": { "value": 20.0 }, - "speed_print_layer_0": { "value": "speed_layer_0" }, - "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, - "speed_prime_tower": { "value": "speed_topbottom" }, - "speed_support": { "value": "speed_wall_0" }, - "speed_support_interface": { "value": "speed_topbottom" }, - "speed_z_hop": { "value": 5 }, - - "skirt_brim_speed": { "value": "speed_layer_0" }, - "line_width": { "value": "machine_nozzle_size * 1.1" }, - - "optimize_wall_printing_order": { "value": "True" }, - - "material_initial_print_temperature": { "value": "material_print_temperature" }, + "machine_acceleration": { "value": 500 }, + "machine_end_gcode": { "default_value": "G91; relative positioning\n G1 Z1.0 F3000 ; move z up little to prevent scratching of print\n G90; absolute positioning\n G1 X0 Y200 F1000 ; prepare for part removal\n M104 S0; turn off extruder\n M140 S0 ; turn off bed\n G1 X0 Y300 F1000 ; prepare for part removal\n M84 ; disable motors\n M106 S0 ; turn off fan" }, + "machine_heated_bed": { "default_value": true }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_feedrate_e": { "value": 50 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_name": { "default_value": "Artillery Base Printer" }, + "machine_start_gcode": { "default_value": "G28 ; home all axes\n M117 Purge extruder\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface\n G1 X2 Y20 Z0.3 F5000.0 ; move to start-line position\n G1 X2 Y200.0 Z0.3 F1500.0 E15 ; draw 1st line\n G1 X2 Y200.0 Z0.4 F5000.0 ; move to side a little\n G1 X2 Y20 Z0.4 F1500.0 E30 ; draw 2nd line\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface" }, + "material_diameter": { "default_value": 1.75 }, "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_flow": { "value": 100 }, - - "z_seam_type": { "value": "'back'" }, - "z_seam_corner": { "value": "'z_seam_corner_none'" }, - - "infill_sparse_density": { "value": "20" }, - "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, - "infill_before_walls": { "value": false }, - "infill_overlap": { "value": 30.0 }, - "skin_overlap": { "value": 10.0 }, - "infill_wipe_dist": { "value": 0.0 }, - "wall_0_wipe_dist": { "value": 0.0 }, - - "fill_outline_gaps": { "value": false }, - - "retraction_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 - }, - "retraction_retract_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 - }, - "retraction_prime_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 - }, - - "retraction_hop_enabled": { "value": "support_enable" }, - "retraction_hop": { "value": 0.2 }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "meshfix_maximum_resolution": { "value": "0.25" }, + "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "optimize_wall_printing_order": { "value": true }, + "retraction_amount": { "value": 2 }, "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'infill'" }, "retraction_combing_max_distance": { "value": 30 }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 10 }, + "retraction_hop": { "value": 0.2 }, + "retraction_hop_enabled": { "value": "support_enable" }, + "retraction_min_travel": { "value": 1.5 }, + "retraction_prime_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "retraction_retract_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "retraction_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "skin_overlap": { "value": 10.0 }, + "skirt_gap": { "value": 10.0 }, + "skirt_line_count": { "value": 4 }, + "speed_layer_0": { "value": 20.0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": 60.0 }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" }, + "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width / 2.0 / layer_height)))" }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 4 }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_interface_skip_height": { "value": 0.2 }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, "travel_avoid_other_parts": { "value": true }, "travel_avoid_supports": { "value": true }, "travel_retract_before_outer_wall": { "value": true }, - - "retraction_amount": { "value": 2 }, - "retraction_enable": { "value": true }, - "retraction_count_max": { "value": 100 }, - "retraction_extrusion_window": { "value": 10 }, - "retraction_min_travel": { "value": 1.5 }, - - "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, - "cool_fan_enabled": { "value": true }, - "cool_min_layer_time": { "value": 10 }, - - "adhesion_type": { "value": "'none' if support_enable else 'skirt'" }, - "brim_replaces_support": { "value": false }, - "skirt_gap": { "value": 10.0 }, - "skirt_line_count": { "value": 4 }, - - "adaptive_layer_height_variation": { "value": 0.04 }, - "adaptive_layer_height_variation_step": { "value": 0.04 }, - - "meshfix_maximum_resolution": { "value": "0.25" }, - "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, - - "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width / 2.0 / layer_height)))" }, - "support_pattern": { "value": "'zigzag'" }, - "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, - "support_use_towers": { "value": false }, - "support_xy_distance": { "value": "wall_line_width_0 * 2" }, - "support_xy_distance_overhang": { "value": "wall_line_width_0" }, - "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" }, - "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, - "support_wall_count": { "value": 1 }, - "support_brim_enable": { "value": true }, - "support_brim_width": { "value": 4 }, - - "support_interface_enable": { "value": true }, - "support_interface_height": { "value": "layer_height * 4" }, - "support_interface_density": { "value": 33.333 }, - "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, - "minimum_support_area": { "value": 2 }, - "minimum_interface_area": { "value": 10 }, - "top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" }, - "wall_thickness": {"value": "line_width * 2" } - + "wall_0_wipe_dist": { "value": 0.0 }, + "wall_thickness": { "value": "line_width * 2" }, + "z_seam_corner": { "value": "'z_seam_corner_none'" }, + "z_seam_type": { "value": "'back'" } } -} - +} \ No newline at end of file diff --git a/resources/definitions/artillery_genius.def.json b/resources/definitions/artillery_genius.def.json index 55b7bad99f..3ccab5bfa1 100644 --- a/resources/definitions/artillery_genius.def.json +++ b/resources/definitions/artillery_genius.def.json @@ -1,19 +1,24 @@ { - "name": "Artillery Genius", "version": 2, + "name": "Artillery Genius", "inherits": "artillery_base", - "overrides": { - "machine_name": { "default_value": "Artillery Genius" }, - "machine_width": { "default_value": 220 }, + "metadata": + { + "visible": true, + "platform": "artillery_genius.stl", + "platform_offset": [ + 0, + -72, + -20 + ], + "quality_definition": "artillery_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, "machine_depth": { "default_value": 220 }, "machine_height": { "default_value": 250 }, - "gantry_height": { "value": 25 } - - }, - "metadata": { - "quality_definition": "artillery_base", - "visible": true, - "platform": "artillery_genius.stl", - "platform_offset": [ -0, -72, -20] + "machine_name": { "default_value": "Artillery Genius" }, + "machine_width": { "default_value": 220 } } -} +} \ No newline at end of file diff --git a/resources/definitions/artillery_hornet.def.json b/resources/definitions/artillery_hornet.def.json new file mode 100644 index 0000000000..d6185c5d65 --- /dev/null +++ b/resources/definitions/artillery_hornet.def.json @@ -0,0 +1,25 @@ +{ + "version": 2, + "name": "Artillery Hornet", + "inherits": "artillery_base", + "metadata": + { + "visible": true, + "author": "Wilds", + "platform": "artillery_hornet.stl", + "platform_offset": [ + 0, + -105.5, + 0 + ], + "quality_definition": "artillery_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, + "machine_depth": { "default_value": 220 }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "Artillery Hornet" }, + "machine_width": { "default_value": 220 } + } +} \ No newline at end of file diff --git a/resources/definitions/artillery_sidewinder_x1.def.json b/resources/definitions/artillery_sidewinder_x1.def.json index 8ae24837d6..9403d8adea 100644 --- a/resources/definitions/artillery_sidewinder_x1.def.json +++ b/resources/definitions/artillery_sidewinder_x1.def.json @@ -1,19 +1,24 @@ { - "name": "Artillery Sidewinder X1", "version": 2, + "name": "Artillery Sidewinder X1", "inherits": "artillery_base", - "overrides": { - "machine_name": { "default_value": "Artillery Sidewinder X1" }, - "machine_width": { "default_value": 300 }, + "metadata": + { + "visible": true, + "platform": "artillery_swx1.stl", + "platform_offset": [ + -200, + -100, + 250 + ], + "quality_definition": "artillery_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, "machine_depth": { "default_value": 300 }, "machine_height": { "default_value": 400 }, - "gantry_height": { "value": 25 } - - }, - "metadata": { - "quality_definition": "artillery_base", - "visible": true, - "platform": "artillery_swx1.stl", - "platform_offset": [ -200, -100, 250] + "machine_name": { "default_value": "Artillery Sidewinder X1" }, + "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/atmat_asterion.def.json b/resources/definitions/atmat_asterion.def.json index 402dc51c8c..71ad97398c 100644 --- a/resources/definitions/atmat_asterion.def.json +++ b/resources/definitions/atmat_asterion.def.json @@ -1,6 +1,6 @@ { - "name": "Asterion", "version": 2, + "name": "Asterion", "inherits": "atmat_signal_pro_base", "metadata": { @@ -10,10 +10,9 @@ }, "overrides": { - "machine_name": { "default_value": "Asterion" }, - "machine_width": { "default_value": 500 }, - "machine_depth": { "default_value": 500 }, - "machine_height": { "default_value": 600 } - + "machine_depth": { "default_value": 500 }, + "machine_height": { "default_value": 600 }, + "machine_name": { "default_value": "Asterion" }, + "machine_width": { "default_value": 500 } } -} +} \ No newline at end of file diff --git a/resources/definitions/atmat_asterion_ht.def.json b/resources/definitions/atmat_asterion_ht.def.json index 19c8d1f781..8231bf4153 100644 --- a/resources/definitions/atmat_asterion_ht.def.json +++ b/resources/definitions/atmat_asterion_ht.def.json @@ -1,6 +1,6 @@ { - "name": "Asterion HT", "version": 2, + "name": "Asterion HT", "inherits": "atmat_signal_pro_base", "metadata": { @@ -10,11 +10,10 @@ }, "overrides": { - "machine_name": { "default_value": "Asterion HT" }, - "machine_width": { "default_value": 500 }, - "machine_depth": { "default_value": 500 }, - "machine_height": { "default_value": 600 }, - "material_print_temperature": { "maximum_value_warning": 500 } - + "machine_depth": { "default_value": 500 }, + "machine_height": { "default_value": 600 }, + "machine_name": { "default_value": "Asterion HT" }, + "machine_width": { "default_value": 500 }, + "material_print_temperature": { "maximum_value_warning": 500 } } -} +} \ No newline at end of file diff --git a/resources/definitions/atmat_galaxy_500.def.json b/resources/definitions/atmat_galaxy_500.def.json index f0ed3be841..dd04c8869a 100644 --- a/resources/definitions/atmat_galaxy_500.def.json +++ b/resources/definitions/atmat_galaxy_500.def.json @@ -1,6 +1,6 @@ { - "name": "Galaxy 500", "version": 2, + "name": "Galaxy 500", "inherits": "atmat_signal_pro_base", "metadata": { @@ -9,28 +9,28 @@ }, "overrides": { - "machine_name": { "default_value": "Galaxy 500" }, - "machine_width": { "default_value": 400 }, - "machine_depth": { "default_value": 400 }, - "machine_height": { "default_value": 500 }, - "acceleration_layer_0": { "value": "250" }, - "acceleration_prime_tower": { "value": "750" }, - "acceleration_print": { "value": "750" }, - "acceleration_travel": { "value": "750" }, - "acceleration_support": { "value": "750" }, - "acceleration_support_interface": { "value": "750" }, - "acceleration_topbottom": { "value": "750" }, - "acceleration_wall": { "value": "750" }, - "acceleration_wall_0": { "value": "500" }, - "jerk_layer_0": { "value": "5" }, - "jerk_prime_tower": { "value": "jerk_print" }, - "jerk_print": { "value": "7.5" }, - "jerk_support": { "value": "jerk_print" }, - "jerk_support_interface": { "value": "jerk_print" }, - "jerk_topbottom": { "value": "jerk_print" }, - "jerk_wall": { "value": "jerk_print" }, - "jerk_wall_0": { "value": "jerk_print" }, - "jerk_travel": { "value": "jerk_layer_0" }, - "jerk_travel_layer_0": { "value": "jerk_layer_0" } + "acceleration_layer_0": { "value": "250" }, + "acceleration_prime_tower": { "value": "750" }, + "acceleration_print": { "value": "750" }, + "acceleration_support": { "value": "750" }, + "acceleration_support_interface": { "value": "750" }, + "acceleration_topbottom": { "value": "750" }, + "acceleration_travel": { "value": "750" }, + "acceleration_wall": { "value": "750" }, + "acceleration_wall_0": { "value": "500" }, + "jerk_layer_0": { "value": "5" }, + "jerk_prime_tower": { "value": "jerk_print" }, + "jerk_print": { "value": "7.5" }, + "jerk_support": { "value": "jerk_print" }, + "jerk_support_interface": { "value": "jerk_print" }, + "jerk_topbottom": { "value": "jerk_print" }, + "jerk_travel": { "value": "jerk_layer_0" }, + "jerk_travel_layer_0": { "value": "jerk_layer_0" }, + "jerk_wall": { "value": "jerk_print" }, + "jerk_wall_0": { "value": "jerk_print" }, + "machine_depth": { "default_value": 400 }, + "machine_height": { "default_value": 500 }, + "machine_name": { "default_value": "Galaxy 500" }, + "machine_width": { "default_value": 400 } } -} +} \ No newline at end of file diff --git a/resources/definitions/atmat_galaxy_600.def.json b/resources/definitions/atmat_galaxy_600.def.json index c5586eb514..980d04e216 100644 --- a/resources/definitions/atmat_galaxy_600.def.json +++ b/resources/definitions/atmat_galaxy_600.def.json @@ -1,6 +1,6 @@ { - "name": "Galaxy 600", "version": 2, + "name": "Galaxy 600", "inherits": "atmat_signal_pro_base", "metadata": { @@ -9,28 +9,28 @@ }, "overrides": { - "machine_name": { "default_value": "Galaxy 600" }, - "machine_width": { "default_value": 500 }, - "machine_depth": { "default_value": 500 }, - "machine_height": { "default_value": 600 }, - "acceleration_layer_0": { "value": "250" }, - "acceleration_prime_tower": { "value": "750" }, - "acceleration_print": { "value": "750" }, - "acceleration_travel": { "value": "750" }, - "acceleration_support": { "value": "750" }, - "acceleration_support_interface": { "value": "750" }, - "acceleration_topbottom": { "value": "750" }, - "acceleration_wall": { "value": "750" }, - "acceleration_wall_0": { "value": "500" }, - "jerk_layer_0": { "value": "5" }, - "jerk_prime_tower": { "value": "jerk_print" }, - "jerk_print": { "value": "7.5" }, - "jerk_support": { "value": "jerk_print" }, - "jerk_support_interface": { "value": "jerk_print" }, - "jerk_topbottom": { "value": "jerk_print" }, - "jerk_wall": { "value": "jerk_print" }, - "jerk_wall_0": { "value": "jerk_print" }, - "jerk_travel": { "value": "jerk_layer_0" }, - "jerk_travel_layer_0": { "value": "jerk_layer_0" } + "acceleration_layer_0": { "value": "250" }, + "acceleration_prime_tower": { "value": "750" }, + "acceleration_print": { "value": "750" }, + "acceleration_support": { "value": "750" }, + "acceleration_support_interface": { "value": "750" }, + "acceleration_topbottom": { "value": "750" }, + "acceleration_travel": { "value": "750" }, + "acceleration_wall": { "value": "750" }, + "acceleration_wall_0": { "value": "500" }, + "jerk_layer_0": { "value": "5" }, + "jerk_prime_tower": { "value": "jerk_print" }, + "jerk_print": { "value": "7.5" }, + "jerk_support": { "value": "jerk_print" }, + "jerk_support_interface": { "value": "jerk_print" }, + "jerk_topbottom": { "value": "jerk_print" }, + "jerk_travel": { "value": "jerk_layer_0" }, + "jerk_travel_layer_0": { "value": "jerk_layer_0" }, + "jerk_wall": { "value": "jerk_print" }, + "jerk_wall_0": { "value": "jerk_print" }, + "machine_depth": { "default_value": 500 }, + "machine_height": { "default_value": 600 }, + "machine_name": { "default_value": "Galaxy 600" }, + "machine_width": { "default_value": 500 } } -} +} \ No newline at end of file diff --git a/resources/definitions/atmat_signal_pro_300_v1.def.json b/resources/definitions/atmat_signal_pro_300_v1.def.json index 27e65b92c2..6cba3191d2 100644 --- a/resources/definitions/atmat_signal_pro_300_v1.def.json +++ b/resources/definitions/atmat_signal_pro_300_v1.def.json @@ -1,6 +1,6 @@ { - "name": "Signal Pro 300 v1", "version": 2, + "name": "Signal Pro 300 v1", "inherits": "atmat_signal_pro_base", "metadata": { @@ -9,28 +9,28 @@ }, "overrides": { - "machine_name": { "default_value": "Signal Pro 300 v1" }, - "machine_width": { "default_value": 300 }, - "machine_depth": { "default_value": 300 }, - "machine_height": { "default_value": 300 }, - "acceleration_layer_0": { "value": "250" }, - "acceleration_prime_tower": { "value": "750" }, - "acceleration_print": { "value": "750" }, - "acceleration_travel": { "value": "750" }, - "acceleration_support": { "value": "750" }, - "acceleration_support_interface": { "value": "750" }, - "acceleration_topbottom": { "value": "750" }, - "acceleration_wall": { "value": "750" }, - "acceleration_wall_0": { "value": "500" }, - "jerk_layer_0": { "value": "5" }, - "jerk_prime_tower": { "value": "jerk_print" }, - "jerk_print": { "value": "7.5" }, - "jerk_support": { "value": "jerk_print" }, - "jerk_support_interface": { "value": "jerk_print" }, - "jerk_topbottom": { "value": "jerk_print" }, - "jerk_wall": { "value": "jerk_print" }, - "jerk_wall_0": { "value": "jerk_print" }, - "jerk_travel": { "value": "jerk_layer_0" }, - "jerk_travel_layer_0": { "value": "jerk_layer_0" } + "acceleration_layer_0": { "value": "250" }, + "acceleration_prime_tower": { "value": "750" }, + "acceleration_print": { "value": "750" }, + "acceleration_support": { "value": "750" }, + "acceleration_support_interface": { "value": "750" }, + "acceleration_topbottom": { "value": "750" }, + "acceleration_travel": { "value": "750" }, + "acceleration_wall": { "value": "750" }, + "acceleration_wall_0": { "value": "500" }, + "jerk_layer_0": { "value": "5" }, + "jerk_prime_tower": { "value": "jerk_print" }, + "jerk_print": { "value": "7.5" }, + "jerk_support": { "value": "jerk_print" }, + "jerk_support_interface": { "value": "jerk_print" }, + "jerk_topbottom": { "value": "jerk_print" }, + "jerk_travel": { "value": "jerk_layer_0" }, + "jerk_travel_layer_0": { "value": "jerk_layer_0" }, + "jerk_wall": { "value": "jerk_print" }, + "jerk_wall_0": { "value": "jerk_print" }, + "machine_depth": { "default_value": 300 }, + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "Signal Pro 300 v1" }, + "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/atmat_signal_pro_300_v2.def.json b/resources/definitions/atmat_signal_pro_300_v2.def.json index 39e10ce549..1fc6d565f3 100644 --- a/resources/definitions/atmat_signal_pro_300_v2.def.json +++ b/resources/definitions/atmat_signal_pro_300_v2.def.json @@ -1,6 +1,6 @@ { - "name": "Signal Pro 300 v2", "version": 2, + "name": "Signal Pro 300 v2", "inherits": "atmat_signal_pro_base", "metadata": { @@ -10,9 +10,9 @@ }, "overrides": { - "machine_name": { "default_value": "Signal Pro 300 v2" }, - "machine_width": { "default_value": 300 }, - "machine_depth": { "default_value": 300 }, - "machine_height": { "default_value": 300 } + "machine_depth": { "default_value": 300 }, + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "Signal Pro 300 v2" }, + "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/atmat_signal_pro_400_v1.def.json b/resources/definitions/atmat_signal_pro_400_v1.def.json index ef0d25c0af..7c4b86a2a0 100644 --- a/resources/definitions/atmat_signal_pro_400_v1.def.json +++ b/resources/definitions/atmat_signal_pro_400_v1.def.json @@ -1,6 +1,6 @@ { - "name": "Signal Pro 400 v1", "version": 2, + "name": "Signal Pro 400 v1", "inherits": "atmat_signal_pro_base", "metadata": { @@ -9,28 +9,28 @@ }, "overrides": { - "machine_name": { "default_value": "Signal Pro 400 v1" }, - "machine_width": { "default_value": 300 }, - "machine_depth": { "default_value": 300 }, - "machine_height": { "default_value": 400 }, - "acceleration_layer_0": { "value": "250" }, - "acceleration_prime_tower": { "value": "750" }, - "acceleration_print": { "value": "750" }, - "acceleration_travel": { "value": "750" }, - "acceleration_support": { "value": "750" }, - "acceleration_support_interface": { "value": "750" }, - "acceleration_topbottom": { "value": "750" }, - "acceleration_wall": { "value": "750" }, - "acceleration_wall_0": { "value": "500" }, - "jerk_layer_0": { "value": "5" }, - "jerk_prime_tower": { "value": "jerk_print" }, - "jerk_print": { "value": "7.5" }, - "jerk_support": { "value": "jerk_print" }, - "jerk_support_interface": { "value": "jerk_print" }, - "jerk_topbottom": { "value": "jerk_print" }, - "jerk_wall": { "value": "jerk_print" }, - "jerk_wall_0": { "value": "jerk_print" }, - "jerk_travel": { "value": "jerk_layer_0" }, - "jerk_travel_layer_0": { "value": "jerk_layer_0" } + "acceleration_layer_0": { "value": "250" }, + "acceleration_prime_tower": { "value": "750" }, + "acceleration_print": { "value": "750" }, + "acceleration_support": { "value": "750" }, + "acceleration_support_interface": { "value": "750" }, + "acceleration_topbottom": { "value": "750" }, + "acceleration_travel": { "value": "750" }, + "acceleration_wall": { "value": "750" }, + "acceleration_wall_0": { "value": "500" }, + "jerk_layer_0": { "value": "5" }, + "jerk_prime_tower": { "value": "jerk_print" }, + "jerk_print": { "value": "7.5" }, + "jerk_support": { "value": "jerk_print" }, + "jerk_support_interface": { "value": "jerk_print" }, + "jerk_topbottom": { "value": "jerk_print" }, + "jerk_travel": { "value": "jerk_layer_0" }, + "jerk_travel_layer_0": { "value": "jerk_layer_0" }, + "jerk_wall": { "value": "jerk_print" }, + "jerk_wall_0": { "value": "jerk_print" }, + "machine_depth": { "default_value": 300 }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Signal Pro 400 v1" }, + "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/atmat_signal_pro_400_v2.def.json b/resources/definitions/atmat_signal_pro_400_v2.def.json index a147cbe2d6..5703068582 100644 --- a/resources/definitions/atmat_signal_pro_400_v2.def.json +++ b/resources/definitions/atmat_signal_pro_400_v2.def.json @@ -1,6 +1,6 @@ { - "name": "Signal Pro 400 v2", "version": 2, + "name": "Signal Pro 400 v2", "inherits": "atmat_signal_pro_base", "metadata": { @@ -10,9 +10,9 @@ }, "overrides": { - "machine_name": { "default_value": "Signal Pro 400 v2" }, - "machine_width": { "default_value": 300 }, - "machine_depth": { "default_value": 300 }, - "machine_height": { "default_value": 400 } + "machine_depth": { "default_value": 300 }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Signal Pro 400 v2" }, + "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/atmat_signal_pro_500_v1.def.json b/resources/definitions/atmat_signal_pro_500_v1.def.json index 60b5fee1bc..dd838eab1e 100644 --- a/resources/definitions/atmat_signal_pro_500_v1.def.json +++ b/resources/definitions/atmat_signal_pro_500_v1.def.json @@ -1,6 +1,6 @@ { - "name": "Signal Pro 500 v1", "version": 2, + "name": "Signal Pro 500 v1", "inherits": "atmat_signal_pro_base", "metadata": { @@ -9,28 +9,28 @@ }, "overrides": { - "machine_name": { "default_value": "Signal Pro 500 v1" }, - "machine_width": { "default_value": 300 }, - "machine_depth": { "default_value": 300 }, - "machine_height": { "default_value": 500 }, - "acceleration_layer_0": { "value": "250" }, - "acceleration_prime_tower": { "value": "750" }, - "acceleration_print": { "value": "750" }, - "acceleration_travel": { "value": "750" }, - "acceleration_support": { "value": "750" }, - "acceleration_support_interface": { "value": "750" }, - "acceleration_topbottom": { "value": "750" }, - "acceleration_wall": { "value": "750" }, - "acceleration_wall_0": { "value": "500" }, - "jerk_layer_0": { "value": "5" }, - "jerk_prime_tower": { "value": "jerk_print" }, - "jerk_print": { "value": "7.5" }, - "jerk_support": { "value": "jerk_print" }, - "jerk_support_interface": { "value": "jerk_print" }, - "jerk_topbottom": { "value": "jerk_print" }, - "jerk_wall": { "value": "jerk_print" }, - "jerk_wall_0": { "value": "jerk_print" }, - "jerk_travel": { "value": "jerk_layer_0" }, - "jerk_travel_layer_0": { "value": "jerk_layer_0" } + "acceleration_layer_0": { "value": "250" }, + "acceleration_prime_tower": { "value": "750" }, + "acceleration_print": { "value": "750" }, + "acceleration_support": { "value": "750" }, + "acceleration_support_interface": { "value": "750" }, + "acceleration_topbottom": { "value": "750" }, + "acceleration_travel": { "value": "750" }, + "acceleration_wall": { "value": "750" }, + "acceleration_wall_0": { "value": "500" }, + "jerk_layer_0": { "value": "5" }, + "jerk_prime_tower": { "value": "jerk_print" }, + "jerk_print": { "value": "7.5" }, + "jerk_support": { "value": "jerk_print" }, + "jerk_support_interface": { "value": "jerk_print" }, + "jerk_topbottom": { "value": "jerk_print" }, + "jerk_travel": { "value": "jerk_layer_0" }, + "jerk_travel_layer_0": { "value": "jerk_layer_0" }, + "jerk_wall": { "value": "jerk_print" }, + "jerk_wall_0": { "value": "jerk_print" }, + "machine_depth": { "default_value": 300 }, + "machine_height": { "default_value": 500 }, + "machine_name": { "default_value": "Signal Pro 500 v1" }, + "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/atmat_signal_pro_500_v2.def.json b/resources/definitions/atmat_signal_pro_500_v2.def.json index 0ffe012155..e415667f49 100644 --- a/resources/definitions/atmat_signal_pro_500_v2.def.json +++ b/resources/definitions/atmat_signal_pro_500_v2.def.json @@ -1,6 +1,6 @@ { - "name": "Signal Pro 500 v2", "version": 2, + "name": "Signal Pro 500 v2", "inherits": "atmat_signal_pro_base", "metadata": { @@ -10,9 +10,9 @@ }, "overrides": { - "machine_name": { "default_value": "Signal Pro 500 v2" }, - "machine_width": { "default_value": 300 }, - "machine_depth": { "default_value": 300 }, - "machine_height": { "default_value": 500 } + "machine_depth": { "default_value": 300 }, + "machine_height": { "default_value": 500 }, + "machine_name": { "default_value": "Signal Pro 500 v2" }, + "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/atmat_signal_pro_base.def.json b/resources/definitions/atmat_signal_pro_base.def.json index 0d1c5a75c2..6f64fab01b 100644 --- a/resources/definitions/atmat_signal_pro_base.def.json +++ b/resources/definitions/atmat_signal_pro_base.def.json @@ -1,77 +1,14 @@ { - "name": "Signal Pro Base", "version": 2, + "name": "Signal Pro Base", "inherits": "fdmprinter", - "metadata": + "metadata": { "visible": false, "author": "ATMAT", "manufacturer": "ATMAT sp. z o.o.", "file_formats": "text/x-gcode", - "preferred_quality_type": "fast", - "has_machine_quality": true, - "has_materials": true, - "has_variants": true, - "variants_name": "Nozzle", - "preferred_variant_name": "V6 0.40mm", - "machine_extruder_trains": - { - "0": "atmat_signal_pro_extruder_left", - "1": "atmat_signal_pro_extruder_right" - }, - "preferred_material": "generic_pla_175", - "supports_usb_connection": false, - "supports_network_connection": false, "exclude_materials": [ - "ultimaker_abs_black", - "ultimaker_abs_blue", - "ultimaker_abs_green", - "ultimaker_abs_grey", - "ultimaker_abs_orange", - "ultimaker_abs_pearl-gold", - "ultimaker_abs_red", - "ultimaker_abs_silver-metallic", - "ultimaker_abs_white", - "ultimaker_abs_yellow", - "ultimaker_bam", - "ultimaker_cpe_black", - "ultimaker_cpe_blue", - "ultimaker_cpe_dark-grey", - "ultimaker_cpe_green", - "ultimaker_cpe_light-grey", - "ultimaker_cpe_plus_black", - "ultimaker_cpe_plus_transparent", - "ultimaker_cpe_plus_white", - "ultimaker_cpe_red", - "ultimaker_cpe_transparent", - "ultimaker_cpe_white", - "ultimaker_cpe_yellow", - "ultimaker_nylon_black", - "ultimaker_nylon_transparent", - "ultimaker_pc_black", - "ultimaker_pc_transparent", - "ultimaker_pc_white", - "ultimaker_pla_black", - "ultimaker_pla_blue", - "ultimaker_pla_green", - "ultimaker_pla_magenta", - "ultimaker_pla_orange", - "ultimaker_pla_pearl-white", - "ultimaker_pla_red", - "ultimaker_pla_silver-metallic", - "ultimaker_pla_transparent", - "ultimaker_pla_white", - "ultimaker_pla_yellow", - "ultimaker_pp_transparent", - "ultimaker_pva", - "ultimaker_tough_pla_black", - "ultimaker_tough_pla_green", - "ultimaker_tough_pla_red", - "ultimaker_tough_pla_white", - "ultimaker_tpu_black", - "ultimaker_tpu_blue", - "ultimaker_tpu_red", - "ultimaker_tpu_white", "chromatik_pla", "dsm_arnitel2045_175", "dsm_novamid1070_175", @@ -128,55 +65,6 @@ "tizyx_pla", "tizyx_pla_bois", "tizyx_pva", - "ultimaker_abs_black", - "ultimaker_abs_blue", - "ultimaker_abs_green", - "ultimaker_abs_grey", - "ultimaker_abs_orange", - "ultimaker_abs_pearl-gold", - "ultimaker_abs_red", - "ultimaker_abs_silver-metallic", - "ultimaker_abs_white", - "ultimaker_abs_yellow", - "ultimaker_bam", - "ultimaker_cpe_black", - "ultimaker_cpe_blue", - "ultimaker_cpe_dark-grey", - "ultimaker_cpe_green", - "ultimaker_cpe_light-grey", - "ultimaker_cpe_plus_black", - "ultimaker_cpe_plus_transparent", - "ultimaker_cpe_plus_white", - "ultimaker_cpe_red", - "ultimaker_cpe_transparent", - "ultimaker_cpe_white", - "ultimaker_cpe_yellow", - "ultimaker_nylon_black", - "ultimaker_nylon_transparent", - "ultimaker_pc_black", - "ultimaker_pc_transparent", - "ultimaker_pc_white", - "ultimaker_pla_black", - "ultimaker_pla_blue", - "ultimaker_pla_green", - "ultimaker_pla_magenta", - "ultimaker_pla_orange", - "ultimaker_pla_pearl-white", - "ultimaker_pla_red", - "ultimaker_pla_silver-metallic", - "ultimaker_pla_transparent", - "ultimaker_pla_white", - "ultimaker_pla_yellow", - "ultimaker_pp_transparent", - "ultimaker_pva", - "ultimaker_tough_pla_black", - "ultimaker_tough_pla_green", - "ultimaker_tough_pla_red", - "ultimaker_tough_pla_white", - "ultimaker_tpu_black", - "ultimaker_tpu_blue", - "ultimaker_tpu_red", - "ultimaker_tpu_white", "verbatim_bvoh_175", "Vertex_Delta_ABS", "Vertex_Delta_PET", @@ -188,124 +76,161 @@ "Vertex_Delta_TPU", "zyyx_pro_flex", "zyyx_pro_pla" - - ] + ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { + "0": "atmat_signal_pro_extruder_left", + "1": "atmat_signal_pro_extruder_right" + }, + "preferred_material": "generic_pla_175", + "preferred_quality_type": "fast", + "preferred_variant_name": "V6 0.40mm", + "supports_network_connection": false, + "supports_usb_connection": false, + "variants_name": "Nozzle" }, "overrides": { - "machine_name": { "default_value": "Signal Pro" }, - "machine_width": { "default_value": 300 }, - "machine_depth": { "default_value": 300 }, - "machine_height": { "default_value": 300 }, - "gantry_height": { "value": 30 }, - "machine_extruder_count": { "default_value": 2 }, - "machine_heated_bed": { "default_value": true }, - "machine_heated_build_volume": { "default_value": true }, - "build_volume_temperature": { "maximum_value_warning": 45 }, - "material_print_temperature": { "maximum_value_warning": 295 }, - "material_bed_temperature": { "maximum_value_warning": 140 }, - "machine_max_acceleration_x": { "default_value": 1500 }, - "machine_max_acceleration_y": { "default_value": 1500 }, - "machine_max_acceleration_z": { "default_value": 250 }, - "machine_acceleration": { "default_value": 1500 }, - "machine_max_jerk_xy": { "default_value": 15 }, - "machine_max_jerk_z": { "default_value": 1 }, - "machine_max_jerk_e": { "default_value": 15 }, - "machine_head_with_fans_polygon": { "default_value": [ [-35, 65], [-35, -50], [35, -50], [35, 65] ] }, - "machine_max_feedrate_z": { "default_value": 10 }, - "machine_max_feedrate_e": { "default_value": 120 }, - "machine_gcode_flavor": { "default_value": "Marlin" }, - "machine_start_gcode": { "default_value": "G21 ; set units to millimeters\nG90 ; use absolute positioning\nM82 ; absolute extrusion mode\nG28 ; home all without mesh bed level\nM420 S1\nG92 E0.0 ; reset extruder distance position\nG1 Z0.25\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E21.5 F1000.0 ; intro line\nG92 E0.0 ; reset extruder distance position" }, - "machine_end_gcode": { "default_value": "M104 T0 S0 ;extruder heater off\nM104 T1 S0 ;extruder heater off\nM140 S0 ;heated bed heater off\nG91\nG1 Z1 F420 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+1 E-1 F300 ;move Z up a bit and retract filament even more\nG90 ;absolute positioning\nG1 X0 Y300 F6000 ;move the head out of the way\nM84 ;steppers off" }, - "adhesion_type": { "default_value": "skirt" }, - "skirt_brim_minimal_length": { "value": "550" }, - "retraction_amount": { "value": "1" }, - "retraction_speed": { "value": "50", "maximum_value_warning": "130" }, - "retraction_retract_speed": { "value": "retraction_speed", "maximum_value_warning": "130" }, - "retraction_prime_speed": { "value": "math.ceil(retraction_speed * 0.4)", "maximum_value_warning": "130" }, - "retraction_hop_enabled": { "value": "True" }, - "retraction_hop": { "value": "0.5" }, - "retraction_combing": { "value": "'noskin'" }, - "retraction_combing_max_distance": { "value": "10" }, - "travel_avoid_other_parts": { "value": "True" }, - "travel_avoid_supports": { "value": "True" }, - "speed_travel": { "maximum_value": "150", "value": "150", "maximum_value_warning": "151" }, - "speed_travel_layer_0": { "value": "math.ceil(speed_travel * 0.4)" }, - "speed_layer_0": { "value": "math.ceil(speed_print * 0.25)" }, - "speed_wall": { "value": "math.ceil(speed_print * 0.50)" }, - "speed_wall_0": { "value": "math.ceil(speed_print * 0.50)" }, - "speed_wall_x": { "value": "math.ceil(speed_print * 0.75)" }, - "speed_topbottom": { "value": "math.ceil(speed_print * 0.45)" }, - "speed_roofing": { "value": "math.ceil(speed_print * 0.45)" }, - "speed_slowdown_layers": { "value": "2" }, - "roofing_layer_count": { "value": "1" }, - "optimize_wall_printing_order": { "value": "True" }, - "infill_enable_travel_optimization": { "value": "True" }, - "minimum_polygon_circumference": { "value": "0.2" }, - "wall_overhang_angle": { "value": "75" }, - "wall_overhang_speed_factor": { "value": "50" }, - "bridge_settings_enabled": { "value": "True" }, - "bridge_wall_coast": { "value": "10" }, - "bridge_fan_speed": { "value": "100" }, - "bridge_fan_speed_2": { "resolve": "max(cool_fan_speed, 50)" }, - "bridge_fan_speed_3": { "resolve": "max(cool_fan_speed, 20)" }, - "alternate_extra_perimeter": { "value": "True" }, - "cool_min_layer_time_fan_speed_max": { "value": "20" }, - "cool_min_layer_time": { "value": "15" }, - "cool_fan_speed_min": { "value": "cool_fan_speed" }, - "cool_fan_full_at_height": { "value": "resolveOrValue('layer_height_0') + resolveOrValue('layer_height') * max(1, cool_fan_full_layer - 1)" }, - "cool_fan_full_layer": { "value": "4" }, - "layer_height_0": { "resolve": "max(0.2, min(extruderValues('layer_height')))" }, - "line_width": { "value": "machine_nozzle_size * 1.125" }, - "wall_line_width": { "value": "machine_nozzle_size" }, - "fill_outline_gaps": { "value": "True" }, - "meshfix_maximum_resolution": { "value": "0.01" }, - "meshfix_maximum_deviation": { "value": "layer_height / 2" }, - "infill_before_walls": { "value": "False" }, - "zig_zaggify_infill": { "value": "True" }, - "min_infill_area": { "value": "5.0" }, - "acceleration_enabled": { "value": "True" }, - "acceleration_layer_0": { "value": "250" }, - "acceleration_prime_tower": { "value": "1000" }, - "acceleration_print": { "value": "1000" }, - "acceleration_travel": { "value": "1000" }, - "acceleration_support": { "value": "1000" }, - "acceleration_support_interface": { "value": "750" }, - "acceleration_topbottom": { "value": "750" }, - "acceleration_wall": { "value": "750" }, - "acceleration_wall_0": { "value": "500" }, - "jerk_enabled": { "value": "True" }, - "jerk_layer_0": { "value": "5" }, - "jerk_prime_tower": { "value": "jerk_print" }, - "jerk_print": { "value": "10" }, - "jerk_support": { "value": "jerk_print" }, - "jerk_support_interface": { "value": "jerk_print" }, - "jerk_topbottom": { "value": "jerk_print" }, - "jerk_wall": { "value": "jerk_print" }, - "jerk_wall_0": { "value": "jerk_print" }, - "jerk_travel": { "value": "jerk_layer_0" }, - "jerk_travel_layer_0": { "value": "jerk_layer_0" }, - "prime_tower_position_x": { "value": "270" }, - "prime_tower_position_y": { "value": "270" }, - "extruder_prime_pos_abs": { "value": "True" }, - "switch_extruder_prime_speed": { "value": "15" }, - "switch_extruder_retraction_amount": { "value": "2" }, - "support_xy_distance": { "value": "wall_line_width_0 * 2.5" }, - "support_xy_distance_overhang": { "value": "wall_line_width_0" }, - "support_angle": { "value": "60" }, - "support_bottom_distance": { "value": "support_z_distance / 2" }, - "support_pattern": { "default_value": "zigzag" }, - "support_top_distance": { "value": "support_z_distance" }, - "support_use_towers": { "value": "True" }, - "support_z_distance": { "value": "layer_height" }, - "support_interface_enable": { "value": "True" }, - "support_interface_height": { "value": "1" }, - "support_interface_skip_height": { "value": "layer_height" }, - "support_bottom_enable": { "value": "False" }, - "support_join_distance": { "value": "1" }, - "support_offset": { "value": "1.5" }, - "support_infill_rate": { "value": "20" }, - "support_brim_enable": { "value": "True" }, - "prime_tower_enable": { "value": "True" } + "acceleration_enabled": { "value": "True" }, + "acceleration_layer_0": { "value": "250" }, + "acceleration_prime_tower": { "value": "1000" }, + "acceleration_print": { "value": "1000" }, + "acceleration_support": { "value": "1000" }, + "acceleration_support_interface": { "value": "750" }, + "acceleration_topbottom": { "value": "750" }, + "acceleration_travel": { "value": "1000" }, + "acceleration_wall": { "value": "750" }, + "acceleration_wall_0": { "value": "500" }, + "adhesion_type": { "default_value": "skirt" }, + "alternate_extra_perimeter": { "value": "True" }, + "bridge_fan_speed": { "value": "100" }, + "bridge_fan_speed_2": { "resolve": "max(cool_fan_speed, 50)" }, + "bridge_fan_speed_3": { "resolve": "max(cool_fan_speed, 20)" }, + "bridge_settings_enabled": { "value": "True" }, + "bridge_wall_coast": { "value": "10" }, + "build_volume_temperature": { "maximum_value_warning": 45 }, + "cool_fan_full_at_height": { "value": "resolveOrValue('layer_height_0') + resolveOrValue('layer_height') * max(1, cool_fan_full_layer - 1)" }, + "cool_fan_full_layer": { "value": "4" }, + "cool_fan_speed_min": { "value": "cool_fan_speed" }, + "cool_min_layer_time": { "value": "15" }, + "cool_min_layer_time_fan_speed_max": { "value": "20" }, + "extruder_prime_pos_abs": { "value": "True" }, + "fill_outline_gaps": { "value": "True" }, + "gantry_height": { "value": 30 }, + "infill_before_walls": { "value": "False" }, + "infill_enable_travel_optimization": { "value": "True" }, + "jerk_enabled": { "value": "True" }, + "jerk_layer_0": { "value": "5" }, + "jerk_prime_tower": { "value": "jerk_print" }, + "jerk_print": { "value": "10" }, + "jerk_support": { "value": "jerk_print" }, + "jerk_support_interface": { "value": "jerk_print" }, + "jerk_topbottom": { "value": "jerk_print" }, + "jerk_travel": { "value": "jerk_layer_0" }, + "jerk_travel_layer_0": { "value": "jerk_layer_0" }, + "jerk_wall": { "value": "jerk_print" }, + "jerk_wall_0": { "value": "jerk_print" }, + "layer_height_0": { "resolve": "max(0.2, min(extruderValues('layer_height')))" }, + "line_width": { "value": "machine_nozzle_size * 1.125" }, + "machine_acceleration": { "default_value": 1500 }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "M104 T0 S0 ;extruder heater off\nM104 T1 S0 ;extruder heater off\nM140 S0 ;heated bed heater off\nG91\nG1 Z1 F420 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+1 E-1 F300 ;move Z up a bit and retract filament even more\nG90 ;absolute positioning\nG1 X0 Y300 F6000 ;move the head out of the way\nM84 ;steppers off" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-35, 65], + [-35, -50], + [35, -50], + [35, 65] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_heated_build_volume": { "default_value": true }, + "machine_height": { "default_value": 300 }, + "machine_max_acceleration_x": { "default_value": 1500 }, + "machine_max_acceleration_y": { "default_value": 1500 }, + "machine_max_acceleration_z": { "default_value": 250 }, + "machine_max_feedrate_e": { "default_value": 120 }, + "machine_max_feedrate_z": { "default_value": 10 }, + "machine_max_jerk_e": { "default_value": 15 }, + "machine_max_jerk_xy": { "default_value": 15 }, + "machine_max_jerk_z": { "default_value": 1 }, + "machine_name": { "default_value": "Signal Pro" }, + "machine_start_gcode": { "default_value": "G21 ; set units to millimeters\nG90 ; use absolute positioning\nM82 ; absolute extrusion mode\nG28 ; home all without mesh bed level\nM420 S1\nG92 E0.0 ; reset extruder distance position\nG1 Z0.25\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E21.5 F1000.0 ; intro line\nG92 E0.0 ; reset extruder distance position" }, + "machine_width": { "default_value": 300 }, + "material_bed_temperature": { "maximum_value_warning": 140 }, + "material_print_temperature": { "maximum_value_warning": 295 }, + "meshfix_maximum_deviation": { "value": "layer_height / 2" }, + "meshfix_maximum_resolution": { "value": "0.01" }, + "min_infill_area": { "value": "5.0" }, + "minimum_polygon_circumference": { "value": "0.2" }, + "optimize_wall_printing_order": { "value": "True" }, + "prime_tower_enable": { "value": "True" }, + "prime_tower_position_x": { "value": "270" }, + "prime_tower_position_y": { "value": "270" }, + "retraction_amount": { "value": "1" }, + "retraction_combing": { "value": "'noskin'" }, + "retraction_combing_max_distance": { "value": "10" }, + "retraction_hop": { "value": "0.5" }, + "retraction_hop_enabled": { "value": "True" }, + "retraction_prime_speed": + { + "maximum_value_warning": "130", + "value": "math.ceil(retraction_speed * 0.4)" + }, + "retraction_retract_speed": + { + "maximum_value_warning": "130", + "value": "retraction_speed" + }, + "retraction_speed": + { + "maximum_value_warning": "130", + "value": "50" + }, + "roofing_layer_count": { "value": "1" }, + "skirt_brim_minimal_length": { "value": "550" }, + "speed_layer_0": { "value": "math.ceil(speed_print * 0.25)" }, + "speed_roofing": { "value": "math.ceil(speed_print * 0.45)" }, + "speed_slowdown_layers": { "value": "2" }, + "speed_topbottom": { "value": "math.ceil(speed_print * 0.45)" }, + "speed_travel": + { + "maximum_value": "150", + "maximum_value_warning": "151", + "value": "150" + }, + "speed_travel_layer_0": { "value": "math.ceil(speed_travel * 0.4)" }, + "speed_wall": { "value": "math.ceil(speed_print * 0.50)" }, + "speed_wall_0": { "value": "math.ceil(speed_print * 0.50)" }, + "speed_wall_x": { "value": "math.ceil(speed_print * 0.75)" }, + "support_angle": { "value": "60" }, + "support_bottom_distance": { "value": "support_z_distance / 2" }, + "support_bottom_enable": { "value": "False" }, + "support_brim_enable": { "value": "True" }, + "support_infill_rate": { "value": "20" }, + "support_interface_enable": { "value": "True" }, + "support_interface_height": { "value": "1" }, + "support_interface_skip_height": { "value": "layer_height" }, + "support_join_distance": { "value": "1" }, + "support_offset": { "value": "1.5" }, + "support_pattern": { "default_value": "zigzag" }, + "support_top_distance": { "value": "support_z_distance" }, + "support_xy_distance": { "value": "wall_line_width_0 * 2.5" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_z_distance": { "value": "layer_height" }, + "switch_extruder_prime_speed": { "value": "15" }, + "switch_extruder_retraction_amount": { "value": "2" }, + "travel_avoid_other_parts": { "value": "True" }, + "travel_avoid_supports": { "value": "True" }, + "wall_line_width": { "value": "machine_nozzle_size" }, + "wall_overhang_angle": { "value": "75" }, + "wall_overhang_speed_factor": { "value": "50" }, + "zig_zaggify_infill": { "value": "True" } } } \ No newline at end of file diff --git a/resources/definitions/atmat_signal_xl.def.json b/resources/definitions/atmat_signal_xl.def.json index 855ac89bb5..d89f57b6fe 100644 --- a/resources/definitions/atmat_signal_xl.def.json +++ b/resources/definitions/atmat_signal_xl.def.json @@ -1,6 +1,6 @@ { - "name": "Signal XL", "version": 2, + "name": "Signal XL", "inherits": "atmat_signal_pro_base", "metadata": { @@ -9,32 +9,31 @@ }, "overrides": { - "machine_name": { "default_value": "Signal XL" }, - "machine_width": { "default_value": 310 }, - "machine_depth": { "default_value": 320 }, - "machine_height": { "default_value": 260 }, - "acceleration_layer_0": { "value": "250" }, - "acceleration_prime_tower": { "value": "750" }, - "acceleration_print": { "value": "750" }, - "acceleration_travel": { "value": "750" }, - "acceleration_support": { "value": "750" }, - "acceleration_support_interface": { "value": "750" }, - "acceleration_topbottom": { "value": "750" }, - "acceleration_wall": { "value": "750" }, - "acceleration_wall_0": { "value": "500" }, - "jerk_layer_0": { "value": "5" }, - "jerk_prime_tower": { "value": "jerk_print" }, - "jerk_print": { "value": "7.5" }, - "jerk_support": { "value": "jerk_print" }, - "jerk_support_interface": { "value": "jerk_print" }, - "jerk_topbottom": { "value": "jerk_print" }, - "jerk_wall": { "value": "jerk_print" }, - "jerk_wall_0": { "value": "jerk_print" }, - "jerk_travel": { "value": "jerk_layer_0" }, - "jerk_travel_layer_0": { "value": "jerk_layer_0" }, - "machine_extruder_count": { "default_value": 1 }, - "machine_heated_build_volume": { "default_value": false }, - "machine_gcode_flavor": { "default_value": "Repetier" } - + "acceleration_layer_0": { "value": "250" }, + "acceleration_prime_tower": { "value": "750" }, + "acceleration_print": { "value": "750" }, + "acceleration_support": { "value": "750" }, + "acceleration_support_interface": { "value": "750" }, + "acceleration_topbottom": { "value": "750" }, + "acceleration_travel": { "value": "750" }, + "acceleration_wall": { "value": "750" }, + "acceleration_wall_0": { "value": "500" }, + "jerk_layer_0": { "value": "5" }, + "jerk_prime_tower": { "value": "jerk_print" }, + "jerk_print": { "value": "7.5" }, + "jerk_support": { "value": "jerk_print" }, + "jerk_support_interface": { "value": "jerk_print" }, + "jerk_topbottom": { "value": "jerk_print" }, + "jerk_travel": { "value": "jerk_layer_0" }, + "jerk_travel_layer_0": { "value": "jerk_layer_0" }, + "jerk_wall": { "value": "jerk_print" }, + "jerk_wall_0": { "value": "jerk_print" }, + "machine_depth": { "default_value": 320 }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "Repetier" }, + "machine_heated_build_volume": { "default_value": false }, + "machine_height": { "default_value": 260 }, + "machine_name": { "default_value": "Signal XL" }, + "machine_width": { "default_value": 310 } } -} +} \ No newline at end of file diff --git a/resources/definitions/atmat_signal_xxl.def.json b/resources/definitions/atmat_signal_xxl.def.json index 25e2f4c102..fe8e6ab439 100644 --- a/resources/definitions/atmat_signal_xxl.def.json +++ b/resources/definitions/atmat_signal_xxl.def.json @@ -1,6 +1,6 @@ { - "name": "Signal XXL", "version": 2, + "name": "Signal XXL", "inherits": "atmat_signal_pro_base", "metadata": { @@ -9,32 +9,31 @@ }, "overrides": { - "machine_name": { "default_value": "Signal XXL" }, - "machine_width": { "default_value": 310 }, - "machine_depth": { "default_value": 320 }, - "machine_height": { "default_value": 385 }, - "acceleration_layer_0": { "value": "250" }, - "acceleration_prime_tower": { "value": "750" }, - "acceleration_print": { "value": "750" }, - "acceleration_travel": { "value": "750" }, - "acceleration_support": { "value": "750" }, - "acceleration_support_interface": { "value": "750" }, - "acceleration_topbottom": { "value": "750" }, - "acceleration_wall": { "value": "750" }, - "acceleration_wall_0": { "value": "500" }, - "jerk_layer_0": { "value": "5" }, - "jerk_prime_tower": { "value": "jerk_print" }, - "jerk_print": { "value": "7.5" }, - "jerk_support": { "value": "jerk_print" }, - "jerk_support_interface": { "value": "jerk_print" }, - "jerk_topbottom": { "value": "jerk_print" }, - "jerk_wall": { "value": "jerk_print" }, - "jerk_wall_0": { "value": "jerk_print" }, - "jerk_travel": { "value": "jerk_layer_0" }, - "jerk_travel_layer_0": { "value": "jerk_layer_0" }, - "machine_extruder_count": { "default_value": 1 }, - "machine_heated_build_volume": { "default_value": false }, - "machine_gcode_flavor": { "default_value": "Repetier" } - + "acceleration_layer_0": { "value": "250" }, + "acceleration_prime_tower": { "value": "750" }, + "acceleration_print": { "value": "750" }, + "acceleration_support": { "value": "750" }, + "acceleration_support_interface": { "value": "750" }, + "acceleration_topbottom": { "value": "750" }, + "acceleration_travel": { "value": "750" }, + "acceleration_wall": { "value": "750" }, + "acceleration_wall_0": { "value": "500" }, + "jerk_layer_0": { "value": "5" }, + "jerk_prime_tower": { "value": "jerk_print" }, + "jerk_print": { "value": "7.5" }, + "jerk_support": { "value": "jerk_print" }, + "jerk_support_interface": { "value": "jerk_print" }, + "jerk_topbottom": { "value": "jerk_print" }, + "jerk_travel": { "value": "jerk_layer_0" }, + "jerk_travel_layer_0": { "value": "jerk_layer_0" }, + "jerk_wall": { "value": "jerk_print" }, + "jerk_wall_0": { "value": "jerk_print" }, + "machine_depth": { "default_value": 320 }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "Repetier" }, + "machine_heated_build_volume": { "default_value": false }, + "machine_height": { "default_value": 385 }, + "machine_name": { "default_value": "Signal XXL" }, + "machine_width": { "default_value": 310 } } -} +} \ No newline at end of file diff --git a/resources/definitions/atmat_signal_xxxl.def.json b/resources/definitions/atmat_signal_xxxl.def.json index 502ce272f0..f1a5262c09 100644 --- a/resources/definitions/atmat_signal_xxxl.def.json +++ b/resources/definitions/atmat_signal_xxxl.def.json @@ -1,6 +1,6 @@ { - "name": "Signal XXXL", "version": 2, + "name": "Signal XXXL", "inherits": "atmat_signal_pro_base", "metadata": { @@ -9,32 +9,31 @@ }, "overrides": { - "machine_name": { "default_value": "Signal XXXL" }, - "machine_width": { "default_value": 310 }, - "machine_depth": { "default_value": 320 }, - "machine_height": { "default_value": 500 }, - "acceleration_layer_0": { "value": "250" }, - "acceleration_prime_tower": { "value": "750" }, - "acceleration_print": { "value": "750" }, - "acceleration_travel": { "value": "750" }, - "acceleration_support": { "value": "750" }, - "acceleration_support_interface": { "value": "750" }, - "acceleration_topbottom": { "value": "750" }, - "acceleration_wall": { "value": "750" }, - "acceleration_wall_0": { "value": "500" }, - "jerk_layer_0": { "value": "5" }, - "jerk_prime_tower": { "value": "jerk_print" }, - "jerk_print": { "value": "7.5" }, - "jerk_support": { "value": "jerk_print" }, - "jerk_support_interface": { "value": "jerk_print" }, - "jerk_topbottom": { "value": "jerk_print" }, - "jerk_wall": { "value": "jerk_print" }, - "jerk_wall_0": { "value": "jerk_print" }, - "jerk_travel": { "value": "jerk_layer_0" }, - "jerk_travel_layer_0": { "value": "jerk_layer_0" }, - "machine_extruder_count": { "default_value": 1 }, - "machine_heated_build_volume": { "default_value": false }, - "machine_gcode_flavor": { "default_value": "Repetier" } - + "acceleration_layer_0": { "value": "250" }, + "acceleration_prime_tower": { "value": "750" }, + "acceleration_print": { "value": "750" }, + "acceleration_support": { "value": "750" }, + "acceleration_support_interface": { "value": "750" }, + "acceleration_topbottom": { "value": "750" }, + "acceleration_travel": { "value": "750" }, + "acceleration_wall": { "value": "750" }, + "acceleration_wall_0": { "value": "500" }, + "jerk_layer_0": { "value": "5" }, + "jerk_prime_tower": { "value": "jerk_print" }, + "jerk_print": { "value": "7.5" }, + "jerk_support": { "value": "jerk_print" }, + "jerk_support_interface": { "value": "jerk_print" }, + "jerk_topbottom": { "value": "jerk_print" }, + "jerk_travel": { "value": "jerk_layer_0" }, + "jerk_travel_layer_0": { "value": "jerk_layer_0" }, + "jerk_wall": { "value": "jerk_print" }, + "jerk_wall_0": { "value": "jerk_print" }, + "machine_depth": { "default_value": 320 }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "Repetier" }, + "machine_heated_build_volume": { "default_value": false }, + "machine_height": { "default_value": 500 }, + "machine_name": { "default_value": "Signal XXXL" }, + "machine_width": { "default_value": 310 } } -} +} \ No newline at end of file diff --git a/resources/definitions/atom2.def.json b/resources/definitions/atom2.def.json index 9ad42c0f36..58930215f3 100644 --- a/resources/definitions/atom2.def.json +++ b/resources/definitions/atom2.def.json @@ -1,35 +1,37 @@ { - "name": "Atom 2", - "version": 2, - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Victor (Yu Chieh) Lin", - "manufacturer": "Layer One", - "file_formats": "text/x-gcode", - "platform_offset": [0,0,0], - "machine_extruder_trains": { "0": "atom2_extruder_0" + "version": 2, + "name": "Atom 2", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Victor (Yu Chieh) Lin", + "manufacturer": "Layer One", + "file_formats": "text/x-gcode", + "machine_extruder_trains": { "0": "atom2_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ] + }, + "overrides": + { + "brim_width": { "default_value": 4 }, + "default_material_print_temperature": { "default_value": 210 }, + "infill_sparse_density": { "default_value": 10 }, + "layer_height": { "default_value": 0.2 }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 210 }, + "machine_end_gcode": { "default_value": "G28\nG91\nG1 E-6 F300\nM104 S0\nG1 E-1000 F5000\nM84\nG90" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 320 }, + "machine_name": { "default_value": "Atom 2" }, + "machine_shape": { "default_value": "elliptic" }, + "machine_start_gcode": { "default_value": "G21\nG90 \nM107\nG28\nG1 Y-110 Z15\nG0 Z{layer_height_0}\nG92 E0\nG1 F200 Y-100 E6\nG92 E0" }, + "machine_width": { "default_value": 210 }, + "optimize_wall_printing_order": { "value": "True" }, + "speed_print": { "default_value": 32 } } - }, - - "overrides": { - "machine_name": { "default_value": "Atom 2" }, - "machine_shape": { "default_value": "elliptic" }, - "machine_width": { "default_value": 210 }, - "machine_depth": { "default_value": 210 }, - "machine_height": { "default_value": 320 }, - "machine_extruder_count": { "default_value": 1 }, - "machine_heated_bed": { "default_value": false }, - "machine_center_is_zero": { "default_value": true }, - - "machine_start_gcode": { "default_value": "G21\nG90 \nM107\nG28\nG1 Y-110 Z15\nG0 Z{layer_height_0}\nG92 E0\nG1 F200 Y-100 E6\nG92 E0" }, - "machine_end_gcode": { "default_value": "G28\nG91\nG1 E-6 F300\nM104 S0\nG1 E-1000 F5000\nM84\nG90" }, - - "layer_height": { "default_value": 0.2 }, - "default_material_print_temperature": { "default_value": 210 }, - "speed_print": { "default_value": 32 }, - "optimize_wall_printing_order": { "value": "True" }, - "infill_sparse_density": { "default_value": 10 }, - "brim_width": { "default_value": 4 } - } -} +} \ No newline at end of file diff --git a/resources/definitions/atom3.def.json b/resources/definitions/atom3.def.json index 2483b81155..c9b54d2f89 100644 --- a/resources/definitions/atom3.def.json +++ b/resources/definitions/atom3.def.json @@ -2,158 +2,121 @@ "version": 2, "name": "Atom 3", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Daniel Kurth", "manufacturer": "Layer One", - "platform_offset": [0, 0, 0], + "platform": "Atom 3 bed.3mf", "has_machine_quality": false, "has_materials": true, - "preferred_material": "layer_one_dark_gray_pla", "has_variants": true, - "preferred_variant_name": "PTFE hotend + 0.4mm brass nozzle", + "machine_extruder_trains": { "0": "atom3_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ], + "preferred_material": "layer_one_dark_gray_pla", "preferred_quality_type": "normal", - "variants_name": "Tool:", - "platform": "Atom 3 bed.3mf", - "machine_extruder_trains": - { - "0": "atom3_extruder_0" - } + "preferred_variant_name": "PTFE hotend + 0.4mm brass nozzle", + "variants_name": "Tool:" }, - - - - - "overrides": { - - "machine_name": { "default_value": "Atom 3" }, - "machine_show_variants": { "default_value": true}, - "machine_shape": { "default_value": "elliptic" }, - "machine_width": { "default_value": 270}, - "machine_depth": { "default_value": 270}, - "machine_height": { "default_value": 340}, - "machine_center_is_zero": { "default_value": true}, - "machine_nozzle_head_distance": { "default_value": 6}, - "machine_head_with_fans_polygon": + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "cool_lift_head": { "default_value": false }, + "cool_min_layer_time": { "default_value": 5 }, + "cool_min_speed": { "default_value": 10 }, + "default_material_bed_temperature": { - "default_value":[ - [-23.82, 51.25], - [23.82, 51.25], - [56.292 , -5.00], - [32.476, -46.250], - [-32.476, -46.25], - [-56.292, -5.00] - ] + "default_value": 60, + "maximum_value": "120", + "maximum_value_warning": "115", + "minimum_value": "0", + "minimum_value_warning": "build_volume_temperature" }, - "machine_gcode_flavor": { "RepRap (Marlin/Sprinter)": "Marlin" }, - "machine_heated_bed": { "default_value": true }, - "material_diameter": { "default_value": 1.75}, - "machine_start_gcode": { - "default_value": ";MACHINE START CODE\nG21 ;metric values\nG90 ;absolute positioning\nG28 ;home\nG1 Z5 F9000\n;MACHINE START CODE" - }, - "machine_end_gcode": { - "default_value": ";MACHINE END CODE\nG91 ;relative positioning\nG1 E-1 F300 ;retract filament release pressure\nG1 Z+1.0 E-5 F9000 ;move up a and retract more\nG90 ;absolute positioning\nG28; home\nM84 ;steppers off\n;MACHINE END CODE" - }, - - - - - "layer_height": {"default_value": 0.2 }, - "layer_height_0": { + "default_material_print_temperature": { "default_value": 200 }, + "infill_before_walls": { "value": false }, + "infill_sparse_density": { "default_value": 17 }, + "initial_layer_line_width_factor": { "default_value": 100 }, + "layer_height": { "default_value": 0.2 }, + "layer_height_0": + { "default_value": 0.2, "value": "layer_height" }, - "line_width": { "value": "machine_nozzle_size"}, - "infill_line_width": { "value":"line_width"}, - "initial_layer_line_width_factor": { "default_value": 100}, - - - - - "top_bottom_thickness": { "default_value": 1.0}, - - - - - "infill_sparse_density": { "default_value": 17}, - "infill_before_walls": { "value": false}, - "zig_zaggify_infill": { "value": true}, - - - - - "default_material_print_temperature": { "default_value": 200 }, - "material_print_temperature_layer_0": { "value": "material_print_temperature + 0"}, - "material_initial_print_temperature": { "value": "material_print_temperature_layer_0"}, - "material_final_print_temperature": { "value": "material_print_temperature"}, - "default_material_bed_temperature": { - "default_value": 60, - "minimum_value": "0", - "minimum_value_warning": "build_volume_temperature", - "maximum_value_warning": "115", - "maximum_value": "120" + "line_width": { "value": "machine_nozzle_size" }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 270 }, + "machine_end_gcode": { "default_value": ";MACHINE END CODE\nG91 ;relative positioning\nG1 E-1 F300 ;retract filament release pressure\nG1 Z+1.0 E-5 F9000 ;move up a and retract more\nG90 ;absolute positioning\nG28; home\nM84 ;steppers off\n;MACHINE END CODE" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-23.82, 51.25], + [23.82, 51.25], + [56.292, -5.0], + [32.476, -46.25], + [-32.476, -46.25], + [-56.292, -5.0] + ] }, + "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" }, + "machine_width": { "default_value": 270 }, "material_bed_temperature": { - "value": "round(default_material_bed_temperature-((-0.202*default_material_bed_temperature)+7.16)) if default_material_bed_temperature > 40 else default_material_bed_temperature", + "maximum_value": "120", + "maximum_value_warning": "115", "minimum_value": "0", "minimum_value_warning": "build_volume_temperature", - "maximum_value_warning": "115", - "maximum_value": "120" + "value": "round(default_material_bed_temperature-(-0.202 * default_material_bed_temperature + 7.16)) if default_material_bed_temperature > 40 else default_material_bed_temperature" }, - - - - - "speed_print": { "default_value": 40}, - "speed_wall": { "value": "speed_print * 0.75"}, - "speed_wall_0": { "value": "speed_print * 0.5"}, - "speed_wall_x": { "value": "speed_print * 0.75"}, - "speed_layer_0": { "value": "20"}, - "speed_slowdown_layers": { "default_value": 1}, - - - - - "retraction_amount": { + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "value": "material_print_temperature_layer_0" }, + "retraction_amount": + { "default_value": 7, - "maximum_value_warning": 9 }, - "retraction_speed": { + "maximum_value_warning": 9 + }, + "retraction_hop": { "default_value": 0.5 }, + "retraction_hop_enabled": { "default_value": true }, + "retraction_speed": + { "default_value": 70, "maximum_value_warning": 80 }, - "retraction_hop_enabled": { "default_value": true}, - "retraction_hop": { "default_value": 0.5}, - - - - - "cool_min_layer_time": { "default_value": 5}, - "cool_min_speed": { "default_value": 10}, - "cool_lift_head": { "default_value": false}, - - - - - "support_type": { "default_value": "everywhere"}, - "support_angle": { "default_value": 60}, - "support_z_distance": { "value": "layer_height"}, - "support_xy_distance_overhang":{"value": "machine_nozzle_size"}, - - - - - "adhesion_type": { "default_value": "skirt"}, - "skirt_brim_minimal_length": { + "skirt_brim_minimal_length": + { "default_value": 750, - "value": "60/(layer_height_0*line_width)", + "maximum_value_warning": "4000", "minimum_value": "0", "minimum_value_warning": "25", - "maximum_value_warning": "4000" + "value": "60 / (layer_height_0 * line_width)" }, - "skirt_gap": { - "default_value": "1`", - "value": "3*wall_line_width_0" - } + "skirt_gap": + { + "default_value": 1, + "value": "3 * wall_line_width_0" + }, + "speed_layer_0": { "value": "20" }, + "speed_print": { "default_value": 40 }, + "speed_slowdown_layers": { "default_value": 1 }, + "speed_wall": { "value": "speed_print * 0.75" }, + "speed_wall_0": { "value": "speed_print * 0.5" }, + "speed_wall_x": { "value": "speed_print * 0.75" }, + "support_angle": { "default_value": 60 }, + "support_type": { "default_value": "everywhere" }, + "support_xy_distance_overhang": { "value": "machine_nozzle_size" }, + "support_z_distance": { "value": "layer_height" }, + "top_bottom_thickness": { "default_value": 1.0 }, + "zig_zaggify_infill": { "value": true } } } \ No newline at end of file diff --git a/resources/definitions/atom3_lite.def.json b/resources/definitions/atom3_lite.def.json index 69808e7ad3..d71834dbbe 100644 --- a/resources/definitions/atom3_lite.def.json +++ b/resources/definitions/atom3_lite.def.json @@ -2,61 +2,47 @@ "version": 2, "name": "Atom 3 Lite", "inherits": "atom3", - "metadata": { + "metadata": + { "author": "Daniel Kurth", "manufacturer": "Layer One", - "platform_offset": [0, 0, 0], - "preferred_variant_name": "PTFE hotend + 0.4mm brass nozzle", - "platform": "Atom 3 lite bed.3mf" + "platform": "Atom 3 lite bed.3mf", + "platform_offset": [ + 0, + 0, + 0 + ], + "preferred_variant_name": "PTFE hotend + 0.4mm brass nozzle" }, - - - - - "overrides": { + "overrides": + { + "cool_lift_head": { "default_value": false }, + "cool_min_layer_time": { "default_value": 15 }, + "cool_min_speed": { "default_value": 5 }, "machine_head_with_fans_polygon": { - "default_value": - [ + "default_value": [ [-23.82, 41.25], [23.82, 41.25], [38.105, 16.5], - [57.631 , 16.5], - - [57.631 , -16.5], + [57.631, 16.5], + [57.631, -16.5], [38.105, -16.5], [23.82, -41.25], [-23.82, -41.25], - [-38.105, -16.5], - [-57.631 , -16.5], - [-57.631 , 16.5], + [-57.631, -16.5], + [-57.631, 16.5], [-38.105, 16.5], [-23.82, 41.25] ] }, - - - - "retraction_amount": { "default_value": 7 }, - "retraction_speed": { + "retraction_speed": + { "default_value": 70, "maximum_value_warning": "90" }, - - - - - "cool_min_layer_time": { "default_value": 15}, - "cool_min_speed": { "default_value": 5}, - "cool_lift_head": { "default_value": false}, - - - - - "support_angle": { "default_value": 45} + "support_angle": { "default_value": 45 } } -} - - \ No newline at end of file +} \ No newline at end of file diff --git a/resources/definitions/atomstack_cambrian_base.def.json b/resources/definitions/atomstack_cambrian_base.def.json index 1939f930e4..9a7813ed14 100644 --- a/resources/definitions/atomstack_cambrian_base.def.json +++ b/resources/definitions/atomstack_cambrian_base.def.json @@ -1,29 +1,21 @@ -{ - "version": 2, - "name": "AtomStack Cambrian Base Printer", - "inherits": "fdmprinter", - "metadata": { - "visible": false, - "author": "AtomStack", - "manufacturer": "AtomStack", - "file_formats": "text/x-gcode", - "has_materials": true, - "machine_extruder_trains": { - "0": "atomstack_cambrianmaxe175_extruder_0" - } - }, - "overrides": { - "machine_heated_bed": { - "default_value": true - }, - "machine_extruder_count": { - "default_value": 1 - }, - "machine_start_gcode": { - "default_value": "; AtomStack Cambrian Start G-code\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.9 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.9 Y20 Z0.3 F1500.0 E30 ; Draw the second line\nG1 E29 ;Retract the filament\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish" - }, - "machine_end_gcode": { - "default_value": "; AtomStack Cambrian End G-code\nG91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-8 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute position\n\nG1 X0 Y210 ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off nozzle\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z" - } - } -} +{ + "version": 2, + "name": "AtomStack Cambrian Base Printer", + "inherits": "fdmprinter", + "metadata": + { + "visible": false, + "author": "AtomStack", + "manufacturer": "AtomStack", + "file_formats": "text/x-gcode", + "has_materials": true, + "machine_extruder_trains": { "0": "atomstack_cambrianmaxe175_extruder_0" } + }, + "overrides": + { + "machine_end_gcode": { "default_value": "; AtomStack Cambrian End G-code\nG91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-8 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute position\n\nG1 X0 Y210 ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off nozzle\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_heated_bed": { "default_value": true }, + "machine_start_gcode": { "default_value": "; AtomStack Cambrian Start G-code\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.9 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.9 Y20 Z0.3 F1500.0 E30 ; Draw the second line\nG1 E29 ;Retract the filament\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish" } + } +} \ No newline at end of file diff --git a/resources/definitions/atomstack_cambrianmaxe175.def.json b/resources/definitions/atomstack_cambrianmaxe175.def.json index 572b692118..4133973361 100644 --- a/resources/definitions/atomstack_cambrianmaxe175.def.json +++ b/resources/definitions/atomstack_cambrianmaxe175.def.json @@ -2,28 +2,20 @@ "version": 2, "name": "Cambrian Max E175", "inherits": "atomstack_cambrian_base", - "metadata": { + "metadata": + { "visible": true, "author": "AtomStack", "manufacturer": "AtomStack", "file_formats": "text/x-gcode", "has_materials": true, - "machine_extruder_trains": { - "0": "atomstack_cambrianmaxe175_extruder_0" - } + "machine_extruder_trains": { "0": "atomstack_cambrianmaxe175_extruder_0" } }, - "overrides": { - "machine_name": { - "default_value": "Cambrian MAX E175" - }, - "machine_width": { - "default_value": 320 - }, - "machine_height": { - "default_value": 380 - }, - "machine_depth": { - "default_value": 330 - } + "overrides": + { + "machine_depth": { "default_value": 330 }, + "machine_height": { "default_value": 380 }, + "machine_name": { "default_value": "Cambrian MAX E175" }, + "machine_width": { "default_value": 320 } } -} +} \ No newline at end of file diff --git a/resources/definitions/atomstack_cambrianmaxe285.def.json b/resources/definitions/atomstack_cambrianmaxe285.def.json index 064ee1ec83..a1cacac9ca 100644 --- a/resources/definitions/atomstack_cambrianmaxe285.def.json +++ b/resources/definitions/atomstack_cambrianmaxe285.def.json @@ -2,28 +2,20 @@ "version": 2, "name": "Cambrian Max E285", "inherits": "atomstack_cambrian_base", - "metadata": { + "metadata": + { "visible": true, "author": "AtomStack", "manufacturer": "AtomStack", "file_formats": "text/x-gcode", "has_materials": true, - "machine_extruder_trains": { - "0": "atomstack_cambrianmaxe285_extruder_0" - } + "machine_extruder_trains": { "0": "atomstack_cambrianmaxe285_extruder_0" } }, - "overrides": { - "machine_name": { - "default_value": "Cambrian MAX E285" - }, - "machine_width": { - "default_value": 320 - }, - "machine_height": { - "default_value": 380 - }, - "machine_depth": { - "default_value": 330 - } + "overrides": + { + "machine_depth": { "default_value": 330 }, + "machine_height": { "default_value": 380 }, + "machine_name": { "default_value": "Cambrian MAX E285" }, + "machine_width": { "default_value": 320 } } -} +} \ No newline at end of file diff --git a/resources/definitions/atomstack_cambrianproe175.def.json b/resources/definitions/atomstack_cambrianproe175.def.json index cc56d5545a..b4fd6af9d2 100644 --- a/resources/definitions/atomstack_cambrianproe175.def.json +++ b/resources/definitions/atomstack_cambrianproe175.def.json @@ -2,28 +2,20 @@ "version": 2, "name": "Cambrian Pro E175", "inherits": "atomstack_cambrian_base", - "metadata": { + "metadata": + { "visible": true, "author": "AtomStack", "manufacturer": "AtomStack", "file_formats": "text/x-gcode", "has_materials": true, - "machine_extruder_trains": { - "0": "atomstack_cambrianproe175_extruder_0" - } + "machine_extruder_trains": { "0": "atomstack_cambrianproe175_extruder_0" } }, - "overrides": { - "machine_name": { - "default_value": "Cambrian Pro E175" - }, - "machine_width": { - "default_value": 235 - }, - "machine_height": { - "default_value": 250 - }, - "machine_depth": { - "default_value": 235 - } + "overrides": + { + "machine_depth": { "default_value": 235 }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "Cambrian Pro E175" }, + "machine_width": { "default_value": 235 } } -} +} \ No newline at end of file diff --git a/resources/definitions/atomstack_cambrianproe285.def.json b/resources/definitions/atomstack_cambrianproe285.def.json index 37f51dcc97..58ca16d47a 100644 --- a/resources/definitions/atomstack_cambrianproe285.def.json +++ b/resources/definitions/atomstack_cambrianproe285.def.json @@ -2,28 +2,20 @@ "version": 2, "name": "Cambrian Pro E285", "inherits": "atomstack_cambrian_base", - "metadata": { + "metadata": + { "visible": true, "author": "AtomStack", "manufacturer": "AtomStack", "file_formats": "text/x-gcode", "has_materials": true, - "machine_extruder_trains": { - "0": "atomstack_cambrianproe285_extruder_0" - } + "machine_extruder_trains": { "0": "atomstack_cambrianproe285_extruder_0" } }, - "overrides": { - "machine_name": { - "default_value": "Cambrian Pro E285" - }, - "machine_width": { - "default_value": 235 - }, - "machine_height": { - "default_value": 250 - }, - "machine_depth": { - "default_value": 235 - } + "overrides": + { + "machine_depth": { "default_value": 235 }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "Cambrian Pro E285" }, + "machine_width": { "default_value": 235 } } -} +} \ No newline at end of file diff --git a/resources/definitions/beamup_l.def.json b/resources/definitions/beamup_l.def.json index 7de0481b7a..2ec6e803c0 100644 --- a/resources/definitions/beamup_l.def.json +++ b/resources/definitions/beamup_l.def.json @@ -2,57 +2,35 @@ "version": 2, "name": "BeamUp L", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "BeamUp", "manufacturer": "BeamUp", "file_formats": "text/x-gcode", "platform": "beamup_l.3mf", - "platform_offset": [0, -2.5, -2.5], "has_machine_quality": true, "has_materials": true, - "machine_extruder_trains": - { - "0": "beamup_l_extruder_0" - } + "machine_extruder_trains": { "0": "beamup_l_extruder_0" }, + "platform_offset": [ + 0, + -2.5, + -2.5 + ] }, - - "overrides": { - "machine_name": { - "default_value": "BeamUp L" - }, - "machine_width": { - "default_value": 320 - }, - "machine_depth": { - "default_value": 320 - }, - "machine_height": { - "default_value": 300 - }, - "machine_heated_bed": { - "default_value": false - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_nozzle_heat_up_speed": { - "default_value": 2 - }, - "machine_nozzle_cool_down_speed": { - "default_value": 2 - }, - "gantry_height": { - "value": "0" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G28 ; home\nG29 ; level\nM80 ; led\nG1 Z15.0 F6000\nT0\nG92 E0.0000\nG1 E-1.4500 F1800\nG1 X50 Y0 Z0.300 F6000\nM300 S3000 P300\nG1 E1.0000 F1800\nG92 E0.0000\nG1 X250 Y0 E15 F662" - }, - "machine_end_gcode": { - "default_value": "G28 ; home\nM104 S0 ; turn off\n M140 S0 ; turn off\nM84 ; disable motors\nM107 ; fan off" - } + "overrides": + { + "gantry_height": { "value": "0" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 320 }, + "machine_end_gcode": { "default_value": "G28 ; home\nM104 S0 ; turn off\n M140 S0 ; turn off\nM84 ; disable motors\nM107 ; fan off" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "BeamUp L" }, + "machine_nozzle_cool_down_speed": { "default_value": 2 }, + "machine_nozzle_heat_up_speed": { "default_value": 2 }, + "machine_start_gcode": { "default_value": "G28 ; home\nG29 ; level\nM80 ; led\nG1 Z15.0 F6000\nT0\nG92 E0.0000\nG1 E-1.4500 F1800\nG1 X50 Y0 Z0.300 F6000\nM300 S3000 P300\nG1 E1.0000 F1800\nG92 E0.0000\nG1 X250 Y0 E15 F662" }, + "machine_width": { "default_value": 320 } } -} +} \ No newline at end of file diff --git a/resources/definitions/beamup_s.def.json b/resources/definitions/beamup_s.def.json index 148656f819..b27411e772 100644 --- a/resources/definitions/beamup_s.def.json +++ b/resources/definitions/beamup_s.def.json @@ -2,57 +2,35 @@ "version": 2, "name": "BeamUp S", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "BeamUp", "manufacturer": "BeamUp", "file_formats": "text/x-gcode", "platform": "beamup_s.3mf", - "platform_offset": [0, -5, -10], "has_machine_quality": true, "has_materials": true, - "machine_extruder_trains": - { - "0": "beamup_s_extruder_0" - } + "machine_extruder_trains": { "0": "beamup_s_extruder_0" }, + "platform_offset": [ + 0, + -5, + -10 + ] }, - - "overrides": { - "machine_name": { - "default_value": "BeamUp S" - }, - "machine_width": { - "default_value": 200 - }, - "machine_depth": { - "default_value": 180 - }, - "machine_height": { - "default_value": 130 - }, - "machine_heated_bed": { - "default_value": false - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_nozzle_heat_up_speed": { - "default_value": 2 - }, - "machine_nozzle_cool_down_speed": { - "default_value": 2 - }, - "gantry_height": { - "value": "0" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G28 ; home\nG29 ; level\nM80 ; led\nG1 Z15.0 F6000\nT0\nG92 E0.0000\nG1 E-1.4500 F1800\nG1 X5 Y0 Z0.300 F6000\nM300 S3000 P300\nG1 E1.0000 F1800\nG92 E0.0000\nG1 X180 Y0 E15 F662" - }, - "machine_end_gcode": { - "default_value": "G28 ; home\nM104 S0 ; turn off\n M140 S0 ; turn off\nM84 ; disable motors\nM107 ; fan off" - } + "overrides": + { + "gantry_height": { "value": "0" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 180 }, + "machine_end_gcode": { "default_value": "G28 ; home\nM104 S0 ; turn off\n M140 S0 ; turn off\nM84 ; disable motors\nM107 ; fan off" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 130 }, + "machine_name": { "default_value": "BeamUp S" }, + "machine_nozzle_cool_down_speed": { "default_value": 2 }, + "machine_nozzle_heat_up_speed": { "default_value": 2 }, + "machine_start_gcode": { "default_value": "G28 ; home\nG29 ; level\nM80 ; led\nG1 Z15.0 F6000\nT0\nG92 E0.0000\nG1 E-1.4500 F1800\nG1 X5 Y0 Z0.300 F6000\nM300 S3000 P300\nG1 E1.0000 F1800\nG92 E0.0000\nG1 X180 Y0 E15 F662" }, + "machine_width": { "default_value": 200 } } -} +} \ No newline at end of file diff --git a/resources/definitions/bfb.def.json b/resources/definitions/bfb.def.json index caee91291a..8aa2c1e6b3 100644 --- a/resources/definitions/bfb.def.json +++ b/resources/definitions/bfb.def.json @@ -1,32 +1,34 @@ { - "name": "BFB", "version": 2, + "name": "BFB", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "manufacturer": "BFB", "file_formats": "text/x-gcode", - "platform_offset": [ 0, 0, 0], - "machine_extruder_trains": - { - "0": "bfb_extruder_0" - } + "machine_extruder_trains": { "0": "bfb_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ] }, - - "overrides": { - "speed_print": { "default_value": 40 }, - "machine_extruder_count": { "default_value": 1 }, - "prime_tower_size": { "default_value": 7.745966692414834 }, - "machine_name": { "default_value": "BFB_Test" }, - "machine_heated_bed": { "default_value": false }, - "machine_width": { "default_value": 275 }, - "machine_gcode_flavor": { "default_value": "BFB" }, - "machine_depth": { "default_value": 265 }, - "machine_center_is_zero": { "default_value": true }, - "machine_height": { "default_value": 240 }, - "layer_height": { "default_value": 0.25 }, - "retraction_amount": { "default_value": 0.05 }, + "overrides": + { "infill_sparse_density": { "default_value": 10 }, - "layer_height_0": { "default_value": 0.5 } + "layer_height": { "default_value": 0.25 }, + "layer_height_0": { "default_value": 0.5 }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 265 }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "BFB" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 240 }, + "machine_name": { "default_value": "BFB_Test" }, + "machine_width": { "default_value": 275 }, + "prime_tower_size": { "default_value": 7.745966692414834 }, + "retraction_amount": { "default_value": 0.05 }, + "speed_print": { "default_value": 40 } } -} +} \ No newline at end of file diff --git a/resources/definitions/bibo2_dual.def.json b/resources/definitions/bibo2_dual.def.json index dad08603aa..344fdbf3b9 100644 --- a/resources/definitions/bibo2_dual.def.json +++ b/resources/definitions/bibo2_dual.def.json @@ -1,93 +1,48 @@ -{ - "version": 2, - "name": "Bibo 2 dual", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "unknown", - "manufacturer": "BIBO", - "file_formats": "text/x-gcode", - "has_materials": true, - "machine_extruder_trains": { - "0": "bibo2_dual_extruder_0", - "1": "bibo2_dual_extruder_1" - }, - "first_start_actions": [ - "MachineSettingsAction" - ] - }, - "overrides": { - "machine_name": { - "default_value": "BIBO2 dual" - }, - "machine_width": { - "default_value": 214 - }, - "machine_height": { - "default_value": 160 - }, - "machine_depth": { - "default_value": 186 - }, - "machine_center_is_zero": { - "default_value": true - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_nozzle_heat_up_speed": { - "default_value": 2 - }, - "machine_nozzle_cool_down_speed": { - "default_value": 2 - }, - "machine_head_with_fans_polygon": { - "default_value": [ - [ - -68.18, - 64.63 - ], - [ - -68.18, - -47.38 - ], - [ - 35.18, - 64.63 - ], - [ - 35.18, - -47.38 - ] - ] - }, - "gantry_height": { - "value": "12" - }, - "machine_use_extruder_offset_to_offset_coords": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "M104 T0 165\nM104 T1 165\nM109 T{initial_extruder_nr} S{material_print_temperature_layer_0, initial_extruder_nr}\nG21 ;metric values\nG90 ;absolute positioning\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nG1 Z2.0 F400 ;move the platform down 2mm\nT0\nG92 E0\nG28\nG1 Y0 F1200 E0\nG92 E0\nT{initial_extruder_nr}\nM117 BIBO Printing..." - }, - "machine_end_gcode": { - "default_value": ";End GCode\nM104 T0 S0 ;extruder heater off\nM104 T1 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91\nG1 Z1 F100 ;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-2 X-20 Y-20 F300 ;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" - }, - "speed_print": { - "default_value": 40 - }, - "machine_extruder_count": { - "default_value": 2 - }, - "prime_tower_position_x": { - "value": "50" - }, - "prime_tower_position_y": { - "value": "50" - } - } -} - +{ + "version": 2, + "name": "Bibo 2 dual", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "unknown", + "manufacturer": "BIBO", + "file_formats": "text/x-gcode", + "first_start_actions": [ "MachineSettingsAction" ], + "has_materials": true, + "machine_extruder_trains": + { + "0": "bibo2_dual_extruder_0", + "1": "bibo2_dual_extruder_1" + } + }, + "overrides": + { + "gantry_height": { "value": "12" }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 186 }, + "machine_end_gcode": { "default_value": ";End GCode\nM104 T0 S0 ;extruder heater off\nM104 T1 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91\nG1 Z1 F100 ;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-2 X-20 Y-20 F300 ;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": + { + "default_value": [ + [-68.18, 64.63], + [-68.18, -47.38], + [35.18, 64.63], + [35.18, -47.38] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 160 }, + "machine_name": { "default_value": "BIBO2 dual" }, + "machine_nozzle_cool_down_speed": { "default_value": 2 }, + "machine_nozzle_heat_up_speed": { "default_value": 2 }, + "machine_start_gcode": { "default_value": "M104 T0 165\nM104 T1 165\nM109 T{initial_extruder_nr} S{material_print_temperature_layer_0, initial_extruder_nr}\nG21 ;metric values\nG90 ;absolute positioning\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nG1 Z2.0 F400 ;move the platform down 2mm\nT0\nG92 E0\nG28\nG1 Y0 F1200 E0\nG92 E0\nT{initial_extruder_nr}\nM117 BIBO Printing..." }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, + "machine_width": { "default_value": 214 }, + "prime_tower_position_x": { "value": "50" }, + "prime_tower_position_y": { "value": "50" }, + "speed_print": { "default_value": 40 } + } +} \ No newline at end of file diff --git a/resources/definitions/biqu_b1.def.json b/resources/definitions/biqu_b1.def.json index d60e229152..351383764c 100755 --- a/resources/definitions/biqu_b1.def.json +++ b/resources/definitions/biqu_b1.def.json @@ -1,44 +1,45 @@ { - "name": "Biqu B1", "version": 2, + "name": "Biqu B1", "inherits": "biqu_base", - "metadata": { - "quality_definition": "biqu_base", + "metadata": + { "visible": true, - "has_machine_materials": true, "platform": "BIQU_SSS.stl", + "has_machine_materials": true, "platform_offset": [ 0, -7.4, 5 - ] + ], + "quality_definition": "biqu_base" }, - "overrides": { + "overrides": + { "coasting_enable": { "value": true }, - "retraction_amount": { "value": 7 }, - "retraction_speed": { "value": 70 }, - "support_enable": { "value": true }, - "support_structure": { "value": "'normal'" }, - "support_type": { "value": "'buildplate'" }, - "support_angle": { "value": 45 }, - "support_infill_rate": { "value": 15 }, + "gantry_height": { "value": 27.5 }, "infill_overlap_mm": { "value": 0.06 }, - "speed_print": { "value": 60 }, - "machine_name": { "default_value": "BIQU B1" }, - "machine_width": { "value": 235 }, "machine_depth": { "value": 235 }, - "machine_height": { "value": 270 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-33, 35], [-33, -23], [33, -23], [33, 35] ] }, - "machine_start_gcode": { - "default_value": " ; BIQU B1 Start G-code\nM117 Getting the bed up to temp!\nM140 S{material_bed_temperature_layer_0} ; Set Heat Bed temperature\nM190 S{material_bed_temperature_layer_0} ; Wait for Heat Bed temperature\nM117 Getting the extruder up to temp!\nM104 S{material_print_temperature_layer_0} ; Set Extruder temperature\nG92 E0 ; Reset Extruder\nM117 Homing axes\nG28 ; Home all axes\nM109 S{material_print_temperature_layer_0} ; Wait for Extruder temperature\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X4.1 Y20 Z0.3 F5000.0 ; Move to start position\nM117 Purging\nG1 X4.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X4.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X4.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line\nG92 E0 ; Reset Extruder\nM117 Lets make\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish" - }, - - "gantry_height": { "value": 27.5 } + "machine_height": { "value": 270 }, + "machine_name": { "default_value": "BIQU B1" }, + "machine_start_gcode": { "default_value": " ; BIQU B1 Start G-code\nM117 Getting the bed up to temp!\nM140 S{material_bed_temperature_layer_0} ; Set Heat Bed temperature\nM190 S{material_bed_temperature_layer_0} ; Wait for Heat Bed temperature\nM117 Getting the extruder up to temp!\nM104 S{material_print_temperature_layer_0} ; Set Extruder temperature\nG92 E0 ; Reset Extruder\nM117 Homing axes\nG28 ; Home all axes\nM109 S{material_print_temperature_layer_0} ; Wait for Extruder temperature\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X4.1 Y20 Z0.3 F5000.0 ; Move to start position\nM117 Purging\nG1 X4.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X4.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X4.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line\nG92 E0 ; Reset Extruder\nM117 Lets make\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish" }, + "machine_width": { "value": 235 }, + "retraction_amount": { "value": 7 }, + "retraction_speed": { "value": 70 }, + "speed_print": { "value": 60 }, + "support_angle": { "value": 45 }, + "support_enable": { "value": true }, + "support_infill_rate": { "value": 15 }, + "support_structure": { "value": "'normal'" }, + "support_type": { "value": "'buildplate'" } } -} +} \ No newline at end of file diff --git a/resources/definitions/biqu_b1_abl.def.json b/resources/definitions/biqu_b1_abl.def.json index 11876ae80b..536d93cac9 100755 --- a/resources/definitions/biqu_b1_abl.def.json +++ b/resources/definitions/biqu_b1_abl.def.json @@ -1,44 +1,45 @@ { - "name": "Biqu B1 ABL", "version": 2, + "name": "Biqu B1 ABL", "inherits": "biqu_base", - "metadata": { - "quality_definition": "biqu_base", + "metadata": + { "visible": true, - "has_machine_materials": true, "platform": "BIQU_SSS.stl", + "has_machine_materials": true, "platform_offset": [ 0, -7.4, 5 - ] + ], + "quality_definition": "biqu_base" }, - "overrides": { + "overrides": + { "coasting_enable": { "value": true }, - "retraction_amount": { "value": 7 }, - "retraction_speed": { "value": 70 }, - "support_enable": { "value": true }, - "support_structure": { "value": "'normal'" }, - "support_type": { "value": "'buildplate'" }, - "support_angle": { "value": 45 }, - "support_infill_rate": { "value": 15 }, + "gantry_height": { "value": 27.5 }, "infill_overlap_mm": { "value": 0.06 }, - "speed_print": { "value": 60 }, - "machine_name": { "default_value": "BIQU B1 ABL" }, - "machine_width": { "value": 235 }, "machine_depth": { "value": 235 }, - "machine_height": { "value": 270 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-33, 35], [-33, -23], [33, -23], [33, 35] ] }, - "machine_start_gcode": { - "default_value": "; BIQU B1 Start G-code\nM117 Getting the bed up to temp!\nM140 S{material_bed_temperature_layer_0} ; Set Heat Bed temperature\nM190 S{material_bed_temperature_layer_0} ; Wait for Heat Bed temperature\nM117 Pre-heating the extruder\nM104 S160 ; Set Extruder temperature\nM117 Homing axes\nG28 ; Home all axes\nM117 ABL Probing\nG29\nM117 Getting the extruder up to temp\nM104 S{material_print_temperature_layer_0} ; Set Extruder temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Extruder temperature\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X4.1 Y20 Z0.3 F5000.0 ; Move to start position\nM117 Purging\nG1 X4.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X4.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X4.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line\nG92 E0 ; Reset Extruder\nM117 Lets make\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish" - }, - - "gantry_height": { "value": 27.5 } + "machine_height": { "value": 270 }, + "machine_name": { "default_value": "BIQU B1 ABL" }, + "machine_start_gcode": { "default_value": "; BIQU B1 Start G-code\nM117 Getting the bed up to temp!\nM140 S{material_bed_temperature_layer_0} ; Set Heat Bed temperature\nM190 S{material_bed_temperature_layer_0} ; Wait for Heat Bed temperature\nM117 Pre-heating the extruder\nM104 S160 ; Set Extruder temperature\nM117 Homing axes\nG28 ; Home all axes\nM117 ABL Probing\nG29\nM117 Getting the extruder up to temp\nM104 S{material_print_temperature_layer_0} ; Set Extruder temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Extruder temperature\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X4.1 Y20 Z0.3 F5000.0 ; Move to start position\nM117 Purging\nG1 X4.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X4.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X4.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line\nG92 E0 ; Reset Extruder\nM117 Lets make\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish" }, + "machine_width": { "value": 235 }, + "retraction_amount": { "value": 7 }, + "retraction_speed": { "value": 70 }, + "speed_print": { "value": 60 }, + "support_angle": { "value": 45 }, + "support_enable": { "value": true }, + "support_infill_rate": { "value": 15 }, + "support_structure": { "value": "'normal'" }, + "support_type": { "value": "'buildplate'" } } -} +} \ No newline at end of file diff --git a/resources/definitions/biqu_base.def.json b/resources/definitions/biqu_base.def.json index 82ee71dd7a..5b84c72b88 100755 --- a/resources/definitions/biqu_base.def.json +++ b/resources/definitions/biqu_base.def.json @@ -1,164 +1,127 @@ { - "name": "Biqu Base Printer", "version": 2, + "name": "Biqu Base Printer", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": false, "author": "Luke Harrison", "manufacturer": "Biqu", "file_formats": "text/x-gcode", - "first_start_actions": ["MachineSettingsAction"], - - "machine_extruder_trains": { - "0": "biqu_base_extruder_0" - }, - + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, "has_materials": true, "has_variants": true, - "has_machine_quality": true, - "variants_name": "Nozzle Diameter", - - "preferred_variant_name": "0.4mm Nozzle", + "machine_extruder_trains": { "0": "biqu_base_extruder_0" }, + "preferred_material": "generic_pla_175", "preferred_quality_type": "standard", - "preferred_material": "generic_pla_175" + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Diameter" }, - "overrides": { - "machine_name": { "default_value": "BIQU Base Printer" }, - "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" }, - "machine_end_gcode": { "default_value": " ;BIQU Default End Gcode\nG91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract a bit more and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z by 10mm\nG90 ;Return to absolute positioning\n\nG1 X0 Y{machine_depth} ;TaDaaaa\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, - - "machine_max_feedrate_x": { "value": 500 }, - "machine_max_feedrate_y": { "value": 500 }, - "machine_max_feedrate_z": { "value": 10 }, - "machine_max_feedrate_e": { "value": 75 }, - - "machine_max_acceleration_x": { "value": 500 }, - "machine_max_acceleration_y": { "value": 500 }, - "machine_max_acceleration_z": { "value": 100 }, - "machine_max_acceleration_e": { "value": 5000 }, - "machine_acceleration": { "value": 500 }, - - "machine_max_jerk_xy": { "value": 10 }, - "machine_max_jerk_z": { "value": 0.4 }, - "machine_max_jerk_e": { "value": 5 }, - - "machine_heated_bed": { "default_value": true }, - - "material_diameter": { "default_value": 1.75 }, - + "overrides": + { + "acceleration_enabled": { "value": false }, "acceleration_print": { "value": 500 }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, "acceleration_travel": { "value": 500 }, "acceleration_travel_layer_0": { "value": "acceleration_travel" }, - "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, - + "adaptive_layer_height_variation": { "value": 0.04 }, + "adaptive_layer_height_variation_step": { "value": 0.04 }, + "adhesion_type": { "value": "'skirt'" }, + "brim_replaces_support": { "value": false }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "value": 10 }, + "fill_outline_gaps": { "value": false }, + "infill_before_walls": { "value": false }, + "infill_line_width": { "value": "line_width * 1.2" }, + "infill_overlap": { "value": 30.0 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_wipe_dist": { "value": 0.0 }, + "jerk_enabled": { "value": false }, "jerk_print": { "value": 8 }, "jerk_travel": { "value": "jerk_print" }, "jerk_travel_layer_0": { "value": "jerk_travel" }, - - "acceleration_enabled": { "value": false }, - "jerk_enabled": { "value": false }, - - "speed_print": { "value": 50.0 } , - "speed_infill": { "value": "speed_print" }, - "speed_wall": { "value": "speed_print / 2" }, - "speed_wall_0": { "value": "speed_wall" }, - "speed_wall_x": { "value": "speed_wall" }, - "speed_topbottom": { "value": "speed_print / 2" }, - "speed_roofing": { "value": "speed_topbottom" }, - "speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" }, - "speed_layer_0": { "value": 20.0 }, - "speed_print_layer_0": { "value": "speed_layer_0" }, - "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, - "speed_prime_tower": { "value": "speed_topbottom" }, - "speed_support": { "value": "speed_wall_0" }, - "speed_support_interface": { "value": "speed_topbottom" }, - "speed_z_hop": { "value": 5 }, - - "skirt_brim_speed": { "value": "speed_layer_0" }, - - "line_width": { "value": "machine_nozzle_size" }, - - "optimize_wall_printing_order": { "value": "True" }, - - "material_initial_print_temperature": { "value": "material_print_temperature" }, + "machine_acceleration": { "value": 500 }, + "machine_end_gcode": { "default_value": " ;BIQU Default End Gcode\nG91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract a bit more and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z by 10mm\nG90 ;Return to absolute positioning\n\nG1 X0 Y{machine_depth} ;TaDaaaa\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, + "machine_heated_bed": { "default_value": true }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_feedrate_e": { "value": 75 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_name": { "default_value": "BIQU Base Printer" }, + "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" }, + "material_diameter": { "default_value": 1.75 }, "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_flow": { "value": 100 }, - - "z_seam_type": { "value": "'sharpest_corner'" }, - "z_seam_corner": { "value": "'z_seam_corner_inner'" }, - - "infill_line_width": { "value": "line_width * 1.2" }, - "infill_sparse_density": { "value": "20" }, - "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, - "infill_before_walls": { "value": false }, - "infill_overlap": { "value": 30.0 }, - "skin_overlap": { "value": 10.0 }, - "infill_wipe_dist": { "value": 0.0 }, - "wall_0_wipe_dist": { "value": 0.0 }, - - "fill_outline_gaps": { "value": false }, - - "retraction_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 - }, - "retraction_retract_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 - }, - "retraction_prime_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 - }, - - "retraction_hop_enabled": { "value": "False" }, - "retraction_hop": { "value": 0.2 }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "meshfix_maximum_resolution": { "value": "0.25" }, + "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "optimize_wall_printing_order": { "value": "True" }, "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, "retraction_combing_max_distance": { "value": 30 }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 10 }, + "retraction_hop": { "value": 0.2 }, + "retraction_min_travel": { "value": 1.5 }, + "retraction_prime_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "retraction_retract_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "retraction_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "skin_overlap": { "value": 10.0 }, + "skirt_brim_speed": { "value": "speed_layer_0" }, + "skirt_gap": { "value": 10.0 }, + "skirt_line_count": { "value": 3 }, + "speed_layer_0": { "value": 20.0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": 50.0 }, + "speed_roofing": { "value": "speed_topbottom" }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" }, + "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width / 2.0 / layer_height)))" }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 4 }, + "support_infill_rate": { "value": "0 if support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 75 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_interface_skip_height": { "value": 0.2 }, + "support_pattern": { "value": "'zigzag'" }, + "support_wall_count": { "value": 1 }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, "travel_avoid_other_parts": { "value": true }, "travel_avoid_supports": { "value": true }, "travel_retract_before_outer_wall": { "value": true }, - - "retraction_enable": { "value": true }, - "retraction_count_max": { "value": 100 }, - "retraction_extrusion_window": { "value": 10 }, - "retraction_min_travel": { "value": 1.5 }, - - "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, - "cool_fan_enabled": { "value": true }, - "cool_min_layer_time": { "value": 10 }, - - "adhesion_type": { "value": "'skirt'" }, - "brim_replaces_support": { "value": false }, - "skirt_gap": { "value": 10.0 }, - "skirt_line_count": { "value": 3 }, - - "adaptive_layer_height_variation": { "value": 0.04 }, - "adaptive_layer_height_variation_step": { "value": 0.04 }, - - "meshfix_maximum_resolution": { "value": "0.25" }, - "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, - - "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width / 2.0 / layer_height)))" }, - "support_pattern": { "value": "'zigzag'" }, - "support_infill_rate": { "value": "0 if support_structure == 'tree' else 20" }, - "support_use_towers": { "value": false }, - "support_xy_distance": { "value": "wall_line_width_0 * 2" }, - "support_xy_distance_overhang": { "value": "wall_line_width_0" }, - "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" }, - "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, - "support_wall_count": { "value": 1 }, - "support_brim_enable": { "value": true }, - "support_brim_width": { "value": 4 }, - - "support_interface_enable": { "value": true }, - "support_interface_height": { "value": "layer_height * 4" }, - "support_interface_density": { "value": 75 }, - "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, - "minimum_support_area": { "value": 2 }, - "minimum_interface_area": { "value": 10 }, - "top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" }, - "wall_thickness": {"value": "line_width * 2" } + "wall_0_wipe_dist": { "value": 0.0 }, + "wall_thickness": { "value": "line_width * 2" }, + "z_seam_corner": { "value": "'z_seam_corner_inner'" }, + "z_seam_type": { "value": "'sharpest_corner'" } } -} +} \ No newline at end of file diff --git a/resources/definitions/biqu_bx_abl.def.json b/resources/definitions/biqu_bx_abl.def.json index 4877e669b6..827987bc43 100755 --- a/resources/definitions/biqu_bx_abl.def.json +++ b/resources/definitions/biqu_bx_abl.def.json @@ -1,50 +1,51 @@ { - "name": "Biqu BX", "version": 2, + "name": "Biqu BX", "inherits": "biqu_base", - "metadata": { - "quality_definition": "biqu_base", + "metadata": + { "visible": true, - "has_machine_materials": true, "platform": "BIQU_BX_PLATE.stl", + "has_machine_materials": true, "platform_offset": [ 7, -7.4, -3 - ] + ], + "quality_definition": "biqu_base" }, - "overrides": { + "overrides": + { "coasting_enable": { "value": false }, - "retraction_amount": { "value": 1 }, - "retraction_speed": { "value": 40 }, - "retraction_extrusion_window": { "value": 1 }, - "retract_at_layer_change": { "value": true }, - "support_enable": { "value": false }, - "support_structure": { "value": "'normal'" }, - "support_type": { "value": "'buildplate'" }, - "support_angle": { "value": 45 }, - "support_infill_rate": { "value": 15 }, - "infill_overlap": { "value": 15.0 }, - "skin_overlap": { "value": 20.0 }, "fill_outline_gaps": { "value": true }, - "roofing_layer_count": { "value": 2 }, - "xy_offset_layer_0": { "value": -0.1 }, - "speed_print": { "value": 50 }, - "machine_name": { "default_value": "Biqu BX" }, - "machine_width": { "value": 250 }, + "gantry_height": { "value": 27.5 }, + "infill_overlap": { "value": 15.0 }, "machine_depth": { "value": 250 }, - "machine_height": { "value": 250 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-33, 35], [-33, -23], [33, -23], [33, 35] ] }, - "machine_start_gcode": { - "default_value": "; BIQU BX Start G-code\r\n; For information on how to tune this profile and get the\r\n; most out of your BX visit: https:\/\/github.com\/looxonline\/Marlin\r\n; For the official github site visit: https:\/\/github.com\/bigtreetech\/BIQU-BX\r\n\r\nM117 Initial homing sequence. ; Home so that the probe is positioned to heat\r\nG28\r\n\r\nM117 Probe heating position\r\nG0 X65 Y5 Z1 ; Move the probe to the heating position.\r\n\r\nM117 Getting the heaters up to temp!\r\nM104 S140 ; Set Extruder temperature, no wait\r\nM140 S60 ; Set Heat Bed temperature\r\nM190 S60 ; Wait for Heat Bed temperature\r\n\r\nM117 Waiting for probe to warm! ; Wait another 90s for the probe to absorb heat.\r\nG4 S90 \r\n\r\nM117 Post warming re-home\r\nG28 ; Home all axes again after warming\r\n\r\nM117 Z-Dance of my people\r\nG34\r\n\r\nM117 ABL Probing\r\nG29\r\n\r\nM900 K0 L0 T0 ;Edit the K and L values if you have calibrated a k factor for your filament\r\nM900 T0 S0\r\n\r\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\r\nG1 X4.1 Y10 Z0.3 F5000.0 ; Move to start position\r\n\r\nM117 Getting the extruder up to temp\r\nM140 S{material_bed_temperature_layer_0} ; Set Heat Bed temperature\r\nM104 S{material_print_temperature_layer_0} ; Set Extruder temperature\r\nM109 S{material_print_temperature_layer_0} ; Wait for Extruder temperature\r\nM190 S{material_bed_temperature_layer_0} ; Wait for Heat Bed temperature\r\n\r\nG92 E0 ; Reset Extruder\r\nM117 Purging\r\nG1 X4.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\r\nG1 X4.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\r\nG1 X4.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line\r\nG92 E0 ; Reset Extruder\r\nM117 Lets make\r\nG1 X8 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish" - }, - - "gantry_height": { "value": 27.5 } + "machine_height": { "value": 250 }, + "machine_name": { "default_value": "Biqu BX" }, + "machine_start_gcode": { "default_value": "; BIQU BX Start G-code\r\n; For information on how to tune this profile and get the\r\n; most out of your BX visit: https://github.com/looxonline/Marlin\r\n; For the official github site visit: https://github.com/bigtreetech/BIQU-BX\r\n\r\nM117 Initial homing sequence. ; Home so that the probe is positioned to heat\r\nG28\r\n\r\nM117 Probe heating position\r\nG0 X65 Y5 Z1 ; Move the probe to the heating position.\r\n\r\nM117 Getting the heaters up to temp!\r\nM104 S140 ; Set Extruder temperature, no wait\r\nM140 S60 ; Set Heat Bed temperature\r\nM190 S60 ; Wait for Heat Bed temperature\r\n\r\nM117 Waiting for probe to warm! ; Wait another 90s for the probe to absorb heat.\r\nG4 S90 \r\n\r\nM117 Post warming re-home\r\nG28 ; Home all axes again after warming\r\n\r\nM117 Z-Dance of my people\r\nG34\r\n\r\nM117 ABL Probing\r\nG29\r\n\r\nM900 K0 L0 T0 ;Edit the K and L values if you have calibrated a k factor for your filament\r\nM900 T0 S0\r\n\r\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\r\nG1 X4.1 Y10 Z0.3 F5000.0 ; Move to start position\r\n\r\nM117 Getting the extruder up to temp\r\nM140 S{material_bed_temperature_layer_0} ; Set Heat Bed temperature\r\nM104 S{material_print_temperature_layer_0} ; Set Extruder temperature\r\nM109 S{material_print_temperature_layer_0} ; Wait for Extruder temperature\r\nM190 S{material_bed_temperature_layer_0} ; Wait for Heat Bed temperature\r\n\r\nG92 E0 ; Reset Extruder\r\nM117 Purging\r\nG1 X4.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\r\nG1 X4.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\r\nG1 X4.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line\r\nG92 E0 ; Reset Extruder\r\nM117 Lets make\r\nG1 X8 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish" }, + "machine_width": { "value": 250 }, + "retract_at_layer_change": { "value": true }, + "retraction_amount": { "value": 1 }, + "retraction_extrusion_window": { "value": 1 }, + "retraction_speed": { "value": 40 }, + "roofing_layer_count": { "value": 2 }, + "skin_overlap": { "value": 20.0 }, + "speed_print": { "value": 50 }, + "support_angle": { "value": 45 }, + "support_enable": { "value": false }, + "support_infill_rate": { "value": 15 }, + "support_structure": { "value": "'normal'" }, + "support_type": { "value": "'buildplate'" }, + "xy_offset_layer_0": { "value": -0.1 } } -} +} \ No newline at end of file diff --git a/resources/definitions/biqu_hurakan.def.json b/resources/definitions/biqu_hurakan.def.json new file mode 100755 index 0000000000..b8d44f13a4 --- /dev/null +++ b/resources/definitions/biqu_hurakan.def.json @@ -0,0 +1,65 @@ +{ + "version": 2, + "name": "Biqu Hurakan", + "inherits": "biqu_base", + "metadata": + { + "visible": true, + "platform": "BIQU_Hurakan_bed.stl", + "has_machine_materials": true, + "platform_offset": [ + 0, + 0, + 0.01 + ], + "quality_definition": "biqu_base" + }, + "overrides": + { + "acceleration_print": { "value": 3000 }, + "acceleration_travel": { "value": 3000 }, + "coasting_enable": { "value": false }, + "fill_outline_gaps": { "value": true }, + "gantry_height": { "value": 35 }, + "infill_overlap": { "value": 15.0 }, + "jerk_print": { "value": 12 }, + "machine_acceleration": { "value": 3000 }, + "machine_depth": { "value": 235 }, + "machine_end_gcode": { "default_value": ";BIQU Hurakan end code. More complex. Such wow. Klipper4Life.\r\n\r\nEND_PRINT" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-31, -35.3], + [-31, 25.5], + [31, 25.5], + [31, -35.5] + ] + }, + "machine_height": { "value": 270 }, + "machine_max_acceleration_e": { "value": 10000 }, + "machine_max_acceleration_x": { "value": 3000 }, + "machine_max_acceleration_y": { "value": 3000 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_name": { "default_value": "Biqu Hurakan" }, + "machine_start_gcode": { "default_value": ";BIQU Hurakan start code. Much complex. Very wow. Klipper FTW.\r\n\r\nSTART_PRINT BED_TEMP={material_bed_temperature_layer_0} EXTRUDER_TEMP={material_print_temperature_layer_0}\r\n\r\n; Note: This start/end code is designed to work\r\n; with the stock cfg files provided with the \r\n; BIQU Hurakan. If you alter the macros in the \r\n; cfg files then you may also need to alter this code.\r\n\r\n; Another note: This profile will get you \r\n; part of the way to good prints.\r\n; You still need to tweak settings for each \r\n; different filament that you use.\r\n; Settings such as retraction distance/speed, \r\n; flow, pressure advance, bed/nozzle temperatures\r\n; and others may need to be adjusted.\r\n; Use https://teachingtechyt.github.io/calibration.html to calibrate.\r\n; Also see https://www.youtube.com/watch?v=Ae2G7hl_pZc\r\n; for some good tips." }, + "machine_width": { "value": 235 }, + "retract_at_layer_change": { "value": true }, + "retraction_amount": { "value": 3.0 }, + "retraction_extrusion_window": { "value": 3.0 }, + "retraction_speed": { "value": 45 }, + "roofing_layer_count": { "value": 2 }, + "skin_overlap": { "value": 15.0 }, + "speed_layer_0": { "value": 25 }, + "speed_print": { "value": 120 }, + "speed_travel": { "value": 200 }, + "speed_wall_0": { "value": 60 }, + "speed_wall_x": { "value": 75 }, + "support_angle": { "value": 45 }, + "support_enable": { "value": false }, + "support_infill_rate": { "value": 20 }, + "support_structure": { "value": "'normal'" }, + "support_type": { "value": "'buildplate'" }, + "top_thickness": { "value": 1.0 }, + "xy_offset_layer_0": { "value": -0.1 } + } +} \ No newline at end of file diff --git a/resources/definitions/blocks_base.def.json b/resources/definitions/blocks_base.def.json new file mode 100644 index 0000000000..b8e215ab5f --- /dev/null +++ b/resources/definitions/blocks_base.def.json @@ -0,0 +1,116 @@ +{ + "version": 2, + "name": "Blocks Base Printer", + "inherits": "fdmprinter", + "metadata": + { + "visible": false, + "author": "Blocks Dev Team", + "manufacturer": "Blocks", + "file_formats": "text/x-gcode", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "preferred_material": "generic_pla", + "preferred_quality_type": "normal", + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Size" + }, + "overrides": + { + "acceleration_print": { "value": 500 }, + "acceleration_travel": { "value": 500 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel" }, + "adaptive_layer_height_variation": { "value": 0.04 }, + "adaptive_layer_height_variation_step": { "value": 0.04 }, + "adhesion_type": { "value": "'skirt'" }, + "alternate_extra_perimeter": { "default_value": true }, + "bottom_layers": { "value": "math.ceil(round(bottom_thickness / resolveOrValue('layer_height'), 4))" }, + "brim_replaces_support": { "value": false }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "value": 10 }, + "infill_before_walls": { "value": false }, + "infill_enable_travel_optimization": { "default_value": true }, + "infill_overlap": { "value": 30.0 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_wipe_dist": { "value": 0.0 }, + "jerk_print": { "value": 8 }, + "jerk_travel": { "value": "jerk_print" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "machine_acceleration": { "value": 500 }, + "machine_heated_bed": { "default_value": true }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_feedrate_e": { "value": 50 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_xy": { "value": 10 }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "meshfix_maximum_resolution": { "value": "0.01" }, + "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, + "minimum_interface_area": { "value": 10 }, + "minimum_polygon_circumference": { "default_value": 0.2 }, + "minimum_support_area": { "value": 2 }, + "optimize_wall_printing_order": { "value": "True" }, + "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, + "retraction_combing_max_distance": { "value": 30 }, + "retraction_count_max": { "value": 100 }, + "retraction_hop": { "value": 0.2 }, + "retraction_hop_enabled": { "value": "False" }, + "retraction_prime_speed": + { + "maximum_value": 200, + "value": 20 + }, + "retraction_retract_speed": + { + "maximum_value_warning": 130, + "value": 200 + }, + "retraction_speed": + { + "maximum_value": 200, + "value": 40 + }, + "roofing_layer_count": { "value": 1 }, + "skin_monotonic": { "value": true }, + "skin_overlap": { "value": 10.0 }, + "skirt_gap": { "value": 10.0 }, + "skirt_line_count": { "value": 3 }, + "speed_layer_0": { "value": 20.0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" }, + "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 4 }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_interface_skip_height": { "value": 0.2 }, + "support_pattern": { "value": "'zigzag'" }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" }, + "top_layers": { "value": "math.ceil(round(top_thickness / resolveOrValue('layer_height'), 4))" }, + "travel_avoid_supports": { "value": true }, + "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_thickness": { "value": "line_width * 2" }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, + "z_seam_type": { "value": "'back'" } + } +} \ No newline at end of file diff --git a/resources/definitions/blocks_mkii.def.json b/resources/definitions/blocks_mkii.def.json new file mode 100644 index 0000000000..631ed35d37 --- /dev/null +++ b/resources/definitions/blocks_mkii.def.json @@ -0,0 +1,22 @@ +{ + "version": 2, + "name": "Blocks One MKII", + "inherits": "blocks_base", + "metadata": + { + "visible": true, + "platform": "blocks_mk2_platform.stl", + "machine_extruder_trains": { "0": "blocks_mkii_extruder_0" }, + "quality_definition": "blocks_base" + }, + "overrides": + { + "machine_depth": { "default_value": 210 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F6000 ;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\n" }, + "machine_height": { "default_value": 210 }, + "machine_name": { "default_value": "Blocks One MKII" }, + "machine_start_gcode": { "default_value": "G21\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\nG29\nG1 X-14 Y0 F6000\nG1 Z0.1\nG92 E0 ;zero the extruded length\nG1 F2000 E10 ;extrude 10mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 Z0.2 F6000\nG1 F6000\nM117 Printing...\n" }, + "machine_width": { "default_value": 200 }, + "retraction_retract_speed": { "value": 50 } + } +} \ No newline at end of file diff --git a/resources/definitions/blocks_one.def.json b/resources/definitions/blocks_one.def.json new file mode 100644 index 0000000000..e107fde313 --- /dev/null +++ b/resources/definitions/blocks_one.def.json @@ -0,0 +1,22 @@ +{ + "version": 2, + "name": "Blocks One", + "inherits": "blocks_base", + "metadata": + { + "visible": true, + "platform": "blocks_mk2_platform.stl", + "machine_extruder_trains": { "0": "blocks_one_extruder_0" }, + "quality_definition": "blocks_base" + }, + "overrides": + { + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F6000 ;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\n" }, + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "Blocks One" }, + "machine_start_gcode": { "default_value": "G21\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 F6000\nG92 E0\nG1 F200 E3\nG92 E0\nG1 F6000\nM117 Printing...\n" }, + "machine_width": { "default_value": 200 }, + "retraction_retract_speed": { "value": 50 } + } +} \ No newline at end of file diff --git a/resources/definitions/blocks_pros100.def.json b/resources/definitions/blocks_pros100.def.json new file mode 100644 index 0000000000..4ad1886d5a --- /dev/null +++ b/resources/definitions/blocks_pros100.def.json @@ -0,0 +1,23 @@ +{ + "version": 2, + "name": "Blocks Pro S100", + "inherits": "blocks_base", + "metadata": + { + "visible": true, + "platform": "blocks_pros100_platform.stl", + "machine_extruder_trains": { "0": "blocks_pros100_extruder_0" }, + "preferred_variant_name": "0.8mm Nozzle", + "quality_definition": "blocks_base" + }, + "overrides": + { + "machine_depth": { "default_value": 1000 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F6000 ;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\n" }, + "machine_height": { "default_value": 1000 }, + "machine_name": { "default_value": "Blocks Pro S100" }, + "machine_start_gcode": { "default_value": "G21\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\nG29\nG1 X-14 Y0 F6000\nG1 Z0.1\nG92 E0 ;zero the extruded length\nG1 F2000 E10 ;extrude 10mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 Z0.2 F6000\nG1 F6000\nM117 Printing...\n" }, + "machine_width": { "default_value": 1000 }, + "retraction_retract_speed": { "value": 50 } + } +} \ No newline at end of file diff --git a/resources/definitions/blocks_pros30.def.json b/resources/definitions/blocks_pros30.def.json new file mode 100644 index 0000000000..8d30b8db24 --- /dev/null +++ b/resources/definitions/blocks_pros30.def.json @@ -0,0 +1,22 @@ +{ + "version": 2, + "name": "Blocks Pro S30", + "inherits": "blocks_base", + "metadata": + { + "visible": true, + "platform": "blocks_pros30_platform.stl", + "machine_extruder_trains": { "0": "blocks_pros30_extruder_0" }, + "quality_definition": "blocks_base" + }, + "overrides": + { + "machine_depth": { "default_value": 310 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F6000 ;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\n" }, + "machine_height": { "default_value": 290 }, + "machine_name": { "default_value": "Blocks Pro S30" }, + "machine_start_gcode": { "default_value": "G21\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\nG29\nG1 X-14 Y0 F6000\nG1 Z0.1\nG92 E0 ;zero the extruded length\nG1 F2000 E10 ;extrude 10mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 Z0.2 F6000\nG1 F6000\nM117 Printing...\n" }, + "machine_width": { "default_value": 310 }, + "retraction_retract_speed": { "value": 40 } + } +} \ No newline at end of file diff --git a/resources/definitions/blocks_r21.def.json b/resources/definitions/blocks_r21.def.json new file mode 100644 index 0000000000..51582bec14 --- /dev/null +++ b/resources/definitions/blocks_r21.def.json @@ -0,0 +1,30 @@ +{ + "version": 2, + "name": "Blocks R21", + "inherits": "blocks_base", + "metadata": + { + "visible": true, + "platform": "blocks_r21_platform.stl", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "blocks_r21_extruder_0" }, + "preferred_material": "generic_pla", + "preferred_quality_type": "normal", + "preferred_variant_name": "ST - 0.4mm", + "quality_definition": "blocks_base", + "variants_name": "Print Core" + }, + "overrides": + { + "machine_depth": { "default_value": 210 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F6000 ;move Z up a bit and retract filament even more\nG28 X0;move X/Y to min endstops, so the head is out of the way\nG1 Y210 F5000.0\nG1 Z+70\nM84 ;steppers off\nG90 ;absolute positioning\n" }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "Blocks R21" }, + "machine_start_gcode": { "default_value": "G21\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\nG29\nM117 ; Purge extruder\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z1.0 F3000\nG1 X0.1 Y15 F3000.0\nG1 Z0.1 F3000.0\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nM117 Printing...\n" }, + "machine_width": { "default_value": 300 }, + "retraction_retract_speed": { "value": 50 } + } +} \ No newline at end of file diff --git a/resources/definitions/blocks_rd50.def.json b/resources/definitions/blocks_rd50.def.json new file mode 100644 index 0000000000..897ec299fe --- /dev/null +++ b/resources/definitions/blocks_rd50.def.json @@ -0,0 +1,35 @@ +{ + "version": 2, + "name": "Blocks RD50", + "inherits": "blocks_base", + "metadata": + { + "visible": true, + "platform": "blocks_rd50_platform.stl", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { + "0": "blocks_rd50_extruder_0", + "1": "blocks_rd50_extruder_1" + }, + "preferred_material": "generic_pla", + "preferred_quality_type": "normal", + "preferred_variant_name": "ST - 0.4mm", + "quality_definition": "blocks_base", + "variants_name": "Print Core" + }, + "overrides": + { + "machine_depth": { "default_value": 500 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F6000 ;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\n" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_height": { "default_value": 500 }, + "machine_name": { "default_value": "Blocks RD50" }, + "machine_start_gcode": { "default_value": "G21\nG90 ;absolute positioning\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\n;PREHEAT\nM140 S{material_bed_temperature_layer_0} ; Set Heat Bed temperature\nM104 S{material_print_temperature_layer_0} ; Set Extruder temperature\nG1 X-60 Y0 F6000\nG92 E0 ;zero the extruded length\nM190 S{material_bed_temperature_layer_0} ; Wait for Heat Bed temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Extruder temperature\nG1 F600 E20 ;extrude 10mm of feed stock\nG1 F200 E80 ;extrude 10mm of feed stock\nG12\nG92 E0 ;zero the extruded length again\nG29\nG1 Z0.2 F6000\nG1 F6000\n" }, + "machine_width": { "default_value": 500 }, + "retraction_retract_speed": { "value": 50 } + } +} \ No newline at end of file diff --git a/resources/definitions/blocks_rd50duplicate.def.json b/resources/definitions/blocks_rd50duplicate.def.json new file mode 100644 index 0000000000..47af8572e9 --- /dev/null +++ b/resources/definitions/blocks_rd50duplicate.def.json @@ -0,0 +1,35 @@ +{ + "version": 2, + "name": "Blocks RD50 - Duplication Mode", + "inherits": "blocks_base", + "metadata": + { + "visible": true, + "platform": "blocks_rd50_platform.stl", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { + "0": "blocks_rd50_extruder_0", + "1": "blocks_rd50_extruder_1" + }, + "preferred_material": "generic_pla", + "preferred_quality_type": "normal", + "preferred_variant_name": "ST - 0.4mm", + "quality_definition": "blocks_base", + "variants_name": "Print Core" + }, + "overrides": + { + "machine_depth": { "default_value": 500 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+1 E-1 X-20 Y-20 F6000 ;move Z up a bit and retract filament even more\nM605 S1 ; AUTO-PARK MODE\nG28 X Y ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning\n" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_height": { "default_value": 500 }, + "machine_name": { "default_value": "Blocks RD50 - Duplication Mode" }, + "machine_start_gcode": { "default_value": ";INITIALIZE DUPLICATION MODE\nM605 S1 ; AUTO-PARK MODE\nT0 ; Set tool 0\nG28 ; Home all axes\nG28 X\nM605 S2 ; Set duplication mode\n; PREHEAT\nM140 S{material_bed_temperature_layer_0} ; Set Heat Bed temperature\nM104 S{material_print_temperature_layer_0} ; Set Extruder temperature\nM190 S{material_bed_temperature_layer_0} ; Wait for Heat Bed temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Extruder temperature\n;SET DUPLICATION MODE\nM605 S2 X622 ; Set duplication mode and nozzle offset\nG28 X\nG1 X-60 F3000\nM605 S3 X622 ; Set mirror mode and nozzle offset\nM82\nG92 E0 ; Reset Extruder\nG1 F400\nG1 E40 F400 ; Prime\nG12 ; Clean Nozzle\nM605 S2 X250\nG28 X\nG92 E0 ; Reset Extruder\nG1 X0 F3000\n" }, + "machine_width": { "default_value": 500 }, + "retraction_retract_speed": { "value": 50 } + } +} \ No newline at end of file diff --git a/resources/definitions/blocks_rd50mirror.def.json b/resources/definitions/blocks_rd50mirror.def.json new file mode 100644 index 0000000000..ad077119ad --- /dev/null +++ b/resources/definitions/blocks_rd50mirror.def.json @@ -0,0 +1,35 @@ +{ + "version": 2, + "name": "Blocks RD50 - Mirror Mode", + "inherits": "blocks_base", + "metadata": + { + "visible": true, + "platform": "blocks_rd50_platform.stl", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { + "0": "blocks_rd50_extruder_0", + "1": "blocks_rd50_extruder_1" + }, + "preferred_material": "generic_pla", + "preferred_quality_type": "normal", + "preferred_variant_name": "ST - 0.4mm", + "quality_definition": "blocks_base", + "variants_name": "Print Core" + }, + "overrides": + { + "machine_depth": { "default_value": 500 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+1 E-1 X-20 Y-20 F6000 ;move Z up a bit and retract filament even more\nM605 S1 ; AUTO-PARK MODE\nG28 X Y ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning\n" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_height": { "default_value": 500 }, + "machine_name": { "default_value": "Blocks RD50 - Mirror Mode" }, + "machine_start_gcode": { "default_value": ";INITIALIZE MIRROR MODE\nM605 S1 ; AUTO-PARK MODE\nT0 ; Set tool 0\nG28 ; Home all axes\nG28 X ; Home x axes\nM605 S2 ; Set duplication mode\n; PREHEAT\nM140 S{material_bed_temperature_layer_0} ; Set Heat Bed temperature\nM104 S{material_print_temperature_layer_0} ; Set Extruder temperature\nM190 S{material_bed_temperature_layer_0} ; Wait for Heat Bed temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Extruder temperature\n;SET MIRROR MODE\nM605 S2 X622 ; Set duplication mode and nozzle offset\nG28 X\nG1 X-60 F3000\nM605 S3 X622 ; Set mirror mode and nozzle offset\nM82\nG92 E0 ; Reset Extruder\nG1 F200\nG1 E30 F200 ; Prime\nG12 ; Clean Nozzle\nG1 X125 F3000\nG92 E0 ; Reset Extruder\n" }, + "machine_width": { "default_value": 500 }, + "retraction_retract_speed": { "value": 50 } + } +} \ No newline at end of file diff --git a/resources/definitions/blocks_zero.def.json b/resources/definitions/blocks_zero.def.json new file mode 100644 index 0000000000..d0ed827e5e --- /dev/null +++ b/resources/definitions/blocks_zero.def.json @@ -0,0 +1,23 @@ +{ + "version": 2, + "name": "Blocks Zero", + "inherits": "blocks_base", + "metadata": + { + "visible": true, + "platform": "blocks_zero_platform.stl", + "machine_extruder_trains": { "0": "blocks_zero_extruder_0" }, + "quality_definition": "blocks_base" + }, + "overrides": + { + "machine_depth": { "default_value": 140 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F6000 ;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\n" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 120 }, + "machine_name": { "default_value": "Blocks Zero" }, + "machine_start_gcode": { "default_value": "G21\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 X-14 Y0 F6000\nG1 Z0.1\nG92 E0 ;zero the extruded length\nG1 F2000 E10 ;extrude 10mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 Z0.2 F6000\nG1 F6000\nM117 Printing...\n" }, + "machine_width": { "default_value": 120 }, + "retraction_retract_speed": { "value": 50 } + } +} \ No newline at end of file diff --git a/resources/definitions/blv_mgn_cube_300.def.json b/resources/definitions/blv_mgn_cube_300.def.json index 48fb7cd149..024668068c 100644 --- a/resources/definitions/blv_mgn_cube_300.def.json +++ b/resources/definitions/blv_mgn_cube_300.def.json @@ -1,33 +1,23 @@ -{ - "name": "BLV MGN Cube 300", - "version": 2, - "inherits": "blv_mgn_cube_base", - "metadata": { - "visible": true, - "author": "wolfgangmauer", - "manufacturer": "BLV", - "file_formats": "text/x-gcode", - "first_start_actions": [ - "MachineSettingsAction" - ], - "machine_extruder_trains": { - "0": "blv_mgn_cube_extruder_0" - }, - "quality_definition": "blv_mgn_cube_base", - "platform": "blv_mgn_cube_300_platform.3mf" - }, - "overrides": { - "machine_name": { - "default_value": "BLV mgn Cube 300" - }, - "machine_height": { - "default_value": 465 - }, - "machine_width": { - "default_value": 300 - }, - "machine_depth": { - "default_value": 300 - } - } -} +{ + "version": 2, + "name": "BLV MGN Cube 300", + "inherits": "blv_mgn_cube_base", + "metadata": + { + "visible": true, + "author": "wolfgangmauer", + "manufacturer": "BLV", + "file_formats": "text/x-gcode", + "platform": "blv_mgn_cube_300_platform.3mf", + "first_start_actions": [ "MachineSettingsAction" ], + "machine_extruder_trains": { "0": "blv_mgn_cube_extruder_0" }, + "quality_definition": "blv_mgn_cube_base" + }, + "overrides": + { + "machine_depth": { "default_value": 300 }, + "machine_height": { "default_value": 465 }, + "machine_name": { "default_value": "BLV mgn Cube 300" }, + "machine_width": { "default_value": 300 } + } +} \ No newline at end of file diff --git a/resources/definitions/blv_mgn_cube_350.def.json b/resources/definitions/blv_mgn_cube_350.def.json index c5e5e28723..74f7b7f065 100644 --- a/resources/definitions/blv_mgn_cube_350.def.json +++ b/resources/definitions/blv_mgn_cube_350.def.json @@ -1,33 +1,23 @@ -{ - "name": "BLV MGN Cube 350", - "version": 2, - "inherits": "blv_mgn_cube_base", - "metadata": { - "visible": true, - "author": "wolfgangmauer", - "manufacturer": "BLV", - "file_formats": "text/x-gcode", - "first_start_actions": [ - "MachineSettingsAction" - ], - "machine_extruder_trains": { - "0": "blv_mgn_cube_extruder_0" - }, - "quality_definition": "blv_mgn_cube_base", - "platform": "blv_mgn_cube_350_platform.3mf" - }, - "overrides": { - "machine_name": { - "default_value": "BLV mgn Cube350" - }, - "machine_height": { - "default_value": 465 - }, - "machine_width": { - "default_value": 350 - }, - "machine_depth": { - "default_value": 350 - } - } -} +{ + "version": 2, + "name": "BLV MGN Cube 350", + "inherits": "blv_mgn_cube_base", + "metadata": + { + "visible": true, + "author": "wolfgangmauer", + "manufacturer": "BLV", + "file_formats": "text/x-gcode", + "platform": "blv_mgn_cube_350_platform.3mf", + "first_start_actions": [ "MachineSettingsAction" ], + "machine_extruder_trains": { "0": "blv_mgn_cube_extruder_0" }, + "quality_definition": "blv_mgn_cube_base" + }, + "overrides": + { + "machine_depth": { "default_value": 350 }, + "machine_height": { "default_value": 465 }, + "machine_name": { "default_value": "BLV mgn Cube350" }, + "machine_width": { "default_value": 350 } + } +} \ No newline at end of file diff --git a/resources/definitions/blv_mgn_cube_base.def.json b/resources/definitions/blv_mgn_cube_base.def.json index 2c73b80cfc..960a98ec0e 100644 --- a/resources/definitions/blv_mgn_cube_base.def.json +++ b/resources/definitions/blv_mgn_cube_base.def.json @@ -1,213 +1,105 @@ -{ - "name": "BLV MGN Cube Base", - "version": 2, - "inherits": "anet3d", - "metadata": { - "visible": false, - "author": "wolfgangmauer", - "manufacturer": "BLV", - "file_formats": "text/x-gcode", - "first_start_actions": [ - "MachineSettingsAction" - ], - "preferred_quality_type": "normal", - "machine_extruder_trains": { - "0": "blv_mgn_cube_extruder_0" - }, - "preferred_material": "generic_pla", - "has_variants": false, - "has_materials": true, - "preferred_variant_name": "0.4mm Nozzle", - "has_machine_quality": false - }, - "overrides": { - "machine_name": { - "default_value": "BLV mgn Cube" - }, - "initial_layer_line_width_factor": { - "default_value": 130.0 - }, - "speed_slowdown_layers": { - "default_value": 1 - }, - "optimize_wall_printing_order": { - "value": true - }, - "infill_enable_travel_optimization": { - "default_value": true - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_gcode_flavor": { - "default_value": "RepRap (RepRap)" - }, - "fill_outline_gaps": { - "value": true - }, - "retraction_speed": { - "default_value": 85, - "maximum_value_warning": 130 - }, - "retraction_amount": { - "default_value": 5.5 - }, - "retraction_hop_enabled": { - "value": true - }, - "retraction_hop": { - "value": 0.4 - }, - "retraction_combing": { - "value": "'infill'" - }, - "retraction_combing_max_distance": { - "value": 10 - }, - "machine_start_gcode": { - "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG92 E0 ;zero the extruded length\nM104 S170 T0; start preheat hotend_0\nM140 S{material_bed_temperature_layer_0} ; start preheating the bed\nM190 S{material_bed_temperature_layer_0} ; heat to Cura Bed setting\nG28\nG12 P1 S2 T3\nG34\nG29\nG1 X0 Y0 Z1 F9000\nM109 S{material_print_temperature_layer_0} T0\nG1 X100 Y0 Z{layer_height_0} E30 F500 ;intro line\nG92 E0 ;zero the extruded length again\nM117 Printing...\n" - }, - "machine_end_gcode": { - "default_value": "G91 ;relative positioning\nG1 Z5 F500; move nozzle relative to position\nG90 ;absolute positioning\nG1 X0 Y{machine_depth}\nG12 P1 T3\nM104 S0\nM140 S0\nG92 E0\nM84\nM109 S50\nM81\n" - }, - "top_bottom_pattern": { - "value": "'zigzag'" - }, - "speed_layer_0": { - "value": "math.ceil(speed_print * 0.25)" - }, - "adhesion_type": { - "value": "'none'" - }, - "speed_travel": { - "value": 120, - "maximum_value_warning": 251, - "maximum_value": 300 - }, - "infill_pattern": { - "value": "'tetrahedral'" - }, - "bridge_settings_enabled": { - "default_value": true - }, - "layer_height_0": { - "resolve": "max(0.2, min(extruderValues('layer_height')))" - }, - "line_width": { - "value": "machine_nozzle_size" - }, - "wall_line_width": { - "value": "machine_nozzle_size" - }, - "infill_before_walls": { - "value": true - }, - "zig_zaggify_infill": { - "value": true - }, - "acceleration_enabled": { - "value": false - }, - "jerk_enabled": { - "value": false - }, - "bridge_wall_coast": { - "default_value": 10 - }, - "bridge_fan_speed": { - "default_value": 100 - }, - "bridge_fan_speed_2": { - "resolve": "max(cool_fan_speed, 50)" - }, - "bridge_fan_speed_3": { - "resolve": "max(cool_fan_speed, 20)" - }, - "cool_min_layer_time_fan_speed_max": { - "default_value": 20 - }, - "cool_min_layer_time": { - "value": 15 - }, - "cool_fan_speed_min": { - "value": "cool_fan_speed" - }, - "cool_fan_full_at_height": { - "value": "resolveOrValue('layer_height_0') + resolveOrValue('layer_height') * max(1, cool_fan_full_layer - 1)" - }, - "cool_fan_full_layer": { - "value": 4 - }, - "wall_line_count": { - "value": 3 - }, - "bottom_layers": { - "value": 3 - }, - "top_layers": { - "value": 3 - }, - "travel_retract_before_outer_wall": { - "value": false - }, - "z_seam_type": { - "value": "'shortest'" - }, - "brim_width": { - "default_value": 5 - }, - "infill_randomize_start_location": { - "default_value": true - }, - "skin_overlap": { - "value": 10.0 - }, - "speed_infill": { - "value": "speed_print" - }, - "speed_travel_layer_0": { - "value": "math.ceil(speed_travel * 0.4)" - }, - "speed_print": { - "value": 100, - "maximum_value_warning": 151, - "maximum_value": 250 - }, - "retraction_count_max": { - "value": 20 - }, - "speed_wall": { - "value": "math.ceil(speed_print * 0.33)" - }, - "speed_wall_0": { - "value": "math.ceil(speed_print * 0.33)" - }, - "speed_wall_x": { - "value": "math.ceil(speed_print * 0.66)" - }, - "speed_topbottom": { - "value": "math.ceil(speed_print * 0.33)" - }, - "speed_roofing": { - "value": "math.ceil(speed_print * 0.33)" - }, - "retraction_retract_speed": { - "maximum_value_warning": 130 - }, - "retraction_prime_speed": { - "value": "math.ceil(retraction_speed * 0.4)", - "maximum_value_warning": 130 - }, - "retraction_extrusion_window": { - "value": "retraction_amount" - }, - "infill_overlap": { - "value": "10 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0", - "maximum_value_warning": 100, - "minimum_value_warning": -50 - } - } -} +{ + "version": 2, + "name": "BLV MGN Cube Base", + "inherits": "anet3d", + "metadata": + { + "visible": false, + "author": "wolfgangmauer", + "manufacturer": "BLV", + "file_formats": "text/x-gcode", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": false, + "has_materials": true, + "has_variants": false, + "machine_extruder_trains": { "0": "blv_mgn_cube_extruder_0" }, + "preferred_material": "generic_pla", + "preferred_quality_type": "normal", + "preferred_variant_name": "0.4mm Nozzle" + }, + "overrides": + { + "acceleration_enabled": { "value": false }, + "adhesion_type": { "value": "'none'" }, + "bottom_layers": { "value": 3 }, + "bridge_fan_speed": { "default_value": 100 }, + "bridge_fan_speed_2": { "resolve": "max(cool_fan_speed, 50)" }, + "bridge_fan_speed_3": { "resolve": "max(cool_fan_speed, 20)" }, + "bridge_settings_enabled": { "default_value": true }, + "bridge_wall_coast": { "default_value": 10 }, + "brim_width": { "default_value": 5 }, + "cool_fan_full_at_height": { "value": "resolveOrValue('layer_height_0') + resolveOrValue('layer_height') * max(1, cool_fan_full_layer - 1)" }, + "cool_fan_full_layer": { "value": 4 }, + "cool_fan_speed_min": { "value": "cool_fan_speed" }, + "cool_min_layer_time": { "value": 15 }, + "cool_min_layer_time_fan_speed_max": { "default_value": 20 }, + "fill_outline_gaps": { "value": true }, + "infill_before_walls": { "value": true }, + "infill_enable_travel_optimization": { "default_value": true }, + "infill_overlap": + { + "maximum_value_warning": 100, + "minimum_value_warning": -50, + "value": "10 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0" + }, + "infill_pattern": { "value": "'tetrahedral'" }, + "infill_randomize_start_location": { "default_value": true }, + "initial_layer_line_width_factor": { "default_value": 130.0 }, + "jerk_enabled": { "value": false }, + "layer_height_0": { "resolve": "max(0.2, min(extruderValues('layer_height')))" }, + "line_width": { "value": "machine_nozzle_size" }, + "machine_center_is_zero": { "default_value": false }, + "machine_end_gcode": { "default_value": "G91 ;relative positioning\nG1 Z5 F500; move nozzle relative to position\nG90 ;absolute positioning\nG1 X0 Y{machine_depth}\nG12 P1 T3\nM104 S0\nM140 S0\nG92 E0\nM84\nM109 S50\nM81\n" }, + "machine_gcode_flavor": { "default_value": "RepRap (RepRap)" }, + "machine_heated_bed": { "default_value": true }, + "machine_name": { "default_value": "BLV mgn Cube" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG92 E0 ;zero the extruded length\nM104 S170 T0; start preheat hotend_0\nM140 S{material_bed_temperature_layer_0} ; start preheating the bed\nM190 S{material_bed_temperature_layer_0} ; heat to Cura Bed setting\nG28\nG12 P1 S2 T3\nG34\nG29\nG1 X0 Y0 Z1 F9000\nM109 S{material_print_temperature_layer_0} T0\nG1 X100 Y0 Z{layer_height_0} E30 F500 ;intro line\nG92 E0 ;zero the extruded length again\nM117 Printing...\n" }, + "optimize_wall_printing_order": { "value": true }, + "retraction_amount": { "default_value": 5.5 }, + "retraction_combing": { "value": "'infill'" }, + "retraction_combing_max_distance": { "value": 10 }, + "retraction_count_max": { "value": 20 }, + "retraction_extrusion_window": { "value": "retraction_amount" }, + "retraction_hop": { "value": 0.4 }, + "retraction_hop_enabled": { "value": true }, + "retraction_prime_speed": + { + "maximum_value_warning": 130, + "value": "math.ceil(retraction_speed * 0.4)" + }, + "retraction_retract_speed": { "maximum_value_warning": 130 }, + "retraction_speed": + { + "default_value": 85, + "maximum_value_warning": 130 + }, + "skin_overlap": { "value": 10.0 }, + "speed_layer_0": { "value": "math.ceil(speed_print * 0.25)" }, + "speed_print": + { + "maximum_value": 250, + "maximum_value_warning": 151, + "value": 100 + }, + "speed_roofing": { "value": "math.ceil(speed_print * 0.33)" }, + "speed_slowdown_layers": { "default_value": 1 }, + "speed_topbottom": { "value": "math.ceil(speed_print * 0.33)" }, + "speed_travel": + { + "maximum_value": 300, + "maximum_value_warning": 251, + "value": 120 + }, + "speed_travel_layer_0": { "value": "math.ceil(speed_travel * 0.4)" }, + "speed_wall": { "value": "math.ceil(speed_print * 0.33)" }, + "speed_wall_0": { "value": "math.ceil(speed_print * 0.33)" }, + "speed_wall_x": { "value": "math.ceil(speed_print * 0.66)" }, + "top_bottom_pattern": { "value": "'zigzag'" }, + "top_layers": { "value": 3 }, + "travel_retract_before_outer_wall": { "value": false }, + "wall_line_count": { "value": 3 }, + "wall_line_width": { "value": "machine_nozzle_size" }, + "z_seam_type": { "value": "'shortest'" }, + "zig_zaggify_infill": { "value": true } + } +} \ No newline at end of file diff --git a/resources/definitions/bq_hephestos.def.json b/resources/definitions/bq_hephestos.def.json index a5107547a0..c6fed43104 100644 --- a/resources/definitions/bq_hephestos.def.json +++ b/resources/definitions/bq_hephestos.def.json @@ -1,64 +1,38 @@ { - "name": "BQ Prusa i3 Hephestos", "version": 2, + "name": "BQ Prusa i3 Hephestos", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "BQ", "manufacturer": "BQ", "file_formats": "text/x-gcode", "platform": "bq_hephestos_platform.3mf", - "platform_offset": [ 0, -82, 0], - "machine_extruder_trains": - { - "0": "bq_hephestos_extruder_0" - }, - "firmware_file": "MarlinHephestos2.hex" + "firmware_file": "MarlinHephestos2.hex", + "machine_extruder_trains": { "0": "bq_hephestos_extruder_0" }, + "platform_offset": [ + 0, + -82, + 0 + ] }, - - "overrides": { + "overrides": + { + "layer_height": { "default_value": 0.2 }, + "layer_height_0": { "default_value": 0.2 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 210 }, + "machine_end_gcode": { "default_value": "; -- END GCODE --\nM104 S0 ;set extruder temperature to zero (turned off)\nG91 ;set to relative positioning\nG1 E-20 F300 ;retract the filament a bit to release some of the pressure\nG1 Z10 ;move extruder up 10 mm\nG90 ;set to absolute positioning\nG1 X0 Y180 F1200 ;expose the platform\nM84 ;turn off steppers\n; -- end of END GCODE --" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 180 }, "machine_name": { "default_value": "BQ Prusa i3 Hephestos" }, - "machine_start_gcode": { - "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 X0 Y0 ;move to the X/Y origin (Home)\nG28 Z0 ;move to the Z origin (Home)\nG1 Z15.0 F1200 ;move Z to position 15.0 mm\nG92 E0 ;zero the extruded length\nG1 E20 F200 ;extrude 20mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F7200 ;set feedrate to 120 mm/s\n; -- end of START GCODE --" - }, - "machine_end_gcode": { - "default_value": "; -- END GCODE --\nM104 S0 ;set extruder temperature to zero (turned off)\nG91 ;set to relative positioning\nG1 E-20 F300 ;retract the filament a bit to release some of the pressure\nG1 Z10 ;move extruder up 10 mm\nG90 ;set to absolute positioning\nG1 X0 Y180 F1200 ;expose the platform\nM84 ;turn off steppers\n; -- end of END GCODE --" - }, - "machine_width": { - "default_value": 215 - }, - "machine_depth": { - "default_value": 210 - }, - "machine_height": { - "default_value": 180 - }, - "machine_heated_bed": { - "default_value": false - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "layer_height": { - "default_value": 0.2 - }, - "layer_height_0": { - "default_value": 0.2 - }, - "wall_thickness": { - "value": "1" - }, - "top_bottom_thickness": { - "default_value": 1 - }, - "speed_print": { - "default_value": 40 - }, - "support_enable": { - "default_value": true - } + "machine_start_gcode": { "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 X0 Y0 ;move to the X/Y origin (Home)\nG28 Z0 ;move to the Z origin (Home)\nG1 Z15.0 F1200 ;move Z to position 15.0 mm\nG92 E0 ;zero the extruded length\nG1 E20 F200 ;extrude 20mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F7200 ;set feedrate to 120 mm/s\n; -- end of START GCODE --" }, + "machine_width": { "default_value": 215 }, + "speed_print": { "default_value": 40 }, + "support_enable": { "default_value": true }, + "top_bottom_thickness": { "default_value": 1 }, + "wall_thickness": { "value": "1" } } } \ No newline at end of file diff --git a/resources/definitions/bq_hephestos_2.def.json b/resources/definitions/bq_hephestos_2.def.json index 43e58386c7..09bca4621f 100644 --- a/resources/definitions/bq_hephestos_2.def.json +++ b/resources/definitions/bq_hephestos_2.def.json @@ -2,36 +2,38 @@ "version": 2, "name": "BQ Hephestos 2", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "BQ", "manufacturer": "BQ", - "platform": "bq_hephestos_2_platform.3mf", - "platform_offset": [6, 1320, 0 ], "file_formats": "text/x-gcode", - "machine_extruder_trains": - { - "0": "bq_hephestos_2_extruder_0" - } + "platform": "bq_hephestos_2_platform.3mf", + "machine_extruder_trains": { "0": "bq_hephestos_2_extruder_0" }, + "platform_offset": [ + 6, + 1320, + 0 + ] }, - - "overrides": { - "machine_name": { "default_value": "BQ Hephestos 2" }, - "machine_start_gcode": { "default_value": "; -- START GCODE --\nM104 S{material_print_temperature}\nG28 ; Zero-ing position\nG29 ; Auto bed-leveling\nG0 X4 Y297 Z15 F4000 ; Fast move to BQ's start position\nG90 ; Set to Absolute Positioning\nG92 E0 ; Reset extruder 0\nG1 F1800 ; Set default feedrate\nM109 S{material_print_temperature} ; Makes sure the temperature is correct before printing\n; -- end of START GCODE --" }, - "machine_end_gcode": { "default_value": "; -- END GCODE --\nM801 ; Marlin G-CODE to fire end print procedure\n; -- end of END GCODE --" }, - "machine_width": { "default_value": 210 }, - "machine_depth": { "default_value": 297 }, - "machine_height": { "default_value": 220 }, - "machine_heated_bed": { "default_value": false }, - "machine_center_is_zero": { "default_value": false }, + "overrides": + { + "infill_sparse_density": { "default_value": 20 }, "layer_height": { "default_value": 0.2 }, "layer_height_0": { "default_value": 0.2 }, - "wall_thickness": { "value": "1.2" }, - "top_bottom_thickness": { "default_value": 1.2 }, - "infill_sparse_density": { "default_value": 20 }, - "speed_print": { "default_value": 60 }, - "skirt_line_count": { "default_value": 4 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 297 }, + "machine_end_gcode": { "default_value": "; -- END GCODE --\nM801 ; Marlin G-CODE to fire end print procedure\n; -- end of END GCODE --" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 220 }, + "machine_name": { "default_value": "BQ Hephestos 2" }, + "machine_start_gcode": { "default_value": "; -- START GCODE --\nM104 S{material_print_temperature}\nG28 ; Zero-ing position\nG29 ; Auto bed-leveling\nG0 X4 Y297 Z15 F4000 ; Fast move to BQ's start position\nG90 ; Set to Absolute Positioning\nG92 E0 ; Reset extruder 0\nG1 F1800 ; Set default feedrate\nM109 S{material_print_temperature} ; Makes sure the temperature is correct before printing\n; -- end of START GCODE --" }, + "machine_width": { "default_value": 210 }, "skirt_brim_minimal_length": { "default_value": 30 }, - "skirt_gap": { "default_value": 6 } + "skirt_gap": { "default_value": 6 }, + "skirt_line_count": { "default_value": 4 }, + "speed_print": { "default_value": 60 }, + "top_bottom_thickness": { "default_value": 1.2 }, + "wall_thickness": { "value": "1.2" } } -} +} \ No newline at end of file diff --git a/resources/definitions/bq_hephestos_xl.def.json b/resources/definitions/bq_hephestos_xl.def.json index a0cd403a74..3c0aa88eab 100644 --- a/resources/definitions/bq_hephestos_xl.def.json +++ b/resources/definitions/bq_hephestos_xl.def.json @@ -2,62 +2,36 @@ "version": 2, "name": "BQ Prusa i3 Hephestos XL", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, - "manufacturer": "BQ", "author": "BQ", + "manufacturer": "BQ", "file_formats": "text/x-gcode", "platform": "bq_hephestos_platform.3mf", - "platform_offset": [ 0, -82, 0], - "machine_extruder_trains": - { - "0": "bq_hephestos_xl_extruder_0" - } + "machine_extruder_trains": { "0": "bq_hephestos_xl_extruder_0" }, + "platform_offset": [ + 0, + -82, + 0 + ] }, - - "overrides": { + "overrides": + { + "layer_height": { "default_value": 0.2 }, + "layer_height_0": { "default_value": 0.2 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "; -- END GCODE --\nM104 S0 ;set extruder temperature to zero (turned off)\nG91 ;set to relative positioning\nG1 E-20 F300 ;retract the filament a bit to release some of the pressure\nG1 Z10 ;move extruder up 10 mm\nG90 ;set to absolute positioning\nG1 X0 Y180 F1200 ;expose the platform\nM84 ;turn off steppers\n; -- end of END GCODE --" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 180 }, "machine_name": { "default_value": "BQ Prusa i3 Hephestos XL" }, - "machine_start_gcode": { - "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 X0 Y0 ;move to the X/Y origin (Home)\nG28 Z0 ;move to the Z origin (Home)\nG1 Z15.0 F1200 ;move Z to position 15.0 mm\nG92 E0 ;zero the extruded length\nG1 E20 F200 ;extrude 20mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F7200 ;set feedrate to 120 mm/s\n; -- end of START GCODE --" - }, - "machine_end_gcode": { - "default_value": "; -- END GCODE --\nM104 S0 ;set extruder temperature to zero (turned off)\nG91 ;set to relative positioning\nG1 E-20 F300 ;retract the filament a bit to release some of the pressure\nG1 Z10 ;move extruder up 10 mm\nG90 ;set to absolute positioning\nG1 X0 Y180 F1200 ;expose the platform\nM84 ;turn off steppers\n; -- end of END GCODE --" - }, - "machine_width": { - "default_value": 200 - }, - "machine_depth": { - "default_value": 300 - }, - "machine_height": { - "default_value": 180 - }, - "machine_heated_bed": { - "default_value": false - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "layer_height": { - "default_value": 0.2 - }, - "layer_height_0": { - "default_value": 0.2 - }, - "wall_thickness": { - "value": "1" - }, - "top_bottom_thickness": { - "default_value": 1 - }, - "speed_print": { - "default_value": 40 - }, - "support_enable": { - "default_value": true - } + "machine_start_gcode": { "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 X0 Y0 ;move to the X/Y origin (Home)\nG28 Z0 ;move to the Z origin (Home)\nG1 Z15.0 F1200 ;move Z to position 15.0 mm\nG92 E0 ;zero the extruded length\nG1 E20 F200 ;extrude 20mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F7200 ;set feedrate to 120 mm/s\n; -- end of START GCODE --" }, + "machine_width": { "default_value": 200 }, + "speed_print": { "default_value": 40 }, + "support_enable": { "default_value": true }, + "top_bottom_thickness": { "default_value": 1 }, + "wall_thickness": { "value": "1" } } } \ No newline at end of file diff --git a/resources/definitions/bq_witbox.def.json b/resources/definitions/bq_witbox.def.json index eb135a7945..28b1328b00 100644 --- a/resources/definitions/bq_witbox.def.json +++ b/resources/definitions/bq_witbox.def.json @@ -2,64 +2,37 @@ "version": 2, "name": "BQ Witbox", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "BQ", "manufacturer": "BQ", "file_formats": "text/x-gcode", "platform": "bq_witbox_platform.3mf", - "platform_offset": [ 0, -145, -38], - "machine_extruder_trains": - { - "0": "bq_witbox_extruder_0" - }, - "firmware_file": "MarlinWitbox.hex" + "firmware_file": "MarlinWitbox.hex", + "machine_extruder_trains": { "0": "bq_witbox_extruder_0" }, + "platform_offset": [ + 0, + -145, + -38 + ] }, - - "overrides": { + "overrides": + { + "layer_height": { "default_value": 0.2 }, + "layer_height_0": { "default_value": 0.2 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 210 }, + "machine_end_gcode": { "default_value": "; -- END GCODE --\nM104 S0 ;set extruder temperature to zero (turned off)\nG91 ;set to relative positioning\nG1 E-20 F300 ;retract the filament a bit to release some of the pressure\nG90 ;set to absolute positioning\nG1 Z200 ;move the platform to the bottom\nG28 X0 Y0 ;move to the X/Y origin (Home)\nM84 ;turn off steppers\n; -- end of END GCODE --" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 200 }, "machine_name": { "default_value": "BQ Witbox" }, - "machine_start_gcode": { - "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 X0 Y0 ;move to the X/Y origin (Home)\nG28 Z0 ;move to the Z origin (Home)\nG1 Z15.0 F1200 ;move Z to position 15.0 mm\nG92 E0 ;zero the extruded length\nG1 E20 F200 ;extrude 20mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F7200 ;set feedrate to 120 mm/s\n; -- end of START GCODE --" - }, - "machine_end_gcode": { - "default_value": "; -- END GCODE --\nM104 S0 ;set extruder temperature to zero (turned off)\nG91 ;set to relative positioning\nG1 E-20 F300 ;retract the filament a bit to release some of the pressure\nG90 ;set to absolute positioning\nG1 Z200 ;move the platform to the bottom\nG28 X0 Y0 ;move to the X/Y origin (Home)\nM84 ;turn off steppers\n; -- end of END GCODE --" - }, - "machine_width": { - "default_value": 297 - }, - "machine_depth": { - "default_value": 210 - }, - "machine_height": { - "default_value": 200 - }, - "machine_heated_bed": { - "default_value": false - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "layer_height": { - "default_value": 0.2 - }, - "layer_height_0": { - "default_value": 0.2 - }, - "wall_thickness": { - "value": "1" - }, - "top_bottom_thickness": { - "default_value": 1 - }, - "speed_print": { - "default_value": 40 - }, - "support_enable": { - "default_value": true - } - + "machine_start_gcode": { "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 X0 Y0 ;move to the X/Y origin (Home)\nG28 Z0 ;move to the Z origin (Home)\nG1 Z15.0 F1200 ;move Z to position 15.0 mm\nG92 E0 ;zero the extruded length\nG1 E20 F200 ;extrude 20mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F7200 ;set feedrate to 120 mm/s\n; -- end of START GCODE --" }, + "machine_width": { "default_value": 297 }, + "speed_print": { "default_value": 40 }, + "support_enable": { "default_value": true }, + "top_bottom_thickness": { "default_value": 1 }, + "wall_thickness": { "value": "1" } } } \ No newline at end of file diff --git a/resources/definitions/bq_witbox_2.def.json b/resources/definitions/bq_witbox_2.def.json index 216fec55c2..e5184fbfef 100644 --- a/resources/definitions/bq_witbox_2.def.json +++ b/resources/definitions/bq_witbox_2.def.json @@ -2,74 +2,40 @@ "version": 2, "name": "BQ Witbox 2", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "BQ", "manufacturer": "BQ", "file_formats": "text/x-gcode", "platform": "bq_witbox_platform.3mf", - "platform_offset": [0, -145, -38], - "machine_extruder_trains": - { - "0": "bq_witbox_2_extruder_0" - } + "machine_extruder_trains": { "0": "bq_witbox_2_extruder_0" }, + "platform_offset": [ + 0, + -145, + -38 + ] }, - - "overrides": { + "overrides": + { + "infill_sparse_density": { "default_value": 20 }, + "layer_height": { "default_value": 0.2 }, + "layer_height_0": { "default_value": 0.2 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 210 }, + "machine_end_gcode": { "default_value": "; -- END GCODE --\nM801 ; Custom GCODE to fire end print procedure\n; -- end of END GCODE --" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 200 }, "machine_name": { "default_value": "BQ Witbox 2" }, - "machine_start_gcode": { - "default_value": "; -- START GCODE --\nM800 ; Custom GCODE to fire start print procedure\n; -- end of START GCODE --" - }, - "machine_end_gcode": { - "default_value": "; -- END GCODE --\nM801 ; Custom GCODE to fire end print procedure\n; -- end of END GCODE --" - }, - "machine_width": { - "default_value": 297 - }, - "machine_depth": { - "default_value": 210 - }, - "machine_height": { - "default_value": 200 - }, - "machine_heated_bed": { - "default_value": false - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "layer_height": { - "default_value": 0.2 - }, - "layer_height_0": { - "default_value": 0.2 - }, - "wall_thickness": { - "value": "1.2" - }, - "top_bottom_thickness": { - "default_value": 1.2 - }, - "infill_sparse_density": { - "default_value": 20 - }, - "speed_print": { - "default_value": 60 - }, - "skirt_line_count": { - "default_value": 4 - }, - "skirt_brim_minimal_length": { - "default_value": 30 - }, - "skirt_gap": { - "default_value": 6 - }, - "support_enable": { - "default_value": false - } + "machine_start_gcode": { "default_value": "; -- START GCODE --\nM800 ; Custom GCODE to fire start print procedure\n; -- end of START GCODE --" }, + "machine_width": { "default_value": 297 }, + "skirt_brim_minimal_length": { "default_value": 30 }, + "skirt_gap": { "default_value": 6 }, + "skirt_line_count": { "default_value": 4 }, + "speed_print": { "default_value": 60 }, + "support_enable": { "default_value": false }, + "top_bottom_thickness": { "default_value": 1.2 }, + "wall_thickness": { "value": "1.2" } } } \ No newline at end of file diff --git a/resources/definitions/builder_premium_large.def.json b/resources/definitions/builder_premium_large.def.json index f0e64921e7..1ba55471d3 100644 --- a/resources/definitions/builder_premium_large.def.json +++ b/resources/definitions/builder_premium_large.def.json @@ -2,59 +2,30 @@ "version": 2, "name": "Builder Premium Large", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Builder SZ", "manufacturer": "Builder", - "quality_definition": "builder_premium_small", "file_formats": "text/x-gcode", "platform": "builder_premium_platform.3mf", - "platform_offset": [-126, -36, 117], "has_machine_quality": true, - "preferred_quality_type": "normal", "machine_extruder_trains": { "0": "builder_premium_large_rear", "1": "builder_premium_large_front" - } + }, + "platform_offset": [ + -126, + -36, + 117 + ], + "preferred_quality_type": "normal", + "quality_definition": "builder_premium_small" }, - - "overrides": { - "machine_name": { "default_value": "Builder Premium Large" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 215 }, - "machine_height": { "default_value": 600 }, - "machine_depth": { "default_value": 205 }, - - "infill_pattern": {"value": "'triangles'" }, - "infill_before_walls": {"value": false }, - - "default_material_print_temperature": { "value": "215" }, - "material_print_temperature_layer_0": { "value": "material_print_temperature + 5" }, - "material_standby_temperature": { "value": "material_print_temperature" }, - - "switch_extruder_retraction_speeds": {"default_value": 15 }, - "switch_extruder_retraction_amount": {"value": 1 }, - - "speed_travel": { "value": "100" }, - "speed_layer_0": { "value": "20" }, - "speed_prime_tower": { "value": "speed_topbottom" }, - "speed_print": { "value": "40" }, - "speed_support": { "value": "speed_wall_0" }, - "speed_support_interface": { "value": "speed_topbottom" }, - "speed_topbottom": { "value": "math.ceil(speed_print * 20 / 35)" }, - "speed_wall": { "value": "math.ceil(speed_print * 30 / 40)" }, - "speed_wall_0": { "value": "math.ceil(speed_wall * 20 / 25)" }, - "speed_wall_x": { "value": "speed_wall" }, - - "prime_tower_position_x": { "value": "175" }, - "prime_tower_position_y": { "value": "178" }, - "prime_tower_wipe_enabled": { "default_value": false }, - "prime_tower_min_volume": { "default_value": 50 }, - - "prime_blob_enable": { "enabled": true }, - - "acceleration_enabled": { "value": "True" }, + "overrides": + { + "acceleration_enabled": { "value": true }, "acceleration_layer_0": { "value": "acceleration_topbottom" }, "acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, "acceleration_print": { "value": "3000" }, @@ -64,10 +35,13 @@ "acceleration_travel": { "value": "acceleration_print" }, "acceleration_wall": { "value": "math.ceil(acceleration_print * 1000 / 3000)" }, "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 1000 / 1000)" }, - + "adhesion_type": { "default_value": "skirt" }, "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, "cool_min_layer_time": { "default_value": 10 }, - + "default_material_print_temperature": { "value": "215" }, + "gantry_height": { "value": "55" }, + "infill_before_walls": { "value": false }, + "infill_pattern": { "value": "'triangles'" }, "jerk_enabled": { "value": "True" }, "jerk_layer_0": { "value": "jerk_topbottom" }, "jerk_prime_tower": { "value": "math.ceil(jerk_print * 15 / 25)" }, @@ -77,31 +51,55 @@ "jerk_topbottom": { "value": "math.ceil(jerk_print * 5 / 25)" }, "jerk_wall": { "value": "math.ceil(jerk_print * 10 / 25)" }, "jerk_wall_0": { "value": "math.ceil(jerk_wall * 5 / 10)" }, - - "wall_thickness": { "value": "1.2" }, - - "retraction_amount": { "default_value": 3 }, - "retraction_speed": { "default_value": 15 }, - "travel_retract_before_outer_wall": { "default_value": true }, - "skin_overlap": { "value": "15" }, - "adhesion_type": { "default_value": "skirt" }, - "machine_nozzle_heat_up_speed": { "default_value": 2 }, - "machine_nozzle_cool_down_speed": { "default_value": 2 }, - "machine_head_with_fans_polygon": { "default_value": [[-75, -18],[-75, 35],[18, 35],[18, -18]] }, - "gantry_height": { "value": "55" }, + "machine_acceleration": { "default_value": 1000 }, + "machine_depth": { "default_value": 205 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 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": + { + "default_value": [ + [-75, -18], + [-75, 35], + [18, 35], + [18, -18] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 600 }, + "machine_max_acceleration_z": { "default_value": 500 }, "machine_max_feedrate_x": { "default_value": 300 }, "machine_max_feedrate_y": { "default_value": 300 }, "machine_max_feedrate_z": { "default_value": 40 }, - "machine_max_acceleration_z": { "default_value": 500 }, - "machine_acceleration": { "default_value": 1000 }, "machine_max_jerk_xy": { "default_value": 10 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "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 E15 ;extrude 15mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\nT0 ;Start with Rear Extruder\n;Put printing message on LCD screen\nM117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 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_name": { "default_value": "Builder Premium Large" }, + "machine_nozzle_cool_down_speed": { "default_value": 2 }, + "machine_nozzle_heat_up_speed": { "default_value": 2 }, + "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 E15 ;extrude 15mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\nT0 ;Start with Rear Extruder\n;Put printing message on LCD screen\nM117 Printing..." }, + "machine_width": { "default_value": 215 }, + "material_print_temperature_layer_0": { "value": "material_print_temperature + 5" }, + "material_standby_temperature": { "value": "material_print_temperature" }, + "prime_blob_enable": { "enabled": true }, + "prime_tower_min_volume": { "default_value": 50 }, + "prime_tower_position_x": { "value": "175" }, + "prime_tower_position_y": { "value": "178" }, + "prime_tower_wipe_enabled": { "default_value": false }, + "retraction_amount": { "default_value": 3 }, + "retraction_speed": { "default_value": 15 }, + "skin_overlap": { "value": "15" }, + "speed_layer_0": { "value": "20" }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": "40" }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_topbottom": { "value": "math.ceil(speed_print * 20 / 35)" }, + "speed_travel": { "value": "100" }, + "speed_wall": { "value": "math.ceil(speed_print * 30 / 40)" }, + "speed_wall_0": { "value": "math.ceil(speed_wall * 20 / 25)" }, + "speed_wall_x": { "value": "speed_wall" }, + "switch_extruder_retraction_amount": { "value": 1 }, + "switch_extruder_retraction_speeds": { "default_value": 15 }, + "travel_retract_before_outer_wall": { "default_value": true }, + "wall_thickness": { "value": "1.2" } } -} +} \ No newline at end of file diff --git a/resources/definitions/builder_premium_medium.def.json b/resources/definitions/builder_premium_medium.def.json index e85c654fa2..b8a3d8578d 100644 --- a/resources/definitions/builder_premium_medium.def.json +++ b/resources/definitions/builder_premium_medium.def.json @@ -2,59 +2,30 @@ "version": 2, "name": "Builder Premium Medium", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Builder SZ", "manufacturer": "Builder", - "quality_definition": "builder_premium_small", "file_formats": "text/x-gcode", "platform": "builder_premium_platform.3mf", - "platform_offset": [-126, -36, 117], "has_machine_quality": true, - "preferred_quality_type": "normal", "machine_extruder_trains": { "0": "builder_premium_medium_rear", "1": "builder_premium_medium_front" - } + }, + "platform_offset": [ + -126, + -36, + 117 + ], + "preferred_quality_type": "normal", + "quality_definition": "builder_premium_small" }, - - "overrides": { - "machine_name": { "default_value": "Builder Premium Medium" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 215 }, - "machine_height": { "default_value": 400 }, - "machine_depth": { "default_value": 205 }, - - "infill_pattern": {"value": "'triangles'" }, - "infill_before_walls": {"value": false }, - - "default_material_print_temperature": { "value": "215" }, - "material_print_temperature_layer_0": { "value": "material_print_temperature + 5" }, - "material_standby_temperature": { "value": "material_print_temperature" }, - - "switch_extruder_retraction_speeds": {"default_value": 15 }, - "switch_extruder_retraction_amount": {"value": 1 }, - - "speed_travel": { "value": "100" }, - "speed_layer_0": { "value": "20" }, - "speed_prime_tower": { "value": "speed_topbottom" }, - "speed_print": { "value": "40" }, - "speed_support": { "value": "speed_wall_0" }, - "speed_support_interface": { "value": "speed_topbottom" }, - "speed_topbottom": { "value": "math.ceil(speed_print * 20 / 35)" }, - "speed_wall": { "value": "math.ceil(speed_print * 30 / 40)" }, - "speed_wall_0": { "value": "math.ceil(speed_wall * 20 / 25)" }, - "speed_wall_x": { "value": "speed_wall" }, - - "prime_tower_position_x": { "value": "175" }, - "prime_tower_position_y": { "value": "178" }, - "prime_tower_wipe_enabled": { "default_value": false }, - "prime_tower_min_volume": { "default_value": 50 }, - - "prime_blob_enable": { "enabled": true }, - - "acceleration_enabled": { "value": "True" }, + "overrides": + { + "acceleration_enabled": { "value": true }, "acceleration_layer_0": { "value": "acceleration_topbottom" }, "acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, "acceleration_print": { "value": "3000" }, @@ -64,10 +35,13 @@ "acceleration_travel": { "value": "acceleration_print" }, "acceleration_wall": { "value": "math.ceil(acceleration_print * 1000 / 3000)" }, "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 1000 / 1000)" }, - + "adhesion_type": { "default_value": "skirt" }, "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, "cool_min_layer_time": { "default_value": 10 }, - + "default_material_print_temperature": { "value": "215" }, + "gantry_height": { "value": "55" }, + "infill_before_walls": { "value": false }, + "infill_pattern": { "value": "'triangles'" }, "jerk_enabled": { "value": "True" }, "jerk_layer_0": { "value": "jerk_topbottom" }, "jerk_prime_tower": { "value": "math.ceil(jerk_print * 15 / 25)" }, @@ -77,31 +51,55 @@ "jerk_topbottom": { "value": "math.ceil(jerk_print * 5 / 25)" }, "jerk_wall": { "value": "math.ceil(jerk_print * 10 / 25)" }, "jerk_wall_0": { "value": "math.ceil(jerk_wall * 5 / 10)" }, - - "wall_thickness": { "value": "1.2" }, - - "retraction_amount": { "default_value": 3 }, - "retraction_speed": { "default_value": 15 }, - "travel_retract_before_outer_wall": { "default_value": true }, - "skin_overlap": { "value": "15" }, - "adhesion_type": { "default_value": "skirt" }, - "machine_nozzle_heat_up_speed": { "default_value": 2 }, - "machine_nozzle_cool_down_speed": { "default_value": 2 }, - "machine_head_with_fans_polygon": { "default_value": [[-75, -18],[-75, 35],[18, 35],[18, -18]] }, - "gantry_height": { "value": "55" }, + "machine_acceleration": { "default_value": 1000 }, + "machine_depth": { "default_value": 205 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 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": + { + "default_value": [ + [-75, -18], + [-75, 35], + [18, 35], + [18, -18] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 400 }, + "machine_max_acceleration_z": { "default_value": 500 }, "machine_max_feedrate_x": { "default_value": 300 }, "machine_max_feedrate_y": { "default_value": 300 }, "machine_max_feedrate_z": { "default_value": 40 }, - "machine_max_acceleration_z": { "default_value": 500 }, - "machine_acceleration": { "default_value": 1000 }, "machine_max_jerk_xy": { "default_value": 10 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "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 E15 ;extrude 15mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\nT0 ;Start with Rear Extruder\n;Put printing message on LCD screen\nM117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 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_name": { "default_value": "Builder Premium Medium" }, + "machine_nozzle_cool_down_speed": { "default_value": 2 }, + "machine_nozzle_heat_up_speed": { "default_value": 2 }, + "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 E15 ;extrude 15mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\nT0 ;Start with Rear Extruder\n;Put printing message on LCD screen\nM117 Printing..." }, + "machine_width": { "default_value": 215 }, + "material_print_temperature_layer_0": { "value": "material_print_temperature + 5" }, + "material_standby_temperature": { "value": "material_print_temperature" }, + "prime_blob_enable": { "enabled": true }, + "prime_tower_min_volume": { "default_value": 50 }, + "prime_tower_position_x": { "value": "175" }, + "prime_tower_position_y": { "value": "178" }, + "prime_tower_wipe_enabled": { "default_value": false }, + "retraction_amount": { "default_value": 3 }, + "retraction_speed": { "default_value": 15 }, + "skin_overlap": { "value": "15" }, + "speed_layer_0": { "value": "20" }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": "40" }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_topbottom": { "value": "math.ceil(speed_print * 20 / 35)" }, + "speed_travel": { "value": "100" }, + "speed_wall": { "value": "math.ceil(speed_print * 30 / 40)" }, + "speed_wall_0": { "value": "math.ceil(speed_wall * 20 / 25)" }, + "speed_wall_x": { "value": "speed_wall" }, + "switch_extruder_retraction_amount": { "value": 1 }, + "switch_extruder_retraction_speeds": { "default_value": 15 }, + "travel_retract_before_outer_wall": { "default_value": true }, + "wall_thickness": { "value": "1.2" } } -} +} \ No newline at end of file diff --git a/resources/definitions/builder_premium_small.def.json b/resources/definitions/builder_premium_small.def.json index c89b01566b..ab773a45d2 100644 --- a/resources/definitions/builder_premium_small.def.json +++ b/resources/definitions/builder_premium_small.def.json @@ -2,58 +2,29 @@ "version": 2, "name": "Builder Premium Small", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Builder SZ", "manufacturer": "Builder", "file_formats": "text/x-gcode", "platform": "builder_premium_platform.3mf", - "platform_offset": [-126, -36, 117], "has_machine_quality": true, - "preferred_quality_type": "normal", "machine_extruder_trains": { "0": "builder_premium_small_rear", "1": "builder_premium_small_front" - } + }, + "platform_offset": [ + -126, + -36, + 117 + ], + "preferred_quality_type": "normal" }, - - "overrides": { - "machine_name": { "default_value": "Builder Premium Small" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 215 }, - "machine_height": { "default_value": 200 }, - "machine_depth": { "default_value": 205 }, - - "infill_pattern": {"value": "'triangles'" }, - "infill_before_walls": {"value": false }, - - "default_material_print_temperature": { "value": "215" }, - "material_print_temperature_layer_0": { "value": "material_print_temperature + 5" }, - "material_standby_temperature": { "value": "material_print_temperature" }, - - "switch_extruder_retraction_speeds": {"default_value": 15 }, - "switch_extruder_retraction_amount": {"value": 1 }, - - "speed_travel": { "value": "100" }, - "speed_layer_0": { "value": "20" }, - "speed_prime_tower": { "value": "speed_topbottom" }, - "speed_print": { "value": "40" }, - "speed_support": { "value": "speed_wall_0" }, - "speed_support_interface": { "value": "speed_topbottom" }, - "speed_topbottom": { "value": "math.ceil(speed_print * 20 / 35)" }, - "speed_wall": { "value": "math.ceil(speed_print * 30 / 40)" }, - "speed_wall_0": { "value": "math.ceil(speed_wall * 20 / 25)" }, - "speed_wall_x": { "value": "speed_wall" }, - - "prime_tower_position_x": { "value": "175" }, - "prime_tower_position_y": { "value": "178" }, - "prime_tower_wipe_enabled": { "default_value": false }, - "prime_tower_min_volume": { "default_value": 50 }, - - "prime_blob_enable": { "enabled": true }, - - "acceleration_enabled": { "value": "True" }, + "overrides": + { + "acceleration_enabled": { "value": true }, "acceleration_layer_0": { "value": "acceleration_topbottom" }, "acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, "acceleration_print": { "value": "3000" }, @@ -63,10 +34,13 @@ "acceleration_travel": { "value": "acceleration_print" }, "acceleration_wall": { "value": "math.ceil(acceleration_print * 1000 / 3000)" }, "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 1000 / 1000)" }, - + "adhesion_type": { "default_value": "skirt" }, "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, "cool_min_layer_time": { "default_value": 10 }, - + "default_material_print_temperature": { "value": "215" }, + "gantry_height": { "value": "55" }, + "infill_before_walls": { "value": false }, + "infill_pattern": { "value": "'triangles'" }, "jerk_enabled": { "value": "True" }, "jerk_layer_0": { "value": "jerk_topbottom" }, "jerk_prime_tower": { "value": "math.ceil(jerk_print * 15 / 25)" }, @@ -76,31 +50,55 @@ "jerk_topbottom": { "value": "math.ceil(jerk_print * 5 / 25)" }, "jerk_wall": { "value": "math.ceil(jerk_print * 10 / 25)" }, "jerk_wall_0": { "value": "math.ceil(jerk_wall * 5 / 10)" }, - - "wall_thickness": { "value": "1.2" }, - - "retraction_amount": { "default_value": 3 }, - "retraction_speed": { "default_value": 15 }, - "travel_retract_before_outer_wall": { "default_value": true }, - "skin_overlap": { "value": "15" }, - "adhesion_type": { "default_value": "skirt" }, - "machine_nozzle_heat_up_speed": { "default_value": 2 }, - "machine_nozzle_cool_down_speed": { "default_value": 2 }, - "machine_head_with_fans_polygon": { "default_value": [[-75, -18],[-75, 35],[18, 35],[18, -18]] }, - "gantry_height": { "value": "55" }, + "machine_acceleration": { "default_value": 1000 }, + "machine_depth": { "default_value": 205 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 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": + { + "default_value": [ + [-75, -18], + [-75, 35], + [18, 35], + [18, -18] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200 }, + "machine_max_acceleration_z": { "default_value": 500 }, "machine_max_feedrate_x": { "default_value": 300 }, "machine_max_feedrate_y": { "default_value": 300 }, "machine_max_feedrate_z": { "default_value": 40 }, - "machine_max_acceleration_z": { "default_value": 500 }, - "machine_acceleration": { "default_value": 1000 }, "machine_max_jerk_xy": { "default_value": 10 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "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 E15 ;extrude 15mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\nT0 ;Start with Rear Extruder\n;Put printing message on LCD screen\nM117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 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_name": { "default_value": "Builder Premium Small" }, + "machine_nozzle_cool_down_speed": { "default_value": 2 }, + "machine_nozzle_heat_up_speed": { "default_value": 2 }, + "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 E15 ;extrude 15mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\nT0 ;Start with Rear Extruder\n;Put printing message on LCD screen\nM117 Printing..." }, + "machine_width": { "default_value": 215 }, + "material_print_temperature_layer_0": { "value": "material_print_temperature + 5" }, + "material_standby_temperature": { "value": "material_print_temperature" }, + "prime_blob_enable": { "enabled": true }, + "prime_tower_min_volume": { "default_value": 50 }, + "prime_tower_position_x": { "value": "175" }, + "prime_tower_position_y": { "value": "178" }, + "prime_tower_wipe_enabled": { "default_value": false }, + "retraction_amount": { "default_value": 3 }, + "retraction_speed": { "default_value": 15 }, + "skin_overlap": { "value": "15" }, + "speed_layer_0": { "value": "20" }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": "40" }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_topbottom": { "value": "math.ceil(speed_print * 20 / 35)" }, + "speed_travel": { "value": "100" }, + "speed_wall": { "value": "math.ceil(speed_print * 30 / 40)" }, + "speed_wall_0": { "value": "math.ceil(speed_wall * 20 / 25)" }, + "speed_wall_x": { "value": "speed_wall" }, + "switch_extruder_retraction_amount": { "value": 1 }, + "switch_extruder_retraction_speeds": { "default_value": 15 }, + "travel_retract_before_outer_wall": { "default_value": true }, + "wall_thickness": { "value": "1.2" } } -} +} \ No newline at end of file diff --git a/resources/definitions/cartesio.def.json b/resources/definitions/cartesio.def.json index 631f947324..db725f91ed 100644 --- a/resources/definitions/cartesio.def.json +++ b/resources/definitions/cartesio.def.json @@ -1,22 +1,18 @@ { - "name": "Cartesio", "version": 2, + "name": "Cartesio", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Scheepers", "manufacturer": "MaukCC", "file_formats": "text/x-gcode", - + "platform": "cartesio_platform.3mf", + "first_start_actions": [ "MachineSettingsAction" ], "has_machine_quality": true, "has_materials": true, "has_variants": true, - - "variants_name": "Tool", - "preferred_variant_name": "0.8mm thermoplastic extruder", - "preferred_material": "generic_pla", - "preferred_quality_type": "normal", - "machine_extruder_trains": { "0": "cartesio_extruder_0", @@ -24,46 +20,55 @@ "2": "cartesio_extruder_2", "3": "cartesio_extruder_3" }, - "platform": "cartesio_platform.3mf", - "platform_offset": [ -220, -5, 150], - "first_start_actions": ["MachineSettingsAction"], - "supported_actions": ["MachineSettingsAction"] + "platform_offset": [ + -220, + -5, + 150 + ], + "preferred_material": "generic_pla", + "preferred_quality_type": "normal", + "preferred_variant_name": "0.8mm thermoplastic extruder", + "supported_actions": [ "MachineSettingsAction" ], + "variants_name": "Tool" }, - - "overrides": { - "machine_extruder_count": { "default_value": 2 }, - "machine_heated_bed": { "default_value": true }, - "machine_center_is_zero": { "default_value": false }, + "overrides": + { "gantry_height": { "value": "35" }, - "machine_height": { "default_value": 400 }, - "machine_depth": { "default_value": 270 }, - "machine_width": { "default_value": 430 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "material_print_temp_wait": { "default_value": false }, - "material_bed_temp_wait": { "default_value": false }, - "prime_tower_enable": { "default_value": false }, - "prime_tower_min_volume": { "value": "0.7" }, - "prime_tower_size": { "value": 24.0 }, - "prime_tower_position_x": { "value": "125" }, - "prime_tower_position_y": { "value": "70" }, - "prime_blob_enable": { "default_value": false }, - "machine_max_feedrate_z": { "default_value": 20 }, - "machine_disallowed_areas": { "default_value": [ - [[215, 135], [-215, 135], [-215, 75], [215, 75]] - ]}, - "machine_start_gcode": { - "default_value": "\nM92 E159 ;2288 for V5 extruder\n\nM140 S{material_bed_temperature_layer_0}\nM104 T1 S120\nM104 T2 S120\nM104 T3 S120\n\nG21\nG90\nM42 S255 P13 ;chamber lights\nM42 S255 P12 ;fume extraction\nM204 S300 ;default acceleration\nM205 X10 ;default jerk\n\nM117 Homing Y ......\nG28 Y\nM117 Homing X ......\nG28 X\nM117 Homing Z ......\nG28 Z F100\nG1 Z10 F600\nG1 X70 Y20 F9000;go to wipe point\n\nM190 S{material_bed_temperature_layer_0}\n\nM117 Heating for 50 sec.\nG4 S20\nM117 Heating for 30 sec.\nG4 S20\nM117 Heating for 10 sec.\nM300 S1200 P1000\nG4 S9\n\nM117 purging nozzle....\nT0\nG92 E0;set E\nG1 E10 F100\nG92 E0\nG1 E-1 F600\n\nM117 wiping nozzle....\nG1 X1 Y24 F3000\nG1 X70 F9000\nG1 Z10 F900\n\nM104 T1 S21\nM104 T2 S21\nM104 T3 S21\n\nM117 Printing .....\n" - }, - "machine_end_gcode": { - "default_value": "; -- END GCODE --\nM117 cooling down....\nM106 S255\nM140 S5\nM104 T0 S5\nM104 T1 S5\nM104 T2 S5\nM104 T3 S5\n\nG91\nG1 Z1 F900\nG90\n\nG1 X20.0 Y260.0 F6000\nG4 S7\nM84\nG4 S90\nM107\nM42 P12 S0\nM42 P13 S0\nM84\nT0\nM117 Finished.\n; -- end of GCODE --" - }, "layer_height": { "maximum_value": "(0.8 * min(extruderValues('machine_nozzle_size')))" }, "layer_height_0": { "maximum_value": "(0.8 * min(extruderValues('machine_nozzle_size')))" }, - "retraction_extra_prime_amount": { "minimum_value_warning": "-2.0" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 270 }, + "machine_disallowed_areas": + { + "default_value": [ + [ + [215, 135], + [-215, 135], + [-215, 75], + [215, 75] + ] + ] + }, + "machine_end_gcode": { "default_value": "; -- END GCODE --\nM117 cooling down....\nM106 S255\nM140 S5\nM104 T0 S5\nM104 T1 S5\nM104 T2 S5\nM104 T3 S5\n\nG91\nG1 Z1 F900\nG90\n\nG1 X20.0 Y260.0 F6000\nG4 S7\nM84\nG4 S90\nM107\nM42 P12 S0\nM42 P13 S0\nM84\nT0\nM117 Finished.\n; -- end of GCODE --" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 400 }, + "machine_max_feedrate_z": { "default_value": 20 }, + "machine_min_cool_heat_time_window": { "default_value": 5 }, + "machine_nozzle_cool_down_speed": { "default_value": 20 }, + "machine_nozzle_heat_up_speed": { "default_value": 20 }, + "machine_start_gcode": { "default_value": "\nM92 E159 ;2288 for V5 extruder\n\nM140 S{material_bed_temperature_layer_0}\nM104 T1 S120\nM104 T2 S120\nM104 T3 S120\n\nG21\nG90\nM42 S255 P13 ;chamber lights\nM42 S255 P12 ;fume extraction\nM204 S300 ;default acceleration\nM205 X10 ;default jerk\n\nM117 Homing Y ......\nG28 Y\nM117 Homing X ......\nG28 X\nM117 Homing Z ......\nG28 Z F100\nG1 Z10 F600\nG1 X70 Y20 F9000;go to wipe point\n\nM190 S{material_bed_temperature_layer_0}\n\nM117 Heating for 50 sec.\nG4 S20\nM117 Heating for 30 sec.\nG4 S20\nM117 Heating for 10 sec.\nM300 S1200 P1000\nG4 S9\n\nM117 purging nozzle....\nT0\nG92 E0;set E\nG1 E10 F100\nG92 E0\nG1 E-1 F600\n\nM117 wiping nozzle....\nG1 X1 Y24 F3000\nG1 X70 F9000\nG1 Z10 F900\n\nM104 T1 S21\nM104 T2 S21\nM104 T3 S21\n\nM117 Printing .....\n" }, + "machine_width": { "default_value": 430 }, + "material_bed_temp_wait": { "default_value": false }, + "material_initial_print_temperature": { "maximum_value_warning": "material_print_temperature + 15" }, + "material_print_temp_wait": { "default_value": false }, "optimize_wall_printing_order": { "default_value": true }, - "material_initial_print_temperature": {"maximum_value_warning": "material_print_temperature + 15" }, - "machine_nozzle_heat_up_speed": {"default_value": 20}, - "machine_nozzle_cool_down_speed": {"default_value": 20}, - "machine_min_cool_heat_time_window": {"default_value": 5} + "prime_blob_enable": { "default_value": false }, + "prime_tower_min_volume": { "value": "0.7" }, + "prime_tower_position_x": { "value": "125" }, + "prime_tower_position_y": { "value": "70" }, + "prime_tower_size": { "value": 24.0 }, + "retraction_extra_prime_amount": { "minimum_value_warning": "-2.0" } } -} +} \ No newline at end of file diff --git a/resources/definitions/cocoon_create.def.json b/resources/definitions/cocoon_create.def.json index a3b47361c7..f1aa3caf50 100644 --- a/resources/definitions/cocoon_create.def.json +++ b/resources/definitions/cocoon_create.def.json @@ -1,79 +1,43 @@ { - "name": "Cocoon Create", "version": 2, + "name": "Cocoon Create", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Thushan Fernando", "manufacturer": "Cocoon Create", "file_formats": "text/x-gcode", - "preferred_quality_type": "fine", - "has_materials": true, "platform": "wanhao_200_200_platform.obj", - "platform_texture": "Cocoon-backplate.png", - "machine_extruder_trains": { - "0": "cocoon_create_extruder_0" - }, + "has_materials": true, + "machine_extruder_trains": { "0": "cocoon_create_extruder_0" }, "platform_offset": [ - 0, - -28, - 0 - ] + 0, + -28, + 0 + ], + "platform_texture": "Cocoon-backplate.png", + "preferred_quality_type": "fine" }, - "overrides": { - "machine_name": { - "default_value": "Cocoon Create" - }, - "machine_width": { - "default_value": 200 - }, - "machine_height": { - "default_value": 180 - }, - "machine_depth": { - "default_value": 200 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G21 ;metric values\n G90 ;absolute positioning\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G28 X0 Y0 ;move X/Y to min endstops\n G28 Z0 ;move Z to min endstops\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E3 ;extrude 3mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel} \n ;Put printing message on LCD screen\n M117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off \n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning" - }, - "material_diameter": { - "default_value": 1.75 - }, - "layer_height": { - "default_value": 0.10 - }, - "layer_height_0": { - "default_value": 0.2 - }, - "wall_thickness": { - "value": "0.8" - }, - "top_bottom_thickness": { - "default_value": 0.6 - }, - "speed_print": { - "default_value": 50 - }, - "support_enable": { - "default_value": true - }, - "retraction_enable": { - "default_value": true - }, - "retraction_amount": { - "default_value": 4.5 - }, - "retraction_speed": { - "default_value": 25 - } + "overrides": + { + "layer_height": { "default_value": 0.1 }, + "layer_height_0": { "default_value": 0.2 }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off \n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 180 }, + "machine_name": { "default_value": "Cocoon Create" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\n G90 ;absolute positioning\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G28 X0 Y0 ;move X/Y to min endstops\n G28 Z0 ;move Z to min endstops\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E3 ;extrude 3mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel} \n ;Put printing message on LCD screen\n M117 Printing..." }, + "machine_width": { "default_value": 200 }, + "material_diameter": { "default_value": 1.75 }, + "retraction_amount": { "default_value": 4.5 }, + "retraction_enable": { "default_value": true }, + "retraction_speed": { "default_value": 25 }, + "speed_print": { "default_value": 50 }, + "support_enable": { "default_value": true }, + "top_bottom_thickness": { "default_value": 0.6 }, + "wall_thickness": { "value": "0.8" } } } \ No newline at end of file diff --git a/resources/definitions/cocoon_create_modelmaker.def.json b/resources/definitions/cocoon_create_modelmaker.def.json index 51c5b5e7cb..2c618fee77 100644 --- a/resources/definitions/cocoon_create_modelmaker.def.json +++ b/resources/definitions/cocoon_create_modelmaker.def.json @@ -1,78 +1,37 @@ { - "name": "Cocoon Create ModelMaker", "version": 2, + "name": "Cocoon Create ModelMaker", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Samuel Pinches", "manufacturer": "Cocoon Create", "file_formats": "text/x-gcode", - "preferred_quality_type": "fine", - "machine_extruder_trains": - { - "0": "cocoon_create_modelmaker_extruder_0" - } + "machine_extruder_trains": { "0": "cocoon_create_modelmaker_extruder_0" }, + "preferred_quality_type": "fine" }, - "overrides": { - "machine_name": { - "default_value": "Cocoon Create ModelMaker" - }, - "machine_start_gcode": { - "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 ;home all axis\nG92 E0 ;zero the extruded length\nG1 Z1 F1000 ;move up slightly\nG1 X60.0 Z0 E9.0 F1000.0;intro line\nG1 X100.0 E21.5 F1000.0 ;continue line\nG92 E0 ;zero the extruded length again\n; -- end of START GCODE --" - }, - "machine_end_gcode": { - "default_value": "; -- END GCODE --\nM104 S0 ;turn off nozzle heater\nG91 ;set to relative positioning\nG1 E-10 F300 ;retract the filament slightly\nG90 ;set to absolute positioning\nG28 X0 Y0 ;move to the XY-axis origin (Home)\nM84 ;turn off stepper motors\n; -- end of END GCODE --" - }, - "machine_width": { - "default_value": 120 - }, - "machine_height": { - "default_value": 100 - }, - "machine_depth": { - "default_value": 135 - }, - "machine_heated_bed": { - "default_value": false - }, - "machine_center_is_zero": { - "default_value": false - }, - "gantry_height": { - "value": "10" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "material_diameter": { - "default_value": 1.75 - }, - "layer_height": { - "default_value": 0.10 - }, - "layer_height_0": { - "default_value": 0.2 - }, - "wall_thickness": { - "value": "1.2" - }, - "top_bottom_thickness": { - "default_value": 0.6 - }, - "speed_print": { - "default_value": 40 - }, - "support_enable": { - "default_value": true - }, - "retraction_enable": { - "default_value": true - }, - "retraction_amount": { - "default_value": 7 - }, - "retraction_speed": { - "default_value": 40 - } + "overrides": + { + "gantry_height": { "value": "10" }, + "layer_height": { "default_value": 0.1 }, + "layer_height_0": { "default_value": 0.2 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 135 }, + "machine_end_gcode": { "default_value": "; -- END GCODE --\nM104 S0 ;turn off nozzle heater\nG91 ;set to relative positioning\nG1 E-10 F300 ;retract the filament slightly\nG90 ;set to absolute positioning\nG28 X0 Y0 ;move to the XY-axis origin (Home)\nM84 ;turn off stepper motors\n; -- end of END GCODE --" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 100 }, + "machine_name": { "default_value": "Cocoon Create ModelMaker" }, + "machine_start_gcode": { "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 ;home all axis\nG92 E0 ;zero the extruded length\nG1 Z1 F1000 ;move up slightly\nG1 X60.0 Z0 E9.0 F1000.0;intro line\nG1 X100.0 E21.5 F1000.0 ;continue line\nG92 E0 ;zero the extruded length again\n; -- end of START GCODE --" }, + "machine_width": { "default_value": 120 }, + "material_diameter": { "default_value": 1.75 }, + "retraction_amount": { "default_value": 7 }, + "retraction_enable": { "default_value": true }, + "retraction_speed": { "default_value": 40 }, + "speed_print": { "default_value": 40 }, + "support_enable": { "default_value": true }, + "top_bottom_thickness": { "default_value": 0.6 }, + "wall_thickness": { "value": "1.2" } } -} +} \ No newline at end of file diff --git a/resources/definitions/cocoon_create_touch.def.json b/resources/definitions/cocoon_create_touch.def.json index da5905c047..8cbb4fc8a5 100644 --- a/resources/definitions/cocoon_create_touch.def.json +++ b/resources/definitions/cocoon_create_touch.def.json @@ -1,79 +1,43 @@ { - "name": "Cocoon Create Touch", "version": 2, + "name": "Cocoon Create Touch", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Thushan Fernando", "manufacturer": "Cocoon Create", "file_formats": "text/x-gcode", - "preferred_quality_type": "fine", - "has_materials": true, "platform": "wanhao_200_200_platform.obj", - "platform_texture": "Cocoon-backplate.png", - "machine_extruder_trains": { - "0": "cocoon_create_touch_extruder_0" - }, + "has_materials": true, + "machine_extruder_trains": { "0": "cocoon_create_touch_extruder_0" }, "platform_offset": [ - 0, - -28, - 0 - ] + 0, + -28, + 0 + ], + "platform_texture": "Cocoon-backplate.png", + "preferred_quality_type": "fine" }, - "overrides": { - "machine_name": { - "default_value": "Cocoon Create Touch" - }, - "machine_width": { - "default_value": 200 - }, - "machine_height": { - "default_value": 180 - }, - "machine_depth": { - "default_value": 200 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G21 ;metric values\n G90 ;absolute positioning\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G28 X0 Y0 ;move X/Y to min endstops\n G28 Z0 ;move Z to min endstops\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E3 ;extrude 3mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel} \n ;Put printing message on LCD screen\n M117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off \n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning" - }, - "material_diameter": { - "default_value": 1.75 - }, - "layer_height": { - "default_value": 0.10 - }, - "layer_height_0": { - "default_value": 0.2 - }, - "wall_thickness": { - "value": "0.8" - }, - "top_bottom_thickness": { - "default_value": 0.6 - }, - "speed_print": { - "default_value": 50 - }, - "support_enable": { - "default_value": true - }, - "retraction_enable": { - "default_value": true - }, - "retraction_amount": { - "default_value": 4.5 - }, - "retraction_speed": { - "default_value": 25 - } + "overrides": + { + "layer_height": { "default_value": 0.1 }, + "layer_height_0": { "default_value": 0.2 }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off \n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 180 }, + "machine_name": { "default_value": "Cocoon Create Touch" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\n G90 ;absolute positioning\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G28 X0 Y0 ;move X/Y to min endstops\n G28 Z0 ;move Z to min endstops\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E3 ;extrude 3mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel} \n ;Put printing message on LCD screen\n M117 Printing..." }, + "machine_width": { "default_value": 200 }, + "material_diameter": { "default_value": 1.75 }, + "retraction_amount": { "default_value": 4.5 }, + "retraction_enable": { "default_value": true }, + "retraction_speed": { "default_value": 25 }, + "speed_print": { "default_value": 50 }, + "support_enable": { "default_value": true }, + "top_bottom_thickness": { "default_value": 0.6 }, + "wall_thickness": { "value": "0.8" } } } \ No newline at end of file diff --git a/resources/definitions/crazy3dprint_base.def.json b/resources/definitions/crazy3dprint_base.def.json index afdf887f7f..410d84cb6d 100644 --- a/resources/definitions/crazy3dprint_base.def.json +++ b/resources/definitions/crazy3dprint_base.def.json @@ -2,43 +2,39 @@ "version": 2, "name": "Crazy3DPrint CZ-300", "inherits": "fdmprinter", - "metadata": { + "machine_end_gcode": { "default_value": ";end gcode\nM104 S0 T0\nM140 S0 T0\nG162 Z F1800\nG28 X Y\nM652\nM132 X Y Z A B\nG91\nM18" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_start_gcode": { "default_value": ";Start Gcode\nG90 ;absolute positioning\nM118 X25.00 Y25.00 Z20.00 T0\nM140 S{material_bed_temperature_layer_0} T0 ;Heat bed up to first layer temperature\nM104 S{material_print_temperature_layer_0} T0 ;Set nozzle temperature to first layer temperature\nM107 ;start with the fan off\nG90\nG28\nM132 X Y Z A B\nG1 Z50.000 F420\nG161 X Y F3300\nM7 T0\nM6 T0\nM651\nM907 X100 Y100 Z40 A100 B20 ;Digital potentiometer value\nM108 T0\n;Purge line\nG1 X-110.00 Y-60.00 F4800\nG1 Z{layer_height_0} F420\nG1 X-110.00 Y60.00 E17,4 F1200\n;Purge line end" }, + "metadata": + { "visible": false, "author": "XYZprinting Software", "manufacturer": "Crazy3DPrint", "file_formats": "text/x-gcode", - "first_start_actions": ["MachineSettingsAction"], - "machine_extruder_trains": - { - "0": "crazy3dprint_cz300_extruder_0" - }, + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, "has_materials": true, "has_variants": true, - "has_machine_quality": true, - "preferred_variant_name": "0.4mm Nozzle", - "preferred_quality_type": "normal", + "machine_extruder_trains": { "0": "crazy3dprint_cz300_extruder_0" }, "preferred_material": "generic_pla", + "preferred_quality_type": "normal", + "preferred_variant_name": "0.4mm Nozzle", "variants_name": "Nozzle Size" }, - "overrides": { - "machine_heated_bed": {"default_value": true}, - "machine_max_feedrate_x": { "value": 500 }, - "machine_max_feedrate_y": { "value": 500 }, - "machine_max_feedrate_z": { "value": 10 }, - "machine_max_feedrate_e": { "value": 50 }, + "overrides": + { + "machine_acceleration": { "value": 500 }, + "machine_heated_bed": { "default_value": true }, + "machine_max_acceleration_e": { "value": 5000 }, "machine_max_acceleration_x": { "value": 1500 }, "machine_max_acceleration_y": { "value": 1500 }, "machine_max_acceleration_z": { "value": 500 }, - "machine_max_acceleration_e": { "value": 5000 }, - "machine_acceleration": { "value": 500 }, + "machine_max_feedrate_e": { "value": 50 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 5 }, "machine_max_jerk_xy": { "value": 10 }, - "machine_max_jerk_z": { "value": 0.4 }, - "machine_max_jerk_e": { "value": 5 } - }, - - - "machine_gcode_flavor": {"default_value": "RepRap (Marlin/Sprinter)"}, - "machine_start_gcode": {"default_value": ";Start Gcode\nG90 ;absolute positioning\nM118 X25.00 Y25.00 Z20.00 T0\nM140 S{material_bed_temperature_layer_0} T0 ;Heat bed up to first layer temperature\nM104 S{material_print_temperature_layer_0} T0 ;Set nozzle temperature to first layer temperature\nM107 ;start with the fan off\nG90\nG28\nM132 X Y Z A B\nG1 Z50.000 F420\nG161 X Y F3300\nM7 T0\nM6 T0\nM651\nM907 X100 Y100 Z40 A100 B20 ;Digital potentiometer value\nM108 T0\n;Purge line\nG1 X-110.00 Y-60.00 F4800\nG1 Z{layer_height_0} F420\nG1 X-110.00 Y60.00 E17,4 F1200\n;Purge line end"}, - "machine_end_gcode": {"default_value": ";end gcode\nM104 S0 T0\nM140 S0 T0\nG162 Z F1800\nG28 X Y\nM652\nM132 X Y Z A B\nG91\nM18" - } + "machine_max_jerk_z": { "value": 0.4 } } +} \ No newline at end of file diff --git a/resources/definitions/crazy3dprint_cz_300.def.json b/resources/definitions/crazy3dprint_cz_300.def.json index 56d3d69757..938459410e 100644 --- a/resources/definitions/crazy3dprint_cz_300.def.json +++ b/resources/definitions/crazy3dprint_cz_300.def.json @@ -2,64 +2,61 @@ "version": 2, "name": "Crazy3DPrint CZ-300", "inherits": "crazy3dprint_base", - "metadata": { + "metadata": + { "visible": true, "author": "XYZprinting Software", "manufacturer": "Crazy3DPrint", "file_formats": "text/x-gcode", - "supports_usb_connection": true, "preferred_quality_type": "normal", - "quality_definition": "crazy3dprint_base" + "quality_definition": "crazy3dprint_base", + "supports_usb_connection": true }, - - "overrides": { - "machine_name": { "default_value": "CZ-300" }, - "machine_shape": { "default_value": "rectangular"}, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 300.00 }, - "machine_depth": { "default_value": 300.00 }, - "machine_height": { "default_value":300.00 }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "brim_line_count": { "value": 5 }, + "cool_fan_enabled": { "default_value": true }, + "cool_fan_speed_0": { "value": 100 }, + "default_material_bed_temperature": { "value": 70 }, + "default_material_print_temperature": { "default_value": 210 }, + "fill_outline_gaps": { "default_value": true }, + "infill_line_distance": { "value": 2.6667 }, + "infill_overlap": { "value": 8.0 }, + "infill_pattern": { "value": "'lines'" }, + "infill_sparse_density": { "default_value": 15 }, + "initial_layer_line_width_factor": { "default_value": 140 }, + "inset_direction": { "value": "'outside_in'" }, + "layer_height": { "default_value": 0.2 }, "machine_center_is_zero": { "default_value": false }, - "machine_head_with_fans_polygon": { + "machine_depth": { "default_value": 300.0 }, + "machine_end_gcode": { "default_value": "M104 S0 ; turn off temperature\nM105 S0; \nG28 X0 ; home X axis\nM84 ; disable motors\n" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ - [ -20, -10 ], - [ -20, 10 ], - [ 10, 10 ], - [ 10, -10 ] + [-20, -10], + [-20, 10], + [10, 10], + [10, -10] ] }, - "layer_height": { "default_value": 0.2 }, - "infill_sparse_density": { "default_value": 15 }, - "infill_line_distance": { "value": 2.6667 }, - "infill_pattern": { "value": "'lines'" }, - "infill_overlap": { "value": 8.0 }, - "min_infill_area": { "default_value": 2.0 }, - "retract_at_layer_change": { "default_value": true }, - "default_material_print_temperature": { "default_value": 210 }, - "material_print_temperature": { "value": 210 }, - "material_final_print_temperature": { "value": 210 }, - "material_bed_temperature": { "value": 70 }, - "material_bed_temperature_layer_0": { "value": 70 }, - "material_flow_layer_0": {"value": 140}, - "retraction_amount": { "default_value": 10 }, - "retraction_speed": { "default_value": 50 }, - "speed_print": { "default_value": 40 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 300.0 }, + "machine_name": { "default_value": "CZ-300" }, + "machine_shape": { "default_value": "rectangular" }, + "machine_start_gcode": { "default_value": "G28 ; home all axes\nG1 Z15 F5000 ; lift nozzle\nG92 E0\nG1 F200 E3\n" }, + "machine_width": { "default_value": 300.0 }, + "material_bed_temperature_layer_0": { "value": 70 }, + "material_final_print_temperature": { "value": 210 }, + "material_flow_layer_0": { "value": 140 }, + "min_infill_area": { "default_value": 2.0 }, + "retract_at_layer_change": { "default_value": true }, + "retraction_amount": { "default_value": 10 }, + "retraction_speed": { "default_value": 50 }, + "skirt_line_count": { "default_value": 5 }, + "speed_print": { "default_value": 40 }, "speed_travel": { "value": 60 }, - "cool_fan_enabled": { "default_value": true }, - "cool_fan_speed_0": { "value": 100 }, - "adhesion_type": { "default_value" : "skirt" }, - "brim_line_count": { "value" : 5 }, - "skirt_line_count": { "default_value" : 5 }, - "initial_layer_line_width_factor": { "default_value" : 140 }, - "top_bottom_pattern": { "default_value" : "concentric" }, - "fill_outline_gaps": { "default_value": true }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "inset_direction": {"value": "'outside_in'" }, - "machine_start_gcode": { - "default_value": "G28 ; home all axes\nG1 Z15 F5000 ; lift nozzle\nG92 E0\nG1 F200 E3\n" - }, - "machine_end_gcode": { - "default_value": "M104 S0 ; turn off temperature\nM105 S0; \nG28 X0 ; home X axis\nM84 ; disable motors\n" - } + "top_bottom_pattern": { "default_value": "concentric" } } -} +} \ No newline at end of file diff --git a/resources/definitions/creality_base.def.json b/resources/definitions/creality_base.def.json index 4d2391f959..229c46d7ca 100644 --- a/resources/definitions/creality_base.def.json +++ b/resources/definitions/creality_base.def.json @@ -1,26 +1,13 @@ { - "name": "Creality Base Printer", "version": 2, + "name": "Creality Base Printer", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": false, "author": "trouch.com", "manufacturer": "Creality3D", "file_formats": "text/x-gcode", - "first_start_actions": ["MachineSettingsAction"], - - "machine_extruder_trains": { - "0": "creality_base_extruder_0" - }, - - "has_materials": true, - "has_variants": true, - "has_machine_quality": true, - "variants_name": "Nozzle Size", - - "preferred_variant_name": "0.4mm Nozzle", - "preferred_quality_type": "standard", - "preferred_material": "generic_pla", "exclude_materials": [ "Vertex_Delta_ABS", "Vertex_Delta_PET", @@ -68,198 +55,123 @@ "tizyx_abs", "tizyx_pla", "tizyx_pla_bois", - "ultimaker_abs_black", - "ultimaker_abs_blue", - "ultimaker_abs_green", - "ultimaker_abs_grey", - "ultimaker_abs_orange", - "ultimaker_abs_pearl-gold", - "ultimaker_abs_red", - "ultimaker_abs_silver-metallic", - "ultimaker_abs_white", - "ultimaker_abs_yellow", - "ultimaker_bam", - "ultimaker_cpe_black", - "ultimaker_cpe_blue", - "ultimaker_cpe_dark-grey", - "ultimaker_cpe_green", - "ultimaker_cpe_light-grey", - "ultimaker_cpe_plus_black", - "ultimaker_cpe_plus_transparent", - "ultimaker_cpe_plus_white", - "ultimaker_cpe_red", - "ultimaker_cpe_transparent", - "ultimaker_cpe_white", - "ultimaker_cpe_yellow", - "ultimaker_nylon_black", - "ultimaker_nylon_transparent", - "ultimaker_pc_black", - "ultimaker_pc_transparent", - "ultimaker_pc_white", - "ultimaker_pla_black", - "ultimaker_pla_blue", - "ultimaker_pla_green", - "ultimaker_pla_magenta", - "ultimaker_pla_orange", - "ultimaker_pla_pearl-white", - "ultimaker_pla_red", - "ultimaker_pla_silver-metallic", - "ultimaker_pla_transparent", - "ultimaker_pla_white", - "ultimaker_pla_yellow", - "ultimaker_pp_transparent", - "ultimaker_pva", - "ultimaker_tough_pla_black", - "ultimaker_tough_pla_green", - "ultimaker_tough_pla_red", - "ultimaker_tough_pla_white", - "ultimaker_tpu_black", - "ultimaker_tpu_blue", - "ultimaker_tpu_red", - "ultimaker_tpu_white", "verbatim_bvoh_175", "zyyx_pro_flex", "zyyx_pro_pla" - ] + ], + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "creality_base_extruder_0" }, + "preferred_material": "generic_pla", + "preferred_quality_type": "standard", + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Size" }, - "overrides": { - "machine_name": { "default_value": "Creawsome Base Printer" }, - "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" }, - "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, - - "machine_max_feedrate_x": { "value": 500 }, - "machine_max_feedrate_y": { "value": 500 }, - "machine_max_feedrate_z": { "value": 10 }, - "machine_max_feedrate_e": { "value": 50 }, - - "machine_max_acceleration_x": { "value": 500 }, - "machine_max_acceleration_y": { "value": 500 }, - "machine_max_acceleration_z": { "value": 100 }, - "machine_max_acceleration_e": { "value": 5000 }, - "machine_acceleration": { "value": 500 }, - - "machine_max_jerk_xy": { "value": 10 }, - "machine_max_jerk_z": { "value": 0.4 }, - "machine_max_jerk_e": { "value": 5 }, - - "machine_heated_bed": { "default_value": true }, - - "material_diameter": { "default_value": 1.75 }, - + "overrides": + { + "acceleration_enabled": { "value": false }, "acceleration_print": { "value": 500 }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, "acceleration_travel": { "value": 500 }, "acceleration_travel_layer_0": { "value": "acceleration_travel" }, - "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, - + "adaptive_layer_height_variation": { "value": 0.04 }, + "adaptive_layer_height_variation_step": { "value": 0.04 }, + "adhesion_type": { "value": "'skirt'" }, + "brim_replaces_support": { "value": false }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "value": 10 }, + "fill_outline_gaps": { "value": false }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 30.0 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_wipe_dist": { "value": 0.0 }, + "jerk_enabled": { "value": false }, "jerk_print": { "value": 8 }, "jerk_travel": { "value": "jerk_print" }, "jerk_travel_layer_0": { "value": "jerk_travel" }, - - "acceleration_enabled": { "value": false }, - "jerk_enabled": { "value": false }, - - "speed_print": { "value": 50.0 } , - "speed_infill": { "value": "speed_print" }, - "speed_wall": { "value": "speed_print / 2" }, - "speed_wall_0": { "value": "speed_wall" }, - "speed_wall_x": { "value": "speed_wall" }, - "speed_topbottom": { "value": "speed_print / 2" }, - "speed_roofing": { "value": "speed_topbottom" }, - "speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" }, - "speed_layer_0": { "value": 20.0 }, - "speed_print_layer_0": { "value": "speed_layer_0" }, - "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, - "speed_prime_tower": { "value": "speed_topbottom" }, - "speed_support": { "value": "speed_wall_0" }, - "speed_support_interface": { "value": "speed_topbottom" }, - "speed_z_hop": { "value": 5 }, - - "skirt_brim_speed": { "value": "speed_layer_0" }, - - "line_width": { "value": "machine_nozzle_size" }, - - "optimize_wall_printing_order": { "value": "True" }, - - "material_initial_print_temperature": { "value": "material_print_temperature" }, + "machine_acceleration": { "value": 500 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, + "machine_heated_bed": { "default_value": true }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_feedrate_e": { "value": 50 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_name": { "default_value": "Creawsome Base Printer" }, + "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" }, + "material_diameter": { "default_value": 1.75 }, "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_flow": { "value": 100 }, - - "z_seam_type": { "value": "'back'" }, - "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, - - "infill_sparse_density": { "value": "20" }, - "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, - "infill_before_walls": { "value": false }, - "infill_overlap": { "value": 30.0 }, - "skin_overlap": { "value": 10.0 }, - "infill_wipe_dist": { "value": 0.0 }, - "wall_0_wipe_dist": { "value": 0.0 }, - - "fill_outline_gaps": { "value": false }, - - "retraction_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 - }, - "retraction_retract_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 - }, - "retraction_prime_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 - }, - - "retraction_hop_enabled": { "value": "False" }, - "retraction_hop": { "value": 0.2 }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "meshfix_maximum_resolution": { "value": "0.25" }, + "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "optimize_wall_printing_order": { "value": "True" }, "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, "retraction_combing_max_distance": { "value": 30 }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 10 }, + "retraction_hop": { "value": 0.2 }, + "retraction_min_travel": { "value": 1.5 }, + "retraction_prime_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "retraction_retract_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "retraction_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "skin_overlap": { "value": 10.0 }, + "skirt_gap": { "value": 10.0 }, + "skirt_line_count": { "value": 3 }, + "speed_layer_0": { "value": 20.0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": 50.0 }, + "speed_roofing": { "value": "speed_topbottom" }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" }, + "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width / 2.0 /layer_height)))" }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 4 }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_interface_skip_height": { "value": 0.2 }, + "support_pattern": { "value": "'zigzag'" }, + "support_top_distance": { "value": "extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (layer_height if support_structure == 'tree' else 0)" }, + "support_wall_count": { "value": 1 }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, "travel_avoid_other_parts": { "value": true }, "travel_avoid_supports": { "value": true }, "travel_retract_before_outer_wall": { "value": true }, - - "retraction_enable": { "value": true }, - "retraction_count_max": { "value": 100 }, - "retraction_extrusion_window": { "value": 10 }, - "retraction_min_travel": { "value": 1.5 }, - - "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, - "cool_fan_enabled": { "value": true }, - "cool_min_layer_time": { "value": 10 }, - - "adhesion_type": { "value": "'skirt'" }, - "brim_replaces_support": { "value": false }, - "skirt_gap": { "value": 10.0 }, - "skirt_line_count": { "value": 3 }, - - "adaptive_layer_height_variation": { "value": 0.04 }, - "adaptive_layer_height_variation_step": { "value": 0.04 }, - - "meshfix_maximum_resolution": { "value": "0.25" }, - "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, - - "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, - "support_pattern": { "value": "'zigzag'" }, - "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, - "support_use_towers": { "value": false }, - "support_xy_distance": { "value": "wall_line_width_0 * 2" }, - "support_xy_distance_overhang": { "value": "wall_line_width_0" }, - "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" }, - "support_top_distance": { "value": "extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (layer_height if support_structure == 'tree' else 0)"}, - "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, - "support_wall_count": { "value": 1 }, - "support_brim_enable": { "value": true }, - "support_brim_width": { "value": 4 }, - - "support_interface_enable": { "value": true }, - "support_interface_height": { "value": "layer_height * 4" }, - "support_interface_density": { "value": 33.333 }, - "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, - "minimum_support_area": { "value": 2 }, - "minimum_interface_area": { "value": 10 }, - "top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" }, - "wall_thickness": {"value": "line_width * 2" } - + "wall_0_wipe_dist": { "value": 0.0 }, + "wall_thickness": { "value": "line_width * 2" }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, + "z_seam_type": { "value": "'back'" } } -} +} \ No newline at end of file diff --git a/resources/definitions/creality_cr-x.def.json b/resources/definitions/creality_cr-x.def.json index fd6cb9eda5..419ffc5914 100644 --- a/resources/definitions/creality_cr-x.def.json +++ b/resources/definitions/creality_cr-x.def.json @@ -2,45 +2,47 @@ "version": 2, "name": "Creality CR-X", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "SRC", "manufacturer": "Creality3D", "file_formats": "text/x-gcode", "platform": "cr-x.3mf", - "has_variants": false, "has_machine_quality": false, - "preferred_quality_type": "draft", - "machine_extruder_trains": { + "has_variants": false, + "machine_extruder_trains": + { "0": "cr-x_extruder_0", "1": "cr-x_extruder_1" - } + }, + "preferred_quality_type": "draft" }, - - "overrides": { - "machine_name": { "default_value": "Creality CR-X" }, - "machine_extruder_count": { "default_value": 2 }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 300 }, - "machine_depth": { "default_value": 300 }, - "machine_height": { "default_value": 400 }, - "machine_center_is_zero": { "default_value": false }, - "retraction_amount": { "default_value": 3 }, - "retraction_speed": { "default_value": 70}, + "overrides": + { "adhesion_type": { "default_value": "skirt" }, "gantry_height": { "value": "30" }, - "speed_print": { "default_value": 60 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "M104 S0 ;hotend off\nM140 S0 ;bed off\nG92 E0\nG1 F2000 E-100 ;retract filament 100mm\nG92 E0\nG1 F3000 X0 Y270 ;move bed for easy part removal\nM84 ;disable steppers" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 400 }, + "machine_max_acceleration_e": { "default_value": 5000 }, "machine_max_acceleration_x": { "default_value": 500 }, "machine_max_acceleration_y": { "default_value": 500 }, "machine_max_acceleration_z": { "default_value": 100 }, - "machine_max_acceleration_e": { "default_value": 5000 }, + "machine_max_jerk_e": { "default_value": 5.0 }, "machine_max_jerk_xy": { "default_value": 5.0 }, "machine_max_jerk_z": { "default_value": 0.4 }, - "machine_max_jerk_e": { "default_value": 5.0 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_name": { "default_value": "Creality CR-X" }, "machine_start_gcode": { "default_value": "G21 ;metric values\nG28 ;home all\nG90 ;absolute positioning\nM107 ;start with the fan off\nG1 F2400 Z15.0 ;raise the nozzle 15mm\nM109 S{material_print_temperature} ;Set Extruder Temperature and Wait\nM190 S{material_bed_temperature}; Wait for bed temperature to reach target temp\nT0 ;Switch to Extruder 1\nG1 F3000 X5 Y10 Z0.2 ;move to prime start position\nG92 E0 ;reset extrusion distance\nG1 F600 X160 E15 ;prime nozzle in a line\nG1 F5000 X180 ;quick wipe\nG92 E0 ;reset extrusion distance" }, - "machine_end_gcode": { "default_value": "M104 S0 ;hotend off\nM140 S0 ;bed off\nG92 E0\nG1 F2000 E-100 ;retract filament 100mm\nG92 E0\nG1 F3000 X0 Y270 ;move bed for easy part removal\nM84 ;disable steppers" }, - "wall_thickness": { "value": "1" }, - "top_bottom_thickness": { "default_value": 1 } + "machine_width": { "default_value": 300 }, + "retraction_amount": { "default_value": 3 }, + "retraction_speed": { "default_value": 70 }, + "speed_print": { "default_value": 60 }, + "top_bottom_thickness": { "default_value": 1 }, + "wall_thickness": { "value": "1" } } -} +} \ No newline at end of file diff --git a/resources/definitions/creality_cr10.def.json b/resources/definitions/creality_cr10.def.json index 85e0f0a435..e2fd766833 100644 --- a/resources/definitions/creality_cr10.def.json +++ b/resources/definitions/creality_cr10.def.json @@ -1,25 +1,27 @@ { - "name": "Creality CR-10", "version": 2, + "name": "Creality CR-10", "inherits": "creality_base", - "overrides": { - "machine_name": { "default_value": "Creality CR-10" }, - "machine_width": { "default_value": 300 }, + "metadata": + { + "visible": true, + "quality_definition": "creality_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, "machine_depth": { "default_value": 300 }, - "machine_height": { "default_value": 400 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-26, 34], [-26, -32], [32, -32], [32, 34] ] }, - - "gantry_height": { "value": 25 } - - }, - "metadata": { - "quality_definition": "creality_base", - "visible": true + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Creality CR-10" }, + "machine_width": { "default_value": 300 } } } \ No newline at end of file diff --git a/resources/definitions/creality_cr100.def.json b/resources/definitions/creality_cr100.def.json index ed528a00b6..f226bcea28 100644 --- a/resources/definitions/creality_cr100.def.json +++ b/resources/definitions/creality_cr100.def.json @@ -1,25 +1,27 @@ { - "name": "Creality CR-100", "version": 2, + "name": "Creality CR-100", "inherits": "creality_base", - "overrides": { - "machine_name": { "default_value": "Creality CR-100" }, - "machine_width": { "default_value": 100 }, + "metadata": + { + "visible": true, + "quality_definition": "creality_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, "machine_depth": { "default_value": 100 }, - "machine_height": { "default_value": 80 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-26, 34], [-26, -32], [32, -32], [32, 34] ] }, - - "gantry_height": { "value": 25 } - - }, - "metadata": { - "quality_definition": "creality_base", - "visible": true + "machine_height": { "default_value": 80 }, + "machine_name": { "default_value": "Creality CR-100" }, + "machine_width": { "default_value": 100 } } } \ No newline at end of file diff --git a/resources/definitions/creality_cr10max.def.json b/resources/definitions/creality_cr10max.def.json index 021647c2be..1498245262 100644 --- a/resources/definitions/creality_cr10max.def.json +++ b/resources/definitions/creality_cr10max.def.json @@ -1,26 +1,28 @@ { - "name": "Creality CR-10 Max", "version": 2, + "name": "Creality CR-10 Max", "inherits": "creality_base", - "overrides": { - "machine_name": { "default_value": "Creality CR-10 Max" }, - "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\nG29 ;Auto bed Level\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n"}, - "machine_width": { "default_value": 450 }, + "metadata": + { + "visible": true, + "quality_definition": "creality_base" + }, + "overrides": + { + "gantry_height": { "value": 30 }, "machine_depth": { "default_value": 450 }, - "machine_height": { "default_value": 470 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-44, 34], [-44, -34], [38, -34], [38, 34] ] }, - - "gantry_height": { "value": 30 } - - }, - "metadata": { - "quality_definition": "creality_base", - "visible": true + "machine_height": { "default_value": 470 }, + "machine_name": { "default_value": "Creality CR-10 Max" }, + "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\nG29 ;Auto bed Level\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" }, + "machine_width": { "default_value": 450 } } -} +} \ No newline at end of file diff --git a/resources/definitions/creality_cr10mini.def.json b/resources/definitions/creality_cr10mini.def.json index 621be5f0f3..70a42537a6 100644 --- a/resources/definitions/creality_cr10mini.def.json +++ b/resources/definitions/creality_cr10mini.def.json @@ -1,25 +1,27 @@ { - "name": "Creality CR-10 Mini", "version": 2, + "name": "Creality CR-10 Mini", "inherits": "creality_base", - "overrides": { - "machine_name": { "default_value": "Creality CR-10 Mini" }, - "machine_width": { "default_value": 300 }, + "metadata": + { + "visible": true, + "quality_definition": "creality_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, "machine_depth": { "default_value": 220 }, - "machine_height": { "default_value": 300 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-26, 34], [-26, -32], [32, -32], [32, 34] ] }, - - "gantry_height": { "value": 25 } - - }, - "metadata": { - "quality_definition": "creality_base", - "visible": true + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "Creality CR-10 Mini" }, + "machine_width": { "default_value": 300 } } } \ No newline at end of file diff --git a/resources/definitions/creality_cr10s.def.json b/resources/definitions/creality_cr10s.def.json index 9884b95cb4..679c9f3b65 100644 --- a/resources/definitions/creality_cr10s.def.json +++ b/resources/definitions/creality_cr10s.def.json @@ -1,11 +1,10 @@ { - "name": "Creality CR-10S", "version": 2, + "name": "Creality CR-10S", "inherits": "creality_cr10", - "overrides": { + "metadata": { "quality_definition": "creality_base" }, + "overrides": + { "machine_name": { "default_value": "Creality CR-10S" } - }, - "metadata": { - "quality_definition": "creality_base" } } \ No newline at end of file diff --git a/resources/definitions/creality_cr10s4.def.json b/resources/definitions/creality_cr10s4.def.json index ccecd41a1d..79d4fb5bca 100644 --- a/resources/definitions/creality_cr10s4.def.json +++ b/resources/definitions/creality_cr10s4.def.json @@ -1,25 +1,27 @@ { - "name": "Creality CR-10S4", "version": 2, + "name": "Creality CR-10S4", "inherits": "creality_base", - "overrides": { - "machine_name": { "default_value": "Creality CR-10S4" }, - "machine_width": { "default_value": 400 }, + "metadata": + { + "visible": true, + "quality_definition": "creality_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, "machine_depth": { "default_value": 400 }, - "machine_height": { "default_value": 400 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-26, 34], [-26, -32], [32, -32], [32, 34] ] }, - - "gantry_height": { "value": 25 } - - }, - "metadata": { - "quality_definition": "creality_base", - "visible": true + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Creality CR-10S4" }, + "machine_width": { "default_value": 400 } } } \ No newline at end of file diff --git a/resources/definitions/creality_cr10s5.def.json b/resources/definitions/creality_cr10s5.def.json index 105e1d0458..0c89d753b7 100644 --- a/resources/definitions/creality_cr10s5.def.json +++ b/resources/definitions/creality_cr10s5.def.json @@ -1,25 +1,27 @@ { - "name": "Creality CR-10S5", "version": 2, + "name": "Creality CR-10S5", "inherits": "creality_base", - "overrides": { - "machine_name": { "default_value": "Creality CR-10S5" }, - "machine_width": { "default_value": 500 }, + "metadata": + { + "visible": true, + "quality_definition": "creality_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, "machine_depth": { "default_value": 500 }, - "machine_height": { "default_value": 500 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-26, 34], [-26, -32], [32, -32], [32, 34] ] }, - - "gantry_height": { "value": 25 } - - }, - "metadata": { - "quality_definition": "creality_base", - "visible": true + "machine_height": { "default_value": 500 }, + "machine_name": { "default_value": "Creality CR-10S5" }, + "machine_width": { "default_value": 500 } } } \ No newline at end of file diff --git a/resources/definitions/creality_cr10smart.def.json b/resources/definitions/creality_cr10smart.def.json new file mode 100644 index 0000000000..82f26a8616 --- /dev/null +++ b/resources/definitions/creality_cr10smart.def.json @@ -0,0 +1,28 @@ +{ + "version": 2, + "name": "Creality CR-10 Smart", + "inherits": "creality_base", + "metadata": + { + "visible": true, + "author": "ed3d.net", + "quality_definition": "creality_base" + }, + "overrides": + { + "gantry_height": { "value": 35 }, + "machine_depth": { "default_value": 300 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-26, 34], + [-26, -32], + [32, -32], + [32, 34] + ] + }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Creality CR-10 Smart" }, + "machine_width": { "default_value": 300 } + } +} \ No newline at end of file diff --git a/resources/definitions/creality_cr10spro.def.json b/resources/definitions/creality_cr10spro.def.json index 62ee8eb777..afe3fb232f 100644 --- a/resources/definitions/creality_cr10spro.def.json +++ b/resources/definitions/creality_cr10spro.def.json @@ -1,24 +1,30 @@ { - "name": "Creality CR-10S Pro", "version": 2, + "name": "Creality CR-10S Pro", "inherits": "creality_cr10", - "overrides": { - "machine_name": { "default_value": "Creality CR-10S Pro" }, - "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\nG29 ;Auto bed Level\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n"}, - "machine_head_with_fans_polygon": { "default_value": [ + "metadata": + { + "platform": "creality_cr10spro.3mf", + "platform_offset": [ + -150, + 0, + 150 + ], + "quality_definition": "creality_base" + }, + "overrides": + { + "gantry_height": { "value": 30 }, + "machine_head_with_fans_polygon": + { + "default_value": [ [-44, 34], [-44, -34], [38, -34], [38, 34] ] }, - - "gantry_height": { "value": 30 } - - }, - "metadata": { - "quality_definition": "creality_base", - "platform": "creality_cr10spro.3mf", - "platform_offset": [ -150, 0, 150] + "machine_name": { "default_value": "Creality CR-10S Pro" }, + "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\nG29 ;Auto bed Level\nM420 S1 ;Save and use mesh\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" } } -} +} \ No newline at end of file diff --git a/resources/definitions/creality_cr20.def.json b/resources/definitions/creality_cr20.def.json index b18c2709e6..ccb8148f93 100644 --- a/resources/definitions/creality_cr20.def.json +++ b/resources/definitions/creality_cr20.def.json @@ -1,25 +1,27 @@ { - "name": "Creality CR-20", "version": 2, + "name": "Creality CR-20", "inherits": "creality_base", - "overrides": { - "machine_name": { "default_value": "Creality CR-20" }, - "machine_width": { "default_value": 220 }, + "metadata": + { + "visible": true, + "quality_definition": "creality_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, "machine_depth": { "default_value": 220 }, - "machine_height": { "default_value": 250 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-26, 34], [-26, -32], [32, -32], [32, 34] ] }, - - "gantry_height": { "value": 25 } - - }, - "metadata": { - "quality_definition": "creality_base", - "visible": true + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "Creality CR-20" }, + "machine_width": { "default_value": 220 } } } \ No newline at end of file diff --git a/resources/definitions/creality_cr20pro.def.json b/resources/definitions/creality_cr20pro.def.json index 4e676bcb74..401bfdcdf7 100644 --- a/resources/definitions/creality_cr20pro.def.json +++ b/resources/definitions/creality_cr20pro.def.json @@ -1,13 +1,11 @@ { - "name": "Creality CR-20 Pro", "version": 2, + "name": "Creality CR-20 Pro", "inherits": "creality_cr20", - "overrides": { + "metadata": { "quality_definition": "creality_base" }, + "overrides": + { "machine_name": { "default_value": "Creality CR-20 Pro" }, - "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\nM420 S1 Z2 ;Enable ABL using saved Mesh and Fade Height\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n"} - - }, - "metadata": { - "quality_definition": "creality_base" + "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\nM420 S1 Z2 ;Enable ABL using saved Mesh and Fade Height\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" } } } \ No newline at end of file diff --git a/resources/definitions/creality_cr6se.def.json b/resources/definitions/creality_cr6se.def.json index 420173fe61..b6fbe36baa 100644 --- a/resources/definitions/creality_cr6se.def.json +++ b/resources/definitions/creality_cr6se.def.json @@ -1,26 +1,27 @@ { - "name": "Creality CR-6 SE", "version": 2, + "name": "Creality CR-6 SE", "inherits": "creality_base", - "metadata": { - "quality_definition": "creality_base", - "visible": true + "metadata": + { + "visible": true, + "quality_definition": "creality_base" }, - "overrides": { - "machine_name": { "default_value": "Creality CR-6 SE" }, - "machine_width": { "default_value": 235 }, - "machine_depth": { "default_value": 235 }, - "machine_height": { "default_value": 250 }, - "machine_head_with_fans_polygon": { - "default_value": [ - [-26, 34], - [-26, -32], - [32, -32], - [32, 34] - ] - }, - - "gantry_height": { "value": 25 } + "overrides": + { + "gantry_height": { "value": 25 }, + "machine_depth": { "default_value": 235 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-26, 34], + [-26, -32], + [32, -32], + [32, 34] + ] + }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "Creality CR-6 SE" }, + "machine_width": { "default_value": 235 } } - } - +} \ No newline at end of file diff --git a/resources/definitions/creality_ender2.def.json b/resources/definitions/creality_ender2.def.json index 2a5e14c828..477bf43612 100644 --- a/resources/definitions/creality_ender2.def.json +++ b/resources/definitions/creality_ender2.def.json @@ -1,26 +1,28 @@ { - "name": "Creality Ender-2", "version": 2, + "name": "Creality Ender-2", "inherits": "creality_base", - "overrides": { - "machine_name": { "default_value": "Creality Ender-2" }, - "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y100.0 Z0.28 F1500.0 E8 ;Draw the first line\nG1 X10.4 Y100.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E15 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n"}, - "machine_width": { "default_value": 150 }, + "metadata": + { + "visible": true, + "quality_definition": "creality_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, "machine_depth": { "default_value": 150 }, - "machine_height": { "default_value": 200 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-26, 34], [-26, -32], [32, -32], [32, 34] ] }, - - "gantry_height": { "value": 25 } - - }, - "metadata": { - "quality_definition": "creality_base", - "visible": true + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "Creality Ender-2" }, + "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y100.0 Z0.28 F1500.0 E8 ;Draw the first line\nG1 X10.4 Y100.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E15 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" }, + "machine_width": { "default_value": 150 } } } \ No newline at end of file diff --git a/resources/definitions/creality_ender3.def.json b/resources/definitions/creality_ender3.def.json index c10c74c52f..4de14c74a0 100644 --- a/resources/definitions/creality_ender3.def.json +++ b/resources/definitions/creality_ender3.def.json @@ -1,33 +1,46 @@ { - "name": "Creality Ender-3", "version": 2, + "name": "Creality Ender-3 / Ender-3 v2", "inherits": "creality_base", - "metadata": { - "quality_definition": "creality_base", + "metadata": + { "visible": true, - "platform": "creality_ender3.3mf" + "platform": "creality_ender3.3mf", + "quality_definition": "creality_base" }, - "overrides": { - "machine_name": { "default_value": "Creality Ender-3" }, - "machine_width": { "default_value": 235 }, + "overrides": + { + "gantry_height": { "value": 25 }, "machine_depth": { "default_value": 235 }, - "machine_height": { "default_value": 250 }, - "machine_disallowed_areas": { + "machine_disallowed_areas": + { + "default_value": [ + [ + [-117.5, 117.5], + [-117.5, 108], + [117.5, 108], + [117.5, 117.5] + ], + [ + [-117.5, -108], + [-117.5, -117.5], + [117.5, -117.5], + [117.5, -108] + ] + ] + }, + "machine_head_with_fans_polygon": + { "default_value": [ - [[-117.5, 117.5], [-117.5, 108], [117.5, 108], [117.5, 117.5]], - [[-117.5, -108], [-117.5, -117.5], [117.5, -117.5], [117.5, -108]] - ]}, - "machine_head_with_fans_polygon": { "default_value": [ [-26, 34], [-26, -32], [32, -32], [32, 34] ] }, - "machine_start_gcode": { - "default_value": "; Ender 3 Custom Start G-code\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; 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.3 F5000.0 ; Move over to prevent blob squish" - }, - - "gantry_height": { "value": 25 } + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "Creality Ender-3" }, + "machine_start_gcode": { "default_value": "; Ender 3 Custom Start G-code\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; 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.3 F5000.0 ; Move over to prevent blob squish" }, + "machine_width": { "default_value": 235 } } -} +} \ No newline at end of file diff --git a/resources/definitions/creality_ender3max.def.json b/resources/definitions/creality_ender3max.def.json index 0902f00f29..6d0fc38646 100644 --- a/resources/definitions/creality_ender3max.def.json +++ b/resources/definitions/creality_ender3max.def.json @@ -1,41 +1,38 @@ { - "name": "Creality Ender-3 Max", "version": 2, + "name": "Creality Ender-3 Max", "inherits": "creality_base", - "metadata": { - "author": "Radlab Ecuador", - "quality_definition": "creality_base", + "metadata": + { "visible": true, - "platform": "creality_ender3max.stl" + "author": "Radlab Ecuador", + "platform": "creality_ender3max.stl", + "quality_definition": "creality_base" }, - "overrides": { - "machine_name": { "default_value": "Creality Ender-3 Max" }, - "machine_width": { "default_value": 300 }, + "overrides": + { + "acceleration_travel": { "value": 1000 }, + "gantry_height": { "value": 35 }, "machine_depth": { "default_value": 300 }, - "machine_height": { "default_value": 340 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-42.5, 30], [-42.5, -40], [42.5, -40], [42.5, 30] ] }, - "machine_start_gcode": { - "default_value": "; Ender 3 Max Custom Start G-code\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; 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.3 F5000.0 ; Move over to prevent blob squish" - }, - - "machine_max_feedrate_z": { "value": 5 }, - "machine_max_feedrate_e": { "value": 25 }, - + "machine_height": { "default_value": 340 }, + "machine_max_acceleration_e": { "value": 1000 }, "machine_max_acceleration_x": { "value": 500 }, "machine_max_acceleration_y": { "value": 500 }, "machine_max_acceleration_z": { "value": 100 }, - "machine_max_acceleration_e": { "value": 1000 }, - - "acceleration_travel": { "value": 1000 }, - + "machine_max_feedrate_e": { "value": 25 }, + "machine_max_feedrate_z": { "value": 5 }, "machine_max_jerk_z": { "value": 0.3 }, - - "gantry_height": { "value": 35 } + "machine_name": { "default_value": "Creality Ender-3 Max" }, + "machine_start_gcode": { "default_value": "; Ender 3 Max Custom Start G-code\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; 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.3 F5000.0 ; Move over to prevent blob squish" }, + "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/creality_ender3pro.def.json b/resources/definitions/creality_ender3pro.def.json index f8aa6d433a..de0d4ed0bf 100644 --- a/resources/definitions/creality_ender3pro.def.json +++ b/resources/definitions/creality_ender3pro.def.json @@ -1,28 +1,29 @@ { - "name": "Creality Ender-3 Pro", "version": 2, + "name": "Creality Ender-3 Pro", "inherits": "creality_base", - "metadata": { - "quality_definition": "creality_base", + "metadata": + { "visible": true, - "platform": "creality_ender3.3mf" + "platform": "creality_ender3.3mf", + "quality_definition": "creality_base" }, - "overrides": { - "machine_name": { "default_value": "Creality Ender-3 Pro" }, - "machine_width": { "default_value": 220 }, + "overrides": + { + "gantry_height": { "value": 25 }, "machine_depth": { "default_value": 220 }, - "machine_height": { "default_value": 250 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-26, 34], [-26, -32], [32, -32], [32, 34] ] }, - "machine_start_gcode": { - "default_value": "; Ender 3 Custom Start G-code\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nM104 S{material_standby_temperature} ; Start heating up the nozzle most of the way\nM190 S{material_bed_temperature_layer_0} ; Start heating the bed, wait until target temperature reached\nM109 S{material_print_temperature_layer_0} ; Finish heating the nozzle\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; 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.3 F5000.0 ; Move over to prevent blob squish" - }, - - "gantry_height": { "value": 25 } + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "Creality Ender-3 Pro" }, + "machine_start_gcode": { "default_value": "; Ender 3 Custom Start G-code\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nM104 S{material_standby_temperature} ; Start heating up the nozzle most of the way\nM190 S{material_bed_temperature_layer_0} ; Start heating the bed, wait until target temperature reached\nM109 S{material_print_temperature_layer_0} ; Finish heating the nozzle\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; 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.3 F5000.0 ; Move over to prevent blob squish" }, + "machine_width": { "default_value": 220 } } -} +} \ No newline at end of file diff --git a/resources/definitions/creality_ender3s1.def.json b/resources/definitions/creality_ender3s1.def.json new file mode 100644 index 0000000000..37e69d72c0 --- /dev/null +++ b/resources/definitions/creality_ender3s1.def.json @@ -0,0 +1,36 @@ +{ + "version": 2, + "name": "Creality Ender-3 S1", + "inherits": "creality_base", + "metadata": + { + "visible": true, + "quality_definition": "creality_base" + }, + "overrides": + { + "acceleration_enabled": { "value": true }, + "acceleration_travel": { "value": 2000 }, + "gantry_height": { "value": 25 }, + "machine_depth": { "default_value": 220 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-26, 34], + [-26, -32], + [32, -32], + [32, 34] + ] + }, + "machine_height": { "default_value": 270 }, + "machine_name": { "default_value": "Creality Ender-3 S1" }, + "machine_start_gcode": { "default_value": "; Ender 3 S1 Start G-code\n; M413 S0 ; Disable power loss recovery\nG92 E0 ; Reset Extruder\n\n; Prep surfaces before auto home for better accuracy\nM140 S{material_bed_temperature_layer_0}\nM104 S{material_print_temperature_layer_0}\n\nG28 O ; Home all untrusted axes\nG1 Z10.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0 Y0\n\nM190 S{material_bed_temperature_layer_0}\nM109 S{material_print_temperature_layer_0}\n\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; 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.3 F5000.0 ; Move over to prevent blob squish\n" }, + "machine_width": { "default_value": 220 }, + "retraction_amount": { "value": 0.8 }, + "retraction_extrusion_window": { "value": 1.5 }, + "retraction_speed": { "default_value": 40 }, + "speed_layer_0": { "value": 25 }, + "speed_print": { "value": 60 }, + "speed_travel": { "value": "120.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" } + } +} \ No newline at end of file diff --git a/resources/definitions/creality_ender3s1plus.def.json b/resources/definitions/creality_ender3s1plus.def.json new file mode 100644 index 0000000000..61da5b690e --- /dev/null +++ b/resources/definitions/creality_ender3s1plus.def.json @@ -0,0 +1,36 @@ +{ + "version": 2, + "name": "Creality Ender-3 S1 Plus", + "inherits": "creality_base", + "metadata": + { + "visible": true, + "quality_definition": "creality_base" + }, + "overrides": + { + "acceleration_enabled": { "value": true }, + "acceleration_travel": { "value": 2000 }, + "gantry_height": { "value": 25 }, + "machine_depth": { "default_value": 300 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-26, 34], + [-26, -32], + [32, -32], + [32, 34] + ] + }, + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "Creality Ender-3 S1 Plus" }, + "machine_start_gcode": { "default_value": "; Ender 3 S1 Plus Start G-code\n; M413 S0 ; Disable power loss recovery\nG92 E0 ; Reset Extruder\n\n; Prep surfaces before auto home for better accuracy\nM140 S{material_bed_temperature_layer_0}\nM104 S{material_print_temperature_layer_0}\n\nG28 O ; Home all untrusted axes\nG1 Z10.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0 Y0\n\nM190 S{material_bed_temperature_layer_0}\nM109 S{material_print_temperature_layer_0}\n\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; 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.3 F5000.0 ; Move over to prevent blob squish\n" }, + "machine_width": { "default_value": 300 }, + "retraction_amount": { "value": 0.8 }, + "retraction_extrusion_window": { "value": 1.5 }, + "retraction_speed": { "default_value": 40 }, + "speed_layer_0": { "value": 25 }, + "speed_print": { "value": 60 }, + "speed_travel": { "value": "120.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" } + } +} \ No newline at end of file diff --git a/resources/definitions/creality_ender3s1pro.def.json b/resources/definitions/creality_ender3s1pro.def.json new file mode 100644 index 0000000000..ba5d22e2dc --- /dev/null +++ b/resources/definitions/creality_ender3s1pro.def.json @@ -0,0 +1,36 @@ +{ + "version": 2, + "name": "Creality Ender-3 S1 Pro", + "inherits": "creality_base", + "metadata": + { + "visible": true, + "quality_definition": "creality_base" + }, + "overrides": + { + "acceleration_enabled": { "value": true }, + "acceleration_travel": { "value": 2000 }, + "gantry_height": { "value": 25 }, + "machine_depth": { "default_value": 220 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-26, 34], + [-26, -32], + [32, -32], + [32, 34] + ] + }, + "machine_height": { "default_value": 270 }, + "machine_name": { "default_value": "Creality Ender-3 S1 Pro" }, + "machine_start_gcode": { "default_value": "; Ender 3 S1 Pro Start G-code\n; M413 S0 ; Disable power loss recovery\nG92 E0 ; Reset Extruder\n\n; Prep surfaces before auto home for better accuracy\nM140 S{material_bed_temperature_layer_0}\nM104 S{material_print_temperature_layer_0}\n\nG28 O ; Home all untrusted axes\nG1 Z10.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0 Y0\n\nM190 S{material_bed_temperature_layer_0}\nM109 S{material_print_temperature_layer_0}\n\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; 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.3 F5000.0 ; Move over to prevent blob squish\n" }, + "machine_width": { "default_value": 220 }, + "retraction_amount": { "value": 0.8 }, + "retraction_extrusion_window": { "value": 1.5 }, + "retraction_speed": { "default_value": 40 }, + "speed_layer_0": { "value": 25 }, + "speed_print": { "value": 60 }, + "speed_travel": { "value": "120.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" } + } +} \ No newline at end of file diff --git a/resources/definitions/creality_ender4.def.json b/resources/definitions/creality_ender4.def.json index 6fd02d879f..3da1131292 100644 --- a/resources/definitions/creality_ender4.def.json +++ b/resources/definitions/creality_ender4.def.json @@ -1,27 +1,28 @@ { - "name": "Creality Ender-4", "version": 2, + "name": "Creality Ender-4", "inherits": "creality_base", - "overrides": { - "machine_name": { "default_value": "Creality Ender-4" }, - "machine_width": { "default_value": 220 }, + "metadata": + { + "visible": true, + "quality_definition": "creality_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, "machine_depth": { "default_value": 220 }, - "machine_height": { "default_value": 300 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-26, 34], [-26, -32], [32, -32], [32, 34] ] }, - - "gantry_height": { "value": 25 }, - + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "Creality Ender-4" }, + "machine_width": { "default_value": 220 }, "speed_print": { "value": 80.0 } - - }, - "metadata": { - "quality_definition": "creality_base", - "visible": true } -} +} \ No newline at end of file diff --git a/resources/definitions/creality_ender5.def.json b/resources/definitions/creality_ender5.def.json index 2f913fdd4e..36e1753086 100644 --- a/resources/definitions/creality_ender5.def.json +++ b/resources/definitions/creality_ender5.def.json @@ -1,28 +1,29 @@ { - "name": "Creality Ender-5", "version": 2, + "name": "Creality Ender-5", "inherits": "creality_base", - "overrides": { - "machine_name": { "default_value": "Creality Ender-5" }, - "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG28 X0 Y0 ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, - "machine_width": { "default_value": 220 }, + "metadata": + { + "visible": true, + "quality_definition": "creality_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, "machine_depth": { "default_value": 220 }, - "machine_height": { "default_value": 300 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG28 X0 Y0 ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, + "machine_head_with_fans_polygon": + { + "default_value": [ [-26, 34], [-26, -32], [32, -32], [32, 34] ] }, - - "gantry_height": { "value": 25 }, - + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "Creality Ender-5" }, + "machine_width": { "default_value": 220 }, "speed_print": { "value": 80.0 } - - }, - "metadata": { - "quality_definition": "creality_base", - "visible": true } -} +} \ No newline at end of file diff --git a/resources/definitions/creality_ender5plus.def.json b/resources/definitions/creality_ender5plus.def.json index 44469284f2..b7b11343e5 100644 --- a/resources/definitions/creality_ender5plus.def.json +++ b/resources/definitions/creality_ender5plus.def.json @@ -1,29 +1,30 @@ { - "name": "Creality Ender-5 Plus", "version": 2, + "name": "Creality Ender-5 Plus", "inherits": "creality_base", - "overrides": { - "machine_name": { "default_value": "Creality Ender-5 Plus" }, - "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\nM420 S1 Z2 ;Enable ABL using saved Mesh and Fade Height\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n"}, - "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X{machine_width} Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, - "machine_width": { "default_value": 350 }, + "metadata": + { + "visible": true, + "quality_definition": "creality_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, "machine_depth": { "default_value": 350 }, - "machine_height": { "default_value": 400 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X{machine_width} Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, + "machine_head_with_fans_polygon": + { + "default_value": [ [-26, 34], [-26, -32], [32, -32], [32, 34] ] }, - - "gantry_height": { "value": 25 }, - + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Creality Ender-5 Plus" }, + "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\nM420 S1 Z2 ;Enable ABL using saved Mesh and Fade Height\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" }, + "machine_width": { "default_value": 350 }, "speed_print": { "value": 80.0 } - - }, - "metadata": { - "quality_definition": "creality_base", - "visible": true } } \ No newline at end of file diff --git a/resources/definitions/creality_ender6.def.json b/resources/definitions/creality_ender6.def.json index 56ceab88b2..7001589aaf 100644 --- a/resources/definitions/creality_ender6.def.json +++ b/resources/definitions/creality_ender6.def.json @@ -1,41 +1,30 @@ -{ - "name": "Creality Ender-6", - "version": 2, - "inherits": "creality_base", - "overrides": { - "machine_name": { "default_value": "Creality Ender-6" }, - "machine_start_gcode": { "default_value": "\nG28 ;Home\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n"}, - "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG28 X Y ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, - "machine_width": { "default_value": 260 }, - "machine_depth": { "default_value": 260 }, - "machine_height": { "default_value": 400 }, - "z_seam_type": { "value": "'sharpest_corner'"}, - "z_seam_corner": { "value": "'z_seam_corner_inner'"}, - "infill_sparse_density": { "value": "10"}, - "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'grid'"}, - "infill_overlap":{"value": 10}, - "material_print_temperature":{"value": 220}, - "material_bed_temperature":{"value": 50}, - "retraction_amount":{"value": 10}, - "speed_travel": { "value": 80.0 }, - "coasting_enable": { "value": true}, - "coasting_min_volume": { "value": 0.5}, - "machine_head_with_fans_polygon": { "default_value": [ - [-26, 34], - [-26, -32], - [32, -32], - [32, 34] - ] - }, - - "gantry_height": { "value": 25 }, - - "speed_print": { "value": 50.0 }, - "speed_wall": { "value": 30.0 } - - }, - "metadata": { - "quality_definition": "creality_base", - "visible": true - } -} +{ + "version": 2, + "name": "Creality Ender-6", + "inherits": "creality_base", + "metadata": + { + "visible": true, + "quality_definition": "creality_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, + "machine_depth": { "default_value": 260 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG28 X Y ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-26, 34], + [-26, -32], + [32, -32], + [32, 34] + ] + }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Creality Ender-6" }, + "machine_start_gcode": { "default_value": "\nG28 ;Home\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" }, + "machine_width": { "default_value": 260 }, + "speed_print": { "value": 80.0 } + } +} \ No newline at end of file diff --git a/resources/definitions/creality_sermoond1.def.json b/resources/definitions/creality_sermoond1.def.json index c09019c6f4..138be79478 100644 --- a/resources/definitions/creality_sermoond1.def.json +++ b/resources/definitions/creality_sermoond1.def.json @@ -1,25 +1,27 @@ -{ - "name": "Creality Sermoon D1", - "version": 2, - "inherits": "creality_base", - "overrides": { - "machine_name": { "default_value": "Creality Sermoon D1" }, - "machine_width": { "default_value": 280 }, - "machine_depth": { "default_value": 260 }, - "machine_height": { "default_value": 310 }, - "machine_head_with_fans_polygon": { "default_value": [ - [-26, 34], - [-26, -32], - [32, -32], - [32, 34] - ] - }, - - "gantry_height": { "value": 25 } - - }, - "metadata": { - "quality_definition": "creality_base", - "visible": true - } -} +{ + "version": 2, + "name": "Creality Sermoon D1", + "inherits": "creality_base", + "metadata": + { + "visible": true, + "quality_definition": "creality_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, + "machine_depth": { "default_value": 260 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-26, 34], + [-26, -32], + [32, -32], + [32, 34] + ] + }, + "machine_height": { "default_value": 310 }, + "machine_name": { "default_value": "Creality Sermoon D1" }, + "machine_width": { "default_value": 280 } + } +} \ No newline at end of file diff --git a/resources/definitions/creality_sermoonv1.def.json b/resources/definitions/creality_sermoonv1.def.json new file mode 100644 index 0000000000..d40c172f43 --- /dev/null +++ b/resources/definitions/creality_sermoonv1.def.json @@ -0,0 +1,34 @@ +{ + "version": 2, + "name": "Creality Sermoon V1 & V1 Pro", + "inherits": "creality_base", + "metadata": + { + "visible": true, + "author": "Luis Gabriel Gomez", + "has_variants": true, + "quality_definition": "creality_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 175 }, + "machine_end_gcode": { "default_value": "; -- END GCODE --\nG91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z0.5 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y0 ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-26, 34], + [-26, -32], + [32, -32], + [32, 34] + ] + }, + "machine_height": { "default_value": 165 }, + "machine_name": { "default_value": "Creality Sermoon V1" }, + "machine_start_gcode": { "default_value": "; -- START GCODE --\nG28 ;Home\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y170.0 Z0.28 F1500.0 E12 ;Draw the first line\nG1 X10.4 Y170.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E25 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up" }, + "machine_width": { "default_value": 175 }, + "retraction_amount": { "value": 0.8 }, + "retraction_speed": { "default_value": 40 } + } +} \ No newline at end of file diff --git a/resources/definitions/creasee_cs20.def.json b/resources/definitions/creasee_cs20.def.json index ab30f3dd1c..fe0b9a311e 100644 --- a/resources/definitions/creasee_cs20.def.json +++ b/resources/definitions/creasee_cs20.def.json @@ -2,31 +2,19 @@ "version": 2, "name": "Creasee CS20", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "manufacturer": "Creasee", - "machine_extruder_trains": - { - "0": "creasee_extruder_0" - } + "machine_extruder_trains": { "0": "creasee_extruder_0" } }, - - "overrides": { + "overrides": + { + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" }, + "machine_height": { "default_value": 250 }, "machine_name": { "default_value": "Creasee CS20" }, - "machine_width": { - "default_value": 220 - }, - "machine_depth": { - "default_value": 220 - }, - "machine_height": { - "default_value": 250 - }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" - } + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" }, + "machine_width": { "default_value": 220 } } -} +} \ No newline at end of file diff --git a/resources/definitions/creasee_cs30.def.json b/resources/definitions/creasee_cs30.def.json index 7d6a5090bb..d1d61800b8 100644 --- a/resources/definitions/creasee_cs30.def.json +++ b/resources/definitions/creasee_cs30.def.json @@ -2,31 +2,19 @@ "version": 2, "name": "Creasee CS30", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "manufacturer": "Creasee", - "machine_extruder_trains": - { - "0": "creasee_extruder_1" - } + "machine_extruder_trains": { "0": "creasee_extruder_1" } }, - - "overrides": { + "overrides": + { + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" }, + "machine_height": { "default_value": 400 }, "machine_name": { "default_value": "Creasee CS30" }, - "machine_width": { - "default_value": 300 - }, - "machine_depth": { - "default_value": 300 - }, - "machine_height": { - "default_value": 400 - }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" - } + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" }, + "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/creasee_cs50spro.def.json b/resources/definitions/creasee_cs50spro.def.json index a2be3d0a52..3810177637 100644 --- a/resources/definitions/creasee_cs50spro.def.json +++ b/resources/definitions/creasee_cs50spro.def.json @@ -2,31 +2,19 @@ "version": 2, "name": "Creasee CS50s Pro", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "manufacturer": "Creasee", - "machine_extruder_trains": - { - "0": "creasee_cs50spro_extruder" - } + "machine_extruder_trains": { "0": "creasee_cs50spro_extruder" } }, - - "overrides": { + "overrides": + { + "machine_depth": { "default_value": 500 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" }, + "machine_height": { "default_value": 600 }, "machine_name": { "default_value": "Creasee CS50s Pro" }, - "machine_width": { - "default_value": 500 - }, - "machine_depth": { - "default_value": 500 - }, - "machine_height": { - "default_value": 600 - }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" - } + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" }, + "machine_width": { "default_value": 500 } } -} +} \ No newline at end of file diff --git a/resources/definitions/creasee_phoenix.def.json b/resources/definitions/creasee_phoenix.def.json index 05e134b6b8..e97c580ec7 100644 --- a/resources/definitions/creasee_phoenix.def.json +++ b/resources/definitions/creasee_phoenix.def.json @@ -2,31 +2,19 @@ "version": 2, "name": "Creasee Phoenix", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "manufacturer": "Creasee", - "machine_extruder_trains": - { - "0": "creasee_phoenix_extruder" - } + "machine_extruder_trains": { "0": "creasee_phoenix_extruder" } }, - - "overrides": { + "overrides": + { + "machine_depth": { "default_value": 350 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" }, + "machine_height": { "default_value": 350 }, "machine_name": { "default_value": "Creasee Phoenix" }, - "machine_width": { - "default_value": 350 - }, - "machine_depth": { - "default_value": 350 - }, - "machine_height": { - "default_value": 350 - }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" - } + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" }, + "machine_width": { "default_value": 350 } } -} +} \ No newline at end of file diff --git a/resources/definitions/creasee_skywalker.def.json b/resources/definitions/creasee_skywalker.def.json index 3120e6b116..32706c4a8c 100644 --- a/resources/definitions/creasee_skywalker.def.json +++ b/resources/definitions/creasee_skywalker.def.json @@ -2,31 +2,19 @@ "version": 2, "name": "Creasee Skywalker", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "manufacturer": "Creasee", - "machine_extruder_trains": - { - "0": "creasee_skywalker_extruder" - } + "machine_extruder_trains": { "0": "creasee_skywalker_extruder" } }, - - "overrides": { + "overrides": + { + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" }, + "machine_height": { "default_value": 400 }, "machine_name": { "default_value": "Creasee Skywalker" }, - "machine_width": { - "default_value": 300 - }, - "machine_depth": { - "default_value": 300 - }, - "machine_height": { - "default_value": 400 - }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E0\nG1 E-10 F2000\nG28 X0 Y0\nM84" - } + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" }, + "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/creatable_d3.def.json b/resources/definitions/creatable_d3.def.json index a95fe44ff1..1c26c2ab86 100644 --- a/resources/definitions/creatable_d3.def.json +++ b/resources/definitions/creatable_d3.def.json @@ -2,41 +2,35 @@ "version": 2, "name": "Creatable D3", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Creatable Labs", "manufacturer": "Ateam Ventures Co. Ltd.", "file_formats": "text/x-gcode", "platform": "rostock_platform.3mf", - "machine_extruder_trains": - { - "0": "creatable_d3_extruder_0" - } + "machine_extruder_trains": { "0": "creatable_d3_extruder_0" } }, - - "overrides": { - "machine_name": { "default_value": "Creatable D3" }, - "machine_center_is_zero": { "default_value": true }, - "machine_gcode_flavor": { "default_value": "RepRap (RepRap)" }, - "machine_width": { "default_value": 250 }, - "machine_height": { "default_value": 200 }, - "machine_depth": { "default_value": 250 }, - "machine_heated_bed": { "default_value": true }, - "machine_shape": { "default_value": "elliptic" }, - "machine_max_feedrate_z": { "default_value": 300 }, - "gantry_height": {"value": "43"}, + "overrides": + { + "gantry_height": { "value": "43" }, "layer_height": { "default_value": 0.1 }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 250 }, + "machine_end_gcode": { "default_value": "M400\nG28\nM104 S0\nM140 S0\nM107\nG92 E0\nG1 E-32 F300\nM84\nG90" }, + "machine_gcode_flavor": { "default_value": "RepRap (RepRap)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200 }, + "machine_max_feedrate_z": { "default_value": 300 }, + "machine_name": { "default_value": "Creatable D3" }, + "machine_shape": { "default_value": "elliptic" }, + "machine_start_gcode": { "default_value": "G21\nG90\nM82\nM106 S255\nG28\nG92 E0\nG1 Z100 F5000\nM190 S50\nM109 S200\nG1 X-135\nG1 Z0.3\nG92 E-32\nG1 E0 F1000\nG1 E50 F200\nG1 F1000\nG1 X-125\nG92 E0" }, + "machine_width": { "default_value": 250 }, "relative_extrusion": { "value": "False" }, + "retraction_amount": { "default_value": 4.5 }, "retraction_combing": { "value": "'off'" }, "retraction_hop_enabled": { "default_value": true }, "retraction_hop_only_when_collides": { "default_value": false }, - "retraction_speed": { "default_value": 100 }, - "retraction_amount": { "default_value": 4.5 }, - "machine_start_gcode": { - "default_value": "G21\nG90\nM82\nM106 S255\nG28\nG92 E0\nG1 Z100 F5000\nM190 S50\nM109 S200\nG1 X-135\nG1 Z0.3\nG92 E-32\nG1 E0 F1000\nG1 E50 F200\nG1 F1000\nG1 X-125\nG92 E0" - }, - "machine_end_gcode": { - "default_value": "M400\nG28\nM104 S0\nM140 S0\nM107\nG92 E0\nG1 E-32 F300\nM84\nG90" - } + "retraction_speed": { "default_value": 100 } } -} +} \ No newline at end of file diff --git a/resources/definitions/cremaker_common.def.json b/resources/definitions/cremaker_common.def.json index 6fd339f58f..9070a85a60 100644 --- a/resources/definitions/cremaker_common.def.json +++ b/resources/definitions/cremaker_common.def.json @@ -1,58 +1,56 @@ { - "version": 2, - "name": "cremaker common", - "inherits": "fdmprinter", - "metadata": { - "visible": false, - "author": "Joyplace", - "manufacturer": "JOYPLACE CO., LTD.", - "file_formats": "text/x-gcode", - "icon": "icon_ultimaker2", - "has_materials": true, - "machine_extruder_trains": { - "0": "cremaker_extruder_0" + "version": 2, + "name": "cremaker common", + "inherits": "fdmprinter", + "metadata": + { + "visible": false, + "author": "Joyplace", + "manufacturer": "JOYPLACE CO., LTD.", + "file_formats": "text/x-gcode", + "has_materials": true, + "icon": "icon_ultimaker2", + "machine_extruder_trains": { "0": "cremaker_extruder_0" } + }, + "overrides": + { + "acceleration_enabled": { "value": true }, + "acceleration_infill": { "value": 1250 }, + "acceleration_layer_0": { "value": 1000 }, + "acceleration_print": { "value": 1250 }, + "acceleration_print_layer_0": { "value": 1000 }, + "acceleration_travel": { "value": 1250 }, + "acceleration_travel_layer_0": { "value": 1000 }, + "acceleration_wall": { "value": 800 }, + "acceleration_wall_0": { "value": 800 }, + "acceleration_wall_x": { "value": 800 }, + "adhesion_type": { "value": "'skirt'" }, + "gantry_height": { "value": 28 }, + "hole_xy_offset": { "value": 0.15 }, + "layer_height": { "value": 0.2 }, + "layer_height_0": { "value": 0.3 }, + "machine_acceleration": { "value": 1250 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_max_acceleration_z": { "value": 10 }, + "machine_max_feedrate_e": { "value": 120 }, + "machine_max_feedrate_z": { "value": 12 }, + "machine_max_jerk_e": { "value": 5.0 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.3 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "optimize_wall_printing_order": { "value": true }, + "relative_extrusion": { "value": true }, + "retraction_amount": { "value": 1.2 }, + "retraction_combing": { "value": "'infill'" }, + "retraction_hop": { "value": 0.3 }, + "retraction_hop_enabled": { "value": true }, + "retraction_hop_only_when_collides": { "value": true }, + "retraction_speed": { "value": 40 }, + "speed_layer_0": { "value": 25 }, + "speed_travel": { "value": 100 }, + "xy_offset": { "value": 0.1 }, + "xy_offset_layer_0": { "value": -0.1 } } - }, - - "overrides": { - "machine_heated_bed": { "default_value": true }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "layer_height": { "value": 0.2 }, - "layer_height_0": { "value": 0.3 }, - "optimize_wall_printing_order": { "value": true }, - "xy_offset": { "value": 0.1 }, - "xy_offset_layer_0": { "value": -0.1 }, - "hole_xy_offset": { "value": 0.15 }, - "material_print_temperature": { "value": 200 }, - "speed_travel": { "value": 100 }, - "speed_layer_0": { "value": 25 }, - "acceleration_enabled": { "value": true }, - "acceleration_print": { "value": 1250 }, - "acceleration_infill": { "value": 1250 }, - "acceleration_wall": { "value": 800 }, - "acceleration_wall_0": { "value": 800 }, - "acceleration_wall_x": { "value": 800 }, - "acceleration_travel": { "value": 1250 }, - "acceleration_layer_0": { "value": 1000 }, - "acceleration_print_layer_0": { "value": 1000 }, - "acceleration_travel_layer_0": { "value": 1000 }, - "retraction_amount": { "value": 1.2 }, - "retraction_speed": { "value": 40 }, - "retraction_combing": { "value": "'infill'" }, - "retraction_hop_enabled": { "value": true }, - "retraction_hop_only_when_collides": { "value": true }, - "retraction_hop": { "value": 0.3 }, - "adhesion_type": { "value": "'skirt'" }, - "relative_extrusion": { "value": true }, - "gantry_height": { "value": 28 }, - "machine_max_feedrate_z": { "value": 12 }, - "machine_max_feedrate_e": { "value": 120 }, - "machine_max_acceleration_z": { "value": 10 }, - "machine_acceleration": { "value": 1250 }, - "machine_max_jerk_xy": { "value": 10 }, - "machine_max_jerk_z": { "value": 0.3 }, - "machine_max_jerk_e": { "value": 5.0 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" } - } -} +} \ No newline at end of file diff --git a/resources/definitions/cremaker_m_v1.def.json b/resources/definitions/cremaker_m_v1.def.json index d4cd65a6da..70c277ba45 100644 --- a/resources/definitions/cremaker_m_v1.def.json +++ b/resources/definitions/cremaker_m_v1.def.json @@ -1,40 +1,38 @@ { - "version": 2, - "name": "Cremaker M V1", - "inherits": "cremaker_common", - "metadata": { - "visible": true, - "platform": "cremaker_platform_200.obj" - }, - - "overrides": { - "machine_name": { "default_value": "Cremaker M V1" }, - "machine_width": { "default_value": 200 }, - "machine_depth": { "default_value": 200 }, - "machine_height": { "default_value": 260 }, - "initial_layer_line_width_factor": { "default_value": 110.0 }, - "machine_head_with_fans_polygon": { - "default_value": [ - [ -35, 48 ], - [ 54, 48 ], - [ 54, -67 ], - [ -35, -67 ] - ] + "version": 2, + "name": "Cremaker M V1", + "inherits": "cremaker_common", + "metadata": + { + "visible": true, + "platform": "cremaker_platform_200.obj" }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "G28\nG1 Z5.0 F6000\nG1 X2 Y5 F3000\nG1 Z0.3\nG92 E0\nG1 Y100 E10 F600\nG92 E0" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28 X0 Y180\nM84" - }, - "jerk_enabled": { "value": true }, - "jerk_print": { "value": 8 }, - "jerk_infill": { "value": 8 }, - "jerk_wall": { "value": 8 }, - "jerk_wall_0": { "value": 8 }, - "jerk_wall_x": { "value": 8 }, - "jerk_travel": { "value": 10 }, - "jerk_layer_0": { "value": 8 } - } -} + "overrides": + { + "initial_layer_line_width_factor": { "default_value": 110.0 }, + "jerk_enabled": { "value": true }, + "jerk_infill": { "value": 8 }, + "jerk_layer_0": { "value": 8 }, + "jerk_print": { "value": 8 }, + "jerk_travel": { "value": 10 }, + "jerk_wall": { "value": 8 }, + "jerk_wall_0": { "value": 8 }, + "jerk_wall_x": { "value": 8 }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28 X0 Y180\nM84" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-35, 48], + [54, 48], + [54, -67], + [-35, -67] + ] + }, + "machine_height": { "default_value": 260 }, + "machine_name": { "default_value": "Cremaker M V1" }, + "machine_start_gcode": { "default_value": "G28\nG1 Z5.0 F6000\nG1 X2 Y5 F3000\nG1 Z0.3\nG92 E0\nG1 Y100 E10 F600\nG92 E0" }, + "machine_width": { "default_value": 200 } + } +} \ No newline at end of file diff --git a/resources/definitions/cremaker_m_v2.def.json b/resources/definitions/cremaker_m_v2.def.json index 2d6c4d1a7f..c441095b60 100644 --- a/resources/definitions/cremaker_m_v2.def.json +++ b/resources/definitions/cremaker_m_v2.def.json @@ -1,38 +1,32 @@ { - "version": 2, - "name": "Cremaker M V2", - "inherits": "cremaker_common", - "metadata": { - "visible": true, - "platform": "cremaker_platform_220.obj" - }, - - "overrides": { - "machine_name": { "default_value": "Cremaker M V2" }, - "machine_width": { "default_value": 220 }, - "machine_depth": { "default_value": 220 }, - "machine_height": { "default_value": 260 }, - "initial_layer_line_width_factor": { "default_value": 100.0 }, - "machine_head_with_fans_polygon": { - "default_value": [ - [ -35, 48 ], - [ 54, 48 ], - [ 54, -67 ], - [ -35, -67 ] - ] + "version": 2, + "name": "Cremaker M V2", + "inherits": "cremaker_common", + "metadata": + { + "visible": true, + "platform": "cremaker_platform_220.obj" }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "G28\nG29\nG1 Z5.0 F6000\nG1 X2 Y5 Z0.3 F3000\nG92 E0\nG1 Y100 E10 F1500\nG0 X2.3 F3000\nG1 Y20 E8.5 F1500\nG92 E0\nG1 F2400 E-2" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28 X0 Y200\nM84" - }, - - "cool_fan_speed": { "value": 50 }, - "coasting_enable": { "value": true }, - "coasting_volume": { "value": 0.05 }, - "coasting_min_volume": { "value": 1.0 }, - "jerk_enabled": { "value": false } - } -} + "overrides": + { + "cool_fan_speed": { "value": 50 }, + "initial_layer_line_width_factor": { "default_value": 100.0 }, + "jerk_enabled": { "value": false }, + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28 X0 Y200\nM84" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-35, 48], + [54, 48], + [54, -67], + [-35, -67] + ] + }, + "machine_height": { "default_value": 260 }, + "machine_name": { "default_value": "Cremaker M V2" }, + "machine_start_gcode": { "default_value": "G28\nG29\nG1 Z5.0 F6000\nG1 X2 Y5 Z0.3 F3000\nG92 E0\nG1 Y100 E10 F1500\nG0 X2.3 F3000\nG1 Y20 E8.5 F1500\nG92 E0\nG1 F2400 E-2" }, + "machine_width": { "default_value": 220 } + } +} \ No newline at end of file diff --git a/resources/definitions/cremaker_s_v1.def.json b/resources/definitions/cremaker_s_v1.def.json index 101d82fac8..d8f3ea4f1a 100644 --- a/resources/definitions/cremaker_s_v1.def.json +++ b/resources/definitions/cremaker_s_v1.def.json @@ -1,32 +1,30 @@ { - "version": 2, - "name": "Cremaker S V1", - "inherits": "cremaker_common", - "metadata": { - "visible": true, - "platform": "cremaker_platform_200.obj" - }, - - "overrides": { - "machine_name": { "default_value": "Cremaker S V1" }, - "machine_width": { "default_value": 200 }, - "machine_depth": { "default_value": 200 }, - "machine_height": { "default_value": 160 }, - "initial_layer_line_width_factor": { "default_value": 110.0 }, - "machine_head_with_fans_polygon": { - "default_value": [ - [ -39, 45 ], - [ 23, 45 ], - [ 23, -33 ], - [ -39, -33 ] - ] + "version": 2, + "name": "Cremaker S V1", + "inherits": "cremaker_common", + "metadata": + { + "visible": true, + "platform": "cremaker_platform_200.obj" }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "G28\nG1 Z5.0 F6000\nG1 X2 Y5 F3000\nG1 Z0.3\nG92 E0\nG1 Y100 E10 F600\nG92 E0" - }, - "machine_end_gcode": { - "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off heatbed\nG92 E1\nG1 E-1 F300\nG28 X0 Y180\nM84" + "overrides": + { + "initial_layer_line_width_factor": { "default_value": 110.0 }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off heatbed\nG92 E1\nG1 E-1 F300\nG28 X0 Y180\nM84" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-39, 45], + [23, 45], + [23, -33], + [-39, -33] + ] + }, + "machine_height": { "default_value": 160 }, + "machine_name": { "default_value": "Cremaker S V1" }, + "machine_start_gcode": { "default_value": "G28\nG1 Z5.0 F6000\nG1 X2 Y5 F3000\nG1 Z0.3\nG92 E0\nG1 Y100 E10 F600\nG92 E0" }, + "machine_width": { "default_value": 200 } } - } -} +} \ No newline at end of file diff --git a/resources/definitions/cubicon_3dp_110f.def.json b/resources/definitions/cubicon_3dp_110f.def.json index eecfdd5911..4d8255a706 100644 --- a/resources/definitions/cubicon_3dp_110f.def.json +++ b/resources/definitions/cubicon_3dp_110f.def.json @@ -2,39 +2,27 @@ "version": 2, "name": "Cubicon Single", "inherits": "cubicon_common", - "metadata": { + "metadata": + { + "visible": true, "author": "Cubicon R&D Center", "manufacturer": "Cubicon", - "visible": true, "file_formats": "text/x-gcode", - "supports_usb_connection": false, - "machine_extruder_trains": { - "0": "cubicon_3dp_110f_extruder_0" - }, + "machine_extruder_trains": { "0": "cubicon_3dp_110f_extruder_0" }, "platform_offset": [ 0, -32.05, -20 - ] + ], + "supports_usb_connection": false }, - "overrides": { - "machine_name": { - "default_value": "Cubicon Single" - }, - "machine_start_gcode": { - "default_value": "M911 3DP-110F\nM201 X400 Y400\nM202 X400 Y400\nG28 ; Home\nG1 Z15.0 F6000 ;move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" - }, - "machine_width": { - "default_value": 240 - }, - "machine_depth": { - "default_value": 190 - }, - "machine_height": { - "default_value": 200 - }, - "material_bed_temp_wait": { - "default_value": true - } + "overrides": + { + "machine_depth": { "default_value": 190 }, + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "Cubicon Single" }, + "machine_start_gcode": { "default_value": "M911 3DP-110F\nM201 X400 Y400\nM202 X400 Y400\nG28 ; Home\nG1 Z15.0 F6000 ;move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" }, + "machine_width": { "default_value": 240 }, + "material_bed_temp_wait": { "default_value": true } } } \ No newline at end of file diff --git a/resources/definitions/cubicon_3dp_210f.def.json b/resources/definitions/cubicon_3dp_210f.def.json index 5d8ff78487..553d20daf2 100644 --- a/resources/definitions/cubicon_3dp_210f.def.json +++ b/resources/definitions/cubicon_3dp_210f.def.json @@ -2,39 +2,27 @@ "version": 2, "name": "Cubicon Style", "inherits": "cubicon_common", - "metadata": { + "metadata": + { + "visible": true, "author": "Cubicon R&D Center", "manufacturer": "Cubicon", - "visible": true, "file_formats": "text/x-gcode", - "supports_usb_connection": false, - "machine_extruder_trains": { - "0": "cubicon_3dp_210f_extruder_0" - }, + "machine_extruder_trains": { "0": "cubicon_3dp_210f_extruder_0" }, "platform_offset": [ 0, -18.8, 0 - ] + ], + "supports_usb_connection": false }, - "overrides": { - "machine_name": { - "default_value": "Cubicon Style" - }, - "machine_start_gcode": { - "default_value": "M911 3DP-210F\nM201 X400 Y400\nM202 X400 Y400\nG28 ; Home\nG1 Z15.0 F6000 ;move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" - }, - "machine_width": { - "default_value": 150 - }, - "machine_depth": { - "default_value": 150 - }, - "machine_height": { - "default_value": 150 - }, - "material_bed_temp_wait":{ - "default_value": false - } + "overrides": + { + "machine_depth": { "default_value": 150 }, + "machine_height": { "default_value": 150 }, + "machine_name": { "default_value": "Cubicon Style" }, + "machine_start_gcode": { "default_value": "M911 3DP-210F\nM201 X400 Y400\nM202 X400 Y400\nG28 ; Home\nG1 Z15.0 F6000 ;move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" }, + "machine_width": { "default_value": 150 }, + "material_bed_temp_wait": { "default_value": false } } } \ No newline at end of file diff --git a/resources/definitions/cubicon_3dp_310f.def.json b/resources/definitions/cubicon_3dp_310f.def.json index 1dc78f0ebf..d354c3956c 100644 --- a/resources/definitions/cubicon_3dp_310f.def.json +++ b/resources/definitions/cubicon_3dp_310f.def.json @@ -2,39 +2,27 @@ "version": 2, "name": "Cubicon Single Plus", "inherits": "cubicon_common", - "metadata": { + "metadata": + { + "visible": true, "author": "Cubicon R&D Center", "manufacturer": "Cubicon", - "visible": true, "file_formats": "text/x-gcode", - "supports_usb_connection": false, - "machine_extruder_trains": { - "0": "cubicon_3dp_310f_extruder_0" - }, + "machine_extruder_trains": { "0": "cubicon_3dp_310f_extruder_0" }, "platform_offset": [ 0, -32.05, -20 - ] + ], + "supports_usb_connection": false }, - "overrides": { - "machine_name": { - "default_value": "Cubicon Single Plus" - }, - "machine_start_gcode": { - "default_value": "M911 3DP-310F\nM201 X400 Y400\nM202 X400 Y400\nG28 ; Home\nG1 Z15.0 F6000 ;move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" - }, - "machine_width": { - "default_value": 240 - }, - "machine_depth": { - "default_value": 190 - }, - "machine_height": { - "default_value": 200 - }, - "material_bed_temp_wait": { - "default_value": true - } + "overrides": + { + "machine_depth": { "default_value": 190 }, + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "Cubicon Single Plus" }, + "machine_start_gcode": { "default_value": "M911 3DP-310F\nM201 X400 Y400\nM202 X400 Y400\nG28 ; Home\nG1 Z15.0 F6000 ;move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" }, + "machine_width": { "default_value": 240 }, + "material_bed_temp_wait": { "default_value": true } } } \ No newline at end of file diff --git a/resources/definitions/cubicon_common.def.json b/resources/definitions/cubicon_common.def.json index f700df7ae6..9fcff9dcec 100644 --- a/resources/definitions/cubicon_common.def.json +++ b/resources/definitions/cubicon_common.def.json @@ -2,51 +2,35 @@ "version": 2, "name": "Cubicon Common", "inherits": "fdmprinter", - "metadata": { + "metadata": + { + "visible": false, "author": "Cubicon R&D Center", - "manufacturer": "Cubicon", - "visible": false + "manufacturer": "Cubicon" }, - "overrides": { - "machine_start_gcode": { - "default_value": "M201 X400 Y400\nM202 X400 Y400\nG28 ; Home\nG1 Z15.0 F6000 ;move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nM904\nM117 Print completed! \nM84" - }, - "machine_gcode_flavor": { - "default_value": "Repetier" - }, - "machine_heated_bed": { - "default_value": true - }, - "layer_height": { - "default_value": 0.2 - }, - "layer_height_0": { - "default_value": 0.2 - }, - "adhesion_type": { - "default_value": "raft" - }, - "top_bottom_pattern": { "default_value": "lines" }, - "infill_sparse_density": { "default_value": 20 }, + "overrides": + { + "adhesion_type": { "default_value": "raft" }, + "bottom_thickness": { "value": "top_bottom_thickness * 0.6" }, + "coasting_volume": { "default_value": 0.032 }, + "cool_min_layer_time": { "default_value": 15 }, + "cool_min_layer_time_fan_speed_max": { "default_value": 15 }, "infill_before_walls": { "default_value": false }, - "top_bottom_thickness": { - "default_value": 1.0 - }, - "bottom_thickness": { - "value": "top_bottom_thickness * 0.6" - }, + "infill_sparse_density": { "default_value": 20 }, + "layer_height": { "default_value": 0.2 }, + "layer_height_0": { "default_value": 0.2 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nM904\nM117 Print completed! \nM84" }, + "machine_gcode_flavor": { "default_value": "Repetier" }, + "machine_heated_bed": { "default_value": true }, + "machine_start_gcode": { "default_value": "M201 X400 Y400\nM202 X400 Y400\nG28 ; Home\nG1 Z15.0 F6000 ;move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" }, "material_flow_layer_0": { "default_value": 100 }, "max_skin_angle_for_expansion": { "default_value": 90 }, - "skin_angles": { "default_value": "[135,45]" }, - "coasting_volume": { "default_value": 0.032 }, - "wall_thickness": { "value": "1.2" }, - "cool_min_layer_time_fan_speed_max": { "default_value": 15 }, - "cool_min_layer_time": { "default_value": 15 }, + "retraction_amount": { "default_value": 1.5 }, + "skin_angles": { "default_value": "[135, 45]" }, "support_interface_pattern": { "default_value": "zigzag" }, "support_pattern": { "default_value": "zigzag" }, - "retraction_amount": { "default_value": 1.5 } + "top_bottom_pattern": { "default_value": "lines" }, + "top_bottom_thickness": { "default_value": 1.0 }, + "wall_thickness": { "value": "1.2" } } } \ No newline at end of file diff --git a/resources/definitions/cubicon_dual_pro_a30.def.json b/resources/definitions/cubicon_dual_pro_a30.def.json index 6431c917a5..cec0d04b49 100644 --- a/resources/definitions/cubicon_dual_pro_a30.def.json +++ b/resources/definitions/cubicon_dual_pro_a30.def.json @@ -2,13 +2,14 @@ "version": 2, "name": "Cubicon Dual Pro-A30", "inherits": "cubicon_common", - "metadata": { + "metadata": + { + "visible": true, "author": "Cubicon R&D Center", "manufacturer": "Cubicon", - "visible": true, "file_formats": "text/x-gcode", - "supports_usb_connection": false, - "machine_extruder_trains": { + "machine_extruder_trains": + { "0": "cubicon_dual_pro_a30_extruder_0", "1": "cubicon_dual_pro_a30_extruder_1" }, @@ -16,29 +17,17 @@ 0, 0, 0 - ] + ], + "supports_usb_connection": false }, - "overrides": { - "machine_name": { - "default_value": "Cubicon Dual Pro-A30" - }, - "machine_start_gcode": { - "default_value": "M911 Dual Pro-A30C\nM201 X400 Y400\nM202 X400 Y400\nG28 ; Home\nG1 Z15.0 F6000 ;move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" - }, - "machine_width": { - "default_value": 300 - }, - "machine_depth": { - "default_value": 300 - }, - "machine_height": { - "default_value": 300 - }, - "material_bed_temp_wait":{ - "default_value": false - }, - "machine_extruder_count": { - "default_value": 2 - } + "overrides": + { + "machine_depth": { "default_value": 300 }, + "machine_extruder_count": { "default_value": 2 }, + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "Cubicon Dual Pro-A30" }, + "machine_start_gcode": { "default_value": "M911 Dual Pro-A30C\nM201 X400 Y400\nM202 X400 Y400\nG28 ; Home\nG1 Z15.0 F6000 ;move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" }, + "machine_width": { "default_value": 300 }, + "material_bed_temp_wait": { "default_value": false } } -} +} \ No newline at end of file diff --git a/resources/definitions/cubicon_style_neo_a22.def.json b/resources/definitions/cubicon_style_neo_a22.def.json index 01763524a4..ef24120ff2 100644 --- a/resources/definitions/cubicon_style_neo_a22.def.json +++ b/resources/definitions/cubicon_style_neo_a22.def.json @@ -2,39 +2,27 @@ "version": 2, "name": "Cubicon Style Neo-A22", "inherits": "cubicon_common", - "metadata": { + "metadata": + { + "visible": true, "author": "Cubicon R&D Center", "manufacturer": "Cubicon", - "visible": true, "file_formats": "text/x-gcode", - "supports_usb_connection": false, - "machine_extruder_trains": { - "0": "cubicon_style_neo_a22_extruder_0" - }, + "machine_extruder_trains": { "0": "cubicon_style_neo_a22_extruder_0" }, "platform_offset": [ 0, 0, 0 - ] + ], + "supports_usb_connection": false }, - "overrides": { - "machine_name": { - "default_value": "Cubicon Style Neo-A22" - }, - "machine_start_gcode": { - "default_value": "M911 Style Neo-A22\nM201 X400 Y400\nM202 X400 Y400\nG28 ; Home\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" - }, - "machine_width": { - "default_value": 220 - }, - "machine_depth": { - "default_value": 220 - }, - "machine_height": { - "default_value": 220 - }, - "material_bed_temp_wait":{ - "default_value": false - } + "overrides": + { + "machine_depth": { "default_value": 220 }, + "machine_height": { "default_value": 220 }, + "machine_name": { "default_value": "Cubicon Style Neo-A22" }, + "machine_start_gcode": { "default_value": "M911 Style Neo-A22\nM201 X400 Y400\nM202 X400 Y400\nG28 ; Home\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" }, + "machine_width": { "default_value": 220 }, + "material_bed_temp_wait": { "default_value": false } } -} +} \ No newline at end of file diff --git a/resources/definitions/cubicon_style_neo_a31.def.json b/resources/definitions/cubicon_style_neo_a31.def.json index d41b6fc17e..4ca2c99624 100644 --- a/resources/definitions/cubicon_style_neo_a31.def.json +++ b/resources/definitions/cubicon_style_neo_a31.def.json @@ -2,39 +2,27 @@ "version": 2, "name": "Cubicon Style Neo-A31", "inherits": "cubicon_common", - "metadata": { + "metadata": + { + "visible": true, "author": "Cubicon R&D Center", "manufacturer": "Cubicon", - "visible": true, "file_formats": "text/x-gcode", - "supports_usb_connection": false, - "machine_extruder_trains": { - "0": "cubicon_style_neo_a31_extruder_0" - }, + "machine_extruder_trains": { "0": "cubicon_style_neo_a31_extruder_0" }, "platform_offset": [ 0, 0, 0 - ] + ], + "supports_usb_connection": false }, - "overrides": { - "machine_name": { - "default_value": "Cubicon Style Neo-A31" - }, - "machine_start_gcode": { - "default_value": "M911 Style Neo-A31\nM201 X400 Y400\nM202 X400 Y400\nG28 ; Home\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" - }, - "machine_width": { - "default_value": 310 - }, - "machine_depth": { - "default_value": 310 - }, - "machine_height": { - "default_value": 310 - }, - "material_bed_temp_wait":{ - "default_value": false - } + "overrides": + { + "machine_depth": { "default_value": 310 }, + "machine_height": { "default_value": 310 }, + "machine_name": { "default_value": "Cubicon Style Neo-A31" }, + "machine_start_gcode": { "default_value": "M911 Style Neo-A31\nM201 X400 Y400\nM202 X400 Y400\nG28 ; Home\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" }, + "machine_width": { "default_value": 310 }, + "material_bed_temp_wait": { "default_value": false } } -} +} \ No newline at end of file diff --git a/resources/definitions/cubicon_style_plus_a15.def.json b/resources/definitions/cubicon_style_plus_a15.def.json index b7e3dfd123..7e0ddf36d2 100644 --- a/resources/definitions/cubicon_style_plus_a15.def.json +++ b/resources/definitions/cubicon_style_plus_a15.def.json @@ -2,39 +2,27 @@ "version": 2, "name": "Cubicon Style Plus-A15", "inherits": "cubicon_common", - "metadata": { + "metadata": + { + "visible": true, "author": "Cubicon R&D Center", "manufacturer": "Cubicon", - "visible": true, "file_formats": "text/x-gcode", - "supports_usb_connection": false, - "machine_extruder_trains": { - "0": "cubicon_style_plus_a15_extruder_0" - }, + "machine_extruder_trains": { "0": "cubicon_style_plus_a15_extruder_0" }, "platform_offset": [ 0, 0, 0 - ] + ], + "supports_usb_connection": false }, - "overrides": { - "machine_name": { - "default_value": "Cubicon Style Plus-A15" - }, - "machine_start_gcode": { - "default_value": "M911 Style Plus-A15\nM201 X400 Y400\nM202 X400 Y400\nG28 ; Home\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" - }, - "machine_width": { - "default_value": 150 - }, - "machine_depth": { - "default_value": 150 - }, - "machine_height": { - "default_value": 150 - }, - "material_bed_temp_wait":{ - "default_value": false - } + "overrides": + { + "machine_depth": { "default_value": 150 }, + "machine_height": { "default_value": 150 }, + "machine_name": { "default_value": "Cubicon Style Plus-A15" }, + "machine_start_gcode": { "default_value": "M911 Style Plus-A15\nM201 X400 Y400\nM202 X400 Y400\nG28 ; Home\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" }, + "machine_width": { "default_value": 150 }, + "material_bed_temp_wait": { "default_value": false } } -} +} \ No newline at end of file diff --git a/resources/definitions/custom.def.json b/resources/definitions/custom.def.json index 88cc3c8821..e8f2d7f3ac 100644 --- a/resources/definitions/custom.def.json +++ b/resources/definitions/custom.def.json @@ -2,11 +2,13 @@ "version": 2, "name": "Custom FFF printer", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Ultimaker", "manufacturer": "Custom", "file_formats": "text/x-gcode", + "first_start_actions": [ "MachineSettingsAction" ], "has_materials": true, "machine_extruder_trains": { @@ -18,7 +20,6 @@ "5": "custom_extruder_6", "6": "custom_extruder_7", "7": "custom_extruder_8" - }, - "first_start_actions": ["MachineSettingsAction"] + } } -} +} \ No newline at end of file diff --git a/resources/definitions/dagoma_delta.def.json b/resources/definitions/dagoma_delta.def.json index 6ff837e757..233c30275b 100644 --- a/resources/definitions/dagoma_delta.def.json +++ b/resources/definitions/dagoma_delta.def.json @@ -1,26 +1,27 @@ { - "name": "Dagoma Delta", "version": 2, + "name": "Dagoma Delta", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": false, "author": "Dagoma", - "manufacturer": "Dagoma" + "manufacturer": "Dagoma", + "first_start_actions": [ "MachineSettingsAction" ] }, - "overrides": { - "machine_width": { - "default_value": 195.55 - }, - "machine_height": { - "default_value": 205 - }, - "machine_depth": { - "default_value": 195.55 - }, - "machine_center_is_zero": { - "default_value": true - }, - "machine_head_with_fans_polygon": { + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "default_material_print_temperature": { "default_value": 205 }, + "gantry_height": { "value": "0" }, + "infill_before_walls": { "value": "False" }, + "inset_direction": { "value": "'inside_out'" }, + "layer_height_0": { "default_value": 0.26 }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 195.55 }, + "machine_end_gcode": { "default_value": "\nM104 S0\nM106 S255\nM140 S0\nG91\nG1 E-1 F300\nG1 Z+3 E-2 F9000\nG90\nG28\n" }, + "machine_head_with_fans_polygon": + { "default_value": [ [-36, -42], [-36, 42], @@ -28,41 +29,14 @@ [36, -42] ] }, - "gantry_height": { - "value": "0" - }, - "machine_shape": { - "default_value": "elliptic" - }, - "machine_start_gcode": { - "default_value": ";Gcode by Cura\nG90\nG28\nM107\nM109 R100\nG29\nM109 S{material_print_temperature_layer_0} U-55 X55 V-85 Y-85 W0.26 Z0.26\nM82\nG92 E0\nG1 F200 E6\nG92 E0\nG1 F200 E-3.5\nG0 Z0.15\nG0 X10\nG0 Z3\nG1 F6000\n" - }, - "machine_end_gcode": { - "default_value": "\nM104 S0\nM106 S255\nM140 S0\nG91\nG1 E-1 F300\nG1 Z+3 E-2 F9000\nG90\nG28\n" - }, - "default_material_print_temperature": { - "default_value": 205 - }, - "speed_print": { - "default_value": 40 - }, - "retraction_amount": { - "default_value": 3.8 - }, - "retraction_speed": { - "default_value": 60 - }, - "adhesion_type": { - "default_value": "skirt" - }, - "skirt_line_count": { - "default_value": 2 - }, - "layer_height_0": { - "default_value": 0.26 - }, - "top_bottom_thickness": { - "default_value": 1 - } + "machine_height": { "default_value": 205 }, + "machine_shape": { "default_value": "elliptic" }, + "machine_start_gcode": { "default_value": ";Gcode by Cura\nG90\nG28\nM107\nM109 R100\nG29\nM109 S{material_print_temperature_layer_0} U-55 X55 V-85 Y-85 W0.26 Z0.26\nM82\nG92 E0\nG1 F200 E6\nG92 E0\nG1 F200 E-3.5\nG0 Z0.15\nG0 X10\nG0 Z3\nG1 F6000\n" }, + "machine_width": { "default_value": 195.55 }, + "retraction_amount": { "default_value": 3.8 }, + "retraction_speed": { "default_value": 60 }, + "skirt_line_count": { "default_value": 2 }, + "speed_print": { "default_value": 40 }, + "top_bottom_thickness": { "default_value": 1 } } -} +} \ No newline at end of file diff --git a/resources/definitions/dagoma_disco.def.json b/resources/definitions/dagoma_disco.def.json index 89773d9c0e..59c1045fa3 100644 --- a/resources/definitions/dagoma_disco.def.json +++ b/resources/definitions/dagoma_disco.def.json @@ -1,26 +1,24 @@ { - "name": "Dagoma Disco", "version": 2, + "name": "Dagoma Disco", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": false, "author": "Dagoma", "manufacturer": "Dagoma" }, - "overrides": { - "machine_width": { - "default_value": 205 - }, - "machine_height": { - "default_value": 205 - }, - "machine_depth": { - "default_value": 205 - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_head_with_fans_polygon": { + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "default_material_print_temperature": { "default_value": 205 }, + "gantry_height": { "value": "10" }, + "layer_height_0": { "default_value": 0.26 }, + "machine_acceleration": { "value": 3000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 205 }, + "machine_head_with_fans_polygon": + { "default_value": [ [-17, -70], [-17, 40], @@ -28,52 +26,29 @@ [17, -70] ] }, - "gantry_height": { - "value": "10" - }, - "default_material_print_temperature": { - "default_value": 205 - }, - "material_standby_temperature": { - "default_value": 90 - }, - "speed_print": { - "default_value": 60 - }, - "retraction_amount": { - "default_value": 3.5 - }, - "retraction_speed": { - "default_value": 50 - }, - "adhesion_type": { - "default_value": "skirt" - }, - "skirt_line_count": { - "default_value": 2 - }, - "layer_height_0": { - "default_value": 0.26 - }, - "top_bottom_thickness": { - "default_value": 1 - }, - "machine_max_feedrate_x": { "default_value": 500 }, - "machine_max_feedrate_y": { "default_value": 500 }, - "machine_max_feedrate_z": { "default_value": 4 }, - "machine_max_feedrate_e": { "default_value": 170 }, + "machine_height": { "default_value": 205 }, + "machine_max_acceleration_e": { "value": 10000 }, "machine_max_acceleration_x": { "value": 3000 }, "machine_max_acceleration_y": { "value": 1000 }, "machine_max_acceleration_z": { "value": 20 }, - "machine_max_acceleration_e": { "value": 10000 }, - "machine_acceleration": { "value": 3000 }, + "machine_max_feedrate_e": { "default_value": 170 }, + "machine_max_feedrate_x": { "default_value": 500 }, + "machine_max_feedrate_y": { "default_value": 500 }, + "machine_max_feedrate_z": { "default_value": 4 }, + "machine_max_jerk_e": { "value": 5 }, "machine_max_jerk_xy": { "value": 20 }, "machine_max_jerk_z": { "value": 0.4 }, - "machine_max_jerk_e": { "value": 5 }, + "machine_steps_per_mm_e": { "default_value": 98 }, "machine_steps_per_mm_x": { "default_value": 80 }, "machine_steps_per_mm_y": { "default_value": 80 }, "machine_steps_per_mm_z": { "default_value": 2560 }, - "machine_steps_per_mm_e": { "default_value": 98 }, - "speed_z_hop": {"default_value": 4} + "machine_width": { "default_value": 205 }, + "material_standby_temperature": { "default_value": 90 }, + "retraction_amount": { "default_value": 3.5 }, + "retraction_speed": { "default_value": 50 }, + "skirt_line_count": { "default_value": 2 }, + "speed_print": { "default_value": 60 }, + "speed_z_hop": { "default_value": 4 }, + "top_bottom_thickness": { "default_value": 1 } } -} +} \ No newline at end of file diff --git a/resources/definitions/dagoma_discoeasy200.def.json b/resources/definitions/dagoma_discoeasy200.def.json index 16ce5585e4..53736dac28 100644 --- a/resources/definitions/dagoma_discoeasy200.def.json +++ b/resources/definitions/dagoma_discoeasy200.def.json @@ -1,34 +1,29 @@ { - "name": "Dagoma DiscoEasy200", "version": 2, + "name": "Dagoma DiscoEasy200", "inherits": "dagoma_disco", - "metadata": { + "metadata": + { "visible": true, "author": "Dagoma", "manufacturer": "Dagoma", "file_formats": "text/x-gcode", "platform": "dagoma_discoeasy200.3mf", - "platform_offset": [0, -57, -39], "has_machine_quality": true, "has_materials": true, - "preferred_material": "chromatik_pla", - "machine_extruder_trains": - { - "0": "dagoma_discoeasy200_extruder" - } + "machine_extruder_trains": { "0": "dagoma_discoeasy200_extruder" }, + "platform_offset": [ + 0, + -57, + -39 + ], + "preferred_material": "chromatik_pla" }, - "overrides": { - "machine_name": { - "default_value": "Dagoma DiscoEasy200" - }, - "machine_extruder_count": { - "default_value": 1 - }, - "machine_start_gcode": { - "default_value": ";Begin Start Gcode for Dagoma DiscoEasy 200\n;Sliced: {date} {time}\n;Initial extruder: {initial_extruder_nr}\n\nG90 ;Absolute positioning\nM106 S255 ;Fan on full\nG28 X Y ;Home stop X Y\nG1 X100 ;Centre back during cooldown in case of oozing\nM109 R{material_standby_temperature} ;Cooldown in case too hot\nG28 ;Centre\nG29 ;Auto-level\nM104 S{material_print_temperature_layer_0} ;Pre-heat\nM107 ;Fan off\nG0 X100 Y5 Z0.5 ;Front centre for degunk\nM109 S{material_print_temperature_layer_0} ;Wait for initial temp\nM83 ;E Relative\nG1 E10 F200 ;Degunk\nG1 E-3 F5000 ;Retract\nG0 Z3 ;Withdraw\nM82 ;E absolute\nG92 E0 ;E reset\nG1 F6000 ;Set feedrate\n\n;Finish Start Gcode for Dagoma DiscoEasy 200\n" - }, - "machine_end_gcode": { - "default_value": ";Begin End Gcode for Dagoma DiscoEasy 200\n\nM106 S255 ;Fan on full\nM104 S0 ;Cool hotend\nM140 S0 ;Cool heated bed\nG91 ;Relative positioning\nG1 E-3 F5000 ;Retract filament to stop oozing\nG0 Z+3 ;Withdraw\nG90 ;Absolute positioning\nG28 X Y ;Home\nM109 R{material_standby_temperature} ;Wait until head has cooled to standby temp\nM107 ;Fan off\nM18 ;Stepper motors off\n\n;Finish End Gcode for Dagoma DiscoEasy 200\n" - } + "overrides": + { + "machine_end_gcode": { "default_value": ";Begin End Gcode for Dagoma DiscoEasy 200\n\nM106 S255 ;Fan on full\nM104 S0 ;Cool hotend\nM140 S0 ;Cool heated bed\nG91 ;Relative positioning\nG1 E-3 F5000 ;Retract filament to stop oozing\nG0 Z+3 ;Withdraw\nG90 ;Absolute positioning\nG28 X Y ;Home\nM109 R{material_standby_temperature} ;Wait until head has cooled to standby temp\nM107 ;Fan off\nM18 ;Stepper motors off\n\n;Finish End Gcode for Dagoma DiscoEasy 200\n" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_name": { "default_value": "Dagoma DiscoEasy200" }, + "machine_start_gcode": { "default_value": ";Begin Start Gcode for Dagoma DiscoEasy 200\n;Sliced: {date} {time}\n;Initial extruder: {initial_extruder_nr}\n\nG90 ;Absolute positioning\nM106 S255 ;Fan on full\nG28 X Y ;Home stop X Y\nG1 X100 ;Centre back during cooldown in case of oozing\nM109 R{material_standby_temperature} ;Cooldown in case too hot\nG28 ;Centre\nG29 ;Auto-level\nM104 S{material_print_temperature_layer_0} ;Pre-heat\nM107 ;Fan off\nG0 X100 Y5 Z0.5 ;Front centre for degunk\nM109 S{material_print_temperature_layer_0} ;Wait for initial temp\nM83 ;E Relative\nG1 E10 F200 ;Degunk\nG1 E-3 F5000 ;Retract\nG0 Z3 ;Withdraw\nM82 ;E absolute\nG92 E0 ;E reset\nG1 F6000 ;Set feedrate\n\n;Finish Start Gcode for Dagoma DiscoEasy 200\n" } } -} +} \ No newline at end of file diff --git a/resources/definitions/dagoma_discoeasy200_bicolor.def.json b/resources/definitions/dagoma_discoeasy200_bicolor.def.json index 4786c03fc2..f91ddfb58d 100644 --- a/resources/definitions/dagoma_discoeasy200_bicolor.def.json +++ b/resources/definitions/dagoma_discoeasy200_bicolor.def.json @@ -1,38 +1,34 @@ { - "name": "Dagoma DiscoEasy200 Bicolor", "version": 2, + "name": "Dagoma DiscoEasy200 Bicolor", "inherits": "dagoma_disco", - "metadata": { + "metadata": + { "visible": true, "author": "Dagoma", "manufacturer": "Dagoma", "file_formats": "text/x-gcode", "platform": "dagoma_discoeasy200_bicolor.3mf", - "platform_offset": [0, -57.3, -11], "has_machine_quality": true, "has_materials": true, - "preferred_material": "chromatik_pla", "machine_extruder_trains": { "0": "dagoma_discoeasy200_extruder_0", "1": "dagoma_discoeasy200_extruder_1" - } + }, + "platform_offset": [ + 0, + -57.3, + -11 + ], + "preferred_material": "chromatik_pla" }, - "overrides": { - "machine_name": { - "default_value": "Dagoma DiscoEasy200 Bicolor" - }, - "machine_extruder_count": { - "default_value": 2 - }, - "machine_extruders_share_heater": { - "default_value": true - }, - "machine_start_gcode": { - "default_value": ";Begin Start Gcode for Dagoma DiscoEasy 200 Bicolor\n;Sliced: {date} {time}\n;Initial extruder: {initial_extruder_nr}\n\nG90 ;Absolute positioning\nM106 S255 ;Fan on full\nG28 X Y ;Home stop X Y\nG1 X100 ;Centre back during cooldown in case of oozing\nM109 R{material_standby_temperature} ;Cooldown in case too hot\nG28 ;Centre\nG29 ;Auto-level\nM104 S{material_print_temperature_layer_0} ;Pre-heat\nM107 ;Fan off\nG0 X100 Y5 Z0.5 ;Front centre for degunk\nM109 S{material_print_temperature_layer_0} ;Wait for initial temp\n;M83 ;E Relative\n;G1 E60 F3000 ;Reverse multi-extruder retract\n;G1 E10 F200 ;Degunk\n;G1 E-3 F5000 ;Retract\nG0 Z3 ;Withdraw\n;M82 ;E absolute\n;G92 E0 ;E reset\n;G1 F6000 ;Set feedrate\n\n;Finish Start Gcode for Dagoma DiscoEasy 200 Bicolor\n" - }, - "machine_end_gcode": { - "default_value": ";Begin End Gcode for Dagoma DiscoEasy 200 Bicolor\n\nM106 S255 ;Fan on full\nM104 S0 ;Cool hotend\nM140 S0 ;Cool heated bed\nG91 ;Relative positioning\nG1 E-3 F5000 ;Retract filament to stop oozing\nG1 E-60 F5000 ;Retract filament multi-extruder\nG0 Z+3 ;Withdraw\nG90 ; Absolute positioning\nG28 X Y ;Home\nM109 R{material_standby_temperature} ;Wait until head has cooled to standby temp\nM107 ;Fan off\nM18 ;Stepper motors off\n\n;Finish End Gcode for Dagoma DiscoEasy 200 Bicolor\n" - } + "overrides": + { + "machine_end_gcode": { "default_value": ";Begin End Gcode for Dagoma DiscoEasy 200 Bicolor\n\nM106 S255 ;Fan on full\nM104 S0 ;Cool hotend\nM140 S0 ;Cool heated bed\nG91 ;Relative positioning\nG1 E-3 F5000 ;Retract filament to stop oozing\nG1 E-60 F5000 ;Retract filament multi-extruder\nG0 Z+3 ;Withdraw\nG90 ; Absolute positioning\nG28 X Y ;Home\nM109 R{material_standby_temperature} ;Wait until head has cooled to standby temp\nM107 ;Fan off\nM18 ;Stepper motors off\n\n;Finish End Gcode for Dagoma DiscoEasy 200 Bicolor\n" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_extruders_share_heater": { "default_value": true }, + "machine_name": { "default_value": "Dagoma DiscoEasy200 Bicolor" }, + "machine_start_gcode": { "default_value": ";Begin Start Gcode for Dagoma DiscoEasy 200 Bicolor\n;Sliced: {date} {time}\n;Initial extruder: {initial_extruder_nr}\n\nG90 ;Absolute positioning\nM106 S255 ;Fan on full\nG28 X Y ;Home stop X Y\nG1 X100 ;Centre back during cooldown in case of oozing\nM109 R{material_standby_temperature} ;Cooldown in case too hot\nG28 ;Centre\nG29 ;Auto-level\nM104 S{material_print_temperature_layer_0} ;Pre-heat\nM107 ;Fan off\nG0 X100 Y5 Z0.5 ;Front centre for degunk\nM109 S{material_print_temperature_layer_0} ;Wait for initial temp\n;M83 ;E Relative\n;G1 E60 F3000 ;Reverse multi-extruder retract\n;G1 E10 F200 ;Degunk\n;G1 E-3 F5000 ;Retract\nG0 Z3 ;Withdraw\n;M82 ;E absolute\n;G92 E0 ;E reset\n;G1 F6000 ;Set feedrate\n\n;Finish Start Gcode for Dagoma DiscoEasy 200 Bicolor\n" } } -} +} \ No newline at end of file diff --git a/resources/definitions/dagoma_discoultimate.def.json b/resources/definitions/dagoma_discoultimate.def.json index ec41318e86..31e6fe96e4 100644 --- a/resources/definitions/dagoma_discoultimate.def.json +++ b/resources/definitions/dagoma_discoultimate.def.json @@ -1,34 +1,29 @@ { - "name": "Dagoma DiscoUltimate", "version": 2, + "name": "Dagoma DiscoUltimate", "inherits": "dagoma_disco", - "metadata": { + "metadata": + { "visible": true, "author": "Dagoma", "manufacturer": "Dagoma", "file_formats": "text/x-gcode", "platform": "dagoma_discoultimate.3mf", - "platform_offset": [0, -58.5, -39.5], "has_machine_quality": true, "has_materials": true, - "preferred_material": "chromatik_pla", - "machine_extruder_trains": - { - "0": "dagoma_discoultimate_extruder" - } + "machine_extruder_trains": { "0": "dagoma_discoultimate_extruder" }, + "platform_offset": [ + 0, + -58.5, + -39.5 + ], + "preferred_material": "chromatik_pla" }, - "overrides": { - "machine_name": { - "default_value": "Dagoma DiscoUltimate" - }, - "machine_extruder_count": { - "default_value": 1 - }, - "machine_start_gcode": { - "default_value": ";Begin Start Gcode for Dagoma DiscoUltimate\n;Sliced: {date} {time}\n;Initial extruder: {initial_extruder_nr}\n\nG90 ;Absolute positioning\nM106 S255 ;Fan on full\nG28 X Y ;Home stop X Y\nG1 X100 ;Centre back during cooldown in case of oozing\nM109 R{material_standby_temperature} ;Cooldown in case too hot\nG28 ;Centre\nG29 ;Auto-level\nM104 S{material_print_temperature_layer_0} ;Pre-heat\nM107 ;Fan off\nG0 X100 Y5 Z0.5 ;Front centre for degunk\nM109 S{material_print_temperature_layer_0} ;Wait for initial temp\nM83 ;E Relative\nG1 E10 F200 ;Degunk\nG1 E-3 F5000 ;Retract\nG0 Z3 ;Withdraw\nM82 ;E absolute\nG92 E0 ;E reset\nG1 F6000 ;Set feedrate\n\n;Finish Start Gcode for Dagoma DiscoUltimate\n" - }, - "machine_end_gcode": { - "default_value": ";Begin End Gcode for Dagoma DiscoUltimate\n\nM106 S255 ;Fan on full\nM104 S0 ;Cool hotend\nM140 S0 ;Cool heated bed\nG91 ;Relative positioning\nG1 E-3 F5000 ;Retract filament to stop oozing\nG0 Z+3 ;Withdraw\nG90 ;Absolute positioning\nG28 X Y ;Home\nM109 R{material_standby_temperature} ;Wait until head has cooled to standby temp\nM107 ;Fan off\nM18 ;Stepper motors off\n\n;Finish End Gcode for Dagoma DiscoUltimate\n" - } + "overrides": + { + "machine_end_gcode": { "default_value": ";Begin End Gcode for Dagoma DiscoUltimate\n\nM106 S255 ;Fan on full\nM104 S0 ;Cool hotend\nM140 S0 ;Cool heated bed\nG91 ;Relative positioning\nG1 E-3 F5000 ;Retract filament to stop oozing\nG0 Z+3 ;Withdraw\nG90 ;Absolute positioning\nG28 X Y ;Home\nM109 R{material_standby_temperature} ;Wait until head has cooled to standby temp\nM107 ;Fan off\nM18 ;Stepper motors off\n\n;Finish End Gcode for Dagoma DiscoUltimate\n" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_name": { "default_value": "Dagoma DiscoUltimate" }, + "machine_start_gcode": { "default_value": ";Begin Start Gcode for Dagoma DiscoUltimate\n;Sliced: {date} {time}\n;Initial extruder: {initial_extruder_nr}\n\nG90 ;Absolute positioning\nM106 S255 ;Fan on full\nG28 X Y ;Home stop X Y\nG1 X100 ;Centre back during cooldown in case of oozing\nM109 R{material_standby_temperature} ;Cooldown in case too hot\nG28 ;Centre\nG29 ;Auto-level\nM104 S{material_print_temperature_layer_0} ;Pre-heat\nM107 ;Fan off\nG0 X100 Y5 Z0.5 ;Front centre for degunk\nM109 S{material_print_temperature_layer_0} ;Wait for initial temp\nM83 ;E Relative\nG1 E10 F200 ;Degunk\nG1 E-3 F5000 ;Retract\nG0 Z3 ;Withdraw\nM82 ;E absolute\nG92 E0 ;E reset\nG1 F6000 ;Set feedrate\n\n;Finish Start Gcode for Dagoma DiscoUltimate\n" } } -} +} \ No newline at end of file diff --git a/resources/definitions/dagoma_discoultimate_bicolor.def.json b/resources/definitions/dagoma_discoultimate_bicolor.def.json index 3b5215c944..21582fb7df 100644 --- a/resources/definitions/dagoma_discoultimate_bicolor.def.json +++ b/resources/definitions/dagoma_discoultimate_bicolor.def.json @@ -1,38 +1,34 @@ { - "name": "Dagoma DiscoUltimate Bicolor", "version": 2, + "name": "Dagoma DiscoUltimate Bicolor", "inherits": "dagoma_disco", - "metadata": { + "metadata": + { "visible": true, "author": "Dagoma", "manufacturer": "Dagoma", "file_formats": "text/x-gcode", "platform": "dagoma_discoultimate_bicolor.3mf", - "platform_offset": [0, -58.5, -11], "has_machine_quality": true, "has_materials": true, - "preferred_material": "chromatik_pla", "machine_extruder_trains": { "0": "dagoma_discoultimate_extruder_0", "1": "dagoma_discoultimate_extruder_1" - } + }, + "platform_offset": [ + 0, + -58.5, + -11 + ], + "preferred_material": "chromatik_pla" }, - "overrides": { - "machine_name": { - "default_value": "Dagoma DiscoUltimate Bicolor" - }, - "machine_extruder_count": { - "default_value": 2 - }, - "machine_extruders_share_heater": { - "default_value": true - }, - "machine_start_gcode": { - "default_value": ";Begin Start Gcode for Dagoma DiscoUltimate Bicolor\n;Sliced: {date} {time}\n;Initial extruder: {initial_extruder_nr}\n\nG90 ;Absolute positioning\nM106 S255 ;Fan on full\nG28 X Y ;Home stop X Y\nG1 X100 ;Centre back during cooldown in case of oozing\nM109 R{material_standby_temperature} ;Cooldown in case too hot\nG28 ;Centre\nG29 ;Auto-level\nM104 S{material_print_temperature_layer_0} ;Pre-heat\nM107 ;Fan off\nG0 X100 Y5 Z0.5 ;Front centre for degunk\nM109 S{material_print_temperature_layer_0} ;Wait for initial temp\n;M83 ;E Relative\n;G1 E60 F3000 ;Reverse multi-extruder retract\n;G1 E10 F200 ;Degunk\n;G1 E-3 F5000 ;Retract\nG0 Z3 ;Withdraw\n;M82 ;E absolute\n;G92 E0 ;E reset\n;G1 F6000 ;Set feedrate\n\n;Finish Start Gcode for Dagoma DiscoUltimate Bicolor\n" - }, - "machine_end_gcode": { - "default_value": ";Begin End Gcode for Dagoma DiscoUltimate Bicolor\n\nM106 S255 ;Fan on full\nM104 S0 ;Cool hotend\nM140 S0 ;Cool heated bed\nG91 ;Relative positioning\nG1 E-3 F5000 ;Retract filament to stop oozing\nG1 E-60 F5000 ;Retract filament multi-extruder\nG0 Z+3 ;Withdraw\nG90 ; Absolute positioning\nG28 X Y ;Home\nM109 R{material_standby_temperature} ;Wait until head has cooled to standby temp\nM107 ;Fan off\nM18 ;Stepper motors off\n\n;Finish End Gcode for Dagoma DiscoUltimate Bicolor\n" - } + "overrides": + { + "machine_end_gcode": { "default_value": ";Begin End Gcode for Dagoma DiscoUltimate Bicolor\n\nM106 S255 ;Fan on full\nM104 S0 ;Cool hotend\nM140 S0 ;Cool heated bed\nG91 ;Relative positioning\nG1 E-3 F5000 ;Retract filament to stop oozing\nG1 E-60 F5000 ;Retract filament multi-extruder\nG0 Z+3 ;Withdraw\nG90 ; Absolute positioning\nG28 X Y ;Home\nM109 R{material_standby_temperature} ;Wait until head has cooled to standby temp\nM107 ;Fan off\nM18 ;Stepper motors off\n\n;Finish End Gcode for Dagoma DiscoUltimate Bicolor\n" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_extruders_share_heater": { "default_value": true }, + "machine_name": { "default_value": "Dagoma DiscoUltimate Bicolor" }, + "machine_start_gcode": { "default_value": ";Begin Start Gcode for Dagoma DiscoUltimate Bicolor\n;Sliced: {date} {time}\n;Initial extruder: {initial_extruder_nr}\n\nG90 ;Absolute positioning\nM106 S255 ;Fan on full\nG28 X Y ;Home stop X Y\nG1 X100 ;Centre back during cooldown in case of oozing\nM109 R{material_standby_temperature} ;Cooldown in case too hot\nG28 ;Centre\nG29 ;Auto-level\nM104 S{material_print_temperature_layer_0} ;Pre-heat\nM107 ;Fan off\nG0 X100 Y5 Z0.5 ;Front centre for degunk\nM109 S{material_print_temperature_layer_0} ;Wait for initial temp\n;M83 ;E Relative\n;G1 E60 F3000 ;Reverse multi-extruder retract\n;G1 E10 F200 ;Degunk\n;G1 E-3 F5000 ;Retract\nG0 Z3 ;Withdraw\n;M82 ;E absolute\n;G92 E0 ;E reset\n;G1 F6000 ;Set feedrate\n\n;Finish Start Gcode for Dagoma DiscoUltimate Bicolor\n" } } -} +} \ No newline at end of file diff --git a/resources/definitions/dagoma_magis.def.json b/resources/definitions/dagoma_magis.def.json index e3c9c3e693..3b65d56d75 100644 --- a/resources/definitions/dagoma_magis.def.json +++ b/resources/definitions/dagoma_magis.def.json @@ -1,25 +1,26 @@ { - "name": "Dagoma Magis", "version": 2, + "name": "Dagoma Magis", "inherits": "dagoma_delta", - "metadata": { + "metadata": + { "visible": true, "author": "Dagoma", "manufacturer": "Dagoma", "file_formats": "text/x-gcode", "platform": "dagoma_magis.3mf", - "platform_offset": [0, -28, -35], "has_machine_quality": true, "has_materials": true, - "preferred_material": "chromatik_pla", - "machine_extruder_trains": - { - "0": "dagoma_magis_extruder" - } + "machine_extruder_trains": { "0": "dagoma_magis_extruder" }, + "platform_offset": [ + 0, + -28, + -35 + ], + "preferred_material": "chromatik_pla" }, - "overrides": { - "machine_name": { - "default_value": "Dagoma Magis" - } + "overrides": + { + "machine_name": { "default_value": "Dagoma Magis" } } -} +} \ No newline at end of file diff --git a/resources/definitions/dagoma_neva.def.json b/resources/definitions/dagoma_neva.def.json index 24d3f8ab8d..f7b91f36dc 100644 --- a/resources/definitions/dagoma_neva.def.json +++ b/resources/definitions/dagoma_neva.def.json @@ -1,25 +1,26 @@ { - "name": "Dagoma Neva", "version": 2, + "name": "Dagoma Neva", "inherits": "dagoma_delta", - "metadata": { + "metadata": + { "visible": true, "author": "Dagoma", "manufacturer": "Dagoma", "file_formats": "text/x-gcode", "platform": "dagoma_neva.3mf", - "platform_offset": [0, -28, -35], "has_machine_quality": true, "has_materials": true, - "preferred_material": "chromatik_pla", - "machine_extruder_trains": - { - "0": "dagoma_neva_extruder" - } + "machine_extruder_trains": { "0": "dagoma_neva_extruder" }, + "platform_offset": [ + 0, + -28, + -35 + ], + "preferred_material": "chromatik_pla" }, - "overrides": { - "machine_name": { - "default_value": "Dagoma Neva" - } + "overrides": + { + "machine_name": { "default_value": "Dagoma Neva" } } -} +} \ No newline at end of file diff --git a/resources/definitions/dagoma_pro_430_base.def.json b/resources/definitions/dagoma_pro_430_base.def.json index 10bf846f03..dc4c8c53d4 100644 --- a/resources/definitions/dagoma_pro_430_base.def.json +++ b/resources/definitions/dagoma_pro_430_base.def.json @@ -8,188 +8,33 @@ "author": "Dagoma", "manufacturer": "Dagoma", "file_formats": "text/x-gcode", - "platform": "dagoma_pro_430_base.3mf", - "platform_offset": [-125, -118, -280], + "platform": "dagoma_pro430.obj", + "first_start_actions": [ "MachineSettingsAction" ], "has_machine_quality": true, "has_materials": true, "has_variants": true, - "variants_name": "Steel Nozzle Size", - "preferred_material": "dagoma_generic_pla", - "preferred_quality_type": "high", - "preferred_variant_name": "0.4", - "exclude_materials": - [ - "3D-Fuel_PLA_PRO_Black", - "3D-Fuel_PLA_SnapSupport", - "bestfilament_abs_skyblue", - "bestfilament_petg_orange", - "bestfilament_pla_green", - "chromatik_pla", - "dsm_arnitel2045_175", - "dsm_novamid1070_175", - "emotiontech_abs", - "emotiontech_absx", - "emotiontech_acetate", - "emotiontech_asax", - "emotiontech_bvoh", - "emotiontech_copa", - "emotiontech_hips", - "emotiontech_nylon_1030", - "emotiontech_nylon_1030cf", - "emotiontech_nylon_1070", - "emotiontech_pc", - "emotiontech_pekk", - "emotiontech_petg", - "emotiontech_pla", - "emotiontech_pla_hr_870", - "emotiontech_pva-m", - "emotiontech_pva-s", - "emotiontech_tpu98a", - "eryone_petg", - "eryone_pla", - "eryone_pla_glow", - "eryone_pla_matte", - "eryone_pla_wood", - "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", - "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", - "generic_bvoh_175", - "generic_hips_175", - "generic_pva_175", - "generic_tough_pla", - "goofoo_abs", - "goofoo_asa", - "goofoo_bronze_pla", - "goofoo_emarble_pla", - "goofoo_esilk_pla", - "goofoo_hips", - "goofoo_pa", - "goofoo_pa_cf", - "goofoo_pc", - "goofoo_peek", - "goofoo_petg", - "goofoo_pla", - "goofoo_pva", - "goofoo_tpe_83a", - "goofoo_tpu_87a", - "goofoo_tpu_95a", - "goofoo_wood_pla", - "imade3d_petg_175", - "imade3d_pla_175", - "innofill_innoflex60_175", - "layer_one_black_pla", - "layer_one_dark_gray_pla", - "layer_one_white_pla", - "leapfrog_abs_natural", - "leapfrog_epla_natural", - "leapfrog_pva_natural", - "octofiber_pla", - "polyflex_pla", - "polymax_pla", - "polyplus_pla", - "polywood_pla", - "redd_abs", - "redd_asa", - "redd_hips", - "redd_nylon", - "redd_petg", - "redd_pla", - "redd_tpe", - "structur3d_dap100silicone", - "tizyx_abs", - "tizyx_flex", - "tizyx_petg", - "tizyx_pla", - "tizyx_pla_bois", - "tizyx_pva", - "verbatim_bvoh_175", - "Vertex_Delta_ABS", - "Vertex_Delta_PET", - "Vertex_Delta_PLA", - "Vertex_Delta_PLA_Glitter", - "Vertex_Delta_PLA_Mat", - "Vertex_Delta_PLA_Satin", - "Vertex_Delta_PLA_Wood", - "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_petg", - "xyzprinting_pla", - "xyzprinting_tough_pla", - "zyyx_pro_flex", - "zyyx_pro_pla", - "xyzprinting_tpu" - ] + "variants_name": "Nozzle" }, - "overrides": { - "machine_gcode_flavor": { "default_value": "Marlin" }, - "machine_width": { "default_value": 430 }, - "machine_depth": { "default_value": 320 }, - "machine_heated_bed": { "default_value": true }, - "machine_center_is_zero": { "default_value": false }, - "machine_steps_per_mm_x": { "default_value": 80 }, - "machine_steps_per_mm_y": { "default_value": 80 }, - "machine_steps_per_mm_z": { "default_value": 800 }, - "machine_max_feedrate_x": { "default_value": 500 }, - "machine_max_feedrate_y": { "default_value": 500 }, - "machine_max_feedrate_z": { "default_value": 16 }, - "machine_max_acceleration_x": { "value": 1500 }, - "machine_max_acceleration_y": { "value": 1500 }, - "machine_max_acceleration_z": { "value": 70 }, - "machine_max_acceleration_e": { "value": 10000 }, - "machine_nozzle_cool_down_speed": { "default_value": 1.5 }, - "machine_nozzle_heat_up_speed": { "default_value": 7 }, - "machine_nozzle_expansion_angle": { "default_value": 60 }, - "default_material_print_temperature": { "default_value": 205 }, "default_material_bed_temperature": { "default_value": 50 }, - "adhesion_type": { "default_value": "skirt" }, - "skirt_line_count": { "default_value": 3 }, - "nozzle_disallowed_areas": { "default_value": [ [[-215, 160], [-166, 160], [-215, 111]], [[215, 160], [166, 160], [215, 111]] ] }, - "machine_use_extruder_offset_to_offset_coords": {"default_value": false } + "default_material_print_temperature": + { + "default_value": 205, + "maximum_value": "430" + }, + "infill_before_walls": { "value": "False" }, + "inset_direction": { "value": "'inside_out'" }, + "machine_depth": { "default_value": 320 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_width": { "default_value": 430 }, + "material_break_preparation_temperature": { "maximum_value": "430" }, + "material_break_temperature": { "maximum_value": "430" }, + "material_final_print_temperature": { "maximum_value": "430" }, + "material_initial_print_temperature": { "maximum_value": "430" }, + "material_print_temperature": { "maximum_value": "430" }, + "material_print_temperature_layer_0": { "maximum_value": "430" }, + "material_standby_temperature": { "maximum_value": "430" } } } \ No newline at end of file diff --git a/resources/definitions/dagoma_pro_430_bowden.def.json b/resources/definitions/dagoma_pro_430_bowden.def.json index 7ed1adb0b7..dc1328f398 100644 --- a/resources/definitions/dagoma_pro_430_bowden.def.json +++ b/resources/definitions/dagoma_pro_430_bowden.def.json @@ -1,40 +1,47 @@ { "version": 2, - "name": "Dagoma PRO 430B", + "name": "Dagoma PRO 430 Bowden", "inherits": "dagoma_pro_430_base", - "metadata": + "metadata": { "visible": true, "author": "Dagoma", "manufacturer": "Dagoma", - "machine_extruder_trains": { "0": "dagoma_pro_430_bowden_extruder_0" } + "machine_extruder_trains": { "0": "dagoma_pro_430_bowden_extruder" }, + "preferred_quality_type": "h0.2", + "preferred_variant_name": "Brass 0.4mm" }, - "overrides": { - "machine_name": { "default_value": "Dagoma PRO 430B" }, - "machine_extruder_count": { "default_value": 1 }, - "machine_height": { "default_value": 360 }, - "machine_head_with_fans_polygon": { "default_value": [ [-22.5, -22.5], [-22.5, 22.5], [22.5, 22.5], [22.5, -22.5] ] }, "gantry_height": { "value": "35" }, - "machine_start_gcode": { "default_value": "\n;Start Gcode for {machine_name}\n;Author: Dagoma\n;Contact: contact-pro@dagoma3d.com\n\n;Sliced: {date} {time}\n\n;Estimated print time: {print_time}\n\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}°\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\n\nG21 ;Set units to millimeters\nG90 ;Set all axes to absolute\nM140 S{material_bed_temperature} ;Preheat hotbed\nM117 Nozzle preheating ;Set message\nM109 R{material_standby_temperature} ;Preheat hotend before bed leveling\nM117 Hotbed preheating ;Set message\nM190 S{material_bed_temperature} ;Preheat hotbed before bed leveling\nG28 ;Go to origin on all axes\nG29 ; Bed Leveling\nG0 X215 Y1 Z0.4 ;Move XYZ axis before purge\nM117 Wait for print temp ;Set message\nM109 S{material_print_temperature_layer_0} ;Wait for initial print temp\nM83 ;Set E to relative positioning\nG1 E{retraction_amount} F200 ;Purge\nG0 Z3 ;Move Z axis before print start\nM82 ;Set E to absolute positioning\nG92 E0 ;Set E position\nG1 F{travel_speed} ;Set the feedrate to {travel_speed}mm/s\nM117 Print in progress ;Set message\n" }, - "machine_end_gcode": { "default_value": "\n;End Gcode for {machine_name}\n;Author: Dagoma\n\nM104 S0 ;Set hotend temperature for cooldown\nM140 S0 ;Set hotbed temperature for cooldown\nG91 ;Set all axes to relative\nG0 Z+3 ;Move Z axis after print end\nG1 E-{retraction_amount} F5000 ;Retract filament to stop oozing\nG90 ;Set all axes to absolute\nG28 X Y ;Home the X and Y axes\nM18 ;Disable steppers motors\nM117 Print end ;Set message\n" }, - "machine_acceleration": { "value": 1250 }, - "machine_max_jerk_xy": { "value": 10 }, - "machine_max_jerk_z": { "value": 0.3 }, - "machine_max_jerk_e": { "value": 5 }, - "machine_max_feedrate_e": { "default_value": 200 }, - "machine_steps_per_mm_e": { "default_value": 139.5 }, - "acceleration_enabled": { "value": "True" }, - "acceleration_print": { "value": "1250", "maximum_value": 1500 }, - "acceleration_layer_0": { "value": "acceleration_topbottom", "maximum_value": 1500 }, - "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 1000 / 1250)", "maximum_value": 1500 }, - "acceleration_travel": { "value": "acceleration_print", "maximum_value": 1500 }, - "acceleration_wall": { "value": "math.ceil(acceleration_print * 1000 / 1250)", "maximum_value": 1500 }, - "acceleration_wall_0": { "value": "math.ceil(acceleration_print * 800 / 1250)", "maximum_value": 1500 }, - "jerk_enabled": { "value": "True" }, - "jerk_print": { "value": "8", "minimum_value_warning": 8 }, - "jerk_travel": {"value": "10", "minimum_value_warning": 8 }, - "optimize_wall_printing_order": { "value": "True" } + "machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\n\nM104 S0 ;Set hotend temperature for cooldown\nM140 S0 ;Set hotbed temperature for cooldown\nG91 ;Set all axes to relative\nG0 Z+3 ;Move Z axis after print end\nG1 E-{retraction_amount} F5000 ;Retract filament to stop oozing\nG28 X Y ;Home the X and Y axes\nM18 ;Disable steppers motors\n" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-22.5, -22.5], + [-22.5, 22.5], + [22.5, 22.5], + [22.5, -22.5] + ] + }, + "machine_height": { "default_value": 350 }, + "machine_name": { "default_value": "Dagoma PRO 430 Bowden" }, + "machine_start_gcode": { "default_value": ";Start Gcode for {machine_name}\n;Author: Dagoma\n;Contact: contact-pro@dagoma3d.com\n\n;Sliced: {date} {time}\n;Estimated print time: {print_time}\n\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}\u00b0C\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\n\nG21 ;Set units to millimeters\nG90 ;Set all axes to absolute\nM104 S120 ; Launch hotend heating up to 120\u00b0C\nM190 S{material_bed_temperature} ;Preheat hotbed\nM106 S255; Activating layers fans for checkup and minimise filament on t\nG28 ;Go to origin on all axes\nG29 ; Bed Leveling\nM107 ; Turn off Layers Fans\nG0 X215 Y1 Z0.4 ;Move XYZ axis before purge\nM109 S{material_print_temperature_layer_0} ;Wait for initial print temp\nM83 ;Set E to relative positioning\nG1 E{retraction_amount} F200 ;Purge\nG0 Z3 ;Move Z axis before print start\nM82 ;Set E to absolute positioning\nG92 E0 ;Set E position\nG1 F{speed_travel} ;Set the feedrate to {speed_travel}mm/s\n" }, + "nozzle_disallowed_areas": + { + "default_value": [ + [ + [-215, 160], + [-166, 160], + [-215, 111] + ], + [ + [215, 160], + [166, 160], + [215, 111] + ] + ] + } } } \ No newline at end of file diff --git a/resources/definitions/dagoma_pro_430_directdrive.def.json b/resources/definitions/dagoma_pro_430_directdrive.def.json new file mode 100644 index 0000000000..3a19f707da --- /dev/null +++ b/resources/definitions/dagoma_pro_430_directdrive.def.json @@ -0,0 +1,55 @@ +{ + "version": 2, + "name": "Dagoma PRO 430 Direct Drive", + "inherits": "dagoma_pro_430_base", + "metadata": + { + "visible": true, + "author": "Dagoma", + "manufacturer": "Dagoma", + "machine_extruder_trains": { "0": "dagoma_pro_430_directdrive_extruder" }, + "preferred_quality_type": "h0.2", + "preferred_variant_name": "Brass 0.4mm" + }, + "overrides": + { + "machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\n\nM104 S0 ;Set hotend temperature for cooldown\nM140 S0 ;Set hotbed temperature for cooldown\nG91 ;Set all axes to relative\nG0 Z+3 ;Move Z axis after print end\nG1 E-5 F5000 ;Retract filament to stop oozing\nG28 X Y ;Home the X and Y axes\nM18 ;Disable steppers motors\n" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_height": { "default_value": 310 }, + "machine_name": { "default_value": "Dagoma PRO 430 Direct Drive" }, + "machine_start_gcode": { "default_value": ";Start Gcode for {machine_name}\n;Author: Dagoma\n;Contact: contact-pro@dagoma3d.com\n\n;Sliced: {date} {time}\n;Estimated print time: {print_time}\n\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}\u00b0C\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\n\nG21 ;Set units to millimeters\nG90 ;Set all axes to absolute\nM104 S120 ; Launch hotend heating up to 120\u00b0C\nM190 S{material_bed_temperature} ;Preheat hotbed\nM106 S255; Activating layers fans for checkup and minimise filament on t\nG28 ;Go to origin on all axes\nG29 ; Bed Leveling\nM107 ; Turn off Layers Fans\nG0 X215 Y1 Z0.4 ;Move XYZ axis before purge\nM109 S{material_print_temperature_layer_0} ;Wait for initial print temp\nM83 ;Set E to relative positioning\nG1 E{retraction_amount} F200 ;Purge\nG0 Z3 ;Move Z axis before print start\nM82 ;Set E to absolute positioning\nG92 E0 ;Set E position\nG1 F{speed_travel} ;Set the feedrate to {speed_travel}mm/s\n" }, + "nozzle_disallowed_areas": + { + "default_value": [ + [ + [-215, 160], + [-166, 160], + [-215, 111] + ], + [ + [215, 160], + [166, 160], + [215, 111] + ], + [ + [-215, 160], + [-200, 160], + [-200, -160], + [-215, -160] + ], + [ + [215, 160], + [200, 160], + [200, -160], + [215, -160] + ], + [ + [-215, 160], + [-215, 137.5], + [215, 137.5], + [215, 160] + ] + ] + } + } +} \ No newline at end of file diff --git a/resources/definitions/dagoma_pro_430_dual.def.json b/resources/definitions/dagoma_pro_430_dual.def.json new file mode 100644 index 0000000000..6038ce9e57 --- /dev/null +++ b/resources/definitions/dagoma_pro_430_dual.def.json @@ -0,0 +1,60 @@ +{ + "version": 2, + "name": "Dagoma PRO 430 Dual", + "inherits": "dagoma_pro_430_base", + "metadata": + { + "visible": true, + "author": "Dagoma", + "manufacturer": "Dagoma", + "machine_extruder_trains": + { + "0": "dagoma_pro_430_dual_extruder_left", + "1": "dagoma_pro_430_dual_extruder_right" + }, + "preferred_quality_type": "h0.2", + "preferred_variant_name": "Brass 0.4mm", + "quality_definition": "dagoma_pro_430_bowden" + }, + "overrides": + { + "machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\n\nM104 T0 S0 ;Set hotend temperature for cooldown\nM104 T1 S0 ;Set hotend temperature for cooldown\nM140 S0 ;Set hotbed temperature for cooldown\nG91 ;Set all axes to relative\nG0 Z+3 ;Move Z axis after print end\nG1 E-{retraction_amount} F5000 ;Retract filament to stop oozing\nG90 ;Set all axes to absolute\nG28 X Y ;Home the X and Y axes\nM84 ; Disable steppers motors\nM18 ;Disable steppers motors\nM117 Print end ;Set message\n" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_height": { "default_value": 310 }, + "machine_name": { "default_value": "Dagoma PRO 430 Dual" }, + "machine_start_gcode": { "default_value": ";Start Gcode for {machine_name}\n;Author: Dagoma\n;Contact: contact-pro@dagoma3d.com\n\n;Sliced: {date} {time}\n;Estimated print time: {print_time}\n\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}\u00b0C\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\n\nG21 ;Set units to millimeters\nG90 ;Set all axes to absolute\nM104 S120 ; Launch hotend heating up to 120\u00b0C\nM190 S{material_bed_temperature} ;Preheat hotbed\nM106 S255; Activating layers fans for checkup and minimise filament on t\nG28 ;Go to origin on all axes\nG29 ; Bed Leveling\nM107 ; Turn off Layers Fans\nG0 X215 Y1 Z0.4 ;Move XYZ axis before purge\nM109 S{material_print_temperature_layer_0} ;Wait for initial print temp\nM83 ;Set E to relative positioning\nG1 E{retraction_amount} F200 ;Purge\nG0 Z15.0 F6000 ;Move Z axis before print start\nM82 ;Set E to absolute positioning\nG92 E0 ;Set E position\nG1 F{travel_speed} ;Set the feedrate to {travel_speed}mm/s\n" }, + "nozzle_disallowed_areas": + { + "default_value": [ + [ + [-215, 160], + [-166, 160], + [-215, 111] + ], + [ + [215, 160], + [166, 160], + [215, 111] + ], + [ + [-215, 160], + [-154, 160], + [-154, -160], + [-215, -160] + ], + [ + [215, 160], + [154, 160], + [154, -160], + [215, -160] + ], + [ + [-215, 160], + [-215, 125], + [215, 125], + [215, 160] + ] + ] + } + } +} \ No newline at end of file diff --git a/resources/definitions/dagoma_sigma.def.json b/resources/definitions/dagoma_sigma.def.json new file mode 100644 index 0000000000..223004c54b --- /dev/null +++ b/resources/definitions/dagoma_sigma.def.json @@ -0,0 +1,27 @@ +{ + "version": 2, + "name": "Dagoma Sigma", + "inherits": "dagoma_delta", + "metadata": + { + "visible": true, + "author": "Dagoma", + "manufacturer": "Dagoma", + "file_formats": "text/x-gcode", + "platform": "dagoma_sigma.stl", + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "dagoma_sigma_extruder" }, + "preferred_quality_type": "h0.2", + "preferred_variant_name": "0.4mm", + "variants_name": "Nozzle" + }, + "overrides": + { + "machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\n\nM104 S0\nM107\nM140 S0\nG91\nG1 E-1 F300\nG1 Z+3 E-2 F9000\nG90\nG28\n" }, + "machine_name": { "default_value": "Dagoma Sigma" }, + "machine_start_gcode": { "default_value": ";Start Gcode for {machine_name}\n;Author: Dagoma\n\n;Sliced: {date} {time}\n;Estimated print time: {print_time}\n\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}\u00b0C\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\n\nG90 ;absolute positioning\nM104 S120 ;Launch heating up to 120\u00b0C\nM106 S255 ;Activating layers fans\nG29 ;Homing and Calibration\nM107 ;Off Ventilateur\nM109 S{material_print_temperature} U-55 X55 V-85 Y-85 W0.26 Z0.26 ;Temperature for the first layer only\nM82 ;Set extruder to absolute mode\nG92 E0 ;Zero the extruded length\nG1 F200 E6 ;Extrude 10mm of feed stock\nG92 E0 ;Zero the extruded length again\nG1 F200 E-3.5\nG0 Z0.15\nG0 X10\nG0 Z3\nG1 F{speed_travel}\nM117 Printing...\n" }, + "speed_travel": { "value": 150 } + } +} \ No newline at end of file diff --git a/resources/definitions/delta_go.def.json b/resources/definitions/delta_go.def.json index 04f0580898..8e213e616e 100644 --- a/resources/definitions/delta_go.def.json +++ b/resources/definitions/delta_go.def.json @@ -1,38 +1,41 @@ { - "name": "Delta Go", "version": 2, + "name": "Delta Go", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Deltaprintr", "manufacturer": "Deltaprintr", "file_formats": "text/x-gcode", - "platform_offset": [0, 0, 0], - "machine_extruder_trains": - { - "0": "delta_go_extruder_0" - } + "machine_extruder_trains": { "0": "delta_go_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ] }, - "overrides": { - "machine_name": { "default_value": "Delta Go" }, + "overrides": + { + "brim_width": { "value": "5" }, "default_material_print_temperature": { "default_value": 210 }, - "prime_tower_size": { "default_value": 8.66 }, - "infill_sparse_density": { "default_value": 10 }, - "layer_height": { "default_value": 0.15 }, - "speed_print": { "default_value": 30 }, - "machine_heated_bed": { "default_value": false }, - "machine_center_is_zero": { "default_value": true }, - "machine_height": { "default_value": 154 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_depth": { "default_value": 115 }, - "machine_width": { "default_value": 115 }, - "raft_airgap": { "default_value": 0.15 }, - "retraction_hop_enabled": { "value": "True" }, - "retraction_amount": { "default_value": 4.1 }, - "retraction_speed": { "default_value": 500 }, - "retraction_hop": { "value": "0.2" }, - "retraction_hop_only_when_collides": { "value": "True" }, - "brim_width": { "value": "5" }, - "machine_shape": { "default_value": "elliptic"} + "infill_sparse_density": { "default_value": 10 }, + "layer_height": { "default_value": 0.15 }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 115 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 154 }, + "machine_name": { "default_value": "Delta Go" }, + "machine_shape": { "default_value": "elliptic" }, + "machine_width": { "default_value": 115 }, + "prime_tower_size": { "default_value": 8.66 }, + "raft_airgap": { "default_value": 0.15 }, + "retraction_amount": { "default_value": 4.1 }, + "retraction_hop": { "value": "0.2" }, + "retraction_hop_enabled": { "value": "True" }, + "retraction_hop_only_when_collides": { "value": "True" }, + "retraction_speed": { "default_value": 500 }, + "speed_print": { "default_value": 30 } } -} +} \ No newline at end of file diff --git a/resources/definitions/deltabot.def.json b/resources/definitions/deltabot.def.json index 6dbdfb418f..0dccf81d39 100644 --- a/resources/definitions/deltabot.def.json +++ b/resources/definitions/deltabot.def.json @@ -1,32 +1,34 @@ { - "name": "DeltaBot", "version": 2, + "name": "DeltaBot", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": false, "author": "Ultimaker", "manufacturer": "Custom", "file_formats": "text/x-gcode", - "platform_offset": [ 0, 0, 0], - "machine_extruder_trains": - { - "0": "deltabot_extruder_0" - } + "machine_extruder_trains": { "0": "deltabot_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ] }, - - "overrides": { - "prime_tower_size": { "default_value": 8.660254037844387 }, + "overrides": + { "infill_sparse_density": { "default_value": 10 }, "layer_height": { "default_value": 0.2 }, - "speed_print": { "default_value": 30 }, - "machine_extruder_count": { "default_value": 1 }, - "machine_heated_bed": { "default_value": true }, "machine_center_is_zero": { "default_value": true }, - "machine_height": { "default_value": 150 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_depth": { "default_value": 150 }, - "machine_width": { "default_value": 150 }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 150 }, "machine_name": { "default_value": "DeltaBot style" }, - "machine_shape": { "default_value": "elliptic"} + "machine_shape": { "default_value": "elliptic" }, + "machine_width": { "default_value": 150 }, + "prime_tower_size": { "default_value": 8.660254037844387 }, + "speed_print": { "default_value": 30 } } -} +} \ No newline at end of file diff --git a/resources/definitions/deltacomb_base.def.json b/resources/definitions/deltacomb_base.def.json index a977dee663..a4634bfcf1 100644 --- a/resources/definitions/deltacomb_base.def.json +++ b/resources/definitions/deltacomb_base.def.json @@ -1,100 +1,90 @@ { - "version": 2, - "name": "Deltacomb Base Printer", - "inherits": "fdmprinter", - - "metadata": { - "author": "Gabriele Rossetti", - "visible": false, - "manufacturer": "Deltacomb 3D Printers", - "file_formats": "text/x-gcode", - "has_machine_quality": true, - "has_materials": true, - "has_variants": true, - "variants_name": "Head", - - "preferred_quality_type": "D020", - "preferred_material": "generic_pla", - - "machine_extruder_trains": { + "version": 2, + "name": "Deltacomb Base Printer", + "inherits": "fdmprinter", + "metadata": + { + "visible": false, + "author": "Gabriele Rossetti", + "manufacturer": "Deltacomb 3D Printers", + "file_formats": "text/x-gcode", + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { "0": "deltacomb_base_extruder_0", "1": "deltacomb_base_extruder_1", "2": "deltacomb_base_extruder_2", "3": "deltacomb_base_extruder_3" - } + }, + "preferred_material": "generic_pla", + "preferred_quality_type": "D020", + "variants_name": "Head" }, - - "overrides": { - "machine_extruder_count": { "default_value": 1, "maximum_value": "4" }, - "machine_heated_bed": { "default_value": true }, - "machine_center_is_zero": { "default_value": true }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { "default_value": ";---------------------------------------\n;Deltacomb start script\n;---------------------------------------\nG21 ;metric values\nG90 ;absolute positioning\nM107 ;start with the fan off\nG28 ;Home all axes (max endstops)\nM420 S1; Bed Level Enable\nG92 E0 ;zero the extruded length\nG1 Z15.0 F9000 ;move to the platform down 15mm\nG1 F9000\n\n;Put printing message on LCD screen\nM117 In stampa...\nM140 S{print_bed_temperature} ;set the target bed temperature\n;---------------------------------------"}, - "machine_end_gcode": { "default_value": ";---------------------------------------\n;Deltacomb end script\n;---------------------------------------\nG91 ;relative positioning\nG1 F15000 X8.0 E-4.5 ;Wipe filament+material retraction\nG1 F15000 E4.0 Z1 ;Retraction compensation\nG28 ;Home all axes (max endstops)\nM84 ;steppers off\n" }, - "machine_shape": { "default_value": "elliptic" }, - - "machine_max_feedrate_z" : { "default_value": 300 }, - - "speed_print" : { "default_value": 80 }, - "speed_topbottom": { "value": "speed_print * 0.90" }, - "speed_wall_0": { "value": "35 if speed_print > 35 else speed_print" }, - "speed_layer_0": { "value": "speed_print * 0.55" }, - - "speed_travel": { "value": "170" }, - "speed_travel_layer_0": { "value": "speed_travel * 0.70" }, - "speed_z_hop": { "value": "speed_travel" }, - - "acceleration_enabled": { "value": "True" }, - "acceleration_travel" : { "value": "9000" }, - "acceleration_print": { "value": "4000" }, - "acceleration_wall": { "value": "acceleration_print * 0.5" }, - "acceleration_wall_0": { "value": "acceleration_wall * 0.5" }, - "acceleration_topbottom": { "value": "acceleration_wall_0" }, - "acceleration_layer_0": { "value": "acceleration_wall_0" }, - "acceleration_prime_tower": { "value": "acceleration_wall" }, - "acceleration_support": { "value": "acceleration_wall" }, - "acceleration_support_interface": { "value": "acceleration_wall_0" }, - - "jerk_enabled": { "value": "True" }, - "jerk_print": { "value": "25" }, - "jerk_infill": { "value": "10" }, - "jerk_travel": { "value": "10" }, - - "retraction_hop_enabled": { "default_value": true }, - "retraction_hop": { "default_value": 1.0 }, - "retraction_amount" : { "default_value": 3.5 }, - "retraction_speed" : { "default_value": 40 }, - "retraction_combing" : { "value": "'noskin'" }, - "travel_avoid_distance": { "value": "1" }, - "travel_avoid_supports": { "value": "True" }, + "overrides": + { + "acceleration_enabled": { "value": "True" }, + "acceleration_layer_0": { "value": "acceleration_wall_0" }, + "acceleration_prime_tower": { "value": "acceleration_wall" }, + "acceleration_print": { "value": "4000" }, + "acceleration_support": { "value": "acceleration_wall" }, + "acceleration_support_interface": { "value": "acceleration_wall_0" }, + "acceleration_topbottom": { "value": "acceleration_wall_0" }, + "acceleration_travel": { "value": "9000" }, + "acceleration_wall": { "value": "acceleration_print * 0.5" }, + "acceleration_wall_0": { "value": "acceleration_wall * 0.5" }, + "brim_width": { "value": "3" }, + "infill_before_walls": { "default_value": false }, + "infill_pattern": { "value": "'cubic'" }, + "infill_sparse_density": { "default_value": 30 }, + "jerk_enabled": { "value": "True" }, + "jerk_infill": { "value": "10" }, + "jerk_print": { "value": "25" }, + "jerk_travel": { "value": "10" }, + "machine_center_is_zero": { "default_value": true }, + "machine_end_gcode": { "default_value": ";---------------------------------------\n;Deltacomb end script\n;---------------------------------------\nG91 ;relative positioning\nG1 F15000 X8.0 E-4.5 ;Wipe filament+material retraction\nG1 F15000 E4.0 Z1 ;Retraction compensation\nG28 ;Home all axes (max endstops)\nM84 ;steppers off\n" }, + "machine_extruder_count": + { + "default_value": 1, + "maximum_value": "4" + }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_max_feedrate_z": { "default_value": 300 }, + "machine_shape": { "default_value": "elliptic" }, + "machine_start_gcode": { "default_value": ";---------------------------------------\n;Deltacomb start script\n;---------------------------------------\nG21 ;metric values\nG90 ;absolute positioning\nM107 ;start with the fan off\nG28 ;Home all axes (max endstops)\nM420 S1; Bed Level Enable\nG92 E0 ;zero the extruded length\nG1 Z15.0 F9000 ;move to the platform down 15mm\nG1 F9000\n\n;Put printing message on LCD screen\nM117 In stampa...\nM140 S{print_bed_temperature} ;set the target bed temperature\n;---------------------------------------" }, + "prime_tower_brim_enable": { "value": false }, + "prime_tower_position_x": { "value": "prime_tower_size / 2" }, + "prime_tower_position_y": { "value": "machine_depth / 2 - prime_tower_size - max(extruderValue(adhesion_extruder_nr, 'brim_width') * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' or (prime_tower_brim_enable and adhesion_type != 'raft') else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(adhesion_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - 1" }, + "prime_tower_size": { "value": "math.sqrt(extruders_enabled_count * prime_tower_min_volume / layer_height / math.pi) * 2" }, + "retraction_amount": { "default_value": 3.5 }, + "retraction_combing": { "value": "'noskin'" }, + "retraction_hop": { "default_value": 1.0 }, + "retraction_hop_enabled": { "default_value": true }, "retraction_hop_only_when_collides": { "value": "1" }, - - "switch_extruder_retraction_amount": { "value": 10}, + "retraction_speed": { "default_value": 40 }, + "roofing_layer_count": { "value": "1" }, + "roofing_line_width": { "value": "line_width * 0.75" }, + "skirt_brim_minimal_length": { "default_value": 150 }, + "skirt_brim_speed": { "value": "speed_layer_0" }, + "skirt_line_count": { "default_value": 3 }, + "speed_layer_0": { "value": "speed_print * 0.55" }, + "speed_print": { "default_value": 80 }, + "speed_topbottom": { "value": "speed_print * 0.90" }, + "speed_travel": { "value": "170" }, + "speed_travel_layer_0": { "value": "speed_travel * 0.70" }, + "speed_wall_0": { "value": "35 if speed_print > 35 else speed_print" }, + "speed_z_hop": { "value": "speed_travel" }, + "support_bottom_distance": { "value": "layer_height" }, + "support_bottom_enable": { "value": false }, + "support_wall_count": { "value": "1" }, + "support_z_distance": { "value": "layer_height" }, + "switch_extruder_retraction_amount": { "value": 10 }, "switch_extruder_retraction_speeds": { "default_value": 70 }, - - "top_bottom_thickness": { "default_value": 0.8 }, - "roofing_layer_count": { "value": "1" }, - "roofing_line_width": { "value": "line_width * 0.75" }, - "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, - - "infill_sparse_density": { "default_value": 30 }, - "infill_pattern": { "value": "'cubic'" }, - "infill_before_walls": { "default_value": false }, - - "support_z_distance": { "value": "layer_height" }, - "support_bottom_distance": { "value": "layer_height" }, - "support_use_towers": { "default_value": false }, - "support_bottom_enable": { "value": false }, - "support_wall_count": { "value": "1" }, - - "skirt_brim_speed": { "value": "speed_layer_0" }, - "skirt_line_count": { "default_value": 3 }, - "skirt_brim_minimal_length": { "default_value": 150 }, - "brim_width": { "value": "3" }, - - "prime_tower_size": { "value": "math.sqrt(extruders_enabled_count * prime_tower_min_volume / layer_height / math.pi) * 2"}, - "prime_tower_brim_enable": { "value": false }, - "prime_tower_position_x": { "value": "prime_tower_size / 2" }, - "prime_tower_position_y": { "value": "machine_depth / 2 - prime_tower_size - max(extruderValue(adhesion_extruder_nr, 'brim_width') * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' or (prime_tower_brim_enable and adhesion_type != 'raft') else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(adhesion_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - 1" } + "top_bottom_thickness": { "default_value": 0.8 }, + "travel_avoid_distance": { "value": "1" }, + "travel_avoid_supports": { "value": "True" }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" } } -} +} \ No newline at end of file diff --git a/resources/definitions/deltacomb_dc20.def.json b/resources/definitions/deltacomb_dc20.def.json index 5bb3e220d2..8b689457c8 100644 --- a/resources/definitions/deltacomb_dc20.def.json +++ b/resources/definitions/deltacomb_dc20.def.json @@ -1,20 +1,24 @@ { - "version": 2, - "name": "Deltacomb DC-20", - "inherits": "deltacomb_base", - - "metadata": { - "visible": true, - "platform": "deltacomb_dc20.stl", - "quality_definition": "deltacomb_base", - "preferred_variant_name": "FBE 0.40mm" + "version": 2, + "name": "Deltacomb DC-20", + "inherits": "deltacomb_base", + "metadata": + { + "visible": true, + "platform": "deltacomb_dc20.stl", + "preferred_variant_name": "FBE 0.40mm", + "quality_definition": "deltacomb_base" }, - - "overrides": { - "machine_name": { "default_value": "Deltacomb DC-20" }, - "machine_width": { "default_value": 190 }, - "machine_depth": { "default_value": 190 }, - "machine_height": { "default_value": 250 }, - "machine_extruder_count": { "default_value": 1, "maximum_value": "4" } + "overrides": + { + "machine_depth": { "default_value": 190 }, + "machine_extruder_count": + { + "default_value": 1, + "maximum_value": "4" + }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "Deltacomb DC-20" }, + "machine_width": { "default_value": 190 } } -} +} \ No newline at end of file diff --git a/resources/definitions/deltacomb_dc20dual.def.json b/resources/definitions/deltacomb_dc20dual.def.json index 77b228fdc0..f90e40d5b4 100644 --- a/resources/definitions/deltacomb_dc20dual.def.json +++ b/resources/definitions/deltacomb_dc20dual.def.json @@ -1,38 +1,106 @@ { - "version": 2, - "name": "Deltacomb DC-20 Dual", - "inherits": "deltacomb_base", - - "metadata": { - "visible": true, - "platform": "deltacomb_dc20.stl", - "quality_definition": "deltacomb_base", - "preferred_variant_name": "DBE 0.40mm", - "machine_extruder_trains": { + "version": 2, + "name": "Deltacomb DC-20 Dual", + "inherits": "deltacomb_base", + "metadata": + { + "visible": true, + "platform": "deltacomb_dc20.stl", + "machine_extruder_trains": + { "0": "deltacomb_dc20dual_extruder_0", "1": "deltacomb_dc20dual_extruder_1" - } + }, + "preferred_variant_name": "DBE 0.40mm", + "quality_definition": "deltacomb_base" }, - - "overrides": { - "machine_name": { "default_value": "Deltacomb DC-20 DUAL" }, - "machine_extruder_count": { "default_value": 2, "maximum_value": "2" }, - "machine_width": { "default_value": 190 }, - "machine_depth": { "default_value": 190 }, - "machine_height": { "default_value": 250 }, - "machine_disallowed_areas":{ "default_value": [ - [[ 53, 78], [ 63, 78], [ 73, 70], [ 62, 70]], - [[ 62, 70], [ 73, 70], [ 81, 61], [ 70, 61]], - [[ 70, 61], [ 81, 61], [ 88, 51], [ 76, 51]], - [[ 76, 51], [ 88, 51], [ 93, 40], [ 81, 40]], - [[ 81, 40], [ 93, 40], [ 97, 29], [ 85, 29]], - [[ 85, 29], [ 97, 29], [ 101, 17], [ 88, 17]], - [[-37, 78], [-47, 78], [-57, 70], [-46, 70]], - [[-46, 70], [-57, 70], [-69, 61], [-54, 61]], - [[-54, 61], [-69, 61], [-72, 51], [-60, 51]], - [[-60, 51], [-72, 51], [-77, 40], [-65, 40]], - [[-65, 40], [-77, 40], [-81, 29], [-69, 29]], - [[-69, 29], [-81, 29], [-85, 17], [-72, 17]] - ]} + "overrides": + { + "machine_depth": { "default_value": 190 }, + "machine_disallowed_areas": + { + "default_value": [ + [ + [53, 78], + [63, 78], + [73, 70], + [62, 70] + ], + [ + [62, 70], + [73, 70], + [81, 61], + [70, 61] + ], + [ + [70, 61], + [81, 61], + [88, 51], + [76, 51] + ], + [ + [76, 51], + [88, 51], + [93, 40], + [81, 40] + ], + [ + [81, 40], + [93, 40], + [97, 29], + [85, 29] + ], + [ + [85, 29], + [97, 29], + [101, 17], + [88, 17] + ], + [ + [-37, 78], + [-47, 78], + [-57, 70], + [-46, 70] + ], + [ + [-46, 70], + [-57, 70], + [-69, 61], + [-54, 61] + ], + [ + [-54, 61], + [-69, 61], + [-72, 51], + [-60, 51] + ], + [ + [-60, 51], + [-72, 51], + [-77, 40], + [-65, 40] + ], + [ + [-65, 40], + [-77, 40], + [-81, 29], + [-69, 29] + ], + [ + [-69, 29], + [-81, 29], + [-85, 17], + [-72, 17] + ] + ] + }, + "machine_extruder_count": + { + "default_value": 2, + "maximum_value": "2" + }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "Deltacomb DC-20 DUAL" }, + "machine_width": { "default_value": 190 } } -} +} \ No newline at end of file diff --git a/resources/definitions/deltacomb_dc20flux.def.json b/resources/definitions/deltacomb_dc20flux.def.json index fa6fdb0ca7..f81909dae5 100644 --- a/resources/definitions/deltacomb_dc20flux.def.json +++ b/resources/definitions/deltacomb_dc20flux.def.json @@ -1,33 +1,38 @@ { - "version": 2, - "name": "Deltacomb DC-20 Flux", - "inherits": "deltacomb_base", - - "metadata": { - "visible": true, - "platform": "deltacomb_dc20.stl", - "quality_definition": "deltacomb_base", - "preferred_variant_name": "FBE 0.40mm", - "machine_extruder_trains": { + "version": 2, + "name": "Deltacomb DC-20 Flux", + "inherits": "deltacomb_base", + "metadata": + { + "visible": true, + "platform": "deltacomb_dc20.stl", + "machine_extruder_trains": + { "0": "deltacomb_dc20flux_extruder_0", "1": "deltacomb_dc20flux_extruder_1", "2": "deltacomb_dc20flux_extruder_2", "3": "deltacomb_dc20flux_extruder_3" - } + }, + "preferred_variant_name": "FBE 0.40mm", + "quality_definition": "deltacomb_base" }, - - "overrides": { - "machine_name": { "default_value": "Deltacomb DC-20 FLUX" }, - "machine_width": { "default_value": 190 }, - "machine_depth": { "default_value": 190 }, - "machine_height": { "default_value": 250 }, - "machine_extruder_count": { "default_value": 2, "maximum_value": "4" }, - "machine_end_gcode": { "default_value": ";---------------------------------------\n;Deltacomb end script\n;---------------------------------------\nG91 ;relative positioning\nG1 X8.0 E-10 F6000 ;wipe filament+material retraction\nG1 Z2 E9 ;Lift and start filament shaping\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG28 ;home all axes (max endstops)\nM84 ;steppers off" }, - "switch_extruder_retraction_amount": { "value": "0" }, - "prime_tower_min_volume": { "value": "50" }, - "prime_tower_enable": { "value": "1" }, + "overrides": + { + "machine_depth": { "default_value": 190 }, + "machine_end_gcode": { "default_value": ";---------------------------------------\n;Deltacomb end script\n;---------------------------------------\nG91 ;relative positioning\nG1 X8.0 E-10 F6000 ;wipe filament+material retraction\nG1 Z2 E9 ;Lift and start filament shaping\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG28 ;home all axes (max endstops)\nM84 ;steppers off" }, + "machine_extruder_count": + { + "default_value": 2, + "maximum_value": "4" + }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "Deltacomb DC-20 FLUX" }, + "machine_width": { "default_value": 190 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, "material_initial_print_temperature": { "value": "material_print_temperature" }, - "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_standby_temperature": { "value": "material_print_temperature" } + "material_standby_temperature": { "value": "material_print_temperature" }, + "prime_tower_enable": { "value": true }, + "prime_tower_min_volume": { "value": "50" }, + "switch_extruder_retraction_amount": { "value": "0" } } -} +} \ No newline at end of file diff --git a/resources/definitions/deltacomb_dc21.def.json b/resources/definitions/deltacomb_dc21.def.json index 32efb2170a..01fbb39f28 100644 --- a/resources/definitions/deltacomb_dc21.def.json +++ b/resources/definitions/deltacomb_dc21.def.json @@ -1,20 +1,24 @@ { - "version": 2, - "name": "Deltacomb DC-21", - "inherits": "deltacomb_base", - - "metadata": { - "visible": true, - "platform": "deltacomb_dc20.stl", - "quality_definition": "deltacomb_base", - "preferred_variant_name": "FBE 0.40mm" + "version": 2, + "name": "Deltacomb DC-21", + "inherits": "deltacomb_base", + "metadata": + { + "visible": true, + "platform": "deltacomb_dc20.stl", + "preferred_variant_name": "FBE 0.40mm", + "quality_definition": "deltacomb_base" }, - - "overrides": { - "machine_name": { "default_value": "Deltacomb DC-21" }, - "machine_width": { "default_value": 190 }, - "machine_depth": { "default_value": 190 }, - "machine_height": { "default_value": 400 }, - "machine_extruder_count": { "default_value": 1, "maximum_value": "4" } + "overrides": + { + "machine_depth": { "default_value": 190 }, + "machine_extruder_count": + { + "default_value": 1, + "maximum_value": "4" + }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Deltacomb DC-21" }, + "machine_width": { "default_value": 190 } } -} +} \ No newline at end of file diff --git a/resources/definitions/deltacomb_dc21dual.def.json b/resources/definitions/deltacomb_dc21dual.def.json index 97cc057944..de5b33a42e 100644 --- a/resources/definitions/deltacomb_dc21dual.def.json +++ b/resources/definitions/deltacomb_dc21dual.def.json @@ -1,24 +1,29 @@ { - "version": 2, - "name": "Deltacomb DC-21 Dual", - "inherits": "deltacomb_base", - - "metadata": { - "visible": true, - "platform": "deltacomb_dc20.stl", - "quality_definition": "deltacomb_base", - "preferred_variant_name": "DBE 0.40mm", - "machine_extruder_trains": { + "version": 2, + "name": "Deltacomb DC-21 Dual", + "inherits": "deltacomb_base", + "metadata": + { + "visible": true, + "platform": "deltacomb_dc20.stl", + "machine_extruder_trains": + { "0": "deltacomb_dc20dual_extruder_0", "1": "deltacomb_dc20dual_extruder_1" - } + }, + "preferred_variant_name": "DBE 0.40mm", + "quality_definition": "deltacomb_base" }, - - "overrides": { - "machine_name": { "default_value": "Deltacomb DC-20 DUAL" }, - "machine_extruder_count": { "default_value": 2, "maximum_value": "2" }, - "machine_width": { "default_value": 190 }, - "machine_depth": { "default_value": 190 }, - "machine_height": { "default_value": 400 } + "overrides": + { + "machine_depth": { "default_value": 190 }, + "machine_extruder_count": + { + "default_value": 2, + "maximum_value": "2" + }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Deltacomb DC-20 DUAL" }, + "machine_width": { "default_value": 190 } } -} +} \ No newline at end of file diff --git a/resources/definitions/deltacomb_dc21flux.def.json b/resources/definitions/deltacomb_dc21flux.def.json index f2b7941518..dbcdf3ad37 100644 --- a/resources/definitions/deltacomb_dc21flux.def.json +++ b/resources/definitions/deltacomb_dc21flux.def.json @@ -1,33 +1,38 @@ { - "version": 2, - "name": "Deltacomb DC-21 Flux", - "inherits": "deltacomb_base", - - "metadata": { - "visible": true, - "platform": "deltacomb_dc20.stl", - "quality_definition": "deltacomb_base", - "preferred_variant_name": "FBE 0.40mm", - "machine_extruder_trains": { + "version": 2, + "name": "Deltacomb DC-21 Flux", + "inherits": "deltacomb_base", + "metadata": + { + "visible": true, + "platform": "deltacomb_dc20.stl", + "machine_extruder_trains": + { "0": "deltacomb_dc20flux_extruder_0", "1": "deltacomb_dc20flux_extruder_1", "2": "deltacomb_dc20flux_extruder_2", "3": "deltacomb_dc20flux_extruder_3" - } + }, + "preferred_variant_name": "FBE 0.40mm", + "quality_definition": "deltacomb_base" }, - - "overrides": { - "machine_name": { "default_value": "Deltacomb DC-21 FLUX" }, - "machine_width": { "default_value": 190 }, - "machine_depth": { "default_value": 190 }, - "machine_height": { "default_value": 400 }, - "machine_extruder_count": { "default_value": 2, "maximum_value": "4" }, - "machine_end_gcode": { "default_value": ";---------------------------------------\n;Deltacomb end script\n;---------------------------------------\nG91 ;relative positioning\nG1 X8.0 E-10 F6000 ;wipe filament+material retraction\nG1 Z2 E9 ;Lift and start filament shaping\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG28 ;home all axes (max endstops)\nM84 ;steppers off" }, - "switch_extruder_retraction_amount": { "value": "0" }, - "prime_tower_min_volume": { "value": "50" }, - "prime_tower_enable": { "value": "1" }, + "overrides": + { + "machine_depth": { "default_value": 190 }, + "machine_end_gcode": { "default_value": ";---------------------------------------\n;Deltacomb end script\n;---------------------------------------\nG91 ;relative positioning\nG1 X8.0 E-10 F6000 ;wipe filament+material retraction\nG1 Z2 E9 ;Lift and start filament shaping\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG28 ;home all axes (max endstops)\nM84 ;steppers off" }, + "machine_extruder_count": + { + "default_value": 2, + "maximum_value": "4" + }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Deltacomb DC-21 FLUX" }, + "machine_width": { "default_value": 190 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, "material_initial_print_temperature": { "value": "material_print_temperature" }, - "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_standby_temperature": { "value": "material_print_temperature" } + "material_standby_temperature": { "value": "material_print_temperature" }, + "prime_tower_enable": { "value": true }, + "prime_tower_min_volume": { "value": "50" }, + "switch_extruder_retraction_amount": { "value": "0" } } } \ No newline at end of file diff --git a/resources/definitions/deltacomb_dc30.def.json b/resources/definitions/deltacomb_dc30.def.json index 485fb5cc45..f817b0b468 100644 --- a/resources/definitions/deltacomb_dc30.def.json +++ b/resources/definitions/deltacomb_dc30.def.json @@ -1,20 +1,24 @@ { - "version": 2, - "name": "Deltacomb DC-30", - "inherits": "deltacomb_base", - - "metadata": { - "visible": true, - "platform": "deltacomb_dc30.stl", - "quality_definition": "deltacomb_base", - "preferred_variant_name": "FBE 0.40mm" + "version": 2, + "name": "Deltacomb DC-30", + "inherits": "deltacomb_base", + "metadata": + { + "visible": true, + "platform": "deltacomb_dc30.stl", + "preferred_variant_name": "FBE 0.40mm", + "quality_definition": "deltacomb_base" }, - - "overrides": { - "machine_name": { "default_value": "Deltacomb DC-30" }, - "machine_width": { "default_value": 290 }, - "machine_depth": { "default_value": 290 }, - "machine_height": { "default_value": 300 }, - "machine_extruder_count": { "default_value": 1, "maximum_value": "4" } + "overrides": + { + "machine_depth": { "default_value": 290 }, + "machine_extruder_count": + { + "default_value": 1, + "maximum_value": "4" + }, + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "Deltacomb DC-30" }, + "machine_width": { "default_value": 290 } } -} +} \ No newline at end of file diff --git a/resources/definitions/deltacomb_dc30dual.def.json b/resources/definitions/deltacomb_dc30dual.def.json index 97ad1bd102..5736a39def 100644 --- a/resources/definitions/deltacomb_dc30dual.def.json +++ b/resources/definitions/deltacomb_dc30dual.def.json @@ -1,24 +1,29 @@ { - "version": 2, - "name": "Deltacomb DC-30 Dual", - "inherits": "deltacomb_base", - - "metadata": { - "visible": true, - "platform": "deltacomb_dc30.stl", - "quality_definition": "deltacomb_base", - "preferred_variant_name": "DBE 0.40mm", - "machine_extruder_trains": { + "version": 2, + "name": "Deltacomb DC-30 Dual", + "inherits": "deltacomb_base", + "metadata": + { + "visible": true, + "platform": "deltacomb_dc30.stl", + "machine_extruder_trains": + { "0": "deltacomb_dc30dual_extruder_0", "1": "deltacomb_dc30dual_extruder_1" - } + }, + "preferred_variant_name": "DBE 0.40mm", + "quality_definition": "deltacomb_base" }, - - "overrides": { - "machine_name": { "default_value": "Deltacomb DC-30 DUAL" }, - "machine_width": { "default_value": 290 }, - "machine_depth": { "default_value": 290 }, - "machine_height": { "default_value": 300 }, - "machine_extruder_count": { "default_value": 2, "maximum_value": "2" } + "overrides": + { + "machine_depth": { "default_value": 290 }, + "machine_extruder_count": + { + "default_value": 2, + "maximum_value": "2" + }, + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "Deltacomb DC-30 DUAL" }, + "machine_width": { "default_value": 290 } } -} +} \ No newline at end of file diff --git a/resources/definitions/deltacomb_dc30flux.def.json b/resources/definitions/deltacomb_dc30flux.def.json index 6bf095701c..4a42ae4d63 100644 --- a/resources/definitions/deltacomb_dc30flux.def.json +++ b/resources/definitions/deltacomb_dc30flux.def.json @@ -1,33 +1,38 @@ { - "version": 2, - "name": "Deltacomb DC-30 Flux", - "inherits": "deltacomb_base", - - "metadata": { - "visible": true, - "platform": "deltacomb_dc30.stl", - "quality_definition": "deltacomb_base", - "preferred_variant_name": "FBE 0.40mm", - "machine_extruder_trains": { + "version": 2, + "name": "Deltacomb DC-30 Flux", + "inherits": "deltacomb_base", + "metadata": + { + "visible": true, + "platform": "deltacomb_dc30.stl", + "machine_extruder_trains": + { "0": "deltacomb_dc30flux_extruder_0", "1": "deltacomb_dc30flux_extruder_1", "2": "deltacomb_dc30flux_extruder_2", "3": "deltacomb_dc30flux_extruder_3" - } + }, + "preferred_variant_name": "FBE 0.40mm", + "quality_definition": "deltacomb_base" }, - - "overrides": { - "machine_name": { "default_value": "Deltacomb DC-30 FLUX" }, - "machine_width": { "default_value": 290 }, - "machine_depth": { "default_value": 290 }, - "machine_height": { "default_value": 300 }, - "machine_extruder_count": { "default_value": 2, "maximum_value": "4" }, - "machine_end_gcode": { "default_value": ";---------------------------------------\n;Deltacomb end script\n;---------------------------------------\nG91 ;relative positioning\nG1 X8.0 E-10 F6000 ;wipe filament+material retraction\nG1 Z2 E9 ;Lift and start filament shaping\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG28 ;home all axes (max endstops)\nM84 ;steppers off" }, - "switch_extruder_retraction_amount": { "value": "0" }, - "prime_tower_min_volume": { "value": "50" }, - "prime_tower_enable": { "value": "1" }, + "overrides": + { + "machine_depth": { "default_value": 290 }, + "machine_end_gcode": { "default_value": ";---------------------------------------\n;Deltacomb end script\n;---------------------------------------\nG91 ;relative positioning\nG1 X8.0 E-10 F6000 ;wipe filament+material retraction\nG1 Z2 E9 ;Lift and start filament shaping\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG28 ;home all axes (max endstops)\nM84 ;steppers off" }, + "machine_extruder_count": + { + "default_value": 2, + "maximum_value": "4" + }, + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "Deltacomb DC-30 FLUX" }, + "machine_width": { "default_value": 290 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, "material_initial_print_temperature": { "value": "material_print_temperature" }, - "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_standby_temperature": { "value": "material_print_temperature" } + "material_standby_temperature": { "value": "material_print_temperature" }, + "prime_tower_enable": { "value": "1" }, + "prime_tower_min_volume": { "value": "50" }, + "switch_extruder_retraction_amount": { "value": "0" } } -} +} \ No newline at end of file diff --git a/resources/definitions/diy220.def.json b/resources/definitions/diy220.def.json index 5c3b26be02..f4c2e41364 100644 --- a/resources/definitions/diy220.def.json +++ b/resources/definitions/diy220.def.json @@ -2,77 +2,43 @@ "version": 2, "name": "Diytech 220", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Venkatkamesh", "manufacturer": "Sri Vignan Technologies", - "weight": 3, "file_formats": "text/x-gcode", "platform": "diy220_platform.obj", - - "platform_texture": "svtbacktext.png", - "platform_offset": [0, 0, 0], "has_materials": true, "has_variants": true, + "machine_extruder_trains": { "0": "diy220_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ], + "platform_texture": "svtbacktext.png", "preferred_variant_name": "0.4 mm Nozzle", - "machine_extruder_trains": - { - "0": "diy220_extruder_0" - } + "weight": 3 }, - "overrides": { + "overrides": + { + "gantry_height": { "value": "48" }, + "machine_acceleration": { "default_value": 3000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "G91\nG1 Z+0.5 E-16 Y+10 F9000\nG90\nM107\nM104 S0 T0\nM140 S0\nM117\nG28 X0 Y0\nM84" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 305 }, + "machine_max_feedrate_x": { "default_value": 300 }, + "machine_max_feedrate_y": { "default_value": 300 }, + "machine_max_feedrate_z": { "default_value": 40 }, "machine_name": { "default_value": "Diytech 220" }, - "machine_start_gcode": { - "default_value": "G21\nG90\nM82\nM107\nG28\nG1 Z15 F200\nT0\nG92 E0\nG1 E16 F250\nG92 E0\n" - }, - "machine_end_gcode": { - "default_value": "G91\nG1 Z+0.5 E-16 Y+10 F9000\nG90\nM107\nM104 S0 T0\nM140 S0\nM117\nG28 X0 Y0\nM84" - }, - - - "machine_width": { - "default_value": 220 - }, - "machine_depth": { - "default_value": 220 - }, - "machine_height": { - "default_value": 305 - }, - "machine_heated_bed": { - "default_value": true - }, - - "machine_center_is_zero": { - "default_value": false - }, - "gantry_height": { - "value": "48" - }, - "machine_use_extruder_offset_to_offset_coords": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "Marlin" - }, - - "machine_nozzle_tip_outer_diameter": { - "default_value": 1 - }, - "machine_nozzle_head_distance": { - "default_value": 3 - }, - "machine_max_feedrate_x": { - "default_value": 300 - }, - "machine_max_feedrate_y": { - "default_value": 300 - }, - "machine_max_feedrate_z": { - "default_value": 40 - }, - "machine_acceleration": { - "default_value": 3000 - } + "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 }, + "machine_width": { "default_value": 220 } } -} +} \ No newline at end of file diff --git a/resources/definitions/dxu.def.json b/resources/definitions/dxu.def.json index 4d7c3eb446..8513dd5f8e 100644 --- a/resources/definitions/dxu.def.json +++ b/resources/definitions/dxu.def.json @@ -2,179 +2,160 @@ "version": 2, "name": "DXU", "inherits": "ultimaker2_plus", - "metadata": { + "metadata": + { "visible": true, "author": "TheUltimakerCommunity", "manufacturer": "DXU", - "has_variants": true, - "has_materials": true, - "has_machine_materials": false, - "has_machine_quality": false, - "has_variant_materials": false, - "weight": 0, "file_formats": "text/x-gcode", "platform": "ultimaker2_platform.obj", - "platform_texture": "dxu_backplate.png", - "platform_offset": [1.5, 0, 0], + "has_machine_materials": false, + "has_machine_quality": false, + "has_materials": true, + "has_variant_materials": false, + "has_variants": true, "machine_extruder_trains": { "0": "dxu_extruder1", "1": "dxu_extruder2" }, - "supported_actions": ["MachineSettingsAction", "UpgradeFirmware"] + "platform_offset": [ + 1.5, + 0, + 0 + ], + "platform_texture": "dxu_backplate.png", + "supported_actions": [ + "MachineSettingsAction", + "UpgradeFirmware" + ], + "weight": 0 }, - "overrides": { - "machine_name": { - "default_value": "dxu" - }, - "machine_width": { - "default_value": 238 - }, - "machine_depth": { - "default_value": 223 - }, - "machine_height": { - "default_value": 203 - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - }, - "machine_nozzle_heat_up_speed": { - "default_value": 3.5 - }, - "machine_nozzle_cool_down_speed": { - "default_value": 1.5 - }, - "machine_min_cool_heat_time_window": - { - "default_value": 15.0 - }, - "machine_show_variants": { - "default_value": true - }, - "machine_nozzle_head_distance": { - "default_value": 5 - }, - "machine_nozzle_expansion_angle": { - "default_value": 45 - }, - "machine_heat_zone_length": { - "default_value": 20 - }, - "machine_heated_bed": { - "default_value": true - }, - "speed_infill": { - "value": "speed_print" - }, - "speed_wall_x": { - "value": "speed_wall" - }, - "layer_height_0": { - "value": "round(machine_nozzle_size / 1.5, 2)" - }, - "line_width": { - "value": "round(machine_nozzle_size * 0.875, 2)" - }, - "speed_support": { - "value": "speed_wall_0" - }, - "machine_max_feedrate_x": { - "default_value": 300 - }, - "machine_max_feedrate_y": { - "default_value": 300 - }, - "machine_max_feedrate_z": { - "default_value": 40 - }, - "machine_max_feedrate_e": { - "default_value": 45 - }, - "machine_acceleration": { - "default_value": 3000 - }, - "retraction_amount": { - "default_value": 6.5 - }, - "retraction_speed": { - "default_value": 25 - }, - "switch_extruder_retraction_amount": { - "value": "retraction_amount", - "enabled": false - }, - "switch_extruder_retraction_speeds": { - "value": "retraction_speed", - "enabled": false - }, - "switch_extruder_retraction_speed": { - "value": "retraction_retract_speed", - "enabled": false - }, - "switch_extruder_prime_speed": { - "value": "retraction_prime_speed", - "enabled": false - }, - "machine_head_with_fans_polygon": - { - "default_value": [ - [ -44, 14 ], - [ -44, -34 ], - [ 64, 14 ], - [ 64, -34 ] - ] - }, - "machine_use_extruder_offset_to_offset_coords": { - "default_value": false - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode" : { - "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \";material_bed_temperature={material_bed_temperature} material_print_temperature={material_print_temperature} material_print_temperature_layer_0={material_print_temperature_layer_0}\\nM190 S{material_bed_temperature_layer_0}\\nG21 ;metric values\\nG90 ;absolute positioning\\nM82 ;set extruder to absolute mode\\nM107 ;start with the fan off\\nM200 D0 T{initial_extruder_nr} ;reset filament diameter\\nG28 ;home all\\nT{initial_extruder_nr} ;switch to the first nozzle used for print\\nM104 T{initial_extruder_nr} S{material_standby_temperature, initial_extruder_nr}\\nG0 X25 Y20 F7200\\nG0 Z20 F2400\\nM109 T{initial_extruder_nr} S{material_print_temperature_layer_0, initial_extruder_nr}\\nG0 X210 Y20 F7200\\nG92 E-7.0\\nG1 E0 F45 ;purge nozzle\\nG1 E-6.5 F1500\\nG1 E0 F1500\\nM400 ;finish all moves\\nT{initial_extruder_nr}\\n;end of startup sequence\\n\"" - }, - "machine_end_gcode" : { - "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \"G90 ;absolute positioning\\nM104 S0 T0 ;extruder heater off\\nM104 S0 T1\\nM140 S0 ;turn off bed\\nT0 ; move to the first head\\nM107 ;fan off\"" - }, - "machine_extruder_count": { - "default_value": 2 - }, + "overrides": + { "extruder_prime_pos_abs": { "default_value": false }, - "extruder_prime_pos_x": { "default_value": 0.0, "enabled": false }, - "extruder_prime_pos_y": { "default_value": 0.0, "enabled": false }, - "extruder_prime_pos_z": { "default_value": 0.0, "enabled": false }, - "layer_start_x": { + "extruder_prime_pos_x": + { + "default_value": 0.0, + "enabled": false + }, + "extruder_prime_pos_y": + { + "default_value": 0.0, + "enabled": false + }, + "extruder_prime_pos_z": + { + "default_value": 0.0, + "enabled": false + }, + "layer_height_0": { "value": "round(machine_nozzle_size / 1.5, 2)" }, + "layer_start_x": + { "default_value": 180.0, "enabled": false }, - "layer_start_y": { + "layer_start_y": + { "default_value": 160.0, "enabled": false }, - "prime_tower_position_x": { - "value": "180" - }, - "prime_tower_position_y": { - "value": "160" - }, - "material_adhesion_tendency": { - "enabled": true - }, - "machine_disallowed_areas": { + "line_width": { "value": "round(machine_nozzle_size * 0.875, 2)" }, + "machine_acceleration": { "default_value": 3000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 223 }, + "machine_disallowed_areas": + { "default_value": [ - [[-120, 112.5], [ -101, 112.5], [ -101, 106.5], [-120, 106.5]], - [[ 120, 112.5], [ 120, 106.5], [ 86, 106.5], [ 86, 112.5]], - [[-120, -112.5], [-120, -106.5], [ -101, -106.5], [ -101, -112.5]], - [[ 120, -112.5], [ 86, -112.5], [ 86, -106.5], [ 120, -106.5]], - [[ 120, -112.5], [ 120, -72.5], [ 93, -72.5], [ 93, -112.5]] + [ + [-120, 112.5], + [-101, 112.5], + [-101, 106.5], + [-120, 106.5] + ], + [ + [120, 112.5], + [120, 106.5], + [86, 106.5], + [86, 112.5] + ], + [ + [-120, -112.5], + [-120, -106.5], + [-101, -106.5], + [-101, -112.5] + ], + [ + [120, -112.5], + [86, -112.5], + [86, -106.5], + [120, -106.5] + ], + [ + [120, -112.5], + [120, -72.5], + [93, -72.5], + [93, -112.5] + ] ] + }, + "machine_end_gcode": { "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \"G90 ;absolute positioning\\nM104 S0 T0 ;extruder heater off\\nM104 S0 T1\\nM140 S0 ;turn off bed\\nT0 ; move to the first head\\nM107 ;fan off\"" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-44, 14], + [-44, -34], + [64, 14], + [64, -34] + ] + }, + "machine_heat_zone_length": { "default_value": 20 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 203 }, + "machine_max_feedrate_e": { "default_value": 45 }, + "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": { "default_value": 15.0 }, + "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 }, + "machine_start_gcode": { "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \";material_bed_temperature={material_bed_temperature} material_print_temperature={material_print_temperature} material_print_temperature_layer_0={material_print_temperature_layer_0}\\nM190 S{material_bed_temperature_layer_0}\\nG21 ;metric values\\nG90 ;absolute positioning\\nM82 ;set extruder to absolute mode\\nM107 ;start with the fan off\\nM200 D0 T{initial_extruder_nr} ;reset filament diameter\\nG28 ;home all\\nT{initial_extruder_nr} ;switch to the first nozzle used for print\\nM104 T{initial_extruder_nr} S{material_standby_temperature, initial_extruder_nr}\\nG0 X25 Y20 F7200\\nG0 Z20 F2400\\nM109 T{initial_extruder_nr} S{material_print_temperature_layer_0, initial_extruder_nr}\\nG0 X210 Y20 F7200\\nG92 E-7.0\\nG1 E0 F45 ;purge nozzle\\nG1 E-6.5 F1500\\nG1 E0 F1500\\nM400 ;finish all moves\\nT{initial_extruder_nr}\\n;end of startup sequence\\n\"" }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": false }, + "machine_width": { "default_value": 238 }, + "material_adhesion_tendency": { "enabled": true }, + "material_diameter": { "default_value": 1.75 }, + "prime_tower_position_x": { "value": "180" }, + "prime_tower_position_y": { "value": "160" }, + "retraction_amount": { "default_value": 6.5 }, + "retraction_speed": { "default_value": 25 }, + "speed_support": { "value": "speed_wall_0" }, + "speed_wall_x": { "value": "speed_wall" }, + "switch_extruder_prime_speed": + { + "enabled": false, + "value": "retraction_prime_speed" + }, + "switch_extruder_retraction_amount": + { + "enabled": false, + "value": "retraction_amount" + }, + "switch_extruder_retraction_speed": + { + "enabled": false, + "value": "retraction_retract_speed" + }, + "switch_extruder_retraction_speeds": + { + "enabled": false, + "value": "retraction_speed" } } -} +} \ No newline at end of file diff --git a/resources/definitions/dxu_dual.def.json b/resources/definitions/dxu_dual.def.json index ebd126c142..6d30af005f 100644 --- a/resources/definitions/dxu_dual.def.json +++ b/resources/definitions/dxu_dual.def.json @@ -2,15 +2,10 @@ "version": 2, "name": "DXU Dual", "inherits": "dxu", - "overrides": { - "machine_start_gcode" : { - "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \";material_bed_temperature={material_bed_temperature} material_print_temperature={material_print_temperature} material_print_temperature_layer_0={material_print_temperature_layer_0}\\nM190 S{material_bed_temperature_layer_0}\\nM104 T0 S{material_standby_temperature, 0}\\nM104 T0 S{material_print_temperature_layer_0, 0}\\nG21 ;metric values\\nG90 ;absolute positioning\\nM82 ;set extruder to absolute mode\\nM107 ;start with the fan off\\nM200 D0 T0 ;reset filament diameter\\nM200 D0 T1\\nG28 ;home all\\nT1 ; move to the nozzle 2\\nG0 Z20 F2400 ;move the platform to 30mm\\nM109 T1 S{material_print_temperature_layer_0, 1}\\nG0 X210 Y20 F7200\\nG92 E0\\nG92 E-7.0 ;prime distance\\nG1 E0 F45 ;purge nozzle\\nG1 E-6.5 F1500 ; retract\\nT0 ; move to the nozzle 1\\nM104 T1 S{material_standby_temperature, 1}\\nG0 Z20 F2400\\nM109 T0 S{material_print_temperature_layer_0, 0}\\nG0 X210 Y20 F7200\\nG92 E0\\nG92 E-7.0\\nG1 E0 F45 ;purge nozzle\\nG1 E-6.5 F1500\\nM104 T0 S{material_standby_temperature, 0}\\nT{initial_extruder_nr} ;switch to the first nozzle used for print\\nM109 T{initial_extruder_nr} S{material_print_temperature_layer_0, initial_extruder_nr}\\nM400 ;finish all moves\\nG1 E0 F1500\\nG92 E0\\n;end of startup sequence\\n\"" - }, - "machine_end_gcode" : { - "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \"G90 ;absolute positioning\\nM104 S0 T0 ;extruder heater off\\nM104 S0 T1\\nM140 S0 ;turn off bed\\nT0 ; move to the first head\\nM107 ;fan off\"" - }, - "prime_tower_enable": { - "default_value": true - } + "overrides": + { + "machine_end_gcode": { "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \"G90 ;absolute positioning\\nM104 S0 T0 ;extruder heater off\\nM104 S0 T1\\nM140 S0 ;turn off bed\\nT0 ; move to the first head\\nM107 ;fan off\"" }, + "machine_start_gcode": { "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \";material_bed_temperature={material_bed_temperature} material_print_temperature={material_print_temperature} material_print_temperature_layer_0={material_print_temperature_layer_0}\\nM190 S{material_bed_temperature_layer_0}\\nM104 T0 S{material_standby_temperature, 0}\\nM104 T0 S{material_print_temperature_layer_0, 0}\\nG21 ;metric values\\nG90 ;absolute positioning\\nM82 ;set extruder to absolute mode\\nM107 ;start with the fan off\\nM200 D0 T0 ;reset filament diameter\\nM200 D0 T1\\nG28 ;home all\\nT1 ; move to the nozzle 2\\nG0 Z20 F2400 ;move the platform to 30mm\\nM109 T1 S{material_print_temperature_layer_0, 1}\\nG0 X210 Y20 F7200\\nG92 E0\\nG92 E-7.0 ;prime distance\\nG1 E0 F45 ;purge nozzle\\nG1 E-6.5 F1500 ; retract\\nT0 ; move to the nozzle 1\\nM104 T1 S{material_standby_temperature, 1}\\nG0 Z20 F2400\\nM109 T0 S{material_print_temperature_layer_0, 0}\\nG0 X210 Y20 F7200\\nG92 E0\\nG92 E-7.0\\nG1 E0 F45 ;purge nozzle\\nG1 E-6.5 F1500\\nM104 T0 S{material_standby_temperature, 0}\\nT{initial_extruder_nr} ;switch to the first nozzle used for print\\nM109 T{initial_extruder_nr} S{material_print_temperature_layer_0, initial_extruder_nr}\\nM400 ;finish all moves\\nG1 E0 F1500\\nG92 E0\\n;end of startup sequence\\n\"" }, + "prime_tower_enable": { "default_value": true } } -} +} \ No newline at end of file diff --git a/resources/definitions/dxu_umo.def.json b/resources/definitions/dxu_umo.def.json new file mode 100644 index 0000000000..dc936724a1 --- /dev/null +++ b/resources/definitions/dxu_umo.def.json @@ -0,0 +1,26 @@ +{ + "version": 2, + "name": "UMO+ DXU", + "inherits": "dxu", + "overrides": + { + "machine_depth": { "default_value": 205 }, + "machine_disallowed_areas": + { + "default_value": [ + [ + [100, -102.5], + [110, -102.5], + [110, -62.5], + [100, -62.5] + ] + ] + }, + "machine_end_gcode": { "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \";end code from UM3\\nG91 ;Relative movement\\nG0 F15000 X8.0 Y8.0 Z3.5 E-4.5 ;Wiping+material retraction ;increase bed lower 0.5>5.0 and add Y movement\\nG0 F10000 Z1.5 E4.5 ;Compensation for the retraction\\nG90 ;Disable relative movement\\n\\nG90 ;absolute positioning\\nM104 S0 T0 ;extruder heater off\\nM104 S0 T1\\nM140 S0 ;turn off bed\\nT0 ; move to the first head\\nM107 ;fan off\\nM355 S0 ;turn off case light\"" }, + "machine_height": { "default_value": 200 }, + "machine_nozzle_cool_down_speed": { "default_value": 0.8 }, + "machine_nozzle_heat_up_speed": { "default_value": 1.95 }, + "machine_start_gcode": { "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \"; Script based on an original created by tjjfvi (https://github.com/tjjfvi)\\n; An up-to-date version of the tjjfvi's original script can be found\\n; here: https://csi.t6.fyi/\\n; Note - This script will only work in Cura V4.2 and above!\\n; --- Global Settings\\n; layer_height = {layer_height}\\n; smooth_spiralized_contours = {smooth_spiralized_contours}\\n; magic_mesh_surface_mode = {magic_mesh_surface_mode}\\n; machine_extruder_count = {machine_extruder_count}\\n; --- Single Extruder Settings\\n; speed_z_hop = {speed_z_hop}\\n; retraction_amount = {retraction_amount}\\n; retraction_hop = {retraction_hop}\\n; retraction_hop_enabled = {retraction_hop_enabled}\\n; retraction_enable = {retraction_enable}\\n; retraction_speed = {retraction_speed}\\n; retraction_retract_speed = {retraction_retract_speed}\\n; retraction_prime_speed = {retraction_prime_speed}\\n; speed_travel = {speed_travel}\\n\\nM355 S1 P25;turn on case light\\n\\n;material_bed_temperature={material_bed_temperature} material_print_temperature={material_print_temperature} material_print_temperature_layer_0={material_print_temperature_layer_0}\\nM190 S{material_bed_temperature_layer_0}\\nG21 ;metric values\\nG90 ;absolute positioning\\nM82 ;set extruder to absolute mode\\nM107 ;start with the fan off\\nM200 D0 T{initial_extruder_nr} ;reset filament diameter\\nG28 ;home all\\nT{initial_extruder_nr} ;switch to the first nozzle used for print\\nM104 T{initial_extruder_nr} S{material_standby_temperature, initial_extruder_nr}\\nG0 X25 Y20 F7200 ;change Y20 to Y0 ansonl\\nG0 Z20 F2400\\nM109 T{initial_extruder_nr} S{material_print_temperature_layer_0, initial_extruder_nr}\\nG0 X210 Y0 F7200\\nG92 E-12.0 ; increase purge 6.5 to 12\\nG1 E0 F200 ;purge nozzle ;change F45 to F200 like ultimaker code ansonl\\nG1 E-6.5 F1500\\nG1 E0 F1500\\nG1 Y50 F9000 ;add quick movement to Y50 like ultimaker code ansonl\\nM400 ;finish all moves\\nT{initial_extruder_nr}\\n;end of startup sequence\\n\\nM355 S1 P50;turn on case light\"" }, + "machine_width": { "default_value": 220 } + } +} \ No newline at end of file diff --git a/resources/definitions/dxu_umo_dual.def.json b/resources/definitions/dxu_umo_dual.def.json new file mode 100644 index 0000000000..f641b928cd --- /dev/null +++ b/resources/definitions/dxu_umo_dual.def.json @@ -0,0 +1,28 @@ +{ + "version": 2, + "name": "UMO+ DXU Dual", + "inherits": "dxu_dual", + "overrides": + { + "machine_depth": { "default_value": 205 }, + "machine_disallowed_areas": + { + "default_value": [ + [ + [100, -102.5], + [110, -102.5], + [110, -62.5], + [100, -62.5] + ] + ] + }, + "machine_end_gcode": { "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \";end code from UM3\\nG91 ;Relative movement\\nG0 F15000 X8.0 Y8.0 Z3.5 E-4.5 ;Wiping+material retraction ;increase bed lower 0.5>5.0 and add Y movement\\nG0 F10000 Z1.5 E4.5 ;Compensation for the retraction\\nG90 ;Disable relative movement\\n\\nG90 ;absolute positioning\\nM104 S0 T0 ;extruder heater off\\nM104 S0 T1\\nM140 S0 ;turn off bed\\nT0 ; move to the first head\\nM107 ;fan off\\nM355 S0 ;turn off case light\"" }, + "machine_height": { "default_value": 200 }, + "machine_nozzle_cool_down_speed": { "default_value": 0.8 }, + "machine_nozzle_heat_up_speed": { "default_value": 1.95 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_start_gcode": { "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \"; Script based on an original created by tjjfvi (https://github.com/tjjfvi)\\n; An up-to-date version of the tjjfvi's original script can be found\\n; here: https://csi.t6.fyi/\\n; Note - This script will only work in Cura V4.2 and above!\\n; --- Global Settings\\n; layer_height = {layer_height}\\n; smooth_spiralized_contours = {smooth_spiralized_contours}\\n; magic_mesh_surface_mode = {magic_mesh_surface_mode}\\n; machine_extruder_count = {machine_extruder_count}\\n; --- Single Extruder Settings\\n; speed_z_hop = {speed_z_hop}\\n; retraction_amount = {retraction_amount}\\n; retraction_hop = {retraction_hop}\\n; retraction_hop_enabled = {retraction_hop_enabled}\\n; retraction_enable = {retraction_enable}\\n; retraction_speed = {retraction_speed}\\n; retraction_retract_speed = {retraction_retract_speed}\\n; retraction_prime_speed = {retraction_prime_speed}\\n; speed_travel = {speed_travel}\\n; --- Multi-Extruder Settings\\n; speed_z_hop_0 = {speed_z_hop, 0}\\n; speed_z_hop_1 = {speed_z_hop, 1}\\n; retraction_amount_0 = {retraction_amount, 0}\\n; retraction_amount_1 = {retraction_amount, 1}\\n; retraction_hop_0 = {retraction_hop, 0}\\n; retraction_hop_1 = {retraction_hop, 1}\\n; retraction_hop_enabled_0 = {retraction_hop_enabled, 0}\\n; retraction_hop_enabled_1 = {retraction_hop_enabled, 1}\\n; retraction_prime_speed_0 = {retraction_prime_speed, 0}\\n; retraction_prime_speed_1 = {retraction_prime_speed, 1}\\n; retraction_retract_speed_0 = {retraction_retract_speed, 0}\\n; retraction_retract_speed_1 = {retraction_retract_speed, 1}\\n; retraction_speed_0 = {retraction_speed, 0}\\n; retraction_speed_1 = {retraction_speed, 1}\\n; retraction_enable_0 = {retraction_enable, 0}\\n; retraction_enable_1 = {retraction_enable, 1}\\n; speed_travel_0 = {speed_travel, 0}\\n; speed_travel_1 = {speed_travel, 1}\\n\\nM355 S1 P25;turn on case light\\n\\n;material_bed_temperature={material_bed_temperature} material_print_temperature={material_print_temperature} material_print_temperature_layer_0={material_print_temperature_layer_0}\\nM190 S{material_bed_temperature_layer_0}\\nM104 T0 S{material_standby_temperature, 0}\\nM104 T0 S{material_print_temperature_layer_0, 0}\\nG21 ;metric values\\nG90 ;absolute positioning\\nM82 ;set extruder to absolute mode\\nM107 ;start with the fan off\\nM200 D0 T0 ;reset filament diameter\\nM200 D0 T1\\nG28 ;home all\\nT1 ; move to the nozzle 2\\nG0 Z20 F2400 ;move the platform to 30mm\\nM109 T1 S{material_print_temperature_layer_0, 1}\\nG0 X210 Y0 F7200 ;change Y20 to Y0 ansonl\\nG92 E0\\nG92 E-12.0 ;prime distance ;increase purge 6.5 to 12\\nG1 E0 F200 ;purge nozzle ;change F45 to F200 like ultimaker code ansonl\\nG1 E-6.5 F1500 ; retract\\nT0 ; move to the nozzle 1\\nM104 T1 S{material_standby_temperature, 1}\\nG0 Z20 F2400\\nM109 T0 S{material_print_temperature_layer_0, 0}\\nG0 X210 Y0 F7200 ;change Y20 to Y0 ansonl\\nG92 E0\\nG92 E-12.0\\nG1 E0 F200 ;purge nozzle\\nG1 E-6.5 F1500\\nM104 T0 S{material_standby_temperature, 0}\\nT{initial_extruder_nr} ;switch to the first nozzle used for print\\nM109 T{initial_extruder_nr} S{material_print_temperature_layer_0, initial_extruder_nr}\\nM400 ;finish all moves\\nG1 E0 F1500\\nG92 E0\\nG1 Y100 F9000 ;add quick movement to Y50 like ultimaker code ansonl\\n;end of startup sequence\\n\\nM355 S1 P50;turn on case light\"" }, + "machine_width": { "default_value": 220 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/definitions/easyarts_ares.def.json b/resources/definitions/easyarts_ares.def.json index 8751f2c3e1..9d924f02ec 100644 --- a/resources/definitions/easyarts_ares.def.json +++ b/resources/definitions/easyarts_ares.def.json @@ -1,59 +1,30 @@ { - "name": "EasyArts Ares", "version": 2, + "name": "EasyArts Ares", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "nliaudat", "manufacturer": "EasyArts", "file_formats": "text/x-gcode", - "machine_extruder_trains": - { - "0": "easyarts_ares_extruder_0" - } + "machine_extruder_trains": { "0": "easyarts_ares_extruder_0" } }, - "overrides": { - "machine_start_gcode": { - "default_value": "; -- START GCODE --\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 \nG29 Z0.12 ;Auto-bedleveling with Z offset \nG92 E0 ;zero the extruded length \nG1 F2000 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F{speed_travel}\nM117 Printing...\n; -- end of START GCODE --" - }, - "machine_end_gcode": { - "default_value": "; -- START GCODE --\nG28 ; Home all axes\nM104 S0 ;extruder heater off\n;M140 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\n;M84 ;steppers off\nG90 ;absolute positioning\n; -- end of START GCODE --" - }, - "machine_width": { - "default_value": 180 - }, - "machine_depth": { - "default_value": 180 - }, - "machine_height": { - "default_value": 200 - }, - "machine_heated_bed": { - "default_value": false - }, - "machine_center_is_zero": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap" - }, - "layer_height": { - "default_value": 0.2 - }, - "layer_height_0": { - "default_value": 0.2 - }, - "wall_thickness": { - "value": "1" - }, - "top_bottom_thickness": { - "default_value": 1 - }, - "speed_print": { - "default_value": 75 - }, - "support_enable": { - "default_value": true - } + "overrides": + { + "layer_height": { "default_value": 0.2 }, + "layer_height_0": { "default_value": 0.2 }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 180 }, + "machine_end_gcode": { "default_value": "; -- START GCODE --\nG28 ; Home all axes\nM104 S0 ;extruder heater off\n;M140 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\n;M84 ;steppers off\nG90 ;absolute positioning\n; -- end of START GCODE --" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 200 }, + "machine_start_gcode": { "default_value": "; -- START GCODE --\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 \nG29 Z0.12 ;Auto-bedleveling with Z offset \nG92 E0 ;zero the extruded length \nG1 F2000 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F{speed_travel}\nM117 Printing...\n; -- end of START GCODE --" }, + "machine_width": { "default_value": 180 }, + "speed_print": { "default_value": 75 }, + "support_enable": { "default_value": true }, + "top_bottom_thickness": { "default_value": 1 }, + "wall_thickness": { "value": "1" } } -} +} \ No newline at end of file diff --git a/resources/definitions/eazao_zero.def.json b/resources/definitions/eazao_zero.def.json index 63286a1333..f849e25eb5 100644 --- a/resources/definitions/eazao_zero.def.json +++ b/resources/definitions/eazao_zero.def.json @@ -2,125 +2,80 @@ "version": 2, "name": "Eazao Zero", "inherits": "fdmprinter", - "metadata": - { + "metadata": + { "visible": true, "author": "Eazao", "manufacturer": "Eazao", "file_formats": "text/x-gcode", - "has_materials": true, "has_machine_quality": false, - "preferred_quality_type": "normal", + "has_materials": true, + "machine_extruder_trains": { "0": "eazao_zero_extruder_0" }, "preferred_material": "generic_pla", - - "machine_extruder_trains": - { - "0": "eazao_zero_extruder_0" - } - }, - "overrides": + "preferred_quality_type": "normal" + }, + "overrides": { - "machine_name": - { - "default_value": "EAZAO Zero" - }, - "machine_heated_bed": - { - "default_value": false - }, - "machine_width": - { - "default_value": 150 - }, - "machine_depth": - { - "default_value": 150 - }, - "machine_height": - { - "default_value": 240 - }, - "machine_center_is_zero": - { - "default_value": false - }, - "machine_gcode_flavor": - { - "default_value": "Marlin (Marlin/Sprinter)" - }, - "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_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_max_feedrate_x": { "value": 100 }, - "machine_max_feedrate_y": { "value": 100 }, - "machine_max_feedrate_z": { "value": 5 }, - "machine_max_feedrate_e": { "value": 25 }, - - "machine_max_acceleration_x": { "value": 500 }, - "machine_max_acceleration_y": { "value": 500 }, - "machine_max_acceleration_z": { "value": 50 }, - "machine_max_acceleration_e": { "value": 500 }, - "machine_acceleration": { "value": 300 }, + "acceleration_enabled": { "value": false }, "acceleration_print": { "value": 300 }, "acceleration_travel": { "value": 300 }, - "acceleration_enabled": { "value": false }, - - "machine_max_jerk_xy": { "value": 10 }, - "machine_max_jerk_z": { "value": 0.3 }, - "machine_max_jerk_e": { "value": 5 }, + "adhesion_type": { "default_value": "none" }, + "bottom_layers": { "value": 2 }, + "cool_fan_enabled": { "value": false }, + "infill_sparse_density": { "value": 0 }, + "initial_bottom_layers": { "value": 2 }, + "jerk_enabled": { "value": false }, "jerk_print": { "value": 10 }, "jerk_travel": { "value": "jerk_print" }, "jerk_travel_layer_0": { "value": "jerk_travel" }, - "jerk_enabled": { "value": false }, - - "layer_height": {"value":1.0}, - "layer_height_0": {"value":1.0}, - "line_width": {"value":3.0}, - - "wall_thickness": {"value":3.0}, - "optimize_wall_printing_order": { "value": "True" }, - - "top_bottom_thickness": {"value":0}, - "bottom_layers":{"value":2}, - "initial_bottom_layers":{"value":2}, - - "infill_sparse_density": {"value":0}, - + "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": 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_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 240 }, + "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 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_width": { "default_value": 150 }, + "material_final_print_temperature": { "value": "0" }, + "material_initial_print_temperature": { "value": "0" }, "material_print_temperature": { "value": "0" }, "material_print_temperature_layer_0": { "value": "0" }, - "material_initial_print_temperature": { "value": "0" }, - "material_final_print_temperature": { "value": "0" }, - + "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_travel": { "value": 20.0 }, "speed_z_hop": { "value": "machine_max_feedrate_z" }, - - "retraction_hop_enabled": { "value": false }, - "retraction_hop": { "value": 0.2 }, - "retraction_combing": { "value": "'noskin'" }, - "retraction_combing_max_distance": { "value": 0 }, - + "top_bottom_thickness": { "value": 0 }, "travel_avoid_other_parts": { "value": true }, "travel_avoid_supports": { "value": false }, "travel_retract_before_outer_wall": { "value": false }, - - "retraction_enable": { "value": false }, - "retraction_speed": { "value": 25 }, - "retraction_amount": { "value": 7 }, - "retraction_count_max": { "value": 100 }, - "retraction_extrusion_window": { "value": 10 }, - - "cool_fan_enabled": { "value": false }, - - "adhesion_type": { "default_value": "none" } - + "wall_thickness": { "value": 3.0 } } -} +} \ No newline at end of file diff --git a/resources/definitions/elegoo_base.def.json b/resources/definitions/elegoo_base.def.json new file mode 100644 index 0000000000..2e47f345d6 --- /dev/null +++ b/resources/definitions/elegoo_base.def.json @@ -0,0 +1,139 @@ +{ + "version": 2, + "name": "ELEGOO Base Printer", + "inherits": "fdmprinter", + "metadata": + { + "author": "NARUTO", + "manufacturer": "ELEGOO", + "file_formats": "text/x-gcode", + "platform": "elegoo_platform.3mf", + "exclude_materials": [ + "generic_nylon_175", + "generic_nylon", + "generic_hips_175", + "generic_hips", + "generic_gffcpe", + "generic_bvoh_175", + "generic_ccfpe", + "generic_cffcpe", + "generic_cpe_plus", + "generic_cpe_175", + "generic_cpe", + "generic_tpu", + "generic_pp", + "generic_pc", + "generic_pc_175", + "generic_pvc", + "generic_pva", + "generic_pva_175", + "generic_pvc_175", + "generic_pp" + ], + "has_machine_quality": true, + "machine_extruder_trains": { "0": "elegoo_extruder_0" }, + "platform_offset": [ + -2.2, + 14.5, + -31 + ], + "preferred_material": "generic_pla_175", + "preferred_quality_type": "fine" + }, + "overrides": + { + "acceleration_enabled": { "value": true }, + "acceleration_layer_0": { "value": 500 }, + "acceleration_print": { "value": 1000 }, + "acceleration_travel": { "value": "acceleration_print" }, + "brim_gap": { "default_value": 0.1 }, + "brim_width": { "default_value": 5 }, + "cool_fan_full_at_height": { "value": "layer_height_0 if resolveOrValue('adhesion_type') == 'raft' else resolveOrValue('layer_height_0')+0.4" }, + "cool_fan_speed": { "enabled": "resolveOrValue('cool_fan_enabled') == 'true' or cool_fan_enabled" }, + "cool_fan_speed_0": + { + "enabled": "resolveOrValue('cool_fan_enabled') == 'true' or cool_fan_enabled", + "value": "cool_fan_speed if resolveOrValue('adhesion_type') == 'raft' else 0" + }, + "cool_fan_speed_max": { "enabled": "resolveOrValue('cool_fan_enabled') == 'true' or cool_fan_enabled" }, + "cool_fan_speed_min": { "enabled": "resolveOrValue('cool_fan_enabled') == 'true' or cool_fan_enabled" }, + "fill_outline_gaps": { "default_value": false }, + "gantry_height": { "value": "machine_height-20" }, + "gradual_support_infill_step_height": { "value": "5" }, + "infill_overlap": { "value": "10 if infill_sparse_density < 20.01 else 5 if infill_sparse_density < 40.01 and infill_pattern != 'concentric' else 0" }, + "infill_overlap_mm": { "value": "0.5 * (infill_line_width + (wall_line_width_x if wall_line_count > 1 else wall_line_width_0)) * infill_overlap / 100" }, + "infill_pattern": { "value": "'lines' if (infill_sparse_density > 35 or speed_print >= 80) else 'grid' " }, + "infill_sparse_density": { "default_value": 15 }, + "initial_layer_line_width_factor": { "value": "100.0 if resolveOrValue('adhesion_type') == 'raft' else 130 if line_width < 0.5 else 110" }, + "line_width": { "value": "machine_nozzle_size + 0.02" }, + "machine_acceleration": { "value": 1000 }, + "machine_heated_bed": { "default_value": true }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 1000 }, + "machine_max_acceleration_y": { "value": 1000 }, + "machine_max_jerk_xy": { "value": 8.0 }, + "material_diameter": { "value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "material_print_temperature_layer_0": { "value": "210 if material_print_temperature < 210 else material_print_temperature" }, + "min_infill_area": { "value": "5" }, + "minimum_interface_area": { "default_value": 10 }, + "minimum_support_area": { "default_value": 3 }, + "optimize_wall_printing_order": { "default_value": true }, + "prime_tower_brim_enable": { "default_value": true }, + "prime_tower_min_volume": { "value": "(layer_height) * (prime_tower_size / 2)**2 * 3 * 0.5 " }, + "prime_tower_size": { "default_value": 30 }, + "prime_tower_wipe_enabled": { "default_value": false }, + "raft_base_speed": { "value": "0.4 * raft_speed" }, + "raft_base_thickness": { "value": "resolveOrValue('machine_nozzle_size') * 0.75" }, + "raft_interface_speed": { "value": "0.6 * raft_speed" }, + "raft_interface_thickness": { "value": "resolveOrValue('machine_nozzle_size') * 0.75" }, + "raft_margin": { "default_value": 5 }, + "raft_speed": { "value": "30" }, + "raft_surface_fan_speed": { "value": "cool_fan_speed" }, + "raft_surface_line_width": { "value": "machine_nozzle_size * 1.25" }, + "raft_surface_thickness": { "value": "resolveOrValue('machine_nozzle_size')*0.375" }, + "retraction_amount": { "default_value": 5 }, + "retraction_combing": { "value": "'no_outer_surfaces' if (any(extruderValues('skin_monotonic')) or any(extruderValues('ironing_enabled')) or (any(extruderValues('roofing_monotonic')) and any(extruderValues('roofing_layer_count')))) else 'no_outer_surfaces'" }, + "retraction_combing_max_distance": { "value": "(infill_line_distance)*1.5 + 5 " }, + "retraction_hop": { "value": "layer_height if layer_height > 0.199 else 0.2" }, + "skirt_brim_speed": { "value": "speed_print_layer_0" }, + "speed_infill": { "value": "math.ceil(speed_wall + 35)" }, + "speed_layer_0": + { + "maximum_value_warning": "60", + "value": "speed_print * 20 / 60 if material_bed_temperature > 70 else speed_print * 30 / 60" + }, + "speed_prime_tower": { "value": "speed_print if speed_print < 70.1 else 90 if speed_print > 100 else speed_print * 0.5+35" }, + "speed_slowdown_layers": { "value": "0 if resolveOrValue('adhesion_type') == 'raft' else speed_print / 30" }, + "speed_support": { "value": "speed_print if speed_wall > 0 and speed_wall < 40.01 else speed_wall + 40 " }, + "speed_topbottom": { "value": "speed_wall + 15" }, + "speed_travel": { "value": "90 if speed_print < 60.1 else speed_print * 1.5 if speed_print > 90 else speed_print+30" }, + "speed_travel_layer_0": { "value": "70 if speed_layer_0 < 20 else 90 if speed_layer_0 > 40 else speed_layer_0+50" }, + "speed_wall_x": { "value": "speed_wall + 15" }, + "support_angle": { "value": "45 if speed_print > 99.9 else 50" }, + "support_bottom_offset": { "value": "-0.4" }, + "support_brim_enable": { "value": "support_structure == 'normal' or support_structure == 'tree'" }, + "support_brim_width": + { + "default_value": 3, + "value": "6 if support_structure == 'tree' else line_width * initial_layer_line_width_factor * 0.02 " + }, + "support_infill_angles": { "default_value": "[65]" }, + "support_interface_density": { "default_value": 33.333 }, + "support_interface_pattern": { "default_value": "lines" }, + "support_material_flow": { "value": "material_flow * 0.95" }, + "support_roof_pattern": { "value": "'grid'" }, + "support_top_distance": { "value": "extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'layer_height') + (0 if support_structure == 'tree' else 0)" }, + "support_tower_maximum_supported_diameter": { "value": "1" }, + "support_xy_distance": { "value": "machine_nozzle_size * 1.7" }, + "support_xy_distance_overhang": { "value": "machine_nozzle_size * 1.2 if support_interface_enable else machine_nozzle_size * 0.8" }, + "support_z_distance": { "value": "layer_height * 1.2 if (support_interface_enable and support_bottom_enable and layer_height < 0.16) or support_bottom_enable else layer_height" }, + "switch_extruder_retraction_amount": { "value": "15 if extruders_enabled_count > 1 else machine_heat_zone_length" }, + "wall_thickness": { "value": "wall_line_width_0 if magic_spiralize else line_width * 2" }, + "z_seam_corner": { "default_value": "z_seam_corner_weighted" }, + "z_seam_position": { "default_value": "left" }, + "z_seam_type": { "default_value": "back" }, + "zig_zaggify_infill": { "value": "infill_pattern == 'cross' or infill_pattern == 'cross_3d' or infill_sparse_density < 30 " } + } +} \ No newline at end of file diff --git a/resources/definitions/elegoo_neptune_1.def.json b/resources/definitions/elegoo_neptune_1.def.json new file mode 100644 index 0000000000..2b23fd8482 --- /dev/null +++ b/resources/definitions/elegoo_neptune_1.def.json @@ -0,0 +1,30 @@ +{ + "version": 2, + "name": "ELEGOO NEPTUNE", + "inherits": "elegoo_base", + "metadata": + { + "visible": true, + "author": "NARUTO", + "quality_definition": "elegoo_base" + }, + "overrides": + { + "machine_depth": { "default_value": 210 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-10 X5 Y5 Z3 F3000 ;Retract\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_head_with_fans_polygon": + { + "value": [ + [-50, 20], + [50, 20], + [50, -25], + [-50, -25] + ] + }, + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "ELEGOO NEPTUNE" }, + "machine_start_gcode": { "default_value": ";ELEGOO NEPTUNE\nG90\nG28 ;home\nG1 Z0.6 F100 ;Move Z Axis up\nG92 E0 ;Reset Extruder\nG1 X1.5 Y20 F5000.0 ;Move to start position\nG1 Y120.0 F600.0 E20 ;Draw the first line\nG1 X0.5 F1000.0 ;Move to side a little\nG1 Y20 F600.0 E40 ;Draw the second line\nG92 E0 ;Reset Extruder" }, + "machine_width": { "default_value": 210 }, + "material_bed_temperature": { "value": "default_material_bed_temperature + 5" } + } +} \ No newline at end of file diff --git a/resources/definitions/elegoo_neptune_2.def.json b/resources/definitions/elegoo_neptune_2.def.json index 8e564289f5..8554137dcd 100644 --- a/resources/definitions/elegoo_neptune_2.def.json +++ b/resources/definitions/elegoo_neptune_2.def.json @@ -1,45 +1,62 @@ { - "name": "Neptune 2", "version": 2, + "name": "Neptune 2", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Toylerrr", "manufacturer": "Elegoo", - "platform": "elegoo_neptune_2.stl", - "platform_offset": [0,0,0], - "has_machine_quality": true, - "preferred_quality_type": "normal", "file_formats": "text/x-gcode", - "machine_extruder_trains": - { - "0": "elegoo_neptune2_extruder_0" - } + "platform": "elegoo_neptune_2.stl", + "has_machine_quality": true, + "machine_extruder_trains": { "0": "elegoo_neptune2_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ], + "preferred_quality_type": "normal" }, - - "overrides": { - "machine_name": {"default_value": "ELEGOO Neptune 2"}, - "machine_width": {"default_value": 235}, - "machine_height": {"default_value": 260}, - "machine_depth": {"default_value": 235}, - "machine_heated_bed": {"default_value": true}, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "brim_width": { "default_value": 5 }, + "gantry_height": { "value": 30 }, + "machine_depth": { "default_value": 235 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F1600 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "value": [ + [-30, 35], + [-30, -10], + [25, 35], + [25, -10] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 260 }, + "machine_name": { "default_value": "ELEGOO Neptune 2" }, + "machine_start_gcode": { "default_value": ";simage\n;gimage\nG28 ;home\nG92 E0 ;Reset Extruder\nG1 Z4.0 F3000 ;Move Z Axis up\nG92 E0 ;Reset Extruder\nG1 X1.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X1.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X1.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X1.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up" }, + "machine_width": { "default_value": 235 }, "material_diameter": { "default_value": 1.75 }, - "machine_head_with_fans_polygon": {"value": [[-30, 35], [-30, -10], [25, 35], [25, -10]]}, - "gantry_height": {"value": 30}, - "speed_print": { "value": 60.0 } , - "z_seam_type":{"default_value": "back"}, - "z_seam_corner":{"default_value": "z_seam_corner_weighted"}, - "material_standby_temperature":{"default_value": 200,"settable_per_extruder": false}, - "retraction_enable":{"default_value": true}, - "retraction_amount":{"default_value": 5}, - "retraction_speed":{"default_value": 70}, - "adhesion_type":{"default_value": "skirt"}, - "raft_margin":{"default_value": 5}, - "raft_airgap":{"default_value": 0.25}, - "brim_width":{"default_value": 5}, - "skin_angles":{"default_value": [45, 135]}, - "machine_gcode_flavor": {"default_value": "RepRap (Marlin/Sprinter)"}, - "machine_start_gcode": {"default_value": ";simage\n;gimage\nG28 ;home\nG92 E0 ;Reset Extruder\nG1 Z4.0 F3000 ;Move Z Axis up\nG92 E0 ;Reset Extruder\nG1 X1.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X1.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X1.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X1.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up"}, - "machine_end_gcode": {"default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F1600 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z"} + "material_standby_temperature": + { + "default_value": 200, + "settable_per_extruder": false + }, + "raft_airgap": { "default_value": 0.25 }, + "raft_margin": { "default_value": 5 }, + "retraction_amount": { "default_value": 5 }, + "retraction_enable": { "default_value": true }, + "retraction_speed": { "default_value": 70 }, + "skin_angles": + { + "default_value": [45, 135] + }, + "speed_print": { "value": 60.0 }, + "z_seam_corner": { "default_value": "z_seam_corner_weighted" }, + "z_seam_type": { "default_value": "back" } } -} +} \ No newline at end of file diff --git a/resources/definitions/elegoo_neptune_2D.def.json b/resources/definitions/elegoo_neptune_2D.def.json index 78e87d6f40..c9aa5a0184 100644 --- a/resources/definitions/elegoo_neptune_2D.def.json +++ b/resources/definitions/elegoo_neptune_2D.def.json @@ -1,54 +1,74 @@ { - "name": "Neptune 2D", "version": 2, + "name": "Neptune 2D", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Toylerrr", "manufacturer": "Elegoo", - "platform": "elegoo_neptune_2.stl", - "platform_offset": [0,0,0], - "has_machine_quality": true, - "preferred_quality_type": "normal", "file_formats": "text/x-gcode", + "platform": "elegoo_neptune_2.stl", + "has_machine_quality": true, "machine_extruder_trains": { "0": "elegoo_neptune2D_extruder_0", "1": "elegoo_neptune2D_extruder_1" - } + }, + "platform_offset": [ + 0, + 0, + 0 + ], + "preferred_quality_type": "normal" }, - - "overrides": { - "machine_name": {"default_value": "ELEGOO Neptune 2D"}, - "machine_extruder_count": {"default_value": 2}, - "machine_width": {"default_value": 235}, - "machine_height": {"default_value": 260}, - "machine_depth": {"default_value": 235}, - "machine_heated_bed": {"default_value": true}, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "brim_width": { "default_value": 5 }, + "gantry_height": { "value": 30 }, + "machine_always_write_active_tool": { "default_value": true }, + "machine_depth": { "default_value": 235 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-80 Z0.2 F1600 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_extruders_share_heater": { "default_value": true }, + "machine_extruders_share_nozzle": { "default_value": true }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "value": [ + [-30, 35], + [-30, -10], + [25, 35], + [25, -10] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 260 }, + "machine_name": { "default_value": "ELEGOO Neptune 2D" }, + "machine_start_gcode": { "default_value": ";simage\n;gimage\nG28 ;home\n;G29 ;Run ABL\n;M420 S1 ;Enable ABL mesh\nG92 E0 ;Reset Extruder\nG1 Z4.0 F3000 ;Move Z Axis up\nG92 E0 ;Reset Extruder\nG1 X2.0 Y20 Z0.28 F5000.0 ;Move to start position\nG1 E90 F1200 ;Load filament\nG92 E0 ;Reset Extruder\nG1 X2.0 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X2.3 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X2.3 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up" }, + "machine_width": { "default_value": 235 }, "material_diameter": { "default_value": 1.75 }, - "machine_head_with_fans_polygon": {"value": [[-30, 35], [-30, -10], [25, 35], [25, -10]]}, - "gantry_height": {"value": 30}, - "machine_extruders_share_heater": {"default_value": true}, - "machine_extruders_share_nozzle": {"default_value": true}, - "machine_always_write_active_tool": {"default_value": true}, - "prime_blob_enable": {"default_value": false}, - "prime_tower_enable": {"default_value": true}, - "prime_tower_size": {"default_value": 30}, - "prime_tower_min_volume": {"default_value": 90}, + "material_standby_temperature": + { + "default_value": 200, + "settable_per_extruder": false + }, + "prime_blob_enable": { "default_value": false }, + "prime_tower_enable": { "default_value": true }, + "prime_tower_min_volume": { "default_value": 90 }, + "prime_tower_size": { "default_value": 30 }, + "raft_airgap": { "default_value": 0.25 }, + "raft_margin": { "default_value": 5 }, + "retraction_amount": { "default_value": 5 }, + "retraction_enable": { "default_value": true }, + "retraction_speed": { "default_value": 70 }, + "skin_angles": + { + "default_value": [45, 135] + }, "speed_print": { "value": 60.0 }, - "z_seam_type":{"default_value": "back"}, - "z_seam_corner":{"default_value": "z_seam_corner_weighted"}, - "material_standby_temperature":{"default_value": 200,"settable_per_extruder": false}, - "retraction_enable":{"default_value": true}, - "retraction_amount":{"default_value": 5}, - "retraction_speed":{"default_value": 70}, - "adhesion_type":{"default_value": "skirt"}, - "raft_margin":{"default_value": 5}, - "raft_airgap":{"default_value": 0.25}, - "brim_width":{"default_value": 5}, - "skin_angles":{"default_value": [45, 135]}, - "machine_gcode_flavor": {"default_value": "RepRap (Marlin/Sprinter)"}, - "machine_start_gcode": {"default_value": ";simage\n;gimage\nG28 ;home\n;G29 ;Run ABL\n;M420 S1 ;Enable ABL mesh\nG92 E0 ;Reset Extruder\nG1 Z4.0 F3000 ;Move Z Axis up\nG92 E0 ;Reset Extruder\nG1 X2.0 Y20 Z0.28 F5000.0 ;Move to start position\nG1 E90 F1200 ;Load filament\nG92 E0 ;Reset Extruder\nG1 X2.0 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X2.3 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X2.3 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up"}, - "machine_end_gcode": {"default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-80 Z0.2 F1600 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z"} + "z_seam_corner": { "default_value": "z_seam_corner_weighted" }, + "z_seam_type": { "default_value": "back" } } -} +} \ No newline at end of file diff --git a/resources/definitions/elegoo_neptune_2s.def.json b/resources/definitions/elegoo_neptune_2s.def.json new file mode 100644 index 0000000000..e1d6b14082 --- /dev/null +++ b/resources/definitions/elegoo_neptune_2s.def.json @@ -0,0 +1,30 @@ +{ + "version": 2, + "name": "ELEGOO NEPTUNE 2S", + "inherits": "elegoo_base", + "metadata": + { + "visible": true, + "author": "NARUTO", + "quality_definition": "elegoo_base" + }, + "overrides": + { + "machine_depth": { "default_value": 235 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-10 X5 Y5 Z3 F3000 ;Retract\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_head_with_fans_polygon": + { + "value": [ + [-55, 20], + [55, 20], + [55, -25], + [-55, -25] + ] + }, + "machine_height": { "default_value": 260 }, + "machine_name": { "default_value": "ELEGOO NEPTUNE 2S" }, + "machine_start_gcode": { "default_value": ";ELEGOO NEPTUNE 2S\nG90\nG28 ;home\nG1 Z0.6 F100 ;Move Z Axis up\nG92 E0 ;Reset Extruder\nG1 X1.5 Y20 F5000.0 ;Move to start position\nG1 Y120.0 F600.0 E20 ;Draw the first line\nG1 X0.5 F1000.0 ;Move to side a little\nG1 Y20 F600.0 E40 ;Draw the second line\nG92 E0 ;Reset Extruder" }, + "machine_width": { "default_value": 235 }, + "material_bed_temperature": { "value": "default_material_bed_temperature + 10" } + } +} \ No newline at end of file diff --git a/resources/definitions/elegoo_neptune_3.def.json b/resources/definitions/elegoo_neptune_3.def.json new file mode 100644 index 0000000000..2bb7e035ce --- /dev/null +++ b/resources/definitions/elegoo_neptune_3.def.json @@ -0,0 +1,30 @@ +{ + "version": 2, + "name": "ELEGOO NEPTUNE 3", + "inherits": "elegoo_base", + "metadata": + { + "visible": true, + "author": "NARUTO", + "quality_definition": "elegoo_base" + }, + "overrides": + { + "machine_depth": { "default_value": 235 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-10 X5 Y5 Z3 F3000 ;Retract\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_head_with_fans_polygon": + { + "value": [ + [-55, 20], + [55, 20], + [55, -25], + [-55, -25] + ] + }, + "machine_height": { "default_value": 280 }, + "machine_name": { "default_value": "ELEGOO NEPTUNE 3" }, + "machine_start_gcode": { "default_value": ";ELEGOO NEPTUNE 3\n;M413 S0;S0=Disable power-loss recovery:S1=Enable power-loss recovery\nM220 S100 ;Set the feed speed to 100%\nG90\nG28 ;home\n;M420 S1 Z10;Uncomment to enable progressive compensation height of 10mm\nG92 E0 ;Reset Extruder\nG1 Z0.6 F100\nG1 X1.5 Y20 F5000.0 ;Move to start position\nG1 Y120.0 F600.0 E20 ;Draw the first line\nG1 X0.5 F1000.0 ;Move to side a little\nG1 Y20 F600 E40 ;Draw the second line\nG92 E0 ;Reset Extruder" }, + "machine_width": { "default_value": 235 }, + "material_bed_temperature": { "value": "default_material_bed_temperature + 10" } + } +} \ No newline at end of file diff --git a/resources/definitions/elegoo_neptune_3max.def.json b/resources/definitions/elegoo_neptune_3max.def.json new file mode 100644 index 0000000000..4d4148a5d2 --- /dev/null +++ b/resources/definitions/elegoo_neptune_3max.def.json @@ -0,0 +1,26 @@ +{ + "version": 2, + "name": "ELEGOO NEPTUNE 3 Max", + "inherits": "elegoo_neptune_3pro", + "metadata": + { + "platform": "elegoo_platform_max.3mf", + "platform_offset": [ + -2.1, + -0.2, + 0 + ] + }, + "overrides": + { + "acceleration_wall": { "value": 700 }, + "machine_acceleration": { "value": 700 }, + "machine_depth": { "default_value": 426 }, + "machine_height": { "default_value": 510 }, + "machine_max_acceleration_x": { "value": 700 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_name": { "default_value": "ELEGOO NEPTUNE 3 Max" }, + "machine_start_gcode": { "default_value": ";ELEGOO NEPTUNE 3 Max\nM220 S100 ;Set the feed speed to 100%\nM221 S100 ;Set the flow rate to 100%\nG90\nG28 ;home\n;M420 S1 Z10;Uncomment to enable progressive compensation height of 10mm\nG92 E0 ;Reset Extruder\nG1 Z0.45 F300\nG1 X1.5 Y20 F5000.0 ;Move to start position\nG1 Y120.0 F600.0 E15 ;Draw the first line\nG1 X0.5 F1000.0 ;Move to side a little\nG1 Y20 F600 E30 ;Draw the second line\nG92 E0 ;Reset Extruder" }, + "machine_width": { "default_value": 426 } + } +} \ No newline at end of file diff --git a/resources/definitions/elegoo_neptune_3plus.def.json b/resources/definitions/elegoo_neptune_3plus.def.json new file mode 100644 index 0000000000..3d2187042f --- /dev/null +++ b/resources/definitions/elegoo_neptune_3plus.def.json @@ -0,0 +1,26 @@ +{ + "version": 2, + "name": "ELEGOO NEPTUNE 3 Plus", + "inherits": "elegoo_neptune_3pro", + "metadata": + { + "platform": "elegoo_platform_max.3mf", + "platform_offset": [ + -2.1, + -0.2, + 0 + ] + }, + "overrides": + { + "acceleration_wall": { "value": 700 }, + "machine_acceleration": { "value": 700 }, + "machine_depth": { "default_value": 330 }, + "machine_height": { "default_value": 410 }, + "machine_max_acceleration_x": { "value": 700 }, + "machine_max_acceleration_y": { "value": 700 }, + "machine_name": { "default_value": "ELEGOO NEPTUNE 3 Plus" }, + "machine_start_gcode": { "default_value": ";ELEGOO NEPTUNE 3 Plus\nM220 S100 ;Set the feed speed to 100%\nM221 S100 ;Set the flow rate to 100%\nG90\nG28 ;home\n;M420 S1 Z10;Uncomment to enable progressive compensation height of 10mm\nG92 E0 ;Reset Extruder\nG1 Z0.45 F300\nG1 X1.5 Y20 F5000.0 ;Move to start position\nG1 Y120.0 F600.0 E15 ;Draw the first line\nG1 X0.5 F1000.0 ;Move to side a little\nG1 Y20 F600 E30 ;Draw the second line\nG92 E0 ;Reset Extruder" }, + "machine_width": { "default_value": 330 } + } +} \ No newline at end of file diff --git a/resources/definitions/elegoo_neptune_3pro.def.json b/resources/definitions/elegoo_neptune_3pro.def.json new file mode 100644 index 0000000000..9d2bacbf1f --- /dev/null +++ b/resources/definitions/elegoo_neptune_3pro.def.json @@ -0,0 +1,38 @@ +{ + "version": 2, + "name": "ELEGOO NEPTUNE 3 Pro", + "inherits": "elegoo_base", + "metadata": + { + "visible": true, + "author": "NARUTO", + "quality_definition": "elegoo_base" + }, + "overrides": + { + "infill_overlap": { "value": "0 if infill_sparse_density < 40.01 and infill_pattern != 'concentric' else -5" }, + "machine_depth": { "default_value": 235 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-8 X5 Y5 Z3 F3000 ;Retract\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_head_with_fans_polygon": + { + "value": [ + [-55, 30], + [55, 30], + [55, -35], + [-55, -35] + ] + }, + "machine_height": { "default_value": 280 }, + "machine_name": { "default_value": "ELEGOO NEPTUNE 3 Pro" }, + "machine_start_gcode": { "default_value": ";ELEGOO NEPTUNE 3 Pro\nM220 S100 ;Set the feed speed to 100%\nM221 S100 ;Set the flow rate to 100%\nG90\nG28 ;home\n;M420 S1 Z10;Uncomment to enable progressive compensation height of 10mm\nG92 E0 ;Reset Extruder\nG1 Z0.45 F300\nG1 X1.5 Y20 F5000.0 ;Move to start position\nG1 Y120.0 F600.0 E15 ;Draw the first line\nG1 X0.5 F1000.0 ;Move to side a little\nG1 Y20 F600 E30 ;Draw the second line\nG92 E0 ;Reset Extruder" }, + "machine_width": { "default_value": 235 }, + "material_bed_temperature": { "value": "default_material_bed_temperature + 10" }, + "retraction_amount": { "value": 1 }, + "retraction_count_max": { "value": 80 }, + "retraction_prime_speed": { "resolve": 25 }, + "retraction_retract_speed": { "resolve": 25 }, + "retraction_speed": { "resolve": 25 }, + "speed_travel": { "value": "150 if speed_print < 100 else speed_print * 1.5" }, + "speed_travel_layer_0": { "value": "100" } + } +} \ No newline at end of file diff --git a/resources/definitions/elegoo_neptune_x.def.json b/resources/definitions/elegoo_neptune_x.def.json new file mode 100644 index 0000000000..77f6c1e10d --- /dev/null +++ b/resources/definitions/elegoo_neptune_x.def.json @@ -0,0 +1,30 @@ +{ + "version": 2, + "name": "ELEGOO NEPTUNE X", + "inherits": "elegoo_base", + "metadata": + { + "visible": true, + "author": "NARUTO", + "quality_definition": "elegoo_base" + }, + "overrides": + { + "machine_depth": { "default_value": 235 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-10 X5 Y5 Z3 F3000 ;Retract\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_head_with_fans_polygon": + { + "value": [ + [-55, 20], + [55, 20], + [55, -25], + [-55, -25] + ] + }, + "machine_height": { "default_value": 310 }, + "machine_name": { "default_value": "ELEGOO NEPTUNE X" }, + "machine_start_gcode": { "default_value": ";ELEGOO NEPTUNE X\nG90\nG28 ;home\nG1 Z0.6 F3000 ;Move Z Axis up\nG92 E0 ;Reset Extruder\nG1 X1.5 Y20 F5000.0 ;Move to start position\nG1 Y120.0 F600.0 E20 ;Draw the first line\nG1 X0.5 F1000.0 ;Move to side a little\nG1 Y20 F600.0 E40 ;Draw the second line\nG92 E0 ;Reset Extruder" }, + "machine_width": { "default_value": 235 }, + "material_bed_temperature": { "value": "default_material_bed_temperature + 5" } + } +} \ No newline at end of file diff --git a/resources/definitions/eryone_er20.def.json b/resources/definitions/eryone_er20.def.json index 2f5f02d7db..e05f195bfb 100644 --- a/resources/definitions/eryone_er20.def.json +++ b/resources/definitions/eryone_er20.def.json @@ -2,43 +2,47 @@ "version": 2, "name": "Eryone ER20", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Eryone3d", "manufacturer": "Eryone", "file_formats": "text/x-gcode", "platform": "eryone_er20_plateform.stl", "has_machine_quality": true, - "preferred_quality_type": "high", - "machine_extruder_trains": - { - "0": "eryone_er20_extruder_0" - } + "machine_extruder_trains": { "0": "eryone_er20_extruder_0" }, + "preferred_quality_type": "high" }, - - "overrides": { - "machine_name": { - "default_value": "Eryone ER20" + "overrides": + { + "acceleration_enabled": { "value": true }, + "acceleration_travel": { "value": 1800 }, + "adhesion_type": { "value": "'brim'" }, + "bottom_layers": { "value": "4" }, + "bottom_thickness": { "value": "layer_height * 4" }, + "brim_width": { "value": 5 }, + "cool_fan_full_at_height": { "value": 0.5 }, + "cool_fan_speed": { "value": 100 }, + "cool_fan_speed_0": { "value": 100 }, + "default_material_bed_temperature": { "value": 60 }, + "default_material_print_temperature": { "value": 205 }, + "gantry_height": { "value": "0" }, + "infill_before_walls": { "value": false }, + "infill_overlap": + { + "maximum_value_warning": 100, + "minimum_value_warning": -50, + "value": "25 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0" }, - "machine_heated_bed": { - "default_value": true - }, - "machine_width": { - "default_value": 250 - }, - "machine_height": { - "default_value": 200 - }, - "machine_depth": { - "default_value": 220 - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_head_with_fans_polygon": { + "infill_pattern": { "value": "'grid'" }, + "infill_sparse_density": { "value": 20 }, + "initial_layer_line_width_factor": { "value": 105 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 Z5 F720 ;Raise Z\nG1 E-5 F300 ;Retract a bit to protect nozzle\nM104 S0 ;Turn off extruder\nM140 S0 ;Turn off bed\nM107 ;Turn off all fans\nG90 ;Absolute positioning\nG1 X230 Y200 F4800 ;Parking the hotend\nM84 X Y E ;All steppers off but left Z\n" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ [-10, -10], [-10, 10], @@ -46,196 +50,60 @@ [10, -10] ] }, - "gantry_height":{ "value": "0" }, - "machine_start_gcode": { - "default_value": "G21 ;Metric values\nG90 ;Absolute positioning\nM82 ;Set extruder to absolute mode\nM107 ;Start with the fan off\nG28 ;Homing the hotend\nG29 ;Auto bed leveling detecting\nG92 E0 ;Reset the extruded length\nG1 F200 E3 ;Extrude 3mm of filament\nG92 E0 ;Reset the extruded length again\nG1 Y-3 F1200 ;Move y axis to prime\nG1 X150 F6000 ;Move x axis to prime\nG1 Z0.2 F720 ;Move z axis to prime\nG1 X80.0 E8.0 F900 ;Prime line\nG1 X20.0 E10.0 F700 ;Prime line\nG92 E0 ;Reset the extruded length\nG5 ;Enable resume from power failure\nM117 Printing...\n" + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "Eryone ER20" }, + "machine_start_gcode": { "default_value": "G21 ;Metric values\nG90 ;Absolute positioning\nM82 ;Set extruder to absolute mode\nM107 ;Start with the fan off\nG28 ;Homing the hotend\nG29 ;Auto bed leveling detecting\nG92 E0 ;Reset the extruded length\nG1 F200 E3 ;Extrude 3mm of filament\nG92 E0 ;Reset the extruded length again\nG1 Y-3 F1200 ;Move y axis to prime\nG1 X150 F6000 ;Move x axis to prime\nG1 Z0.2 F720 ;Move z axis to prime\nG1 X80.0 E8.0 F900 ;Prime line\nG1 X20.0 E10.0 F700 ;Prime line\nG92 E0 ;Reset the extruded length\nG5 ;Enable resume from power failure\nM117 Printing...\n" }, + "machine_width": { "default_value": 250 }, + "material_bed_temperature_layer_0": { "value": 65 }, + "material_final_print_temperature": { "value": 205 }, + "material_initial_print_temperature": { "value": 205 }, + "material_print_temperature_layer_0": { "value": 215 }, + "optimize_wall_printing_order": { "default_value": true }, + "retract_at_layer_change": { "value": true }, + "retraction_amount": { "default_value": 4 }, + "retraction_combing": { "value": "'noskin'" }, + "retraction_hop": { "value": 0.075 }, + "retraction_hop_enabled": { "value": false }, + "retraction_hop_only_when_collides": { "value": true }, + "retraction_min_travel": { "value": 1.5 }, + "retraction_prime_speed": + { + "maximum_value_warning": 130, + "value": "math.ceil(retraction_speed * 0.4)" }, - "machine_end_gcode": { - "default_value": "G91 ;Relative positioning\nG1 Z5 F720 ;Raise Z\nG1 E-5 F300 ;Retract a bit to protect nozzle\nM104 S0 ;Turn off extruder\nM140 S0 ;Turn off bed\nM107 ;Turn off all fans\nG90 ;Absolute positioning\nG1 X230 Y200 F4800 ;Parking the hotend\nM84 X Y E ;All steppers off but left Z\n" - }, - "material_print_temperature": { - "value": 205 - }, - "material_print_temperature_layer_0": { - "value": 215 - }, - "material_initial_print_temperature": { - "value": 205 - }, - "material_final_print_temperature": { - "value": 205 - }, - "acceleration_enabled": { - "value": true - }, - "acceleration_travel": { - "value": 1800 - }, - "adhesion_type": { - "value": "'brim'" - }, - "brim_width": { - "value": 5 - }, - "cool_fan_full_at_height": { - "value": 0.5 - }, - "cool_fan_speed": { - "value": 100 - }, - "cool_fan_speed_0": { - "value": 100 - }, - "infill_overlap": { - "value": "25 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0", - "maximum_value_warning": 100, - "minimum_value_warning": -50 - }, - "infill_pattern": { - "value": "'grid'" - }, - "infill_sparse_density": { - "value": 20 - }, - "initial_layer_line_width_factor": { - "value": 105 - }, - "infill_before_walls": { - "value": false - }, - "material_bed_temperature": { - "value": 60 - }, - "material_bed_temperature_layer_0": { - "value": 65 - }, - "optimize_wall_printing_order": { - "default_value": true - }, - "retract_at_layer_change": { - "value": true - }, - "retraction_amount": { - "default_value": 4 - }, - "retraction_hop": { - "value": 0.075 - }, - "retraction_hop_enabled": { - "value": false - }, - "retraction_hop_only_when_collides": { - "value": true - }, - "retraction_min_travel": { - "value": 1.5 - }, - "retraction_speed": { + "retraction_retract_speed": { "maximum_value_warning": 130 }, + "retraction_speed": + { "default_value": 85, "maximum_value_warning": 100 }, - "retraction_retract_speed": { - "maximum_value_warning": 130 - }, - "retraction_prime_speed": { - "value": "math.ceil(retraction_speed * 0.4)", - "maximum_value_warning": 130 - }, - "retraction_combing": { - "value": "'noskin'" - }, - "skin_overlap": { - "value": 10 - }, - "skirt_brim_speed": { - "value": 40 - }, - "skirt_gap": { - "value": 5 - }, - "skirt_line_count": { - "value": 3 - }, - "speed_infill": { - "value": "speed_print" - }, - "speed_topbottom": { - "value": "math.ceil(speed_print * 20 / 50)" - }, - "speed_travel": { - "value": "150" - }, - "speed_layer_0": { - "value": "20" - }, - "speed_wall": { - "value": "speed_print" - }, - "speed_wall_0": { - "value": "math.ceil(speed_print * 30 / 50)" - }, - "speed_wall_x": { - "value": "speed_print" - }, - "support_angle": { - "value": 50 - }, - "support_enable": { - "default_value": false - }, - "support_interface_enable": { - "value": true - }, - "support_pattern": { - "value": "'triangles'" - }, - "support_roof_enable": { - "value": true - }, - "support_type": { - "value": "'everywhere'" - }, - "support_use_towers": { - "value": false - }, - "support_z_distance": { - "value": 0.3 - }, - "support_xy_distance": { - "value": 0.7 - }, - "support_xy_distance_overhang": { - "value": 0.2 - }, - "smooth_spiralized_contours": { - "value": false - }, - "travel_retract_before_outer_wall": { - "value": true - }, - "wall_line_count": { - "value": 3 - }, - "wall_thickness": { - "value": "1.2" - }, - "bottom_layers": { - "value": "4" - }, - "bottom_thickness":{ - "value": "layer_height * 4" - }, - "top_thickness":{ - "value": "layer_height * 5" - }, - "top_layers": { - "value": "5" - }, - "z_seam_type": { - "value": "'shortest'" - }, - "z_seam_corner": { - "value": "'z_seam_corner_inner'" - } + "skin_overlap": { "value": 10 }, + "skirt_brim_speed": { "value": 40 }, + "skirt_gap": { "value": 5 }, + "skirt_line_count": { "value": 3 }, + "smooth_spiralized_contours": { "value": false }, + "speed_layer_0": { "value": "20" }, + "speed_topbottom": { "value": "math.ceil(speed_print * 20 / 50)" }, + "speed_travel": { "value": "150" }, + "speed_wall": { "value": "speed_print" }, + "speed_wall_0": { "value": "math.ceil(speed_print * 30 / 50)" }, + "speed_wall_x": { "value": "speed_print" }, + "support_angle": { "value": 50 }, + "support_enable": { "default_value": false }, + "support_interface_enable": { "value": true }, + "support_pattern": { "value": "'triangles'" }, + "support_roof_enable": { "value": true }, + "support_type": { "value": "'everywhere'" }, + "support_xy_distance": { "value": 0.7 }, + "support_xy_distance_overhang": { "value": 0.2 }, + "support_z_distance": { "value": 0.3 }, + "top_layers": { "value": "5" }, + "top_thickness": { "value": "layer_height * 5" }, + "travel_retract_before_outer_wall": { "value": true }, + "wall_line_count": { "value": 3 }, + "wall_thickness": { "value": "1.2" }, + "z_seam_corner": { "value": "'z_seam_corner_inner'" }, + "z_seam_type": { "value": "'shortest'" } } -} +} \ No newline at end of file diff --git a/resources/definitions/eryone_thinker.def.json b/resources/definitions/eryone_thinker.def.json index 33c96f45ca..cacde272be 100644 --- a/resources/definitions/eryone_thinker.def.json +++ b/resources/definitions/eryone_thinker.def.json @@ -9,52 +9,46 @@ "manufacturer": "Eryone", "file_formats": "text/x-gcode", "platform": "eryone_thinker_platform.obj", - "platform_texture": "eryone_thinker_plate.png", - "platform_offset": [0, -120, 0], - "has_materials": true, - "preferred_material": "eryone_pla", + "first_start_actions": [ "MachineSettingsAction" ], "has_machine_quality": true, - "preferred_quality_type": "normal", - "machine_extruder_trains": - { - "0": "eryone_thinker_extruder_0" - }, - "first_start_actions": ["MachineSettingsAction"] + "has_materials": true, + "machine_extruder_trains": { "0": "eryone_thinker_extruder_0" }, + "platform_offset": [ + 0, + -120, + 0 + ], + "platform_texture": "eryone_thinker_plate.png", + "preferred_material": "eryone_pla", + "preferred_quality_type": "normal" }, - "overrides": { - "machine_name": { - "default_value": "Eryone Thinker Series" - }, - "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 Z10.0 F600 ;move the platform down 10mm\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 Y-3 F1200 ;move to prime\nG1 X10 F1200 ;\nG1 Z0.1 F600 ;get ready to prime\nG1 X120 E15 F1200 ;prime nozzle \nG1 X120 F3600 ;quick wipe\nG92 E0 ;zero the extruded length\nM413 S1 ;enable resume from power failure\nM117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;turn off extruder\nM140 S0 ;turn off bed\nM107 ;turn off all fans\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 ;move Z up a bit and retract filament even more\nG90 ;absolute positioning\nG1 X0 Y250 F4800 ; position for easy part removal\nM84 ;steppers off" - }, - "material_diameter": { - "default_value": 1.75 - }, - "machine_width": { - "default_value": 300 - }, - "machine_depth": { - "default_value": 300 - }, - "machine_height": { - "default_value": 400 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_head_with_fans_polygon": { + "acceleration_enabled": { "value": true }, + "acceleration_print": { "value": 750 }, + "acceleration_travel": { "value": 1500 }, + "adhesion_type": { "value": "'skirt'" }, + "bottom_layers": { "value": 4 }, + "bottom_thickness": { "value": "layer_height * bottom_layers" }, + "brim_width": { "value": 5 }, + "gantry_height": { "value": 30 }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": "25 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0" }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 25 else 'grid'" }, + "infill_sparse_density": { "value": 20 }, + "initial_layer_line_width_factor": { "value": 120 }, + "inset_direction": { "default_value": "inside_out" }, + "jerk_enabled": { "value": true }, + "jerk_print": { "value": 10 }, + "jerk_travel": { "value": 15 }, + "layer_height": { "value": 0.2 }, + "layer_height_0": { "resolve": "max(0.1, layer_height)" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "M104 S0 ;turn off extruder\nM140 S0 ;turn off bed\nM107 ;turn off all fans\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 ;move Z up a bit and retract filament even more\nG90 ;absolute positioning\nG1 X0 Y250 F4800 ; position for easy part removal\nM84 ;steppers off" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ [-20, 30], [-20, -20], @@ -62,200 +56,72 @@ [20, 30] ] }, - "gantry_height": { - "value": 30 - }, - "layer_height": { - "value": 0.2 - }, - "layer_height_0": { - "resolve": "max(0.1, layer_height)" - }, - "initial_layer_line_width_factor": { - "value": 120 - }, - "wall_line_count": { - "value": 3 - }, - "wall_thickness": { - "value": "line_width * wall_line_count" - }, - "optimize_wall_printing_order": { - "default_value": true - }, - "z_seam_type": { - "value": "'shortest'" - }, - "z_seam_corner": { - "value": "'z_seam_corner_inner'" - }, - "roofing_layer_count": { - "value": 1 - }, - "top_layers": { - "value": 6 - }, - "top_thickness":{ - "value": "layer_height * top_layers" - }, - "bottom_layers": { - "value": 4 - }, - "bottom_thickness":{ - "value": "layer_height * bottom_layers" - }, - "skin_overlap": { - "value": 10 - }, - "infill_sparse_density": { - "value": 20 - }, - "infill_pattern": { - "value": "'lines' if infill_sparse_density > 25 else 'grid'" - }, - "infill_overlap": { - "value": "25 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0" - }, - "infill_before_walls": { - "value": false - }, - "inset_direction": { - "default_value": "inside_out" - }, - "material_print_temperature": { - "value": "default_material_print_temperature", - "maximum_value_warning": 250 - }, - "material_print_temperature_layer_0": { - "value": "material_print_temperature + 5", - "maximum_value_warning": 250 - }, - "material_initial_print_temperature": { - "value": "material_print_temperature", - "maximum_value_warning": 250 - }, - "material_final_print_temperature": { + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Eryone Thinker Series" }, + "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 Z10.0 F600 ;move the platform down 10mm\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 Y-3 F1200 ;move to prime\nG1 X10 F1200 ;\nG1 Z0.1 F600 ;get ready to prime\nG1 X120 E15 F1200 ;prime nozzle \nG1 X120 F3600 ;quick wipe\nG92 E0 ;zero the extruded length\nM413 S1 ;enable resume from power failure\nM117 Printing..." }, + "machine_width": { "default_value": 300 }, + "material_bed_temperature": { "maximum_value_warning": 100 }, + "material_bed_temperature_layer_0": { "value": "material_bed_temperature" }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": + { + "maximum_value_warning": 250, "value": "material_print_temperature" }, - "material_bed_temperature": { - "value": "default_material_bed_temperature", - "maximum_value_warning": 100 + "material_print_temperature": + { + "maximum_value_warning": 250, + "value": "default_material_print_temperature" }, - "material_bed_temperature_layer_0": { - "value": "material_bed_temperature" + "material_print_temperature_layer_0": + { + "maximum_value_warning": 250, + "value": "material_print_temperature + 5" }, - "speed_infill": { - "value": "speed_print" + "optimize_wall_printing_order": { "default_value": true }, + "retract_at_layer_change": { "value": true }, + "retraction_amount": { "default_value": 4.5 }, + "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, + "retraction_hop": { "value": 0.1 }, + "retraction_hop_enabled": { "value": false }, + "retraction_hop_only_when_collides": { "value": true }, + "retraction_min_travel": { "value": "max(line_width * 2, 1.5)" }, + "retraction_prime_speed": + { + "maximum_value_warning": 130, + "value": "math.ceil(retraction_speed * 0.4)" }, - "speed_wall": { - "value": "speed_print" - }, - "speed_wall_0": { - "value": "math.ceil(speed_print * 30 / 50)" - }, - "speed_wall_x": { - "value": "speed_print" - }, - "speed_topbottom": { - "value": "math.ceil(speed_print * 20 / 50)" - }, - "speed_travel": { - "value": "speed_print if magic_spiralize else 120" - }, - "speed_layer_0": { - "value": "math.ceil(speed_print * 30 / 50)" - }, - "skirt_brim_speed": { - "value": "math.ceil(speed_print * 40 / 60)" - }, - "speed_z_hop": { - "value": "math.ceil(speed_print * 30 / 60)" - }, - "acceleration_enabled": { - "value": true - }, - "acceleration_print": { - "value": 750 - }, - "acceleration_travel": { - "value": 1500 - }, - "jerk_enabled": { - "value": true - }, - "jerk_print": { - "value": 10 - }, - "jerk_travel": { - "value": 15 - }, - "retract_at_layer_change": { - "value": true - }, - "retraction_amount": { - "default_value": 4.5 - }, - "retraction_speed": { + "retraction_retract_speed": { "maximum_value_warning": 130 }, + "retraction_speed": + { "default_value": 85, "maximum_value_warning": 100 }, - "retraction_retract_speed": { - "maximum_value_warning": 130 - }, - "retraction_prime_speed": { - "value": "math.ceil(retraction_speed * 0.4)", - "maximum_value_warning": 130 - }, - "retraction_min_travel": { - "value": "max(line_width * 2, 1.5)" - }, - "retraction_combing": { - "value": "'off' if retraction_hop_enabled else 'noskin'" - }, - "travel_retract_before_outer_wall": { - "value": true - }, - "retraction_hop_enabled": { - "value": false - }, - "retraction_hop_only_when_collides": { - "value": true - }, - "retraction_hop": { - "value": 0.1 - }, - "support_pattern": { - "value": "'triangles'" - }, - "support_z_distance": { - "value": 0.3 - }, - "support_interface_enable": { - "value": true - }, - "support_roof_enable": { - "value": true - }, - "support_use_towers": { - "value": false - }, - "adhesion_type": { - "value": "'skirt'" - }, - "skirt_line_count": { - "value": 3 - }, - "skirt_gap": { - "value": 5 - }, - "brim_width": { - "value": 5 - }, - "smooth_spiralized_contours": { - "value": false - }, - "roofing_monotonic": { - "value": true - } + "roofing_layer_count": { "value": 1 }, + "skin_overlap": { "value": 10 }, + "skirt_brim_speed": { "value": "math.ceil(speed_print * 40 / 60)" }, + "skirt_gap": { "value": 5 }, + "skirt_line_count": { "value": 3 }, + "smooth_spiralized_contours": { "value": false }, + "speed_layer_0": { "value": "math.ceil(speed_print * 30 / 50)" }, + "speed_topbottom": { "value": "math.ceil(speed_print * 20 / 50)" }, + "speed_travel": { "value": "speed_print if magic_spiralize else 120" }, + "speed_wall": { "value": "speed_print" }, + "speed_wall_0": { "value": "math.ceil(speed_print * 30 / 50)" }, + "speed_wall_x": { "value": "speed_print" }, + "speed_z_hop": { "value": "math.ceil(speed_print * 30 / 60)" }, + "support_interface_enable": { "value": true }, + "support_pattern": { "value": "'triangles'" }, + "support_roof_enable": { "value": true }, + "support_z_distance": { "value": 0.3 }, + "top_layers": { "value": 6 }, + "top_thickness": { "value": "layer_height * top_layers" }, + "travel_retract_before_outer_wall": { "value": true }, + "wall_line_count": { "value": 3 }, + "wall_thickness": { "value": "line_width * wall_line_count" }, + "z_seam_corner": { "value": "'z_seam_corner_inner'" }, + "z_seam_type": { "value": "'shortest'" } } } \ No newline at end of file diff --git a/resources/definitions/eryone_thinker_direct.def.json b/resources/definitions/eryone_thinker_direct.def.json index c27645235b..c7637f525b 100644 --- a/resources/definitions/eryone_thinker_direct.def.json +++ b/resources/definitions/eryone_thinker_direct.def.json @@ -1,18 +1,19 @@ { - "name": "Eryone Thinker DirectDrive", "version": 2, + "name": "Eryone Thinker DirectDrive", "inherits": "eryone_thinker", - "overrides": { - "machine_name": { "default_value": "Eryone Thinker DirectDrive" } - }, - "metadata": { + "metadata": + { "quality_definition": "eryone_thinker", - "speed_print": { - "maximum_value_warning": 130 - }, - "retraction_speed": { + "retraction_speed": + { "default_value": 35, "maximum_value_warning": 40 - } + }, + "speed_print": { "maximum_value_warning": 130 } + }, + "overrides": + { + "machine_name": { "default_value": "Eryone Thinker DirectDrive" } } } \ No newline at end of file diff --git a/resources/definitions/erzay3d.def.json b/resources/definitions/erzay3d.def.json index dc1ad9a509..28884a894a 100644 --- a/resources/definitions/erzay3d.def.json +++ b/resources/definitions/erzay3d.def.json @@ -1,78 +1,66 @@ { - "name": "Erzay3D", "version": 2, + "name": "Erzay3D", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Alexander Kirsanov", "manufacturer": "Robokinetika", "file_formats": "text/x-gcode", - "machine_extruder_trains": - { - "0": "erzay3d_extruder_0" - } + "machine_extruder_trains": { "0": "erzay3d_extruder_0" } }, - - "overrides": { - "machine_start_gcode" : { "default_value": "G28\nG1 Z15.0 F6000\nG92 E0" }, - "machine_shape": { "default_value": "elliptic"}, - "machine_name": { "default_value": "Erzay3D" }, - "machine_depth": { "default_value": 210 }, - "machine_width": { "default_value": 210 }, - "machine_height": { "default_value": 230 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_center_is_zero": { "default_value": true }, - "machine_extruder_count": { "default_value": 1 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_heated_bed": { "default_value": true }, - "material_bed_temp_wait": { "default_value": true }, - "material_print_temp_wait": { "default_value": true }, - "material_print_temp_prepend": { "default_value": true }, - "machine_buildplate_type": { "default_value": "glass" }, - "machine_nozzle_head_distance": { "default_value": 2.5 }, - "machine_heat_zone_length": { "default_value": 12.5 }, - "machine_max_feedrate_x": { "default_value": 200 }, - "machine_max_feedrate_y": { "default_value": 200 }, - "machine_max_feedrate_z": { "default_value": 200 }, - "machine_max_feedrate_e": { "default_value": 50 }, - "machine_max_acceleration_x": { "default_value": 3000 }, - "machine_max_acceleration_y": { "default_value": 3000 }, - "machine_max_acceleration_z": { "default_value": 3000 }, - "machine_max_acceleration_e": { "default_value": 3000 }, - "machine_acceleration": { "default_value": 1000 }, - "machine_max_jerk_xy": { "default_value": 10 }, - "machine_max_jerk_z": { "default_value": 10 }, - "machine_max_jerk_e": { "default_value": 10 }, - "machine_steps_per_mm_x": { "default_value": 1600 }, - "machine_steps_per_mm_y": { "default_value": 1600 }, - "machine_steps_per_mm_z": { "default_value": 1600 }, - "machine_steps_per_mm_e": { "default_value": 174 }, - "machine_feeder_wheel_diameter": { "default_value": 12 }, - - "layer_height": { "default_value": 0.2 }, - "layer_height_0": { "default_value": 0.2 }, - - "ironing_pattern": { "default_value": "concentric" }, - "ironing_flow": { "default_value": 7.0 }, - - "infill_sparse_density": { "default_value": 20 }, - - "default_material_print_temperature": { "default_value": 220 }, - "retraction_amount": { "default_value": 6.5 }, - - "speed_print": { "default_value": 40 }, - - "acceleration_print": { "default_value": 1000 }, - - "jerk_print": { "default_value": 10 }, - - "support_angle": { "default_value": 65 }, - "support_brim_enable": { "value": true }, - - "adhesion_type": { "default_value": "skirt" }, - "brim_outside_only": { "default_value": false }, - - "meshfix_maximum_resolution": { "default_value": 0.25 } + "overrides": + { + "acceleration_print": { "default_value": 1000 }, + "adhesion_type": { "default_value": "skirt" }, + "brim_outside_only": { "default_value": false }, + "default_material_print_temperature": { "default_value": 220 }, + "infill_sparse_density": { "default_value": 20 }, + "ironing_flow": { "default_value": 7.0 }, + "ironing_pattern": { "default_value": "concentric" }, + "jerk_print": { "default_value": 10 }, + "layer_height": { "default_value": 0.2 }, + "layer_height_0": { "default_value": 0.2 }, + "machine_acceleration": { "default_value": 1000 }, + "machine_buildplate_type": { "default_value": "glass" }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 210 }, + "machine_extruder_count": { "default_value": 1 }, + "machine_feeder_wheel_diameter": { "default_value": 12 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heat_zone_length": { "default_value": 12.5 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 230 }, + "machine_max_acceleration_e": { "default_value": 3000 }, + "machine_max_acceleration_x": { "default_value": 3000 }, + "machine_max_acceleration_y": { "default_value": 3000 }, + "machine_max_acceleration_z": { "default_value": 3000 }, + "machine_max_feedrate_e": { "default_value": 50 }, + "machine_max_feedrate_x": { "default_value": 200 }, + "machine_max_feedrate_y": { "default_value": 200 }, + "machine_max_feedrate_z": { "default_value": 200 }, + "machine_max_jerk_e": { "default_value": 10 }, + "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" }, + "machine_steps_per_mm_e": { "default_value": 174 }, + "machine_steps_per_mm_x": { "default_value": 1600 }, + "machine_steps_per_mm_y": { "default_value": 1600 }, + "machine_steps_per_mm_z": { "default_value": 1600 }, + "machine_width": { "default_value": 210 }, + "material_bed_temp_wait": { "default_value": true }, + "material_diameter": { "default_value": 1.75 }, + "material_print_temp_prepend": { "default_value": true }, + "material_print_temp_wait": { "default_value": true }, + "meshfix_maximum_resolution": { "default_value": 0.25 }, + "retraction_amount": { "default_value": 6.5 }, + "speed_print": { "default_value": 40 }, + "support_angle": { "default_value": 65 }, + "support_brim_enable": { "value": true } } -} +} \ No newline at end of file diff --git a/resources/definitions/fablabbcn_pasteprinter.def.json b/resources/definitions/fablabbcn_pasteprinter.def.json new file mode 100644 index 0000000000..bfd0725c06 --- /dev/null +++ b/resources/definitions/fablabbcn_pasteprinter.def.json @@ -0,0 +1,38 @@ +{ + "version": 2, + "name": "PastePrinter", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "eduardo_chamorro", + "manufacturer": "FablabBcn", + "file_formats": "text/x-gcode", + "first_start_actions": [ "MachineSettingsAction" ], + "machine_extruder_trains": { "0": "fablabbcn_0" } + }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "layer_height": { "default_value": 1.5 }, + "layer_height_0": { "default_value": 1.5 }, + "machine_always_write_active_tool": { "default_value": true }, + "machine_depth": { "default_value": 235 }, + "machine_end_gcode": { "default_value": ";FOOTER\nG91; relative positioning\nM107; turn off layer fan\nG1 Z50 F1000\nM400;Wait finish move\nG90; absolute positioning\nG1 X235 Y235\n;ENDFOOTER" }, + "machine_height": { "default_value": 235 }, + "machine_max_jerk_e": { "default_value": 50.0 }, + "machine_max_jerk_xy": { "default_value": 50.0 }, + "machine_max_jerk_z": { "default_value": 50.0 }, + "machine_nozzle_size": { "settable_per_extruder": false }, + "machine_start_gcode": { "default_value": ";HEADER;\nG21; Set to metric [change to G20 if you want Imperial]\nG91;Force coordinates to be absolute relative to the origin \nG1 Z10 F1000;\nG90; Force coordinates to be absolute relative to the origin\nG28 X; Home X axis\nG28 Y; Home Y axis\nG28 Z; Home Z axis\nM302 P1; Disable Cold Extrusion Checking\nG92 E0; Reset extruder to [0] zero end of cleaning run\nG91; Force coordinates to be absolute relative to the origin\nG1 Z10 F1000;\nG90;\nT0;\nM117 Printing...;ENDHEADER" }, + "machine_width": { "default_value": 235 }, + "material_bed_temp_prepend": { "default_value": false }, + "material_bed_temp_wait": { "default_value": false }, + "material_diameter": { "default_value": 1.75 }, + "material_print_temp_prepend": { "default_value": false }, + "material_print_temp_wait": { "default_value": false }, + "retraction_enable": { "default_value": false }, + "speed_print": { "default_value": 15 }, + "top_bottom_pattern": { "default_value": "concentric" } + } +} \ No newline at end of file diff --git a/resources/definitions/fabtotum.def.json b/resources/definitions/fabtotum.def.json index 1f2565803f..2be0437e33 100644 --- a/resources/definitions/fabtotum.def.json +++ b/resources/definitions/fabtotum.def.json @@ -2,7 +2,8 @@ "version": 2, "name": "Fabtotum Personal Fabricator", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Fabtotum", "manufacturer": "Fabtotum", @@ -10,60 +11,66 @@ "platform": "fabtotum_platform.3mf", "has_machine_quality": true, "has_variants": true, - "variants_name": "Head", - "preferred_variant_name": "Lite 0.4 mm", + "machine_extruder_trains": { "0": "fabtotum_extruder_0" }, "preferred_material": "fabtotum_pla", + "preferred_variant_name": "Lite 0.4 mm", "supports_usb_connection": false, - "machine_extruder_trains": - { - "0": "fabtotum_extruder_0" - } + "variants_name": "Head" }, - "overrides": { - "machine_name": { "default_value": "FABtotum Personal Fabricator" }, - "machine_start_gcode": { - "default_value": ";Layer height: {layer_height}\n;Walls: {wall_thickness}\n;Fill: {infill_sparse_density}\n;Top\\Bottom Thickness: {top_bottom_thickness}\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nG4 S1 ;1 millisecond pause to buffer the bep bep \nM300 S2 ;FAB bep bep (start the print, go check the oozing and skirt lines adesion) \nG4 S1 ;1 second pause to reach the printer (run fast)\nG92 E0 ;zero the extruded length \nG1 F200 E35 ;slowly extrude 35mm of filament to clean the nozzle and build up extrusion pressure \nG92 E0 ;zero the extruded length again \n;print" - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-3 X+5 Y+5 F5000 ;move Z up a bit and retract filament even more\n;end of the print\nM84 ;steppers off\nG90 ;absolute positioning\nM300 S2 ;FAB bep bep (end print)" - }, + "overrides": + { "gantry_height": { "value": "55" }, - "machine_width": { "default_value": 214 }, - "machine_height": { "default_value": 241.5 }, - "machine_depth": { "default_value": 234 }, + "infill_sparse_density": { "default_value": 24 }, + "machine_acceleration": { "default_value": 4000 }, "machine_center_is_zero": { "default_value": false }, - "machine_heated_bed": { "default_value": true }, - "machine_head_with_fans_polygon": { "default_value": [[-75, 35], [-75, -18], [18, 35], [18, -18]] }, + "machine_depth": { "default_value": 234 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-3 X+5 Y+5 F5000 ;move Z up a bit and retract filament even more\n;end of the print\nM84 ;steppers off\nG90 ;absolute positioning\nM300 S2 ;FAB bep bep (end print)" }, "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_max_feedrate_x": { "default_value": 250 }, - "machine_max_feedrate_y": { "default_value": 250 }, - "machine_max_feedrate_z": { "default_value": 15 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-75, 35], + [-75, -18], + [18, 35], + [18, -18] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 241.5 }, + "machine_max_acceleration_e": { "default_value": 100 }, "machine_max_acceleration_x": { "default_value": 10000 }, "machine_max_acceleration_y": { "default_value": 10000 }, "machine_max_acceleration_z": { "default_value": 50 }, - "machine_max_acceleration_e": { "default_value": 100 }, - "machine_acceleration": { "default_value": 4000 }, + "machine_max_feedrate_x": { "default_value": 250 }, + "machine_max_feedrate_y": { "default_value": 250 }, + "machine_max_feedrate_z": { "default_value": 15 }, + "machine_max_jerk_e": { "default_value": 1.0 }, "machine_max_jerk_xy": { "default_value": 25.0 }, "machine_max_jerk_z": { "default_value": 0.4 }, - "machine_max_jerk_e": { "default_value": 1.0 }, - "retraction_hop_enabled": { "default_value": false }, + "machine_name": { "default_value": "FABtotum Personal Fabricator" }, + "machine_start_gcode": { "default_value": ";Layer height: {layer_height}\n;Walls: {wall_thickness}\n;Fill: {infill_sparse_density}\n;Top\\Bottom Thickness: {top_bottom_thickness}\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nG4 S1 ;1 millisecond pause to buffer the bep bep \nM300 S2 ;FAB bep bep (start the print, go check the oozing and skirt lines adesion) \nG4 S1 ;1 second pause to reach the printer (run fast)\nG92 E0 ;zero the extruded length \nG1 F200 E35 ;slowly extrude 35mm of filament to clean the nozzle and build up extrusion pressure \nG92 E0 ;zero the extruded length again \n;print" }, + "machine_width": { "default_value": 214 }, "material_final_print_temperature": { "value": "material_print_temperature - 5" }, "material_initial_print_temperature": { "value": "material_print_temperature" }, - "travel_avoid_distance": { "value": 1 }, - "speed_travel": { "value": 200 }, + "retraction_hop_enabled": { "default_value": false }, + "skirt_brim_minimal_length": { "default_value": 150 }, + "skirt_brim_speed": { "value": "speed_layer_0" }, + "skirt_line_count": { "default_value": 3 }, "speed_infill": { "value": "round(speed_print * 1.05, 0)" }, + "speed_layer_0": { "value": "min(round(speed_print * 0.75, 0), 45.0)" }, "speed_topbottom": { "value": "round(speed_print * 0.95, 0)" }, + "speed_travel": { "value": 200 }, + "speed_travel_layer_0": { "value": "round(speed_travel * 0.7, 0)" }, "speed_wall": { "value": "speed_print" }, "speed_wall_0": { "value": "round(speed_print * 0.9, 0)" }, "speed_wall_x": { "value": "speed_wall" }, - "speed_layer_0": { "value": "min(round(speed_print * 0.75, 0), 45.0)" }, - "speed_travel_layer_0": { "value": "round(speed_travel * 0.7, 0)" }, - "skirt_brim_speed": { "value": "speed_layer_0" }, - "skirt_line_count": { "default_value": 3 }, - "skirt_brim_minimal_length": { "default_value": 150 }, - "infill_sparse_density": { "default_value": 24 }, + "support_interface_enable": { "default_value": true }, + "support_z_distance": + { + "default_value": 0.2, + "value": "min(2 * layer_height, machine_nozzle_size * 0.75)" + }, "top_bottom_thickness": { "default_value": 0.6 }, - "support_z_distance": { "default_value": 0.2, "value": "min(2 * layer_height, machine_nozzle_size * 0.75)" }, - "support_interface_enable": { "default_value": true } + "travel_avoid_distance": { "value": 1 } } -} +} \ No newline at end of file diff --git a/resources/definitions/fabxpro.def.json b/resources/definitions/fabxpro.def.json index 03858988e7..7aaa9d658b 100644 --- a/resources/definitions/fabxpro.def.json +++ b/resources/definitions/fabxpro.def.json @@ -2,57 +2,37 @@ "version": 2, "name": "FabX Pro", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "FabX", "manufacturer": "FabX", "file_formats": "text/x-gcode", "platform": "fabxpro_platform.3mf", - "has_materials": true, "has_machine_quality": true, - "machine_extruder_trains": - { - "0": "fabxpro_extruder_0" - } + "has_materials": true, + "machine_extruder_trains": { "0": "fabxpro_extruder_0" } }, - - "overrides": { - "machine_name": { "default_value": "FabX Pro" }, - "machine_width": { - "default_value": 170 - }, - "machine_height": { - "default_value": 170 - }, - "machine_depth": { - "default_value": 170 - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_heated_bed": { - "default_value": true - }, + "overrides": + { + "gantry_height": { "value": "55" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 170 }, + "machine_end_gcode": { "value": "'M104 S0 ;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_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { "default_value": [ - [ -75, 35 ], - [ -75, -18 ], - [ 18, 35 ], - [ 18, -18 ] + [-75, 35], + [-75, -18], + [18, 35], + [18, -18] ] }, - "gantry_height": { - "value": "55" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "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 E3 ;extrude 3 mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..." - }, - "machine_end_gcode": { - "value": "'M104 S0 ;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_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 170 }, + "machine_name": { "default_value": "FabX Pro" }, + "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 E3 ;extrude 3 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": 170 } } -} +} \ No newline at end of file diff --git a/resources/definitions/farm2.def.json b/resources/definitions/farm2.def.json index 382e1841d0..7b63286d04 100644 --- a/resources/definitions/farm2.def.json +++ b/resources/definitions/farm2.def.json @@ -2,56 +2,38 @@ "version": 2, "name": "Farm 2", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Farm3D", "manufacturer": "Farm3D LLC", "file_formats": "text/x-gcode", "platform": "farm2_platform.obj", - "platform_texture": "farm2plate.png", - "platform_offset": [-7, 0, -4], - "has_variants": true, - "preferred_variant_name": "PrintHead 0.4 mm", - "variants_name": "PrintHead type", - "has_materials": true, - "preferred_material": "generic_pla", "has_machine_quality": false, - "machine_extruder_trains": - { - "0": "farm2_extruder_1" - - } - + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "farm2_extruder_1" }, + "platform_offset": [ + -7, + 0, + -4 + ], + "platform_texture": "farm2plate.png", + "preferred_material": "generic_pla", + "preferred_variant_name": "PrintHead 0.4 mm", + "variants_name": "PrintHead type" }, - "overrides": { + "overrides": + { + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 199 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28\nM84\nM81" }, + "machine_gcode_flavor": { "default_value": "RepRap (RepRap)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 197 }, "machine_name": { "default_value": "Farm 2" }, - "machine_start_gcode" : { - "default_value": "G28 ;Home\nG1 Y0 Z3.0 F4000 ;Move the platform\nG92 E0\nG1 F1000 Z0.2\nG1 X190 F1000 E50 Z0.2\nG92 E0" - }, - "machine_end_gcode" : { - "default_value": "M104 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28\nM84\nM81" - }, - "machine_width": { - "default_value": 203 - }, - "machine_depth": { - "default_value": 199 - }, - "machine_height": { - "default_value": 197 - }, - "machine_heated_bed": { - "default_value": true - }, - "material_diameter": { - "default_value": 1.75 - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_gcode_flavor": { - "default_value": "RepRap (RepRap)" - } - + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Y0 Z3.0 F4000 ;Move the platform\nG92 E0\nG1 F1000 Z0.2\nG1 X190 F1000 E50 Z0.2\nG92 E0" }, + "machine_width": { "default_value": 203 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/definitions/farm2_ce.def.json b/resources/definitions/farm2_ce.def.json index bb7f14d84a..6dd0e2758b 100644 --- a/resources/definitions/farm2_ce.def.json +++ b/resources/definitions/farm2_ce.def.json @@ -2,56 +2,38 @@ "version": 2, "name": "Farm 2CE", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Farm3D", "manufacturer": "Farm3D LLC", "file_formats": "text/x-gcode", "platform": "farm2_platform.obj", - "platform_texture": "farm2ceplate.png", - "platform_offset": [-7, 0, -4], - "has_variants": true, - "preferred_variant_name": "PrintHead 0.4 mm", - "variants_name": "PrintHead type", - "has_materials": true, - "preferred_material": "generic_pla", "has_machine_quality": false, - "machine_extruder_trains": - { - "0": "farm2_ce_extruder_1" - - } - + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "farm2_ce_extruder_1" }, + "platform_offset": [ + -7, + 0, + -4 + ], + "platform_texture": "farm2ceplate.png", + "preferred_material": "generic_pla", + "preferred_variant_name": "PrintHead 0.4 mm", + "variants_name": "PrintHead type" }, - "overrides": { + "overrides": + { + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 199 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28\nM84" }, + "machine_gcode_flavor": { "default_value": "RepRap (RepRap)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 213 }, "machine_name": { "default_value": "Farm 2CE" }, - "machine_start_gcode" : { - "default_value": "G28\nG29 S0\nG92 E0\nG1 X0 Y0 F4000 Z0.1\nG1 Y0 X190 F1000 E50 Z0.3\nG1 Z0" - }, - "machine_end_gcode" : { - "default_value": "M104 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28\nM84" - }, - "machine_width": { - "default_value": 209 - }, - "machine_depth": { - "default_value": 199 - }, - "machine_height": { - "default_value": 213 - }, - "machine_heated_bed": { - "default_value": true - }, - "material_diameter": { - "default_value": 1.75 - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_gcode_flavor": { - "default_value": "RepRap (RepRap)" - } - + "machine_start_gcode": { "default_value": "G28\nG29 S0\nG92 E0\nG1 X0 Y0 F4000 Z0.1\nG1 Y0 X190 F1000 E50 Z0.3\nG1 Z0" }, + "machine_width": { "default_value": 209 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/definitions/fdmextruder.def.json b/resources/definitions/fdmextruder.def.json index a1917fc9b9..61b0653b06 100644 --- a/resources/definitions/fdmextruder.def.json +++ b/resources/definitions/fdmextruder.def.json @@ -1,257 +1,257 @@ { - "name": "Extruder", "version": 2, + "name": "Extruder", "metadata": { - "type": "extruder", + "visible": false, "author": "Ultimaker", "manufacturer": "Unknown", - "setting_version": 20, - "visible": false, - "position": "0" + "position": "0", + "setting_version": 21, + "type": "extruder" }, "settings": { "machine_settings": { - "label": "Machine", - "type": "category", - "description": "Machine specific settings", "children": { "extruder_nr": { - "label": "Extruder", - "description": "The extruder train used for printing. This is used in multi-extrusion.", - "type": "extruder", "default_value": "0", + "description": "The extruder train used for printing. This is used in multi-extrusion.", + "label": "Extruder", + "settable_globally": false, + "settable_per_extruder": true, "settable_per_mesh": true, - "settable_per_extruder": true, "settable_per_meshgroup": false, - "settable_globally": false - }, - "machine_nozzle_id": - { - "label": "Nozzle ID", - "description": "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\".", - "type": "str", - "default_value": "unknown", - "settable_per_mesh": false, - "settable_per_extruder": true - }, - "machine_nozzle_size": - { - "label": "Nozzle Diameter", - "description": "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size.", - "unit": "mm", - "type": "float", - "default_value": 0.4, - "minimum_value": "0.001", - "maximum_value_warning": "10", - "settable_per_mesh": false, - "settable_per_extruder": true - }, - "machine_nozzle_offset_x": - { - "label": "Nozzle X Offset", - "description": "The x-coordinate of the offset of the nozzle.", - "type": "float", - "unit": "mm", - "default_value": 0, - "settable_per_mesh": false, - "settable_per_extruder": true, - "settable_per_meshgroup": false, - "settable_globally": false - }, - "machine_nozzle_offset_y": - { - "label": "Nozzle Y Offset", - "description": "The y-coordinate of the offset of the nozzle.", - "type": "float", - "unit": "mm", - "default_value": 0, - "settable_per_mesh": false, - "settable_per_extruder": true, - "settable_per_meshgroup": false, - "settable_globally": false - }, - "machine_extruder_start_code": - { - "label": "Extruder Start G-Code", - "description": "Start g-code to execute when switching to this extruder.", - "type": "str", - "default_value": "", - "settable_per_mesh": false, - "settable_per_extruder": true, - "settable_per_meshgroup": false, - "settable_globally": false - }, - "machine_extruder_start_pos_abs": - { - "label": "Extruder Start Position Absolute", - "description": "Make the extruder starting position absolute rather than relative to the last-known location of the head.", - "type": "bool", - "default_value": false, - "settable_per_mesh": false, - "settable_per_extruder": true, - "settable_per_meshgroup": false, - "settable_globally": false - }, - "machine_extruder_start_pos_x": - { - "label": "Extruder Start Position X", - "description": "The x-coordinate of the starting position when turning the extruder on.", - "type": "float", - "unit": "mm", - "default_value": 0, - "settable_per_mesh": false, - "settable_per_extruder": true, - "settable_per_meshgroup": false, - "settable_globally": false - }, - "machine_extruder_start_pos_y": - { - "label": "Extruder Start Position Y", - "description": "The y-coordinate of the starting position when turning the extruder on.", - "type": "float", - "unit": "mm", - "default_value": 0, - "settable_per_mesh": false, - "settable_per_extruder": true, - "settable_per_meshgroup": false, - "settable_globally": false - }, - "machine_extruder_end_code": - { - "label": "Extruder End G-Code", - "description": "End g-code to execute when switching away from this extruder.", - "type": "str", - "default_value": "", - "settable_per_mesh": false, - "settable_per_extruder": true, - "settable_per_meshgroup": false, - "settable_globally": false - }, - "machine_extruder_end_pos_abs": - { - "label": "Extruder End Position Absolute", - "description": "Make the extruder ending position absolute rather than relative to the last-known location of the head.", - "type": "bool", - "default_value": false, - "settable_per_mesh": false, - "settable_per_extruder": true, - "settable_per_meshgroup": false, - "settable_globally": false - }, - "machine_extruder_end_pos_x": - { - "label": "Extruder End Position X", - "description": "The x-coordinate of the ending position when turning the extruder off.", - "type": "float", - "unit": "mm", - "default_value": 0, - "settable_per_mesh": false, - "settable_per_extruder": true, - "settable_per_meshgroup": false, - "settable_globally": false - }, - "machine_extruder_end_pos_y": - { - "label": "Extruder End Position Y", - "description": "The y-coordinate of the ending position when turning the extruder off.", - "type": "float", - "unit": "mm", - "default_value": 0, - "settable_per_mesh": false, - "settable_per_extruder": true, - "settable_per_meshgroup": false, - "settable_globally": false + "type": "extruder" }, "extruder_prime_pos_z": { - "label": "Extruder Prime Z Position", + "default_value": 0, "description": "The Z coordinate of the position where the nozzle primes at the start of printing.", - "type": "float", - "unit": "mm", - "default_value": 0, - "minimum_value_warning": "0", + "label": "Extruder Prime Z Position", "maximum_value": "machine_height", + "minimum_value_warning": "0", + "settable_per_extruder": true, "settable_per_mesh": false, - "settable_per_extruder": true + "type": "float", + "unit": "mm" }, - "machine_extruder_cooling_fan_number": + "machine_extruder_cooling_fan_number": { - "label": "Extruder Print Cooling Fan", + "default_value": 0, "description": "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.", - "type": "int", - "default_value": 0, + "label": "Extruder Print Cooling Fan", "minimum_value": "0", - "settable_per_mesh": false, + "settable_globally": false, "settable_per_extruder": true, + "settable_per_mesh": false, "settable_per_meshgroup": false, - "settable_globally": false - } - } - }, - "platform_adhesion": - { - "label": "Build Plate Adhesion", - "type": "category", - "icon": "Adhesion", - "description": "Adhesion", - "children": - { - "extruder_prime_pos_x": - { - "label": "Extruder Prime X Position", - "description": "The X coordinate of the position where the nozzle primes at the start of printing.", - "type": "float", - "unit": "mm", - "default_value": 0, - "minimum_value_warning": "machine_nozzle_offset_x", - "maximum_value": "machine_width", - "settable_per_mesh": false, - "settable_per_extruder": true, - "enabled": false + "type": "int" }, - "extruder_prime_pos_y": + "machine_extruder_end_code": { - "label": "Extruder Prime Y Position", - "description": "The Y coordinate of the position where the nozzle primes at the start of printing.", - "type": "float", - "unit": "mm", - "default_value": 0, - "minimum_value_warning": "machine_nozzle_offset_y", - "maximum_value_warning": "machine_depth", - "settable_per_mesh": false, + "default_value": "", + "description": "End g-code to execute when switching away from this extruder.", + "label": "Extruder End G-Code", + "settable_globally": false, "settable_per_extruder": true, - "enabled": false + "settable_per_mesh": false, + "settable_per_meshgroup": false, + "type": "str" + }, + "machine_extruder_end_pos_abs": + { + "default_value": false, + "description": "Make the extruder ending position absolute rather than relative to the last-known location of the head.", + "label": "Extruder End Position Absolute", + "settable_globally": false, + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false, + "type": "bool" + }, + "machine_extruder_end_pos_x": + { + "default_value": 0, + "description": "The x-coordinate of the ending position when turning the extruder off.", + "label": "Extruder End Position X", + "settable_globally": false, + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false, + "type": "float", + "unit": "mm" + }, + "machine_extruder_end_pos_y": + { + "default_value": 0, + "description": "The y-coordinate of the ending position when turning the extruder off.", + "label": "Extruder End Position Y", + "settable_globally": false, + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false, + "type": "float", + "unit": "mm" + }, + "machine_extruder_start_code": + { + "default_value": "", + "description": "Start g-code to execute when switching to this extruder.", + "label": "Extruder Start G-Code", + "settable_globally": false, + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false, + "type": "str" + }, + "machine_extruder_start_pos_abs": + { + "default_value": false, + "description": "Make the extruder starting position absolute rather than relative to the last-known location of the head.", + "label": "Extruder Start Position Absolute", + "settable_globally": false, + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false, + "type": "bool" + }, + "machine_extruder_start_pos_x": + { + "default_value": 0, + "description": "The x-coordinate of the starting position when turning the extruder on.", + "label": "Extruder Start Position X", + "settable_globally": false, + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false, + "type": "float", + "unit": "mm" + }, + "machine_extruder_start_pos_y": + { + "default_value": 0, + "description": "The y-coordinate of the starting position when turning the extruder on.", + "label": "Extruder Start Position Y", + "settable_globally": false, + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false, + "type": "float", + "unit": "mm" + }, + "machine_nozzle_id": + { + "default_value": "unknown", + "description": "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\".", + "label": "Nozzle ID", + "settable_per_extruder": true, + "settable_per_mesh": false, + "type": "str" + }, + "machine_nozzle_offset_x": + { + "default_value": 0, + "description": "The x-coordinate of the offset of the nozzle.", + "label": "Nozzle X Offset", + "settable_globally": false, + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false, + "type": "float", + "unit": "mm" + }, + "machine_nozzle_offset_y": + { + "default_value": 0, + "description": "The y-coordinate of the offset of the nozzle.", + "label": "Nozzle Y Offset", + "settable_globally": false, + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false, + "type": "float", + "unit": "mm" + }, + "machine_nozzle_size": + { + "default_value": 0.4, + "description": "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size.", + "label": "Nozzle Diameter", + "maximum_value_warning": "10", + "minimum_value": "0.001", + "settable_per_extruder": true, + "settable_per_mesh": false, + "type": "float", + "unit": "mm" } - } + }, + "description": "Machine specific settings", + "label": "Machine", + "type": "category" }, "material": { - "label": "Material", - "icon": "Spool", - "description": "Material", - "type": "category", "children": { "material_diameter": { - "label": "Diameter", - "description": "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament.", - "unit": "mm", - "type": "float", "default_value": 2.85, + "description": "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament.", + "enabled": "machine_gcode_flavor != \"UltiGCode\"", + "label": "Diameter", + "maximum_value_warning": "3.5", "minimum_value": "0.0001", "minimum_value_warning": "0.4", - "maximum_value_warning": "3.5", - "enabled": "machine_gcode_flavor != \"UltiGCode\"", + "settable_per_extruder": true, "settable_per_mesh": false, - "settable_per_extruder": true + "type": "float", + "unit": "mm" } - } + }, + "description": "Material", + "icon": "Spool", + "label": "Material", + "type": "category" + }, + "platform_adhesion": + { + "children": + { + "extruder_prime_pos_x": + { + "default_value": 0, + "description": "The X coordinate of the position where the nozzle primes at the start of printing.", + "enabled": false, + "label": "Extruder Prime X Position", + "maximum_value": "machine_width", + "minimum_value_warning": "machine_nozzle_offset_x", + "settable_per_extruder": true, + "settable_per_mesh": false, + "type": "float", + "unit": "mm" + }, + "extruder_prime_pos_y": + { + "default_value": 0, + "description": "The Y coordinate of the position where the nozzle primes at the start of printing.", + "enabled": false, + "label": "Extruder Prime Y Position", + "maximum_value_warning": "machine_depth", + "minimum_value_warning": "machine_nozzle_offset_y", + "settable_per_extruder": true, + "settable_per_mesh": false, + "type": "float", + "unit": "mm" + } + }, + "description": "Adhesion", + "icon": "Adhesion", + "label": "Build Plate Adhesion", + "type": "category" } } -} +} \ No newline at end of file diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 52b20da473..dfb2c9ac64 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": 20, + "setting_version": 21, "file_formats": "text/x-gcode;model/stl;application/x-wavefront-obj;application/x3g", "visible": false, "has_materials": true, @@ -14,10 +14,7 @@ "has_machine_quality": false, "preferred_material": "generic_pla", "preferred_quality_type": "normal", - "machine_extruder_trains": - { - "0": "fdmextruder" - }, + "machine_extruder_trains": { "0": "fdmextruder" }, "supports_usb_connection": true, "supports_network_connection": false }, @@ -291,7 +288,7 @@ { "label": "Nozzle Angle", "description": "The angle between the horizontal plane and the conical part right above the tip of the nozzle.", - "unit": "°", + "unit": "\u00b0", "type": "int", "default_value": 45, "maximum_value": "89", @@ -325,9 +322,9 @@ "machine_nozzle_heat_up_speed": { "label": "Heat Up Speed", - "description": "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature.", + "description": "The speed (\u00b0C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature.", "default_value": 2.0, - "unit": "°C/s", + "unit": "\u00b0C/s", "type": "float", "enabled": "machine_nozzle_temp_enabled", "settable_per_mesh": false, @@ -336,9 +333,9 @@ "machine_nozzle_cool_down_speed": { "label": "Cool Down Speed", - "description": "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature.", + "description": "The speed (\u00b0C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature.", "default_value": 2.0, - "unit": "°C/s", + "unit": "\u00b0C/s", "type": "float", "enabled": "machine_nozzle_temp_enabled", "settable_per_mesh": false, @@ -426,9 +423,7 @@ "label": "Disallowed Areas", "description": "A list of polygons with areas the print head is not allowed to enter.", "type": "polygons", - "default_value": - [ - ], + "default_value": [], "settable_per_mesh": false, "settable_per_extruder": false, "settable_per_meshgroup": false @@ -438,9 +433,7 @@ "label": "Nozzle Disallowed Areas", "description": "A list of polygons with areas the nozzle is not allowed to enter.", "type": "polygons", - "default_value": - [ - ], + "default_value": [], "settable_per_mesh": false, "settable_per_extruder": false, "settable_per_meshgroup": false @@ -450,24 +443,11 @@ "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.", "type": "polygon", - "default_value": - [ - [ - -20, - 10 - ], - [ - 10, - 10 - ], - [ - 10, - -10 - ], - [ - -20, - -10 - ] + "default_value": [ + [-20, 10], + [10, 10], + [10, -10], + [-20, -10] ], "settable_per_mesh": false, "settable_per_extruder": false, @@ -584,7 +564,7 @@ { "label": "Maximum Acceleration X", "description": "Maximum acceleration for the motor of the X-direction", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "default_value": 9000, "settable_per_mesh": false, @@ -595,7 +575,7 @@ { "label": "Maximum Acceleration Y", "description": "Maximum acceleration for the motor of the Y-direction.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "default_value": 9000, "settable_per_mesh": false, @@ -606,7 +586,7 @@ { "label": "Maximum Acceleration Z", "description": "Maximum acceleration for the motor of the Z-direction.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "default_value": 100, "settable_per_mesh": false, @@ -617,7 +597,7 @@ { "label": "Maximum Filament Acceleration", "description": "Maximum acceleration for the motor of the filament.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "default_value": 10000, "settable_per_mesh": false, @@ -628,7 +608,7 @@ { "label": "Default Acceleration", "description": "The default acceleration of print head movement.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "default_value": 4000, "settable_per_mesh": false, @@ -1027,7 +1007,8 @@ "settable_per_meshgroup": true, "settable_globally": true, "enabled": "extruders_enabled_count > 1", - "children": { + "children": + { "wall_0_extruder_nr": { "label": "Outer Wall Extruder", @@ -1115,7 +1096,7 @@ "label": "Wall Transitioning Threshold Angle", "description": "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.", "type": "float", - "unit": "°", + "unit": "\u00b0", "default_value": 10, "minimum_value": "1", "minimum_value_warning": "5", @@ -1184,13 +1165,14 @@ "inset_direction": { "label": "Wall Ordering", - "description": "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.", + "description": "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.", "type": "enum", - "options": { + "options": + { "inside_out": "Inside To Outside", "outside_in": "Outside To Inside" }, - "default_value": "outside_in", + "default_value": "inside_out", "settable_per_mesh": true }, "alternate_extra_perimeter": @@ -1225,49 +1207,24 @@ "default_value": 0.3, "value": "min_wall_line_width", "type": "float", - "settable_per_mesh": true, - "children": - { - "wall_split_middle_threshold": { - "label": "Split Middle Line Threshold", - "description": "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall.", - "type": "float", - "unit": "%", - "default_value": 50, - "value": "max(1, min(99, 100 * (2 * min_even_wall_line_width - wall_line_width_0) / wall_line_width_0))", - "minimum_value": "1", - "maximum_value": "99" - } - } + "settable_per_mesh": true }, "min_odd_wall_line_width": { "label": "Minimum Odd Wall Line Width", - "description": "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,", + "description": "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.", "unit": "mm", "minimum_value_warning": ".5 * max(wall_line_width_0, wall_line_width_x)", "maximum_value_warning": "min(wall_line_width_0, wall_line_width_x)", "default_value": 0.3, "value": "min_wall_line_width", "type": "float", - "settable_per_mesh": true, - "children": - { - "wall_add_middle_threshold": { - "label": "Add Middle Line Threshold", - "description": "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall.", - "type": "float", - "unit": "%", - "default_value": 75, - "value": "max(1, min(99, 100 * min_odd_wall_line_width / wall_line_width_x))", - "minimum_value": "1", - "maximum_value": "99" - } - } + "settable_per_mesh": true } } }, - "fill_outline_gaps": { + "fill_outline_gaps": + { "label": "Print Thin Walls", "description": "Print pieces of the model which are horizontally thinner than the nozzle size.", "type": "bool", @@ -1341,7 +1298,19 @@ "limit_to_extruder": "wall_0_extruder_nr", "settable_per_mesh": true }, - "z_seam_type": + "hole_xy_offset_max_diameter": + { + "label": "Hole Horizontal Expansion Max Diameter", + "description": "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.", + "unit": "mm", + "type": "float", + "default_value": 0, + "minimum_value": "0", + "enabled": "hole_xy_offset > 0", + "limit_to_extruder": "wall_0_extruder_nr", + "settable_per_mesh": true + }, + "z_seam_type": { "label": "Z Seam Alignment", "description": "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.", @@ -1412,10 +1381,10 @@ "type": "enum", "options": { - "z_seam_corner_none": "None", - "z_seam_corner_inner": "Hide Seam", - "z_seam_corner_outer": "Expose Seam", - "z_seam_corner_any": "Hide or Expose Seam", + "z_seam_corner_none": "None", + "z_seam_corner_inner": "Hide Seam", + "z_seam_corner_outer": "Expose Seam", + "z_seam_corner_any": "Hide or Expose Seam", "z_seam_corner_weighted": "Smart Hiding" }, "default_value": "z_seam_corner_inner", @@ -1469,7 +1438,63 @@ "value": "0", "limit_to_extruder": "roofing_extruder_nr", "settable_per_mesh": true, - "enabled": "top_layers > 0" + "enabled": "top_layers > 0", + "children": + { + "roofing_line_width": + { + "label": "Top Surface Skin Line Width", + "description": "Width of a single line of the areas at the top 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": "roofing_extruder_nr", + "settable_per_mesh": true, + "enabled": "roofing_layer_count > 0 and top_layers > 0" + }, + "roofing_pattern": + { + "label": "Top Surface Skin Pattern", + "description": "The pattern of the top most layers.", + "type": "enum", + "options": + { + "lines": "Lines", + "concentric": "Concentric", + "zigzag": "Zig Zag" + }, + "default_value": "lines", + "value": "top_bottom_pattern", + "limit_to_extruder": "roofing_extruder_nr", + "settable_per_mesh": true, + "enabled": "roofing_layer_count > 0 and top_layers > 0" + }, + "roofing_monotonic": + { + "label": "Monotonic Top Surface Order", + "description": "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.", + "type": "bool", + "value": true, + "enabled": "roofing_layer_count > 0 and top_layers > 0 and roofing_pattern != 'concentric'", + "limit_to_extruder": "roofing_extruder_nr", + "settable_per_mesh": true + }, + "roofing_angles": + { + "label": "Top Surface Skin Line Directions", + "description": "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).", + "type": "[int]", + "default_value": "[ ]", + "value": "skin_angles", + "enabled": "roofing_pattern != 'concentric' and roofing_layer_count > 0 and top_layers > 0", + "limit_to_extruder": "roofing_extruder_nr", + "settable_per_mesh": true + } + } }, "top_bottom_extruder_nr": { @@ -1636,6 +1661,20 @@ "limit_to_extruder": "top_bottom_extruder_nr", "settable_per_mesh": true }, + "small_skin_width": + { + "label": "Small Top/Bottom Width", + "description": "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions.", + "value": "skin_line_width * 2", + "default_value": 1, + "minimum_value": "0", + "maximum_value_warning": "skin_line_width * 10", + "type": "float", + "enabled": "(top_layers > 0 or bottom_layers > 0) and top_bottom_pattern != 'concentric'", + "limit_to_extruder": "top_bottom_extruder_nr", + "settable_per_mesh": true, + "unit": "mm" + }, "skin_no_small_gaps_heuristic": { "label": "No Skin in Z Gaps", @@ -1763,7 +1802,7 @@ { "label": "Ironing Acceleration", "description": "The acceleration with which ironing is performed.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "minimum_value": "0.1", "minimum_value_warning": "100", @@ -1908,8 +1947,8 @@ "max_skin_angle_for_expansion": { "label": "Maximum Skin Angle for Expansion", - "description": "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.", - "unit": "°", + "description": "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\u00b0 is horizontal and will cause no skin to be expanded, while an angle of 90\u00b0 is vertical and will cause all skin to be expanded.", + "unit": "\u00b0", "type": "float", "minimum_value": "0", "minimum_value_warning": "2", @@ -2215,7 +2254,7 @@ { "label": "Minimum Infill Area", "description": "Don't generate areas of infill smaller than this (use skin instead).", - "unit": "mm²", + "unit": "mm\u00b2", "type": "float", "minimum_value": "0", "default_value": 0, @@ -2235,8 +2274,8 @@ "infill_support_angle": { "label": "Infill Overhang Angle", - "description": "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.", - "unit": "°", + "description": "The minimum angle of internal overhangs for which infill is added. At a value of 0\u00b0 objects are totally filled with infill, 90\u00b0 will not provide any infill.", + "unit": "\u00b0", "type": "float", "minimum_value": "0", "minimum_value_warning": "2", @@ -2262,27 +2301,27 @@ "settable_per_mesh": true, "children": { - "skin_edge_support_layers": - { - "label": "Skin Edge Support Layers", - "description": "The number of infill layers that supports skin edges.", - "default_value": 4, - "minimum_value": "0", - "maximum_value_warning": "10", - "type": "int", - "maximum_value": "999999", - "value": "math.ceil(round(skin_edge_support_thickness / resolveOrValue('infill_sparse_thickness'), 4))", - "limit_to_extruder": "infill_extruder_nr", - "enabled": "infill_sparse_density > 0", - "settable_per_mesh": true - } + "skin_edge_support_layers": + { + "label": "Skin Edge Support Layers", + "description": "The number of infill layers that supports skin edges.", + "default_value": 4, + "minimum_value": "0", + "maximum_value_warning": "10", + "type": "int", + "maximum_value": "999999", + "value": "math.ceil(round(skin_edge_support_thickness / resolveOrValue('infill_sparse_thickness'), 4))", + "limit_to_extruder": "infill_extruder_nr", + "enabled": "infill_sparse_density > 0", + "settable_per_mesh": true + } } }, "lightning_infill_support_angle": { "label": "Lightning Infill Support Angle", "description": "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer.", - "unit": "°", + "unit": "\u00b0", "type": "float", "minimum_value": "0", "maximum_value": "90", @@ -2298,7 +2337,7 @@ { "label": "Lightning Infill Overhang Angle", "description": "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness.", - "unit": "°", + "unit": "\u00b0", "type": "float", "minimum_value": "0", "maximum_value": "90", @@ -2314,7 +2353,7 @@ { "label": "Lightning Infill Prune Angle", "description": "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines.", - "unit": "°", + "unit": "\u00b0", "type": "float", "minimum_value": "0", "maximum_value": "90", @@ -2330,7 +2369,7 @@ { "label": "Lightning Infill Straightening Angle", "description": "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.", - "unit": "°", + "unit": "\u00b0", "type": "float", "minimum_value": "0", "maximum_value": "90", @@ -2358,7 +2397,7 @@ { "label": "Default Printing Temperature", "description": "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", - "unit": "°C", + "unit": "\u00b0C", "type": "float", "default_value": 210, "minimum_value_warning": "0", @@ -2373,7 +2412,7 @@ { "label": "Build Volume Temperature", "description": "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted.", - "unit": "°C", + "unit": "\u00b0C", "type": "float", "default_value": 0, "resolve": "min(extruderValues('build_volume_temperature'))", @@ -2388,7 +2427,7 @@ { "label": "Printing Temperature", "description": "The temperature used for printing.", - "unit": "°C", + "unit": "\u00b0C", "type": "float", "default_value": 210, "value": "default_material_print_temperature", @@ -2396,7 +2435,7 @@ "minimum_value_warning": "0", "maximum_value_warning": "285", "maximum_value": "365", - "enabled": "machine_nozzle_temp_enabled and not (material_flow_dependent_temperature)", + "enabled": "machine_nozzle_temp_enabled", "settable_per_mesh": false, "settable_per_extruder": true }, @@ -2404,7 +2443,7 @@ { "label": "Printing Temperature Initial Layer", "description": "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer.", - "unit": "°C", + "unit": "\u00b0C", "type": "float", "default_value": 215, "value": "material_print_temperature", @@ -2420,7 +2459,7 @@ { "label": "Initial Printing Temperature", "description": "The minimal temperature while heating up to the Printing Temperature at which printing can already start.", - "unit": "°C", + "unit": "\u00b0C", "type": "float", "default_value": 200, "value": "max(-273.15, material_print_temperature - 10)", @@ -2436,7 +2475,7 @@ { "label": "Final Printing Temperature", "description": "The temperature to which to already start cooling down just before the end of printing.", - "unit": "°C", + "unit": "\u00b0C", "type": "float", "default_value": 195, "value": "max(-273.15, material_print_temperature - 15)", @@ -2452,13 +2491,13 @@ { "label": "Extrusion Cool Down Speed Modifier", "description": "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.", - "unit": "°C/s", + "unit": "\u00b0C/s", "type": "float", "default_value": 0.7, "minimum_value": "0", "maximum_value_warning": "10.0", "maximum_value": "machine_nozzle_heat_up_speed", - "enabled": "material_flow_dependent_temperature or (extruders_enabled_count > 1 and material_final_print_temperature != material_print_temperature)", + "enabled": "extruders_enabled_count > 1 and material_final_print_temperature != material_print_temperature", "settable_per_mesh": false, "settable_per_extruder": true }, @@ -2466,7 +2505,7 @@ { "label": "Default Build Plate Temperature", "description": "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", - "unit": "°C", + "unit": "\u00b0C", "type": "float", "resolve": "max(extruderValues('default_material_bed_temperature'))", "default_value": 60, @@ -2483,7 +2522,7 @@ { "label": "Build Plate Temperature", "description": "The temperature used for the heated build plate. If this is 0, the build plate is left unheated.", - "unit": "°C", + "unit": "\u00b0C", "type": "float", "default_value": 60, "value": "default_material_bed_temperature", @@ -2501,7 +2540,7 @@ { "label": "Build Plate Temperature Initial Layer", "description": "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.", - "unit": "°C", + "unit": "\u00b0C", "type": "float", "resolve": "max(extruderValues('material_bed_temperature_layer_0'))", "default_value": 60, @@ -2657,7 +2696,7 @@ "label": "Break Preparation Temperature", "description": "The temperature used to purge material, should be roughly equal to the highest possible printing temperature.", "type": "float", - "unit": "°C", + "unit": "\u00b0C", "default_value": 50, "value": "material_print_temperature", "enabled": false, @@ -2698,7 +2737,7 @@ "label": "Break Temperature", "description": "The temperature at which the filament is broken for a clean break.", "type": "float", - "unit": "°C", + "unit": "\u00b0C", "default_value": 50, "enabled": false, "minimum_value": "-273.15", @@ -2969,12 +3008,55 @@ "maximum_value_warning": "150", "settable_per_mesh": true }, + "wall_x_material_flow_layer_0": + { + "label": "Initial Layer Inner Wall Flow", + "description": "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer", + "unit": "%", + "type": "float", + "default_value": 100, + "value": "material_flow_layer_0", + "minimum_value": "0.0001", + "minimum_value_warning": "50", + "maximum_value_warning": "150", + "limit_to_extruder": "wall_x_extruder_nr", + "settable_per_mesh": true + }, + "wall_0_material_flow_layer_0": + { + "label": "Initial Layer Outer Wall Flow", + "description": "Flow compensation on the outermost wall line of the first layer.", + "unit": "%", + "type": "float", + "default_value": 100, + "value": "material_flow_layer_0", + "minimum_value": "0.0001", + "minimum_value_warning": "50", + "maximum_value_warning": "150", + "limit_to_extruder": "wall_0_extruder_nr", + "settable_per_mesh": true + }, + "skin_material_flow_layer_0": + { + "label": "Initial Layer Bottom Flow", + "description": "Flow compensation on bottom lines of the first layer", + "unit": "%", + "type": "float", + "default_value": 100, + "value": "material_flow_layer_0", + "minimum_value": "0.0001", + "minimum_value_warning": "50", + "maximum_value_warning": "150", + "enabled": "bottom_layers > 0", + "limit_to_extruder": "top_bottom_extruder_nr", + "settable_per_mesh": true + }, "material_standby_temperature": { "label": "Standby Temperature", "description": "The temperature of the nozzle when another nozzle is currently used for printing.", "type": "float", - "unit": "°C", + "unit": "\u00b0C", "default_value": 150, "minimum_value": "-273.15", "minimum_value_warning": "0", @@ -3303,7 +3385,7 @@ "speed_equalize_flow_width_factor": { "label": "Flow Equalization Ratio", - "description": "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.", + "description": "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\u00b3/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.", "type": "float", "unit": "%", "default_value": 100.0, @@ -3337,7 +3419,7 @@ { "label": "Print Acceleration", "description": "The acceleration with which printing happens.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "minimum_value": "0.1", "minimum_value_warning": "100", @@ -3351,7 +3433,7 @@ { "label": "Infill Acceleration", "description": "The acceleration with which infill is printed.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "minimum_value": "0.1", "minimum_value_warning": "100", @@ -3366,7 +3448,7 @@ { "label": "Wall Acceleration", "description": "The acceleration with which the walls are printed.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "minimum_value": "0.1", "minimum_value_warning": "100", @@ -3381,7 +3463,7 @@ { "label": "Outer Wall Acceleration", "description": "The acceleration with which the outermost walls are printed.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "minimum_value": "0.1", "minimum_value_warning": "100", @@ -3396,7 +3478,7 @@ { "label": "Inner Wall Acceleration", "description": "The acceleration with which all inner walls are printed.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "minimum_value": "0.1", "minimum_value_warning": "100", @@ -3413,7 +3495,7 @@ { "label": "Top Surface Skin Acceleration", "description": "The acceleration with which top surface skin layers are printed.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "minimum_value": "0.1", "minimum_value_warning": "100", @@ -3428,7 +3510,7 @@ { "label": "Top/Bottom Acceleration", "description": "The acceleration with which top/bottom layers are printed.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "minimum_value": "0.1", "minimum_value_warning": "100", @@ -3443,7 +3525,7 @@ { "label": "Support Acceleration", "description": "The acceleration with which the support structure is printed.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "minimum_value": "0.1", "minimum_value_warning": "100", @@ -3460,7 +3542,7 @@ { "label": "Support Infill Acceleration", "description": "The acceleration with which the infill of support is printed.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "default_value": 3000, "value": "acceleration_support", @@ -3476,7 +3558,7 @@ { "label": "Support Interface Acceleration", "description": "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "default_value": 3000, "value": "acceleration_support", @@ -3493,7 +3575,7 @@ { "label": "Support Roof Acceleration", "description": "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "default_value": 3000, "value": "extruderValue(support_roof_extruder_nr, 'acceleration_support_interface')", @@ -3509,7 +3591,7 @@ { "label": "Support Floor Acceleration", "description": "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.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "default_value": 3000, "value": "extruderValue(support_bottom_extruder_nr, 'acceleration_support_interface')", @@ -3529,7 +3611,7 @@ { "label": "Prime Tower Acceleration", "description": "The acceleration with which the prime tower is printed.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "minimum_value": "0.1", "minimum_value_warning": "100", @@ -3545,7 +3627,7 @@ { "label": "Travel Acceleration", "description": "The acceleration with which travel moves are made.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "default_value": 5000, "minimum_value": "0.1", @@ -3559,7 +3641,7 @@ { "label": "Initial Layer Acceleration", "description": "The acceleration for the initial layer.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "default_value": 3000, "value": "acceleration_print", @@ -3574,7 +3656,7 @@ { "label": "Initial Layer Print Acceleration", "description": "The acceleration during the printing of the initial layer.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "default_value": 3000, "value": "acceleration_layer_0", @@ -3588,7 +3670,7 @@ { "label": "Initial Layer Travel Acceleration", "description": "The acceleration for travel moves in the initial layer.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "default_value": 3000, "value": "acceleration_layer_0 * acceleration_travel / acceleration_print", @@ -3605,7 +3687,7 @@ { "label": "Skirt/Brim Acceleration", "description": "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.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "default_value": 3000, "value": "acceleration_layer_0", @@ -3955,7 +4037,7 @@ "maximum_value": "machine_max_feedrate_e if retraction_enable else float('inf')", "maximum_value_warning": "70", "enabled": "retraction_enable and machine_gcode_flavor != \"UltiGCode\"", - "settable_per_mesh": false, + "settable_per_mesh": true, "settable_per_extruder": true, "children": { @@ -3972,7 +4054,7 @@ "maximum_value_warning": "70", "enabled": "retraction_enable and machine_gcode_flavor != \"UltiGCode\"", "value": "retraction_speed", - "settable_per_mesh": false, + "settable_per_mesh": true, "settable_per_extruder": true }, "retraction_prime_speed": @@ -3988,7 +4070,7 @@ "maximum_value_warning": "70", "enabled": "retraction_enable and machine_gcode_flavor != \"UltiGCode\"", "value": "retraction_speed", - "settable_per_mesh": false, + "settable_per_mesh": true, "settable_per_extruder": true } } @@ -3997,13 +4079,13 @@ { "label": "Retraction Extra Prime Amount", "description": "Some material can ooze away during a travel move, which can be compensated for here.", - "unit": "mm³", + "unit": "mm\u00b3", "type": "float", "default_value": 0, "minimum_value_warning": "-0.0001", "maximum_value_warning": "5.0", "enabled": "retraction_enable", - "settable_per_mesh": false, + "settable_per_mesh": true, "settable_per_extruder": true }, "retraction_min_travel": @@ -4017,7 +4099,7 @@ "minimum_value": "0", "minimum_value_warning": "line_width * 1.5", "maximum_value_warning": "10", - "settable_per_mesh": false, + "settable_per_mesh": true, "settable_per_extruder": true }, "retraction_count_max": @@ -4047,16 +4129,6 @@ "settable_per_mesh": false, "settable_per_extruder": true }, - "limit_support_retractions": - { - "label": "Limit Support Retractions", - "description": "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure.", - "type": "bool", - "default_value": true, - "enabled": "retraction_enable and (support_enable or support_meshes_present)", - "settable_per_mesh": false, - "settable_per_extruder": true - }, "retraction_combing": { "label": "Combing Mode", @@ -4157,7 +4229,8 @@ "settable_per_extruder": true, "settable_per_meshgroup": true }, - "retraction_hop_enabled": { + "retraction_hop_enabled": + { "label": "Z Hop When Retracted", "description": "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.", "type": "bool", @@ -4166,16 +4239,18 @@ "settable_per_mesh": false, "settable_per_extruder": true }, - "retraction_hop_only_when_collides": { + "retraction_hop_only_when_collides": + { "label": "Z Hop Only Over Printed Parts", "description": "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling.", "type": "bool", "default_value": false, "enabled": "retraction_enable and retraction_hop_enabled and travel_avoid_other_parts", - "settable_per_mesh": false, + "settable_per_mesh": true, "settable_per_extruder": true }, - "retraction_hop": { + "retraction_hop": + { "label": "Z Hop Height", "description": "The height difference when performing a Z Hop.", "unit": "mm", @@ -4184,10 +4259,11 @@ "minimum_value_warning": "0", "maximum_value_warning": "10", "enabled": "retraction_enable and retraction_hop_enabled", - "settable_per_mesh": false, + "settable_per_mesh": true, "settable_per_extruder": true }, - "retraction_hop_after_extruder_switch": { + "retraction_hop_after_extruder_switch": + { "label": "Z Hop After Extruder Switch", "description": "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.", "type": "bool", @@ -4196,7 +4272,7 @@ "settable_per_mesh": false, "settable_per_extruder": true }, - "retraction_hop_after_extruder_switch_height": + "retraction_hop_after_extruder_switch_height": { "label": "Z Hop After Extruder Switch Height", "description": "The height difference when performing a Z Hop after extruder switch.", @@ -4345,8 +4421,9 @@ "unit": "mm/s", "type": "float", "default_value": 10, - "minimum_value": "0", + "minimum_value": "1", "maximum_value_warning": "100", + "enabled": "cool_min_layer_time > 0", "settable_per_mesh": false, "settable_per_extruder": true }, @@ -4356,6 +4433,22 @@ "description": "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.", "type": "bool", "default_value": false, + "enabled": "cool_min_layer_time > 0", + "settable_per_mesh": false, + "settable_per_extruder": true + }, + "cool_min_temperature": + { + "label": "Small Layer Printing Temperature", + "description": "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time.", + "unit": "\u00b0C", + "type": "float", + "value": "material_print_temperature", + "enabled": "cool_min_layer_time > 0", + "minimum_value_warning": "max(material_final_print_temperature, material_initial_print_temperature)", + "maximum_value_warning": "material_print_temperature", + "minimum_value": "-273.15", + "maximum_value": "365", "settable_per_mesh": false, "settable_per_extruder": true } @@ -4375,6 +4468,7 @@ "description": "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing.", "type": "bool", "default_value": false, + "resolve": "any(extruderValues('support_enable'))", "settable_per_mesh": true, "settable_per_extruder": false }, @@ -4388,7 +4482,8 @@ "enabled": "(support_enable or support_meshes_present) and extruders_enabled_count > 1", "settable_per_mesh": false, "settable_per_extruder": false, - "children": { + "children": + { "support_infill_extruder_nr": { "label": "Support Infill Extruder", @@ -4471,7 +4566,7 @@ { "label": "Tree Support Branch Angle", "description": "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach.", - "unit": "°", + "unit": "\u00b0", "type": "float", "minimum_value": "0", "maximum_value": "90", @@ -4508,11 +4603,25 @@ "settable_per_mesh": false, "settable_per_extruder": true }, + "support_tree_max_diameter": + { + "label": "Tree Support Trunk Diameter", + "description": "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.", + "unit": "mm", + "type": "float", + "minimum_value": "support_tree_branch_diameter", + "minimum_value_warning": "support_line_width * 5", + "default_value": 15, + "limit_to_extruder": "support_infill_extruder_nr", + "enabled": "support_enable and support_structure=='tree'", + "settable_per_mesh": false, + "settable_per_extruder": true + }, "support_tree_branch_diameter_angle": { "label": "Tree Support Branch Diameter Angle", "description": "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.", - "unit": "°", + "unit": "\u00b0", "type": "float", "minimum_value": "0", "maximum_value": "89.9999", @@ -4558,8 +4667,8 @@ "support_angle": { "label": "Support Overhang Angle", - "description": "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.", - "unit": "°", + "description": "The minimum angle of overhangs for which support is added. At a value of 0\u00b0 all overhangs are supported, 90\u00b0 will not provide any support.", + "unit": "\u00b0", "type": "float", "minimum_value": "0", "maximum_value": "90", @@ -4606,6 +4715,57 @@ "settable_per_mesh": false, "settable_per_extruder": true }, + "support_interface_wall_count": + { + "label": "Support Interface Wall Line Count", + "description": "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.", + "default_value": 0, + "minimum_value": "0", + "minimum_value_warning": "0", + "maximum_value_warning": "0 if (support_skip_some_zags and support_interface_pattern == 'zigzag') else 3", + "maximum_value": "999999", + "type": "int", + "value": "1 if (support_interface_pattern == 'zigzag') else 0", + "enabled": "(support_enable and support_interface_enable) or support_meshes_present", + "limit_to_extruder": "support_interface_extruder_nr", + "settable_per_mesh": false, + "settable_per_extruder": true, + "children": + { + "support_roof_wall_count": + { + "label": "Support Roof Wall Line Count", + "description": "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.", + "default_value": 0, + "minimum_value": "0", + "minimum_value_warning": "0", + "maximum_value_warning": "0 if (support_skip_some_zags and support_interface_pattern == 'zigzag') else 3", + "maximum_value": "999999", + "type": "int", + "value": "support_interface_wall_count", + "enabled": "(support_enable and support_interface_enable) or support_meshes_present", + "limit_to_extruder": "support_interface_extruder_nr", + "settable_per_mesh": false, + "settable_per_extruder": true + }, + "support_bottom_wall_count": + { + "label": "Support Bottom Wall Line Count", + "description": "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.", + "default_value": 0, + "minimum_value": "0", + "minimum_value_warning": "0", + "maximum_value_warning": "0 if (support_skip_some_zags and support_interface_pattern == 'zigzag') else 3", + "maximum_value": "999999", + "type": "int", + "value": "support_interface_wall_count", + "enabled": "(support_enable and support_interface_enable) or support_meshes_present", + "limit_to_extruder": "support_interface_extruder_nr", + "settable_per_mesh": false, + "settable_per_extruder": true + } + } + }, "zig_zaggify_support": { "label": "Connect Support Lines", @@ -4709,7 +4869,6 @@ "default_value": 8.0, "minimum_value": "0.0", "maximum_value_warning": "50.0", - "maximum_value": "0.5 * min(machine_width, machine_depth)", "enabled": "(support_enable or support_meshes_present) and support_brim_enable", "settable_per_mesh": false, "settable_per_extruder": true, @@ -4724,7 +4883,6 @@ "default_value": 20, "minimum_value": "0", "maximum_value_warning": "50 / skirt_brim_line_width", - "maximum_value": "0.5 * min(machine_width, machine_depth) / skirt_brim_line_width", "value": "math.ceil(support_brim_width / (skirt_brim_line_width * initial_layer_line_width_factor / 100.0))", "enabled": "(support_enable or support_meshes_present) and support_brim_enable", "settable_per_mesh": false, @@ -4827,6 +4985,7 @@ "unit": "mm", "type": "float", "default_value": 0.3, + "value": "0 if support_bottom_enable else 0.3", "limit_to_extruder": "support_bottom_extruder_nr if support_bottom_enable else support_infill_extruder_nr", "minimum_value": "0", "maximum_value_warning": "1.0", @@ -4840,23 +4999,23 @@ "unit": "mm", "type": "float", "default_value": 5.0, - "limit_to_extruder": "support_interface_extruder_nr if support_interface_enable else support_infill_extruder_nr", + "limit_to_extruder": "support_interface_extruder_nr if support_bottom_enable else support_infill_extruder_nr", "minimum_value": "0", "maximum_value_warning": "10.0", - "enabled": "support_enable or support_meshes_present", + "enabled": "(support_enable or support_meshes_present) and support_bottom_stair_step_height > 0", "settable_per_mesh": true }, "support_bottom_stair_step_min_slope": { "label": "Support Stair Step Minimum Slope Angle", "description": "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.", - "unit": "°", + "unit": "\u00b0", "type": "float", "default_value": 10.0, "limit_to_extruder": "support_bottom_extruder_nr if support_bottom_enable else support_infill_extruder_nr", "minimum_value": "0.01", "maximum_value": "89.99", - "enabled": "support_enable or support_meshes_present", + "enabled": "(support_enable or support_meshes_present) and support_bottom_stair_step_height > 0", "settable_per_mesh": true }, "support_join_distance": @@ -4879,7 +5038,8 @@ "description": "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.", "unit": "mm", "type": "float", - "default_value": 0, + "default_value": 0.8, + "value": "support_line_width + 0.4", "limit_to_extruder": "support_infill_extruder_nr", "minimum_value_warning": "-1 * machine_nozzle_size", "maximum_value_warning": "10 * machine_nozzle_size", @@ -4931,11 +5091,11 @@ "settable_per_mesh": false, "settable_per_extruder": true }, - "minimum_support_area": + "minimum_support_area": { "label": "Minimum Support Area", "description": "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated.", - "unit": "mm²", + "unit": "mm\u00b2", "type": "float", "default_value": 0.0, "minimum_value": "0", @@ -4963,7 +5123,7 @@ "default_value": false, "value": "extruderValue(support_roof_extruder_nr, 'support_interface_enable')", "limit_to_extruder": "support_roof_extruder_nr", - "enabled": "support_enable or support_meshes_present", + "enabled": "(support_enable or support_meshes_present) and support_interface_enable", "settable_per_mesh": true }, "support_bottom_enable": @@ -4974,7 +5134,7 @@ "default_value": false, "value": "extruderValue(support_bottom_extruder_nr, 'support_interface_enable')", "limit_to_extruder": "support_bottom_extruder_nr", - "enabled": "support_enable or support_meshes_present", + "enabled": "(support_enable or support_meshes_present) and support_interface_enable", "settable_per_mesh": true } } @@ -5026,12 +5186,14 @@ } } }, - "support_interface_skip_height": { + "support_interface_skip_height": + { "label": "Support Interface Resolution", "description": "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.", "unit": "mm", "type": "float", - "default_value": 0.3, + "default_value": 0.2, + "value": "layer_height", "minimum_value": "0", "maximum_value_warning": "support_interface_height", "limit_to_extruder": "support_interface_extruder_nr", @@ -5183,11 +5345,11 @@ } } }, - "minimum_interface_area": + "minimum_interface_area": { "label": "Minimum Support Interface Area", "description": "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support.", - "unit": "mm²", + "unit": "mm\u00b2", "type": "float", "default_value": 1.0, "minimum_value": "0", @@ -5196,11 +5358,11 @@ "settable_per_mesh": true, "children": { - "minimum_roof_area": + "minimum_roof_area": { "label": "Minimum Support Roof Area", "description": "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support.", - "unit": "mm²", + "unit": "mm\u00b2", "type": "float", "default_value": 1.0, "value": "extruderValue(support_roof_extruder_nr, 'minimum_interface_area')", @@ -5209,11 +5371,11 @@ "enabled": "support_roof_enable and (support_enable or support_meshes_present)", "settable_per_mesh": true }, - "minimum_bottom_area": + "minimum_bottom_area": { "label": "Minimum Support Floor Area", "description": "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support.", - "unit": "mm²", + "unit": "mm\u00b2", "type": "float", "default_value": 1.0, "value": "extruderValue(support_bottom_extruder_nr, 'minimum_interface_area')", @@ -5238,7 +5400,7 @@ "settable_per_extruder": true, "children": { - "support_roof_offset": + "support_roof_offset": { "label": "Support Roof Horizontal Expansion", "description": "Amount of offset applied to the roofs of the support.", @@ -5252,7 +5414,7 @@ "settable_per_mesh": false, "settable_per_extruder": true }, - "support_bottom_offset": + "support_bottom_offset": { "label": "Support Floor Horizontal Expansion", "description": "Amount of offset applied to the floors of the support.", @@ -5370,7 +5532,7 @@ { "label": "Tower Roof Angle", "description": "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs.", - "unit": "°", + "unit": "\u00b0", "type": "int", "minimum_value": "0", "maximum_value": "90", @@ -5470,9 +5632,9 @@ { "label": "Build Plate Adhesion Extruder", "description": "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion.", - "type": "extruder", - "default_value": "0", - "value": "int(defaultExtruderPosition())", + "type": "optional_extruder", + "default_value": "-1", + "value": "int(defaultExtruderPosition()) if resolveOrValue('adhesion_type') == 'raft' else -1", "enabled": "extruders_enabled_count > 1 and (resolveOrValue('adhesion_type') != 'none' or resolveOrValue('prime_tower_brim_enable'))", "resolve": "max(extruderValues('adhesion_extruder_nr'))", "settable_per_mesh": false, @@ -5483,10 +5645,11 @@ { "label": "Skirt/Brim Extruder", "description": "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion.", - "type": "extruder", - "default_value": "0", + "type": "optional_extruder", + "default_value": "-1", "value": "adhesion_extruder_nr", - "enabled": "extruders_enabled_count > 1 and (resolveOrValue('adhesion_type') == 'skirt' or resolveOrValue('adhesion_type') == 'brim' or resolveOrValue('prime_tower_brim_enable'))", + "enabled": "extruders_enabled_count > 1 and (resolveOrValue('adhesion_type') in ['skirt', 'brim'] or resolveOrValue('prime_tower_brim_enable'))", + "resolve": "max(extruderValues('skirt_brim_extruder_nr'))", "settable_per_mesh": false, "settable_per_extruder": false }, @@ -5496,7 +5659,7 @@ "description": "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion.", "type": "extruder", "default_value": "0", - "value": "adhesion_extruder_nr", + "value": "0 if adhesion_extruder_nr == -1 else adhesion_extruder_nr", "enabled": "extruders_enabled_count > 1 and resolveOrValue('adhesion_type') == 'raft'", "resolve": "max(extruderValues('raft_base_extruder_nr'))", "settable_per_mesh": false, @@ -5508,7 +5671,7 @@ "description": "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion.", "type": "extruder", "default_value": "0", - "value": "adhesion_extruder_nr", + "value": "0 if adhesion_extruder_nr == -1 else adhesion_extruder_nr", "enabled": "extruders_enabled_count > 1 and resolveOrValue('adhesion_type') == 'raft'", "resolve": "max(extruderValues('raft_interface_extruder_nr'))", "settable_per_mesh": false, @@ -5520,7 +5683,7 @@ "description": "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion.", "type": "extruder", "default_value": "0", - "value": "adhesion_extruder_nr", + "value": "0 if adhesion_extruder_nr == -1 else adhesion_extruder_nr", "enabled": "extruders_enabled_count > 1 and resolveOrValue('adhesion_type') == 'raft'", "resolve": "max(extruderValues('raft_surface_extruder_nr'))", "settable_per_mesh": false, @@ -5538,9 +5701,24 @@ "maximum_value_warning": "10", "maximum_value": "0.5 * min(machine_width, machine_depth) / skirt_brim_line_width", "enabled": "resolveOrValue('adhesion_type') == 'skirt'", + "limit_to_extruder": "skirt_brim_extruder_nr", "settable_per_mesh": false, - "settable_per_extruder": true, - "limit_to_extruder": "skirt_brim_extruder_nr" + "settable_per_extruder": true + }, + "skirt_height": + { + "label": "Skirt Height", + "description": "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt.", + "type": "int", + "default_value": 3, + "value": "3 if resolveOrValue('skirt_gap') > 0.0 else 1", + "minimum_value": "1", + "maximum_value_warning": "10", + "maximum_value": "machine_height / layer_height", + "enabled": "resolveOrValue('adhesion_type') == 'skirt'", + "limit_to_extruder": "skirt_brim_extruder_nr", + "settable_per_mesh": false, + "settable_per_extruder": true }, "skirt_gap": { @@ -5549,12 +5727,13 @@ "unit": "mm", "type": "float", "default_value": 3, + "minimum_value": "0", "minimum_value_warning": "max(extruderValues('machine_nozzle_size'))", "maximum_value_warning": "10", "enabled": "resolveOrValue('adhesion_type') == 'skirt'", + "limit_to_extruder": "skirt_brim_extruder_nr", "settable_per_mesh": false, - "settable_per_extruder": true, - "limit_to_extruder": "skirt_brim_extruder_nr" + "settable_per_extruder": true }, "skirt_brim_minimal_length": { @@ -5567,6 +5746,7 @@ "minimum_value_warning": "25", "maximum_value_warning": "2500", "enabled": "resolveOrValue('adhesion_type') == 'skirt' or resolveOrValue('adhesion_type') == 'brim' or resolveOrValue('prime_tower_brim_enable')", + "limit_to_extruder": "skirt_brim_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": true }, @@ -5579,11 +5759,10 @@ "default_value": 8.0, "minimum_value": "0.0", "maximum_value_warning": "50.0", - "maximum_value": "0.5 * min(machine_width, machine_depth)", "enabled": "resolveOrValue('adhesion_type') == 'brim' or resolveOrValue('prime_tower_brim_enable')", + "limit_to_extruder": "skirt_brim_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "skirt_brim_extruder_nr", "children": { "brim_line_count": @@ -5594,28 +5773,27 @@ "default_value": 20, "minimum_value": "0", "maximum_value_warning": "50 / skirt_brim_line_width", - "maximum_value": "0.5 * min(machine_width, machine_depth) / skirt_brim_line_width", "value": "math.ceil(brim_width / (skirt_brim_line_width * initial_layer_line_width_factor / 100.0))", "enabled": "resolveOrValue('adhesion_type') == 'brim' or resolveOrValue('prime_tower_brim_enable')", + "limit_to_extruder": "skirt_brim_extruder_nr", "settable_per_mesh": false, - "settable_per_extruder": true, - "limit_to_extruder": "skirt_brim_extruder_nr" + "settable_per_extruder": true } } }, - "brim_gap": + "brim_gap": { "label": "Brim Distance", "description": "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.", "unit": "mm", "type": "float", "default_value": 0, - "minimum_value": "0", + "minimum_value": "-skirt_brim_line_width / 2", "maximum_value_warning": "skirt_brim_line_width", "enabled": "resolveOrValue('adhesion_type') == 'brim'", + "limit_to_extruder": "skirt_brim_extruder_nr", "settable_per_mesh": true, - "settable_per_extruder": true, - "limit_to_extruder": "skirt_brim_extruder_nr" + "settable_per_extruder": true }, "brim_replaces_support": { @@ -5624,9 +5802,9 @@ "type": "bool", "default_value": true, "enabled": "resolveOrValue('adhesion_type') == 'brim' and (support_enable or support_meshes_present)", + "limit_to_extruder": "skirt_brim_extruder_nr", "settable_per_mesh": false, - "settable_per_extruder": true, - "limit_to_extruder": "support_infill_extruder_nr" + "settable_per_extruder": true }, "brim_outside_only": { @@ -5635,9 +5813,33 @@ "type": "bool", "default_value": true, "enabled": "resolveOrValue('adhesion_type') == 'brim'", + "limit_to_extruder": "skirt_brim_extruder_nr", "settable_per_mesh": false, - "settable_per_extruder": true, - "limit_to_extruder": "skirt_brim_extruder_nr" + "settable_per_extruder": true + }, + "brim_inside_margin": + { + "label": "Brim Inside Avoid Margin", + "description": "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes.", + "unit": "mm", + "type": "float", + "default_value": 2.5, + "minimum_value": "0", + "enabled": "resolveOrValue('adhesion_type') == 'brim' and any(extruderValues('brim_outside_only'))", + "limit_to_extruder": "skirt_brim_extruder_nr", + "settable_per_mesh": false, + "settable_per_extruder": true + }, + "brim_smart_ordering": + { + "label": "Smart Brim", + "description": "Swap print order of the innermost and second innermost brim lines. This improves brim removal.", + "type": "bool", + "enabled": "resolveOrValue('adhesion_type') == 'brim'", + "default_value": true, + "limit_to_extruder": "skirt_brim_extruder_nr", + "settable_per_mesh": false, + "settable_per_extruder": true }, "raft_margin": { @@ -5937,7 +6139,7 @@ { "label": "Raft Print Acceleration", "description": "The acceleration with which the raft is printed.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "default_value": 3000, "minimum_value": "0.1", @@ -5953,7 +6155,7 @@ { "label": "Raft Top Print Acceleration", "description": "The acceleration with which the top raft layers are printed.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "default_value": 3000, "value": "raft_acceleration", @@ -5968,7 +6170,7 @@ { "label": "Raft Middle Print Acceleration", "description": "The acceleration with which the middle raft layer is printed.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "default_value": 3000, "value": "raft_acceleration", @@ -5983,7 +6185,7 @@ { "label": "Raft Base Print Acceleration", "description": "The acceleration with which the base raft layer is printed.", - "unit": "mm/s²", + "unit": "mm/s\u00b2", "type": "float", "default_value": 3000, "value": "raft_acceleration", @@ -6162,7 +6364,7 @@ { "label": "Prime Tower Minimum Volume", "description": "The minimum volume for each layer of the prime tower in order to purge enough material.", - "unit": "mm³", + "unit": "mm\u00b3", "type": "float", "default_value": 6, "minimum_value": "0", @@ -6215,7 +6417,7 @@ "description": "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type.", "type": "bool", "enabled": "resolveOrValue('prime_tower_enable') and (resolveOrValue('adhesion_type') != 'raft')", - "resolve": "resolveOrValue('prime_tower_enable') and (resolveOrValue('adhesion_type') in ('none', 'skirt'))", + "resolve": "resolveOrValue('prime_tower_enable') and (resolveOrValue('adhesion_type') in ('none', 'skirt', 'brim'))", "default_value": false, "settable_per_mesh": false, "settable_per_extruder": false @@ -6236,7 +6438,7 @@ "label": "Ooze Shield Angle", "description": "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.", "type": "float", - "unit": "°", + "unit": "\u00b0", "enabled": "resolveOrValue('ooze_shield_enabled')", "default_value": 60, "resolve": "min(extruderValues('ooze_shield_angle'))", @@ -6328,7 +6530,7 @@ "label": "Nozzle Switch Extra Prime Amount", "description": "Extra material to prime after nozzle switching.", "type": "float", - "unit": "mm³", + "unit": "mm\u00b3", "default_value": 0, "minimum_value_warning": "0", "maximum_value_warning": "100", @@ -6361,6 +6563,7 @@ "description": "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.", "type": "bool", "default_value": false, + "value": "magic_spiralize", "settable_per_mesh": true }, "meshfix_extensive_stitching": @@ -6467,11 +6670,11 @@ "label": "Maximum Extrusion Area Deviation", "description": "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.", "type": "float", - "unit": "μm²", - "default_value": 2000, + "unit": "\u03bcm\u00b2", + "default_value": 50000, "minimum_value": "0", "minimum_value_warning": "500", - "maximum_value_warning": "50000", + "maximum_value_warning": "100000", "settable_per_mesh": true } } @@ -6571,8 +6774,8 @@ "mold_angle": { "label": "Mold Angle", - "description": "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.", - "unit": "°", + "description": "The angle of overhang of the outer walls created for the mold. 0\u00b0 will make the outer shell of the mold vertical, while 90\u00b0 will make the outside of the model follow the contour of the model.", + "unit": "\u00b0", "type": "float", "minimum_value": "-89", "minimum_value_warning": "0", @@ -6671,60 +6874,6 @@ "default_value": "middle", "settable_per_mesh": true }, - "roofing_line_width": - { - "label": "Top Surface Skin Line Width", - "description": "Width of a single line of the areas at the top 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": "roofing_extruder_nr", - "settable_per_mesh": true, - "enabled": "roofing_layer_count > 0 and top_layers > 0" - }, - "roofing_pattern": - { - "label": "Top Surface Skin Pattern", - "description": "The pattern of the top most layers.", - "type": "enum", - "options": - { - "lines": "Lines", - "concentric": "Concentric", - "zigzag": "Zig Zag" - }, - "default_value": "lines", - "value": "top_bottom_pattern", - "limit_to_extruder": "roofing_extruder_nr", - "settable_per_mesh": true, - "enabled": "roofing_layer_count > 0 and top_layers > 0" - }, - "roofing_monotonic": - { - "label": "Monotonic Top Surface Order", - "description": "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.", - "type": "bool", - "default_value": false, - "value": "skin_monotonic", - "enabled": "roofing_layer_count > 0 and top_layers > 0 and roofing_pattern != 'concentric'", - "limit_to_extruder": "roofing_extruder_nr", - "settable_per_mesh": true - }, - "roofing_angles": - { - "label": "Top Surface Skin Line Directions", - "description": "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).", - "type": "[int]", - "default_value": "[ ]", - "value": "skin_angles", - "enabled": "roofing_pattern != 'concentric' and roofing_layer_count > 0 and top_layers > 0", - "limit_to_extruder": "roofing_extruder_nr", - "settable_per_mesh": true - }, "infill_enable_travel_optimization": { "label": "Infill Travel Optimization", @@ -6734,24 +6883,14 @@ "default_value": false, "settable_per_mesh": true }, - "material_flow_dependent_temperature": - { - "label": "Auto Temperature", - "description": "Change the temperature for each layer automatically with the average flow speed of that layer.", - "type": "bool", - "default_value": false, - "enabled": "machine_nozzle_temp_enabled and False", - "settable_per_mesh": false, - "settable_per_extruder": true - }, "material_flow_temp_graph": { "label": "Flow Temperature Graph", "description": "Data linking material flow (in mm3 per second) to temperature (degrees Celsius).", - "unit": "[[mm³,°C]]", + "unit": "[[mm\u00b3,\u00b0C]]", "type": "str", - "default_value": "[[3.5,200],[7.0,240]]", - "enabled": "False and machine_nozzle_temp_enabled and material_flow_dependent_temperature", + "default_value": "[[3.5, 200],[7.0, 240]]", + "enabled": "False and machine_nozzle_temp_enabled", "settable_per_mesh": false, "settable_per_extruder": true }, @@ -6768,6 +6907,88 @@ "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", @@ -6873,8 +7094,8 @@ "conical_overhang_angle": { "label": "Maximum Model Angle", - "description": "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.", - "unit": "°", + "description": "The maximum angle of overhangs after the they have been made printable. At a value of 0\u00b0 all overhangs are replaced by a piece of model connected to the build plate, 90\u00b0 will not change the model in any way.", + "unit": "\u00b0", "type": "float", "minimum_value": "-89", "minimum_value_warning": "0", @@ -6882,16 +7103,16 @@ "default_value": 50, "enabled": "conical_overhang_enabled" }, - "conical_overhang_hole_size": + "conical_overhang_hole_size": { - "label": "Maximum Overhang Hole Area", - "description": "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.", - "unit": "mm²", - "type": "float", - "minimum_value": "0", - "minimum_value_warning": "0", - "default_value": 0, - "enabled": "conical_overhang_enabled" + "label": "Maximum Overhang Hole Area", + "description": "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\u00b2 will fill all holes in the models base.", + "unit": "mm\u00b2", + "type": "float", + "minimum_value": "0", + "minimum_value_warning": "0", + "default_value": 0, + "enabled": "conical_overhang_enabled" }, "coasting_enable": { @@ -6906,7 +7127,7 @@ { "label": "Coasting Volume", "description": "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed.", - "unit": "mm³", + "unit": "mm\u00b3", "type": "float", "default_value": 0.064, "minimum_value": "0", @@ -6919,7 +7140,7 @@ { "label": "Minimum Volume Before Coasting", "description": "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.", - "unit": "mm³", + "unit": "mm\u00b3", "type": "float", "default_value": 0.8, "minimum_value": "0", @@ -6990,7 +7211,7 @@ { "label": "Conical Support Angle", "description": "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.", - "unit": "°", + "unit": "\u00b0", "type": "float", "minimum_value": "-90", "minimum_value_warning": "-45", @@ -7021,6 +7242,7 @@ "description": "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look.", "type": "bool", "default_value": false, + "enabled": "not interlocking_enable", "limit_to_extruder": "wall_0_extruder_nr", "settable_per_mesh": true }, @@ -7030,11 +7252,11 @@ "description": "Jitter only the parts' outlines and not the parts' holes.", "type": "bool", "default_value": false, - "enabled": "magic_fuzzy_skin_enabled", + "enabled": "magic_fuzzy_skin_enabled and not interlocking_enable", "limit_to_extruder": "wall_0_extruder_nr", "settable_per_mesh": true }, - "magic_fuzzy_skin_thickness": + "magic_fuzzy_skin_thickness": { "label": "Fuzzy Skin Thickness", "description": "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered.", @@ -7043,7 +7265,7 @@ "default_value": 0.3, "minimum_value": "0.001", "maximum_value_warning": "wall_line_width_0", - "enabled": "magic_fuzzy_skin_enabled", + "enabled": "magic_fuzzy_skin_enabled and not interlocking_enable", "limit_to_extruder": "wall_0_extruder_nr", "settable_per_mesh": true }, @@ -7058,7 +7280,7 @@ "minimum_value_warning": "0.1", "maximum_value_warning": "10", "maximum_value": "2 / magic_fuzzy_skin_thickness", - "enabled": "magic_fuzzy_skin_enabled", + "enabled": "magic_fuzzy_skin_enabled and not interlocking_enable", "limit_to_extruder": "wall_0_extruder_nr", "settable_per_mesh": true, "children": @@ -7074,7 +7296,7 @@ "minimum_value_warning": "0.1", "maximum_value_warning": "10", "value": "10000 if magic_fuzzy_skin_point_density == 0 else 1 / magic_fuzzy_skin_point_density", - "enabled": "magic_fuzzy_skin_enabled", + "enabled": "magic_fuzzy_skin_enabled and not interlocking_enable", "limit_to_extruder": "wall_0_extruder_nr", "settable_per_mesh": true } @@ -7106,361 +7328,6 @@ "settable_per_extruder": false, "settable_per_meshgroup": false }, - "wireframe_enabled": - { - "label": "Wire Printing", - "description": "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines.", - "type": "bool", - "default_value": false, - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false - }, - "wireframe_height": - { - "label": "WP Connection Height", - "description": "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing.", - "type": "float", - "unit": "mm", - "default_value": 3, - "value": "machine_nozzle_head_distance", - "minimum_value": "0.001", - "maximum_value_warning": "20", - "enabled": "wireframe_enabled", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false - }, - "wireframe_roof_inset": - { - "label": "WP Roof Inset Distance", - "description": "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing.", - "type": "float", - "unit": "mm", - "default_value": 3, - "minimum_value": "0", - "minimum_value_warning": "machine_nozzle_size", - "maximum_value_warning": "20", - "enabled": "wireframe_enabled", - "value": "wireframe_height", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false - }, - "wireframe_printspeed": - { - "label": "WP Speed", - "description": "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing.", - "unit": "mm/s", - "type": "float", - "default_value": 5, - "minimum_value": "0.05", - "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2 + machine_max_feedrate_z ** 2)", - "maximum_value_warning": "50", - "enabled": "wireframe_enabled", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false, - "children": - { - "wireframe_printspeed_bottom": - { - "label": "WP Bottom Printing Speed", - "description": "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing.", - "unit": "mm/s", - "type": "float", - "default_value": 5, - "minimum_value": "0.05", - "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)", - "maximum_value_warning": "50", - "enabled": "wireframe_enabled", - "value": "wireframe_printspeed_flat", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false - }, - "wireframe_printspeed_up": - { - "label": "WP Upward Printing Speed", - "description": "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing.", - "unit": "mm/s", - "type": "float", - "default_value": 5, - "minimum_value": "0.05", - "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2 + machine_max_feedrate_z ** 2)", - "maximum_value_warning": "50", - "enabled": "wireframe_enabled", - "value": "wireframe_printspeed", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false - }, - "wireframe_printspeed_down": - { - "label": "WP Downward Printing Speed", - "description": "Speed of printing a line diagonally downward. Only applies to Wire Printing.", - "unit": "mm/s", - "type": "float", - "default_value": 5, - "minimum_value": "0.05", - "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2 + machine_max_feedrate_z ** 2)", - "maximum_value_warning": "50", - "enabled": "wireframe_enabled", - "value": "wireframe_printspeed", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false - }, - "wireframe_printspeed_flat": - { - "label": "WP Horizontal Printing Speed", - "description": "Speed of printing the horizontal contours of the model. Only applies to Wire Printing.", - "unit": "mm/s", - "type": "float", - "default_value": 5, - "minimum_value": "0.05", - "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)", - "maximum_value_warning": "100", - "value": "wireframe_printspeed", - "enabled": "wireframe_enabled", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false - } - } - }, - "wireframe_flow": - { - "label": "WP Flow", - "description": "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing.", - "unit": "%", - "default_value": 100, - "minimum_value": "0", - "maximum_value_warning": "100", - "type": "float", - "enabled": "wireframe_enabled", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false, - "children": - { - "wireframe_flow_connection": - { - "label": "WP Connection Flow", - "description": "Flow compensation when going up or down. Only applies to Wire Printing.", - "unit": "%", - "default_value": 100, - "minimum_value": "0", - "maximum_value_warning": "100", - "type": "float", - "enabled": "wireframe_enabled", - "value": "wireframe_flow", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false - }, - "wireframe_flow_flat": - { - "label": "WP Flat Flow", - "description": "Flow compensation when printing flat lines. Only applies to Wire Printing.", - "unit": "%", - "default_value": 100, - "minimum_value": "0", - "maximum_value_warning": "100", - "type": "float", - "enabled": "wireframe_enabled", - "value": "wireframe_flow", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false - } - } - }, - "wireframe_top_delay": - { - "label": "WP Top Delay", - "description": "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing.", - "unit": "s", - "type": "float", - "default_value": 0, - "minimum_value": "0", - "maximum_value_warning": "1", - "enabled": "wireframe_enabled", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false - }, - "wireframe_bottom_delay": - { - "label": "WP Bottom Delay", - "description": "Delay time after a downward move. Only applies to Wire Printing.", - "unit": "s", - "type": "float", - "default_value": 0, - "minimum_value": "0", - "maximum_value_warning": "1", - "enabled": "wireframe_enabled", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false - }, - "wireframe_flat_delay": - { - "label": "WP Flat Delay", - "description": "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing.", - "unit": "s", - "type": "float", - "default_value": 0.1, - "minimum_value": "0", - "maximum_value_warning": "0.5", - "enabled": "wireframe_enabled", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false - }, - "wireframe_up_half_speed": - { - "label": "WP Ease Upward", - "description": "Distance of an upward move which is extruded with half speed.\nThis can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing.", - "type": "float", - "unit": "mm", - "default_value": 0.3, - "minimum_value": "0", - "maximum_value_warning": "5.0", - "enabled": "wireframe_enabled", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false - }, - "wireframe_top_jump": - { - "label": "WP Knot Size", - "description": "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing.", - "type": "float", - "unit": "mm", - "default_value": 0.6, - "minimum_value": "0", - "maximum_value_warning": "2.0", - "enabled": "wireframe_enabled and wireframe_strategy == 'knot'", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false - }, - "wireframe_fall_down": - { - "label": "WP Fall Down", - "description": "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing.", - "type": "float", - "unit": "mm", - "default_value": 0.5, - "minimum_value": "0", - "maximum_value_warning": "wireframe_height", - "enabled": "wireframe_enabled and wireframe_strategy == 'compensate'", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false - }, - "wireframe_drag_along": - { - "label": "WP Drag Along", - "description": "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing.", - "type": "float", - "unit": "mm", - "default_value": 0.6, - "minimum_value": "0", - "maximum_value_warning": "wireframe_height", - "enabled": "wireframe_enabled and wireframe_strategy == 'compensate'", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false - }, - "wireframe_strategy": - { - "label": "WP Strategy", - "description": "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted.", - "type": "enum", - "options": - { - "compensate": "Compensate", - "knot": "Knot", - "retract": "Retract" - }, - "default_value": "compensate", - "enabled": "wireframe_enabled", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false - }, - "wireframe_straight_before_down": - { - "label": "WP Straighten Downward Lines", - "description": "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing.", - "type": "float", - "unit": "%", - "default_value": 20, - "minimum_value": "0", - "maximum_value": "100", - "enabled": "wireframe_enabled", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false - }, - "wireframe_roof_fall_down": - { - "label": "WP Roof Fall Down", - "description": "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing.", - "type": "float", - "unit": "mm", - "default_value": 2, - "minimum_value_warning": "0", - "maximum_value_warning": "wireframe_roof_inset", - "enabled": "wireframe_enabled", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false - }, - "wireframe_roof_drag_along": - { - "label": "WP Roof Drag Along", - "description": "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing.", - "type": "float", - "unit": "mm", - "default_value": 0.8, - "minimum_value": "0", - "maximum_value_warning": "10", - "enabled": "wireframe_enabled", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false - }, - "wireframe_roof_outer_delay": - { - "label": "WP Roof Outer Delay", - "description": "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing.", - "type": "float", - "unit": "s", - "default_value": 0.2, - "minimum_value": "0", - "maximum_value_warning": "2.0", - "enabled": "wireframe_enabled", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false - }, - "wireframe_nozzle_clearance": - { - "label": "WP Nozzle Clearance", - "description": "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing.", - "type": "float", - "unit": "mm", - "default_value": 1, - "minimum_value_warning": "0", - "maximum_value_warning": "10.0", - "enabled": "wireframe_enabled", - "settable_per_mesh": false, - "settable_per_extruder": false, - "settable_per_meshgroup": false - }, "adaptive_layer_height_enabled": { "label": "Use Adaptive Layers", @@ -7479,6 +7346,7 @@ "enabled": "adaptive_layer_height_enabled", "unit": "mm", "default_value": 0.1, + "minimum_value": "0.0", "settable_per_mesh": false, "settable_per_extruder": false, "settable_per_meshgroup": false @@ -7512,7 +7380,7 @@ { "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.", - "unit": "°", + "unit": "\u00b0", "type": "float", "minimum_value": "0", "minimum_value_warning": "2", @@ -7550,6 +7418,7 @@ "type": "float", "minimum_value": "0", "default_value": 5, + "value": "line_width + support_xy_distance + 1.0", "enabled": "bridge_settings_enabled", "settable_per_mesh": true, "settable_per_extruder": false @@ -7595,7 +7464,7 @@ "description": "The speed at which the bridge walls are printed.", "unit": "mm/s", "type": "float", - "minimum_value": "cool_min_speed", + "minimum_value": "0", "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)", "maximum_value_warning": "300", "default_value": 15, @@ -7622,7 +7491,7 @@ "description": "The speed at which bridge skin regions are printed.", "unit": "mm/s", "type": "float", - "minimum_value": "cool_min_speed", + "minimum_value": "0", "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)", "maximum_value_warning": "300", "default_value": 15, @@ -7683,7 +7552,7 @@ "description": "Print speed to use when printing the second bridge skin layer.", "unit": "mm/s", "type": "float", - "minimum_value": "cool_min_speed", + "minimum_value": "0", "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)", "maximum_value_warning": "300", "default_value": 25, @@ -7735,7 +7604,7 @@ "description": "Print speed to use when printing the third bridge skin layer.", "unit": "mm/s", "type": "float", - "minimum_value": "cool_min_speed", + "minimum_value": "0", "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)", "maximum_value_warning": "300", "default_value": 15, @@ -7797,7 +7666,7 @@ "description": "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.", "default_value": 10, "type": "float", - "unit": "mm³", + "unit": "mm\u00b3", "enabled": "clean_between_layers", "settable_per_mesh": false, "settable_per_extruder": true, @@ -7826,7 +7695,7 @@ "minimum_value_warning": "-0.0001", "maximum_value_warning": "10.0", "enabled": "wipe_retraction_enable and clean_between_layers", - "settable_per_mesh": false, + "settable_per_mesh": true, "settable_per_extruder": true, "settable_per_meshgroup": false }, @@ -7834,14 +7703,14 @@ { "label": "Wipe Retraction Extra Prime Amount", "description": "Some material can ooze away during a wipe travel moves, which can be compensated for here.", - "unit": "mm³", + "unit": "mm\u00b3", "type": "float", "default_value": 0, "value": "retraction_extra_prime_amount", "minimum_value_warning": "-0.0001", "maximum_value_warning": "10.0", "enabled": "wipe_retraction_enable and clean_between_layers", - "settable_per_mesh": false, + "settable_per_mesh": true, "settable_per_extruder": true }, "wipe_retraction_speed": @@ -7874,7 +7743,7 @@ "maximum_value_warning": "70", "enabled": "wipe_retraction_enable and clean_between_layers", "value": "wipe_retraction_speed", - "settable_per_mesh": false, + "settable_per_mesh": true, "settable_per_extruder": true }, "wipe_retraction_prime_speed": @@ -7890,7 +7759,7 @@ "maximum_value_warning": "70", "enabled": "wipe_retraction_enable and clean_between_layers", "value": "wipe_retraction_speed", - "settable_per_mesh": false, + "settable_per_mesh": true, "settable_per_extruder": true } } @@ -7904,7 +7773,7 @@ "default_value": 0, "minimum_value": "0", "enabled": "clean_between_layers", - "settable_per_mesh": false, + "settable_per_mesh": true, "settable_per_extruder": true, "settable_per_meshgroup": false }, @@ -7929,7 +7798,7 @@ "default_value": 1, "value": "retraction_hop", "enabled": "wipe_hop_enable and clean_between_layers", - "settable_per_mesh": false, + "settable_per_mesh": true, "settable_per_extruder": true, "settable_per_meshgroup": false }, @@ -7944,7 +7813,7 @@ "minimum_value": "0", "minimum_value_warning": "1", "enabled": "wipe_hop_enable and clean_between_layers", - "settable_per_mesh": false, + "settable_per_mesh": true, "settable_per_extruder": true, "settable_per_meshgroup": false }, @@ -7969,7 +7838,7 @@ "minimum_value": "0", "default_value": 5, "enabled": "clean_between_layers", - "settable_per_mesh": false, + "settable_per_mesh": true, "settable_per_extruder": true, "settable_per_meshgroup": false }, @@ -7981,7 +7850,7 @@ "type": "float", "default_value": 20, "enabled": "clean_between_layers", - "settable_per_mesh": false, + "settable_per_mesh": true, "settable_per_extruder": true, "settable_per_meshgroup": false }, @@ -7999,6 +7868,7 @@ "small_feature_max_length": { "label": "Small Feature Max Length", + "enabled": "small_hole_max_size > 0", "description": "Feature outlines that are shorter than this length will be printed using Small Feature Speed.", "unit": "mm", "type": "float", @@ -8012,6 +7882,7 @@ "small_feature_speed_factor": { "label": "Small Feature Speed", + "enabled": "small_hole_max_size > 0", "description": "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy.", "unit": "%", "type": "float", @@ -8024,6 +7895,7 @@ "small_feature_speed_factor_0": { "label": "Small Feature Initial Layer Speed", + "enabled": "small_hole_max_size > 0", "description": "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.", "unit": "%", "type": "float", @@ -8040,7 +7912,7 @@ "description": "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing.", "type": "bool", "default_value": false, - "enabled": false, + "enabled": true, "settable_per_mesh": true, "settable_per_extruder": true }, @@ -8062,6 +7934,7 @@ "type": "int", "default_value": 1, "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "resolve": "max(extruderValues('raft_base_wall_count'))", "settable_per_mesh": false, "settable_per_extruder": false } @@ -8073,7 +7946,8 @@ "description": "Settings which are only used if CuraEngine isn't called from the Cura frontend.", "type": "category", "enabled": false, - "children": { + "children": + { "center_object": { "description": "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.", @@ -8117,4 +7991,4 @@ } } } -} +} \ No newline at end of file diff --git a/resources/definitions/felixpro2dual.def.json b/resources/definitions/felixpro2dual.def.json index 7c883b2f76..fd621f6073 100644 --- a/resources/definitions/felixpro2dual.def.json +++ b/resources/definitions/felixpro2dual.def.json @@ -2,70 +2,68 @@ "version": 2, "name": "Felix Pro 2 Dual", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "pnks", "manufacturer": "Felix", + "file_formats": "text/x-gcode", "platform": "FelixPro2_platform.obj", - "platform_offset": [-135, -0.5, 130], + "has_materials": true, + "has_variants": true, "machine_extruder_trains": { "0": "felixpro2_dual_extruder_0", "1": "felixpro2_dual_extruder_1" }, - "file_formats": "text/x-gcode", - "has_variants": true, - "has_materials": true, + "platform_offset": [ + -135, + -0.5, + 130 + ], "preferred_variant_name": "0.35 mm", "variants_name": "Nozzle diameter" }, - "overrides": { - "machine_name": { "default_value": "FelixPro2Dual" }, - + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "gantry_height": { "value": "0" }, + "infill_sparse_density": { "default_value": 20 }, "layer_height": { "default_value": 0.15 }, "layer_height_0": { "default_value": 0.2 }, - - "infill_sparse_density": { "default_value": 20 }, - "wall_thickness": { "value": "1" }, - "top_bottom_thickness": { "default_value": 1 }, - - "machine_width": { "default_value": 240 }, + "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 225 }, - "machine_height": { "default_value": 245 }, - + "machine_end_gcode": { "default_value": "; Endcode FELIXprinters Pro series\r\n; =================================\t; Move extruder to park position\r\nG91 \t\t\t\t\t; Make coordinates relative\r\nG1 Z2 F5000 \t\t\t\t; Move z 2mm up\r\nG90 \t\t\t\t\t; Use absolute coordinates again\t\t\r\nG1 X220 Y243 F7800 \t\t\t; Move bed and printhead to ergonomic position\r\n\r\n; =================================\t; Turn off heaters\r\nT0\t\t\t\t\t; Select left extruder\r\nM104 T0 S0\t\t\t\t; Turn off heater and continue\t\t\t\t\r\nG92 E0\t\t\t\t\t; Reset extruder position\r\nG1 E-8\t\t\t\t\t; Retract filament 8mm\r\nG1 E-5\t\t\t\t\t; Push back filament 3mm\r\nG92 E0\t\t\t\t\t; Reset extruder position\r\n\r\nT1\t\t\t\t\t; Select right extruder\r\nM104 T1 S0\t\t\t\t; Turn off heater and continu\r\nG92 E0\t\t\t\t\t; Reset extruder position\r\nG1 E-8\t\t\t\t\t; Retract filament 8mm\r\nG1 E-5\t\t\t\t\t; Push back filament 3mm\r\nG92 E0\t\t\t\t\t; Reset extruder position\r\nT0\t\t\t\t\t; Select left extruder\r\nM140 S0\t\t\t\t\t; Turn off bed heater\r\n\r\n; =================================\t; Turn the rest off\r\nM107 \t\t\t\t; Turn off fan\r\nM84\t\t\t\t\t; Disable steppers\r\nM117 Print Complete" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "Repetier" }, "machine_head_with_fans_polygon": { "default_value": [ - [ -60, 50 ], - [ -60, -50 ], - [ 70, 50 ], - [ 70, -50 ] + [-60, 50], + [-60, -50], + [70, 50], + [70, -50] ] }, - "gantry_height": { "value": "0" }, - "machine_extruder_count": { "default_value": 2 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 245 }, + "machine_name": { "default_value": "FelixPro2Dual" }, + "machine_start_gcode": { "default_value": "G90 ;absolute positioning\r\nM82 ;set extruder to absolute mode\r\nM107 ;start with the fan off\r\nG28 X0 Y0 ;move X/Y to min endstops\r\nG28 Z0 ;move Z to min endstops\r\nG1 Z15.0 F9000 ;move the platform down 15mm\r\n\r\nT0 ;Switch to the 1st extruder\r\nG92 E0 ;zero the extruded length\r\nG1 F200 E6 ;extrude 6 mm of feed stock\r\nG92 E0 ;zero the extruded length again\r\n;G1 F9000\r\nM117 FPro2 printing...\r\n" }, + "machine_width": { "default_value": 240 }, + "material_flow": { "default_value": 100 }, + "material_flow_layer_0": + { + "default_value": 110, + "value": "material_flow * 1.1" + }, "prime_tower_position_x": { "value": "250" }, "prime_tower_position_y": { "value": "200" }, - - "machine_heated_bed": { "default_value": true }, - "machine_gcode_flavor": { "default_value": "Repetier" }, - "machine_center_is_zero": { "default_value": false }, - - "speed_print": { "default_value": 80 }, - "retraction_amount": { "default_value": 1 }, - "retraction_speed": { "default_value": 50}, - "material_flow": { "default_value": 100 }, - "material_flow_layer_0": { "default_value" : 110, "value": "material_flow * 1.1" }, - "adhesion_type": { "default_value": "skirt" }, + "retraction_speed": { "default_value": 50 }, "skirt_brim_minimal_length": { "default_value": 130 }, "skirt_line_count": { "default_value": 3 }, - - "machine_start_gcode": { - "default_value": "G90 ;absolute positioning\r\nM82 ;set extruder to absolute mode\r\nM107 ;start with the fan off\r\nG28 X0 Y0 ;move X\/Y to min endstops\r\nG28 Z0 ;move Z to min endstops\r\nG1 Z15.0 F9000 ;move the platform down 15mm\r\n\r\nT0 ;Switch to the 1st extruder\r\nG92 E0 ;zero the extruded length\r\nG1 F200 E6 ;extrude 6 mm of feed stock\r\nG92 E0 ;zero the extruded length again\r\n;G1 F9000\r\nM117 FPro2 printing...\r\n" - }, - "machine_end_gcode": { - "default_value": "; Endcode FELIXprinters Pro series\r\n; =================================\t; Move extruder to park position\r\nG91 \t\t\t\t\t; Make coordinates relative\r\nG1 Z2 F5000 \t\t\t\t; Move z 2mm up\r\nG90 \t\t\t\t\t; Use absolute coordinates again\t\t\r\nG1 X220 Y243 F7800 \t\t\t; Move bed and printhead to ergonomic position\r\n\r\n; =================================\t; Turn off heaters\r\nT0\t\t\t\t\t; Select left extruder\r\nM104 T0 S0\t\t\t\t; Turn off heater and continue\t\t\t\t\r\nG92 E0\t\t\t\t\t; Reset extruder position\r\nG1 E-8\t\t\t\t\t; Retract filament 8mm\r\nG1 E-5\t\t\t\t\t; Push back filament 3mm\r\nG92 E0\t\t\t\t\t; Reset extruder position\r\n\r\nT1\t\t\t\t\t; Select right extruder\r\nM104 T1 S0\t\t\t\t; Turn off heater and continu\r\nG92 E0\t\t\t\t\t; Reset extruder position\r\nG1 E-8\t\t\t\t\t; Retract filament 8mm\r\nG1 E-5\t\t\t\t\t; Push back filament 3mm\r\nG92 E0\t\t\t\t\t; Reset extruder position\r\nT0\t\t\t\t\t; Select left extruder\r\nM140 S0\t\t\t\t\t; Turn off bed heater\r\n\r\n; =================================\t; Turn the rest off\r\nM107 \t\t\t\t; Turn off fan\r\nM84\t\t\t\t\t; Disable steppers\r\nM117 Print Complete" - } + "speed_print": { "default_value": 80 }, + "top_bottom_thickness": { "default_value": 1 }, + "wall_thickness": { "value": "1" } } -} +} \ No newline at end of file diff --git a/resources/definitions/felixtec4dual.def.json b/resources/definitions/felixtec4dual.def.json index ce0122251e..0e11069e6e 100644 --- a/resources/definitions/felixtec4dual.def.json +++ b/resources/definitions/felixtec4dual.def.json @@ -2,55 +2,50 @@ "version": 2, "name": "Felix Tec 4 Dual", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "kerog777@gmail.com", "manufacturer": "Felix", + "file_formats": "text/x-gcode", "platform": "FelixTec4_platform.3mf", - "platform_offset": [-128,0, 102], + "has_materials": true, + "has_variants": true, "machine_extruder_trains": { "0": "felixtec4_dual_extruder_0", "1": "felixtec4_dual_extruder_1" }, - "file_formats": "text/x-gcode", - "has_variants": true, - "has_materials": true, + "platform_offset": [ + -128, + 0, + 102 + ], "preferred_variant_name": "0.35 mm", "variants_name": "Nozzle Diam" }, - "overrides": { - "machine_name": { "default_value": "FelixTec4Dual" }, - + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "infill_pattern": { "value": "'tetrahedral'" }, + "infill_sparse_density": { "default_value": 20 }, "layer_height": { "default_value": 0.2 }, "layer_height_0": { "default_value": 0.3 }, - "infill_sparse_density": { "default_value": 20 }, - "wall_thickness": { "value": "1" }, - "top_bottom_thickness": { "default_value": 1 }, - - "infill_pattern": { "value": "'tetrahedral'" }, - - "machine_width": { "default_value": 255 }, - "machine_depth": { "default_value": 205 }, - "machine_height": { "default_value": 225 }, - - "machine_heated_bed": { "default_value": true }, - "machine_gcode_flavor": { "default_value": "Repetier" }, "machine_center_is_zero": { "default_value": false }, - - "speed_print": { "default_value": 60 }, - - "retraction_amount": { "default_value": 1 }, - "retraction_speed": { "default_value": 50}, + "machine_depth": { "default_value": 205 }, + "machine_end_gcode": { "default_value": "; FELIXprinters End Code Tec Series v1.0\n; Modified by kerog777@gmail.com\n; ================================= \n; Move extruder to park position\nG91 ; Make coordinates relative\nG1 Z2 F1000 ; Move z 2mm up\nG90 ; Use absolute coordinates again\nG1 X0 Y0 F15240 ; Move bed and printhead to ergonomic position\n\n; ================================= ; Turn off heaters\nM140 S0 ; Turn off bed heater\nT0 ; Select left extruder\nM104 T0 S0 ; Turn off heater and continue\nG92 E0 ; Reset extruder position\nG1 E-6 ; Retract filament 8mm\nG92 E0 ; Reset extruder position\nT1 ; Select right extruder\nM104 T1 S0 ; Turn off heater and continue\nG92 E0 ; Reset extruder position\nG1 E-6 ; Retract filament 8mm\nG92 E0 ; Reset extruder position\nT0 ; Select left extruder\n\n; ================================= ; Turn the rest off\nM107 ; Turn off fan\nM84 ; Disable steppers\nM117 Finished Printing!" }, + "machine_gcode_flavor": { "default_value": "Repetier" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 225 }, + "machine_name": { "default_value": "FelixTec4Dual" }, + "machine_start_gcode": { "default_value": "; FELIXprinters | www.FELIXprinters.com | Zeemanlaan 15 3401 MV IJsselstein The Netherlands\n; FELIX Tec 4 | Start Code Dual Extruders v1.0\n; Modified by kerog777@gmail.com\n;================================ \n;Initializing\nM80 ; Turn on the power supply\nM107 ; Turn off fans\nM117 Heating up\nM190 S{material_bed_temperature} ; Heatup Bed\nM104 T0 S120\nM104 T1 S120\nG28 ; Home all\nM109 T0 S{material_print_temperature_layer_0} ; Heatup hot-end\nM117 Purging\nT0 ; Select extruder 1\nG92 E0 ; Reset extruder\nG1 X10.0 Y1.1 Z5.0 F15240 ; Move to start-line position\nG1 Z0.3 F15240 ; Move z up\nG1 X127.0 Y1.1 Z0.3 F1500.0 E15 ; Purge 1st line\nG92 E0 ; Reset extruder\n\n;================================ ; Initializing done\nM117 FELIXprinting" }, + "machine_width": { "default_value": 255 }, "material_flow": { "default_value": 95 }, - "adhesion_type": { "default_value": "skirt" }, - "skirt_brim_minimal_length": { "default_value": 130}, - - "machine_start_gcode": { - "default_value": "; FELIXprinters | www.FELIXprinters.com | Zeemanlaan 15 3401 MV IJsselstein The Netherlands\n; FELIX Tec 4 | Start Code Dual Extruders v1.0\n; Modified by kerog777@gmail.com\n;================================ \n;Initializing\nM80 ; Turn on the power supply\nM107 ; Turn off fans\nM117 Heating up\nM190 S{material_bed_temperature} ; Heatup Bed\nM104 T0 S120\nM104 T1 S120\nG28 ; Home all\nM109 T0 S{material_print_temperature_layer_0} ; Heatup hot-end\nM117 Purging\nT0 ; Select extruder 1\nG92 E0 ; Reset extruder\nG1 X10.0 Y1.1 Z5.0 F15240 ; Move to start-line position\nG1 Z0.3 F15240 ; Move z up\nG1 X127.0 Y1.1 Z0.3 F1500.0 E15 ; Purge 1st line\nG92 E0 ; Reset extruder\n\n;================================ ; Initializing done\nM117 FELIXprinting" - }, - "machine_end_gcode": { - "default_value": "; FELIXprinters End Code Tec Series v1.0\n; Modified by kerog777@gmail.com\n; ================================= \n; Move extruder to park position\nG91 ; Make coordinates relative\nG1 Z2 F1000 ; Move z 2mm up\nG90 ; Use absolute coordinates again\nG1 X0 Y0 F15240 ; Move bed and printhead to ergonomic position\n\n; ================================= ; Turn off heaters\nM140 S0 ; Turn off bed heater\nT0 ; Select left extruder\nM104 T0 S0 ; Turn off heater and continue\nG92 E0 ; Reset extruder position\nG1 E-6 ; Retract filament 8mm\nG92 E0 ; Reset extruder position\nT1 ; Select right extruder\nM104 T1 S0 ; Turn off heater and continue\nG92 E0 ; Reset extruder position\nG1 E-6 ; Retract filament 8mm\nG92 E0 ; Reset extruder position\nT0 ; Select left extruder\n\n; ================================= ; Turn the rest off\nM107 ; Turn off fan\nM84 ; Disable steppers\nM117 Finished Printing!" - } + "retraction_amount": { "default_value": 1 }, + "retraction_speed": { "default_value": 50 }, + "skirt_brim_minimal_length": { "default_value": 130 }, + "speed_print": { "default_value": 60 }, + "top_bottom_thickness": { "default_value": 1 }, + "wall_thickness": { "value": "1" } } -} +} \ No newline at end of file diff --git a/resources/definitions/flashforge_base.def.json b/resources/definitions/flashforge_base.def.json index c41b03419f..0e7e2e01d5 100644 --- a/resources/definitions/flashforge_base.def.json +++ b/resources/definitions/flashforge_base.def.json @@ -2,43 +2,39 @@ "version": 2, "name": "Dreamer NX", "inherits": "fdmprinter", - "metadata": { + "machine_end_gcode": { "default_value": ";end gcode\nM104 S0 T0\nM140 S0 T0\nG162 Z F1800\nG28 X Y\nM652\nM132 X Y Z A B\nG91\nM18" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_start_gcode": { "default_value": ";Start Gcode\nG90 ;absolute positioning\nM118 X25.00 Y25.00 Z20.00 T0\nM140 S{material_bed_temperature_layer_0} T0 ;Heat bed up to first layer temperature\nM104 S{material_print_temperature_layer_0} T0 ;Set nozzle temperature to first layer temperature\nM107 ;start with the fan off\nG90\nG28\nM132 X Y Z A B\nG1 Z50.000 F420\nG161 X Y F3300\nM7 T0\nM6 T0\nM651\nM907 X100 Y100 Z40 A100 B20 ;Digital potentiometer value\nM108 T0\n;Purge line\nG1 X-110.00 Y-60.00 F4800\nG1 Z{layer_height_0} F420\nG1 X-110.00 Y60.00 E17,4 F1200\n;Purge line end" }, + "metadata": + { "visible": false, "author": "Egon", "manufacturer": "Flashforge", "file_formats": "text/x-gcode", - "first_start_actions": ["MachineSettingsAction"], - "machine_extruder_trains": - { - "0": "flashforge_dreamernx_extruder_0" - }, + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, "has_materials": true, "has_variants": true, - "has_machine_quality": true, - "preferred_variant_name": "0.4mm Nozzle", - "preferred_quality_type": "normal", + "machine_extruder_trains": { "0": "flashforge_dreamernx_extruder_0" }, "preferred_material": "generic_pla", + "preferred_quality_type": "normal", + "preferred_variant_name": "0.4mm Nozzle", "variants_name": "Nozzle Size" }, - "overrides": { - "machine_heated_bed": {"default_value": true}, - "machine_max_feedrate_x": { "value": 500 }, - "machine_max_feedrate_y": { "value": 500 }, - "machine_max_feedrate_z": { "value": 10 }, - "machine_max_feedrate_e": { "value": 50 }, + "overrides": + { + "machine_acceleration": { "value": 500 }, + "machine_heated_bed": { "default_value": true }, + "machine_max_acceleration_e": { "value": 5000 }, "machine_max_acceleration_x": { "value": 1500 }, "machine_max_acceleration_y": { "value": 1500 }, "machine_max_acceleration_z": { "value": 500 }, - "machine_max_acceleration_e": { "value": 5000 }, - "machine_acceleration": { "value": 500 }, + "machine_max_feedrate_e": { "value": 50 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 5 }, "machine_max_jerk_xy": { "value": 10 }, - "machine_max_jerk_z": { "value": 0.4 }, - "machine_max_jerk_e": { "value": 5 } - }, - - - "machine_gcode_flavor": {"default_value": "RepRap (Marlin/Sprinter)"}, - "machine_start_gcode": {"default_value": ";Start Gcode\nG90 ;absolute positioning\nM118 X25.00 Y25.00 Z20.00 T0\nM140 S{material_bed_temperature_layer_0} T0 ;Heat bed up to first layer temperature\nM104 S{material_print_temperature_layer_0} T0 ;Set nozzle temperature to first layer temperature\nM107 ;start with the fan off\nG90\nG28\nM132 X Y Z A B\nG1 Z50.000 F420\nG161 X Y F3300\nM7 T0\nM6 T0\nM651\nM907 X100 Y100 Z40 A100 B20 ;Digital potentiometer value\nM108 T0\n;Purge line\nG1 X-110.00 Y-60.00 F4800\nG1 Z{layer_height_0} F420\nG1 X-110.00 Y60.00 E17,4 F1200\n;Purge line end"}, - "machine_end_gcode": {"default_value": ";end gcode\nM104 S0 T0\nM140 S0 T0\nG162 Z F1800\nG28 X Y\nM652\nM132 X Y Z A B\nG91\nM18" - } + "machine_max_jerk_z": { "value": 0.4 } } +} \ No newline at end of file diff --git a/resources/definitions/flashforge_dreamer_nx.def.json b/resources/definitions/flashforge_dreamer_nx.def.json index 04eae33272..425c601133 100644 --- a/resources/definitions/flashforge_dreamer_nx.def.json +++ b/resources/definitions/flashforge_dreamer_nx.def.json @@ -2,32 +2,41 @@ "version": 2, "name": "Dreamer NX", "inherits": "flashforge_base", - "metadata": { + "metadata": + { "visible": true, "author": "Egon", "manufacturer": "Flashforge", "file_formats": "text/x-gcode", "platform": "FlashForge_DreamerNX.obj", - "platform_offset": [0, 0, 0], + "platform_offset": [ + 0, + 0, + 0 + ], "quality_definition": "flashforge_base" }, - - "overrides": { - "machine_name": { "default_value": "Dreamer NX" }, - "retraction_amount": { "default_value": 1.3 }, - "retraction_speed": { "default_value": 40 }, - "machine_width": {"default_value": 230}, - "machine_height": {"default_value": 140}, - "machine_depth": {"default_value": 150}, - "machine_center_is_zero": {"default_value": true}, - "machine_head_with_fans_polygon":{"default_value": [[ -15, -25 ],[ -15, 35 ],[ 40, 35 ],[ 40, -25 ]] + "overrides": + { + "gantry_height": { "value": "30" }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 150 }, + "machine_end_gcode": { "default_value": ";end gcode\nM104 S0 T0\nM140 S0 T0\nG162 Z F1800\nG28 X Y\nM652\nM132 X Y Z A B\nG91\nM18" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-15, -25], + [-15, 35], + [40, 35], + [40, -25] + ] }, - "gantry_height": {"value": "30"}, - - - "machine_gcode_flavor": {"default_value": "RepRap (Marlin/Sprinter)"}, - "machine_start_gcode": {"default_value": ";Start Gcode\nG90 ;absolute positioning\nM118 X25.00 Y25.00 Z20.00 T0\nM140 S{material_bed_temperature_layer_0} T0 ;Heat bed up to first layer temperature\nM104 S{material_print_temperature_layer_0} T0 ;Set nozzle temperature to first layer temperature\nM107 ;start with the fan off\nG90\nG28\nM132 X Y Z A B\nG1 Z50.000 F420\nG161 X Y F3300\nM7 T0\nM6 T0\nM651\nM907 X100 Y100 Z40 A100 B20 ;Digital potentiometer value\nM108 T0\n;Purge line\nG1 X-110.00 Y-60.00 F4800\nG1 Z{layer_height_0} F420\nG1 X-110.00 Y60.00 E17,4 F1200\n;Purge line end"}, - "machine_end_gcode": {"default_value": ";end gcode\nM104 S0 T0\nM140 S0 T0\nG162 Z F1800\nG28 X Y\nM652\nM132 X Y Z A B\nG91\nM18" - } + "machine_height": { "default_value": 140 }, + "machine_name": { "default_value": "Dreamer NX" }, + "machine_start_gcode": { "default_value": ";Start Gcode\nG90 ;absolute positioning\nM118 X25.00 Y25.00 Z20.00 T0\nM140 S{material_bed_temperature_layer_0} T0 ;Heat bed up to first layer temperature\nM104 S{material_print_temperature_layer_0} T0 ;Set nozzle temperature to first layer temperature\nM107 ;start with the fan off\nG90\nG28\nM132 X Y Z A B\nG1 Z50.000 F420\nG161 X Y F3300\nM7 T0\nM6 T0\nM651\nM907 X100 Y100 Z40 A100 B20 ;Digital potentiometer value\nM108 T0\n;Purge line\nG1 X-110.00 Y-60.00 F4800\nG1 Z{layer_height_0} F420\nG1 X-110.00 Y60.00 E17,4 F1200\n;Purge line end" }, + "machine_width": { "default_value": 230 }, + "retraction_amount": { "default_value": 1.3 }, + "retraction_speed": { "default_value": 40 } } -} +} \ No newline at end of file diff --git a/resources/definitions/flsun_q5.def.json b/resources/definitions/flsun_q5.def.json index db52b54eb6..93f6abddfa 100644 --- a/resources/definitions/flsun_q5.def.json +++ b/resources/definitions/flsun_q5.def.json @@ -2,45 +2,25 @@ "version": 2, "name": "Flsun Q5", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, - "manufacturer": "Flsun", "author": "Daniel Kreuzhofer", + "manufacturer": "Flsun", "file_formats": "text/x-gcode", - "machine_extruder_trains": { - "0": "flsun_q5_extruder" - } + "machine_extruder_trains": { "0": "flsun_q5_extruder" } }, - "overrides": { - "machine_extruder_count": { - "default_value": 1 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_width": { - "default_value": 200 - }, - "machine_height": { - "default_value": 200 - }, - "machine_depth": { - "default_value": 200 - }, - "machine_center_is_zero": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": ";FLAVOR:Marlin\r\nM82 ;absolute extrusion mode\r\nG21\r\nG90\r\nM82\r\nM107 T0\r\nG28\r\nG92 E0\r\nG0 E3 F200\r\nG92 E0 ; reset extrusion distance\r\nM106 S255 ; Enable cooling fan full speed\r\nG1 X-98 Y0 Z0.4 F3000 ; move to arc start\r\nG3 X0 Y-98 I98 Z0.4 E40 F400 ; lay arc stripe 90deg\r\nG92 E0 ; reset extrusion distance\r\nG4 P500 ; wait for 0.5 sec\r\nG0 Z10 E-1 ; Lift 15mm and retract 1mm filament\r\nG4 P2000 ; wait for 5 sec\r\nG0 Z15\r\nM107 ; Disable cooling fan\r\nG1 X0 Y-85 Z4 E0 F3000 ; get off the bed" - }, - "machine_end_gcode": { - "default_value": "M104 S0\r\nM140 S0\r\nG92 E1\r\nG1 E-1 F300\r\nG28 X0 Y0\r\nM84\r\nM82 ;absolute extrusion mode\r\nM104 S0" - }, - "machine_shape": { - "default_value": "elliptic" - } + "overrides": + { + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M104 S0\r\nM140 S0\r\nG92 E1\r\nG1 E-1 F300\r\nG28 X0 Y0\r\nM84\r\nM82 ;absolute extrusion mode\r\nM104 S0" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200 }, + "machine_shape": { "default_value": "elliptic" }, + "machine_start_gcode": { "default_value": ";FLAVOR:Marlin\r\nM82 ;absolute extrusion mode\r\nG21\r\nG90\r\nM82\r\nM107 T0\r\nG28\r\nG92 E0\r\nG0 E3 F200\r\nG92 E0 ; reset extrusion distance\r\nM106 S255 ; Enable cooling fan full speed\r\nG1 X-98 Y0 Z0.4 F3000 ; move to arc start\r\nG3 X0 Y-98 I98 Z0.4 E40 F400 ; lay arc stripe 90deg\r\nG92 E0 ; reset extrusion distance\r\nG4 P500 ; wait for 0.5 sec\r\nG0 Z10 E-1 ; Lift 15mm and retract 1mm filament\r\nG4 P2000 ; wait for 5 sec\r\nG0 Z15\r\nM107 ; Disable cooling fan\r\nG1 X0 Y-85 Z4 E0 F3000 ; get off the bed" }, + "machine_width": { "default_value": 200 } } -} +} \ No newline at end of file diff --git a/resources/definitions/flsun_qq.def.json b/resources/definitions/flsun_qq.def.json index 6c32fea5e3..712bb872aa 100644 --- a/resources/definitions/flsun_qq.def.json +++ b/resources/definitions/flsun_qq.def.json @@ -2,45 +2,25 @@ "version": 2, "name": "Flsun QQ", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, - "manufacturer": "Flsun", "author": "Daniel Green", + "manufacturer": "Flsun", "file_formats": "text/x-gcode", - "machine_extruder_trains": { - "0": "flsun_qq_extruder" - } + "machine_extruder_trains": { "0": "flsun_qq_extruder" } }, - "overrides": { - "machine_extruder_count": { - "default_value": 1 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_width": { - "default_value": 260 - }, - "machine_height": { - "default_value": 285 - }, - "machine_depth": { - "default_value": 260 - }, - "machine_center_is_zero": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F6000 ;Move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\n;Retract the filament\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" - }, - "machine_shape": { - "default_value": "elliptic" - } + "overrides": + { + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 260 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\n;Retract the filament\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 285 }, + "machine_shape": { "default_value": "elliptic" }, + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F6000 ;Move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" }, + "machine_width": { "default_value": 260 } } -} +} \ No newline at end of file diff --git a/resources/definitions/flsun_qq_s.def.json b/resources/definitions/flsun_qq_s.def.json index 024531a28d..2e2cb54a82 100644 --- a/resources/definitions/flsun_qq_s.def.json +++ b/resources/definitions/flsun_qq_s.def.json @@ -2,56 +2,27 @@ "version": 2, "name": "Flsun QQ-S", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Cataldo URSO & Eddy Emck ", "manufacturer": "Flsun", - "platform": "flsun_qq_s.3mf", "file_formats": "text/x-gcode", + "platform": "flsun_qq_s.3mf", "has_materials": true, - "preferred_quality_type": "draft", - "machine_extruder_trains": { - "0": "flsun_qq_s_extruder_0" - } + "machine_extruder_trains": { "0": "flsun_qq_s_extruder_0" }, + "preferred_quality_type": "draft" }, - "overrides": { - "machine_center_is_zero": { - "default_value": true - }, - "machine_shape": { - "default_value": "elliptic" - }, - "machine_width": { - "default_value": 260 - }, - "machine_depth": { - "default_value": 260 - }, - "machine_height": { - "default_value": 370 - }, - "z_seam_type": { - "default_value": "back" - }, - "gantry_height": { - "value": "0" - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - }, - "machine_start_gcode": { - "default_value": "G21\nG90\nM82\nM107 T0\nM190 S{material_bed_temperature_layer_0}\nM109 S{material_print_temperature_layer_0} T0\nG28\nG92 E0\nG0 E3 F200\nG92 E0\n" - }, - "machine_end_gcode": { - "default_value": "M107 T0\nM104 S0\nM104 S0 T1\nM140 S0\nG92 E0\nG91\nG1 E-1 F300 \nG1 Z+0.5 E-5 X-20 Y-20 F9000\nG28 X0 Y0\nM84 ;steppers off\nG90 ;absolute positioning\n" - }, - "infill_sparse_density": { - "default_value": 10 - }, - "machine_head_with_fans_polygon": { + "overrides": + { + "gantry_height": { "value": "0" }, + "infill_sparse_density": { "default_value": 10 }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 260 }, + "machine_end_gcode": { "default_value": "M107 T0\nM104 S0\nM104 S0 T1\nM140 S0\nG92 E0\nG91\nG1 E-1 F300 \nG1 Z+0.5 E-5 X-20 Y-20 F9000\nG28 X0 Y0\nM84 ;steppers off\nG90 ;absolute positioning\n" }, + "machine_gcode_flavor": { "default_value": "Repetier" }, + "machine_head_with_fans_polygon": + { "default_value": [ [0, 0], [0, 0], @@ -59,14 +30,14 @@ [0, 0] ] }, - "retraction_enable": { - "default_value": true - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "Repetier" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 370 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_shape": { "default_value": "elliptic" }, + "machine_start_gcode": { "default_value": "G21\nG90\nM82\nM107 T0\nM190 S{material_bed_temperature_layer_0}\nM109 S{material_print_temperature_layer_0} T0\nG28\nG92 E0\nG0 E3 F200\nG92 E0\n" }, + "machine_width": { "default_value": 260 }, + "material_diameter": { "default_value": 1.75 }, + "retraction_enable": { "default_value": true }, + "z_seam_type": { "default_value": "back" } } -} +} \ No newline at end of file diff --git a/resources/definitions/flsun_sr.def.json b/resources/definitions/flsun_sr.def.json index 643e8f64de..8967a68d46 100644 --- a/resources/definitions/flsun_sr.def.json +++ b/resources/definitions/flsun_sr.def.json @@ -2,43 +2,34 @@ "version": 2, "name": "Flsun Super Racer", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Thushan Fernando, Guislain Cyril", "manufacturer": "Flsun", - "platform": "flsun_sr.stl", - "platform_offset": [0,-81,-43.5], "file_formats": "text/x-gcode", - "has_materials": true, + "platform": "flsun_sr.stl", "has_machine_quality": true, - "preferred_quality_type": "normal", - "machine_extruder_trains": { - "0": "flsun_sr_extruder_0" - } + "has_materials": true, + "machine_extruder_trains": { "0": "flsun_sr_extruder_0" }, + "platform_offset": [ + 0, + -81, + -43.5 + ], + "preferred_quality_type": "normal" }, - "overrides": { - "machine_extruder_count": { - "default_value": 1 - }, - "retraction_enable": { - "default_value": true - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_width": { - "default_value": 264 - }, - "machine_depth": { - "default_value": 264 - }, - "machine_height": { - "default_value": 320 - }, - "machine_center_is_zero": { - "default_value": true - }, - "machine_head_with_fans_polygon": { + "overrides": + { + "gantry_height": { "value": "0" }, + "infill_sparse_density": { "default_value": 15 }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 264 }, + "machine_end_gcode": { "default_value": "G91 ; relative coordinates\nG1 E-1 F300 ; retract filament a bit before lifting\nG1 Z+5 E-5 F6000 ; raise platform from current position\nG28 X0 Y0 ; home axis\nG90 ; absolute coordinates\nG92 E0 ; reset extruder\nM104 S0 ; turn off hotend\nM140 S0 ; turn off heat bed\nM107 ; turn off fans\nM84 ; disable motors\n" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ [0, 0], [0, 0], @@ -46,32 +37,14 @@ [0, 0] ] }, - "z_seam_type": { - "value": "'back'" - }, - "gantry_height": { - "value": "0" - }, - "machine_shape": { - "default_value": "elliptic" - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - }, - "infill_sparse_density": { - "default_value": 15 - }, - "machine_start_gcode": { - "default_value": "G21 ; millimeter units\nG90 ; absolute coordinates\nM82 ; E absolute\nM140 S{material_bed_temperature}\nM104 S{material_print_temperature}\nM190 S{material_bed_temperature}\nM109 S{material_print_temperature}\nG28 ; home axis\nM420 S1 ; enable mesh leveling\n; Lower nozzle and move to start position\nG1 Z150\nG1 X-130 Y0 Z0.4 F3000\n; Extrude about 40 mm by printing a 90 degree arc\nG3 X0 Y-130 I130 Z0.3 E40 F2700\n; Retract and move nozzle up\nG92 E0\nG1 E-1.5 F1800\nG0 Z0.5\nG1 E0 F300\n" - }, - "machine_end_gcode": { - "default_value": "G91 ; relative coordinates\nG1 E-1 F300 ; retract filament a bit before lifting\nG1 Z+5 E-5 F6000 ; raise platform from current position\nG28 X0 Y0 ; home axis\nG90 ; absolute coordinates\nG92 E0 ; reset extruder\nM104 S0 ; turn off hotend\nM140 S0 ; turn off heat bed\nM107 ; turn off fans\nM84 ; disable motors\n" - }, - "machine_gcode_flavor": { - "default_value": "Marlin" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 320 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_shape": { "default_value": "elliptic" }, + "machine_start_gcode": { "default_value": "G21 ; millimeter units\nG90 ; absolute coordinates\nM82 ; E absolute\nM140 S{material_bed_temperature_layer_0}\nM104 S{material_print_temperature_layer_0}\nM190 S{material_bed_temperature_layer_0}\nM109 S{material_initial_print_temperature}\nG28 ; home axis\nM420 S1 ; enable mesh leveling\n; Lower nozzle and move to start position\nG1 Z150\nG1 X-130 Y0 Z0.4 F3000\n; Extrude about 40 mm by printing a 90 degree arc\nG3 X0 Y-130 I130 Z0.3 E40 F2700\n; Retract and move nozzle up\nG92 E0\nG1 E-1.5 F1800\nG0 Z0.5\nG1 E0 F300\n" }, + "machine_width": { "default_value": 264 }, + "material_diameter": { "default_value": 1.75 }, + "retraction_enable": { "default_value": true }, + "z_seam_type": { "value": "'back'" } } } \ No newline at end of file diff --git a/resources/definitions/flsun_v400.def.json b/resources/definitions/flsun_v400.def.json new file mode 100644 index 0000000000..0dfedce946 --- /dev/null +++ b/resources/definitions/flsun_v400.def.json @@ -0,0 +1,45 @@ +{ + "version": 2, + "name": "Flsun V400", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "FLSUN, Guislain Cyril", + "manufacturer": "Flsun", + "file_formats": "text/x-gcode", + "platform": "flsun_v400.stl", + "has_machine_quality": true, + "has_materials": true, + "machine_extruder_trains": { "0": "flsun_v400_extruder_0" }, + "platform_offset": [ + 0, + -40.6455, + -43.5 + ] + }, + "overrides": + { + "gantry_height": { "value": "0" }, + "infill_sparse_density": { "default_value": 15 }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "M107 T0\nM104 S0\nM104 S0 T1\nM140 S0\nG92 E0\nG91\nG1 E-1 F300\nG1 Z+0.5 F6000\nG28 \nG90 ;absolute positioning\n" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 410 }, + "machine_shape": { "default_value": "elliptic" }, + "machine_start_gcode": { "default_value": "G21\nG90\nM82\nM107 T0\nM140 S{material_bed_temperature}\nM104 S{material_print_temperature} T0\nM190 S{material_bed_temperature}\nM109 S{material_print_temperature} T0\nG28\nG1 F3000 Z1\nG1 X-150 Y0 Z0.4\nG92 E0\nG3 X0 Y-130 I150 Z0.3 E30 F2000\nG92 E0\n" }, + "machine_width": { "default_value": 300 }, + "material_diameter": { "default_value": 1.75 }, + "z_seam_type": { "value": "'back'" } + } +} \ No newline at end of file diff --git a/resources/definitions/flyingbear_base.def.json b/resources/definitions/flyingbear_base.def.json index 89da5ecf70..dcbeca1e9e 100644 --- a/resources/definitions/flyingbear_base.def.json +++ b/resources/definitions/flyingbear_base.def.json @@ -1,26 +1,13 @@ { - "name": "Flying Bear Base Printer", "version": 2, + "name": "Flying Bear Base Printer", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": false, "author": "oducceu", "manufacturer": "Flying Bear", "file_formats": "text/x-gcode", - "first_start_actions": ["MachineSettingsAction"], - - "machine_extruder_trains": { "0": "flyingbear_base_extruder_0" }, - - "has_materials": true, - "preferred_material": "generic_pla", - - "has_variants": true, - "variants_name": "Nozzle Size", - "preferred_variant_name": "0.4mm Nozzle", - - "has_machine_quality": true, - "preferred_quality_type": "normal", - "exclude_materials": [ "3D-Fuel_PLA_PRO_Black", "3D-Fuel_PLA_SnapSupport", @@ -88,55 +75,6 @@ "tizyx_pla", "tizyx_pla_bois", "tizyx_pva", - "ultimaker_abs_black", - "ultimaker_abs_blue", - "ultimaker_abs_green", - "ultimaker_abs_grey", - "ultimaker_abs_orange", - "ultimaker_abs_pearl-gold", - "ultimaker_abs_red", - "ultimaker_abs_silver-metallic", - "ultimaker_abs_white", - "ultimaker_abs_yellow", - "ultimaker_bam", - "ultimaker_cpe_black", - "ultimaker_cpe_blue", - "ultimaker_cpe_dark-grey", - "ultimaker_cpe_green", - "ultimaker_cpe_light-grey", - "ultimaker_cpe_plus_black", - "ultimaker_cpe_plus_transparent", - "ultimaker_cpe_plus_white", - "ultimaker_cpe_red", - "ultimaker_cpe_transparent", - "ultimaker_cpe_white", - "ultimaker_cpe_yellow", - "ultimaker_nylon_black", - "ultimaker_nylon_transparent", - "ultimaker_pc_black", - "ultimaker_pc_transparent", - "ultimaker_pc_white", - "ultimaker_pla_black", - "ultimaker_pla_blue", - "ultimaker_pla_green", - "ultimaker_pla_magenta", - "ultimaker_pla_orange", - "ultimaker_pla_pearl-white", - "ultimaker_pla_red", - "ultimaker_pla_silver-metallic", - "ultimaker_pla_transparent", - "ultimaker_pla_white", - "ultimaker_pla_yellow", - "ultimaker_pp_transparent", - "ultimaker_pva", - "ultimaker_tough_pla_black", - "ultimaker_tough_pla_green", - "ultimaker_tough_pla_red", - "ultimaker_tough_pla_white", - "ultimaker_tpu_black", - "ultimaker_tpu_blue", - "ultimaker_tpu_red", - "ultimaker_tpu_white", "verbatim_bvoh_175", "Vertex_Delta_ABS", "Vertex_Delta_PET", @@ -148,112 +86,98 @@ "Vertex_Delta_TPU", "zyyx_pro_flex", "zyyx_pro_pla" - ] + ], + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "flyingbear_base_extruder_0" }, + "preferred_material": "generic_pla", + "preferred_quality_type": "normal", + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Size" }, - "overrides": { - "machine_name": { "default_value": "Flying Bear Base Printer" }, - - "machine_start_gcode": { "default_value": "M220 S100 ;reset feedrate\nM221 S100 ;reset flowrate\nG90 ;use absolute coordinates\nM82 ;absolute extrusion mode\nG28 ;home\nG1 Z2 F1500 ;raise z\nG92 E0 ;reset extruder\n\nG1 X75 Y5 F5000 ;start position\nG1 Z0.28 F1500 ;lower z\nG1 E4 F500 ;prime the filament\nG1 X180 E10 F500 ;1st line\nG1 Y5.4 F5000\nG1 X75 E20 F500 ;2nd line\nG1 Z2 F1500 ;raise z\nG92 E0 ;reset extruder" }, - - "machine_end_gcode": { "default_value": "G91 ;use relative coordinates\nG1 E-4 F1500 ;retract the filament\nG1 X5 Y5 Z0.2 F5000 ;wipe\nG1 Z5 F1500 ;raise z\nG90 ;use absolute coordinates\nG1 X10 Y{machine_depth} F5000 ;park print head\n\nM107 ;turn off fan\nM104 S0 ;turn off hotend\nM140 S0 ;turn off heatbed\nM84 ;disable motors" }, - - "machine_heated_bed": { "default_value": true }, - "machine_shape": { "default_value": "rectangular" }, - "machine_buildplate_type": { "value": "glass" }, - "machine_center_is_zero": { "default_value": false }, - - "material_diameter": { "default_value": 1.75 }, - - "layer_height_0": { "value": 0.2 }, - "line_width": { "value": "machine_nozzle_size" }, - "skin_line_width": { "value": "machine_nozzle_size" }, - "infill_line_width": { "value": "line_width + 0.1" }, - "skirt_brim_line_width": { "value": "line_width + 0.1" }, - "support_interface_line_width": { "value": "line_width - 0.1" }, - - "wall_thickness": { "value": "line_width * 3" }, - "wall_0_wipe_dist": { "value": 0.0 }, - "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3 if layer_height > 0.15 else 0.8" }, - "optimize_wall_printing_order": { "value": true }, - "fill_outline_gaps": { "value": false }, - "z_seam_type": { "value": "'sharpest_corner'" }, - "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, - - "infill_sparse_density": { "value": 20 }, - "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, - "infill_overlap": { "value": 30 }, - "skin_overlap": { "value": 10 }, - "infill_wipe_dist": { "value": 0.0 }, - "infill_before_walls": { "value": false }, - "infill_enable_travel_optimization": { "value": true }, - - "material_initial_print_temperature": { "value": "material_print_temperature" }, - "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_flow": { "value": 100 }, - "retraction_enable": { "value": true }, - "retraction_min_travel": { "value": 1.5 }, - "retraction_count_max": { "value": 100 }, - "retraction_extrusion_window": { "value": 10 }, - - "speed_print": { "value": 60 } , - "speed_infill": { "value": "speed_print * 1.5" }, - "speed_wall": { "value": "speed_print / 2" }, - "speed_wall_0": { "value": "speed_wall" }, - "speed_wall_x": { "value": "speed_print" }, - "speed_roofing": { "value": "speed_topbottom" }, - "speed_topbottom": { "value": "speed_print / 2" }, - "speed_support": { "value": "speed_print" }, - "speed_support_interface": { "value": "speed_topbottom" }, - "speed_prime_tower": { "value": "speed_topbottom" }, - "speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" }, - "speed_layer_0": { "value": "speed_print / 2" }, - "speed_print_layer_0": { "value": "speed_layer_0" }, - "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, - "skirt_brim_speed": { "value": "speed_layer_0" }, - "speed_z_hop": { "value": 5 }, - - "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, - "travel_retract_before_outer_wall": { "value": true }, - "retraction_combing_max_distance": { "value": 30 }, - "travel_avoid_other_parts": { "value": true }, - "travel_avoid_supports": { "value": true }, - "retraction_hop_enabled": { "value": false }, - "retraction_hop": { "value": 0.2 }, - - "cool_fan_enabled": { "value": true }, + "overrides": + { + "adaptive_layer_height_variation": { "value": 0.04 }, + "adaptive_layer_height_variation_step": { "value": 0.04 }, + "adhesion_type": { "value": "'skirt'" }, + "brim_gap": { "value": "line_width / 2 if line_width < 0.4 else 0.2" }, + "brim_replaces_support": { "value": false }, "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, "cool_min_layer_time": { "value": 10 }, - - "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, - "support_pattern": { "value": "'zigzag'" }, - "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, - "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, - "support_xy_distance": { "value": "wall_line_width_0 * 2" }, - "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, - "support_xy_distance_overhang": { "value": "wall_line_width_0" }, - "minimum_support_area": { "value": 5 }, - "minimum_interface_area": { "value": 10 }, - "support_interface_enable": { "value": true }, - "support_interface_height": { "value": "layer_height * 4" }, - "support_interface_skip_height": { "value": 0.2 }, - "support_interface_density": { "value": 33 }, - "support_interface_pattern": { "value": "'grid'" }, - "support_wall_count": { "value": 1 }, - "support_brim_enable": { "value": true }, - "support_brim_width": { "value": 4 }, - "support_use_towers": { "value": false }, - - "adhesion_type": { "value": "'skirt'" }, - "skirt_line_count": { "value": 3 }, - "skirt_gap": { "value": 10 }, - "skirt_brim_minimal_length": { "value": 50 }, - "brim_replaces_support": { "value": false }, - "brim_gap": { "value": "line_width / 2 if line_width < 0.4 else 0.2" }, - + "fill_outline_gaps": { "value": false }, + "infill_before_walls": { "value": false }, + "infill_enable_travel_optimization": { "value": true }, + "infill_line_width": { "value": "line_width + 0.1" }, + "infill_overlap": { "value": 30 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_sparse_density": { "value": 20 }, + "infill_wipe_dist": { "value": 0.0 }, + "layer_height_0": { "value": 0.2 }, + "machine_buildplate_type": { "value": "glass" }, + "machine_center_is_zero": { "default_value": false }, + "machine_end_gcode": { "default_value": "G91 ;use relative coordinates\nG1 E-4 F1500 ;retract the filament\nG1 X5 Y5 Z0.2 F5000 ;wipe\nG1 Z5 F1500 ;raise z\nG90 ;use absolute coordinates\nG1 X10 Y{machine_depth} F5000 ;park print head\n\nM107 ;turn off fan\nM104 S0 ;turn off hotend\nM140 S0 ;turn off heatbed\nM84 ;disable motors" }, + "machine_heated_bed": { "default_value": true }, + "machine_name": { "default_value": "Flying Bear Base Printer" }, + "machine_shape": { "default_value": "rectangular" }, + "machine_start_gcode": { "default_value": "M220 S100 ;reset feedrate\nM221 S100 ;reset flowrate\nG90 ;use absolute coordinates\nM82 ;absolute extrusion mode\nG28 ;home\nG1 Z2 F1500 ;raise z\nG92 E0 ;reset extruder\n\nG1 X75 Y5 F5000 ;start position\nG1 Z0.28 F1500 ;lower z\nG1 E4 F500 ;prime the filament\nG1 X180 E10 F500 ;1st line\nG1 Y5.4 F5000\nG1 X75 E20 F500 ;2nd line\nG1 Z2 F1500 ;raise z\nG92 E0 ;reset extruder" }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, "meshfix_maximum_resolution": { "value": 0.25 }, "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, - - "adaptive_layer_height_variation": { "value": 0.04 }, - "adaptive_layer_height_variation_step": { "value": 0.04 } - } -} + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 5 }, + "optimize_wall_printing_order": { "value": true }, + "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, + "retraction_combing_max_distance": { "value": 30 }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 10 }, + "retraction_hop": { "value": 0.2 }, + "retraction_hop_enabled": { "value": false }, + "retraction_min_travel": { "value": 1.5 }, + "skin_line_width": { "value": "machine_nozzle_size" }, + "skin_overlap": { "value": 10 }, + "skirt_brim_line_width": { "value": "line_width + 0.1" }, + "skirt_brim_minimal_length": { "value": 50 }, + "skirt_brim_speed": { "value": "speed_layer_0" }, + "skirt_gap": { "value": 10 }, + "skirt_line_count": { "value": 3 }, + "speed_infill": { "value": "speed_print * 1.5" }, + "speed_layer_0": { "value": "speed_print / 2" }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": 60 }, + "speed_roofing": { "value": "speed_topbottom" }, + "speed_support": { "value": "speed_print" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" }, + "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, + "speed_wall_x": { "value": "speed_print" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 4 }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 33 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_line_width": { "value": "line_width - 0.1" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_interface_skip_height": { "value": 0.2 }, + "support_pattern": { "value": "'zigzag'" }, + "support_wall_count": { "value": 1 }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3 if layer_height > 0.15 else 0.8" }, + "travel_avoid_other_parts": { "value": true }, + "travel_avoid_supports": { "value": true }, + "travel_retract_before_outer_wall": { "value": true }, + "wall_0_wipe_dist": { "value": 0.0 }, + "wall_thickness": { "value": "line_width * 3" }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, + "z_seam_type": { "value": "'sharpest_corner'" } + } +} \ No newline at end of file diff --git a/resources/definitions/flyingbear_ghost_4s.def.json b/resources/definitions/flyingbear_ghost_4s.def.json index 08bd3a2d97..fe5b82a49f 100644 --- a/resources/definitions/flyingbear_ghost_4s.def.json +++ b/resources/definitions/flyingbear_ghost_4s.def.json @@ -1,54 +1,45 @@ { - "name": "Flying Bear Ghost 4S", - "version": 2, - "inherits": "flyingbear_base", - "metadata": { - "visible": true, - "author": "oducceu", - - "platform": "flyingbear_platform.obj", - "platform_texture": "flyingbear_platform.png", - - "quality_definition": "flyingbear_base" - - }, - - "overrides": { - "machine_name": { "default_value": "Flying Bear Ghost 4S" }, - "machine_width": { "default_value": 255 }, - "machine_depth": { "default_value": 210 }, - "machine_height": { "default_value": 200 }, - - "machine_steps_per_mm_x": { "default_value": 80 }, - "machine_steps_per_mm_y": { "default_value": 80 }, - "machine_steps_per_mm_z": { "default_value": 400 }, - "machine_steps_per_mm_e": { "default_value": 400 }, - - "machine_max_feedrate_x": { "value": 200 }, - "machine_max_feedrate_y": { "value": 200 }, - "machine_max_feedrate_z": { "value": 20 }, - "machine_max_feedrate_e": { "value": 70 }, - - "acceleration_enabled": { "value": false }, - "jerk_enabled": { "value": false }, - - "machine_max_acceleration_x": { "value": 1000 }, - "machine_max_acceleration_y": { "value": 1000 }, - "machine_max_acceleration_z": { "value": 100 }, - "machine_max_acceleration_e": { "value": 1000 }, - "machine_acceleration": { "value": 1000 }, - - "machine_max_jerk_xy": { "value": 20 }, - "machine_max_jerk_z": { "value": 0.4 }, - "machine_max_jerk_e": { "value": 5.0 }, - - "acceleration_print": { "value": 1000 }, - "acceleration_travel": { "value": 1000 }, - "acceleration_travel_layer_0": { "value": "acceleration_travel" }, - "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, - - "jerk_print": { "value": 20 }, - "jerk_travel": { "value": "jerk_print" }, - "jerk_travel_layer_0": { "value": "jerk_travel" } - } + "version": 2, + "name": "Flying Bear Ghost 4S", + "inherits": "flyingbear_base", + "metadata": + { + "visible": true, + "author": "oducceu", + "platform": "flyingbear_platform.obj", + "platform_texture": "flyingbear_platform.png", + "quality_definition": "flyingbear_base" + }, + "overrides": + { + "acceleration_enabled": { "value": false }, + "acceleration_print": { "value": 1000 }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, + "acceleration_travel": { "value": 1000 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel" }, + "jerk_enabled": { "value": false }, + "jerk_print": { "value": 20 }, + "jerk_travel": { "value": "jerk_print" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "machine_acceleration": { "value": 1000 }, + "machine_depth": { "default_value": 210 }, + "machine_height": { "default_value": 200 }, + "machine_max_acceleration_e": { "value": 1000 }, + "machine_max_acceleration_x": { "value": 1000 }, + "machine_max_acceleration_y": { "value": 1000 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_feedrate_e": { "value": 70 }, + "machine_max_feedrate_x": { "value": 200 }, + "machine_max_feedrate_y": { "value": 200 }, + "machine_max_feedrate_z": { "value": 20 }, + "machine_max_jerk_e": { "value": 5.0 }, + "machine_max_jerk_xy": { "value": 20 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_name": { "default_value": "Flying Bear Ghost 4S" }, + "machine_steps_per_mm_e": { "default_value": 400 }, + "machine_steps_per_mm_x": { "default_value": 80 }, + "machine_steps_per_mm_y": { "default_value": 80 }, + "machine_steps_per_mm_z": { "default_value": 400 }, + "machine_width": { "default_value": 255 } + } } \ No newline at end of file diff --git a/resources/definitions/flyingbear_ghost_5.def.json b/resources/definitions/flyingbear_ghost_5.def.json index cd799f8591..26108d9eeb 100644 --- a/resources/definitions/flyingbear_ghost_5.def.json +++ b/resources/definitions/flyingbear_ghost_5.def.json @@ -1,54 +1,45 @@ { - "name": "Flying Bear Ghost 5", - "version": 2, - "inherits": "flyingbear_base", - "metadata": { - "visible": true, - "author": "oducceu", - - "platform": "flyingbear_platform.obj", - "platform_texture": "flyingbear_platform.png", - - "quality_definition": "flyingbear_base" - - }, - - "overrides": { - "machine_name": { "default_value": "Flying Bear Ghost 5" }, - "machine_width": { "default_value": 255 }, - "machine_depth": { "default_value": 210 }, - "machine_height": { "default_value": 200 }, - - "machine_steps_per_mm_x": { "default_value": 80 }, - "machine_steps_per_mm_y": { "default_value": 80 }, - "machine_steps_per_mm_z": { "default_value": 400 }, - "machine_steps_per_mm_e": { "default_value": 410 }, - - "machine_max_feedrate_x": { "value": 300 }, - "machine_max_feedrate_y": { "value": 300 }, - "machine_max_feedrate_z": { "value": 20 }, - "machine_max_feedrate_e": { "value": 70 }, - - "acceleration_enabled": { "value": false }, - "jerk_enabled": { "value": false }, - - "machine_max_acceleration_x": { "value": 1000 }, - "machine_max_acceleration_y": { "value": 1000 }, - "machine_max_acceleration_z": { "value": 200 }, - "machine_max_acceleration_e": { "value": 80000 }, - "machine_acceleration": { "value": 1000 }, - - "machine_max_jerk_xy": { "value": 20 }, - "machine_max_jerk_z": { "value": 0.4 }, - "machine_max_jerk_e": { "value": 5.0 }, - - "acceleration_print": { "value": 1000 }, - "acceleration_travel": { "value": 3000 }, - "acceleration_travel_layer_0": { "value": "acceleration_travel" }, - "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, - - "jerk_print": { "value": 20 }, - "jerk_travel": { "value": "jerk_print" }, - "jerk_travel_layer_0": { "value": "jerk_travel" } - } + "version": 2, + "name": "Flying Bear Ghost 5", + "inherits": "flyingbear_base", + "metadata": + { + "visible": true, + "author": "oducceu", + "platform": "flyingbear_platform.obj", + "platform_texture": "flyingbear_platform.png", + "quality_definition": "flyingbear_base" + }, + "overrides": + { + "acceleration_enabled": { "value": false }, + "acceleration_print": { "value": 1000 }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, + "acceleration_travel": { "value": 3000 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel" }, + "jerk_enabled": { "value": false }, + "jerk_print": { "value": 20 }, + "jerk_travel": { "value": "jerk_print" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "machine_acceleration": { "value": 1000 }, + "machine_depth": { "default_value": 210 }, + "machine_height": { "default_value": 200 }, + "machine_max_acceleration_e": { "value": 80000 }, + "machine_max_acceleration_x": { "value": 1000 }, + "machine_max_acceleration_y": { "value": 1000 }, + "machine_max_acceleration_z": { "value": 200 }, + "machine_max_feedrate_e": { "value": 70 }, + "machine_max_feedrate_x": { "value": 300 }, + "machine_max_feedrate_y": { "value": 300 }, + "machine_max_feedrate_z": { "value": 20 }, + "machine_max_jerk_e": { "value": 5.0 }, + "machine_max_jerk_xy": { "value": 20 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_name": { "default_value": "Flying Bear Ghost 5" }, + "machine_steps_per_mm_e": { "default_value": 410 }, + "machine_steps_per_mm_x": { "default_value": 80 }, + "machine_steps_per_mm_y": { "default_value": 80 }, + "machine_steps_per_mm_z": { "default_value": 400 }, + "machine_width": { "default_value": 255 } + } } \ No newline at end of file diff --git a/resources/definitions/folgertech_FT-5.def.json b/resources/definitions/folgertech_FT-5.def.json index 092d032842..79a2b2192f 100644 --- a/resources/definitions/folgertech_FT-5.def.json +++ b/resources/definitions/folgertech_FT-5.def.json @@ -1,30 +1,24 @@ { - "version": 2, + "version": 2, "name": "Folger Tech FT-5", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Jaime van Kessel & Paul Bussiere", "manufacturer": "Folger Tech", "file_formats": "text/x-gcode", "platform": "FT-5_build_plate.3mf", - "machine_extruder_trains": - { - "0": "folgertech_FT-5_extruder_0" - } + "machine_extruder_trains": { "0": "folgertech_FT-5_extruder_0" } }, - "overrides": { - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 300 }, - "machine_height": { "default_value": 400 }, - "machine_depth": { "default_value": 300 }, + "overrides": + { "gantry_height": { "value": "55" }, - - "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 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 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_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 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_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 400 }, + "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 E3 ;extrude 3mm 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": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/fusedform_300.def.json b/resources/definitions/fusedform_300.def.json index d4199abd5c..f6654279e6 100644 --- a/resources/definitions/fusedform_300.def.json +++ b/resources/definitions/fusedform_300.def.json @@ -2,29 +2,29 @@ "version": 2, "name": "FF300", "inherits": "fusedform_base", - - "metadata": { - "quality_definition": "fusedform_base", - "visible": true + "metadata": + { + "visible": true, + "quality_definition": "fusedform_base" }, - - "overrides": { - "machine_name": { "default_value": "FF300" }, - "machine_width": { "default_value": 360 }, + "overrides": + { + "acceleration_travel": { "value": 1000 }, + "machine_acceleration": { "default_value": 1000 }, "machine_depth": { "default_value": 300 }, + "machine_extruder_count": { "value": 1 }, "machine_height": { "default_value": 320 }, - "machine_extruder_count": { "value": 1 }, + "machine_max_acceleration_x": { "value": 1200 }, + "machine_max_acceleration_y": { "value": 1200 }, + "machine_max_acceleration_z": { "default_value": 100 }, + "machine_max_feedrate_e": { "default_value": 100 }, "machine_max_feedrate_x": { "default_value": 100 }, "machine_max_feedrate_y": { "default_value": 100 }, - "machine_max_feedrate_z": { "default_value": 3 }, - "machine_max_feedrate_e": { "default_value": 100 }, - "machine_max_acceleration_x": {"value":1200}, - "machine_max_acceleration_y": {"value":1200}, - "machine_max_acceleration_z": { "default_value": 100 }, - "machine_acceleration": { "default_value": 1000 }, + "machine_max_feedrate_z": { "default_value": 3 }, + "machine_max_jerk_e": { "default_value": 5 }, "machine_max_jerk_xy": { "default_value": 8 }, "machine_max_jerk_z": { "default_value": 0.3 }, - "machine_max_jerk_e": { "default_value": 5 }, - "acceleration_travel": {"value":1000} + "machine_name": { "default_value": "FF300" }, + "machine_width": { "default_value": 360 } } -} +} \ No newline at end of file diff --git a/resources/definitions/fusedform_300_doppia.def.json b/resources/definitions/fusedform_300_doppia.def.json index 6b13bc02ea..b9fca582fb 100644 --- a/resources/definitions/fusedform_300_doppia.def.json +++ b/resources/definitions/fusedform_300_doppia.def.json @@ -2,29 +2,29 @@ "version": 2, "name": "FF300 Doppia", "inherits": "fusedform_doppia_base", - "metadata": { + "metadata": + { "visible": true, "quality_definition": "fusedform_base" }, - - "overrides": { - "machine_extruder_count": { "value": 2 }, - "machine_name": { "default_value": "FF300 Doppia" }, - "machine_width": { "default_value": 360 }, - "machine_depth": { "default_value": 300 }, - "machine_height": { "default_value": 320 }, - "machine_max_feedrate_x": { "default_value": 100 }, - "machine_max_feedrate_y": { "default_value": 100 }, - "machine_max_feedrate_z": { "default_value": 3 }, - "machine_max_feedrate_e": { "default_value": 100 }, - "machine_max_acceleration_x": {"value":900}, - "machine_max_acceleration_y": {"value":900}, - "machine_max_acceleration_z": { "default_value": 100 }, + "overrides": + { + "acceleration_travel": { "value": 900 }, "machine_acceleration": { "default_value": 900 }, + "machine_depth": { "default_value": 300 }, + "machine_extruder_count": { "value": 2 }, + "machine_height": { "default_value": 320 }, + "machine_max_acceleration_x": { "value": 900 }, + "machine_max_acceleration_y": { "value": 900 }, + "machine_max_acceleration_z": { "default_value": 100 }, + "machine_max_feedrate_e": { "default_value": 100 }, + "machine_max_feedrate_x": { "default_value": 100 }, + "machine_max_feedrate_y": { "default_value": 100 }, + "machine_max_feedrate_z": { "default_value": 3 }, + "machine_max_jerk_e": { "default_value": 5 }, "machine_max_jerk_xy": { "default_value": 8 }, "machine_max_jerk_z": { "default_value": 0.3 }, - "machine_max_jerk_e": { "default_value": 5 }, - "acceleration_travel": {"value":900} - + "machine_name": { "default_value": "FF300 Doppia" }, + "machine_width": { "default_value": 360 } } -} +} \ No newline at end of file diff --git a/resources/definitions/fusedform_600.def.json b/resources/definitions/fusedform_600.def.json index 04ee166859..a9342410e1 100644 --- a/resources/definitions/fusedform_600.def.json +++ b/resources/definitions/fusedform_600.def.json @@ -2,29 +2,29 @@ "version": 2, "name": "FF600", "inherits": "fusedform_base", - - "metadata": { - "quality_definition": "fusedform_base", - "visible": true + "metadata": + { + "visible": true, + "quality_definition": "fusedform_base" }, - - "overrides": { - "machine_name": { "default_value": "FF600" }, - "machine_width": { "default_value": 500 }, + "overrides": + { + "acceleration_travel": { "value": 800 }, + "machine_acceleration": { "default_value": 1000 }, "machine_depth": { "default_value": 500 }, + "machine_extruder_count": { "value": 1 }, "machine_height": { "default_value": 600 }, - "machine_extruder_count": { "value": 1 }, + "machine_max_acceleration_x": { "value": 1200 }, + "machine_max_acceleration_y": { "value": 1200 }, + "machine_max_acceleration_z": { "default_value": 100 }, + "machine_max_feedrate_e": { "default_value": 100 }, "machine_max_feedrate_x": { "default_value": 100 }, "machine_max_feedrate_y": { "default_value": 100 }, - "machine_max_feedrate_z": { "default_value": 3 }, - "machine_max_feedrate_e": { "default_value": 100 }, - "machine_max_acceleration_x": {"value":1200}, - "machine_max_acceleration_y": {"value":1200}, - "machine_max_acceleration_z": { "default_value": 100 }, - "machine_acceleration": { "default_value": 1000 }, + "machine_max_feedrate_z": { "default_value": 3 }, + "machine_max_jerk_e": { "default_value": 5 }, "machine_max_jerk_xy": { "default_value": 8 }, "machine_max_jerk_z": { "default_value": 0.3 }, - "machine_max_jerk_e": { "default_value": 5 }, - "acceleration_travel": {"value":800} + "machine_name": { "default_value": "FF600" }, + "machine_width": { "default_value": 500 } } -} +} \ No newline at end of file diff --git a/resources/definitions/fusedform_600_doppia.def.json b/resources/definitions/fusedform_600_doppia.def.json index b6c8ce279f..651cd6dbe5 100644 --- a/resources/definitions/fusedform_600_doppia.def.json +++ b/resources/definitions/fusedform_600_doppia.def.json @@ -2,29 +2,29 @@ "version": 2, "name": "FF600 Doppia", "inherits": "fusedform_doppia_base", - "metadata": { + "metadata": + { "visible": true, "quality_definition": "fusedform_base" }, - - "overrides": { - "machine_extruder_count": { "value": 2 }, - "machine_name": { "default_value": "FF600 Doppia" }, - "machine_width": { "default_value": 500 }, + "overrides": + { + "acceleration_travel": { "value": 900 }, + "machine_acceleration": { "default_value": 900 }, "machine_depth": { "default_value": 500 }, + "machine_extruder_count": { "value": 2 }, "machine_height": { "default_value": 600 }, + "machine_max_acceleration_x": { "value": 900 }, + "machine_max_acceleration_y": { "value": 900 }, + "machine_max_acceleration_z": { "default_value": 100 }, + "machine_max_feedrate_e": { "default_value": 100 }, "machine_max_feedrate_x": { "default_value": 100 }, "machine_max_feedrate_y": { "default_value": 100 }, - "machine_max_feedrate_z": { "default_value": 3 }, - "machine_max_feedrate_e": { "default_value": 100 }, - "machine_max_acceleration_x": {"value":900}, - "machine_max_acceleration_y": {"value":900}, - "machine_max_acceleration_z": { "default_value": 100 }, - "machine_acceleration": { "default_value": 900 }, + "machine_max_feedrate_z": { "default_value": 3 }, + "machine_max_jerk_e": { "default_value": 5 }, "machine_max_jerk_xy": { "default_value": 8 }, "machine_max_jerk_z": { "default_value": 0.3 }, - "machine_max_jerk_e": { "default_value": 5 }, - "acceleration_travel": {"value":900} - + "machine_name": { "default_value": "FF600 Doppia" }, + "machine_width": { "default_value": 500 } } -} +} \ No newline at end of file diff --git a/resources/definitions/fusedform_600plus.def.json b/resources/definitions/fusedform_600plus.def.json index 221ac3eead..86c106718d 100644 --- a/resources/definitions/fusedform_600plus.def.json +++ b/resources/definitions/fusedform_600plus.def.json @@ -2,30 +2,29 @@ "version": 2, "name": "FF600plus", "inherits": "fusedform_base", - - "metadata": { - "quality_definition": "fusedform_base", - "visible": true + "metadata": + { + "visible": true, + "quality_definition": "fusedform_base" }, - - "overrides": { - "machine_name": { "default_value": "FF600plus" }, - "machine_width": { "default_value": 600 }, + "overrides": + { + "acceleration_travel": { "value": 800 }, + "machine_acceleration": { "default_value": 1000 }, "machine_depth": { "default_value": 600 }, + "machine_extruder_count": { "value": 1 }, "machine_height": { "default_value": 600 }, - "machine_extruder_count": { "value": 1 }, + "machine_max_acceleration_x": { "value": 1200 }, + "machine_max_acceleration_y": { "value": 1200 }, + "machine_max_acceleration_z": { "default_value": 100 }, + "machine_max_feedrate_e": { "default_value": 100 }, "machine_max_feedrate_x": { "default_value": 100 }, "machine_max_feedrate_y": { "default_value": 100 }, - "machine_max_feedrate_z": { "default_value": 3 }, - "machine_max_feedrate_e": { "default_value": 100 }, - "machine_max_acceleration_x": {"value":1200}, - "machine_max_acceleration_y": {"value":1200}, - "machine_max_acceleration_z": { "default_value": 100 }, - "machine_acceleration": { "default_value": 1000 }, + "machine_max_feedrate_z": { "default_value": 3 }, + "machine_max_jerk_e": { "default_value": 5 }, "machine_max_jerk_xy": { "default_value": 8 }, "machine_max_jerk_z": { "default_value": 0.3 }, - "machine_max_jerk_e": { "default_value": 5 }, - "acceleration_travel": {"value":800} + "machine_name": { "default_value": "FF600plus" }, + "machine_width": { "default_value": 600 } } - -} +} \ No newline at end of file diff --git a/resources/definitions/fusedform_600plus_doppia.def.json b/resources/definitions/fusedform_600plus_doppia.def.json index de3889c1a8..818f7511d8 100644 --- a/resources/definitions/fusedform_600plus_doppia.def.json +++ b/resources/definitions/fusedform_600plus_doppia.def.json @@ -2,32 +2,29 @@ "version": 2, "name": "FF600plus Doppia", "inherits": "fusedform_doppia_base", - "metadata": { + "metadata": + { "visible": true, "quality_definition": "fusedform_base" }, - - "overrides": { - "machine_extruder_count": { "value": 2 }, - "machine_name": { "default_value": "FF600plus Doppia" }, - "machine_width": { "default_value": 600 }, + "overrides": + { + "acceleration_travel": { "value": 900 }, + "machine_acceleration": { "default_value": 900 }, "machine_depth": { "default_value": 600 }, + "machine_extruder_count": { "value": 2 }, "machine_height": { "default_value": 600 }, + "machine_max_acceleration_x": { "value": 900 }, + "machine_max_acceleration_y": { "value": 900 }, + "machine_max_acceleration_z": { "default_value": 100 }, + "machine_max_feedrate_e": { "default_value": 100 }, "machine_max_feedrate_x": { "default_value": 100 }, "machine_max_feedrate_y": { "default_value": 100 }, - "machine_max_feedrate_z": { "default_value": 3 }, - "machine_max_feedrate_e": { "default_value": 100 }, - "machine_max_acceleration_x": {"value":900}, - "machine_max_acceleration_y": {"value":900}, - "machine_max_acceleration_z": { "default_value": 100 }, - "machine_acceleration": { "default_value": 900 }, + "machine_max_feedrate_z": { "default_value": 3 }, + "machine_max_jerk_e": { "default_value": 5 }, "machine_max_jerk_xy": { "default_value": 8 }, "machine_max_jerk_z": { "default_value": 0.3 }, - "machine_max_jerk_e": { "default_value": 5 }, - "acceleration_travel": {"value":900} - - - - + "machine_name": { "default_value": "FF600plus Doppia" }, + "machine_width": { "default_value": 600 } } -} +} \ No newline at end of file diff --git a/resources/definitions/fusedform_base.def.json b/resources/definitions/fusedform_base.def.json index 1777b93913..d58e82b818 100644 --- a/resources/definitions/fusedform_base.def.json +++ b/resources/definitions/fusedform_base.def.json @@ -2,81 +2,79 @@ "version": 2, "name": "fusedform_base", "inherits": "fdmprinter", - "metadata": { + "metadata": + { + "visible": false, "author": "Juan Blanco", "manufacturer": "Fused Form", - "visible": false, - "machine_extruder_trains":{"0": "fusedform_base_extruder_0"}, - "preferred_material": "generic_pla", "exclude_materials": [ "structur3d_dap100silicone" ], - "has_machine_quality": true, - "has_materials": true, + "has_machine_quality": true, + "has_materials": true, + "machine_extruder_trains": { "0": "fusedform_base_extruder_0" }, + "preferred_material": "generic_pla", "preferred_quality_type": "normal" }, - - "overrides": { - "machine_heated_bed": { "default_value": true }, - "machine_center_is_zero": {"default_value": false}, - "machine_head_with_fans_polygon":{"default_value": [ - [ -20, 20 ], - [ -20, -20 ], - [ 18, 20 ], - [ 18, -18 ] + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "cool_fan_enabled": { "default_value": true }, + "cool_fan_full_at_height": { "value": 0.4 }, + "cool_fan_full_layer": { "value": 2 }, + "cool_min_speed": { "value": 30 }, + "gantry_height": { "value": "70" }, + "infill_overlap": { "value": 0 }, + "infill_sparse_density": { "value": 15 }, + "layer_height": { "default_value": 0.15 }, + "layer_height_0": { "default_value": 0.2 }, + "machine_center_is_zero": { "default_value": false }, + "machine_end_gcode": { "value": "'M104 S0 ;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\\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\\nM84 ;steppers off\\nG90 ;absolute positioning\\nM107 ; Fans off'" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-20, 20], + [-20, -20], + [18, 20], + [18, -18] ] }, - "gantry_height": {"value": "70"}, - - "machine_use_extruder_offset_to_offset_coords": {"default_value": true}, - "machine_gcode_flavor": {"default_value": "RepRap (Marlin/Sprinter)"}, - "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\n;Put printing message on LCD screen\nM117 Printing..."}, - "machine_end_gcode": {"value": "'M104 S0 ;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\\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\\nM84 ;steppers off\\nG90 ;absolute positioning\\nM107 ; Fans off'"}, - - "layer_height": { "default_value": 0.15 }, - "layer_height_0": { "default_value": 0.2 }, - - "wall_line_count":{ "value": 3 }, - "wall_thickness": { "value": 1.2 }, - "top_bottom_thickness": {"value": 1.5}, - "optimize_wall_printing_order": {"value": true}, - - "infill_sparse_density": {"value":15}, - "infill_overlap": {"value": 0}, - - "speed_print": { "value": 45 }, - "speed_infill": { "value": 45 }, - "speed_travel": { "value": 75 }, - "speed_topbottom": {"value": 40 }, - "speed_wall": { "value": 35 }, - "speed_wall_x": { "value": 40 }, - - "retraction_enable": {"default_value":true}, - "retraction_amount": { "default_value": 4 }, - "retraction_speed": { "default_value": 70}, - "retraction_min_travel": {"value":5 }, - "retraction_count_max": {"default_value":10 }, - "retraction_extrusion_window": {"value":4 }, - "retraction_hop": {"default_value":0.2}, - "retraction_hop_enabled": {"value":true}, - "speed_z_hop": {"value":2.5 }, - - "cool_fan_enabled": {"default_value":true}, - "cool_fan_full_at_height": {"value":0.4}, - "cool_fan_full_layer": {"value":2}, - "cool_min_speed": {"value":30}, - - "support_enable": {"value":true}, - "support_angle": {"default_value": 50}, - "support_brim_enable": {"value":true}, - "support_infill_angles": {"value":[-45]}, - "support_interface_density": {"value": 70}, - "support_interface_enable": {"value": true }, - "support_interface_height": {"value": 0.5}, - "support_interface_pattern": {"default_value":"lines"}, - "support_pattern": {"default_value":"lines"}, - "support_xy_distance": {"value": 0.5}, - "support_z_distance": {"value": 0.3 }, - - - "adhesion_type": {"default_value":"skirt"} + "machine_heated_bed": { "default_value": true }, + "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\n;Put printing message on LCD screen\nM117 Printing..." }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, + "optimize_wall_printing_order": { "value": true }, + "retraction_amount": { "default_value": 4 }, + "retraction_count_max": { "default_value": 10 }, + "retraction_enable": { "default_value": true }, + "retraction_extrusion_window": { "value": 4 }, + "retraction_hop": { "default_value": 0.2 }, + "retraction_hop_enabled": { "value": true }, + "retraction_min_travel": { "value": 5 }, + "retraction_speed": { "default_value": 70 }, + "speed_infill": { "value": 45 }, + "speed_print": { "value": 45 }, + "speed_topbottom": { "value": 40 }, + "speed_travel": { "value": 75 }, + "speed_wall": { "value": 35 }, + "speed_wall_x": { "value": 40 }, + "speed_z_hop": { "value": 2.5 }, + "support_angle": { "default_value": 50 }, + "support_brim_enable": { "value": true }, + "support_enable": { "value": true }, + "support_infill_angles": + { + "value": [ + -45 + ] + }, + "support_interface_density": { "value": 70 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": 0.5 }, + "support_interface_pattern": { "default_value": "lines" }, + "support_pattern": { "default_value": "lines" }, + "support_xy_distance": { "value": 0.5 }, + "support_z_distance": { "value": 0.3 }, + "top_bottom_thickness": { "value": 1.5 }, + "wall_line_count": { "value": 3 }, + "wall_thickness": { "value": 1.2 } } -} +} \ No newline at end of file diff --git a/resources/definitions/fusedform_doppia_base.def.json b/resources/definitions/fusedform_doppia_base.def.json index add20dfc77..f333829270 100644 --- a/resources/definitions/fusedform_doppia_base.def.json +++ b/resources/definitions/fusedform_doppia_base.def.json @@ -2,83 +2,85 @@ "version": 2, "name": "fusedform_doppia_base", "inherits": "fusedform_base", - "metadata": { + "metadata": + { + "visible": false, "author": "Juan Blanco", "manufacturer": "Fused Form", - "visible": false, - "machine_extruder_trains":{"0": "fusedform_doppia_base_extruder_0","1": "fusedform_doppia_base_extruder_1"}, - "preferred_material": "generic_pla", "exclude_materials": [ "structur3d_dap100silicone" ], - "has_machine_quality": true, - "has_materials": true, + "has_machine_quality": true, + "has_materials": true, + "machine_extruder_trains": + { + "0": "fusedform_doppia_base_extruder_0", + "1": "fusedform_doppia_base_extruder_1" + }, + "preferred_material": "generic_pla", "preferred_quality_type": "normal" }, - - "overrides": { - "machine_heated_bed": { "default_value": true }, - "machine_center_is_zero": {"default_value": false}, - "machine_head_with_fans_polygon":{"default_value": [ - [ -20, 20 ], - [ -20, -20 ], - [ 18, 20 ], - [ 18, -18 ] + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "cool_fan_enabled": { "default_value": true }, + "cool_fan_full_at_height": { "value": 0.4 }, + "cool_fan_full_layer": { "value": 2 }, + "cool_min_speed": { "value": 30 }, + "gantry_height": { "value": "70" }, + "infill_overlap": { "value": 0 }, + "infill_sparse_density": { "value": 15 }, + "layer_height": { "default_value": 0.15 }, + "layer_height_0": { "default_value": 0.2 }, + "machine_center_is_zero": { "default_value": false }, + "machine_end_gcode": { "value": "'M104 S0 ;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\\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\\nM84 ;steppers off\\nG90 ;absolute positioning\\nM107 ; Fans off'" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-20, 20], + [-20, -20], + [18, 20], + [18, -18] ] }, - "gantry_height": {"value": "70"}, - - "machine_use_extruder_offset_to_offset_coords": {"default_value": true}, - "machine_gcode_flavor": {"default_value": "RepRap (Marlin/Sprinter)"}, - "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\n;Put printing message on LCD screen\nM117 Printing..."}, - "machine_end_gcode": {"value": "'M104 S0 ;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\\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\\nM84 ;steppers off\\nG90 ;absolute positioning\\nM107 ; Fans off'"}, - - "layer_height": { "default_value": 0.15 }, - "layer_height_0": { "default_value": 0.2 }, - - "wall_line_count":{ "value": 3 }, - "wall_thickness": { "value": 1.2 }, - "top_bottom_thickness": {"value": 1.5}, - "optimize_wall_printing_order": {"value": true}, - - "infill_sparse_density": {"value":15}, - "infill_overlap": {"value": 0}, - - "speed_print": { "value": 45 }, - "speed_infill": { "value": 45 }, - "speed_travel": { "value": 75 }, - "speed_topbottom": {"value": 40 }, - "speed_wall": { "value": 35 }, - "speed_wall_x": { "value": 40 }, - - "retraction_enable": {"default_value":true}, - "retraction_amount": { "default_value": 4 }, - "retraction_speed": { "default_value": 70}, - "retraction_min_travel": {"value":5 }, - "retraction_count_max": {"default_value":10 }, - "retraction_extrusion_window": {"value":4 }, - "retraction_hop": {"default_value":0.2}, - "retraction_hop_enabled": {"value":true}, - "speed_z_hop": {"value":2.5 }, - - "cool_fan_enabled": {"default_value":true}, - "cool_fan_full_at_height": {"value":0.4}, - "cool_fan_full_layer": {"value":2}, - "cool_min_speed": {"value":30}, - - "support_enable": {"value":true}, - "support_angle": {"default_value": 50}, - "support_brim_enable": {"value":true}, - "support_infill_angles": {"value":[-45]}, - "support_interface_density": {"value": 70}, - "support_interface_enable": {"value": true }, - "support_interface_height": {"value": 0.5}, - "support_interface_pattern": {"default_value":"lines"}, - "support_pattern": {"default_value":"lines"}, - "support_xy_distance": {"value": 0.5}, - "support_z_distance": {"value": 0.3 }, - - "adhesion_type": {"default_value":"skirt"}, - - "switch_extruder_retraction_amount": { "value": 6 }, - "switch_extruder_retraction_speeds": { "value": 60 } + "machine_heated_bed": { "default_value": true }, + "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\n;Put printing message on LCD screen\nM117 Printing..." }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, + "optimize_wall_printing_order": { "value": true }, + "retraction_amount": { "default_value": 4 }, + "retraction_count_max": { "default_value": 10 }, + "retraction_enable": { "default_value": true }, + "retraction_extrusion_window": { "value": 4 }, + "retraction_hop": { "default_value": 0.2 }, + "retraction_hop_enabled": { "value": true }, + "retraction_min_travel": { "value": 5 }, + "retraction_speed": { "default_value": 70 }, + "speed_infill": { "value": 45 }, + "speed_print": { "value": 45 }, + "speed_topbottom": { "value": 40 }, + "speed_travel": { "value": 75 }, + "speed_wall": { "value": 35 }, + "speed_wall_x": { "value": 40 }, + "speed_z_hop": { "value": 2.5 }, + "support_angle": { "default_value": 50 }, + "support_brim_enable": { "value": true }, + "support_enable": { "value": true }, + "support_infill_angles": + { + "value": [ + -45 + ] + }, + "support_interface_density": { "value": 70 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": 0.5 }, + "support_interface_pattern": { "default_value": "lines" }, + "support_pattern": { "default_value": "lines" }, + "support_xy_distance": { "value": 0.5 }, + "support_z_distance": { "value": 0.3 }, + "switch_extruder_retraction_amount": { "value": 6 }, + "switch_extruder_retraction_speeds": { "value": 60 }, + "top_bottom_thickness": { "value": 1.5 }, + "wall_line_count": { "value": 3 }, + "wall_thickness": { "value": 1.2 } } -} +} \ No newline at end of file diff --git a/resources/definitions/fusedform_mini.def.json b/resources/definitions/fusedform_mini.def.json index d87f75716d..36e257172b 100644 --- a/resources/definitions/fusedform_mini.def.json +++ b/resources/definitions/fusedform_mini.def.json @@ -1,30 +1,30 @@ { "version": 2, - "name":"FFmini", + "name": "FFmini", "inherits": "fusedform_base", - - "metadata": { - "quality_definition": "fusedform_base", - "visible": true + "metadata": + { + "visible": true, + "quality_definition": "fusedform_base" }, - - "overrides": { - "machine_name": { "default_value": "FFmini" }, - "machine_width": { "default_value": 200 }, + "overrides": + { + "acceleration_travel": { "value": 1000 }, + "machine_acceleration": { "default_value": 1000 }, "machine_depth": { "default_value": 200 }, + "machine_extruder_count": { "value": 1 }, "machine_height": { "default_value": 240 }, - "machine_extruder_count": { "value": 1 }, + "machine_max_acceleration_x": { "value": 1200 }, + "machine_max_acceleration_y": { "value": 1200 }, + "machine_max_acceleration_z": { "default_value": 100 }, + "machine_max_feedrate_e": { "default_value": 100 }, "machine_max_feedrate_x": { "default_value": 100 }, "machine_max_feedrate_y": { "default_value": 100 }, - "machine_max_feedrate_z": { "default_value": 3 }, - "machine_max_feedrate_e": { "default_value": 100 }, - "machine_max_acceleration_x": {"value":1200}, - "machine_max_acceleration_y": {"value":1200}, - "machine_max_acceleration_z": { "default_value": 100 }, - "machine_acceleration": { "default_value": 1000 }, + "machine_max_feedrate_z": { "default_value": 3 }, + "machine_max_jerk_e": { "default_value": 5 }, "machine_max_jerk_xy": { "default_value": 14 }, "machine_max_jerk_z": { "default_value": 0.3 }, - "machine_max_jerk_e": { "default_value": 5 }, - "acceleration_travel": {"value":1000} + "machine_name": { "default_value": "FFmini" }, + "machine_width": { "default_value": 200 } } -} +} \ No newline at end of file diff --git a/resources/definitions/fusedform_std.def.json b/resources/definitions/fusedform_std.def.json index 77cf20fdc5..586b20bd28 100644 --- a/resources/definitions/fusedform_std.def.json +++ b/resources/definitions/fusedform_std.def.json @@ -2,29 +2,29 @@ "version": 2, "name": "FFSTD", "inherits": "fusedform_base", - - "metadata": { - "quality_definition": "fusedform_base", - "visible": true + "metadata": + { + "visible": true, + "quality_definition": "fusedform_base" }, - - "overrides": { - "machine_name": { "default_value": "FFSTD" }, - "machine_width": { "default_value": 240 }, + "overrides": + { + "acceleration_travel": { "value": 1200 }, + "machine_acceleration": { "default_value": 900 }, "machine_depth": { "default_value": 200 }, + "machine_extruder_count": { "value": 1 }, "machine_height": { "default_value": 320 }, - "machine_extruder_count": { "value": 1 }, + "machine_max_acceleration_x": { "value": 1200 }, + "machine_max_acceleration_y": { "value": 1200 }, + "machine_max_acceleration_z": { "default_value": 100 }, + "machine_max_feedrate_e": { "default_value": 100 }, "machine_max_feedrate_x": { "default_value": 100 }, "machine_max_feedrate_y": { "default_value": 100 }, - "machine_max_feedrate_z": { "default_value": 3 }, - "machine_max_feedrate_e": { "default_value": 100 }, - "machine_max_acceleration_x": {"value":1200}, - "machine_max_acceleration_y": {"value":1200}, - "machine_max_acceleration_z": { "default_value": 100 }, - "machine_acceleration": { "default_value": 900 }, + "machine_max_feedrate_z": { "default_value": 3 }, + "machine_max_jerk_e": { "default_value": 5 }, "machine_max_jerk_xy": { "default_value": 10 }, "machine_max_jerk_z": { "default_value": 0.3 }, - "machine_max_jerk_e": { "default_value": 5 }, - "acceleration_travel": {"value":1200} + "machine_name": { "default_value": "FFSTD" }, + "machine_width": { "default_value": 240 } } -} +} \ No newline at end of file diff --git a/resources/definitions/fusedform_std_doppia.def.json b/resources/definitions/fusedform_std_doppia.def.json index 022aaad511..ac268088a0 100644 --- a/resources/definitions/fusedform_std_doppia.def.json +++ b/resources/definitions/fusedform_std_doppia.def.json @@ -2,29 +2,29 @@ "version": 2, "name": "FFSTD Doppia", "inherits": "fusedform_doppia_base", - "metadata": { + "metadata": + { "visible": true, "quality_definition": "fusedform_base" }, - - "overrides": { - "machine_extruder_count": { "value": 2 }, - "machine_name": { "default_value": "FFSTD Doppia" }, - "machine_width": { "default_value": 220 }, + "overrides": + { + "acceleration_travel": { "value": 1200 }, + "machine_acceleration": { "default_value": 900 }, "machine_depth": { "default_value": 200 }, + "machine_extruder_count": { "value": 2 }, "machine_height": { "default_value": 320 }, + "machine_max_acceleration_x": { "value": 1200 }, + "machine_max_acceleration_y": { "value": 1200 }, + "machine_max_acceleration_z": { "default_value": 100 }, + "machine_max_feedrate_e": { "default_value": 100 }, "machine_max_feedrate_x": { "default_value": 100 }, "machine_max_feedrate_y": { "default_value": 100 }, - "machine_max_feedrate_z": { "default_value": 3 }, - "machine_max_feedrate_e": { "default_value": 100 }, - "machine_max_acceleration_x": {"value":1200}, - "machine_max_acceleration_y": {"value":1200}, - "machine_max_acceleration_z": { "default_value": 100 }, - "machine_acceleration": { "default_value": 900 }, + "machine_max_feedrate_z": { "default_value": 3 }, + "machine_max_jerk_e": { "default_value": 5 }, "machine_max_jerk_xy": { "default_value": 10 }, "machine_max_jerk_z": { "default_value": 0.3 }, - "machine_max_jerk_e": { "default_value": 5 }, - "acceleration_travel": {"value":1200} - + "machine_name": { "default_value": "FFSTD Doppia" }, + "machine_width": { "default_value": 220 } } -} +} \ No newline at end of file diff --git a/resources/definitions/fusion3.def.json b/resources/definitions/fusion3.def.json new file mode 100644 index 0000000000..30c5b6ce93 --- /dev/null +++ b/resources/definitions/fusion3.def.json @@ -0,0 +1,161 @@ +{ + "version": 2, + "name": "Fusion3 Base Printer", + "inherits": "fdmprinter", + "metadata": + { + "visible": false, + "author": "Keith Varin", + "manufacturer": "Fusion3Design", + "file_formats": "text/x-gcode", + "exclude_materials": [ + "bestfilament_abs_skyblue", + "bestfilament_petg_orange", + "bestfilament_pla_green", + "chromatik_pla", + "dsm_arnitel2045_175", + "dsm_novamid1070_175", + "emotiontech_abs", + "emotiontech_absx", + "emotiontech_acetate", + "emotiontech_asax", + "emotiontech_bvoh", + "emotiontech_copa", + "emotiontech_hips", + "emotiontech_nylon_1030", + "emotiontech_nylon_1030cf", + "emotiontech_nylon_1070", + "emotiontech_pc", + "emotiontech_pekk", + "emotiontech_petg", + "emotiontech_pla", + "emotiontech_pla_hr_870", + "emotiontech_pva-m", + "emotiontech_pva-s", + "emotiontech_tpu98a", + "eryone_petg", + "eryone_pla", + "eryone_pla_glow", + "eryone_pla_matte", + "eryone_pla_wood", + "eSUN_PETG_Black", + "eSUN_PETG_Grey", + "eSUN_PETG_Purple", + "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", + "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", + "generic_bam", + "generic_bvoh_175", + "generic_gffcpe", + "generic_gffpa", + "generic_hips", + "generic_hips_175", + "generic_pp", + "generic_pva", + "generic_pva_175", + "goofoo_abs", + "goofoo_asa", + "goofoo_bronze_pla", + "goofoo_emarble_pla", + "goofoo_esilk_pla", + "goofoo_hips", + "goofoo_pa", + "goofoo_pa_cf", + "goofoo_pc", + "goofoo_peek", + "goofoo_petg", + "goofoo_pla", + "goofoo_pva", + "goofoo_tpe_83a", + "goofoo_tpu_87a", + "goofoo_tpu_95a", + "goofoo_wood_pla", + "imade3d_petg_175", + "imade3d_pla_175", + "innofill_innoflex60_175", + "layer_one_black_pla", + "layer_one_dark_gray_pla", + "layer_one_white_pla", + "leapfrog_abs_natural", + "leapfrog_epla_natural", + "leapfrog_pva_natural", + "octofiber_pla", + "redd_abs", + "redd_asa", + "redd_hips", + "redd_nylon", + "redd_petg", + "redd_pla", + "redd_tpe", + "structur3d_dap100silicone", + "tizyx_abs", + "tizyx_flex", + "tizyx_petg", + "tizyx_pla", + "tizyx_pla_bois", + "tizyx_pva", + "verbatim_bvoh_175", + "Vertex_Delta_ABS", + "Vertex_Delta_PET", + "Vertex_Delta_PLA", + "Vertex_Delta_PLA_Glitter", + "Vertex_Delta_PLA_Mat", + "Vertex_Delta_PLA_Satin", + "Vertex_Delta_PLA_Wood", + "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_petgcarbone_ultra", + "volumic_petg_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_petg", + "xyzprinting_pla", + "xyzprinting_tough_pla", + "xyzprinting_tpu", + "zyyx_pro_flex", + "zyyx_pro_pla" + ], + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "fusion3_extruder_0" }, + "preferred_material": "generic_abs", + "preferred_quality_type": "normal", + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Size" + } +} \ No newline at end of file diff --git a/resources/definitions/fusion3_f410.def.json b/resources/definitions/fusion3_f410.def.json new file mode 100644 index 0000000000..1c4fce0d44 --- /dev/null +++ b/resources/definitions/fusion3_f410.def.json @@ -0,0 +1,137 @@ +{ + "version": 2, + "name": "Fusion3 F410", + "inherits": "fusion3", + "metadata": + { + "visible": true, + "quality_definition": "fusion3" + }, + "overrides": + { + "acceleration_print": { "value": "machine_acceleration" }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, + "acceleration_travel": { "value": "machine_acceleration" }, + "acceleration_travel_layer_0": { "value": "acceleration_travel" }, + "adaptive_layer_height_variation": { "value": 0.04 }, + "adaptive_layer_height_variation_step": { "value": 0.04 }, + "adhesion_type": { "value": "'skirt'" }, + "bottom_layers": { "value": "math.ceil(round(bottom_thickness / resolveOrValue('layer_height'), 4))" }, + "brim_replaces_support": { "value": false }, + "cool_fan_full_at_height": { "value": "layer_height_0 * 4" }, + "cool_min_speed": { "value": "speed_print * 0.3" }, + "gantry_height": { "value": 40 }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 20.0 }, + "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 89 else 'lines' if infill_sparse_density > 31 else 'cubic'" }, + "infill_wipe_dist": { "value": 0.0 }, + "jerk_print": { "value": 10 }, + "jerk_travel": { "value": "jerk_print" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "machine_acceleration": { "value": 2000 }, + "machine_depth": { "default_value": 355 }, + "machine_end_gcode": { "default_value": "; Fusion3 F410 end code\nG91 ;relative positioning\nG1 E-5.00 F1000 ;retract 5mm of filament\nG1 Z+1.00 X-20.0 Y+20.0 F10000 ;short quick move to disengage from print\nG90 ;absolute positioning\nG1 X0.0 Y350.0 F9000 ; move head to back left corner\nG91 ; relative positioning\nG1 E-5.00 F500 ;retract additional filament to prevent oozing\nG90 ;absolute positioning\nM104 S0 ;turn off hotend\nM140 S0 ;turn off heatbed\n; Reset filament monitor\nM42 P63 S0\nG4 P100\nG4 P50\nM42 P63 S1\nG1 Z315 F1000 ;move print bed down to idle position\nM106 S0 ; shut off blower\nM84 ;motors off\nM561 ;clear bed probe transformation\n" }, + "machine_gcode_flavor": { "default_value": "RepRap (RepRap)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-30, 30], + [-30, -30], + [30, -30], + [30, 30] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 315 }, + "machine_max_acceleration_x": { "value": 5000 }, + "machine_max_acceleration_y": { "value": 5000 }, + "machine_max_acceleration_z": { "value": 500 }, + "machine_max_feedrate_e": { "value": 166 }, + "machine_max_feedrate_x": { "value": 550 }, + "machine_max_feedrate_y": { "value": 550 }, + "machine_max_feedrate_z": { "value": 40 }, + "machine_max_jerk_e": { "value": 30 }, + "machine_max_jerk_z": { "value": 1 }, + "machine_name": { "default_value": "Fusion3 F410" }, + "machine_start_gcode": { "default_value": "; Fusion3 F410 start code\nM104 S0 ; shutdown heater and prepare to print\nG21 ; set units to mm\nG90 ; use absolute coordinates\nT0 ; select tool 0\nG92 E0.0 ; reset e count\nM220 S100 ; reset speed multiplier\nM140 S{material_bed_temperature_layer_0} ; set bed temp and do not wait\nG32 ; call to run bed.g\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nM109 S{material_print_temperature_layer_0} ; set print head temperature and wait\n; === pause for heating ===\n; reset filament monitor\nM42 P63 S0\nG4 P100\nG4 P50\nM42 P63 S1\nG1 X350 Y0\nG1 Z10.0 F2000 ; move up\nG1 E10.0 F500 ; prime extruder\nG92 E0.0 ; reset e count\nG1 X330 Y15 F9000 ; move back\nG1 Z{layer_height_0} F1000 ; move down to begin wipe\nG1 X150 E4.0 F6000 ; wipe print head (extrude material while we do this)\nG92 E0.0 ; reset e count\n" }, + "machine_width": { "default_value": 355 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "meshfix_maximum_resolution": { "value": "0.25" }, + "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "optimize_wall_printing_order": { "value": "True" }, + "retract_at_layer_change": { "value": true }, + "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, + "retraction_combing_max_distance": { "value": 30 }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 5 }, + "retraction_hop": { "value": 0.2 }, + "retraction_hop_enabled": { "value": true }, + "retraction_prime_speed": + { + "maximum_value": "machine_max_feedrate_e", + "maximum_value_warning": "machine_max_feedrate_e *0.75" + }, + "retraction_retract_speed": + { + "maximum_value": "machine_max_feedrate_e", + "maximum_value_warning": "machine_max_feedrate_e *0.75" + }, + "retraction_speed": + { + "default_value": 100, + "maximum_value": "machine_max_feedrate_e", + "maximum_value_warning": "machine_max_feedrate_e *0.75" + }, + "skin_overlap": { "value": 10.0 }, + "skirt_gap": { "value": 10.0 }, + "skirt_line_count": { "value": 3 }, + "speed_infill": { "value": "speed_print *0.7" }, + "speed_layer_0": { "value": "speed_print *0.4" }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": 100 }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_travel": { "value": "speed_print * 1.5" }, + "speed_travel_layer_0": { "value": "speed_travel *0.5" }, + "speed_wall": { "value": "speed_print *0.6" }, + "speed_wall_x": { "value": "speed_print *0.85" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 4 }, + "support_infill_angles": + { + "value": [ + 45 + ] + }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 30" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_interface_skip_height": { "value": 0.2 }, + "support_pattern": { "value": "'zigzag'" }, + "support_wall_count": { "value": 0 }, + "support_xy_distance": { "value": "wall_line_width_0 * 3" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, + "top_bottom_pattern": { "value": "'zigzag'" }, + "top_bottom_pattern_0": { "value": "'zigzag'" }, + "top_bottom_thickness": + { + "minimum_value_warning": "0.4", + "value": "(layer_height*3) + layer_height_0" + }, + "top_layers": { "value": "math.ceil(round(top_thickness / resolveOrValue('layer_height'), 4))" }, + "travel_avoid_other_parts": { "value": false }, + "travel_avoid_supports": { "value": true }, + "travel_retract_before_outer_wall": { "value": true }, + "wall_0_wipe_dist": { "value": 0.0 }, + "z_seam_corner": { "value": "'z_seam_corner_inner'" }, + "z_seam_type": { "value": "'sharpest_corner'" } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_A10.def.json b/resources/definitions/geeetech_A10.def.json index 6b17223d7b..14d3a834f6 100644 --- a/resources/definitions/geeetech_A10.def.json +++ b/resources/definitions/geeetech_A10.def.json @@ -2,58 +2,48 @@ "version": 2, "name": "Geeetech A10", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Amit L", "manufacturer": "Geeetech", "file_formats": "text/x-gcode", "has_materials": true, - "machine_extruder_trains": - { - "0": "geeetech_A10_1" - } - + "machine_extruder_trains": { "0": "geeetech_A10_1" } }, - - "overrides": { - "machine_name": { "default_value": "Geeetech A10" }, - "machine_width": { - "default_value": 220 - }, - "machine_height": { - "default_value": 260 - }, - "machine_depth": { - "default_value": 220 - }, - "machine_center_is_zero": { - "default_value": false - }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "gantry_height": { "value": "28" }, "layer_height": { "default_value": 0.1 }, "layer_height_0": { "default_value": 0.15 }, - "retraction_amount": { "default_value": 0.8 }, - "retraction_speed": { "default_value": 35 }, - "adhesion_type": { "default_value": "skirt" }, - "machine_head_with_fans_polygon": { "default_value": [[-31,31],[34,31],[34,-40],[-31,-40]] }, - "gantry_height": { "value": "28" }, - "machine_max_feedrate_z": { "default_value": 12 }, - "machine_max_feedrate_e": { "default_value": 120 }, - "machine_max_acceleration_z": { "default_value": 500 }, "machine_acceleration": { "default_value": 1000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "G91 ;Switch to relative positioning\nG1 E-1 ;Retract filament to lower pressure\nG0 X0 Y200 ;Move hotend to left and bed forward\nM104 S0 ;Cooldown hotend\nG90 ;Switch to absolute mode\nG92 E0 ;Set extruder to zero\nM140 S0 ;Cooldown bed\nM84 ; Disable steppers" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-31, 31], + [34, 31], + [34, -40], + [-31, -40] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 260 }, + "machine_max_acceleration_z": { "default_value": 500 }, + "machine_max_feedrate_e": { "default_value": 120 }, + "machine_max_feedrate_z": { "default_value": 12 }, + "machine_max_jerk_e": { "default_value": 2.5 }, "machine_max_jerk_xy": { "default_value": 10 }, "machine_max_jerk_z": { "default_value": 0.2 }, - "machine_max_jerk_e": { "default_value": 2.5 }, - "machine_heated_bed": { "default_value": true }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "G28 ; Auto home\nG1 Z15 F300 ;Move up slightly\nM107 ;Off fans\nG90 ;Switch to absolute positioning\nM82 ;Extruder absolute mode\nG92 E0 ;Set position of extruder to 0\nG0 X10 Y20 F1500 ;Move to X10 Y20 at 1500mms\nG1 Z0.8 ;Move Z to 0.8\nG1 F300 X180 E40 ;Extrude a line of filament\nG1 F1200 Z2 ;Raise Z\nG92 E0 ;Set extruder position to zero\nG28 ;Auto home" - }, - "machine_end_gcode": { - "default_value": "G91 ;Switch to relative positioning\nG1 E-1 ;Retract filament to lower pressure\nG0 X0 Y200 ;Move hotend to left and bed forward\nM104 S0 ;Cooldown hotend\nG90 ;Switch to absolute mode\nG92 E0 ;Set extruder to zero\nM140 S0 ;Cooldown bed\nM84 ; Disable steppers" - }, - "machine_extruder_count": { - "default_value": 1 - } - + "machine_name": { "default_value": "Geeetech A10" }, + "machine_start_gcode": { "default_value": "G28 ; Auto home\nG1 Z15 F300 ;Move up slightly\nM107 ;Off fans\nG90 ;Switch to absolute positioning\nM82 ;Extruder absolute mode\nG92 E0 ;Set position of extruder to 0\nG0 X10 Y20 F1500 ;Move to X10 Y20 at 1500mms\nG1 Z0.8 ;Move Z to 0.8\nG1 F300 X180 E40 ;Extrude a line of filament\nG1 F1200 Z2 ;Raise Z\nG92 E0 ;Set extruder position to zero\nG28 ;Auto home" }, + "machine_width": { "default_value": 220 }, + "retraction_amount": { "default_value": 0.8 }, + "retraction_speed": { "default_value": 35 } } -} +} \ No newline at end of file diff --git a/resources/definitions/geeetech_A10M.def.json b/resources/definitions/geeetech_A10M.def.json index c8f0d16712..3cceefc85c 100644 --- a/resources/definitions/geeetech_A10M.def.json +++ b/resources/definitions/geeetech_A10M.def.json @@ -1,58 +1,52 @@ -{ - "version": 2, - "name": "Geeetech A10M", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Amit L", - "manufacturer": "Geeetech", - "file_formats": "text/x-gcode", - "has_materials": true, - "machine_extruder_trains": - { - "0": "geeetech_A10M_1", - "1": "geeetech_A10M_2" - } - - }, - - "overrides": { - "machine_name": { "default_value": "Geeetech A10M" }, - "machine_width": { - "default_value": 220 - }, - "machine_height": { - "default_value": 260 - }, - "machine_depth": { - "default_value": 220 - }, "machine_center_is_zero": { - "default_value": false - }, - "layer_height": { "default_value": 0.1 }, - "layer_height_0": { "default_value": 0.15 }, - "retraction_amount": { "default_value": 0.8 }, - "retraction_speed": { "default_value": 35 }, - "adhesion_type": { "default_value": "skirt" }, - "machine_head_with_fans_polygon": { "default_value": [[-31,31],[34,31],[34,-40],[-31,-40]] }, - "gantry_height": { "value": "28" }, - "machine_max_feedrate_z": { "default_value": 12 }, - "machine_max_feedrate_e": { "default_value": 120 }, - "machine_max_acceleration_z": { "default_value": 500 }, - "machine_acceleration": { "default_value": 1000 }, - "machine_max_jerk_xy": { "default_value": 10 }, - "machine_max_jerk_z": { "default_value": 0.2 }, - "machine_max_jerk_e": { "default_value": 2.5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": ";GeeeTech A10M start script\nG28 ;home\nG90 ;absolute positioning\nG1 X0 Y0 Z15 E0 F300 ;go to wait position\nM140 S{material_bed_temperature_layer_0} ;set bed temp\nM109 S{material_print_temperature_layer_0} ;set extruder temp and wait\nG1 Z0.8 F200 ;set extruder height\nG1 X220 Y0 E80 F1000 ;purge line\n;end of start script" - }, - "machine_end_gcode": { - "default_value": "G91\nG1 E-1\nG0 X0 Y200\nM104 S0\nG90\nG92 E0\nM140 S0\nM84\nM104 S0\nM140 S0\nM84" - }, - "machine_extruder_count": { - "default_value": 2 - } - - } -} +{ + "version": 2, + "name": "Geeetech A10M", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Amit L", + "manufacturer": "Geeetech", + "file_formats": "text/x-gcode", + "has_materials": true, + "machine_extruder_trains": + { + "0": "geeetech_A10M_1", + "1": "geeetech_A10M_2" + } + }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "gantry_height": { "value": "28" }, + "layer_height": { "default_value": 0.1 }, + "layer_height_0": { "default_value": 0.15 }, + "machine_acceleration": { "default_value": 1000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "G91\nG1 E-1\nG0 X0 Y200\nM104 S0\nG90\nG92 E0\nM140 S0\nM84\nM104 S0\nM140 S0\nM84" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-31, 31], + [34, 31], + [34, -40], + [-31, -40] + ] + }, + "machine_height": { "default_value": 260 }, + "machine_max_acceleration_z": { "default_value": 500 }, + "machine_max_feedrate_e": { "default_value": 120 }, + "machine_max_feedrate_z": { "default_value": 12 }, + "machine_max_jerk_e": { "default_value": 2.5 }, + "machine_max_jerk_xy": { "default_value": 10 }, + "machine_max_jerk_z": { "default_value": 0.2 }, + "machine_name": { "default_value": "Geeetech A10M" }, + "machine_start_gcode": { "default_value": ";GeeeTech A10M start script\nG28 ;home\nG90 ;absolute positioning\nG1 X0 Y0 Z15 E0 F300 ;go to wait position\nM140 S{material_bed_temperature_layer_0} ;set bed temp\nM109 S{material_print_temperature_layer_0} ;set extruder temp and wait\nG1 Z0.8 F200 ;set extruder height\nG1 X220 Y0 E80 F1000 ;purge line\n;end of start script" }, + "machine_width": { "default_value": 220 }, + "retraction_amount": { "default_value": 0.8 }, + "retraction_speed": { "default_value": 35 } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_A10Pro.def.json b/resources/definitions/geeetech_A10Pro.def.json new file mode 100644 index 0000000000..c383d30814 --- /dev/null +++ b/resources/definitions/geeetech_A10Pro.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "Geeetech A10Pro", + "inherits": "Geeetech_Base_Single_Extruder", + "metadata": + { + "visible": true, + "machine_extruder_trains": { "0": "Geeetech_Single_Extruder" } + }, + "overrides": + { + "gantry_height": { "value": 28 }, + "machine_depth": { "default_value": 220 }, + "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": 260 }, + "machine_name": { "default_value": "Geeetech A10Pro" }, + "machine_start_gcode": { "default_value": ";Geeetech A10Pro Custom Start G-code\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\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": 220 } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_A10T.def.json b/resources/definitions/geeetech_A10T.def.json index 0f1a0b76ab..44f6470c93 100644 --- a/resources/definitions/geeetech_A10T.def.json +++ b/resources/definitions/geeetech_A10T.def.json @@ -1,60 +1,53 @@ -{ - "version": 2, - "name": "Geeetech A10T", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Amit L", - "manufacturer": "Geeetech", - "file_formats": "text/x-gcode", - "has_materials": true, - "machine_extruder_trains": - { - "0": "geeetech_A10T_1", - "1": "geeetech_A10T_2", - "2": "geeetech_A10T_3" - } - - }, - - "overrides": { - "machine_name": { "default_value": "Geeetech A10T" }, - "machine_width": { - "default_value": 220 - }, - "machine_height": { - "default_value": 220 - }, - "machine_depth": { - "default_value": 260 - }, - "machine_center_is_zero": { - "default_value": false - }, - "layer_height": { "default_value": 0.1 }, - "layer_height_0": { "default_value": 0.15 }, - "retraction_amount": { "default_value": 0.8 }, - "retraction_speed": { "default_value": 35 }, - "adhesion_type": { "default_value": "skirt" }, - "machine_head_with_fans_polygon": { "default_value": [[-31,31],[34,31],[34,-40],[-31,-40]] }, - "gantry_height": { "value": "28" }, - "machine_max_feedrate_z": { "default_value": 12 }, - "machine_max_feedrate_e": { "default_value": 120 }, - "machine_max_acceleration_z": { "default_value": 500 }, - "machine_acceleration": { "default_value": 1000 }, - "machine_max_jerk_xy": { "default_value": 10 }, - "machine_max_jerk_z": { "default_value": 0.2 }, - "machine_max_jerk_e": { "default_value": 2.5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "G28 \nG1 Z15 F300\nM107\nG90\nM82\nM104 S215\nM140 S55\nG92 E0\nM109 S215\nM107\nM163 S0 P0.33\nM163 S1 P0.33\nM163 S2 P0.33\nM164 S4\nG0 X10 Y20 F6000\nG1 Z0.8\nG1 F300 X180 E40\nG1 F1200 Z2\nG92 E0\nG28" - }, - "machine_end_gcode": { - "default_value": "G91\nG1 E-1\nG0 X0 Y200\nM104 S0\nG90\nG92 E0\nM140 S0\nM84\nM104 S0\nM140 S0\nM84" - }, - "machine_extruder_count": { - "default_value": 3 - } - - } -} +{ + "version": 2, + "name": "Geeetech A10T", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Amit L", + "manufacturer": "Geeetech", + "file_formats": "text/x-gcode", + "has_materials": true, + "machine_extruder_trains": + { + "0": "geeetech_A10T_1", + "1": "geeetech_A10T_2", + "2": "geeetech_A10T_3" + } + }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "gantry_height": { "value": "28" }, + "layer_height": { "default_value": 0.1 }, + "layer_height_0": { "default_value": 0.15 }, + "machine_acceleration": { "default_value": 1000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 260 }, + "machine_end_gcode": { "default_value": "G91\nG1 E-1\nG0 X0 Y200\nM104 S0\nG90\nG92 E0\nM140 S0\nM84\nM104 S0\nM140 S0\nM84" }, + "machine_extruder_count": { "default_value": 3 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-31, 31], + [34, 31], + [34, -40], + [-31, -40] + ] + }, + "machine_height": { "default_value": 220 }, + "machine_max_acceleration_z": { "default_value": 500 }, + "machine_max_feedrate_e": { "default_value": 120 }, + "machine_max_feedrate_z": { "default_value": 12 }, + "machine_max_jerk_e": { "default_value": 2.5 }, + "machine_max_jerk_xy": { "default_value": 10 }, + "machine_max_jerk_z": { "default_value": 0.2 }, + "machine_name": { "default_value": "Geeetech A10T" }, + "machine_start_gcode": { "default_value": "G28 \nG1 Z15 F300\nM107\nG90\nM82\nM104 S215\nM140 S55\nG92 E0\nM109 S215\nM107\nM163 S0 P0.33\nM163 S1 P0.33\nM163 S2 P0.33\nM164 S4\nG0 X10 Y20 F6000\nG1 Z0.8\nG1 F300 X180 E40\nG1 F1200 Z2\nG92 E0\nG28" }, + "machine_width": { "default_value": 220 }, + "retraction_amount": { "default_value": 0.8 }, + "retraction_speed": { "default_value": 35 } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_A20.def.json b/resources/definitions/geeetech_A20.def.json index d96452176f..da537ae303 100644 --- a/resources/definitions/geeetech_A20.def.json +++ b/resources/definitions/geeetech_A20.def.json @@ -1,57 +1,48 @@ -{ - "version": 2, - "name": "Geeetech A20", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Amit L", - "manufacturer": "Geeetech", - "file_formats": "text/x-gcode", - "has_materials": true, - "machine_extruder_trains": - { - "0": "geeetech_A20_1" - } - - }, - - "overrides": { - "machine_name": { "default_value": "Geeetech A20" }, - "machine_width": { - "default_value": 250 - }, - "machine_height": { - "default_value": 250 - }, - "machine_depth": { - "default_value": 250 - }, "machine_center_is_zero": { - "default_value": false - }, - "layer_height": { "default_value": 0.1 }, - "layer_height_0": { "default_value": 0.15 }, - "retraction_amount": { "default_value": 0.8 }, - "retraction_speed": { "default_value": 35 }, - "adhesion_type": { "default_value": "skirt" }, - "machine_head_with_fans_polygon": { "default_value": [[-31,31],[34,31],[34,-40],[-31,-40]] }, - "gantry_height": { "value": "28" }, - "machine_max_feedrate_z": { "default_value": 12 }, - "machine_max_feedrate_e": { "default_value": 120 }, - "machine_max_acceleration_z": { "default_value": 500 }, - "machine_acceleration": { "default_value": 1000 }, - "machine_max_jerk_xy": { "default_value": 10 }, - "machine_max_jerk_z": { "default_value": 0.2 }, - "machine_max_jerk_e": { "default_value": 2.5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "G28 \nG1 Z15 F300\nM107\nG90\nM82\nM104 S215\nM140 S55\nG92 E0\nM109 S215\nM107\nG0 X10 Y20 F6000\nG1 Z0.8\nG1 F300 X200 E40\nG1 F1200 Z2\nG92 E0\nG28" - }, - "machine_end_gcode": { - "default_value": "G91\nG1 E-1\nG0 X0 Y200\nM104 S0\nG90\nG92 E0\nM140 S0\nM84\nM104 S0\nM140 S0\nM84" - }, - "machine_extruder_count": { - "default_value": 1 - } - - } -} +{ + "version": 2, + "name": "Geeetech A20", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Amit L", + "manufacturer": "Geeetech", + "file_formats": "text/x-gcode", + "has_materials": true, + "machine_extruder_trains": { "0": "geeetech_A20_1" } + }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "gantry_height": { "value": "28" }, + "layer_height": { "default_value": 0.1 }, + "layer_height_0": { "default_value": 0.15 }, + "machine_acceleration": { "default_value": 1000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 250 }, + "machine_end_gcode": { "default_value": "G91\nG1 E-1\nG0 X0 Y200\nM104 S0\nG90\nG92 E0\nM140 S0\nM84\nM104 S0\nM140 S0\nM84" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-31, 31], + [34, 31], + [34, -40], + [-31, -40] + ] + }, + "machine_height": { "default_value": 250 }, + "machine_max_acceleration_z": { "default_value": 500 }, + "machine_max_feedrate_e": { "default_value": 120 }, + "machine_max_feedrate_z": { "default_value": 12 }, + "machine_max_jerk_e": { "default_value": 2.5 }, + "machine_max_jerk_xy": { "default_value": 10 }, + "machine_max_jerk_z": { "default_value": 0.2 }, + "machine_name": { "default_value": "Geeetech A20" }, + "machine_start_gcode": { "default_value": "G28 \nG1 Z15 F300\nM107\nG90\nM82\nM104 S215\nM140 S55\nG92 E0\nM109 S215\nM107\nG0 X10 Y20 F6000\nG1 Z0.8\nG1 F300 X200 E40\nG1 F1200 Z2\nG92 E0\nG28" }, + "machine_width": { "default_value": 250 }, + "retraction_amount": { "default_value": 0.8 }, + "retraction_speed": { "default_value": 35 } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_A20M.def.json b/resources/definitions/geeetech_A20M.def.json index d06cf9565f..07fd7c8f25 100644 --- a/resources/definitions/geeetech_A20M.def.json +++ b/resources/definitions/geeetech_A20M.def.json @@ -1,58 +1,52 @@ -{ - "version": 2, - "name": "Geeetech A20M", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Amit L", - "manufacturer": "Geeetech", - "file_formats": "text/x-gcode", - "has_materials": true, - "machine_extruder_trains": - { - "0": "geeetech_A20M_1", - "1": "geeetech_A20M_2" - } - - }, - - "overrides": { - "machine_name": { "default_value": "Geeetech A20M" }, - "machine_width": { - "default_value": 250 - }, - "machine_height": { - "default_value": 250 - }, - "machine_depth": { - "default_value": 250 - }, "machine_center_is_zero": { - "default_value": false - }, - "layer_height": { "default_value": 0.1 }, - "layer_height_0": { "default_value": 0.15 }, - "retraction_amount": { "default_value": 0.8 }, - "retraction_speed": { "default_value": 35 }, - "adhesion_type": { "default_value": "skirt" }, - "machine_head_with_fans_polygon": { "default_value": [[-31,31],[34,31],[34,-40],[-31,-40]] }, - "gantry_height": { "value": "28" }, - "machine_max_feedrate_z": { "default_value": 12 }, - "machine_max_feedrate_e": { "default_value": 120 }, - "machine_max_acceleration_z": { "default_value": 500 }, - "machine_acceleration": { "default_value": 1000 }, - "machine_max_jerk_xy": { "default_value": 10 }, - "machine_max_jerk_z": { "default_value": 0.2 }, - "machine_max_jerk_e": { "default_value": 2.5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": ";GeeeTech A20M start script\nG28 ;home\nG90 ;absolute positioning\nG1 X0 Y0 Z15 E0 F300 ;go to wait position\nM140 S{material_bed_temperature_layer_0} ;set bed temp\nM109 S{material_print_temperature_layer_0} ;set extruder temp and wait\nG1 Z0.8 F200 ;set extruder height\nG1 X220 Y0 E80 F1000 ;purge line\n;end of start script" - }, - "machine_end_gcode": { - "default_value": "G91\nG1 E-1\nG0 X0 Y200\nM104 S0\nG90\nG92 E0\nM140 S0\nM84\nM104 S0\nM140 S0\nM84" - }, - "machine_extruder_count": { - "default_value": 2 - } - - } -} +{ + "version": 2, + "name": "Geeetech A20M", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Amit L", + "manufacturer": "Geeetech", + "file_formats": "text/x-gcode", + "has_materials": true, + "machine_extruder_trains": + { + "0": "geeetech_A20M_1", + "1": "geeetech_A20M_2" + } + }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "gantry_height": { "value": "28" }, + "layer_height": { "default_value": 0.1 }, + "layer_height_0": { "default_value": 0.15 }, + "machine_acceleration": { "default_value": 1000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 250 }, + "machine_end_gcode": { "default_value": "G91\nG1 E-1\nG0 X0 Y200\nM104 S0\nG90\nG92 E0\nM140 S0\nM84\nM104 S0\nM140 S0\nM84" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-31, 31], + [34, 31], + [34, -40], + [-31, -40] + ] + }, + "machine_height": { "default_value": 250 }, + "machine_max_acceleration_z": { "default_value": 500 }, + "machine_max_feedrate_e": { "default_value": 120 }, + "machine_max_feedrate_z": { "default_value": 12 }, + "machine_max_jerk_e": { "default_value": 2.5 }, + "machine_max_jerk_xy": { "default_value": 10 }, + "machine_max_jerk_z": { "default_value": 0.2 }, + "machine_name": { "default_value": "Geeetech A20M" }, + "machine_start_gcode": { "default_value": ";GeeeTech A20M start script\nG28 ;home\nG90 ;absolute positioning\nG1 X0 Y0 Z15 E0 F300 ;go to wait position\nM140 S{material_bed_temperature_layer_0} ;set bed temp\nM109 S{material_print_temperature_layer_0} ;set extruder temp and wait\nG1 Z0.8 F200 ;set extruder height\nG1 X220 Y0 E80 F1000 ;purge line\n;end of start script" }, + "machine_width": { "default_value": 250 }, + "retraction_amount": { "default_value": 0.8 }, + "retraction_speed": { "default_value": 35 } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_A20T.def.json b/resources/definitions/geeetech_A20T.def.json index 72ed97978c..d9e992b773 100644 --- a/resources/definitions/geeetech_A20T.def.json +++ b/resources/definitions/geeetech_A20T.def.json @@ -1,59 +1,53 @@ -{ - "version": 2, - "name": "Geeetech A20T", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Amit L", - "manufacturer": "Geeetech", - "file_formats": "text/x-gcode", - "has_materials": true, - "machine_extruder_trains": - { - "0": "geeetech_A20T_1", - "1": "geeetech_A20T_2", - "2": "geeetech_A20T_3" - } - - }, - - "overrides": { - "machine_name": { "default_value": "Geeetech A20T" }, - "machine_width": { - "default_value": 250 - }, - "machine_height": { - "default_value": 250 - }, - "machine_depth": { - "default_value": 250 - }, "machine_center_is_zero": { - "default_value": false - }, - "layer_height": { "default_value": 0.1 }, - "layer_height_0": { "default_value": 0.15 }, - "retraction_amount": { "default_value": 0.8 }, - "retraction_speed": { "default_value": 35 }, - "adhesion_type": { "default_value": "skirt" }, - "machine_head_with_fans_polygon": { "default_value": [[-31,31],[34,31],[34,-40],[-31,-40]] }, - "gantry_height": { "value": "28" }, - "machine_max_feedrate_z": { "default_value": 12 }, - "machine_max_feedrate_e": { "default_value": 120 }, - "machine_max_acceleration_z": { "default_value": 500 }, - "machine_acceleration": { "default_value": 1000 }, - "machine_max_jerk_xy": { "default_value": 10 }, - "machine_max_jerk_z": { "default_value": 0.2 }, - "machine_max_jerk_e": { "default_value": 2.5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "G28 \nG1 Z15 F300\nM107\nG90\nM82\nM104 S215\nM140 S55\nG92 E0\nM109 S215\nM107\nM163 S0 P0.33\nM163 S1 P0.33\nM163 S2 P0.33\nM164 S4\nG0 X10 Y20 F6000\nG1 Z0.8\nG1 F300 X200 E40\nG1 F1200 Z2\nG92 E0\nG28" - }, - "machine_end_gcode": { - "default_value": "G91\nG1 E-1\nG0 X0 Y200\nM104 S0\nG90\nG92 E0\nM140 S0\nM84\nM104 S0\nM140 S0\nM84" - }, - "machine_extruder_count": { - "default_value": 3 - } - - } -} +{ + "version": 2, + "name": "Geeetech A20T", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Amit L", + "manufacturer": "Geeetech", + "file_formats": "text/x-gcode", + "has_materials": true, + "machine_extruder_trains": + { + "0": "geeetech_A20T_1", + "1": "geeetech_A20T_2", + "2": "geeetech_A20T_3" + } + }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "gantry_height": { "value": "28" }, + "layer_height": { "default_value": 0.1 }, + "layer_height_0": { "default_value": 0.15 }, + "machine_acceleration": { "default_value": 1000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 250 }, + "machine_end_gcode": { "default_value": "G91\nG1 E-1\nG0 X0 Y200\nM104 S0\nG90\nG92 E0\nM140 S0\nM84\nM104 S0\nM140 S0\nM84" }, + "machine_extruder_count": { "default_value": 3 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-31, 31], + [34, 31], + [34, -40], + [-31, -40] + ] + }, + "machine_height": { "default_value": 250 }, + "machine_max_acceleration_z": { "default_value": 500 }, + "machine_max_feedrate_e": { "default_value": 120 }, + "machine_max_feedrate_z": { "default_value": 12 }, + "machine_max_jerk_e": { "default_value": 2.5 }, + "machine_max_jerk_xy": { "default_value": 10 }, + "machine_max_jerk_z": { "default_value": 0.2 }, + "machine_name": { "default_value": "Geeetech A20T" }, + "machine_start_gcode": { "default_value": "G28 \nG1 Z15 F300\nM107\nG90\nM82\nM104 S215\nM140 S55\nG92 E0\nM109 S215\nM107\nM163 S0 P0.33\nM163 S1 P0.33\nM163 S2 P0.33\nM164 S4\nG0 X10 Y20 F6000\nG1 Z0.8\nG1 F300 X200 E40\nG1 F1200 Z2\nG92 E0\nG28" }, + "machine_width": { "default_value": 250 }, + "retraction_amount": { "default_value": 0.8 }, + "retraction_speed": { "default_value": 35 } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_A30M.def.json b/resources/definitions/geeetech_A30M.def.json new file mode 100644 index 0000000000..8b6e6a703b --- /dev/null +++ b/resources/definitions/geeetech_A30M.def.json @@ -0,0 +1,37 @@ +{ + "version": 2, + "name": "Geeetech A30M", + "inherits": "Geeetech_Base_Dual_Extruder", + "metadata": + { + "visible": true, + "machine_extruder_trains": + { + "0": "Geeetech_Dual_Extruder_0", + "1": "Geeetech_Dual_Extruder_1" + }, + "preferred_material": "Geeetech_PLA_Green" + }, + "overrides": + { + "brim_width": { "value": 10 }, + "gantry_height": { "value": 35 }, + "machine_depth": { "default_value": 320 }, + "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": [ + [-75, 35], + [18, 35], + [18, -18], + [-75, -18] + ] + }, + "machine_height": { "default_value": 420 }, + "machine_name": { "default_value": "Geeetech A30M" }, + "machine_start_gcode": { "default_value": ";Geeetech A30M Custom Start G-code\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": 320 }, + "prime_tower_position_x": { "value": 290 }, + "prime_tower_position_y": { "value": 260 } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_A30Pro.def.json b/resources/definitions/geeetech_A30Pro.def.json new file mode 100644 index 0000000000..38b2510933 --- /dev/null +++ b/resources/definitions/geeetech_A30Pro.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "Geeetech A30Pro", + "inherits": "Geeetech_Base_Single_Extruder", + "metadata": + { + "visible": true, + "machine_extruder_trains": { "0": "Geeetech_Single_Extruder" } + }, + "overrides": + { + "gantry_height": { "value": 35 }, + "machine_depth": { "default_value": 320 }, + "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": [ + [-75, 35], + [18, 35], + [18, -18], + [-75, -18] + ] + }, + "machine_height": { "default_value": 420 }, + "machine_name": { "default_value": "Geeetech A30Pro" }, + "machine_start_gcode": { "default_value": ";Geeetech A30Pro Custom Start G-code\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\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": 320 } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_A30T.def.json b/resources/definitions/geeetech_A30T.def.json new file mode 100644 index 0000000000..610ee35fa4 --- /dev/null +++ b/resources/definitions/geeetech_A30T.def.json @@ -0,0 +1,38 @@ +{ + "version": 2, + "name": "Geeetech A30T", + "inherits": "Geeetech_Base_Multi_Extruder", + "metadata": + { + "visible": true, + "machine_extruder_trains": + { + "0": "Geeetech_Multi_Extruder_0", + "1": "Geeetech_Multi_Extruder_1", + "2": "Geeetech_Multi_Extruder_2" + }, + "preferred_material": "Geeetech_PLA_Blue" + }, + "overrides": + { + "brim_width": { "value": 10 }, + "gantry_height": { "value": 35 }, + "machine_depth": { "default_value": 320 }, + "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": [ + [-75, 35], + [18, 35], + [18, -18], + [-75, -18] + ] + }, + "machine_height": { "default_value": 420 }, + "machine_name": { "default_value": "Geeetech A30T" }, + "machine_start_gcode": { "default_value": ";Geeetech A30T Custom Start G-code\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": 320 }, + "prime_tower_position_x": { "value": 290 }, + "prime_tower_position_y": { "value": 260 } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_E180.def.json b/resources/definitions/geeetech_E180.def.json new file mode 100644 index 0000000000..481f4db77a --- /dev/null +++ b/resources/definitions/geeetech_E180.def.json @@ -0,0 +1,30 @@ +{ + "version": 2, + "name": "Geeetech E180", + "inherits": "Geeetech_Base_Single_Extruder", + "metadata": + { + "visible": true, + "machine_extruder_trains": { "0": "Geeetech_Single_Extruder" } + }, + "overrides": + { + "gantry_height": { "value": 28 }, + "machine_depth": { "default_value": 130 }, + "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_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 126 }, + "machine_name": { "default_value": "Geeetech E180" }, + "machine_start_gcode": { "default_value": ";Geeetech E180 Custom Start G-code\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\nG1 Z5.0 F3000 ;Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y10 Z0.8 F5000 ; Move to start position\nG1 X0.1 Y120.0 Z1.2 F1500 E30 ; Draw the first line\nG92 E0 ; Reset Extruder\nG1 X0.4 Y120.0 Z1.2 F3000 ; Move to side a little\nG1 X0.4 Y10 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 Y10 Z0.4 F3000.0 ; Scrape off nozzle residue" }, + "machine_width": { "default_value": 125 } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_GiantArmD200.def.json b/resources/definitions/geeetech_GiantArmD200.def.json new file mode 100644 index 0000000000..d625e8ded6 --- /dev/null +++ b/resources/definitions/geeetech_GiantArmD200.def.json @@ -0,0 +1,30 @@ +{ + "version": 2, + "name": "Geeetech GiantArmD200", + "inherits": "Geeetech_Base_Single_Extruder", + "metadata": + { + "visible": true, + "machine_extruder_trains": { "0": "Geeetech_Single_Extruder" } + }, + "overrides": + { + "gantry_height": { "value": 45 }, + "machine_depth": { "default_value": 180 }, + "machine_end_gcode": { "default_value": "G91 ;Switch to relative positioning\nG1 E-1.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": [ + [-75, 35], + [18, 35], + [18, -18], + [-75, -18] + ] + }, + "machine_height": { "default_value": 180 }, + "machine_name": { "default_value": "Geeetech GiantArmD200" }, + "machine_start_gcode": { "default_value": ";Geeetech GiantArmD200 Custom Start G-code\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\nG1 Z5.0 F3000 ;Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y10 Z0.8 F5000 ; Move to start position\nG1 X0.1 Y160.0 Z1.2 F1500 E30 ; Draw the first line\nG92 E0 ; Reset Extruder\nG1 X0.4 Y160.0 Z1.2 F3000 ; Move to side a little\nG1 X0.4 Y10 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 Y10 Z0.4 F3000.0 ; Scrape off nozzle residue" }, + "machine_width": { "default_value": 300 }, + "retraction_amount": { "value": 2 } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_I3ProB.def.json b/resources/definitions/geeetech_I3ProB.def.json new file mode 100644 index 0000000000..c0420ebc84 --- /dev/null +++ b/resources/definitions/geeetech_I3ProB.def.json @@ -0,0 +1,30 @@ +{ + "version": 2, + "name": "Geeetech I3ProB", + "inherits": "Geeetech_Base_Single_Extruder", + "metadata": + { + "visible": true, + "machine_extruder_trains": { "0": "Geeetech_Single_Extruder" } + }, + "overrides": + { + "gantry_height": { "value": 45 }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "G91 ;Switch to relative positioning\nG1 E-1.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": [ + [-75, 35], + [18, 35], + [18, -18], + [-75, -18] + ] + }, + "machine_height": { "default_value": 180 }, + "machine_name": { "default_value": "Geeetech I3ProB" }, + "machine_start_gcode": { "default_value": ";Geeetech I3ProB Custom Start G-code\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 Y10 Z0.8 F5000 ; Move to start position\nG1 X0.1 Y180.0 Z1.2 F1500 E30 ; Draw the first line\nG92 E0 ; Reset Extruder\nG1 X0.4 Y180.0 Z1.2 F3000 ; Move to side a little\nG1 X0.4 Y10 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": 200 }, + "retraction_amount": { "value": 2 } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_I3ProC.def.json b/resources/definitions/geeetech_I3ProC.def.json new file mode 100644 index 0000000000..f05185e5ba --- /dev/null +++ b/resources/definitions/geeetech_I3ProC.def.json @@ -0,0 +1,38 @@ +{ + "version": 2, + "name": "Geeetech I3ProC", + "inherits": "Geeetech_Base_Dual_Extruder", + "metadata": + { + "visible": true, + "machine_extruder_trains": + { + "0": "Geeetech_Dual_Extruder_0", + "1": "Geeetech_Dual_Extruder_1" + }, + "preferred_material": "Geeetech_PLA_Black" + }, + "overrides": + { + "brim_width": { "value": 10 }, + "gantry_height": { "value": 45 }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "G91 ;Switch to relative positioning\nG1 E-1.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": [ + [-75, 35], + [18, 35], + [18, -18], + [-75, -18] + ] + }, + "machine_height": { "default_value": 180 }, + "machine_name": { "default_value": "Geeetech I3ProC" }, + "machine_start_gcode": { "default_value": ";Geeetech I3ProC Custom Start G-code\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 Y10 Z0.8 F5000 ; Move to start position\nG1 X0.1 Y180.0 Z1.2 F1500 E30 ; Draw the first line\nG92 E0 ; Reset Extruder\nG1 X0.4 Y180.0 Z1.2 F3000 ; Move to side a little\nG1 X0.4 Y10 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": 200 }, + "prime_tower_position_x": { "value": 170 }, + "prime_tower_position_y": { "value": 140 }, + "retraction_amount": { "value": 2 } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_I3ProW.def.json b/resources/definitions/geeetech_I3ProW.def.json new file mode 100644 index 0000000000..db54625f2d --- /dev/null +++ b/resources/definitions/geeetech_I3ProW.def.json @@ -0,0 +1,30 @@ +{ + "version": 2, + "name": "Geeetech I3ProW", + "inherits": "Geeetech_Base_Single_Extruder", + "metadata": + { + "visible": true, + "machine_extruder_trains": { "0": "Geeetech_Single_Extruder" } + }, + "overrides": + { + "gantry_height": { "value": 45 }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "G91 ;Switch to relative positioning\nG1 E-1.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": [ + [-75, 35], + [18, 35], + [18, -18], + [-75, -18] + ] + }, + "machine_height": { "default_value": 180 }, + "machine_name": { "default_value": "Geeetech I3ProW" }, + "machine_start_gcode": { "default_value": ";Geeetech I3ProW Custom Start G-code\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 Y10 Z0.8 F5000 ; Move to start position\nG1 X0.1 Y180.0 Z1.2 F1500 E30 ; Draw the first line\nG92 E0 ; Reset Extruder\nG1 X0.4 Y180.0 Z1.2 F3000 ; Move to side a little\nG1 X0.4 Y10 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": 200 }, + "retraction_amount": { "value": 2 } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_MeCreator.def.json b/resources/definitions/geeetech_MeCreator.def.json new file mode 100644 index 0000000000..3dece7354c --- /dev/null +++ b/resources/definitions/geeetech_MeCreator.def.json @@ -0,0 +1,30 @@ +{ + "version": 2, + "name": "Geeetech MeCreator", + "inherits": "Geeetech_Base_Single_Extruder", + "metadata": + { + "visible": true, + "machine_extruder_trains": { "0": "Geeetech_Single_Extruder" } + }, + "overrides": + { + "gantry_height": { "value": 45 }, + "machine_depth": { "default_value": 150 }, + "machine_end_gcode": { "default_value": "G91 ;Switch to relative positioning\nG1 E-1.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": [ + [-75, 35], + [18, 35], + [18, -18], + [-75, -18] + ] + }, + "machine_height": { "default_value": 125 }, + "machine_name": { "default_value": "Geeetech MeCreator" }, + "machine_start_gcode": { "default_value": ";Geeetech MeCreator Custom Start G-code\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\nG1 Z5.0 F3000 ;Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y10 Z0.8 F5000 ; Move to start position\nG1 X0.1 Y130.0 Z1.2 F1500 E30 ; Draw the first line\nG92 E0 ; Reset Extruder\nG1 X0.4 Y130.0 Z1.2 F3000 ; Move to side a little\nG1 X0.4 Y10 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 Y10 Z0.4 F3000.0 ; Scrape off nozzle residue" }, + "machine_width": { "default_value": 150 }, + "retraction_amount": { "value": 2 } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_MeCreator2.def.json b/resources/definitions/geeetech_MeCreator2.def.json new file mode 100644 index 0000000000..4e963892e7 --- /dev/null +++ b/resources/definitions/geeetech_MeCreator2.def.json @@ -0,0 +1,30 @@ +{ + "version": 2, + "name": "Geeetech MeCreator2", + "inherits": "Geeetech_Base_Single_Extruder", + "metadata": + { + "visible": true, + "machine_extruder_trains": { "0": "Geeetech_Single_Extruder" } + }, + "overrides": + { + "gantry_height": { "value": 45 }, + "machine_depth": { "default_value": 160 }, + "machine_end_gcode": { "default_value": "G91 ;Switch to relative positioning\nG1 E-1.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": [ + [-75, 35], + [18, 35], + [18, -18], + [-75, -18] + ] + }, + "machine_height": { "default_value": 160 }, + "machine_name": { "default_value": "Geeetech MeCreator2" }, + "machine_start_gcode": { "default_value": ";Geeetech MeCreator2 Custom Start G-code\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\nG1 Z5.0 F3000 ;Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y10 Z0.8 F5000 ; Move to start position\nG1 X0.1 Y140.0 Z1.2 F1500 E30 ; Draw the first line\nG92 E0 ; Reset Extruder\nG1 X0.4 Y140.0 Z1.2 F3000 ; Move to side a little\nG1 X0.4 Y10 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 Y10 Z0.4 F3000.0 ; Scrape off nozzle residue" }, + "machine_width": { "default_value": 160 }, + "retraction_amount": { "value": 2 } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_MeDucer.def.json b/resources/definitions/geeetech_MeDucer.def.json new file mode 100644 index 0000000000..ae7a6284d4 --- /dev/null +++ b/resources/definitions/geeetech_MeDucer.def.json @@ -0,0 +1,30 @@ +{ + "version": 2, + "name": "Geeetech MeDucer", + "inherits": "Geeetech_Base_Single_Extruder", + "metadata": + { + "visible": true, + "machine_extruder_trains": { "0": "Geeetech_Single_Extruder" } + }, + "overrides": + { + "gantry_height": { "value": 45 }, + "machine_depth": { "default_value": 150 }, + "machine_end_gcode": { "default_value": "G91 ;Switch to relative positioning\nG1 E-1.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": [ + [-75, 35], + [18, 35], + [18, -18], + [-75, -18] + ] + }, + "machine_height": { "default_value": 150 }, + "machine_name": { "default_value": "Geeetech MeDucer" }, + "machine_start_gcode": { "default_value": ";Geeetech MeDucer Custom Start G-code\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\nG1 Z5.0 F3000 ;Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y10 Z0.8 F5000 ; Move to start position\nG1 X0.1 Y130.0 Z1.2 F1500 E30 ; Draw the first line\nG92 E0 ; Reset Extruder\nG1 X0.4 Y130.0 Z1.2 F3000 ; Move to side a little\nG1 X0.4 Y10 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 Y10 Z0.4 F3000.0 ; Scrape off nozzle residue" }, + "machine_width": { "default_value": 180 }, + "retraction_amount": { "value": 2 } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_Mizar.def.json b/resources/definitions/geeetech_Mizar.def.json new file mode 100644 index 0000000000..41a97eabd0 --- /dev/null +++ b/resources/definitions/geeetech_Mizar.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "Geeetech Mizar", + "inherits": "Geeetech_Base_Single_Extruder", + "metadata": + { + "visible": true, + "machine_extruder_trains": { "0": "Geeetech_Single_Extruder" } + }, + "overrides": + { + "gantry_height": { "value": 35 }, + "machine_depth": { "default_value": 220 }, + "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": 260 }, + "machine_name": { "default_value": "Geeetech Mizar" }, + "machine_start_gcode": { "default_value": ";Official open-source firmware for Mizar: https://github.com/Geeetech3D/Mizar \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\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": 220 } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_MizarM.def.json b/resources/definitions/geeetech_MizarM.def.json new file mode 100644 index 0000000000..d4182ebb62 --- /dev/null +++ b/resources/definitions/geeetech_MizarM.def.json @@ -0,0 +1,38 @@ +{ + "version": 2, + "name": "Geeetech MizarM", + "inherits": "Geeetech_Base_Dual_Extruder", + "metadata": + { + "visible": true, + "machine_extruder_trains": + { + "0": "Geeetech_Dual_Extruder_0", + "1": "Geeetech_Dual_Extruder_1" + }, + "preferred_material": "Geeetech_PLA_Magenta" + }, + "overrides": + { + "brim_width": { "value": 10 }, + "gantry_height": { "value": 35 }, + "machine_depth": { "default_value": 255 }, + "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": 260 }, + "machine_name": { "default_value": "Geeetech MizarM" }, + "machine_start_gcode": { "default_value": ";Official open-source firmware for MizarM: https://github.com/Geeetech3D/Mizar-M \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": 255 }, + "material_standby_temperature": { "value": 200 }, + "prime_tower_position_x": { "value": 225 }, + "prime_tower_position_y": { "value": 195 } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_MizarMax.def.json b/resources/definitions/geeetech_MizarMax.def.json new file mode 100644 index 0000000000..00d320ab18 --- /dev/null +++ b/resources/definitions/geeetech_MizarMax.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "Geeetech MizarMax", + "inherits": "Geeetech_Base_Single_Extruder", + "metadata": + { + "visible": true, + "machine_extruder_trains": { "0": "Geeetech_Single_Extruder" } + }, + "overrides": + { + "gantry_height": { "value": 35 }, + "machine_depth": { "default_value": 320 }, + "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": 400 }, + "machine_name": { "default_value": "Geeetech MizarMax" }, + "machine_start_gcode": { "default_value": ";Official open-source firmware for MizarMax: https://github.com/Geeetech3D/Mizar-Max \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\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": 320 } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_MizarPro.def.json b/resources/definitions/geeetech_MizarPro.def.json new file mode 100644 index 0000000000..f5dd497d16 --- /dev/null +++ b/resources/definitions/geeetech_MizarPro.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "Geeetech MizarPro", + "inherits": "Geeetech_Base_Single_Extruder", + "metadata": + { + "visible": true, + "machine_extruder_trains": { "0": "Geeetech_Single_Extruder" } + }, + "overrides": + { + "gantry_height": { "value": 35 }, + "machine_depth": { "default_value": 220 }, + "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": 260 }, + "machine_name": { "default_value": "Geeetech MizarPro" }, + "machine_start_gcode": { "default_value": ";Official open-source firmware for MizarPro: https://github.com/Geeetech3D/Mizar-Pro \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\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": 220 } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_MizarS.def.json b/resources/definitions/geeetech_MizarS.def.json new file mode 100644 index 0000000000..73f4f60aa8 --- /dev/null +++ b/resources/definitions/geeetech_MizarS.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "Geeetech MizarS", + "inherits": "Geeetech_Base_Single_Extruder", + "metadata": + { + "visible": true, + "machine_extruder_trains": { "0": "Geeetech_Single_Extruder" } + }, + "overrides": + { + "gantry_height": { "value": 35 }, + "machine_depth": { "default_value": 255 }, + "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": 260 }, + "machine_name": { "default_value": "Geeetech MizarS" }, + "machine_start_gcode": { "default_value": ";Official open-source firmware for MizarS: https://github.com/Geeetech3D/Mizar-S \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": 255 } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_Mizar_S.def.json b/resources/definitions/geeetech_Mizar_S.def.json new file mode 100644 index 0000000000..747dae9f18 --- /dev/null +++ b/resources/definitions/geeetech_Mizar_S.def.json @@ -0,0 +1,49 @@ +{ + "version": 2, + "name": "Geeetech Mizar_S (legacy)", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Amit L", + "manufacturer": "Geeetech", + "file_formats": "text/x-gcode", + "has_materials": true, + "machine_extruder_trains": { "0": "geeetech_Mizar_S_1" } + }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "gantry_height": { "value": "28" }, + "layer_height": { "default_value": 0.1 }, + "layer_height_0": { "default_value": 0.15 }, + "machine_acceleration": { "default_value": 1000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 255 }, + "machine_end_gcode": { "default_value": "G91 ;Switch to relative positioning\nG1 E-1 ;Retract filament to lower pressure\nG0 X0 Y200 ;Move hotend to left and bed forward\nM104 S0 ;Cooldown hotend\nG90 ;Switch to absolute mode\nG92 E0 ;Set extruder to zero\nM140 S0 ;Cooldown bed\nM84 ; Disable steppers" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-31, 31], + [34, 31], + [34, -40], + [-31, -40] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 260 }, + "machine_max_acceleration_z": { "default_value": 500 }, + "machine_max_feedrate_e": { "default_value": 120 }, + "machine_max_feedrate_z": { "default_value": 12 }, + "machine_max_jerk_e": { "default_value": 2.5 }, + "machine_max_jerk_xy": { "default_value": 10 }, + "machine_max_jerk_z": { "default_value": 0.2 }, + "machine_name": { "default_value": "Geeetech Mizar_S (legacy)" }, + "machine_start_gcode": { "default_value": "G28 ; Auto home\nG1 Z15 F300 ;Move up slightly\nM107 ;Off fans\nG90 ;Switch to absolute positioning\nM82 ;Extruder absolute mode\nG92 E0 ;Set position of extruder to 0\nG0 X10 Y20 F1500 ;Move to X10 Y20 at 1500mms\nG1 Z0.8 ;Move Z to 0.8\nG1 F300 X180 E40 ;Extrude a line of filament\nG1 F1200 Z2 ;Raise Z\nG92 E0 ;Set extruder position to zero\nG28 ;Auto home" }, + "machine_width": { "default_value": 255 }, + "retraction_amount": { "default_value": 0.8 }, + "retraction_speed": { "default_value": 35 } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_Thunder.def.json b/resources/definitions/geeetech_Thunder.def.json new file mode 100644 index 0000000000..cc3e4044f8 --- /dev/null +++ b/resources/definitions/geeetech_Thunder.def.json @@ -0,0 +1,132 @@ +{ + "version": 2, + "name": "Geeetech Thunder", + "inherits": "Geeetech_Base_Single_Extruder", + "metadata": + { + "visible": true, + "machine_extruder_trains": { "0": "Geeetech_Single_Extruder" } + }, + "overrides": + { + "acceleration_print": { "value": 3500 }, + "acceleration_travel": { "value": 5000 }, + "cool_fan_full_at_height": + { + "label": "Regular Fan Speed at Height", + "value": "layer_height_0 + layer_height" + }, + "cool_fan_speed": + { + "maximum_value": "151", + "value": "151 if speed_infill>=200 else 100" + }, + "cool_fan_speed_max": + { + "maximum_value": "151", + "value": "cool_fan_speed" + }, + "cool_fan_speed_min": + { + "maximum_value": "151", + "value": "cool_fan_speed" + }, + "cool_min_layer_time": { "value": "1.3 if speed_infill>=200 else 2.5" }, + "fill_outline_gaps": + { + "label": "Print Thin Walls", + "value": false + }, + "gantry_height": { "value": 35 }, + "infill_before_walls": + { + "label": "Infill Before Walls", + "value": false + }, + "infill_overlap": + { + "label": "Infill Overlap Percentage", + "value": 10.0 + }, + "infill_sparse_density": + { + "label": "Infill Density", + "value": "15" + }, + "infill_wipe_dist": + { + "label": "Infill Wipe Distance", + "value": 0.0 + }, + "line_width": { "value": "1.2*machine_nozzle_size if speed_infill>=200 else machine_nozzle_size" }, + "machine_depth": { "default_value": 250 }, + "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": [ + [-20, 25], + [20, 25], + [20, -25], + [-20, -25] + ] + }, + "machine_height": { "default_value": 260 }, + "machine_max_acceleration_e": { "value": 3500 }, + "machine_max_acceleration_x": { "value": 5000 }, + "machine_max_acceleration_y": { "value": 4000 }, + "machine_max_acceleration_z": { "value": 50 }, + "machine_max_feedrate_e": { "value": 60 }, + "machine_max_feedrate_x": { "value": 300 }, + "machine_max_jerk_e": { "value": 8 }, + "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_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_layer_0": + { + "maximum_value_warning": 300, + "value": "material_print_temperature" + }, + "retraction_speed": { "value": 35 }, + "skin_overlap": + { + "label": "Skin Overlap Percentage", + "value": 10.0 + }, + "small_hole_max_size": { "value": "8 if speed_infill>=200 else 0" }, + "speed_infill": { "maximum_value_warning": "300" }, + "speed_print": + { + "maximum_value_warning": "300", + "value": 250 + }, + "speed_roofing": { "maximum_value_warning": "300" }, + "speed_support": { "maximum_value_warning": "200" }, + "speed_support_bottom": { "maximum_value_warning": "200" }, + "speed_support_infill": { "maximum_value_warning": "200" }, + "speed_support_interface": { "maximum_value_warning": "200" }, + "speed_support_roof": { "maximum_value_warning": "200" }, + "speed_topbottom": { "maximum_value_warning": "300" }, + "speed_travel_layer_0": { "maximum_value_warning": "200" }, + "speed_wall": { "maximum_value_warning": "300" }, + "speed_wall_0": { "maximum_value_warning": "300" }, + "speed_wall_x": { "maximum_value_warning": "300" }, + "wall_0_wipe_dist": + { + "label": "Outer Wall Wipe Distance", + "value": 0.0 + }, + "zig_zaggify_infill": + { + "label": "Connect Infill Lines", + "value": true + } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_a30.def.json b/resources/definitions/geeetech_a30.def.json index d4f7df139f..2d83039d94 100644 --- a/resources/definitions/geeetech_a30.def.json +++ b/resources/definitions/geeetech_a30.def.json @@ -2,64 +2,29 @@ "version": 2, "name": "Geeetech A30", "inherits": "fdmprinter", - "metadata": { + "metadata": + { + "visible": true, "author": "William & Cataldo URSO", "manufacturer": "Geeetech", "file_formats": "text/x-gcode", - "visible": true, "has_materials": true, - "preferred_quality_type": "draft", - "machine_extruder_trains": { - "0": "geeetech_a30_extruder_0" - } + "machine_extruder_trains": { "0": "geeetech_a30_extruder_0" }, + "preferred_quality_type": "draft" }, - "overrides": { - "machine_name": { - "default_value": "Geeetech A30" - }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nM190 S{material_bed_temperature}\nM109 S{material_print_temperature} T0\nG1 Z15.0 F6000 ;Move the platform down 15mm\nG92 E0\nG1 F200 E3\nG92 E0" - }, - "machine_end_gcode": { - "default_value": "M104 S0;Cooling the heat end\nM140 S0;Cooling the heat bed\nG92 E1\nG1 E-1 F300\nG28 X0 Y0;Home X axis and Y axis\nM84" - }, - "machine_width": { - "default_value": 320 - }, - "machine_height": { - "default_value": 420 - }, - "machine_depth": { - "default_value": 320 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": false - }, - "material_diameter": { - "default_value": 1.75 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "layer_height": { - "default_value": 0.1 - }, - "layer_height_0": { - "default_value": 0.3 - }, - "retraction_amount": { - "default_value": 2 - }, - "retraction_speed": { - "default_value": 25 - }, - "adhesion_type": { - "default_value": "skirt" - }, - "machine_head_with_fans_polygon": { + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "gantry_height": { "value": "55" }, + "layer_height": { "default_value": 0.1 }, + "layer_height_0": { "default_value": 0.3 }, + "machine_acceleration": { "default_value": 2000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 320 }, + "machine_end_gcode": { "default_value": "M104 S0;Cooling the heat end\nM140 S0;Cooling the heat bed\nG92 E1\nG1 E-1 F300\nG28 X0 Y0;Home X axis and Y axis\nM84" }, + "machine_gcode_flavor": { "default_value": "Repetier" }, + "machine_head_with_fans_polygon": + { "default_value": [ [-75, 35], [18, 35], @@ -67,47 +32,25 @@ [-75, -18] ] }, - "gantry_height": { - "value": "55" - }, - "machine_max_feedrate_x": { - "default_value": 300 - }, - "machine_max_feedrate_y": { - "default_value": 300 - }, - "machine_max_feedrate_z": { - "default_value": 7 - }, - "machine_max_feedrate_e": { - "default_value": 50 - }, - "machine_max_acceleration_x": { - "default_value": 2000 - }, - "machine_max_acceleration_y": { - "default_value": 2000 - }, - "machine_max_acceleration_z": { - "default_value": 100 - }, - "machine_max_acceleration_e": { - "default_value": 10000 - }, - "machine_acceleration": { - "default_value": 2000 - }, - "machine_max_jerk_xy": { - "default_value": 10 - }, - "machine_max_jerk_z": { - "default_value": 1 - }, - "machine_max_jerk_e": { - "default_value": 5 - }, - "machine_gcode_flavor": { - "default_value": "Repetier" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 420 }, + "machine_max_acceleration_e": { "default_value": 10000 }, + "machine_max_acceleration_x": { "default_value": 2000 }, + "machine_max_acceleration_y": { "default_value": 2000 }, + "machine_max_acceleration_z": { "default_value": 100 }, + "machine_max_feedrate_e": { "default_value": 50 }, + "machine_max_feedrate_x": { "default_value": 300 }, + "machine_max_feedrate_y": { "default_value": 300 }, + "machine_max_feedrate_z": { "default_value": 7 }, + "machine_max_jerk_e": { "default_value": 5 }, + "machine_max_jerk_xy": { "default_value": 10 }, + "machine_max_jerk_z": { "default_value": 1 }, + "machine_name": { "default_value": "Geeetech A30" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_start_gcode": { "default_value": "G28 ;Home\nM190 S{material_bed_temperature}\nM109 S{material_print_temperature} T0\nG1 Z15.0 F6000 ;Move the platform down 15mm\nG92 E0\nG1 F200 E3\nG92 E0" }, + "machine_width": { "default_value": 320 }, + "material_diameter": { "default_value": 1.75 }, + "retraction_amount": { "default_value": 2 }, + "retraction_speed": { "default_value": 25 } } -} +} \ No newline at end of file diff --git a/resources/definitions/gmax15plus.def.json b/resources/definitions/gmax15plus.def.json index 6cbdce221a..c8abf2aab8 100644 --- a/resources/definitions/gmax15plus.def.json +++ b/resources/definitions/gmax15plus.def.json @@ -2,7 +2,8 @@ "version": 2, "name": "gMax 1.5 Plus", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "gcreate", "manufacturer": "gcreate", @@ -10,44 +11,40 @@ "platform": "gmax_1-5_xt-plus_s3d_full model_150707.3mf", "has_machine_quality": true, "has_variants": true, - "variants_name": "Hotend", - "preferred_variant_name": "0.5mm E3D (Default)", + "machine_extruder_trains": { "0": "gmax15plus_extruder_0" }, "preferred_quality_type": "gmax15plus_global_normal", - "machine_extruder_trains": { - "0": "gmax15plus_extruder_0" - } - - + "preferred_variant_name": "0.5mm E3D (Default)", + "variants_name": "Hotend" }, - - "overrides": { - "machine_extruder_count": { "default_value": 1 }, - "machine_name": { "default_value": "gMax 1.5 Plus" }, - "machine_heated_bed": { "default_value": false }, - "machine_width": { "default_value": 406 }, - "machine_depth": { "default_value": 406 }, - "machine_height": { "default_value": 533 }, - "machine_center_is_zero": { "default_value": false }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_size": { "default_value": 0.5 }, - "layer_height": { "default_value": 0.2 }, - "layer_height_0": { "default_value": 0.3 }, - "retraction_amount": { "default_value": 1 }, - "retraction_speed": { "default_value": 70}, + "overrides": + { "adhesion_type": { "default_value": "skirt" }, "gantry_height": { "value": "50" }, - "speed_print": { "default_value": 50 }, + "layer_height": { "default_value": 0.2 }, + "layer_height_0": { "default_value": 0.3 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 406 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 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": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 533 }, + "machine_max_acceleration_e": { "default_value": 10000 }, "machine_max_acceleration_x": { "default_value": 600 }, "machine_max_acceleration_y": { "default_value": 600 }, "machine_max_acceleration_z": { "default_value": 30 }, - "machine_max_acceleration_e": { "default_value": 10000 }, + "machine_max_jerk_e": { "default_value": 5.0 }, "machine_max_jerk_xy": { "default_value": 8 }, "machine_max_jerk_z": { "default_value": 0.4 }, - "machine_max_jerk_e": { "default_value": 5.0 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_name": { "default_value": "gMax 1.5 Plus" }, + "machine_nozzle_size": { "default_value": 0.5 }, "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Home X/Y/Z\nM104 S{material_print_temperature} ; Preheat\nM109 S{material_print_temperature} ; Preheat\nG91 ;relative positioning\nG90 ;absolute positioning\nG1 Z25.0 F9000 ;raise nozzle 25mm\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..." }, - "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 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" }, - "wall_thickness": { "value": "1" }, - "top_bottom_thickness": { "default_value": 1 } + "machine_width": { "default_value": 406 }, + "material_diameter": { "default_value": 1.75 }, + "retraction_amount": { "default_value": 1 }, + "retraction_speed": { "default_value": 70 }, + "speed_print": { "default_value": 50 }, + "top_bottom_thickness": { "default_value": 1 }, + "wall_thickness": { "value": "1" } } -} +} \ No newline at end of file diff --git a/resources/definitions/gmax15plus_dual.def.json b/resources/definitions/gmax15plus_dual.def.json index ea84858760..47ce76fc98 100644 --- a/resources/definitions/gmax15plus_dual.def.json +++ b/resources/definitions/gmax15plus_dual.def.json @@ -2,50 +2,52 @@ "version": 2, "name": "gMax 1.5 Plus Dual Extruder", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "GTL_180109", "manufacturer": "gCreate", "file_formats": "text/x-gcode", "platform": "gmax_1-5_xt-plus_s3d_full model_150707.3mf", "has_variants": true, - "variants_name": "Hotend", - "preferred_variant_name": "0.5mm E3D (Default)", - "preferred_quality_type": "gmax15plus_global_dual_normal", - "machine_extruder_trains": { + "machine_extruder_trains": + { "0": "gmax15plus_dual_extruder_0", "1": "gmax15plus_dual_extruder_1" - } + }, + "preferred_quality_type": "gmax15plus_global_dual_normal", + "preferred_variant_name": "0.5mm E3D (Default)", + "variants_name": "Hotend" }, - - "overrides": { - "machine_name": { "default_value": "gMax 1.5 Plus Dual Extruder" }, - "machine_extruder_count": { "default_value": 2 }, - "machine_heated_bed": { "default_value": false }, - "machine_width": { "default_value": 406 }, - "machine_depth": { "default_value": 406 }, - "machine_height": { "default_value": 533 }, - "machine_center_is_zero": { "default_value": false }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_size": { "default_value": 0.5 }, - "layer_height": { "default_value": 0.2 }, - "layer_height_0": { "default_value": 0.3 }, - "retraction_amount": { "default_value": 1 }, - "retraction_speed": { "default_value": 70}, + "overrides": + { "adhesion_type": { "default_value": "skirt" }, "gantry_height": { "value": "50" }, - "speed_print": { "default_value": 50 }, + "layer_height": { "default_value": 0.2 }, + "layer_height_0": { "default_value": 0.3 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 406 }, + "machine_end_gcode": { "default_value": "M104 S0 T0;Left extruder off\nM104 S0 T1; Right extruder 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_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 533 }, + "machine_max_acceleration_e": { "default_value": 10000 }, "machine_max_acceleration_x": { "default_value": 600 }, "machine_max_acceleration_y": { "default_value": 600 }, "machine_max_acceleration_z": { "default_value": 30 }, - "machine_max_acceleration_e": { "default_value": 10000 }, + "machine_max_jerk_e": { "default_value": 5.0 }, "machine_max_jerk_xy": { "default_value": 8 }, "machine_max_jerk_z": { "default_value": 0.4 }, - "machine_max_jerk_e": { "default_value": 5.0 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_name": { "default_value": "gMax 1.5 Plus Dual Extruder" }, + "machine_nozzle_size": { "default_value": 0.5 }, "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Home X/Y/Z\nM104 S{material_print_temperature} T0 ; Preheat Left Extruder\nM104 S{material_print_temperature} T1 ; Preheat Right Extruder\nM109 S{material_print_temperature} T0 ; Preheat Left Extruder\nM109 S{material_print_temperature} T1 ; Preheat Right Extruder\nG91 ;relative positioning\nG90 ;absolute positioning\nM218 T1 X34.3 Y0; Set 2nd extruder offset. This can be changed later if needed\nG1 Z25.0 F9000 ;raise nozzle 25mm\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..." }, - "machine_end_gcode": { "default_value": "M104 S0 T0;Left extruder off\nM104 S0 T1; Right extruder 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" }, - "wall_thickness": { "value": "1" }, - "top_bottom_thickness": { "default_value": 1 } + "machine_width": { "default_value": 406 }, + "material_diameter": { "default_value": 1.75 }, + "retraction_amount": { "default_value": 1 }, + "retraction_speed": { "default_value": 70 }, + "speed_print": { "default_value": 50 }, + "top_bottom_thickness": { "default_value": 1 }, + "wall_thickness": { "value": "1" } } -} +} \ No newline at end of file diff --git a/resources/definitions/goofoo_base.def.json b/resources/definitions/goofoo_base.def.json index 05f34bf8fe..76e02cc636 100644 --- a/resources/definitions/goofoo_base.def.json +++ b/resources/definitions/goofoo_base.def.json @@ -1,138 +1,127 @@ { - "name": "Goofoo Base Printer", "version": 2, + "name": "Goofoo Base Printer", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": false, "author": "goofoo3d.com", "manufacturer": "GooFoo", "file_formats": "text/x-gcode", - "first_start_actions": ["MachineSettingsAction"], - - "machine_extruder_trains": { - "0": "goofoo_base_extruder" - }, - - "has_materials": true, - "preferred_material": "goofoo_pla", - - "has_variants": true, - "variants_name": "Nozzle Size", - "preferred_variant_name": "0.4mm Nozzle", - + "first_start_actions": [ "MachineSettingsAction" ], "has_machine_quality": true, - "preferred_quality_type": "normal" - + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "goofoo_base_extruder" }, + "preferred_material": "goofoo_pla", + "preferred_quality_type": "normal", + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Size" }, - "overrides": { - - "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract the filament\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG28 X0 Y0 ;Home X and Y\n\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z" }, - - "machine_max_feedrate_x": { "value": 500 }, - "machine_max_feedrate_y": { "value": 500 }, - "machine_max_feedrate_z": { "value": 10 }, - "machine_max_feedrate_e": { "value": 50 }, - - "machine_max_acceleration_x": { "value": 500 }, - "machine_max_acceleration_y": { "value": 500 }, - "machine_max_acceleration_z": { "value": 100 }, - "machine_max_acceleration_e": { "value": 5000 }, - "machine_acceleration": { "value": 500 }, - - "machine_max_jerk_xy": { "value": 10 }, - "machine_max_jerk_z": { "value": 0.4 }, - "machine_max_jerk_e": { "value": 5 }, - - "machine_heated_bed": { "default_value": true }, - - "material_diameter": { "default_value": 1.75 }, - + "overrides": + { + "acceleration_enabled": { "value": false }, "acceleration_print": { "value": 500 }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, "acceleration_travel": { "value": 500 }, "acceleration_travel_layer_0": { "value": "acceleration_travel" }, - "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, - + "cool_fan_full_at_height": { "value": "3 * layer_height" }, + "cool_min_layer_time": { "value": 10 }, + "fill_outline_gaps": { "value": false }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 30.0 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_wipe_dist": { "value": 0.0 }, + "jerk_enabled": { "value": false }, "jerk_print": { "value": 8 }, "jerk_travel": { "value": "jerk_print" }, "jerk_travel_layer_0": { "value": "jerk_travel" }, - - "acceleration_enabled": { "value": false }, - "jerk_enabled": { "value": false }, - - "speed_print": { "value": 40.0 } , - "speed_infill": { "value": "speed_print" }, - "speed_wall": { "value": "speed_print" }, - "speed_wall_0": { "value": "speed_wall" }, - "speed_wall_x": { "value": "speed_wall" }, - "speed_topbottom": { "value": "speed_print" }, - "speed_roofing": { "value": "speed_topbottom" }, - "speed_travel": { "value": "80" }, - "speed_layer_0": { "value": 20.0 }, - "speed_print_layer_0": { "value": "speed_layer_0" }, - "speed_travel_layer_0": { "value": "60" }, - "speed_prime_tower": { "value": "speed_topbottom" }, - "speed_support": { "value": "speed_wall_0" }, - "speed_support_interface": { "value": "speed_topbottom" }, - "speed_z_hop": { "value": 5 }, - - "skirt_brim_speed": { "value": "speed_layer_0" }, - - "line_width": { "value": "machine_nozzle_size" }, - - "optimize_wall_printing_order": { "value": "True" }, - - "material_initial_print_temperature": { "value": "material_print_temperature" }, - "material_final_print_temperature": { "value": "material_print_temperature" }, + "machine_acceleration": { "value": 500 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract the filament\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG28 X0 Y0 ;Home X and Y\n\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z" }, + "machine_heated_bed": { "default_value": true }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_feedrate_e": { "value": 50 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": + { + "maximum_value": "500", + "maximum_value_warning": "421", + "value": "material_print_temperature" + }, "material_flow": { "value": 100 }, - - "z_seam_type": { "value": "'back'" }, - "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, - - "infill_sparse_density": { "value": "20" }, - "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, - "infill_before_walls": { "value": false }, - "infill_overlap": { "value": 30.0 }, - "skin_overlap": { "value": 10.0 }, - "infill_wipe_dist": { "value": 0.0 }, - "wall_0_wipe_dist": { "value": 0.0 }, - - "fill_outline_gaps": { "value": false }, - - "retraction_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 + "material_initial_print_temperature": + { + "maximum_value": "500", + "maximum_value_warning": "421", + "value": "material_print_temperature" }, - "retraction_retract_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 + "material_print_temperature": + { + "maximum_value": "500", + "maximum_value_warning": "421" }, - "retraction_prime_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 + "material_print_temperature_layer_0": + { + "maximum_value": "500", + "maximum_value_warning": "421" }, - - "retraction_hop_enabled": { "value": "False" }, - "retraction_hop": { "value": 0.2 }, + "material_standby_temperature": + { + "maximum_value": "500", + "maximum_value_warning": "421" + }, + "optimize_wall_printing_order": { "value": "True" }, "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, "retraction_combing_max_distance": { "value": 30 }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 10 }, + "retraction_hop": { "value": 0.2 }, + "retraction_min_travel": { "value": 1.5 }, + "retraction_prime_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "retraction_retract_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "retraction_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "skin_overlap": { "value": 10.0 }, + "skirt_brim_speed": { "value": "speed_layer_0" }, + "speed_layer_0": { "value": 20.0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": 40.0 }, + "speed_roofing": { "value": "speed_topbottom" }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_topbottom": { "value": "speed_print" }, + "speed_travel": { "value": "80" }, + "speed_travel_layer_0": { "value": "60" }, + "speed_wall": { "value": "speed_print" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 5 }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, "travel_avoid_other_parts": { "value": true }, "travel_avoid_supports": { "value": true }, "travel_retract_before_outer_wall": { "value": true }, - - "retraction_enable": { "value": true }, - "retraction_count_max": { "value": 100 }, - "retraction_extrusion_window": { "value": 10 }, - "retraction_min_travel": { "value": 1.5 }, - - "cool_fan_full_at_height": { "value": "3 * layer_height" }, - "cool_fan_enabled": { "value": true }, - "cool_min_layer_time": { "value": 10 }, - - - - - "top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" }, - "wall_thickness": {"value": "line_width * 2" } - + "wall_0_wipe_dist": { "value": 0.0 }, + "wall_thickness": { "value": "line_width * 2" }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, + "z_seam_type": { "value": "'back'" } } -} +} \ No newline at end of file diff --git a/resources/definitions/goofoo_cube.def.json b/resources/definitions/goofoo_cube.def.json index 55a606ff11..c00d92ef64 100644 --- a/resources/definitions/goofoo_cube.def.json +++ b/resources/definitions/goofoo_cube.def.json @@ -1,29 +1,29 @@ { - "name": "Goofoo Cube", "version": 2, + "name": "Goofoo Cube", "inherits": "goofoo_small", - "overrides": { - + "metadata": + { + "visible": true, + "author": "goofoo" + }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "layer_height": { "default_value": 0.4 }, + "layer_height_0": { "default_value": 0.5 }, + "machine_depth": { "default_value": 80 }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 80 }, "machine_name": { "default_value": "Goofoo Cube" }, "machine_width": { "default_value": 80 }, - "machine_depth": { "default_value": 80 }, - "machine_height": { "default_value": 80 }, - "machine_heated_bed": { "default_value": false }, "raft_margin": { "default_value": 5 }, - "layer_height":{"default_value": 0.4}, - "layer_height_0": {"default_value": 0.5}, - "speed_print": {"value": 10}, - "speed_travel": {"value": 10}, - "speed_layer_0":{"value": 10}, - "speed_print_layer_0":{"value": 10}, - "speed_travel_layer_0":{"value": 10}, - - "retraction_speed": {"default_value": 60}, - "retraction_prime_speed":{"value": 80}, - "adhesion_type": {"default_value": "skirt"} - }, - "metadata": { - "author": "goofoo", - "visible": true + "retraction_prime_speed": { "value": 80 }, + "retraction_speed": { "default_value": 60 }, + "speed_layer_0": { "value": 10 }, + "speed_print": { "value": 10 }, + "speed_print_layer_0": { "value": 10 }, + "speed_travel": { "value": 10 }, + "speed_travel_layer_0": { "value": 10 } } } \ No newline at end of file diff --git a/resources/definitions/goofoo_e-one.def.json b/resources/definitions/goofoo_e-one.def.json index e2c89e0065..39d8a9c74a 100644 --- a/resources/definitions/goofoo_e-one.def.json +++ b/resources/definitions/goofoo_e-one.def.json @@ -1,14 +1,9 @@ { - "name": "Goofoo E-one", "version": 2, + "name": "Goofoo E-one", "inherits": "goofoo_open", - "overrides": { - "machine_name": { "default_value": "Goofoo E-one" }, - "machine_width": { "default_value": 300 }, - "machine_depth": { "default_value": 300 }, - "machine_height": { "default_value": 400 } - }, - "metadata": { + "metadata": + { "visible": true, "exclude_materials": [ "goofoo_bronze_pla", @@ -25,5 +20,12 @@ "goofoo_hips", "goofoo_pva" ] + }, + "overrides": + { + "machine_depth": { "default_value": 300 }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Goofoo E-one" }, + "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/goofoo_far.def.json b/resources/definitions/goofoo_far.def.json index ca91655179..385b767c80 100644 --- a/resources/definitions/goofoo_far.def.json +++ b/resources/definitions/goofoo_far.def.json @@ -1,15 +1,16 @@ { - "name": "Goofoo Far", "version": 2, + "name": "Goofoo Far", "inherits": "goofoo_base", - "metadata": { - "quality_definition": "goofoo_far", + "metadata": + { "visible": false, "exclude_materials": [ "goofoo_bronze_pla", "goofoo_tpe_83a", "goofoo_tpu_87a", "goofoo_tpu_95a" - ] + ], + "quality_definition": "goofoo_far" } } \ No newline at end of file diff --git a/resources/definitions/goofoo_gemini.def.json b/resources/definitions/goofoo_gemini.def.json index 7ada5057de..04cbbaa360 100644 --- a/resources/definitions/goofoo_gemini.def.json +++ b/resources/definitions/goofoo_gemini.def.json @@ -1,22 +1,31 @@ { - "name": "Goofoo Gemini", "version": 2, + "name": "Goofoo Gemini", "inherits": "goofoo_far", - "overrides": { - "machine_name": { "default_value": "Goofoo Gemini" }, - "machine_width": { "default_value": 360 }, - "machine_depth": { "default_value": 250 }, - "machine_height": { "default_value": 200 }, - "machine_head_with_fans_polygon":{"default_value":[[0, 0], [0, 0], [0, 0], [0, 0]]}, - "machine_extruder_count": { - "default_value": 2 - } - }, - "metadata": { - "machine_extruder_trains": { + "metadata": + { + "visible": true, + "machine_extruder_trains": + { "0": "goofoo_gemini_1st", "1": "goofoo_gemini_2st" + } + }, + "overrides": + { + "machine_depth": { "default_value": 250 }, + "machine_extruder_count": { "default_value": 2 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ] }, - "visible": true + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "Goofoo Gemini" }, + "machine_width": { "default_value": 360 } } } \ No newline at end of file diff --git a/resources/definitions/goofoo_giant.def.json b/resources/definitions/goofoo_giant.def.json index 5a20902502..c4591e5983 100644 --- a/resources/definitions/goofoo_giant.def.json +++ b/resources/definitions/goofoo_giant.def.json @@ -1,15 +1,13 @@ { - "name": "Goofoo Giant", "version": 2, + "name": "Goofoo Giant", "inherits": "goofoo_near", - "overrides": { - "machine_name": { "default_value": "Goofoo Giant" }, - "machine_width": { "default_value": 600 }, + "metadata": { "visible": true }, + "overrides": + { "machine_depth": { "default_value": 600 }, - "machine_height": { "default_value": 1000 } - - }, - "metadata": { - "visible": true + "machine_height": { "default_value": 1000 }, + "machine_name": { "default_value": "Goofoo Giant" }, + "machine_width": { "default_value": 600 } } } \ No newline at end of file diff --git a/resources/definitions/goofoo_max.def.json b/resources/definitions/goofoo_max.def.json index 8a1ffad335..409641fae7 100644 --- a/resources/definitions/goofoo_max.def.json +++ b/resources/definitions/goofoo_max.def.json @@ -1,24 +1,23 @@ { - "name": "Goofoo Max", "version": 2, + "name": "Goofoo Max", "inherits": "goofoo_near", - "overrides": { - "machine_name": { "default_value": "Goofoo Max" }, - "machine_width": { "default_value": 600 }, + "metadata": { "visible": true }, + "overrides": + { + "gantry_height": { "value": 0 }, "machine_depth": { "default_value": 580 }, - "machine_height": { "default_value": 700 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [0, 0], [0, 0], [0, 0], [0, 0] ] }, - - "gantry_height": { "value": 0 } - - }, - "metadata": { - "visible": true + "machine_height": { "default_value": 700 }, + "machine_name": { "default_value": "Goofoo Max" }, + "machine_width": { "default_value": 600 } } } \ No newline at end of file diff --git a/resources/definitions/goofoo_mido.def.json b/resources/definitions/goofoo_mido.def.json index a4f8c23bad..0df75c9e58 100644 --- a/resources/definitions/goofoo_mido.def.json +++ b/resources/definitions/goofoo_mido.def.json @@ -1,15 +1,13 @@ { - "name": "Goofoo Mido", "version": 2, + "name": "Goofoo Mido", "inherits": "goofoo_near", - "overrides": { - "machine_name": { "default_value": "Goofoo Mido" }, - "machine_width": { "default_value": 200 }, + "metadata": { "visible": true }, + "overrides": + { "machine_depth": { "default_value": 200 }, - "machine_height": { "default_value": 200 } - - }, - "metadata": { - "visible": true + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "Goofoo Mido" }, + "machine_width": { "default_value": 200 } } } \ No newline at end of file diff --git a/resources/definitions/goofoo_miniplus.def.json b/resources/definitions/goofoo_miniplus.def.json index 87ea5509a7..2f5e7477de 100644 --- a/resources/definitions/goofoo_miniplus.def.json +++ b/resources/definitions/goofoo_miniplus.def.json @@ -1,15 +1,13 @@ { - "name": "Goofoo Mini+", "version": 2, + "name": "Goofoo Mini+", "inherits": "goofoo_near", - "overrides": { - "machine_name": { "default_value": "Goofoo Mini+" }, - "machine_width": { "default_value": 200 }, + "metadata": { "visible": true }, + "overrides": + { "machine_depth": { "default_value": 200 }, - "machine_height": { "default_value": 150 } - - }, - "metadata": { - "visible": true + "machine_height": { "default_value": 150 }, + "machine_name": { "default_value": "Goofoo Mini+" }, + "machine_width": { "default_value": 200 } } } \ No newline at end of file diff --git a/resources/definitions/goofoo_near.def.json b/resources/definitions/goofoo_near.def.json index 073e44a751..b3ed9cfde6 100644 --- a/resources/definitions/goofoo_near.def.json +++ b/resources/definitions/goofoo_near.def.json @@ -1,9 +1,10 @@ { - "name": "Goofoo Near", "version": 2, + "name": "Goofoo Near", "inherits": "goofoo_base", - "metadata": { - "quality_definition": "goofoo_near", - "visible": false + "metadata": + { + "visible": false, + "quality_definition": "goofoo_near" } } \ No newline at end of file diff --git a/resources/definitions/goofoo_nova.def.json b/resources/definitions/goofoo_nova.def.json index 882669f663..5c41d4dd74 100644 --- a/resources/definitions/goofoo_nova.def.json +++ b/resources/definitions/goofoo_nova.def.json @@ -1,16 +1,17 @@ { - "name": "Goofoo Nova", "version": 2, + "name": "Goofoo Nova", "inherits": "goofoo_near", - "overrides": { - "machine_name": { "default_value": "Goofoo Nova" }, - "machine_width": { "default_value": 280 }, - "machine_depth": { "default_value": 280 }, - "machine_height": { "default_value": 300 } - + "metadata": + { + "visible": true, + "author": "goofoo" }, - "metadata": { - "author": "goofoo", - "visible": true + "overrides": + { + "machine_depth": { "default_value": 280 }, + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "Goofoo Nova" }, + "machine_width": { "default_value": 280 } } } \ No newline at end of file diff --git a/resources/definitions/goofoo_open.def.json b/resources/definitions/goofoo_open.def.json index 5349859809..5a1c707024 100644 --- a/resources/definitions/goofoo_open.def.json +++ b/resources/definitions/goofoo_open.def.json @@ -1,9 +1,9 @@ { - "name": "Goofoo Open", "version": 2, + "name": "Goofoo Open", "inherits": "goofoo_base", - "metadata": { - "quality_definition": "goofoo_open", + "metadata": + { "visible": false, "exclude_materials": [ "goofoo_bronze_pla", @@ -16,6 +16,7 @@ "goofoo_pa", "goofoo_asa", "goofoo_abs" - ] + ], + "quality_definition": "goofoo_open" } } \ No newline at end of file diff --git a/resources/definitions/goofoo_plus.def.json b/resources/definitions/goofoo_plus.def.json index cf95d5b174..bb46ca32a8 100644 --- a/resources/definitions/goofoo_plus.def.json +++ b/resources/definitions/goofoo_plus.def.json @@ -1,15 +1,13 @@ { - "name": "Goofoo Plus", "version": 2, + "name": "Goofoo Plus", "inherits": "goofoo_near", - "overrides": { - "machine_name": { "default_value": "Goofoo Plus" }, - "machine_width": { "default_value": 360 }, + "metadata": { "visible": true }, + "overrides": + { "machine_depth": { "default_value": 360 }, - "machine_height": { "default_value": 400 } - - }, - "metadata": { - "visible": true + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Goofoo Plus" }, + "machine_width": { "default_value": 360 } } } \ No newline at end of file diff --git a/resources/definitions/goofoo_small.def.json b/resources/definitions/goofoo_small.def.json index 4c919e9398..edbcd4f667 100644 --- a/resources/definitions/goofoo_small.def.json +++ b/resources/definitions/goofoo_small.def.json @@ -1,9 +1,9 @@ { - "name": "Goofoo Small", "version": 2, + "name": "Goofoo Small", "inherits": "goofoo_base", - "metadata": { - "quality_definition": "goofoo_small", + "metadata": + { "visible": false, "exclude_materials": [ "goofoo_bronze_pla", @@ -18,6 +18,7 @@ "goofoo_abs", "goofoo_pva", "goofoo_hips" - ] + ], + "quality_definition": "goofoo_small" } } \ No newline at end of file diff --git a/resources/definitions/goofoo_t-one.def.json b/resources/definitions/goofoo_t-one.def.json index e67f1efa72..4117603a2b 100644 --- a/resources/definitions/goofoo_t-one.def.json +++ b/resources/definitions/goofoo_t-one.def.json @@ -1,21 +1,10 @@ { - "name": "Goofoo T-one", "version": 2, + "name": "Goofoo T-one", "inherits": "goofoo_far", - "overrides": { - "machine_name": { "default_value": "Goofoo T-one" }, - "machine_width": { "default_value": 200 }, - "machine_depth": { "default_value": 200 }, - "machine_height": { "default_value": 150 }, - "machine_extruder_count": { - "default_value": 2 - } - }, - "metadata": { - "machine_extruder_trains": { - "0": "goofoo_tone_1st", - "1": "goofoo_tone_2st" - }, + "metadata": + { + "visible": true, "exclude_materials": [ "goofoo_bronze_pla", "goofoo_peek", @@ -31,6 +20,18 @@ "goofoo_hips", "goofoo_pva" ], - "visible": true + "machine_extruder_trains": + { + "0": "goofoo_tone_1st", + "1": "goofoo_tone_2st" + } + }, + "overrides": + { + "machine_depth": { "default_value": 200 }, + "machine_extruder_count": { "default_value": 2 }, + "machine_height": { "default_value": 150 }, + "machine_name": { "default_value": "Goofoo T-one" }, + "machine_width": { "default_value": 200 } } } \ No newline at end of file diff --git a/resources/definitions/goofoo_tiny.def.json b/resources/definitions/goofoo_tiny.def.json index 0b15ab64d1..0845bad88c 100644 --- a/resources/definitions/goofoo_tiny.def.json +++ b/resources/definitions/goofoo_tiny.def.json @@ -1,16 +1,15 @@ { - "name": "Goofoo Tiny", "version": 2, + "name": "Goofoo Tiny", "inherits": "goofoo_small", - "overrides": { + "metadata": { "visible": true }, + "overrides": + { + "machine_depth": { "default_value": 100 }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 100 }, "machine_name": { "default_value": "Goofoo Tiny" }, "machine_width": { "default_value": 100 }, - "machine_depth": { "default_value": 100 }, - "machine_height": { "default_value": 100 }, - "machine_heated_bed": { "default_value": false }, "raft_margin": { "default_value": 5 } - }, - "metadata": { - "visible": true } } \ No newline at end of file diff --git a/resources/definitions/goofoo_tinyplus.def.json b/resources/definitions/goofoo_tinyplus.def.json index 82557cc260..cd2a3ab2ee 100644 --- a/resources/definitions/goofoo_tinyplus.def.json +++ b/resources/definitions/goofoo_tinyplus.def.json @@ -1,16 +1,15 @@ { - "name": "Goofoo Tiny+", "version": 2, + "name": "Goofoo Tiny+", "inherits": "goofoo_small", - "overrides": { + "metadata": { "visible": true }, + "overrides": + { + "machine_depth": { "default_value": 120 }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 180 }, "machine_name": { "default_value": "Goofoo Tiny+" }, "machine_width": { "default_value": 120 }, - "machine_depth": { "default_value": 120 }, - "machine_height": { "default_value": 180 }, - "raft_margin": { "default_value": 5 }, - "machine_heated_bed": { "default_value": false } - }, - "metadata": { - "visible": true + "raft_margin": { "default_value": 5 } } } \ No newline at end of file diff --git a/resources/definitions/grr_neo.def.json b/resources/definitions/grr_neo.def.json index 00390e7509..14446db88d 100644 --- a/resources/definitions/grr_neo.def.json +++ b/resources/definitions/grr_neo.def.json @@ -2,33 +2,24 @@ "version": 2, "name": "German RepRap Neo", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Simon Cor", "manufacturer": "German RepRap", "file_formats": "text/x-gcode", "platform": "grr_neo_platform.3mf", - "machine_extruder_trains": - { - "0": "grr_neo_extruder_0" - } + "machine_extruder_trains": { "0": "grr_neo_extruder_0" } }, - - "overrides": { - "machine_name": { "default_value": "German RepRap Neo" }, - "machine_width": { - "default_value": 150 - }, - "machine_height": { - "default_value": 150 - }, - "machine_depth": { - "default_value": 150 - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_head_with_fans_polygon": { + "overrides": + { + "gantry_height": { "value": "55" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 150 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 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_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ [-75, -18], [-75, 35], @@ -36,17 +27,9 @@ [18, -18] ] }, - "gantry_height": { - "value": "55" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "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\nG91 ;relative positioning\nG1 Y-10.0000 F9000 ;compensate firmware head move 1cm right after endstop\nG92 Y0 ;zero Y\nG90 ;absolute positioning\nG1 Z15.0 F9000 ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 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_height": { "default_value": 150 }, + "machine_name": { "default_value": "German RepRap Neo" }, + "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\nG91 ;relative positioning\nG1 Y-10.0000 F9000 ;compensate firmware head move 1cm right after endstop\nG92 Y0 ;zero Y\nG90 ;absolute positioning\nG1 Z15.0 F9000 ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm 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": 150 } } -} +} \ No newline at end of file diff --git a/resources/definitions/gutenberg_base.def.json b/resources/definitions/gutenberg_base.def.json new file mode 100644 index 0000000000..f0329bef6d --- /dev/null +++ b/resources/definitions/gutenberg_base.def.json @@ -0,0 +1,115 @@ +{ + "version": 2, + "name": "Gutenberg Base", + "inherits": "fdmprinter", + "metadata": + { + "visible": false, + "author": "Gutenberg Dev", + "manufacturer": "Gutenberg", + "file_formats": "text/x-gcode", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "machine_extruder_trains": { "0": "gutenberg_extruder_0" }, + "preferred_material": "generic_abs", + "preferred_quality_type": "normal" + }, + "overrides": + { + "acceleration_enabled": { "default_value": true }, + "acceleration_layer_0": { "value": 10000 }, + "acceleration_print": { "default_value": 15000 }, + "acceleration_roofing": { "value": 10000 }, + "acceleration_travel_layer_0": { "value": 10000 }, + "acceleration_wall_0": { "value": 7500 }, + "adhesion_type": { "default_value": "skirt" }, + "alternate_extra_perimeter": { "default_value": true }, + "bridge_fan_speed_2": { "resolve": "max(cool_fan_speed, 50)" }, + "bridge_fan_speed_3": { "resolve": "max(cool_fan_speed, 20)" }, + "bridge_settings_enabled": { "default_value": true }, + "bridge_wall_coast": { "default_value": 10 }, + "cool_fan_full_at_height": { "value": "resolveOrValue('layer_height_0') + resolveOrValue('layer_height') * max(1, cool_fan_full_layer - 1)" }, + "cool_fan_full_layer": { "value": 4 }, + "cool_min_layer_time": { "default_value": 15 }, + "cool_min_layer_time_fan_speed_max": { "default_value": 20 }, + "gantry_height": { "value": 30 }, + "infill_before_walls": { "default_value": false }, + "infill_enable_travel_optimization": { "default_value": true }, + "jerk_roofing": { "value": 10 }, + "jerk_wall_0": { "value": 10 }, + "layer_height_0": { "resolve": "max(0.2, min(extruderValues('layer_height')))" }, + "line_width": { "value": "machine_nozzle_size * 1.125" }, + "machine_acceleration": { "default_value": 1500 }, + "machine_depth": { "default_value": 165 }, + "machine_end_gcode": { "default_value": "END_PRINT" }, + "machine_endstop_positive_direction_x": { "default_value": true }, + "machine_endstop_positive_direction_y": { "default_value": true }, + "machine_endstop_positive_direction_z": { "default_value": false }, + "machine_feeder_wheel_diameter": { "default_value": 7.5 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-35, 65], + [-35, -50], + [35, -50], + [35, 65] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 165 }, + "machine_max_acceleration_x": { "default_value": 15000 }, + "machine_max_acceleration_y": { "default_value": 15000 }, + "machine_max_acceleration_z": { "default_value": 250 }, + "machine_max_feedrate_e": { "default_value": 120 }, + "machine_max_feedrate_z": { "default_value": 40 }, + "machine_max_jerk_e": { "default_value": 60 }, + "machine_name": { "default_value": "GUTENBERG 3DP" }, + "machine_start_gcode": { "default_value": ";Simple\nSTART_PRINT EXTRUDER_TEMP={material_print_temperature_layer_0} BED_TEMP={material_bed_temperature_layer_0}\n;Or with custom bed mesh area\n;START_PRINT EXTRUDER_TEMP={material_print_temperature_layer_0} BED_TEMP={material_bed_temperature_layer_0} AREA_START=%MINX%,%MINY% AREA_END=%MAXX%,%MAXY% FILAMENT_TYPE={material_type}" }, + "machine_steps_per_mm_x": { "default_value": 160 }, + "machine_steps_per_mm_y": { "default_value": 160 }, + "machine_steps_per_mm_z": { "default_value": 800 }, + "machine_use_extruder_offset_to_offset_coords": { "value": false }, + "machine_width": { "default_value": 165 }, + "material_diameter": { "default_value": 1.75 }, + "meshfix_maximum_resolution": { "default_value": 0.01 }, + "min_infill_area": { "default_value": 5.0 }, + "minimum_polygon_circumference": { "default_value": 0.2 }, + "optimize_wall_printing_order": { "default_value": true }, + "retraction_amount": { "default_value": 0.8 }, + "retraction_combing": { "value": "'noskin'" }, + "retraction_combing_max_distance": { "default_value": 10 }, + "retraction_hop": { "default_value": 0.2 }, + "retraction_hop_enabled": { "default_value": true }, + "retraction_prime_speed": + { + "maximum_value_warning": 130, + "value": "math.ceil(retraction_speed * 0.4)" + }, + "retraction_retract_speed": { "maximum_value_warning": 130 }, + "retraction_speed": + { + "default_value": 35, + "maximum_value_warning": 130 + }, + "roofing_layer_count": { "value": 1 }, + "skirt_brim_minimal_length": { "default_value": 550 }, + "speed_layer_0": { "value": "math.ceil(speed_print * 0.25)" }, + "speed_roofing": { "value": "math.ceil(speed_print * 0.33)" }, + "speed_slowdown_layers": { "default_value": 4 }, + "speed_topbottom": { "value": "math.ceil(speed_print * 0.33)" }, + "speed_travel": + { + "maximum_value_warning": 501, + "value": 300 + }, + "speed_travel_layer_0": { "value": "math.ceil(speed_travel * 0.4)" }, + "speed_wall": { "value": "math.ceil(speed_print * 0.33)" }, + "speed_wall_0": { "value": "math.ceil(speed_print * 0.33)" }, + "speed_wall_x": { "value": "math.ceil(speed_print * 0.66)" }, + "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 }, + "zig_zaggify_infill": { "value": true } + } +} \ No newline at end of file diff --git a/resources/definitions/gutenberg_gzero.def.json b/resources/definitions/gutenberg_gzero.def.json new file mode 100644 index 0000000000..f9f317c3f4 --- /dev/null +++ b/resources/definitions/gutenberg_gzero.def.json @@ -0,0 +1,17 @@ +{ + "version": 2, + "name": "G-ZERO", + "inherits": "gutenberg_base", + "metadata": + { + "visible": true, + "quality_definition": "gutenberg_base" + }, + "overrides": + { + "machine_depth": { "default_value": 200 }, + "machine_height": { "default_value": 201 }, + "machine_name": { "default_value": "G-ZERO" }, + "machine_width": { "default_value": 250 } + } +} \ No newline at end of file diff --git a/resources/definitions/hardprint_hozo.def.json b/resources/definitions/hardprint_hozo.def.json index 41d290ae82..670279294d 100644 --- a/resources/definitions/hardprint_hozo.def.json +++ b/resources/definitions/hardprint_hozo.def.json @@ -2,35 +2,37 @@ "version": 2, "name": "HardPrint Hozo, Hozo", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "HardPrint", "manufacturer": "HardPrint", "file_formats": "text/x-gcode", "platform": "hardprint_hozo_platform.stl", - "machine_extruder_trains": - { - "0": "hardprint_hozo_extruder_0" - } + "machine_extruder_trains": { "0": "hardprint_hozo_extruder_0" } }, - - "overrides": { - "machine_name": { "default_value": "HardPrint Hozo, Hozo" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 180 }, - "machine_height": { "default_value": 180 }, - "machine_depth": { "default_value": 180 }, - "machine_center_is_zero": { "default_value": false }, - "machine_head_with_fans_polygon": { "default_value": [[0,0],[0,0],[0,0],[0,0]] }, + "overrides": + { "gantry_height": { "value": 180 }, - "retraction_amount": { "default_value": 5.5 }, - "retraction_speed": { "default_value": 60 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 180 }, + "machine_end_gcode": { "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X178 Y180 F4200 ; park print head\nM84 ; disable motors" }, "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "M221 S100 ; reset flow\nG90 ; use absolute positioning\nM82 ; absolute extrusion mode\nM104 S170 ; set extruder temp for bed leveling\nM140 S{material_bed_temperature_layer_0} ; set bed temp\nM109 R170 ; wait for extruder temp\nM190 S{material_bed_temperature_layer_0} ; wait for bed temp\nG28 ; home all\nG29 ; mesh bed leveling\nM104 S{material_print_temperature_layer_0} ; set extruder temp\nG92 E0.0\nG1 Y-2 X179 F2400\nG1 Z3 F720\nM109 S{material_print_temperature_layer_0} ; wait for extruder temp\nG92 E0.0\nG1 Y0 F1000\nG1 Z0.2 F720\nG1 Y160 E8 F900\nG1 Y20 E18 F900\nG92 E0.0" + "machine_head_with_fans_polygon": + { + "default_value": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ] }, - "machine_end_gcode": { - "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X178 Y180 F4200 ; park print head\nM84 ; disable motors" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 180 }, + "machine_name": { "default_value": "HardPrint Hozo, Hozo" }, + "machine_start_gcode": { "default_value": "M221 S100 ; reset flow\nG90 ; use absolute positioning\nM82 ; absolute extrusion mode\nM104 S170 ; set extruder temp for bed leveling\nM140 S{material_bed_temperature_layer_0} ; set bed temp\nM109 R170 ; wait for extruder temp\nM190 S{material_bed_temperature_layer_0} ; wait for bed temp\nG28 ; home all\nG29 ; mesh bed leveling\nM104 S{material_print_temperature_layer_0} ; set extruder temp\nG92 E0.0\nG1 Y-2 X179 F2400\nG1 Z3 F720\nM109 S{material_print_temperature_layer_0} ; wait for extruder temp\nG92 E0.0\nG1 Y0 F1000\nG1 Z0.2 F720\nG1 Y160 E8 F900\nG1 Y20 E18 F900\nG92 E0.0" }, + "machine_width": { "default_value": 180 }, + "retraction_amount": { "default_value": 5.5 }, + "retraction_speed": { "default_value": 60 } } -} +} \ No newline at end of file diff --git a/resources/definitions/hardprint_hozo_ix.def.json b/resources/definitions/hardprint_hozo_ix.def.json index c9ee14bec5..e8ecc7de08 100644 --- a/resources/definitions/hardprint_hozo_ix.def.json +++ b/resources/definitions/hardprint_hozo_ix.def.json @@ -2,35 +2,37 @@ "version": 2, "name": "HardPrint Hozo iX", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "HardPrint", "manufacturer": "HardPrint", "file_formats": "text/x-gcode", "platform": "hardprint_hozo_ix_platform.stl", - "machine_extruder_trains": - { - "0": "hardprint_hozo_ix_extruder_0" - } + "machine_extruder_trains": { "0": "hardprint_hozo_ix_extruder_0" } }, - - "overrides": { - "machine_name": { "default_value": "HardPrint Hozo iX" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 180 }, - "machine_height": { "default_value": 180 }, - "machine_depth": { "default_value": 180 }, - "machine_center_is_zero": { "default_value": false }, - "machine_head_with_fans_polygon": { "default_value": [[0,0],[0,0],[0,0],[0,0]] }, + "overrides": + { "gantry_height": { "value": 180 }, - "retraction_amount": { "default_value": 5 }, - "retraction_speed": { "default_value": 50 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 180 }, + "machine_end_gcode": { "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X178 Y180 F4200 ; park print head\nM18 ; disable motors" }, "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "M221 S100 ; reset flow\nG90 ; use absolute positioning\nM82 ; absolute extrusion mode\nG28 ; home all\nM140 S{material_bed_temperature_layer_0} ; set bed temp\nM104 S{material_print_temperature_layer_0} ; set extruder temp\nG92 E0.0\nG1 Y-2 X0 F2400\nG1 Z3 F720\nM109 S{material_print_temperature_layer_0} ; wait for extruder temp\nG92 E0.0\nG1 X32 F1000\nG1 Z0.2 F720\nG1 X108 E8 F900\nG1 X148 E18 F900\nG92 E0.0" + "machine_head_with_fans_polygon": + { + "default_value": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ] }, - "machine_end_gcode": { - "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X178 Y180 F4200 ; park print head\nM18 ; disable motors" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 180 }, + "machine_name": { "default_value": "HardPrint Hozo iX" }, + "machine_start_gcode": { "default_value": "M221 S100 ; reset flow\nG90 ; use absolute positioning\nM82 ; absolute extrusion mode\nG28 ; home all\nM140 S{material_bed_temperature_layer_0} ; set bed temp\nM104 S{material_print_temperature_layer_0} ; set extruder temp\nG92 E0.0\nG1 Y-2 X0 F2400\nG1 Z3 F720\nM109 S{material_print_temperature_layer_0} ; wait for extruder temp\nG92 E0.0\nG1 X32 F1000\nG1 Z0.2 F720\nG1 X108 E8 F900\nG1 X148 E18 F900\nG92 E0.0" }, + "machine_width": { "default_value": 180 }, + "retraction_amount": { "default_value": 5 }, + "retraction_speed": { "default_value": 50 } } -} +} \ No newline at end of file diff --git a/resources/definitions/hctech_hc300-m1&m1h.def.json b/resources/definitions/hctech_hc300-m1&m1h.def.json new file mode 100644 index 0000000000..1ceaf90b45 --- /dev/null +++ b/resources/definitions/hctech_hc300-m1&m1h.def.json @@ -0,0 +1,53 @@ +{ + "version": 2, + "name": "HCTECH_HC300-M1&M1H", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "HCTECH", + "manufacturer": "HCTECH", + "file_formats": "text/x-gcode", + "platform": "hctech_hc300-m1&m1h.3mf", + "has_machine_quality": false, + "machine_extruder_trains": { "0": "hctech_hc300-m1&m1h_extruder_0" } + }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "cool_fan_speed": { "value": 75 }, + "gantry_height": { "value": "55" }, + "infill_before_walls": { "value": false }, + "line_width": { "value": 0.38 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-1 F2700 ;Retract a bit\nG1 Z1 E-1 F2400 ;Retract and raise Z\nG1 Z2 ;Raise Z\nG90 ;Absolute positioning\nG12 P1;clean nozzle\nG1 X5 Y300 ;Return to Start Point\nM106 S0 ;Switch off part cooling fan\nM104 S0 ;turn off temperature\nM140 S0 ;turn off Heated Bed\nM84 X Y E ;Disable all steppers but Z\nM81 ;turn-off power" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-61, 86], + [-61, -31], + [21, -31], + [21, 86] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "HCTECH HC300-M1&M1H" }, + "machine_start_gcode": { "default_value": "G1 Z2 ;Raise Z\nG28 X Y ;Home XY\nG92 E0 ;Reset Extruder\nG1 E-1 F2400 ;Retract\nG92 E0 ;Reset Extruder\nG28 Z ;home Z\nG29 ; Measure the bed\nM500 ; Store to EEPROM\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.36 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.36 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y200.0 Z0.36 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.36 F1500.0 E30 ; Draw the second line\nG92 E0 ; Reset Extruder" }, + "machine_width": { "default_value": 300 }, + "material_diameter": { "default_value": 1.75 }, + "retraction_amount": + { + "default_value": 0.3, + "maximum_value_warning": 2.0 + }, + "retraction_speed": { "default_value": 35 }, + "speed_print": { "default_value": 60.0 }, + "travel_avoid_distance": { "value": 1 }, + "travel_avoid_supports": { "value": true }, + "travel_retract_before_outer_wall": { "value": true } + } +} \ No newline at end of file diff --git a/resources/definitions/hctech_hc300-m2h.def.json b/resources/definitions/hctech_hc300-m2h.def.json new file mode 100644 index 0000000000..7d91cecc16 --- /dev/null +++ b/resources/definitions/hctech_hc300-m2h.def.json @@ -0,0 +1,57 @@ +{ + "version": 2, + "name": "HCTECH_HC300-M2H", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "HCTECH", + "manufacturer": "HCTECH", + "file_formats": "text/x-gcode", + "platform": "hctech_hc300-m2h.3mf", + "has_machine_quality": false, + "machine_extruder_trains": + { + "0": "hctech_hc300-m2h_extruder_0", + "1": "hctech_hc300-m2h_extruder_1" + } + }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "cool_fan_speed": { "value": 75 }, + "gantry_height": { "value": "55" }, + "infill_before_walls": { "value": false }, + "line_width": { "value": 0.38 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-1 F2700 ;Retract a bit\nG1 Z1 E-1 F2400 ;Retract and raise Z\nG1 Z2 ;Raise Z\nG90 ;Absolute positioning\nG12 ;clean nozzle\nG1 X5 Y319 ;Return to Start Point\nM106 S0 ;Switch off part cooling fan\nM104 S0 ;turn off temperature\nM140 S0 ;turn off Heated Bed\nM84 X Y E ;Disable all steppers but Z\nM81 ;turn-off power" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-61, 86], + [-61, -37], + [85, -37], + [85, 86] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "HCTECH HC300-M2H" }, + "machine_start_gcode": { "default_value": "G1 Z2 ;Raise Z\nG28 X Y ;Home XY\nT1 ;switch to right extruder\nG1 X5 Y319 F4000 ;Move to Start Position\nG92 E0 ;Reset Extruder\nG1 E20 F60 ;extrude\nM400 ;Wait move\nG92 E0 ;Reset Extruder\nG1 E-2 F2700 ;Retract\nG92 E0 ;Reset Extruder\nG1 X150 F5000 ;Clean Nozzle\nG1 X5 ;Clean Nozzle\nG1 X220 ;Repeat\nG1 X5 ;Back to start posotion\nT0 ;switch to left extruder\nG1 X5 Y319 F4000 ;Move to Start Position\nG92 E0 ;Reset Extruder\nG1 E20 F60 ;extrude\nM400 ;Wait move\nG92 E0 ;Reset Extruder\nG4 S15 ;Wait 15s\nG1 E-2 F2700; Retract\nG92 E0 ;Reset Extruder\nG1 X150 F5000 ;Clean Nozzle\nG1 X5 ;Clean nozzle\nG1 X220 ;Repeat\nG1 X5 ;Back to start position\nG28 Z ;home Z\nG29 ;Measure the bed\nM500 ;Store parameters\nG1 X0 Y300 F4000 ;Move to corner" }, + "machine_width": { "default_value": 300 }, + "material_diameter": { "default_value": 1.75 }, + "retraction_amount": + { + "default_value": 0.3, + "maximum_value_warning": 2.0 + }, + "retraction_speed": { "default_value": 35 }, + "speed_print": { "default_value": 60.0 }, + "travel_avoid_distance": { "value": 1 }, + "travel_avoid_supports": { "value": true }, + "travel_retract_before_outer_wall": { "value": true } + } +} \ No newline at end of file diff --git a/resources/definitions/hctech_hc300-m3.def.json b/resources/definitions/hctech_hc300-m3.def.json new file mode 100644 index 0000000000..27c776a4a7 --- /dev/null +++ b/resources/definitions/hctech_hc300-m3.def.json @@ -0,0 +1,53 @@ +{ + "version": 2, + "name": "HCTECH_HC300-M3", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "HCTECH", + "manufacturer": "HCTECH", + "file_formats": "text/x-gcode", + "platform": "hctech_hc300-m3.3mf", + "has_machine_quality": false, + "machine_extruder_trains": { "0": "hctech_hc300-m3_extruder_0" } + }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "cool_fan_speed": { "value": 75 }, + "gantry_height": { "value": "55" }, + "infill_before_walls": { "value": false }, + "line_width": { "value": 0.38 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 Z1 E-2 F2400 ;Retract and raise Z\nG1 Z2 ;Raise Z\nG90 ;Absolute positioning\nG1 X5 Y290 ;Return to Start Point\nM106 S0 ;Switch off part cooling fan\nM104 S0 ;turn off temperature\nM140 S0 ;turn off Heated Bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-49, 36], + [-36, -29], + [36, -29], + [36, 49] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "HCTECH HC300-M3" }, + "machine_start_gcode": { "default_value": "G28 X Y ;Home XY\nG92 E0 ;Reset Extruder\nG1 E-1 F2400 ;Retract\nG92 E0 ;Reset Extruder\nG28 Z ;home Z\nG29 ; Measure the bed\nM500 ; Store to EEPROM\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.36 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.36 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y200.0 Z0.36 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.36 F1500.0 E30 ; Draw the second line\nG92 E0 ; Reset Extruder" }, + "machine_width": { "default_value": 300 }, + "material_diameter": { "default_value": 1.75 }, + "retraction_amount": + { + "default_value": 3, + "maximum_value_warning": 8 + }, + "retraction_speed": { "default_value": 35 }, + "speed_print": { "default_value": 60.0 }, + "travel_avoid_distance": { "value": 1 }, + "travel_avoid_supports": { "value": true }, + "travel_retract_before_outer_wall": { "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 a73c66a611..8f797dc668 100644 --- a/resources/definitions/hellbot_adonis.def.json +++ b/resources/definitions/hellbot_adonis.def.json @@ -2,31 +2,27 @@ "version": 2, "name": "Hellbot Adonis", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "MUX team", "manufacturer": "Hellbot", "file_formats": "text/x-gcode", "platform": "hellbot_adonis.obj", - "platform_texture": "hellbot.png", - "platform_offset": [0, -1, 0], "has_materials": true, - "machine_extruder_trains": { - "0": "hellbot_adonis_extruder" - } + "machine_extruder_trains": { "0": "hellbot_adonis_extruder" }, + "platform_offset": [ + 0, + -1, + 0 + ], + "platform_texture": "hellbot.png" }, - "overrides": { - "machine_name": { - "default_value": "Hellbot Adonis" - }, - "machine_width": { - "default_value": 160 - }, - "machine_depth": { - "default_value": 160 - }, - "machine_height": { - "default_value": 160 - } + "overrides": + { + "machine_depth": { "default_value": 160 }, + "machine_height": { "default_value": 160 }, + "machine_name": { "default_value": "Hellbot Adonis" }, + "machine_width": { "default_value": 160 } } -} +} \ No newline at end of file diff --git a/resources/definitions/hellbot_hidra.def.json b/resources/definitions/hellbot_hidra.def.json index 90a196e1a9..810f308a19 100644 --- a/resources/definitions/hellbot_hidra.def.json +++ b/resources/definitions/hellbot_hidra.def.json @@ -2,58 +2,45 @@ "version": 2, "name": "Hellbot Hidra", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Hellbot Development Team", "manufacturer": "Hellbot", "file_formats": "text/x-gcode", "platform": "hellbot_hidra.obj", - "platform_offset": [0, 0, 5], - "platform_texture": "hellbot_hidra.png", "has_materials": true, "machine_extruder_trains": { "0": "hellbot_hidra_extruder_0", "1": "hellbot_hidra_extruder_1" - } - + }, + "platform_offset": [ + 0, + 0, + 5 + ], + "platform_texture": "hellbot_hidra.png" }, - - "overrides": { - "machine_name": { "default_value": "Hellbot Hidra" }, - "machine_width": { - "default_value": 220 - }, - "machine_depth": { - "default_value": 220 - }, - "machine_height": { - "default_value": 250 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": false - }, + "overrides": + { + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "M104 T0 S0;\nM104 T1 S0;\nM140 S0;\nG92 E1;\nG1 E-1 F300;\nG28 X0 Y0;\nM84;" }, + "machine_extruder_count": { "default_value": 2 }, "machine_head_with_fans_polygon": { "default_value": [ - [ -75, 35 ], - [ -75, -18 ], - [ 18, 35 ], - [ 18, -18 ] + [-75, 35], + [-75, -18], + [18, 35], + [18, -18] ] }, - "machine_extruder_count": { - "default_value": 2 - }, - "machine_start_gcode": { - "default_value": "G21;\nG90;\nM82;\nM107;\nG28;\nG1 Z15.0 F9000;" - }, - "machine_end_gcode": { - "default_value": "M104 T0 S0;\nM104 T1 S0;\nM140 S0;\nG92 E1;\nG1 E-1 F300;\nG28 X0 Y0;\nM84;" - } - + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "Hellbot Hidra" }, + "machine_start_gcode": { "default_value": "G21;\nG90;\nM82;\nM107;\nG28;\nG1 Z15.0 F9000;" }, + "machine_width": { "default_value": 220 } } -} +} \ No newline at end of file diff --git a/resources/definitions/hellbot_hidra_plus.def.json b/resources/definitions/hellbot_hidra_plus.def.json index f3c1013915..60654b9dec 100644 --- a/resources/definitions/hellbot_hidra_plus.def.json +++ b/resources/definitions/hellbot_hidra_plus.def.json @@ -2,57 +2,45 @@ "version": 2, "name": "Hellbot Hidra Plus", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Hellbot Development Team", "manufacturer": "Hellbot", "file_formats": "text/x-gcode", "platform": "hellbot_hidra_plus.obj", - "platform_offset": [0, 0, 5], - "platform_texture": "hellbot_hidra_plus.png", "has_materials": true, "machine_extruder_trains": { "0": "hellbot_hidra_plus_extruder_0", "1": "hellbot_hidra_plus_extruder_1" - } - + }, + "platform_offset": [ + 0, + 0, + 5 + ], + "platform_texture": "hellbot_hidra_plus.png" }, - - "overrides": { - "machine_name": { "default_value": "Hellbot Hidra Plus" }, - "machine_width": { - "default_value": 300 - }, - "machine_depth": { - "default_value": 300 - }, - "machine_height": { - "default_value": 350 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": false - }, + "overrides": + { + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "M104 T0 S0;\nM104 T1 S0;\nM140 S0;\nG92 E1;\nG1 E-1 F300;\nG28 X0 Y0;\nM84;" }, + "machine_extruder_count": { "default_value": 2 }, "machine_head_with_fans_polygon": { "default_value": [ - [ -75, 35 ], - [ -75, -18 ], - [ 18, 35 ], - [ 18, -18 ] + [-75, 35], + [-75, -18], + [18, 35], + [18, -18] ] }, - "machine_extruder_count": { - "default_value": 2 - }, - "machine_start_gcode": { - "default_value": "G21;\nG90;\nM82;\nM107;\nG28;\nG1 Z15.0 F9000;" - }, - "machine_end_gcode": { - "default_value": "M104 T0 S0;\nM104 T1 S0;\nM140 S0;\nG92 E1;\nG1 E-1 F300;\nG28 X0 Y0;\nM84;" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 350 }, + "machine_name": { "default_value": "Hellbot Hidra Plus" }, + "machine_start_gcode": { "default_value": "G21;\nG90;\nM82;\nM107;\nG28;\nG1 Z15.0 F9000;" }, + "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/hellbot_magna_2_230.def.json b/resources/definitions/hellbot_magna_2_230.def.json index ef6dc0b3be..10be0b79fc 100644 --- a/resources/definitions/hellbot_magna_2_230.def.json +++ b/resources/definitions/hellbot_magna_2_230.def.json @@ -2,41 +2,25 @@ "version": 2, "name": "Hellbot Magna 2 230", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Hellbot Development Team", "manufacturer": "Hellbot", "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_230.obj", - "platform_texture": "Magna2_230.png", "has_materials": true, - "machine_extruder_trains": - { - "0": "hellbot_magna_2_230_extruder_0" - } - + "machine_extruder_trains": { "0": "hellbot_magna_2_230_extruder_0" }, + "platform_texture": "Magna2_230.png" }, - - "overrides": { + "overrides": + { + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 230 }, + "machine_extruder_count": { "default_value": 1 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 250 }, "machine_name": { "default_value": "Hellbot Magna 2 230" }, - "machine_width": { - "default_value": 230 - }, - "machine_height": { - "default_value": 250 - }, - "machine_depth": { - "default_value": 230 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_extruder_count": { - "default_value": 1 - } - + "machine_width": { "default_value": 230 } } -} +} \ No newline at end of file diff --git a/resources/definitions/hellbot_magna_2_230_dual.def.json b/resources/definitions/hellbot_magna_2_230_dual.def.json index 7768f51ac0..31501cbea1 100644 --- a/resources/definitions/hellbot_magna_2_230_dual.def.json +++ b/resources/definitions/hellbot_magna_2_230_dual.def.json @@ -2,53 +2,33 @@ "version": 2, "name": "Hellbot Magna 2 230 dual", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Hellbot Development Team", "manufacturer": "Hellbot", "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_230.obj", - "platform_texture": "Magna2_230.png", "has_materials": true, "machine_extruder_trains": { "0": "hellbot_magna_2_230_dual_extruder_0", "1": "hellbot_magna_2_230_dual_extruder_1" - } - + }, + "platform_texture": "Magna2_230.png" }, - - "overrides": { + "overrides": + { + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 230 }, + "machine_end_gcode": { "default_value": "M104 T0 S0\nM104 T1 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_extruders_share_heater": { "default_value": true }, + "machine_extruders_share_nozzle": { "default_value": true }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 250 }, "machine_name": { "default_value": "Hellbot Magna 2 230 dual" }, - "machine_width": { - "default_value": 230 - }, - "machine_height": { - "default_value": 250 - }, - "machine_depth": { - "default_value": 230 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_extruder_count": { - "default_value": 2 - }, - "machine_extruders_share_heater": { - "default_value": true - }, - "machine_extruders_share_nozzle": { - "default_value": true - }, - "machine_start_gcode": { - "default_value": "M104 T0 S{material_print_temperature}\nM104 T1 S{material_print_temperature}\nM109 T0 S{material_print_temperature}\nM109 T1 S{material_print_temperature}\nG21\nG90 \nG28 X0 Y0 \nG28 Z0 \nG1 Z15.0 F300 \nT0 \nG92 E0 \nG1 F700 E-80 \nT1 \nG92 E0 \nG1 F1000 X1 Y1 Z0.3 \nG1 F600 X200 E60 \nG1 F1000 Y3 \nG1 F600 X1 E120 \nT1 \nG92 E0 \nG28 X0 Y0 \nG1 F700 E-80 \nT0 \nG92 E0" - }, - "machine_end_gcode": { - "default_value": "M104 T0 S0\nM104 T1 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" - } + "machine_start_gcode": { "default_value": "M104 T0 S{material_print_temperature}\nM104 T1 S{material_print_temperature}\nM109 T0 S{material_print_temperature}\nM109 T1 S{material_print_temperature}\nG21\nG90 \nG28 X0 Y0 \nG28 Z0 \nG1 Z15.0 F300 \nT0 \nG92 E0 \nG1 F700 E-80 \nT1 \nG92 E0 \nG1 F1000 X1 Y1 Z0.3 \nG1 F600 X200 E60 \nG1 F1000 Y3 \nG1 F600 X1 E120 \nT1 \nG92 E0 \nG28 X0 Y0 \nG1 F700 E-80 \nT0 \nG92 E0" }, + "machine_width": { "default_value": 230 } } -} +} \ No newline at end of file diff --git a/resources/definitions/hellbot_magna_2_300.def.json b/resources/definitions/hellbot_magna_2_300.def.json index d0cf2657b8..3fd09e49f3 100644 --- a/resources/definitions/hellbot_magna_2_300.def.json +++ b/resources/definitions/hellbot_magna_2_300.def.json @@ -2,40 +2,25 @@ "version": 2, "name": "Hellbot Magna 2 300", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Hellbot Development Team", "manufacturer": "Hellbot", "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_300.obj", - "platform_texture": "Magna2_300.png", "has_materials": true, - "machine_extruder_trains": - { - "0": "hellbot_magna_2_300_extruder_0" - } - + "machine_extruder_trains": { "0": "hellbot_magna_2_300_extruder_0" }, + "platform_texture": "Magna2_300.png" }, - - "overrides": { + "overrides": + { + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 300 }, + "machine_extruder_count": { "default_value": 1 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 400 }, "machine_name": { "default_value": "Hellbot Magna 2 300" }, - "machine_width": { - "default_value": 300 - }, - "machine_height": { - "default_value": 400 - }, - "machine_depth": { - "default_value": 300 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_extruder_count": { - "default_value": 1 - } + "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/hellbot_magna_2_300_dual.def.json b/resources/definitions/hellbot_magna_2_300_dual.def.json index ed22bfa079..11d98cf150 100644 --- a/resources/definitions/hellbot_magna_2_300_dual.def.json +++ b/resources/definitions/hellbot_magna_2_300_dual.def.json @@ -2,53 +2,33 @@ "version": 2, "name": "Hellbot Magna 2 300 dual", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Hellbot Development Team", "manufacturer": "Hellbot", "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_300.obj", - "platform_texture": "Magna2_300.png", "has_materials": true, "machine_extruder_trains": { "0": "hellbot_magna_2_300_dual_extruder_0", "1": "hellbot_magna_2_300_dual_extruder_1" - } - + }, + "platform_texture": "Magna2_300.png" }, - - "overrides": { + "overrides": + { + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "M104 T0 S0\nM104 T1 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_extruders_share_heater": { "default_value": true }, + "machine_extruders_share_nozzle": { "default_value": true }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 400 }, "machine_name": { "default_value": "Hellbot Magna 2 300 Dual" }, - "machine_width": { - "default_value": 300 - }, - "machine_height": { - "default_value": 400 - }, - "machine_depth": { - "default_value": 300 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_extruder_count": { - "default_value": 2 - }, - "machine_extruders_share_heater": { - "default_value": true - }, - "machine_extruders_share_nozzle": { - "default_value": true - }, - "machine_start_gcode": { - "default_value": "M104 T0 S{material_print_temperature}\nM104 T1 S{material_print_temperature}\nM109 T0 S{material_print_temperature}\nM109 T1 S{material_print_temperature}\nG21\nG90 \nG28 X0 Y0 \nG28 Z0 \nG1 Z15.0 F300 \nT0 \nG92 E0 \nG1 F700 E-80 \nT1 \nG92 E0 \nG1 F1000 X1 Y1 Z0.3 \nG1 F600 X200 E60 \nG1 F1000 Y3 \nG1 F600 X1 E120 \nT1 \nG92 E0 \nG28 X0 Y0 \nG1 F700 E-80 \nT0 \nG92 E0" - }, - "machine_end_gcode": { - "default_value": "M104 T0 S0\nM104 T1 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" - } + "machine_start_gcode": { "default_value": "M104 T0 S{material_print_temperature}\nM104 T1 S{material_print_temperature}\nM109 T0 S{material_print_temperature}\nM109 T1 S{material_print_temperature}\nG21\nG90 \nG28 X0 Y0 \nG28 Z0 \nG1 Z15.0 F300 \nT0 \nG92 E0 \nG1 F700 E-80 \nT1 \nG92 E0 \nG1 F1000 X1 Y1 Z0.3 \nG1 F600 X200 E60 \nG1 F1000 Y3 \nG1 F600 X1 E120 \nT1 \nG92 E0 \nG28 X0 Y0 \nG1 F700 E-80 \nT0 \nG92 E0" }, + "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/hellbot_magna_2_400.def.json b/resources/definitions/hellbot_magna_2_400.def.json index b98c43805c..c27273c67b 100644 --- a/resources/definitions/hellbot_magna_2_400.def.json +++ b/resources/definitions/hellbot_magna_2_400.def.json @@ -2,41 +2,25 @@ "version": 2, "name": "Hellbot Magna 2 400", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Hellbot Development Team", "manufacturer": "Hellbot", "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_400.obj", - "platform_texture": "Magna2_400.png", "has_materials": true, - "machine_extruder_trains": - { - "0": "hellbot_magna_2_400_extruder_0" - } - + "machine_extruder_trains": { "0": "hellbot_magna_2_400_extruder_0" }, + "platform_texture": "Magna2_400.png" }, - - "overrides": { + "overrides": + { + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 400 }, + "machine_extruder_count": { "default_value": 1 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 400 }, "machine_name": { "default_value": "Hellbot Magna 2 400" }, - "machine_width": { - "default_value": 400 - }, - "machine_height": { - "default_value": 400 - }, - "machine_depth": { - "default_value": 400 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_extruder_count": { - "default_value": 1 - } - + "machine_width": { "default_value": 400 } } -} +} \ No newline at end of file diff --git a/resources/definitions/hellbot_magna_2_400_dual.def.json b/resources/definitions/hellbot_magna_2_400_dual.def.json index 2dbdb1f6ca..560bd800b4 100644 --- a/resources/definitions/hellbot_magna_2_400_dual.def.json +++ b/resources/definitions/hellbot_magna_2_400_dual.def.json @@ -2,54 +2,33 @@ "version": 2, "name": "Hellbot Magna 2 400 dual", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Hellbot Development Team", "manufacturer": "Hellbot", "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_400.obj", - "platform_texture": "Magna2_400.png", "has_materials": true, "machine_extruder_trains": { "0": "hellbot_magna_2_400_dual_extruder_0", "1": "hellbot_magna_2_400_dual_extruder_1" - } - + }, + "platform_texture": "Magna2_400.png" }, - - "overrides": { + "overrides": + { + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 400 }, + "machine_end_gcode": { "default_value": "M104 T0 S0\nM104 T1 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_extruders_share_heater": { "default_value": true }, + "machine_extruders_share_nozzle": { "default_value": true }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 400 }, "machine_name": { "default_value": "Hellbot Magna 2 400 Dual" }, - "machine_width": { - "default_value": 400 - }, - "machine_height": { - "default_value": 400 - }, - "machine_depth": { - "default_value": 400 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_extruder_count": { - "default_value": 2 - }, - "machine_extruders_share_heater": { - "default_value": true - }, - "machine_extruders_share_nozzle": { - "default_value": true - }, - "machine_start_gcode": { - "default_value": "M104 T0 S{material_print_temperature}\nM104 T1 S{material_print_temperature}\nM109 T0 S{material_print_temperature}\nM109 T1 S{material_print_temperature}\nG21\nG90 \nG28 X0 Y0 \nG28 Z0 \nG1 Z15.0 F300 \nT0 \nG92 E0 \nG1 F700 E-80 \nT1 \nG92 E0 \nG1 F1000 X1 Y1 Z0.3 \nG1 F600 X200 E60 \nG1 F1000 Y3 \nG1 F600 X1 E120 \nT1 \nG92 E0 \nG28 X0 Y0 \nG1 F700 E-80 \nT0 \nG92 E0" - }, - "machine_end_gcode": { - "default_value": "M104 T0 S0\nM104 T1 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" - } - + "machine_start_gcode": { "default_value": "M104 T0 S{material_print_temperature}\nM104 T1 S{material_print_temperature}\nM109 T0 S{material_print_temperature}\nM109 T1 S{material_print_temperature}\nG21\nG90 \nG28 X0 Y0 \nG28 Z0 \nG1 Z15.0 F300 \nT0 \nG92 E0 \nG1 F700 E-80 \nT1 \nG92 E0 \nG1 F1000 X1 Y1 Z0.3 \nG1 F600 X200 E60 \nG1 F1000 Y3 \nG1 F600 X1 E120 \nT1 \nG92 E0 \nG28 X0 Y0 \nG1 F700 E-80 \nT0 \nG92 E0" }, + "machine_width": { "default_value": 400 } } -} +} \ No newline at end of file diff --git a/resources/definitions/hellbot_magna_2_500.def.json b/resources/definitions/hellbot_magna_2_500.def.json index e7c645b6f4..d718fd3635 100644 --- a/resources/definitions/hellbot_magna_2_500.def.json +++ b/resources/definitions/hellbot_magna_2_500.def.json @@ -2,41 +2,25 @@ "version": 2, "name": "Hellbot Magna 2 500", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Hellbot Development Team", "manufacturer": "Hellbot", "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_500.obj", - "platform_texture": "Magna2_500.png", "has_materials": true, - "machine_extruder_trains": - { - "0": "hellbot_magna_2_500_extruder_0" - } - + "machine_extruder_trains": { "0": "hellbot_magna_2_500_extruder_0" }, + "platform_texture": "Magna2_500.png" }, - - "overrides": { + "overrides": + { + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 500 }, + "machine_extruder_count": { "default_value": 1 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 500 }, "machine_name": { "default_value": "Hellbot Magna 2 500" }, - "machine_width": { - "default_value": 500 - }, - "machine_height": { - "default_value": 500 - }, - "machine_depth": { - "default_value": 500 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_extruder_count": { - "default_value": 1 - } - + "machine_width": { "default_value": 500 } } -} +} \ No newline at end of file diff --git a/resources/definitions/hellbot_magna_2_500_dual.def.json b/resources/definitions/hellbot_magna_2_500_dual.def.json index ba7f18d702..cb5e8b94be 100644 --- a/resources/definitions/hellbot_magna_2_500_dual.def.json +++ b/resources/definitions/hellbot_magna_2_500_dual.def.json @@ -2,53 +2,33 @@ "version": 2, "name": "Hellbot Magna 2 500 dual", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Hellbot Development Team", "manufacturer": "Hellbot", "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_500.obj", - "platform_texture": "Magna2_500.png", "has_materials": true, "machine_extruder_trains": { "0": "hellbot_magna_2_500_dual_extruder_0", "1": "hellbot_magna_2_500_dual_extruder_1" - } - + }, + "platform_texture": "Magna2_500.png" }, - - "overrides": { + "overrides": + { + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 500 }, + "machine_end_gcode": { "default_value": "M104 T0 S0\nM104 T1 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_extruders_share_heater": { "default_value": true }, + "machine_extruders_share_nozzle": { "default_value": true }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 500 }, "machine_name": { "default_value": "Hellbot Magna 2 500 Dual" }, - "machine_width": { - "default_value": 500 - }, - "machine_height": { - "default_value": 500 - }, - "machine_depth": { - "default_value": 500 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_extruder_count": { - "default_value": 2 - }, - "machine_extruders_share_heater": { - "default_value": true - }, - "machine_extruders_share_nozzle": { - "default_value": true - }, - "machine_start_gcode": { - "default_value": "M104 T0 S{material_print_temperature}\nM104 T1 S{material_print_temperature}\nM109 T0 S{material_print_temperature}\nM109 T1 S{material_print_temperature}\nG21\nG90 \nG28 X0 Y0 \nG28 Z0 \nG1 Z15.0 F300 \nT0 \nG92 E0 \nG1 F700 E-80 \nT1 \nG92 E0 \nG1 F1000 X1 Y1 Z0.3 \nG1 F600 X200 E60 \nG1 F1000 Y3 \nG1 F600 X1 E120 \nT1 \nG92 E0 \nG28 X0 Y0 \nG1 F700 E-80 \nT0 \nG92 E0" - }, - "machine_end_gcode": { - "default_value": "M104 T0 S0\nM104 T1 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" - } + "machine_start_gcode": { "default_value": "M104 T0 S{material_print_temperature}\nM104 T1 S{material_print_temperature}\nM109 T0 S{material_print_temperature}\nM109 T1 S{material_print_temperature}\nG21\nG90 \nG28 X0 Y0 \nG28 Z0 \nG1 Z15.0 F300 \nT0 \nG92 E0 \nG1 F700 E-80 \nT1 \nG92 E0 \nG1 F1000 X1 Y1 Z0.3 \nG1 F600 X200 E60 \nG1 F1000 Y3 \nG1 F600 X1 E120 \nT1 \nG92 E0 \nG28 X0 Y0 \nG1 F700 E-80 \nT0 \nG92 E0" }, + "machine_width": { "default_value": 500 } } -} +} \ No newline at end of file diff --git a/resources/definitions/hellbot_magna_I.def.json b/resources/definitions/hellbot_magna_I.def.json index 019f214387..263a182ebc 100644 --- a/resources/definitions/hellbot_magna_I.def.json +++ b/resources/definitions/hellbot_magna_I.def.json @@ -2,32 +2,28 @@ "version": 2, "name": "Hellbot Magna 1", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Hellbot Development Team", "manufacturer": "Hellbot", "file_formats": "text/x-gcode", "platform": "hellbot_magna.obj", - "platform_texture": "hellbot.png", - "platform_offset": [0, -1, 0], "has_materials": true, - "machine_extruder_trains": { - "0": "hellbot_magna_i_extruder" - } + "machine_extruder_trains": { "0": "hellbot_magna_i_extruder" }, + "platform_offset": [ + 0, + -1, + 0 + ], + "platform_texture": "hellbot.png" }, - "overrides": { - "machine_name": { - "default_value": "Hellbot Magna 1" - }, + "overrides": + { + "machine_depth": { "default_value": 220 }, "machine_heated_bed": { "default_value": true }, - "machine_width": { - "default_value": 220 - }, - "machine_depth": { - "default_value": 220 - }, - "machine_height": { - "default_value": 260 - } + "machine_height": { "default_value": 260 }, + "machine_name": { "default_value": "Hellbot Magna 1" }, + "machine_width": { "default_value": 220 } } -} +} \ No newline at end of file diff --git a/resources/definitions/hellbot_magna_SE.def.json b/resources/definitions/hellbot_magna_SE.def.json index 7420eaee63..0c010151e6 100644 --- a/resources/definitions/hellbot_magna_SE.def.json +++ b/resources/definitions/hellbot_magna_SE.def.json @@ -1,41 +1,26 @@ -{ - "version": 2, - "name": "Hellbot Magna SE", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Hellbot Development Team", - "manufacturer": "Hellbot", - "file_formats": "text/x-gcode", - "platform": "hellbot_magna_SE.obj", - "platform_texture": "hellbot_magna_SE.png", - "has_materials": true, - "machine_extruder_trains": - { - "0": "hellbot_magna_SE_extruder" - } - - }, - - "overrides": { - "machine_name": { "default_value": "Hellbot Magna SE" }, - "machine_width": { - "default_value": 230 - }, - "machine_depth": { - "default_value": 230 - }, - "machine_height": { - "default_value": 250 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_extruder_count": { - "default_value": 1 - } - } -} +{ + "version": 2, + "name": "Hellbot Magna SE", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Hellbot Development Team", + "manufacturer": "Hellbot", + "file_formats": "text/x-gcode", + "platform": "hellbot_magna_SE.obj", + "has_materials": true, + "machine_extruder_trains": { "0": "hellbot_magna_SE_extruder" }, + "platform_texture": "hellbot_magna_SE.png" + }, + "overrides": + { + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 230 }, + "machine_extruder_count": { "default_value": 1 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "Hellbot Magna SE" }, + "machine_width": { "default_value": 230 } + } +} \ No newline at end of file diff --git a/resources/definitions/hellbot_magna_SE_300.def.json b/resources/definitions/hellbot_magna_SE_300.def.json new file mode 100644 index 0000000000..bc60eb3aa7 --- /dev/null +++ b/resources/definitions/hellbot_magna_SE_300.def.json @@ -0,0 +1,26 @@ +{ + "version": 2, + "name": "Hellbot Magna SE 300", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Hellbot Development Team", + "manufacturer": "Hellbot", + "file_formats": "text/x-gcode", + "platform": "Hellbot_Magna_SE_300.obj", + "has_materials": true, + "machine_extruder_trains": { "0": "hellbot_magna_SE_300_extruder" }, + "platform_texture": "Hellbot_Magna_SE_300.png" + }, + "overrides": + { + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 300 }, + "machine_extruder_count": { "default_value": 1 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Hellbot Magna SE 300" }, + "machine_width": { "default_value": 300 } + } +} \ No newline at end of file diff --git a/resources/definitions/hellbot_magna_SE_Pro.def.json b/resources/definitions/hellbot_magna_SE_Pro.def.json new file mode 100644 index 0000000000..65f32c2aab --- /dev/null +++ b/resources/definitions/hellbot_magna_SE_Pro.def.json @@ -0,0 +1,26 @@ +{ + "version": 2, + "name": "Hellbot Magna SE Pro", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Hellbot Development Team", + "manufacturer": "Hellbot", + "file_formats": "text/x-gcode", + "platform": "Hellbot_Magna_SE_Pro.obj", + "has_materials": true, + "machine_extruder_trains": { "0": "hellbot_magna_SE_Pro_extruder" }, + "platform_texture": "Hellbot_magna_SE_Pro.png" + }, + "overrides": + { + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 230 }, + "machine_extruder_count": { "default_value": 1 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "Hellbot Magna SE Pro" }, + "machine_width": { "default_value": 230 } + } +} \ No newline at end of file diff --git a/resources/definitions/hellbot_magna_dual.def.json b/resources/definitions/hellbot_magna_dual.def.json index 6448ed3a44..e41fcb7cce 100644 --- a/resources/definitions/hellbot_magna_dual.def.json +++ b/resources/definitions/hellbot_magna_dual.def.json @@ -2,38 +2,33 @@ "version": 2, "name": "Hellbot Magna Dual", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Hellbot Development Team", "manufacturer": "Hellbot", "file_formats": "text/x-gcode", "platform": "hellbot_magna.obj", - "platform_texture": "hellbot.png", - "platform_offset": [0, -1, 0], "has_materials": true, - "machine_extruder_trains": { + "machine_extruder_trains": + { "0": "hellbot_magna_dual_extruder_1", "1": "hellbot_magna_dual_extruder_2" - } + }, + "platform_offset": [ + 0, + -1, + 0 + ], + "platform_texture": "hellbot.png" }, - "overrides": { - "machine_name": { - "default_value": "Hellbot Magna DUAL" - }, - "machine_width": { - "default_value": 220 - }, - "machine_depth": { - "default_value": 220 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_height": { - "default_value": 260 - }, - "machine_extruder_count": { - "default_value": 2 - } + "overrides": + { + "machine_depth": { "default_value": 220 }, + "machine_extruder_count": { "default_value": 2 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 260 }, + "machine_name": { "default_value": "Hellbot Magna DUAL" }, + "machine_width": { "default_value": 220 } } -} +} \ No newline at end of file diff --git a/resources/definitions/helloBEEprusa.def.json b/resources/definitions/helloBEEprusa.def.json index ad1c9fd699..cbce8cdb62 100644 --- a/resources/definitions/helloBEEprusa.def.json +++ b/resources/definitions/helloBEEprusa.def.json @@ -2,40 +2,45 @@ "version": 2, "name": "Hello Bee Prusa", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Beeverycreative", "manufacturer": "Beeverycreative", - "platform": "BEEVERYCREATIVE-helloBEEprusa.3mf", - "platform_offset": [-226, -75, -196], "file_formats": "text/x-gcode", + "platform": "BEEVERYCREATIVE-helloBEEprusa.3mf", "machine_extruder_trains": { "0": "hBp_extruder_left", "1": "hBp_extruder_right" - } + }, + "platform_offset": [ + -226, + -75, + -196 + ] }, - - "overrides": { - "machine_extruder_count": { "default_value": 2 }, - "machine_name": { "default_value": "hello BEE prusa" }, - "machine_start_gcode": { "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM107 ;set fan speed to zero (turned off)\nG28 X0 Y0 ;move to the X/Y origin (Home)\nG28 Z0 ;move to the Z origin (Home)\nG92 E0 ;zero the extruded length\nG1 F3600 ;set feedrate to 60 mm/sec\nM420 S1 \n; -- end of START GCODE --" }, - "machine_end_gcode": { "default_value": "; -- END GCODE --\nM104 S0 ;set extruder temperature to zero (turned off)\nM140 S0 ;set bed temperature to zero (turned off)\nG28 X0 Y0 ;move to the X/Y origin (Home)\nM84 ;turn off steppers\n; -- end of END GCODE --" }, - "machine_width": { "default_value": 185 }, - "machine_depth": { "default_value": 200 }, - "machine_height": { "default_value": 190 }, - "machine_heated_bed": { "default_value": true }, - "machine_center_is_zero": { "default_value": false }, + "overrides": + { + "infill_sparse_density": { "default_value": 20 }, "layer_height": { "default_value": 0.2 }, "layer_height_0": { "default_value": 0.2 }, - "wall_thickness": { "value": "1.2" }, - "top_bottom_thickness": { "default_value": 1.2 }, - "infill_sparse_density": { "default_value": 20 }, - "speed_print": { "default_value": 60 }, - "skirt_line_count": { "default_value": 4 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "; -- END GCODE --\nM104 S0 ;set extruder temperature to zero (turned off)\nM140 S0 ;set bed temperature to zero (turned off)\nG28 X0 Y0 ;move to the X/Y origin (Home)\nM84 ;turn off steppers\n; -- end of END GCODE --" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 190 }, + "machine_name": { "default_value": "hello BEE prusa" }, + "machine_start_gcode": { "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM107 ;set fan speed to zero (turned off)\nG28 X0 Y0 ;move to the X/Y origin (Home)\nG28 Z0 ;move to the Z origin (Home)\nG92 E0 ;zero the extruded length\nG1 F3600 ;set feedrate to 60 mm/sec\nM420 S1 \n; -- end of START GCODE --" }, + "machine_width": { "default_value": 185 }, + "retraction_amount": { "default_value": 1.5 }, + "retraction_speed": { "default_value": 15.0 }, "skirt_brim_minimal_length": { "default_value": 30 }, "skirt_gap": { "default_value": 6 }, - "retraction_speed": { "default_value": 15.0}, - "retraction_amount": { "default_value": 1.5} + "skirt_line_count": { "default_value": 4 }, + "speed_print": { "default_value": 60 }, + "top_bottom_thickness": { "default_value": 1.2 }, + "wall_thickness": { "value": "1.2" } } } \ No newline at end of file diff --git a/resources/definitions/hms434.def.json b/resources/definitions/hms434.def.json index 80466d45bd..633ad2007e 100644 --- a/resources/definitions/hms434.def.json +++ b/resources/definitions/hms434.def.json @@ -1,42 +1,93 @@ { - "name": "HMS434", "version": 2, + "name": "HMS434", "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Scheepers", + "metadata": + { + "visible": true, + "author": "Scheepers", "manufacturer": "Hybrid AM Systems", "file_formats": "text/x-gcode", - - "has_materials": true, + "platform": "hms_platform.obj", "exclude_materials": [ - "chromatik_pla", - "dsm_arnitel2045_175", "dsm_novamid1070_175", - "emotiontech_abs", "emotiontech_asax", "emotiontech_hips", "emotiontech_petg", "emotiontech_pla", "emotiontech_pva-m", "emotiontech_pva-oks", "emotiontech_pva-s", "emotiontech_tpu98a", "emotiontech_absx", "emotiontech_bvoh", - "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", - "fabtotum_abs", "fabtotum_nylon", "fabtotum_pla", "fabtotum_tpu", - "fiberlogy_hd_pla", - "filo3d_pla", "filo3d_pla_green", "filo3d_pla_red", - "generic_abs", "generic_abs_175", "generic_cpe_175", "generic_hips_175", "generic_nylon_175", "generic_pc_175", "generic_petg_175", "generic_pva_175", "generic_tpu_175", - "imade3d_petg_175", "imade3d_pla_175", - "innofill_innoflex60_175", - "leapfrog_abs_natural", "leapfrog_epla_natural","leapfrog_pva_natural", - "octofiber_pla", - "polyflex_pla", "polymax_pla", "polyplus_pla", "polywood_pla", - "redd_abs", "redd_asa", "redd_hips", "redd_nylon", "redd_petg", "redd_pla", "redd_tpe", - "verbatim_bvoh_175", - "Vertex_Delta_ABS", "Vertex_Delta_PET", "Vertex_Delta_PLA", "Vertex_Delta_PLA_Glitter", "Vertex_Delta_PLA_Mat", "Vertex_Delta_PLA_Satin", "Vertex_Delta_PLA_Wood", "Vertex_Delta_TPU", - "tizyx_abs", "tizyx_flex", "tizyx_petg", "tizyx_pla", "tizyx_pla_bois", "tizyx_pva", - "zyyx_pro_flex", "zyyx_pro_pla" - ], - - "has_variants": true, - "variants_name": "Tool", - "preferred_variant_name": "0.4mm TP extruder", - - "has_machine_quality": true, - "preferred_quality_type": "high", - + "chromatik_pla", + "dsm_arnitel2045_175", + "dsm_novamid1070_175", + "emotiontech_abs", + "emotiontech_asax", + "emotiontech_hips", + "emotiontech_petg", + "emotiontech_pla", + "emotiontech_pva-m", + "emotiontech_pva-oks", + "emotiontech_pva-s", + "emotiontech_tpu98a", + "emotiontech_absx", + "emotiontech_bvoh", + "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", + "fabtotum_abs", + "fabtotum_nylon", + "fabtotum_pla", + "fabtotum_tpu", + "fiberlogy_hd_pla", + "filo3d_pla", + "filo3d_pla_green", + "filo3d_pla_red", + "generic_abs", + "generic_abs_175", + "generic_cpe_175", + "generic_hips_175", + "generic_nylon_175", + "generic_pc_175", + "generic_petg_175", + "generic_pva_175", + "generic_tpu_175", + "imade3d_petg_175", + "imade3d_pla_175", + "innofill_innoflex60_175", + "leapfrog_abs_natural", + "leapfrog_epla_natural", + "leapfrog_pva_natural", + "octofiber_pla", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "redd_abs", + "redd_asa", + "redd_hips", + "redd_nylon", + "redd_petg", + "redd_pla", + "redd_tpe", + "verbatim_bvoh_175", + "Vertex_Delta_ABS", + "Vertex_Delta_PET", + "Vertex_Delta_PLA", + "Vertex_Delta_PLA_Glitter", + "Vertex_Delta_PLA_Mat", + "Vertex_Delta_PLA_Satin", + "Vertex_Delta_PLA_Wood", + "Vertex_Delta_TPU", + "tizyx_abs", + "tizyx_flex", + "tizyx_petg", + "tizyx_pla", + "tizyx_pla_bois", + "tizyx_pva", + "zyyx_pro_flex", + "zyyx_pro_pla" + ], + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, "machine_extruder_trains": { "0": "hms434_tool_1", @@ -48,154 +99,148 @@ "6": "hms434_tool_7", "7": "hms434_tool_8" }, - "platform": "hms_platform.obj", - "platform_offset": [ 26, -13.2, 162.5], - "platform_texture": "hms434.png", - "first_start_actions": ["MachineSettingsAction"], - "supported_actions": ["MachineSettingsAction"] + "platform_offset": [ + 26, + -13.2, + 162.5 + ], + "platform_texture": "hms434.png", + "preferred_quality_type": "high", + "preferred_variant_name": "0.4mm TP extruder", + "supported_actions": [ "MachineSettingsAction" ], + "variants_name": "Tool" }, - - "overrides": { - "machine_extruder_count": {"default_value": 2 }, - "material_diameter": {"default_value": 1.75 }, - "machine_heated_bed": {"default_value": true }, - "machine_heated_build_volume":{"default_value": true }, - "machine_center_is_zero": {"default_value": false }, - "gantry_height": {"value": "35" }, - "machine_height": {"default_value": 400 }, - "machine_depth": {"default_value": 325 }, - "machine_width": {"default_value": 450 }, - "machine_gcode_flavor": {"default_value": "RepRap (RepRap)" }, - "material_print_temp_wait": {"default_value": false }, - "material_bed_temp_wait": {"default_value": false }, - "machine_max_feedrate_z": {"default_value": 10 }, - "machine_acceleration": {"default_value": 180 }, - "machine_start_gcode": {"default_value": "\n;Neither Hybrid AM Systems nor any of Hybrid AM Systems representatives has any liabilities or gives any warranties on this .gcode file, or on any or all objects made with this .gcode file.\n\nM114\n\nM140 S{material_bed_temperature_layer_0}\nM118 // action:chamber_fan_on\nM141 S{build_volume_temperature}\n\nM117 Homing Y ......\nG28 Y\nM117 Homing X ......\nG28 X\nM117 Homing Z ......\nG28 Z F100\n\nG1 Z10 F900\nG1 X-25 Y20 F12000\n\nM190 S{material_bed_temperature_layer_0}\n\nM117 HMS434 Printing ..." }, - "machine_end_gcode": {"default_value": "" }, - - "retraction_extra_prime_amount": {"minimum_value_warning": "-2.0" }, - "optimize_wall_printing_order": {"default_value": true }, - "machine_nozzle_heat_up_speed": {"default_value": 12}, - "machine_nozzle_cool_down_speed": {"default_value": 20}, - "machine_min_cool_heat_time_window": {"default_value": 5}, - - "layer_height": {"maximum_value": "(0.8 * min(extruderValues('machine_nozzle_size')))" }, - "layer_height_0": {"maximum_value": "(0.8 * min(extruderValues('machine_nozzle_size')))" }, - "initial_layer_line_width_factor": {"value": 110 }, - - "wall_thickness": {"value": "(line_width * 3) if infill_sparse_density < 95 else line_width" }, - "roofing_layer_count": {"value": "0" }, - "top_bottom_thickness": {"value": "(layer_height_0 + (layer_height * (top_layers - 1)))" }, - "top_layers": {"value": "4 if infill_sparse_density < 95 else 1" }, - "bottom_layers": {"value": "(top_layers)" }, - "wall_0_inset": {"value": "0" }, - "inset_direction": {"value": "'outside_in'" }, - "alternate_extra_perimeter": {"value": false }, - "fill_outline_gaps": {"value": true }, - "z_seam_type": {"value": "'shortest'"}, - "z_seam_x": {"value": "300"}, - "z_seam_y": {"value": "325"}, - "z_seam_corner": {"value": "'z_seam_corner_inner'"}, - "skin_outline_count": {"value": "0"}, - "ironing_line_spacing": {"value": "line_width / 4 * 3"}, - "ironing_flow": {"value": "0"}, - "ironing_inset": {"value": "ironing_line_spacing + (ironing_line_spacing - skin_line_width * (1.0 + ironing_flow / 100) / 2 if ironing_pattern == 'concentric' else skin_line_width * (1.0 - ironing_flow / 100) / 2)"}, - "speed_ironing": {"value": "150"}, - - "infill_sparse_density": {"value": 100}, - "infill_pattern": {"value": "'lines'"}, - "infill_before_walls": {"value": true}, - - "default_material_print_temperature": {"maximum_value": "401" }, - "material_print_temperature": {"maximum_value": "401" }, - "material_print_temperature_layer_0": {"value": "material_print_temperature", - "maximum_value": "401" }, - "material_initial_print_temperature": {"value": "material_print_temperature", - "maximum_value_warning": "material_print_temperature + 15", - "maximum_value": "401" }, - "material_initial_print_temperature": {"maximum_value": "401" }, - "material_final_print_temperature": {"value": "material_print_temperature", - "maximum_value": "401" }, - "material_break_preparation_temperature": {"maximum_value": "401" }, - "material_bed_temperature_layer_0": {"value": "material_bed_temperature"}, - "material_flow_layer_0": {"value": "material_flow"}, - "retraction_enable": {"value": true }, - "retract_at_layer_change": {"value": false }, - "retraction_min_travel": {"value": "(round(line_width * 10))"}, - "switch_extruder_retraction_speeds": {"value": "(retraction_speed)"}, - "switch_extruder_prime_speed": {"value": "(retraction_prime_speed)"}, - - "speed_print": {"value": "50"}, - "speed_infill": {"value": "speed_print"}, - "speed_wall": {"value": "(speed_print/5*3) if speed_print > 45 else speed_print"}, - "speed_wall_x": {"value": "speed_wall"}, - "speed_layer_0": {"value": "(speed_print/5*4) if speed_print > 45 else speed_print"}, - "speed_topbottom": {"value": "speed_layer_0"}, - "speed_travel": {"value": "250"}, - "speed_travel_layer_0": {"value": "speed_travel"}, - "speed_support_interface": {"value": "speed_topbottom"}, - "speed_z_hop": {"value": 10}, - "speed_slowdown_layers": {"value": 1}, - "acceleration_print": {"value": 1000}, - "acceleration_travel": {"value": 1000}, - "jerk_print": {"value": 10}, - "jerk_travel": {"value": 10}, - - "retraction_hop_enabled": {"value": false}, - "retraction_hop": {"value": 1}, - "retraction_combing": {"value": "'off'"}, - - "cool_fan_speed": {"value": 0}, - "cool_fan_enabled": {"value": true}, - "cool_min_layer_time_fan_speed_max": {"value": "cool_min_layer_time"}, - "cool_min_layer_time": {"value": 30}, - "cool_min_speed": {"value": "5"}, - "cool_lift_head": {"value": false}, - - "support_pattern": {"value": "'grid'"}, - "support_infill_rate": {"value": 30}, - "support_z_distance": {"value": 0}, - "support_xy_distance": {"value": 0.4}, - "support_join_distance": {"value": 10}, - "support_interface_pattern": {"value": "'lines'"}, - "support_roof_pattern": {"value": "'concentric'"}, - "support_interface_enable": {"value": true}, - "support_interface_height": {"value": "layer_height * 3"}, - "support_bottom_height": {"value": "layer_height"}, - - "adhesion_type": {"value": "'brim'"}, - "skirt_gap": {"value": 1}, - "skirt_brim_minimal_length": {"value": 50}, - - "prime_tower_enable": {"value": false }, - "prime_tower_size": {"value": 20.6 }, - "prime_tower_position_x": {"value": 125 }, - "prime_tower_position_y": {"value": 70 }, - "prime_blob_enable": {"default_value": false }, - - "meshfix_maximum_resolution": {"value": 0.01 }, - "meshfix_maximum_travel_resolution":{"value": 0.1 }, - "meshfix_maximum_deviation": {"value": 0.005 }, - - "minimum_polygon_circumference": {"value": 0.05 }, - "coasting_enable": {"value": false}, - "coasting_volume": {"value": 0.1}, - "coasting_min_volume": {"value": 0.17}, - "coasting_speed": {"value": 90}, - "wall_overhang_angle": {"value": 60}, - "bridge_settings_enabled": {"value": true}, - "bridge_wall_min_length": {"value": 3}, - "bridge_skin_support_threshold": {"value": 90}, - "bridge_wall_speed": {"value": 15}, - "bridge_wall_material_flow": {"value": 130}, - "bridge_skin_speed": {"value": 15}, - "bridge_skin_material_flow": {"value": 130}, - "bridge_fan_speed": {"value": 0}, - "bridge_skin_density_2": {"value": 100}, - "bridge_skin_density_3": {"value": 100}, - "bridge_skin_material_flow_2": {"value": 110}, - "bridge_skin_material_flow_3": {"value": 100}, - "bridge_skin_speed_2": {"value": 20}, - "bridge_skin_speed_3": {"value": 30} + "overrides": + { + "acceleration_print": { "value": 1000 }, + "acceleration_travel": { "value": 1000 }, + "adhesion_type": { "value": "'brim'" }, + "alternate_extra_perimeter": { "value": false }, + "bottom_layers": { "value": "(top_layers)" }, + "bridge_fan_speed": { "value": 0 }, + "bridge_settings_enabled": { "value": true }, + "bridge_skin_density_2": { "value": 100 }, + "bridge_skin_density_3": { "value": 100 }, + "bridge_skin_material_flow": { "value": 130 }, + "bridge_skin_material_flow_2": { "value": 110 }, + "bridge_skin_material_flow_3": { "value": 100 }, + "bridge_skin_speed": { "value": 15 }, + "bridge_skin_speed_2": { "value": 20 }, + "bridge_skin_speed_3": { "value": 30 }, + "bridge_skin_support_threshold": { "value": 90 }, + "bridge_wall_material_flow": { "value": 130 }, + "bridge_wall_min_length": { "value": 3 }, + "bridge_wall_speed": { "value": 15 }, + "coasting_enable": { "value": false }, + "coasting_min_volume": { "value": 0.17 }, + "coasting_speed": { "value": 90 }, + "coasting_volume": { "value": 0.1 }, + "cool_fan_enabled": { "value": true }, + "cool_fan_speed": { "value": 0 }, + "cool_lift_head": { "value": false }, + "cool_min_layer_time": { "value": 30 }, + "cool_min_layer_time_fan_speed_max": { "value": "cool_min_layer_time" }, + "cool_min_speed": { "value": "5" }, + "default_material_print_temperature": { "maximum_value": "401" }, + "fill_outline_gaps": { "value": true }, + "gantry_height": { "value": "35" }, + "infill_before_walls": { "value": true }, + "infill_pattern": { "value": "'lines'" }, + "infill_sparse_density": { "value": 100 }, + "initial_layer_line_width_factor": { "value": 110 }, + "inset_direction": { "value": "'outside_in'" }, + "ironing_flow": { "value": "0" }, + "ironing_inset": { "value": "ironing_line_spacing + (ironing_line_spacing - skin_line_width * (1.0 + ironing_flow / 100) / 2 if ironing_pattern == 'concentric' else skin_line_width * (1.0 - ironing_flow / 100) / 2)" }, + "ironing_line_spacing": { "value": "line_width / 4 * 3" }, + "jerk_print": { "value": 10 }, + "jerk_travel": { "value": 10 }, + "layer_height": { "maximum_value": "(0.8 * min(extruderValues('machine_nozzle_size')))" }, + "layer_height_0": { "maximum_value": "(0.8 * min(extruderValues('machine_nozzle_size')))" }, + "machine_acceleration": { "default_value": 180 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 325 }, + "machine_end_gcode": { "default_value": "" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (RepRap)" }, + "machine_heated_bed": { "default_value": true }, + "machine_heated_build_volume": { "default_value": true }, + "machine_height": { "default_value": 400 }, + "machine_max_feedrate_z": { "default_value": 10 }, + "machine_min_cool_heat_time_window": { "default_value": 5 }, + "machine_nozzle_cool_down_speed": { "default_value": 20 }, + "machine_nozzle_heat_up_speed": { "default_value": 12 }, + "machine_start_gcode": { "default_value": "\n;Neither Hybrid AM Systems nor any of Hybrid AM Systems representatives has any liabilities or gives any warranties on this .gcode file, or on any or all objects made with this .gcode file.\n\nM114\n\nM140 S{material_bed_temperature_layer_0}\nM118 // action:chamber_fan_on\nM141 S{build_volume_temperature}\n\nM117 Homing Y ......\nG28 Y\nM117 Homing X ......\nG28 X\nM117 Homing Z ......\nG28 Z F100\n\nG1 Z10 F900\nG1 X-25 Y20 F12000\n\nM190 S{material_bed_temperature_layer_0}\n\nM117 HMS434 Printing ..." }, + "machine_width": { "default_value": 450 }, + "material_bed_temp_wait": { "default_value": false }, + "material_bed_temperature_layer_0": { "value": "material_bed_temperature" }, + "material_break_preparation_temperature": { "maximum_value": "401" }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": + { + "maximum_value": "401", + "value": "material_print_temperature" + }, + "material_flow_layer_0": { "value": "material_flow" }, + "material_initial_print_temperature": + { + "maximum_value": "401", + "maximum_value_warning": "material_print_temperature + 15", + "value": "material_print_temperature" + }, + "material_print_temp_wait": { "default_value": false }, + "material_print_temperature": { "maximum_value": "401" }, + "material_print_temperature_layer_0": { "maximum_value": "401" }, + "meshfix_maximum_deviation": { "value": 0.005 }, + "meshfix_maximum_resolution": { "value": 0.01 }, + "meshfix_maximum_travel_resolution": { "value": 0.1 }, + "minimum_polygon_circumference": { "value": 0.05 }, + "optimize_wall_printing_order": { "default_value": true }, + "prime_blob_enable": { "default_value": false }, + "prime_tower_position_x": { "value": 125 }, + "prime_tower_position_y": { "value": 70 }, + "prime_tower_size": { "value": 20.6 }, + "retract_at_layer_change": { "value": false }, + "retraction_combing": { "value": "'off'" }, + "retraction_enable": { "value": true }, + "retraction_extra_prime_amount": { "minimum_value_warning": "-2.0" }, + "retraction_hop": { "value": 1 }, + "retraction_hop_enabled": { "value": false }, + "retraction_min_travel": { "value": "(round(line_width * 10))" }, + "roofing_layer_count": { "value": "0" }, + "skin_outline_count": { "value": "0" }, + "skirt_brim_minimal_length": { "value": 50 }, + "skirt_gap": { "value": 1 }, + "speed_ironing": { "value": "150" }, + "speed_layer_0": { "value": "(speed_print / 5 * 4) if speed_print > 45 else speed_print" }, + "speed_print": { "value": "50" }, + "speed_slowdown_layers": { "value": 1 }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_topbottom": { "value": "speed_layer_0" }, + "speed_travel": { "value": "250" }, + "speed_travel_layer_0": { "value": "speed_travel" }, + "speed_wall": { "value": "(speed_print/ 5 * 3) if speed_print > 45 else speed_print" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 10 }, + "support_bottom_height": { "value": "layer_height" }, + "support_infill_rate": { "value": 30 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 3" }, + "support_interface_pattern": { "value": "'lines'" }, + "support_join_distance": { "value": 10 }, + "support_pattern": { "value": "'grid'" }, + "support_roof_pattern": { "value": "'concentric'" }, + "support_xy_distance": { "value": 0.4 }, + "support_z_distance": { "value": 0 }, + "switch_extruder_prime_speed": { "value": "(retraction_prime_speed)" }, + "switch_extruder_retraction_speeds": { "value": "(retraction_speed)" }, + "top_bottom_thickness": { "value": "(layer_height_0 + (layer_height * (top_layers - 1)))" }, + "top_layers": { "value": "4 if infill_sparse_density < 95 else 1" }, + "wall_0_inset": { "value": "0" }, + "wall_overhang_angle": { "value": 60 }, + "wall_thickness": { "value": "(line_width * 3) if infill_sparse_density < 95 else line_width" }, + "z_seam_corner": { "value": "'z_seam_corner_inner'" }, + "z_seam_type": { "value": "'shortest'" }, + "z_seam_x": { "value": "300" }, + "z_seam_y": { "value": "325" } } -} +} \ No newline at end of file diff --git a/resources/definitions/ideagen3D_sapphire_plus.def.json b/resources/definitions/ideagen3D_sapphire_plus.def.json index a8541401c2..f7af38ad93 100644 --- a/resources/definitions/ideagen3D_sapphire_plus.def.json +++ b/resources/definitions/ideagen3D_sapphire_plus.def.json @@ -9,26 +9,28 @@ "manufacturer": "Ideagen3D", "file_formats": "text/x-gcode", "platform": "ideagen3D_sapphire_plus.3mf", - "has_materials": true, "has_machine_quality": false, + "has_materials": true, "machine_extruder_trains": { "0": "ideagen3D_sapphire_plus_0" } }, "overrides": { - "machine_name": { "default_value": "ideagen3D Sapphire Plus" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 300 }, + "gantry_height": { "value": 65 }, "machine_depth": { "default_value": 300 }, - "machine_height": { "default_value": 350 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_end_gcode": { "default_value": ";End GCode by ideagen3D\n\nM104 S0 ;Set nozzle temperature to 0\nM140 S0 ;Set Bed temperature to 0\n\nG92 E1 ;Prepare to retract filament\nG1 E-1 F300 ;Retract filament\nG28 X0 Y0 ;Home X and Y\nM84 ;Disable Steppers" }, + "machine_head_with_fans_polygon": + { + "default_value": [ [-30, -20], [-30, 40], [30, -20], [30, 40] ] }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 350 }, + "machine_name": { "default_value": "ideagen3D Sapphire Plus" }, "machine_start_gcode": { "default_value": ";Start GCode by ideagen3D\n\nG1 Z15.0 F6000 ;Move the platform down 15mm\n\n;Initialize Temperature\nM140 S{material_bed_temperature_layer_0} ;heat bed and continue\nM104 S{material_print_temperature_layer_0} ;heat nozzle and continue\nM190 S{material_bed_temperature_layer_0} ;wait for bed temperature to reach initial layer temperature\nM109 S{material_print_temperature_layer_0} ;wait for hot end temperature to reach initial layer temperature\n\nG28 M420 S1 ; Home & Enable Bed Levelling\n\n;Prime the extruder\nG92 E0\nG1 X1 Y280 Z0.2 ;Prepare to Purge\nG1 Y20 Z0.2 F1500.0 E15 ;Purge line\nG92 E0" }, - "machine_end_gcode": { "default_value": ";End GCode by ideagen3D\n\nM104 S0 ;Set nozzle temperature to 0\nM140 S0 ;Set Bed temperature to 0\n\nG92 E1 ;Prepare to retract filament\nG1 E-1 F300 ;Retract filament\nG28 X0 Y0 ;Home X and Y\nM84 ;Disable Steppers" }, - "gantry_height": { "value": 65 } + "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/imade3d_jellybox.def.json b/resources/definitions/imade3d_jellybox.def.json index 134ccc720c..0e9a4548cd 100644 --- a/resources/definitions/imade3d_jellybox.def.json +++ b/resources/definitions/imade3d_jellybox.def.json @@ -2,36 +2,40 @@ "version": 2, "name": "Imade3D JellyBOX Original", "inherits": "imade3d_jellybox_root", - "metadata": { + "metadata": + { "visible": true, "author": "Imade3D", "platform": "imade3d_jellybox_platform.3mf", - "platform_offset": [ 0, -0.3, 0], - "preferred_variant_name": "0.4 mm", - "preferred_quality_type": "fast", + "has_machine_quality": true, "has_materials": true, "has_variants": true, - "has_machine_quality": true, - "machine_extruder_trains": { - "0": "imade3d_jellybox_extruder_0" - } - }, - - "overrides": { - "machine_head_with_fans_polygon": { "default_value": [[ 0, 0 ],[ 0, 0 ],[ 0, 0 ],[ 0, 0 ]]}, - "machine_name": { "default_value": "IMADE3D JellyBOX Original" }, - "machine_width": { "default_value": 170 }, - "machine_height": { "default_value": 145 }, + "machine_extruder_trains": { "0": "imade3d_jellybox_extruder_0" }, + "platform_offset": [ + 0, + -0.3, + 0 + ], + "preferred_quality_type": "fast", + "preferred_variant_name": "0.4 mm" + }, + "overrides": + { "machine_depth": { "default_value": 160 }, - "machine_start_gcode": { - "default_value": ";---------------------------------------\n; ; ; Jellybox Start Script Begin ; ; ;\n;_______________________________________\n; for slicer: CURA 3\n; start gcode last modified Jun 1, 2019\n\n; Print Settings Summary\n; (leave these alone: this is only a list of the slicing settings)\n; (overwriting these values will NOT change your printer's behavior)\n; sliced for : {machine_name}\n; jobname : {jobname}\n; gcode generated : {day}, {date}, {time}\n; est. print time : {print_time}\n; nozzle diameter : {machine_nozzle_size}\n; filament diameter : {material_diameter}\n; layer height : {layer_height}\n; 1st layer height : {layer_height_0}\n; line width : {line_width} \n; outer wall wipe dist. : {wall_0_wipe_dist}\n; infill line width : {infill_line_width}\n; wall thickness : {wall_thickness}\n; top thickness : {top_thickness}\n; bottom thickness : {bottom_thickness}\n; infill density : {infill_sparse_density}\n; infill pattern : {infill_pattern}\n; print temperature : {material_print_temperature}\n; 1st layer print temp. : {material_print_temperature_layer_0}\n; heated bed temperature : {material_bed_temperature}\n; 1st layer bed temp. : {material_bed_temperature_layer_0}\n; regular fan speed : {cool_fan_speed_min}\n; max fan speed : {cool_fan_speed_max}\n; retraction amount : {retraction_amount}\n; retr. retract speed : {retraction_retract_speed}\n; retr. prime speed : {retraction_prime_speed}\n; build plate adhesion : {adhesion_type}\n; support ? {support_enable}\n; spiralized ? {magic_spiralize}\n\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nM117 Preparing ;write Preparing\nM190 S{material_bed_temperature_layer_0} ;wait for the bed to reach desired temperature\nM109 S180 ;wait for the extruder to reach 180C\nG28 ;home all axes\nM203 Z4 ;slow Z speed down for greater accuracy when probing\nG29 O ;run auto bed leveling procedure IF leveling not active already\n; M500 ;optionally save the mesh\nM203 Z7 ;pick up z speed again for printing\nG28 X ;home x to get as far from the plate as possible\nM420 S1 ;(re) enable bed leveling if turned off by the G28\nG0 Y0 F5000 ;position Y in front\nG0 Z15 F3000 ;position Z\nM109 S{material_print_temperature_layer_0} ;wait for the extruder to reach desired temperature\nM300 S440 P300 ;play a tone\n; M0 Ready! Click to start ; optionally, stop and wait for user to continue\nM420 S1 ;(re) enable bed leveling to make iron-sure\nM117 Print starting ;write Print starting\n;================ ;PRINT:LINE start\nG90 ;absolute positioning\nG92 E0 ;reset the extruder position\nM420 S1 ;(re) enable bed leveling to make iron-sure\nG0 Z0 ;get Z down\nM83 ;relative extrusion mode\nM420 S1 ;(re) enable bed leveling to make iron-sure\nG1 E20 F300 ;extrude __mm of feed stock\nG1 E18 F250 ;extrude __mm of feed stock\nG1 E10 F250 ;extrude __mm of feed stock\nG4 S2 ;pause for ooze\nM400 ;make sure all is finished\nM420 S1 ;(re) enable bed leveling to make iron-sure\nG0 F500 X3 Y0 Z0.3;get to the start of the LINE\nG1 E2 F300 ;extrude __mm of feed stock\nG1 F1000 X152 E7 ;print a thick LINE extruding __mm along the way\nG92 E0 ;reset the extruder position\n;---------------------------------------------\n; ; ; Jellybox Printer Start Script End ; ; ;\n;_____________________________________________\n" + "machine_end_gcode": { "default_value": "\n;---------------------------------\n;;; Jellybox End Script Begin ;;;\n;_________________________________\n; end gcode last modified Nov 30, 2018\nM117 Finishing Up ;write Finishing Up\n\nM107 ;turn the fan off\nM104 S0 ;extruder heater off\nM140 S0 ;bed heater off (if you have it)\nG91 ;relative positioning (includes extruder)\nG1 E-1 F2500 ;retract the filament a bit before lifting the nozzle to release some of the pressure\nG1 Z0.5 E-4 X-10 F9000 ;get out and retract filament even more\nG1 E-25 F2500 ;retract even more\nG90 ;absolute positioning (includes extruder)\nG28 X ;home X so the head is out of the way\nG1 Y140 ;move Y forward, so the print is more accessible\nM84 ;steppers off\n\nM117 Print finished ;write Print finished\n;---------------------------------------\n;;; Jellybox End Script End ;;;\n;_______________________________________" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ] }, - "machine_end_gcode": { - "default_value": "\n;---------------------------------\n;;; Jellybox End Script Begin ;;;\n;_________________________________\n; end gcode last modified Nov 30, 2018\nM117 Finishing Up ;write Finishing Up\n\nM107 ;turn the fan off\nM104 S0 ;extruder heater off\nM140 S0 ;bed heater off (if you have it)\nG91 ;relative positioning (includes extruder)\nG1 E-1 F2500 ;retract the filament a bit before lifting the nozzle to release some of the pressure\nG1 Z0.5 E-4 X-10 F9000 ;get out and retract filament even more\nG1 E-25 F2500 ;retract even more\nG90 ;absolute positioning (includes extruder)\nG28 X ;home X so the head is out of the way\nG1 Y140 ;move Y forward, so the print is more accessible\nM84 ;steppers off\n\nM117 Print finished ;write Print finished\n;---------------------------------------\n;;; Jellybox End Script End ;;;\n;_______________________________________" - }, - - "retraction_prime_speed": { - "value": "max(retraction_speed - 30, 5)" - } + "machine_height": { "default_value": 145 }, + "machine_name": { "default_value": "IMADE3D JellyBOX Original" }, + "machine_start_gcode": { "default_value": ";---------------------------------------\n; ; ; Jellybox Start Script Begin ; ; ;\n;_______________________________________\n; for slicer: CURA 3\n; start gcode last modified Jun 1, 2019\n\n; Print Settings Summary\n; (leave these alone: this is only a list of the slicing settings)\n; (overwriting these values will NOT change your printer's behavior)\n; sliced for : {machine_name}\n; jobname : {jobname}\n; gcode generated : {day}, {date}, {time}\n; est. print time : {print_time}\n; nozzle diameter : {machine_nozzle_size}\n; filament diameter : {material_diameter}\n; layer height : {layer_height}\n; 1st layer height : {layer_height_0}\n; line width : {line_width} \n; outer wall wipe dist. : {wall_0_wipe_dist}\n; infill line width : {infill_line_width}\n; wall thickness : {wall_thickness}\n; top thickness : {top_thickness}\n; bottom thickness : {bottom_thickness}\n; infill density : {infill_sparse_density}\n; infill pattern : {infill_pattern}\n; print temperature : {material_print_temperature}\n; 1st layer print temp. : {material_print_temperature_layer_0}\n; heated bed temperature : {material_bed_temperature}\n; 1st layer bed temp. : {material_bed_temperature_layer_0}\n; regular fan speed : {cool_fan_speed_min}\n; max fan speed : {cool_fan_speed_max}\n; retraction amount : {retraction_amount}\n; retr. retract speed : {retraction_retract_speed}\n; retr. prime speed : {retraction_prime_speed}\n; build plate adhesion : {adhesion_type}\n; support ? {support_enable}\n; spiralized ? {magic_spiralize}\n\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nM117 Preparing ;write Preparing\nM190 S{material_bed_temperature_layer_0} ;wait for the bed to reach desired temperature\nM109 S180 ;wait for the extruder to reach 180C\nG28 ;home all axes\nM203 Z4 ;slow Z speed down for greater accuracy when probing\nG29 O ;run auto bed leveling procedure IF leveling not active already\n; M500 ;optionally save the mesh\nM203 Z7 ;pick up z speed again for printing\nG28 X ;home x to get as far from the plate as possible\nM420 S1 ;(re) enable bed leveling if turned off by the G28\nG0 Y0 F5000 ;position Y in front\nG0 Z15 F3000 ;position Z\nM109 S{material_print_temperature_layer_0} ;wait for the extruder to reach desired temperature\nM300 S440 P300 ;play a tone\n; M0 Ready! Click to start ; optionally, stop and wait for user to continue\nM420 S1 ;(re) enable bed leveling to make iron-sure\nM117 Print starting ;write Print starting\n;================ ;PRINT:LINE start\nG90 ;absolute positioning\nG92 E0 ;reset the extruder position\nM420 S1 ;(re) enable bed leveling to make iron-sure\nG0 Z0 ;get Z down\nM83 ;relative extrusion mode\nM420 S1 ;(re) enable bed leveling to make iron-sure\nG1 E20 F300 ;extrude __mm of feed stock\nG1 E18 F250 ;extrude __mm of feed stock\nG1 E10 F250 ;extrude __mm of feed stock\nG4 S2 ;pause for ooze\nM400 ;make sure all is finished\nM420 S1 ;(re) enable bed leveling to make iron-sure\nG0 F500 X3 Y0 Z0.3;get to the start of the LINE\nG1 E2 F300 ;extrude __mm of feed stock\nG1 F1000 X152 E7 ;print a thick LINE extruding __mm along the way\nG92 E0 ;reset the extruder position\n;---------------------------------------------\n; ; ; Jellybox Printer Start Script End ; ; ;\n;_____________________________________________\n" }, + "machine_width": { "default_value": 170 }, + "retraction_prime_speed": { "value": "max(retraction_speed - 30, 5)" } } -} +} \ No newline at end of file diff --git a/resources/definitions/imade3d_jellybox_2.def.json b/resources/definitions/imade3d_jellybox_2.def.json index 1774da0b1c..e6945ad159 100644 --- a/resources/definitions/imade3d_jellybox_2.def.json +++ b/resources/definitions/imade3d_jellybox_2.def.json @@ -2,39 +2,43 @@ "version": 2, "name": "Imade3D JellyBOX 2", "inherits": "imade3d_jellybox_root", - "metadata": { + "metadata": + { "visible": true, "author": "Imade3D", "platform": "imade3d_jellybox_2_platform.3mf", - "platform_offset": [ 0, -10, 0], - "preferred_variant_name": "0.4 mm", - "preferred_quality_type": "fast", + "has_machine_quality": true, "has_materials": true, "has_variants": true, - "has_machine_quality": true, - "machine_extruder_trains": { - "0": "imade3d_jellybox_2_extruder_0" - } - }, - - "overrides": { - "gradual_infill_steps":{"default_value": 0}, - "gradual_infill_step_height": {"default_value": 3}, - "machine_head_with_fans_polygon": { "default_value": [[ 0, 0 ],[ 0, 0 ],[ 0, 0 ],[ 0, 0 ]]}, - "machine_name": { "default_value": "IMADE3D JellyBOX 2" }, - "machine_width": { "default_value": 180 }, - "machine_height": { "default_value": 145 }, + "machine_extruder_trains": { "0": "imade3d_jellybox_2_extruder_0" }, + "platform_offset": [ + 0, + -10, + 0 + ], + "preferred_quality_type": "fast", + "preferred_variant_name": "0.4 mm" + }, + "overrides": + { + "gradual_infill_step_height": { "default_value": 3 }, + "gradual_infill_steps": { "default_value": 0 }, "machine_depth": { "default_value": 165 }, + "machine_end_gcode": { "default_value": "\n;---------------------------------\n;;; Jellybox End Script Begin ;;;\n;_________________________________\n; end gcode last modified Nov 30, 2018\nM117 Finishing Up ;write Finishing Up\n\nM107 ;turn the fan off\nM104 S0 ;extruder heater off\nM140 S0 ;bed heater off (if you have it)\nG91 ;relative positioning (includes extruder)\nG1 E-1 F2500 ;retract the filament a bit before lifting the nozzle to release some of the pressure\nG1 Z0.5 E-4 X-10 F9000 ;get out and retract filament even more\nG1 E-25 F2500 ;retract even more\nG90 ;absolute positioning (includes extruder)\nG28 X ;home X so the head is out of the way\nG1 Y140 ;move Y forward, so the print is more accessible\nM84 ;steppers off\n\nM117 Print finished ;write Print finished\n;---------------------------------------\n;;; Jellybox End Script End ;;;\n;_______________________________________" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ] + }, + "machine_height": { "default_value": 145 }, + "machine_name": { "default_value": "IMADE3D JellyBOX 2" }, "machine_nozzle_size": { "default_value": 0.4 }, - "machine_start_gcode": { - "default_value": ";---------------------------------------\n; ; ; Jellybox Start Script Begin ; ; ;\n;_______________________________________\n; for slicer: CURA 3\n; start gcode last modified Jun 1, 2019\n\n; Print Settings Summary\n; (leave these alone: this is only a list of the slicing settings)\n; (overwriting these values will NOT change your printer's behavior)\n; sliced for : {machine_name}\n; jobname : {jobname}\n; gcode generated : {day}, {date}, {time}\n; est. print time : {print_time}\n; nozzle diameter : {machine_nozzle_size}\n; filament diameter : {material_diameter}\n; layer height : {layer_height}\n; 1st layer height : {layer_height_0}\n; line width : {line_width} \n; outer wall wipe dist. : {wall_0_wipe_dist}\n; infill line width : {infill_line_width}\n; wall thickness : {wall_thickness}\n; top thickness : {top_thickness}\n; bottom thickness : {bottom_thickness}\n; infill density : {infill_sparse_density}\n; infill pattern : {infill_pattern}\n; print temperature : {material_print_temperature}\n; 1st layer print temp. : {material_print_temperature_layer_0}\n; heated bed temperature : {material_bed_temperature}\n; 1st layer bed temp. : {material_bed_temperature_layer_0}\n; regular fan speed : {cool_fan_speed_min}\n; max fan speed : {cool_fan_speed_max}\n; retraction amount : {retraction_amount}\n; retr. retract speed : {retraction_retract_speed}\n; retr. prime speed : {retraction_prime_speed}\n; build plate adhesion : {adhesion_type}\n; support ? {support_enable}\n; spiralized ? {magic_spiralize}\n\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nM117 Preparing ;write Preparing\nM190 S{material_bed_temperature_layer_0} ;wait for the bed to reach desired temperature\nM109 S180 ;wait for the extruder to reach 180C\nG28 ;home all axes\nM203 Z4 ;slow Z speed down for greater accuracy when probing\nG29 O ;run auto bed leveling procedure IF leveling not active already\n; M500 ;optionally save the mesh\nM203 Z7 ;pick up z speed again for printing\nG28 X ;home x to get as far from the plate as possible\nM420 S1 ;(re) enable bed leveling if turned off by the G28\nG0 Y0 F5000 ;position Y in front\nG0 Z15 F3000 ;position Z\nM109 S{material_print_temperature_layer_0} ;wait for the extruder to reach desired temperature\nM300 S440 P300 ;play a tone\n; M0 Ready! Click to start ; optionally, stop and wait for user to continue\nM420 S1 ;(re) enable bed leveling to make iron-sure\nM117 Print starting ;write Print starting\n;================ ;PRINT:LINE start\nG90 ;absolute positioning\nG92 E0 ;reset the extruder position\nM420 S1 ;(re) enable bed leveling to make iron-sure\nG0 Z0 ;get Z down\nM83 ;relative extrusion mode\nM420 S1 ;(re) enable bed leveling to make iron-sure\nG1 E20 F300 ;extrude __mm of feed stock\nG1 E18 F250 ;extrude __mm of feed stock\nG1 E10 F250 ;extrude __mm of feed stock\nG4 S2 ;pause for ooze\nM400 ;make sure all is finished\nM420 S1 ;(re) enable bed leveling to make iron-sure\nG0 F500 X3 Y0 Z0.3;get to the start of the LINE\nG1 E2 F300 ;extrude __mm of feed stock\nG1 F1000 X152 E7 ;print a thick LINE extruding __mm along the way\nG92 E0 ;reset the extruder position\n;---------------------------------------------\n; ; ; Jellybox Printer Start Script End ; ; ;\n;_____________________________________________\n" - }, - "machine_end_gcode": { - "default_value": "\n;---------------------------------\n;;; Jellybox End Script Begin ;;;\n;_________________________________\n; end gcode last modified Nov 30, 2018\nM117 Finishing Up ;write Finishing Up\n\nM107 ;turn the fan off\nM104 S0 ;extruder heater off\nM140 S0 ;bed heater off (if you have it)\nG91 ;relative positioning (includes extruder)\nG1 E-1 F2500 ;retract the filament a bit before lifting the nozzle to release some of the pressure\nG1 Z0.5 E-4 X-10 F9000 ;get out and retract filament even more\nG1 E-25 F2500 ;retract even more\nG90 ;absolute positioning (includes extruder)\nG28 X ;home X so the head is out of the way\nG1 Y140 ;move Y forward, so the print is more accessible\nM84 ;steppers off\n\nM117 Print finished ;write Print finished\n;---------------------------------------\n;;; Jellybox End Script End ;;;\n;_______________________________________" - }, - - "retraction_prime_speed": { - "value": "max(retraction_speed - 30, 5)" - } + "machine_start_gcode": { "default_value": ";---------------------------------------\n; ; ; Jellybox Start Script Begin ; ; ;\n;_______________________________________\n; for slicer: CURA 3\n; start gcode last modified Jun 1, 2019\n\n; Print Settings Summary\n; (leave these alone: this is only a list of the slicing settings)\n; (overwriting these values will NOT change your printer's behavior)\n; sliced for : {machine_name}\n; jobname : {jobname}\n; gcode generated : {day}, {date}, {time}\n; est. print time : {print_time}\n; nozzle diameter : {machine_nozzle_size}\n; filament diameter : {material_diameter}\n; layer height : {layer_height}\n; 1st layer height : {layer_height_0}\n; line width : {line_width} \n; outer wall wipe dist. : {wall_0_wipe_dist}\n; infill line width : {infill_line_width}\n; wall thickness : {wall_thickness}\n; top thickness : {top_thickness}\n; bottom thickness : {bottom_thickness}\n; infill density : {infill_sparse_density}\n; infill pattern : {infill_pattern}\n; print temperature : {material_print_temperature}\n; 1st layer print temp. : {material_print_temperature_layer_0}\n; heated bed temperature : {material_bed_temperature}\n; 1st layer bed temp. : {material_bed_temperature_layer_0}\n; regular fan speed : {cool_fan_speed_min}\n; max fan speed : {cool_fan_speed_max}\n; retraction amount : {retraction_amount}\n; retr. retract speed : {retraction_retract_speed}\n; retr. prime speed : {retraction_prime_speed}\n; build plate adhesion : {adhesion_type}\n; support ? {support_enable}\n; spiralized ? {magic_spiralize}\n\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nM117 Preparing ;write Preparing\nM190 S{material_bed_temperature_layer_0} ;wait for the bed to reach desired temperature\nM109 S180 ;wait for the extruder to reach 180C\nG28 ;home all axes\nM203 Z4 ;slow Z speed down for greater accuracy when probing\nG29 O ;run auto bed leveling procedure IF leveling not active already\n; M500 ;optionally save the mesh\nM203 Z7 ;pick up z speed again for printing\nG28 X ;home x to get as far from the plate as possible\nM420 S1 ;(re) enable bed leveling if turned off by the G28\nG0 Y0 F5000 ;position Y in front\nG0 Z15 F3000 ;position Z\nM109 S{material_print_temperature_layer_0} ;wait for the extruder to reach desired temperature\nM300 S440 P300 ;play a tone\n; M0 Ready! Click to start ; optionally, stop and wait for user to continue\nM420 S1 ;(re) enable bed leveling to make iron-sure\nM117 Print starting ;write Print starting\n;================ ;PRINT:LINE start\nG90 ;absolute positioning\nG92 E0 ;reset the extruder position\nM420 S1 ;(re) enable bed leveling to make iron-sure\nG0 Z0 ;get Z down\nM83 ;relative extrusion mode\nM420 S1 ;(re) enable bed leveling to make iron-sure\nG1 E20 F300 ;extrude __mm of feed stock\nG1 E18 F250 ;extrude __mm of feed stock\nG1 E10 F250 ;extrude __mm of feed stock\nG4 S2 ;pause for ooze\nM400 ;make sure all is finished\nM420 S1 ;(re) enable bed leveling to make iron-sure\nG0 F500 X3 Y0 Z0.3;get to the start of the LINE\nG1 E2 F300 ;extrude __mm of feed stock\nG1 F1000 X152 E7 ;print a thick LINE extruding __mm along the way\nG92 E0 ;reset the extruder position\n;---------------------------------------------\n; ; ; Jellybox Printer Start Script End ; ; ;\n;_____________________________________________\n" }, + "machine_width": { "default_value": 180 }, + "retraction_prime_speed": { "value": "max(retraction_speed - 30, 5)" } } -} +} \ No newline at end of file diff --git a/resources/definitions/imade3d_jellybox_root.def.json b/resources/definitions/imade3d_jellybox_root.def.json index 5de6d9dae1..83db4c29a2 100644 --- a/resources/definitions/imade3d_jellybox_root.def.json +++ b/resources/definitions/imade3d_jellybox_root.def.json @@ -2,141 +2,80 @@ "version": 2, "name": "imade3d_jellybox_root", "inherits": "fdmprinter", - "metadata": { + "metadata": + { + "visible": false, "author": "Imade3D", "manufacturer": "Imade3D", - "visible": false, "file_formats": "text/x-gcode", "exclude_materials": [ - "chromatik_pla", - "dsm_arnitel2045_175", - "dsm_novamid1070_175", - "fabtotum_abs", - "fabtotum_nylon", - "fabtotum_pla", - "fabtotum_tpu", - "fiberlogy_hd_pla", - "filo3d_pla_green", - "filo3d_pla_red", - "filo3d_pla", - "generic_abs_175", - "generic_abs", - "generic_bam", - "generic_cpe_175", - "generic_cpe_plus", - "generic_cpe", - "generic_hips_175", - "generic_hips", - "generic_nylon_175", - "generic_nylon", - "generic_pc_175", - "generic_pc", - "generic_petg", - "generic_petg_175", - "generic_pla", - "generic_pla_175", - "generic_pp", - "generic_pva_175", - "generic_pva", - "generic_tough_pla", - "generic_tpu", - "imade3d_petg_green", - "imade3d_petg_pink", - "imade3d_pla_green", - "imade3d_pla_pink", - "innofill_innoflex60_175", - "octofiber_pla", - "polyflex_pla", - "polymax_pla", - "polyplus_pla", - "polywood_pla", - "tizyx_abs", - "tizyx_pla_bois", - "tizyx_pla", - "ultimaker_abs_black", - "ultimaker_abs_blue", - "ultimaker_abs_green", - "ultimaker_abs_grey", - "ultimaker_abs_orange", - "ultimaker_abs_pearl-gold", - "ultimaker_abs_red", - "ultimaker_abs_silver-metallic", - "ultimaker_abs_white", - "ultimaker_abs_yellow", - "ultimaker_bam", - "ultimaker_cpe_black", - "ultimaker_cpe_blue", - "ultimaker_cpe_dark-grey", - "ultimaker_cpe_green", - "ultimaker_cpe_light-grey", - "ultimaker_cpe_plus_black", - "ultimaker_cpe_plus_transparent", - "ultimaker_cpe_plus_white", - "ultimaker_cpe_red", - "ultimaker_cpe_transparent", - "ultimaker_cpe_white", - "ultimaker_cpe_yellow", - "ultimaker_nylon_black", - "ultimaker_nylon_transparent", - "ultimaker_pc_black", - "ultimaker_pc_transparent", - "ultimaker_pc_white", - "ultimaker_pla_black", - "ultimaker_pla_blue", - "ultimaker_pla_green", - "ultimaker_pla_magenta", - "ultimaker_pla_orange", - "ultimaker_pla_pearl-white", - "ultimaker_pla_red", - "ultimaker_pla_silver-metallic", - "ultimaker_pla_transparent", - "ultimaker_pla_white", - "ultimaker_pla_yellow", - "ultimaker_pp_transparent", - "ultimaker_pva", - "ultimaker_tough_pla_black", - "ultimaker_tough_pla_green", - "ultimaker_tough_pla_red", - "ultimaker_tough_pla_white", - "ultimaker_tpu_black", - "ultimaker_tpu_blue", - "ultimaker_tpu_red", - "ultimaker_tpu_white", - "verbatim_bvoh_175", - "Vertex_Delta_ABS", - "Vertex_Delta_PET", - "Vertex_Delta_PLA", - "Vertex_Delta_TPU", - "zyyx_pro_flex", - "zyyx_pro_pla" + "chromatik_pla", + "dsm_arnitel2045_175", + "dsm_novamid1070_175", + "fabtotum_abs", + "fabtotum_nylon", + "fabtotum_pla", + "fabtotum_tpu", + "fiberlogy_hd_pla", + "filo3d_pla_green", + "filo3d_pla_red", + "filo3d_pla", + "generic_abs_175", + "generic_abs", + "generic_bam", + "generic_cpe_175", + "generic_cpe_plus", + "generic_cpe", + "generic_hips_175", + "generic_hips", + "generic_nylon_175", + "generic_nylon", + "generic_pc_175", + "generic_pc", + "generic_petg", + "generic_petg_175", + "generic_pla", + "generic_pla_175", + "generic_pp", + "generic_pva_175", + "generic_pva", + "generic_tough_pla", + "generic_tpu", + "imade3d_petg_green", + "imade3d_petg_pink", + "imade3d_pla_green", + "imade3d_pla_pink", + "innofill_innoflex60_175", + "octofiber_pla", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "tizyx_abs", + "tizyx_pla_bois", + "tizyx_pla", + "verbatim_bvoh_175", + "Vertex_Delta_ABS", + "Vertex_Delta_PET", + "Vertex_Delta_PLA", + "Vertex_Delta_TPU", + "zyyx_pro_flex", + "zyyx_pro_pla" ] }, - "overrides": { - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "material_diameter": { - "default_value": 1.75 - }, - "material_print_temperature": { - "minimum_value": "0" - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_heated_bed": { - "default_value": true - }, - "material_bed_temperature": { - "minimum_value": "0" - }, - "material_standby_temperature": { - "minimum_value": "0" - }, + "overrides": + { + "machine_center_is_zero": { "default_value": false }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "material_bed_temperature": { "minimum_value": "0" }, + "material_diameter": { "default_value": 1.75 }, + "material_print_temperature": { "minimum_value": "0" }, + "material_standby_temperature": { "minimum_value": "0" }, "relative_extrusion": { - "value": true, - "enabled": true + "enabled": true, + "value": true } } -} +} \ No newline at end of file diff --git a/resources/definitions/inat_base.def.json b/resources/definitions/inat_base.def.json index 61a543c9cc..554b188b82 100644 --- a/resources/definitions/inat_base.def.json +++ b/resources/definitions/inat_base.def.json @@ -1,469 +1,326 @@ { - "name": "Inat Base description", "version": 2, + "name": "Inat Base description", "inherits": "fdmprinter", - "metadata": { + "metadata": + { + "visible": false, "author": "Inat s.r.o.", "manufacturer": "Inat s.r.o.", "file_formats": "text/x-gcode", - "visible": false, + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, "has_materials": true, "has_variants": false, - "variants_name": "Extruder:", - "preferred_variant_name": "0.4mm", - "has_machine_quality": true, + "machine_extruder_trains": { "0": "inat_extruder_0" }, "preferred_material": "generic_pla", "preferred_quality_type": "standard", - "machine_extruder_trains": { - "0": "inat_extruder_0" - }, - "first_start_actions": [ - "MachineSettingsAction" - ] + "preferred_variant_name": "0.4mm", + "variants_name": "Extruder:" }, - "overrides": { - "machine_start_gcode": { - "default_value": "G28 ;Home\nG0 X-2 Y150 F6000 ;Move to the side\nG0 Z0.3 F200 ;Move nozzle down\nM192 ; Wait for probe temperature to settle\nG28 Z\nG29\nG0 X0 Y0 Z30 F6000\nM84 E\nM0\nG1 Z15.0 F6000 ;Move the platform down 15mm\n" + "overrides": + { + "acceleration_infill": + { + "maximum_value_warning": "1500", + "minimum_value_warning": "100" }, - "machine_end_gcode": { - "default_value": "M400\nM104 S0\nM140 S0\nM107\n;Retract the filament\nG92 E1\nG1 E-1 F300\nG28 R5 X\nG0 Y300 F3000\nM84\n" + "acceleration_layer_0": + { + "maximum_value_warning": "1500", + "minimum_value_warning": "100" }, - "material_diameter": { - "default_value": 1.75 + "acceleration_prime_tower": + { + "maximum_value_warning": "1500", + "minimum_value_warning": "100" }, - "machine_shape": { - "default_value": "rectangular" + "acceleration_print": + { + "maximum_value_warning": "1500", + "minimum_value_warning": "100", + "value": 500 }, - "machine_heated_bed": { - "default_value": true + "acceleration_print_layer_0": + { + "maximum_value_warning": "1500", + "minimum_value_warning": "100" }, - "machine_heated_build_volume": { - "default_value": false + "acceleration_roofing": + { + "maximum_value_warning": "1500", + "minimum_value_warning": "100" }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" + "acceleration_skirt_brim": + { + "maximum_value_warning": "1500", + "minimum_value_warning": "100" }, - "machine_head_with_fans_polygon": { + "acceleration_support": + { + "maximum_value_warning": "1500", + "minimum_value_warning": "100" + }, + "acceleration_support_bottom": + { + "maximum_value_warning": "1500", + "minimum_value_warning": "100" + }, + "acceleration_support_infill": + { + "maximum_value_warning": "1500", + "minimum_value_warning": "100" + }, + "acceleration_support_interface": + { + "maximum_value_warning": "1500", + "minimum_value_warning": "100" + }, + "acceleration_support_roof": + { + "maximum_value_warning": "1500", + "minimum_value_warning": "100" + }, + "acceleration_topbottom": + { + "maximum_value_warning": "1500", + "minimum_value_warning": "100" + }, + "acceleration_travel": + { + "maximum_value_warning": "1500", + "minimum_value_warning": "100", + "value": "acceleration_print" + }, + "acceleration_travel_layer_0": + { + "maximum_value_warning": "1500", + "minimum_value_warning": "100" + }, + "acceleration_wall": + { + "maximum_value_warning": "1500", + "minimum_value_warning": "100" + }, + "acceleration_wall_0": + { + "maximum_value_warning": "1500", + "minimum_value_warning": "100" + }, + "acceleration_wall_x": + { + "maximum_value_warning": "1500", + "minimum_value_warning": "100" + }, + "adhesion_type": { "value": "'skirt'" }, + "brim_outside_only": { "value": false }, + "cool_fan_speed_min": { "value": "0.5*cool_fan_speed" }, + "cool_min_layer_time_fan_speed_max": { "value": 10 }, + "default_material_bed_temperature": { "maximum_value": "150" }, + "default_material_print_temperature": { "maximum_value": "470" }, + "expand_skins_expand_distance": { "value": "4" }, + "gantry_height": { "value": 34 }, + "infill_before_walls": { "value": false }, + "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 50 else 'cubic'" }, + "infill_sparse_density": { "value": 30 }, + "infill_sparse_thickness": { "value": "layer_height if (2*layer_height > 0.8*machine_nozzle_size) else 2*layer_height" }, + "jerk_infill": + { + "maximum_value_warning": "20", + "value": "jerk_print" + }, + "jerk_layer_0": + { + "maximum_value_warning": "20", + "value": "jerk_print" + }, + "jerk_prime_tower": + { + "maximum_value_warning": "20", + "value": "jerk_print" + }, + "jerk_print": + { + "maximum_value_warning": "20", + "value": 8 + }, + "jerk_print_layer_0": + { + "maximum_value_warning": "20", + "value": "jerk_print" + }, + "jerk_roofing": + { + "maximum_value_warning": "20", + "value": "jerk_print" + }, + "jerk_skirt_brim": + { + "maximum_value_warning": "20", + "value": "jerk_print" + }, + "jerk_support": + { + "maximum_value_warning": "20", + "value": "jerk_print" + }, + "jerk_support_bottom": + { + "maximum_value_warning": "20", + "value": "jerk_print" + }, + "jerk_support_infill": + { + "maximum_value_warning": "20", + "value": "jerk_print" + }, + "jerk_support_interface": + { + "maximum_value_warning": "20", + "value": "jerk_print" + }, + "jerk_support_roof": + { + "maximum_value_warning": "20", + "value": "jerk_print" + }, + "jerk_topbottom": + { + "maximum_value_warning": "20", + "value": "jerk_print" + }, + "jerk_travel": + { + "maximum_value_warning": "20", + "value": "jerk_print" + }, + "jerk_travel_layer_0": + { + "maximum_value_warning": "20", + "value": "jerk_print" + }, + "jerk_wall": + { + "maximum_value_warning": "20", + "value": "jerk_print" + }, + "jerk_wall_0": + { + "maximum_value_warning": "20", + "value": "jerk_print" + }, + "jerk_wall_x": + { + "maximum_value_warning": "20", + "value": "jerk_print" + }, + "layer_height": { "value": 0.2 }, + "layer_height_0": { "value": "machine_nozzle_size / 2.0" }, + "line_width": + { + "maximum_value_warning": "1.6 * machine_nozzle_size", + "minimum_value_warning": "0.8 * machine_nozzle_size", + "value": "1.05 * machine_nozzle_size" + }, + "machine_acceleration": { "value": 500 }, + "machine_end_gcode": { "default_value": "M400\nM104 S0\nM140 S0\nM107\n;Retract the filament\nG92 E1\nG1 E-1 F300\nG28 R5 X\nG0 Y300 F3000\nM84\n" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ - [ - -86, - 66 - ], - [ - 44, - 66 - ], - [ - 44, - -96 - ], - [ - -86, - -96 - ] + [-86, 66], + [44, 66], + [44, -96], + [-86, -96] ] }, - "gantry_height": { "value": 34 }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "machine_max_feedrate_x": { - "value": 200 - }, - "machine_max_feedrate_y": { - "value": 200 - }, - "machine_max_feedrate_z": { - "value": 10 - }, - "machine_max_feedrate_e": { - "value": 100 - }, - "machine_max_acceleration_x": { - "value": 500 - }, - "machine_max_acceleration_y": { - "value": 500 - }, - "machine_max_acceleration_z": { - "value": 200 - }, - "machine_max_acceleration_e": { - "value": 2000 - }, - "machine_acceleration": { - "value": 500 - }, - "machine_max_jerk_xy": { - "value": 8 - }, - "machine_max_jerk_z": { - "value": 2.0 - }, - "machine_max_jerk_e": { - "value": 5.0 - }, - "layer_height": { - "value": 0.2 - }, - "layer_height_0": { - "value": "machine_nozzle_size / 2.0" - }, - "line_width": { - "value": "1.05 * machine_nozzle_size", - "minimum_value_warning": "0.8 * machine_nozzle_size", - "maximum_value_warning": "1.6 * machine_nozzle_size" - }, - "wall_thickness": { - "value": "max(3*wall_line_width, 1)" - }, - "roofing_layer_count": { - "value": 2 - }, - "top_bottom_thickness": { - "value": 1.0 - }, - "top_bottom_pattern": { - "value": "'zigzag'" - }, - "optimize_wall_printing_order": { - "value": true - }, - "xy_offset_layer_0": { - "value": "-0.5*line_width" - }, - "skin_outline_count": { - "value": 2 - }, - "infill_sparse_density": { - "value": 30 - }, - "infill_pattern": { - "value": "'zigzag' if infill_sparse_density > 50 else 'cubic'" - }, - "infill_sparse_thickness": { - "value": "layer_height if (2*layer_height > 0.8*machine_nozzle_size) else 2*layer_height" - }, - "infill_before_walls": { - "value": false - }, - "expand_skins_expand_distance": { - "value": "4" - }, - "default_material_print_temperature": { - "maximum_value_warning": "470", - "maximum_value": "470" - }, - "material_print_temperature": { - "maximum_value_warning": "470", - "maximum_value": "470" - }, - "material_print_temperature_layer_0": { - "value": "material_print_temperature", - "maximum_value_warning": "470", - "maximum_value": "470" - }, - "material_initial_print_temperature": { - "value": "material_print_temperature", - "maximum_value_warning": "470", - "maximum_value": "470" - }, - "material_final_print_temperature": { - "value": "material_print_temperature", - "maximum_value_warning": "470", - "maximum_value": "470" - }, - "default_material_bed_temperature": { - "maximum_value_warning": "150", - "maximum_value": "150" - }, - "material_bed_temperature": { - "maximum_value_warning": "150", - "maximum_value": "150" - }, - "material_bed_temperature_layer_0": { - "maximum_value_warning": "150", - "maximum_value": "150" - }, - "speed_infill": { - "value": "speed_print" - }, - "speed_wall": { - "value": "speed_print" - }, - "speed_wall_0": { - "value": "0.5 * speed_wall" - }, - "speed_wall_x": { - "value": "speed_wall" - }, - "speed_roofing": { - "value": "speed_wall_0" - }, - "speed_topbottom": { - "value": "speed_print" - }, - "speed_travel": { - "value": "150" - }, - "speed_layer_0": { - "value": "30" - }, - "speed_travel_layer_0": { - "value": "0.5 * speed_travel" - }, - "speed_z_hop": { - "value": 10 - }, - "acceleration_print": { - "minimum_value_warning": "100", - "maximum_value_warning": "1500", - "value": 500 - }, - "acceleration_infill": { - "minimum_value_warning": "100", - "maximum_value_warning": "1500" - }, - "acceleration_wall": { - "minimum_value_warning": "100", - "maximum_value_warning": "1500" - }, - "acceleration_wall_0": { - "minimum_value_warning": "100", - "maximum_value_warning": "1500" - }, - "acceleration_wall_x": { - "minimum_value_warning": "100", - "maximum_value_warning": "1500" - }, - "acceleration_roofing": { - "minimum_value_warning": "100", - "maximum_value_warning": "1500" - }, - "acceleration_topbottom": { - "minimum_value_warning": "100", - "maximum_value_warning": "1500" - }, - "acceleration_support": { - "minimum_value_warning": "100", - "maximum_value_warning": "1500" - }, - "acceleration_support_infill": { - "minimum_value_warning": "100", - "maximum_value_warning": "1500" - }, - "acceleration_support_interface": { - "minimum_value_warning": "100", - "maximum_value_warning": "1500" - }, - "acceleration_support_roof": { - "minimum_value_warning": "100", - "maximum_value_warning": "1500" - }, - "acceleration_support_bottom": { - "minimum_value_warning": "100", - "maximum_value_warning": "1500" - }, - "acceleration_prime_tower": { - "minimum_value_warning": "100", - "maximum_value_warning": "1500" - }, - "acceleration_travel": { - "value": "acceleration_print", - "minimum_value_warning": "100", - "maximum_value_warning": "1500" - }, - "acceleration_layer_0": { - "minimum_value_warning": "100", - "maximum_value_warning": "1500" - }, - "acceleration_print_layer_0": { - "minimum_value_warning": "100", - "maximum_value_warning": "1500" - }, - "acceleration_travel_layer_0": { - "minimum_value_warning": "100", - "maximum_value_warning": "1500" - }, - "acceleration_skirt_brim": { - "minimum_value_warning": "100", - "maximum_value_warning": "1500" - }, - "jerk_print": { - "maximum_value_warning": "20", - "value": 8 - }, - "jerk_infill": { - "maximum_value_warning": "20", - "value": "jerk_print" - }, - "jerk_wall": { - "maximum_value_warning": "20", - "value": "jerk_print" - }, - "jerk_wall_0": { - "maximum_value_warning": "20", - "value": "jerk_print" - }, - "jerk_wall_x": { - "maximum_value_warning": "20", - "value": "jerk_print" - }, - "jerk_roofing": { - "maximum_value_warning": "20", - "value": "jerk_print" - }, - "jerk_topbottom": { - "maximum_value_warning": "20", - "value": "jerk_print" - }, - "jerk_support": { - "maximum_value_warning": "20", - "value": "jerk_print" - }, - "jerk_support_infill": { - "maximum_value_warning": "20", - "value": "jerk_print" - }, - "jerk_support_interface": { - "maximum_value_warning": "20", - "value": "jerk_print" - }, - "jerk_support_roof": { - "maximum_value_warning": "20", - "value": "jerk_print" - }, - "jerk_support_bottom": { - "maximum_value_warning": "20", - "value": "jerk_print" - }, - "jerk_prime_tower": { - "maximum_value_warning": "20", - "value": "jerk_print" - }, - "jerk_travel": { - "maximum_value_warning": "20", - "value": "jerk_print" - }, - "jerk_layer_0": { - "maximum_value_warning": "20", - "value": "jerk_print" - }, - "jerk_print_layer_0": { - "maximum_value_warning": "20", - "value": "jerk_print" - }, - "jerk_travel_layer_0": { - "maximum_value_warning": "20", - "value": "jerk_print" - }, - "jerk_skirt_brim": { - "maximum_value_warning": "20", - "value": "jerk_print" - }, - "retraction_amount": { - "value": 1.8, - "maximum_value_warning": "2.0" - }, - "retraction_speed": { - "value": 45 - }, - "retraction_combing": { - "value": "'infill'" - }, - "retraction_hop_enabled": { - "value": true - }, - "retraction_hop": { - "value": "3*layer_height" - }, - "cool_fan_speed_min": { - "value": "0.5*cool_fan_speed" - }, - "cool_min_layer_time_fan_speed_max": { - "value": 10 - }, - "support_angle": { - "value": 60 - }, - "support_wall_count": { - "value": "1 if (support_structure == 'tree') else 0" - }, - "support_infill_rate": { - "value": 10 - }, - "support_infill_angles": { - "value": "[45]" - }, - "support_z_distance": { - "value": "layer_height if (2*layer_height > 0.8*machine_nozzle_size) else (2*layer_height)" - }, - "support_join_distance": { - "value": 5.0 - }, - "support_offset": { - "value": 3.0 - }, - "support_infill_sparse_thickness": { - "value": "infill_sparse_thickness" - }, - "support_interface_enable": { - "value": true - }, - "support_interface_height": { - "value": 1.0 - }, - "support_interface_density": { - "value": 80 - }, - "support_interface_pattern": { - "value": "'grid'" - }, - "support_interface_offset": { - "value": "support_offset" - }, - "support_fan_enable": { - "value": true - }, - "support_use_towers": { - "value": false - }, - "support_tree_angle": { - "value": 60 - }, - "adhesion_type": { - "value": "'skirt'" - }, - "skirt_line_count": { - "value": 5 - }, - "skirt_brim_minimal_length": { - "value": 500 - }, - "skirt_gap": { - "value": 10 - }, - "brim_outside_only": { - "value": false - }, - "raft_margin": { - "value": 10 - }, - "raft_airgap": { - "value": "0.5 * layer_height" - }, - "raft_interface_thickness": { - "value": "0.8*machine_nozzle_size", - "maximum_value_warning": "0.8 * machine_nozzle_size" - }, - "raft_interface_line_width": { - "value": "line_width" - }, - "raft_base_line_width": { - "value": "raft_interface_line_width" - }, - "raft_base_speed": { - "value": "speed_layer_0" - } + "machine_heated_bed": { "default_value": true }, + "machine_heated_build_volume": { "default_value": false }, + "machine_max_acceleration_e": { "value": 2000 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 200 }, + "machine_max_feedrate_e": { "value": 100 }, + "machine_max_feedrate_x": { "value": 200 }, + "machine_max_feedrate_y": { "value": 200 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 5.0 }, + "machine_max_jerk_xy": { "value": 8 }, + "machine_max_jerk_z": { "value": 2.0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_shape": { "default_value": "rectangular" }, + "machine_start_gcode": { "default_value": "G28 ;Home\nG0 X-2 Y150 F6000 ;Move to the side\nG0 Z0.3 F200 ;Move nozzle down\nM192 ; Wait for probe temperature to settle\nG28 Z\nG29\nG0 X0 Y0 Z30 F6000\nM84 E\nM0\nG1 Z15.0 F6000 ;Move the platform down 15mm\n" }, + "material_bed_temperature": { "maximum_value": "150" }, + "material_bed_temperature_layer_0": { "maximum_value": "150" }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": + { + "maximum_value": "470", + "value": "material_print_temperature" + }, + "material_initial_print_temperature": + { + "maximum_value": "470", + "value": "material_print_temperature" + }, + "material_print_temperature": { "maximum_value": "470" }, + "material_print_temperature_layer_0": + { + "maximum_value": "470", + "value": "material_print_temperature" + }, + "optimize_wall_printing_order": { "value": true }, + "raft_airgap": { "value": "0.5 * layer_height" }, + "raft_base_line_width": { "value": "raft_interface_line_width" }, + "raft_base_speed": { "value": "speed_layer_0" }, + "raft_interface_line_width": { "value": "line_width" }, + "raft_interface_thickness": + { + "maximum_value_warning": "0.8 * machine_nozzle_size", + "value": "0.8*machine_nozzle_size" + }, + "raft_margin": { "value": 10 }, + "retraction_amount": + { + "maximum_value_warning": "2.0", + "value": 1.8 + }, + "retraction_combing": { "value": "'infill'" }, + "retraction_hop": { "value": "3*layer_height" }, + "retraction_hop_enabled": { "value": true }, + "retraction_speed": { "value": 45 }, + "roofing_layer_count": { "value": 2 }, + "skin_outline_count": { "value": 2 }, + "skirt_brim_minimal_length": { "value": 500 }, + "skirt_gap": { "value": 10 }, + "skirt_line_count": { "value": 5 }, + "speed_layer_0": { "value": "30" }, + "speed_roofing": { "value": "speed_wall_0" }, + "speed_topbottom": { "value": "speed_print" }, + "speed_travel": { "value": "150" }, + "speed_travel_layer_0": { "value": "0.5 * speed_travel" }, + "speed_wall": { "value": "speed_print" }, + "speed_wall_0": { "value": "0.5 * speed_wall" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 10 }, + "support_angle": { "value": 60 }, + "support_fan_enable": { "value": true }, + "support_infill_angles": { "value": "[45]" }, + "support_infill_rate": { "value": 10 }, + "support_infill_sparse_thickness": { "value": "infill_sparse_thickness" }, + "support_interface_density": { "value": 80 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": 1.0 }, + "support_interface_offset": { "value": "support_offset" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_join_distance": { "value": 5.0 }, + "support_offset": { "value": 3.0 }, + "support_tree_angle": { "value": 60 }, + "support_wall_count": { "value": "1 if (support_structure == 'tree') else 0" }, + "support_z_distance": { "value": "layer_height if (2*layer_height > 0.8*machine_nozzle_size) else (2*layer_height)" }, + "top_bottom_pattern": { "value": "'zigzag'" }, + "top_bottom_thickness": { "value": 1.0 }, + "wall_thickness": { "value": "max(3*wall_line_width, 1)" }, + "xy_offset_layer_0": { "value": "-0.5*line_width" } } } \ No newline at end of file diff --git a/resources/definitions/inat_proton_x_rail.def.json b/resources/definitions/inat_proton_x_rail.def.json index ffaca10bdf..486893e554 100644 --- a/resources/definitions/inat_proton_x_rail.def.json +++ b/resources/definitions/inat_proton_x_rail.def.json @@ -1,31 +1,27 @@ { - - "name": "Proton X Rail", "version": 2, + "name": "Proton X Rail", "inherits": "inat_base", - "metadata": { + "metadata": + { "visible": true, - "quality_definition": "inat_base", "platform": "inat_proton_x_buildplate.stl", - "platform_offset": [ 0, -1.1, 0] + "platform_offset": [ + 0, + -1.1, + 0 + ], + "quality_definition": "inat_base" }, - "overrides": { - "machine_name": { "default_value": "Proton X Rail" }, - "machine_width": { "default_value": 304 }, + "overrides": + { "machine_depth": { "default_value": 304 }, "machine_height": { "default_value": 300 }, - "machine_max_acceleration_x": { - "value": 500 - }, - "machine_max_acceleration_y": { - "value": 800 - }, - "machine_max_acceleration_z": { - "value": 200 - }, - "machine_max_jerk_xy": { - "value": 10 - } - + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 800 }, + "machine_max_acceleration_z": { "value": 200 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_name": { "default_value": "Proton X Rail" }, + "machine_width": { "default_value": 304 } } } \ No newline at end of file diff --git a/resources/definitions/inat_proton_x_rod.def.json b/resources/definitions/inat_proton_x_rod.def.json index 1c3592bbd3..6a512809fe 100644 --- a/resources/definitions/inat_proton_x_rod.def.json +++ b/resources/definitions/inat_proton_x_rod.def.json @@ -1,18 +1,23 @@ { - - "name": "Proton X Rod", "version": 2, + "name": "Proton X Rod", "inherits": "inat_base", - "metadata": { + "metadata": + { "visible": true, - "quality_definition": "inat_base", "platform": "inat_proton_x_buildplate.stl", - "platform_offset": [ 0, -1.1, 0] + "platform_offset": [ + 0, + -1.1, + 0 + ], + "quality_definition": "inat_base" }, - "overrides": { - "machine_name": { "default_value": "Proton X Rod" }, - "machine_width": { "default_value": 304 }, + "overrides": + { "machine_depth": { "default_value": 304 }, - "machine_height": { "default_value": 300 } + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "Proton X Rod" }, + "machine_width": { "default_value": 304 } } } \ No newline at end of file diff --git a/resources/definitions/innovo_inventor.def.json b/resources/definitions/innovo_inventor.def.json index e930b994c3..6b7648366d 100644 --- a/resources/definitions/innovo_inventor.def.json +++ b/resources/definitions/innovo_inventor.def.json @@ -2,37 +2,30 @@ "version": 2, "name": "Innovo Inventor", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Adam Rumjahn", "manufacturer": "Innovo", "file_formats": "text/x-gcode", "platform": "inventor_platform.3mf", - "platform_offset": [-180, -0.25, 160], - "machine_extruder_trains": - { - "0": "innovo_inventor_extruder_0" - } + "machine_extruder_trains": { "0": "innovo_inventor_extruder_0" }, + "platform_offset": [ + -180, + -0.25, + 160 + ] }, - - "overrides": { - "machine_name": { "default_value": "Innovo INVENTOR" }, - "machine_width": { - "default_value": 340 - }, - "machine_height": { - "default_value": 290 - }, - "machine_depth": { - "default_value": 300 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": true - }, - "machine_head_with_fans_polygon": { + "overrides": + { + "gantry_height": { "value": "82.3" }, + "layer_height": { "default_value": 0.15 }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "M104 S0 ; turn off extruders\nM140 S0 ; heated bed heater off\nG91 ; relative positioning\nG1 E-2 F5000; retract 2mm\nG28 Z; move bed down\nG90 ; absolute positioning\nM84 ; disable motors" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ [-43.7, -19.2], [-43.7, 55], @@ -40,32 +33,14 @@ [43.7, -19.2] ] }, - "gantry_height": { - "value": "82.3" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G28 ; Home extruder\nM107 ; Turn off fan\nG90 ; Absolute positioning\nM82 ; Extruder in absolute mode\nM190 S{material_bed_temperature}\nM104 T0 S{material_print_temperature}\nM109 T0 S{material_print_temperature}\nM104 T1 S{material_print_temperature}\nM109 T1 S{material_print_temperature}\n;G32 S3 ; auto level\nG92 E0 ; Reset extruder position" - }, - "machine_end_gcode": { - "default_value": "M104 S0 ; turn off extruders\nM140 S0 ; heated bed heater off\nG91 ; relative positioning\nG1 E-2 F5000; retract 2mm\nG28 Z; move bed down\nG90 ; absolute positioning\nM84 ; disable motors" - }, - "layer_height": { - "default_value": 0.15 - }, - "wall_thickness": { - "value": "0.8" - }, - "top_bottom_thickness": { - "default_value": 1.2 - }, - "speed_print": { - "default_value": 50 - }, - "speed_layer_0": { - "minimum_value": 0.1 - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 290 }, + "machine_name": { "default_value": "Innovo INVENTOR" }, + "machine_start_gcode": { "default_value": "G28 ; Home extruder\nM107 ; Turn off fan\nG90 ; Absolute positioning\nM82 ; Extruder in absolute mode\nM190 S{material_bed_temperature}\nM104 T0 S{material_print_temperature}\nM109 T0 S{material_print_temperature}\nM104 T1 S{material_print_temperature}\nM109 T1 S{material_print_temperature}\n;G32 S3 ; auto level\nG92 E0 ; Reset extruder position" }, + "machine_width": { "default_value": 340 }, + "speed_layer_0": { "minimum_value": 0.1 }, + "speed_print": { "default_value": 50 }, + "top_bottom_thickness": { "default_value": 1.2 }, + "wall_thickness": { "value": "0.8" } } -} +} \ No newline at end of file diff --git a/resources/definitions/jgaurora_a1.def.json b/resources/definitions/jgaurora_a1.def.json index a952949b1f..cd8195cbd3 100644 --- a/resources/definitions/jgaurora_a1.def.json +++ b/resources/definitions/jgaurora_a1.def.json @@ -1,72 +1,35 @@ { - "name": "JGAurora A1", "version": 2, + "name": "JGAurora A1", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Samuel Pinches", "manufacturer": "JGAurora", "file_formats": "text/x-gcode", - "preferred_quality_type": "fast", - "machine_extruder_trains": - { - "0": "jgaurora_a1_extruder_0" - } + "machine_extruder_trains": { "0": "jgaurora_a1_extruder_0" }, + "preferred_quality_type": "fast" }, - "overrides": { - "machine_name": { - "default_value": "JGAurora A1" - }, - "machine_start_gcode": { - "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 ;home all axis\nM420 S1 ;turn on mesh bed levelling if enabled in firmware\nG92 E0 ;zero the extruded length\nG1 Z1 F1000 ;move up slightly\nG1 X60.0 Z0 E9.0 F1000.0;intro line\nG1 X100.0 E21.5 F1000.0 ;continue line\nG92 E0 ;zero the extruded length again\n; -- end of START GCODE --" - }, - "machine_end_gcode": { - "default_value": "; -- END GCODE --\nM104 S0 ;turn off nozzle heater\nM140 S0 ;turn off bed heater\nG91 ;set to relative positioning\nG1 E-10 F300 ;retract the filament slightly\nG90 ;set to absolute positioning\nG28 X0 ;move to the X-axis origin (Home)\nG0 Y280 F600 ;bring the bed to the front for easy print removal\nM84 ;turn off stepper motors\n; -- end of END GCODE --" - }, - "machine_width": { - "default_value": 300 - }, - "machine_height": { - "default_value": 300 - }, - "machine_depth": { - "default_value": 300 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": false - }, - "gantry_height": { - "value": "10" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "material_diameter": { - "default_value": 1.75 - }, - "layer_height_0": { - "default_value": 0.12 - }, - "wall_thickness": { - "value": "1.2" - }, - "speed_print": { - "default_value": 40 - }, - "support_enable": { - "default_value": true - }, - "retraction_enable": { - "default_value": true - }, - "retraction_amount": { - "default_value": 6 - }, - "retraction_speed": { - "default_value": 40 - } + "overrides": + { + "gantry_height": { "value": "10" }, + "layer_height_0": { "default_value": 0.12 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "; -- END GCODE --\nM104 S0 ;turn off nozzle heater\nM140 S0 ;turn off bed heater\nG91 ;set to relative positioning\nG1 E-10 F300 ;retract the filament slightly\nG90 ;set to absolute positioning\nG28 X0 ;move to the X-axis origin (Home)\nG0 Y280 F600 ;bring the bed to the front for easy print removal\nM84 ;turn off stepper motors\n; -- end of END GCODE --" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "JGAurora A1" }, + "machine_start_gcode": { "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 ;home all axis\nM420 S1 ;turn on mesh bed levelling if enabled in firmware\nG92 E0 ;zero the extruded length\nG1 Z1 F1000 ;move up slightly\nG1 X60.0 Z0 E9.0 F1000.0;intro line\nG1 X100.0 E21.5 F1000.0 ;continue line\nG92 E0 ;zero the extruded length again\n; -- end of START GCODE --" }, + "machine_width": { "default_value": 300 }, + "material_diameter": { "default_value": 1.75 }, + "retraction_amount": { "default_value": 6 }, + "retraction_enable": { "default_value": true }, + "retraction_speed": { "default_value": 40 }, + "speed_print": { "default_value": 40 }, + "support_enable": { "default_value": true }, + "wall_thickness": { "value": "1.2" } } -} +} \ No newline at end of file diff --git a/resources/definitions/jgaurora_a3s.def.json b/resources/definitions/jgaurora_a3s.def.json index 2427f961c1..0c01a0c763 100644 --- a/resources/definitions/jgaurora_a3s.def.json +++ b/resources/definitions/jgaurora_a3s.def.json @@ -1,72 +1,35 @@ { - "name": "JGAurora A3S", "version": 2, + "name": "JGAurora A3S", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Samuel Pinches", "manufacturer": "JGAurora", "file_formats": "text/x-gcode", - "preferred_quality_type": "normal", - "machine_extruder_trains": - { - "0": "jgaurora_a3s_extruder_0" - } + "machine_extruder_trains": { "0": "jgaurora_a3s_extruder_0" }, + "preferred_quality_type": "normal" }, - "overrides": { - "machine_name": { - "default_value": "JGAurora A3S" - }, - "machine_start_gcode": { - "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 ;home all axis\nG92 E0 ;zero the extruded length\nG1 Z1 F1000 ;move up slightly\nG1 X60.0 Z0 E9.0 F1000.0;intro line\nG1 X100.0 E21.5 F1000.0 ;continue line\nG92 E0 ;zero the extruded length again\n; -- end of START GCODE --" - }, - "machine_end_gcode": { - "default_value": "; -- END GCODE --\nM104 S0 ;turn off nozzle heater\nM140 S0 ;turn off bed heater\nG91 ;set to relative positioning\nG1 E-10 F300 ;retract the filament slightly\nG90 ;set to absolute positioning\nG28 X0 ;move to the X-axis origin (Home)\nG0 Y200 F600 ;bring the bed to the front for easy print removal\nM84 ;turn off stepper motors\n; -- end of END GCODE --" - }, - "machine_width": { - "default_value": 205 - }, - "machine_height": { - "default_value": 205 - }, - "machine_depth": { - "default_value": 205 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": false - }, - "gantry_height": { - "value": "10" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "material_diameter": { - "default_value": 1.75 - }, - "layer_height_0": { - "default_value": 0.12 - }, - "wall_thickness": { - "value": "1.2" - }, - "speed_print": { - "default_value": 35 - }, - "support_enable": { - "default_value": true - }, - "retraction_enable": { - "default_value": true - }, - "retraction_amount": { - "default_value": 8 - }, - "retraction_speed": { - "default_value": 45 - } + "overrides": + { + "gantry_height": { "value": "10" }, + "layer_height_0": { "default_value": 0.12 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 205 }, + "machine_end_gcode": { "default_value": "; -- END GCODE --\nM104 S0 ;turn off nozzle heater\nM140 S0 ;turn off bed heater\nG91 ;set to relative positioning\nG1 E-10 F300 ;retract the filament slightly\nG90 ;set to absolute positioning\nG28 X0 ;move to the X-axis origin (Home)\nG0 Y200 F600 ;bring the bed to the front for easy print removal\nM84 ;turn off stepper motors\n; -- end of END GCODE --" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 205 }, + "machine_name": { "default_value": "JGAurora A3S" }, + "machine_start_gcode": { "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 ;home all axis\nG92 E0 ;zero the extruded length\nG1 Z1 F1000 ;move up slightly\nG1 X60.0 Z0 E9.0 F1000.0;intro line\nG1 X100.0 E21.5 F1000.0 ;continue line\nG92 E0 ;zero the extruded length again\n; -- end of START GCODE --" }, + "machine_width": { "default_value": 205 }, + "material_diameter": { "default_value": 1.75 }, + "retraction_amount": { "default_value": 8 }, + "retraction_enable": { "default_value": true }, + "retraction_speed": { "default_value": 45 }, + "speed_print": { "default_value": 35 }, + "support_enable": { "default_value": true }, + "wall_thickness": { "value": "1.2" } } -} +} \ No newline at end of file diff --git a/resources/definitions/jgaurora_a5.def.json b/resources/definitions/jgaurora_a5.def.json index 7ecd84c826..88cfb7dc33 100644 --- a/resources/definitions/jgaurora_a5.def.json +++ b/resources/definitions/jgaurora_a5.def.json @@ -1,74 +1,41 @@ { - "name": "JGAurora A5 & A5S", "version": 2, + "name": "JGAurora A5 & A5S", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Samuel Pinches", "manufacturer": "JGAurora", "file_formats": "text/x-gcode", "platform": "jgaurora_a5.3mf", - "platform_offset": [-242, -101, 273], - "preferred_quality_type": "fast", - "machine_extruder_trains": - { - "0": "jgaurora_a5_extruder_0" - } + "machine_extruder_trains": { "0": "jgaurora_a5_extruder_0" }, + "platform_offset": [ + -242, + -101, + 273 + ], + "preferred_quality_type": "fast" }, - "overrides": { - "machine_name": { - "default_value": "JGAurora A5 & A5S" - }, - "machine_start_gcode": { - "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 ;home all axis\nM420 S1 ;turn on mesh bed levelling if enabled in firmware\nG92 E0 ;zero the extruded length\nG1 Z1 F1000 ;move up slightly\nG1 X60.0 Z0 E9.0 F1000.0;intro line\nG1 X100.0 E21.5 F1000.0 ;continue line\nG92 E0 ;zero the extruded length again\n; -- end of START GCODE --" - }, - "machine_end_gcode": { - "default_value": "; -- END GCODE --\nM104 S0 ;turn off nozzle heater\nM140 S0 ;turn off bed heater\nG91 ;set to relative positioning\nG1 E-10 F300 ;retract the filament slightly\nG90 ;set to absolute positioning\nG28 X0 ;move to the X-axis origin (Home)\nG0 Y280 F600 ;bring the bed to the front for easy print removal\nM84 ;turn off stepper motors\n; -- end of END GCODE --" - }, - "machine_width": { - "default_value": 300 - }, - "machine_height": { - "default_value": 320 - }, - "machine_depth": { - "default_value": 300 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": false - }, - "gantry_height": { - "value": "10" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "material_diameter": { - "default_value": 1.75 - }, - "layer_height_0": { - "default_value": 0.12 - }, - "wall_thickness": { - "value": "1.2" - }, - "speed_print": { - "default_value": 40 - }, - "support_enable": { - "default_value": true - }, - "retraction_enable": { - "default_value": true - }, - "retraction_amount": { - "default_value": 8 - }, - "retraction_speed": { - "default_value": 45 - } + "overrides": + { + "gantry_height": { "value": "10" }, + "layer_height_0": { "default_value": 0.12 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "; -- END GCODE --\nM104 S0 ;turn off nozzle heater\nM140 S0 ;turn off bed heater\nG91 ;set to relative positioning\nG1 E-10 F300 ;retract the filament slightly\nG90 ;set to absolute positioning\nG28 X0 ;move to the X-axis origin (Home)\nG0 Y280 F600 ;bring the bed to the front for easy print removal\nM84 ;turn off stepper motors\n; -- end of END GCODE --" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 320 }, + "machine_name": { "default_value": "JGAurora A5 & A5S" }, + "machine_start_gcode": { "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 ;home all axis\nM420 S1 ;turn on mesh bed levelling if enabled in firmware\nG92 E0 ;zero the extruded length\nG1 Z1 F1000 ;move up slightly\nG1 X60.0 Z0 E9.0 F1000.0;intro line\nG1 X100.0 E21.5 F1000.0 ;continue line\nG92 E0 ;zero the extruded length again\n; -- end of START GCODE --" }, + "machine_width": { "default_value": 300 }, + "material_diameter": { "default_value": 1.75 }, + "retraction_amount": { "default_value": 8 }, + "retraction_enable": { "default_value": true }, + "retraction_speed": { "default_value": 45 }, + "speed_print": { "default_value": 40 }, + "support_enable": { "default_value": true }, + "wall_thickness": { "value": "1.2" } } -} +} \ No newline at end of file diff --git a/resources/definitions/jgaurora_a6.def.json b/resources/definitions/jgaurora_a6.def.json index 523285c8e5..f5cb0e9001 100644 --- a/resources/definitions/jgaurora_a6.def.json +++ b/resources/definitions/jgaurora_a6.def.json @@ -2,47 +2,41 @@ "version": 2, "name": "JGAurora A6", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "CrissR", "manufacturer": "JGAurora", "file_formats": "text/x-gcode", "platform": "jgaurora_a6_platform.stl", - "supports_usb_connection": true, - "supports_network_connection": false, - "has_machine_quality": true, - "quality_definition": "jgaurora_a6", - "has_variants": false, - "preferred_quality_type": "normal", - "machine_extruder_trains": - { - "0": "jgaurora_a6_extruder_0" - } + "has_machine_quality": true, + "has_variants": false, + "machine_extruder_trains": { "0": "jgaurora_a6_extruder_0" }, + "preferred_quality_type": "normal", + "quality_definition": "jgaurora_a6", + "supports_network_connection": false, + "supports_usb_connection": true }, - - "overrides": { - "machine_name": { "default_value": "JGAurora A6" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 300 }, - "machine_height": { "default_value": 200 }, - "machine_depth": { "default_value": 200 }, - "machine_center_is_zero": { "default_value": false }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "gantry_height": { "value": 10 }, "layer_height": { "default_value": 0.16 }, "layer_height_0": { "default_value": 0.2 }, - "retraction_enable": { "default_value": true }, - "retraction_amount": { "default_value": 4 }, - "retraction_speed": { "default_value": 45 }, - "adhesion_type": { "default_value": "skirt" }, - "speed_print": { "default_value": 60}, - "gantry_height": { "value": 10 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0;heated bed heater off\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 F{travel_speed} ;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\nM104 S0 ; turn off extruder\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X178 Y180 F4200 ; park print head\nM84 ; disable motors" }, "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "M190 S{print_bed_temperature} ;bed temperature line\nM109 S{print_temperature} ;temperature line\nG21 ;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 F{travel_speed} ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nF200 E3;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F{travel_speed}\nG1 Z0.0 F{travel_speed}\nM117 Printing... ;LCD Message" - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off\nM140 S0;heated bed heater off\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 F{travel_speed} ;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\nM104 S0 ; turn off extruder\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X178 Y180 F4200 ; park print head\nM84 ; disable motors" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "JGAurora A6" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_start_gcode": { "default_value": "M190 S{print_bed_temperature} ;bed temperature line\nM109 S{print_temperature} ;temperature line\nG21 ;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 F{travel_speed} ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nF200 E3;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F{travel_speed}\nG1 Z0.0 F{travel_speed}\nM117 Printing... ;LCD Message" }, + "machine_width": { "default_value": 300 }, + "material_diameter": { "default_value": 1.75 }, + "retraction_amount": { "default_value": 4 }, + "retraction_enable": { "default_value": true }, + "retraction_speed": { "default_value": 45 }, + "speed_print": { "default_value": 60 } } -} +} \ No newline at end of file diff --git a/resources/definitions/jgaurora_jgmaker_magic.def.json b/resources/definitions/jgaurora_jgmaker_magic.def.json index 58067b6dd3..b94cfdcac7 100644 --- a/resources/definitions/jgaurora_jgmaker_magic.def.json +++ b/resources/definitions/jgaurora_jgmaker_magic.def.json @@ -1,72 +1,35 @@ { - "name": "JGAurora JGMaker Magic", "version": 2, + "name": "JGAurora JGMaker Magic", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Samuel Pinches", "manufacturer": "JGAurora", "file_formats": "text/x-gcode", - "preferred_quality_type": "fast", - "machine_extruder_trains": - { - "0": "jgaurora_jgmaker_magic_extruder_0" - } + "machine_extruder_trains": { "0": "jgaurora_jgmaker_magic_extruder_0" }, + "preferred_quality_type": "fast" }, - "overrides": { - "machine_name": { - "default_value": "JGAurora JGMaker Magic" - }, - "machine_start_gcode": { - "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 ;home all axis\nM420 S1 ;turn on mesh bed levelling if enabled in firmware\nG92 E0 ;zero the extruded length\nG1 Z1 F1000 ;move up slightly\nG1 X60.0 Z0 E9.0 F1000.0;intro line\nG1 X100.0 E21.5 F1000.0 ;continue line\nG92 E0 ;zero the extruded length again\n; -- end of START GCODE --" - }, - "machine_end_gcode": { - "default_value": "; -- END GCODE --\nM104 S0 ;turn off nozzle heater\nM140 S0 ;turn off bed heater\nG91 ;set to relative positioning\nG1 E-10 F300 ;retract the filament slightly\nG90 ;set to absolute positioning\nG28 X0 ;move to the X-axis origin (Home)\nG0 Y280 F600 ;bring the bed to the front for easy print removal\nM84 ;turn off stepper motors\n; -- end of END GCODE --" - }, - "machine_width": { - "default_value": 220 - }, - "machine_height": { - "default_value": 250 - }, - "machine_depth": { - "default_value": 220 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": false - }, - "gantry_height": { - "value": "10" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "material_diameter": { - "default_value": 1.75 - }, - "layer_height_0": { - "default_value": 0.2 - }, - "wall_thickness": { - "value": "1.2" - }, - "speed_print": { - "default_value": 60 - }, - "support_enable": { - "default_value": true - }, - "retraction_enable": { - "default_value": true - }, - "retraction_amount": { - "default_value": 5 - }, - "retraction_speed": { - "default_value": 50 - } + "overrides": + { + "gantry_height": { "value": "10" }, + "layer_height_0": { "default_value": 0.2 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "; -- END GCODE --\nM104 S0 ;turn off nozzle heater\nM140 S0 ;turn off bed heater\nG91 ;set to relative positioning\nG1 E-10 F300 ;retract the filament slightly\nG90 ;set to absolute positioning\nG28 X0 ;move to the X-axis origin (Home)\nG0 Y280 F600 ;bring the bed to the front for easy print removal\nM84 ;turn off stepper motors\n; -- end of END GCODE --" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "JGAurora JGMaker Magic" }, + "machine_start_gcode": { "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 ;home all axis\nM420 S1 ;turn on mesh bed levelling if enabled in firmware\nG92 E0 ;zero the extruded length\nG1 Z1 F1000 ;move up slightly\nG1 X60.0 Z0 E9.0 F1000.0;intro line\nG1 X100.0 E21.5 F1000.0 ;continue line\nG92 E0 ;zero the extruded length again\n; -- end of START GCODE --" }, + "machine_width": { "default_value": 220 }, + "material_diameter": { "default_value": 1.75 }, + "retraction_amount": { "default_value": 5 }, + "retraction_enable": { "default_value": true }, + "retraction_speed": { "default_value": 50 }, + "speed_print": { "default_value": 60 }, + "support_enable": { "default_value": true }, + "wall_thickness": { "value": "1.2" } } -} +} \ No newline at end of file diff --git a/resources/definitions/jgaurora_z_603s.def.json b/resources/definitions/jgaurora_z_603s.def.json index d122500dfb..c7a5d4aec4 100644 --- a/resources/definitions/jgaurora_z_603s.def.json +++ b/resources/definitions/jgaurora_z_603s.def.json @@ -1,72 +1,35 @@ { - "name": "JGAurora Z-603S", "version": 2, + "name": "JGAurora Z-603S", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Samuel Pinches", "manufacturer": "JGAurora", "file_formats": "text/x-gcode", - "preferred_quality_type": "fast", - "machine_extruder_trains": - { - "0": "jgaurora_z_603s_extruder_0" - } + "machine_extruder_trains": { "0": "jgaurora_z_603s_extruder_0" }, + "preferred_quality_type": "fast" }, - "overrides": { - "machine_name": { - "default_value": "JGAurora Z-603S" - }, - "machine_start_gcode": { - "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 ;home all axis\nM420 S1 ;turn on mesh bed levelling if enabled in firmware\nG92 E0 ;zero the extruded length\nG1 Z1 F1000 ;move up slightly\nG1 X60.0 Z0 E9.0 F1000.0;intro line\nG1 X100.0 E21.5 F1000.0 ;continue line\nG92 E0 ;zero the extruded length again\n; -- end of START GCODE --" - }, - "machine_end_gcode": { - "default_value": "; -- END GCODE --\nM104 S0 ;turn off nozzle heater\nM140 S0 ;turn off bed heater\nG91 ;set to relative positioning\nG1 E-10 F300 ;retract the filament slightly\nG90 ;set to absolute positioning\nG28 X0 Y0 F600 ;move to the X/Y-axis origin (Home)\nM84 ;turn off stepper motors\n; -- end of END GCODE --" - }, - "machine_width": { - "default_value": 280 - }, - "machine_height": { - "default_value": 175 - }, - "machine_depth": { - "default_value": 180 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": false - }, - "gantry_height": { - "value": "10" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "material_diameter": { - "default_value": 1.75 - }, - "layer_height_0": { - "default_value": 0.2 - }, - "wall_thickness": { - "value": "1.2" - }, - "speed_print": { - "default_value": 60 - }, - "support_enable": { - "default_value": true - }, - "retraction_enable": { - "default_value": true - }, - "retraction_amount": { - "default_value": 5 - }, - "retraction_speed": { - "default_value": 50 - } + "overrides": + { + "gantry_height": { "value": "10" }, + "layer_height_0": { "default_value": 0.2 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 180 }, + "machine_end_gcode": { "default_value": "; -- END GCODE --\nM104 S0 ;turn off nozzle heater\nM140 S0 ;turn off bed heater\nG91 ;set to relative positioning\nG1 E-10 F300 ;retract the filament slightly\nG90 ;set to absolute positioning\nG28 X0 Y0 F600 ;move to the X/Y-axis origin (Home)\nM84 ;turn off stepper motors\n; -- end of END GCODE --" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 175 }, + "machine_name": { "default_value": "JGAurora Z-603S" }, + "machine_start_gcode": { "default_value": "; -- START GCODE --\nG21 ;set units to millimetres\nG90 ;set to absolute positioning\nM106 S0 ;set fan speed to zero (turned off)\nG28 ;home all axis\nM420 S1 ;turn on mesh bed levelling if enabled in firmware\nG92 E0 ;zero the extruded length\nG1 Z1 F1000 ;move up slightly\nG1 X60.0 Z0 E9.0 F1000.0;intro line\nG1 X100.0 E21.5 F1000.0 ;continue line\nG92 E0 ;zero the extruded length again\n; -- end of START GCODE --" }, + "machine_width": { "default_value": 280 }, + "material_diameter": { "default_value": 1.75 }, + "retraction_amount": { "default_value": 5 }, + "retraction_enable": { "default_value": true }, + "retraction_speed": { "default_value": 50 }, + "speed_print": { "default_value": 60 }, + "support_enable": { "default_value": true }, + "wall_thickness": { "value": "1.2" } } -} +} \ No newline at end of file diff --git a/resources/definitions/julia.def.json b/resources/definitions/julia.def.json index 2055191e61..6041b03df1 100644 --- a/resources/definitions/julia.def.json +++ b/resources/definitions/julia.def.json @@ -1,41 +1,39 @@ { - "name": "Julia", "version": 2, + "name": "Julia", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "manufacturer": "Fracktal", "file_formats": "text/x-gcode", - "platform_offset": [ 0, 0, 0], - "machine_extruder_trains": - { - "0": "julia_extruder_0" - } + "machine_extruder_trains": { "0": "julia_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ] }, - - "overrides": { - "machine_start_gcode": { - "default_value": " ;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {infill_sparse_density}\n ;metric values\n M107\n G28\n G29\n G90 ;absolute positioning\n G92 E0; reset extruder distance\n G1 Z5 F300 ;move nozzle up 5mm for safe homing\n G1 X0 Y0 Z0 F5000; move nozzle to home\n M300 S600P200\n M300 S800 P200\n M190 S{material_bed_temperature} ;Uncomment to add your own bed temperature line\n M109 S{material_print_temperature} ;Uncomment to add your own temperature line\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E3 ;extrude 3mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel}\n ;Put printing message on LCD screen\n M117 Printing...\n" - }, - "machine_end_gcode": { - "default_value": " M104 S0 ;extruder heater off\n M140 S0 ;heated bed heater off (if you have it)\n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning\n" - }, + "overrides": + { + "infill_sparse_density": { "default_value": 10 }, "layer_height": { "default_value": 0.2 }, - "support_angle": { "default_value": 30 }, "layer_height_0": { "default_value": 0.2 }, - "speed_print": { "default_value": 80 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 250 }, + "machine_end_gcode": { "default_value": " M104 S0 ;extruder heater off\n M140 S0 ;heated bed heater off (if you have it)\n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning\n" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 260 }, + "machine_name": { "default_value": "Julia V2" }, + "machine_start_gcode": { "default_value": " ;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {infill_sparse_density}\n ;metric values\n M107\n G28\n G29\n G90 ;absolute positioning\n G92 E0; reset extruder distance\n G1 Z5 F300 ;move nozzle up 5mm for safe homing\n G1 X0 Y0 Z0 F5000; move nozzle to home\n M300 S600P200\n M300 S800 P200\n M190 S{material_bed_temperature} ;Uncomment to add your own bed temperature line\n M109 S{material_print_temperature} ;Uncomment to add your own temperature line\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E3 ;extrude 3mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel}\n ;Put printing message on LCD screen\n M117 Printing...\n" }, + "machine_width": { "default_value": 210 }, "prime_tower_size": { "default_value": 8.660254037844387 }, "retraction_amount": { "default_value": 3 }, - "support_pattern": { "default_value": "grid" }, - "infill_sparse_density": { "default_value": 10 }, - "machine_extruder_count": { "default_value": 1 }, "retraction_combing": { "value": "'off'" }, - "machine_heated_bed": { "default_value": true }, - "machine_center_is_zero": { "default_value": false }, - "machine_height": { "default_value": 260 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_depth": { "default_value": 250 }, - "machine_width": { "default_value": 210 }, - "machine_name": { "default_value": "Julia V2" } + "speed_print": { "default_value": 80 }, + "support_angle": { "default_value": 30 }, + "support_pattern": { "default_value": "grid" } } -} +} \ No newline at end of file diff --git a/resources/definitions/kemiq_q2_beta.def.json b/resources/definitions/kemiq_q2_beta.def.json index 8957e75a28..decefe103d 100644 --- a/resources/definitions/kemiq_q2_beta.def.json +++ b/resources/definitions/kemiq_q2_beta.def.json @@ -2,7 +2,8 @@ "version": 2, "name": "Kemiq Q2 Beta", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Kemiq", "manufacturer": "Kemiq", @@ -10,47 +11,21 @@ "platform": "kemiq_q2.3mf", "has_machine_quality": true, "has_materials": true, - "machine_extruder_trains": - { - "0": "kemiq_q2_beta_extruder_0" - } + "machine_extruder_trains": { "0": "kemiq_q2_beta_extruder_0" } }, - - "overrides": { + "overrides": + { + "gantry_height": { "value": "0" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84\nM80 ;Lights Off" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 273 }, "machine_name": { "default_value": "Kemiq Q2 Beta" }, - - "machine_width": { - "default_value": 190 - }, - "machine_depth": { - "default_value": 200 - }, - "machine_height": { - "default_value": 273 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_nozzle_heat_up_speed": { - "default_value": 2 - }, - "machine_nozzle_cool_down_speed": { - "default_value": 2 - }, - "gantry_height": { - "value": "0" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F6000 ;Move the platform down 15mm\nG92 E0\nG1 F200 E3\nG92 E0\nM80 ;Lights On" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84\nM80 ;Lights Off" - } + "machine_nozzle_cool_down_speed": { "default_value": 2 }, + "machine_nozzle_heat_up_speed": { "default_value": 2 }, + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F6000 ;Move the platform down 15mm\nG92 E0\nG1 F200 E3\nG92 E0\nM80 ;Lights On" }, + "machine_width": { "default_value": 190 } } -} +} \ No newline at end of file diff --git a/resources/definitions/kemiq_q2_gama.def.json b/resources/definitions/kemiq_q2_gama.def.json index 6bb99125ef..36f63c530b 100644 --- a/resources/definitions/kemiq_q2_gama.def.json +++ b/resources/definitions/kemiq_q2_gama.def.json @@ -2,7 +2,8 @@ "version": 2, "name": "Kemiq Q2 Gama", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Kemiq", "manufacturer": "Kemiq", @@ -10,48 +11,21 @@ "platform": "kemiq_q2.3mf", "has_machine_quality": true, "has_materials": true, - "machine_extruder_trains": - { - "0": "kemiq_q2_gama_extruder_0" - } + "machine_extruder_trains": { "0": "kemiq_q2_gama_extruder_0" } }, - - "overrides": { - "machine_name": { - "default_value": "Kemiq Q2 Gama" - }, - "machine_width": { - "default_value": 190 - }, - "machine_depth": { - "default_value": 200 - }, - "machine_height": { - "default_value": 273 - }, - "machine_heated_bed": { - "default_value": false - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_nozzle_heat_up_speed": { - "default_value": 2 - }, - "machine_nozzle_cool_down_speed": { - "default_value": 2 - }, - "gantry_height": { - "value": "0" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F6000 ;Move the platform down 15mm\nG92 E0\nG1 F200 E3\nG92 E0\nM80 ;Lights On" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84\nM80 ;Lights Off" - } + "overrides": + { + "gantry_height": { "value": "0" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84\nM80 ;Lights Off" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 273 }, + "machine_name": { "default_value": "Kemiq Q2 Gama" }, + "machine_nozzle_cool_down_speed": { "default_value": 2 }, + "machine_nozzle_heat_up_speed": { "default_value": 2 }, + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F6000 ;Move the platform down 15mm\nG92 E0\nG1 F200 E3\nG92 E0\nM80 ;Lights On" }, + "machine_width": { "default_value": 190 } } -} +} \ No newline at end of file diff --git a/resources/definitions/key3d_tyro.def.json b/resources/definitions/key3d_tyro.def.json index 0bfc78c115..3e8630ea81 100644 --- a/resources/definitions/key3d_tyro.def.json +++ b/resources/definitions/key3d_tyro.def.json @@ -1,38 +1,33 @@ { - "name": "Tyro", "version": 2, + "name": "Tyro", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "DragonJe", "manufacturer": "Key3D", "file_formats": "text/x-gcode", - "platform_offset": [0, 0, 0], + "has_machine_quality": true, "has_materials": true, "has_variants": false, - "preferred_quality_type": "normal", - "has_machine_quality": true, + "machine_extruder_trains": { "0": "key3d_tyro_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ], "preferred_material": "generic_pla", - "machine_extruder_trains": - { - "0": "key3d_tyro_extruder_0" - } + "preferred_quality_type": "normal" }, - - "overrides": { - "machine_name": { - "default_value": "Tyro" - }, - "machine_width": { - "default_value": 150 - }, - "machine_height": { - "default_value": 150 - }, - "machine_depth": { - "default_value": 150 - }, - "machine_head_with_fans_polygon": { + "overrides": + { + "gantry_height": { "value": "30" }, + "machine_depth": { "default_value": 150 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\n ; Retract the filament\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ [-30, 34], [-30, -32], @@ -40,26 +35,12 @@ [30, 34] ] }, - "gantry_height": { - "value": "30" - }, - "machine_heated_bed": { - "default_value": false - }, - "machine_heated_build_volume": { - "default_value": false - }, - "material_diameter": { - "default_value": 1.75 - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G28 ; Home\nG1 Z15.0 F6000 ; Move Z axis up 15mm\n ; Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\n ; Retract the filament\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" - } + "machine_heated_bed": { "default_value": false }, + "machine_heated_build_volume": { "default_value": false }, + "machine_height": { "default_value": 150 }, + "machine_name": { "default_value": "Tyro" }, + "machine_start_gcode": { "default_value": "G28 ; Home\nG1 Z15.0 F6000 ; Move Z axis up 15mm\n ; Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" }, + "machine_width": { "default_value": 150 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/definitions/kingroon_base.def.json b/resources/definitions/kingroon_base.def.json index a8dd8725e2..5f23b602b9 100644 --- a/resources/definitions/kingroon_base.def.json +++ b/resources/definitions/kingroon_base.def.json @@ -1,26 +1,13 @@ { - "name": "Kingroon Base Printer", "version": 2, + "name": "Kingroon Base Printer", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": false, "author": "notamu", "manufacturer": "Kingroon", "file_formats": "text/x-gcode", - "first_start_actions": ["MachineSettingsAction"], - - "machine_extruder_trains": { - "0": "kingroon_base_extruder_0" - }, - - "has_materials": true, - "has_variants": true, - "has_machine_quality": true, - "variants_name": "Nozzle Size", - - "preferred_variant_name": "0.4mm Nozzle", - "preferred_quality_type": "standard", - "preferred_material": "generic_pla", "exclude_materials": [ "3D-Fuel_PLA_PRO_Black", "3D-Fuel_PLA_SnapSupport", @@ -124,153 +111,133 @@ "volumic_strong_ultra", "zyyx_pro_flex", "zyyx_pro_pla" - ] + ], + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "kingroon_base_extruder_0" }, + "preferred_material": "generic_pla", + "preferred_quality_type": "standard", + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Size" }, - "overrides": { - "machine_name": { "default_value": "Kingroon Base Printer" }, - "machine_start_gcode": { "default_value": "G28 ; home all axes\n M117 Purge extruder\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface\n G1 X2 Y20 Z0.3 F5000.0 ; move to start-line position\n G1 X2 Y175.0 Z0.3 F1500.0 E15 ; draw 1st line\n G1 X2 Y175.0 Z0.4 F5000.0 ; move to side a little\n G1 X2 Y20 Z0.4 F1500.0 E30 ; draw 2nd line\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface"}, - "machine_end_gcode": { "default_value": "G91; relative positioning\n G1 Z1.0 F3000 ; move z up little to prevent scratching of print\n G90; absolute positioning\n G1 X0 Y200 F1000 ; prepare for part removal\n M104 S0; turn off extruder\n M140 S0 ; turn off bed\n G1 X0 Y300 F1000 ; prepare for part removal\n M84 ; disable motors\n M106 S0 ; turn off fan" }, - - "machine_width": { "default_value": 180 }, - "machine_depth": { "default_value": 180 }, - "machine_height": { "default_value": 180 }, - - "machine_max_feedrate_x": { "default_value": 100 }, - "machine_max_feedrate_y": { "default_value": 100 }, - "machine_max_feedrate_z": { "default_value": 10 }, - "machine_max_feedrate_e": { "default_value": 100 }, - - "machine_max_acceleration_x": { "default_value": 500 }, - "machine_max_acceleration_y": { "default_value": 500 }, - "machine_max_acceleration_z": { "default_value": 50 }, - "machine_max_acceleration_e": { "default_value": 500 }, - "machine_acceleration": { "default_value": 500 }, - - "machine_max_jerk_xy": { "default_value": 10 }, - "machine_max_jerk_z": { "default_value": 0.3 }, - "machine_max_jerk_e": { "default_value": 5 }, - - "machine_heated_bed": { "default_value": true }, - - "material_diameter": { "default_value": 1.75 }, - + "overrides": + { + "acceleration_enabled": { "value": false }, "acceleration_print": { "value": 500 }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, "acceleration_travel": { "value": 500 }, "acceleration_travel_layer_0": { "value": "acceleration_travel" }, - "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, - + "adaptive_layer_height_variation": { "value": 0.04 }, + "adaptive_layer_height_variation_step": { "value": 0.04 }, + "adhesion_type": { "value": "'none' if support_enable else 'skirt'" }, + "brim_replaces_support": { "value": false }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "value": 10 }, + "default_material_bed_temperature": { "maximum_value": "150" }, + "default_material_print_temperature": + { + "maximum_value": "275", + "maximum_value_warning": "260" + }, + "fill_outline_gaps": { "value": false }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 30.0 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_sparse_density": { "value": "15" }, + "infill_wipe_dist": { "value": 0.0 }, + "jerk_enabled": { "value": false }, "jerk_print": { "value": 8 }, "jerk_travel": { "value": "jerk_print" }, "jerk_travel_layer_0": { "value": "jerk_travel" }, - - "acceleration_enabled": { "value": false }, - "jerk_enabled": { "value": false }, - - "default_material_print_temperature": { "maximum_value_warning": "260", "maximum_value": "275" }, - "default_material_bed_temperature": { "maximum_value": "150" }, - - "speed_print": { "value": 60.0 } , - "speed_infill": { "value": "speed_print" }, - "speed_wall": { "value": "speed_print / 2" }, - "speed_wall_0": { "value": "speed_wall" }, - "speed_wall_x": { "value": "speed_wall" }, - "speed_topbottom": { "value": "speed_print / 2" }, - "speed_roofing": { "value": "speed_topbottom" }, - "speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" }, - "speed_layer_0": { "value": 20.0 }, - "speed_print_layer_0": { "value": "speed_layer_0" }, - "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, - "speed_prime_tower": { "value": "speed_topbottom" }, - "speed_support": { "value": "speed_wall_0" }, - "speed_support_interface": { "value": "speed_topbottom" }, - "speed_z_hop": { "value": 5 }, - - "skirt_brim_speed": { "value": "speed_layer_0" }, - "line_width": { "value": "machine_nozzle_size * 1.1" }, - - "optimize_wall_printing_order": { "value": true }, - - "material_initial_print_temperature": { "value": "material_print_temperature" }, + "machine_acceleration": { "default_value": 500 }, + "machine_depth": { "default_value": 180 }, + "machine_end_gcode": { "default_value": "G91; relative positioning\n G1 Z1.0 F3000 ; move z up little to prevent scratching of print\n G90; absolute positioning\n M104 S0; turn off extruder\n M140 S0 ; turn off bed\n G1 X0 Y175 F1000 ; prepare for part removal\n M84 ; disable motors\n M106 S0 ; turn off fan" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 180 }, + "machine_max_acceleration_e": { "default_value": 500 }, + "machine_max_acceleration_x": { "default_value": 500 }, + "machine_max_acceleration_y": { "default_value": 500 }, + "machine_max_acceleration_z": { "default_value": 50 }, + "machine_max_feedrate_e": { "default_value": 100 }, + "machine_max_feedrate_x": { "default_value": 100 }, + "machine_max_feedrate_y": { "default_value": 100 }, + "machine_max_feedrate_z": { "default_value": 10 }, + "machine_max_jerk_e": { "default_value": 5 }, + "machine_max_jerk_xy": { "default_value": 10 }, + "machine_max_jerk_z": { "default_value": 0.3 }, + "machine_name": { "default_value": "Kingroon Base Printer" }, + "machine_start_gcode": { "default_value": "G28 ; home all axes\n M117 Purge extruder\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface\n G1 X2 Y20 Z0.3 F5000.0 ; move to start-line position\n G1 X2 Y175.0 Z0.3 F1500.0 E15 ; draw 1st line\n G1 X2 Y175.0 Z0.4 F5000.0 ; move to side a little\n G1 X2 Y20 Z0.4 F1500.0 E30 ; draw 2nd line\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface" }, + "machine_width": { "default_value": 180 }, + "material_diameter": { "default_value": 1.75 }, "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_flow": { "value": 100 }, - - "z_seam_type": { "value": "'back'" }, - "z_seam_corner": { "value": "'z_seam_corner_none'" }, - - "infill_sparse_density": { "value": "15" }, - "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, - "infill_before_walls": { "value": false }, - "infill_overlap": { "value": 30.0 }, - "skin_overlap": { "value": 10.0 }, - "infill_wipe_dist": { "value": 0.0 }, - "wall_0_wipe_dist": { "value": 0.0 }, - - "fill_outline_gaps": { "value": false }, - - "retraction_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 - }, - "retraction_retract_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 - }, - "retraction_prime_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 - }, - - "retraction_hop_enabled": { "value": true }, - "retraction_hop": { "value": "layer_height*2" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "meshfix_maximum_resolution": { "value": "0.05" }, + "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "optimize_wall_printing_order": { "value": true }, + "retraction_amount": { "value": 2 }, "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'infill'" }, "retraction_combing_max_distance": { "value": 30 }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 2 }, + "retraction_hop": { "value": "layer_height*2" }, + "retraction_hop_enabled": { "value": true }, + "retraction_min_travel": { "value": 1.5 }, + "retraction_prime_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "retraction_retract_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "retraction_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "skin_overlap": { "value": 10.0 }, + "skirt_brim_speed": { "value": "speed_layer_0" }, + "skirt_gap": { "value": 10.0 }, + "skirt_line_count": { "value": 4 }, + "speed_layer_0": { "value": 20.0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": 60.0 }, + "speed_roofing": { "value": "speed_topbottom" }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" }, + "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width / 2.0 / layer_height)))" }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 4 }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_interface_skip_height": { "value": 0.2 }, + "support_pattern": { "value": "'zigzag'" }, + "support_wall_count": { "value": 1 }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, "travel_avoid_other_parts": { "value": true }, "travel_avoid_supports": { "value": true }, "travel_retract_before_outer_wall": { "value": true }, - - "retraction_amount": { "value": 2 }, - "retraction_enable": { "value": true }, - "retraction_count_max": { "value": 100 }, - "retraction_extrusion_window": { "value": 2 }, - "retraction_min_travel": { "value": 1.5 }, - - "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, - "cool_fan_enabled": { "value": true }, - "cool_min_layer_time": { "value": 10 }, - - "adhesion_type": { "value": "'none' if support_enable else 'skirt'" }, - "brim_replaces_support": { "value": false }, - "skirt_gap": { "value": 10.0 }, - "skirt_line_count": { "value": 4 }, - - "adaptive_layer_height_variation": { "value": 0.04 }, - "adaptive_layer_height_variation_step": { "value": 0.04 }, - - "meshfix_maximum_resolution": { "value": "0.05" }, - "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, - - "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width / 2.0 / layer_height)))" }, - "support_pattern": { "value": "'zigzag'" }, - "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, - "support_use_towers": { "value": false }, - "support_xy_distance": { "value": "wall_line_width_0 * 2" }, - "support_xy_distance_overhang": { "value": "wall_line_width_0" }, - "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" }, - "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, - "support_wall_count": { "value": 1 }, - "support_brim_enable": { "value": true }, - "support_brim_width": { "value": 4 }, - - "support_interface_enable": { "value": true }, - "support_interface_height": { "value": "layer_height * 4" }, - "support_interface_density": { "value": 33.333 }, - "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, - "minimum_support_area": { "value": 2 }, - "minimum_interface_area": { "value": 10 }, - "top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" }, - "wall_thickness": {"value": "line_width * 2" } - + "wall_0_wipe_dist": { "value": 0.0 }, + "wall_thickness": { "value": "line_width * 2" }, + "z_seam_corner": { "value": "'z_seam_corner_none'" }, + "z_seam_type": { "value": "'back'" } } -} +} \ No newline at end of file diff --git a/resources/definitions/kingroon_kp3.def.json b/resources/definitions/kingroon_kp3.def.json index 7dc04b2cce..69e2de1644 100644 --- a/resources/definitions/kingroon_kp3.def.json +++ b/resources/definitions/kingroon_kp3.def.json @@ -1,22 +1,23 @@ { - "name": "Kingroon KP3", "version": 2, + "name": "Kingroon KP3", "inherits": "kingroon_base", - "overrides": { - "machine_name": { "default_value": "Kingroon KP3" }, - "machine_steps_per_mm_x": { "value": 80 }, - "machine_steps_per_mm_y": { "value": 80 }, - "machine_steps_per_mm_z": { "value": 400 }, - "machine_steps_per_mm_e": { "value": 95 }, - "retraction_amount": { "value": 4 }, - "retraction_speed": { "value": 40 }, - "retraction_extrusion_window": { "value": 4 }, - "speed_travel": { "value": 100 } - - }, - "metadata": { - "quality_definition": "kingroon_base", + "metadata": + { "visible": true, - "platform": "kingroon_kp3.stl" + "platform": "kingroon_kp3.stl", + "quality_definition": "kingroon_base" + }, + "overrides": + { + "machine_name": { "default_value": "Kingroon KP3" }, + "machine_steps_per_mm_e": { "value": 95 }, + "machine_steps_per_mm_x": { "value": 80 }, + "machine_steps_per_mm_y": { "value": 80 }, + "machine_steps_per_mm_z": { "value": 400 }, + "retraction_amount": { "value": 4 }, + "retraction_extrusion_window": { "value": 4 }, + "retraction_speed": { "value": 40 }, + "speed_travel": { "value": 100 } } -} +} \ No newline at end of file diff --git a/resources/definitions/kingroon_kp3s.def.json b/resources/definitions/kingroon_kp3s.def.json index 00120ed8f8..52ef5e4643 100644 --- a/resources/definitions/kingroon_kp3s.def.json +++ b/resources/definitions/kingroon_kp3s.def.json @@ -1,33 +1,34 @@ { - "name": "Kingroon KP3S", "version": 2, + "name": "Kingroon KP3S", "inherits": "kingroon_base", - "overrides": { - "machine_name": { "default_value": "Kingroon KP3S" }, - "machine_steps_per_mm_x": { "value": 160 }, - "machine_steps_per_mm_y": { "value": 160 }, - "machine_steps_per_mm_z": { "value": 800 }, - "machine_steps_per_mm_e": { "value": 764 }, + "metadata": + { + "visible": true, + "platform": "kingroon_kp3s.stl", + "quality_definition": "kingroon_base" + }, + "overrides": + { + "machine_acceleration": { "value": 1000 }, + "machine_max_acceleration_e": { "value": 1000 }, + "machine_max_acceleration_x": { "value": 1000 }, + "machine_max_acceleration_y": { "value": 1000 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_feedrate_e": { "value": 100 }, "machine_max_feedrate_x": { "value": 200 }, "machine_max_feedrate_y": { "value": 200 }, "machine_max_feedrate_z": { "value": 4 }, - "machine_max_feedrate_e": { "value": 100 }, - "machine_max_acceleration_x": { "value": 1000 }, - "machine_max_acceleration_y": { "value": 1000 }, - "machine_max_acceleration_z": { "value": 100 }, - "machine_max_acceleration_e": { "value": 1000 }, - "machine_acceleration": { "value": 1000 }, - "machine_max_jerk_xy": { "value": 15 }, + "machine_max_jerk_xy": { "value": 15 }, "machine_max_jerk_z": { "value": 0.4 }, - "retraction_amount": { "value": 1 }, - "retraction_speed": { "value": 40 }, + "machine_name": { "default_value": "Kingroon KP3S" }, + "machine_steps_per_mm_e": { "value": 764 }, + "machine_steps_per_mm_x": { "value": 160 }, + "machine_steps_per_mm_y": { "value": 160 }, + "machine_steps_per_mm_z": { "value": 800 }, + "retraction_amount": { "value": 1 }, "retraction_extrusion_window": { "value": 1 }, + "retraction_speed": { "value": 40 }, "speed_z_hop": { "value": 4 } - - }, - "metadata": { - "quality_definition": "kingroon_base", - "visible": true, - "platform": "kingroon_kp3s.stl" } -} +} \ No newline at end of file diff --git a/resources/definitions/klema_180.def.json b/resources/definitions/klema_180.def.json new file mode 100644 index 0000000000..c3bb89d36d --- /dev/null +++ b/resources/definitions/klema_180.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "KLEMA 180", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "KLEMA LTD", + "manufacturer": "KLEMA", + "file_formats": "text/x-gcode", + "has_machine_quality": false, + "has_materials": true, + "has_variants": false, + "machine_extruder_trains": { "0": "klema_180_m1_t1_extruder_1" }, + "preferred_variant_name": "Standard 0.4mm", + "quality_definition": "klema", + "variants_name": "KLEMA 180 Size" + }, + "overrides": + { + "machine_depth": { "default_value": 180 }, + "machine_end_gcode": { "default_value": "M104 S0 ;\nM140 S0 ;\nM107 ;\nG91 ;\nG1 E-1 F300 ;\nG1 Z+65 E-2 X-20 Y-20 F2000 ;\nG28 X0 Y0 ;\nG90" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 220 }, + "machine_name": { "default_value": "KLEMA 180" }, + "machine_start_gcode": { "default_value": "M140 S{material_bed_temperature_layer_0} ;\nM190 S{material_bed_temperature_layer_0} ;\nM501 ;\nM104 S150 ;\nG28 ;\nG90 ;\nG0 X0 Y0 F6000 ;\nM109 S{material_print_temperature_layer_0} ;\nG0 Z0.3 F300 ;\nG92 E0 ;\nG1 X70 E10 F500 ;\nG92 E0 ;\nG1 E-1 F500 ;\nG92 E0 ;\nG1 Z1 ;\nG1 X100 F6000 ;\nG1 E-1 F500 ;\nG92 E0" }, + "machine_width": { "default_value": 180 } + } +} \ No newline at end of file diff --git a/resources/definitions/klema_250.def.json b/resources/definitions/klema_250.def.json new file mode 100644 index 0000000000..b1552aaa0e --- /dev/null +++ b/resources/definitions/klema_250.def.json @@ -0,0 +1,34 @@ +{ + "version": 2, + "name": "KLEMA 250", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "KLEMA LTD", + "manufacturer": "KLEMA", + "file_formats": "text/x-gcode", + "has_machine_quality": false, + "has_materials": true, + "has_variants": false, + "machine_extruder_trains": { "0": "klema_250_m1_t1_extruder_1" }, + "platform_offset": [ + 0, + 0, + 0 + ], + "preferred_variant_name": "Standard 0.4mm", + "quality_definition": "klema", + "variants_name": "KLEMA 250 Size" + }, + "overrides": + { + "machine_depth": { "default_value": 250 }, + "machine_end_gcode": { "default_value": "M104 S0 ;\nM140 S0 ;\nM107 ;\nG91 ;\nG1 E-1 F300 ;\nG1 Z+65 E-2 X-20 Y-20 F2000 ;\nG28 X0 Y0 ;\nG90" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 350 }, + "machine_name": { "default_value": "KLEMA 250" }, + "machine_start_gcode": { "default_value": "M140 S{material_bed_temperature_layer_0} ;\nM190 S{material_bed_temperature_layer_0} ;\nM501 ;\nM104 S150 ;\nG28 ;\nG90 ;\nG0 X0 Y0 F6000 ;\nM109 S{material_print_temperature_layer_0} ;\nG0 Z0.3 F300 ;\nG92 E0 ;\nG1 X70 E10 F500 ;\nG92 E0 ;\nG1 E-1 F500 ;\nG92 E0 ;\nG1 Z1 ;\nG1 X100 F6000 ;\nG1 E-1 F500 ;\nG92 E0" }, + "machine_width": { "default_value": 250 } + } +} \ No newline at end of file diff --git a/resources/definitions/klema_250_pro.def.json b/resources/definitions/klema_250_pro.def.json new file mode 100644 index 0000000000..e215159b6a --- /dev/null +++ b/resources/definitions/klema_250_pro.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "KLEMA 250 Pro", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "KLEMA LTD", + "manufacturer": "KLEMA", + "file_formats": "text/x-gcode", + "has_machine_quality": false, + "has_materials": true, + "has_variants": false, + "machine_extruder_trains": { "0": "klema_250_pro_m1_t2_extruder_1" }, + "preferred_variant_name": "Standard 0.4mm", + "quality_definition": "klema", + "variants_name": "KLEMA 250 Pro Size" + }, + "overrides": + { + "machine_depth": { "default_value": 250 }, + "machine_end_gcode": { "default_value": "M104 S0 ;\nM140 S0 ;\nM107 ;\nG91 ;\nG1 E-1 F300 ;\nG1 Z+65 E-2 X-20 Y-20 F2000 ;\nG28 X0 Y0 ;\nG90" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 350 }, + "machine_name": { "default_value": "KLEMA 250 Pro" }, + "machine_start_gcode": { "default_value": "M140 S{material_bed_temperature_layer_0} ;\nM190 S{material_bed_temperature_layer_0} ;\nM501 ;\nM104 S150 ;\nG28 ;\nG90 ;\nG0 X0 Y0 F6000 ;\nM109 S{material_print_temperature_layer_0} ;\nG0 Z0.3 F300 ;\nG92 E0 ;\nG1 X70 E10 F500 ;\nG92 E0 ;\nG1 E-1 F500 ;\nG92 E0 ;\nG1 Z1 ;\nG1 X100 F6000 ;\nG1 E-1 F500 ;\nG92 E0" }, + "machine_width": { "default_value": 250 } + } +} \ No newline at end of file diff --git a/resources/definitions/klema_250_twin.def.json b/resources/definitions/klema_250_twin.def.json new file mode 100644 index 0000000000..47a6d566f2 --- /dev/null +++ b/resources/definitions/klema_250_twin.def.json @@ -0,0 +1,34 @@ +{ + "version": 2, + "name": "KLEMA 250 Twin", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "KLEMA LTD", + "manufacturer": "KLEMA", + "file_formats": "text/x-gcode", + "has_machine_quality": false, + "has_materials": true, + "has_variants": false, + "machine_extruder_trains": + { + "0": "klema_250_twin_m1_t1_extruder_1", + "1": "klema_250_twin_m1_t1_extruder_2" + }, + "preferred_variant_name": "Standard 0.4mm", + "quality_definition": "klema", + "variants_name": "KLEMA 250 Twin Size" + }, + "overrides": + { + "machine_depth": { "default_value": 250 }, + "machine_end_gcode": { "default_value": "M104 S0 ;\nM140 S0 ;\nM107 ;\nG91 ;\nG1 E-1 F300 ;\nG1 Z+65 E-2 X-20 Y-20 F2000 ;\nG28 X0 Y0 ;\nG90" }, + "machine_extruder_count": { "value": 2 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 350 }, + "machine_name": { "default_value": "KLEMA 250 Twin" }, + "machine_start_gcode": { "default_value": "M140 S{material_bed_temperature_layer_0} ;\nM190 S{material_bed_temper109 S{material_print_temperature_layer_0} ;\nG0 Z0.3 F300 ;\nG92 E0 ;\nG1 X70 E10 F500 ;\nG92 E0 ;\nG1 E-1 F500 ;\nG92 E0 ;\nG1 Z1 ;\nG1 X100 F6000 ;\nG1 E-1 F500 ;\nG92 E0" }, + "machine_width": { "default_value": 250 } + } +} \ No newline at end of file diff --git a/resources/definitions/klema_500.def.json b/resources/definitions/klema_500.def.json new file mode 100644 index 0000000000..afc1bb3dff --- /dev/null +++ b/resources/definitions/klema_500.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "KLEMA 500", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "KLEMA LTD", + "manufacturer": "KLEMA", + "file_formats": "text/x-gcode", + "has_machine_quality": false, + "has_materials": true, + "has_variants": false, + "machine_extruder_trains": { "0": "klema_500_m1_t1_extruder_1" }, + "preferred_variant_name": "Standard 0.4mm", + "quality_definition": "klema", + "variants_name": "KLEMA 500 Size" + }, + "overrides": + { + "machine_depth": { "default_value": 250 }, + "machine_end_gcode": { "default_value": "M104 S0 ;\nM140 S0 ;\nM107 ;\nG91 ;\nG1 E-1 F300 ;\nG1 Z+65 E-2 X-20 Y-20 F2000 ;\nG28 X0 Y0 ;\nG90" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 555 }, + "machine_name": { "default_value": "KLEMA 500" }, + "machine_start_gcode": { "default_value": "M140 S{material_bed_temperature_layer_0} ;\nM190 S{material_bed_temperature_layer_0} ;\nM501 ;\nM104 S150 ;\nG28 ;\nG90 ;\nG0 X0 Y0 F6000 ;\nM109 S{material_print_temperature_layer_0} ;\nG0 Z0.3 F300 ;\nG92 E0 ;\nG1 X70 E10 F500 ;\nG92 E0 ;\nG1 E-1 F500 ;\nG92 E0 ;\nG1 Z1 ;\nG1 X100 F6000 ;\nG1 E-1 F500 ;\nG92 E0" }, + "machine_width": { "default_value": 250 } + } +} \ No newline at end of file diff --git a/resources/definitions/koonovo_base.def.json b/resources/definitions/koonovo_base.def.json index bb984d6650..906293bd59 100644 --- a/resources/definitions/koonovo_base.def.json +++ b/resources/definitions/koonovo_base.def.json @@ -1,124 +1,83 @@ { - "name": "Koonovo Base Printer", "version": 2, + "name": "Koonovo Base Printer", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": false, "author": "Koonovo", "manufacturer": "Koonovo", "file_formats": "text/x-gcode", "platform": "koonovo.obj", - "platform_texture": "koonovo.png", - "first_start_actions": [ "MachineSettingsAction" ], - "machine_extruder_trains": {"0": "koonovo_base_extruder_0"}, - - "has_materials": true, "has_machine_quality": true, - - - "preferred_quality_type": "standard", - "preferred_material": "generic_pla" + "has_materials": true, + "machine_extruder_trains": { "0": "koonovo_base_extruder_0" }, + "platform_texture": "koonovo.png", + "preferred_material": "generic_pla", + "preferred_quality_type": "standard" }, - - - "overrides": { - "machine_start_gcode": { - "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Move to min endstops\nG1 Z15.0 F9000 ;move the platform down 15mm\nM117 Printing..." - }, - "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_max_feedrate_x": { "value": 200 }, - "machine_max_feedrate_y": { "value": 200 }, - "machine_max_feedrate_z": { "value": 50 }, - "machine_max_feedrate_e": { "value": 100 }, - + "overrides": + { + "acceleration_print": { "value": 500 }, + "acceleration_travel": { "value": 500 }, + "adhesion_type": { "value": "'skirt'" }, + "brim_replaces_support": { "value": false }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "value": 10 }, + "default_material_print_temperature": { "value": "195" }, + "fill_outline_gaps": { "value": false }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_sparse_density": { "value": "15" }, + "machine_acceleration": { "value": 500 }, + "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_heated_bed": { "default_value": true }, + "machine_max_acceleration_e": { "value": 2000 }, "machine_max_acceleration_x": { "value": 500 }, "machine_max_acceleration_y": { "value": 500 }, "machine_max_acceleration_z": { "value": 50 }, - "machine_max_acceleration_e": { "value": 2000 }, - "machine_acceleration": { "value": 500 }, - - "machine_heated_bed": { "default_value": true }, - - "material_diameter": { "default_value": 1.75 }, - - - "acceleration_print": { "value": 500 }, - "acceleration_travel": { "value": 500 }, - - "line_width": { "value": "machine_nozzle_size" }, - - "wall_thickness": {"value": "line_width * 2" }, - - "top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" }, - - "infill_sparse_density": { "value": "15" }, - "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, - - "material_print_temperature": { "value": "195" }, - "material_print_temperature_layer_0": { "value": "material_print_temperature" }, - "material_initial_print_temperature": { "value": "material_print_temperature" }, - "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_bed_temperature": { "value": "55" }, + "machine_max_feedrate_e": { "value": 100 }, + "machine_max_feedrate_x": { "value": 200 }, + "machine_max_feedrate_y": { "value": 200 }, + "machine_max_feedrate_z": { "value": 50 }, + "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Move to min endstops\nG1 Z15.0 F9000 ;move the platform down 15mm\nM117 Printing..." }, + "material_bed_temperature": { "value": "55" }, "material_bed_temperature_layer_0": { "value": "material_bed_temperature" }, - "material_flow": { "value": 100 }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_standby_temperature": { "value": "material_print_temperature" }, - - - "speed_print": { "value": 50.0 } , - "speed_infill": { "value": "speed_print" }, - "speed_wall": { "value": "speed_print / 2" }, - "speed_wall_0": { "value": "speed_wall" }, - "speed_wall_x": { "value": "speed_wall" }, - "speed_topbottom": { "value": "speed_print / 2" }, - "speed_travel": { "value": "120.0 if speed_print < 60 else 180.0 if speed_print > 100 else speed_print * 2.2" }, - "speed_layer_0": { "value": 25.0 }, - "speed_print_layer_0": { "value": "speed_layer_0" }, - "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 25 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, - "speed_prime_tower": { "value": "speed_topbottom" }, - "speed_support": { "value": "speed_wall_0" }, - "speed_z_hop": { "value": 5 }, - - "retraction_enable": { "value": true }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, "retraction_amount": { "value": 2.5 }, "retraction_speed": { "value": 40 }, - - "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, - "cool_fan_enabled": { "value": true }, - "cool_min_layer_time": { "value": 10 }, - - - "support_brim_enable": { "value": true }, + "skirt_gap": { "value": 6.0 }, + "skirt_line_count": { "value": 3 }, + "speed_layer_0": { "value": 25.0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": 50.0 }, + "speed_support": { "value": "speed_wall_0" }, + "speed_travel": { "value": "120.0 if speed_print < 60 else 180.0 if speed_print > 100 else speed_print * 2.2" }, + "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 25 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 5 }, "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, - "support_pattern": { "value": "'zigzag'" }, - "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, - "support_use_towers": { "value": false }, - "support_xy_distance": { "value": "wall_line_width_0 * 2" }, - "support_xy_distance_overhang": { "value": "wall_line_width_0" }, - "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, - "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, - "support_wall_count": { "value": 1 }, + "support_brim_enable": { "value": true }, "support_brim_width": { "value": 4 }, - "support_enable": { "value": true }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 33.333 }, "support_interface_enable": { "value": true }, "support_interface_height": { "value": "layer_height * 4" }, - "support_interface_density": { "value": 33.333 }, "support_interface_pattern": { "value": "'grid'" }, "support_interface_skip_height": { "value": 0.2 }, - "minimum_support_area": { "value": 2 }, - "minimum_interface_area": { "value": 10 }, - - "fill_outline_gaps": { "value": false }, - - "adhesion_type": { "value": "'skirt'" }, - "brim_replaces_support": { "value": false }, - "skirt_gap": { "value": 6.0 }, - "skirt_line_count": { "value": 3 } - - + "support_pattern": { "value": "'zigzag'" }, + "support_wall_count": { "value": 1 }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, + "wall_thickness": { "value": "line_width * 2" } } -} +} \ No newline at end of file diff --git a/resources/definitions/koonovo_elf.def.json b/resources/definitions/koonovo_elf.def.json index 03dcc6e632..a40a79545d 100644 --- a/resources/definitions/koonovo_elf.def.json +++ b/resources/definitions/koonovo_elf.def.json @@ -1,25 +1,27 @@ { - "name": "Koonovo Elf", "version": 2, + "name": "Koonovo Elf", "inherits": "koonovo_base", - "overrides": { - "machine_name": { "default_value": "Koonovo Elf" }, - "machine_width": { "default_value": 310 }, + "metadata": + { + "visible": true, + "quality_definition": "koonovo_base" + }, + "overrides": + { + "gantry_height": { "value": 0 }, "machine_depth": { "default_value": 310 }, - "machine_height": { "default_value": 345 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-26, 34], [-26, -32], [32, -32], [32, 34] ] }, - - "gantry_height": { "value": 0 } - - }, - "metadata": { - "quality_definition": "koonovo_base", - "visible": true + "machine_height": { "default_value": 345 }, + "machine_name": { "default_value": "Koonovo Elf" }, + "machine_width": { "default_value": 310 } } -} +} \ No newline at end of file diff --git a/resources/definitions/koonovo_kn3.def.json b/resources/definitions/koonovo_kn3.def.json index dc0c40837d..13981334b8 100644 --- a/resources/definitions/koonovo_kn3.def.json +++ b/resources/definitions/koonovo_kn3.def.json @@ -1,139 +1,101 @@ -{ - "name": "Koonovo KN3 Idex", - "version": 2, - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Koonovo", - "manufacturer": "Koonovo", - "file_formats": "text/x-gcode", - "platform": "koonovo_kn3.stl", - "quality_definition": "koonovo_base", - - "first_start_actions": ["MachineSettingsAction"], - "machine_extruder_trains": { - "0": "koonovo_kn3_extruder_0", - "1": "koonovo_kn3_extruder_1" - }, - - "has_materials": true, - "has_machine_quality": true, - - "preferred_quality_type": "standard", - "preferred_material": "generic_pla" - }, - - "overrides": { - "machine_name": { "default_value": "Koonovo KN3" }, - "machine_width": { "default_value": 310 }, - "machine_depth": { "default_value": 310 }, - "machine_height": { "default_value": 400 }, - "machine_head_with_fans_polygon": { "default_value": [ - [-26, 34], - [-26, -32], - [32, -32], - [32, 34] - ] - }, - - "gantry_height": { "value": 0 }, - - "machine_extruder_count": { "default_value": 2 }, - - "machine_start_gcode": { - "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Move to min endstops\nG1 Z15.0 F9000 ;move the platform down 15mm\nM117 Printing..." - }, - "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_max_feedrate_x": { "value": 200 }, - "machine_max_feedrate_y": { "value": 200 }, - "machine_max_feedrate_z": { "value": 50 }, - "machine_max_feedrate_e": { "value": 100 }, - - "machine_max_acceleration_x": { "value": 500 }, - "machine_max_acceleration_y": { "value": 500 }, - "machine_max_acceleration_z": { "value": 50 }, - "machine_max_acceleration_e": { "value": 2000 }, - "machine_acceleration": { "value": 500 }, - - "machine_heated_bed": { "default_value": true }, - - "material_diameter": { "default_value": 1.75 }, - - - "acceleration_print": { "value": 500 }, - "acceleration_travel": { "value": 500 }, - - "line_width": { "value": "machine_nozzle_size" }, - - "wall_thickness": {"value": "line_width * 2" }, - - "top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" }, - - "infill_sparse_density": { "value": "15" }, - "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, - - "material_print_temperature": { "value": "195" }, - "material_print_temperature_layer_0": { "value": "material_print_temperature" }, - "material_initial_print_temperature": { "value": "material_print_temperature" }, - "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_bed_temperature": { "value": "55" }, - "material_bed_temperature_layer_0": { "value": "material_bed_temperature" }, - "material_flow": { "value": 100 }, - "material_standby_temperature": { "value": "material_print_temperature" }, - - - "speed_print": { "value": 50.0 } , - "speed_infill": { "value": "speed_print" }, - "speed_wall": { "value": "speed_print / 2" }, - "speed_wall_0": { "value": "speed_wall" }, - "speed_wall_x": { "value": "speed_wall" }, - "speed_topbottom": { "value": "speed_print / 2" }, - "speed_travel": { "value": "120.0 if speed_print < 60 else 180.0 if speed_print > 100 else speed_print * 2.2" }, - "speed_layer_0": { "value": 25.0 }, - "speed_print_layer_0": { "value": "speed_layer_0" }, - "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 25 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, - "speed_prime_tower": { "value": "speed_topbottom" }, - "speed_support": { "value": "speed_wall_0" }, - "speed_z_hop": { "value": 5 }, - - "retraction_enable": { "value": true }, - "retraction_amount": { "value": 2.5 }, - "retraction_speed": { "value": 40 }, - - "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, - "cool_fan_enabled": { "value": true }, - "cool_min_layer_time": { "value": 10 }, - - - "support_brim_enable": { "value": true }, - "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, - "support_pattern": { "value": "'zigzag'" }, - "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, - "support_use_towers": { "value": false }, - "support_xy_distance": { "value": "wall_line_width_0 * 2" }, - "support_xy_distance_overhang": { "value": "wall_line_width_0" }, - "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, - "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, - "support_wall_count": { "value": 1 }, - "support_brim_width": { "value": 4 }, - - "support_enable": { "value": true }, - "support_interface_enable": { "value": true }, - "support_interface_height": { "value": "layer_height * 4" }, - "support_interface_density": { "value": 33.333 }, - "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, - "minimum_support_area": { "value": 2 }, - "minimum_interface_area": { "value": 10 }, - - "fill_outline_gaps": { "value": false }, - - "adhesion_type": { "value": "'skirt'" }, - "brim_replaces_support": { "value": false }, - "skirt_gap": { "value": 6.0 }, - "skirt_line_count": { "value": 3 } - } -} +{ + "version": 2, + "name": "Koonovo KN3 Idex", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Koonovo", + "manufacturer": "Koonovo", + "file_formats": "text/x-gcode", + "platform": "koonovo_kn3.stl", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "machine_extruder_trains": + { + "0": "koonovo_kn3_extruder_0", + "1": "koonovo_kn3_extruder_1" + }, + "preferred_material": "generic_pla", + "preferred_quality_type": "standard", + "quality_definition": "koonovo_base" + }, + "overrides": + { + "acceleration_print": { "value": 500 }, + "acceleration_travel": { "value": 500 }, + "adhesion_type": { "value": "'skirt'" }, + "brim_replaces_support": { "value": false }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "value": 10 }, + "default_material_bed_temperature": { "value": "55" }, + "default_material_print_temperature": { "value": "195" }, + "fill_outline_gaps": { "value": false }, + "gantry_height": { "value": 0 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_sparse_density": { "value": "15" }, + "machine_acceleration": { "value": 500 }, + "machine_depth": { "default_value": 310 }, + "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_extruder_count": { "default_value": 2 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-26, 34], + [-26, -32], + [32, -32], + [32, 34] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 400 }, + "machine_max_acceleration_e": { "value": 2000 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 50 }, + "machine_max_feedrate_e": { "value": 100 }, + "machine_max_feedrate_x": { "value": 200 }, + "machine_max_feedrate_y": { "value": 200 }, + "machine_max_feedrate_z": { "value": 50 }, + "machine_name": { "default_value": "Koonovo KN3" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Move to min endstops\nG1 Z15.0 F9000 ;move the platform down 15mm\nM117 Printing..." }, + "machine_width": { "default_value": 310 }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "material_standby_temperature": { "value": "material_print_temperature" }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "retraction_amount": { "value": 2.5 }, + "retraction_speed": { "value": 40 }, + "skirt_gap": { "value": 6.0 }, + "skirt_line_count": { "value": 3 }, + "speed_layer_0": { "value": 25.0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": 50.0 }, + "speed_support": { "value": "speed_wall_0" }, + "speed_travel": { "value": "120.0 if speed_print < 60 else 180.0 if speed_print > 100 else speed_print * 2.2" }, + "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 25 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 4 }, + "support_enable": { "value": true }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_interface_skip_height": { "value": 0.2 }, + "support_pattern": { "value": "'zigzag'" }, + "support_wall_count": { "value": 1 }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, + "wall_thickness": { "value": "line_width * 2" } + } +} \ No newline at end of file diff --git a/resources/definitions/koonovo_kn5.def.json b/resources/definitions/koonovo_kn5.def.json index 9870c85eb6..29bd0c75de 100644 --- a/resources/definitions/koonovo_kn5.def.json +++ b/resources/definitions/koonovo_kn5.def.json @@ -1,140 +1,101 @@ -{ - "name": "Koonovo KN5 Idex", - "version": 2, - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Koonovo", - "manufacturer": "Koonovo", - "file_formats": "text/x-gcode", - "platform": "koonovo_kn5.stl", - "quality_definition": "koonovo_base", - - "first_start_actions": ["MachineSettingsAction"], - "machine_extruder_trains": { - "0": "koonovo_kn5_extruder_0", - "1": "koonovo_kn5_extruder_1" - }, - - "has_materials": true, - "has_machine_quality": true, - - "preferred_quality_type": "standard", - "preferred_material": "generic_pla" - }, - - - "overrides": { - "machine_name": { "default_value": "Koonovo KN5" }, - "machine_width": { "default_value": 420 }, - "machine_depth": { "default_value": 420 }, - "machine_height": { "default_value": 400 }, - "machine_head_with_fans_polygon": { "default_value": [ - [-26, 34], - [-26, -32], - [32, -32], - [32, 34] - ] - }, - - "gantry_height": { "value": 0 }, - - - "machine_extruder_count": { "default_value": 2 }, - - "machine_start_gcode": { - "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Move to min endstops\nG1 Z15.0 F9000 ;move the platform down 15mm\nM117 Printing..." - }, - "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_max_feedrate_x": { "value": 200 }, - "machine_max_feedrate_y": { "value": 200 }, - "machine_max_feedrate_z": { "value": 50 }, - "machine_max_feedrate_e": { "value": 100 }, - - "machine_max_acceleration_x": { "value": 500 }, - "machine_max_acceleration_y": { "value": 500 }, - "machine_max_acceleration_z": { "value": 50 }, - "machine_max_acceleration_e": { "value": 2000 }, - "machine_acceleration": { "value": 500 }, - - "machine_heated_bed": { "default_value": true }, - - "material_diameter": { "default_value": 1.75 }, - - - "acceleration_print": { "value": 500 }, - "acceleration_travel": { "value": 500 }, - - "line_width": { "value": "machine_nozzle_size" }, - - "wall_thickness": {"value": "line_width * 2" }, - - "top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" }, - - "infill_sparse_density": { "value": "15" }, - "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, - - "material_print_temperature": { "value": "195" }, - "material_print_temperature_layer_0": { "value": "material_print_temperature" }, - "material_initial_print_temperature": { "value": "material_print_temperature" }, - "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_standby_temperature": { "value": "material_print_temperature" }, - "material_bed_temperature": { "value": "45" }, - "material_bed_temperature_layer_0": { "value": "material_bed_temperature" }, - "material_flow": { "value": 100 }, - - "speed_print": { "value": 50.0 } , - "speed_infill": { "value": "speed_print" }, - "speed_wall": { "value": "speed_print / 2" }, - "speed_wall_0": { "value": "speed_wall" }, - "speed_wall_x": { "value": "speed_wall" }, - "speed_topbottom": { "value": "speed_print / 2" }, - "speed_travel": { "value": "120.0 if speed_print < 60 else 180.0 if speed_print > 100 else speed_print * 2.2" }, - "speed_layer_0": { "value": 25.0 }, - "speed_print_layer_0": { "value": "speed_layer_0" }, - "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 25 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, - "speed_prime_tower": { "value": "speed_topbottom" }, - "speed_support": { "value": "speed_wall_0" }, - "speed_z_hop": { "value": 5 }, - - "retraction_enable": { "value": true }, - "retraction_amount": { "value": 2.5 }, - "retraction_speed": { "value": 40 }, - - "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, - "cool_fan_enabled": { "value": true }, - "cool_min_layer_time": { "value": 10 }, - - - "support_brim_enable": { "value": true }, - "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, - "support_pattern": { "value": "'zigzag'" }, - "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, - "support_use_towers": { "value": false }, - "support_xy_distance": { "value": "wall_line_width_0 * 2" }, - "support_xy_distance_overhang": { "value": "wall_line_width_0" }, - "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, - "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, - "support_wall_count": { "value": 1 }, - "support_brim_width": { "value": 4 }, - - "support_enable": { "value": true }, - "support_interface_enable": { "value": true }, - "support_interface_height": { "value": "layer_height * 4" }, - "support_interface_density": { "value": 33.333 }, - "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, - "minimum_support_area": { "value": 2 }, - "minimum_interface_area": { "value": 10 }, - - "fill_outline_gaps": { "value": false }, - - "adhesion_type": { "value": "'skirt'" }, - "brim_replaces_support": { "value": false }, - "skirt_gap": { "value": 6.0 }, - "skirt_line_count": { "value": 3 } - } +{ + "version": 2, + "name": "Koonovo KN5 Idex", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Koonovo", + "manufacturer": "Koonovo", + "file_formats": "text/x-gcode", + "platform": "koonovo_kn5.stl", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "machine_extruder_trains": + { + "0": "koonovo_kn5_extruder_0", + "1": "koonovo_kn5_extruder_1" + }, + "preferred_material": "generic_pla", + "preferred_quality_type": "standard", + "quality_definition": "koonovo_base" + }, + "overrides": + { + "acceleration_print": { "value": 500 }, + "acceleration_travel": { "value": 500 }, + "adhesion_type": { "value": "'skirt'" }, + "brim_replaces_support": { "value": false }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "value": 10 }, + "default_material_bed_temperature": { "value": "45" }, + "default_material_print_temperature": { "value": "195" }, + "fill_outline_gaps": { "value": false }, + "gantry_height": { "value": 0 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_sparse_density": { "value": "15" }, + "machine_acceleration": { "value": 500 }, + "machine_depth": { "default_value": 420 }, + "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_extruder_count": { "default_value": 2 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-26, 34], + [-26, -32], + [32, -32], + [32, 34] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 400 }, + "machine_max_acceleration_e": { "value": 2000 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 50 }, + "machine_max_feedrate_e": { "value": 100 }, + "machine_max_feedrate_x": { "value": 200 }, + "machine_max_feedrate_y": { "value": 200 }, + "machine_max_feedrate_z": { "value": 50 }, + "machine_name": { "default_value": "Koonovo KN5" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Move to min endstops\nG1 Z15.0 F9000 ;move the platform down 15mm\nM117 Printing..." }, + "machine_width": { "default_value": 420 }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "material_standby_temperature": { "value": "material_print_temperature" }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "retraction_amount": { "value": 2.5 }, + "retraction_speed": { "value": 40 }, + "skirt_gap": { "value": 6.0 }, + "skirt_line_count": { "value": 3 }, + "speed_layer_0": { "value": 25.0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": 50.0 }, + "speed_support": { "value": "speed_wall_0" }, + "speed_travel": { "value": "120.0 if speed_print < 60 else 180.0 if speed_print > 100 else speed_print * 2.2" }, + "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 25 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 4 }, + "support_enable": { "value": true }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_interface_skip_height": { "value": 0.2 }, + "support_pattern": { "value": "'zigzag'" }, + "support_wall_count": { "value": 1 }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, + "wall_thickness": { "value": "line_width * 2" } + } } \ No newline at end of file diff --git a/resources/definitions/koonovo_pyramid.def.json b/resources/definitions/koonovo_pyramid.def.json index 8e4ff8a20e..5817c1d908 100644 --- a/resources/definitions/koonovo_pyramid.def.json +++ b/resources/definitions/koonovo_pyramid.def.json @@ -1,24 +1,27 @@ { - "name": "Koonovo Pyramid", "version": 2, + "name": "Koonovo Pyramid", "inherits": "koonovo_base", - "overrides": { - "machine_name": { "default_value": "Koonovo Pyramid" }, - "machine_width": { "default_value": 310 }, + "metadata": + { + "visible": true, + "quality_definition": "koonovo_base" + }, + "overrides": + { + "gantry_height": { "value": 0 }, "machine_depth": { "default_value": 310 }, - "machine_height": { "default_value": 400 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-26, 34], [-26, -32], [32, -32], [32, 34] ] }, - - "gantry_height": { "value": 0 } - }, - "metadata": { - "quality_definition": "koonovo_base", - "visible": true + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Koonovo Pyramid" }, + "machine_width": { "default_value": 310 } } -} +} \ No newline at end of file diff --git a/resources/definitions/kosher.def.json b/resources/definitions/kosher.def.json index f769d7c7a9..c661301fcf 100644 --- a/resources/definitions/kosher.def.json +++ b/resources/definitions/kosher.def.json @@ -2,52 +2,59 @@ "version": 2, "name": "Kosher", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Venkat Kamesh", "manufacturer": "Sri Vignan Technologies", - "weight": 3, "file_formats": "text/x-gcode", "platform": "ultimaker3_platform.obj", - "platform_texture": "koshertext.png", - "platform_offset": [0, 0, 0], "has_material": true, "has_variants": true, - "preferred_variant_name": "0.4 mm Nozzle", "machine_extruder_trains": { "0": "kosher_extruder_0", "1": "kosher_extruder_1" - } + }, + "platform_offset": [ + 0, + 0, + 0 + ], + "platform_texture": "koshertext.png", + "preferred_variant_name": "0.4 mm Nozzle", + "weight": 3 }, - - "overrides": { - "machine_name": { "default_value": "Kosher" }, - "machine_width": { "default_value": 220 }, - "machine_height": { "default_value": 300 }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "gantry_height": { "value": "48" }, + "ironing_enabled": { "default_value": true }, + "line_width": { "value": "machine_nozzle_size" }, + "machine_acceleration": { "default_value": 3000 }, + "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "G91\nG1 Z+0.5 E-16 Y+10 F9000\nG90\nM107\nM104 S0 T1\nM104 S0 T0\nM140 S0\nG28 X0 Y0\nT0\nM605 S1\nM84" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_heated_bed": { "default_value": true }, - "machine_acceleration": {"default_value": 3000}, + "machine_height": { "default_value": 300 }, + "machine_max_feedrate_e": { "value": 150 }, "machine_max_feedrate_x": { "value": 300 }, "machine_max_feedrate_y": { "value": 300 }, "machine_max_feedrate_z": { "value": 40 }, - "machine_max_feedrate_e": { "value": 150 }, - "machine_use_extruder_offset_to_offset_coords": {"default_value": false}, - "machine_center_is_zero": {"default_value": false}, - "gantry_height": {"value": "48"}, - "line_width": {"value": "machine_nozzle_size"}, - "speed_travel": {"maximum_value": "300", "value": "200"}, - "optimize_wall_printing_order": { "value": "True" }, - "material_diameter": { "default_value": 1.75}, - "retraction_amount": {"default_value": 6.5}, - "retraction_speed": { "default_value": 30}, - - "adhesion_type": { "default_value": "skirt" }, - "machine_gcode_flavor": { "default_value": "Marlin"}, - "ironing_enabled":{"default_value": true}, - + "machine_name": { "default_value": "Kosher" }, "machine_start_gcode": { "default_value": "M605 S0\nG21\nG90\nM82\nM107\nG28\nT1\nG92 E0\nG1 E16 F210\nG92 E0\nT0\nG92 E0\nG1 E16 F210\nG92 E0\n" }, - "machine_end_gcode": { "default_value": "G91\nG1 Z+0.5 E-16 Y+10 F9000\nG90\nM107\nM104 S0 T1\nM104 S0 T0\nM140 S0\nG28 X0 Y0\nT0\nM605 S1\nM84" }, - "machine_extruder_count": { "default_value": 2 } + "machine_use_extruder_offset_to_offset_coords": { "default_value": false }, + "machine_width": { "default_value": 220 }, + "material_diameter": { "default_value": 1.75 }, + "optimize_wall_printing_order": { "value": "True" }, + "retraction_amount": { "default_value": 6.5 }, + "retraction_speed": { "default_value": 30 }, + "speed_travel": + { + "maximum_value": "300", + "value": "200" + } } -} +} \ No newline at end of file diff --git a/resources/definitions/kosher_duplication.def.json b/resources/definitions/kosher_duplication.def.json index f7add08a8b..8b22dd736b 100644 --- a/resources/definitions/kosher_duplication.def.json +++ b/resources/definitions/kosher_duplication.def.json @@ -2,50 +2,55 @@ "version": 2, "name": "Kosher Duplication", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Venkat Kamesh", "manufacturer": "Sri Vignan Technologies", - "weight": 3, "file_formats": "text/x-gcode", "platform": "ultimaker3_platform.obj", - "platform_texture": "koshertext.png", - "platform_offset": [52.5, 0, 0], "has_material": true, "has_variants": true, + "machine_extruder_trains": { "0": "kosher_dm_extruder" }, + "platform_offset": [ + 52.5, + 0, + 0 + ], + "platform_texture": "koshertext.png", "preferred_variant_name": "0.4 mm Nozzle", - "machine_extruder_trains": - { - "0": "kosher_dm_extruder" - } + "weight": 3 }, - - "overrides": { - "machine_name": { "default_value": "Kosher_Duplication" }, - "machine_width": { "default_value": 100 }, - "machine_height": { "default_value": 300 }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "gantry_height": { "value": "48" }, + "ironing_enabled": { "default_value": true }, + "line_width": { "value": "machine_nozzle_size" }, + "machine_acceleration": { "default_value": 3000 }, + "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "G91\nG1 Z+0.5 E-16 Y+10 F9000\nG90\nM107\nM104 S0\nM140 S0\nM117\nM605 S0\nG28 X0 Y0\nM605 S1\nG28 X\nM84" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_heated_bed": { "default_value": true }, - "machine_acceleration": {"default_value": 3000}, + "machine_height": { "default_value": 300 }, + "machine_max_feedrate_e": { "value": 150 }, "machine_max_feedrate_x": { "value": 300 }, "machine_max_feedrate_y": { "value": 300 }, "machine_max_feedrate_z": { "value": 40 }, - "machine_max_feedrate_e": { "value": 150 }, - "machine_use_extruder_offset_to_offset_coords": {"default_value": false}, - "machine_center_is_zero": {"default_value": false}, - "gantry_height": {"value": "48"}, - "line_width": {"value": "machine_nozzle_size"}, - "speed_travel": {"maximum_value": "300", "value": "200"}, + "machine_name": { "default_value": "Kosher_Duplication" }, + "machine_start_gcode": { "default_value": "M605 S0\nT0\nM605 S2 R0 X266\nG28 X\nG28 Y\nG1 X-30 F9000\nG1 Y20 F9000\nG21\nG90\nM82\nM107\nM104 S{material_print_temperature};\nM105\nM109 S{material_print_temperature};\nG92 E0\nG1 E16 F210\nG92 E0\nM605 S2 X100\nG28 X\nG28 Z\n" }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": false }, + "machine_width": { "default_value": 100 }, + "material_diameter": { "default_value": 1.75 }, "optimize_wall_printing_order": { "value": "True" }, - "material_diameter": { "default_value": 1.75}, - "retraction_amount": {"default_value": 6.5}, - "retraction_speed": { "default_value": 30}, - - "adhesion_type": { "default_value": "skirt" }, - "ironing_enabled":{"default_value": true}, - "machine_gcode_flavor": { "default_value": "Marlin"}, - "machine_start_gcode": {"default_value": "M605 S0\nT0\nM605 S2 R0 X266\nG28 X\nG28 Y\nG1 X-30 F9000\nG1 Y20 F9000\nG21\nG90\nM82\nM107\nM104 S{material_print_temperature};\nM105\nM109 S{material_print_temperature};\nG92 E0\nG1 E16 F210\nG92 E0\nM605 S2 X100\nG28 X\nG28 Z\n"}, - "machine_end_gcode": {"default_value": "G91\nG1 Z+0.5 E-16 Y+10 F9000\nG90\nM107\nM104 S0\nM140 S0\nM117\nM605 S0\nG28 X0 Y0\nM605 S1\nG28 X\nM84"}, - "machine_extruder_count": { "default_value": 1 } + "retraction_amount": { "default_value": 6.5 }, + "retraction_speed": { "default_value": 30 }, + "speed_travel": + { + "maximum_value": "300", + "value": "200" + } } -} +} \ No newline at end of file diff --git a/resources/definitions/kosher_mirror.def.json b/resources/definitions/kosher_mirror.def.json index a7d5c6ced4..6ed4289cfa 100644 --- a/resources/definitions/kosher_mirror.def.json +++ b/resources/definitions/kosher_mirror.def.json @@ -2,50 +2,55 @@ "version": 2, "name": "Kosher Mirror", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Venkat Kamesh", "manufacturer": "Sri Vignan Technologies", - "weight": 3, "file_formats": "text/x-gcode", "platform": "ultimaker3_platform.obj", - "platform_texture": "koshertext.png", - "platform_offset": [65, 0, 0], "has_material": true, "has_variants": true, + "machine_extruder_trains": { "0": "kosher_mm_extruder" }, + "platform_offset": [ + 65, + 0, + 0 + ], + "platform_texture": "koshertext.png", "preferred_variant_name": "0.4 mm Nozzle", - "machine_extruder_trains": - { - "0": "kosher_mm_extruder" - } + "weight": 3 }, - - "overrides": { - "machine_name": { "default_value": "Kosher_Mirror" }, - "machine_width": { "default_value": 75 }, - "machine_height": { "default_value": 300 }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "gantry_height": { "value": "48" }, + "ironing_enabled": { "default_value": true }, + "line_width": { "value": "machine_nozzle_size" }, + "machine_acceleration": { "default_value": 3000 }, + "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "G91\nG1 Z+0.5 E-16 Y+10 F9000\nG90\nM107\nM104 S0\nM140 S0\nM117\nM605 S0\nG28 X0 Y0\nM605 S1\nG28 X\nM84" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_heated_bed": { "default_value": true }, - "machine_acceleration": {"default_value": 3000}, + "machine_height": { "default_value": 300 }, + "machine_max_feedrate_e": { "value": 150 }, "machine_max_feedrate_x": { "value": 300 }, "machine_max_feedrate_y": { "value": 300 }, "machine_max_feedrate_z": { "value": 40 }, - "machine_max_feedrate_e": { "value": 150 }, - "machine_use_extruder_offset_to_offset_coords": {"default_value": false}, - "machine_center_is_zero": {"default_value": false}, - "gantry_height": {"value": "48"}, - "line_width": {"value": "machine_nozzle_size"}, - "speed_travel": {"maximum_value": "300", "value": "200"}, + "machine_name": { "default_value": "Kosher_Mirror" }, + "machine_start_gcode": { "default_value": "M605 S0\nT0\nM605 S2 R0 X220\nM605 S3 X220\nG21\nG90\nM82\nM107\nM104 S{material_print_temperature};\nM105\nM109 S{material_print_temperature};\nG28\nG1 X-50 F9000\nG92 E0\nG1 E16 F210\nG92 E0\n" }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": false }, + "machine_width": { "default_value": 75 }, + "material_diameter": { "default_value": 1.75 }, "optimize_wall_printing_order": { "value": "True" }, - "material_diameter": { "default_value": 1.75}, - "retraction_amount": {"default_value": 6.5}, - "retraction_speed": { "default_value": 30}, - - "adhesion_type": { "default_value": "skirt" }, - "ironing_enabled":{"default_value": true}, - "machine_gcode_flavor": { "default_value": "Marlin"}, - "machine_start_gcode": {"default_value": "M605 S0\nT0\nM605 S2 R0 X220\nM605 S3 X220\nG21\nG90\nM82\nM107\nM104 S{material_print_temperature};\nM105\nM109 S{material_print_temperature};\nG28\nG1 X-50 F9000\nG92 E0\nG1 E16 F210\nG92 E0\n" }, - "machine_end_gcode": {"default_value": "G91\nG1 Z+0.5 E-16 Y+10 F9000\nG90\nM107\nM104 S0\nM140 S0\nM117\nM605 S0\nG28 X0 Y0\nM605 S1\nG28 X\nM84"}, - "machine_extruder_count": { "default_value": 1 } + "retraction_amount": { "default_value": 6.5 }, + "retraction_speed": { "default_value": 30 }, + "speed_travel": + { + "maximum_value": "300", + "value": "200" + } } -} +} \ No newline at end of file diff --git a/resources/definitions/kossel_mini.def.json b/resources/definitions/kossel_mini.def.json index 492e8fbd7c..0c28c051ab 100644 --- a/resources/definitions/kossel_mini.def.json +++ b/resources/definitions/kossel_mini.def.json @@ -2,46 +2,30 @@ "version": 2, "name": "Kossel Mini", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Claudio Sampaio (Patola)", "manufacturer": "Johann", "file_formats": "text/x-gcode", "platform": "kossel_platform.3mf", - "platform_offset": [0, -0.25, 0], - "machine_extruder_trains": - { - "0": "kossel_mini_extruder_0" - } + "machine_extruder_trains": { "0": "kossel_mini_extruder_0" }, + "platform_offset": [ + 0, + -0.25, + 0 + ] }, - - "overrides": { - "machine_heated_bed": { - "default_value": true - }, - "machine_width": { - "default_value": 170 - }, - "machine_height": { - "default_value": 200 - }, - "machine_depth": { - "default_value": 170 - }, - "machine_center_is_zero": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Home all axes (max endstops)\nG1 Z15.0 F9000 ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG28 ;Home all axes (max endstops)\nM84 ;steppers off\nG90 ;absolute positioning" - }, - "machine_shape": { - "default_value": "elliptic" - } + "overrides": + { + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 170 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG28 ;Home all axes (max endstops)\nM84 ;steppers off\nG90 ;absolute positioning" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200 }, + "machine_shape": { "default_value": "elliptic" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Home all axes (max endstops)\nG1 Z15.0 F9000 ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm 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": 170 } } -} +} \ No newline at end of file diff --git a/resources/definitions/kossel_pro.def.json b/resources/definitions/kossel_pro.def.json index 11a08ed6d6..8090a1d832 100644 --- a/resources/definitions/kossel_pro.def.json +++ b/resources/definitions/kossel_pro.def.json @@ -2,45 +2,30 @@ "version": 2, "name": "Kossel Pro", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Chris Petersen", "manufacturer": "Johann", "file_formats": "text/x-gcode", "platform": "kossel_pro_build_platform.3mf", - "platform_offset": [0, -0.25, 0], - "machine_extruder_trains": - { - "0": "kossel_pro_extruder_0" - } + "machine_extruder_trains": { "0": "kossel_pro_extruder_0" }, + "platform_offset": [ + 0, + -0.25, + 0 + ] }, - "overrides": { - "machine_heated_bed": { - "default_value": true - }, - "machine_width": { - "default_value": 240 - }, - "machine_height": { - "default_value": 240 - }, - "machine_depth": { - "default_value": 240 - }, - "machine_center_is_zero": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "; info: M303 E0 S200 C8 ; Pid auto-tune \n\nM140 S{material_bed_temperature}; Start heating up the base\nG28 ; Home to top 3 endstops\n; Autolevel and adjust first layer\n; Adjust this value to fit your own printer! (positive is thicker)\n; This default value is intentionally very high to accommodate the\n; variety of print heads used with this printer. Many of you will\n; need tiny values like Z0 or Z0.1. Use feeler gauges to dial this\n; in as accurately as possible.\nG29 Z10\n\n; Squirt and wipe ;\nM109 S220 ; Wait for the temp to hit 220\nG00 X125 Y-60 Z0.1 ;\nG92 E0 ;\nG01 E25 F100 ; Extrude a little bit to replace oozage from auto levelling\nG01 X90 Y-50 F6000 ;\nG01 Z5 ;\n\n; Set the extruder to the requested print temperature\nM104 S{material_print_temperature}\n" - }, - "machine_end_gcode": { - "default_value": "M104 S0 ; turn off temperature\nM140 S0 ; turn off bed\nG28 ; home all axes\nM84 ; disable motors\n" - }, - "machine_shape": { - "default_value": "elliptic" - } + "overrides": + { + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 240 }, + "machine_end_gcode": { "default_value": "M104 S0 ; turn off temperature\nM140 S0 ; turn off bed\nG28 ; home all axes\nM84 ; disable motors\n" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 240 }, + "machine_shape": { "default_value": "elliptic" }, + "machine_start_gcode": { "default_value": "; info: M303 E0 S200 C8 ; Pid auto-tune \n\nM140 S{material_bed_temperature}; Start heating up the base\nG28 ; Home to top 3 endstops\n; Autolevel and adjust first layer\n; Adjust this value to fit your own printer! (positive is thicker)\n; This default value is intentionally very high to accommodate the\n; variety of print heads used with this printer. Many of you will\n; need tiny values like Z0 or Z0.1. Use feeler gauges to dial this\n; in as accurately as possible.\nG29 Z10\n\n; Squirt and wipe ;\nM109 S220 ; Wait for the temp to hit 220\nG00 X125 Y-60 Z0.1 ;\nG92 E0 ;\nG01 E25 F100 ; Extrude a little bit to replace oozage from auto levelling\nG01 X90 Y-50 F6000 ;\nG01 Z5 ;\n\n; Set the extruder to the requested print temperature\nM104 S{material_print_temperature}\n" }, + "machine_width": { "default_value": 240 } } -} +} \ No newline at end of file diff --git a/resources/definitions/kupido.def.json b/resources/definitions/kupido.def.json index 717c85f93b..3a202653c4 100644 --- a/resources/definitions/kupido.def.json +++ b/resources/definitions/kupido.def.json @@ -8,41 +8,101 @@ "author": "Kupido", "manufacturer": "Kati Hal ARGE", "file_formats": "text/x-gcode", - "platform_offset": [ 0, 0, 0], - "exclude_materials": ["chromatik_pla", "dsm_arnitel2045_175", "dsm_novamid1070_175", "fabtotum_abs", "fabtotum_nylon", "fabtotum_pla", "fabtotum_tpu", "fiberlogy_hd_pla", "filo3d_pla", "filo3d_pla_green", "filo3d_pla_red", "generic_bam", "generic_cpe", "generic_cpe_175", "generic_cpe_plus", "generic_hips", "generic_hips_175", "generic_nylon", "generic_nylon_175", "generic_pc", "generic_pc_175", "generic_petg", "generic_petg_175", "generic_pp", "generic_pva", "generic_pva_175", "generic_tough_pla", "generic_tpu", "generic_tpu_175", "imade3d_petg_green", "imade3d_petg_pink", "imade3d_pla_green", "imade3d_pla_pink", "innofill_innoflex60_175", "octofiber_pla", "polyflex_pla", "polymax_pla", "polyplus_pla", "polywood_pla", "ultimaker_abs_black", "ultimaker_abs_blue", "ultimaker_abs_green", "ultimaker_abs_grey", "ultimaker_abs_orange", "ultimaker_abs_pearl-gold", "ultimaker_abs_red", "ultimaker_abs_silver-metallic", "ultimaker_abs_white", "ultimaker_abs_yellow", "ultimaker_bam", "ultimaker_cpe_black", "ultimaker_cpe_blue", "ultimaker_cpe_dark-grey", "ultimaker_cpe_green", "ultimaker_cpe_light-grey", "ultimaker_cpe_plus_black", "ultimaker_cpe_plus_transparent", "ultimaker_cpe_plus_white", "ultimaker_cpe_red", "ultimaker_cpe_transparent", "ultimaker_cpe_white", "ultimaker_cpe_yellow", "ultimaker_nylon_black", "ultimaker_nylon_transparent", "ultimaker_pc_black", "ultimaker_pc_transparent", "ultimaker_pc_white", "ultimaker_pla_black", "ultimaker_pla_blue", "ultimaker_pla_green", "ultimaker_pla_magenta", "ultimaker_pla_orange", "ultimaker_pla_pearl-white", "ultimaker_pla_red", "ultimaker_pla_silver-metallic", "ultimaker_pla_transparent", "ultimaker_pla_white", "ultimaker_pla_yellow", "ultimaker_pp_transparent", "ultimaker_pva", "ultimaker_tough_pla_black", "ultimaker_tough_pla_green", "ultimaker_tough_pla_red", "ultimaker_tough_pla_white", "ultimaker_tpu_black", "ultimaker_tpu_blue", "ultimaker_tpu_red", "ultimaker_tpu_white", "verbatim_bvoh_175", "Vertex_Delta_ABS", "Vertex_Delta_PET", "Vertex_Delta_PLA", "Vertex_Delta_TPU", "zyyx_pro_flex", "zyyx_pro_pla","tizyx_pla","tizyx_abs","tizyx_pla_bois" ], - "preferred_material": "generic_pla", + "exclude_materials": [ + "chromatik_pla", + "dsm_arnitel2045_175", + "dsm_novamid1070_175", + "fabtotum_abs", + "fabtotum_nylon", + "fabtotum_pla", + "fabtotum_tpu", + "fiberlogy_hd_pla", + "filo3d_pla", + "filo3d_pla_green", + "filo3d_pla_red", + "generic_bam", + "generic_cpe", + "generic_cpe_175", + "generic_cpe_plus", + "generic_hips", + "generic_hips_175", + "generic_nylon", + "generic_nylon_175", + "generic_pc", + "generic_pc_175", + "generic_petg", + "generic_petg_175", + "generic_pp", + "generic_pva", + "generic_pva_175", + "generic_tough_pla", + "generic_tpu", + "generic_tpu_175", + "imade3d_petg_green", + "imade3d_petg_pink", + "imade3d_pla_green", + "imade3d_pla_pink", + "innofill_innoflex60_175", + "octofiber_pla", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "verbatim_bvoh_175", + "Vertex_Delta_ABS", + "Vertex_Delta_PET", + "Vertex_Delta_PLA", + "Vertex_Delta_TPU", + "zyyx_pro_flex", + "zyyx_pro_pla", + "tizyx_pla", + "tizyx_abs", + "tizyx_pla_bois" + ], "has_machine_quality": true, "has_materials": true, "has_variants": false, - "supports_usb_connection": false, - "machine_extruder_trains": - { - "0": "kupido_extruder_0" - } + "machine_extruder_trains": { "0": "kupido_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ], + "preferred_material": "generic_pla", + "supports_usb_connection": false }, - - "overrides": { + "overrides": + { + "adhesion_type": + { + "default_value": "raft", + "options": + { + "brim": "Brim", + "none": "None", + "raft": "Raft" + } + }, + "gantry_height": { "value": "55" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 195 }, + "machine_end_gcode": { "default_value": ";End GCode\nM104 S0 ;extruder heater off \nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;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\nG28 Z0\nM84 ;steppers off\nG90 ;absolute positioning\n;{profile_string}" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [75, 18], + [18, 18], + [18, 35], + [75, 35] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 190 }, "machine_name": { "default_value": "KUPIDO" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 195 }, - "machine_height": { "default_value": 190 }, - "machine_depth": { "default_value": 195 }, - "machine_center_is_zero": { "default_value": false }, - "gantry_height": { "value": "55" }, - "retraction_amount": { "default_value": 1 }, - "support_enable": { "default_value": true}, - "machine_head_with_fans_polygon": { - "default_value": [[75, 18],[18, 18],[18, 35],[75, 35]] - }, - "adhesion_type": {"options": {"raft": "Raft" ,"none": "None", "brim": "Brim"}, "default_value": "raft"}, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": - { - "default_value": ";Sliced at: {day} {date} {time} \n ;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {fill_density} \n ;Print time: {print_time} \n ;Filament used: {filament_amount}m {filament_weight}g \n ;Filament cost: {filament_cost} \n G28 X0 Y0 ;move X Y to endstops \n G28 Z0 ;move Z to endstops \n M190 S{material_bed_temperature} ;bed temp \n M107 ; switch fan off \n M109 S{material_print_temperature} ;extruder temp set \n G1 F3000 \n G1 Z10 \n G92 E0 ;zero the extruded length \n G1 F200 E1 ;extrude 1mm of feed stock \n G92 E0 ;zero the extruded length again \n G4 P7000 ; wait 7000ms \n M117 Printing... ;Put printing message on LCD screen" - }, - "machine_end_gcode": - { - "default_value": ";End GCode\nM104 S0 ;extruder heater off \nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;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\nG28 Z0\nM84 ;steppers off\nG90 ;absolute positioning\n;{profile_string}" - } + "machine_start_gcode": { "default_value": ";Sliced at: {day} {date} {time} \n ;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {fill_density} \n ;Print time: {print_time} \n ;Filament used: {filament_amount}m {filament_weight}g \n ;Filament cost: {filament_cost} \n G28 X0 Y0 ;move X Y to endstops \n G28 Z0 ;move Z to endstops \n M190 S{material_bed_temperature} ;bed temp \n M107 ; switch fan off \n M109 S{material_print_temperature} ;extruder temp set \n G1 F3000 \n G1 Z10 \n G92 E0 ;zero the extruded length \n G1 F200 E1 ;extrude 1mm of feed stock \n G92 E0 ;zero the extruded length again \n G4 P7000 ; wait 7000ms \n M117 Printing... ;Put printing message on LCD screen" }, + "machine_width": { "default_value": 195 }, + "retraction_amount": { "default_value": 1 }, + "support_enable": { "default_value": true } } } \ No newline at end of file diff --git a/resources/definitions/leapfrog_bolt_pro.def.json b/resources/definitions/leapfrog_bolt_pro.def.json index e7ccc76735..a5b0a53345 100644 --- a/resources/definitions/leapfrog_bolt_pro.def.json +++ b/resources/definitions/leapfrog_bolt_pro.def.json @@ -2,21 +2,13 @@ "version": 2, "name": "Leapfrog Bolt Pro", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Karan and Vincent 20191104", "manufacturer": "Leapfrog B.V.", - "platform": "leapfrog_bolt_pro_platform.3mf", - "platform_offset": [0, 0, -14], "file_formats": "text/x-gcode", - "supports_usb_connection": false, - "supports_network_connection": false, - "has_materials": true, - "has_machine_quality": true, - "has_variants": true, - "preferred_variant_name": "Brass 0.4", - "preferred_material": "leapfrog_epla_natural", - "variants_name": "Hot end", + "platform": "leapfrog_bolt_pro_platform.3mf", "exclude_materials": [ "generic_pla_175", "generic_abs_175", @@ -71,44 +63,66 @@ "zyyx_pro_flex", "zyyx_pro_pla" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, "machine_extruder_trains": { "0": "leapfrog_bolt_pro_extruder_right", "1": "leapfrog_bolt_pro_extruder_left" - } + }, + "platform_offset": [ + 0, + 0, + -14 + ], + "preferred_material": "leapfrog_epla_natural", + "preferred_variant_name": "Brass 0.4", + "supports_network_connection": false, + "supports_usb_connection": false, + "variants_name": "Hot end" }, - "overrides": { - "machine_name": {"default_value": "Leapfrog Bolt Pro" }, - "machine_extruder_count": {"default_value": 2}, - "machine_center_is_zero": {"default_value": false}, - "machine_width": {"default_value": 302}, - "machine_height": {"default_value": 205}, - "machine_depth": {"default_value": 322}, - "machine_heated_bed": {"default_value": true}, - "machine_head_with_fans_polygon": {"default_value": [[-60, 110 ], [-60, -45], [60, -45 ], [60, 110]]}, - "machine_max_feedrate_z": {"default_value": 16.7 }, - "machine_max_feedrate_e": {"default_value": 50 }, - "machine_max_acceleration_z": {"default_value": 100 }, - "machine_acceleration": {"default_value": 400 }, - "machine_max_jerk_xy": {"default_value": 20 }, - "machine_max_jerk_z": {"default_value": 0.4 }, - "machine_max_jerk_e": {"default_value": 5 }, - "machine_gcode_flavor": {"default_value": "RepRap (Marlin/Sprinter)"}, - "material_final_print_temperature": {"value": "default_material_print_temperature" }, - "material_initial_print_temperature": {"value": "default_material_print_temperature" }, - "gantry_height": {"value": "20"}, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "build_volume_temperature": { "enabled": false }, + "gantry_height": { "value": "20" }, + "machine_acceleration": { "default_value": 400 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 322 }, + "machine_end_gcode": { "default_value": "G92 E0\nG1 E-3 F300\nM104 S0 T0\nM104 S0 T1\nM140 S0\nG28 X0 Y0\nM84" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-60, 110], + [-60, -45], + [60, -45], + [60, 110] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 205 }, + "machine_max_acceleration_z": { "default_value": 100 }, + "machine_max_feedrate_e": { "default_value": 50 }, + "machine_max_feedrate_z": { "default_value": 16.7 }, + "machine_max_jerk_e": { "default_value": 5 }, + "machine_max_jerk_xy": { "default_value": 20 }, + "machine_max_jerk_z": { "default_value": 0.4 }, + "machine_name": { "default_value": "Leapfrog Bolt Pro" }, + "machine_start_gcode": { "default_value": "G90\nG28 X0 Y0 Z0\nG1 Z5 F1000\nG92 E0\nG1 Y-32 F12000\nG1 E15 F1000\nG1 E45 F150\nG4 S5" }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, + "machine_width": { "default_value": 302 }, + "material_final_print_temperature": { "value": "default_material_print_temperature" }, + "material_initial_print_temperature": { "value": "default_material_print_temperature" }, + "material_standby_temperature": { "enabled": false }, + "prime_tower_enable": { "resolve": "extruders_enabled_count > 1" }, + "prime_tower_position_x": { "value": "169" }, + "prime_tower_position_y": { "value": "25" }, + "retraction_amount": { "default_value": 2 }, "retraction_combing": { "value": "'all'" }, - "retraction_amount": {"default_value": 2}, - "adhesion_type": {"default_value": "skirt"}, - "skirt_line_count": {"default_value": 3}, - "machine_use_extruder_offset_to_offset_coords": {"default_value": true}, - "machine_start_gcode": {"default_value": "G90\nG28 X0 Y0 Z0\nG1 Z5 F1000\nG92 E0\nG1 Y-32 F12000\nG1 E15 F1000\nG1 E45 F150\nG4 S5"}, - "machine_end_gcode": {"default_value": "G92 E0\nG1 E-3 F300\nM104 S0 T0\nM104 S0 T1\nM140 S0\nG28 X0 Y0\nM84"}, - "prime_tower_enable": { "resolve": "extruders_enabled_count > 1"}, - "prime_tower_position_x": {"value": "169" }, - "prime_tower_position_y": {"value": "25" }, - "speed_travel": { "value": "200" }, - "build_volume_temperature": {"enabled": false}, - "material_standby_temperature": {"enabled": false } + "skirt_line_count": { "default_value": 3 }, + "speed_travel": { "value": "200" } } -} +} \ No newline at end of file diff --git a/resources/definitions/leapfrog_creatr_hs.def.json b/resources/definitions/leapfrog_creatr_hs.def.json index 762e1e88e2..717e564cbc 100644 --- a/resources/definitions/leapfrog_creatr_hs.def.json +++ b/resources/definitions/leapfrog_creatr_hs.def.json @@ -1,35 +1,43 @@ { - "version": 2, + "version": 2, "name": "Leapfrog Creatr HS", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Psychometer", "manufacturer": "Leapfrog B.V.", "file_formats": "text/x-gcode", - "supports_usb_connection": true, "machine_extruder_trains": { "0": "leapfrog_creatr_hs_extruder_right", "1": "leapfrog_creatr_hs_extruder_left" - } + }, + "supports_usb_connection": true }, - "overrides": { - "machine_name": {"default_value": "Leapfrog Creatr HS" }, - "machine_width": {"default_value": 270}, - "machine_depth": {"default_value": 280}, - "machine_height": {"default_value": 180}, - "machine_shape": { "default_value": "Rectangular"}, - "machine_center_is_zero": {"default_value": false}, - "machine_heated_bed": {"default_value": true}, - "build_volume_temperature": {"enabled": false}, - "machine_gcode_flavor": {"default_value": "Marlin"}, - - "machine_head_with_fans_polygon": {"default_value": [[-40, -50 ], [-40, 100], [40, -50 ], [40, 100]]}, - "gantry_height": {"value": "2"}, - "machine_extruder_count": {"default_value": 2}, - - "machine_start_gcode": {"default_value": "M107 ; start with the fan off\nG28 X0 Y0 ; home XY axes\nG28 Z0 ; home Z\nG92 X0 Y0 Z0 E0 ; reset software positions\nG1 Z15.0 F180\nT0\nG92 E0 ; zero the extruded length\nG1 E3 F200\nG92 E0 ; zero the extruded length again\nG1 F225"}, - "machine_end_gcode": {"default_value": "M104 S0 T0 ; turn off right extruder\nM104 S0 T1 ; turn off left extruder\nM140 S0 T0 ; turn off bed\nG1 Z200 F1200 ; drop bed\nG28 X0 ; home X axis\nM84 ; disable motors"} + "overrides": + { + "build_volume_temperature": { "enabled": false }, + "gantry_height": { "value": "2" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 280 }, + "machine_end_gcode": { "default_value": "M104 S0 T0 ; turn off right extruder\nM104 S0 T1 ; turn off left extruder\nM140 S0 T0 ; turn off bed\nG1 Z200 F1200 ; drop bed\nG28 X0 ; home X axis\nM84 ; disable motors" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-40, -50], + [-40, 100], + [40, -50], + [40, 100] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 180 }, + "machine_name": { "default_value": "Leapfrog Creatr HS" }, + "machine_shape": { "default_value": "Rectangular" }, + "machine_start_gcode": { "default_value": "M107 ; start with the fan off\nG28 X0 Y0 ; home XY axes\nG28 Z0 ; home Z\nG92 X0 Y0 Z0 E0 ; reset software positions\nG1 Z15.0 F180\nT0\nG92 E0 ; zero the extruded length\nG1 E3 F200\nG92 E0 ; zero the extruded length again\nG1 F225" }, + "machine_width": { "default_value": 270 } } -} +} \ No newline at end of file diff --git a/resources/definitions/leapfrog_creatr_hs_xl.def.json b/resources/definitions/leapfrog_creatr_hs_xl.def.json index 78567ac647..0ec248c0d5 100644 --- a/resources/definitions/leapfrog_creatr_hs_xl.def.json +++ b/resources/definitions/leapfrog_creatr_hs_xl.def.json @@ -1,35 +1,43 @@ { - "version": 2, + "version": 2, "name": "Leapfrog Creatr HS XL", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Psychometer", "manufacturer": "Leapfrog B.V.", "file_formats": "text/x-gcode", - "supports_usb_connection": true, "machine_extruder_trains": { "0": "leapfrog_creatr_hs_xl_extruder_right", "1": "leapfrog_creatr_hs_xl_extruder_left" - } + }, + "supports_usb_connection": true }, - "overrides": { - "machine_name": {"default_value": "Leapfrog Creatr HS XL" }, - "machine_width": {"default_value": 270}, - "machine_depth": {"default_value": 280}, - "machine_height": {"default_value": 590}, - "machine_shape": { "default_value": "Rectangular"}, - "machine_center_is_zero": {"default_value": false}, - "machine_heated_bed": {"default_value": true}, - "build_volume_temperature": {"enabled": false}, - "machine_gcode_flavor": {"default_value": "Marlin"}, - - "machine_head_with_fans_polygon": {"default_value": [[-40, -50 ], [-40, 100], [40, -50 ], [40, 100]]}, - "gantry_height": {"value": "2"}, - "machine_extruder_count": {"default_value": 2}, - - "machine_start_gcode": {"default_value": "M107 ; start with the fan off\nG28 X0 Y0 ; home XY axes\nG28 Z0 ; home Z\nG92 X0 Y0 Z0 E0 ; reset software positions\nG1 Z15.0 F180\nT0\nG92 E0 ; zero the extruded length\nG1 E3 F200\nG92 E0 ; zero the extruded length again\nG1 F225"}, - "machine_end_gcode": {"default_value": "G92 E0 ; Zero extruder\nG1 E-6.00 F1500 ; Retract filament\nM104 S0 T0 ; turn off right extruder\nM104 S0 T1 ; turn off left extruder\nM140 S0 T0 ; turn off bed\nG1 Z590 F1200 ; drop bed\nG28 X0 ; home X axis\nG1 Y270 F12000 ; Move Y axis to the backside\nM84 ; disable motors"} + "overrides": + { + "build_volume_temperature": { "enabled": false }, + "gantry_height": { "value": "2" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 280 }, + "machine_end_gcode": { "default_value": "G92 E0 ; Zero extruder\nG1 E-6.00 F1500 ; Retract filament\nM104 S0 T0 ; turn off right extruder\nM104 S0 T1 ; turn off left extruder\nM140 S0 T0 ; turn off bed\nG1 Z590 F1200 ; drop bed\nG28 X0 ; home X axis\nG1 Y270 F12000 ; Move Y axis to the backside\nM84 ; disable motors" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-40, -50], + [-40, 100], + [40, -50], + [40, 100] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 590 }, + "machine_name": { "default_value": "Leapfrog Creatr HS XL" }, + "machine_shape": { "default_value": "Rectangular" }, + "machine_start_gcode": { "default_value": "M107 ; start with the fan off\nG28 X0 Y0 ; home XY axes\nG28 Z0 ; home Z\nG92 X0 Y0 Z0 E0 ; reset software positions\nG1 Z15.0 F180\nT0\nG92 E0 ; zero the extruded length\nG1 E3 F200\nG92 E0 ; zero the extruded length again\nG1 F225" }, + "machine_width": { "default_value": 270 } } -} +} \ No newline at end of file diff --git a/resources/definitions/liquid.def.json b/resources/definitions/liquid.def.json index 0fc0f3c9ca..aefb2ffbf8 100644 --- a/resources/definitions/liquid.def.json +++ b/resources/definitions/liquid.def.json @@ -2,100 +2,37 @@ "version": 2, "name": "Liquid", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Liquid 3D", "manufacturer": "Liquid 3D", "file_formats": "text/x-gcode", - "icon": "icon_ultimaker2", "platform": "liquid_platform.stl", + "exclude_materials": [ + "generic_hips", + "generic_pva", + "structur3d_dap100silicone" + ], "has_machine_quality": true, "has_materials": true, "has_variant_buildplates": false, "has_variants": true, - "exclude_materials": [ "generic_hips", "generic_pva", "structur3d_dap100silicone" ], - "preferred_variant_name": "VO 0.4", - "preferred_quality_type": "normal", - "variants_name": "Extruder", - "supports_usb_connection": true, + "icon": "icon_ultimaker2", + "machine_extruder_trains": { "0": "liquid_extruder" }, "nozzle_offsetting_for_disallowed_areas": false, - "weight": -1, - "machine_extruder_trains": - { - "0": "liquid_extruder" - } + "preferred_quality_type": "normal", + "preferred_variant_name": "VO 0.4", + "supports_usb_connection": true, + "variants_name": "Extruder", + "weight": -1 }, - - "overrides": { - "machine_name": { "default_value": "Liquid" }, - "machine_width": { "default_value": 200 }, - "machine_depth": { "default_value": 200 }, - "machine_height": { "default_value": 200 }, - "machine_heated_bed": { "default_value": true }, - "machine_nozzle_heat_up_speed": { "default_value": 1.4 }, - "machine_nozzle_cool_down_speed": { "default_value": 0.8 }, - "machine_gcode_flavor": { "default_value": "RepRap (RepRap)" }, - "machine_start_gcode": { - "default_value": "G21 ; set units to millimeters\nG90 ; use absolute positioning\nM83 ; relative extrusion mode\nM104 S{material_print_temperature_layer_0} ; set extruder temp\nM140 S{material_bed_temperature_layer_0} ; set bed temp\nM190 S{material_bed_temperature_layer_0} ; wait for bed temp\nM109 S{material_print_temperature_layer_0} ; wait for extruder temp\nG32 ; mesh bed leveling\nG92 E0.0 ; reset extruder distance position\nG1 X0 Y-2 Z0.3 F4000.0 ; go outside print area\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X110.0 E15.5 F1000.0 ; intro line\nG92 E0.0 ; reset extruder distance position" - }, - "machine_end_gcode": { - "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off heatbed\nM106 S0 ; turn off fan\nG91 ; relative positioning\nG1 Z1 F360 ; lift Z by 1mm\nG90 ; absolute positioning\nG1 X10 Y200 F3200; home X axis and push Y forward\nG1 Z200 F1200; home Z axis\nM84 ; disable motors" - }, - "machine_head_with_fans_polygon": - { - "default_value": - [ - [ -65.0, -45.0 ], - [ -65.0, 30.0 ], - [ 50.0, 30.0 ], - [ 50.0, -45.0 ] - ] - }, - "machine_max_feedrate_x": { "default_value": 300 }, - "machine_max_feedrate_y": { "default_value": 300 }, - "machine_max_feedrate_z": { "default_value": 40 }, - "machine_max_feedrate_e": { - "default_value": 45 - }, - "machine_acceleration": { "default_value": 3000 }, - "gantry_height": { "value": "67" }, - - "material_diameter": { "default_value": 1.75 }, - "material_print_temperature": { - "minimum_value": "0" - }, - "material_bed_temperature": { - "minimum_value": "0", - "maximum_value_warning": "125" - }, - "material_bed_temperature_layer_0": - { - "maximum_value_warning": "125" - }, - "material_standby_temperature": { - "minimum_value": "0" - }, - - "speed_travel": - { - "maximum_value": "150", - "value": "150" - }, - - "relative_extrusion": - { - "value": true, - "enabled": true - }, - - "acceleration_enabled": { "value": "True" }, + "overrides": + { + "acceleration_enabled": { "value": true }, "acceleration_layer_0": { "value": "acceleration_topbottom" }, "acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, "acceleration_print": { "value": "4000" }, - "line_width": { "value": "machine_nozzle_size * 0.875" }, - "machine_min_cool_heat_time_window": { "value": "15" }, - "default_material_print_temperature": { "value": "200" }, - "multiple_mesh_overlap": { "value": "0" }, "acceleration_support_interface": { "value": "acceleration_topbottom" }, "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 500 / 4000)" }, "acceleration_wall": { "value": "math.ceil(acceleration_print * 1000 / 4000)" }, @@ -105,10 +42,13 @@ "cool_fan_speed": { "value": "70" }, "cool_fan_speed_max": { "value": "100" }, "cool_min_speed": { "value": "30" }, + "default_material_print_temperature": { "value": "200" }, + "gantry_height": { "value": "67" }, "infill_line_width": { "value": "round(line_width * 0.5 / 0.35, 2)" }, "infill_overlap": { "value": "0" }, "infill_pattern": { "value": "'triangles'" }, "infill_wipe_dist": { "value": "0" }, + "initial_layer_line_width_factor": { "value": "120" }, "jerk_enabled": { "value": "True" }, "jerk_layer_0": { "value": "jerk_topbottom" }, "jerk_prime_tower": { "value": "math.ceil(jerk_print * 15 / 15)" }, @@ -119,7 +59,45 @@ "jerk_wall": { "value": "math.ceil(jerk_print * 10 / 15)" }, "jerk_wall_0": { "value": "math.ceil(jerk_wall * 5 / 10)" }, "layer_height_0": { "value": "0.2" }, - + "line_width": { "value": "machine_nozzle_size * 0.875" }, + "machine_acceleration": { "default_value": 3000 }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off heatbed\nM106 S0 ; turn off fan\nG91 ; relative positioning\nG1 Z1 F360 ; lift Z by 1mm\nG90 ; absolute positioning\nG1 X10 Y200 F3200; home X axis and push Y forward\nG1 Z200 F1200; home Z axis\nM84 ; disable motors" }, + "machine_gcode_flavor": { "default_value": "RepRap (RepRap)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-65.0, -45.0], + [-65.0, 30.0], + [50.0, 30.0], + [50.0, -45.0] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200 }, + "machine_max_feedrate_e": { "default_value": 45 }, + "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": "Liquid" }, + "machine_nozzle_cool_down_speed": { "default_value": 0.8 }, + "machine_nozzle_heat_up_speed": { "default_value": 1.4 }, + "machine_start_gcode": { "default_value": "G21 ; set units to millimeters\nG90 ; use absolute positioning\nM83 ; relative extrusion mode\nM104 S{material_print_temperature_layer_0} ; set extruder temp\nM140 S{material_bed_temperature_layer_0} ; set bed temp\nM190 S{material_bed_temperature_layer_0} ; wait for bed temp\nM109 S{material_print_temperature_layer_0} ; wait for extruder temp\nG32 ; mesh bed leveling\nG92 E0.0 ; reset extruder distance position\nG1 X0 Y-2 Z0.3 F4000.0 ; go outside print area\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X110.0 E15.5 F1000.0 ; intro line\nG92 E0.0 ; reset extruder distance position" }, + "machine_width": { "default_value": 200 }, + "material_bed_temperature": + { + "maximum_value_warning": "125", + "minimum_value": "0" + }, + "material_bed_temperature_layer_0": { "maximum_value_warning": "125" }, + "material_diameter": { "default_value": 1.75 }, + "material_print_temperature": { "minimum_value": "0" }, + "material_standby_temperature": { "minimum_value": "0" }, + "meshfix_maximum_deviation": { "value": "layer_height / 4" }, + "meshfix_maximum_resolution": { "value": "(speed_wall_0 + speed_wall_x) / 100" }, + "multiple_mesh_overlap": { "value": "0" }, + "optimize_wall_printing_order": { "value": "True" }, "raft_airgap": { "value": "0" }, "raft_base_speed": { "value": "20" }, "raft_base_thickness": { "value": "0.3" }, @@ -131,18 +109,22 @@ "raft_margin": { "value": "10" }, "raft_speed": { "value": "25" }, "raft_surface_layers": { "value": "1" }, - + "relative_extrusion": + { + "enabled": true, + "value": true + }, "retraction_amount": { "value": "3" }, + "retraction_combing": { "value": "'all'" }, "retraction_count_max": { "value": "10" }, "retraction_extrusion_window": { "value": "1" }, "retraction_hop": { "value": "2" }, - "retraction_hop_enabled": { "value": "True" }, + "retraction_hop_enabled": { "value": "True" }, "retraction_hop_only_when_collides": { "value": "True" }, "retraction_min_travel": { "value": "5" }, - "retraction_speed": { "value": "35" }, - "retraction_retract_speed": { "value": "35" }, "retraction_prime_speed": { "value": "35" }, - + "retraction_retract_speed": { "value": "35" }, + "retraction_speed": { "value": "35" }, "skin_overlap": { "value": "10" }, "speed_layer_0": { "value": "20" }, "speed_prime_tower": { "value": "speed_topbottom" }, @@ -150,29 +132,25 @@ "speed_support": { "value": "speed_wall_0" }, "speed_support_interface": { "value": "speed_topbottom" }, "speed_topbottom": { "value": "math.ceil(speed_print * 20 / 35)" }, + "speed_travel": + { + "maximum_value": "150", + "value": "150" + }, "speed_wall": { "value": "math.ceil(speed_print * 30 / 35)" }, "speed_wall_0": { "value": "math.ceil(speed_wall * 20 / 30)" }, "speed_wall_x": { "value": "speed_wall" }, - "support_angle": { "value": "45" }, "support_pattern": { "value": "'triangles'" }, - "support_use_towers": { "value": "False" }, "support_xy_distance": { "value": "wall_line_width_0 * 2.5" }, "support_xy_distance_overhang": { "value": "wall_line_width_0" }, "support_z_distance": { "value": "0" }, - "top_bottom_thickness": { "value": "1" }, - "travel_avoid_supports": { "value": "True" }, "travel_avoid_distance": { "value": "machine_nozzle_tip_outer_diameter / 2 * 1.5" }, - + "travel_avoid_supports": { "value": "True" }, "wall_0_inset": { "value": "0" }, "wall_line_width_x": { "value": "round(line_width * 0.3 / 0.35, 2)" }, "wall_thickness": { "value": "1" }, - "meshfix_maximum_resolution": { "value": "(speed_wall_0 + speed_wall_x) / 100" }, - "meshfix_maximum_deviation": { "value": "layer_height / 4" }, - "optimize_wall_printing_order": { "value": "True" }, - "retraction_combing": { "value": "'all'" }, - "initial_layer_line_width_factor": { "value": "120" }, "zig_zaggify_infill": { "value": "gradual_infill_steps == 0" } } -} +} \ No newline at end of file diff --git a/resources/definitions/lnl3d_base.def.json b/resources/definitions/lnl3d_base.def.json new file mode 100644 index 0000000000..5ee0638002 --- /dev/null +++ b/resources/definitions/lnl3d_base.def.json @@ -0,0 +1,130 @@ +{ + "version": 2, + "name": "LNL3D Printer", + "inherits": "fdmprinter", + "metadata": + { + "author": "LNL3D", + "manufacturer": "LNL3D", + "file_formats": "text/x-gcode", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { + "0": "lnl3d_extruder_left", + "1": "lnl3d_extruder_right" + }, + "preferred_material": "generic_pla", + "preferred_quality_type": "standard", + "preferred_variant_name": "0.4mm Nozzle", + "quality_definition": "lnl3d_base", + "variants_name": "Nozzle Size" + }, + "overrides": + { + "acceleration_print": { "value": 500 }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, + "acceleration_travel": { "value": 500 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel" }, + "adaptive_layer_height_variation": { "value": 0.04 }, + "adaptive_layer_height_variation_step": { "value": 0.04 }, + "adhesion_type": { "value": "'skirt'" }, + "brim_width": { "value": 4 }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "value": 10 }, + "fill_outline_gaps": { "value": false }, + "infill_overlap": { "value": 30.0 }, + "infill_pattern": { "value": "'lines'" }, + "infill_wipe_dist": { "value": 0.0 }, + "initial_layer_line_width_factor": { "default_value": 130.0 }, + "jerk_print": { "value": 8 }, + "jerk_travel": { "value": "jerk_print" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "layer_height_0": { "default_value": 0.2 }, + "machine_acceleration": { "value": 500 }, + "machine_end_gcode": { "default_value": "M104 T0 S0 ;left extruder heater off\nM104 T1 S0 ;right 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_extruder_count": { "default_value": 2 }, + "machine_heated_bed": { "default_value": true }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_feedrate_e": { "value": 80 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;move to min endstops\nG92 E0 ;reset extruder\nG1 E15 F1500 ;move extruder 15mm\nG1 Z15.0 F3000 ;move the header up 15mm\nM117 printing... ;LCD message" }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "meshfix_maximum_resolution": { "value": "0.25" }, + "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "optimize_wall_printing_order": { "value": "True" }, + "prime_tower_brim_enable": { "default_value": true }, + "prime_tower_wipe_enabled": { "default_value": false }, + "raft_airgap": { "default_value": 0.2 }, + "raft_margin": { "default_value": 2 }, + "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 4 }, + "retraction_hop": { "value": 0.2 }, + "retraction_hop_after_extruder_switch_height": { "value": 0.0 }, + "retraction_hop_enabled": { "value": "False" }, + "retraction_prime_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "retraction_retract_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "retraction_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "skin_overlap": { "value": 25 }, + "skirt_line_count": { "value": 2 }, + "speed_layer_0": { "value": 20.0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_travel": { "value": "80.0 if speed_print < 61 else 120.0 if speed_print > 100 else speed_print * 1.5" }, + "speed_travel_layer_0": { "value": "80 if speed_layer_0 < 21 else 100 if speed_layer_0 > 30 else speed_layer_0 * 5" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/1.4/layer_height)))" }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 4 }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_pattern": { "value": "'zigzag'" }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, + "switch_extruder_retraction_amount": { "value": 8.0 }, + "switch_extruder_retraction_speeds": { "default_value": 60.0 }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 4" }, + "travel_avoid_other_parts": { "value": false }, + "travel_avoid_supports": { "value": true }, + "travel_retract_before_outer_wall": { "value": true }, + "wall_0_wipe_dist": { "value": 0.0 }, + "wall_thickness": { "value": "line_width * 2" }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, + "z_seam_type": { "value": "'back'" }, + "zig_zaggify_infill": { "value": true } + } +} \ No newline at end of file diff --git a/resources/definitions/lnl3d_d3.def.json b/resources/definitions/lnl3d_d3.def.json new file mode 100755 index 0000000000..52e8042306 --- /dev/null +++ b/resources/definitions/lnl3d_d3.def.json @@ -0,0 +1,24 @@ +{ + "version": 2, + "name": "LNL3D D3", + "inherits": "lnl3d_base", + "metadata": + { + "visible": true, + "platform": "lnl3d_d3.stl", + "platform_offset": [ + 0, + 0, + 0 + ] + }, + "overrides": + { + "machine_depth": { "default_value": 300 }, + "machine_height": { "default_value": 350 }, + "machine_name": { "default_value": "LNL3D D3" }, + "machine_width": { "default_value": 300 }, + "prime_tower_position_x": { "value": "155" }, + "prime_tower_position_y": { "value": "155" } + } +} \ No newline at end of file diff --git a/resources/definitions/lnl3d_d3_vulcan.def.json b/resources/definitions/lnl3d_d3_vulcan.def.json new file mode 100755 index 0000000000..f81cae81c5 --- /dev/null +++ b/resources/definitions/lnl3d_d3_vulcan.def.json @@ -0,0 +1,24 @@ +{ + "version": 2, + "name": "LNL3D D3 Vulcan", + "inherits": "lnl3d_base", + "metadata": + { + "visible": true, + "platform": "lnl3d_d3.stl", + "platform_offset": [ + 0, + 0, + 0 + ] + }, + "overrides": + { + "machine_depth": { "default_value": 300 }, + "machine_height": { "default_value": 320 }, + "machine_name": { "default_value": "LNL3D D3 Vulcan" }, + "machine_width": { "default_value": 295 }, + "prime_tower_position_x": { "value": "155" }, + "prime_tower_position_y": { "value": "155" } + } +} \ No newline at end of file diff --git a/resources/definitions/lnl3d_d5.def.json b/resources/definitions/lnl3d_d5.def.json new file mode 100755 index 0000000000..535341166f --- /dev/null +++ b/resources/definitions/lnl3d_d5.def.json @@ -0,0 +1,24 @@ +{ + "version": 2, + "name": "LNL3D D5", + "inherits": "lnl3d_base", + "metadata": + { + "visible": true, + "platform": "lnl3d_d5.stl", + "platform_offset": [ + 0, + 0, + 0 + ] + }, + "overrides": + { + "machine_depth": { "default_value": 500 }, + "machine_height": { "default_value": 600 }, + "machine_name": { "default_value": "LNL3D D5" }, + "machine_width": { "default_value": 500 }, + "prime_tower_position_x": { "value": "155" }, + "prime_tower_position_y": { "value": "155" } + } +} \ No newline at end of file diff --git a/resources/definitions/lnl3d_d6.def.json b/resources/definitions/lnl3d_d6.def.json new file mode 100644 index 0000000000..b6f99a13ae --- /dev/null +++ b/resources/definitions/lnl3d_d6.def.json @@ -0,0 +1,24 @@ +{ + "version": 2, + "name": "LNL3D D6", + "inherits": "lnl3d_base", + "metadata": + { + "visible": true, + "platform": "lnl3d_d6.3mf", + "platform_offset": [ + 5, + 296.5, + -162.5 + ] + }, + "overrides": + { + "machine_depth": { "default_value": 600 }, + "machine_height": { "default_value": 600 }, + "machine_name": { "default_value": "LNL3D D6" }, + "machine_width": { "default_value": 600 }, + "prime_tower_position_x": { "value": "155" }, + "prime_tower_position_y": { "value": "155" } + } +} \ No newline at end of file diff --git a/resources/definitions/longer_base.def.json b/resources/definitions/longer_base.def.json index 2a2e6f5867..4d6ba0beaf 100644 --- a/resources/definitions/longer_base.def.json +++ b/resources/definitions/longer_base.def.json @@ -1,167 +1,128 @@ { - "name": "Longer Base Printer", "version": 2, + "name": "Longer Base Printer", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": false, "author": "Longer", "manufacturer": "Longer", "file_formats": "text/x-gcode", - "first_start_actions": ["MachineSettingsAction"], - - "machine_extruder_trains": { - "0": "longer_base_extruder_0" - }, - + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, "has_materials": true, "has_variants": true, - "has_machine_quality": true, - "variants_name": "Nozzle Size", - - "preferred_variant_name": "0.4mm Nozzle", + "machine_extruder_trains": { "0": "longer_base_extruder_0" }, + "preferred_material": "generic_pla", "preferred_quality_type": "standard", - "preferred_material": "generic_pla" - + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Size" }, - "overrides": { - "machine_name": { "default_value": "LONGER Base Printer" }, - "machine_start_gcode": { "default_value": "; LONGER Start G-code\nG21 ; metric values\nG90 ; absolute positioning\nM82 ; set extruder to absolute mode\nM107 ; start with the fan off\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; 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.3 F5000.0 ; Move over to prevent blob squish\n" }, - "machine_end_gcode": { "default_value": "; LONGER End G-code\nG91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z\n" }, - - "machine_max_feedrate_x": { "value": 500 }, - "machine_max_feedrate_y": { "value": 500 }, - "machine_max_feedrate_z": { "value": 10 }, - "machine_max_feedrate_e": { "value": 50 }, - - "machine_max_acceleration_x": { "value": 500 }, - "machine_max_acceleration_y": { "value": 500 }, - "machine_max_acceleration_z": { "value": 100 }, - "machine_max_acceleration_e": { "value": 5000 }, - "machine_acceleration": { "value": 500 }, - - "machine_max_jerk_xy": { "value": 10 }, - "machine_max_jerk_z": { "value": 0.4 }, - "machine_max_jerk_e": { "value": 5 }, - - "machine_heated_bed": { "default_value": true }, - - "material_diameter": { "default_value": 1.75 }, - + "overrides": + { + "acceleration_enabled": { "value": false }, "acceleration_print": { "value": 500 }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, "acceleration_travel": { "value": 500 }, "acceleration_travel_layer_0": { "value": "acceleration_travel" }, - "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, - + "adaptive_layer_height_variation": { "value": 0.04 }, + "adaptive_layer_height_variation_step": { "value": 0.04 }, + "adhesion_type": { "value": "'raft'" }, + "brim_replaces_support": { "value": false }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "value": 10 }, + "fill_outline_gaps": { "value": false }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 30.0 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_wipe_dist": { "value": 0.0 }, + "jerk_enabled": { "value": false }, "jerk_print": { "value": 8 }, "jerk_travel": { "value": "jerk_print" }, "jerk_travel_layer_0": { "value": "jerk_travel" }, - - "acceleration_enabled": { "value": false }, - "jerk_enabled": { "value": false }, - - "speed_print": { "value": 50.0 } , - "speed_infill": { "value": "speed_print" }, - "speed_wall": { "value": "speed_print / 2" }, - "speed_wall_0": { "value": "speed_wall" }, - "speed_wall_x": { "value": "speed_wall" }, - "speed_topbottom": { "value": "speed_print / 2" }, - "speed_roofing": { "value": "speed_topbottom" }, - "speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" }, - "speed_layer_0": { "value": 20.0 }, - "speed_print_layer_0": { "value": "speed_layer_0" }, - "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, - "speed_prime_tower": { "value": "speed_topbottom" }, - "speed_support": { "value": "speed_wall_0" }, - "speed_support_interface": { "value": "speed_topbottom" }, - "speed_z_hop": { "value": 5 }, - - "skirt_brim_speed": { "value": "speed_layer_0" }, - - "line_width": { "value": "machine_nozzle_size" }, - - "optimize_wall_printing_order": { "value": "True" }, - - "material_initial_print_temperature": { "value": "material_print_temperature" }, + "machine_acceleration": { "value": 500 }, + "machine_end_gcode": { "default_value": "; LONGER End G-code\nG91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z\n" }, + "machine_heated_bed": { "default_value": true }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_feedrate_e": { "value": 50 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_name": { "default_value": "LONGER Base Printer" }, + "machine_start_gcode": { "default_value": "; LONGER Start G-code\nG21 ; metric values\nG90 ; absolute positioning\nM82 ; set extruder to absolute mode\nM107 ; start with the fan off\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; 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.3 F5000.0 ; Move over to prevent blob squish\n" }, + "material_diameter": { "default_value": 1.75 }, "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_flow": { "value": 100 }, - - "z_seam_type": { "value": "'back'" }, - "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, - - "infill_sparse_density": { "value": "20" }, - "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, - "infill_before_walls": { "value": false }, - "infill_overlap": { "value": 30.0 }, - "skin_overlap": { "value": 10.0 }, - "infill_wipe_dist": { "value": 0.0 }, - "wall_0_wipe_dist": { "value": 0.0 }, - - "fill_outline_gaps": { "value": false }, - + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "meshfix_maximum_resolution": { "value": "0.25" }, + "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "optimize_wall_printing_order": { "value": "True" }, "retraction_amount": { "default_value": 5 }, - "retraction_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200, - "default_value": 45 - }, - "retraction_retract_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 - }, - "retraction_prime_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 - }, - - "retraction_hop_enabled": { "value": "False" }, - "retraction_hop": { "value": 0.2 }, "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, "retraction_combing_max_distance": { "value": 30 }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 10 }, + "retraction_hop": { "value": 0.2 }, + "retraction_min_travel": { "value": 1.5 }, + "retraction_prime_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "retraction_retract_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "retraction_speed": + { + "default_value": 45, + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "skin_overlap": { "value": 10.0 }, + "skirt_brim_speed": { "value": "speed_layer_0" }, + "skirt_gap": { "value": 10.0 }, + "skirt_line_count": { "value": 3 }, + "speed_layer_0": { "value": 20.0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": 50.0 }, + "speed_roofing": { "value": "speed_topbottom" }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" }, + "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 4 }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_interface_skip_height": { "value": 0.2 }, + "support_pattern": { "value": "'zigzag'" }, + "support_wall_count": { "value": 1 }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, "travel_avoid_other_parts": { "value": true }, "travel_avoid_supports": { "value": true }, "travel_retract_before_outer_wall": { "value": true }, - - "retraction_enable": { "value": true }, - "retraction_count_max": { "value": 100 }, - "retraction_extrusion_window": { "value": 10 }, - "retraction_min_travel": { "value": 1.5 }, - - "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, - "cool_fan_enabled": { "value": true }, - "cool_min_layer_time": { "value": 10 }, - - "adhesion_type": { "value": "'raft'" }, - "brim_replaces_support": { "value": false }, - "skirt_gap": { "value": 10.0 }, - "skirt_line_count": { "value": 3 }, - - "adaptive_layer_height_variation": { "value": 0.04 }, - "adaptive_layer_height_variation_step": { "value": 0.04 }, - - "meshfix_maximum_resolution": { "value": "0.25" }, - "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, - - "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, - "support_pattern": { "value": "'zigzag'" }, - "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, - "support_use_towers": { "value": false }, - "support_xy_distance": { "value": "wall_line_width_0 * 2" }, - "support_xy_distance_overhang": { "value": "wall_line_width_0" }, - "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, - "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, - "support_wall_count": { "value": 1 }, - "support_brim_enable": { "value": true }, - "support_brim_width": { "value": 4 }, - - "support_interface_enable": { "value": true }, - "support_interface_height": { "value": "layer_height * 4" }, - "support_interface_density": { "value": 33.333 }, - "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, - "minimum_support_area": { "value": 2 }, - "minimum_interface_area": { "value": 10 }, - "top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" }, - "wall_thickness": {"value": "line_width * 2" } - + "wall_0_wipe_dist": { "value": 0.0 }, + "wall_thickness": { "value": "line_width * 2" }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, + "z_seam_type": { "value": "'back'" } } -} +} \ No newline at end of file diff --git a/resources/definitions/longer_cube2.def.json b/resources/definitions/longer_cube2.def.json index a971da6c54..87ae407b37 100644 --- a/resources/definitions/longer_cube2.def.json +++ b/resources/definitions/longer_cube2.def.json @@ -1,34 +1,37 @@ { - "name": "Longer Cube2", "version": 2, + "name": "Longer Cube2", "inherits": "longer_base", - "metadata": { - "quality_definition": "longer_base", + "metadata": + { "visible": true, "platform": "longer_cube2_platform.stl", - "platform_offset": [-60, -3 ,70] + "platform_offset": [ + -60, + -3, + 70 + ], + "quality_definition": "longer_base" }, - "overrides": { - "machine_name": { "default_value": "LONGER Cube2" }, - "machine_start_gcode": { "default_value": "; LONGER Cube2 Start G-code\nG21 ; metric values\nG90 ; absolute positioning\nM82 ; set extruder to absolute mode\nM107 ; start with the fan off\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y120.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y120.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; 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.3 F5000.0 ; Move over to prevent blob squish\n" }, - "machine_end_gcode": { "default_value": "; LONGER Cube2 End G-code\nG91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM84 X Y E ;Disable all steppers but Z\n" }, - - "machine_heated_bed": { "default_value": false }, - - "machine_width": { "default_value": 120 }, + "overrides": + { + "gantry_height": { "value": 18 }, "machine_depth": { "default_value": 140 }, - "machine_height": { "default_value": 105 }, - - "machine_head_with_fans_polygon": { "default_value": [ + "machine_end_gcode": { "default_value": "; LONGER Cube2 End G-code\nG91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM84 X Y E ;Disable all steppers but Z\n" }, + "machine_head_with_fans_polygon": + { + "default_value": [ [-22, 31], [-22, -21], [14, -21], [14, 31] ] }, - - "gantry_height": { "value": 18 }, - + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 105 }, + "machine_name": { "default_value": "LONGER Cube2" }, + "machine_start_gcode": { "default_value": "; LONGER Cube2 Start G-code\nG21 ; metric values\nG90 ; absolute positioning\nM82 ; set extruder to absolute mode\nM107 ; start with the fan off\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y120.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y120.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; 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.3 F5000.0 ; Move over to prevent blob squish\n" }, + "machine_width": { "default_value": 120 }, "speed_travel": { "value": 65 } } -} +} \ No newline at end of file diff --git a/resources/definitions/longer_lk1.def.json b/resources/definitions/longer_lk1.def.json index 42cbb8a4d3..44bfa2b49e 100644 --- a/resources/definitions/longer_lk1.def.json +++ b/resources/definitions/longer_lk1.def.json @@ -1,29 +1,34 @@ { - "name": "Longer LK1", "version": 2, + "name": "Longer LK1", "inherits": "longer_base", - "metadata": { - "quality_definition": "longer_base", + "metadata": + { "visible": true, "platform": "longer_310mm_platform.stl", - "platform_offset": [-155, -3 ,155] + "platform_offset": [ + -155, + -3, + 155 + ], + "quality_definition": "longer_base" }, - "overrides": { - "machine_name": { "default_value": "LONGER LK1" }, - "machine_width": { "default_value": 300 }, + "overrides": + { + "gantry_height": { "value": 33 }, "machine_depth": { "default_value": 300 }, - "machine_height": { "default_value": 400 }, - - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-22, 39], [-22, -34], [58, -34], [58, 39] ] }, - - "gantry_height": { "value": 33 }, - + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "LONGER LK1" }, + "machine_width": { "default_value": 300 }, "speed_travel": { "value": 65 } } -} +} \ No newline at end of file diff --git a/resources/definitions/longer_lk1plus.def.json b/resources/definitions/longer_lk1plus.def.json index 46d5e424de..da3bd3291c 100644 --- a/resources/definitions/longer_lk1plus.def.json +++ b/resources/definitions/longer_lk1plus.def.json @@ -1,29 +1,34 @@ { - "name": "Longer LK1 Plus", "version": 2, + "name": "Longer LK1 Plus", "inherits": "longer_base", - "metadata": { - "quality_definition": "longer_base", + "metadata": + { "visible": true, "platform": "longer_415mm_platform.stl", - "platform_offset": [-207.5, -3 ,207.5] + "platform_offset": [ + -207.5, + -3, + 207.5 + ], + "quality_definition": "longer_base" }, - "overrides": { - "machine_name": { "default_value": "LONGER LK1 Plus" }, - "machine_width": { "default_value": 400 }, + "overrides": + { + "gantry_height": { "value": 33 }, "machine_depth": { "default_value": 400 }, - "machine_height": { "default_value": 500 }, - - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-22, 39], [-22, -34], [58, -34], [58, 39] ] }, - - "gantry_height": { "value": 33 }, - + "machine_height": { "default_value": 500 }, + "machine_name": { "default_value": "LONGER LK1 Plus" }, + "machine_width": { "default_value": 400 }, "speed_travel": { "value": 65 } } -} +} \ No newline at end of file diff --git a/resources/definitions/longer_lk1pro.def.json b/resources/definitions/longer_lk1pro.def.json index ee0a2e0ac7..384ba5a912 100644 --- a/resources/definitions/longer_lk1pro.def.json +++ b/resources/definitions/longer_lk1pro.def.json @@ -1,27 +1,33 @@ { - "name": "Longer LK1 Pro", "version": 2, + "name": "Longer LK1 Pro", "inherits": "longer_base", - "metadata": { - "quality_definition": "longer_base", + "metadata": + { "visible": true, "platform": "longer_310mm_platform.stl", - "platform_offset": [-155, -3 ,155] + "platform_offset": [ + -155, + -3, + 155 + ], + "quality_definition": "longer_base" }, - "overrides": { - "machine_name": { "default_value": "LONGER LK1 Pro" }, - "machine_width": { "default_value": 300 }, + "overrides": + { + "gantry_height": { "value": 33 }, "machine_depth": { "default_value": 300 }, - "machine_height": { "default_value": 400 }, - - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-22, 39], [-22, -34], [58, -34], [58, 39] ] }, - - "gantry_height": { "value": 33 } + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "LONGER LK1 Pro" }, + "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/longer_lk4.def.json b/resources/definitions/longer_lk4.def.json index 2639265014..607aef894c 100644 --- a/resources/definitions/longer_lk4.def.json +++ b/resources/definitions/longer_lk4.def.json @@ -1,29 +1,34 @@ { - "name": "Longer LK4", "version": 2, + "name": "Longer LK4", "inherits": "longer_base", - "metadata": { - "quality_definition": "longer_base", + "metadata": + { "visible": true, "platform": "longer_235mm_platform.stl", - "platform_offset": [-117.5, -3 ,117.5] + "platform_offset": [ + -117.5, + -3, + 117.5 + ], + "quality_definition": "longer_base" }, - "overrides": { - "machine_name": { "default_value": "LONGER LK4" }, - "machine_width": { "default_value": 220 }, + "overrides": + { + "gantry_height": { "value": 33 }, "machine_depth": { "default_value": 220 }, - "machine_height": { "default_value": 250 }, - - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-22, 39], [-22, -34], [58, -34], [58, 39] ] }, - - "gantry_height": { "value": 33 }, - + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "LONGER LK4" }, + "machine_width": { "default_value": 220 }, "speed_travel": { "value": 65 } } -} +} \ No newline at end of file diff --git a/resources/definitions/longer_lk4pro.def.json b/resources/definitions/longer_lk4pro.def.json index 6cd83b6048..481887ed0b 100644 --- a/resources/definitions/longer_lk4pro.def.json +++ b/resources/definitions/longer_lk4pro.def.json @@ -1,27 +1,33 @@ { - "name": "Longer LK4 Pro", "version": 2, + "name": "Longer LK4 Pro", "inherits": "longer_base", - "metadata": { - "quality_definition": "longer_base", + "metadata": + { "visible": true, "platform": "longer_235mm_platform.stl", - "platform_offset": [-117.5, -3 ,117.5] + "platform_offset": [ + -117.5, + -3, + 117.5 + ], + "quality_definition": "longer_base" }, - "overrides": { - "machine_name": { "default_value": "LONGER LK4 Pro" }, - "machine_width": { "default_value": 220 }, + "overrides": + { + "gantry_height": { "value": 33 }, "machine_depth": { "default_value": 220 }, - "machine_height": { "default_value": 250 }, - - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-22, 39], [-22, -34], [58, -34], [58, 39] ] }, - - "gantry_height": { "value": 33 } + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "LONGER LK4 Pro" }, + "machine_width": { "default_value": 220 } } -} +} \ No newline at end of file diff --git a/resources/definitions/longer_lk4x.def.json b/resources/definitions/longer_lk4x.def.json new file mode 100644 index 0000000000..9d3de42599 --- /dev/null +++ b/resources/definitions/longer_lk4x.def.json @@ -0,0 +1,38 @@ +{ + "version": 2, + "name": "Longer LK4 X", + "inherits": "longer_base", + "metadata": + { + "visible": true, + "platform": "longer_235mm_platform.stl", + "platform_offset": [ + -117.5, + -3, + 117.5 + ], + "quality_definition": "longer_base" + }, + "overrides": + { + "gantry_height": { "value": 35 }, + "machine_depth": { "default_value": 220 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-55, 20], + [-55, -36], + [35, -36], + [35, 20] + ] + }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "LONGER LK4 X" }, + "machine_start_gcode": { "default_value": "; -- LONGER BL-TOUCH Start G-code --\nG21 ; metric values\nG90 ; absolute positioning\nM82 ; set extruder to absolute mode\nM107 ; start with the fan off\n\n; confirm BL-touch safety\nM280 P0 S160 ; BL-Touch Alarm release\nG4 P100 ; Delay for BL-Touch\n\n; homing\nG28 X0 Y0 ; move X/Y to min endstops\nG28 Z0 ; move Z to min endstops\n\n; reconfirm BL-touch safety\nM280 P0 S160 ; BL-Touch Alarm realease\nG4 P100 ; Delay for BL-Touch\n\n; bed leveling\nG29; Auto leveling\nM420 Z5 ; set LEVELING_FADE_HEIGHT\nM500 ; save data of G29 and M420\nM420 S1 ; enable bed leveling\n\n; prepare hot-end\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y150.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y150.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; 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.3 F5000.0 ; Move over to prevent blob squish\n; -- end of LONGER BL-TOUCH Start G-code --" }, + "machine_width": { "default_value": 220 }, + "retraction_amount": { "value": 2.0 }, + "retraction_combing": { "value": "'noskin'" }, + "speed_travel": { "value": 65 }, + "z_seam_type": { "value": "'shortest'" } + } +} \ No newline at end of file diff --git a/resources/definitions/longer_lk5.def.json b/resources/definitions/longer_lk5.def.json index a33026fe10..e5831fb38e 100644 --- a/resources/definitions/longer_lk5.def.json +++ b/resources/definitions/longer_lk5.def.json @@ -1,29 +1,34 @@ { - "name": "Longer LK5", "version": 2, + "name": "Longer LK5", "inherits": "longer_base", - "metadata": { - "quality_definition": "longer_base", + "metadata": + { "visible": true, "platform": "longer_310mm_platform.stl", - "platform_offset": [-155, -3 ,155] + "platform_offset": [ + -155, + -3, + 155 + ], + "quality_definition": "longer_base" }, - "overrides": { - "machine_name": { "default_value": "LONGER LK5" }, - "machine_width": { "default_value": 300 }, + "overrides": + { + "gantry_height": { "value": 33 }, "machine_depth": { "default_value": 300 }, - "machine_height": { "default_value": 400 }, - - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-22, 39], [-22, -34], [58, -34], [58, 39] ] }, - - "gantry_height": { "value": 33 }, - + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "LONGER LK5" }, + "machine_width": { "default_value": 300 }, "speed_travel": { "value": 65 } } -} +} \ No newline at end of file diff --git a/resources/definitions/longer_lk5pro.def.json b/resources/definitions/longer_lk5pro.def.json index e16038d4b7..b98a13ace0 100644 --- a/resources/definitions/longer_lk5pro.def.json +++ b/resources/definitions/longer_lk5pro.def.json @@ -1,27 +1,33 @@ { - "name": "Longer LK5 Pro", "version": 2, + "name": "Longer LK5 Pro", "inherits": "longer_base", - "metadata": { - "quality_definition": "longer_base", + "metadata": + { "visible": true, "platform": "longer_310mm_platform.stl", - "platform_offset": [-155, -3 ,155] + "platform_offset": [ + -155, + -3, + 155 + ], + "quality_definition": "longer_base" }, - "overrides": { - "machine_name": { "default_value": "LONGER LK5 Pro" }, - "machine_width": { "default_value": 300 }, + "overrides": + { + "gantry_height": { "value": 33 }, "machine_depth": { "default_value": 300 }, - "machine_height": { "default_value": 400 }, - - "machine_head_with_fans_polygon": { "default_value": [ + "machine_head_with_fans_polygon": + { + "default_value": [ [-22, 39], [-22, -34], [58, -34], [58, 39] ] }, - - "gantry_height": { "value": 33 } + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "LONGER LK5 Pro" }, + "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/lotmaxx_sc10.def.json b/resources/definitions/lotmaxx_sc10.def.json index b94c63533c..f2ef02c664 100644 --- a/resources/definitions/lotmaxx_sc10.def.json +++ b/resources/definitions/lotmaxx_sc10.def.json @@ -1,64 +1,68 @@ { - "name": "Lotmaxx SC-10", "version": 2, + "name": "Lotmaxx SC-10", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "lotmaxx.com", "manufacturer": "Lotmaxx", "file_formats": "text/x-gcode", "platform": "lotmaxx_sc_10_20_platform.3mf", "has_materials": true, - "machine_extruder_trains": - { - "0": "lotmaxx_sc10_extruder_0" - } + "machine_extruder_trains": { "0": "lotmaxx_sc10_extruder_0" } }, - "overrides": { - "machine_name": { "default_value": "Lotmaxx SC-10" }, - "machine_width": { "default_value": 235 }, - "machine_depth": { "default_value": 235 }, - "machine_height": { "default_value": 320 }, - "machine_head_with_fans_polygon": { "default_value": [[-32,11],[-32,-32],[28,-32],[28,11]] }, - "gantry_height": { "value": 40 }, - "machine_start_gcode": { "default_value": "; SC-10 Custom Start G-code\nG28 ; Home all axes\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n; End of custom start GCode" }, - "machine_end_gcode": { "default_value": "; SC-10 Custom End G-code\nG4 ; Wait\nM220 S100 ; Reset Speed factor override percentage to default (100%)\nM221 S100 ; Reset Extrude factor override percentage to default (100%)\nG91 ; Set coordinates to relative\nG1 F1800 E-3 ; Retract filament 3 mm to prevent oozing\nG1 F3000 Z20 ; Move Z Axis up 20 mm to allow filament ooze freely\nG90 ; Set coordinates to absolute\nG1 X0 Y{machine_depth} F1000 ; Move Heat Bed to the front for easy print removal\nM84 ; Disable stepper motors\n; End of custom end GCode" }, - "machine_max_jerk_xy":{ "value":10 }, - "machine_max_jerk_z":{ "value":0.4 }, - "machine_max_jerk_e":{ "value":5 }, - "machine_heated_bed":{ "default_value":true }, - "material_diameter":{ "default_value":1.75 }, - "jerk_print":{ "value":8 }, - "jerk_travel":{ "value":"jerk_print" }, - "jerk_travel_layer_0":{ "value":"jerk_travel" }, - "acceleration_enabled":{ "value":false }, - "jerk_enabled":{ "value":false }, - "speed_print":{ "value":60.0 }, - "speed_infill":{ "value":"speed_print * 2" }, - "speed_wall":{ "value":"speed_print / 2" }, - "speed_wall_0":{ "value":"speed_wall" }, - "speed_wall_x":{ "value":"speed_wall" }, - "speed_topbottom":{ "value":"speed_print / 2" }, - "speed_roofing":{ "value":"speed_topbottom" }, - "speed_travel":{ "value":"150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" }, - "speed_layer_0":{ "value":20.0 }, - "speed_print_layer_0":{ "value":"speed_layer_0" }, - "speed_travel_layer_0":{ "value":"100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, - "speed_prime_tower":{ "value":"speed_topbottom" }, - "speed_support":{ "value":"speed_wall_0" }, - "speed_support_interface":{ "value":"speed_topbottom" }, - "skirt_brim_speed":{ "value":"speed_layer_0" }, - "retraction_enable":{ "value":true }, - "retraction_count_max":{ "value":100 }, - "retraction_extrusion_window":{ "value":10 }, - "retraction_min_travel":{ "value":1.5 }, - "cool_fan_full_at_height":{ "value":"layer_height_0 + 2 * layer_height" }, - "cool_fan_enabled":{ "value":true }, - "cool_min_layer_time":{ "value":10 }, - "meshfix_maximum_resolution":{ "value":"0.25" }, - "meshfix_maximum_travel_resolution":{ "value":"meshfix_maximum_resolution" }, + "overrides": + { + "acceleration_enabled": { "value": false }, "adhesion_type": { "value": "'none' if support_enable else 'skirt'" }, - "skirt_gap":{ "value":5.0 }, - "skirt_line_count":{ "value":4 } + "cool_fan_enabled": { "value": true }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "value": 10 }, + "gantry_height": { "value": 40 }, + "jerk_enabled": { "value": false }, + "jerk_print": { "value": 8 }, + "jerk_travel": { "value": "jerk_print" }, + "jerk_travel_layer_0": { "value": " jerk_travel" }, + "machine_depth": { "default_value": 235 }, + "machine_end_gcode": { "default_value": "; SC-10 Custom End G-code\nG4 ; Wait\nM220 S100 ; Reset Speed factor override percentage to default (100%)\nM221 S100 ; Reset Extrude factor override percentage to default (100%)\nG91 ; Set coordinates to relative\nG1 F1800 E-3 ; Retract filament 3 mm to prevent oozing\nG1 F3000 Z20 ; Move Z Axis up 20 mm to allow filament ooze freely\nG90 ; Set coordinates to absolute\nG1 X0 Y{machine_depth} F1000 ; Move Heat Bed to the front for easy print removal\nM84 ; Disable stepper motors\n; End of custom end GCode" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-32, 11], + [-32, -32], + [28, -32], + [28, 11] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 320 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_name": { "default_value": "Lotmaxx SC-10" }, + "machine_start_gcode": { "default_value": "; SC-10 Custom Start G-code\nG28 ; Home all axes\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n; End of custom start GCode" }, + "machine_width": { "default_value": 235 }, + "material_diameter": { "default_value": 1.75 }, + "meshfix_maximum_resolution": { "value": "0.25" }, + "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, + "retraction_count_max": { "value": 100 }, + "retraction_enable": { "value": true }, + "retraction_extrusion_window": { "value": 10 }, + "retraction_min_travel": { "value": 1.5 }, + "skirt_brim_speed": { "value": "speed_layer_0" }, + "skirt_gap": { "value": 5.0 }, + "skirt_line_count": { "value": 4 }, + "speed_infill": { "value": "speed_print * 2" }, + "speed_layer_0": { "value": 20.0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": 60.0 }, + "speed_roofing": { "value": "speed_topbottom" }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" }, + "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, + "speed_wall_0": { "value": "speed_wall" }, + "speed_wall_x": { "value": "speed_wall" } } -} +} \ No newline at end of file diff --git a/resources/definitions/lotmaxx_sc20.def.json b/resources/definitions/lotmaxx_sc20.def.json index f96cb0839a..216d42fc06 100644 --- a/resources/definitions/lotmaxx_sc20.def.json +++ b/resources/definitions/lotmaxx_sc20.def.json @@ -1,64 +1,68 @@ { - "name": "Lotmaxx SC-20", "version": 2, + "name": "Lotmaxx SC-20", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "lotmaxx.com", "manufacturer": "Lotmaxx", "file_formats": "text/x-gcode", "platform": "lotmaxx_sc_10_20_platform.3mf", "has_materials": true, - "machine_extruder_trains": - { - "0": "lotmaxx_sc20_extruder_0" - } + "machine_extruder_trains": { "0": "lotmaxx_sc20_extruder_0" } }, - "overrides": { - "machine_name": { "default_value": "Lotmaxx SC-20" }, - "machine_width": { "default_value": 235 }, - "machine_depth": { "default_value": 235 }, - "machine_height": { "default_value": 320 }, - "machine_head_with_fans_polygon": { "default_value": [[-32,11],[-32,-32],[28,-32],[28,11]] }, - "gantry_height": { "value": 40 }, - "machine_start_gcode": { "default_value": "; SC-20 Custom Start G-code\nG28 ; Home all axes\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n; End of custom start GCode" }, - "machine_end_gcode": { "default_value": "; SC-20 Custom End G-code\nG4 ; Wait\nM220 S100 ; Reset Speed factor override percentage to default (100%)\nM221 S100 ; Reset Extrude factor override percentage to default (100%)\nG91 ; Set coordinates to relative\nG1 F1800 E-3 ; Retract filament 3 mm to prevent oozing\nG1 F3000 Z20 ; Move Z Axis up 20 mm to allow filament ooze freely\nG90 ; Set coordinates to absolute\nG1 X0 Y{machine_depth} F1000 ; Move Heat Bed to the front for easy print removal\nM84 ; Disable stepper motors\n; End of custom end GCode" }, - "machine_max_jerk_xy":{ "value":10 }, - "machine_max_jerk_z":{ "value":0.4 }, - "machine_max_jerk_e":{ "value":5 }, - "machine_heated_bed":{ "default_value":true }, - "material_diameter":{ "default_value":1.75 }, - "jerk_print":{ "value":8 }, - "jerk_travel":{ "value":"jerk_print" }, - "jerk_travel_layer_0":{ "value":"jerk_travel" }, - "acceleration_enabled":{ "value":false }, - "jerk_enabled":{ "value":false }, - "speed_print":{ "value":60.0 }, - "speed_infill":{ "value":"speed_print * 2" }, - "speed_wall":{ "value":"speed_print / 2" }, - "speed_wall_0":{ "value":"speed_wall" }, - "speed_wall_x":{ "value":"speed_wall" }, - "speed_topbottom":{ "value":"speed_print / 2" }, - "speed_roofing":{ "value":"speed_topbottom" }, - "speed_travel":{ "value":"150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" }, - "speed_layer_0":{ "value":20.0 }, - "speed_print_layer_0":{ "value":"speed_layer_0" }, - "speed_travel_layer_0":{ "value":"100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, - "speed_prime_tower":{ "value":"speed_topbottom" }, - "speed_support":{ "value":"speed_wall_0" }, - "speed_support_interface":{ "value":"speed_topbottom" }, - "skirt_brim_speed":{ "value":"speed_layer_0" }, - "retraction_enable":{ "value":true }, - "retraction_count_max":{ "value":100 }, - "retraction_extrusion_window":{ "value":10 }, - "retraction_min_travel":{ "value":1.5 }, - "cool_fan_full_at_height":{ "value":"layer_height_0 + 2 * layer_height" }, - "cool_fan_enabled":{ "value":true }, - "cool_min_layer_time":{ "value":10 }, - "meshfix_maximum_resolution":{ "value":"0.25" }, - "meshfix_maximum_travel_resolution":{ "value":"meshfix_maximum_resolution" }, + "overrides": + { + "acceleration_enabled": { "value": false }, "adhesion_type": { "value": "'none' if support_enable else 'skirt'" }, - "skirt_gap":{ "value":5.0 }, - "skirt_line_count":{ "value":4 } + "cool_fan_enabled": { "value": true }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "value": 10 }, + "gantry_height": { "value": 40 }, + "jerk_enabled": { "value": false }, + "jerk_print": { "value": 8 }, + "jerk_travel": { "value": "jerk_print" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "machine_depth": { "default_value": 235 }, + "machine_end_gcode": { "default_value": "; SC-20 Custom End G-code\nG4 ; Wait\nM220 S100 ; Reset Speed factor override percentage to default (100%)\nM221 S100 ; Reset Extrude factor override percentage to default (100%)\nG91 ; Set coordinates to relative\nG1 F1800 E-3 ; Retract filament 3 mm to prevent oozing\nG1 F3000 Z20 ; Move Z Axis up 20 mm to allow filament ooze freely\nG90 ; Set coordinates to absolute\nG1 X0 Y{machine_depth} F1000 ; Move Heat Bed to the front for easy print removal\nM84 ; Disable stepper motors\n; End of custom end GCode" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-32, 11], + [-32, -32], + [28, -32], + [28, 11] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 320 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_name": { "default_value": "Lotmaxx SC-20" }, + "machine_start_gcode": { "default_value": "; SC-20 Custom Start G-code\nG28 ; Home all axes\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n; End of custom start GCode" }, + "machine_width": { "default_value": 235 }, + "material_diameter": { "default_value": 1.75 }, + "meshfix_maximum_resolution": { "value": "0.25" }, + "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, + "retraction_count_max": { "value": 100 }, + "retraction_enable": { "value": true }, + "retraction_extrusion_window": { "value": 10 }, + "retraction_min_travel": { "value": 1.5 }, + "skirt_brim_speed": { "value": "speed_layer_0" }, + "skirt_gap": { "value": 5.0 }, + "skirt_line_count": { "value": 4 }, + "speed_infill": { "value": "speed_print * 2" }, + "speed_layer_0": { "value": 20.0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": 60.0 }, + "speed_roofing": { "value": "speed_topbottom" }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" }, + "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, + "speed_wall_0": { "value": "speed_wall" }, + "speed_wall_x": { "value": "speed_wall" } } -} +} \ No newline at end of file diff --git a/resources/definitions/lotmaxx_sc60.def.json b/resources/definitions/lotmaxx_sc60.def.json index a18e197757..25dc7f5ae8 100644 --- a/resources/definitions/lotmaxx_sc60.def.json +++ b/resources/definitions/lotmaxx_sc60.def.json @@ -1,72 +1,72 @@ { - "name": "Lotmaxx Shark", "version": 2, + "name": "Lotmaxx Shark", "inherits": "fdmprinter", - "overrides": { - "machine_name": { "default_value": "Lotmaxx Shark" }, - "machine_width": { "default_value": 235 }, - "machine_depth": { "default_value": 235 }, - "machine_height": { "default_value": 265 }, - "machine_head_with_fans_polygon": { "default_value": [ - [-50.7,16.8], - [-50.7,-29.5], - [46.9,-29.5], - [49.9,16.8] - ] - }, - "gantry_height": { "value": 29 }, - "machine_heated_bed": {"value": true}, - "machine_start_gcode":{ - "default_value":"G28 ;Home\nG92 E0 ;Reset Extruder\nG1 Z4.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" - }, - "machine_end_gcode":{ - "default_value":"G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" - }, - "acceleration_print":{"value":1000}, - "acceleration_travel":{"value":1000}, - "acceleration_travel_layer_0":{"value":1000.0}, - "expand_skins_expand_distance":{"value":0.8}, - "fill_outline_gaps":{"default_value":false}, - "infill_sparse_density":{"value":15}, - "meshfix_maximum_resolution":{"value":0.25}, - "optimize_wall_printing_order":{"value":true}, - "retract_at_layer_change":{"value":false}, - "retraction_amount":{"value":4.5}, - "roofing_layer_count":{"value":1}, - "skin_preshrink":{"value":0.8}, - "speed_layer_0":{"value":30}, - "speed_print":{"value":45}, - "speed_roofing":{"value":35}, - "speed_topbottom":{"value":35}, - "speed_travel":{"value":80}, - "speed_wall_0":{"value":32}, - "speed_wall_x":{"value":32}, - "support_infill_rate":{"value":5}, - "support_pattern":{"default_value":"lines"}, - "support_use_towers":{"value":false}, - "wall_overhang_speed_factor":{"value":50}, - "z_seam_corner":{"default_value":"z_seam_corner_any"}, - "z_seam_relative":{"value":true}, - "z_seam_type":{"default_value":"sharpest_corner"}, - "zig_zaggify_infill":{"value":true}, - "adhesion_type":{"default_value":"skirt"}, - "prime_tower_enable":{"value":true}, - "prime_tower_position_x":{"value": 50}, - "prime_tower_position_y":{"value": 50}, - "prime_tower_min_volume":{"value": 30}, - "switch_extruder_retraction_amount": {"value": 100}, - "switch_extruder_retraction_speeds": {"value": 60} - }, - "metadata": { + "metadata": + { "visible": true, "author": "lotmaxx.com", "manufacturer": "Lotmaxx", "platform": "lotmaxx_sc_10_20_platform.3mf", - "machine_extruder_trains": { + "has_materials": true, + "machine_extruder_trains": + { "0": "lotmaxx_sc60_extruder_left", "1": "lotmaxx_sc60_extruder_right" }, - "has_materials": true, "preferred_quality_type": "normal" + }, + "overrides": + { + "acceleration_print": { "value": 1000 }, + "acceleration_travel": { "value": 1000 }, + "acceleration_travel_layer_0": { "value": 1000.0 }, + "adhesion_type": { "default_value": "skirt" }, + "expand_skins_expand_distance": { "value": 0.8 }, + "fill_outline_gaps": { "default_value": false }, + "gantry_height": { "value": 29 }, + "infill_sparse_density": { "value": 15 }, + "machine_depth": { "default_value": 235 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-50.7, 16.8], + [-50.7, -29.5], + [46.9, -29.5], + [49.9, 16.8] + ] + }, + "machine_heated_bed": { "value": true }, + "machine_height": { "default_value": 265 }, + "machine_name": { "default_value": "Lotmaxx Shark" }, + "machine_start_gcode": { "default_value": "G28 ;Home\nG92 E0 ;Reset Extruder\nG1 Z4.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" }, + "machine_width": { "default_value": 235 }, + "meshfix_maximum_resolution": { "value": 0.25 }, + "optimize_wall_printing_order": { "value": true }, + "prime_tower_enable": { "value": true }, + "prime_tower_min_volume": { "value": 30 }, + "prime_tower_position_x": { "value": 50 }, + "prime_tower_position_y": { "value": 50 }, + "retract_at_layer_change": { "value": false }, + "retraction_amount": { "value": 4.5 }, + "roofing_layer_count": { "value": 1 }, + "skin_preshrink": { "value": 0.8 }, + "speed_layer_0": { "value": 30 }, + "speed_print": { "value": 45 }, + "speed_roofing": { "value": 35 }, + "speed_topbottom": { "value": 35 }, + "speed_travel": { "value": 80 }, + "speed_wall_0": { "value": 32 }, + "speed_wall_x": { "value": 32 }, + "support_infill_rate": { "value": 5 }, + "support_pattern": { "default_value": "lines" }, + "switch_extruder_retraction_amount": { "value": 100 }, + "switch_extruder_retraction_speeds": { "value": 60 }, + "wall_overhang_speed_factor": { "value": 50 }, + "z_seam_corner": { "default_value": "z_seam_corner_any" }, + "z_seam_relative": { "value": true }, + "z_seam_type": { "default_value": "sharpest_corner" }, + "zig_zaggify_infill": { "value": true } } -} +} \ No newline at end of file diff --git a/resources/definitions/lulzbot_mini_2_common.def.json b/resources/definitions/lulzbot_mini_2_common.def.json index 0895a52e18..825d303aad 100644 --- a/resources/definitions/lulzbot_mini_2_common.def.json +++ b/resources/definitions/lulzbot_mini_2_common.def.json @@ -2,70 +2,29 @@ "version": 2, "name": "Lulzbot Mini 2", "inherits": "fdmprinter", - "metadata": { + "metadata": + { + "visible": false, "author": "Tom Callaway ", "manufacturer": "Fargo Additive Manufacturing Equipment 3D, LLC", - "visible": false, - "preferred_material": "generic_pla", - "exclude_materials": [ "structur3d_dap100silicone" ] + "exclude_materials": [ "structur3d_dap100silicone" ], + "preferred_material": "generic_pla" }, - "overrides": { - "machine_center_is_zero": - { - "default_value": false - }, - "machine_nozzle_size": - { - "default_value": 0.5 - }, - "machine_gcode_flavor": - { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_acceleration": - { - "default_value": 1000 - }, - "acceleration_print": - { - "default_value": 1000 - }, - "jerk_print": - { - "default_value": 20 - }, - "machine_max_feedrate_x": - { - "default_value": 800 - }, - "machine_max_feedrate_y": - { - "default_value": 800 - }, - "machine_max_feedrate_z": - { - "default_value": 8 - }, - "machine_max_feedrate_e": - { - "default_value": 40 - }, - "machine_max_acceleration_x": - { - "default_value": 9000 - }, - "machine_max_acceleration_y": - { - "default_value": 9000 - }, - "machine_max_acceleration_z": - { - "default_value": 100 - }, - "machine_max_acceleration_e": - { - "default_value": 1000 - } + "overrides": + { + "acceleration_print": { "default_value": 1000 }, + "jerk_print": { "default_value": 20 }, + "machine_acceleration": { "default_value": 1000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_max_acceleration_e": { "default_value": 1000 }, + "machine_max_acceleration_x": { "default_value": 9000 }, + "machine_max_acceleration_y": { "default_value": 9000 }, + "machine_max_acceleration_z": { "default_value": 100 }, + "machine_max_feedrate_e": { "default_value": 40 }, + "machine_max_feedrate_x": { "default_value": 800 }, + "machine_max_feedrate_y": { "default_value": 800 }, + "machine_max_feedrate_z": { "default_value": 8 }, + "machine_nozzle_size": { "default_value": 0.5 } } -} - +} \ No newline at end of file diff --git a/resources/definitions/lulzbot_mini_2_se.def.json b/resources/definitions/lulzbot_mini_2_se.def.json index 6cf43d8af4..dd613d6f5b 100644 --- a/resources/definitions/lulzbot_mini_2_se.def.json +++ b/resources/definitions/lulzbot_mini_2_se.def.json @@ -1,38 +1,54 @@ { - "version": 2, - "name": "Lulzbot Mini 2 | SE | 0.5 mm", - "inherits": "lulzbot_mini_2_common", - "metadata": { + "version": 2, + "name": "Lulzbot Mini 2 | SE | 0.5 mm", + "inherits": "lulzbot_mini_2_common", + "metadata": + { + "visible": true, "author": "Tom Callaway ", "manufacturer": "Fargo Additive Manufacturing Equipment 3D, LLC", - "visible": true, "file_formats": "text/x-gcode", "platform": "lulzbot_mini.stl", - "platform_offset": [-100, -11, 100], - "machine_extruder_trains": { - "0": "lulzbot_mini_2_se_extruder" - } - }, - - "overrides": { - "machine_name": { "default_value": "Lulzbot Mini 2 | SE | 0.5 mm" }, - "machine_width": { "default_value": 162 }, - "machine_depth": { "default_value": 162 }, - "machine_height": { "default_value": 180 }, - "machine_heated_bed": { "default_value": true }, - "machine_start_gcode": { - "default_value": "; This G-Code has been generated specifically for the Lulzbot Mini 2 with SE 0.5 mm toolhead\nM73 P0 ; clear GLCD progress bar\nM75 ; start GLCD timer\nG26 ; clear potential 'probe fail' condition\nM107 ; disable fans\nM420 S0 ; disable leveling matrix\nG90 ; absolute positioning\nM82 ; set extruder to absolute mode\nG92 E0 ; set extruder position to 0\nM140 S{material_bed_temperature_layer_0} ; start bed heating up\nG28 ; home all axes\nG0 X0 Y187 Z156 F200 ; move away from endstops\nM117 Mini 2 Wiping... ; progress indicator message on LCD\nM109 R{material_standby_temperature} ; soften material before retraction\nG1 E-15 F75 ; retract filament\nG1 X45 Y176 F11520 ; move above wiper pad\nG1 Z0 F1200 ; push nozzle into wiper\nG1 X45 Y178 Z-.5 F4000 ; wiping\nG1 X55 Y176 Z-.5 F4000 ; wiping\nG1 X45 Y177 Z0 F4000 ; wiping\nG1 X55 Y176 F4000 ; wiping\nG1 X45 Y178 F4000 ; wiping\nG1 X55 Y176 F4000 ; wiping\nG1 X45 Y178 F4000 ; wiping\nG1 X55 Y176 F4000 ; wiping\nG1 X60 Y178 F4000 ; wiping\nG1 X80 Y176 F4000 ; wiping\nG1 X60 Y178 F4000 ; wiping\nG1 X80 Y176 F4000 ; wiping\nG1 X60 Y178 F4000 ; wiping\nG1 X90 Y176 F4000 ; wiping\nG1 X80 Y178 F4000 ; wiping\nG1 X100 Y176 F4000 ; wiping\nG1 X80 Y178 F4000 ; wiping\nG1 X100 Y176 F4000 ; wiping\nG1 X80 Y178 F4000 ; wiping\nG1 X100 Y176 F4000 ; wiping\nG1 X110 Y178 F4000 ; wiping\nG1 X100 Y176 F4000 ; wiping\nG1 X110 Y178 F4000 ; wiping\nG1 X100 Y176 F4000 ; wiping\nG1 X110 Y178 F4000 ; wiping\nG1 X115 Y176 Z-0.5 F1000 ; wiping\nG1 Z10 ; raise extruder\nG28 X0 Y0 ; home X and Y\nM204 S300 ; set probing acceleration\nG29 ; start auto-leveling sequence\nM420 S1 ; enable leveling matrix\nM425 Z ; use measured Z backlash for compensation\nM425 Z F0 ; turn off measured Z backlash compensation by default\nM204 S2000 ; restore standard acceleration\nG1 X5 Y15 Z10 F5000 ; move up off last probe point\nG4 S1 ; pause\nM400 ; wait for moves to finish\nM117 Heating... ; progress indicator message on LCD\nM109 R{material_print_temperature_layer_0} ; wait for extruder to reach initial printing temp\nM190 R{material_bed_temperature_layer_0} ; wait for bed to reach printing temp\nG1 Z2 E0 F75 ; prime tiny bit of filament into the nozzle\nM117 Mini 2 Printing... ; progress indicator message on LCD\n" - }, - "machine_end_gcode": { - "default_value": "; part removal temp is hardcoded to 45\nM400 ; wait for moves to finish\nM140 S45 ; start bed cooling\nM104 S0 ; disable hotend\nM107 ; disable fans\nG92 E5 ; set extruder to 5mm for retract on print end\nM117 Cooling please wait ; progress indicator message on LCD\nG1 X5 Y5 Z183 E0 F3000 ; move to cooling position\nG1 E5 ; re-prime extruder\nM190 R45 ; wait for bed to cool down to removal temp\nG1 X145 F1000 ; move extruder out of the way\nG1 Y175 F1000 ; present finished print\nM140 S0 ; cool down\nM77 ; end LCD print timer\nG90 ; absolute positioning\nM18 X Y E ; turn off X Y and E axis\nM117 Print Complete. ; print complete message\n" - }, - "machine_disallowed_areas": { - "default_value": [ - [[ 85, 85], [ 85, 77], [ 77, 85]], - [[-85, 85], [-85, 77], [-77, 85]], - [[ 85,-85], [ 85,-77], [ 77,-85]], - [[-85,-85], [-85,-77], [-77,-85]] - ] - } - } -} + "machine_extruder_trains": { "0": "lulzbot_mini_2_se_extruder" }, + "platform_offset": [ + -100, + -11, + 100 + ] + }, + "overrides": + { + "machine_depth": { "default_value": 162 }, + "machine_disallowed_areas": + { + "default_value": [ + [ + [85, 85], + [85, 77], + [77, 85] + ], + [ + [-85, 85], + [-85, 77], + [-77, 85] + ], + [ + [85, -85], + [85, -77], + [77, -85] + ], + [ + [-85, -85], + [-85, -77], + [-77, -85] + ] + ] + }, + "machine_end_gcode": { "default_value": "; part removal temp is hardcoded to 45\nM400 ; wait for moves to finish\nM140 S45 ; start bed cooling\nM104 S0 ; disable hotend\nM107 ; disable fans\nG92 E5 ; set extruder to 5mm for retract on print end\nM117 Cooling please wait ; progress indicator message on LCD\nG1 X5 Y5 Z183 E0 F3000 ; move to cooling position\nG1 E5 ; re-prime extruder\nM190 R45 ; wait for bed to cool down to removal temp\nG1 X145 F1000 ; move extruder out of the way\nG1 Y175 F1000 ; present finished print\nM140 S0 ; cool down\nM77 ; end LCD print timer\nG90 ; absolute positioning\nM18 X Y E ; turn off X Y and E axis\nM117 Print Complete. ; print complete message\n" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 180 }, + "machine_name": { "default_value": "Lulzbot Mini 2 | SE | 0.5 mm" }, + "machine_start_gcode": { "default_value": "; This G-Code has been generated specifically for the Lulzbot Mini 2 with SE 0.5 mm toolhead\nM73 P0 ; clear GLCD progress bar\nM75 ; start GLCD timer\nG26 ; clear potential 'probe fail' condition\nM107 ; disable fans\nM420 S0 ; disable leveling matrix\nG90 ; absolute positioning\nM82 ; set extruder to absolute mode\nG92 E0 ; set extruder position to 0\nM140 S{material_bed_temperature_layer_0} ; start bed heating up\nG28 ; home all axes\nG0 X0 Y187 Z156 F200 ; move away from endstops\nM117 Mini 2 Wiping... ; progress indicator message on LCD\nM109 R{material_standby_temperature} ; soften material before retraction\nG1 E-15 F75 ; retract filament\nG1 X45 Y176 F11520 ; move above wiper pad\nG1 Z0 F1200 ; push nozzle into wiper\nG1 X45 Y178 Z-.5 F4000 ; wiping\nG1 X55 Y176 Z-.5 F4000 ; wiping\nG1 X45 Y177 Z0 F4000 ; wiping\nG1 X55 Y176 F4000 ; wiping\nG1 X45 Y178 F4000 ; wiping\nG1 X55 Y176 F4000 ; wiping\nG1 X45 Y178 F4000 ; wiping\nG1 X55 Y176 F4000 ; wiping\nG1 X60 Y178 F4000 ; wiping\nG1 X80 Y176 F4000 ; wiping\nG1 X60 Y178 F4000 ; wiping\nG1 X80 Y176 F4000 ; wiping\nG1 X60 Y178 F4000 ; wiping\nG1 X90 Y176 F4000 ; wiping\nG1 X80 Y178 F4000 ; wiping\nG1 X100 Y176 F4000 ; wiping\nG1 X80 Y178 F4000 ; wiping\nG1 X100 Y176 F4000 ; wiping\nG1 X80 Y178 F4000 ; wiping\nG1 X100 Y176 F4000 ; wiping\nG1 X110 Y178 F4000 ; wiping\nG1 X100 Y176 F4000 ; wiping\nG1 X110 Y178 F4000 ; wiping\nG1 X100 Y176 F4000 ; wiping\nG1 X110 Y178 F4000 ; wiping\nG1 X115 Y176 Z-0.5 F1000 ; wiping\nG1 Z10 ; raise extruder\nG28 X0 Y0 ; home X and Y\nM204 S300 ; set probing acceleration\nG29 ; start auto-leveling sequence\nM420 S1 ; enable leveling matrix\nM425 Z ; use measured Z backlash for compensation\nM425 Z F0 ; turn off measured Z backlash compensation by default\nM204 S2000 ; restore standard acceleration\nG1 X5 Y15 Z10 F5000 ; move up off last probe point\nG4 S1 ; pause\nM400 ; wait for moves to finish\nM117 Heating... ; progress indicator message on LCD\nM109 R{material_print_temperature_layer_0} ; wait for extruder to reach initial printing temp\nM190 R{material_bed_temperature_layer_0} ; wait for bed to reach printing temp\nG1 Z2 E0 F75 ; prime tiny bit of filament into the nozzle\nM117 Mini 2 Printing... ; progress indicator message on LCD\n" }, + "machine_width": { "default_value": 162 } + } +} \ No newline at end of file diff --git a/resources/definitions/lulzbot_mini_2_sl.def.json b/resources/definitions/lulzbot_mini_2_sl.def.json index cecaca1541..7aa80e0fed 100644 --- a/resources/definitions/lulzbot_mini_2_sl.def.json +++ b/resources/definitions/lulzbot_mini_2_sl.def.json @@ -1,38 +1,54 @@ { - "version": 2, - "name": "Lulzbot Mini 2 | SL | 0.25 mm (Micro)", - "inherits": "lulzbot_mini_2_common", - "metadata": { + "version": 2, + "name": "Lulzbot Mini 2 | SL | 0.25 mm (Micro)", + "inherits": "lulzbot_mini_2_common", + "metadata": + { + "visible": true, "author": "Tom Callaway ", "manufacturer": "Fargo Additive Manufacturing Equipment 3D, LLC", - "visible": true, "file_formats": "text/x-gcode", "platform": "lulzbot_mini.stl", - "platform_offset": [-100, -11, 100], - "machine_extruder_trains": { - "0": "lulzbot_mini_2_sl_extruder" - } - }, - - "overrides": { - "machine_name": { "default_value": "Lulzbot Mini 2 | SL | 0.25 mm (Micro)" }, - "machine_width": { "default_value": 162 }, - "machine_depth": { "default_value": 162 }, - "machine_height": { "default_value": 180 }, - "machine_heated_bed": { "default_value": true }, - "machine_start_gcode": { - "default_value": "; This G-Code has been generated specifically for the Lulzbot Mini 2 with SL 0.25 mm toolhead\nM73 P0 ; clear GLCD progress bar\nM75 ; start GLCD timer\nG26 ; clear potential 'probe fail' condition\nM107 ; disable fans\nM420 S0 ; disable leveling matrix\nG90 ; absolute positioning\nM82 ; set extruder to absolute mode\nG92 E0 ; set extruder position to 0\nM140 S{material_bed_temperature_layer_0} ; start bed heating up\nG28 ; home all axes\nG0 X0 Y187 Z156 F200 ; move away from endstops\nM117 Mini 2 Wiping... ; progress indicator message on LCD\nM109 R{material_standby_temperature} ; soften material before retraction\nG1 E-15 F75 ; retract filament\nG1 X45 Y176 F11520 ; move above wiper pad\nG1 Z0 F1200 ; push nozzle into wiper\nG1 X45 Y178 Z-.5 F4000 ; wiping\nG1 X55 Y176 Z-.5 F4000 ; wiping\nG1 X45 Y177 Z0 F4000 ; wiping\nG1 X55 Y176 F4000 ; wiping\nG1 X45 Y178 F4000 ; wiping\nG1 X55 Y176 F4000 ; wiping\nG1 X45 Y178 F4000 ; wiping\nG1 X55 Y176 F4000 ; wiping\nG1 X60 Y178 F4000 ; wiping\nG1 X80 Y176 F4000 ; wiping\nG1 X60 Y178 F4000 ; wiping\nG1 X80 Y176 F4000 ; wiping\nG1 X60 Y178 F4000 ; wiping\nG1 X90 Y176 F4000 ; wiping\nG1 X80 Y178 F4000 ; wiping\nG1 X100 Y176 F4000 ; wiping\nG1 X80 Y178 F4000 ; wiping\nG1 X100 Y176 F4000 ; wiping\nG1 X80 Y178 F4000 ; wiping\nG1 X100 Y176 F4000 ; wiping\nG1 X110 Y178 F4000 ; wiping\nG1 X100 Y176 F4000 ; wiping\nG1 X110 Y178 F4000 ; wiping\nG1 X100 Y176 F4000 ; wiping\nG1 X110 Y178 F4000 ; wiping\nG1 X115 Y176 Z-0.5 F1000 ; wiping\nG1 Z10 ; raise extruder\nG28 X0 Y0 ; home X and Y\nM204 S300 ; set probing acceleration\nG29 ; start auto-leveling sequence\nM420 S1 ; enable leveling matrix\nM425 Z ; use measured Z backlash for compensation\nM425 Z F0 ; turn off measured Z backlash compensation by default\nM204 S2000 ; restore standard acceleration\nG1 X5 Y15 Z10 F5000 ; move up off last probe point\nG4 S1 ; pause\nM400 ; wait for moves to finish\nM117 Heating... ; progress indicator message on LCD\nM109 R{material_print_temperature_layer_0} ; wait for extruder to reach initial printing temp\nM190 R{material_bed_temperature_layer_0} ; wait for bed to reach printing temp\nG1 Z2 E0 F75 ; prime tiny bit of filament into the nozzle\nM117 Mini 2 Printing... ; progress indicator message on LCD\n" - }, - "machine_end_gcode": { - "default_value": "; part removal temp is hardcoded to 45\nM400 ; wait for moves to finish\nM140 S45 ; start bed cooling\nM104 S0 ; disable hotend\nM107 ; disable fans\nG92 E5 ; set extruder to 5mm for retract on print end\nM117 Cooling please wait ; progress indicator message on LCD\nG1 X5 Y5 Z183 E0 F3000 ; move to cooling position\nG1 E5 ; re-prime extruder\nM190 R45 ; wait for bed to cool down to removal temp\nG1 X145 F1000 ; move extruder out of the way\nG1 Y175 F1000 ; present finished print\nM140 S0 ; cool down\nM77 ; end LCD print timer\nG90 ; absolute positioning\nM18 X Y E ; turn off X Y and E axis\nM117 Print Complete. ; print complete message\n" - }, - "machine_disallowed_areas": { - "default_value": [ - [[ 85, 85], [ 85, 77], [ 77, 85]], - [[-85, 85], [-85, 77], [-77, 85]], - [[ 85,-85], [ 85,-77], [ 77,-85]], - [[-85,-85], [-85,-77], [-77,-85]] - ] - } - } -} + "machine_extruder_trains": { "0": "lulzbot_mini_2_sl_extruder" }, + "platform_offset": [ + -100, + -11, + 100 + ] + }, + "overrides": + { + "machine_depth": { "default_value": 162 }, + "machine_disallowed_areas": + { + "default_value": [ + [ + [85, 85], + [85, 77], + [77, 85] + ], + [ + [-85, 85], + [-85, 77], + [-77, 85] + ], + [ + [85, -85], + [85, -77], + [77, -85] + ], + [ + [-85, -85], + [-85, -77], + [-77, -85] + ] + ] + }, + "machine_end_gcode": { "default_value": "; part removal temp is hardcoded to 45\nM400 ; wait for moves to finish\nM140 S45 ; start bed cooling\nM104 S0 ; disable hotend\nM107 ; disable fans\nG92 E5 ; set extruder to 5mm for retract on print end\nM117 Cooling please wait ; progress indicator message on LCD\nG1 X5 Y5 Z183 E0 F3000 ; move to cooling position\nG1 E5 ; re-prime extruder\nM190 R45 ; wait for bed to cool down to removal temp\nG1 X145 F1000 ; move extruder out of the way\nG1 Y175 F1000 ; present finished print\nM140 S0 ; cool down\nM77 ; end LCD print timer\nG90 ; absolute positioning\nM18 X Y E ; turn off X Y and E axis\nM117 Print Complete. ; print complete message\n" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 180 }, + "machine_name": { "default_value": "Lulzbot Mini 2 | SL | 0.25 mm (Micro)" }, + "machine_start_gcode": { "default_value": "; This G-Code has been generated specifically for the Lulzbot Mini 2 with SL 0.25 mm toolhead\nM73 P0 ; clear GLCD progress bar\nM75 ; start GLCD timer\nG26 ; clear potential 'probe fail' condition\nM107 ; disable fans\nM420 S0 ; disable leveling matrix\nG90 ; absolute positioning\nM82 ; set extruder to absolute mode\nG92 E0 ; set extruder position to 0\nM140 S{material_bed_temperature_layer_0} ; start bed heating up\nG28 ; home all axes\nG0 X0 Y187 Z156 F200 ; move away from endstops\nM117 Mini 2 Wiping... ; progress indicator message on LCD\nM109 R{material_standby_temperature} ; soften material before retraction\nG1 E-15 F75 ; retract filament\nG1 X45 Y176 F11520 ; move above wiper pad\nG1 Z0 F1200 ; push nozzle into wiper\nG1 X45 Y178 Z-.5 F4000 ; wiping\nG1 X55 Y176 Z-.5 F4000 ; wiping\nG1 X45 Y177 Z0 F4000 ; wiping\nG1 X55 Y176 F4000 ; wiping\nG1 X45 Y178 F4000 ; wiping\nG1 X55 Y176 F4000 ; wiping\nG1 X45 Y178 F4000 ; wiping\nG1 X55 Y176 F4000 ; wiping\nG1 X60 Y178 F4000 ; wiping\nG1 X80 Y176 F4000 ; wiping\nG1 X60 Y178 F4000 ; wiping\nG1 X80 Y176 F4000 ; wiping\nG1 X60 Y178 F4000 ; wiping\nG1 X90 Y176 F4000 ; wiping\nG1 X80 Y178 F4000 ; wiping\nG1 X100 Y176 F4000 ; wiping\nG1 X80 Y178 F4000 ; wiping\nG1 X100 Y176 F4000 ; wiping\nG1 X80 Y178 F4000 ; wiping\nG1 X100 Y176 F4000 ; wiping\nG1 X110 Y178 F4000 ; wiping\nG1 X100 Y176 F4000 ; wiping\nG1 X110 Y178 F4000 ; wiping\nG1 X100 Y176 F4000 ; wiping\nG1 X110 Y178 F4000 ; wiping\nG1 X115 Y176 Z-0.5 F1000 ; wiping\nG1 Z10 ; raise extruder\nG28 X0 Y0 ; home X and Y\nM204 S300 ; set probing acceleration\nG29 ; start auto-leveling sequence\nM420 S1 ; enable leveling matrix\nM425 Z ; use measured Z backlash for compensation\nM425 Z F0 ; turn off measured Z backlash compensation by default\nM204 S2000 ; restore standard acceleration\nG1 X5 Y15 Z10 F5000 ; move up off last probe point\nG4 S1 ; pause\nM400 ; wait for moves to finish\nM117 Heating... ; progress indicator message on LCD\nM109 R{material_print_temperature_layer_0} ; wait for extruder to reach initial printing temp\nM190 R{material_bed_temperature_layer_0} ; wait for bed to reach printing temp\nG1 Z2 E0 F75 ; prime tiny bit of filament into the nozzle\nM117 Mini 2 Printing... ; progress indicator message on LCD\n" }, + "machine_width": { "default_value": 162 } + } +} \ No newline at end of file diff --git a/resources/definitions/lulzbot_taz_pro_common.def.json b/resources/definitions/lulzbot_taz_pro_common.def.json index 1e75322ae1..2aa6ef4174 100644 --- a/resources/definitions/lulzbot_taz_pro_common.def.json +++ b/resources/definitions/lulzbot_taz_pro_common.def.json @@ -2,83 +2,37 @@ "version": 2, "name": "Lulzbot TAZ Pro", "inherits": "fdmprinter", - "metadata": { + "metadata": + { + "visible": false, "author": "Tom Callaway ", "manufacturer": "Fargo Additive Manufacturing Equipment 3D, LLC", - "visible": false, - "preferred_material": "generic_pla", - "exclude_materials": [ "structur3d_dap100silicone" ] + "exclude_materials": [ "structur3d_dap100silicone" ], + "preferred_material": "generic_pla" }, - "overrides": { - "material_print_temperature": { + "overrides": + { + "acceleration_print": { "default_value": 500 }, + "jerk_print": { "default_value": 12 }, + "machine_acceleration": { "default_value": 500 }, + "machine_center_is_zero": { "default_value": false }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_max_acceleration_e": { "default_value": 1000 }, + "machine_max_acceleration_x": { "default_value": 9000 }, + "machine_max_acceleration_y": { "default_value": 9000 }, + "machine_max_acceleration_z": { "default_value": 100 }, + "machine_max_feedrate_e": { "default_value": 40 }, + "machine_max_feedrate_x": { "default_value": 800 }, + "machine_max_feedrate_y": { "default_value": 800 }, + "machine_max_feedrate_z": { "default_value": 3 }, + "machine_nozzle_size": { "default_value": 0.5 }, + "material_bed_temperature": + { + "maximum_value_warning": "125", "minimum_value": "0" }, - "material_bed_temperature": { - "minimum_value": "0", - "maximum_value_warning": "125" - }, - "material_bed_temperature_layer_0": - { - "maximum_value_warning": "125" - }, - "material_standby_temperature": { - "minimum_value": "0" - }, - "machine_center_is_zero": - { - "default_value": false - }, - "machine_nozzle_size": - { - "default_value": 0.5 - }, - "machine_gcode_flavor": - { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_acceleration": - { - "default_value": 500 - }, - "acceleration_print": - { - "default_value": 500 - }, - "jerk_print": - { - "default_value": 12 - }, - "machine_max_feedrate_x": - { - "default_value": 800 - }, - "machine_max_feedrate_y": - { - "default_value": 800 - }, - "machine_max_feedrate_z": - { - "default_value": 3 - }, - "machine_max_feedrate_e": - { - "default_value": 40 - }, - "machine_max_acceleration_x": - { - "default_value": 9000 - }, - "machine_max_acceleration_y": - { - "default_value": 9000 - }, - "machine_max_acceleration_z": - { - "default_value": 100 - }, - "machine_max_acceleration_e": - { - "default_value": 1000 - } + "material_bed_temperature_layer_0": { "maximum_value_warning": "125" }, + "material_print_temperature": { "minimum_value": "0" }, + "material_standby_temperature": { "minimum_value": "0" } } -} +} \ No newline at end of file diff --git a/resources/definitions/lulzbot_taz_pro_dual.def.json b/resources/definitions/lulzbot_taz_pro_dual.def.json index ba34e5a0ce..d4d208098a 100644 --- a/resources/definitions/lulzbot_taz_pro_dual.def.json +++ b/resources/definitions/lulzbot_taz_pro_dual.def.json @@ -1,34 +1,36 @@ { - "version": 2, - "name": "Lulzbot TAZ Pro Dual Extruder", - "inherits": "lulzbot_taz_pro_common", - "metadata": { + "version": 2, + "name": "Lulzbot TAZ Pro Dual Extruder", + "inherits": "lulzbot_taz_pro_common", + "metadata": + { + "visible": true, "author": "Tom Callaway ", "manufacturer": "Fargo Additive Manufacturing Equipment 3D, LLC", - "visible": true, "file_formats": "text/x-gcode", "platform": "lulzbot_taz_pro_bed.stl", - "platform_offset": [0, -10, 0], - "machine_extruder_trains": { + "machine_extruder_trains": + { "0": "lulzbot_taz_pro_dual_extruder_0", "1": "lulzbot_taz_pro_dual_extruder_1" - } - }, - - "overrides": { - "machine_name": { "default_value": "Lulzbot TAZ Pro" }, - "machine_width": { "default_value": 282 }, - "machine_depth": { "default_value": 286 }, - "machine_height": { "default_value": 286 }, - "machine_heated_bed": { "default_value": true }, - "machine_start_gcode": { - "default_value": "; This profile is designed specifically for the LulzBot TAZ Pro with Dual Extruder Tool Head\nM73 P0 ; clear GLCD progress bar\nM75 ; start GLCD timer\nM107 ; disable fans\nG90 ; absolute positioning\nM420 S0 ; disable previous leveling matrix\nM140 S{material_bed_temperature_layer_0} ; begin bed temping up\nM104 S{material_standby_temperature} T0 ; soften filament\nM104 S{material_standby_temperature} T1 ; soften filament\nG28 ; home\nM117 Heating... ; LCD status message\nM109 R{material_standby_temperature} T0 ; wait for temp\nM109 R{material_standby_temperature} T1 ; wait for temp\nT0 ; select this extruder first\nM82 ; set extruder to absolute mode\nG92 E0 ; set extruder to zero\nG1 E-10 F100 ; retract 10mm of filament on first extruder\nG0 X50 F1000 ; move over to switch extruders\nT1 ; switch extruders\nM82 ; set extruder to absolute mode\nG92 E0 ; set extruder to zero\nG1 E-10 F100 ; retract 10mm of filament on second extruder\nM104 S{material_standby_temperature} T0 ; set to wipe temp\nM104 S{material_standby_temperature} T1 ; set to wipe temp\nM106 ; turn on fans to speed cooling\nT0 ; select first extruder for probing\nG1 X-16.5 Y100 F2000 ; move above wiper pad\nM117 Cooling... ; LCD status message\nM109 R{material_standby_temperature} T0 ; wait for T0 to reach temp\nM109 R{material_standby_temperature} T1 ; wait for T1 to reach temp\nM107 ; turn off fan\nG1 Z 1.0 ; push nozzle into wiper\nG1 X -16.5 Y100 F1000 ; slow wipe\nG1 X -16.5 Y90 F1000 ; slow wipe\nG1 X -15.5 Y86 F2000 ; fast wipe\nG1 X -17.5 Y80 F2000 ; fast wipe\nG1 X -15.5 Y74 F2000 ; fast wipe\nG1 X -17.5 Y70 F2000 ; fast wipe\nG1 X -16.5 Y68 F1000 ; slow wipe\nG1 X -16.5 Y60 F1000 ; slow wipe\nG1 X -14.5 Y60 F1000 ; slow wipe\nG1 X -14.5 Y46 F1000 ; slow wipe\nG1 X -17.5 Y46 F1000 ; slow wipe\nG1 X -17.5 Y60 F1000 ; slow wipe\nG1 X -14.5 Y60 F1000 ; slow wipe\nG1 X -14.5 Y46 F1000 ; slow wipe\nG1 X -17.5 Y46 F1000 ; slow wipe\nG1 X -17.5 Y60 F1000 ; slow wipe\nG1 X -14.5 Y60 F1000 ; slow wipe\nG1 X -14.5 Y46 F1000 ; slow wipe\nG1 X -17.5 Y46 F1000 ; slow wipe\nG1 X -17.5 Y60 F1000 ; slow wipe\nG1 X -16.5 Y60 F1000 ; slow wipe\nG1 X -16.5 Y42 F1000 ; slow wipe\nG1 X -15.5 Y40 F2000 ; fast wipe\nG1 X -17.5 Y38 F2000 ; fast wipe\nG1 X -15.5 Y36 F2000 ; fast wipe\nG1 X -17.5 Y34 F2000 ; fast wipe\nG1 X -16.5 Y30 F1000 ; slow wipe\nG1 X -16.5 Y19 F1000 ; slow wipe\nG1 X -16.5 Y19 Z20 F1000 ; raise extruder\nM106 S255 ; turn on fan to blow away fuzzies\nG4 S5 ; wait 5 seconds\nM107 ; turn off fan\nG0 X50 F1000 ; move over to switch extruders\nT1 ; switch to second extruder\nG1 X296.5 Y100 F5000 ; move E2 above second wiper pad\nG1 Z 1.0 ; push nozzle into wiper\nG1 X 296.5 Y100 F1000 ; slow wipe\nG1 X 296.5 Y90 F1000 ; slow wipe\nG1 X 297.5 Y86 F2000 ; fast wipe\nG1 X 295.5 Y80 F2000 ; fast wipe\nG1 X 297.5 Y74 F2000 ; fast wipe\nG1 X 295.5 Y70 F2000 ; fast wipe\nG1 X 296.5 Y68 F1000 ; slow wipe\nG1 X 296.5 Y60 F1000 ; slow wipe\nG1 X 298 Y60 F1000 ; slow wipe\nG1 X 298 Y46 F1000 ; slow wipe\nG1 X 295 Y46 F1000 ; slow wipe\nG1 X 295 Y60 F1000 ; slow wipe\nG1 X 298 Y60 F1000 ; slow wipe\nG1 X 298 Y46 F1000 ; slow wipe\nG1 X 295 Y46 F1000 ; slow wipe\nG1 X 295 Y60 F1000 ; slow wipe\nG1 X 298 Y60 F1000 ; slow wipe\nG1 X 298 Y46 F1000 ; slow wipe\nG1 X 295 Y46 F1000 ; slow wipe\nG1 X 295 Y60 F1000 ; slow wipe\nG1 X 296.5 Y60 F1000 ; slow wipe\nG1 X 296.5 Y42 F1000 ; slow wipe\nG1 X 297.5 Y40 F2000 ; fast wipe\nG1 X 295.5 Y38 F2000 ; fast wipe\nG1 X 297.5 Y36 F2000 ; fast wipe\nG1 X 295.5 Y34 F2000 ; fast wipe\nG1 X 297.5 Y30 F1000 ; slow wipe\nG1 X 296.5 Y19 F1000 ; slow wipe\nG1 X 296.5 Y19 Z20 F1000 ; raise extruder\nM106 S255 ; turn on fan to blow away fuzzies\nG4 S5 ; wait 5 seconds\nM107 ; turn off fan\nG0 X247 F1000 ; move over to switch extruders\nT0 ; switch to first extruder\nM109 R{material_standby_temperature} ; heat to probe temp\nM204 S100 ; set accel for probing\nG29 ; probe sequence (for auto-leveling)\nM420 S1 ; enable leveling matrix\nM204 S500 ; set accel back to normal\nM104 S{material_print_temperature_layer_0} T0 ; set extruder temp\nM104 S{material_print_temperature_layer_0} T1 ; set extruder temp\nG1 X100 Y-29 Z0.5 F3000 ; move to open space\nM400 ; clear buffer\nM117 Heating... ; LCD status message\nM109 R{material_print_temperature_layer_0} T0 ; set extruder temp and wait\nM109 R{material_print_temperature_layer_0} T1 ; set extruder temp and wait\nM117 Purging... ; LCD status message\nT0 ; select this extruder first\nG1 E0 F100 ; undo retraction\nG92 E-30 ; set extruder negative amount to purge\nG1 E0 F100 ; purge XXmm of filament\nG1 E-3 F200 ; purge retraction\nG1 Z0.45 ; clear bed (barely)\nG1 X100 Y10 F4000 ; move above bed to shear off filament\nM106 S255 ; turn on fan\nG4 S7 ; wait 7 seconds\nM107 ; turn off fan\nG1 X180 Y-29 Z0.45 F3000 ; move to open space\nT1 ; set extruder\nG1 E0 F100 ; undo retraction\nG92 E-30 ; set extruder negative amount to purge\nG1 E0 F100 ; purge XXmm of filament\nG1 E-4 F200 ; purge retraction\nG1 Z0.35 ; clear bed (barely)\nG1 X180 Y10 F4000 ; move above bed to shear off filament\nT0 ; set extruder\nM190 R{material_bed_temperature_layer_0} ; get bed temping up during first layer\nG1 Z2 E0 F75 ; raise head and 0 extruder\nM82 ; set to absolute mode\nM400 ; clear buffer\nM117 TAZ Printing... ; LCD status message\n" - }, - "machine_end_gcode": { - "default_value": "; part removal temp is hardcoded to 45\nM400\nM104 S0 T0 ; T0 hotend off\nM104 S0 T1 ; T1 hotend off\nM107 ; fans off\nG91 ; relative positioning\nT0\nG1 E-1 F300 ; retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z20 E-1 X-20 Y-20 F2000 ; move Z up a bit and retract filament even more\nG1 E0 ; re-prime extruder 1\nT1\nG1 E-1 F300 ; retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 E0 ; re-prime extruder 2\nT0\nM117 Cooling please wait ; progress indicator message\nG90 ; absolute positioning\nG1 Y0 F3000 ; move to cooling position\nM190 R45 ; set bed to cool off\nG1 Y280 F3000 ; present finished print\nM140 S0 ; cool down\nM77 ; stop GLCD timer\nM18 X Y E ; turn off x y and e axis\nG90 ; absolute positioning\nM117 Print complete ; progress indicator message\n" - }, - "machine_extruder_count": { "default_value": 2 }, - "layer_start_x": { "value": 100 }, - "layer_start_y": { "value": 100 } - } -} + }, + "platform_offset": [ + 0, + -10, + 0 + ] + }, + "overrides": + { + "layer_start_x": { "value": 100 }, + "layer_start_y": { "value": 100 }, + "machine_depth": { "default_value": 286 }, + "machine_end_gcode": { "default_value": "; part removal temp is hardcoded to 45\nM400\nM104 S0 T0 ; T0 hotend off\nM104 S0 T1 ; T1 hotend off\nM107 ; fans off\nG91 ; relative positioning\nT0\nG1 E-1 F300 ; retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z20 E-1 X-20 Y-20 F2000 ; move Z up a bit and retract filament even more\nG1 E0 ; re-prime extruder 1\nT1\nG1 E-1 F300 ; retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 E0 ; re-prime extruder 2\nT0\nM117 Cooling please wait ; progress indicator message\nG90 ; absolute positioning\nG1 Y0 F3000 ; move to cooling position\nM190 R45 ; set bed to cool off\nG1 Y280 F3000 ; present finished print\nM140 S0 ; cool down\nM77 ; stop GLCD timer\nM18 X Y E ; turn off x y and e axis\nG90 ; absolute positioning\nM117 Print complete ; progress indicator message\n" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 286 }, + "machine_name": { "default_value": "Lulzbot TAZ Pro" }, + "machine_start_gcode": { "default_value": "; This profile is designed specifically for the LulzBot TAZ Pro with Dual Extruder Tool Head\nM73 P0 ; clear GLCD progress bar\nM75 ; start GLCD timer\nM107 ; disable fans\nG90 ; absolute positioning\nM420 S0 ; disable previous leveling matrix\nM140 S{material_bed_temperature_layer_0} ; begin bed temping up\nM104 S{material_standby_temperature} T0 ; soften filament\nM104 S{material_standby_temperature} T1 ; soften filament\nG28 ; home\nM117 Heating... ; LCD status message\nM109 R{material_standby_temperature} T0 ; wait for temp\nM109 R{material_standby_temperature} T1 ; wait for temp\nT0 ; select this extruder first\nM82 ; set extruder to absolute mode\nG92 E0 ; set extruder to zero\nG1 E-10 F100 ; retract 10mm of filament on first extruder\nG0 X50 F1000 ; move over to switch extruders\nT1 ; switch extruders\nM82 ; set extruder to absolute mode\nG92 E0 ; set extruder to zero\nG1 E-10 F100 ; retract 10mm of filament on second extruder\nM104 S{material_standby_temperature} T0 ; set to wipe temp\nM104 S{material_standby_temperature} T1 ; set to wipe temp\nM106 ; turn on fans to speed cooling\nT0 ; select first extruder for probing\nG1 X-16.5 Y100 F2000 ; move above wiper pad\nM117 Cooling... ; LCD status message\nM109 R{material_standby_temperature} T0 ; wait for T0 to reach temp\nM109 R{material_standby_temperature} T1 ; wait for T1 to reach temp\nM107 ; turn off fan\nG1 Z 1.0 ; push nozzle into wiper\nG1 X -16.5 Y100 F1000 ; slow wipe\nG1 X -16.5 Y90 F1000 ; slow wipe\nG1 X -15.5 Y86 F2000 ; fast wipe\nG1 X -17.5 Y80 F2000 ; fast wipe\nG1 X -15.5 Y74 F2000 ; fast wipe\nG1 X -17.5 Y70 F2000 ; fast wipe\nG1 X -16.5 Y68 F1000 ; slow wipe\nG1 X -16.5 Y60 F1000 ; slow wipe\nG1 X -14.5 Y60 F1000 ; slow wipe\nG1 X -14.5 Y46 F1000 ; slow wipe\nG1 X -17.5 Y46 F1000 ; slow wipe\nG1 X -17.5 Y60 F1000 ; slow wipe\nG1 X -14.5 Y60 F1000 ; slow wipe\nG1 X -14.5 Y46 F1000 ; slow wipe\nG1 X -17.5 Y46 F1000 ; slow wipe\nG1 X -17.5 Y60 F1000 ; slow wipe\nG1 X -14.5 Y60 F1000 ; slow wipe\nG1 X -14.5 Y46 F1000 ; slow wipe\nG1 X -17.5 Y46 F1000 ; slow wipe\nG1 X -17.5 Y60 F1000 ; slow wipe\nG1 X -16.5 Y60 F1000 ; slow wipe\nG1 X -16.5 Y42 F1000 ; slow wipe\nG1 X -15.5 Y40 F2000 ; fast wipe\nG1 X -17.5 Y38 F2000 ; fast wipe\nG1 X -15.5 Y36 F2000 ; fast wipe\nG1 X -17.5 Y34 F2000 ; fast wipe\nG1 X -16.5 Y30 F1000 ; slow wipe\nG1 X -16.5 Y19 F1000 ; slow wipe\nG1 X -16.5 Y19 Z20 F1000 ; raise extruder\nM106 S255 ; turn on fan to blow away fuzzies\nG4 S5 ; wait 5 seconds\nM107 ; turn off fan\nG0 X50 F1000 ; move over to switch extruders\nT1 ; switch to second extruder\nG1 X296.5 Y100 F5000 ; move E2 above second wiper pad\nG1 Z 1.0 ; push nozzle into wiper\nG1 X 296.5 Y100 F1000 ; slow wipe\nG1 X 296.5 Y90 F1000 ; slow wipe\nG1 X 297.5 Y86 F2000 ; fast wipe\nG1 X 295.5 Y80 F2000 ; fast wipe\nG1 X 297.5 Y74 F2000 ; fast wipe\nG1 X 295.5 Y70 F2000 ; fast wipe\nG1 X 296.5 Y68 F1000 ; slow wipe\nG1 X 296.5 Y60 F1000 ; slow wipe\nG1 X 298 Y60 F1000 ; slow wipe\nG1 X 298 Y46 F1000 ; slow wipe\nG1 X 295 Y46 F1000 ; slow wipe\nG1 X 295 Y60 F1000 ; slow wipe\nG1 X 298 Y60 F1000 ; slow wipe\nG1 X 298 Y46 F1000 ; slow wipe\nG1 X 295 Y46 F1000 ; slow wipe\nG1 X 295 Y60 F1000 ; slow wipe\nG1 X 298 Y60 F1000 ; slow wipe\nG1 X 298 Y46 F1000 ; slow wipe\nG1 X 295 Y46 F1000 ; slow wipe\nG1 X 295 Y60 F1000 ; slow wipe\nG1 X 296.5 Y60 F1000 ; slow wipe\nG1 X 296.5 Y42 F1000 ; slow wipe\nG1 X 297.5 Y40 F2000 ; fast wipe\nG1 X 295.5 Y38 F2000 ; fast wipe\nG1 X 297.5 Y36 F2000 ; fast wipe\nG1 X 295.5 Y34 F2000 ; fast wipe\nG1 X 297.5 Y30 F1000 ; slow wipe\nG1 X 296.5 Y19 F1000 ; slow wipe\nG1 X 296.5 Y19 Z20 F1000 ; raise extruder\nM106 S255 ; turn on fan to blow away fuzzies\nG4 S5 ; wait 5 seconds\nM107 ; turn off fan\nG0 X247 F1000 ; move over to switch extruders\nT0 ; switch to first extruder\nM109 R{material_standby_temperature} ; heat to probe temp\nM204 S100 ; set accel for probing\nG29 ; probe sequence (for auto-leveling)\nM420 S1 ; enable leveling matrix\nM204 S500 ; set accel back to normal\nM104 S{material_print_temperature_layer_0} T0 ; set extruder temp\nM104 S{material_print_temperature_layer_0} T1 ; set extruder temp\nG1 X100 Y-29 Z0.5 F3000 ; move to open space\nM400 ; clear buffer\nM117 Heating... ; LCD status message\nM109 R{material_print_temperature_layer_0} T0 ; set extruder temp and wait\nM109 R{material_print_temperature_layer_0} T1 ; set extruder temp and wait\nM117 Purging... ; LCD status message\nT0 ; select this extruder first\nG1 E0 F100 ; undo retraction\nG92 E-30 ; set extruder negative amount to purge\nG1 E0 F100 ; purge XXmm of filament\nG1 E-3 F200 ; purge retraction\nG1 Z0.45 ; clear bed (barely)\nG1 X100 Y10 F4000 ; move above bed to shear off filament\nM106 S255 ; turn on fan\nG4 S7 ; wait 7 seconds\nM107 ; turn off fan\nG1 X180 Y-29 Z0.45 F3000 ; move to open space\nT1 ; set extruder\nG1 E0 F100 ; undo retraction\nG92 E-30 ; set extruder negative amount to purge\nG1 E0 F100 ; purge XXmm of filament\nG1 E-4 F200 ; purge retraction\nG1 Z0.35 ; clear bed (barely)\nG1 X180 Y10 F4000 ; move above bed to shear off filament\nT0 ; set extruder\nM190 R{material_bed_temperature_layer_0} ; get bed temping up during first layer\nG1 Z2 E0 F75 ; raise head and 0 extruder\nM82 ; set to absolute mode\nM400 ; clear buffer\nM117 TAZ Printing... ; LCD status message\n" }, + "machine_width": { "default_value": 282 } + } +} \ No newline at end of file diff --git a/resources/definitions/makeR_pegasus.def.json b/resources/definitions/makeR_pegasus.def.json index a8fbf49875..3f72c2108d 100644 --- a/resources/definitions/makeR_pegasus.def.json +++ b/resources/definitions/makeR_pegasus.def.json @@ -2,37 +2,29 @@ "version": 2, "name": "Maker Pegasus", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Maker", "manufacturer": "Maker", "file_formats": "text/x-gcode", "platform": "makeR_pegasus_platform.3mf", - "platform_offset": [-200, -10, 200], - "machine_extruder_trains": - { - "0": "makeR_pegasus_extruder_0" - } + "machine_extruder_trains": { "0": "makeR_pegasus_extruder_0" }, + "platform_offset": [ + -200, + -10, + 200 + ] }, - - "overrides": { - "machine_name": { "default_value": "makeR Pegasus" }, - "machine_heated_bed": { - "default_value": true - }, - "machine_width": { - "default_value": 400 - }, - "machine_height": { - "default_value": 400 - }, - "machine_depth": { - "default_value": 400 - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_head_with_fans_polygon": { + "overrides": + { + "gantry_height": { "value": "25" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 400 }, + "machine_end_gcode": { "default_value": "M104 S0;Turn off temperature\nG28 X0; Home X\nM84; Disable Motors" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ [-75, -18], [-75, 35], @@ -40,17 +32,10 @@ [18, -18] ] }, - "gantry_height": { - "value": "25" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G1 Z15;\nG28;Home\nG29;Auto Level\nG1 Z5 F5000;Move the platform down 15mm" - }, - "machine_end_gcode": { - "default_value": "M104 S0;Turn off temperature\nG28 X0; Home X\nM84; Disable Motors" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "makeR Pegasus" }, + "machine_start_gcode": { "default_value": "G1 Z15;\nG28;Home\nG29;Auto Level\nG1 Z5 F5000;Move the platform down 15mm" }, + "machine_width": { "default_value": 400 } } } \ No newline at end of file diff --git a/resources/definitions/makeR_prusa_tairona_i3.def.json b/resources/definitions/makeR_prusa_tairona_i3.def.json index f56dc314a2..c973e79d9a 100644 --- a/resources/definitions/makeR_prusa_tairona_i3.def.json +++ b/resources/definitions/makeR_prusa_tairona_i3.def.json @@ -2,37 +2,29 @@ "version": 2, "name": "Maker Prusa Tairona i3", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Maker", "manufacturer": "Maker", "file_formats": "text/x-gcode", "platform": "makeR_prusa_tairona_i3_platform.3mf", - "platform_offset": [-2, 0, 0], - "machine_extruder_trains": - { - "0": "makeR_prusa_tairona_i3_extruder_0" - } + "machine_extruder_trains": { "0": "makeR_prusa_tairona_i3_extruder_0" }, + "platform_offset": [ + -2, + 0, + 0 + ] }, - - "overrides": { - "machine_name": { "default_value": "makeR Prusa Tairona I3" }, - "machine_heated_bed": { - "default_value": true - }, - "machine_width": { - "default_value": 200 - }, - "machine_height": { - "default_value": 200 - }, - "machine_depth": { - "default_value": 200 - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_head_with_fans_polygon": { + "overrides": + { + "gantry_height": { "value": "55" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M104 S0;Turn off temperature\nG28 X0; Home X\nM84; Disable Motors" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ [-75, -18], [-75, 35], @@ -40,17 +32,10 @@ [18, -18] ] }, - "gantry_height": { - "value": "55" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G1 Z15;\nG28;Home\nG29;Auto Level\nG1 Z5 F5000;Move the platform down 15mm" - }, - "machine_end_gcode": { - "default_value": "M104 S0;Turn off temperature\nG28 X0; Home X\nM84; Disable Motors" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "makeR Prusa Tairona I3" }, + "machine_start_gcode": { "default_value": "G1 Z15;\nG28;Home\nG29;Auto Level\nG1 Z5 F5000;Move the platform down 15mm" }, + "machine_width": { "default_value": 200 } } } \ No newline at end of file diff --git a/resources/definitions/makeblock_mcreate.def.json b/resources/definitions/makeblock_mcreate.def.json index 7a2d575395..81b4b4f858 100644 --- a/resources/definitions/makeblock_mcreate.def.json +++ b/resources/definitions/makeblock_mcreate.def.json @@ -2,67 +2,36 @@ "version": 2, "name": "Makeblock mCreate", "inherits": "fdmprinter", - "metadata": { + "metadata": + { + "visible": true, "author": "Makeblock", "manufacturer": "Makeblock", - "visible": true, "file_formats": "application/gzip;text/x-gcode", "has_machine_quality": true, - "preferred_quality_type": "normal", - "machine_extruder_trains": { - "0": "makeblock_mcreate_extruder_0" - } + "machine_extruder_trains": { "0": "makeblock_mcreate_extruder_0" }, + "preferred_quality_type": "normal" }, - "overrides": { - "machine_name": { - "default_value": "Makeblock mCreate" - }, - "machine_width": { - "default_value": 225 - }, - "machine_depth": { - "default_value": 225 - }, - "machine_height": { - "default_value": 300 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_head_with_fans_polygon": { + "overrides": + { + "gantry_height": { "value": 15.0 }, + "machine_depth": { "default_value": 225 }, + "machine_end_gcode": { "default_value": "; Mcreate end Gcode \nG4 ; Wait command in buffer have finished \nG92 E0 \nG1 E-2 F300; retract filament \nG28 X Z; home x z axis \nG1 F3000 Y220;Move Heat Bed to the front for easy print removal \nM104 S0; Turn off the nozzle heat \nM140 S0; Turn off the bed heat \nM107 ; Turn off the Fan \nM84 ; Disable stepper motors \n; End of GCode" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ - [ - 0, - 0 - ], - [ - 0, - 0 - ], - [ - 0, - 0 - ], - [ - 0, - 0 - ] + [0, 0], + [0, 0], + [0, 0], + [0, 0] ] }, - "machine_gcode_flavor": { - "default_value": "Marlin" - }, - "gantry_height": { - "value": 15.0 - }, - "machine_extruder_count": { - "default_value": 1 - }, - "machine_start_gcode": { - "default_value": "; Mcreate Start Gcode \nG28 ; Home all axes \nG92 E0 ; Reset Extruder\nG1 X0 Y0 Z15 F3000.0 ; Move to start position \nG1 E10 F400 ;load filament \nG1 E2 F400 ;retarct filament \nG92 E0 ; Reset Extruder \nG1 X0 Y130 Z15 F3000.0 \nG12 ; clean nozzle \nG1 X0 Y0 Z0.3 F3000.0 ; Move to start position \nG1 E9.0 F400 ;loadsome filament \nG92 E0 ; Reset Extruder \n; End of start GCode" - }, - "machine_end_gcode": { - "default_value": "; Mcreate end Gcode \nG4 ; Wait command in buffer have finished \nG92 E0 \nG1 E-2 F300; retract filament \nG28 X Z; home x z axis \nG1 F3000 Y220;Move Heat Bed to the front for easy print removal \nM104 S0; Turn off the nozzle heat \nM140 S0; Turn off the bed heat \nM107 ; Turn off the Fan \nM84 ; Disable stepper motors \n; End of GCode" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "Makeblock mCreate" }, + "machine_start_gcode": { "default_value": "; Mcreate Start Gcode \nG28 ; Home all axes \nG92 E0 ; Reset Extruder\nG1 X0 Y0 Z15 F3000.0 ; Move to start position \nG1 E10 F400 ;load filament \nG1 E2 F400 ;retarct filament \nG92 E0 ; Reset Extruder \nG1 X0 Y130 Z15 F3000.0 \nG12 ; clean nozzle \nG1 X0 Y0 Z0.3 F3000.0 ; Move to start position \nG1 E9.0 F400 ;loadsome filament \nG92 E0 ; Reset Extruder \n; End of start GCode" }, + "machine_width": { "default_value": 225 } } -} +} \ No newline at end of file diff --git a/resources/definitions/makeit_pro_l.def.json b/resources/definitions/makeit_pro_l.def.json index 237a8ac09e..dfba300698 100644 --- a/resources/definitions/makeit_pro_l.def.json +++ b/resources/definitions/makeit_pro_l.def.json @@ -2,7 +2,8 @@ "version": 2, "name": "Makeit Pro-L", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "unknown", "manufacturer": "Makeit 3D", @@ -14,86 +15,40 @@ "1": "makeit_l_dual_2nd" } }, - - "overrides": { - "machine_name": { "default_value": "MAKEiT Pro-L" }, - "machine_width": { - "default_value": 305 - }, - "machine_height": { - "default_value": 330 - }, - "machine_depth": { - "default_value": 254 - }, - "machine_center_is_zero": { - "default_value": false - }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "cool_min_layer_time_fan_speed_max": { "default_value": 5 }, + "gantry_height": { "value": "330" }, + "infill_sparse_density": { "default_value": 20 }, + "layer_height": { "default_value": 0.2 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 254 }, + "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-5 F9000 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+5 X+20 Y+20 F9000 ;move Z up a bit\nM117 MAKEiT Pro@Done\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning\nM81" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { "default_value": [ - [ -305, 28 ], - [ -305, -28 ], - [ 305, 28 ], - [ 305, -28 ] + [-305, 28], + [-305, -28], + [305, 28], + [305, -28] ] }, - "gantry_height": { - "value": "330" - }, - "machine_use_extruder_offset_to_offset_coords": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nG92 E0 ;zero the extruded length\nG28 ;home\nG1 F200 E30 ;extrude 30 mm of feed stock\nG92 E0 ;zero the extruded length\nG1 E-5 ;retract 5 mm\nG28 SC ;Do homeing, clean nozzles and let printer to know that printing started\nG92 X-6 ;Sets Curas checker board to match printers heated bed coordinates\nG1 F{speed_travel}\nM117 Printing..." - }, - "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-5 F9000 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+5 X+20 Y+20 F9000 ;move Z up a bit\nM117 MAKEiT Pro@Done\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning\nM81" - }, - "machine_extruder_count": { - "default_value": 2 - }, - "print_sequence": { - "enabled": true - }, - "prime_tower_position_x": { - "value": "185" - }, - "prime_tower_position_y": { - "value": "160" - }, - "layer_height": { - "default_value": 0.2 - }, - "retraction_speed": { - "default_value": 180 - }, - "infill_sparse_density": { - "default_value": 20 - }, - "retraction_amount": { - "default_value": 6 - }, - "speed_print": { - "default_value": 60 - }, - "wall_thickness": { - "value": "1.2" - }, - "cool_min_layer_time_fan_speed_max": { - "default_value": 5 - }, - "adhesion_type": { - "default_value": "skirt" - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_heat_zone_length": { - "default_value": 20 - } + "machine_heat_zone_length": { "default_value": 20 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 330 }, + "machine_name": { "default_value": "MAKEiT Pro-L" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nG92 E0 ;zero the extruded length\nG28 ;home\nG1 F200 E30 ;extrude 30 mm of feed stock\nG92 E0 ;zero the extruded length\nG1 E-5 ;retract 5 mm\nG28 SC ;Do homeing, clean nozzles and let printer to know that printing started\nG92 X-6 ;Sets Curas checker board to match printers heated bed coordinates\nG1 F{speed_travel}\nM117 Printing..." }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, + "machine_width": { "default_value": 305 }, + "prime_tower_position_x": { "value": "185" }, + "prime_tower_position_y": { "value": "160" }, + "print_sequence": { "enabled": true }, + "retraction_amount": { "default_value": 6 }, + "retraction_speed": { "default_value": 180 }, + "speed_print": { "default_value": 60 }, + "wall_thickness": { "value": "1.2" } } -} +} \ No newline at end of file diff --git a/resources/definitions/makeit_pro_m.def.json b/resources/definitions/makeit_pro_m.def.json index 3eb0850555..7b42c3acaf 100644 --- a/resources/definitions/makeit_pro_m.def.json +++ b/resources/definitions/makeit_pro_m.def.json @@ -2,7 +2,8 @@ "version": 2, "name": "Makeit Pro-M", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "unknown", "manufacturer": "Makeit 3D", @@ -14,83 +15,39 @@ "1": "makeit_dual_2nd" } }, - - "overrides": { - "machine_name": { "default_value": "MAKEiT Pro-M" }, - "machine_width": { - "default_value": 200 - }, - "machine_height": { - "default_value": 200 - }, - "machine_depth": { - "default_value": 240 - }, - "machine_center_is_zero": { - "default_value": false - }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "cool_min_layer_time_fan_speed_max": { "default_value": 5 }, + "gantry_height": { "value": "200" }, + "infill_sparse_density": { "default_value": 20 }, + "layer_height": { "default_value": 0.2 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 240 }, + "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-5 F9000 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+5 X+20 Y+20 F9000 ;move Z up a bit\nM117 MAKEiT Pro@Done\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning\nM81" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { "default_value": [ - [ -200, 240 ], - [ -200, -32 ], - [ 200, 240 ], - [ 200, -32 ] + [-200, 240], + [-200, -32], + [200, 240], + [200, -32] ] }, - "gantry_height": { - "value": "200" - }, - "machine_use_extruder_offset_to_offset_coords": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nG92 E0 ;zero the extruded length\nG28 ;home\nG1 F200 E30 ;extrude 30 mm of feed stock\nG92 E0 ;zero the extruded length\nG1 E-5 ;retract 5 mm\nG28 SC ;Do homeing, clean nozzles and let printer to know that printing started\nG92 X-6 ;Sets Curas checker board to match printers heated bed coordinates\nG1 F{speed_travel}\nM117 Printing..." - }, - "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-5 F9000 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+5 X+20 Y+20 F9000 ;move Z up a bit\nM117 MAKEiT Pro@Done\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning\nM81" - }, - "machine_extruder_count": { - "default_value": 2 - }, - "print_sequence": { - "enabled": false - }, - "prime_tower_position_x": { - "value": "185" - }, - "prime_tower_position_y": { - "value": "160" - }, - "layer_height": { - "default_value": 0.2 - }, - "retraction_speed": { - "default_value": 180 - }, - "infill_sparse_density": { - "default_value": 20 - }, - "retraction_amount": { - "default_value": 6 - }, - "speed_print": { - "default_value": 60 - }, - "wall_thickness": { - "value": "1.2" - }, - "cool_min_layer_time_fan_speed_max": { - "default_value": 5 - }, - "adhesion_type": { - "default_value": "skirt" - }, - "machine_heated_bed": { - "default_value": true - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "MAKEiT Pro-M" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nG92 E0 ;zero the extruded length\nG28 ;home\nG1 F200 E30 ;extrude 30 mm of feed stock\nG92 E0 ;zero the extruded length\nG1 E-5 ;retract 5 mm\nG28 SC ;Do homeing, clean nozzles and let printer to know that printing started\nG92 X-6 ;Sets Curas checker board to match printers heated bed coordinates\nG1 F{speed_travel}\nM117 Printing..." }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, + "machine_width": { "default_value": 200 }, + "prime_tower_position_x": { "value": "185" }, + "prime_tower_position_y": { "value": "160" }, + "print_sequence": { "enabled": false }, + "retraction_amount": { "default_value": 6 }, + "retraction_speed": { "default_value": 180 }, + "speed_print": { "default_value": 60 }, + "wall_thickness": { "value": "1.2" } } -} +} \ No newline at end of file diff --git a/resources/definitions/makeit_pro_mx.def.json b/resources/definitions/makeit_pro_mx.def.json index 9322d2f510..f7728af7f6 100644 --- a/resources/definitions/makeit_pro_mx.def.json +++ b/resources/definitions/makeit_pro_mx.def.json @@ -2,7 +2,8 @@ "version": 2, "name": "Makeit Pro-MX", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "unknown", "manufacturer": "Makeit 3D", @@ -14,83 +15,39 @@ "1": "makeit_mx_dual_2nd" } }, - - "overrides": { - "machine_name": { "default_value": "MAKEiT Pro-MX" }, - "machine_width": { - "default_value": 200 - }, - "machine_height": { - "default_value": 330 - }, - "machine_depth": { - "default_value": 240 - }, - "machine_center_is_zero": { - "default_value": false - }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "cool_min_layer_time_fan_speed_max": { "default_value": 5 }, + "gantry_height": { "value": "200" }, + "infill_sparse_density": { "default_value": 20 }, + "layer_height": { "default_value": 0.2 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 240 }, + "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-5 F9000 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+5 X+20 Y+20 F9000 ;move Z up a bit\nM117 MAKEiT Pro@Done\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning\nM81" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { "default_value": [ - [ -200, 240 ], - [ -200, -32 ], - [ 200, 240 ], - [ 200, -32 ] + [-200, 240], + [-200, -32], + [200, 240], + [200, -32] ] }, - "gantry_height": { - "value": "200" - }, - "machine_use_extruder_offset_to_offset_coords": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nG92 E0 ;zero the extruded length\nG28 ;home\nG1 F200 E30 ;extrude 30 mm of feed stock\nG92 E0 ;zero the extruded length\nG1 E-5 ;retract 5 mm\nG28 SC ;Do homeing, clean nozzles and let printer to know that printing started\nG92 X-6 ;Sets Curas checker board to match printers heated bed coordinates\nG1 F{speed_travel}\nM117 Printing..." - }, - "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-5 F9000 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+5 X+20 Y+20 F9000 ;move Z up a bit\nM117 MAKEiT Pro@Done\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning\nM81" - }, - "machine_extruder_count": { - "default_value": 2 - }, - "print_sequence": { - "enabled": false - }, - "prime_tower_position_x": { - "value": "185" - }, - "prime_tower_position_y": { - "value": "160" - }, - "layer_height": { - "default_value": 0.2 - }, - "retraction_speed": { - "default_value": 180 - }, - "infill_sparse_density": { - "default_value": 20 - }, - "retraction_amount": { - "default_value": 6 - }, - "speed_print": { - "default_value": 60 - }, - "wall_thickness": { - "value": "1.2" - }, - "cool_min_layer_time_fan_speed_max": { - "default_value": 5 - }, - "adhesion_type": { - "default_value": "skirt" - }, - "machine_heated_bed": { - "default_value": true - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 330 }, + "machine_name": { "default_value": "MAKEiT Pro-MX" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nG92 E0 ;zero the extruded length\nG28 ;home\nG1 F200 E30 ;extrude 30 mm of feed stock\nG92 E0 ;zero the extruded length\nG1 E-5 ;retract 5 mm\nG28 SC ;Do homeing, clean nozzles and let printer to know that printing started\nG92 X-6 ;Sets Curas checker board to match printers heated bed coordinates\nG1 F{speed_travel}\nM117 Printing..." }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, + "machine_width": { "default_value": 200 }, + "prime_tower_position_x": { "value": "185" }, + "prime_tower_position_y": { "value": "160" }, + "print_sequence": { "enabled": false }, + "retraction_amount": { "default_value": 6 }, + "retraction_speed": { "default_value": 180 }, + "speed_print": { "default_value": 60 }, + "wall_thickness": { "value": "1.2" } } } \ No newline at end of file diff --git a/resources/definitions/maker_made_300x.def.json b/resources/definitions/maker_made_300x.def.json index 70479856e3..e7f3b8614c 100644 --- a/resources/definitions/maker_made_300x.def.json +++ b/resources/definitions/maker_made_300x.def.json @@ -1,142 +1,148 @@ -{ - "version": 2, - "name": "Maker Made 300x", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "DragonJe", - "manufacturer": "Maker Made", - "file_formats": "text/x-gcode", - "platform_offset": [0, 0, 0], - "has_materials": true, - "has_variants": false, - "preferred_quality_type": "normal", - "has_machine_quality": false, - "preferred_material": "generic_pla", - "machine_extruder_trains": - { - "0": "maker_made_300x_extruder_0" - } - }, - - "overrides": { - "machine_name": {"default_value": "Maker Made 300x"}, - "machine_width": {"default_value": 300}, - "machine_height": {"default_value": 400}, - "machine_depth": {"default_value": 300}, - "machine_head_with_fans_polygon": {"default_value": [[-30, 34],[-30, -32],[30, -32],[30, 34]]}, - "gantry_height": {"value": "30"}, - "machine_heated_bed": {"default_value": true}, - "material_diameter": {"default_value": 1.75}, - "machine_gcode_flavor": {"default_value": " RepRap (Marlin/Sprinter)"}, - "machine_start_gcode": {"default_value": "G28 ;Home\n G29 ;Auto Level\n G92 E0 ;Reset Extruder\n G1 Z5.0 F3000 ;Move Z Axis up\n G1 X25 Y295.0 Z0.28 F3000.0 ;Move to extrude\n G1 X250 Y295.0 Z0.28 F1500.0 E15 ;Draw the first line\n G1 X25 Y290.0 Z0.28 F3000.0 ;Move to side a little\n G1 X250 Y290.0 Z0.28 F1500.0 E30 ;Draw the second line\n G92 E0 ;Reset Extruder\n G1 Z5.0 F3000 ;Move Z Axis up" }, - "machine_end_gcode": {"default_value": "M104 S0\n M140 S0\n ;Retract the filament\n G92 E1\n G1 E-1 F300\n G28 X0 Y0\n G1 Y300 F3000 ;Move bed forward\n M84" }, - - "layer_height": {"value": 0.16}, - "layer_height_0": {"value": 0.32}, - "line_width": {"value": 0.4}, - "wall_line_width_0": {"value": 0.4}, - "initial_layer_line_width_factor": {"value": 100}, - "wall_thickness": {"value": 0.8}, - "wall_0_wipe_dist": {"value": 0.2}, - "roofing_layer_count": {"value": 1}, - "top_bottom_thickness": {"value": 0.6}, - "top_thickness": {"value": 0.8}, - "top_layers": {"value": 5}, - "bottom_thickness": {"value": 0.6}, - "bottom_layers": {"value": 3}, - "top_bottom_pattern": {"value": "'lines'" }, - "top_bottom_pattern_0": {"value": "'lines'" }, - "wall_0_inset": {"value": 0}, - "optimize_wall_printing_order": {"value": false }, - "inset_direction": {"value": "'inside_out'" }, - "alternate_extra_perimeter": {"value": false }, - "fill_outline_gaps": {"value": true }, - "xy_offset": {"value": 0}, - "skin_no_small_gaps_heuristic": {"value": true }, - "skin_outline_count": {"value": 1}, - "ironing_enabled": {"value": false }, - "infill_sparse_density": {"value": 20 }, - "zig_zaggify_infill": {"value": false }, - "infill_multiplier": {"value": 1}, - "infill_wall_line_count": {"value": 0}, - "infill_overlap": {"value": 10}, - "skin_overlap": {"value": 5}, - "infill_wipe_dist": {"value": 0.1}, - "gradual_infill_steps": {"value": 0}, - "infill_before_walls": {"value": false }, - "infill_support_enabled": {"value": false }, - "max_skin_angle_for_expansion": {"value": 90}, - "default_material_print_temperature": {"value": 220}, - "material_print_temperature": {"value": 220}, - "material_print_temperature_layer_0": {"value": 220}, - "material_initial_print_temperature": {"value": 220}, - "material_final_print_temperature": {"value": 220}, - "default_material_bed_temperature": {"value": 50}, - "material_bed_temperature": {"value": 50}, - "material_flow": {"value": 100}, - "retraction_enable": {"value": true }, - "retract_at_layer_change": {"value": false }, - "retraction_amount": {"value": 5}, - "retraction_speed": {"value": 45}, - "retraction_extra_prime_amount": {"value": 0}, - "retraction_min_travel": {"value": 0.8}, - "retraction_count_max": {"value": 90}, - "retraction_extrusion_window": {"value": 5}, - "limit_support_retractions": {"value": true }, - "switch_extruder_retraction_amount": {"value": 16}, - "switch_extruder_retraction_speeds": {"value": 20}, - "speed_print": {"value": 50}, - "speed_travel": {"value": 150}, - "speed_layer_0": {"value": 10}, - "speed_travel_layer_0": {"value": 50}, - "speed_slowdown_layers": {"value": 2}, - "acceleration_enabled": {"value": false }, - "acceleration_roofing": {"value": 3000 }, - "jerk_enabled": {"value": false }, - "retraction_combing": {"value": "'infill'" }, - "travel_retract_before_outer_wall": {"value": false }, - "travel_avoid_other_parts": {"value": true }, - "retraction_hop_enabled": {"value": false }, - "cool_fan_enabled": {"value": true }, - "cool_fan_speed": {"value": 100}, - "cool_fan_speed_0": {"value": 0}, - "cool_fan_full_at_height": {"value": 0.32 }, - "cool_lift_head": {"value": false }, - "support_enable": {"value": true }, - "support_type": {"value": "'everywhere'" }, - "support_angle": {"value": "50"}, - "support_pattern": {"value": "'grid'"}, - "support_wall_count": {"value": 0}, - "zig_zaggify_support": {"value": false }, - "support_infill_rate": {"value": "15 if support_enable else 0"}, - "support_brim_enable": {"value": true }, - "support_brim_line_count": {"value": 5}, - "support_z_distance": {"value": 0.2}, - "support_xy_distance": {"value": 0.7}, - "support_xy_distance_overhang": {"value": 0.2}, - "support_bottom_stair_step_height": {"value": 0.3}, - "support_bottom_stair_step_width": {"value": 5.0}, - "support_join_distance": {"value": 2.0}, - "support_offset": {"value": 0.2}, - "gradual_support_infill_steps": {"value": 0}, - "support_roof_enable": {"value": true }, - "support_bottom_enable": {"value": false }, - "support_roof_height": {"value": 0.45}, - "support_roof_density": {"value": 45}, - "support_roof_pattern": {"value": "'lines'" }, - "support_fan_enable": {"value": false }, - "support_use_towers": {"value": true }, - "support_tower_diameter": {"value": 3}, - "support_tower_roof_angle": {"value": "65"}, - "adhesion_type": {"value": "'skirt'"}, - "skirt_line_count": {"value": 2}, - "skirt_gap": {"value": 3}, - "meshfix_union_all": {"value": true }, - "meshfix_union_all_remove_holes": {"value": false }, - "meshfix_extensive_stitching": {"value": false }, - "meshfix_keep_open_polygons": {"value": false }, - "multiple_mesh_overlap": {"value": "0.16"}, - "carve_multiple_volumes": {"value": false } - } -} +{ + "version": 2, + "name": "Maker Made 300x", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "DragonJe", + "manufacturer": "Maker Made", + "file_formats": "text/x-gcode", + "has_machine_quality": false, + "has_materials": true, + "has_variants": false, + "machine_extruder_trains": { "0": "maker_made_300x_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ], + "preferred_material": "generic_pla", + "preferred_quality_type": "normal" + }, + "overrides": + { + "acceleration_enabled": { "value": false }, + "acceleration_roofing": { "value": 3000 }, + "adhesion_type": { "value": "'skirt'" }, + "alternate_extra_perimeter": { "value": false }, + "bottom_layers": { "value": 3 }, + "bottom_thickness": { "value": 0.6 }, + "carve_multiple_volumes": { "value": false }, + "cool_fan_enabled": { "value": true }, + "cool_fan_full_at_height": { "value": 0.32 }, + "cool_fan_speed": { "value": 100 }, + "cool_fan_speed_0": { "value": 0 }, + "cool_lift_head": { "value": false }, + "default_material_bed_temperature": { "value": 50 }, + "default_material_print_temperature": { "value": 220 }, + "fill_outline_gaps": { "value": true }, + "gantry_height": { "value": "30" }, + "gradual_infill_steps": { "value": 0 }, + "gradual_support_infill_steps": { "value": 0 }, + "infill_before_walls": { "value": false }, + "infill_multiplier": { "value": 1 }, + "infill_overlap": { "value": 10 }, + "infill_sparse_density": { "value": 20 }, + "infill_support_enabled": { "value": false }, + "infill_wall_line_count": { "value": 0 }, + "infill_wipe_dist": { "value": 0.1 }, + "initial_layer_line_width_factor": { "value": 100 }, + "inset_direction": { "value": "'inside_out'" }, + "ironing_enabled": { "value": false }, + "jerk_enabled": { "value": false }, + "layer_height": { "value": 0.16 }, + "layer_height_0": { "value": 0.32 }, + "line_width": { "value": 0.4 }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "M104 S0\n M140 S0\n ;Retract the filament\n G92 E1\n G1 E-1 F300\n G28 X0 Y0\n G1 Y300 F3000 ;Move bed forward\n M84" }, + "machine_gcode_flavor": { "default_value": " RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-30, 34], + [-30, -32], + [30, -32], + [30, 34] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Maker Made 300x" }, + "machine_start_gcode": { "default_value": "G28 ;Home\n G29 ;Auto Level\n G92 E0 ;Reset Extruder\n G1 Z5.0 F3000 ;Move Z Axis up\n G1 X25 Y295.0 Z0.28 F3000.0 ;Move to extrude\n G1 X250 Y295.0 Z0.28 F1500.0 E15 ;Draw the first line\n G1 X25 Y290.0 Z0.28 F3000.0 ;Move to side a little\n G1 X250 Y290.0 Z0.28 F1500.0 E30 ;Draw the second line\n G92 E0 ;Reset Extruder\n G1 Z5.0 F3000 ;Move Z Axis up" }, + "machine_width": { "default_value": 300 }, + "material_bed_temperature": { "value": 50 }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": 220 }, + "material_flow": { "value": 100 }, + "material_initial_print_temperature": { "value": 220 }, + "material_print_temperature_layer_0": { "value": 220 }, + "max_skin_angle_for_expansion": { "value": 90 }, + "meshfix_extensive_stitching": { "value": false }, + "meshfix_keep_open_polygons": { "value": false }, + "meshfix_union_all": { "value": true }, + "meshfix_union_all_remove_holes": { "value": false }, + "multiple_mesh_overlap": { "value": "0.16" }, + "optimize_wall_printing_order": { "value": false }, + "retract_at_layer_change": { "value": false }, + "retraction_amount": { "value": 5 }, + "retraction_combing": { "value": "'infill'" }, + "retraction_count_max": { "value": 90 }, + "retraction_enable": { "value": true }, + "retraction_extra_prime_amount": { "value": 0 }, + "retraction_extrusion_window": { "value": 5 }, + "retraction_hop_enabled": { "value": false }, + "retraction_min_travel": { "value": 0.8 }, + "retraction_speed": { "value": 45 }, + "roofing_layer_count": { "value": 1 }, + "skin_no_small_gaps_heuristic": { "value": true }, + "skin_outline_count": { "value": 1 }, + "skin_overlap": { "value": 5 }, + "skirt_gap": { "value": 3 }, + "skirt_line_count": { "value": 2 }, + "speed_layer_0": { "value": 10 }, + "speed_print": { "value": 50 }, + "speed_slowdown_layers": { "value": 2 }, + "speed_travel": { "value": 150 }, + "speed_travel_layer_0": { "value": 50 }, + "support_angle": { "value": "50" }, + "support_bottom_enable": { "value": false }, + "support_bottom_stair_step_height": { "value": 0.3 }, + "support_bottom_stair_step_width": { "value": 5.0 }, + "support_brim_enable": { "value": true }, + "support_brim_line_count": { "value": 5 }, + "support_enable": { "value": true }, + "support_fan_enable": { "value": false }, + "support_infill_rate": { "value": "15 if support_enable else 0" }, + "support_join_distance": { "value": 2.0 }, + "support_offset": { "value": 0.2 }, + "support_pattern": { "value": "'grid'" }, + "support_roof_density": { "value": 45 }, + "support_roof_enable": { "value": true }, + "support_roof_height": { "value": 0.45 }, + "support_roof_pattern": { "value": "'lines'" }, + "support_tower_diameter": { "value": 3 }, + "support_tower_roof_angle": { "value": "65" }, + "support_type": { "value": "'everywhere'" }, + "support_wall_count": { "value": "1 if (support_structure == 'tree') else 0" }, + "support_xy_distance": { "value": 0.7 }, + "support_xy_distance_overhang": { "value": 0.2 }, + "support_z_distance": { "value": 0.2 }, + "switch_extruder_retraction_amount": { "value": 16 }, + "switch_extruder_retraction_speeds": { "value": 20 }, + "top_bottom_pattern": { "value": "'lines'" }, + "top_bottom_pattern_0": { "value": "'lines'" }, + "top_bottom_thickness": { "value": 0.6 }, + "top_layers": { "value": 5 }, + "top_thickness": { "value": 0.8 }, + "travel_avoid_other_parts": { "value": true }, + "travel_retract_before_outer_wall": { "value": false }, + "wall_0_inset": { "value": 0 }, + "wall_0_wipe_dist": { "value": 0.2 }, + "wall_line_width_0": { "value": 0.4 }, + "wall_thickness": { "value": 0.8 }, + "xy_offset": { "value": 0 }, + "zig_zaggify_infill": { "value": false }, + "zig_zaggify_support": { "value": false } + } +} \ No newline at end of file diff --git a/resources/definitions/maker_starter.def.json b/resources/definitions/maker_starter.def.json index ea849b7039..e654ee0915 100644 --- a/resources/definitions/maker_starter.def.json +++ b/resources/definitions/maker_starter.def.json @@ -2,98 +2,44 @@ "version": 2, "name": "3DMaker Starter", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "tvlgiao", "manufacturer": "3DMaker", "file_formats": "text/x-gcode;model/stl;application/x-wavefront-obj", "platform": "makerstarter_platform.3mf", - "preferred_quality_type": "draft", - "machine_extruder_trains": - { - "0": "maker_starter_extruder_0" - } + "machine_extruder_trains": { "0": "maker_starter_extruder_0" }, + "preferred_quality_type": "draft" }, - - "overrides": { + "overrides": + { + "adhesion_type": { "default_value": "raft" }, + "cool_min_layer_time": { "default_value": 5 }, + "cool_min_layer_time_fan_speed_max": { "default_value": 10 }, + "gantry_height": { "value": "55" }, + "infill_sparse_density": { "default_value": 20 }, + "layer_height_0": { "default_value": 0.2 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 185 }, + "machine_disallowed_areas": { "default_value": [] }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 200 }, "machine_name": { "default_value": "3DMaker Starter" }, - "machine_width": { - "default_value": 210 - }, - "machine_depth": { - "default_value": 185 - }, - "machine_height": { - "default_value": 200 - }, - "machine_heated_bed": { - "default_value": false - }, - "machine_center_is_zero": { - "default_value": false - }, - "gantry_height": { - "value": "55" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_disallowed_areas": { - "default_value": [] - }, - "machine_nozzle_tip_outer_diameter": { - "default_value": 1 - }, - "machine_nozzle_head_distance": { - "default_value": 3 - }, - "layer_height_0": { - "default_value": 0.2 - }, - "speed_print": { - "default_value": 50 - }, - "speed_slowdown_layers": { - "default_value": 4 - }, - "infill_sparse_density": { - "default_value": 20 - }, - "cool_min_layer_time": { - "default_value": 5 - }, - "cool_min_layer_time_fan_speed_max": { - "default_value": 10 - }, - "support_type": { - "default_value": "Everywhere" - }, - "support_angle": { - "default_value": 45 - }, - "support_xy_distance": { - "default_value": 1 - }, - "support_z_distance": { - "default_value": 0.2 - }, - "support_pattern": { - "default_value": "zigzag" - }, - "support_infill_rate": { - "value": "15 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 15" - }, - "adhesion_type": { - "default_value": "raft" - }, - "skirt_brim_minimal_length": { - "default_value": 100 - }, - "raft_airgap": { - "default_value": 0.2 - }, - "raft_surface_layers": { - "default_value": 2 - } + "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 }, + "raft_surface_layers": { "default_value": 2 }, + "skirt_brim_minimal_length": { "default_value": 100 }, + "speed_print": { "default_value": 50 }, + "speed_slowdown_layers": { "default_value": 4 }, + "support_angle": { "default_value": 45 }, + "support_infill_rate": { "value": "15 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 15" }, + "support_pattern": { "default_value": "zigzag" }, + "support_type": { "default_value": "Everywhere" }, + "support_xy_distance": { "default_value": 1 }, + "support_z_distance": { "default_value": 0.2 } } -} +} \ No newline at end of file diff --git a/resources/definitions/makerbotreplicator.def.json b/resources/definitions/makerbotreplicator.def.json index 6977ee8f5c..1839f2ac0a 100644 --- a/resources/definitions/makerbotreplicator.def.json +++ b/resources/definitions/makerbotreplicator.def.json @@ -1,30 +1,32 @@ { - "name": "MakerBotReplicator", "version": 2, + "name": "MakerBotReplicator", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "manufacturer": "MakerBot", - "machine_x3g_variant": "r1", "file_formats": "application/x3g", - "platform_offset": [ 0, 0, 0], - "machine_extruder_trains": - { - "0": "makerbotreplicator_extruder_0" - } + "machine_extruder_trains": { "0": "makerbotreplicator_extruder_0" }, + "machine_x3g_variant": "r1", + "platform_offset": [ + 0, + 0, + 0 + ] }, - - "overrides": { - "prime_tower_size": { "default_value": 10.0 }, + "overrides": + { "infill_sparse_density": { "default_value": 10 }, "layer_height": { "default_value": 0.15 }, - "machine_extruder_count": { "default_value": 1 }, - "machine_heated_bed": { "default_value": true }, "machine_center_is_zero": { "default_value": false }, - "machine_height": { "default_value": 150 }, - "machine_gcode_flavor": { "default_value": "MakerBot" }, "machine_depth": { "default_value": 145 }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "MakerBot" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 150 }, + "machine_name": { "default_value": "MakerBot Replicator" }, "machine_width": { "default_value": 225 }, - "machine_name": { "default_value": "MakerBot Replicator" } + "prime_tower_size": { "default_value": 10.0 } } -} +} \ No newline at end of file diff --git a/resources/definitions/makergear_m2.def.json b/resources/definitions/makergear_m2.def.json index 50115a6787..81f02072e8 100644 --- a/resources/definitions/makergear_m2.def.json +++ b/resources/definitions/makergear_m2.def.json @@ -1,49 +1,51 @@ { - "name": "MakerGear M2", "version": 2, + "name": "MakerGear M2", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "William Anderson", "manufacturer": "MakerGear", + "file_formats": "text/x-gcode", "platform": "makergear_m2_platform.3mf", - "file_formats": "text/x-gcode", "has_materials": true, - "machine_extruder_trains": - { - "0": "makergear_m2_v3b" - } + "machine_extruder_trains": { "0": "makergear_m2_v3b" } }, - - "overrides": { - "machine_name": { "default_value": "MakerGear M2" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 200 }, - "machine_height": { "default_value": 190 }, - "machine_depth": { "default_value": 250 }, - "machine_center_is_zero": { "default_value": false }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_size": { "default_value": 0.4 }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "gantry_height": { "value": 24 }, "layer_height": { "default_value": 0.15 }, "layer_height_0": { "default_value": 0.2 }, - "retraction_amount": { "default_value": 0.2 }, - "retraction_speed": { "default_value": 50 }, - "adhesion_type": { "default_value": "skirt" }, - "machine_head_with_fans_polygon": { "default_value": [[-16,10],[11,10],[11,-41],[-16,-41]] }, - "gantry_height": { "value": 24 }, - "machine_max_feedrate_z": { "default_value": 200 }, - "machine_max_feedrate_e": { "default_value": 100 }, - "machine_max_acceleration_z": { "default_value": 500 }, "machine_acceleration": { "default_value": 1000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 250 }, + "machine_end_gcode": { "default_value": "G92 E0 ; zero extruder\nG1 E-2.0000 F2000 ; retract filament\nM104 S0 ; extruder off\nM140 S0 ; bed off\nM107 ; fan off\nG90 ; absolute coords\nG28 X0 ; home X\nM18 S0 ; disable steppers" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-16, 10], + [11, 10], + [11, -41], + [-16, -41] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 190 }, + "machine_max_acceleration_z": { "default_value": 500 }, + "machine_max_feedrate_e": { "default_value": 100 }, + "machine_max_feedrate_z": { "default_value": 200 }, + "machine_max_jerk_e": { "default_value": 2.5 }, "machine_max_jerk_xy": { "default_value": 10 }, "machine_max_jerk_z": { "default_value": 0.2 }, - "machine_max_jerk_e": { "default_value": 2.5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "G21 ; use mms\nM140 S{material_bed_temperature_layer_0} ; heat bed\nM104 S{material_print_temperature_layer_0} ; heat extruder\nG90 ; abs coords\nM82 ; abs extruder\nM107 ; fan off\nG28 Z ; home Z\nG1 Z10 F1200 ; lift nozzle\nG28 X Y ; home XY\nG92 E0 ; zero extruder\nG1 X230 Y50 F9600 ; move nozzle to priming location\nM190 S{material_bed_temperature_layer_0} ; wait for bed\nM109 S{material_print_temperature_layer_0} ; wait for nozzle\nG1 E10 Z0.3 F225 ; prime and lower nozzle\nG1 X190 Z0.1 F1200 ; wipe nozzle\nG92 E0 ; zero extruder" - }, - "machine_end_gcode": { - "default_value": "G92 E0 ; zero extruder\nG1 E-2.0000 F2000 ; retract filament\nM104 S0 ; extruder off\nM140 S0 ; bed off\nM107 ; fan off\nG90 ; absolute coords\nG28 X0 ; home X\nM18 S0 ; disable steppers" - } + "machine_name": { "default_value": "MakerGear M2" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_start_gcode": { "default_value": "G21 ; use mms\nM140 S{material_bed_temperature_layer_0} ; heat bed\nM104 S{material_print_temperature_layer_0} ; heat extruder\nG90 ; abs coords\nM82 ; abs extruder\nM107 ; fan off\nG28 Z ; home Z\nG1 Z10 F1200 ; lift nozzle\nG28 X Y ; home XY\nG92 E0 ; zero extruder\nG1 X230 Y50 F9600 ; move nozzle to priming location\nM190 S{material_bed_temperature_layer_0} ; wait for bed\nM109 S{material_print_temperature_layer_0} ; wait for nozzle\nG1 E10 Z0.3 F225 ; prime and lower nozzle\nG1 X190 Z0.1 F1200 ; wipe nozzle\nG92 E0 ; zero extruder" }, + "machine_width": { "default_value": 200 }, + "material_diameter": { "default_value": 1.75 }, + "retraction_amount": { "default_value": 0.2 }, + "retraction_speed": { "default_value": 50 } } -} +} \ No newline at end of file diff --git a/resources/definitions/malyan_m180.def.json b/resources/definitions/malyan_m180.def.json index 7c32ebfba0..6ae55beffd 100644 --- a/resources/definitions/malyan_m180.def.json +++ b/resources/definitions/malyan_m180.def.json @@ -2,66 +2,39 @@ "version": 2, "name": "Malyan M180", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Ghostkeeper", "manufacturer": "Malyan", - "machine_x3g_variant": "r1d", "file_formats": "application/x3g", - "machine_extruder_trains": - { - "0": "malyan_m180_extruder_0" - } + "machine_extruder_trains": { "0": "malyan_m180_extruder_0" }, + "machine_x3g_variant": "r1d" }, - - "overrides": { - "machine_name": { "default_value": "Malyan M180" }, - "machine_width": { - "default_value": 230 - }, - "machine_height": { - "default_value": 165 - }, - "machine_depth": { - "default_value": 145 - }, - "machine_center_is_zero": { - "default_value": true - }, - "machine_head_with_fans_polygon": { + "overrides": + { + "gantry_height": { "value": "55" }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 145 }, + "machine_end_gcode": { "default_value": "G92 Z0\nG1 Z10 F400\nM18\nM109 S0 T0\nM104 S0 T0\nM73 P100 (end build progress)\nG162 X Y F3000\nM18" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ - [ -75, 35 ], - [ -75, -18 ], - [ 18, -18 ], - [ 18, 35 ] + [-75, 35], + [-75, -18], + [18, -18], + [18, 35] ] }, - "machine_max_feedrate_z": { - "default_value": 400 - }, - "machine_steps_per_mm_x": { - "default_value": 93 - }, - "machine_steps_per_mm_y": { - "default_value": 93 - }, - "machine_steps_per_mm_z": { - "default_value": 1600 - }, - "machine_steps_per_mm_e": { - "default_value": 92 - }, - "gantry_height": { - "value": "55" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "M136\nM73 P0\nM103\nG21\nG90\nM320\n;(**** begin homing ****)\nG162 X Y F4000\nG161 Z F3500\nG92 Z-5\nG1 Z0.0\nG161 Z F100\nM132 X Y Z A B\n;(**** end homing ****)\nG92 X147 Y66 Z5\nG1 X105 Y-60 Z10 F4000.0\nG130 X127 Y127 A127 B127\nG0 X105 Y-60\nG1 Z0.3 F300\nG92 E0\nG1 X100 E10 F300\nG92 E0\nG1 Z0.0 F300\nM320" - }, - "machine_end_gcode": { - "default_value": "G92 Z0\nG1 Z10 F400\nM18\nM109 S0 T0\nM104 S0 T0\nM73 P100 (end build progress)\nG162 X Y F3000\nM18" - } + "machine_height": { "default_value": 165 }, + "machine_max_feedrate_z": { "default_value": 400 }, + "machine_name": { "default_value": "Malyan M180" }, + "machine_start_gcode": { "default_value": "M136\nM73 P0\nM103\nG21\nG90\nM320\n;(**** begin homing ****)\nG162 X Y F4000\nG161 Z F3500\nG92 Z-5\nG1 Z0.0\nG161 Z F100\nM132 X Y Z A B\n;(**** end homing ****)\nG92 X147 Y66 Z5\nG1 X105 Y-60 Z10 F4000.0\nG130 X127 Y127 A127 B127\nG0 X105 Y-60\nG1 Z0.3 F300\nG92 E0\nG1 X100 E10 F300\nG92 E0\nG1 Z0.0 F300\nM320" }, + "machine_steps_per_mm_e": { "default_value": 92 }, + "machine_steps_per_mm_x": { "default_value": 93 }, + "machine_steps_per_mm_y": { "default_value": 93 }, + "machine_steps_per_mm_z": { "default_value": 1600 }, + "machine_width": { "default_value": 230 } } -} +} \ No newline at end of file diff --git a/resources/definitions/malyan_m200.def.json b/resources/definitions/malyan_m200.def.json index c8eb4eb654..6a78e773a3 100644 --- a/resources/definitions/malyan_m200.def.json +++ b/resources/definitions/malyan_m200.def.json @@ -2,85 +2,79 @@ "version": 2, "name": "Malyan M200", "inherits": "fdmprinter", - "metadata": { + "metadata": + { + "visible": true, "author": "Brian Corbino, Tyler Gibson", "manufacturer": "Malyan", "file_formats": "text/x-gcode", "platform": "malyan_m200_platform.3mf", - "platform_offset": [0, -0.25, 0], + "first_start_actions": [ "MachineSettingsAction" ], "has_machine_quality": true, "has_materials": true, + "machine_extruder_trains": { "0": "malyan_m200_extruder_0" }, + "platform_offset": [ + 0, + -0.25, + 0 + ], "preferred_quality_type": "normal", - "supports_usb_connection": true, - "visible": true, - "first_start_actions": ["MachineSettingsAction"], - "supported_actions": ["MachineSettingsAction"], - "machine_extruder_trains": - { - "0": "malyan_m200_extruder_0" - } - }, - - "overrides": { - "machine_name": { "default_value": "Malyan M200" }, - "speed_print": { "default_value": 50 }, - "speed_wall_0": { "value": "round(speed_print * 0.75, 2)" }, - "speed_wall_x": { "value": "speed_print" }, - "speed_support": { "value": "speed_wall_0" }, - "speed_layer_0": { "value": "round(speed_print / 2.0, 2)" }, - "speed_infill": { "value": "speed_print" }, - "speed_topbottom": {"value": "speed_print / 2"}, - + "supported_actions": [ "MachineSettingsAction" ], + "supports_usb_connection": true + }, + "overrides": + { + "adhesion_type": { "default_value": "raft" }, + "brim_width": { "default_value": 5 }, + "coasting_enable": { "default_value": true }, "layer_height": { - "minimum_value_warning": "0.04375", + "default_value": 0.13125, "maximum_value_warning": "machine_nozzle_size * 0.48125 + 0.0875", - "default_value": 0.13125 + "minimum_value_warning": "0.04375" }, "line_width": { "value": "round(machine_nozzle_size * 0.875, 2)" }, - - "material_print_temperature": { "minimum_value": "0" }, - "material_print_temperature_layer_0": { "value": "min(material_print_temperature + 5, 245)" }, - "material_bed_temperature": { "minimum_value": "0" }, - "material_bed_temperature_layer_0": { "value": "min(material_bed_temperature + 5, 70)" }, - "material_standby_temperature": { "minimum_value": "0" }, - "machine_show_variants": { "default_value": true }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode" : { - "default_value": "G21;(metric values)\nG90;(absolute positioning)\nM82;(set extruder to absolute mode)\nM107;(start with the fan off)\nG28;(Home the printer)\nG92 E0;(Reset the extruder to 0)\nG0 Z5 E5 F500;(Move up and prime the nozzle)\nG0 X-1 Z0;(Move outside the printable area)\nG1 Y60 E8 F500;(Draw a priming/wiping line to the rear)\nG1 X-1;(Move a little closer to the print area)\nG1 Y10 E16 F500;(draw more priming/wiping)\nG1 E15 F250;(Small retract)\nG92 E0;(Zero the extruder)" - }, - "machine_end_gcode" : { - "default_value": "G0 X0 Y120;(Stick out the part)\nM190 S0;(Turn off heat bed, don't wait.)\nG92 E10;(Set extruder to 10)\nG1 E7 F200;(retract 3mm)\nM104 S0;(Turn off nozzle, don't wait)\nG4 S300;(Delay 5 minutes)\nM107;(Turn off part fan)\nM84;(Turn off stepper motors.)" - }, - "machine_width": { "default_value": 120 }, - "machine_depth": { "default_value": 120 }, - "machine_height": { "default_value": 120 }, - "machine_heated_bed": { "default_value": true }, "machine_center_is_zero": { "default_value": false }, - "machine_max_feedrate_x": { "default_value": 150 }, - "machine_max_feedrate_y": { "default_value": 150 }, - "machine_max_feedrate_z": { "default_value": 1.5 }, - "machine_max_feedrate_e": { "default_value": 100 }, + "machine_depth": { "default_value": 120 }, + "machine_end_gcode": { "default_value": "G0 X0 Y120;(Stick out the part)\nM190 S0;(Turn off heat bed, don't wait.)\nG92 E10;(Set extruder to 10)\nG1 E7 F200;(retract 3mm)\nM104 S0;(Turn off nozzle, don't wait)\nG4 S300;(Delay 5 minutes)\nM107;(Turn off part fan)\nM84;(Turn off stepper motors.)" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 120 }, + "machine_max_acceleration_e": { "default_value": 10000 }, "machine_max_acceleration_x": { "default_value": 800 }, "machine_max_acceleration_y": { "default_value": 800 }, "machine_max_acceleration_z": { "default_value": 20 }, - "machine_max_acceleration_e": { "default_value": 10000 }, + "machine_max_feedrate_e": { "default_value": 100 }, + "machine_max_feedrate_x": { "default_value": 150 }, + "machine_max_feedrate_y": { "default_value": 150 }, + "machine_max_feedrate_z": { "default_value": 1.5 }, + "machine_max_jerk_e": { "default_value": 5 }, "machine_max_jerk_xy": { "default_value": 20 }, "machine_max_jerk_z": { "default_value": 0.4 }, - "machine_max_jerk_e": { "default_value": 5}, - "adhesion_type": { "default_value": "raft" }, - "raft_margin": { "default_value": 5 }, + "machine_name": { "default_value": "Malyan M200" }, + "machine_show_variants": { "default_value": true }, + "machine_start_gcode": { "default_value": "G21;(metric values)\nG90;(absolute positioning)\nM82;(set extruder to absolute mode)\nM107;(start with the fan off)\nG28;(Home the printer)\nG92 E0;(Reset the extruder to 0)\nG0 Z5 E5 F500;(Move up and prime the nozzle)\nG0 X-1 Z0;(Move outside the printable area)\nG1 Y60 E8 F500;(Draw a priming/wiping line to the rear)\nG1 X-1;(Move a little closer to the print area)\nG1 Y10 E16 F500;(draw more priming/wiping)\nG1 E15 F250;(Small retract)\nG92 E0;(Zero the extruder)" }, + "machine_width": { "default_value": 120 }, + "material_bed_temperature": { "minimum_value": "0" }, + "material_bed_temperature_layer_0": { "value": "min(material_bed_temperature + 5, 70)" }, + "material_print_temperature": { "minimum_value": "0" }, + "material_print_temperature_layer_0": { "value": "min(material_print_temperature + 5, 245)" }, + "material_standby_temperature": { "minimum_value": "0" }, "raft_airgap": { "default_value": 0.2625 }, "raft_base_thickness": { "value": "0.30625" }, "raft_interface_thickness": { "value": "0.21875" }, + "raft_margin": { "default_value": 5 }, "raft_surface_layers": { "default_value": 1 }, - "skirt_line_count": { "default_value": 2}, - "brim_width" : { "default_value": 5}, + "retraction_amount": { "default_value": 4.5 }, "retraction_combing": { "value": "'noskin'" }, - "retraction_amount" : { "default_value": 4.5}, - "retraction_speed" : { "default_value": 40}, - "coasting_enable": { "default_value": true }, - "prime_tower_enable": { "default_value": false}, - "speed_z_hop": {"default_value": 1.5} + "retraction_speed": { "default_value": 40 }, + "skirt_line_count": { "default_value": 2 }, + "speed_layer_0": { "value": "round(speed_print / 2.0, 2)" }, + "speed_print": { "default_value": 50 }, + "speed_support": { "value": "speed_wall_0" }, + "speed_topbottom": { "value": "speed_print / 2" }, + "speed_wall_0": { "value": "round(speed_print * 0.75, 2)" }, + "speed_wall_x": { "value": "speed_print" }, + "speed_z_hop": { "default_value": 1.5 } } -} +} \ No newline at end of file diff --git a/resources/definitions/mankati_fullscale_xt_plus.def.json b/resources/definitions/mankati_fullscale_xt_plus.def.json index b477adc7af..40121f6892 100644 --- a/resources/definitions/mankati_fullscale_xt_plus.def.json +++ b/resources/definitions/mankati_fullscale_xt_plus.def.json @@ -2,56 +2,47 @@ "version": 2, "name": "Mankati Fullscale XT Plus", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "RBC", "manufacturer": "Mankati", "file_formats": "text/x-gcode", "platform": "mankati_fullscale_xt_plus_platform.3mf", - "machine_extruder_trains": - { - "0": "mankati_fullscale_xt_plus_extruder_0" - } + "machine_extruder_trains": { "0": "mankati_fullscale_xt_plus_extruder_0" } }, - "overrides": { - "machine_name": { "default_value": "Mankati Fullscale XT Plus" }, - "machine_width": { "default_value": 260 }, + "overrides": + { + "cool_fan_enabled": { "default_value": false }, + "gantry_height": { "value": "0" }, + "layer_height": { "default_value": 0.2 }, "machine_depth": { "default_value": 260 }, - "machine_height": { "default_value": 300 }, - "machine_heated_bed": { "default_value": true }, - - "machine_head_with_fans_polygon": { + "machine_end_gcode": { "default_value": "M104 T0 S0 ; turn off extruder 1 heating\nM140 S0 ; turn off bed heating\nG91 ; relative positioning\nG1 F12000 E-0.5 ; retract 0.5 mm\nG1 F12000 Z30 ; move Z-axes 30 mm down\nG28 X0 Y0 ; home X axis and Y axes\nM84 ; disable motors\nM117 Ready!\n" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ - [ -3, 3 ], - [ -3, -3 ], - [ 3, -3 ], - [ 3, 3 ] + [-3, 3], + [-3, -3], + [3, -3], + [3, 3] ] }, - "gantry_height": { "value": "0" }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - - "machine_start_gcode": { - "default_value": "M117 Initializing...\nG28 ; home all axes\nG90 ; use absolute coordinates\nG1 F12000 X0 Y0 Z30 ; lift nozzle 30 mm\nT0 ; select extruder 1\nG92 E0 ; reset extruder length\nG1 F100 Z30 E7 ; extrude 7mm while going up\nG92 E0 ; zero the extruder length\nM117 Printing...\n" - }, - "machine_end_gcode": { - "default_value": "M104 T0 S0 ; turn off extruder 1 heating\nM140 S0 ; turn off bed heating\nG91 ; relative positioning\nG1 F12000 E-0.5 ; retract 0.5 mm\nG1 F12000 Z30 ; move Z-axes 30 mm down\nG28 X0 Y0 ; home X axis and Y axes\nM84 ; disable motors\nM117 Ready!\n" - }, - - "layer_height": { "default_value": 0.2 }, - "wall_thickness": { "value": "0.8" }, - "top_bottom_thickness": { "default_value": 0.3 }, - "retraction_enable": { "default_value": true }, - "retraction_speed": { "default_value": 50 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "Mankati Fullscale XT Plus" }, + "machine_start_gcode": { "default_value": "M117 Initializing...\nG28 ; home all axes\nG90 ; use absolute coordinates\nG1 F12000 X0 Y0 Z30 ; lift nozzle 30 mm\nT0 ; select extruder 1\nG92 E0 ; reset extruder length\nG1 F100 Z30 E7 ; extrude 7mm while going up\nG92 E0 ; zero the extruder length\nM117 Printing...\n" }, + "machine_width": { "default_value": 260 }, "retraction_amount": { "default_value": 0.8 }, + "retraction_enable": { "default_value": true }, "retraction_hop": { "default_value": 0.075 }, - "speed_print": { "default_value": 60 }, - "speed_layer_0": { - "minimum_value": "0.1" - }, - "cool_fan_enabled": { "default_value": false }, - "skirt_line_count": { "default_value": 3 }, + "retraction_speed": { "default_value": 50 }, + "skirt_brim_minimal_length": { "default_value": 200 }, "skirt_gap": { "default_value": 4 }, - "skirt_brim_minimal_length": { "default_value": 200 } + "skirt_line_count": { "default_value": 3 }, + "speed_layer_0": { "minimum_value": "0.1" }, + "speed_print": { "default_value": 60 }, + "top_bottom_thickness": { "default_value": 0.3 }, + "wall_thickness": { "value": "0.8" } } -} +} \ No newline at end of file diff --git a/resources/definitions/mbot3d_grid2plus.def.json b/resources/definitions/mbot3d_grid2plus.def.json index 7a8677a0c2..7709ec6673 100644 --- a/resources/definitions/mbot3d_grid2plus.def.json +++ b/resources/definitions/mbot3d_grid2plus.def.json @@ -1,57 +1,59 @@ { - "name": "MBot3D Grid 2+", "version": 2, + "name": "MBot3D Grid 2+", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Magicfirm", "manufacturer": "Magicfirm", "file_formats": "application/x3g", - "machine_x3g_variant": "r1", - "machine_extruder_trains": - { - "0": "mbot3d_grid2_extruder_0" - } + "machine_extruder_trains": { "0": "mbot3d_grid2_extruder_0" }, + "machine_x3g_variant": "r1" }, - - "overrides": { - "machine_name": { "default_value": "MBot3D Grid 2+" }, - "machine_start_gcode": { - "default_value": "M136\nG162 X Y F2000\nG161 Z F900\nG92 X0 Y0 Z-5 A0 B0\nG1 Z0.0 F900\nG161 Z F100\nM132 X Y Z A B\nG1 X125 Y115 Z10 F450\nG1 X0 Y115 Z10 F2000.0\nM133 T0\nG1 X20 Y115 Z0.5 F800\nG1 X0 Y115 Z0.5 F600 A12\nG92 A0\n" - }, - "machine_end_gcode": { - "default_value": "M18 A B(Turn off A and B steppers)\nG1 Z190 F900\nG162 X Y F2000\nM18 X Y Z(Turn off steppers after a build)\nM104 S0 T0\nM72 P1 ( Play Ta-Da song )\nM73 P100 (end build progress )\nM137 (build end)\n" - }, - "machine_width": { "default_value": 235 }, - "machine_depth": { "default_value": 210 }, - "machine_height": { "default_value": 190 }, - "machine_heated_bed": { "default_value": true }, - "machine_center_is_zero": { "default_value": true }, - "machine_gcode_flavor": { "default_value": "Makerbot" }, - "machine_head_with_fans_polygon": { "default_value": [ [ -37, 50 ], [ 25, 50 ], [ 25, -40 ], [ -37, -40 ] ] }, + "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": "M18 A B(Turn off A and B steppers)\nG1 Z190 F900\nG162 X Y F2000\nM18 X Y Z(Turn off steppers after a build)\nM104 S0 T0\nM72 P1 ( Play Ta-Da song )\nM73 P100 (end build progress )\nM137 (build end)\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": 190 }, + "machine_name": { "default_value": "MBot3D Grid 2+" }, + "machine_start_gcode": { "default_value": "M136\nG162 X Y F2000\nG161 Z F900\nG92 X0 Y0 Z-5 A0 B0\nG1 Z0.0 F900\nG161 Z F100\nM132 X Y Z A B\nG1 X125 Y115 Z10 F450\nG1 X0 Y115 Z10 F2000.0\nM133 T0\nG1 X20 Y115 Z0.5 F800\nG1 X0 Y115 Z0.5 F600 A12\nG92 A0\n" }, + "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_steps_per_mm_e": { "default_value": 96.27520187033366 }, + "machine_width": { "default_value": 235 }, + "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 }, - "speed_travel": { "value": 80 }, - "speed_layer_0": { "value": 15 }, + "support_interface_density": { "default_value": 80 }, "support_interface_enable": { "default_value": true }, "support_interface_height": { "default_value": 0.8 }, - "support_interface_density": { "default_value": 80 }, "support_interface_pattern": { "default_value": "grid" }, - "infill_overlap": { "value": "12 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0" }, - "retract_at_layer_change": { "default_value": true }, - "travel_retract_before_outer_wall": { "default_value": true }, - "material_initial_print_temperature": { "value": "material_print_temperature" }, - "material_final_print_temperature": { "value": "material_print_temperature" }, "travel_avoid_other_parts": { "default_value": false }, - "raft_airgap": { "default_value": 0.15 }, - "raft_margin": { "default_value": 6 } + "travel_retract_before_outer_wall": { "default_value": true } } -} +} \ No newline at end of file diff --git a/resources/definitions/mbot3d_grid2plus_dual.def.json b/resources/definitions/mbot3d_grid2plus_dual.def.json index 648699cf1b..7f02cdad49 100644 --- a/resources/definitions/mbot3d_grid2plus_dual.def.json +++ b/resources/definitions/mbot3d_grid2plus_dual.def.json @@ -1,58 +1,63 @@ { - "name": "MBot3D Grid 2+ Dual", "version": 2, + "name": "MBot3D Grid 2+ Dual", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Magicfirm", "manufacturer": "Magicfirm", "file_formats": "application/x3g", - "machine_x3g_variant": "z", "machine_extruder_trains": { "0": "mbot3d_grid2_extruder_left", "1": "mbot3d_grid2_extruder_right" - } + }, + "machine_x3g_variant": "z" }, - - "overrides": { - "machine_name": { "default_value": "MBot3D Grid 2+ Dual" }, - "machine_start_gcode": { - "default_value": "M136\nG162 X Y F2000\nG161 Z F900\nG92 X0 Y0 Z-5 A0 B0\nG1 Z0.0 F900\nG161 Z F100\nM132 X Y Z A B\nG1 X125 Y115 Z10 F450\nG1 X0 Y115 Z10 F2000.0\nM133 T0\nG1 X20 Y115 Z0.5 F800\nG1 X0 Y115 Z0.5 F600 A12\nG92 A0\n" - }, - "machine_end_gcode": { - "default_value": "M18 A B(Turn off A and B steppers)\nG1 Z190 F900\nG162 X Y F2000\nM18 X Y Z(Turn off steppers after a build)\nM104 S0 T0\nM72 P1 ( Play Ta-Da song )\nM73 P100 (end build progress )\nM137 (build end)\n" - }, - "machine_width": { "default_value": 235 }, - "machine_depth": { "default_value": 210 }, - "machine_height": { "default_value": 190 }, - "machine_extruder_count": { "default_value": 2 }, - "machine_center_is_zero": { "default_value": true }, - "machine_gcode_flavor": { "default_value": "Makerbot" }, - "machine_head_with_fans_polygon": { "default_value": [ [ -37, 50 ], [ 25, 50 ], [ 25, -40 ], [ -37, -40 ] ] }, + "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": "M18 A B(Turn off A and B steppers)\nG1 Z190 F900\nG162 X Y F2000\nM18 X Y Z(Turn off steppers after a build)\nM104 S0 T0\nM72 P1 ( Play Ta-Da song )\nM73 P100 (end build progress )\nM137 (build end)\n" }, + "machine_extruder_count": { "default_value": 2 }, + "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": 190 }, + "machine_name": { "default_value": "MBot3D Grid 2+ Dual" }, + "machine_start_gcode": { "default_value": "M136\nG162 X Y F2000\nG161 Z F900\nG92 X0 Y0 Z-5 A0 B0\nG1 Z0.0 F900\nG161 Z F100\nM132 X Y Z A B\nG1 X125 Y115 Z10 F450\nG1 X0 Y115 Z10 F2000.0\nM133 T0\nG1 X20 Y115 Z0.5 F800\nG1 X0 Y115 Z0.5 F600 A12\nG92 A0\n" }, + "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_steps_per_mm_e": { "default_value": 96.27520187033366 }, + "machine_width": { "default_value": 235 }, + "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 }, - "speed_travel": { "value": 80 }, - "speed_layer_0": { "value": 15 }, + "support_interface_density": { "default_value": 80 }, "support_interface_enable": { "default_value": true }, "support_interface_height": { "default_value": 0.8 }, - "support_interface_density": { "default_value": 80 }, "support_interface_pattern": { "default_value": "grid" }, - "infill_overlap": { "value": "12 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0" }, - "retract_at_layer_change": { "default_value": true }, - "travel_retract_before_outer_wall": { "default_value": true }, - "material_initial_print_temperature": { "value": "material_print_temperature" }, - "material_final_print_temperature": { "value": "material_print_temperature" }, "travel_avoid_other_parts": { "default_value": false }, - "raft_airgap": { "default_value": 0.15 }, - "raft_margin": { "default_value": 6 } + "travel_retract_before_outer_wall": { "default_value": true } } -} +} \ No newline at end of file diff --git a/resources/definitions/mbot3d_grid4.def.json b/resources/definitions/mbot3d_grid4.def.json index fa2deda027..841600e1f1 100644 --- a/resources/definitions/mbot3d_grid4.def.json +++ b/resources/definitions/mbot3d_grid4.def.json @@ -1,56 +1,33 @@ -{ - "version": 2, - "name": "MBot3D Grid 4", - "inherits": "fdmprinter", - "metadata": { - "author": "Magicfirm", - "manufacturer": "Magicfirm", - "visible": true, - "file_formats": "text/x-gcode", - "platform_offset": [ - 0, - 0, - 0 - ], - "has_materials": true, - "machine_extruder_trains": - { - "0": "mbot3d_grid4_extruder_0" - } - }, - "overrides": { - "machine_name": { - "default_value": "MBot3D Grid 4" - }, - "machine_width": { - "default_value": 235 - }, - "machine_depth": { - "default_value": 210 - }, - "machine_height": { - "default_value": 190 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "material_flow": { - "default_value": 100 - }, - "adhesion_type": { - "default_value": "skirt" - }, - "machine_start_gcode": { - "default_value": ";---------- START GCODE ----------\nG21 ; set units to millimeters\nG28 ; home all axes\nG29 ;Autolevel bed\nG1 Z10 F400\nG1 X145 Z10 F2400\nG92 E0\nG1 X145 Z0.5 F400\nG1 X120 Z0.5 E20 F360\nG92 E0.0\n;----------END START GCODE ----------\n" - }, - "machine_end_gcode": { - "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 Z190 F900\nG28 X Y ;home X Y axes\nM84 ; disable motors" - } - } +{ + "version": 2, + "name": "MBot3D Grid 4", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Magicfirm", + "manufacturer": "Magicfirm", + "file_formats": "text/x-gcode", + "has_materials": true, + "machine_extruder_trains": { "0": "mbot3d_grid4_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ] + }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 210 }, + "machine_end_gcode": { "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 Z190 F900\nG28 X Y ;home X Y axes\nM84 ; disable motors" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 190 }, + "machine_name": { "default_value": "MBot3D Grid 4" }, + "machine_start_gcode": { "default_value": ";---------- START GCODE ----------\nG21 ; set units to millimeters\nG28 ; home all axes\nG29 ;Autolevel bed\nG1 Z10 F400\nG1 X145 Z10 F2400\nG92 E0\nG1 X145 Z0.5 F400\nG1 X120 Z0.5 E20 F360\nG92 E0.0\n;----------END START GCODE ----------\n" }, + "machine_width": { "default_value": 235 }, + "material_flow": { "default_value": 100 } + } } \ No newline at end of file diff --git a/resources/definitions/mbot3d_grid4_dual.def.json b/resources/definitions/mbot3d_grid4_dual.def.json index 891f5dc51f..c10a8d0945 100644 --- a/resources/definitions/mbot3d_grid4_dual.def.json +++ b/resources/definitions/mbot3d_grid4_dual.def.json @@ -2,58 +2,37 @@ "version": 2, "name": "MBot3D Grid 4 Dual", "inherits": "fdmprinter", - "metadata": { + "metadata": + { + "visible": true, "author": "Magicfirm", "manufacturer": "Magicfirm", - "visible": true, "file_formats": "text/x-gcode", + "has_materials": true, + "machine_extruder_trains": + { + "0": "mbot3d_grid4_extruder_left", + "1": "mbot3d_grid4_extruder_right" + }, "platform_offset": [ 0, 0, 0 - ], - "has_materials": true, - "machine_extruder_trains": { - "0": "mbot3d_grid4_extruder_left", - "1": "mbot3d_grid4_extruder_right" - } + ] }, - "overrides": { - "machine_name": { - "default_value": "MBot3D Grid 4 Dual" - }, - "machine_width": { - "default_value": 210 - }, - "machine_depth": { - "default_value": 210 - }, - "machine_height": { - "default_value": 190 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_extruder_count": { - "default_value": 2 - }, - "material_flow": { - "default_value": 100 - }, - "adhesion_type": { - "default_value": "skirt" - }, - "machine_start_gcode": { - "default_value": ";---------- START GCODE ----------\nG21 ; set units to millimeters\nG28 ; home all axes\nG29 ;Autolevel bed\nG1 Z10 F400\nG1 X145 Z10 F2400\nG92 E0\nG1 X145 Z0.5 F400\nG1 X120 Z0.5 E20 F360\nG92 E0.0\n;----------END START GCODE ----------\n" - }, - "machine_end_gcode": { - "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 Z190 F900\nG28 X Y ;home X Y axes\nM84 ; disable motors" - } + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 210 }, + "machine_end_gcode": { "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 Z190 F900\nG28 X Y ;home X Y axes\nM84 ; disable motors" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 190 }, + "machine_name": { "default_value": "MBot3D Grid 4 Dual" }, + "machine_start_gcode": { "default_value": ";---------- START GCODE ----------\nG21 ; set units to millimeters\nG28 ; home all axes\nG29 ;Autolevel bed\nG1 Z10 F400\nG1 X145 Z10 F2400\nG92 E0\nG1 X145 Z0.5 F400\nG1 X120 Z0.5 E20 F360\nG92 E0.0\n;----------END START GCODE ----------\n" }, + "machine_width": { "default_value": 210 }, + "material_flow": { "default_value": 100 } } } \ No newline at end of file diff --git a/resources/definitions/mendel90.def.json b/resources/definitions/mendel90.def.json index 55c1251f98..57e1276e6a 100644 --- a/resources/definitions/mendel90.def.json +++ b/resources/definitions/mendel90.def.json @@ -1,6 +1,6 @@ { - "name": "Mendel90", "version": 2, + "name": "Mendel90", "inherits": "fdmprinter", "metadata": { @@ -9,74 +9,40 @@ "manufacturer": "Nophead", "file_formats": "text/x-gcode", "platform": "mendel90_platform.3mf", - "platform_offset": [0, -23.6, 0], - "machine_extruder_trains": - { - "0": "mendel90_extruder_0" - } + "machine_extruder_trains": { "0": "mendel90_extruder_0" }, + "platform_offset": [ + 0, + -23.6, + 0 + ] }, - - "pages": [ - "BedLeveling" - ], - - "overrides": { - "machine_name": { "default_value": "Mendel90" }, - "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_end_gcode": { - "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nM107 ;carriage fan off\nG91 ;relative positioning\nG1 Z10 ;Move up Z 10mm\nG90 ;back to absolute mode\nG1 E-1 F1200 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG92 E0 ;zero the extruded length\nG1 Z200 X-100 F9000 ; go to top\nG1 Y100 F5000 ;Move Y to back\nM42 P42 S255 ;Turn on Bed cooling fan on\nG4 S10 ;Wait 10 seconds\nM42 P42 S0 ;Turn off bed cooling fan\nM84 ;steppers off\n" - }, - "material_bed_temp_wait": { - "default_value": true - }, - "material_print_temp_prepend": { - "default_value": true - }, - "machine_width": { - "default_value": 200 - }, - "machine_height": { - "default_value": 200 - }, - "machine_depth": { - "default_value": 200 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_center_is_zero": { - "default_value": true - }, - "machine_extruder_count": { - "default_value": 1 - }, - "machine_nozzle_tip_outer_diameter": { - "default_value": 1 - }, - "machine_nozzle_head_distance": { - "default_value": 5 - }, - "machine_heat_zone_length": { - "default_value": 16 - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "gantry_height": { - "value": "55" - }, + "overrides": + { + "gantry_height": { "value": "55" }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nM107 ;carriage fan off\nG91 ;relative positioning\nG1 Z10 ;Move up Z 10mm\nG90 ;back to absolute mode\nG1 E-1 F1200 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG92 E0 ;zero the extruded length\nG1 Z200 X-100 F9000 ; go to top\nG1 Y100 F5000 ;Move Y to back\nM42 P42 S255 ;Turn on Bed cooling fan on\nG4 S10 ;Wait 10 seconds\nM42 P42 S0 ;Turn off bed cooling fan\nM84 ;steppers off\n" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { "default_value": [ - [ -12, 9 ], - [ -12, -9 ], - [ 14, 9 ], - [ 14, -9 ] + [-12, 9], + [-12, -9], + [14, 9], + [14, -9] ] - } - } -} - - + }, + "machine_heat_zone_length": { "default_value": 16 }, + "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 }, + "material_bed_temp_wait": { "default_value": true }, + "material_print_temp_prepend": { "default_value": true } + }, + "pages": [ "BedLeveling" ] +} \ No newline at end of file diff --git a/resources/definitions/mingda_1000pro.def.json b/resources/definitions/mingda_1000pro.def.json new file mode 100644 index 0000000000..bfcab9c9ca --- /dev/null +++ b/resources/definitions/mingda_1000pro.def.json @@ -0,0 +1,20 @@ +{ + "version": 2, + "name": "Mingda 1000Pro", + "inherits": "mingda_base", + "metadata": + { + "visible": true, + "quality_definition": "mingda_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, + "machine_depth": { "default_value": 1000 }, + "machine_end_gcode": { "default_value": " G91; relative positioning\n G1 Z1.0 F3000 ; move z up little to prevent scratching of print\n G90; absolute positioning\n G1 X0 Y0 F1000 ; prepare for part removal\n M104 S0; turn off extruder\n M140 S0 ; turn off bed\n M84 ; disable motors\n M106 S0 ; turn off fan" }, + "machine_height": { "default_value": 1000 }, + "machine_name": { "default_value": "Mingda 1000Pro" }, + "machine_start_gcode": { "default_value": " G28 ; home all axes\n M420 S1\n M117 ; Purge extruder\n G92 E0 ; reset extruder\n G1 Z1.0 F1200 ; move z up little to prevent scratching of surface\n G1 X4 Y20 Z0.3 F3000.0 ; move to start-line position\n G1 X4 Y380.0 Z0.3 F1500.0 E30 ; draw 1st line\n G1 X4 Y380.0 Z0.4 F3000.0 ; move to side a little\n G1 X4 Y20 Z0.4 F1500.0 E60 ; draw 2nd line\n G92 E0 ; reset extruder\n G1 Z1.0 F1500 ; move z up little to prevent scratching of surface" }, + "machine_width": { "default_value": 1000 } + } +} \ No newline at end of file diff --git a/resources/definitions/mingda_4h.def.json b/resources/definitions/mingda_4h.def.json new file mode 100644 index 0000000000..a9977fdf67 --- /dev/null +++ b/resources/definitions/mingda_4h.def.json @@ -0,0 +1,18 @@ +{ + "version": 2, + "name": "Mingda 4H", + "inherits": "mingda_base", + "metadata": + { + "visible": true, + "quality_definition": "mingda_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, + "machine_depth": { "default_value": 200 }, + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "Mingda 4H" }, + "machine_width": { "default_value": 300 } + } +} \ No newline at end of file diff --git a/resources/definitions/mingda_600pro.def.json b/resources/definitions/mingda_600pro.def.json new file mode 100644 index 0000000000..7909bcc872 --- /dev/null +++ b/resources/definitions/mingda_600pro.def.json @@ -0,0 +1,20 @@ +{ + "version": 2, + "name": "Mingda 600Pro", + "inherits": "mingda_base", + "metadata": + { + "visible": true, + "quality_definition": "mingda_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, + "machine_depth": { "default_value": 600 }, + "machine_end_gcode": { "default_value": " G91; relative positioning\n G1 Z1.0 F3000 ; move z up little to prevent scratching of print\n G90; absolute positioning\n G1 X0 Y0 F1000 ; prepare for part removal\n M104 S0; turn off extruder\n M140 S0 ; turn off bed\n M84 ; disable motors\n M106 S0 ; turn off fan" }, + "machine_height": { "default_value": 600 }, + "machine_name": { "default_value": "Mingda 600Pro" }, + "machine_start_gcode": { "default_value": " G28 ; home all axes\n M420 S1\n M117 ; Purge extruder\n G92 E0 ; reset extruder\n G1 Z1.0 F1200 ; move z up little to prevent scratching of surface\n G1 X4 Y20 Z0.3 F3000.0 ; move to start-line position\n G1 X4 Y380.0 Z0.3 F1500.0 E30 ; draw 1st line\n G1 X4 Y380.0 Z0.4 F3000.0 ; move to side a little\n G1 X4 Y20 Z0.4 F1500.0 E60 ; draw 2nd line\n G92 E0 ; reset extruder\n G1 Z1.0 F1500 ; move z up little to prevent scratching of surface" }, + "machine_width": { "default_value": 600 } + } +} \ No newline at end of file diff --git a/resources/definitions/mingda_6h.def.json b/resources/definitions/mingda_6h.def.json new file mode 100644 index 0000000000..63e39b7a5d --- /dev/null +++ b/resources/definitions/mingda_6h.def.json @@ -0,0 +1,18 @@ +{ + "version": 2, + "name": "Mingda 6H", + "inherits": "mingda_base", + "metadata": + { + "visible": true, + "quality_definition": "mingda_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, + "machine_depth": { "default_value": 300 }, + "machine_height": { "default_value": 500 }, + "machine_name": { "default_value": "Mingda 6H" }, + "machine_width": { "default_value": 400 } + } +} \ No newline at end of file diff --git a/resources/definitions/mingda_base.def.json b/resources/definitions/mingda_base.def.json index f59a26fc1a..c6a294002e 100644 --- a/resources/definitions/mingda_base.def.json +++ b/resources/definitions/mingda_base.def.json @@ -1,26 +1,13 @@ { - "name": "Mingda Base Printer", "version": 2, + "name": "Mingda Base Printer", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": false, "author": "Mingda", "manufacturer": "Mingda", "file_formats": "text/x-gcode", - "first_start_actions": ["MachineSettingsAction"], - - "machine_extruder_trains": { - "0": "mingda_base_extruder_0" - }, - - "has_materials": true, - "has_variants": true, - "has_machine_quality": true, - "variants_name": "Nozzle Size", - - "preferred_variant_name": "0.4mm Nozzle", - "preferred_quality_type": "standard", - "preferred_material": "generic_pla", "exclude_materials": [ "Vertex_Delta_ABS", "Vertex_Delta_PET", @@ -64,200 +51,130 @@ "tizyx_abs", "tizyx_pla", "tizyx_pla_bois", - "ultimaker_abs_black", - "ultimaker_abs_blue", - "ultimaker_abs_green", - "ultimaker_abs_grey", - "ultimaker_abs_orange", - "ultimaker_abs_pearl-gold", - "ultimaker_abs_red", - "ultimaker_abs_silver-metallic", - "ultimaker_abs_white", - "ultimaker_abs_yellow", - "ultimaker_bam", - "ultimaker_cpe_black", - "ultimaker_cpe_blue", - "ultimaker_cpe_dark-grey", - "ultimaker_cpe_green", - "ultimaker_cpe_light-grey", - "ultimaker_cpe_plus_black", - "ultimaker_cpe_plus_transparent", - "ultimaker_cpe_plus_white", - "ultimaker_cpe_red", - "ultimaker_cpe_transparent", - "ultimaker_cpe_white", - "ultimaker_cpe_yellow", - "ultimaker_nylon_black", - "ultimaker_nylon_transparent", - "ultimaker_pc_black", - "ultimaker_pc_transparent", - "ultimaker_pc_white", - "ultimaker_pla_black", - "ultimaker_pla_blue", - "ultimaker_pla_green", - "ultimaker_pla_magenta", - "ultimaker_pla_orange", - "ultimaker_pla_pearl-white", - "ultimaker_pla_red", - "ultimaker_pla_silver-metallic", - "ultimaker_pla_transparent", - "ultimaker_pla_white", - "ultimaker_pla_yellow", - "ultimaker_pp_transparent", - "ultimaker_pva", - "ultimaker_tough_pla_black", - "ultimaker_tough_pla_green", - "ultimaker_tough_pla_red", - "ultimaker_tough_pla_white", - "ultimaker_tpu_black", - "ultimaker_tpu_blue", - "ultimaker_tpu_red", - "ultimaker_tpu_white", "verbatim_bvoh_175", "zyyx_pro_flex", "zyyx_pro_pla" - ] + ], + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "mingda_base_extruder_0" }, + "preferred_material": "generic_pla", + "preferred_quality_type": "standard", + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Size" }, - "overrides": { - "machine_name": { "default_value": "MINGDA Base Printer" }, - - "machine_start_gcode": { "default_value": " G28 ; home all axes\n M117 ; Purge extruder\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface\n G1 X2 Y20 Z0.3 F5000.0 ; move to start-line position\n G1 X2 Y200.0 Z0.3 F1500.0 E15 ; draw 1st line\n G1 X2 Y200.0 Z0.4 F5000.0 ; move to side a little\n G1 X2 Y20 Z0.4 F1500.0 E30 ; draw 2nd line\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface"}, - - "machine_end_gcode": { "default_value": " G91; relative positioning\n G1 Z1.0 F3000 ; move z up little to prevent scratching of print\n G90; absolute positioning\n G1 X0 Y0 F1000 ; prepare for part removal\n M104 S0; turn off extruder\n M140 S0 ; turn off bed\n M84 ; disable motors\n M106 S0 ; turn off fan" }, - - "machine_max_feedrate_x": { "value": 500 }, - "machine_max_feedrate_y": { "value": 500 }, - "machine_max_feedrate_z": { "value": 10 }, - "machine_max_feedrate_e": { "value": 50 }, - - "machine_max_acceleration_x": { "value": 500 }, - "machine_max_acceleration_y": { "value": 500 }, - "machine_max_acceleration_z": { "value": 100 }, - "machine_max_acceleration_e": { "value": 5000 }, - "machine_acceleration": { "value": 500 }, - - "machine_max_jerk_xy": { "value": 10 }, - "machine_max_jerk_z": { "value": 0.4 }, - "machine_max_jerk_e": { "value": 5 }, - - "machine_heated_bed": { "default_value": true }, - - "material_diameter": { "default_value": 1.75 }, - + "overrides": + { + "acceleration_enabled": { "value": false }, "acceleration_print": { "value": 500 }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, "acceleration_travel": { "value": 500 }, "acceleration_travel_layer_0": { "value": "acceleration_travel" }, - "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, - + "adaptive_layer_height_variation": { "value": 0.04 }, + "adaptive_layer_height_variation_step": { "value": 0.04 }, + "adhesion_type": { "value": "'none' if support_enable else 'raft'" }, + "brim_replaces_support": { "value": false }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "value": 10 }, + "fill_outline_gaps": { "value": false }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 30.0 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'grid'" }, + "infill_sparse_density": { "value": "15" }, + "infill_wipe_dist": { "value": 0.0 }, + "jerk_enabled": { "value": false }, "jerk_print": { "value": 8 }, "jerk_travel": { "value": "jerk_print" }, "jerk_travel_layer_0": { "value": "jerk_travel" }, - - "acceleration_enabled": { "value": false }, - "jerk_enabled": { "value": false }, - - "speed_print": { "value": 60.0 } , - "speed_infill": { "value": "speed_print" }, - "speed_wall": { "value": "speed_print / 2" }, - "speed_wall_0": { "value": "speed_wall" }, - "speed_wall_x": { "value": "speed_wall" }, - "speed_topbottom": { "value": "speed_print / 2" }, - "speed_roofing": { "value": "speed_topbottom" }, - "speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" }, - "speed_layer_0": { "value": 20.0 }, - "speed_print_layer_0": { "value": "speed_layer_0" }, - "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, - "speed_prime_tower": { "value": "speed_topbottom" }, - "speed_support": { "value": "speed_wall_0" }, - "speed_support_interface": { "value": "speed_topbottom" }, - "speed_z_hop": { "value": 5 }, - - "skirt_brim_speed": { "value": "speed_layer_0" }, - - "line_width": { "value": "machine_nozzle_size * 1.1" }, - - "optimize_wall_printing_order": { "value": true }, - - "material_initial_print_temperature": { "value": "material_print_temperature" }, + "line_width": { "value": "machine_nozzle_size * 1" }, + "machine_acceleration": { "value": 500 }, + "machine_end_gcode": { "default_value": " G91; relative positioning\n G1 Z1.0 F3000 ; move z up little to prevent scratching of print\n G90; absolute positioning\n G1 X0 Y0 F1000 ; prepare for part removal\n M104 S0; turn off extruder\n M140 S0 ; turn off bed\n M84 ; disable motors\n M106 S0 ; turn off fan" }, + "machine_heated_bed": { "default_value": true }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_feedrate_e": { "value": 50 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_name": { "default_value": "MINGDA Base Printer" }, + "machine_start_gcode": { "default_value": " G28 ; home all axes\n M117 ; Purge extruder\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface\n G1 X2 Y20 Z0.3 F5000.0 ; move to start-line position\n G1 X2 Y200.0 Z0.3 F1500.0 E15 ; draw 1st line\n G1 X2 Y200.0 Z0.4 F5000.0 ; move to side a little\n G1 X2 Y20 Z0.4 F1500.0 E30 ; draw 2nd line\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface" }, + "material_diameter": { "default_value": 1.75 }, "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_flow": { "value": 100 }, - - "z_seam_type": { "value": "'back'" }, - "z_seam_corner": { "value": "'z_seam_corner_none'" }, - - "infill_sparse_density": { "value": "15" }, - "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, - "infill_before_walls": { "value": false }, - "infill_overlap": { "value": 30.0 }, - "skin_overlap": { "value": 10.0 }, - "infill_wipe_dist": { "value": 0.0 }, - "wall_0_wipe_dist": { "value": 0.0 }, - - "fill_outline_gaps": { "value": false }, - - "retraction_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 - }, - "retraction_retract_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 - }, - "retraction_prime_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": 200 - }, - - "retraction_hop_enabled": { "value": true }, - "retraction_hop": { "value": "layer_height*2" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "meshfix_maximum_resolution": { "value": "0.05" }, + "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "optimize_wall_printing_order": { "value": true }, + "retraction_amount": { "value": 2 }, "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'infill'" }, "retraction_combing_max_distance": { "value": 30 }, + "retraction_count_max": { "value": 100 }, + "retraction_enable": { "value": true }, + "retraction_extrusion_window": { "value": 3 }, + "retraction_hop": { "value": "layer_height*2" }, + "retraction_hop_enabled": { "value": true }, + "retraction_min_travel": { "value": 1.5 }, + "retraction_prime_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "retraction_retract_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "retraction_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" + }, + "skin_overlap": { "value": 10.0 }, + "skirt_brim_speed": { "value": "speed_layer_0" }, + "skirt_gap": { "value": 10.0 }, + "skirt_line_count": { "value": 4 }, + "speed_layer_0": { "value": 20.0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": 60.0 }, + "speed_print_layer_0": { "value": "speed_layer_0" }, + "speed_roofing": { "value": "speed_topbottom" }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_travel": { "value": "80.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 1.5" }, + "speed_travel_layer_0": { "value": "60 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 1.5" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width / 2.0 / layer_height)))" }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 4 }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_interface_skip_height": { "value": 0.2 }, + "support_pattern": { "value": "'zigzag'" }, + "support_wall_count": { "value": 1 }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, "travel_avoid_other_parts": { "value": true }, "travel_avoid_supports": { "value": true }, "travel_retract_before_outer_wall": { "value": true }, - - "retraction_amount": { "value": 2 }, - "retraction_enable": { "value": true }, - "retraction_count_max": { "value": 100 }, - "retraction_extrusion_window": { "value": 10 }, - "retraction_min_travel": { "value": 1.5 }, - - "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, - "cool_fan_enabled": { "value": true }, - "cool_min_layer_time": { "value": 10 }, - - "adhesion_type": { "value": "'none' if support_enable else 'skirt'" }, - "brim_replaces_support": { "value": false }, - "skirt_gap": { "value": 10.0 }, - "skirt_line_count": { "value": 4 }, - - "adaptive_layer_height_variation": { "value": 0.04 }, - "adaptive_layer_height_variation_step": { "value": 0.04 }, - - "meshfix_maximum_resolution": { "value": "0.05" }, - "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, - - "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width / 2.0 / layer_height)))" }, - "support_pattern": { "value": "'zigzag'" }, - "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, - "support_use_towers": { "value": false }, - "support_xy_distance": { "value": "wall_line_width_0 * 2" }, - "support_xy_distance_overhang": { "value": "wall_line_width_0" }, - "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" }, - "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, - "support_wall_count": { "value": 1 }, - "support_brim_enable": { "value": true }, - "support_brim_width": { "value": 4 }, - - "support_interface_enable": { "value": true }, - "support_interface_height": { "value": "layer_height * 4" }, - "support_interface_density": { "value": 33.333 }, - "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, - "minimum_support_area": { "value": 2 }, - "minimum_interface_area": { "value": 10 }, - "top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" }, - "wall_thickness": {"value": "line_width * 2" } - + "wall_0_material_flow": { "value": "0.95 * material_flow" }, + "wall_0_wipe_dist": { "value": 0.0 }, + "wall_thickness": { "value": "line_width * 2" }, + "z_seam_corner": { "value": "'z_seam_corner_none'" }, + "z_seam_type": { "value": "'back'" } } -} +} \ No newline at end of file diff --git a/resources/definitions/mingda_d2.def.json b/resources/definitions/mingda_d2.def.json index d6278705ad..54e969ab74 100644 --- a/resources/definitions/mingda_d2.def.json +++ b/resources/definitions/mingda_d2.def.json @@ -1,19 +1,24 @@ { - "name": "Mingda D2", "version": 2, + "name": "Mingda D2", "inherits": "mingda_base", - "overrides": { - "machine_name": { "default_value": "MINGDA D2" }, - "machine_width": { "default_value": 230 }, - "machine_depth": { "default_value": 230 }, - "machine_height": { "default_value": 260 }, - "gantry_height": { "value": 25 } - - }, - "metadata": { - "quality_definition": "mingda_base", + "metadata": + { "visible": true, "platform": "mingda_d2_base.stl", - "platform_offset": [ -205, -77, 65] + "platform_offset": [ + -205, + -77, + 65 + ], + "quality_definition": "mingda_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, + "machine_depth": { "default_value": 230 }, + "machine_height": { "default_value": 260 }, + "machine_name": { "default_value": "MINGDA D2" }, + "machine_width": { "default_value": 230 } } -} +} \ No newline at end of file diff --git a/resources/definitions/mingda_d3pro.def.json b/resources/definitions/mingda_d3pro.def.json index 682cd88d88..89475e6f42 100644 --- a/resources/definitions/mingda_d3pro.def.json +++ b/resources/definitions/mingda_d3pro.def.json @@ -1,21 +1,24 @@ { - "name": "Mingda D3/Pro", "version": 2, + "name": "Mingda D3/Pro", "inherits": "mingda_base", - "overrides": { - "machine_name": { "default_value": "MINGDA D3/Pro" }, - "machine_width": { "default_value": 320 }, + "metadata": + { + "visible": true, + "platform": "mingda_rock3_base.stl", + "platform_offset": [ + -179, + -108, + 150 + ], + "quality_definition": "mingda_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, "machine_depth": { "default_value": 320 }, "machine_height": { "default_value": 400 }, - "gantry_height": { "value": 25 } - - - - }, - "metadata": { - "quality_definition": "mingda_base", - "visible": true, - "platform": "mingda_rock3_base.stl", - "platform_offset": [ -179, -108, 150] + "machine_name": { "default_value": "MINGDA D3/Pro" }, + "machine_width": { "default_value": 320 } } -} +} \ No newline at end of file diff --git a/resources/definitions/mingda_d4pro.def.json b/resources/definitions/mingda_d4pro.def.json index 00d316c925..478dac45f7 100644 --- a/resources/definitions/mingda_d4pro.def.json +++ b/resources/definitions/mingda_d4pro.def.json @@ -1,20 +1,25 @@ { - "name": "Mingda D4 Pro", "version": 2, + "name": "Mingda D4 Pro", "inherits": "mingda_base", - "overrides": { - "machine_name": { "default_value": "MINGDA D4 Pro" }, - "machine_start_gcode": { "default_value": "G28 ; home all axes\n G29; ABL\n M117 Purge extruder\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface\n G1 X2 Y20 Z0.3 F5000.0 ; move to start-line position\n G1 X2 Y200.0 Z0.3 F1500.0 E15 ; draw 1st line\n G1 X2 Y200.0 Z0.4 F5000.0 ; move to side a little\n G1 X2 Y20 Z0.4 F1500.0 E30 ; draw 2nd line\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface"}, - "machine_width": { "default_value": 420 }, - "machine_depth": { "default_value": 420 }, - "machine_height": { "default_value": 400 }, - "gantry_height": { "value": 25 } - - }, - "metadata": { - "quality_definition": "mingda_base", + "metadata": + { "visible": true, "platform": "mingda_d4pro_base.stl", - "platform_offset": [ -177, -140, 170] + "platform_offset": [ + -177, + -140, + 170 + ], + "quality_definition": "mingda_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, + "machine_depth": { "default_value": 420 }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "MINGDA D4 Pro" }, + "machine_start_gcode": { "default_value": "G28 ; home all axes\n G29; ABL\n M117 Purge extruder\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface\n G1 X2 Y20 Z0.3 F5000.0 ; move to start-line position\n G1 X2 Y200.0 Z0.3 F1500.0 E15 ; draw 1st line\n G1 X2 Y200.0 Z0.4 F5000.0 ; move to side a little\n G1 X2 Y20 Z0.4 F1500.0 E30 ; draw 2nd line\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface" }, + "machine_width": { "default_value": 420 } } } \ No newline at end of file diff --git a/resources/definitions/mingda_magician_max.def.json b/resources/definitions/mingda_magician_max.def.json index 444457ab4e..18323b0a29 100644 --- a/resources/definitions/mingda_magician_max.def.json +++ b/resources/definitions/mingda_magician_max.def.json @@ -1,19 +1,26 @@ { - "name": "Mingda Magician Max", "version": 2, + "name": "Mingda Magician Max", "inherits": "mingda_base", - "overrides": { - "machine_name": { "default_value": "Mingda Magician Max" }, - "machine_width": { "default_value": 320 }, - "machine_depth": { "default_value": 320 }, - "machine_height": { "default_value": 400 }, - "gantry_height": { "value": 25 } - + "metadata": + { + "visible": true, + "platform": "mingda_magician_max_base.stl", + "platform_offset": [ + 0, + 0, + 4 + ], + "quality_definition": "mingda_base" }, - "metadata": { - "quality_definition": "mingda_base", - "visible": true, - "platform": "mingda_rock3_base.stl", - "platform_offset": [ -179, -108, 150] + "overrides": + { + "gantry_height": { "value": 25 }, + "machine_depth": { "default_value": 320 }, + "machine_end_gcode": { "default_value": " G91; relative positioning\n G1 Z1.0 F3000 ; move z up little to prevent scratching of print\n G90; absolute positioning\n G1 X0 Y0 F1000 ; prepare for part removal\n M104 S0; turn off extruder\n M140 S0 ; turn off bed\n M84 ; disable motors\n M420 S0\n M106 S0 ; turn off fan" }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Mingda Magician Max" }, + "machine_start_gcode": { "default_value": " G28 ; home all axes\n M420 S1\n M117 ; Purge extruder\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface\n G1 X2 Y20 Z0.3 F5000.0 ; move to start-line position\n G1 X2 Y200.0 Z0.3 F1500.0 E15 ; draw 1st line\n G1 X2 Y200.0 Z0.4 F5000.0 ; move to side a little\n G1 X2 Y20 Z0.4 F1500.0 E30 ; draw 2nd line\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface" }, + "machine_width": { "default_value": 320 } } -} +} \ No newline at end of file diff --git a/resources/definitions/mingda_magician_pro.def.json b/resources/definitions/mingda_magician_pro.def.json index b38e168c65..8ca11061a0 100644 --- a/resources/definitions/mingda_magician_pro.def.json +++ b/resources/definitions/mingda_magician_pro.def.json @@ -1,22 +1,26 @@ { - "name": "Mingda Magician Pro", "version": 2, + "name": "Mingda Magician Pro", "inherits": "mingda_base", - "overrides": { - "machine_name": { "default_value": "Mingda Magician Pro" }, - "machine_start_gcode": { - "default_value":" G28 ; home all axes\n M117 ; Purge extruder\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface\n G1 X2 Y20 Z0.3 F5000.0 ; move to start-line position\n G1 X2 Y200.0 Z0.3 F1500.0 E15 ; draw 1st line\n G1 X2 Y200.0 Z0.4 F5000.0 ; move to side a little\n G1 X2 Y20 Z0.4 F1500.0 E30 ; draw 2nd line\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface" - }, - "machine_width": { "default_value": 400 }, - "machine_depth": { "default_value": 400 }, - "machine_height": { "default_value": 400 }, - "gantry_height": { "value": 25 } - - }, - "metadata": { - "quality_definition": "mingda_base", + "metadata": + { "visible": true, - "platform": "mingda_d4pro_base.stl", - "platform_offset": [ -177, -140, 170] + "platform": "mingda_magician_pro_base.stl", + "platform_offset": [ + 0, + 0, + -4 + ], + "quality_definition": "mingda_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, + "machine_depth": { "default_value": 400 }, + "machine_end_gcode": { "default_value": " G91; relative positioning\n G1 Z1.0 F3000 ; move z up little to prevent scratching of print\n G90; absolute positioning\n G1 X0 Y0 F1000 ; prepare for part removal\n M104 S0; turn off extruder\n M140 S0 ; turn off bed\n M84 ; disable motors\n M420 S0\n M106 S0 ; turn off fan" }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Mingda Magician Pro" }, + "machine_start_gcode": { "default_value": " G28 ; home all axes\n M420 S1\n M117 ; Purge extruder\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface\n G1 X2 Y20 Z0.3 F5000.0 ; move to start-line position\n G1 X2 Y200.0 Z0.3 F1500.0 E15 ; draw 1st line\n G1 X2 Y200.0 Z0.4 F5000.0 ; move to side a little\n G1 X2 Y20 Z0.4 F1500.0 E30 ; draw 2nd line\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface" }, + "machine_width": { "default_value": 400 } } -} +} \ No newline at end of file diff --git a/resources/definitions/mingda_magician_x.def.json b/resources/definitions/mingda_magician_x.def.json index 2dd3e5cd82..61270cf715 100644 --- a/resources/definitions/mingda_magician_x.def.json +++ b/resources/definitions/mingda_magician_x.def.json @@ -1,19 +1,26 @@ { - "name": "Mingda Magician X", "version": 2, + "name": "Mingda Magician X", "inherits": "mingda_base", - "overrides": { - "machine_name": { "default_value": "Mingda Magician X" }, - "machine_width": { "default_value": 230 }, - "machine_depth": { "default_value": 230 }, - "machine_height": { "default_value": 260 }, - "gantry_height": { "value": 25 } - - }, - "metadata": { - "quality_definition": "mingda_base", + "metadata": + { "visible": true, - "platform": "mingda_d2_base.stl", - "platform_offset": [ -205, -77, 65] + "platform": "mingda_magician_x_base.stl", + "platform_offset": [ + 0, + 0, + 0 + ], + "quality_definition": "mingda_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, + "machine_depth": { "default_value": 230 }, + "machine_end_gcode": { "default_value": " G91; relative positioning\n G1 Z1.0 F3000 ; move z up little to prevent scratching of print\n G90; absolute positioning\n G1 X0 Y0 F1000 ; prepare for part removal\n M104 S0; turn off extruder\n M140 S0 ; turn off bed\n M84 ; disable motors\n M420 S0\n M106 S0 ; turn off fan" }, + "machine_height": { "default_value": 260 }, + "machine_name": { "default_value": "Mingda Magician X" }, + "machine_start_gcode": { "default_value": " G28 ; home all axes\n M420 S1\n M117 ; Purge extruder\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface\n G1 X2 Y20 Z0.3 F5000.0 ; move to start-line position\n G1 X2 Y200.0 Z0.3 F1500.0 E15 ; draw 1st line\n G1 X2 Y200.0 Z0.4 F5000.0 ; move to side a little\n G1 X2 Y20 Z0.4 F1500.0 E30 ; draw 2nd line\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface" }, + "machine_width": { "default_value": 230 } } -} +} \ No newline at end of file diff --git a/resources/definitions/mingda_rock3.def.json b/resources/definitions/mingda_rock3.def.json index c470d6e7e5..bc6d33ab44 100644 --- a/resources/definitions/mingda_rock3.def.json +++ b/resources/definitions/mingda_rock3.def.json @@ -1,19 +1,24 @@ { - "name": "Mingda Rock3/Pro", "version": 2, + "name": "Mingda Rock3/Pro", "inherits": "mingda_base", - "overrides": { - "machine_name": { "default_value": "MINGDA Rock3/Pro" }, - "machine_width": { "default_value": 320 }, - "machine_depth": { "default_value": 320 }, - "machine_height": { "default_value": 400 }, - "gantry_height": { "value": 25 } - - }, - "metadata": { - "quality_definition": "mingda_base", + "metadata": + { "visible": true, "platform": "mingda_rock3_base.stl", - "platform_offset": [ -179, -108, 150] + "platform_offset": [ + -179, + -108, + 150 + ], + "quality_definition": "mingda_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, + "machine_depth": { "default_value": 320 }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "MINGDA Rock3/Pro" }, + "machine_width": { "default_value": 320 } } -} +} \ No newline at end of file diff --git a/resources/definitions/mixware_hyper_k.def.json b/resources/definitions/mixware_hyper_k.def.json new file mode 100644 index 0000000000..1b52bd9359 --- /dev/null +++ b/resources/definitions/mixware_hyper_k.def.json @@ -0,0 +1,118 @@ +{ + "version": 2, + "name": "Hyper K", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Mixware", + "manufacturer": "Mixware", + "file_formats": "text/x-gcode", + "platform": "mixware_hyper_k_platform.stl", + "has_machine_quality": true, + "has_materials": true, + "machine_extruder_trains": { "0": "mixware_hyper_k_extruder_0" }, + "preferred_material": "generic_pla", + "preferred_quality": "coarse" + }, + "overrides": + { + "acceleration_print": { "value": 500 }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, + "acceleration_travel": { "value": 500 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel" }, + "adaptive_layer_height_variation": { "value": 0.04 }, + "adaptive_layer_height_variation_step": { "value": 0.04 }, + "adhesion_type": { "value": "'skirt'" }, + "brim_replaces_support": { "value": false }, + "brim_width": { "default_value": 3 }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "value": 10 }, + "fill_outline_gaps": { "value": false }, + "gantry_height": { "value": 25 }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 30.0 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_wipe_dist": { "value": 0.0 }, + "ironing_line_spacing": { "default_value": 0.4 }, + "ironing_pattern": { "default_value": "concentric" }, + "jerk_print": { "value": 8 }, + "jerk_travel": { "value": "jerk_print" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "machine_acceleration": { "value": 500 }, + "machine_depth": { "default_value": 225 }, + "machine_end_gcode": { "default_value": "G91; relative positioning\nG1 Z1.0 F3000 ; move z up little to prevent scratching of print\nG90; absolute positioning\nG1 X0 Y200 F1000 ; prepare for part removal\nM104 S0; turn off extruder\nM140 S0 ; turn off bed\nG1 X0 Y220 F1000 ; prepare for part removal\nM84 ; disable motors\nM106 S0 ; turn off fan" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 250 }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_feedrate_e": { "value": 50 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_name": { "default_value": "Hyper K" }, + "machine_start_gcode": { "default_value": "M140 S{material_bed_temperature} ; Heat bed\nM109 S{material_print_temperature} ; Heat nozzle\nM190 S{material_bed_temperature} ; Wait for bed heating\nG28 ; home all axes\nM117 Purge extruder\nG92 E0 ; reset extruder\nG1 Z5.0 F1000 ; move z up little to prevent scratching of surface\nG1 X0.1 Y20 Z0.3 F5000.0 ; move to start-line position\nG1 X0.1 Y100.0 Z0.3 F1500.0 E15 ; draw 1st line\nG1 X0.4 Y100.0 Z0.3 F5000.0 ; move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; draw 2nd line\nG92 E0 ; reset extruder\nG1 Z5.0 F1000 ; move z up little to prevent scratching of surface" }, + "machine_width": { "default_value": 225 }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "meshfix_maximum_resolution": { "value": "0.25" }, + "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "optimize_wall_printing_order": { "value": "True" }, + "raft_airgap": { "default_value": 0.24 }, + "raft_margin": + { + "default_value": 3, + "minimum_value_warning": "0.01" + }, + "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, + "retraction_combing_max_distance": { "value": 30 }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 10 }, + "retraction_hop": { "value": 0.2 }, + "retraction_prime_speed": { "maximum_value": 200 }, + "retraction_retract_speed": { "maximum_value": 200 }, + "retraction_speed": { "maximum_value": 200 }, + "skin_overlap": { "value": 10.0 }, + "skirt_gap": { "value": 10.0 }, + "skirt_line_count": { "value": 3 }, + "speed_layer_0": { "value": 20.0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": 50.0 }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_travel": { "value": "120.0 if speed_print < 60 else 240.0 if speed_print > 100 else speed_print * 2.5" }, + "speed_travel_layer_0": { "value": "60 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 4 }, + "support_enable": { "default_value": true }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 15" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_type": { "default_value": "buildplate" }, + "support_use_towers": { "value": false }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" }, + "top_bottom_pattern": { "default_value": "zigzag" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, + "travel_avoid_supports": { "value": true }, + "travel_retract_before_outer_wall": { "value": true }, + "wall_0_wipe_dist": { "value": 0.0 }, + "wall_thickness": { "value": "line_width * 2" }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, + "z_seam_type": { "value": "'back'" } + } +} \ No newline at end of file diff --git a/resources/definitions/mixware_hyper_s.def.json b/resources/definitions/mixware_hyper_s.def.json index 12e55444cf..60940b2a3c 100644 --- a/resources/definitions/mixware_hyper_s.def.json +++ b/resources/definitions/mixware_hyper_s.def.json @@ -1,369 +1,143 @@ { - "name": "Hyper S", "version": 2, + "name": "Hyper S", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Mixware", "manufacturer": "Mixware", "file_formats": "text/x-gcode", "platform": "mixware_hyper_s_platform.stl", - "has_materials": true, "has_machine_quality": true, + "has_materials": true, + "machine_extruder_trains": { "0": "mixware_hyper_s_extruder_0" }, "preferred_material": "generic_pla", - "preferred_quality": "coarse", - "machine_extruder_trains": { - "0": "mixware_hyper_s_extruder_0" - } + "preferred_quality": "coarse" }, - "overrides": { - "machine_name": { - "default_value": "Hyper S" - }, - "machine_start_gcode": { - "default_value": "M140 S{material_bed_temperature} ; Heat bed\nM109 S{material_print_temperature} ; Heat nozzle\nM190 S{material_bed_temperature} ; Wait for bed heating\nG28 ; home all axes\nM117 Purge extruder\nG92 E0 ; reset extruder\nG1 Z5.0 F1000 ; move z up little to prevent scratching of surface\nG1 X0.1 Y20 Z0.3 F5000.0 ; move to start-line position\nG1 X0.1 Y100.0 Z0.3 F1500.0 E15 ; draw 1st line\nG1 X0.4 Y100.0 Z0.3 F5000.0 ; move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; draw 2nd line\nG92 E0 ; reset extruder\nG1 Z5.0 F1000 ; move z up little to prevent scratching of surface" - }, - "machine_end_gcode": { - "default_value": "G91; relative positioning\nG1 Z1.0 F3000 ; move z up little to prevent scratching of print\nG90; absolute positioning\nG1 X0 Y200 F1000 ; prepare for part removal\nM104 S0; turn off extruder\nM140 S0 ; turn off bed\nG1 X0 Y220 F1000 ; prepare for part removal\nM84 ; disable motors\nM106 S0 ; turn off fan" - }, - "machine_width": { - "default_value": 300 - }, - "machine_depth": { - "default_value": 300 - }, - "machine_height": { - "default_value": 400 - }, - "raft_margin": { + "overrides": + { + "acceleration_enabled": { "default_value": false }, + "acceleration_print": { "default_value": 1000 }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, + "acceleration_travel": { "value": 1000 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel" }, + "adaptive_layer_height_variation": { "default_value": 0.04 }, + "adaptive_layer_height_variation_step": { "default_value": 0.04 }, + "adhesion_type": { "default_value": "skirt" }, + "brim_replaces_support": { "default_value": false }, + "brim_width": { "default_value": 3 }, + "cool_fan_enabled": { "default_value": true }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "default_value": 10 }, + "fill_outline_gaps": { "default_value": false }, + "gantry_height": { "value": 25 }, + "infill_before_walls": { "default_value": false }, + "infill_overlap": { "value": 30.0 }, + "infill_sparse_density": { "default_value": 15 }, + "infill_wipe_dist": { "value": 0.0 }, + "ironing_line_spacing": { "default_value": 0.4 }, + "ironing_pattern": { "default_value": "concentric" }, + "jerk_enabled": { "default_value": false }, + "jerk_print": { "default_value": 10 }, + "jerk_travel": { "value": "jerk_print" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "line_width": { "value": 0.4 }, + "machine_acceleration": { "default_value": 500 }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "G91; relative positioning\nG1 Z1.0 F3000 ; move z up little to prevent scratching of print\nG90; absolute positioning\nG1 X0 Y200 F1000 ; prepare for part removal\nM104 S0; turn off extruder\nM140 S0 ; turn off bed\nG1 X0 Y220 F1000 ; prepare for part removal\nM84 ; disable motors\nM106 S0 ; turn off fan" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 400 }, + "machine_max_acceleration_e": { "default_value": 500 }, + "machine_max_acceleration_x": { "default_value": 500 }, + "machine_max_acceleration_y": { "default_value": 500 }, + "machine_max_acceleration_z": { "default_value": 100 }, + "machine_max_feedrate_e": { "default_value": 50 }, + "machine_max_feedrate_x": { "default_value": 500 }, + "machine_max_feedrate_y": { "default_value": 500 }, + "machine_max_feedrate_z": { "default_value": 10 }, + "machine_max_jerk_e": { "default_value": 5 }, + "machine_max_jerk_xy": { "default_value": 10 }, + "machine_max_jerk_z": { "default_value": 0.4 }, + "machine_name": { "default_value": "Hyper S" }, + "machine_start_gcode": { "default_value": "M140 S{material_bed_temperature} ; Heat bed\nM109 S{material_print_temperature} ; Heat nozzle\nM190 S{material_bed_temperature} ; Wait for bed heating\nG28 ; home all axes\nM117 Purge extruder\nG92 E0 ; reset extruder\nG1 Z5.0 F1000 ; move z up little to prevent scratching of surface\nG1 X0.1 Y20 Z0.3 F5000.0 ; move to start-line position\nG1 X0.1 Y100.0 Z0.3 F1500.0 E15 ; draw 1st line\nG1 X0.4 Y100.0 Z0.3 F5000.0 ; move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; draw 2nd line\nG92 E0 ; reset extruder\nG1 Z5.0 F1000 ; move z up little to prevent scratching of surface" }, + "machine_width": { "default_value": 300 }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_flow": { "default_value": 100 }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "material_print_temperature": { "maximum_value_warning": "330" }, + "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, + "minimum_interface_area": { "default_value": 10 }, + "minimum_support_area": { "default_value": 2 }, + "optimize_wall_printing_order": { "default_value": "True" }, + "raft_airgap": { "default_value": 0.24 }, + "raft_margin": + { "default_value": 3, "minimum_value_warning": "0.01" }, - "raft_airgap": { - "default_value": 0.24 + "retraction_amount": { "default_value": 2 }, + "retraction_combing": { "value": "off" }, + "retraction_combing_max_distance": { "default_value": 0.5 }, + "retraction_count_max": { "default_value": 100 }, + "retraction_extrusion_window": + { + "maximum_value_warning": "20", + "value": 10 }, - "brim_width": { - "default_value": 3 + "retraction_hop": { "default_value": 0.2 }, + "retraction_hop_enabled": { "default_value": false }, + "retraction_min_travel": { "value": 1.5 }, + "retraction_prime_speed": + { + "maximum_value": "200", + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" }, - "machine_heated_bed": { - "default_value": true + "retraction_retract_speed": + { + "maximum_value": "200", + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" }, - "material_diameter": { - "default_value": 1.75 - }, - "top_bottom_pattern": { - "default_value": "zigzag" - }, - "ironing_line_spacing": { - "default_value": 0.4 - }, - "ironing_pattern": { - "default_value": "concentric" - }, - "skin_no_small_gaps_heuristic": { - "default_value": false - }, - "retraction_hop_enabled": { - "default_value": false - }, - "support_enable": { - "default_value": true - }, - "support_type": { - "default_value": "buildplate" - }, - "support_angle": { - "default_value": 60 - }, - "support_pattern": { - "default_value": "zigzag" - }, - "support_infill_rate": { - "value": 15 - }, - "gantry_height": { - "value": 25 - }, - "machine_max_feedrate_x": { - "default_value": 500 - }, - "machine_max_feedrate_y": { - "default_value": 500 - }, - "machine_max_feedrate_z": { - "default_value": 10 - }, - "machine_max_feedrate_e": { - "default_value": 50 - }, - "machine_max_acceleration_x": { - "default_value": 500 - }, - "machine_max_acceleration_y": { - "default_value": 500 - }, - "machine_max_acceleration_z": { - "default_value": 100 - }, - "machine_max_acceleration_e": { - "default_value": 500 - }, - "machine_acceleration": { - "default_value": 500 - }, - "machine_max_jerk_xy": { - "default_value": 10 - }, - "machine_max_jerk_z": { - "default_value": 0.4 - }, - "machine_max_jerk_e": { - "default_value": 5 - }, - "acceleration_print": { - "default_value": 1000 - }, - "jerk_print": { - "default_value": 10 - }, - "acceleration_enabled": { - "default_value": false - }, - "jerk_enabled": { - "default_value": false - }, - "speed_print": { - "default_value": 40.0 - }, - "optimize_wall_printing_order": { - "default_value": "True" - }, - "z_seam_type": { - "default_value": "shortest" - }, - "infill_before_walls": { - "default_value": false - }, - "infill_sparse_density": { - "default_value": 15 - }, - "fill_outline_gaps": { - "default_value": false - }, - "retraction_hop": { - "default_value": 0.2 - }, - "travel_avoid_other_parts": { - "default_value": false - }, - "travel_retract_before_outer_wall": { - "default_value": true - }, - "retraction_amount": { - "default_value": 2 - }, - "retraction_enable": { - "default_value": true - }, - "retraction_count_max": { - "default_value": 100 - }, - "cool_fan_enabled": { - "default_value": true - }, - "cool_min_layer_time": { - "default_value": 10 - }, - "skirt_gap": { - "default_value": 8.0 - }, - "skirt_line_count": { - "default_value": 3 - }, - "adaptive_layer_height_variation": { - "default_value": 0.04 - }, - "adaptive_layer_height_variation_step": { - "default_value": 0.04 - }, - "support_use_towers": { - "default_value": false - }, - "support_interface_enable": { - "default_value": true - }, - "support_interface_density": { - "default_value": 33.333 - }, - "support_interface_pattern": { - "default_value": "grid" - }, - "support_interface_skip_height": { - "default_value": 0.24 - }, - "top_bottom_thickness": { - "default_value": 0.8 - }, - "material_flow": { - "default_value": 100 - }, - "material_print_temperature": { - "maximum_value_warning": "330" - }, - "acceleration_roofing": { - "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" - }, - "retraction_speed": { + "retraction_speed": + { "default_value": 40, - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": "200" + "maximum_value": "200", + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')" }, - "retraction_retract_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": "200" - }, - "retraction_prime_speed": { - "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", - "maximum_value": "200" - }, - "speed_layer_0": { - "value": "speed_print / 2" - }, - "acceleration_travel_layer_0": { - "value": "acceleration_travel" - }, - "jerk_travel": { - "value": "jerk_print" - }, - "jerk_travel_layer_0": { - "value": "jerk_travel" - }, - "skirt_brim_speed": { - "value": "speed_layer_0" - }, - "speed_infill": { - "value": "speed_print" - }, - "speed_wall": { - "value": "speed_print / 2" - }, - "speed_wall_0": { - "value": "speed_wall" - }, - "speed_wall_x": { - "value": "speed_wall" - }, - "speed_topbottom": { - "value": "speed_print / 2" - }, - "speed_roofing": { - "value": "speed_topbottom" - }, - "speed_travel": { - "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" - }, - "speed_print_layer_0": { - "value": "speed_layer_0" - }, - "speed_travel_layer_0": { - "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" - }, - "speed_prime_tower": { - "value": "speed_topbottom" - }, - "speed_support": { - "value": "speed_wall_0" - }, - "speed_support_interface": { - "value": "speed_topbottom" - }, - "material_initial_print_temperature": { - "value": "material_print_temperature" - }, - "material_final_print_temperature": { - "value": "material_print_temperature" - }, - "cool_fan_full_at_height": { - "value": "layer_height_0 + 2 * layer_height" - }, - "adhesion_type": { - "default_value": "skirt" - }, - "meshfix_maximum_travel_resolution": { - "value": "meshfix_maximum_resolution" - }, - "support_xy_distance": { - "value": "wall_line_width_0 * 2" - }, - "support_xy_distance_overhang": { - "value": "wall_line_width_0" - }, - "support_z_distance": { - "value": "layer_height if layer_height >= 0.16 else layer_height * 2" - }, - "support_xy_overrides_z": { - "default_value": "xy_overrides_z" - }, - "support_interface_height": { - "value": "layer_height * 4" - }, - "wall_thickness": { - "value": "line_width * 2" - }, - "acceleration_travel": { - "value": 1000 - }, - "line_width": { - "value": 0.4 - }, - "speed_z_hop": { - "default_value": 5 - }, - "retraction_combing_max_distance": { - "default_value": 30 - }, - "travel_avoid_supports": { - "default_value": true - }, - "brim_replaces_support": { - "default_value": false - }, - "support_brim_width": { - "default_value": 4 - }, - "minimum_support_area": { - "default_value": 2 - }, - "minimum_interface_area": { - "default_value": 10 - }, - "support_wall_count": { - "value": 1 - }, - "support_brim_enable": { - "value": false - }, - "retraction_combing": { - "value": "all" - }, - "retraction_extrusion_window": { - "value": 10, - "maximum_value_warning": "20" - }, - "retraction_min_travel": { - "value": 1.5 - }, - "infill_wipe_dist": { - "value": 0.0 - }, - "skin_overlap": { - "value": 10.0 - }, - "infill_overlap": { - "value": 30.0 - }, - "wall_0_wipe_dist": { - "value": 0.0 - } + "skin_overlap": { "value": 10.0 }, + "skirt_line_count": { "default_value": 3 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "default_value": 40.0 }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_topbottom": { "value": "speed_print / 2" }, + "speed_travel": { "value": "120.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" }, + "speed_travel_layer_0": { "value": "60 if speed_layer_0 < 20 else 120 if speed_layer_0 > 30 else speed_layer_0 * 5" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "default_value": 5 }, + "support_angle": { "default_value": 60 }, + "support_bottom_stair_step_height": { "value": 0.2 }, + "support_brim_width": { "default_value": 4 }, + "support_enable": { "default_value": true }, + "support_interface_density": { "default_value": 80 }, + "support_interface_enable": { "default_value": true }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_pattern": { "default_value": "grid" }, + "support_pattern": { "default_value": "zigzag" }, + "support_type": { "default_value": "buildplate" }, + "support_wall_count": { "value": 1 }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "default_value": "xy_overrides_z" }, + "support_z_distance": { "value": "layer_height" }, + "top_bottom_pattern": { "default_value": "zigzag" }, + "travel_avoid_other_parts": { "default_value": false }, + "travel_avoid_supports": { "default_value": true }, + "travel_retract_before_outer_wall": { "default_value": true }, + "wall_0_wipe_dist": { "value": 0.0 }, + "wall_thickness": { "value": "line_width * 2" }, + "z_seam_corner": { "default_value": "z_seam_corner_weighted" }, + "z_seam_type": { "default_value": "back" } } -} +} \ No newline at end of file diff --git a/resources/definitions/mixware_vulcan.def.json b/resources/definitions/mixware_vulcan.def.json new file mode 100644 index 0000000000..7a816de7b8 --- /dev/null +++ b/resources/definitions/mixware_vulcan.def.json @@ -0,0 +1,149 @@ +{ + "version": 2, + "name": "Vulcan", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Mixware", + "manufacturer": "Mixware", + "file_formats": "text/x-gcode", + "platform": "mixware_vulcan_platform.stl", + "has_machine_quality": true, + "has_materials": true, + "has_variants": false, + "machine_extruder_trains": { "0": "mixware_vulcan_extruder_0" }, + "preferred_material": "generic_pla", + "preferred_quality": "coarse" + }, + "overrides": + { + "acceleration_enabled": { "default_value": true }, + "acceleration_print": { "default_value": 500 }, + "acceleration_travel": { "value": 500 }, + "adhesion_type": { "default_value": "raft" }, + "brim_width": + { + "default_value": 5, + "maximum_warning_value": "10", + "minimum_warning_value": "0" + }, + "infill_before_walls": { "default_value": false }, + "layer_height": + { + "maximum_warning_value": "0.3", + "minimum_warning_value": "0.05" + }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 240 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\n;Retract the filament\nG92 E1\nG1 E-1 F300\nG28\nM84" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "Vulcan" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_shape": { "default_value": "elliptic" }, + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F6000 ;Move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" }, + "machine_width": { "default_value": 240 }, + "material_bed_temperature": + { + "maximum_warning_value": "105", + "minimum_warning_value": "0" + }, + "material_diameter": { "default_value": 1.75 }, + "material_print_temperature": + { + "maximum_warning_value": "250", + "minimum_warning_value": "180", + "value": 200 + }, + "optimize_wall_printing_order": { "default_value": true }, + "raft_airgap": + { + "default_value": 0.24, + "maximum_warning_value": "0.3", + "minimum_warning_value": "0.2" + }, + "raft_margin": + { + "default_value": 3, + "maximum_warning_value": "10", + "minimum_warning_value": "0", + "minimum_warning_value_warning": "0.01" + }, + "retraction_amount": + { + "default_value": 5.5, + "maximum_warning_value": "5.5", + "minimum_warning_value": "4" + }, + "retraction_extrusion_window": + { + "maximum_warning_value": "5.5", + "minimum_warning_value": "4" + }, + "retraction_prime_speed": + { + "maximum_warning_value": "55", + "minimum_warning_value": "40", + "value": 40 + }, + "retraction_retract_speed": + { + "maximum_warning_value": "55", + "minimum_warning_value": "40", + "value": 40 + }, + "retraction_speed": + { + "default_value": 40, + "maximum_warning_value": "55", + "minimum_warning_value": "40" + }, + "skirt_gap": + { + "maximum_warning_value": "5", + "minimum_warning_value": "0" + }, + "speed_print": + { + "default_value": 40, + "maximum_warning_value": "60", + "minimum_warning_value": "5" + }, + "speed_travel": + { + "maximum_warning_value": "150", + "minimum_warning_value": "80", + "value": 80 + }, + "support_enable": { "default_value": true }, + "support_infill_rate": { "value": 20 }, + "support_interface_enable": { "default_value": true }, + "support_offset": { "value": 0.2 }, + "support_roof_enable": { "value": true }, + "support_top_distance": + { + "maximum_warning_value": "0.25", + "minimum_warning_value": "0.15", + "value": 0.25 + }, + "support_z_distance": + { + "default_value": 0.25, + "maximum_warning_value": "0.25", + "minimum_warning_value": "0.15" + }, + "top_bottom_thickness": + { + "default_value": 1.0, + "maximum_warning_value": "2", + "minimum_warning_value": "0" + }, + "travel_avoid_other_parts": { "default_value": false }, + "wall_thickness": + { + "maximum_warning_value": "2", + "minimum_warning_value": "0.4" + } + } +} \ No newline at end of file diff --git a/resources/definitions/mixware_wand.def.json b/resources/definitions/mixware_wand.def.json new file mode 100644 index 0000000000..2d94a24d33 --- /dev/null +++ b/resources/definitions/mixware_wand.def.json @@ -0,0 +1,147 @@ +{ + "version": 2, + "name": "Wand", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Mixware", + "manufacturer": "Mixware", + "file_formats": "text/x-gcode", + "platform": "mixware_wand_platform.stl", + "has_machine_quality": true, + "has_materials": true, + "has_variants": false, + "machine_extruder_trains": { "0": "mixware_wand_extruder_0" }, + "preferred_material": "generic_pla", + "preferred_quality": "coarse" + }, + "overrides": + { + "acceleration_enabled": { "default_value": true }, + "acceleration_print": { "default_value": 500 }, + "acceleration_travel": { "value": 500 }, + "adhesion_type": { "default_value": "raft" }, + "brim_width": + { + "default_value": 3, + "maximum_warning_value": "3", + "minimum_warning_value": "0" + }, + "infill_before_walls": { "default_value": false }, + "layer_height": + { + "maximum_warning_value": "0.2", + "minimum_warning_value": "0.05" + }, + "machine_depth": { "default_value": 102 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\n;Retract the filament\nG92 E1\nG1 E3 F300\nG1 F1500 Z100\nG28 X0 Y0\nM25\nM84" }, + "machine_height": { "default_value": 102 }, + "machine_name": { "default_value": "Wand" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_start_gcode": { "default_value": "G28 ;Home\n;Prime the extruder\nM117 Print\nG92 E0\nG1 F1500 X-2 Y0 Z0.28\nG1 F2400 X-2 Y70 Z0.28 E8\nG1 F1500 X-1.7 Y70 Z0.28\nG1 F2400 X-1.7 Y0 Z0.28 E16\nG92 E0\nG92 E0\nG1 Z0.18 F2400 ;Move Z Axis up" }, + "machine_width": { "default_value": 102 }, + "material_bed_temperature": { "value": 0 }, + "material_print_temperature": + { + "maximum_warning_value": "220", + "minimum_warning_value": "180", + "value": 200 + }, + "optimize_wall_printing_order": { "default_value": true }, + "raft_airgap": + { + "default_value": 0.23, + "maximum_warning_value": "0.3", + "minimum_warning_value": "0.2" + }, + "raft_base_line_spacing": { "value": 1.0 }, + "raft_base_thickness": { "value": 0.36 }, + "raft_margin": + { + "default_value": 1, + "minimum_warning_value": "0", + "minimum_warning_value_warning": "0.01" + }, + "retraction_amount": + { + "default_value": 4, + "maximum_warning_value": "5.5", + "minimum_warning_value": "2" + }, + "retraction_extrusion_window": + { + "maximum_warning_value": "5.5", + "minimum_warning_value": "2", + "value": 3 + }, + "retraction_prime_speed": + { + "maximum_warning_value": "55", + "minimum_warning_value": "40", + "value": 40 + }, + "retraction_retract_speed": + { + "maximum_warning_value": "55", + "minimum_warning_value": "40", + "value": 40 + }, + "retraction_speed": + { + "default_value": 40, + "maximum_warning_value": "55", + "minimum_warning_value": "40" + }, + "skirt_gap": + { + "default_value": 2, + "maximum_warning_value": "2", + "minimum_warning_value": "0" + }, + "speed_print": + { + "default_value": 40, + "maximum_warning_value": "71", + "minimum_warning_value": "20" + }, + "speed_travel": + { + "maximum_warning_value": "120", + "minimum_warning_value": "80", + "value": 80 + }, + "support_angle": { "default_value": 60 }, + "support_enable": { "default_value": true }, + "support_infill_rate": { "value": 20 }, + "support_interface_enable": { "default_value": true }, + "support_offset": { "value": 0.2 }, + "support_roof_enable": { "value": true }, + "support_top_distance": + { + "maximum_warning_value": "0.25", + "minimum_warning_value": "0.15", + "value": 0.25 + }, + "support_z_distance": + { + "default_value": 0.25, + "maximum_warning_value": "0.25", + "minimum_warning_value": "0.15" + }, + "top_bottom_thickness": + { + "default_value": 1.0, + "maximum_warning_value": "2" + }, + "travel_avoid_other_parts": { "default_value": false }, + "travel_retract_before_outer_wall": { "value": true }, + "wall_thickness": + { + "maximum_warning_value": "1.6", + "minimum_warning_value": "0.4" + }, + "z_seam_type": { "default_value": "back" }, + "z_seam_y": { "value": 99 } + } +} \ No newline at end of file diff --git a/resources/definitions/modix_v3_base.def.json b/resources/definitions/modix_v3_base.def.json new file mode 100644 index 0000000000..6f0205e59e --- /dev/null +++ b/resources/definitions/modix_v3_base.def.json @@ -0,0 +1,87 @@ +{ + "version": 2, + "name": "Modix Base Printer", + "inherits": "fdmprinter", + "metadata": + { + "author": "Modix", + "manufacturer": "Modix", + "file_formats": "text/x-gcode", + "has_variants": true, + "machine_extruder_trains": + { + "0": "modix_v3_extruder_0", + "1": "modix_v3_extruder_1" + }, + "preferred_variant_name": "0.4 mm Nozzle", + "variants_name": "Nozzle Size" + }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "fill_outline_gaps": { "value": false }, + "gantry_height": { "value": "90.0" }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 30.0 }, + "infill_pattern": { "value": "'cubic'" }, + "infill_sparse_density": { "value": "15" }, + "layer_height_0": { "value": "round(machine_nozzle_size / 2, 1)" }, + "line_width": { "value": "machine_nozzle_size * 1.05" }, + "machine_end_gcode": { "default_value": "M83 ; extruder relative moves \nG1 E-5 F2700 ;retract a bit \nG10 P0 S0 R0 ; turn off extruder 0 \nG10 P1 S0 R0 ; turn off extruder 1 \nM106 S0 ; turn off fans \nT-1 P0 ; deselect any tools \nG4 P1 ; dwell 1ms \nG91 ;relative positioning \nG1 Z2 F500 ; Move print head up 2mm \nG90 ; absolute positioning \nG1 X{move.axes[0].min+2} Y{move.axes[1].max-2} F6000 ; move to the back left \nM84 ; disable motors" }, + "machine_gcode_flavor": { "default_value": "RepRap (RepRap)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-100, 30], + [-100, 65], + [30, -105], + [-31, -100] + ] + }, + "machine_name": { "default_value": "Modix Base Printer" }, + "machine_start_gcode": { "default_value": "G28 ; home all axes" }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "optimize_wall_printing_order": { "value": "True" }, + "retraction_amount": { "value": 1 }, + "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'infill'" }, + "retraction_combing_max_distance": { "value": 5 }, + "retraction_count_max": { "value": 50 }, + "retraction_extrusion_window": { "value": 1 }, + "retraction_hop": { "value": "layer_height*4" }, + "retraction_hop_enabled": { "value": "support_enable" }, + "retraction_prime_speed": { "value": 40 }, + "retraction_retract_speed": { "value": 40 }, + "retraction_speed": { "default_value": 40 }, + "skin_overlap": { "value": 10.0 }, + "skirt_brim_minimal_length": { "default_value": 200 }, + "skirt_gap": { "value": 5.0 }, + "skirt_line_count": { "value": 3 }, + "speed_layer_0": { "value": 20.0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_travel": { "value": 110.0 }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": 55 }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 5 }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 15" }, + "support_interface_density": { "value": 40 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 3" }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.2 else layer_height * 2" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, + "travel_avoid_supports": { "value": true }, + "travel_retract_before_outer_wall": { "value": true }, + "wall_thickness": { "value": "line_width * 2" }, + "z_seam_corner": { "value": "z_seam_corner_weighted" } + } +} \ No newline at end of file diff --git a/resources/definitions/modix_v3_big120X.def.json b/resources/definitions/modix_v3_big120X.def.json new file mode 100644 index 0000000000..9501ca96e1 --- /dev/null +++ b/resources/definitions/modix_v3_big120X.def.json @@ -0,0 +1,13 @@ +{ + "version": 2, + "name": "Modix V3 BIG-120X", + "inherits": "modix_v3_base", + "metadata": { "visible": true }, + "overrides": + { + "machine_depth": { "default_value": 600 }, + "machine_height": { "default_value": 640 }, + "machine_name": { "default_value": "Modix BIG-120X V3" }, + "machine_width": { "default_value": 1200 } + } +} \ No newline at end of file diff --git a/resources/definitions/modix_v3_big120Z.def.json b/resources/definitions/modix_v3_big120Z.def.json new file mode 100644 index 0000000000..132ca0cd5f --- /dev/null +++ b/resources/definitions/modix_v3_big120Z.def.json @@ -0,0 +1,13 @@ +{ + "version": 2, + "name": "Modix V3 BIG-120Z", + "inherits": "modix_v3_base", + "metadata": { "visible": true }, + "overrides": + { + "machine_depth": { "default_value": 600 }, + "machine_height": { "default_value": 1200 }, + "machine_name": { "default_value": "Modix BIG-120Z V3" }, + "machine_width": { "default_value": 600 } + } +} \ No newline at end of file diff --git a/resources/definitions/modix_v3_big180X.def.json b/resources/definitions/modix_v3_big180X.def.json new file mode 100644 index 0000000000..18f3d0521f --- /dev/null +++ b/resources/definitions/modix_v3_big180X.def.json @@ -0,0 +1,13 @@ +{ + "version": 2, + "name": "Modix V3 BIG-180X", + "inherits": "modix_v3_base", + "metadata": { "visible": true }, + "overrides": + { + "machine_depth": { "default_value": 600 }, + "machine_height": { "default_value": 600 }, + "machine_name": { "default_value": "Modix BIG-180X V3" }, + "machine_width": { "default_value": 1800 } + } +} \ No newline at end of file diff --git a/resources/definitions/modix_v3_big40.def.json b/resources/definitions/modix_v3_big40.def.json new file mode 100644 index 0000000000..8a44d919c2 --- /dev/null +++ b/resources/definitions/modix_v3_big40.def.json @@ -0,0 +1,13 @@ +{ + "version": 2, + "name": "Modix V3 BIG-40", + "inherits": "modix_v3_base", + "metadata": { "visible": true }, + "overrides": + { + "machine_depth": { "default_value": 400 }, + "machine_height": { "default_value": 800 }, + "machine_name": { "default_value": "Modix BIG-40 V3" }, + "machine_width": { "default_value": 400 } + } +} \ No newline at end of file diff --git a/resources/definitions/modix_v3_big60.def.json b/resources/definitions/modix_v3_big60.def.json new file mode 100644 index 0000000000..3db8825e61 --- /dev/null +++ b/resources/definitions/modix_v3_big60.def.json @@ -0,0 +1,13 @@ +{ + "version": 2, + "name": "Modix V3 BIG-60", + "inherits": "modix_v3_base", + "metadata": { "visible": true }, + "overrides": + { + "machine_depth": { "default_value": 600 }, + "machine_height": { "default_value": 660 }, + "machine_name": { "default_value": "Modix BIG-60 V3" }, + "machine_width": { "default_value": 600 } + } +} \ No newline at end of file diff --git a/resources/definitions/modix_v3_big_meter.def.json b/resources/definitions/modix_v3_big_meter.def.json new file mode 100644 index 0000000000..d6d2c968b9 --- /dev/null +++ b/resources/definitions/modix_v3_big_meter.def.json @@ -0,0 +1,13 @@ +{ + "version": 2, + "name": "Modix V3 BIG-Meter", + "inherits": "modix_v3_base", + "metadata": { "visible": true }, + "overrides": + { + "machine_depth": { "default_value": 1000 }, + "machine_height": { "default_value": 1000 }, + "machine_name": { "default_value": "Modix BIG-METER V3" }, + "machine_width": { "default_value": 1000 } + } +} \ No newline at end of file diff --git a/resources/definitions/modix_v4_base.def.json b/resources/definitions/modix_v4_base.def.json new file mode 100644 index 0000000000..932293d6df --- /dev/null +++ b/resources/definitions/modix_v4_base.def.json @@ -0,0 +1,87 @@ +{ + "version": 2, + "name": "Modix Base Printer", + "inherits": "fdmprinter", + "metadata": + { + "author": "Modix", + "manufacturer": "Modix", + "file_formats": "text/x-gcode", + "has_variants": true, + "machine_extruder_trains": + { + "0": "modix_v4_extruder_0", + "1": "modix_v4_extruder_1" + }, + "preferred_variant_name": "0.4 mm Nozzle", + "variants_name": "Nozzle Size" + }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "fill_outline_gaps": { "value": false }, + "gantry_height": { "value": "90.0" }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 30.0 }, + "infill_pattern": { "value": "'cubic'" }, + "infill_sparse_density": { "value": "15" }, + "layer_height_0": { "value": "round(machine_nozzle_size / 2, 1)" }, + "line_width": { "value": "machine_nozzle_size * 1.05" }, + "machine_end_gcode": { "default_value": "M83 ; extruder relative moves \nG1 E-5 F2700 ;retract a bit \nG10 P0 S0 R0 ; turn off extruder 0 \nM106 S0 ; turn off fans \nT-1 P0 ; deselect any tools \nG4 P1 ; dwell 1ms \nG91 ;relative positioning \nG1 Z2 F500 ; Move print head up 2mm \nG90 ; absolute positioning \nG1 X{move.axes[0].min+2} Y{move.axes[1].max-2} F6000 ; move to the back left \nM84 ; disable motors" }, + "machine_gcode_flavor": { "default_value": "RepRap (RepRap)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-100, 30], + [-100, 65], + [30, -105], + [-31, -100] + ] + }, + "machine_name": { "default_value": "Modix Base Printer" }, + "machine_start_gcode": { "default_value": "G28 ; home all axes" }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "optimize_wall_printing_order": { "value": "True" }, + "retraction_amount": { "value": 1 }, + "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'infill'" }, + "retraction_combing_max_distance": { "value": 5 }, + "retraction_count_max": { "value": 50 }, + "retraction_extrusion_window": { "value": 1 }, + "retraction_hop": { "value": 2 }, + "retraction_hop_enabled": { "value": "support_enable" }, + "retraction_prime_speed": { "value": 40 }, + "retraction_retract_speed": { "value": 40 }, + "retraction_speed": { "default_value": 40 }, + "skin_overlap": { "value": 10.0 }, + "skirt_brim_minimal_length": { "default_value": 200 }, + "skirt_gap": { "value": 5.0 }, + "skirt_line_count": { "value": 3 }, + "speed_layer_0": { "value": 20.0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_travel": { "value": 250.0 }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": 55 }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 5 }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 15" }, + "support_interface_density": { "value": 40 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 3" }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.2 else layer_height * 2" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, + "travel_avoid_supports": { "value": true }, + "travel_retract_before_outer_wall": { "value": true }, + "wall_thickness": { "value": "line_width * 2" }, + "z_seam_corner": { "value": "z_seam_corner_weighted" } + } +} \ No newline at end of file diff --git a/resources/definitions/modix_v4_big120X.def.json b/resources/definitions/modix_v4_big120X.def.json new file mode 100644 index 0000000000..792d158ba4 --- /dev/null +++ b/resources/definitions/modix_v4_big120X.def.json @@ -0,0 +1,13 @@ +{ + "version": 2, + "name": "Modix V4 BIG-120X", + "inherits": "modix_v4_base", + "metadata": { "visible": true }, + "overrides": + { + "machine_depth": { "default_value": 600 }, + "machine_height": { "default_value": 640 }, + "machine_name": { "default_value": "Modix BIG-120X V4" }, + "machine_width": { "default_value": 1200 } + } +} \ No newline at end of file diff --git a/resources/definitions/modix_v4_big120Z.def.json b/resources/definitions/modix_v4_big120Z.def.json new file mode 100644 index 0000000000..fa568f0423 --- /dev/null +++ b/resources/definitions/modix_v4_big120Z.def.json @@ -0,0 +1,13 @@ +{ + "version": 2, + "name": "Modix V4 BIG-120Z", + "inherits": "modix_v4_base", + "metadata": { "visible": true }, + "overrides": + { + "machine_depth": { "default_value": 600 }, + "machine_height": { "default_value": 1200 }, + "machine_name": { "default_value": "Modix BIG-120Z V4" }, + "machine_width": { "default_value": 600 } + } +} \ No newline at end of file diff --git a/resources/definitions/modix_v4_big180X.def.json b/resources/definitions/modix_v4_big180X.def.json new file mode 100644 index 0000000000..52b8d7a1c4 --- /dev/null +++ b/resources/definitions/modix_v4_big180X.def.json @@ -0,0 +1,13 @@ +{ + "version": 2, + "name": "Modix V4 BIG-180X", + "inherits": "modix_v4_base", + "metadata": { "visible": true }, + "overrides": + { + "machine_depth": { "default_value": 600 }, + "machine_height": { "default_value": 600 }, + "machine_name": { "default_value": "Modix BIG-180X V4" }, + "machine_width": { "default_value": 1800 } + } +} \ No newline at end of file diff --git a/resources/definitions/modix_v4_big60.def.json b/resources/definitions/modix_v4_big60.def.json new file mode 100644 index 0000000000..6ff69ce1bf --- /dev/null +++ b/resources/definitions/modix_v4_big60.def.json @@ -0,0 +1,13 @@ +{ + "version": 2, + "name": "Modix V4 BIG-60", + "inherits": "modix_v4_base", + "metadata": { "visible": true }, + "overrides": + { + "machine_depth": { "default_value": 600 }, + "machine_height": { "default_value": 660 }, + "machine_name": { "default_value": "Modix BIG-60 V4" }, + "machine_width": { "default_value": 600 } + } +} \ No newline at end of file diff --git a/resources/definitions/modix_v4_big_meter.def.json b/resources/definitions/modix_v4_big_meter.def.json new file mode 100644 index 0000000000..849807c27f --- /dev/null +++ b/resources/definitions/modix_v4_big_meter.def.json @@ -0,0 +1,13 @@ +{ + "version": 2, + "name": "Modix V4 BIG-Meter", + "inherits": "modix_v4_base", + "metadata": { "visible": true }, + "overrides": + { + "machine_depth": { "default_value": 1000 }, + "machine_height": { "default_value": 1000 }, + "machine_name": { "default_value": "Modix BIG-METER V4" }, + "machine_width": { "default_value": 1000 } + } +} \ No newline at end of file diff --git a/resources/definitions/monoprice_select_mini_v1.def.json b/resources/definitions/monoprice_select_mini_v1.def.json index 21497b13bc..8bbe9c0772 100644 --- a/resources/definitions/monoprice_select_mini_v1.def.json +++ b/resources/definitions/monoprice_select_mini_v1.def.json @@ -2,19 +2,17 @@ "version": 2, "name": "Monoprice Select Mini V1", "inherits": "malyan_m200", - "metadata": { + "metadata": + { + "visible": true, "author": "Brian Corbino, Tyler Gibson", "manufacturer": "Monoprice", "file_formats": "text/x-gcode", - "quality_definition": "malyan_m200", - "visible": true, - "machine_extruder_trains": - { - "0": "monoprice_select_mini_v1_extruder_0" - } - }, - - "overrides": { + "machine_extruder_trains": { "0": "monoprice_select_mini_v1_extruder_0" }, + "quality_definition": "malyan_m200" + }, + "overrides": + { "machine_name": { "default_value": "Monoprice Select Mini V1" } } -} +} \ No newline at end of file diff --git a/resources/definitions/monoprice_select_mini_v2.def.json b/resources/definitions/monoprice_select_mini_v2.def.json index 004de649f1..aced94320a 100644 --- a/resources/definitions/monoprice_select_mini_v2.def.json +++ b/resources/definitions/monoprice_select_mini_v2.def.json @@ -2,30 +2,25 @@ "version": 2, "name": "Monoprice Select Mini V2 (E3D)", "inherits": "malyan_m200", - "metadata": { + "metadata": + { + "visible": true, "author": "Tyler Gibson", "manufacturer": "Monoprice", "file_formats": "text/x-gcode", "has_machine_quality": true, "has_materials": true, - "preferred_quality_type": "normal", - "visible": true, - "machine_extruder_trains": - { - "0": "monoprice_select_mini_v2_extruder_0" - } - }, - - "overrides": { - "machine_name": { "default_value": "Monoprice Select Mini V2" }, - "machine_end_gcode": - { - "default_value": "G0 X0 Y120;(Stick out the part)\nM190 S0;(Turn off heat bed, don't wait.)\nG92 E10;(Set extruder to 10)\nG1 E7 F200;(retract 3mm)\nM104 S0;(Turn off nozzle, don't wait)\nG4 S300;(Delay 5 minutes)\nM107;(Turn off part fan)\nM84;(Turn off stepper motors.)" - }, + "machine_extruder_trains": { "0": "monoprice_select_mini_v2_extruder_0" }, + "preferred_quality_type": "normal" + }, + "overrides": + { "adhesion_type": { "default_value": "brim" }, + "machine_end_gcode": { "default_value": "G0 X0 Y120;(Stick out the part)\nM190 S0;(Turn off heat bed, don't wait.)\nG92 E10;(Set extruder to 10)\nG1 E7 F200;(retract 3mm)\nM104 S0;(Turn off nozzle, don't wait)\nG4 S300;(Delay 5 minutes)\nM107;(Turn off part fan)\nM84;(Turn off stepper motors.)" }, + "machine_name": { "default_value": "Monoprice Select Mini V2" }, + "material_print_temperature_layer_0": { "value": "material_print_temperature + 5" }, + "retraction_amount": { "default_value": 2.5 }, "retraction_combing": { "value": "'noskin'" }, - "retraction_amount" : { "default_value": 2.5}, - "retraction_speed" : { "default_value": 40}, - "material_print_temperature_layer_0": { "value": "material_print_temperature + 5" } + "retraction_speed": { "default_value": 40 } } -} +} \ No newline at end of file diff --git a/resources/definitions/monoprice_ultimate.def.json b/resources/definitions/monoprice_ultimate.def.json index 445347b54e..4ca119da17 100644 --- a/resources/definitions/monoprice_ultimate.def.json +++ b/resources/definitions/monoprice_ultimate.def.json @@ -2,47 +2,33 @@ "version": 2, "name": "Monoprice Ultimate", "inherits": "wanhao_d6", - "metadata": { + "metadata": + { "visible": true, "author": "Danny Tuppeny", "manufacturer": "Monoprice", "file_formats": "text/x-gcode", - "icon": "wanhao-icon.png", - "has_materials": true, "platform": "wanhao_200_200_platform.obj", - "platform_texture": "Wanhaobackplate.png", - "machine_extruder_trains": { - "0": "wanhao_d6_extruder_0" - }, - "platform_offset": [0, -28, 0] + "has_materials": true, + "icon": "wanhao-icon.png", + "machine_extruder_trains": { "0": "wanhao_d6_extruder_0" }, + "platform_offset": [ + 0, + -28, + 0 + ], + "platform_texture": "Wanhaobackplate.png" }, - "overrides": { - "machine_name": { - "default_value": "Monoprice Ultimate" - }, - "machine_max_acceleration_x": { - "default_value": 3000 - }, - "machine_max_acceleration_y": { - "default_value": 3000 - }, - "machine_max_acceleration_z": { - "default_value": 100 - }, - "machine_max_acceleration_e": { - "default_value": 500 - }, - "machine_acceleration": { - "default_value": 800 - }, - "machine_max_jerk_xy": { - "default_value": 10.0 - }, - "machine_max_jerk_z": { - "default_value": 0.4 - }, - "machine_max_jerk_e": { - "default_value": 1.0 - } + "overrides": + { + "machine_acceleration": { "default_value": 800 }, + "machine_max_acceleration_e": { "default_value": 500 }, + "machine_max_acceleration_x": { "default_value": 3000 }, + "machine_max_acceleration_y": { "default_value": 3000 }, + "machine_max_acceleration_z": { "default_value": 100 }, + "machine_max_jerk_e": { "default_value": 1.0 }, + "machine_max_jerk_xy": { "default_value": 10.0 }, + "machine_max_jerk_z": { "default_value": 0.4 }, + "machine_name": { "default_value": "Monoprice Ultimate" } } -} +} \ No newline at end of file diff --git a/resources/definitions/mp_mini_delta.def.json b/resources/definitions/mp_mini_delta.def.json index eda45bb413..fd6ddf180e 100644 --- a/resources/definitions/mp_mini_delta.def.json +++ b/resources/definitions/mp_mini_delta.def.json @@ -1,72 +1,61 @@ -{ - "version": 2, - "name": "MP Mini Delta", - "inherits": "fdmprinter", - "metadata": { - "author": "MPMD V1 Facebook Group", - "manufacturer": "Monoprice", - "file_formats": "text/x-gcode", - "platform": "mp_mini_delta_platform.3mf", - "supports_usb_connection": true, - "has_machine_quality": false, - "visible": true, - "platform_offset": [0, 0, 0], - "has_materials": true, - "has_variants": false, - "has_machine_materials": false, - "has_variant_materials": false, - "preferred_quality_type": "normal", - "machine_extruder_trains": - { - "0": "mp_mini_delta_extruder_0" - } - }, - - "overrides": { - "machine_start_gcode": - { - "default_value": ";MPMD V1 Basic Calibration Tutorial: \n; https://www.thingiverse.com/thing:3892011 \n; \n; If you want to put calibration values in your \n; Start Gcode, put them here. \n; \n;If on stock firmware, at minimum, consider adding \n;M665 R here since there is a firmware bug. \n; \n; Calibration part ends here \n; \nG90 ; switch to absolute positioning \nG92 E0 ; reset extrusion distance \nG1 E20 F200 ; purge 20mm of filament to prime nozzle. \nG92 E0 ; reset extrusion distance \nG4 S5 ; Pause for 5 seconds to allow time for removing extruded filament \nG28 ; start from home position \nG1 E-6 F900 ; retract 6mm of filament before starting the bed leveling process \nG92 E0 ; reset extrusion distance \nG4 S5 ; pause for 5 seconds to allow time for removing extruded filament \nG29 P2 Z0.28 ; Auto-level ; ADJUST Z higher or lower to set first layer height. Start with 0.02 adjustments. \nG1 Z30 ; raise Z 30mm to prepare for priming the nozzle \nG1 E5 F200 ; extrude 5mm of filament to help prime the nozzle just prior to the start of the print \nG92 E0 ; reset extrusion distance \nG4 S5 ; pause for 5 seconds to allow time for cleaning the nozzle and build plate if needed " - }, - "machine_end_gcode": - { - "default_value": "M107; \nM104 S0; turn off hotend heater \nM140 S0; turn off bed heater \nG91; Switch to use Relative Coordinates \nG1 E-2 F300; retract the filament a bit before lifting the nozzle to release some of the pressure \nG1 Z5 E-5 F4800; move nozzle up a bit and retract filament even more \nG28 X0; return to home positions so the nozzle is out of the way \nM84; turn off stepper motors \nG90; switch to absolute positioning \nM82; absolute extrusion mode" - }, - "machine_width": { "default_value": 110 }, - "machine_depth": { "default_value": 110 }, - "machine_height": { "default_value": 120 }, - "machine_heated_bed": { "default_value": true }, - "machine_shape": { "default_value": "elliptic" }, - "machine_center_is_zero": { "default_value": true }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "layer_height": { - "default_value": 0.14 - }, - "layer_height_0": { - "default_value": 0.21 - }, - "material_bed_temperature": { "value": 40 }, - "line_width": { "value": "round(machine_nozzle_size, 2)" }, - "material_print_temperature_layer_0": { "value": "material_print_temperature" }, - "material_bed_temperature_layer_0": { "value": "material_bed_temperature" }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_max_feedrate_x": { "default_value": 150 }, - "machine_max_feedrate_y": { "default_value": 150 }, - "machine_max_feedrate_z": { "default_value": 150 }, - "machine_max_feedrate_e": { "default_value": 50 }, - "machine_max_acceleration_x": { "default_value": 800 }, - "machine_max_acceleration_y": { "default_value": 800 }, - "machine_max_acceleration_z": { "default_value": 800 }, - "machine_max_acceleration_e": { "default_value": 10000 }, - "machine_acceleration": { "default_value": 3000 }, - "machine_max_jerk_xy": { "default_value": 20 }, - "machine_max_jerk_z": { "default_value": 20 }, - "machine_max_jerk_e": { "default_value": 5}, - "retraction_amount": { "default_value": 4 }, - "retraction_speed": { "default_value": 50 }, - "retraction_hop_enabled": { "default_value": false }, - "retract_at_layer_change": { "default_value": true }, - "coasting_enable": { "default_value": true } - } -} +{ + "version": 2, + "name": "MP Mini Delta", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "MPMD V1 Facebook Group", + "manufacturer": "Monoprice", + "file_formats": "text/x-gcode", + "platform": "mp_mini_delta_platform.3mf", + "has_machine_materials": false, + "has_machine_quality": false, + "has_materials": true, + "has_variant_materials": false, + "has_variants": false, + "machine_extruder_trains": { "0": "mp_mini_delta_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ], + "preferred_quality_type": "normal", + "supports_usb_connection": true + }, + "overrides": + { + "coasting_enable": { "default_value": true }, + "layer_height": { "default_value": 0.14 }, + "layer_height_0": { "default_value": 0.21 }, + "line_width": { "value": "round(machine_nozzle_size, 2)" }, + "machine_acceleration": { "default_value": 3000 }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 110 }, + "machine_end_gcode": { "default_value": "M107; \nM104 S0; turn off hotend heater \nM140 S0; turn off bed heater \nG91; Switch to use Relative Coordinates \nG1 E-2 F300; retract the filament a bit before lifting the nozzle to release some of the pressure \nG1 Z5 E-5 F4800; move nozzle up a bit and retract filament even more \nG28 X0; return to home positions so the nozzle is out of the way \nM84; turn off stepper motors \nG90; switch to absolute positioning \nM82; absolute extrusion mode" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 120 }, + "machine_max_acceleration_e": { "default_value": 10000 }, + "machine_max_acceleration_x": { "default_value": 800 }, + "machine_max_acceleration_y": { "default_value": 800 }, + "machine_max_acceleration_z": { "default_value": 800 }, + "machine_max_feedrate_e": { "default_value": 50 }, + "machine_max_feedrate_x": { "default_value": 150 }, + "machine_max_feedrate_y": { "default_value": 150 }, + "machine_max_feedrate_z": { "default_value": 150 }, + "machine_max_jerk_e": { "default_value": 5 }, + "machine_max_jerk_xy": { "default_value": 20 }, + "machine_max_jerk_z": { "default_value": 20 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_shape": { "default_value": "elliptic" }, + "machine_start_gcode": { "default_value": ";MPMD V1 Basic Calibration Tutorial: \n; https://www.thingiverse.com/thing:3892011 \n; \n; If you want to put calibration values in your \n; Start Gcode, put them here. \n; \n;If on stock firmware, at minimum, consider adding \n;M665 R here since there is a firmware bug. \n; \n; Calibration part ends here \n; \nG90 ; switch to absolute positioning \nG92 E0 ; reset extrusion distance \nG1 E20 F200 ; purge 20mm of filament to prime nozzle. \nG92 E0 ; reset extrusion distance \nG4 S5 ; Pause for 5 seconds to allow time for removing extruded filament \nG28 ; start from home position \nG1 E-6 F900 ; retract 6mm of filament before starting the bed leveling process \nG92 E0 ; reset extrusion distance \nG4 S5 ; pause for 5 seconds to allow time for removing extruded filament \nG29 P2 Z0.28 ; Auto-level ; ADJUST Z higher or lower to set first layer height. Start with 0.02 adjustments. \nG1 Z30 ; raise Z 30mm to prepare for priming the nozzle \nG1 E5 F200 ; extrude 5mm of filament to help prime the nozzle just prior to the start of the print \nG92 E0 ; reset extrusion distance \nG4 S5 ; pause for 5 seconds to allow time for cleaning the nozzle and build plate if needed " }, + "machine_width": { "default_value": 110 }, + "material_bed_temperature": { "value": 40 }, + "material_bed_temperature_layer_0": { "value": "material_bed_temperature" }, + "retract_at_layer_change": { "default_value": true }, + "retraction_amount": { "default_value": 4 }, + "retraction_hop_enabled": { "default_value": false }, + "retraction_speed": { "default_value": 50 } + } +} \ No newline at end of file diff --git a/resources/definitions/mp_mini_delta_v2.def.json b/resources/definitions/mp_mini_delta_v2.def.json index 30c7cb2823..12055a94ca 100644 --- a/resources/definitions/mp_mini_delta_v2.def.json +++ b/resources/definitions/mp_mini_delta_v2.def.json @@ -1,51 +1,46 @@ -{ - "version": 2, - "name": "MP Mini Delta V2", - "inherits": "fdmprinter", - "metadata": { - "author": "mpminidelta subreddit", - "manufacturer": "Monoprice", - "file_formats": "text/x-gcode", - "platform": "mp_mini_delta_platform.3mf", - "supports_usb_connection": true, - "has_machine_quality": false, - "visible": true, - "platform_offset": [0, 0, 0], - "has_materials": true, - "has_variants": false, - "has_machine_materials": false, - "has_variant_materials": false, - "preferred_quality_type": "normal", - "machine_extruder_trains": - { - "0": "mp_mini_delta_v2_extruder_0" - } - }, - - "overrides": { - "machine_start_gcode": - { - "default_value": ";(**** start.gcode for MP Mini Delta V2****)\nG21\nG90\nM82\nM107\nM104 S170\nG28 X0 Y0\nG28 Z0\nG29 Z0.4\nG1 Z15 F300\nM109 S{material_print_temperature_layer_0}\nG92 E0\nG1 F200 E3\nG92 E0\nG1 F2000\n" - }, - "machine_end_gcode": { - "default_value": ";(**** end.gcode for MP Mini Delta V2****)\nG28;(Stick out the part)\nM190 S0;(Turn off heat bed, don't wait.)\nG92 E10;(Set extruder to 10)\nG1 E7 F200;(retract 3mm)\nM104 S0;(Turn off nozzle, don't wait)\nG4 S300;(Delay 5 minutes)\nM107;(Turn off part fan)\nM84;(Turn off stepper motors.)" - }, - "material_print_temp_prepend":{"default_value":false}, - "material_bed_temperature": { "value": 40 }, - "machine_width": { "default_value": 110 }, - "machine_depth": { "default_value": 110 }, - "machine_height": { "default_value": 120 }, - "machine_heated_bed": { "default_value": true }, - "machine_shape": { "default_value": "elliptic" }, - "machine_center_is_zero": { "default_value": true }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "line_width": { "value": "round(machine_nozzle_size, 2)" }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "retraction_amount": { "default_value": 5 }, - "retraction_speed": { "default_value": 28 }, - "retraction_hop_enabled": { "default_value": false }, - "retract_at_layer_change": { "default_value": true } - } -} +{ + "version": 2, + "name": "MP Mini Delta V2", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "mpminidelta subreddit", + "manufacturer": "Monoprice", + "file_formats": "text/x-gcode", + "platform": "mp_mini_delta_platform.3mf", + "has_machine_materials": false, + "has_machine_quality": false, + "has_materials": true, + "has_variant_materials": false, + "has_variants": false, + "machine_extruder_trains": { "0": "mp_mini_delta_v2_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ], + "preferred_quality_type": "normal", + "supports_usb_connection": true + }, + "overrides": + { + "line_width": { "value": "round(machine_nozzle_size, 2)" }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 110 }, + "machine_end_gcode": { "default_value": ";(**** end.gcode for MP Mini Delta V2****)\nG28;(Stick out the part)\nM190 S0;(Turn off heat bed, don't wait.)\nG92 E10;(Set extruder to 10)\nG1 E7 F200;(retract 3mm)\nM104 S0;(Turn off nozzle, don't wait)\nG4 S300;(Delay 5 minutes)\nM107;(Turn off part fan)\nM84;(Turn off stepper motors.)" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 120 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_shape": { "default_value": "elliptic" }, + "machine_start_gcode": { "default_value": ";(**** start.gcode for MP Mini Delta V2****)\nG21\nG90\nM82\nM107\nM104 S170\nG28 X0 Y0\nG28 Z0\nG29 Z0.4\nG1 Z15 F300\nM109 S{material_print_temperature_layer_0}\nG92 E0\nG1 F200 E3\nG92 E0\nG1 F2000\n" }, + "machine_width": { "default_value": 110 }, + "material_bed_temperature": { "value": 40 }, + "material_print_temp_prepend": { "default_value": false }, + "retract_at_layer_change": { "default_value": true }, + "retraction_amount": { "default_value": 5 }, + "retraction_hop_enabled": { "default_value": false }, + "retraction_speed": { "default_value": 28 } + } +} \ No newline at end of file diff --git a/resources/definitions/nps.def.json b/resources/definitions/nps.def.json new file mode 100644 index 0000000000..633cf86b77 --- /dev/null +++ b/resources/definitions/nps.def.json @@ -0,0 +1,61 @@ +{ + "version": 2, + "name": "nps", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Naxe", + "manufacturer": "Naxe", + "file_formats": "text/x-gcode", + "platform": "npscura.stl", + "has_machine_quality": true, + "has_materials": true, + "machine_extruder_trains": { "0": "nps_extruder_0" }, + "platform_offset": [ + -212, + -83, + 215 + ] + }, + "overrides": + { + "adhesion_type": { "default_value": "none" }, + "fill_outline_gaps": { "default_value": true }, + "infill_sparse_density": { "default_value": 25 }, + "layer_height": { "default_value": 0.1 }, + "layer_height_0": { "default_value": 0.2 }, + "machine_acceleration": { "default_value": 1000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84\n" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-38, 30], + [38, 30], + [38, -40], + [-38, -40] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 300 }, + "machine_max_acceleration_z": { "default_value": 500 }, + "machine_max_feedrate_e": { "default_value": 60 }, + "machine_max_feedrate_z": { "default_value": 20 }, + "machine_max_jerk_e": { "default_value": 5 }, + "machine_max_jerk_xy": { "default_value": 12 }, + "machine_max_jerk_z": { "default_value": 0.5 }, + "machine_name": { "default_value": "NAXE NP-S" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_start_gcode": { "default_value": "G28 X Y\nG1 Y10\nM104 S{print_temperature}\nM190 S{print_bed_temperature}\nG28\nG4 S5\nG34\nG29 E0\nG21\nG90\nM83\nG1 X6 Y20 F7200\nG1 Z0.2\nM109 S{print_temperature}\nG1 X10 Y20 Z0.2 F5000.0\nG1 X10 Y200.0 Z0.2 F900.0 E10\nG92 E0.0\nM82\nM117 Printing\n" }, + "machine_width": { "default_value": 300 }, + "material_diameter": { "default_value": 1.75 }, + "retract_at_layer_change": { "default_value": true }, + "retraction_amount": { "default_value": 0.2 }, + "retraction_combing_max_distance": { "default_value": 200 }, + "retraction_speed": { "default_value": 45 } + } +} \ No newline at end of file diff --git a/resources/definitions/nwa3d_a31.def.json b/resources/definitions/nwa3d_a31.def.json index fef44ac16b..5ab4fb1bfe 100644 --- a/resources/definitions/nwa3d_a31.def.json +++ b/resources/definitions/nwa3d_a31.def.json @@ -1,40 +1,35 @@ { - "name": "Nwa3D A31", "version": 2, + "name": "Nwa3D A31", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "DragonJe", "manufacturer": "Nwa 3D LLC", "file_formats": "text/x-gcode", - "platform_offset": [0, 0, 0], + "has_machine_quality": true, "has_materials": true, "has_variants": true, - "variants_name": "Nozzle Size", - "preferred_variant_name": "Standard 0.4mm", - "preferred_quality_type": "normal", - "has_machine_quality": true, + "machine_extruder_trains": { "0": "nwa3d_a31_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ], "preferred_material": "generic_pla", - "machine_extruder_trains": - { - "0": "nwa3d_a31_extruder_0" - } + "preferred_quality_type": "normal", + "preferred_variant_name": "Standard 0.4mm", + "variants_name": "Nozzle Size" }, - - "overrides": { - "machine_name": { - "default_value": "NWA3D A31" - }, - "machine_width": { - "default_value": 300 - }, - "machine_height": { - "default_value": 400 - }, - "machine_depth": { - "default_value": 300 - }, - "machine_head_with_fans_polygon": { + "overrides": + { + "gantry_height": { "value": "30" }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\n ; Retract the filament\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ [-30, 34], [-30, -32], @@ -42,23 +37,11 @@ [30, 34] ] }, - "gantry_height": { - "value": "30" - }, - "machine_heated_bed": { - "default_value": true - }, - "material_diameter": { - "default_value": 1.75 - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G28 ; Home\nG1 Z15.0 F6000 ; Move Z axis up 15mm\n ; Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\n ; Retract the filament\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "NWA3D A31" }, + "machine_start_gcode": { "default_value": "G28 ; Home\nG1 Z15.0 F6000 ; Move Z axis up 15mm\n ; Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" }, + "machine_width": { "default_value": 300 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/definitions/nwa3d_a5.def.json b/resources/definitions/nwa3d_a5.def.json index 8c6b53b81e..047b47b2fb 100644 --- a/resources/definitions/nwa3d_a5.def.json +++ b/resources/definitions/nwa3d_a5.def.json @@ -1,38 +1,33 @@ { - "name": "Nwa3D A5", "version": 2, + "name": "Nwa3D A5", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "DragonJe", "manufacturer": "Nwa 3D LLC", "file_formats": "text/x-gcode", - "platform_offset": [0, 0, 0], + "has_machine_quality": true, "has_materials": true, "has_variants": false, - "preferred_quality_type": "normal", - "has_machine_quality": true, + "machine_extruder_trains": { "0": "nwa3d_a5_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ], "preferred_material": "generic_pla", - "machine_extruder_trains": - { - "0": "nwa3d_a5_extruder_0" - } + "preferred_quality_type": "normal" }, - - "overrides": { - "machine_name": { - "default_value": "NWA3D A5" - }, - "machine_width": { - "default_value": 125 - }, - "machine_height": { - "default_value": 100 - }, - "machine_depth": { - "default_value": 150 - }, - "machine_head_with_fans_polygon": { + "overrides": + { + "gantry_height": { "value": "30" }, + "machine_depth": { "default_value": 150 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\n ; Retract the filament\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" }, + "machine_gcode_flavor": { "default_value": "RepRap (RepRap)" }, + "machine_head_with_fans_polygon": + { "default_value": [ [-30, 34], [-30, -32], @@ -40,23 +35,11 @@ [30, 34] ] }, - "gantry_height": { - "value": "30" - }, - "machine_heated_bed": { - "default_value": false - }, - "material_diameter": { - "default_value": 1.75 - }, - "machine_gcode_flavor": { - "default_value": "RepRap (RepRap)" - }, - "machine_start_gcode": { - "default_value": "G28 ; Home\nG1 Z15.0 F6000 ; Move Z axis up 15mm\n ; Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\n ; Retract the filament\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" - } + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 100 }, + "machine_name": { "default_value": "NWA3D A5" }, + "machine_start_gcode": { "default_value": "G28 ; Home\nG1 Z15.0 F6000 ; Move Z axis up 15mm\n ; Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" }, + "machine_width": { "default_value": 125 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/definitions/ord.def.json b/resources/definitions/ord.def.json index 0701133e54..d059ad0c82 100644 --- a/resources/definitions/ord.def.json +++ b/resources/definitions/ord.def.json @@ -1,8 +1,9 @@ { - "name": "RoVa3D", "version": 2, + "name": "RoVa3D", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "manufacturer": "ORD Solutions", "file_formats": "text/x-gcode", @@ -14,20 +15,24 @@ "3": "ord_extruder_3", "4": "ord_extruder_4" }, - "platform_offset": [ 0, 0, 0] + "platform_offset": [ + 0, + 0, + 0 + ] }, - - "overrides": { - "prime_tower_size": { "default_value": 7.0710678118654755 }, + "overrides": + { "infill_sparse_density": { "default_value": 15 }, "layer_height": { "default_value": 0.3 }, - "machine_extruder_count": { "default_value": 5 }, - "machine_heated_bed": { "default_value": true }, "machine_center_is_zero": { "default_value": false }, - "machine_height": { "default_value": 200 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_depth": { "default_value": 250 }, + "machine_extruder_count": { "default_value": 5 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "RoVa3D" }, "machine_width": { "default_value": 215 }, - "machine_name": { "default_value": "RoVa3D" } + "prime_tower_size": { "default_value": 7.0710678118654755 } } -} +} \ No newline at end of file diff --git a/resources/definitions/pbr3d_g1.def.json b/resources/definitions/pbr3d_g1.def.json index fbe1d5bfc6..a344047772 100644 --- a/resources/definitions/pbr3d_g1.def.json +++ b/resources/definitions/pbr3d_g1.def.json @@ -2,44 +2,30 @@ "version": 2, "name": "PBR 3D Gen-I", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Kapil H. Sonone, Prof. Bahubali P. Fuladi", "manufacturer": "PBR Research", "file_formats": "text/x-gcode", "platform": "pbr3d_g1_buildplate.stl", - "platform_offset": [0, -5, 0], - "machine_extruder_trains": - { - "0": "pbr3d_g1_extruder_0" - } + "machine_extruder_trains": { "0": "pbr3d_g1_extruder_0" }, + "platform_offset": [ + 0, + -5, + 0 + ] }, - - "overrides": { + "overrides": + { + "gantry_height": { "value": "200" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\n;Retract the Filament\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200 }, "machine_name": { "default_value": "PBR 3D Gen-I" }, - "machine_heated_bed": { - "default_value": true - }, - "machine_width": { - "default_value": 200 - }, - "machine_height": { - "default_value": 200 - }, - "machine_depth": { - "default_value": 200 - }, - "machine_center_is_zero": { - "default_value": false - }, - "gantry_height": { - "value": "200" - }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F6000 ;Move the Platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\n;Retract the Filament\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84" - } + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F6000 ;Move the Platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" }, + "machine_width": { "default_value": 200 } } -} +} \ No newline at end of file diff --git a/resources/definitions/peopoly_moai.def.json b/resources/definitions/peopoly_moai.def.json index cbc668dc74..9ce1438fe3 100644 --- a/resources/definitions/peopoly_moai.def.json +++ b/resources/definitions/peopoly_moai.def.json @@ -2,264 +2,184 @@ "version": 2, "name": "Peopoly Moai", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Peopoly", "manufacturer": "Peopoly", "file_formats": "text/x-gcode", + "platform": "moai.obj", "has_machine_quality": true, "has_materials": false, - "platform": "moai.obj", - "platform_texture": "moai.jpg", - "machine_extruder_trains": { - "0": "peopoly_moai_extruder_0" - } + "machine_extruder_trains": { "0": "peopoly_moai_extruder_0" }, + "platform_texture": "moai.jpg" }, - - "overrides": { - "machine_name": { - "default_value": "Moai" - }, - "machine_width": { - "default_value": 130 - }, - "machine_height": { - "default_value": 180 - }, - "machine_depth": { - "default_value": 130 - }, - "machine_head_with_fans_polygon": + "overrides": + { + "acceleration_enabled": { - "default_value": [ - [ -20, 10 ], - [ -20, -10 ], - [ 10, 10 ], - [ 10, -10 ] - ] + "enabled": false, + "value": "False" }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" + "adaptive_layer_height_enabled": + { + "enabled": false, + "value": "False" }, - "machine_start_gcode": { - "default_value": "G28 ;Home" + "adhesion_type": { "value": "'none'" }, + "bottom_thickness": { "minimum_value_warning": "resolveOrValue('layer_height')" }, + "bridge_settings_enabled": + { + "enabled": false, + "value": "False" }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG28 X0 Y0\nM84" + "coasting_enable": + { + "enabled": false, + "value": "False" }, - "line_width": { - "minimum_value_warning": "machine_nozzle_size" + "cool_fan_enabled": + { + "enabled": false, + "value": "False" }, - "wall_line_width": { - "minimum_value_warning": "machine_nozzle_size" + "cool_fan_full_at_height": { "enabled": false }, + "cool_fan_full_layer": { "enabled": false }, + "cool_fan_speed_min": + { + "enabled": false, + "value": 0 }, - "wall_line_width_x": { - "minimum_value_warning": "machine_nozzle_size" + "cool_lift_head": + { + "enabled": false, + "value": "False" }, - "skin_line_width": { - "minimum_value_warning": "machine_nozzle_size" + "cool_min_layer_time": + { + "enabled": false, + "value": 0 }, - "infill_line_width": { - "minimum_value_warning": "machine_nozzle_size" + "cool_min_layer_time_fan_speed_max": { "enabled": false }, + "cool_min_speed": + { + "enabled": false, + "value": 0 }, - "skirt_brim_line_width": { - "minimum_value_warning": "machine_nozzle_size" + "draft_shield_enabled": + { + "enabled": false, + "value": "False" }, - "layer_height": { + "expand_skins_expand_distance": { "value": "( wall_line_width_0 + (wall_line_count - 1) * wall_line_width_x ) / 2" }, + "flow_rate_extrusion_offset_factor": { "enabled": false }, + "flow_rate_max_extrusion_offset": { "enabled": false }, + "infill_angles": { "value": "[0, 90]" }, + "infill_line_width": { "minimum_value_warning": "machine_nozzle_size" }, + "infill_overlap": { "value": 15 }, + "infill_pattern": { "value": "'lines'" }, + "infill_sparse_density": { "value": 70 }, + "infill_sparse_thickness": { "maximum_value_warning": "0.5" }, + "infill_wipe_dist": { "value": 0 }, + "ironing_enabled": + { + "enabled": false, + "value": "False" + }, + "layer_height": + { "maximum_value_warning": "0.5", "minimum_value_warning": "0.02" }, - "layer_height_0": { + "layer_height_0": + { "maximum_value_warning": "0.5", "minimum_value_warning": "0.02", "value": "0.1" }, - "top_bottom_thickness": { - "minimum_value_warning": "0.1", - "value": "0.1" + "line_width": { "minimum_value_warning": "machine_nozzle_size" }, + "machine_depth": { "default_value": 130 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG28 X0 Y0\nM84" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-20, 10], + [-20, -10], + [10, 10], + [10, -10] + ] }, - "top_thickness": { - "minimum_value_warning": "resolveOrValue('layer_height')" - }, - "bottom_thickness": { - "minimum_value_warning": "resolveOrValue('layer_height')" - }, - "infill_sparse_thickness": { - "maximum_value_warning": "0.5" - }, - "speed_print": { - "maximum_value_warning": "300" - }, - "speed_infill": { - "maximum_value_warning": "300" - }, - "speed_wall": { - "maximum_value_warning": "300", - "value": "speed_print" - }, - "speed_wall_0": { - "maximum_value_warning": "300" - }, - "speed_wall_x": { - "maximum_value_warning": "300", - "value": "speed_print" - }, - "speed_topbottom": { - "maximum_value_warning": "300", - "value": "speed_print" - }, - "speed_travel": { - "value": 150 - }, - "speed_travel_layer_0": { - "value": 150 - }, - "speed_layer_0": { - "value": 5 - }, - "speed_slowdown_layers": { - "value": 3 - }, - "infill_overlap": { - "value": 15 - }, - "adhesion_type": { - "value": "'none'" - }, - "print_sequence": { - "enabled": false - }, - "support_enable": { - "enabled": false - }, - "machine_nozzle_temp_enabled": { - "value": "False" - }, - "material_bed_temperature": { - "enabled": false - }, - "cool_fan_enabled": { + "machine_height": { "default_value": 180 }, + "machine_name": { "default_value": "Moai" }, + "machine_nozzle_temp_enabled": { "value": "False" }, + "machine_start_gcode": { "default_value": "G28 ;Home" }, + "machine_width": { "default_value": 130 }, + "material_bed_temperature": { "enabled": false }, + "material_flow": { "enabled": false }, + "material_flow_layer_0": { "enabled": false }, + "meshfix_maximum_deviation": { "value": "0.002" }, + "minimum_polygon_circumference": { "value": "0.1" }, + "print_sequence": { "enabled": false }, + "relative_extrusion": + { "enabled": false, "value": "False" }, - "cool_fan_speed_min": { - "enabled": false, - "value": 0 - }, - "retraction_enable": { - "enabled": false, - "value": "False" - }, - "retraction_combing": { - "enabled": false, - "value": "'off'" - }, - "retract_at_layer_change": { + "retract_at_layer_change": + { "enabled": false, "value": false }, - "cool_min_layer_time_fan_speed_max": { - "enabled": false + "retraction_combing": + { + "enabled": false, + "value": "'off'" }, - "cool_fan_full_at_height": { - "enabled": false + "retraction_enable": + { + "enabled": false, + "value": "False" }, - "cool_fan_full_layer": { - "enabled": false + "skin_line_width": { "minimum_value_warning": "machine_nozzle_size" }, + "skin_no_small_gaps_heuristic": { "value": "False" }, + "skin_outline_count": { "value": 0 }, + "skin_overlap": { "value": 5 }, + "skirt_brim_line_width": { "minimum_value_warning": "machine_nozzle_size" }, + "speed_infill": { "maximum_value_warning": "300" }, + "speed_layer_0": { "value": 5 }, + "speed_print": { "maximum_value_warning": "300" }, + "speed_slowdown_layers": { "value": 3 }, + "speed_topbottom": + { + "maximum_value_warning": "300", + "value": "speed_print" }, - "minimum_polygon_circumference": { + "speed_travel": { "value": 150 }, + "speed_travel_layer_0": { "value": 150 }, + "speed_wall": + { + "maximum_value_warning": "300", + "value": "speed_print" + }, + "speed_wall_0": { "maximum_value_warning": "300" }, + "speed_wall_x": + { + "maximum_value_warning": "300", + "value": "speed_print" + }, + "support_enable": { "enabled": false }, + "top_bottom_thickness": + { + "minimum_value_warning": "0.1", "value": "0.1" }, - "meshfix_maximum_deviation": { - "value": "0.002" - }, - "skin_outline_count": { - "value": 0 - }, - "wall_0_wipe_dist": { - "value": "machine_nozzle_size / 3" - }, - "wall_thickness": { - "value": "0.5" - }, - "infill_sparse_density": { - "value": 70 - }, - "infill_pattern": { - "value": "'lines'" - }, - "infill_angles": { - "value": "[0,90]" - }, - "cool_min_layer_time": { - "enabled": false, - "value": 0 - }, - "cool_min_speed": { - "enabled": false, - "value": 0 - }, - "cool_lift_head": { - "enabled": false, - "value": "False" - }, - "material_flow": { - "enabled": false - }, - "material_flow_layer_0": { - "enabled": false - }, - "draft_shield_enabled": { - "enabled": false, - "value": "False" - }, - "z_seam_corner": { - "value": "'z_seam_corner_none'" - }, - "z_seam_type": { - "value": "'shortest'" - }, - "skin_no_small_gaps_heuristic": { - "value": "False" - }, - "ironing_enabled": { - "enabled": false, - "value": "False" - }, - "skin_overlap": { - "value": 5 - }, - "infill_wipe_dist": { - "value": 0 - }, - "expand_skins_expand_distance": { - "value": "( wall_line_width_0 + (wall_line_count - 1) * wall_line_width_x ) / 2" - }, - "flow_rate_max_extrusion_offset": { - "enabled": false - }, - "flow_rate_extrusion_offset_factor": { - "enabled": false - }, - "adaptive_layer_height_enabled": { - "value": "False", - "enabled": false - }, - "bridge_settings_enabled": { - "value": "False", - "enabled": false - }, - "acceleration_enabled": { - "value": "False", - "enabled": false - }, - "relative_extrusion": { - "value": "False", - "enabled": false - }, - "coasting_enable": { - "value": "False", - "enabled": false - } + "top_thickness": { "minimum_value_warning": "resolveOrValue('layer_height')" }, + "wall_0_wipe_dist": { "value": "machine_nozzle_size / 3" }, + "wall_line_width": { "minimum_value_warning": "machine_nozzle_size" }, + "wall_line_width_x": { "minimum_value_warning": "machine_nozzle_size" }, + "wall_thickness": { "value": "0.5" }, + "z_seam_corner": { "value": "'z_seam_corner_none'" }, + "z_seam_type": { "value": "'shortest'" } } -} +} \ No newline at end of file diff --git a/resources/definitions/predator.def.json b/resources/definitions/predator.def.json index a8f4e56fe1..95f517d8d7 100644 --- a/resources/definitions/predator.def.json +++ b/resources/definitions/predator.def.json @@ -1,72 +1,67 @@ -{ - "version": 2, - "name": "Anycubic Predator", - "inherits": "fdmprinter", - "metadata": { - "author": "ksihota", - "manufacturer": "Anycubic", - "file_formats": "text/x-gcode", - "platform": "predator_platform.stl", - "platform_texture": "anycubic_predator.png", - "supports_usb_connection": true, - "visible": true, - "platform_offset": [0, 0, 0], - "has_materials": true, - "has_variants": false, - "has_machine_materials": false, - "has_variant_materials": false, - "has_machine_quality": true, - "quality_definition": "predator", - "preferred_quality_type": "normal", - "machine_extruder_trains": - { - "0": "predator_extruder_0" - } - }, - - "overrides": { - "machine_start_gcode": - { - "default_value": "G21 ;metric values \nG90 ;absolute positioning \nM82 ;set extruder to absolute mode \nM107 ;start with the fan off \nG28 ;Home \nG1 Z15.0 F1000;short move \nG92 E0 ;zero the extruded length \nG1 F200 E3 ;extrude 3mm of feed stock adjust so I don't have to remove any filament \nG92 E0 ;zero the extruded length again \nG1 F4000 ;move to bed \n;Put printing message on LCD screen \nM117 Printing... \n;G5; this is in order to resume on Power failure (only works on SD prints)" - }, - "machine_end_gcode": - { - "default_value": "M104 S0 ;extruder heater off \nM140 S0 ;heated bed heater off \nG91 ;relative positioning \nG92 E0 ;zero the extruded length \nG1 E-2 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure \nG92 E0 ;zero the extruded length \n;M107 ;fan off \nG1 Z+0.5 E-5 ;move Z up a bit and retract filament even more \n;G1 X0.0 Y0.0 Z455.0 F4500 \nG28 ;Home all axes (max endstops) \nG90 ;absolute positioning \n;M109 S60 ; wait for extruder temp to drop to 60 \n;M84 ;steppers off \n;M81 ;turn off printer" - }, - "gantry_height": { - "value": 455 - }, - "machine_width": { "default_value": 370 }, - "machine_depth": { "default_value": 370 }, - "machine_height": { "default_value": 455 }, - "machine_heated_bed": { "default_value": true }, - "machine_shape": { "default_value": "elliptic" }, - "machine_center_is_zero": { "default_value": true }, - "machine_nozzle_size": { - "default_value": 0.4, - "minimum_value": 0.15, - "maximum_value": 0.80 - }, - "line_width": { "value": "round(machine_nozzle_size * 0.875, 2)" }, - "material_print_temperature_layer_0": { "value": "material_print_temperature + 5" }, - "material_bed_temperature_layer_0": { "value": "material_bed_temperature + 5" }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_max_feedrate_x": { "default_value": 150 }, - "machine_max_feedrate_y": { "default_value": 150 }, - "machine_max_feedrate_z": { "default_value": 150 }, - "machine_max_feedrate_e": { "default_value": 50 }, - "machine_max_acceleration_x": { "default_value": 800 }, - "machine_max_acceleration_y": { "default_value": 800 }, - "machine_max_acceleration_z": { "default_value": 800 }, - "machine_max_acceleration_e": { "default_value": 10000 }, - "machine_acceleration": { "default_value": 3000 }, - "machine_max_jerk_xy": { "default_value": 20 }, - "machine_max_jerk_z": { "default_value": 20 }, - "machine_max_jerk_e": { "default_value": 5}, - "retraction_amount": { "default_value": 4 }, - "retraction_speed": { "default_value": 50 }, - "retraction_hop_enabled": { "default_value": false }, - "retract_at_layer_change": { "default_value": true }, - "coasting_enable": { "default_value": true } - } +{ + "version": 2, + "name": "Anycubic Predator", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "ksihota", + "manufacturer": "Anycubic", + "file_formats": "text/x-gcode", + "platform": "predator_platform.stl", + "has_machine_materials": false, + "has_machine_quality": true, + "has_materials": true, + "has_variant_materials": false, + "has_variants": false, + "machine_extruder_trains": { "0": "predator_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ], + "platform_texture": "anycubic_predator.png", + "preferred_quality_type": "normal", + "quality_definition": "predator", + "supports_usb_connection": true + }, + "overrides": + { + "coasting_enable": { "default_value": true }, + "gantry_height": { "value": 455 }, + "line_width": { "value": "round(machine_nozzle_size * 0.875, 2)" }, + "machine_acceleration": { "default_value": 3000 }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 370 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off \nM140 S0 ;heated bed heater off \nG91 ;relative positioning \nG92 E0 ;zero the extruded length \nG1 E-2 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure \nG92 E0 ;zero the extruded length \n;M107 ;fan off \nG1 Z+0.5 E-5 ;move Z up a bit and retract filament even more \n;G1 X0.0 Y0.0 Z455.0 F4500 \nG28 ;Home all axes (max endstops) \nG90 ;absolute positioning \n;M109 S60 ; wait for extruder temp to drop to 60 \n;M84 ;steppers off \n;M81 ;turn off printer" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 455 }, + "machine_max_acceleration_e": { "default_value": 10000 }, + "machine_max_acceleration_x": { "default_value": 800 }, + "machine_max_acceleration_y": { "default_value": 800 }, + "machine_max_acceleration_z": { "default_value": 800 }, + "machine_max_feedrate_e": { "default_value": 50 }, + "machine_max_feedrate_x": { "default_value": 150 }, + "machine_max_feedrate_y": { "default_value": 150 }, + "machine_max_feedrate_z": { "default_value": 150 }, + "machine_max_jerk_e": { "default_value": 5 }, + "machine_max_jerk_xy": { "default_value": 20 }, + "machine_max_jerk_z": { "default_value": 20 }, + "machine_nozzle_size": + { + "default_value": 0.4, + "maximum_value": 0.8, + "minimum_value": 0.15 + }, + "machine_shape": { "default_value": "elliptic" }, + "machine_start_gcode": { "default_value": "G21 ;metric values \nG90 ;absolute positioning \nM82 ;set extruder to absolute mode \nM107 ;start with the fan off \nG28 ;Home \nG1 Z15.0 F1000;short move \nG92 E0 ;zero the extruded length \nG1 F200 E3 ;extrude 3mm of feed stock adjust so I don't have to remove any filament \nG92 E0 ;zero the extruded length again \nG1 F4000 ;move to bed \n;Put printing message on LCD screen \nM117 Printing... \n;G5; this is in order to resume on Power failure (only works on SD prints)" }, + "machine_width": { "default_value": 370 }, + "material_bed_temperature_layer_0": { "value": "material_bed_temperature + 5" }, + "material_print_temperature_layer_0": { "value": "material_print_temperature + 5" }, + "retract_at_layer_change": { "default_value": true }, + "retraction_amount": { "default_value": 4 }, + "retraction_hop_enabled": { "default_value": false }, + "retraction_speed": { "default_value": 50 } + } } \ No newline at end of file diff --git a/resources/definitions/printrbot_play.def.json b/resources/definitions/printrbot_play.def.json index b1f7e72967..6f57c8a291 100644 --- a/resources/definitions/printrbot_play.def.json +++ b/resources/definitions/printrbot_play.def.json @@ -2,50 +2,52 @@ "version": 2, "name": "Printrbot Play", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Chris Pearson", "manufacturer": "Printrbot", "file_formats": "text/x-gcode", "platform": "printrbot_play.3mf", - "machine_extruder_trains": - { - "0": "printrbot_play_extruder_0" - } + "machine_extruder_trains": { "0": "printrbot_play_extruder_0" } }, - - "overrides": { - "machine_name": { "default_value": "Printrbot Play" }, - "machine_heated_bed": { "default_value": false }, - "machine_width": { "default_value": 100 }, - "machine_depth": { "default_value": 100 }, - "machine_height": { "default_value": 130 }, - "machine_center_is_zero": { "default_value": false }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "gantry_height": { "value": "55" }, "layer_height": { "default_value": 0.2 }, "layer_height_0": { "default_value": 0.3 }, - "retraction_amount": { "default_value": 0.7 }, - "retraction_speed": { "default_value": 45}, - "adhesion_type": { "default_value": "skirt" }, - "machine_head_with_fans_polygon": { "default_value": [[-32,999],[37,999],[37,-32],[-32,-32]] }, - "gantry_height": { "value": "55" }, - "speed_print": { "default_value": 50 }, - "machine_max_feedrate_x": {"default_value": 125}, - "machine_max_feedrate_y": {"default_value": 125}, - "machine_max_feedrate_z": { "default_value": 5 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 100 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 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_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-32, 999], + [37, 999], + [37, -32], + [-32, -32] + ] + }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 130 }, + "machine_max_acceleration_e": { "default_value": 10000 }, "machine_max_acceleration_x": { "default_value": 2000 }, "machine_max_acceleration_y": { "default_value": 2000 }, "machine_max_acceleration_z": { "default_value": 30 }, - "machine_max_acceleration_e": { "default_value": 10000 }, + "machine_max_feedrate_x": { "default_value": 125 }, + "machine_max_feedrate_y": { "default_value": 125 }, + "machine_max_feedrate_z": { "default_value": 5 }, + "machine_max_jerk_e": { "default_value": 5.0 }, "machine_max_jerk_xy": { "default_value": 20 }, "machine_max_jerk_z": { "default_value": 0.4 }, - "machine_max_jerk_e": { "default_value": 5.0 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM106 ;start with the fan on for filament cooling\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nG29 ;run auto bed leveling\nG1 Z15.0 F9000 ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E10 ;extrude 10mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 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" - }, - "speed_z_hop": {"default_value": 5} + "machine_name": { "default_value": "Printrbot Play" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM106 ;start with the fan on for filament cooling\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nG29 ;run auto bed leveling\nG1 Z15.0 F9000 ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E10 ;extrude 10mm 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": 100 }, + "retraction_amount": { "default_value": 0.7 }, + "retraction_speed": { "default_value": 45 }, + "speed_print": { "default_value": 50 }, + "speed_z_hop": { "default_value": 5 } } -} +} \ No newline at end of file diff --git a/resources/definitions/printrbot_play_heated.def.json b/resources/definitions/printrbot_play_heated.def.json index 7987f55010..846f2466a1 100644 --- a/resources/definitions/printrbot_play_heated.def.json +++ b/resources/definitions/printrbot_play_heated.def.json @@ -2,20 +2,18 @@ "version": 2, "name": "Printrbot Play (Heated Bed)", "inherits": "printrbot_play", - "metadata": { + "metadata": + { "visible": true, "author": "Chris Pearson", "manufacturer": "Printrbot", "file_formats": "text/x-gcode", - "machine_extruder_trains": - { - "0": "printrbot_play_heated_extruder_0" - } + "machine_extruder_trains": { "0": "printrbot_play_heated_extruder_0" } }, - - "overrides": { - "machine_name": { "default_value": "Printrbot Play (Heated Bed)" }, + "overrides": + { + "machine_depth": { "default_value": 203 }, "machine_heated_bed": { "default_value": true }, - "machine_depth": { "default_value": 203 } + "machine_name": { "default_value": "Printrbot Play (Heated Bed)" } } -} +} \ No newline at end of file diff --git a/resources/definitions/printrbot_simple.def.json b/resources/definitions/printrbot_simple.def.json index 23e60561ba..24d4de7da0 100644 --- a/resources/definitions/printrbot_simple.def.json +++ b/resources/definitions/printrbot_simple.def.json @@ -1,28 +1,29 @@ { - "version": 2, + "version": 2, "name": "Printrbot Simple", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Calvindog717", "manufacturer": "Printrbot", - "platform": "printrbot_simple_metal_platform.3mf", - "platform_offset": [0, -3.45, 0], "file_formats": "text/x-gcode", - "machine_extruder_trains": - { - "0": "printrbot_simple_extruder_0" - } + "platform": "printrbot_simple_metal_platform.3mf", + "machine_extruder_trains": { "0": "printrbot_simple_extruder_0" }, + "platform_offset": [ + 0, + -3.45, + 0 + ] }, - - "overrides": { - "machine_name": { "default_value": "Printrbot Simple" }, - "machine_heated_bed": { "default_value": false }, - "machine_width": { "default_value": 150 }, - "machine_height": { "default_value": 150 }, - "machine_depth": { "default_value": 140 }, + "overrides": + { "machine_center_is_zero": { "default_value": false }, - "machine_head_with_fans_polygon": { + "machine_depth": { "default_value": 140 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nM106 S0 ;fan off\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit\nG1 Z+1 E-5 F9000 ;move Z up a bit and retract even more\nG28 X0 Y0 ;home X/Y, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ [-49, 20], [-49, -99999], @@ -30,13 +31,10 @@ [55, -99999] ] }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - - "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 ;home X/Y\nG28 Z0 ;home Z\nG92 E0 ;zero the extruded length\nG29 ;initiate auto bed leveling sequence" - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nM106 S0 ;fan off\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit\nG1 Z+1 E-5 F9000 ;move Z up a bit and retract even more\nG28 X0 Y0 ;home X/Y, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning" - } + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 150 }, + "machine_name": { "default_value": "Printrbot Simple" }, + "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 ;home X/Y\nG28 Z0 ;home Z\nG92 E0 ;zero the extruded length\nG29 ;initiate auto bed leveling sequence" }, + "machine_width": { "default_value": 150 } } -} +} \ No newline at end of file diff --git a/resources/definitions/printrbot_simple_extended.def.json b/resources/definitions/printrbot_simple_extended.def.json index 433256b5f9..7cef98f274 100644 --- a/resources/definitions/printrbot_simple_extended.def.json +++ b/resources/definitions/printrbot_simple_extended.def.json @@ -1,43 +1,41 @@ { - "version": 2, + "version": 2, "name": "Printrbot Simple Metal Extended", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "samsector", "manufacturer": "Printrbot", - "platform": "printrbot_simple_metal_upgrade.3mf", - "platform_offset": [0, -0.3, 0], "file_formats": "text/x-gcode", - "machine_extruder_trains": - { - "0": "printrbot_simple_extended_extruder_0" - } + "platform": "printrbot_simple_metal_upgrade.3mf", + "machine_extruder_trains": { "0": "printrbot_simple_extended_extruder_0" }, + "platform_offset": [ + 0, + -0.3, + 0 + ] }, - - "overrides": { - "machine_name": { "default_value": "Printrbot Simple Metal Extended" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 250 }, - "machine_height": { "default_value": 235 }, - "machine_depth": { "default_value": 150 }, + "overrides": + { + "gantry_height": { "value": "99999" }, "machine_center_is_zero": { "default_value": false }, - "machine_head_with_fans_polygon": { + "machine_depth": { "default_value": 150 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nM106 S0 ;fan off\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit\nG1 Z+1 E-5 F9000 ;move Z up a bit and retract even more\nG28 X0 Y0 ;home X/Y, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ - [ 55, -20 ], - [ 55, 99999 ], - [ -49, 99999 ], - [ -49, -20 ] + [55, -20], + [55, 99999], + [-49, 99999], + [-49, -20] ] }, - "gantry_height": { "value": "99999" }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - - "machine_start_gcode": { - "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM106 ;start with the fan on\nG28 X0 Y0 ;home X/Y\nG28 Z0 ;home Z\nG92 E0 ;zero the extruded length\nG29 ;initiate auto bed leveling sequence\n;start cleaning sequance\nG1 X250 Y150 Z15 F4000\nG1 X250 Y150 Z0.30 F1000\nG1 X1 Y150 Z0.25 E15.0 F2000\nG1 X1 Y150 Z0.25 E14.0 F4000\nG1 X1 Y1 Z0.25 F16000\nG1 X1 Y1 Z0.25 E15.0 F4000\nG92 E0\nM107 ;start with the fan off\n;end cleaning sequance\n;G92 X132.4 Y20 ;correct bed origin (G29 changes it)" - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nM106 S0 ;fan off\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit\nG1 Z+1 E-5 F9000 ;move Z up a bit and retract even more\nG28 X0 Y0 ;home X/Y, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 235 }, + "machine_name": { "default_value": "Printrbot Simple Metal Extended" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM106 ;start with the fan on\nG28 X0 Y0 ;home X/Y\nG28 Z0 ;home Z\nG92 E0 ;zero the extruded length\nG29 ;initiate auto bed leveling sequence\n;start cleaning sequance\nG1 X250 Y150 Z15 F4000\nG1 X250 Y150 Z0.30 F1000\nG1 X1 Y150 Z0.25 E15.0 F2000\nG1 X1 Y150 Z0.25 E14.0 F4000\nG1 X1 Y1 Z0.25 F16000\nG1 X1 Y1 Z0.25 E15.0 F4000\nG92 E0\nM107 ;start with the fan off\n;end cleaning sequance\n;G92 X132.4 Y20 ;correct bed origin (G29 changes it)" }, + "machine_width": { "default_value": 250 } } -} +} \ No newline at end of file diff --git a/resources/definitions/printrbot_simple_makers_kit.def.json b/resources/definitions/printrbot_simple_makers_kit.def.json index 1223f2a4d9..6c68775172 100644 --- a/resources/definitions/printrbot_simple_makers_kit.def.json +++ b/resources/definitions/printrbot_simple_makers_kit.def.json @@ -2,24 +2,22 @@ "version": 2, "name": "Printrbot Simple Maker's Kit (1405)", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Timur Tabi", "manufacturer": "Printrbot", "file_formats": "text/x-gcode", - "machine_extruder_trains": - { - "0": "printrbot_simple_makers_kit_extruder_0" - } + "machine_extruder_trains": { "0": "printrbot_simple_makers_kit_extruder_0" } }, - - "overrides": { - "machine_name": { "default_value": "Printrbot Simple Maker's Kit (1405)" }, - "machine_heated_bed": { "default_value": false }, - "machine_width": { "default_value": 100 }, + "overrides": + { + "gantry_height": { "value": "1000" }, "machine_depth": { "default_value": 100 }, - "machine_height": { "default_value": 115 }, - "machine_head_with_fans_polygon": { + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nM106 S0 ;fan off\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit\nG1 Z+1 E-5 F9000 ;move Z up a bit and retract even more\nG28 X0 Y0 ;home X/Y, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ [-40, 1000], [-40, -10], @@ -27,14 +25,10 @@ [60, -10] ] }, - "gantry_height": { "value": "1000" }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - - "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 ;home X/Y\nG28 Z0 ;home Z\nG92 E0 ;zero the extruded length\nG29 ;initiate auto bed leveling sequence" - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nM106 S0 ;fan off\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit\nG1 Z+1 E-5 F9000 ;move Z up a bit and retract even more\nG28 X0 Y0 ;home X/Y, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning" - } + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 115 }, + "machine_name": { "default_value": "Printrbot Simple Maker's Kit (1405)" }, + "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 ;home X/Y\nG28 Z0 ;home Z\nG92 E0 ;zero the extruded length\nG29 ;initiate auto bed leveling sequence" }, + "machine_width": { "default_value": 100 } } -} +} \ No newline at end of file diff --git a/resources/definitions/prusa_i3.def.json b/resources/definitions/prusa_i3.def.json index 9ad727fde8..5e7777f343 100644 --- a/resources/definitions/prusa_i3.def.json +++ b/resources/definitions/prusa_i3.def.json @@ -2,36 +2,24 @@ "version": 2, "name": "Prusa i3", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Quillford", "manufacturer": "Prusa3D", "file_formats": "text/x-gcode", "platform": "prusai3_platform.3mf", - "machine_extruder_trains": - { - "0": "prusa_i3_extruder_0" - } + "machine_extruder_trains": { "0": "prusa_i3_extruder_0" } }, - - "overrides": { - "machine_name": { "default_value": "Prusa i3" }, - "machine_heated_bed": { - "default_value": true - }, - "machine_width": { - "default_value": 200 - }, - "machine_height": { - "default_value": 200 - }, - "machine_depth": { - "default_value": 200 - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_head_with_fans_polygon": { + "overrides": + { + "gantry_height": { "value": "55" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 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_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ [-75, -18], [-75, 35], @@ -39,17 +27,10 @@ [18, -18] ] }, - "gantry_height": { - "value": "55" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "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 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 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_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "Prusa i3" }, + "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 E3 ;extrude 3mm 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": 200 } } } \ No newline at end of file diff --git a/resources/definitions/prusa_i3_mk2.def.json b/resources/definitions/prusa_i3_mk2.def.json index b38d9be910..29737f9246 100644 --- a/resources/definitions/prusa_i3_mk2.def.json +++ b/resources/definitions/prusa_i3_mk2.def.json @@ -2,46 +2,48 @@ "version": 2, "name": "Prusa i3 Mk2", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Apsu, Nounours2099", "manufacturer": "Prusa3D", "file_formats": "text/x-gcode", "platform": "prusai3_platform.3mf", "has_materials": true, - "machine_extruder_trains": - { - "0": "prusa_i3_mk2_extruder_0" - } + "machine_extruder_trains": { "0": "prusa_i3_mk2_extruder_0" } }, - - "overrides": { - "machine_name": { "default_value": "Prusa i3 Mk2" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 250 }, - "machine_height": { "default_value": 200 }, - "machine_depth": { "default_value": 210 }, - "machine_center_is_zero": { "default_value": false }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "gantry_height": { "value": "28" }, "layer_height": { "default_value": 0.1 }, "layer_height_0": { "default_value": 0.15 }, - "retraction_amount": { "default_value": 0.8 }, - "retraction_speed": { "default_value": 35 }, - "adhesion_type": { "default_value": "skirt" }, - "machine_head_with_fans_polygon": { "default_value": [[-31,31],[34,31],[34,-40],[-31,-40]] }, - "gantry_height": { "value": "28" }, - "machine_max_feedrate_z": { "default_value": 12 }, - "machine_max_feedrate_e": { "default_value": 120 }, - "machine_max_acceleration_z": { "default_value": 500 }, "machine_acceleration": { "default_value": 1000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 210 }, + "machine_end_gcode": { "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y210; home X axis and push Y forward\nM84 ; disable motors" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-31, 31], + [34, 31], + [34, -40], + [-31, -40] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200 }, + "machine_max_acceleration_z": { "default_value": 500 }, + "machine_max_feedrate_e": { "default_value": 120 }, + "machine_max_feedrate_z": { "default_value": 12 }, + "machine_max_jerk_e": { "default_value": 2.5 }, "machine_max_jerk_xy": { "default_value": 10 }, "machine_max_jerk_z": { "default_value": 0.2 }, - "machine_max_jerk_e": { "default_value": 2.5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "G21 ; set units to millimeters\nG90 ; use absolute positioning\nM82 ; absolute extrusion mode\nM104 S{material_print_temperature_layer_0} ; set extruder temp\nM140 S{material_bed_temperature_layer_0} ; set bed temp\nM190 S{material_bed_temperature_layer_0} ; wait for bed temp\nM109 S{material_print_temperature_layer_0} ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG92 E0.0 ; reset extruder distance position\nG1 Y-3.0 F1000.0 ; go outside print area\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E21.5 F1000.0 ; intro line\nG92 E0.0 ; reset extruder distance position" - }, - "machine_end_gcode": { - "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y210; home X axis and push Y forward\nM84 ; disable motors" - } + "machine_name": { "default_value": "Prusa i3 Mk2" }, + "machine_start_gcode": { "default_value": "G21 ; set units to millimeters\nG90 ; use absolute positioning\nM82 ; absolute extrusion mode\nM104 S{material_print_temperature_layer_0} ; set extruder temp\nM140 S{material_bed_temperature_layer_0} ; set bed temp\nM190 S{material_bed_temperature_layer_0} ; wait for bed temp\nM109 S{material_print_temperature_layer_0} ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG92 E0.0 ; reset extruder distance position\nG1 Y-3.0 F1000.0 ; go outside print area\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E21.5 F1000.0 ; intro line\nG92 E0.0 ; reset extruder distance position" }, + "machine_width": { "default_value": 250 }, + "retraction_amount": { "default_value": 0.8 }, + "retraction_speed": { "default_value": 35 } } -} +} \ No newline at end of file diff --git a/resources/definitions/prusa_i3_mk3.def.json b/resources/definitions/prusa_i3_mk3.def.json index a7120a11f4..644b3a83c0 100644 --- a/resources/definitions/prusa_i3_mk3.def.json +++ b/resources/definitions/prusa_i3_mk3.def.json @@ -2,49 +2,51 @@ "version": 2, "name": "Prusa i3 Mk3/Mk3s", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Prusa Research", "manufacturer": "Prusa3D", "file_formats": "text/x-gcode", - "icon": "icon_ultimaker2", "platform": "Original_Prusa_i3_MK3S_MK3_platform.3mf", "has_materials": true, - "machine_extruder_trains": - { - "0": "prusa_i3_mk3_extruder_0" - } + "icon": "icon_ultimaker2", + "machine_extruder_trains": { "0": "prusa_i3_mk3_extruder_0" } }, - - "overrides": { - "machine_name": { "default_value": "Prusa i3 Mk3/Mk3s" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 250 }, - "machine_height": { "default_value": 210 }, - "machine_depth": { "default_value": 210 }, - "machine_center_is_zero": { "default_value": false }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_size": { "default_value": 0.4 }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "gantry_height": { "value": 28 }, "layer_height": { "default_value": 0.15 }, "layer_height_0": { "default_value": 0.2 }, - "retraction_amount": { "default_value": 0.8 }, - "retraction_speed": { "default_value": 35 }, - "adhesion_type": { "default_value": "skirt" }, - "machine_head_with_fans_polygon": { "default_value": [[-31,31],[34,31],[34,-40],[-31,-40]] }, - "gantry_height": { "value": 28 }, - "machine_max_feedrate_z": { "default_value": 12 }, - "machine_max_feedrate_e": { "default_value": 120 }, - "machine_max_acceleration_z": { "default_value": 500 }, "machine_acceleration": { "default_value": 1000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 210 }, + "machine_end_gcode": { "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y210; home X axis and push Y forward\nM84 ; disable motors" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-31, 31], + [34, 31], + [34, -40], + [-31, -40] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 210 }, + "machine_max_acceleration_z": { "default_value": 500 }, + "machine_max_feedrate_e": { "default_value": 120 }, + "machine_max_feedrate_z": { "default_value": 12 }, + "machine_max_jerk_e": { "default_value": 2.5 }, "machine_max_jerk_xy": { "default_value": 10 }, "machine_max_jerk_z": { "default_value": 0.2 }, - "machine_max_jerk_e": { "default_value": 2.5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "G21 ; set units to millimeters\nG90 ; use absolute positioning\nM82 ; absolute extrusion mode\nM104 S{material_print_temperature_layer_0} ; set extruder temp\nM140 S{material_bed_temperature_layer_0} ; set bed temp\nM190 S{material_bed_temperature_layer_0} ; wait for bed temp\nM109 S{material_print_temperature_layer_0} ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG92 E0.0 ; reset extruder distance position\nG1 Y-3.0 F1000.0 ; go outside print area\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E21.5 F1000.0 ; intro line\nG92 E0.0 ; reset extruder distance position" - }, - "machine_end_gcode": { - "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y210; home X axis and push Y forward\nM84 ; disable motors" - } + "machine_name": { "default_value": "Prusa i3 Mk3/Mk3s" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_start_gcode": { "default_value": "G21 ; set units to millimeters\nG90 ; use absolute positioning\nM82 ; absolute extrusion mode\nM104 S{material_print_temperature_layer_0} ; set extruder temp\nM140 S{material_bed_temperature_layer_0} ; set bed temp\nM190 S{material_bed_temperature_layer_0} ; wait for bed temp\nM109 S{material_print_temperature_layer_0} ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG92 E0.0 ; reset extruder distance position\nG1 Y-3.0 F1000.0 ; go outside print area\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E21.5 F1000.0 ; intro line\nG92 E0.0 ; reset extruder distance position" }, + "machine_width": { "default_value": 250 }, + "material_diameter": { "default_value": 1.75 }, + "retraction_amount": { "default_value": 0.8 }, + "retraction_speed": { "default_value": 35 } } -} +} \ No newline at end of file diff --git a/resources/definitions/prusa_i3_xl.def.json b/resources/definitions/prusa_i3_xl.def.json index 5d59f340ab..0f0763cc3a 100644 --- a/resources/definitions/prusa_i3_xl.def.json +++ b/resources/definitions/prusa_i3_xl.def.json @@ -2,36 +2,24 @@ "version": 2, "name": "Prusa i3 xl", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "guigashm", "manufacturer": "Prusa3D", "file_formats": "text/x-gcode", "platform": "prusai3_xl_platform.3mf", - "machine_extruder_trains": - { - "0": "prusa_i3_xl_extruder_0" - } + "machine_extruder_trains": { "0": "prusa_i3_xl_extruder_0" } }, - - "overrides": { - "machine_name": { "default_value": "Prusa i3 xl" }, - "machine_heated_bed": { - "default_value": true - }, - "machine_width": { - "default_value": 200 - }, - "machine_height": { - "default_value": 200 - }, - "machine_depth": { - "default_value": 270 - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_head_with_fans_polygon": { + "overrides": + { + "gantry_height": { "value": "55" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 270 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 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_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ [-75, -18], [-75, 35], @@ -39,17 +27,10 @@ [18, -18] ] }, - "gantry_height": { - "value": "55" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "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 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 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_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "Prusa i3 xl" }, + "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 E3 ;extrude 3mm 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": 200 } } } \ No newline at end of file diff --git a/resources/definitions/punchtec_connect_xl.def.json b/resources/definitions/punchtec_connect_xl.def.json index cda6caa1f6..c069c2f764 100644 --- a/resources/definitions/punchtec_connect_xl.def.json +++ b/resources/definitions/punchtec_connect_xl.def.json @@ -1,8 +1,9 @@ { - "name": "Punchtec Connect XL", "version": 2, + "name": "Punchtec Connect XL", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "manufacturer": "Punchtec", "file_formats": "text/x-gcode", @@ -11,21 +12,33 @@ "0": "punchtec_connect_xl_extruder_0", "1": "punchtec_connect_xl_extruder_1" }, - "platform_offset": [ 0, 0, 0] + "platform_offset": [ + 0, + 0, + 0 + ] }, - - "overrides": { - "machine_head_with_fans_polygon": { "default_value": [[ 0, 0], [ 0, 0], [ 0, 0], [ 0, 0]] }, - "prime_tower_size": { "default_value": 8.660254037844387 }, + "overrides": + { "layer_height": { "default_value": 0.2 }, - "speed_print": { "default_value": 40 }, - "machine_extruder_count": { "default_value": 2 }, - "machine_heated_bed": { "default_value": true }, "machine_center_is_zero": { "default_value": false }, - "machine_height": { "default_value": 200 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_depth": { "default_value": 304 }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "Punchtec Connect XL" }, "machine_width": { "default_value": 304 }, - "machine_name": { "default_value": "Punchtec Connect XL" } + "prime_tower_size": { "default_value": 8.660254037844387 }, + "speed_print": { "default_value": 40 } } -} +} \ No newline at end of file diff --git a/resources/definitions/raise3D_N2_dual.def.json b/resources/definitions/raise3D_N2_dual.def.json index f5246f6bb6..690a9730b4 100644 --- a/resources/definitions/raise3D_N2_dual.def.json +++ b/resources/definitions/raise3D_N2_dual.def.json @@ -2,7 +2,8 @@ "version": 2, "name": "Raise3D N2 Dual", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Raise3D", "manufacturer": "Raise3D", @@ -14,71 +15,35 @@ "1": "raise3D_N2_dual_extruder_1" } }, - - "overrides": { - "machine_name": { "default_value": "Raise3D N2 Dual" }, - "machine_width": { - "default_value": 305 - }, - "machine_height": { - "default_value": 305 - }, - "machine_depth": { - "default_value": 305 - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_nozzle_heat_up_speed": { - "default_value": 6 - }, - "machine_nozzle_cool_down_speed": { - "default_value": 4 - }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "gantry_height": { "value": "55" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 305 }, + "machine_end_gcode": { "default_value": "M107\nM1002\nM104 S0 T1\nM104 S0 T0\nM140 S0\nM117 Print Complete.\nG28 X0 Y0\nG91\nG1 Z10\nG90\nM84" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { "default_value": [ - [ -75, 35 ], - [ -75, -18 ], - [ 18, 35 ], - [ 18, -18 ] + [-75, 35], + [-75, -18], + [18, 35], + [18, -18] ] }, - "machine_min_cool_heat_time_window": { - "default_value": 3600 - }, - "retraction_amount": { - "default_value": 1.0 - }, - "adhesion_type": { - "default_value": "skirt" - }, - "gantry_height": { - "value": "55" - }, - "machine_use_extruder_offset_to_offset_coords": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G90\nG21\n; home all axes\nG28\nG92 X0 Y0 Z0\n; move heatbed into position\nG1 X20.0 Y20.0 Z1.0 F1000\n; zero extruders\nG92 E0 E1\nT0; right tool\n; set extruder steps per mm\nM92 E140\nT1; left tool\n; set extruder steps per mm\nM92 E140\nT0; left tool\nG92 E0 E1\n; purge nozzle\nG1 E25 F250\nT1; left tool\nG92 E0 E1\n; purge nozzle\nG1 E25 F250\n; zero extruders\nG92 E0 E1\n; move heatbed down a little more\nG1 Z5.0 F20\n; wait 600ms\nG4 600\n; move to tack down the strands\nG1 X20.0 Y30.0 Z0 F9000\n; wait 600ms\nG4 600\n;move up a bit\nG1 Z5.0 F9000\n; wait 300ms\nG4 300\n;fast move to center\nG1 X152.5 Y152.5 F9000\nT0\n;Raise3D Job Start\nM117 Printing...\nM1001\n" - }, - "machine_end_gcode": { - "default_value": "M107\nM1002\nM104 S0 T1\nM104 S0 T0\nM140 S0\nM117 Print Complete.\nG28 X0 Y0\nG91\nG1 Z10\nG90\nM84" - }, - "machine_extruder_count": { - "default_value": 2 - }, - "prime_tower_position_x": { - "value": "195" - }, - "prime_tower_position_y": { - "value": "149" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 305 }, + "machine_min_cool_heat_time_window": { "default_value": 3600 }, + "machine_name": { "default_value": "Raise3D N2 Dual" }, + "machine_nozzle_cool_down_speed": { "default_value": 4 }, + "machine_nozzle_heat_up_speed": { "default_value": 6 }, + "machine_start_gcode": { "default_value": "G90\nG21\n; home all axes\nG28\nG92 X0 Y0 Z0\n; move heatbed into position\nG1 X20.0 Y20.0 Z1.0 F1000\n; zero extruders\nG92 E0 E1\nT0; right tool\n; set extruder steps per mm\nM92 E140\nT1; left tool\n; set extruder steps per mm\nM92 E140\nT0; left tool\nG92 E0 E1\n; purge nozzle\nG1 E25 F250\nT1; left tool\nG92 E0 E1\n; purge nozzle\nG1 E25 F250\n; zero extruders\nG92 E0 E1\n; move heatbed down a little more\nG1 Z5.0 F20\n; wait 600ms\nG4 600\n; move to tack down the strands\nG1 X20.0 Y30.0 Z0 F9000\n; wait 600ms\nG4 600\n;move up a bit\nG1 Z5.0 F9000\n; wait 300ms\nG4 300\n;fast move to center\nG1 X152.5 Y152.5 F9000\nT0\n;Raise3D Job Start\nM117 Printing...\nM1001\n" }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, + "machine_width": { "default_value": 305 }, + "prime_tower_position_x": { "value": "195" }, + "prime_tower_position_y": { "value": "149" }, + "retraction_amount": { "default_value": 1.0 } } -} +} \ No newline at end of file diff --git a/resources/definitions/raise3D_N2_plus_dual.def.json b/resources/definitions/raise3D_N2_plus_dual.def.json index 02f5fd4e11..6699696015 100644 --- a/resources/definitions/raise3D_N2_plus_dual.def.json +++ b/resources/definitions/raise3D_N2_plus_dual.def.json @@ -2,7 +2,8 @@ "version": 2, "name": "Raise3D N2 Plus Dual", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Raise3D", "manufacturer": "Raise3D", @@ -14,71 +15,35 @@ "1": "raise3D_N2_plus_dual_extruder_1" } }, - - "overrides": { - "machine_name": { "default_value": "Raise3D N2 Plus Dual" }, - "machine_width": { - "default_value": 305 - }, - "machine_height": { - "default_value": 610 - }, - "machine_depth": { - "default_value": 305 - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_nozzle_heat_up_speed": { - "default_value": 6 - }, - "machine_nozzle_cool_down_speed": { - "default_value": 4 - }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "gantry_height": { "value": "55" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 305 }, + "machine_end_gcode": { "default_value": "M107\nM1002\nM104 S0 T1\nM104 S0 T0\nM140 S0\nM117 Print Complete.\nG28 X0 Y0\nG91\nG1 Z10\nG90\nM84" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { "default_value": [ - [ -75, 35 ], - [ -75, -18 ], - [ 18, 35 ], - [ 18, -18 ] + [-75, 35], + [-75, -18], + [18, 35], + [18, -18] ] }, - "machine_min_cool_heat_time_window": { - "default_value": 3600 - }, - "retraction_amount": { - "default_value": 1.0 - }, - "adhesion_type": { - "default_value": "skirt" - }, - "gantry_height": { - "value": "55" - }, - "machine_use_extruder_offset_to_offset_coords": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G90\nG21\n; home all axes\nG28\nG92 X0 Y0 Z0\n; move heatbed into position\nG1 X20.0 Y20.0 Z1.0 F1000\n; zero extruders\nG92 E0 E1\nT0; right tool\n; set extruder steps per mm\nM92 E140\nT1; left tool\n; set extruder steps per mm\nM92 E140\nT0; left tool\nG92 E0 E1\n; purge nozzle\nG1 E25 F250\nT1; left tool\nG92 E0 E1\n; purge nozzle\nG1 E25 F250\n; zero extruders\nG92 E0 E1\n; move heatbed down a little more\nG1 Z5.0 F20\n; wait 600ms\nG4 600\n; move to tack down the strands\nG1 X20.0 Y30.0 Z0 F9000\n; wait 600ms\nG4 600\n;move up a bit\nG1 Z5.0 F9000\n; wait 300ms\nG4 300\n;fast move to center\nG1 X152.5 Y152.5 F9000\nT0\n;Raise3D Job Start\nM117 Printing...\nM1001\n" - }, - "machine_end_gcode": { - "default_value": "M107\nM1002\nM104 S0 T1\nM104 S0 T0\nM140 S0\nM117 Print Complete.\nG28 X0 Y0\nG91\nG1 Z10\nG90\nM84" - }, - "machine_extruder_count": { - "default_value": 2 - }, - "prime_tower_position_x": { - "value": "195" - }, - "prime_tower_position_y": { - "value": "149" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 610 }, + "machine_min_cool_heat_time_window": { "default_value": 3600 }, + "machine_name": { "default_value": "Raise3D N2 Plus Dual" }, + "machine_nozzle_cool_down_speed": { "default_value": 4 }, + "machine_nozzle_heat_up_speed": { "default_value": 6 }, + "machine_start_gcode": { "default_value": "G90\nG21\n; home all axes\nG28\nG92 X0 Y0 Z0\n; move heatbed into position\nG1 X20.0 Y20.0 Z1.0 F1000\n; zero extruders\nG92 E0 E1\nT0; right tool\n; set extruder steps per mm\nM92 E140\nT1; left tool\n; set extruder steps per mm\nM92 E140\nT0; left tool\nG92 E0 E1\n; purge nozzle\nG1 E25 F250\nT1; left tool\nG92 E0 E1\n; purge nozzle\nG1 E25 F250\n; zero extruders\nG92 E0 E1\n; move heatbed down a little more\nG1 Z5.0 F20\n; wait 600ms\nG4 600\n; move to tack down the strands\nG1 X20.0 Y30.0 Z0 F9000\n; wait 600ms\nG4 600\n;move up a bit\nG1 Z5.0 F9000\n; wait 300ms\nG4 300\n;fast move to center\nG1 X152.5 Y152.5 F9000\nT0\n;Raise3D Job Start\nM117 Printing...\nM1001\n" }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, + "machine_width": { "default_value": 305 }, + "prime_tower_position_x": { "value": "195" }, + "prime_tower_position_y": { "value": "149" }, + "retraction_amount": { "default_value": 1.0 } } -} +} \ No newline at end of file diff --git a/resources/definitions/raise3D_N2_plus_single.def.json b/resources/definitions/raise3D_N2_plus_single.def.json index 7ffdf08767..5508af2188 100644 --- a/resources/definitions/raise3D_N2_plus_single.def.json +++ b/resources/definitions/raise3D_N2_plus_single.def.json @@ -2,79 +2,43 @@ "version": 2, "name": "Raise3D N2 Plus Single", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Raise3D", "manufacturer": "Raise3D", "file_formats": "text/x-gcode", "has_materials": true, - "machine_extruder_trains": - { - "0": "raise3D_N2_plus_single_extruder_0" - } + "machine_extruder_trains": { "0": "raise3D_N2_plus_single_extruder_0" } }, - - "overrides": { - "machine_name": { "default_value": "Raise3D N2 Plus Single" }, - "machine_width": { - "default_value": 305 - }, - "machine_height": { - "default_value": 610 - }, - "machine_depth": { - "default_value": 305 - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_nozzle_heat_up_speed": { - "default_value": 6 - }, - "machine_nozzle_cool_down_speed": { - "default_value": 4 - }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "gantry_height": { "value": "55" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 305 }, + "machine_end_gcode": { "default_value": "M107\nM1002\nM104 S0 T1\nM104 S0 T0\nM140 S0\nM117 Print Complete.\nG28 X0 Y0\nG91\nG1 Z10\nG90\nM84" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { "default_value": [ - [ -75, 35 ], - [ -75, -18 ], - [ 18, 35 ], - [ 18, -18 ] + [-75, 35], + [-75, -18], + [18, 35], + [18, -18] ] }, - "machine_min_cool_heat_time_window": { - "default_value": 3600 - }, - "retraction_amount": { - "default_value": 1.0 - }, - "adhesion_type": { - "default_value": "skirt" - }, - "gantry_height": { - "value": "55" - }, - "machine_use_extruder_offset_to_offset_coords": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G90\nG21\n; home all axes\nG28\nG92 X0 Y0 Z0\n; move heatbed into position\nG1 X20.0 Y20.0 Z1.0 F1000\n; zero extruders\nG92 E0 E1\nT0; right tool\n; set extruder steps per mm\nM92 E140\n; purge nozzle\nG1 E25 F250\n; zero extruders\nG92 E0 E1\n; move heatbed down a little more\nG1 Z5.0 F20\n; wait 600ms\nG4 600\n; move to tack down the strands\nG1 X20.0 Y30.0 Z0 F9000\n; wait 600ms\nG4 600\n;move up a bit\nG1 Z5.0 F9000\n; wait 300ms\nG4 300\n;fast move to center\nG1 X152.5 Y152.5 F9000\nT0\n;Raise3D Job Start\nM117 Printing...\nM1001\n" - }, - "machine_end_gcode": { - "default_value": "M107\nM1002\nM104 S0 T1\nM104 S0 T0\nM140 S0\nM117 Print Complete.\nG28 X0 Y0\nG91\nG1 Z10\nG90\nM84" - }, - "prime_tower_position_x": { - "value": "195" - }, - "prime_tower_position_y": { - "value": "149" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 610 }, + "machine_min_cool_heat_time_window": { "default_value": 3600 }, + "machine_name": { "default_value": "Raise3D N2 Plus Single" }, + "machine_nozzle_cool_down_speed": { "default_value": 4 }, + "machine_nozzle_heat_up_speed": { "default_value": 6 }, + "machine_start_gcode": { "default_value": "G90\nG21\n; home all axes\nG28\nG92 X0 Y0 Z0\n; move heatbed into position\nG1 X20.0 Y20.0 Z1.0 F1000\n; zero extruders\nG92 E0 E1\nT0; right tool\n; set extruder steps per mm\nM92 E140\n; purge nozzle\nG1 E25 F250\n; zero extruders\nG92 E0 E1\n; move heatbed down a little more\nG1 Z5.0 F20\n; wait 600ms\nG4 600\n; move to tack down the strands\nG1 X20.0 Y30.0 Z0 F9000\n; wait 600ms\nG4 600\n;move up a bit\nG1 Z5.0 F9000\n; wait 300ms\nG4 300\n;fast move to center\nG1 X152.5 Y152.5 F9000\nT0\n;Raise3D Job Start\nM117 Printing...\nM1001\n" }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, + "machine_width": { "default_value": 305 }, + "prime_tower_position_x": { "value": "195" }, + "prime_tower_position_y": { "value": "149" }, + "retraction_amount": { "default_value": 1.0 } } -} +} \ No newline at end of file diff --git a/resources/definitions/raise3D_N2_single.def.json b/resources/definitions/raise3D_N2_single.def.json index c4e346ae90..e5a9af0a0e 100644 --- a/resources/definitions/raise3D_N2_single.def.json +++ b/resources/definitions/raise3D_N2_single.def.json @@ -2,79 +2,43 @@ "version": 2, "name": "Raise3D N2 Single", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Raise3D", "manufacturer": "Raise3D", "file_formats": "text/x-gcode", "has_materials": true, - "machine_extruder_trains": - { - "0": "raise3D_N2_single_extruder_0" - } + "machine_extruder_trains": { "0": "raise3D_N2_single_extruder_0" } }, - - "overrides": { - "machine_name": { "default_value": "Raise3D N2 Single" }, - "machine_width": { - "default_value": 305 - }, - "machine_height": { - "default_value": 305 - }, - "machine_depth": { - "default_value": 305 - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_nozzle_heat_up_speed": { - "default_value": 6 - }, - "machine_nozzle_cool_down_speed": { - "default_value": 4 - }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "gantry_height": { "value": "55" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 305 }, + "machine_end_gcode": { "default_value": "M107\nM1002\nM104 S0 T1\nM104 S0 T0\nM140 S0\nM117 Print Complete.\nG28 X0 Y0\nG91\nG1 Z10\nG90\nM84" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { "default_value": [ - [ -75, 35 ], - [ -75, -18 ], - [ 18, 35 ], - [ 18, -18 ] + [-75, 35], + [-75, -18], + [18, 35], + [18, -18] ] }, - "machine_min_cool_heat_time_window": { - "default_value": 3600 - }, - "retraction_amount": { - "default_value": 1.0 - }, - "adhesion_type": { - "default_value": "skirt" - }, - "gantry_height": { - "value": "55" - }, - "machine_use_extruder_offset_to_offset_coords": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G90\nG21\n; home all axes\nG28\nG92 X0 Y0 Z0\n; move heatbed into position\nG1 X20.0 Y20.0 Z1.0 F1000\n; zero extruders\nG92 E0 E1\nT0; right tool\n; set extruder steps per mm\nM92 E140\n; purge nozzle\nG1 E25 F250\n; zero extruders\nG92 E0 E1\n; move heatbed down a little more\nG1 Z5.0 F20\n; wait 600ms\nG4 600\n; move to tack down the strands\nG1 X20.0 Y30.0 Z0 F9000\n; wait 600ms\nG4 600\n;move up a bit\nG1 Z5.0 F9000\n; wait 300ms\nG4 300\n;fast move to center\nG1 X152.5 Y152.5 F9000\nT0\n;Raise3D Job Start\nM117 Printing...\nM1001\n" - }, - "machine_end_gcode": { - "default_value": "M107\nM1002\nM104 S0 T1\nM104 S0 T0\nM140 S0\nM117 Print Complete.\nG28 X0 Y0\nG91\nG1 Z10\nG90\nM84" - }, - "prime_tower_position_x": { - "value": "195" - }, - "prime_tower_position_y": { - "value": "149" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 305 }, + "machine_min_cool_heat_time_window": { "default_value": 3600 }, + "machine_name": { "default_value": "Raise3D N2 Single" }, + "machine_nozzle_cool_down_speed": { "default_value": 4 }, + "machine_nozzle_heat_up_speed": { "default_value": 6 }, + "machine_start_gcode": { "default_value": "G90\nG21\n; home all axes\nG28\nG92 X0 Y0 Z0\n; move heatbed into position\nG1 X20.0 Y20.0 Z1.0 F1000\n; zero extruders\nG92 E0 E1\nT0; right tool\n; set extruder steps per mm\nM92 E140\n; purge nozzle\nG1 E25 F250\n; zero extruders\nG92 E0 E1\n; move heatbed down a little more\nG1 Z5.0 F20\n; wait 600ms\nG4 600\n; move to tack down the strands\nG1 X20.0 Y30.0 Z0 F9000\n; wait 600ms\nG4 600\n;move up a bit\nG1 Z5.0 F9000\n; wait 300ms\nG4 300\n;fast move to center\nG1 X152.5 Y152.5 F9000\nT0\n;Raise3D Job Start\nM117 Printing...\nM1001\n" }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, + "machine_width": { "default_value": 305 }, + "prime_tower_position_x": { "value": "195" }, + "prime_tower_position_y": { "value": "149" }, + "retraction_amount": { "default_value": 1.0 } } -} +} \ No newline at end of file diff --git a/resources/definitions/renkforce_basic3.def.json b/resources/definitions/renkforce_basic3.def.json index 98b355bd53..00838107fa 100644 --- a/resources/definitions/renkforce_basic3.def.json +++ b/resources/definitions/renkforce_basic3.def.json @@ -1,17 +1,19 @@ { - "name": "Renkforce Basic 3", "version": 2, + "name": "Renkforce Basic 3", "inherits": "goofoo_small", - "overrides": { - "machine_name": { "default_value": "Renkforce Basic 3" }, - "machine_width": { "default_value": 120 }, - "machine_depth": { "default_value": 120 }, - "machine_height": { "default_value": 180 }, - "machine_heated_bed": { "default_value": false } - }, - "metadata": { + "metadata": + { + "visible": true, "author": "Simon Peter (based on RF100.ini by Conrad Electronic SE)", - "manufacturer": "Renkforce", - "visible": true + "manufacturer": "Renkforce" + }, + "overrides": + { + "machine_depth": { "default_value": 120 }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 180 }, + "machine_name": { "default_value": "Renkforce Basic 3" }, + "machine_width": { "default_value": 120 } } } \ No newline at end of file diff --git a/resources/definitions/renkforce_cubeone.def.json b/resources/definitions/renkforce_cubeone.def.json new file mode 100644 index 0000000000..2ff4d812c3 --- /dev/null +++ b/resources/definitions/renkforce_cubeone.def.json @@ -0,0 +1,30 @@ +{ + "version": 2, + "name": "Renkforce Cube One", + "inherits": "goofoo_small", + "metadata": + { + "visible": true, + "author": "Woosh (based on RF100.ini by Conrad Electronic SE)", + "manufacturer": "Renkforce" + }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "layer_height": { "default_value": 0.4 }, + "layer_height_0": { "default_value": 0.5 }, + "machine_depth": { "default_value": 80 }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 80 }, + "machine_name": { "default_value": "Renkforce Cube One" }, + "machine_width": { "default_value": 80 }, + "raft_margin": { "default_value": 5 }, + "retraction_prime_speed": { "value": 80 }, + "retraction_speed": { "default_value": 60 }, + "speed_layer_0": { "value": 10 }, + "speed_print": { "value": 10 }, + "speed_print_layer_0": { "value": 10 }, + "speed_travel": { "value": 10 }, + "speed_travel_layer_0": { "value": 10 } + } +} \ No newline at end of file diff --git a/resources/definitions/renkforce_pro3.def.json b/resources/definitions/renkforce_pro3.def.json index 0c40fdc509..bcbcbe53f9 100644 --- a/resources/definitions/renkforce_pro3.def.json +++ b/resources/definitions/renkforce_pro3.def.json @@ -1,17 +1,18 @@ { - "name": "Renkforce Pro 3", "version": 2, + "name": "Renkforce Pro 3", "inherits": "goofoo_near", - "overrides": { - "machine_name": { "default_value": "Renkforce Pro 3" }, - "machine_width": { "default_value": 200 }, - "machine_depth": { "default_value": 200 }, - "machine_height": { "default_value": 150 } - - }, - "metadata": { + "metadata": + { + "visible": true, "author": "Simon Peter (based on RF100.ini by Conrad Electronic SE)", - "manufacturer": "Renkforce", - "visible": true + "manufacturer": "Renkforce" + }, + "overrides": + { + "machine_depth": { "default_value": 200 }, + "machine_height": { "default_value": 150 }, + "machine_name": { "default_value": "Renkforce Pro 3" }, + "machine_width": { "default_value": 200 } } } \ No newline at end of file diff --git a/resources/definitions/renkforce_pro6.def.json b/resources/definitions/renkforce_pro6.def.json index 63560506ea..9ed4ee0628 100644 --- a/resources/definitions/renkforce_pro6.def.json +++ b/resources/definitions/renkforce_pro6.def.json @@ -1,17 +1,18 @@ { - "name": "Renkforce Pro 6", "version": 2, + "name": "Renkforce Pro 6", "inherits": "goofoo_near", - "overrides": { - "machine_name": { "default_value": "Renkforce Pro 6" }, - "machine_width": { "default_value": 200 }, - "machine_depth": { "default_value": 200 }, - "machine_height": { "default_value": 200 } - - }, - "metadata": { + "metadata": + { + "visible": true, "author": "Simon Peter (based on RF100.ini by Conrad Electronic SE)", - "manufacturer": "Renkforce", - "visible": true + "manufacturer": "Renkforce" + }, + "overrides": + { + "machine_depth": { "default_value": 200 }, + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "Renkforce Pro 6" }, + "machine_width": { "default_value": 200 } } } \ No newline at end of file diff --git a/resources/definitions/renkforce_pro6plus.def.json b/resources/definitions/renkforce_pro6plus.def.json new file mode 100644 index 0000000000..5e1da771c6 --- /dev/null +++ b/resources/definitions/renkforce_pro6plus.def.json @@ -0,0 +1,18 @@ +{ + "version": 2, + "name": "Renkforce Pro 6+", + "inherits": "goofoo_near", + "metadata": + { + "visible": true, + "author": "Woosh (based on RF100.ini by Conrad Electronic SE)", + "manufacturer": "Renkforce" + }, + "overrides": + { + "machine_depth": { "default_value": 280 }, + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "Renkforce Pro 6+" }, + "machine_width": { "default_value": 280 } + } +} \ No newline at end of file diff --git a/resources/definitions/renkforce_pro7dual.def.json b/resources/definitions/renkforce_pro7dual.def.json new file mode 100755 index 0000000000..7d67b8f278 --- /dev/null +++ b/resources/definitions/renkforce_pro7dual.def.json @@ -0,0 +1,33 @@ +{ + "version": 2, + "name": "Renkforce Pro7 Dual", + "inherits": "goofoo_far", + "metadata": + { + "visible": true, + "author": "Woosh (based on RF100.ini by Conrad Electronic SE)", + "manufacturer": "Renkforce", + "machine_extruder_trains": + { + "0": "renkforce_pro7dual_1st", + "1": "renkforce_pro7dual_2nd" + } + }, + "overrides": + { + "machine_depth": { "default_value": 250 }, + "machine_extruder_count": { "default_value": 2 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ] + }, + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "Renkforce Pro7 Dual" }, + "machine_width": { "default_value": 360 } + } +} \ No newline at end of file diff --git a/resources/definitions/renkforce_rf100.def.json b/resources/definitions/renkforce_rf100.def.json index 7ad092ce8f..9aed88d026 100644 --- a/resources/definitions/renkforce_rf100.def.json +++ b/resources/definitions/renkforce_rf100.def.json @@ -2,78 +2,38 @@ "version": 2, "name": "Renkforce RF100", "inherits": "fdmprinter", - "metadata": { - "author": "Simon Peter (based on RF100.ini by Conrad Electronic SE)", - "file_formats": "text/x-gcode", - "manufacturer": "Renkforce", + "metadata": + { "visible": true, - "machine_extruder_trains": - { - "0": "renkforce_rf100_extruder_0" - } + "author": "Simon Peter (based on RF100.ini by Conrad Electronic SE)", + "manufacturer": "Renkforce", + "file_formats": "text/x-gcode", + "machine_extruder_trains": { "0": "renkforce_rf100_extruder_0" } }, - - "overrides": { - "adhesion_type": { - "default_value": "skirt" - }, - "bottom_thickness": { - "value": "0.6" - }, - "brim_width": { - "value": "3.0" - }, - "cool_fan_enabled": { - "value": "True" - }, - "cool_fan_full_at_height": { - "value": "0.5" - }, - "cool_fan_speed_max": { - "value": "100.0" - }, - "cool_fan_speed_min": { - "value": "100.0" - }, - "cool_lift_head": { - "value": "True" - }, - "cool_min_layer_time": { - "value": "1.0" - }, - "cool_min_speed": { - "value": "5.0" - }, - "infill_before_walls": { - "value": "True" - }, - "infill_line_width": { - "value": "0.6" - }, - "infill_overlap": { - "value": "15.0" - }, - "infill_sparse_density": { - "value": "26.0" - }, - "ironing_enabled": { - "value": "True" - }, - "layer_0_z_overlap": { - "value": "0.11" - }, - "layer_height_0": { - "value": "0.3" - }, - "machine_depth": { - "value": "100" - }, - "machine_end_gcode": { - "default_value": ";End GCode\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-4 F300 ;move Z up a bit and retract filament even more\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG0 Z{machine_height} F1800 ;move the platform all the way down\nG28 X0 Y0 F1800 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning\nM117 Done" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "bottom_thickness": { "value": "0.6" }, + "brim_width": { "value": "3.0" }, + "cool_fan_enabled": { "value": "True" }, + "cool_fan_full_at_height": { "value": "0.5" }, + "cool_fan_speed_max": { "value": "100.0" }, + "cool_fan_speed_min": { "value": "100.0" }, + "cool_lift_head": { "value": "True" }, + "cool_min_layer_time": { "value": "1.0" }, + "cool_min_speed": { "value": "5.0" }, + "default_material_print_temperature": { "value": "210.0" }, + "gantry_height": { "value": "8" }, + "infill_before_walls": { "value": "True" }, + "infill_line_width": { "value": "0.6" }, + "infill_overlap": { "value": "15.0" }, + "infill_sparse_density": { "value": "26.0" }, + "ironing_enabled": { "value": "True" }, + "layer_0_z_overlap": { "value": "0.11" }, + "layer_height_0": { "value": "0.3" }, + "machine_depth": { "value": "100" }, + "machine_end_gcode": { "default_value": ";End GCode\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-4 F300 ;move Z up a bit and retract filament even more\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG0 Z{machine_height} F1800 ;move the platform all the way down\nG28 X0 Y0 F1800 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning\nM117 Done" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { "default_value": [ @@ -83,146 +43,50 @@ [-26, 55] ] }, - "gantry_height": { - "value": "8" - }, - "machine_height": { - "value": "100" - }, - "machine_name": { - "default_value": "Renkforce RF100" - }, - "machine_start_gcode": { - "default_value": ";Sliced at: {day} {date} {time}\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG1 Z5.0 F1800 ;move Z to 5mm\nG28 X0 Y0 F1800 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstop\nG92 E0 ;zero the extruded length\nG1 F200 E6.0 ;extrude 6.0mm of feed stock to build pressure\nG1 Z5.0 F300 ;move the platform down 5mm\nG92 E0 ;zero the extruded length again\nG1 F1800\n;Put printing message on LCD screen\nM117 Printing..." - }, - "machine_width": { - "value": "100" - }, - "material_bed_temperature": { - "enabled": false - }, - "material_flow": { - "value": "110" - }, - "material_print_temperature": { - "value": "210.0" - }, - "ooze_shield_enabled": { - "value": "True" - }, - "raft_airgap": { - "value": "0.33" - }, - "raft_base_line_spacing": { - "value": "3.0" - }, - "raft_base_line_width": { - "value": "1.0" - }, - "raft_base_thickness": { - "value": "0.3" - }, - "raft_interface_line_spacing": { - "value": "3.0" - }, - "raft_interface_line_width": { - "value": "0.4" - }, - "raft_interface_thickness": { - "value": "0.27" - }, - "raft_margin": { - "value": "6.0" - }, - "raft_speed": { - "value": "20.0" - }, - "raft_surface_layers": { - "value": "2" - }, - "raft_surface_line_spacing": { - "value": "0.4" - }, - "raft_surface_line_width": { - "value": "0.4" - }, - "raft_surface_thickness": { - "value": "0.1" - }, - "retraction_amount": { - "value": "5.0" - }, - "retraction_combing": { - "value": "'all'" - }, - "retraction_enable": { - "value": "True" - }, - "retraction_min_travel": { - "value": "1.5" - }, - "skin_overlap": { - "value": "15.0" - }, - "skirt_brim_minimal_length": { - "value": "150.0" - }, - "skirt_gap": { - "value": "3.0" - }, - "skirt_line_count": { - "value": "3" - }, - "speed_infill": { - "value": "50.0" - }, - "speed_layer_0": { - "value": "15.0" - }, - "speed_print": { - "value": "50.0" - }, - "speed_topbottom": { - "value": "30.0" - }, - "speed_travel": { - "value": "50.0" - }, - "speed_wall_0": { - "value": "25.0" - }, - "speed_wall_x": { - "value": "35.0" - }, - "support_angle": { - "value": "60.0" - }, - "support_enable": { - "value": "False" - }, - "support_infill_rate": { - "value": "15 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 15" - }, - "support_line_width": { - "value": "0.6" - }, - "support_pattern": { - "default_value": "lines" - }, - "support_type": { - "default_value": "everywhere" - }, - "support_xy_distance": { - "value": "0.7" - }, - "support_z_distance": { - "value": "0.35" - }, - "top_bottom_thickness": { - "value": "0.8" - }, - "wall_thickness": { - "value": "0.8" - } + "machine_height": { "value": "100" }, + "machine_name": { "default_value": "Renkforce RF100" }, + "machine_start_gcode": { "default_value": ";Sliced at: {day} {date} {time}\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG1 Z5.0 F1800 ;move Z to 5mm\nG28 X0 Y0 F1800 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstop\nG92 E0 ;zero the extruded length\nG1 F200 E6.0 ;extrude 6.0mm of feed stock to build pressure\nG1 Z5.0 F300 ;move the platform down 5mm\nG92 E0 ;zero the extruded length again\nG1 F1800\n;Put printing message on LCD screen\nM117 Printing..." }, + "machine_width": { "value": "100" }, + "material_bed_temperature": { "enabled": false }, + "material_flow": { "value": "110" }, + "ooze_shield_enabled": { "value": "True" }, + "raft_airgap": { "value": "0.33" }, + "raft_base_line_spacing": { "value": "3.0" }, + "raft_base_line_width": { "value": "1.0" }, + "raft_base_thickness": { "value": "0.3" }, + "raft_interface_line_spacing": { "value": "3.0" }, + "raft_interface_line_width": { "value": "0.4" }, + "raft_interface_thickness": { "value": "0.27" }, + "raft_margin": { "value": "6.0" }, + "raft_speed": { "value": "20.0" }, + "raft_surface_layers": { "value": "2" }, + "raft_surface_line_spacing": { "value": "0.4" }, + "raft_surface_line_width": { "value": "0.4" }, + "raft_surface_thickness": { "value": "0.1" }, + "retraction_amount": { "value": "5.0" }, + "retraction_combing": { "value": "'all'" }, + "retraction_enable": { "value": "True" }, + "retraction_min_travel": { "value": "1.5" }, + "skin_overlap": { "value": "15.0" }, + "skirt_brim_minimal_length": { "value": "150.0" }, + "skirt_gap": { "value": "3.0" }, + "skirt_line_count": { "value": "3" }, + "speed_infill": { "value": "50.0" }, + "speed_layer_0": { "value": "15.0" }, + "speed_print": { "value": "50.0" }, + "speed_topbottom": { "value": "30.0" }, + "speed_travel": { "value": "50.0" }, + "speed_wall_0": { "value": "25.0" }, + "speed_wall_x": { "value": "35.0" }, + "support_angle": { "value": "60.0" }, + "support_enable": { "value": "False" }, + "support_infill_rate": { "value": "15 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 15" }, + "support_line_width": { "value": "0.6" }, + "support_pattern": { "default_value": "lines" }, + "support_type": { "default_value": "everywhere" }, + "support_xy_distance": { "value": "0.7" }, + "support_z_distance": { "value": "0.35" }, + "top_bottom_thickness": { "value": "0.8" }, + "wall_thickness": { "value": "0.8" } } -} +} \ No newline at end of file diff --git a/resources/definitions/renkforce_rf100_v2.def.json b/resources/definitions/renkforce_rf100_v2.def.json index 05907a1c20..9d6b4043a2 100644 --- a/resources/definitions/renkforce_rf100_v2.def.json +++ b/resources/definitions/renkforce_rf100_v2.def.json @@ -2,78 +2,37 @@ "version": 2, "name": "Renkforce RF100 V2", "inherits": "fdmprinter", - "metadata": { - "author": "Simon Peter (based on RF100.ini by Conrad Electronic SE)", - "file_formats": "text/x-gcode", - "manufacturer": "Renkforce", + "metadata": + { "visible": true, - "machine_extruder_trains": - { - "0": "renkforce_rf100_extruder_0" - } + "author": "Simon Peter (based on RF100.ini by Conrad Electronic SE)", + "manufacturer": "Renkforce", + "file_formats": "text/x-gcode", + "machine_extruder_trains": { "0": "renkforce_rf100_extruder_0" } }, - - "overrides": { - "adhesion_type": { - "default_value": "skirt" - }, - "bottom_thickness": { - "value": "0.6" - }, - "brim_width": { - "value": "3.0" - }, - "cool_fan_enabled": { - "value": "True" - }, - "cool_fan_full_at_height": { - "value": "0.5" - }, - "cool_fan_speed_max": { - "value": "100.0" - }, - "cool_fan_speed_min": { - "value": "100.0" - }, - "cool_lift_head": { - "value": "True" - }, - "cool_min_layer_time": { - "value": "1.0" - }, - "cool_min_speed": { - "value": "5.0" - }, - "infill_before_walls": { - "value": "True" - }, - "infill_line_width": { - "value": "0.6" - }, - "infill_overlap": { - "value": "15.0" - }, - "infill_sparse_density": { - "value": "26.0" - }, - "ironing_enabled": { - "value": "True" - }, - "layer_0_z_overlap": { - "value": "0.11" - }, - "layer_height_0": { - "value": "0.3" - }, - "machine_depth": { - "value": "120" - }, - "machine_end_gcode": { - "default_value": ";End GCode\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-4 F300 ;move Z up a bit and retract filament even more\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG0 Z{machine_height} F1800 ;move the platform all the way down\nG28 X0 Y0 F1800 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning\nM117 Done" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "bottom_thickness": { "value": "0.6" }, + "brim_width": { "value": "3.0" }, + "cool_fan_enabled": { "value": "True" }, + "cool_fan_full_at_height": { "value": "0.5" }, + "cool_fan_speed_max": { "value": "100.0" }, + "cool_fan_speed_min": { "value": "100.0" }, + "cool_lift_head": { "value": "True" }, + "cool_min_layer_time": { "value": "1.0" }, + "cool_min_speed": { "value": "5.0" }, + "gantry_height": { "value": "8" }, + "infill_before_walls": { "value": "True" }, + "infill_line_width": { "value": "0.6" }, + "infill_overlap": { "value": "15.0" }, + "infill_sparse_density": { "value": "26.0" }, + "ironing_enabled": { "value": "True" }, + "layer_0_z_overlap": { "value": "0.11" }, + "layer_height_0": { "value": "0.3" }, + "machine_depth": { "value": "120" }, + "machine_end_gcode": { "default_value": ";End GCode\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-4 F300 ;move Z up a bit and retract filament even more\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG0 Z{machine_height} F1800 ;move the platform all the way down\nG28 X0 Y0 F1800 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning\nM117 Done" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { "default_value": [ @@ -83,146 +42,50 @@ [-26, 55] ] }, - "gantry_height": { - "value": "8" - }, - "machine_height": { - "value": "120" - }, - "machine_name": { - "default_value": "Renkforce RF100 V2" - }, - "machine_start_gcode": { - "default_value": ";Sliced at: {day} {date} {time}\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG1 Z5.0 F1800 ;move Z to 5mm\nG28 X0 Y0 F1800 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstop\nG92 E0 ;zero the extruded length\nG1 F200 E6.0 ;extrude 6.0mm of feed stock to build pressure\nG1 Z5.0 F300 ;move the platform down 5mm\nG92 E0 ;zero the extruded length again\nG1 F1800\n;Put printing message on LCD screen\nM117 Printing..." - }, - "machine_width": { - "value": "120" - }, - "material_bed_temperature": { - "enabled": false - }, - "material_flow": { - "value": "110" - }, - "material_print_temperature": { - "value": "210.0" - }, - "ooze_shield_enabled": { - "value": "True" - }, - "raft_airgap": { - "value": "0.33" - }, - "raft_base_line_spacing": { - "value": "3.0" - }, - "raft_base_line_width": { - "value": "1.0" - }, - "raft_base_thickness": { - "value": "0.3" - }, - "raft_interface_line_spacing": { - "value": "3.0" - }, - "raft_interface_line_width": { - "value": "0.4" - }, - "raft_interface_thickness": { - "value": "0.27" - }, - "raft_margin": { - "value": "6.0" - }, - "raft_speed": { - "value": "20.0" - }, - "raft_surface_layers": { - "value": "2" - }, - "raft_surface_line_spacing": { - "value": "0.4" - }, - "raft_surface_line_width": { - "value": "0.4" - }, - "raft_surface_thickness": { - "value": "0.1" - }, - "retraction_amount": { - "value": "5.0" - }, - "retraction_combing": { - "value": "'all'" - }, - "retraction_enable": { - "value": "True" - }, - "retraction_min_travel": { - "value": "1.5" - }, - "skin_overlap": { - "value": "15.0" - }, - "skirt_brim_minimal_length": { - "value": "150.0" - }, - "skirt_gap": { - "value": "3.0" - }, - "skirt_line_count": { - "value": "3" - }, - "speed_infill": { - "value": "50.0" - }, - "speed_layer_0": { - "value": "15.0" - }, - "speed_print": { - "value": "50.0" - }, - "speed_topbottom": { - "value": "30.0" - }, - "speed_travel": { - "value": "50.0" - }, - "speed_wall_0": { - "value": "25.0" - }, - "speed_wall_x": { - "value": "35.0" - }, - "support_angle": { - "value": "60.0" - }, - "support_enable": { - "value": "False" - }, - "support_infill_rate": { - "value": "15 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 15" - }, - "support_line_width": { - "value": "0.6" - }, - "support_pattern": { - "default_value": "lines" - }, - "support_type": { - "default_value": "everywhere" - }, - "support_xy_distance": { - "value": "0.7" - }, - "support_z_distance": { - "value": "0.35" - }, - "top_bottom_thickness": { - "value": "0.8" - }, - "wall_thickness": { - "value": "0.8" - } + "machine_height": { "value": "120" }, + "machine_name": { "default_value": "Renkforce RF100 V2" }, + "machine_start_gcode": { "default_value": ";Sliced at: {day} {date} {time}\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG1 Z5.0 F1800 ;move Z to 5mm\nG28 X0 Y0 F1800 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstop\nG92 E0 ;zero the extruded length\nG1 F200 E6.0 ;extrude 6.0mm of feed stock to build pressure\nG1 Z5.0 F300 ;move the platform down 5mm\nG92 E0 ;zero the extruded length again\nG1 F1800\n;Put printing message on LCD screen\nM117 Printing..." }, + "machine_width": { "value": "120" }, + "material_bed_temperature": { "enabled": false }, + "material_flow": { "value": "110" }, + "ooze_shield_enabled": { "value": "True" }, + "raft_airgap": { "value": "0.33" }, + "raft_base_line_spacing": { "value": "3.0" }, + "raft_base_line_width": { "value": "1.0" }, + "raft_base_thickness": { "value": "0.3" }, + "raft_interface_line_spacing": { "value": "3.0" }, + "raft_interface_line_width": { "value": "0.4" }, + "raft_interface_thickness": { "value": "0.27" }, + "raft_margin": { "value": "6.0" }, + "raft_speed": { "value": "20.0" }, + "raft_surface_layers": { "value": "2" }, + "raft_surface_line_spacing": { "value": "0.4" }, + "raft_surface_line_width": { "value": "0.4" }, + "raft_surface_thickness": { "value": "0.1" }, + "retraction_amount": { "value": "5.0" }, + "retraction_combing": { "value": "'all'" }, + "retraction_enable": { "value": "True" }, + "retraction_min_travel": { "value": "1.5" }, + "skin_overlap": { "value": "15.0" }, + "skirt_brim_minimal_length": { "value": "150.0" }, + "skirt_gap": { "value": "3.0" }, + "skirt_line_count": { "value": "3" }, + "speed_infill": { "value": "50.0" }, + "speed_layer_0": { "value": "15.0" }, + "speed_print": { "value": "50.0" }, + "speed_topbottom": { "value": "30.0" }, + "speed_travel": { "value": "50.0" }, + "speed_wall_0": { "value": "25.0" }, + "speed_wall_x": { "value": "35.0" }, + "support_angle": { "value": "60.0" }, + "support_enable": { "value": "False" }, + "support_infill_rate": { "value": "15 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 15" }, + "support_line_width": { "value": "0.6" }, + "support_pattern": { "default_value": "lines" }, + "support_type": { "default_value": "everywhere" }, + "support_xy_distance": { "value": "0.7" }, + "support_z_distance": { "value": "0.35" }, + "top_bottom_thickness": { "value": "0.8" }, + "wall_thickness": { "value": "0.8" } } -} +} \ No newline at end of file diff --git a/resources/definitions/renkforce_rf100_xl.def.json b/resources/definitions/renkforce_rf100_xl.def.json index f0e8644ae4..9281ff5cd2 100644 --- a/resources/definitions/renkforce_rf100_xl.def.json +++ b/resources/definitions/renkforce_rf100_xl.def.json @@ -2,215 +2,80 @@ "version": 2, "name": "Renkforce RF100 XL", "inherits": "fdmprinter", - "metadata": { - "author": "Simon Peter (based on RF100.ini by Conrad Electronic SE)", - "file_formats": "text/x-gcode", - "manufacturer": "Renkforce", + "metadata": + { "visible": true, - "machine_extruder_trains": - { - "0": "renkforce_rf100_xl_extruder_0" - } + "author": "Simon Peter (based on RF100.ini by Conrad Electronic SE)", + "manufacturer": "Renkforce", + "file_formats": "text/x-gcode", + "machine_extruder_trains": { "0": "renkforce_rf100_xl_extruder_0" } }, - - "overrides": { - "adhesion_type": { - "default_value": "skirt" - }, - "bottom_thickness": { - "value": "0.6" - }, - "brim_width": { - "value": "3.0" - }, - "cool_fan_enabled": { - "value": "True" - }, - "cool_fan_full_at_height": { - "value": "0.5" - }, - "cool_fan_speed_max": { - "value": "100.0" - }, - "cool_fan_speed_min": { - "value": "100.0" - }, - "cool_lift_head": { - "value": "True" - }, - "cool_min_layer_time": { - "value": "1.0" - }, - "cool_min_speed": { - "value": "5.0" - }, - "infill_before_walls": { - "value": "True" - }, - "infill_line_width": { - "value": "0.6" - }, - "infill_overlap": { - "value": "15.0" - }, - "infill_sparse_density": { - "value": "26.0" - }, - "ironing_enabled": { - "value": "True" - }, - "layer_0_z_overlap": { - "value": "0.11" - }, - "layer_height_0": { - "value": "0.3" - }, - "machine_depth": { - "value": "200" - }, - "machine_end_gcode": { - "default_value": ";End GCode\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-4 F300 ;move Z up a bit and retract filament even more\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG0 Z{machine_height} F1800 ;move the platform all the way down\nG28 X0 Y0 F1800 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning\nM117 Done" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_heated_bed": { - "default_value": "true" - }, - "machine_height": { - "value": "200" - }, - "machine_name": { - "default_value": "Renkforce RF100 XL" - }, - "machine_start_gcode": { - "default_value": ";Sliced at: {day} {date} {time}\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG1 Z5.0 F1800 ;move Z to 5mm\nG28 X0 Y0 F1800 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstop\nG92 E0 ;zero the extruded length\nG1 F200 E6.0 ;extrude 6.0mm of feed stock to build pressure\nG1 Z5.0 F300 ;move the platform down 5mm\nG92 E0 ;zero the extruded length again\nG1 F1800\n;Put printing message on LCD screen\nM117 Printing..." - }, - "machine_width": { - "value": "200" - }, - "material_bed_temperature": { - "value": "70" - }, - "material_print_temperature": { - "value": "210.0" - }, - "ooze_shield_enabled": { - "value": "True" - }, - "raft_airgap": { - "value": "0.33" - }, - "raft_base_line_spacing": { - "value": "3.0" - }, - "raft_base_line_width": { - "value": "1.0" - }, - "raft_base_thickness": { - "value": "0.3" - }, - "raft_interface_line_spacing": { - "value": "3.0" - }, - "raft_interface_line_width": { - "value": "0.4" - }, - "raft_interface_thickness": { - "value": "0.27" - }, - "raft_margin": { - "value": "6.0" - }, - "raft_speed": { - "value": "20.0" - }, - "raft_surface_layers": { - "value": "2" - }, - "raft_surface_line_spacing": { - "value": "0.4" - }, - "raft_surface_line_width": { - "value": "0.4" - }, - "raft_surface_thickness": { - "value": "0.1" - }, - "retraction_amount": { - "value": "5.0" - }, - "retraction_combing": { - "value": "'all'" - }, - "retraction_enable": { - "value": "True" - }, - "retraction_min_travel": { - "value": "1.5" - }, - "skin_overlap": { - "value": "15.0" - }, - "skirt_brim_minimal_length": { - "value": "150.0" - }, - "skirt_gap": { - "value": "3.0" - }, - "skirt_line_count": { - "value": "3" - }, - "speed_infill": { - "value": "50.0" - }, - "speed_layer_0": { - "value": "15.0" - }, - "speed_print": { - "value": "50.0" - }, - "speed_topbottom": { - "value": "30.0" - }, - "speed_travel": { - "value": "50.0" - }, - "speed_wall_0": { - "value": "25.0" - }, - "speed_wall_x": { - "value": "35.0" - }, - "support_angle": { - "value": "60.0" - }, - "support_enable": { - "value": "False" - }, - "support_infill_rate": { - "value": "15 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 15" - }, - "support_line_width": { - "value": "0.6" - }, - "support_pattern": { - "default_value": "lines" - }, - "support_type": { - "default_value": "everywhere" - }, - "support_xy_distance": { - "value": "0.7" - }, - "support_z_distance": { - "value": "0.35" - }, - "top_bottom_thickness": { - "value": "0.8" - }, - "wall_thickness": { - "value": "0.8" - } + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "bottom_thickness": { "value": 0.6 }, + "brim_width": { "value": 3.0 }, + "cool_fan_enabled": { "value": true }, + "cool_fan_full_at_height": { "value": 0.5 }, + "cool_fan_speed_max": { "value": 100.0 }, + "cool_fan_speed_min": { "value": 100.0 }, + "cool_lift_head": { "value": true }, + "cool_min_layer_time": { "value": 1.0 }, + "cool_min_speed": { "value": 5.0 }, + "infill_before_walls": { "value": true }, + "infill_line_width": { "value": 0.6 }, + "infill_overlap": { "value": 15.0 }, + "infill_sparse_density": { "value": 26.0 }, + "ironing_enabled": { "value": true }, + "layer_0_z_overlap": { "value": 0.11 }, + "layer_height_0": { "value": 0.3 }, + "machine_depth": { "value": 200 }, + "machine_end_gcode": { "default_value": ";End GCode\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-4 F300 ;move Z up a bit and retract filament even more\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG0 Z{machine_height} F1800 ;move the platform all the way down\nG28 X0 Y0 F1800 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning\nM117 Done" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "value": 200 }, + "machine_name": { "default_value": "Renkforce RF100 XL" }, + "machine_start_gcode": { "default_value": ";Sliced at: {day} {date} {time}\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG1 Z5.0 F1800 ;move Z to 5mm\nG28 X0 Y0 F1800 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstop\nG92 E0 ;zero the extruded length\nG1 F200 E6.0 ;extrude 6.0mm of feed stock to build pressure\nG1 Z5.0 F300 ;move the platform down 5mm\nG92 E0 ;zero the extruded length again\nG1 F1800\n;Put printing message on LCD screen\nM117 Printing..." }, + "machine_width": { "value": 200 }, + "material_bed_temperature": { "value": 70 }, + "ooze_shield_enabled": { "value": true }, + "raft_airgap": { "value": 0.33 }, + "raft_base_line_spacing": { "value": 3.0 }, + "raft_base_line_width": { "value": 1.0 }, + "raft_base_thickness": { "value": 0.3 }, + "raft_interface_line_spacing": { "value": 3.0 }, + "raft_interface_line_width": { "value": 0.4 }, + "raft_interface_thickness": { "value": 0.27 }, + "raft_margin": { "value": 6.0 }, + "raft_speed": { "value": 20.0 }, + "raft_surface_layers": { "value": 2 }, + "raft_surface_line_spacing": { "value": 0.4 }, + "raft_surface_line_width": { "value": 0.4 }, + "raft_surface_thickness": { "value": 0.1 }, + "retraction_amount": { "value": 5.0 }, + "retraction_combing": { "value": "all" }, + "retraction_enable": { "value": true }, + "retraction_min_travel": { "value": 1.5 }, + "skin_overlap": { "value": 15.0 }, + "skirt_brim_minimal_length": { "value": 150.0 }, + "skirt_gap": { "value": 3.0 }, + "skirt_line_count": { "value": 3 }, + "speed_infill": { "value": 50.0 }, + "speed_layer_0": { "value": 15.0 }, + "speed_print": { "value": 50.0 }, + "speed_topbottom": { "value": 30.0 }, + "speed_travel": { "value": 50.0 }, + "speed_wall_0": { "value": 25.0 }, + "speed_wall_x": { "value": 35.0 }, + "support_angle": { "value": 60.0 }, + "support_enable": { "value": false }, + "support_infill_rate": { "value": "15 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 15" }, + "support_line_width": { "value": 0.6 }, + "support_pattern": { "default_value": "lines" }, + "support_type": { "default_value": "everywhere" }, + "support_xy_distance": { "value": 0.7 }, + "support_z_distance": { "value": 0.35 }, + "top_bottom_thickness": { "value": 0.8 }, + "wall_thickness": { "value": 0.8 } } -} +} \ No newline at end of file diff --git a/resources/definitions/rigid3d.def.json b/resources/definitions/rigid3d.def.json index d0c7b3ca31..62e4e70d7a 100644 --- a/resources/definitions/rigid3d.def.json +++ b/resources/definitions/rigid3d.def.json @@ -1,33 +1,32 @@ { - "name": "Rigid3D 2. Nesil", "version": 2, + "name": "Rigid3D 2. Nesil", "inherits": "rigid3d_base", - "metadata": { - "visible": true, - "quality_definition": "rigid3d_base", - - "preferred_quality_type": "standard" + "metadata": + { + "visible": true, + "preferred_quality_type": "standard", + "quality_definition": "rigid3d_base" }, - "overrides": { - "machine_name": { "default_value": "Rigid3D 2. Nesil" }, - - "machine_heated_bed": { "default_value": true }, - - "machine_width": { "default_value": 250 }, + "overrides": + { + "gantry_height": { "value": 20 }, + "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 250 }, - "machine_height": { "default_value": 210 }, - - "machine_center_is_zero": { "default_value": false }, - - "machine_start_gcode": {"default_value": " ; -- START GCODE --\n G21\n G28 ; Home extruder\n G29 ; Autolevel bed\n M107 ; Turn off fan\n G90 ; Absolute positioning\n M82 ; Extruder in absolute mode\n G92 E0 ; Reset extruder position\n ; -- end of START GCODE --\n\n"}, - "machine_end_gcode": {"default_value": " ; -- END GCODE --\n G1 X0 Y230 ; Get extruder out of way.\n M107 ; Turn off fan\n G91 ; Relative positioning\n G0 Z20 ; Lift extruder up\n T0\n G1 E-1 ; Reduce filament pressure\n M104 T0 S0 ; Turn ectruder heater off\n G90 ; Absolute positioning\n G92 E0 ; Reset extruder position\n M140 S0 ; Disable heated bed\n M84 ; Turn steppers off\n ; -- end of END GCODE --\n"}, - - "machine_head_with_fans_polygon": { + "machine_end_gcode": { "default_value": " ; -- END GCODE --\n G1 X0 Y230 ; Get extruder out of way.\n M107 ; Turn off fan\n G91 ; Relative positioning\n G0 Z20 ; Lift extruder up\n T0\n G1 E-1 ; Reduce filament pressure\n M104 T0 S0 ; Turn ectruder heater off\n G90 ; Absolute positioning\n G92 E0 ; Reset extruder position\n M140 S0 ; Disable heated bed\n M84 ; Turn steppers off\n ; -- end of END GCODE --\n" }, + "machine_head_with_fans_polygon": + { "default_value": [ - [ -22, -67], [ -22, 51], [ 36, -67], [ 36, 51] - ] + [-22, -67], + [-22, 51], + [36, -67], + [36, 51] + ] }, - - "gantry_height": { "value": 20 } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 210 }, + "machine_name": { "default_value": "Rigid3D 2. Nesil" }, + "machine_start_gcode": { "default_value": " ; -- START GCODE --\n G21\n G28 ; Home extruder\n G29 ; Autolevel bed\n M107 ; Turn off fan\n G90 ; Absolute positioning\n M82 ; Extruder in absolute mode\n G92 E0 ; Reset extruder position\n ; -- end of START GCODE --\n\n" }, + "machine_width": { "default_value": 250 } } -} +} \ No newline at end of file diff --git a/resources/definitions/rigid3d_3rdgen.def.json b/resources/definitions/rigid3d_3rdgen.def.json index 7fd69164c3..c5a0e726c2 100644 --- a/resources/definitions/rigid3d_3rdgen.def.json +++ b/resources/definitions/rigid3d_3rdgen.def.json @@ -1,33 +1,32 @@ { - "name": "Rigid3D 3. Nesil", "version": 2, + "name": "Rigid3D 3. Nesil", "inherits": "rigid3d_base", - "metadata": { - "visible": true, - "quality_definition": "rigid3d_base", - - "preferred_quality_type": "standard" + "metadata": + { + "visible": true, + "preferred_quality_type": "standard", + "quality_definition": "rigid3d_base" }, - "overrides": { - "machine_name": { "default_value": "Rigid3D 3. Nesil" }, - - "machine_heated_bed": { "default_value": true }, - - "machine_width": { "default_value": 270 }, + "overrides": + { + "gantry_height": { "value": 20 }, + "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 290 }, - "machine_height": { "default_value": 240 }, - - "machine_center_is_zero": { "default_value": false }, - - "machine_start_gcode": {"default_value": " ; -- START GCODE --\n G21\n G28 ; Home extruder\n G29 ; Autolevel bed\n M107 ; Turn off fan\n G90 ; Absolute positioning\n M82 ; Extruder in absolute mode\n G92 E0 ; Reset extruder position\n ; -- end of START GCODE --\n\n"}, - "machine_end_gcode": {"default_value": " ; -- END GCODE --\n G1 X0 Y230 ; Get extruder out of way.\n M107 ; Turn off fan\n G91 ; Relative positioning\n G0 Z20 ; Lift extruder up\n T0\n G1 E-1 ; Reduce filament pressure\n M104 T0 S0 ; Turn extruder heater off\n G90 ; Absolute positioning\n G92 E0 ; Reset extruder position\n M140 S0 ; Disable heated bed\n M84 ; Turn steppers off\n ; -- end of END GCODE --\n"}, - - "machine_head_with_fans_polygon": { + "machine_end_gcode": { "default_value": " ; -- END GCODE --\n G1 X0 Y230 ; Get extruder out of way.\n M107 ; Turn off fan\n G91 ; Relative positioning\n G0 Z20 ; Lift extruder up\n T0\n G1 E-1 ; Reduce filament pressure\n M104 T0 S0 ; Turn extruder heater off\n G90 ; Absolute positioning\n G92 E0 ; Reset extruder position\n M140 S0 ; Disable heated bed\n M84 ; Turn steppers off\n ; -- end of END GCODE --\n" }, + "machine_head_with_fans_polygon": + { "default_value": [ - [ -18, -20], [ -18, 45], [ 32, -20], [ 32, 45] - ] + [-18, -20], + [-18, 45], + [32, -20], + [32, 45] + ] }, - - "gantry_height": { "value": 20 } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 240 }, + "machine_name": { "default_value": "Rigid3D 3. Nesil" }, + "machine_start_gcode": { "default_value": " ; -- START GCODE --\n G21\n G28 ; Home extruder\n G29 ; Autolevel bed\n M107 ; Turn off fan\n G90 ; Absolute positioning\n M82 ; Extruder in absolute mode\n G92 E0 ; Reset extruder position\n ; -- end of START GCODE --\n\n" }, + "machine_width": { "default_value": 270 } } -} +} \ No newline at end of file diff --git a/resources/definitions/rigid3d_base.def.json b/resources/definitions/rigid3d_base.def.json index bd1995f3dc..4940bc5a3c 100644 --- a/resources/definitions/rigid3d_base.def.json +++ b/resources/definitions/rigid3d_base.def.json @@ -1,150 +1,81 @@ { - "name": "Rigid3D Base Printer", "version": 2, + "name": "Rigid3D Base Printer", "inherits": "fdmprinter", - "metadata": { - "visible": false, - "author": "Mehmet SUTAŞ", - "manufacturer": "Rigid3D", + "metadata": + { + "visible": false, + "author": "Mehmet SUTA\u015e", + "manufacturer": "Rigid3D", "file_formats": "text/x-gcode", - "has_materials": true, - "has_machine_quality": true, - - "machine_extruder_trains":{ - "0": "rigid3d_base_extruder_0" - }, - "first_start_actions": ["MachineSettingsAction"], - "supported_actions": ["MachineSettingsAction"], - + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "machine_extruder_trains": { "0": "rigid3d_base_extruder_0" }, "preferred_material": "generic_pla_175", - "exclude_materials": [ - "chromatik_pla", - "dsm_arnitel2045_175", "dsm_novamid1070_175", - "emotiontech_abs", "emotiontech_absx", "emotiontech_acetate", "emotiontech_bvoh", "emotiontech_asax", "emotiontech_hips", "emotiontech_petg", "emotiontech_pla", "emotiontech_pva-m", "emotiontech_pva-oks", "emotiontech_pva-s", "emotiontech_tpu98a", - "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", - "fabtotum_abs", "fabtotum_nylon", "fabtotum_pla", "fabtotum_tpu", - "fiberlogy_hd_pla", - "filo3d_pla", "filo3d_pla_green", "filo3d_pla_red", - "generic_abs", - "generic_bam", - "generic_cffcpe", - "generic_cffpa", - "generic_cpe", - "generic_cpe_plus", - "generic_gffcpe", - "generic_gffpa", - "generic_hips", - "generic_nylon", - "generic_pc", - "generic_petg", - "generic_pla", - "generic_pp", - "generic_pva", - "generic_tough_pla", - "generic_tpu", - "imade3d_petg_175", "imade3d_pla_175", - "innofill_innoflex60_175", - "leapfrog_abs_natural", "leapfrog_epla_natural", "leapfrog_pva_natural", - "octofiber_pla", - "polyflex_pla", "polymax_pla", "polyplus_pla", "polywood_pla", - "redd_abs", "redd_asa", "redd_hips", "redd_nylon", "redd_petg", "redd_pla", "redd_tpe", - "structur3d_dap100silicone", - "tizyx_abs", "tizyx_flex", "tizyx_petg", "tizyx_pla", "tizyx_pla_bois", "tizyx_pva", - "ultimaker_abs_black", "ultimaker_abs_blue", "ultimaker_abs_green", "ultimaker_abs_grey", "ultimaker_abs_orange", "ultimaker_abs_pearl-gold", "ultimaker_abs_red", "ultimaker_abs_silver-metallic", "ultimaker_abs_white", "ultimaker_abs_yellow", - "ultimaker_bam", - "ultimaker_cpe_black", "ultimaker_cpe_blue", "ultimaker_cpe_dark-grey", "ultimaker_cpe_green", "ultimaker_cpe_light-grey", "ultimaker_cpe_plus_black", "ultimaker_cpe_plus_transparent", "ultimaker_cpe_plus_white", "ultimaker_cpe_red", "ultimaker_cpe_transparent", "ultimaker_cpe_white", "ultimaker_cpe_yellow", - "ultimaker_nylon_black", "ultimaker_nylon_transparent", - "ultimaker_pc_black", "ultimaker_pc_transparent", "ultimaker_pc_white", - "ultimaker_pla_black", "ultimaker_pla_blue", "ultimaker_pla_green", "ultimaker_pla_magenta", "ultimaker_pla_orange", "ultimaker_pla_pearl-white", "ultimaker_pla_red", "ultimaker_pla_silver-metallic", "ultimaker_pla_transparent", "ultimaker_pla_white", "ultimaker_pla_yellow", - "ultimaker_pp_transparent", - "ultimaker_pva", - "ultimaker_tough_pla_black", "ultimaker_tough_pla_green", "ultimaker_tough_pla_red", "ultimaker_tough_pla_white", - "ultimaker_tpu_black", "ultimaker_tpu_blue", "ultimaker_tpu_red", "ultimaker_tpu_white", - "verbatim_bvoh_175", - "Vertex_Delta_ABS", "Vertex_Delta_PET", "Vertex_Delta_PLA", "Vertex_Delta_PLA_Glitter", "Vertex_Delta_PLA_Mat", "Vertex_Delta_PLA_Satin", "Vertex_Delta_PLA_Wood", "Vertex_Delta_TPU", - "zyyx_pro_flex", "zyyx_pro_pla" - ] + "supported_actions": [ "MachineSettingsAction" ] }, - "overrides": { - "machine_name": { "default_value": "Rigid3D Base Printer" }, - - "material_diameter": { "default_value": 1.75 }, - - "machine_max_feedrate_x": { "value": 100 }, - "machine_max_feedrate_y": { "value": 100 }, - "machine_max_feedrate_z": { "value": 8 }, - "machine_max_feedrate_e": { "value": 25 }, - - "machine_max_acceleration_x": { "value": 600 }, - "machine_max_acceleration_y": { "value": 600 }, - "machine_max_acceleration_z": { "value": 10 }, - "machine_max_acceleration_e": { "value": 1000 }, - "machine_acceleration": { "value": 600 }, - - "machine_max_jerk_xy": { "value": 10.0 }, - "machine_max_jerk_z": { "value": 0.3 }, - "machine_max_jerk_e": { "value": 5 }, - - - "wall_0_wipe_dist": { "value": 0.05 }, - "optimize_wall_printing_order": { "value": "True" }, - - "infill_sparse_density": { "value": 16 }, - "infill_wipe_dist": { "value": 0 }, - "infill_before_walls": { "value": "False" }, - - "material_initial_print_temperature": { "value": "material_print_temperature" }, - "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_bed_temperature_layer_0": { "value": "material_bed_temperature" }, - - "wall_0_material_flow": { "value": 95 }, - - "speed_print": { "value": 40.0 } , - "speed_topbottom": { "value": "speed_print" }, - "speed_support_interface": { "value": "speed_support" }, - "speed_travel": { "value": 80.0 }, - "speed_layer_0": { "value": 25.0 }, - - "acceleration_print": { "value": 600 }, + "overrides": + { + "acceleration_enabled": { "value": "False" }, + "acceleration_print": { "value": 600 }, "acceleration_travel": { "value": 600 }, - "acceleration_travel_layer_0": { "value": "acceleration_travel" }, - + "adaptive_layer_height_variation": { "value": 0.16 }, + "adaptive_layer_height_variation_step": { "value": 0.04 }, + "adhesion_type": { "value": "'skirt'" }, + "expand_skins_expand_distance": { "value": 0.3 }, + "infill_pattern": { "value": "'zigzag'" }, + "infill_sparse_density": { "value": 10 }, + "inset_direction": { "value": "'outside_in'" }, + "jerk_enabled": { "value": "False" }, "jerk_print": { "value": 10 }, "jerk_travel": { "value": "jerk_print" }, "jerk_travel_layer_0": { "value": "jerk_travel" }, - - "acceleration_enabled": { "value": "False" }, - "jerk_enabled": { "value": "False" }, - - "retraction_amount": { "value": 1.50 }, - "retraction_prime_speed": { "value": 7 }, - "retraction_count_max": { "value": 5 }, - "retraction_combing": { "value": "'noskin'" }, - "travel_avoid_other_parts": { "value": "False" }, - - "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, - "support_interface_enable": { "value": "True" }, - "support_interface_density": { "value": 70 }, + "machine_acceleration": { "value": 600 }, + "machine_max_acceleration_e": { "value": 1000 }, + "machine_max_acceleration_x": { "value": 600 }, + "machine_max_acceleration_y": { "value": 600 }, + "machine_max_acceleration_z": { "value": 300 }, + "machine_max_feedrate_e": { "value": 40 }, + "machine_max_feedrate_x": { "value": 100 }, + "machine_max_feedrate_y": { "value": 100 }, + "machine_max_feedrate_z": { "value": 8 }, + "machine_max_jerk_xy": { "value": 10.0 }, + "machine_max_jerk_z": { "value": 0.3 }, + "machine_name": { "default_value": "Rigid3D Base Printer" }, + "material_bed_temperature_layer_0": { "value": "material_bed_temperature" }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, "minimum_interface_area": { "value": 5.0 }, "minimum_support_area": { "value": 5 }, + "optimize_wall_printing_order": { "value": "True" }, + "retraction_amount": { "value": 1.5 }, + "retraction_combing": { "value": "'all'" }, + "retraction_combing_max_distance": { "value": 30 }, + "skin_monotonic": { "value": "True" }, + "skirt_gap": { "value": 5.0 }, + "skirt_line_count": { "value": 2 }, + "speed_support_interface": { "value": "speed_support" }, + "speed_topbottom": { "value": "speed_print" }, + "speed_travel": { "value": 80.0 }, + "speed_z_hop": { "default_value": 8.0 }, + "support_bottom_stair_step_height": { "value": 0.4 }, "support_brim_enable": { "value": "True" }, "support_brim_width": { "value": 4 }, + "support_infill_rate": { "value": 20 }, + "support_interface_density": { "value": 70 }, + "support_interface_enable": { "value": true }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, "support_xy_distance_overhang": { "value": "wall_line_width_0" }, "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, - - "adhesion_type": { "value": "'skirt'" }, - "skirt_gap": { "value": 5.0 }, - "skirt_line_count": { "value": 2 }, - - "meshfix_maximum_deviation": { "value": 0.01 }, - - "adaptive_layer_height_variation": { "value": 0.16 }, - "adaptive_layer_height_variation_step": { "value": 0.04 }, - - "top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" }, - "wall_thickness": {"value": "line_width * 2" }, - "speed_z_hop": {"default_value": 8} - + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" }, + "top_bottom_pattern": { "value": "'zigzag'" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, + "travel_retract_before_outer_wall": { "value": "True" }, + "wall_thickness": { "value": "line_width * 2" }, + "xy_offset_layer_0": { "value": -0.2 }, + "z_seam_position": { "value": "'backleft'" }, + "z_seam_type": { "value": "'back'" } } } \ No newline at end of file diff --git a/resources/definitions/rigid3d_hobby.def.json b/resources/definitions/rigid3d_hobby.def.json index 9e62173f1e..3191f32d0d 100644 --- a/resources/definitions/rigid3d_hobby.def.json +++ b/resources/definitions/rigid3d_hobby.def.json @@ -1,159 +1,33 @@ { - "name": "Rigid3D Hobby", "version": 2, + "name": "Rigid3D Hobby", "inherits": "rigid3d_base", - "metadata": { - "visible": true, - "quality_definition": "rigid3d_base", - "preferred_quality_type": "standard", - + "metadata": + { + "visible": true, "preferred_material": "generic_pla_175", - "exclude_materials": [ - "chromatik_pla", - "dsm_arnitel2045_175", - "dsm_novamid1070_175", - "emotiontech_abs", - "emotiontech_asax", - "emotiontech_hips", - "emotiontech_petg", - "emotiontech_pla", - "emotiontech_pva-m", - "emotiontech_pva-oks", - "emotiontech_pva-s", - "emotiontech_tpu98a", - "fabtotum_abs", - "fabtotum_nylon", - "fabtotum_pla", - "fabtotum_tpu", - "fiberlogy_hd_pla", - "filo3d_pla", - "filo3d_pla_green", - "filo3d_pla_red", - "generic_abs", - "generic_abs_175", - "generic_bam", - "generic_cffcpe", - "generic_cffpa", - "generic_cpe", - "generic_cpe_175", - "generic_cpe_plus", - "generic_gffcpe", - "generic_gffpa", - "generic_hips", - "generic_hips_175", - "generic_nylon", - "generic_nylon_175", - "generic_pc", - "generic_pc_175", - "generic_petg", - "generic_petg_175", - "generic_pla", - "generic_pp", - "generic_pva", - "generic_pva_175", - "generic_tough_pla", - "generic_tpu", - "generic_tpu_175", - "imade3d_petg_175", - "imade3d_pla_175", - "innofill_innoflex60_175", - "leapfrog_abs_natural", - "leapfrog_epla_natural", - "leapfrog_pva_natural", - "octofiber_pla", - "polyflex_pla", - "polymax_pla", - "polyplus_pla", - "polywood_pla", - "structur3d_dap100silicone", - "tizyx_abs", - "tizyx_flex", - "tizyx_petg", - "tizyx_pla", - "tizyx_pla_bois", - "tizyx_pva", - "ultimaker_abs_black", - "ultimaker_abs_blue", - "ultimaker_abs_green", - "ultimaker_abs_grey", - "ultimaker_abs_orange", - "ultimaker_abs_pearl-gold", - "ultimaker_abs_red", - "ultimaker_abs_silver-metallic", - "ultimaker_abs_white", - "ultimaker_abs_yellow", - "ultimaker_bam", - "ultimaker_cpe_black", - "ultimaker_cpe_blue", - "ultimaker_cpe_dark-grey", - "ultimaker_cpe_green", - "ultimaker_cpe_light-grey", - "ultimaker_cpe_plus_black", - "ultimaker_cpe_plus_transparent", - "ultimaker_cpe_plus_white", - "ultimaker_cpe_red", - "ultimaker_cpe_transparent", - "ultimaker_cpe_white", - "ultimaker_cpe_yellow", - "ultimaker_nylon_black", - "ultimaker_nylon_transparent", - "ultimaker_pc_black", - "ultimaker_pc_transparent", - "ultimaker_pc_white", - "ultimaker_pla_black", - "ultimaker_pla_blue", - "ultimaker_pla_green", - "ultimaker_pla_magenta", - "ultimaker_pla_orange", - "ultimaker_pla_pearl-white", - "ultimaker_pla_red", - "ultimaker_pla_silver-metallic", - "ultimaker_pla_transparent", - "ultimaker_pla_white", - "ultimaker_pla_yellow", - "ultimaker_pp_transparent", - "ultimaker_pva", - "ultimaker_tough_pla_black", - "ultimaker_tough_pla_green", - "ultimaker_tough_pla_red", - "ultimaker_tough_pla_white", - "ultimaker_tpu_black", - "ultimaker_tpu_blue", - "ultimaker_tpu_red", - "ultimaker_tpu_white", - "verbatim_bvoh_175", - "Vertex_Delta_ABS", - "Vertex_Delta_PET", - "Vertex_Delta_PLA", - "Vertex_Delta_PLA_Glitter", - "Vertex_Delta_PLA_Mat", - "Vertex_Delta_PLA_Satin", - "Vertex_Delta_PLA_Wood", - "Vertex_Delta_TPU", - "zyyx_pro_flex", - "zyyx_pro_pla" - ] + "preferred_quality_type": "standard", + "quality_definition": "rigid3d_base" }, - "overrides": { - "machine_name": { "default_value": "Rigid3D Hobby" }, - - "machine_heated_bed": { "default_value": false }, - - "machine_width": { "default_value": 150 }, + "overrides": + { + "gantry_height": { "value": 20 }, + "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 150 }, - "machine_height": { "default_value": 150 }, - - "machine_center_is_zero": { "default_value": false }, - - "machine_start_gcode": {"default_value": "G21\nG28 ; Home extruder\nM420 S1 ; Enable MBL\nM107 ; Turn off fan\nG91 ; Relative positioning\nG1 Z5 F180;\nG1 X30 Y30 F3000;\nG90 ; Absolute positioning\nM82 ; Extruder in absolute mode\nG92 E0 ; Reset extruder position\n"}, - "machine_end_gcode": {"default_value": "G1 X0 Y145 ; Get extruder out of way.\nM107 ; Turn off fan\nG91 ; Relative positioning\nG0 Z20 ; Lift extruder up\nT0\nG1 E-1 ; Reduce filament pressure\nM104 T0 S0 ; Turn extruder heater off\nG90 ; Absolute positioning\nG92 E0 ; Reset extruder position\nM84 ; Turn steppers off\n"}, - - "machine_head_with_fans_polygon": { + "machine_end_gcode": { "default_value": "G1 X0 Y145 ; Get extruder out of way.\nM107 ; Turn off fan\nG91 ; Relative positioning\nG0 Z20 ; Lift extruder up\nT0\nG1 E-1 ; Reduce filament pressure\nM104 T0 S0 ; Turn extruder heater off\nG90 ; Absolute positioning\nG92 E0 ; Reset extruder position\nM84 ; Turn steppers off\n" }, + "machine_head_with_fans_polygon": + { "default_value": [ - [ -16, -30], [ -16, 45], [ 16, -30], [ 16, 45] - ] + [-16, -30], + [-16, 45], + [16, -30], + [16, 45] + ] }, - - "gantry_height": { "value": 20 } + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 150 }, + "machine_name": { "default_value": "Rigid3D Hobby" }, + "machine_start_gcode": { "default_value": "G21\nG28 ; Home extruder\nM420 S1 ; Enable MBL\nM107 ; Turn off fan\nG91 ; Relative positioning\nG1 Z5 F180;\nG1 X30 Y30 F3000;\nG90 ; Absolute positioning\nM82 ; Extruder in absolute mode\nG92 E0 ; Reset extruder position\n" }, + "machine_width": { "default_value": 150 } } -} +} \ No newline at end of file diff --git a/resources/definitions/rigid3d_mucit.def.json b/resources/definitions/rigid3d_mucit.def.json index 45255579eb..a6db954046 100644 --- a/resources/definitions/rigid3d_mucit.def.json +++ b/resources/definitions/rigid3d_mucit.def.json @@ -1,161 +1,39 @@ { - "name": "Rigid3D Mucit", "version": 2, + "name": "Rigid3D Mucit", "inherits": "rigid3d_base", - "metadata": { - "visible": true, - "quality_definition": "rigid3d_base", - "preferred_quality_type": "standard", - "platform": "rigid3d_mucit_platform.3mf", - "platform_offset": [ 0, -19, 0], - + "metadata": + { + "visible": true, + "platform": "rigid3d_mucit_platform.3mf", + "platform_offset": [ + 0, + -19, + 0 + ], "preferred_material": "generic_pla_175", - "exclude_materials": [ - "chromatik_pla", - "dsm_arnitel2045_175", - "dsm_novamid1070_175", - "emotiontech_abs", - "emotiontech_asax", - "emotiontech_hips", - "emotiontech_petg", - "emotiontech_pla", - "emotiontech_pva-m", - "emotiontech_pva-oks", - "emotiontech_pva-s", - "emotiontech_tpu98a", - "fabtotum_abs", - "fabtotum_nylon", - "fabtotum_pla", - "fabtotum_tpu", - "fiberlogy_hd_pla", - "filo3d_pla", - "filo3d_pla_green", - "filo3d_pla_red", - "generic_abs", - "generic_abs_175", - "generic_bam", - "generic_cffcpe", - "generic_cffpa", - "generic_cpe", - "generic_cpe_175", - "generic_cpe_plus", - "generic_gffcpe", - "generic_gffpa", - "generic_hips", - "generic_hips_175", - "generic_nylon", - "generic_nylon_175", - "generic_pc", - "generic_pc_175", - "generic_petg", - "generic_petg_175", - "generic_pla", - "generic_pp", - "generic_pva", - "generic_pva_175", - "generic_tough_pla", - "generic_tpu", - "generic_tpu_175", - "imade3d_petg_175", - "imade3d_pla_175", - "innofill_innoflex60_175", - "leapfrog_abs_natural", - "leapfrog_epla_natural", - "leapfrog_pva_natural", - "octofiber_pla", - "polyflex_pla", - "polymax_pla", - "polyplus_pla", - "polywood_pla", - "structur3d_dap100silicone", - "tizyx_abs", - "tizyx_flex", - "tizyx_petg", - "tizyx_pla", - "tizyx_pla_bois", - "tizyx_pva", - "ultimaker_abs_black", - "ultimaker_abs_blue", - "ultimaker_abs_green", - "ultimaker_abs_grey", - "ultimaker_abs_orange", - "ultimaker_abs_pearl-gold", - "ultimaker_abs_red", - "ultimaker_abs_silver-metallic", - "ultimaker_abs_white", - "ultimaker_abs_yellow", - "ultimaker_bam", - "ultimaker_cpe_black", - "ultimaker_cpe_blue", - "ultimaker_cpe_dark-grey", - "ultimaker_cpe_green", - "ultimaker_cpe_light-grey", - "ultimaker_cpe_plus_black", - "ultimaker_cpe_plus_transparent", - "ultimaker_cpe_plus_white", - "ultimaker_cpe_red", - "ultimaker_cpe_transparent", - "ultimaker_cpe_white", - "ultimaker_cpe_yellow", - "ultimaker_nylon_black", - "ultimaker_nylon_transparent", - "ultimaker_pc_black", - "ultimaker_pc_transparent", - "ultimaker_pc_white", - "ultimaker_pla_black", - "ultimaker_pla_blue", - "ultimaker_pla_green", - "ultimaker_pla_magenta", - "ultimaker_pla_orange", - "ultimaker_pla_pearl-white", - "ultimaker_pla_red", - "ultimaker_pla_silver-metallic", - "ultimaker_pla_transparent", - "ultimaker_pla_white", - "ultimaker_pla_yellow", - "ultimaker_pp_transparent", - "ultimaker_pva", - "ultimaker_tough_pla_black", - "ultimaker_tough_pla_green", - "ultimaker_tough_pla_red", - "ultimaker_tough_pla_white", - "ultimaker_tpu_black", - "ultimaker_tpu_blue", - "ultimaker_tpu_red", - "ultimaker_tpu_white", - "verbatim_bvoh_175", - "Vertex_Delta_ABS", - "Vertex_Delta_PET", - "Vertex_Delta_PLA", - "Vertex_Delta_PLA_Glitter", - "Vertex_Delta_PLA_Mat", - "Vertex_Delta_PLA_Satin", - "Vertex_Delta_PLA_Wood", - "Vertex_Delta_TPU", - "zyyx_pro_flex", - "zyyx_pro_pla" - ] + "preferred_quality_type": "standard", + "quality_definition": "rigid3d_base" }, - "overrides": { - "machine_name": { "default_value": "Rigid3D Mucit" }, - - "machine_heated_bed": { "default_value": false }, - - "machine_width": { "default_value": 150 }, + "overrides": + { + "gantry_height": { "value": 20 }, + "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 150 }, - "machine_height": { "default_value": 150 }, - - "machine_center_is_zero": { "default_value": false }, - - "machine_start_gcode": {"default_value": "G21\nG28 ; Home extruder\nM420 S1 ; Enable MBL\nM107 ; Turn off fan\nG91 ; Relative positioning\nG1 Z5 F180;\nG1 X30 Y30 F3000;\nG90 ; Absolute positioning\nM82 ; Extruder in absolute mode\nG92 E0 ; Reset extruder position\n"}, - "machine_end_gcode": {"default_value": "G1 X0 Y145 ; Get extruder out of way.\nM107 ; Turn off fan\nG91 ; Relative positioning\nG0 Z20 ; Lift extruder up\nT0\nG1 E-1 ; Reduce filament pressure\nM104 T0 S0 ; Turn extruder heater off\nG90 ; Absolute positioning\nG92 E0 ; Reset extruder position\nM84 ; Turn steppers off\n"}, - - "machine_head_with_fans_polygon": { + "machine_end_gcode": { "default_value": "G1 X0 Y145 ; Get extruder out of way.\nM107 ; Turn off fan\nG91 ; Relative positioning\nG0 Z20 ; Lift extruder up\nT0\nG1 E-1 ; Reduce filament pressure\nM104 T0 S0 ; Turn extruder heater off\nG90 ; Absolute positioning\nG92 E0 ; Reset extruder position\nM84 ; Turn steppers off\n" }, + "machine_head_with_fans_polygon": + { "default_value": [ - [ -20, 102], [ -20, -45], [ 45, -45], [ 45, 102] - ] + [-20, 102], + [-20, -45], + [45, -45], + [45, 102] + ] }, - - "gantry_height": { "value": 20 } + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 150 }, + "machine_name": { "default_value": "Rigid3D Mucit" }, + "machine_start_gcode": { "default_value": "G21\nG28 ; Home extruder\nM420 S1 ; Enable MBL\nM107 ; Turn off fan\nG91 ; Relative positioning\nG1 Z5 F180;\nG1 X30 Y30 F3000;\nG90 ; Absolute positioning\nM82 ; Extruder in absolute mode\nG92 E0 ; Reset extruder position\n" }, + "machine_width": { "default_value": 150 } } -} +} \ No newline at end of file diff --git a/resources/definitions/rigid3d_mucit2.def.json b/resources/definitions/rigid3d_mucit2.def.json index 42499ba5e1..040c4a2946 100644 --- a/resources/definitions/rigid3d_mucit2.def.json +++ b/resources/definitions/rigid3d_mucit2.def.json @@ -1,35 +1,43 @@ { - "name": "Rigid3D Mucit2", "version": 2, + "name": "Rigid3D Mucit2", "inherits": "rigid3d_base", - "metadata": { + "metadata": + { "visible": true, - "quality_definition": "rigid3d_base", - "preferred_quality_type": "standard", "platform": "rigid3d_mucit2_platform.3mf", - "platform_offset": [ 0, 0, 0], - - "preferred_material": "generic_pla_175" + "platform_offset": [ + 0, + 0, + 0 + ], + "preferred_material": "generic_pla_175", + "preferred_quality_type": "standard", + "quality_definition": "rigid3d_base" }, - "overrides": { - "machine_name": { "default_value": "Rigid3D Mucit2" }, - - "machine_heated_bed": { "default_value": true }, - - "machine_width": { "default_value": 150 }, - "machine_depth": { "default_value": 150 }, - "machine_height": { "default_value": 150 }, - + "overrides": + { + "gantry_height": { "value": 30 }, + "machine_acceleration": { "value": 500 }, "machine_center_is_zero": { "default_value": false }, - - "machine_start_gcode": {"default_value": "G21\nG28\nM420 S1\nM107\nG90\nM82\nG92 E0\n"}, - "machine_end_gcode": {"default_value": "G92 E0\nT0\nG1 F1800 E-2\nG27 P2\nM107\nM104 T0 S0\nM140 S0\nG90\nG92 E0\nM84\n"}, - - "machine_head_with_fans_polygon": { + "machine_depth": { "default_value": 150 }, + "machine_end_gcode": { "default_value": "G92 E0\nT0\nG1 F1800 E-2\nG27 P2\nM107\nM104 T0 S0\nM140 S0\nG90\nG92 E0\nM18\n" }, + "machine_head_with_fans_polygon": + { "default_value": [ - [ -20, 40], [ -20, -65], [ 40, -65], [ 40, 40]] + [-20, 40], + [-20, -65], + [40, -65], + [40, 40] + ] }, - - "gantry_height": { "value": 30 } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 150 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_name": { "default_value": "Rigid3D Mucit2" }, + "machine_start_gcode": { "default_value": "G21\nG92 E0\nG28\nM420 S1\nM107\nG90\nG1 X10.0 Y0.1 Z0.3 F3000.0\nG1 X140.0 Y0.1 Z0.3 F1500.0 E10\nG1 X140 Y0.4 Z0.3 F3000.0\nG1 X10.0 Y0.4 Z0.3 F1500.0 E20\nG1 Z2.0 F1500.0\nG92 E0\n" }, + "machine_width": { "default_value": 150 } } -} +} \ No newline at end of file diff --git a/resources/definitions/rigid3d_zero.def.json b/resources/definitions/rigid3d_zero.def.json index 678f4bc80c..6f9f90fe31 100644 --- a/resources/definitions/rigid3d_zero.def.json +++ b/resources/definitions/rigid3d_zero.def.json @@ -1,159 +1,33 @@ { - "name": "Rigid3D Zero", "version": 2, + "name": "Rigid3D Zero", "inherits": "rigid3d_base", - "metadata": { - "visible": true, - "quality_definition": "rigid3d_base", - "preferred_quality_type": "standard", - + "metadata": + { + "visible": true, "preferred_material": "generic_pla_175", - "exclude_materials": [ - "chromatik_pla", - "dsm_arnitel2045_175", - "dsm_novamid1070_175", - "emotiontech_abs", - "emotiontech_asax", - "emotiontech_hips", - "emotiontech_petg", - "emotiontech_pla", - "emotiontech_pva-m", - "emotiontech_pva-oks", - "emotiontech_pva-s", - "emotiontech_tpu98a", - "fabtotum_abs", - "fabtotum_nylon", - "fabtotum_pla", - "fabtotum_tpu", - "fiberlogy_hd_pla", - "filo3d_pla", - "filo3d_pla_green", - "filo3d_pla_red", - "generic_abs", - "generic_abs_175", - "generic_bam", - "generic_cffcpe", - "generic_cffpa", - "generic_cpe", - "generic_cpe_175", - "generic_cpe_plus", - "generic_gffcpe", - "generic_gffpa", - "generic_hips", - "generic_hips_175", - "generic_nylon", - "generic_nylon_175", - "generic_pc", - "generic_pc_175", - "generic_petg", - "generic_petg_175", - "generic_pla", - "generic_pp", - "generic_pva", - "generic_pva_175", - "generic_tough_pla", - "generic_tpu", - "generic_tpu_175", - "imade3d_petg_175", - "imade3d_pla_175", - "innofill_innoflex60_175", - "leapfrog_abs_natural", - "leapfrog_epla_natural", - "leapfrog_pva_natural", - "octofiber_pla", - "polyflex_pla", - "polymax_pla", - "polyplus_pla", - "polywood_pla", - "structur3d_dap100silicone", - "tizyx_abs", - "tizyx_flex", - "tizyx_petg", - "tizyx_pla", - "tizyx_pla_bois", - "tizyx_pva", - "ultimaker_abs_black", - "ultimaker_abs_blue", - "ultimaker_abs_green", - "ultimaker_abs_grey", - "ultimaker_abs_orange", - "ultimaker_abs_pearl-gold", - "ultimaker_abs_red", - "ultimaker_abs_silver-metallic", - "ultimaker_abs_white", - "ultimaker_abs_yellow", - "ultimaker_bam", - "ultimaker_cpe_black", - "ultimaker_cpe_blue", - "ultimaker_cpe_dark-grey", - "ultimaker_cpe_green", - "ultimaker_cpe_light-grey", - "ultimaker_cpe_plus_black", - "ultimaker_cpe_plus_transparent", - "ultimaker_cpe_plus_white", - "ultimaker_cpe_red", - "ultimaker_cpe_transparent", - "ultimaker_cpe_white", - "ultimaker_cpe_yellow", - "ultimaker_nylon_black", - "ultimaker_nylon_transparent", - "ultimaker_pc_black", - "ultimaker_pc_transparent", - "ultimaker_pc_white", - "ultimaker_pla_black", - "ultimaker_pla_blue", - "ultimaker_pla_green", - "ultimaker_pla_magenta", - "ultimaker_pla_orange", - "ultimaker_pla_pearl-white", - "ultimaker_pla_red", - "ultimaker_pla_silver-metallic", - "ultimaker_pla_transparent", - "ultimaker_pla_white", - "ultimaker_pla_yellow", - "ultimaker_pp_transparent", - "ultimaker_pva", - "ultimaker_tough_pla_black", - "ultimaker_tough_pla_green", - "ultimaker_tough_pla_red", - "ultimaker_tough_pla_white", - "ultimaker_tpu_black", - "ultimaker_tpu_blue", - "ultimaker_tpu_red", - "ultimaker_tpu_white", - "verbatim_bvoh_175", - "Vertex_Delta_ABS", - "Vertex_Delta_PET", - "Vertex_Delta_PLA", - "Vertex_Delta_PLA_Glitter", - "Vertex_Delta_PLA_Mat", - "Vertex_Delta_PLA_Satin", - "Vertex_Delta_PLA_Wood", - "Vertex_Delta_TPU", - "zyyx_pro_flex", - "zyyx_pro_pla" - ] + "preferred_quality_type": "standard", + "quality_definition": "rigid3d_base" }, - "overrides": { - "machine_name": { "default_value": "Rigid3D Zero" }, - - "machine_heated_bed": { "default_value": false }, - - "machine_width": { "default_value": 250 }, + "overrides": + { + "gantry_height": { "value": 20 }, + "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 250 }, - "machine_height": { "default_value": 190 }, - - "machine_center_is_zero": { "default_value": false }, - - "machine_start_gcode": {"default_value": " ; -- START GCODE --\n G21\n G28 ; Home extruder\n G29 ; Autolevel bed\n M107 ; Turn off fan\n G90 ; Absolute positioning\n M82 ; Extruder in absolute mode\n G92 E0 ; Reset extruder position\n ; -- end of START GCODE --\n\n"}, - "machine_end_gcode": {"default_value": " ; -- END GCODE --\n G1 X0 Y230 ; Get extruder out of way.\n M107 ; Turn off fan\n G91 ; Relative positioning\n G0 Z20 ; Lift extruder up\n T0\n G1 E-1 ; Reduce filament pressure\n M104 T0 S0 ; Turn ectruder heater off\n G90 ; Absolute positioning\n G92 E0 ; Reset extruder position\n M140 S0 ; Disable heated bed\n M84 ; Turn steppers off\n ; -- end of END GCODE --\n"}, - - "machine_head_with_fans_polygon": { + "machine_end_gcode": { "default_value": " ; -- END GCODE --\n G1 X0 Y230 ; Get extruder out of way.\n M107 ; Turn off fan\n G91 ; Relative positioning\n G0 Z20 ; Lift extruder up\n T0\n G1 E-1 ; Reduce filament pressure\n M104 T0 S0 ; Turn ectruder heater off\n G90 ; Absolute positioning\n G92 E0 ; Reset extruder position\n M140 S0 ; Disable heated bed\n M84 ; Turn steppers off\n ; -- end of END GCODE --\n" }, + "machine_head_with_fans_polygon": + { "default_value": [ - [ -40, -15], [ -40, 60], [ 30, -15], [ 30, 60] - ] + [-40, -15], + [-40, 60], + [30, -15], + [30, 60] + ] }, - - "gantry_height": { "value": 20 } + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 190 }, + "machine_name": { "default_value": "Rigid3D Zero" }, + "machine_start_gcode": { "default_value": " ; -- START GCODE --\n G21\n G28 ; Home extruder\n G29 ; Autolevel bed\n M107 ; Turn off fan\n G90 ; Absolute positioning\n M82 ; Extruder in absolute mode\n G92 E0 ; Reset extruder position\n ; -- end of START GCODE --\n\n" }, + "machine_width": { "default_value": 250 } } -} +} \ No newline at end of file diff --git a/resources/definitions/rigid3d_zero2.def.json b/resources/definitions/rigid3d_zero2.def.json index 8b0defb67a..eaa51d6606 100644 --- a/resources/definitions/rigid3d_zero2.def.json +++ b/resources/definitions/rigid3d_zero2.def.json @@ -1,34 +1,33 @@ { - "name": "Rigid3D Zero2", "version": 2, + "name": "Rigid3D Zero2", "inherits": "rigid3d_base", - "metadata": { - "visible": true, - "quality_definition": "rigid3d_base", - "preferred_quality_type": "standard", - - "platform": "rigid3d_zero2_platform.3mf" + "metadata": + { + "visible": true, + "platform": "rigid3d_zero2_platform.3mf", + "preferred_quality_type": "standard", + "quality_definition": "rigid3d_base" }, - "overrides": { - "machine_name": { "default_value": "Rigid3D Zero2" }, - - "machine_heated_bed": { "default_value": true }, - - "machine_width": { "default_value": 200 }, + "overrides": + { + "gantry_height": { "value": 25 }, + "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 200 }, - "machine_height": { "default_value": 192 }, - - "machine_center_is_zero": { "default_value": false }, - - "machine_start_gcode": {"default_value": "; -- START GCODE --\nG21 ; mm olculer\nG28 ; Eksenleri sifirla\nM420 S1 ; Yazilim destekli tabla seviyeleme\nM107 ; Fani kapat\nG90 ; Mutlak konumlama\nG1 Z5 F180 ; Z eksenini 5mm yukselt\nG1 X30 Y30 F3000 ; Konuma git\nM82 ; Ekstruder mutlak mod\nG92 E0 ; Ekstruder konumu sifirla\n; -- end of START GCODE --"}, - "machine_end_gcode": {"default_value": "; -- END GCODE --\nG1 X0 Y180 ; Konuma git\nM107 ; Fani kapat\nG91 ; Goreceli konumlama\nG0 Z20 ; Tablayi alcalt\nT0\nG1 E-2 ; Filaman basincini dusur\nM104 T0 S0 ; Ekstruder isiticiyi kapat\nG90 ; Mutlak konumlama\nG92 E0 ; Ekstruder konumu sifirla\nM140 S0 ; Tabla isiticiyi kapat\nM84 ; Motorlari durdur\nM300 S2093 P150 ; Baski sonu melodisi\nM300 S2637 P150\nM300 S3135 P150\nM300 S4186 P150\nM300 S3135 P150\nM300 S2637 P150\nM300 S2793 P150\nM300 S2349 P150\nM300 S1975 P150\nM300 S2093 P450\n; -- end of END GCODE --\n"}, - - "machine_head_with_fans_polygon": { + "machine_end_gcode": { "default_value": "; -- END GCODE --\nG1 X0 Y180 ; Konuma git\nM107 ; Fani kapat\nG91 ; Goreceli konumlama\nG0 Z20 ; Tablayi alcalt\nT0\nG1 E-2 ; Filaman basincini dusur\nM104 T0 S0 ; Ekstruder isiticiyi kapat\nG90 ; Mutlak konumlama\nG92 E0 ; Ekstruder konumu sifirla\nM140 S0 ; Tabla isiticiyi kapat\nM84 ; Motorlari durdur\nM300 S2093 P150 ; Baski sonu melodisi\nM300 S2637 P150\nM300 S3135 P150\nM300 S4186 P150\nM300 S3135 P150\nM300 S2637 P150\nM300 S2793 P150\nM300 S2349 P150\nM300 S1975 P150\nM300 S2093 P450\n; -- end of END GCODE --\n" }, + "machine_head_with_fans_polygon": + { "default_value": [ - [ -30, 65], [ -30, -30], [ 30, -30], [ 30, 65] - ] + [-30, 65], + [-30, -30], + [30, -30], + [30, 65] + ] }, - - "gantry_height": { "value": 25 } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 192 }, + "machine_name": { "default_value": "Rigid3D Zero2" }, + "machine_start_gcode": { "default_value": "; -- START GCODE --\nG21 ; mm olculer\nG28 ; Eksenleri sifirla\nM420 S1 ; Yazilim destekli tabla seviyeleme\nM107 ; Fani kapat\nG90 ; Mutlak konumlama\nG1 Z5 F180 ; Z eksenini 5mm yukselt\nG1 X30 Y30 F3000 ; Konuma git\nM82 ; Ekstruder mutlak mod\nG92 E0 ; Ekstruder konumu sifirla\n; -- end of START GCODE --" }, + "machine_width": { "default_value": 200 } } -} +} \ No newline at end of file diff --git a/resources/definitions/rigid3d_zero3.def.json b/resources/definitions/rigid3d_zero3.def.json new file mode 100644 index 0000000000..712db7bf99 --- /dev/null +++ b/resources/definitions/rigid3d_zero3.def.json @@ -0,0 +1,44 @@ +{ + "version": 2, + "name": "Rigid3D Zero3", + "inherits": "rigid3d_base", + "metadata": + { + "visible": true, + "platform": "rigid3d_zero3_platform.3mf", + "platform_offset": [ + 0, + 0, + 0 + ], + "preferred_material": "generic_pla_175", + "preferred_quality_type": "standard", + "quality_definition": "rigid3d_base" + }, + "overrides": + { + "adhesion_type": { "value": "'none'" }, + "gantry_height": { "value": 30 }, + "machine_acceleration": { "value": 500 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "G92 E0\nT0\nG1 F1800 E-2\nG27 P2\nM107\nM104 T0 S0\nM140 S0\nG90\nG92 E0\nM18\n" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-20, 40], + [-20, -65], + [40, -65], + [40, 40] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_name": { "default_value": "Rigid3D Zero3" }, + "machine_start_gcode": { "default_value": "G21\nG92 E0\nG28\nM420 S1\nM107\nG90\nG1 X10.0 Y0.1 Z0.3 F3000.0\nG1 X190.0 Y0.1 Z0.3 F1500.0 E15\nG1 X190 Y0.4 Z0.3 F3000.0\nG1 X10.0 Y0.4 Z0.3 F1500.0 E30\nG1 Z2.0 F1500.0\nG92 E0\n" }, + "machine_width": { "default_value": 200 } + } +} \ No newline at end of file diff --git a/resources/definitions/rigidbot.def.json b/resources/definitions/rigidbot.def.json index 00062b1f52..e9e4d56629 100644 --- a/resources/definitions/rigidbot.def.json +++ b/resources/definitions/rigidbot.def.json @@ -2,70 +2,34 @@ "version": 2, "name": "RigidBot", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "RBC", "manufacturer": "RigidBot", "file_formats": "text/x-gcode", "platform": "rigidbot_platform.3mf", - "machine_extruder_trains": - { - "0": "rigidbot_extruder_0" - } + "machine_extruder_trains": { "0": "rigidbot_extruder_0" } }, - - "overrides": { + "overrides": + { + "cool_fan_enabled": { "default_value": false }, + "gantry_height": { "value": "0" }, + "layer_height": { "default_value": 0.2 }, + "machine_depth": { "default_value": 254 }, + "machine_end_gcode": { "default_value": ";End GCode\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+10 E-1 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nG1 Y230 F3000 ;move Y so the head is out of the way and Plate is moved forward\nM84 ;steppers off\nG90 ;absolute positioning" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 254 }, "machine_name": { "default_value": "RigidBot" }, - "machine_width": { - "default_value": 254 - }, - "machine_depth": { - "default_value": 254 - }, - "machine_height": { - "default_value": 254 - }, - "machine_heated_bed": { - "default_value": true - }, - "gantry_height": { - "value": "0" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": ";Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {infill_sparse_density}\nG21 ;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\nM205 X8 ;X/Y Jerk settings\nG1 Z15.0 F{speed_travel} ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E7 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F{speed_travel}\n;Put printing message on LCD screen\nM117 Rigibot Printing..." - }, - "machine_end_gcode": { - "default_value": ";End GCode\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+10 E-1 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nG1 Y230 F3000 ;move Y so the head is out of the way and Plate is moved forward\nM84 ;steppers off\nG90 ;absolute positioning" - }, - "layer_height": { - "default_value": 0.2 - }, - "wall_thickness": { - "value": "0.8" - }, - "top_bottom_thickness": { - "default_value": 0.3 - }, - "speed_print": { - "default_value": 60 - }, - "speed_layer_0": { - "minimum_value": "0.1" - }, - "cool_fan_enabled": { - "default_value": false - }, - "skirt_line_count": { - "default_value": 3 - }, - "skirt_gap": { - "default_value": 4 - }, - "skirt_brim_minimal_length": { - "default_value": 200 - } + "machine_start_gcode": { "default_value": ";Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {infill_sparse_density}\nG21 ;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\nM205 X8 ;X/Y Jerk settings\nG1 Z15.0 F{speed_travel} ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E7 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F{speed_travel}\n;Put printing message on LCD screen\nM117 Rigibot Printing..." }, + "machine_width": { "default_value": 254 }, + "skirt_brim_minimal_length": { "default_value": 200 }, + "skirt_gap": { "default_value": 4 }, + "skirt_line_count": { "default_value": 3 }, + "speed_layer_0": { "minimum_value": "0.1" }, + "speed_print": { "default_value": 60 }, + "top_bottom_thickness": { "default_value": 0.3 }, + "wall_thickness": { "value": "0.8" } } -} +} \ No newline at end of file diff --git a/resources/definitions/rigidbot_big.def.json b/resources/definitions/rigidbot_big.def.json index a3df390cfa..e0c8df7ae6 100644 --- a/resources/definitions/rigidbot_big.def.json +++ b/resources/definitions/rigidbot_big.def.json @@ -2,70 +2,34 @@ "version": 2, "name": "RigidBotBig", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "RBC", "manufacturer": "RigidBot", "file_formats": "text/x-gcode", "platform": "rigidbotbig_platform.3mf", - "machine_extruder_trains": - { - "0": "rigidbot_big_extruder_0" - } + "machine_extruder_trains": { "0": "rigidbot_big_extruder_0" } }, - - "overrides": { + "overrides": + { + "cool_fan_enabled": { "default_value": false }, + "gantry_height": { "value": "0" }, + "layer_height": { "default_value": 0.2 }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": ";End GCode\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+10 E-1 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nG1 Y230 F3000 ;move Y so the head is out of the way and Plate is moved forward\nM84 ;steppers off\nG90 ;absolute positioning" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 254 }, "machine_name": { "default_value": "RigidBotBig" }, - "machine_width": { - "default_value": 400 - }, - "machine_depth": { - "default_value": 300 - }, - "machine_height": { - "default_value": 254 - }, - "machine_heated_bed": { - "default_value": true - }, - "gantry_height": { - "value": "0" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": ";Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {infill_sparse_density}\n;Print time: {print_time}\n;M190 S{material_bed_temperature} ;Uncomment to add your own bed temperature line\n;M109 S{material_print_temperature} ;Uncomment to add your own temperature line\nG21 ;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\nM205 X8 ;X/Y Jerk settings\nG1 Z15.0 F{speed_travel} ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E7 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F{speed_travel}\n;Put printing message on LCD screen\nM117 Rigibot Printing..." - }, - "machine_end_gcode": { - "default_value": ";End GCode\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+10 E-1 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nG1 Y230 F3000 ;move Y so the head is out of the way and Plate is moved forward\nM84 ;steppers off\nG90 ;absolute positioning" - }, - "layer_height": { - "default_value": 0.2 - }, - "wall_thickness": { - "value": "0.8" - }, - "top_bottom_thickness": { - "default_value": 0.3 - }, - "speed_print": { - "default_value": 60 - }, - "speed_layer_0": { - "minimum_value": "0.1" - }, - "cool_fan_enabled": { - "default_value": false - }, - "skirt_line_count": { - "default_value": 3 - }, - "skirt_gap": { - "default_value": 4 - }, - "skirt_brim_minimal_length": { - "default_value": 200 - } + "machine_start_gcode": { "default_value": ";Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {infill_sparse_density}\n;Print time: {print_time}\n;M190 S{material_bed_temperature} ;Uncomment to add your own bed temperature line\n;M109 S{material_print_temperature} ;Uncomment to add your own temperature line\nG21 ;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\nM205 X8 ;X/Y Jerk settings\nG1 Z15.0 F{speed_travel} ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E7 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F{speed_travel}\n;Put printing message on LCD screen\nM117 Rigibot Printing..." }, + "machine_width": { "default_value": 400 }, + "skirt_brim_minimal_length": { "default_value": 200 }, + "skirt_gap": { "default_value": 4 }, + "skirt_line_count": { "default_value": 3 }, + "speed_layer_0": { "minimum_value": "0.1" }, + "speed_print": { "default_value": 60 }, + "top_bottom_thickness": { "default_value": 0.3 }, + "wall_thickness": { "value": "0.8" } } } \ No newline at end of file diff --git a/resources/definitions/robo_3d_r1.def.json b/resources/definitions/robo_3d_r1.def.json index 0187d13dd0..c664107aa1 100644 --- a/resources/definitions/robo_3d_r1.def.json +++ b/resources/definitions/robo_3d_r1.def.json @@ -1,49 +1,47 @@ { - "name": "Robo 3D R1", "version": 2, + "name": "Robo 3D R1", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "manufacturer": "Robo 3D", "file_formats": "text/x-gcode", - "platform_offset": [ 0, 0, 0], - "machine_extruder_trains": - { - "0": "robo_3d_r1_extruder_0" - } + "machine_extruder_trains": { "0": "robo_3d_r1_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ] }, - - "overrides": { - "machine_start_gcode": { - "default_value": " G92 E0 ;\n M565 Z-1 ;\n G1 Z5 F5000 ;\n G29 ;\n" - }, - "machine_end_gcode": { - "default_value": " M104 S0 ;extruder heater off\n M140 S0 ;heated bed heater off (if you have it)\n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning\n" - }, - "cool_min_layer_time": { "default_value": 7 }, - "retraction_speed": { "default_value": 50 }, - "cool_min_speed": { "default_value": 19 }, - "support_angle": { "default_value": 50 }, - "prime_tower_size": { "default_value": 8.660254037844387 }, - "support_enable": { "default_value": true }, - "raft_airgap": { "default_value": 0.2 }, - "layer_height_0": { "default_value": 0.15 }, - "material_flow": { "default_value": 100 }, - "infill_sparse_density": { "default_value": 10 }, - "wall_thickness": { "value": "1.2" }, - "retraction_amount": { "default_value": 3 }, - "layer_height": { "default_value": 0.2 }, - "speed_print": { "default_value": 40 }, - "machine_extruder_count": { "default_value": 1 }, - "retraction_combing": { "value": "'off'" }, - "machine_heated_bed": { "default_value": true }, - "machine_center_is_zero": { "default_value": false }, - "machine_height": { "default_value": 210 }, + "overrides": + { "adhesion_type": { "default_value": "raft" }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "cool_min_layer_time": { "default_value": 7 }, + "cool_min_speed": { "default_value": 19 }, + "infill_sparse_density": { "default_value": 10 }, + "layer_height": { "default_value": 0.2 }, + "layer_height_0": { "default_value": 0.15 }, + "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 245 }, + "machine_end_gcode": { "default_value": " M104 S0 ;extruder heater off\n M140 S0 ;heated bed heater off (if you have it)\n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning\n" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 210 }, + "machine_name": { "default_value": "ROBO 3D R1" }, + "machine_start_gcode": { "default_value": " G92 E0 ;\n M565 Z-1 ;\n G1 Z5 F5000 ;\n G29 ;\n" }, "machine_width": { "default_value": 225 }, + "material_flow": { "default_value": 100 }, + "prime_tower_size": { "default_value": 8.660254037844387 }, + "raft_airgap": { "default_value": 0.2 }, + "retraction_amount": { "default_value": 3 }, + "retraction_combing": { "value": "'off'" }, + "retraction_speed": { "default_value": 50 }, + "speed_print": { "default_value": 40 }, + "support_angle": { "default_value": 50 }, + "support_enable": { "default_value": true }, "support_z_distance": { "default_value": 0.22 }, - "machine_name": { "default_value": "ROBO 3D R1" } + "wall_thickness": { "value": "1.2" } } -} +} \ No newline at end of file diff --git a/resources/definitions/seckit_skgo.def.json b/resources/definitions/seckit_skgo.def.json index cb413cd9ba..0b58667882 100644 --- a/resources/definitions/seckit_skgo.def.json +++ b/resources/definitions/seckit_skgo.def.json @@ -2,58 +2,37 @@ "version": 2, "name": "SecKit SK-Go", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Ernest Lin", "manufacturer": "SecKit 3DP Design", "file_formats": "text/x-gcode", - "has_materials": true, "has_machine_quality": false, - "preferred_quality_type": "normal", - "machine_extruder_trains": - { - "0": "seckit_skgo_extruder_0" - } + "has_materials": true, + "machine_extruder_trains": { "0": "seckit_skgo_extruder_0" }, + "preferred_quality_type": "normal" }, - - - "overrides": { - "machine_name": { "default_value": "SecKit SK-Go" }, - "machine_width": { - "default_value": 310 - }, - "machine_depth": { - "default_value": 310 - }, - "machine_height": { - "default_value": 350 - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_heated_bed": { - "default_value": true - }, + "overrides": + { + "gantry_height": { "value": "50" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 310 }, + "machine_end_gcode": { "default value": "M104 S0\nM140 S0\nG91 ; relative position\nG1 Z10 F450\n;Retract the filament\nG92 E1\nG1 E-1 F300\nG90 ; abs position\nG1 X10 Y280 F6000\nM84" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { "default_value": [ - [ -10, 20 ], - [ -10, -20 ], - [ 10, 20 ], - [ 10, -20 ] + [-10, 20], + [-10, -20], + [10, 20], + [10, -20] ] }, - "gantry_height": { - "value": "50" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "M569 S1 X Y ; enable StealthChop for Sensorless Homing\nG28 ; Home\nM569 S0 X Y ; disable StealthChop for normal print\nM900 K0.07 ; K factor of linear advance\nG1 Z15.0 F6000 ;Move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0\nG90 ; abs position" - }, - "machine_end_gcode": { - "default value": "M104 S0\nM140 S0\nG91 ; relative position\nG1 Z10 F450\n;Retract the filament\nG92 E1\nG1 E-1 F300\nG90 ; abs position\nG1 X10 Y280 F6000\nM84" - } - } -} + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 350 }, + "machine_name": { "default_value": "SecKit SK-Go" }, + "machine_start_gcode": { "default_value": "M569 S1 X Y ; enable StealthChop for Sensorless Homing\nG28 ; Home\nM569 S0 X Y ; disable StealthChop for normal print\nM900 K0.07 ; K factor of linear advance\nG1 Z15.0 F6000 ;Move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0\nG90 ; abs position" }, + "machine_width": { "default_value": 310 } + } +} \ No newline at end of file diff --git a/resources/definitions/seckit_sktank.def.json b/resources/definitions/seckit_sktank.def.json index 4b3795d619..5cf31c97b6 100644 --- a/resources/definitions/seckit_sktank.def.json +++ b/resources/definitions/seckit_sktank.def.json @@ -2,58 +2,37 @@ "version": 2, "name": "SecKit SK-Tank", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Ernest Lin", "manufacturer": "SecKit 3DP Design", "file_formats": "text/x-gcode", - "has_materials": true, "has_machine_quality": false, - "preferred_quality_type": "normal", - "machine_extruder_trains": - { - "0": "seckit_sktank_extruder_0" - } + "has_materials": true, + "machine_extruder_trains": { "0": "seckit_sktank_extruder_0" }, + "preferred_quality_type": "normal" }, - - - "overrides": { - "machine_name": { "default_value": "SecKit SK-Tank" }, - "machine_width": { - "default_value": 350 - }, - "machine_depth": { - "default_value": 350 - }, - "machine_height": { - "default_value": 400 - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_heated_bed": { - "default_value": true - }, + "overrides": + { + "gantry_height": { "value": "50" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 350 }, + "machine_end_gcode": { "default value": "M104 S0\nM140 S0\n;Retract the filament\nG92 E1\nG1 E-1 F300\nG90\nG1 X2 Y300 F6000\n; move bed to the bottom to prevent bed falls\n;G91\n;G1 Z300\nM106 P0 S0\nM18" }, + "machine_gcode_flavor": { "default_value": "RepRap (RepRap)" }, "machine_head_with_fans_polygon": { "default_value": [ - [ -10, 20 ], - [ -10, -20 ], - [ 10, 20 ], - [ 10, -20 ] + [-10, 20], + [-10, -20], + [10, 20], + [10, -20] ] }, - "gantry_height": { - "value": "50" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (RepRap)" - }, - "machine_start_gcode": { - "default_value": "G32 ;auto bed tramming and find a correct Z datum\nG29 S1 ;load default mesh\nM572 D0 S0.08 ; Pressure advance\nG1 Z15.0 F6000 ;Move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" - }, - "machine_end_gcode": { - "default value": "M104 S0\nM140 S0\n;Retract the filament\nG92 E1\nG1 E-1 F300\nG90\nG1 X2 Y300 F6000\n; move bed to the bottom to prevent bed falls\n;G91\n;G1 Z300\nM106 P0 S0\nM18" - } - } -} + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "SecKit SK-Tank" }, + "machine_start_gcode": { "default_value": "G32 ;auto bed tramming and find a correct Z datum\nG29 S1 ;load default mesh\nM572 D0 S0.08 ; Pressure advance\nG1 Z15.0 F6000 ;Move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0" }, + "machine_width": { "default_value": 350 } + } +} \ No newline at end of file diff --git a/resources/definitions/seemecnc_artemis.def.json b/resources/definitions/seemecnc_artemis.def.json index 1501d2c68d..0ebc3ba851 100644 --- a/resources/definitions/seemecnc_artemis.def.json +++ b/resources/definitions/seemecnc_artemis.def.json @@ -2,42 +2,36 @@ "version": 2, "name": "SeeMeCNC Artemis", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "PouncingIguana, JJ", "manufacturer": "SeeMeCNC", "file_formats": "text/x-gcode", "platform": "artemis_platform.3mf", "has_materials": true, - "machine_extruder_trains": - { - "0": "seemecnc_artemis_extruder_0" - } + "machine_extruder_trains": { "0": "seemecnc_artemis_extruder_0" } }, - - "overrides": { + "overrides": + { "layer_height": { "default_value": 0.1618 }, "layer_height_0": { "default_value": 0.2 }, "machine_center_is_zero": { "default_value": true }, "machine_depth": { "default_value": 290 }, + "machine_end_gcode": { "default_value": "M203 Z24000\nM104 S0\nM140 S0\nM107\nG28\nM84" }, "machine_gcode_flavor": { "default_value": "RepRap (RepRap)" }, "machine_heated_bed": { "default_value": true }, "machine_height": { "default_value": 530 }, "machine_max_feedrate_z": { "default_value": 400 }, "machine_name": { "default_value": "Artemis" }, "machine_shape": { "default_value": "elliptic" }, + "machine_start_gcode": { "default_value": "G28\nG1 Z15.0 F10000\nG92 E0" }, "machine_width": { "default_value": 290 }, "relative_extrusion": { "value": "False" }, "retraction_amount": { "default_value": 3.2 }, "retraction_combing": { "value": "'off'" }, "retraction_hop_enabled": { "default_value": true }, "retraction_hop_only_when_collides": { "default_value": false }, - "retraction_speed": { "default_value": 45 }, - "machine_start_gcode": { - "default_value": "G28\nG1 Z15.0 F10000\nG92 E0" - }, - "machine_end_gcode": { - "default_value": "M203 Z24000\nM104 S0\nM140 S0\nM107\nG28\nM84" - } + "retraction_speed": { "default_value": 45 } } -} +} \ No newline at end of file diff --git a/resources/definitions/seemecnc_v32.def.json b/resources/definitions/seemecnc_v32.def.json index 46a5e63f01..783c2b9d59 100644 --- a/resources/definitions/seemecnc_v32.def.json +++ b/resources/definitions/seemecnc_v32.def.json @@ -2,42 +2,36 @@ "version": 2, "name": "SeeMeCNC Rostock Max V3.2", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "PouncingIguana, JJ", "manufacturer": "SeeMeCNC", "file_formats": "text/x-gcode", "platform": "rostock_platform.3mf", "has_materials": true, - "machine_extruder_trains": - { - "0": "seemecnc_v32_extruder_0" - } + "machine_extruder_trains": { "0": "seemecnc_v32_extruder_0" } }, - - "overrides": { + "overrides": + { "layer_height": { "default_value": 0.1618 }, "layer_height_0": { "default_value": 0.2 }, "machine_center_is_zero": { "default_value": true }, "machine_depth": { "default_value": 265 }, + "machine_end_gcode": { "default_value": "M203 Z24000\nM104 S0\nM140 S0\nM107\nG28\nM84" }, "machine_gcode_flavor": { "default_value": "RepRap (RepRap)" }, "machine_heated_bed": { "default_value": true }, "machine_height": { "default_value": 395 }, "machine_max_feedrate_z": { "default_value": 300 }, "machine_name": { "default_value": "Rostock Max V3.2" }, "machine_shape": { "default_value": "elliptic" }, + "machine_start_gcode": { "default_value": "G28\nG1 Z15.0 F10000\nG92 E0" }, "machine_width": { "default_value": 265 }, "relative_extrusion": { "value": "False" }, "retraction_amount": { "default_value": 3.2 }, "retraction_combing": { "value": "'off'" }, "retraction_hop_enabled": { "default_value": true }, "retraction_hop_only_when_collides": { "default_value": false }, - "retraction_speed": { "default_value": 45 }, - "machine_start_gcode": { - "default_value": "G28\nG1 Z15.0 F10000\nG92 E0" - }, - "machine_end_gcode": { - "default_value": "M203 Z24000\nM104 S0\nM140 S0\nM107\nG28\nM84" - } + "retraction_speed": { "default_value": 45 } } -} +} \ No newline at end of file diff --git a/resources/definitions/sh65.def.json b/resources/definitions/sh65.def.json index d26898d9dd..ea1f6e8aa2 100644 --- a/resources/definitions/sh65.def.json +++ b/resources/definitions/sh65.def.json @@ -1,51 +1,56 @@ -{ - "version": 2, - "name": "Volumic SH65", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Volumic", - "manufacturer": "Volumic", - "file_formats": "text/x-gcode", - "icon": "volumic-icon", - "platform": "SH65_platform.STL", - "has_materials": true, - "has_machine_quality": true, - "machine_extruder_trains":{"0": "sh65_extruder"} - }, - - "overrides": { - "machine_name": { "default_value": "VOLUMIC SH65" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 650 }, - "machine_height": { "default_value": 300 }, - "machine_depth": { "default_value": 300 }, - "machine_center_is_zero": { "default_value": false }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "layer_height": { "default_value": 0.1 }, - "layer_height_0": { "default_value": 0.1 }, - "retraction_amount": { "default_value": 2.40 }, - "retraction_speed": { "default_value": 30 }, - "adhesion_type": { "default_value": "none" }, - "infill_sparse_density": { "default_value": 25 }, - "fill_outline_gaps": { "default_value": true }, - "retract_at_layer_change": { "default_value": true }, - "retraction_combing_max_distance": { "default_value": 200 }, - "machine_head_with_fans_polygon": { "default_value": [[-38,30],[38,30],[38,-40],[-38,-40]] }, - "machine_max_feedrate_z": { "default_value": 30 }, - "machine_max_feedrate_e": { "default_value": 60 }, - "machine_max_acceleration_z": { "default_value": 500 }, - "machine_acceleration": { "default_value": 2000 }, - "machine_max_jerk_xy": { "default_value": 10 }, - "machine_max_jerk_z": { "default_value": 0.4 }, - "machine_max_jerk_e": { "default_value": 5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression" - }, - "machine_end_gcode": { - "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300" - } - } -} +{ + "version": 2, + "name": "Volumic SH65", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Volumic", + "manufacturer": "Volumic", + "file_formats": "text/x-gcode", + "platform": "SH65_platform.STL", + "has_machine_quality": true, + "has_materials": true, + "icon": "volumic-icon", + "machine_extruder_trains": { "0": "sh65_extruder" } + }, + "overrides": + { + "adhesion_type": { "default_value": "none" }, + "fill_outline_gaps": { "default_value": true }, + "infill_sparse_density": { "default_value": 25 }, + "layer_height": { "default_value": 0.1 }, + "layer_height_0": { "default_value": 0.1 }, + "machine_acceleration": { "default_value": 2000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-38, 30], + [38, 30], + [38, -40], + [-38, -40] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 300 }, + "machine_max_acceleration_z": { "default_value": 500 }, + "machine_max_feedrate_e": { "default_value": 60 }, + "machine_max_feedrate_z": { "default_value": 30 }, + "machine_max_jerk_e": { "default_value": 5 }, + "machine_max_jerk_xy": { "default_value": 10 }, + "machine_max_jerk_z": { "default_value": 0.4 }, + "machine_name": { "default_value": "VOLUMIC SH65" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_start_gcode": { "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression" }, + "machine_width": { "default_value": 650 }, + "material_diameter": { "default_value": 1.75 }, + "retract_at_layer_change": { "default_value": true }, + "retraction_amount": { "default_value": 2.4 }, + "retraction_combing_max_distance": { "default_value": 200 }, + "retraction_speed": { "default_value": 30 } + } +} \ No newline at end of file diff --git a/resources/definitions/skriware_2.def.json b/resources/definitions/skriware_2.def.json index dbcf140585..ff3d87a154 100644 --- a/resources/definitions/skriware_2.def.json +++ b/resources/definitions/skriware_2.def.json @@ -1,720 +1,269 @@ { - "name": "Skriware 2", - "version": 2, - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Skriware", - "manufacturer": "Skriware", - "file_formats": "text/x-gcode", - "has_machine_quality": true, - "platform_offset": [ - 0, - 0, - 0 - ], - "supports_usb_connection": false, - "platform": "skriware_2_platform.3mf", - "machine_extruder_trains": { - "0": "skriware_2_extruder_0", - "1": "skriware_2_extruder_1" + "version": 2, + "name": "Skriware 2", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Skriware", + "manufacturer": "Skriware", + "file_formats": "text/x-gcode", + "platform": "skriware_2_platform.3mf", + "has_machine_quality": true, + "machine_extruder_trains": + { + "0": "skriware_2_extruder_0", + "1": "skriware_2_extruder_1" + }, + "platform_offset": [ + 0, + 0, + 0 + ], + "supports_usb_connection": false + }, + "overrides": + { + "acceleration_enabled": { "default_value": true }, + "acceleration_infill": { "value": "400" }, + "acceleration_ironing": { "value": "250" }, + "acceleration_layer_0": { "value": "200" }, + "acceleration_prime_tower": { "value": "250" }, + "acceleration_print": { "default_value": 200 }, + "acceleration_print_layer_0": { "value": "200" }, + "acceleration_roofing": { "value": "400" }, + "acceleration_skirt_brim": { "value": "250" }, + "acceleration_support": { "value": "200" }, + "acceleration_support_bottom": { "value": "250" }, + "acceleration_support_infill": { "value": "400" }, + "acceleration_support_interface": { "value": "250" }, + "acceleration_support_roof": { "value": "250" }, + "acceleration_topbottom": { "value": "200" }, + "acceleration_travel": { "value": "400" }, + "acceleration_travel_layer_0": { "value": "400" }, + "acceleration_wall": { "value": "200" }, + "acceleration_wall_0": { "value": "200" }, + "acceleration_wall_x": { "value": "200" }, + "adhesion_extruder_nr": { "value": "0" }, + "adhesion_type": { "default_value": "raft" }, + "bottom_layers": { "value": "3" }, + "bottom_skin_expand_distance": { "value": "0.8" }, + "bottom_skin_preshrink": { "value": "0.0" }, + "bottom_thickness": { "value": "0.8" }, + "bridge_skin_speed_2": { "value": "15" }, + "bridge_wall_speed": { "value": "10.0" }, + "brim_line_count": { "value": "17" }, + "brim_width": { "default_value": 10 }, + "build_volume_temperature": { "default_value": 28 }, + "coasting_enable": { "default_value": true }, + "connect_infill_polygons": { "value": "False" }, + "cool_fan_full_at_height": { "value": "0" }, + "cool_fan_full_layer": { "value": "1" }, + "cool_fan_speed_0": + { + "default_value": 0, + "value": "cool_fan_speed if resolveOrValue('adhesion_type') == 'raft' else 0" + }, + "cool_lift_head": { "default_value": true }, + "cool_min_speed": { "default_value": 5 }, + "cross_infill_pocket_size": { "value": "5.33" }, + "default_material_bed_temperature": { "value": "50" }, + "default_material_print_temperature": { "default_value": 200 }, + "expand_skins_expand_distance": { "value": "0.8" }, + "extruders_enabled_count": { "value": "2" }, + "fill_outline_gaps": { "default_value": true }, + "gantry_height": { "value": "210" }, + "infill_before_walls": { "default_value": false }, + "infill_line_distance": { "value": "0 if infill_sparse_density == 0 else (infill_line_width * 100) / infill_sparse_density * (2 if infill_pattern == 'grid' else (3 if infill_pattern == 'triangles' or infill_pattern == 'trihexagon' or infill_pattern == 'cubic' or infill_pattern == 'cubicsubdiv' else (2 if infill_pattern == 'tetrahedral' or infill_pattern == 'quarter_cubic' else (1 if infill_pattern == 'cross' or infill_pattern == 'cross_3d' else 1))))" }, + "infill_material_flow": { "value": "99" }, + "infill_overlap": { "value": "0" }, + "infill_overlap_mm": { "value": "0.0" }, + "infill_sparse_density": { "default_value": 15 }, + "infill_sparse_thickness": { "value": "0.2" }, + "infill_wipe_dist": { "value": "0" }, + "initial_bottom_layers": { "value": "3" }, + "initial_layer_line_width_factor": { "default_value": 120 }, + "ironing_inset": { "value": "0.2 + (ironing_line_spacing - skin_line_width * (1.0 + ironing_flow / 100) / 2 if ironing_pattern == 'concentric' else skin_line_width * (1.0 - ironing_flow / 100) / 2)" }, + "jerk_enabled": { "default_value": true }, + "jerk_infill": { "value": "10" }, + "jerk_ironing": { "value": "5" }, + "jerk_layer_0": { "value": "5" }, + "jerk_prime_tower": { "value": "5" }, + "jerk_print": { "default_value": 10 }, + "jerk_print_layer_0": { "value": "10" }, + "jerk_roofing": { "value": "10" }, + "jerk_skirt_brim": { "value": "5" }, + "jerk_support": { "value": "10" }, + "jerk_support_bottom": { "value": "5" }, + "jerk_support_infill": { "value": "10" }, + "jerk_support_interface": { "value": "5" }, + "jerk_support_roof": { "value": "5" }, + "jerk_topbottom": { "value": "10" }, + "jerk_travel": { "value": "10" }, + "jerk_travel_layer_0": { "value": "10" }, + "jerk_wall": { "value": "10" }, + "jerk_wall_0": { "value": "5" }, + "jerk_wall_x": { "value": "10" }, + "layer_0_z_overlap": { "value": "0.1" }, + "layer_height": { "default_value": 0.2 }, + "layer_height_0": { "default_value": 0.2 }, + "machine_depth": { "default_value": 260 }, + "machine_end_gcode": { "default_value": "M59\nG92 E0\nG1 E-10 F300\nM104 T0 S0\nM104 T1 S0\nM140 S0\nG28 X0 Y0\nM84\nM106 S0\nM107\nM220 S100" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 210 }, + "machine_start_gcode": { "default_value": "G90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM420 S1 Z0.7 ;enable bed levelling\nG1 Z10 F250 ;move the platform down 10mm\nM107 ;fan off\nM42 P11 S255 ;turn on front fan\nM140 S{material_bed_temperature}\nM104 T0 S{material_print_temperature, 0}\nM104 T1 S{material_print_temperature, 1}\nG1 F2500 Y260 X0\nM190 S{material_bed_temperature}\nM109 T0 S{material_print_temperature, 0}\nM109 T1 S{material_print_temperature, 1}\nM60 ;enable E-FADE Algorithm\nM62 A ;filament sensor off\nG92 E0 ;zero the extruded length\nT1\nG92 E0;zero the extruded length\nG1 F300 Z0.3\nG1 F1200 X20\nG1 F1200 X180 E21 ;extrude 21 mm of feed stock\nG1 F1200 E11\nG1 F300 Z1.5\nG92 E0 ;zero the extruded length again\nT0\nG92 E0 ;zero the extruded length\nG1 F1200 Y258\nG1 F300 Z0.3\nG1 F1200 X40 E21 ;extrude 21 mm of feed stock\nG1 F1200 E11 ;retracting 10 mm\nG1 F300 Z1.5\nM63 A ;filament sensor reset\nM61 A ;filament sensor on\nG92 E0 ;zero the extruded length again\nM58 ;end of Start G-Code and signal retract management\nT{initial_extruder_nr}" }, + "machine_width": { "default_value": 210 }, + "material_adhesion_tendency": { "default_value": 0 }, + "material_bed_temperature": + { + "minimum_value_warning": "30", + "resolve": "extruderValues('material_bed_temperature')[adhesion_extruder_nr] if resolveOrValue('adhesion_type') == 'raft' else max(extruderValues('material_bed_temperature'))" + }, + "material_bed_temperature_layer_0": + { + "minimum_value_warning": "30", + "resolve": "extruderValues('material_bed_temperature_layer_0')[adhesion_extruder_nr] if resolveOrValue('adhesion_type') == 'raft' else max(extruderValues('material_bed_temperature_layer_0'))", + "value": "50" + }, + "material_break_preparation_temperature": { "value": "195" }, + "material_diameter": { "default_value": 1.75 }, + "material_flow": { "default_value": 99 }, + "material_initial_print_temperature": { "value": "195" }, + "material_print_temperature_layer_0": { "value": "195" }, + "material_standby_temperature": { "default_value": 195 }, + "max_skin_angle_for_expansion": { "default_value": 50 }, + "meshfix_maximum_deviation": { "default_value": 0.003 }, + "meshfix_maximum_travel_resolution": { "value": "0.8" }, + "min_infill_area": { "default_value": 1 }, + "min_skin_width_for_expansion": { "value": "0.67" }, + "multiple_mesh_overlap": { "default_value": 0 }, + "ooze_shield_angle": { "default_value": 50 }, + "ooze_shield_dist": { "default_value": 4 }, + "optimize_wall_printing_order": { "default_value": true }, + "prime_tower_flow": { "value": "99" }, + "prime_tower_min_volume": { "default_value": 4 }, + "prime_tower_position_x": { "value": "1" }, + "prime_tower_position_y": { "value": "1" }, + "prime_tower_size": { "default_value": 1 }, + "raft_acceleration": { "value": "400" }, + "raft_airgap": { "default_value": 0.2 }, + "raft_base_acceleration": { "value": "400" }, + "raft_base_jerk": { "value": "10" }, + "raft_base_line_spacing": { "value": "0.8" }, + "raft_base_line_width": { "value": "0.4" }, + "raft_base_speed": { "value": "60" }, + "raft_base_thickness": { "value": "0.2" }, + "raft_fan_speed": { "default_value": 40 }, + "raft_interface_acceleration": { "value": "400" }, + "raft_interface_fan_speed": { "value": "40" }, + "raft_interface_jerk": { "value": "10" }, + "raft_interface_line_spacing": { "value": "0.4" }, + "raft_interface_line_width": { "value": "0.4" }, + "raft_interface_speed": { "value": "60" }, + "raft_interface_thickness": { "value": "0.2" }, + "raft_jerk": { "value": "10" }, + "raft_margin": { "default_value": 4 }, + "raft_speed": { "value": "60" }, + "raft_surface_acceleration": { "value": "400" }, + "raft_surface_fan_speed": { "value": "80" }, + "raft_surface_jerk": { "value": "10" }, + "raft_surface_layers": { "default_value": 1 }, + "raft_surface_speed": { "value": "60" }, + "raft_surface_thickness": { "value": "0.2" }, + "remove_empty_first_layers": { "default_value": false }, + "retract_at_layer_change": { "default_value": true }, + "retraction_amount": { "default_value": 3 }, + "retraction_combing": { "value": "'infill'" }, + "retraction_count_max": { "default_value": 30 }, + "retraction_extrusion_window": { "value": "3" }, + "retraction_min_travel": { "value": "1" }, + "retraction_prime_speed": { "value": "60" }, + "retraction_retract_speed": { "value": "30" }, + "retraction_speed": { "default_value": 30 }, + "roofing_layer_count": { "value": "1" }, + "roofing_material_flow": { "value": "99" }, + "skin_edge_support_layers": { "value": "0" }, + "skin_edge_support_thickness": { "value": "0" }, + "skin_material_flow": { "value": "99" }, + "skin_no_small_gaps_heuristic": { "default_value": true }, + "skin_outline_count": { "value": 0 }, + "skin_overlap": { "value": "15" }, + "skin_overlap_mm": { "value": "0.06" }, + "skin_preshrink": { "value": "0.0" }, + "skirt_brim_line_width": { "value": "0.5" }, + "skirt_brim_material_flow": { "value": "99" }, + "skirt_brim_minimal_length": { "default_value": 50 }, + "skirt_brim_speed": { "value": "10.0" }, + "skirt_line_count": { "default_value": 2 }, + "speed_infill": { "value": "80" }, + "speed_layer_0": { "value": "20.0" }, + "speed_prime_tower": { "value": "20" }, + "speed_print": { "default_value": 20 }, + "speed_print_layer_0": { "value": "10.0" }, + "speed_roofing": { "value": "20" }, + "speed_slowdown_layers": { "default_value": 1 }, + "speed_support": { "value": "50" }, + "speed_support_bottom": { "value": "33.33" }, + "speed_support_infill": { "value": "80" }, + "speed_support_interface": { "value": "33.33" }, + "speed_support_roof": { "value": "33.33" }, + "speed_travel_layer_0": { "value": "80" }, + "speed_wall": { "value": "20" }, + "speed_wall_0": { "value": "20" }, + "speed_wall_x": { "value": "20" }, + "support_angle": { "default_value": 60 }, + "support_bottom_distance": { "value": "0.2" }, + "support_bottom_extruder_nr": { "value": "0" }, + "support_bottom_material_flow": { "value": "99" }, + "support_brim_line_count": { "value": "16" }, + "support_enable": { "default_value": true }, + "support_extruder_nr": { "value": "0" }, + "support_extruder_nr_layer_0": { "value": "0" }, + "support_infill_extruder_nr": { "value": "0" }, + "support_infill_rate": { "value": "20" }, + "support_infill_sparse_thickness": { "value": "0.2" }, + "support_initial_layer_line_distance": { "value": "2" }, + "support_interface_extruder_nr": { "value": "0" }, + "support_interface_material_flow": { "value": "99" }, + "support_line_distance": { "value": "0 if support_infill_rate == 0 else (support_line_width * 100) / support_infill_rate * (2 if support_pattern == 'grid' else (3 if support_pattern == 'triangles' else 1))" }, + "support_material_flow": { "value": "98" }, + "support_roof_density": { "value": "70" }, + "support_roof_extruder_nr": { "value": "0" }, + "support_roof_height": { "value": "0.4" }, + "support_roof_line_distance": { "value": "0.57" }, + "support_roof_material_flow": { "value": "99" }, + "support_skip_some_zags": { "default_value": true }, + "support_skip_zag_per_mm": { "default_value": 10 }, + "support_top_distance": { "value": "0.2" }, + "support_tree_collision_resolution": { "value": "0.2" }, + "support_xy_distance": { "default_value": 0.6 }, + "support_xy_distance_overhang": { "value": "0.5" }, + "support_z_distance": { "default_value": 0.2 }, + "support_zag_skip_count": { "value": "8" }, + "switch_extruder_prime_speed": { "value": "60" }, + "switch_extruder_retraction_amount": { "value": "20" }, + "switch_extruder_retraction_speed": { "value": "30" }, + "switch_extruder_retraction_speeds": { "default_value": 30 }, + "top_layers": { "value": "4" }, + "top_skin_expand_distance": { "value": "0.8" }, + "top_skin_preshrink": { "value": "0.0" }, + "travel_avoid_supports": { "default_value": true }, + "travel_retract_before_outer_wall": { "default_value": true }, + "wall_0_material_flow": { "value": "99" }, + "wall_0_wipe_dist": { "value": "0" }, + "wall_material_flow": { "value": "99" }, + "wall_thickness": { "value": "1.2" }, + "wall_x_material_flow": { "value": "99" }, + "wipe_hop_enable": { "value": "False" }, + "wipe_retraction_amount": { "value": "3" }, + "wipe_retraction_prime_speed": { "value": "30" }, + "wipe_retraction_retract_speed": { "value": "30" }, + "wipe_retraction_speed": { "value": "30" }, + "xy_offset": { "default_value": 0.0 }, + "xy_offset_layer_0": { "value": "0.0" }, + "z_seam_corner": { "default_value": "z_seam_corner_weighted" }, + "z_seam_x": { "value": "115" }, + "z_seam_y": { "value": "180" } } - }, - "overrides": { - "raft_interface_thickness": { - "value": "0.2" - }, - "wipe_retraction_prime_speed": { - "value": "30" - }, - "support_skip_zag_per_mm": { - "default_value": 10 - }, - "material_bed_temperature": { - "value": "50", - "minimum_value_warning": "30", - "resolve": "extruderValues('material_bed_temperature')[adhesion_extruder_nr] if resolveOrValue('adhesion_type') == 'raft' else max(extruderValues('material_bed_temperature'))" - }, - "raft_airgap": { - "default_value": 0.2 - }, - "top_layers": { - "value": "4" - }, - "machine_extruder_count": { - "default_value": 2 - }, - "raft_surface_acceleration": { - "value": "400" - }, - "meshfix_maximum_travel_resolution": { - "value": "0.8" - }, - "machine_end_gcode": { - "default_value": "M59\nG92 E0\nG1 E-10 F300\nM104 T0 S0\nM104 T1 S0\nM140 S0\nG28 X0 Y0\nM84\nM106 S0\nM107\nM220 S100" - }, - "wall_material_flow": { - "value": "99" - }, - "raft_interface_jerk": { - "value": "10" - }, - "acceleration_topbottom": { - "value": "200" - }, - "prime_tower_size": { - "default_value": 1 - }, - "max_skin_angle_for_expansion": { - "default_value": 50 - }, - "raft_acceleration": { - "value": "400" - }, - "support_xy_distance": { - "default_value": 0.6 - }, - "xy_offset_layer_0": { - "value": "0.0" - }, - "raft_interface_fan_speed": { - "value": "40" - }, - "retraction_speed": { - "default_value": 30 - }, - "speed_print": { - "default_value": 20 - }, - "travel_avoid_supports": { - "default_value": true - }, - "infill_overlap_mm": { - "value": "0.0" - }, - "support_roof_height": { - "value": "0.4" - }, - "speed_travel_layer_0": { - "value": "80" - }, - "speed_wall_0": { - "value": "20" - }, - "acceleration_wall_x": { - "value": "200" - }, - "layer_0_z_overlap": { - "value": "0.1" - }, - "switch_extruder_retraction_speed": { - "value": "30" - }, - "raft_base_acceleration": { - "value": "400" - }, - "raft_base_speed": { - "value": "60" - }, - "wall_0_material_flow": { - "value": "99" - }, - "support_infill_rate": { - "value": "20" - }, - "raft_surface_layers": { - "default_value": 1 - }, - "machine_height": { - "default_value": 210 - }, - "retraction_prime_speed": { - "value": "60" - }, - "support_interface_material_flow": { - "value": "99" - }, - "raft_surface_fan_speed": { - "value": "80" - }, - "raft_base_line_width": { - "value": "0.4" - }, - "infill_line_distance": { - "value": "0 if infill_sparse_density == 0 else (infill_line_width * 100) / infill_sparse_density * (2 if infill_pattern == 'grid' else (3 if infill_pattern == 'triangles' or infill_pattern == 'trihexagon' or infill_pattern == 'cubic' or infill_pattern == 'cubicsubdiv' else (2 if infill_pattern == 'tetrahedral' or infill_pattern == 'quarter_cubic' else (1 if infill_pattern == 'cross' or infill_pattern == 'cross_3d' else 1))))" - }, - "default_material_print_temperature": { - "default_value": 200 - }, - "speed_roofing": { - "value": "20" - }, - "skin_material_flow": { - "value": "99" - }, - "cool_fan_full_layer": { - "value": "1" - }, - "material_break_preparation_temperature": { - "value": "195" - }, - "support_roof_density": { - "value": "70" - }, - "support_infill_sparse_thickness": { - "value": "0.2" - }, - "retraction_retract_speed": { - "value": "30" - }, - "speed_slowdown_layers": { - "default_value": 1 - }, - "support_line_distance": { - "value":"0 if support_infill_rate == 0 else (support_line_width * 100) / support_infill_rate * (2 if support_pattern == 'grid' else (3 if support_pattern == 'triangles' else 1))" - }, - "cool_lift_head": { - "default_value": true - }, - "min_skin_width_for_expansion": { - "value": "0.67" - }, - "cool_min_speed": { - "default_value": 5 - }, - "switch_extruder_retraction_speeds": { - "default_value": 30 - }, - "raft_base_line_spacing": { - "value": "0.8" - }, - "speed_support": { - "value": "50" - }, - "skirt_brim_material_flow": { - "value": "99" - }, - "speed_infill": { - "value": "80" - }, - "support_initial_layer_line_distance": { - "value": "2" - }, - "support_use_towers": { - "default_value": false - }, - "skin_no_small_gaps_heuristic": { - "default_value": true - }, - "acceleration_roofing": { - "value": "400" - }, - "material_initial_print_temperature": { - "value": "195" - }, - "material_diameter": { - "default_value": 1.75 - }, - "xy_offset": { - "default_value": 0.0 - }, - "support_extruder_nr": { - "value": "0" - }, - "support_brim_line_count": { - "value": "16" - }, - "support_interface_extruder_nr": { - "value": "0" - }, - "support_roof_extruder_nr": { - "value": "0" - }, - "material_adhesion_tendency": { - "default_value": 0 - }, - "material_standby_temperature": { - "default_value": 195 - }, - "cool_fan_speed_0": { - "default_value": 0, - "value": "cool_fan_speed if resolveOrValue('adhesion_type') == 'raft' else 0" - }, - "brim_line_count": { - "value": "17" - }, - "adhesion_type": { - "default_value": "raft" - }, - "switch_extruder_retraction_amount": { - "value": "20" - }, - "retraction_amount": { - "default_value": 3 - }, - "acceleration_travel": { - "value": "400" - }, - "jerk_print_layer_0": { - "value": "10" - }, - "raft_surface_thickness": { - "value": "0.2" - }, - "raft_base_jerk": { - "value": "10" - }, - "bottom_thickness": { - "value": "0.8" - }, - "roofing_material_flow": { - "value": "99" - }, - "top_skin_expand_distance": { - "value": "0.8" - }, - "speed_wall_x": { - "value": "20" - }, - "support_enable": { - "default_value": true - }, - "acceleration_print_layer_0": { - "value": "200" - }, - "jerk_prime_tower": { - "value": "5" - }, - "infill_before_walls": { - "default_value": false - }, - "raft_interface_line_spacing": { - "value": "0.4" - }, - "gantry_height": { - "value": "210" - }, - "material_print_temperature_layer_0": { - "value": "195" - }, - "raft_interface_line_width": { - "value": "0.4" - }, - "skirt_brim_line_width": { - "value": "0.5" - }, - "z_seam_y": { - "value": "180" - }, - "roofing_layer_count": { - "value": "1" - }, - "raft_margin": { - "default_value": 4 - }, - "cool_fan_full_at_height": { - "value": "0" - }, - "acceleration_support_interface": { - "value": "250" - }, - "retraction_min_travel": { - "value": "1" - }, - "acceleration_layer_0": { - "value": "200" - }, - "support_z_distance": { - "default_value": 0.2 - }, - "machine_heated_bed": { - "default_value": true - }, - "raft_jerk": { - "value": "10" - }, - "raft_surface_speed": { - "value": "60" - }, - "initial_layer_line_width_factor": { - "default_value": 120 - }, - "machine_start_gcode": { - "default_value": "G90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM420 S1 Z0.7 ;enable bed levelling\nG1 Z10 F250 ;move the platform down 10mm\nM107 ;fan off\nM42 P11 S255 ;turn on front fan\nM140 S{material_bed_temperature}\nM104 T0 S{material_print_temperature, 0}\nM104 T1 S{material_print_temperature, 1}\nG1 F2500 Y260 X0\nM190 S{material_bed_temperature}\nM109 T0 S{material_print_temperature, 0}\nM109 T1 S{material_print_temperature, 1}\nM60 ;enable E-FADE Algorithm\nM62 A ;filament sensor off\nG92 E0 ;zero the extruded length\nT1\nG92 E0;zero the extruded length\nG1 F300 Z0.3\nG1 F1200 X20\nG1 F1200 X180 E21 ;extrude 21 mm of feed stock\nG1 F1200 E11\nG1 F300 Z1.5\nG92 E0 ;zero the extruded length again\nT0\nG92 E0 ;zero the extruded length\nG1 F1200 Y258\nG1 F300 Z0.3\nG1 F1200 X40 E21 ;extrude 21 mm of feed stock\nG1 F1200 E11 ;retracting 10 mm\nG1 F300 Z1.5\nM63 A ;filament sensor reset\nM61 A ;filament sensor on\nG92 E0 ;zero the extruded length again\nM58 ;end of Start G-Code and signal retract management\nT{initial_extruder_nr}" - }, - "bottom_skin_preshrink": { - "value": "0.0" - }, - "ironing_inset": { - "value": "0.2 + (ironing_line_spacing - skin_line_width * (1.0 + ironing_flow / 100) / 2 if ironing_pattern == 'concentric' else skin_line_width * (1.0 - ironing_flow / 100) / 2)" - }, - "jerk_travel": { - "value": "10" - }, - "machine_depth": { - "default_value": 260 - }, - "jerk_skirt_brim": { - "value": "5" - }, - "infill_wipe_dist": { - "value": "0" - }, - "raft_interface_acceleration": { - "value": "400" - }, - "z_seam_x": { - "value": "115" - }, - "material_print_temperature": { - "value": "195" - }, - "material_bed_temperature_layer_0": { - "value": "50", - "minimum_value_warning": "30", - "resolve": "extruderValues('material_bed_temperature_layer_0')[adhesion_extruder_nr] if resolveOrValue('adhesion_type') == 'raft' else max(extruderValues('material_bed_temperature_layer_0'))" - }, - "wipe_retraction_retract_speed": { - "value": "30" - }, - "jerk_travel_layer_0": { - "value": "10" - }, - "infill_overlap": { - "value": "0" - }, - "acceleration_support_infill": { - "value": "400" - }, - "support_bottom_material_flow": { - "value": "99" - }, - "jerk_support_roof": { - "value": "5" - }, - "wall_x_material_flow": { - "value": "99" - }, - "speed_support_interface": { - "value": "33.33" - }, - "jerk_layer_0": { - "value": "5" - }, - "support_angle": { - "default_value": 60 - }, - "infill_sparse_thickness": { - "value": "0.2" - }, - "prime_tower_position_y": { - "value": "1" - }, - "retraction_combing": { - "value": "'infill'" - }, - "acceleration_prime_tower": { - "value": "250" - }, - "acceleration_print": { - "default_value": 200 - }, - "acceleration_infill": { - "value": "400" - }, - "bridge_wall_speed": { - "value": "10.0" - }, - "acceleration_wall_0": { - "value": "200" - }, - "support_offset": { - "default_value": 0.2 - }, - "build_volume_temperature": { - "default_value": 28 - }, - "switch_extruder_prime_speed": { - "value": "60" - }, - "speed_prime_tower": { - "value": "20" - }, - "top_skin_preshrink": { - "value": "0.0" - }, - "jerk_ironing": { - "value": "5" - }, - "skin_outline_count": { - "value": 0 - }, - "skirt_brim_speed": { - "value": "10.0" - }, - "raft_base_thickness": { - "value": "0.2" - }, - "infill_sparse_density": { - "default_value": 15 - }, - "support_bottom_extruder_nr": { - "value": "0" - }, - "support_material_flow": { - "value": "98" - }, - "min_infill_area": { - "default_value": 1 - }, - "jerk_support": { - "value": "10" - }, - "bottom_skin_expand_distance": { - "value": "0.8" - }, - "retract_at_layer_change": { - "default_value": true - }, - "jerk_support_interface": { - "value": "5" - }, - "jerk_support_bottom": { - "value": "5" - }, - "optimize_wall_printing_order": { - "default_value": true - }, - "skirt_brim_minimal_length": { - "default_value": 50 - }, - "jerk_support_infill": { - "value": "10" - }, - "initial_bottom_layers": { - "value": "3" - }, - "prime_tower_position_x": { - "value": "1" - }, - "acceleration_support_bottom": { - "value": "250" - }, - "speed_support_roof": { - "value": "33.33" - }, - "speed_support_infill": { - "value": "80" - }, - "bridge_skin_speed_2": { - "value": "15" - }, - "raft_fan_speed": { - "default_value": 40 - }, - "wipe_retraction_amount": { - "value": "3" - }, - "skin_edge_support_thickness": { - "value": "0" - }, - "bottom_layers": { - "value": "3" - }, - "retraction_extrusion_window": { - "value": "3" - }, - "acceleration_ironing": { - "value": "250" - }, - "support_top_distance": { - "value": "0.2" - }, - "travel_retract_before_outer_wall": { - "default_value": true - }, - "material_flow": { - "default_value": 99 - }, - "support_bottom_distance": { - "value": "0.2" - }, - "expand_skins_expand_distance": { - "value": "0.8" - }, - "jerk_wall": { - "value": "10" - }, - "support_zag_skip_count": { - "value": "8" - }, - "connect_infill_polygons": { - "value": "False" - }, - "acceleration_skirt_brim": { - "value": "250" - }, - "z_seam_corner": { - "default_value": "z_seam_corner_weighted" - }, - "raft_surface_jerk": { - "value": "10" - }, - "cross_infill_pocket_size": { - "value": "5.33" - }, - "support_infill_extruder_nr": { - "value": "0" - }, - "acceleration_enabled": { - "default_value": true - }, - "jerk_wall_x": { - "value": "10" - }, - "skin_overlap": { - "value": "15" - }, - "infill_material_flow": { - "value": "99" - }, - "skin_preshrink": { - "value": "0.0" - }, - "speed_wall": { - "value": "20" - }, - "support_tree_collision_resolution": { - "value": "0.2" - }, - "meshfix_maximum_deviation": { - "default_value": 0.003 - }, - "jerk_roofing": { - "value": "10" - }, - "fill_outline_gaps": { - "default_value": true - }, - "layer_height": { - "default_value": 0.2 - }, - "remove_empty_first_layers": { - "default_value": false - }, - "prime_tower_flow": { - "value": "99" - }, - "support_roof_line_distance": { - "value": "0.57" - }, - "wipe_retraction_speed": { - "value": "30" - }, - "support_extruder_nr_layer_0": { - "value": "0" - }, - "layer_height_0": { - "default_value": 0.2 - }, - "multiple_mesh_overlap": { - "default_value": 0 - }, - "ooze_shield_dist": { - "default_value": 4 - }, - "jerk_enabled": { - "default_value": true - }, - "acceleration_support": { - "value": "200" - }, - "adhesion_extruder_nr": { - "value": "0" - }, - "skirt_line_count": { - "default_value": 2 - }, - "jerk_wall_0": { - "value": "5" - }, - "raft_speed": { - "value": "60" - }, - "speed_layer_0": { - "value": "20.0" - }, - "machine_width": { - "default_value": 210 - }, - "acceleration_wall": { - "value": "200" - }, - "jerk_infill": { - "value": "10" - }, - "wipe_hop_enable": { - "value": "False" - }, - "acceleration_travel_layer_0": { - "value": "400" - }, - "raft_interface_speed": { - "value": "60" - }, - "skin_edge_support_layers": { - "value": "0" - }, - "support_xy_distance_overhang": { - "value": "0.5" - }, - "brim_width": { - "default_value": 10 - }, - "coasting_enable": { - "default_value": true - }, - "jerk_print": { - "default_value": 10 - }, - "acceleration_support_roof": { - "value": "250" - }, - "prime_tower_min_volume": { - "default_value": 4 - }, - "support_roof_material_flow": { - "value": "99" - }, - "wall_0_wipe_dist": { - "value": "0" - }, - "jerk_topbottom": { - "value": "10" - }, - "retraction_count_max": { - "default_value": 30 - }, - "skin_overlap_mm": { - "value": "0.06" - }, - "extruders_enabled_count": { - "value": "2" - }, - "speed_support_bottom": { - "value": "33.33" - }, - "support_skip_some_zags": { - "default_value": true - }, - "ooze_shield_angle": { - "default_value": 50 - }, - "wall_thickness": { - "value": "1.2" - }, - "speed_print_layer_0": { - "value": "10.0" - } - } } \ No newline at end of file diff --git a/resources/definitions/smoothie.def.json b/resources/definitions/smoothie.def.json index 463fbc92c2..8f9812357b 100644 --- a/resources/definitions/smoothie.def.json +++ b/resources/definitions/smoothie.def.json @@ -2,11 +2,13 @@ "version": 2, "name": "Smoothie Custom Printer", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "grk3010", "manufacturer": "Custom", "file_formats": "text/x-gcode", + "first_start_actions": [ "MachineSettingsAction" ], "machine_extruder_trains": { "0": "custom_extruder_1", @@ -17,21 +19,13 @@ "5": "custom_extruder_6", "6": "custom_extruder_7", "7": "custom_extruder_8" - }, - "first_start_actions": ["MachineSettingsAction"] - }, - "overrides": { - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_always_write_active_tool": { - "default_value": true - }, - "machine_start_gcode": { - "default_value": "G28 X0 Y0 ; Home X Y\nM375; Load Bed Leveling Grid\nG1 X300 Y275 F15000 ; Move to bed center\nM280 S3.0 ; Deploy probe pin\n## NOTE: Adjust \"ZX.XX\" after G30 to be the Z-offset (in mm) between the probe and the nozzle\n## This is how you adjust nozzle printing height!\nG30 Z1.25 ; Move down to find bed & set Z home offset\nM280 S7.0 ; Retract probe\nG1 Z15.0 F600 ; move extruder up 15mm\nT0; Activate Extruder 1" - }, - "machine_end_gcode": { - "default_value": "G28 X0 Y0; Home X and Y\nM104 S0 ; turn off extruder\nM140 S0 ; turn off bed\nM107; turn off fans\nM84 ; disable motors" } + }, + "overrides": + { + "machine_always_write_active_tool": { "default_value": true }, + "machine_end_gcode": { "default_value": "G28 X0 Y0; Home X and Y\nM104 S0 ; turn off extruder\nM140 S0 ; turn off bed\nM107; turn off fans\nM84 ; disable motors" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_start_gcode": { "default_value": "G28 X0 Y0 ; Home X Y\nM375; Load Bed Leveling Grid\nG1 X300 Y275 F15000 ; Move to bed center\nM280 S3.0 ; Deploy probe pin\n## NOTE: Adjust \"ZX.XX\" after G30 to be the Z-offset (in mm) between the probe and the nozzle\n## This is how you adjust nozzle printing height!\nG30 Z1.25 ; Move down to find bed & set Z home offset\nM280 S7.0 ; Retract probe\nG1 Z15.0 F600 ; move extruder up 15mm\nT0; Activate Extruder 1" } } -} +} \ No newline at end of file diff --git a/resources/definitions/snakeoil_standard_180.def.json b/resources/definitions/snakeoil_standard_180.def.json new file mode 100644 index 0000000000..29cdd1e840 --- /dev/null +++ b/resources/definitions/snakeoil_standard_180.def.json @@ -0,0 +1,17 @@ +{ + "version": 2, + "name": "SnakeOil Standard 180", + "inherits": "snakeoil_standard_base", + "metadata": + { + "visible": true, + "quality_definition": "snakeoil_standard_base" + }, + "overrides": + { + "machine_depth": { "default_value": 180 }, + "machine_height": { "default_value": 180 }, + "machine_name": { "default_value": "SNAKEOIL STANDARD 180" }, + "machine_width": { "default_value": 180 } + } +} \ No newline at end of file diff --git a/resources/definitions/snakeoil_standard_250.def.json b/resources/definitions/snakeoil_standard_250.def.json new file mode 100644 index 0000000000..b103749acd --- /dev/null +++ b/resources/definitions/snakeoil_standard_250.def.json @@ -0,0 +1,17 @@ +{ + "version": 2, + "name": "SnakeOil Standard 250", + "inherits": "snakeoil_standard_base", + "metadata": + { + "visible": true, + "quality_definition": "snakeoil_standard_base" + }, + "overrides": + { + "machine_depth": { "default_value": 240 }, + "machine_height": { "default_value": 230 }, + "machine_name": { "default_value": "SNAKEOIL STANDARD 250" }, + "machine_width": { "default_value": 250 } + } +} \ No newline at end of file diff --git a/resources/definitions/snakeoil_standard_base.def.json b/resources/definitions/snakeoil_standard_base.def.json new file mode 100644 index 0000000000..700edf3d35 --- /dev/null +++ b/resources/definitions/snakeoil_standard_base.def.json @@ -0,0 +1,115 @@ +{ + "version": 2, + "name": "SnakeOil Standard Base", + "inherits": "fdmprinter", + "metadata": + { + "visible": false, + "author": "Chip", + "manufacturer": "SnakeOilXY", + "file_formats": "text/x-gcode", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "machine_extruder_trains": { "0": "snakeoil_standard_extruder_0" }, + "preferred_material": "generic_abs", + "preferred_quality_type": "normal" + }, + "overrides": + { + "acceleration_enabled": { "default_value": true }, + "acceleration_layer_0": { "value": 10000 }, + "acceleration_print": { "default_value": 15000 }, + "acceleration_roofing": { "value": 10000 }, + "acceleration_travel_layer_0": { "value": 10000 }, + "acceleration_wall_0": { "value": 7500 }, + "adhesion_type": { "default_value": "skirt" }, + "alternate_extra_perimeter": { "default_value": true }, + "bridge_fan_speed_2": { "resolve": "max(cool_fan_speed, 50)" }, + "bridge_fan_speed_3": { "resolve": "max(cool_fan_speed, 20)" }, + "bridge_settings_enabled": { "default_value": true }, + "bridge_wall_coast": { "default_value": 10 }, + "cool_fan_full_at_height": { "value": "resolveOrValue('layer_height_0') + resolveOrValue('layer_height') * max(1, cool_fan_full_layer - 1)" }, + "cool_fan_full_layer": { "value": 4 }, + "cool_min_layer_time": { "default_value": 15 }, + "cool_min_layer_time_fan_speed_max": { "default_value": 20 }, + "gantry_height": { "value": 30 }, + "infill_before_walls": { "default_value": false }, + "infill_enable_travel_optimization": { "default_value": true }, + "jerk_roofing": { "value": 10 }, + "jerk_wall_0": { "value": 10 }, + "layer_height_0": { "resolve": "max(0.2, min(extruderValues('layer_height')))" }, + "line_width": { "value": "machine_nozzle_size * 1.125" }, + "machine_acceleration": { "default_value": 1500 }, + "machine_depth": { "default_value": 165 }, + "machine_end_gcode": { "default_value": "END_PRINT" }, + "machine_endstop_positive_direction_x": { "default_value": true }, + "machine_endstop_positive_direction_y": { "default_value": true }, + "machine_endstop_positive_direction_z": { "default_value": false }, + "machine_feeder_wheel_diameter": { "default_value": 7.5 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-35, 65], + [-35, -50], + [35, -50], + [35, 65] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 165 }, + "machine_max_acceleration_x": { "default_value": 15000 }, + "machine_max_acceleration_y": { "default_value": 15000 }, + "machine_max_acceleration_z": { "default_value": 250 }, + "machine_max_feedrate_e": { "default_value": 120 }, + "machine_max_feedrate_z": { "default_value": 40 }, + "machine_max_jerk_e": { "default_value": 60 }, + "machine_name": { "default_value": "SNAKEOIL STANDARD" }, + "machine_start_gcode": { "default_value": ";Simple\nSTART_PRINT EXTRUDER_TEMP={material_print_temperature_layer_0} BED_TEMP={material_bed_temperature_layer_0}\n;Or with custom bed mesh area\n;START_PRINT EXTRUDER_TEMP={material_print_temperature_layer_0} BED_TEMP={material_bed_temperature_layer_0} AREA_START=%MINX%,%MINY% AREA_END=%MAXX%,%MAXY% FILAMENT_TYPE={material_type}" }, + "machine_steps_per_mm_x": { "default_value": 160 }, + "machine_steps_per_mm_y": { "default_value": 160 }, + "machine_steps_per_mm_z": { "default_value": 800 }, + "machine_use_extruder_offset_to_offset_coords": { "value": false }, + "machine_width": { "default_value": 165 }, + "material_diameter": { "default_value": 1.75 }, + "meshfix_maximum_resolution": { "default_value": 0.01 }, + "min_infill_area": { "default_value": 5.0 }, + "minimum_polygon_circumference": { "default_value": 0.2 }, + "optimize_wall_printing_order": { "default_value": true }, + "retraction_amount": { "default_value": 0.8 }, + "retraction_combing": { "value": "'noskin'" }, + "retraction_combing_max_distance": { "default_value": 10 }, + "retraction_hop": { "default_value": 0.2 }, + "retraction_hop_enabled": { "default_value": true }, + "retraction_prime_speed": + { + "maximum_value_warning": 130, + "value": "math.ceil(retraction_speed * 0.4)" + }, + "retraction_retract_speed": { "maximum_value_warning": 130 }, + "retraction_speed": + { + "default_value": 35, + "maximum_value_warning": 130 + }, + "roofing_layer_count": { "value": 1 }, + "skirt_brim_minimal_length": { "default_value": 550 }, + "speed_layer_0": { "value": "math.ceil(speed_print * 0.25)" }, + "speed_roofing": { "value": "math.ceil(speed_print * 0.33)" }, + "speed_slowdown_layers": { "default_value": 4 }, + "speed_topbottom": { "value": "math.ceil(speed_print * 0.33)" }, + "speed_travel": + { + "maximum_value_warning": 501, + "value": 300 + }, + "speed_travel_layer_0": { "value": "math.ceil(speed_travel * 0.4)" }, + "speed_wall": { "value": "math.ceil(speed_print * 0.33)" }, + "speed_wall_0": { "value": "math.ceil(speed_print * 0.33)" }, + "speed_wall_x": { "value": "math.ceil(speed_print * 0.66)" }, + "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 }, + "zig_zaggify_infill": { "value": true } + } +} \ No newline at end of file diff --git a/resources/definitions/snapmaker2.def.json b/resources/definitions/snapmaker2.def.json index 9a26ea21a7..81fa58dd04 100644 --- a/resources/definitions/snapmaker2.def.json +++ b/resources/definitions/snapmaker2.def.json @@ -2,76 +2,38 @@ "version": 2, "name": "Snapmaker 2", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": false, "manufacturer": "Snapmaker", "file_formats": "text/x-gcode", - "machine_extruder_trains": { - "0": "snapmaker_extruder_0" - }, - "has_materials": true, + "exclude_materials": [], "has_machine_quality": true, - "preferred_quality_type": "normal", + "has_materials": true, + "machine_extruder_trains": { "0": "snapmaker_extruder_0" }, "preferred_material": "generic_pla", - "exclude_materials": [ ] + "preferred_quality_type": "normal" }, - "overrides": { - "machine_name": { - "default_value": "Snapmaker" - }, - "machine_buildplate_type": { - "default_value": "aluminum" - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_start_gcode": { - "default_value": "M104 S{material_print_temperature_layer_0} ;Set Hotend Temperature\nM140 S{material_bed_temperature_layer_0} ;Set Bed Temperature\nG28 ;home\nG90 ;absolute positioning\nG1 X-10 Y-10 F3000 ;Move to corner \nG1 Z0 F1800 ;Go to zero offset\nM109 S{material_print_temperature_layer_0} ;Wait for Hotend Temperature\nM190 S{material_bed_temperature_layer_0} ;Wait for Bed Temperature\nG92 E0 ;Zero set extruder position\nG1 E20 F200 ;Feed filament to clear nozzle\nG92 E0 ;Zero set extruder position" - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;Extruder heater off\nM140 S0 ;Heated bed heater off\nG90 ;absolute positioning\nG92 E0 ;Retract the filament\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z{machine_height} E-1 F3000 ;move Z up a bit and retract filament even more\nG1 X0 F3000 ;move X to min endstops, so the head is out of the way\nG1 Y{machine_depth} F3000 ;so the head is out of the way and Plate is moved forward" - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - }, - "machine_max_acceleration_x": { - "default_value": 1000 - }, - "machine_max_acceleration_y": { - "default_value": 1000 - }, - "machine_max_acceleration_z": { - "default_value": 1000 - }, - "machine_max_acceleration_e": { - "default_value": 1000 - }, - "machine_acceleration": { - "default_value": 1000 - }, - "material_print_temp_prepend": { - "default_value": false - }, - "material_bed_temp_prepend": { - "default_value": false - }, - "default_material_print_temperature": { - "default_value": 205 - }, - "retraction_enable": { - "default_value": true - }, - "retraction_amount": { - "default_value": 5 - }, - "retraction_speed": { - "default_value": 60 - }, - "retract_at_layer_change": { - "default_value": false - } + "overrides": + { + "default_material_print_temperature": { "default_value": 205 }, + "machine_acceleration": { "default_value": 1000 }, + "machine_buildplate_type": { "default_value": "aluminum" }, + "machine_end_gcode": { "default_value": "M104 S0 ;Extruder heater off\nM140 S0 ;Heated bed heater off\nG90 ;absolute positioning\nG92 E0 ;Retract the filament\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z{machine_height} E-1 F3000 ;move Z up a bit and retract filament even more\nG1 X0 F3000 ;move X to min endstops, so the head is out of the way\nG1 Y{machine_depth} F3000 ;so the head is out of the way and Plate is moved forward" }, + "machine_heated_bed": { "default_value": true }, + "machine_max_acceleration_e": { "default_value": 1000 }, + "machine_max_acceleration_x": { "default_value": 1000 }, + "machine_max_acceleration_y": { "default_value": 1000 }, + "machine_max_acceleration_z": { "default_value": 1000 }, + "machine_name": { "default_value": "Snapmaker" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_start_gcode": { "default_value": "M104 S{material_print_temperature_layer_0} ;Set Hotend Temperature\nM140 S{material_bed_temperature_layer_0} ;Set Bed Temperature\nG28 ;home\nG90 ;absolute positioning\nG1 X-10 Y-10 F3000 ;Move to corner \nG1 Z0 F1800 ;Go to zero offset\nM109 S{material_print_temperature_layer_0} ;Wait for Hotend Temperature\nM190 S{material_bed_temperature_layer_0} ;Wait for Bed Temperature\nG92 E0 ;Zero set extruder position\nG1 E20 F200 ;Feed filament to clear nozzle\nG92 E0 ;Zero set extruder position" }, + "material_bed_temp_prepend": { "default_value": false }, + "material_diameter": { "default_value": 1.75 }, + "material_print_temp_prepend": { "default_value": false }, + "retract_at_layer_change": { "default_value": false }, + "retraction_amount": { "default_value": 5 }, + "retraction_enable": { "default_value": true }, + "retraction_speed": { "default_value": 60 } } -} +} \ No newline at end of file diff --git a/resources/definitions/snapmaker2_A150.def.json b/resources/definitions/snapmaker2_A150.def.json index 8baea05016..be0d6c67df 100644 --- a/resources/definitions/snapmaker2_A150.def.json +++ b/resources/definitions/snapmaker2_A150.def.json @@ -1,39 +1,30 @@ -{ - "version": 2, - "name": "Snapmaker 2 A150", - "inherits": "snapmaker2", - "metadata": { - "visible": true, - "manufacturer": "Snapmaker", - "file_formats": "text/x-gcode", - "machine_extruder_trains": { - "0": "snapmaker_extruder_0" - }, - "quality_definition": "snapmaker2" - }, - "overrides": { - "machine_name": { - "default_value": "Snapmaker A150" - }, - "machine_width": { - "default_value": 160 - }, - "machine_depth": { - "default_value": 160 - }, - "machine_height": { - "default_value": 145 - }, - "machine_head_with_fans_polygon": { - "default_value": [ - [-67, 22], - [-67, -25], - [25.5, 22], - [25.5, -25] - ] - }, - "gantry_height": { - "value": 27 - } - } -} +{ + "version": 2, + "name": "Snapmaker 2 A150", + "inherits": "snapmaker2", + "metadata": + { + "visible": true, + "manufacturer": "Snapmaker", + "file_formats": "text/x-gcode", + "machine_extruder_trains": { "0": "snapmaker_extruder_0" }, + "quality_definition": "snapmaker2" + }, + "overrides": + { + "gantry_height": { "value": 27 }, + "machine_depth": { "default_value": 160 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-67, 22], + [-67, -25], + [25.5, 22], + [25.5, -25] + ] + }, + "machine_height": { "default_value": 145 }, + "machine_name": { "default_value": "Snapmaker A150" }, + "machine_width": { "default_value": 160 } + } +} \ No newline at end of file diff --git a/resources/definitions/snapmaker2_A150_dual.def.json b/resources/definitions/snapmaker2_A150_dual.def.json new file mode 100644 index 0000000000..2bc733d492 --- /dev/null +++ b/resources/definitions/snapmaker2_A150_dual.def.json @@ -0,0 +1,34 @@ +{ + "version": 2, + "name": "Snapmaker 2 A150 Dual Extruder", + "inherits": "snapmaker2_dual", + "metadata": + { + "visible": true, + "manufacturer": "Snapmaker", + "file_formats": "text/x-gcode", + "machine_extruder_trains": + { + "0": "snapmaker_dual_extruder_0", + "1": "snapmaker_dual_extruder_1" + }, + "quality_definition": "snapmaker2" + }, + "overrides": + { + "gantry_height": { "value": 27 }, + "machine_depth": { "default_value": 160 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-67, 22], + [-67, -25], + [25.5, 22], + [25.5, -25] + ] + }, + "machine_height": { "default_value": 145 }, + "machine_name": { "default_value": "Snapmaker A150" }, + "machine_width": { "default_value": 160 } + } +} \ No newline at end of file diff --git a/resources/definitions/snapmaker2_A250.def.json b/resources/definitions/snapmaker2_A250.def.json index a61d52c46f..0fdc67b061 100644 --- a/resources/definitions/snapmaker2_A250.def.json +++ b/resources/definitions/snapmaker2_A250.def.json @@ -1,39 +1,30 @@ -{ - "version": 2, - "name": "Snapmaker 2 A250", - "inherits": "snapmaker2", - "metadata": { - "visible": true, - "manufacturer": "Snapmaker", - "file_formats": "text/x-gcode", - "machine_extruder_trains": { - "0": "snapmaker_extruder_0" - }, - "quality_definition": "snapmaker2" - }, - "overrides": { - "machine_name": { - "default_value": "Snapmaker A250" - }, - "machine_width": { - "default_value": 230 - }, - "machine_depth": { - "default_value": 250 - }, - "machine_height": { - "default_value": 235 - }, - "machine_head_with_fans_polygon": { - "default_value": [ - [-67, 22], - [-67, -25], - [25.5, 22], - [25.5, -25] - ] - }, - "gantry_height": { - "value": 27 - } - } -} +{ + "version": 2, + "name": "Snapmaker 2 A250", + "inherits": "snapmaker2", + "metadata": + { + "visible": true, + "manufacturer": "Snapmaker", + "file_formats": "text/x-gcode", + "machine_extruder_trains": { "0": "snapmaker_extruder_0" }, + "quality_definition": "snapmaker2" + }, + "overrides": + { + "gantry_height": { "value": 27 }, + "machine_depth": { "default_value": 250 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-67, 22], + [-67, -25], + [25.5, 22], + [25.5, -25] + ] + }, + "machine_height": { "default_value": 235 }, + "machine_name": { "default_value": "Snapmaker A250" }, + "machine_width": { "default_value": 230 } + } +} \ No newline at end of file diff --git a/resources/definitions/snapmaker2_A250_dual.def.json b/resources/definitions/snapmaker2_A250_dual.def.json new file mode 100644 index 0000000000..c8aa50a19c --- /dev/null +++ b/resources/definitions/snapmaker2_A250_dual.def.json @@ -0,0 +1,34 @@ +{ + "version": 2, + "name": "Snapmaker 2 A250 Dual Extruder", + "inherits": "snapmaker2_dual", + "metadata": + { + "visible": true, + "manufacturer": "Snapmaker", + "file_formats": "text/x-gcode", + "machine_extruder_trains": + { + "0": "snapmaker_dual_extruder_0", + "1": "snapmaker_dual_extruder_1" + }, + "quality_definition": "snapmaker2" + }, + "overrides": + { + "gantry_height": { "value": 27 }, + "machine_depth": { "default_value": 250 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-67, 22], + [-67, -25], + [25.5, 22], + [25.5, -25] + ] + }, + "machine_height": { "default_value": 235 }, + "machine_name": { "default_value": "Snapmaker A250" }, + "machine_width": { "default_value": 230 } + } +} \ No newline at end of file diff --git a/resources/definitions/snapmaker2_A350.def.json b/resources/definitions/snapmaker2_A350.def.json index 944e9ebc3b..985880f0a0 100644 --- a/resources/definitions/snapmaker2_A350.def.json +++ b/resources/definitions/snapmaker2_A350.def.json @@ -1,39 +1,30 @@ -{ - "version": 2, - "name": "Snapmaker 2 A350", - "inherits": "snapmaker2", - "metadata": { - "visible": true, - "manufacturer": "Snapmaker", - "file_formats": "text/x-gcode", - "machine_extruder_trains": { - "0": "snapmaker_extruder_0" - }, - "quality_definition": "snapmaker2" - }, - "overrides": { - "machine_name": { - "default_value": "Snapmaker A350" - }, - "machine_width": { - "default_value": 320 - }, - "machine_depth": { - "default_value": 350 - }, - "machine_height": { - "default_value": 330 - }, - "machine_head_with_fans_polygon": { - "default_value": [ - [-67, 22], - [-67, -25], - [25.5, 22], - [25.5, -25] - ] - }, - "gantry_height": { - "value": 27 - } - } -} +{ + "version": 2, + "name": "Snapmaker 2 A350", + "inherits": "snapmaker2", + "metadata": + { + "visible": true, + "manufacturer": "Snapmaker", + "file_formats": "text/x-gcode", + "machine_extruder_trains": { "0": "snapmaker_extruder_0" }, + "quality_definition": "snapmaker2" + }, + "overrides": + { + "gantry_height": { "value": 27 }, + "machine_depth": { "default_value": 350 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-67, 22], + [-67, -25], + [25.5, 22], + [25.5, -25] + ] + }, + "machine_height": { "default_value": 330 }, + "machine_name": { "default_value": "Snapmaker A350" }, + "machine_width": { "default_value": 320 } + } +} \ No newline at end of file diff --git a/resources/definitions/snapmaker2_A350_dual.def.json b/resources/definitions/snapmaker2_A350_dual.def.json new file mode 100644 index 0000000000..6e6fa3c6e2 --- /dev/null +++ b/resources/definitions/snapmaker2_A350_dual.def.json @@ -0,0 +1,34 @@ +{ + "version": 2, + "name": "Snapmaker 2 A350 Dual Extruder", + "inherits": "snapmaker2_dual", + "metadata": + { + "visible": true, + "manufacturer": "Snapmaker", + "file_formats": "text/x-gcode", + "machine_extruder_trains": + { + "0": "snapmaker_dual_extruder_0", + "1": "snapmaker_dual_extruder_1" + }, + "quality_definition": "snapmaker2" + }, + "overrides": + { + "gantry_height": { "value": 27 }, + "machine_depth": { "default_value": 350 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-67, 22], + [-67, -25], + [25.5, 22], + [25.5, -25] + ] + }, + "machine_height": { "default_value": 330 }, + "machine_name": { "default_value": "Snapmaker A350" }, + "machine_width": { "default_value": 320 } + } +} \ No newline at end of file diff --git a/resources/definitions/snapmaker2_dual.def.json b/resources/definitions/snapmaker2_dual.def.json new file mode 100644 index 0000000000..71648ef512 --- /dev/null +++ b/resources/definitions/snapmaker2_dual.def.json @@ -0,0 +1,42 @@ +{ + "version": 2, + "name": "Snapmaker 2", + "inherits": "fdmprinter", + "metadata": + { + "visible": false, + "manufacturer": "Snapmaker", + "file_formats": "text/x-gcode", + "exclude_materials": [], + "has_machine_quality": true, + "has_materials": true, + "machine_extruder_trains": + { + "0": "snapmaker_dual_extruder_0", + "1": "snapmaker_dual_extruder_1" + }, + "preferred_material": "generic_pla", + "preferred_quality_type": "normal" + }, + "overrides": + { + "default_material_print_temperature": { "default_value": 205 }, + "machine_acceleration": { "default_value": 1000 }, + "machine_buildplate_type": { "default_value": "aluminum" }, + "machine_end_gcode": { "default_value": "M104 S0 ;Extruder heater off\nM140 S0 ;Heated bed heater off\nG90 ;absolute positioning\nG92 E0 ;Retract the filament\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z{machine_height} E-1 F3000 ;move Z up a bit and retract filament even more\nG1 X0 F3000 ;move X to min endstops, so the head is out of the way\nG1 Y{machine_depth} F3000 ;so the head is out of the way and Plate is moved forward" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_heated_bed": { "default_value": true }, + "machine_max_acceleration_e": { "default_value": 1000 }, + "machine_max_acceleration_x": { "default_value": 1000 }, + "machine_max_acceleration_y": { "default_value": 1000 }, + "machine_max_acceleration_z": { "default_value": 1000 }, + "machine_name": { "default_value": "Snapmaker" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_start_gcode": { "default_value": "M104 S{material_print_temperature_layer_0} ;Set Hotend Temperature\nM140 S{material_bed_temperature_layer_0} ;Set Bed Temperature\nG28 ;home\nG90 ;absolute positioning\nG1 X-10 Y-10 F3000 ;Move to corner \nG1 Z0 F1800 ;Go to zero offset\nM109 S{material_print_temperature_layer_0} ;Wait for Hotend Temperature\nM190 S{material_bed_temperature_layer_0} ;Wait for Bed Temperature\nG92 E0 ;Zero set extruder position\nG1 E20 F200 ;Feed filament to clear nozzle\nG92 E0 ;Zero set extruder position" }, + "material_bed_temp_prepend": { "default_value": false }, + "material_diameter": { "default_value": 1.75 }, + "material_print_temp_prepend": { "default_value": false }, + "retraction_amount": { "default_value": 5 }, + "retraction_speed": { "default_value": 60 } + } +} \ No newline at end of file diff --git a/resources/definitions/sovol_base.def.json b/resources/definitions/sovol_base.def.json new file mode 100644 index 0000000000..125a3342b4 --- /dev/null +++ b/resources/definitions/sovol_base.def.json @@ -0,0 +1,117 @@ +{ + "version": 2, + "name": "Sovol Base Printer", + "inherits": "fdmprinter", + "metadata": + { + "visible": false, + "author": "ed3d.net", + "manufacturer": "Sovol 3D", + "file_formats": "text/x-gcode", + "exclude_materials": [ + "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", + "fiberlogy_hd_pla", + "filo3d_pla", + "filo3d_pla_green", + "filo3d_pla_red", + "generic_abs", + "generic_bam", + "generic_cffcpe", + "generic_cffpa", + "generic_cpe", + "generic_cpe_plus", + "generic_gffcpe", + "generic_gffpa", + "generic_hips", + "generic_nylon", + "generic_pc", + "generic_petg", + "generic_pla", + "generic_pp", + "generic_pva", + "generic_tough_pla", + "generic_tpu", + "imade3d_petg_green", + "imade3d_petg_pink", + "imade3d_pla_green", + "imade3d_pla_pink", + "innofill_innoflex60_175", + "octofiber_pla", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "structur3d_dap100silicone", + "tizyx_abs", + "tizyx_pla", + "tizyx_pla_bois", + "verbatim_bvoh_175", + "zyyx_pro_flex", + "zyyx_pro_pla" + ], + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "preferred_quality_type": "standard", + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Size" + }, + "overrides": + { + "acceleration_enabled": { "value": true }, + "acceleration_print": { "value": 500 }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, + "acceleration_travel": { "value": 500 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel" }, + "adaptive_layer_height_variation": { "value": 0.04 }, + "adaptive_layer_height_variation_step": { "value": 0.04 }, + "adhesion_type": { "value": "'skirt'" }, + "infill_before_walls": { "value": false }, + "infill_line_distance": { "value": "0 if infill_sparse_density == 0 else (infill_line_width * 100) / infill_sparse_density * (2 if infill_pattern == 'grid' else (3 if infill_pattern == 'triangles' or infill_pattern == 'trihexagon' or infill_pattern == 'cubic' or infill_pattern == 'cubicsubdiv' else (2 if infill_pattern == 'tetrahedral' or infill_pattern == 'quarter_cubic' else (1 if infill_pattern == 'cross' or infill_pattern == 'cross_3d' else 1))))" }, + "infill_overlap": { "value": 30.0 }, + "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 89 else 'cubic'" }, + "infill_sparse_density": { "value": 10.0 }, + "infill_wipe_dist": { "value": 0.0 }, + "jerk_enabled": { "value": true }, + "jerk_print": { "value": 8 }, + "jerk_travel": { "value": "jerk_print * 2" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "machine_acceleration": { "value": 500 }, + "machine_heated_bed": { "default_value": true }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_feedrate_e": { "value": 50 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_xy": { "value": 8 }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "optimize_wall_printing_order": { "value": "True" }, + "retraction_amount": { "default_value": 0.5 }, + "retraction_speed": { "default_value": 40 }, + "skin_monotonic": { "value": true }, + "skin_overlap": { "value": 10.0 }, + "speed_layer_0": { "value": 20.0 }, + "speed_print": { "value": 50.0 }, + "speed_topbottom": { "value": "math.ceil(speed_print * (50 / 100))" }, + "speed_wall": { "value": "math.ceil(speed_print * (50 / 100))" }, + "wall_0_wipe_dist": { "value": 0.0 }, + "wall_thickness": { "value": "line_width * 2" }, + "z_seam_corner": { "value": "'z_seam_corner_inner'" }, + "z_seam_type": { "value": "'sharpest_corner'" } + } +} \ No newline at end of file diff --git a/resources/definitions/sovol_base_bowden.def.json b/resources/definitions/sovol_base_bowden.def.json new file mode 100644 index 0000000000..670b24fffc --- /dev/null +++ b/resources/definitions/sovol_base_bowden.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Sovol Base Bowden Printer", + "inherits": "sovol_base", + "metadata": + { + "machine_extruder_trains": { "0": "sovol_bowden_extruder_0" }, + "quality_definition": "sovol_base_bowden" + }, + "overrides": + { + "retraction_amount": { "default_value": 5 }, + "retraction_speed": { "value": "machine_max_feedrate_e" } + } +} \ No newline at end of file diff --git a/resources/definitions/sovol_base_planetary.def.json b/resources/definitions/sovol_base_planetary.def.json new file mode 100644 index 0000000000..2191d2d4ad --- /dev/null +++ b/resources/definitions/sovol_base_planetary.def.json @@ -0,0 +1,12 @@ +{ + "version": 2, + "name": "Sovol Base Planetary Printer", + "inherits": "sovol_base", + "metadata": + { + "machine_extruder_trains": { "0": "sovol_planetary_extruder_0" }, + "quality_definition": "sovol_base_planetary" + }, + "overrides": + {} +} \ No newline at end of file diff --git a/resources/definitions/sovol_base_titan.def.json b/resources/definitions/sovol_base_titan.def.json new file mode 100644 index 0000000000..222cec0021 --- /dev/null +++ b/resources/definitions/sovol_base_titan.def.json @@ -0,0 +1,12 @@ +{ + "version": 2, + "name": "Sovol Base Titan Printer", + "inherits": "sovol_base", + "metadata": + { + "machine_extruder_trains": { "0": "sovol_titan_extruder_0" }, + "quality_definition": "sovol_base_titan" + }, + "overrides": + {} +} \ No newline at end of file diff --git a/resources/definitions/sovol_sv01.def.json b/resources/definitions/sovol_sv01.def.json new file mode 100644 index 0000000000..9d77c1c3f6 --- /dev/null +++ b/resources/definitions/sovol_sv01.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "Sovol SV01", + "inherits": "sovol_base_bowden", + "metadata": + { + "visible": true, + "quality_definition": "sovol_base_bowden" + }, + "overrides": + { + "gantry_height": { "value": 33 }, + "machine_depth": { "default_value": 240 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y240 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-44, 16], + [-44, -60], + [44, -60], + [44, 16] + ] + }, + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "SV01" }, + "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" }, + "machine_width": { "default_value": 280 } + } +} \ No newline at end of file diff --git a/resources/definitions/sovol_sv01pro.def.json b/resources/definitions/sovol_sv01pro.def.json new file mode 100644 index 0000000000..346a3edc05 --- /dev/null +++ b/resources/definitions/sovol_sv01pro.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "Sovol SV01PRO", + "inherits": "sovol_base_titan", + "metadata": + { + "visible": true, + "quality_definition": "sovol_base_titan" + }, + "overrides": + { + "gantry_height": { "value": 33 }, + "machine_depth": { "default_value": 240 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y240 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-44, 16], + [-44, -60], + [44, -60], + [44, 16] + ] + }, + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "SV01PRO" }, + "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\nM420 S1 ;use bed mesh, must have used G29 previously\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" }, + "machine_width": { "default_value": 280 } + } +} \ No newline at end of file diff --git a/resources/definitions/sovol_sv03.def.json b/resources/definitions/sovol_sv03.def.json new file mode 100644 index 0000000000..ae2fcd85fd --- /dev/null +++ b/resources/definitions/sovol_sv03.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "Sovol SV03", + "inherits": "sovol_base_titan", + "metadata": + { + "visible": true, + "quality_definition": "sovol_base_titan" + }, + "overrides": + { + "gantry_height": { "value": 33 }, + "machine_depth": { "default_value": 350 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y240 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-44, 16], + [-44, -60], + [44, -60], + [44, 16] + ] + }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "SV03" }, + "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\nM420 S1 ;use bed mesh, must have used G29 previously\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" }, + "machine_width": { "default_value": 350 } + } +} \ No newline at end of file diff --git a/resources/definitions/sovol_sv05.def.json b/resources/definitions/sovol_sv05.def.json new file mode 100644 index 0000000000..1715a7385c --- /dev/null +++ b/resources/definitions/sovol_sv05.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "Sovol SV05", + "inherits": "sovol_base_titan", + "metadata": + { + "visible": true, + "quality_definition": "sovol_base_titan" + }, + "overrides": + { + "gantry_height": { "value": 25 }, + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y240 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-44, 16], + [-44, -60], + [44, -60], + [44, 16] + ] + }, + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "SV05" }, + "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\nM420 S1 ;use bed mesh, must have used G29 previously\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" }, + "machine_width": { "default_value": 220 } + } +} \ No newline at end of file diff --git a/resources/definitions/sovol_sv06.def.json b/resources/definitions/sovol_sv06.def.json new file mode 100644 index 0000000000..0060e2d913 --- /dev/null +++ b/resources/definitions/sovol_sv06.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "Sovol SV06", + "inherits": "sovol_base_planetary", + "metadata": + { + "visible": true, + "quality_definition": "sovol_base_planetary" + }, + "overrides": + { + "gantry_height": { "value": 25 }, + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y240 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-44, 16], + [-44, -60], + [44, -60], + [44, 16] + ] + }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "SV06" }, + "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\nM420 S1 ;use bed mesh, must have used G29 previously\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" }, + "machine_width": { "default_value": 220 } + } +} \ No newline at end of file diff --git a/resources/definitions/stereotech_start.def.json b/resources/definitions/stereotech_start.def.json index f6733d2ec7..1313addba5 100644 --- a/resources/definitions/stereotech_start.def.json +++ b/resources/definitions/stereotech_start.def.json @@ -2,44 +2,30 @@ "version": 2, "name": "Stereotech Start", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Stereotech", "manufacturer": "Stereotech LLC.", "file_formats": "text/x-gcode", "platform": "stereotech_start.3mf", "icon": "icon_ultimaker2", - "platform_offset": [0, 0, 0], - "machine_extruder_trains": - { - "0": "stereotech_start_extruder_0" - } + "machine_extruder_trains": { "0": "stereotech_start_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ] }, - - "overrides": { - "machine_heated_bed": { - "default_value": true - }, - "machine_width": { - "default_value": 190 - }, - "machine_height": { - "default_value": 190 - }, - "machine_depth": { - "default_value": 190 - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Home all axes (max endstops)\nG1 Z15.0 F9000 ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG28 ;Home all axes (max endstops)\nM84 ;steppers off\nG90 ;absolute positioning" - }, - "machine_shape": { - "default_value": "rectangular" - } + "overrides": + { + "machine_depth": { "default_value": 190 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG28 ;Home all axes (max endstops)\nM84 ;steppers off\nG90 ;absolute positioning" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 190 }, + "machine_shape": { "default_value": "rectangular" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Home all axes (max endstops)\nG1 Z15.0 F9000 ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3mm 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": 190 } } -} +} \ No newline at end of file diff --git a/resources/definitions/stereotech_ste320.def.json b/resources/definitions/stereotech_ste320.def.json index 3aa89effc5..2674841411 100644 --- a/resources/definitions/stereotech_ste320.def.json +++ b/resources/definitions/stereotech_ste320.def.json @@ -2,87 +2,51 @@ "version": 2, "name": "Stereotech STE320", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Stereotech", "manufacturer": "Stereotech LLC.", + "file_formats": "text/x-gcode", "platform": "stereotech_ste320_platform.obj", - "platform_texture": "StereotechSte320backplate.png", + "has_materials": true, + "machine_extruder_trains": + { + "0": "stereotech_ste320_1st", + "1": "stereotech_ste320_2nd" + }, "platform_offset": [ 0, 0, -14 ], - "file_formats": "text/x-gcode", - "has_materials": true, - "supports_usb_connection": false, - "machine_extruder_trains": { - "0": "stereotech_ste320_1st", - "1": "stereotech_ste320_2nd" - } + "platform_texture": "StereotechSte320backplate.png", + "supports_usb_connection": false }, - "overrides": { - "machine_name": { - "default_value": "Stereotech STE320" - }, - "machine_width": { - "default_value": 218 - }, - "machine_height": { - "default_value": 200 - }, - "machine_depth": { - "default_value": 210 - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_head_with_fans_polygon": { + "overrides": + { + "gantry_height": { "value": "25" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 210 }, + "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\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": + { "default_value": [ - [ - -29, - 22 - ], - [ - -29, - -20 - ], - [ - 27, - 22 - ], - [ - 27, - -20 - ] + [-29, 22], + [-29, -20], + [27, 22], + [27, -20] ] }, - "gantry_height": { - "value": "25" - }, - "machine_use_extruder_offset_to_offset_coords": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;homing\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_end_gcode": { - "default_value": "M104 T0 S0 ;1st extruder heater off\nM104 T1 S0 ;2nd extruder heater off\nM140 S0 ;heated bed heater off\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 - }, - "prime_tower_position_x": { - "value": "195" - }, - "prime_tower_position_y": { - "value": "149" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "Stereotech STE320" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;homing\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": 218 }, + "prime_tower_position_x": { "value": "195" }, + "prime_tower_position_y": { "value": "149" } } } \ No newline at end of file diff --git a/resources/definitions/strateo3d.def.json b/resources/definitions/strateo3d.def.json index cc4038586c..afae3e9744 100644 --- a/resources/definitions/strateo3d.def.json +++ b/resources/definitions/strateo3d.def.json @@ -3,160 +3,298 @@ "name": "Strateo3D", "inherits": "fdmprinter", "metadata": + { + "visible": true, + "author": "eMotionTech", + "manufacturer": "eMotionTech", + "file_formats": "text/x-gcode", + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { - "author": "eMotionTech", - "manufacturer": "eMotionTech", - "visible": true, - "file_formats": "text/x-gcode", - "has_machine_quality": true, - "has_materials": true, - "has_variants": true, - "preferred_variant_name": "Standard 0.6", - "preferred_material": "emotiontech_pla", - "preferred_quality_type": "c", - "variants_name": "Print Head", - "machine_extruder_trains": - { - "0": "strateo3d_right_extruder", - "1": "strateo3d_left_extruder" - } + "0": "strateo3d_right_extruder", + "1": "strateo3d_left_extruder" }, - + "preferred_material": "emotiontech_pla", + "preferred_quality_type": "c", + "preferred_variant_name": "Standard 0.6", + "variants_name": "Print Head" + }, "overrides": + { + "acceleration_enabled": { "value": false }, + "acceleration_infill": { "maximum_value_warning": "1500" }, + "acceleration_layer_0": { - "machine_name": { "default_value": "Strateo3D" }, - "machine_width": { "default_value": 600 }, - "machine_depth": { "default_value": 420 }, - "machine_height": { "default_value": 495 }, - "machine_heated_bed": { "default_value": true }, - "machine_heated_build_volume": { "default_value": true }, - "machine_center_is_zero": { "default_value": false }, - "machine_head_with_fans_polygon": { "default_value": [ [ -76, -51.8 ] , [ 25, -51.8 ] , [ 25, 38.2 ] , [ -76, 38.2 ] ] }, - "gantry_height": { "value": "40" }, - "machine_extruder_count": { "default_value": 2 }, - "machine_gcode_flavor": { "default_value": "Marlin" }, - "machine_start_gcode": { "default_value": ";M104 T0 S{material_standby_temperature, 0} \n;M104 T1 S{material_standby_temperature, 1} \n;M140 S{material_bed_temperature_layer_0} \n;M141 S{build_volume_temperature} \nG28 \nG90 \nT{initial_extruder_nr} \nG1 X0 Y0 Z15 F6000 \n;M190 S{material_bed_temperature_layer_0} \n;M109 S{material_print_temperature_layer_0, initial_extruder_nr} \nG1 Z0.3 \nG92 E0 \nG1 F300 X45 E18 \n;G1 F1500 E17 \nG1 F600 X25 \nG1 F600 Z3" }, - "machine_end_gcode": { "default_value": "T1 \nM104 S0 \nT0 \nM104 S0 \nM140 S0 \nM141 S0 \nG91 \nG0 z1 \nG90 \nG28 \nM801.0 \nM84 \nM192" }, - "extruder_prime_pos_y": {"minimum_value": "0", "maximum_value": "machine_depth"}, - "extruder_prime_pos_x": {"minimum_value": "0", "maximum_value": "machine_width"}, - "machine_heat_zone_length": { "default_value": 7 }, - "default_material_print_temperature": { "maximum_value_warning": "400", "maximum_value": "415" }, - "material_print_temperature": { "maximum_value_warning": "400", "maximum_value": "415" }, - "material_print_temperature_layer_0": { "maximum_value_warning": "400", "maximum_value": "415" }, - "material_initial_print_temperature": { "maximum_value_warning": "400", "maximum_value": "415" }, - "material_final_print_temperature": { "maximum_value_warning": "400", "maximum_value": "415" }, - "material_standby_temperature": { "maximum_value_warning": "material_print_temperature - 40", "maximum_value": "material_print_temperature" }, - "material_bed_temperature": { "maximum_value_warning": "140", "maximum_value": "140" }, - "material_bed_temperature_layer_0": { "maximum_value_warning": "140", "maximum_value": "140" }, - "extruder_prime_pos_abs": { "default_value": true }, - "machine_acceleration": { "default_value": 1500 }, - "machine_max_jerk_xy": { "default_value": 0.01 }, - "machine_max_jerk_z": { "default_value": 0}, - - "acceleration_enabled": { "value": false }, - "acceleration_print": { "value": "machine_acceleration", "maximum_value_warning": "1500" }, - "acceleration_infill": { "maximum_value_warning": "1500" }, - "acceleration_wall": { "value": "math.ceil(acceleration_print * 1250 / acceleration_print)", "maximum_value_warning": "1500" }, - "acceleration_wall_0": { "value": "math.ceil(acceleration_print * 1000 / acceleration_print)", "maximum_value_warning": "1500" }, - "acceleration_wall_x": { "maximum_value_warning": "1500" }, - "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 1250 / acceleration_print)", "maximum_value_warning": "1500" }, - "acceleration_support": { "value": "acceleration_print", "maximum_value_warning": "1500" }, - "acceleration_support_infill": { "maximum_value_warning": "1500" }, - "acceleration_support_interface": { "value": "acceleration_topbottom", "maximum_value_warning": "1500" }, - "acceleration_support_roof": { "maximum_value_warning": "1500" }, - "acceleration_support_bottom": { "maximum_value_warning": "1500" }, - "acceleration_prime_tower": { "maximum_value_warning": "1500" }, - "acceleration_travel": { "value": "acceleration_print", "maximum_value_warning": "1500" }, - "acceleration_layer_0": { "value": "acceleration_topbottom", "maximum_value_warning": "1500" }, - "acceleration_print_layer_0": { "maximum_value_warning": "1500" }, - "acceleration_travel_layer_0": { "maximum_value_warning": "1500" }, - "acceleration_skirt_brim": { "maximum_value_warning": "1500" }, - - "adaptive_layer_height_variation": { "default_value": 0.1 }, - "adaptive_layer_height_variation_step": { "default_value": 0.05 }, - "adhesion_type": { "default_value": "skirt" }, - "expand_skins_expand_distance": { "value": "wall_line_width_0 + wall_line_count * wall_line_width_x" }, - "gradual_infill_step_height": { "value": "layer_height*10" }, - "gradual_support_infill_step_height": { "value": "layer_height*7" }, - "infill_before_walls": { "default_value": false }, - "infill_overlap": { "value": "0" }, - "infill_wipe_dist": { "value": "0" }, - - "jerk_enabled": { "value": "False", "maximum_value_warning": "0.01" }, - "jerk_print": { "value": "0.01", "maximum_value_warning": "0.01" }, - "jerk_infill": { "value": "0.01", "maximum_value_warning": "0.01" }, - "jerk_layer_0": { "value": "jerk_topbottom", "maximum_value_warning": "0.01" }, - "jerk_print_layer_0": { "maximum_value_warning": "0.01" }, - "jerk_travel_layer_0": { "maximum_value_warning": "0.01" }, - "jerk_skirt_brim": { "maximum_value_warning": "0.01" }, - "jerk_prime_tower": { "value": "jerk_print * 15 / 25", "maximum_value_warning": "0.01" }, - "jerk_support": { "value": "jerk_print * 15 / 25", "maximum_value_warning": "0.01" }, - "jerk_support_infill": { "maximum_value_warning": "0.01" }, - "jerk_support_interface": { "value": "jerk_topbottom", "maximum_value_warning": "0.01" }, - "jerk_support_roof": { "maximum_value_warning": "0.01" }, - "jerk_support_bottom": { "maximum_value_warning": "0.01" }, - "jerk_topbottom": { "value": "jerk_print * 5 / 25", "maximum_value_warning": "0.01" }, - "jerk_wall": { "value": "jerk_print * 5 / 25", "maximum_value_warning": "0.01" }, - "jerk_wall_0": { "value": "jerk_wall * 5 / 10", "maximum_value_warning": "0.01" }, - "jerk_wall_x": { "maximum_value_warning": "0.01" }, - "jerk_travel": { "value": "machine_max_jerk_xy", "maximum_value_warning": "0.01" }, - - "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_min_cool_heat_time_window": { "value": "15" }, - "machine_nozzle_cool_down_speed": { "default_value": 0.50 }, - "machine_nozzle_heat_up_speed": { "default_value": 2.25 }, - "material_flow": { "default_value": 93 }, - "material_flow_layer_0": { "value": "math.ceil(material_flow*1)" }, - "meshfix_maximum_resolution": { "value": "0.5" }, - "meshfix_maximum_deviation": { "default_value": 0.04 }, - "optimize_wall_printing_order": { "value": "True" }, - "prime_blob_enable": { "enabled": false, "default_value": false }, - "prime_tower_min_volume": { "default_value": 35 }, - "prime_tower_position_x": { "value": "machine_width/2 + prime_tower_size/2" }, - "prime_tower_position_y": { "value": "machine_depth - prime_tower_size - max(extruderValue(adhesion_extruder_nr, 'brim_width') * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(adhesion_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - 1" }, - "retraction_amount": { "default_value": 1.5 }, - "retraction_combing": { "value": "'all'" }, - "retraction_combing_max_distance": { "default_value": 5 }, - "retraction_count_max": { "default_value": 15 }, - "retraction_hop": { "value": "2" }, - "retraction_hop_enabled": { "value": "extruders_enabled_count > 1" }, - "retraction_hop_only_when_collides": { "value": "True" }, - "retraction_min_travel": { "value": "3*line_width" }, - "retraction_prime_speed": { "value": "retraction_speed-10" }, - "retraction_speed": { "default_value": 25 }, - "skin_overlap": { "value": "10" }, - "skirt_brim_minimal_length": { "default_value": 333 }, - "speed_layer_0": { "value": "20" }, - "speed_travel_layer_0": { "value": "100" }, - "speed_prime_tower": { "value": "speed_topbottom" }, - "speed_print": { "value": "50" }, - "speed_support": { "value": "speed_wall" }, - "speed_support_interface": { "value": "speed_topbottom" }, - "speed_topbottom": { "value": "math.ceil(speed_print * 20/35)" }, - "speed_travel": { "value": "150" }, - "speed_wall": { "value": "math.ceil(speed_print * 3/4)" }, - "speed_wall_0": { "value": "math.ceil(speed_wall * 2/3)" }, - "speed_wall_x": { "value": "speed_wall" }, - "support_angle": { "value": "50" }, - "support_bottom_distance": {"value": "extruderValue(support_bottom_extruder_nr if support_bottom_enable else support_infill_extruder_nr, 'support_z_distance/2') if support_type == 'everywhere' else 0", "maximum_value_warning": "machine_nozzle_size*1.5" }, - "support_interface_enable": { "default_value": true }, - "support_interface_height": { "value": "layer_height*3" }, - "support_interface_offset": { "value": "support_offset" }, - "support_top_distance": {"value": "extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance')", "maximum_value_warning": "machine_nozzle_size*1.5" }, - "support_use_towers": { "default_value": true }, - "support_xy_distance": { "value": "line_width * 1.7" }, - "support_xy_distance_overhang": { "value": "wall_line_width_0" }, - "support_z_distance": { "value": "layer_height*2", "maximum_value_warning": "machine_nozzle_size*1.5" }, - "switch_extruder_prime_speed": { "value": "retraction_prime_speed" }, - "switch_extruder_retraction_amount": { "value": "7" }, - "switch_extruder_retraction_speeds": {"value": "retraction_retract_speed"}, - "top_bottom_thickness": { "value": "3*layer_height", "minimum_value_warning": "layer_height*2" }, - "top_thickness": { "value": "top_bottom_thickness" }, - "top_layers": { "value": "0 if infill_sparse_density == 100 else math.ceil(round(top_thickness / resolveOrValue('layer_height'), 4))"}, - "bottom_thickness": { "value": "top_bottom_thickness-2*layer_height+layer_height_0" }, - "bottom_layers": { "value": "999999 if infill_sparse_density == 100 else math.ceil(round(((bottom_thickness-resolveOrValue('layer_height_0')) / resolveOrValue('layer_height'))+1, 4))"}, - "travel_avoid_distance": { "value": "3 if extruders_enabled_count > 1 else machine_nozzle_tip_outer_diameter / 2 * 1.5" }, - "wall_thickness": { "value": "wall_line_width_0 + wall_line_width_x" } - } -} + "maximum_value_warning": "1500", + "value": "acceleration_topbottom" + }, + "acceleration_prime_tower": { "maximum_value_warning": "1500" }, + "acceleration_print": + { + "maximum_value_warning": "1500", + "value": "machine_acceleration" + }, + "acceleration_print_layer_0": { "maximum_value_warning": "1500" }, + "acceleration_skirt_brim": { "maximum_value_warning": "1500" }, + "acceleration_support": + { + "maximum_value_warning": "1500", + "value": "acceleration_print" + }, + "acceleration_support_bottom": { "maximum_value_warning": "1500" }, + "acceleration_support_infill": { "maximum_value_warning": "1500" }, + "acceleration_support_interface": + { + "maximum_value_warning": "1500", + "value": "acceleration_topbottom" + }, + "acceleration_support_roof": { "maximum_value_warning": "1500" }, + "acceleration_topbottom": + { + "maximum_value_warning": "1500", + "value": "math.ceil(acceleration_print * 1250 / acceleration_print)" + }, + "acceleration_travel": + { + "maximum_value_warning": "1500", + "value": "acceleration_print" + }, + "acceleration_travel_layer_0": { "maximum_value_warning": "1500" }, + "acceleration_wall": + { + "maximum_value_warning": "1500", + "value": "math.ceil(acceleration_print * 1250 / acceleration_print)" + }, + "acceleration_wall_0": + { + "maximum_value_warning": "1500", + "value": "math.ceil(acceleration_print * 1000 / acceleration_print)" + }, + "acceleration_wall_x": { "maximum_value_warning": "1500" }, + "adaptive_layer_height_variation": { "default_value": 0.1 }, + "adaptive_layer_height_variation_step": { "default_value": 0.05 }, + "adhesion_type": { "default_value": "skirt" }, + "bottom_layers": { "value": "999999 if infill_sparse_density == 100 else math.ceil(round(((bottom_thickness-resolveOrValue('layer_height_0')) / resolveOrValue('layer_height'))+1, 4))" }, + "bottom_thickness": { "value": "top_bottom_thickness-2*layer_height+layer_height_0" }, + "default_material_print_temperature": + { + "maximum_value": "415", + "maximum_value_warning": "400" + }, + "expand_skins_expand_distance": { "value": "wall_line_width_0 + wall_line_count * wall_line_width_x" }, + "extruder_prime_pos_abs": { "default_value": true }, + "extruder_prime_pos_x": + { + "maximum_value": "machine_width", + "minimum_value": "0" + }, + "extruder_prime_pos_y": + { + "maximum_value": "machine_depth", + "minimum_value": "0" + }, + "gantry_height": { "value": "40" }, + "gradual_infill_step_height": { "value": "layer_height*10" }, + "gradual_support_infill_step_height": { "value": "layer_height*7" }, + "infill_before_walls": { "default_value": false }, + "infill_overlap": { "value": "0" }, + "infill_wipe_dist": { "value": "0" }, + "jerk_enabled": + { + "maximum_value_warning": "0.01", + "value": "False" + }, + "jerk_infill": + { + "maximum_value_warning": "0.01", + "value": "0.01" + }, + "jerk_layer_0": + { + "maximum_value_warning": "0.01", + "value": "jerk_topbottom" + }, + "jerk_prime_tower": + { + "maximum_value_warning": "0.01", + "value": "jerk_print * 15 / 25" + }, + "jerk_print": + { + "maximum_value_warning": "0.01", + "value": "0.01" + }, + "jerk_print_layer_0": { "maximum_value_warning": "0.01" }, + "jerk_skirt_brim": { "maximum_value_warning": "0.01" }, + "jerk_support": + { + "maximum_value_warning": "0.01", + "value": "jerk_print * 15 / 25" + }, + "jerk_support_bottom": { "maximum_value_warning": "0.01" }, + "jerk_support_infill": { "maximum_value_warning": "0.01" }, + "jerk_support_interface": + { + "maximum_value_warning": "0.01", + "value": "jerk_topbottom" + }, + "jerk_support_roof": { "maximum_value_warning": "0.01" }, + "jerk_topbottom": + { + "maximum_value_warning": "0.01", + "value": "jerk_print * 5 / 25" + }, + "jerk_travel": + { + "maximum_value_warning": "0.01", + "value": "machine_max_jerk_xy" + }, + "jerk_travel_layer_0": { "maximum_value_warning": "0.01" }, + "jerk_wall": + { + "maximum_value_warning": "0.01", + "value": "jerk_print * 5 / 25" + }, + "jerk_wall_0": + { + "maximum_value_warning": "0.01", + "value": "jerk_wall * 5 / 10" + }, + "jerk_wall_x": { "maximum_value_warning": "0.01" }, + "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_acceleration": { "default_value": 1500 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 420 }, + "machine_end_gcode": { "default_value": "T1 \nM104 S0 \nT0 \nM104 S0 \nM140 S0 \nM141 S0 \nG91 \nG0 z1 \nG90 \nG28 \nM801.0 \nM84 \nM192" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-76, -51.8], + [25, -51.8], + [25, 38.2], + [-76, 38.2] + ] + }, + "machine_heat_zone_length": { "default_value": 7 }, + "machine_heated_bed": { "default_value": true }, + "machine_heated_build_volume": { "default_value": true }, + "machine_height": { "default_value": 495 }, + "machine_max_jerk_xy": { "default_value": 0.01 }, + "machine_max_jerk_z": { "default_value": 0 }, + "machine_min_cool_heat_time_window": { "value": "15" }, + "machine_name": { "default_value": "Strateo3D" }, + "machine_nozzle_cool_down_speed": { "default_value": 0.5 }, + "machine_nozzle_heat_up_speed": { "default_value": 2.25 }, + "machine_start_gcode": { "default_value": ";M104 T0 S{material_standby_temperature, 0} \n;M104 T1 S{material_standby_temperature, 1} \n;M140 S{material_bed_temperature_layer_0} \n;M141 S{build_volume_temperature} \nG28 \nG90 \nT{initial_extruder_nr} \nG1 X0 Y0 Z15 F6000 \n;M190 S{material_bed_temperature_layer_0} \n;M109 S{material_print_temperature_layer_0, initial_extruder_nr} \nG1 Z0.3 \nG92 E0 \nG1 F300 X45 E18 \n;G1 F1500 E17 \nG1 F600 X25 \nG1 F600 Z3" }, + "machine_width": { "default_value": 600 }, + "material_bed_temperature": + { + "maximum_value": "140", + "maximum_value_warning": "140" + }, + "material_bed_temperature_layer_0": + { + "maximum_value": "140", + "maximum_value_warning": "140" + }, + "material_final_print_temperature": + { + "maximum_value": "415", + "maximum_value_warning": "400" + }, + "material_flow": { "default_value": 93 }, + "material_flow_layer_0": { "value": "math.ceil(material_flow*1)" }, + "material_initial_print_temperature": + { + "maximum_value": "415", + "maximum_value_warning": "400" + }, + "material_print_temperature": + { + "maximum_value": "415", + "maximum_value_warning": "400" + }, + "material_print_temperature_layer_0": + { + "maximum_value": "415", + "maximum_value_warning": "400" + }, + "material_standby_temperature": + { + "maximum_value": "material_print_temperature", + "maximum_value_warning": "material_print_temperature - 40" + }, + "meshfix_maximum_deviation": { "default_value": 0.04 }, + "meshfix_maximum_resolution": { "value": "0.5" }, + "optimize_wall_printing_order": { "value": "True" }, + "prime_blob_enable": + { + "default_value": false, + "enabled": false + }, + "prime_tower_min_volume": { "default_value": 35 }, + "prime_tower_position_x": { "value": "machine_width/2 + prime_tower_size/2" }, + "prime_tower_position_y": { "value": "machine_depth - prime_tower_size - max(extruderValue(adhesion_extruder_nr, 'brim_width') * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(adhesion_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - 1" }, + "retraction_amount": { "default_value": 1.5 }, + "retraction_combing": { "value": "'all'" }, + "retraction_combing_max_distance": { "default_value": 5 }, + "retraction_count_max": { "default_value": 15 }, + "retraction_hop": { "value": "2" }, + "retraction_hop_enabled": { "value": "extruders_enabled_count > 1" }, + "retraction_hop_only_when_collides": { "value": "True" }, + "retraction_min_travel": { "value": "3*line_width" }, + "retraction_prime_speed": { "value": "retraction_speed-10" }, + "retraction_speed": { "default_value": 25 }, + "skin_overlap": { "value": "10" }, + "skirt_brim_minimal_length": { "default_value": 333 }, + "speed_layer_0": { "value": "20" }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": "50" }, + "speed_support": { "value": "speed_wall" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_topbottom": { "value": "math.ceil(speed_print * 20/35)" }, + "speed_travel": { "value": "150" }, + "speed_travel_layer_0": { "value": "100" }, + "speed_wall": { "value": "math.ceil(speed_print * 3/4)" }, + "speed_wall_0": { "value": "math.ceil(speed_wall * 2/3)" }, + "speed_wall_x": { "value": "speed_wall" }, + "support_angle": { "value": "50" }, + "support_bottom_distance": + { + "maximum_value_warning": "machine_nozzle_size*1.5", + "value": "extruderValue(support_bottom_extruder_nr if support_bottom_enable else support_infill_extruder_nr, 'support_z_distance/2') if support_type == 'everywhere' else 0" + }, + "support_interface_enable": { "default_value": true }, + "support_interface_height": { "value": "layer_height*3" }, + "support_interface_offset": { "value": "support_offset" }, + "support_top_distance": + { + "maximum_value_warning": "machine_nozzle_size*1.5", + "value": "extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance')" + }, + "support_xy_distance": { "value": "line_width * 1.7" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_z_distance": + { + "maximum_value_warning": "machine_nozzle_size*1.5", + "value": "layer_height*2" + }, + "switch_extruder_prime_speed": { "value": "retraction_prime_speed" }, + "switch_extruder_retraction_amount": { "value": "7" }, + "switch_extruder_retraction_speeds": { "value": "retraction_retract_speed" }, + "top_bottom_thickness": + { + "minimum_value_warning": "layer_height*2", + "value": "3*layer_height" + }, + "top_layers": { "value": "0 if infill_sparse_density == 100 else math.ceil(round(top_thickness / resolveOrValue('layer_height'), 4))" }, + "top_thickness": { "value": "top_bottom_thickness" }, + "travel_avoid_distance": { "value": "3 if extruders_enabled_count > 1 else machine_nozzle_tip_outer_diameter / 2 * 1.5" }, + "wall_thickness": { "value": "wall_line_width_0 + wall_line_width_x" } + } +} \ No newline at end of file diff --git a/resources/definitions/stream20dual_mk2.def.json b/resources/definitions/stream20dual_mk2.def.json index 2bb491a906..c41303934d 100644 --- a/resources/definitions/stream20dual_mk2.def.json +++ b/resources/definitions/stream20dual_mk2.def.json @@ -2,51 +2,60 @@ "version": 2, "name": "Volumic Stream20Dual MK2", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Volumic", "manufacturer": "Volumic", "file_formats": "text/x-gcode", - "icon": "volumic-icon", "platform": "STREAM20PRO_platform.STL", - "machine_extruder_trains":{"0": "stream20dual_0","1": "stream20dual_1"}, "has_machine_quality": true, - "has_materials": true + "has_materials": true, + "icon": "volumic-icon", + "machine_extruder_trains": + { + "0": "stream20dual_0", + "1": "stream20dual_1" + } }, - - "overrides": { - "machine_name": { "default_value": "VOLUMIC STREAM20DUAL MK2" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 165 }, - "machine_height": { "default_value": 240 }, - "machine_depth": { "default_value": 200 }, - "machine_center_is_zero": { "default_value": false }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_size": { "default_value": 0.4 }, + "overrides": + { + "adhesion_type": { "default_value": "none" }, + "fill_outline_gaps": { "default_value": true }, + "infill_sparse_density": { "default_value": 25 }, "layer_height": { "default_value": 0.1 }, "layer_height_0": { "default_value": 0.1 }, - "retraction_amount": { "default_value": 2 }, - "retraction_speed": { "default_value": 25 }, - "adhesion_type": { "default_value": "none" }, - "infill_sparse_density": { "default_value": 25 }, - "fill_outline_gaps": { "default_value": true }, - "retract_at_layer_change": { "default_value": true }, - "retraction_combing_max_distance": { "default_value": 200 }, - "machine_head_with_fans_polygon": { "default_value": [[-38,30],[38,30],[38,-40],[-38,-40]] }, - "machine_max_feedrate_z": { "default_value": 20 }, - "machine_max_feedrate_e": { "default_value": 60 }, - "machine_max_acceleration_z": { "default_value": 500 }, "machine_acceleration": { "default_value": 2000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-38, 30], + [38, 30], + [38, -40], + [-38, -40] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 240 }, + "machine_max_acceleration_z": { "default_value": 500 }, + "machine_max_feedrate_e": { "default_value": 60 }, + "machine_max_feedrate_z": { "default_value": 20 }, + "machine_max_jerk_e": { "default_value": 5 }, "machine_max_jerk_xy": { "default_value": 10 }, "machine_max_jerk_z": { "default_value": 0.4 }, - "machine_max_jerk_e": { "default_value": 5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_extruder_count": {"default_value": 2}, - "machine_start_gcode": { - "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression" - }, - "machine_end_gcode": { - "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300" - } + "machine_name": { "default_value": "VOLUMIC STREAM20DUAL MK2" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_start_gcode": { "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression" }, + "machine_width": { "default_value": 165 }, + "material_diameter": { "default_value": 1.75 }, + "retract_at_layer_change": { "default_value": true }, + "retraction_amount": { "default_value": 2 }, + "retraction_combing_max_distance": { "default_value": 200 }, + "retraction_speed": { "default_value": 25 } } -} +} \ No newline at end of file diff --git a/resources/definitions/stream20pro_mk2.def.json b/resources/definitions/stream20pro_mk2.def.json index 1da3c01d1f..a7c9141b8c 100644 --- a/resources/definitions/stream20pro_mk2.def.json +++ b/resources/definitions/stream20pro_mk2.def.json @@ -2,50 +2,55 @@ "version": 2, "name": "Volumic Stream20Pro MK2", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Volumic", "manufacturer": "Volumic", "file_formats": "text/x-gcode", - "icon": "volumic-icon", "platform": "STREAM20PRO_platform.STL", - "has_materials": true, "has_machine_quality": true, - "machine_extruder_trains":{"0": "stream20_extruder"} + "has_materials": true, + "icon": "volumic-icon", + "machine_extruder_trains": { "0": "stream20_extruder" } }, - - "overrides": { - "machine_name": { "default_value": "VOLUMIC STREAM20PRO MK2" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 200 }, - "machine_height": { "default_value": 240 }, - "machine_depth": { "default_value": 200 }, - "machine_center_is_zero": { "default_value": false }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_size": { "default_value": 0.4 }, + "overrides": + { + "adhesion_type": { "default_value": "none" }, + "fill_outline_gaps": { "default_value": true }, + "infill_sparse_density": { "default_value": 25 }, "layer_height": { "default_value": 0.1 }, "layer_height_0": { "default_value": 0.1 }, - "retraction_amount": { "default_value": 2 }, - "retraction_speed": { "default_value": 25 }, - "adhesion_type": { "default_value": "none" }, - "infill_sparse_density": { "default_value": 25 }, - "fill_outline_gaps": { "default_value": true }, - "retract_at_layer_change": { "default_value": true }, - "retraction_combing_max_distance": { "default_value": 200 }, - "machine_head_with_fans_polygon": { "default_value": [[-38,30],[38,30],[38,-40],[-38,-40]] }, - "machine_max_feedrate_z": { "default_value": 50 }, - "machine_max_feedrate_e": { "default_value": 60 }, - "machine_max_acceleration_z": { "default_value": 500 }, "machine_acceleration": { "default_value": 2000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-38, 30], + [38, 30], + [38, -40], + [-38, -40] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 240 }, + "machine_max_acceleration_z": { "default_value": 500 }, + "machine_max_feedrate_e": { "default_value": 60 }, + "machine_max_feedrate_z": { "default_value": 50 }, + "machine_max_jerk_e": { "default_value": 5 }, "machine_max_jerk_xy": { "default_value": 10 }, "machine_max_jerk_z": { "default_value": 0.4 }, - "machine_max_jerk_e": { "default_value": 5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression" - }, - "machine_end_gcode": { - "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300" - } + "machine_name": { "default_value": "VOLUMIC STREAM20PRO MK2" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_start_gcode": { "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression" }, + "machine_width": { "default_value": 200 }, + "material_diameter": { "default_value": 1.75 }, + "retract_at_layer_change": { "default_value": true }, + "retraction_amount": { "default_value": 2 }, + "retraction_combing_max_distance": { "default_value": 200 }, + "retraction_speed": { "default_value": 25 } } -} +} \ No newline at end of file diff --git a/resources/definitions/stream30dual_mk2.def.json b/resources/definitions/stream30dual_mk2.def.json index 4d16c978a9..b2688aedcb 100644 --- a/resources/definitions/stream30dual_mk2.def.json +++ b/resources/definitions/stream30dual_mk2.def.json @@ -2,51 +2,60 @@ "version": 2, "name": "Volumic Stream30Dual MK2", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Volumic", "manufacturer": "Volumic", "file_formats": "text/x-gcode", - "icon": "volumic-icon", "platform": "STREAM30PRO_platform.STL", - "machine_extruder_trains":{"0": "stream30dual_0","1": "stream30dual_1"}, "has_machine_quality": true, - "has_materials": true + "has_materials": true, + "icon": "volumic-icon", + "machine_extruder_trains": + { + "0": "stream30dual_0", + "1": "stream30dual_1" + } }, - - "overrides": { - "machine_name": { "default_value": "VOLUMIC STREAM30DUAL MK2" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 265 }, - "machine_height": { "default_value": 300 }, - "machine_depth": { "default_value": 200 }, - "machine_center_is_zero": { "default_value": false }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_size": { "default_value": 0.4 }, + "overrides": + { + "adhesion_type": { "default_value": "none" }, + "fill_outline_gaps": { "default_value": true }, + "infill_sparse_density": { "default_value": 25 }, "layer_height": { "default_value": 0.1 }, "layer_height_0": { "default_value": 0.1 }, - "retraction_amount": { "default_value": 2 }, - "retraction_speed": { "default_value": 25 }, - "adhesion_type": { "default_value": "none" }, - "infill_sparse_density": { "default_value": 25 }, - "fill_outline_gaps": { "default_value": true }, - "retract_at_layer_change": { "default_value": true }, - "retraction_combing_max_distance": { "default_value": 200 }, - "machine_head_with_fans_polygon": { "default_value": [[0,0],[0,0],[0,0],[0,0]] }, - "machine_max_feedrate_z": { "default_value": 50 }, - "machine_max_feedrate_e": { "default_value": 60 }, - "machine_max_acceleration_z": { "default_value": 500 }, "machine_acceleration": { "default_value": 2000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 300 }, + "machine_max_acceleration_z": { "default_value": 500 }, + "machine_max_feedrate_e": { "default_value": 60 }, + "machine_max_feedrate_z": { "default_value": 50 }, + "machine_max_jerk_e": { "default_value": 5 }, "machine_max_jerk_xy": { "default_value": 10 }, "machine_max_jerk_z": { "default_value": 0.4 }, - "machine_max_jerk_e": { "default_value": 5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_extruder_count": {"default_value": 2}, - "machine_start_gcode": { - "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression" - }, - "machine_end_gcode": { - "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300" - } + "machine_name": { "default_value": "VOLUMIC STREAM30DUAL MK2" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_start_gcode": { "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression" }, + "machine_width": { "default_value": 265 }, + "material_diameter": { "default_value": 1.75 }, + "retract_at_layer_change": { "default_value": true }, + "retraction_amount": { "default_value": 2 }, + "retraction_combing_max_distance": { "default_value": 200 }, + "retraction_speed": { "default_value": 25 } } -} +} \ No newline at end of file diff --git a/resources/definitions/stream30mk3.def.json b/resources/definitions/stream30mk3.def.json index 13a2571f02..c59c32362c 100644 --- a/resources/definitions/stream30mk3.def.json +++ b/resources/definitions/stream30mk3.def.json @@ -1,51 +1,56 @@ -{ - "version": 2, - "name": "Volumic Stream30Pro MK3", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Volumic", - "manufacturer": "Volumic", - "file_formats": "text/x-gcode", - "icon": "volumic-icon", - "platform": "STREAM30ULTRA_platform.STL", - "has_materials": true, - "has_machine_quality": true, - "machine_extruder_trains":{"0": "stream30mk3_extruder"} - }, - - "overrides": { - "machine_name": { "default_value": "VOLUMIC STREAM30PRO MK3" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 300 }, - "machine_height": { "default_value": 310 }, - "machine_depth": { "default_value": 200 }, - "machine_center_is_zero": { "default_value": false }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "layer_height": { "default_value": 0.1 }, - "layer_height_0": { "default_value": 0.1 }, - "retraction_amount": { "default_value": 2.40 }, - "retraction_speed": { "default_value": 30 }, - "adhesion_type": { "default_value": "none" }, - "infill_sparse_density": { "default_value": 25 }, - "fill_outline_gaps": { "default_value": true }, - "retract_at_layer_change": { "default_value": true }, - "retraction_combing_max_distance": { "default_value": 200 }, - "machine_head_with_fans_polygon": { "default_value": [[-38,30],[38,30],[38,-40],[-38,-40]] }, - "machine_max_feedrate_z": { "default_value": 30 }, - "machine_max_feedrate_e": { "default_value": 60 }, - "machine_max_acceleration_z": { "default_value": 500 }, - "machine_acceleration": { "default_value": 2000 }, - "machine_max_jerk_xy": { "default_value": 10 }, - "machine_max_jerk_z": { "default_value": 0.4 }, - "machine_max_jerk_e": { "default_value": 5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression" - }, - "machine_end_gcode": { - "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300" - } - } -} +{ + "version": 2, + "name": "Volumic Stream30Pro MK3", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Volumic", + "manufacturer": "Volumic", + "file_formats": "text/x-gcode", + "platform": "STREAM30ULTRA_platform.STL", + "has_machine_quality": true, + "has_materials": true, + "icon": "volumic-icon", + "machine_extruder_trains": { "0": "stream30mk3_extruder" } + }, + "overrides": + { + "adhesion_type": { "default_value": "none" }, + "fill_outline_gaps": { "default_value": true }, + "infill_sparse_density": { "default_value": 25 }, + "layer_height": { "default_value": 0.1 }, + "layer_height_0": { "default_value": 0.1 }, + "machine_acceleration": { "default_value": 2000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-38, 30], + [38, 30], + [38, -40], + [-38, -40] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 310 }, + "machine_max_acceleration_z": { "default_value": 500 }, + "machine_max_feedrate_e": { "default_value": 60 }, + "machine_max_feedrate_z": { "default_value": 30 }, + "machine_max_jerk_e": { "default_value": 5 }, + "machine_max_jerk_xy": { "default_value": 10 }, + "machine_max_jerk_z": { "default_value": 0.4 }, + "machine_name": { "default_value": "VOLUMIC STREAM30PRO MK3" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_start_gcode": { "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression" }, + "machine_width": { "default_value": 300 }, + "material_diameter": { "default_value": 1.75 }, + "retract_at_layer_change": { "default_value": true }, + "retraction_amount": { "default_value": 2.4 }, + "retraction_combing_max_distance": { "default_value": 200 }, + "retraction_speed": { "default_value": 30 } + } +} \ No newline at end of file diff --git a/resources/definitions/stream30pro_mk2.def.json b/resources/definitions/stream30pro_mk2.def.json index b313704dac..c6a523b2bc 100644 --- a/resources/definitions/stream30pro_mk2.def.json +++ b/resources/definitions/stream30pro_mk2.def.json @@ -2,50 +2,55 @@ "version": 2, "name": "Volumic Stream30Pro MK2", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Volumic", "manufacturer": "Volumic", "file_formats": "text/x-gcode", - "icon": "volumic-icon", "platform": "STREAM30PRO_platform.STL", - "has_materials": true, "has_machine_quality": true, - "machine_extruder_trains":{"0": "stream30_extruder"} + "has_materials": true, + "icon": "volumic-icon", + "machine_extruder_trains": { "0": "stream30_extruder" } }, - - "overrides": { - "machine_name": { "default_value": "VOLUMIC STREAM30PRO MK2" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 300 }, - "machine_height": { "default_value": 300 }, - "machine_depth": { "default_value": 200 }, - "machine_center_is_zero": { "default_value": false }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_size": { "default_value": 0.4 }, + "overrides": + { + "adhesion_type": { "default_value": "none" }, + "fill_outline_gaps": { "default_value": true }, + "infill_sparse_density": { "default_value": 25 }, "layer_height": { "default_value": 0.1 }, "layer_height_0": { "default_value": 0.1 }, - "retraction_amount": { "default_value": 2 }, - "retraction_speed": { "default_value": 25 }, - "adhesion_type": { "default_value": "none" }, - "infill_sparse_density": { "default_value": 25 }, - "fill_outline_gaps": { "default_value": true }, - "retract_at_layer_change": { "default_value": true }, - "retraction_combing_max_distance": { "default_value": 200 }, - "machine_head_with_fans_polygon": { "default_value": [[-38,30],[38,30],[38,-40],[-38,-40]] }, - "machine_max_feedrate_z": { "default_value": 50 }, - "machine_max_feedrate_e": { "default_value": 60 }, - "machine_max_acceleration_z": { "default_value": 500 }, "machine_acceleration": { "default_value": 2000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-38, 30], + [38, 30], + [38, -40], + [-38, -40] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 300 }, + "machine_max_acceleration_z": { "default_value": 500 }, + "machine_max_feedrate_e": { "default_value": 60 }, + "machine_max_feedrate_z": { "default_value": 50 }, + "machine_max_jerk_e": { "default_value": 5 }, "machine_max_jerk_xy": { "default_value": 10 }, "machine_max_jerk_z": { "default_value": 0.4 }, - "machine_max_jerk_e": { "default_value": 5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression" - }, - "machine_end_gcode": { - "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300" - } + "machine_name": { "default_value": "VOLUMIC STREAM30PRO MK2" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_start_gcode": { "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression" }, + "machine_width": { "default_value": 300 }, + "material_diameter": { "default_value": 1.75 }, + "retract_at_layer_change": { "default_value": true }, + "retraction_amount": { "default_value": 2 }, + "retraction_combing_max_distance": { "default_value": 200 }, + "retraction_speed": { "default_value": 25 } } -} +} \ No newline at end of file diff --git a/resources/definitions/stream30ultra.def.json b/resources/definitions/stream30ultra.def.json index 731e213447..670948f3b6 100644 --- a/resources/definitions/stream30ultra.def.json +++ b/resources/definitions/stream30ultra.def.json @@ -2,50 +2,55 @@ "version": 2, "name": "Volumic Stream30Ultra", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Volumic", "manufacturer": "Volumic", "file_formats": "text/x-gcode", - "icon": "volumic-icon", "platform": "STREAM30ULTRA_platform.STL", - "has_materials": true, "has_machine_quality": true, - "machine_extruder_trains":{"0": "stream30ultra_extruder"} + "has_materials": true, + "icon": "volumic-icon", + "machine_extruder_trains": { "0": "stream30ultra_extruder" } }, - - "overrides": { - "machine_name": { "default_value": "VOLUMIC STREAM30ULTRA" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 290 }, - "machine_height": { "default_value": 300 }, - "machine_depth": { "default_value": 200 }, - "machine_center_is_zero": { "default_value": false }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_size": { "default_value": 0.4 }, + "overrides": + { + "adhesion_type": { "default_value": "none" }, + "fill_outline_gaps": { "default_value": true }, + "infill_sparse_density": { "default_value": 25 }, "layer_height": { "default_value": 0.1 }, "layer_height_0": { "default_value": 0.1 }, - "retraction_amount": { "default_value": 2 }, - "retraction_speed": { "default_value": 25 }, - "adhesion_type": { "default_value": "none" }, - "infill_sparse_density": { "default_value": 25 }, - "fill_outline_gaps": { "default_value": true }, - "retract_at_layer_change": { "default_value": true }, - "retraction_combing_max_distance": { "default_value": 200 }, - "machine_head_with_fans_polygon": { "default_value": [[-38,30],[38,30],[38,-40],[-38,-40]] }, - "machine_max_feedrate_z": { "default_value": 30 }, - "machine_max_feedrate_e": { "default_value": 60 }, - "machine_max_acceleration_z": { "default_value": 500 }, "machine_acceleration": { "default_value": 2000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-38, 30], + [38, 30], + [38, -40], + [-38, -40] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 300 }, + "machine_max_acceleration_z": { "default_value": 500 }, + "machine_max_feedrate_e": { "default_value": 60 }, + "machine_max_feedrate_z": { "default_value": 30 }, + "machine_max_jerk_e": { "default_value": 5 }, "machine_max_jerk_xy": { "default_value": 10 }, "machine_max_jerk_z": { "default_value": 0.4 }, - "machine_max_jerk_e": { "default_value": 5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression" - }, - "machine_end_gcode": { - "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300" - } + "machine_name": { "default_value": "VOLUMIC STREAM30ULTRA" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_start_gcode": { "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression" }, + "machine_width": { "default_value": 290 }, + "material_diameter": { "default_value": 1.75 }, + "retract_at_layer_change": { "default_value": true }, + "retraction_amount": { "default_value": 2 }, + "retraction_combing_max_distance": { "default_value": 200 }, + "retraction_speed": { "default_value": 25 } } -} +} \ No newline at end of file diff --git a/resources/definitions/stream30ultrasc.def.json b/resources/definitions/stream30ultrasc.def.json index 2f645a057b..251d2ea0ae 100644 --- a/resources/definitions/stream30ultrasc.def.json +++ b/resources/definitions/stream30ultrasc.def.json @@ -2,50 +2,55 @@ "version": 2, "name": "Volumic Stream30Ultra SC", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Volumic", "manufacturer": "Volumic", "file_formats": "text/x-gcode", - "icon": "volumic-icon", "platform": "STREAM30ULTRA_platform.STL", - "has_materials": true, "has_machine_quality": true, - "machine_extruder_trains":{"0": "stream30ultrasc_extruder"} + "has_materials": true, + "icon": "volumic-icon", + "machine_extruder_trains": { "0": "stream30ultrasc_extruder" } }, - - "overrides": { - "machine_name": { "default_value": "VOLUMIC STREAM30ULTRA SC" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 300 }, - "machine_height": { "default_value": 310 }, - "machine_depth": { "default_value": 200 }, - "machine_center_is_zero": { "default_value": false }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_size": { "default_value": 0.4 }, + "overrides": + { + "adhesion_type": { "default_value": "none" }, + "fill_outline_gaps": { "default_value": true }, + "infill_sparse_density": { "default_value": 25 }, "layer_height": { "default_value": 0.1 }, "layer_height_0": { "default_value": 0.1 }, - "retraction_amount": { "default_value": 2.40 }, - "retraction_speed": { "default_value": 30 }, - "adhesion_type": { "default_value": "none" }, - "infill_sparse_density": { "default_value": 25 }, - "fill_outline_gaps": { "default_value": true }, - "retract_at_layer_change": { "default_value": true }, - "retraction_combing_max_distance": { "default_value": 200 }, - "machine_head_with_fans_polygon": { "default_value": [[-38,30],[38,30],[38,-40],[-38,-40]] }, - "machine_max_feedrate_z": { "default_value": 30 }, - "machine_max_feedrate_e": { "default_value": 60 }, - "machine_max_acceleration_z": { "default_value": 500 }, "machine_acceleration": { "default_value": 2000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-38, 30], + [38, 30], + [38, -40], + [-38, -40] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 310 }, + "machine_max_acceleration_z": { "default_value": 500 }, + "machine_max_feedrate_e": { "default_value": 60 }, + "machine_max_feedrate_z": { "default_value": 30 }, + "machine_max_jerk_e": { "default_value": 5 }, "machine_max_jerk_xy": { "default_value": 10 }, "machine_max_jerk_z": { "default_value": 0.4 }, - "machine_max_jerk_e": { "default_value": 5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression" - }, - "machine_end_gcode": { - "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300" - } + "machine_name": { "default_value": "VOLUMIC STREAM30ULTRA SC" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_start_gcode": { "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression" }, + "machine_width": { "default_value": 300 }, + "material_diameter": { "default_value": 1.75 }, + "retract_at_layer_change": { "default_value": true }, + "retraction_amount": { "default_value": 2.4 }, + "retraction_combing_max_distance": { "default_value": 200 }, + "retraction_speed": { "default_value": 30 } } -} +} \ No newline at end of file diff --git a/resources/definitions/stream30ultrasc2.def.json b/resources/definitions/stream30ultrasc2.def.json index b1994044cf..6aed73f2c0 100644 --- a/resources/definitions/stream30ultrasc2.def.json +++ b/resources/definitions/stream30ultrasc2.def.json @@ -1,51 +1,56 @@ -{ - "version": 2, - "name": "Volumic Stream30Ultra SC2", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Volumic", - "manufacturer": "Volumic", - "file_formats": "text/x-gcode", - "icon": "volumic-icon", - "platform": "STREAM30ULTRA_platform.STL", - "has_materials": true, - "has_machine_quality": true, - "machine_extruder_trains":{"0": "stream30ultrasc2_extruder"} - }, - - "overrides": { - "machine_name": { "default_value": "VOLUMIC STREAM30ULTRA SC2" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 300 }, - "machine_height": { "default_value": 310 }, - "machine_depth": { "default_value": 200 }, - "machine_center_is_zero": { "default_value": false }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "layer_height": { "default_value": 0.1 }, - "layer_height_0": { "default_value": 0.1 }, - "retraction_amount": { "default_value": 2.40 }, - "retraction_speed": { "default_value": 30 }, - "adhesion_type": { "default_value": "none" }, - "infill_sparse_density": { "default_value": 25 }, - "fill_outline_gaps": { "default_value": true }, - "retract_at_layer_change": { "default_value": true }, - "retraction_combing_max_distance": { "default_value": 200 }, - "machine_head_with_fans_polygon": { "default_value": [[-38,30],[38,30],[38,-40],[-38,-40]] }, - "machine_max_feedrate_z": { "default_value": 30 }, - "machine_max_feedrate_e": { "default_value": 60 }, - "machine_max_acceleration_z": { "default_value": 500 }, - "machine_acceleration": { "default_value": 2000 }, - "machine_max_jerk_xy": { "default_value": 10 }, - "machine_max_jerk_z": { "default_value": 0.4 }, - "machine_max_jerk_e": { "default_value": 5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression" - }, - "machine_end_gcode": { - "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300" - } - } -} +{ + "version": 2, + "name": "Volumic Stream30Ultra SC2", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Volumic", + "manufacturer": "Volumic", + "file_formats": "text/x-gcode", + "platform": "STREAM30ULTRA_platform.STL", + "has_machine_quality": true, + "has_materials": true, + "icon": "volumic-icon", + "machine_extruder_trains": { "0": "stream30ultrasc2_extruder" } + }, + "overrides": + { + "adhesion_type": { "default_value": "none" }, + "fill_outline_gaps": { "default_value": true }, + "infill_sparse_density": { "default_value": 25 }, + "layer_height": { "default_value": 0.1 }, + "layer_height_0": { "default_value": 0.1 }, + "machine_acceleration": { "default_value": 2000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-38, 30], + [38, 30], + [38, -40], + [-38, -40] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 310 }, + "machine_max_acceleration_z": { "default_value": 500 }, + "machine_max_feedrate_e": { "default_value": 60 }, + "machine_max_feedrate_z": { "default_value": 30 }, + "machine_max_jerk_e": { "default_value": 5 }, + "machine_max_jerk_xy": { "default_value": 10 }, + "machine_max_jerk_z": { "default_value": 0.4 }, + "machine_name": { "default_value": "VOLUMIC STREAM30ULTRA SC2" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_start_gcode": { "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression" }, + "machine_width": { "default_value": 300 }, + "material_diameter": { "default_value": 1.75 }, + "retract_at_layer_change": { "default_value": true }, + "retraction_amount": { "default_value": 2.4 }, + "retraction_combing_max_distance": { "default_value": 200 }, + "retraction_speed": { "default_value": 30 } + } +} \ No newline at end of file diff --git a/resources/definitions/structur3d_discov3ry1_complete_um2plus.def.json b/resources/definitions/structur3d_discov3ry1_complete_um2plus.def.json index 6f04cdd93c..c013c49e05 100644 --- a/resources/definitions/structur3d_discov3ry1_complete_um2plus.def.json +++ b/resources/definitions/structur3d_discov3ry1_complete_um2plus.def.json @@ -2,109 +2,90 @@ "version": 2, "name": "Discov3ry Complete", "inherits": "fdmprinter", - "metadata": { + "metadata": + { + "visible": true, "author": "Andrew Finkle, CTO", "manufacturer": "Structur3d.io", - "visible": true, "file_formats": "text/x-gcode", "platform": "ultimaker2_platform.obj", - "platform_texture": "Ultimaker2Plusbackplate.png", - "platform_offset": [0, 0, 0], + "firmware_file": "MarlinUltimaker2plus.hex", + "first_start_actions": [], + "has_machine_quality": false, "has_materials": true, "has_variants": true, - "variants_name": "Print core", - "preferred_variant_name": "0.84mm (Green)", + "machine_extruder_trains": { "0": "structur3d_discov3ry1_complete_um2plus_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ], + "platform_texture": "Ultimaker2Plusbackplate.png", "preferred_material": "structur3d_dap100silicone", - "has_machine_quality": false, "preferred_quality_type": "extra_fast", - "first_start_actions": [], + "preferred_variant_name": "0.84mm (Green)", "supported_actions": [], - "machine_extruder_trains": - { - "0": "structur3d_discov3ry1_complete_um2plus_extruder_0" - }, - "firmware_file": "MarlinUltimaker2plus.hex" + "variants_name": "Print core" }, - - "overrides": { - "machine_name": { "default_value": "Discov3ry Complete (Ultimaker 2+)" }, - "speed_infill": { - "value": "speed_print" - }, - "infill_sparse_density": { - "value": 100 - }, - "retraction_hop_enabled": { - "value": true - }, - "adhesion_type": { - "default_value": "skirt" - }, - "skirt_brim_minimal_length": { - "value": 1500 - }, - "speed_print": { - "value": 15 - }, - "speed_wall_x": { - "value": "speed_wall" - }, - "layer_height_0": { - "value": "round(machine_nozzle_size / 1.5, 2)" - }, - "line_width": { - "value": "round(machine_nozzle_size * 0.875, 2)" - }, - "speed_support": { - "value": "speed_wall_0" - }, - "machine_height": { - "default_value": 205 - }, - "machine_width": { - "default_value": 205 - }, - "machine_depth": { - "default_value": 205 - }, - "machine_show_variants": { - "default_value": true - }, - "gantry_height": { - "value": "52" - }, - "machine_nozzle_head_distance": { - "default_value": 5 - }, - "machine_heat_zone_length": { - "default_value": 20 + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "gantry_height": { "value": "52" }, + "infill_sparse_density": { "value": 100 }, + "layer_height_0": { "value": "round(machine_nozzle_size / 1.5, 2)" }, + "line_width": { "value": "round(machine_nozzle_size * 0.875, 2)" }, + "machine_depth": { "default_value": 205 }, + "machine_disallowed_areas": + { + "default_value": [ + [ + [-115, 112.5], + [-78, 112.5], + [-80, 102.5], + [-115, 102.5] + ], + [ + [115, 112.5], + [115, 102.5], + [105, 102.5], + [103, 112.5] + ], + [ + [-115, -112.5], + [-115, -104.5], + [-84, -104.5], + [-82, -112.5] + ], + [ + [115, -112.5], + [108, -112.5], + [110, -104.5], + [115, -104.5] + ] + ] }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off \nM140 S0 ;heated bed heater off (if you have it) \nM92 E282 ;reset extruder EEPROM steps/mm for plastic filament \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_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { "default_value": [ - [ -44, 14 ], - [ -44, -34 ], - [ 64, 14 ], - [ 64, -34 ] + [-44, 14], + [-44, -34], + [64, 14], + [64, -34] ] }, - "machine_disallowed_areas": { - "default_value": [ - [[-115, 112.5], [ -78, 112.5], [ -80, 102.5], [-115, 102.5]], - [[ 115, 112.5], [ 115, 102.5], [ 105, 102.5], [ 103, 112.5]], - [[-115, -112.5], [-115, -104.5], [ -84, -104.5], [ -82, -112.5]], - [[ 115, -112.5], [ 108, -112.5], [ 110, -104.5], [ 115, -104.5]] - ] - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "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_end_gcode": { - "default_value": "M104 S0 ;extruder heater off \nM140 S0 ;heated bed heater off (if you have it) \nM92 E282 ;reset extruder EEPROM steps/mm for plastic filament \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_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 }, + "retraction_hop_enabled": { "value": true }, + "skirt_brim_minimal_length": { "value": 1500 }, + "speed_print": { "value": 15 }, + "speed_support": { "value": "speed_wall_0" }, + "speed_wall_x": { "value": "speed_wall" } } -} +} \ No newline at end of file diff --git a/resources/definitions/syndaveraxi.def.json b/resources/definitions/syndaveraxi.def.json index 186b89212f..b474d58163 100644 --- a/resources/definitions/syndaveraxi.def.json +++ b/resources/definitions/syndaveraxi.def.json @@ -1,46 +1,39 @@ { - "version": 2, + "version": 2, "name": "SyndaverAxi", "inherits": "fdmprinter", - "metadata": -{ - "type": "machine", + "metadata": + { "visible": true, "author": "Syndaver3D", "manufacturer": "Syndaver3D", "file_formats": "text/x-gcode", - "supports_usb_connection": true, + "machine_extruder_trains": { "0": "syndaveraxi_extruder_0" }, "preferred_quality_type": "draft", - "machine_extruder_trains": - { - "0": "syndaveraxi_extruder_0" - } + "supports_usb_connection": true, + "type": "machine" }, - - "overrides": { - "machine_name": { "default_value": "AXI" }, - "machine_shape": { "default_value": "rectangular"}, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 280 }, - "machine_depth": { "default_value": 280 }, - "machine_height": { "default_value": 285 }, + "overrides": + { + "gantry_height": { "value": "30" }, "machine_center_is_zero": { "default_value": false }, - "machine_head_with_fans_polygon": { + "machine_depth": { "default_value": 280 }, + "machine_end_gcode": { "default_value": "M400 ; wait for moves to finish\nM140 S50 ; start bed cooling\nM104 S0 ; disable hotend\nM107 ; disable fans\nM117 Cooling please wait\nG91 ; relative positioning\nG1 Z5 F3000 ; move Z up 5mm so it wont drag on the print\nG90 ; absolute positioning\nG1 X5 Y5 F3000 ; move to cooling position\nM190 R50 ; wait for bed to cool down to removal temp\nG1 X145 Y260 F1000 ; present finished print\nM140 S0 ; cool down bed\nM77 ; End LCD Print Timer\nM18 X Y E ; turn off x y and e axis\nM117 Print Complete." }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ - [ 0, 0 ], - [ 0, 0 ], - [ 0, 0 ], - [ 0, 0 ] + [0, 0], + [0, 0], + [0, 0], + [0, 0] ] }, - "gantry_height": { "value": "30" }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - - "machine_start_gcode": { - "default_value": ";This G-Code has been generated specifically for Syndaver AXI with Hemera toolhead\nM73 P0 ; clear LCD progress bar\nM75 ; Start LCD Print Timer\nM107 ; disable fans\nM420 S0 ; disable leveling matrix\nM82 ; set extruder to absolute mode\nG92 E0 ; set extruder position to 0\nM140 S{material_bed_temperature_layer_0} ; start bed heating up\nM104 S170 ; start nozzle heating up\nG28 ; home all axes\nM117 AXI Heating Up...\nG1 X-17.5 Y100 F3000 ; move to wiper pad\nG1 Z10 F5000 ; move to wiper pad\nG29 L1 ; load leveling matrix slot 1\nG29 A ; ensure mesh is enabled\nM109 R170 ; wait for nozzle to reach wiping temp\nG1 E-3 ; retract material before wipe\nM117 AXI Wiping Nozzle...\nG1 Z-3 ; lower nozzle\nG1 Y90 F1000 ; slow wipe\nG1 Y65 F1000 ; slow wipe\nG1 Y80 F1000 ; slow wipe\nG1 Y65 F1000 ; slow wipe\nG1 Y55 F1000 ; slow wipe\nG1 Y30 F3000 ; fast wipe\nG1 Y55 F3000 ; fast wipe\nG1 Y30 F3000 ; fast wipe\nG1 Y55 F3000 ; fast wipe\nG1 Z10 ; raise nozzle\nM117 Heating...\nM190 R{material_bed_temperature_layer_0} ; wait for bed to reach printing temp\nM104 S{material_print_temperature_layer_0} ; set extruder to reach initial printing temp, held back for ooze reasons\nM117 Probe Z at Temp\nG28 Z ; re-probe Z0 to account for any thermal expansion in the bed\nG1 X-17.5 Y80 F3000 ; move to wiper pad\nG1 Z10 F5000 ; move to wiper pad\nM117 Heating...\nM109 R{material_print_temperature_layer_0} ; wait for extruder to reach initial printing temp\nM117 AXI Wiping Nozzle...\nG1 E0 ; prime material in nozzle\nG1 Z-3 ; final ooze wipe\nG1 Y60 F2000 ; final ooze wipe\nG1 Y20 F2000 ; final ooze wipe\nM117 AXI Starting Print\nG1 Z2 ; move nozzle back up to not run into things on print start\nM400 ; wait for moves to finish\nM117 AXI Printing" - }, - "machine_end_gcode": { - "default_value": "M400 ; wait for moves to finish\nM140 S50 ; start bed cooling\nM104 S0 ; disable hotend\nM107 ; disable fans\nM117 Cooling please wait\nG91 ; relative positioning\nG1 Z5 F3000 ; move Z up 5mm so it wont drag on the print\nG90 ; absolute positioning\nG1 X5 Y5 F3000 ; move to cooling position\nM190 R50 ; wait for bed to cool down to removal temp\nG1 X145 Y260 F1000 ; present finished print\nM140 S0 ; cool down bed\nM77 ; End LCD Print Timer\nM18 X Y E ; turn off x y and e axis\nM117 Print Complete." - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 285 }, + "machine_name": { "default_value": "AXI" }, + "machine_shape": { "default_value": "rectangular" }, + "machine_start_gcode": { "default_value": ";This G-Code has been generated specifically for Syndaver AXI with Hemera toolhead\nM73 P0 ; clear LCD progress bar\nM75 ; Start LCD Print Timer\nM107 ; disable fans\nM420 S0 ; disable leveling matrix\nM82 ; set extruder to absolute mode\nG92 E0 ; set extruder position to 0\nM140 S{material_bed_temperature_layer_0} ; start bed heating up\nM104 S170 ; start nozzle heating up\nG28 ; home all axes\nM117 AXI Heating Up...\nG1 X-17.5 Y100 F3000 ; move to wiper pad\nG1 Z10 F5000 ; move to wiper pad\nG29 L1 ; load leveling matrix slot 1\nG29 A ; ensure mesh is enabled\nM109 R170 ; wait for nozzle to reach wiping temp\nG1 E-3 ; retract material before wipe\nM117 AXI Wiping Nozzle...\nG1 Z-3 ; lower nozzle\nG1 Y90 F1000 ; slow wipe\nG1 Y65 F1000 ; slow wipe\nG1 Y80 F1000 ; slow wipe\nG1 Y65 F1000 ; slow wipe\nG1 Y55 F1000 ; slow wipe\nG1 Y30 F3000 ; fast wipe\nG1 Y55 F3000 ; fast wipe\nG1 Y30 F3000 ; fast wipe\nG1 Y55 F3000 ; fast wipe\nG1 Z10 ; raise nozzle\nM117 Heating...\nM190 R{material_bed_temperature_layer_0} ; wait for bed to reach printing temp\nM104 S{material_print_temperature_layer_0} ; set extruder to reach initial printing temp, held back for ooze reasons\nM117 Probe Z at Temp\nG28 Z ; re-probe Z0 to account for any thermal expansion in the bed\nG1 X-17.5 Y80 F3000 ; move to wiper pad\nG1 Z10 F5000 ; move to wiper pad\nM117 Heating...\nM109 R{material_print_temperature_layer_0} ; wait for extruder to reach initial printing temp\nM117 AXI Wiping Nozzle...\nG1 E0 ; prime material in nozzle\nG1 Z-3 ; final ooze wipe\nG1 Y60 F2000 ; final ooze wipe\nG1 Y20 F2000 ; final ooze wipe\nM117 AXI Starting Print\nG1 Z2 ; move nozzle back up to not run into things on print start\nM400 ; wait for moves to finish\nM117 AXI Printing" }, + "machine_width": { "default_value": 280 } } } \ No newline at end of file diff --git a/resources/definitions/syndaveraxi2.def.json b/resources/definitions/syndaveraxi2.def.json index 8ab0003e09..bad1d82dfd 100644 --- a/resources/definitions/syndaveraxi2.def.json +++ b/resources/definitions/syndaveraxi2.def.json @@ -1,46 +1,39 @@ { - "version": 2, + "version": 2, "name": "SyndaverAxi2", "inherits": "fdmprinter", - "metadata": -{ - "type": "machine", + "metadata": + { "visible": true, "author": "Syndaver3D", "manufacturer": "Syndaver3D", "file_formats": "text/x-gcode", - "supports_usb_connection": true, + "machine_extruder_trains": { "0": "syndaveraxi2_extruder_0" }, "preferred_quality_type": "draft", - "machine_extruder_trains": - { - "0": "syndaveraxi2_extruder_0" - } + "supports_usb_connection": true, + "type": "machine" }, - - "overrides": { - "machine_name": { "default_value": "AXI2" }, - "machine_shape": { "default_value": "rectangular"}, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 280 }, - "machine_depth": { "default_value": 280 }, - "machine_height": { "default_value": 280 }, + "overrides": + { + "gantry_height": { "value": "60" }, "machine_center_is_zero": { "default_value": false }, - "machine_head_with_fans_polygon": { + "machine_depth": { "default_value": 280 }, + "machine_end_gcode": { "default_value": "M400 ; wait for moves to finish\nM140 S50 ; start bed cooling\nM104 S0 ; disable hotend\nM107 ; disable fans\nM117 Cooling please wait\nG91 ; relative positioning\nG1 Z5 F3000 ; move Z up 5mm so it wont drag on the print\nG90 ; absolute positioning\nG1 X5 Y5 F3000 ; move to cooling position\nM190 R50 ; wait for bed to cool down to removal temp\nG1 X145 Y260 F1000 ; present finished print\nM140 S0 ; cool down bed\nM77 ; End LCD Print Timer\nM18 X Y E ; turn off x y and e axis\nM117 Print Complete." }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ - [ 0, 0 ], - [ 0, 0 ], - [ 0, 0 ], - [ 0, 0 ] + [0, 0], + [0, 0], + [0, 0], + [0, 0] ] }, - "gantry_height": { "value": "60" }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - - "machine_start_gcode": { - "default_value": ";This G-Code has been generated specifically for Syndaver AXI 2 with Hemera toolhead\nM73 P0 ; clear LCD progress bar\nM75 ; Start LCD Print Timer\nM107 ; disable fans\nM420 S0 ; disable leveling matrix\nM82 ; set extruder to absolute mode\nG92 E0 ; set extruder position to 0\nM140 S{material_bed_temperature_layer_0} ; start bed heating up\nM104 S170 ; start nozzle heating up\nG28 ; home all axes\nM117 AXI Heating Up...\nG1 X-17.5 Y100 F3000 ; move to wiper pad\nG1 Z10 F5000 ; move to wiper pad\nG29 L1 ; load leveling matrix slot 1\nG29 A ; ensure mesh is enabled\nM109 R170 ; wait for nozzle to reach wiping temp\nG1 E-3 ; retract material before wipe\nM117 AXI Wiping Nozzle...\nG1 Z-3 ; lower nozzle\nG1 Y90 F1000 ; slow wipe\nG1 Y65 F1000 ; slow wipe\nG1 Y80 F1000 ; slow wipe\nG1 Y65 F1000 ; slow wipe\nG1 Y55 F1000 ; slow wipe\nG1 Y30 F3000 ; fast wipe\nG1 Y55 F3000 ; fast wipe\nG1 Y30 F3000 ; fast wipe\nG1 Y55 F3000 ; fast wipe\nG1 Z10 ; raise nozzle\nM117 Heating...\nM190 R{material_bed_temperature_layer_0} ; wait for bed to reach printing temp\nM104 S{material_print_temperature_layer_0} ; set extruder to reach initial printing temp, held back for ooze reasons\nM117 Probe Z at Temp\nG28 Z ; re-probe Z0 to account for any thermal expansion in the bed\nG1 X-17.5 Y80 F3000 ; move to wiper pad\nG1 Z10 F5000 ; move to wiper pad\nM117 Heating...\nM109 R{material_print_temperature_layer_0} ; wait for extruder to reach initial printing temp\nM117 AXI Wiping Nozzle...\nG1 E0 ; prime material in nozzle\nG1 Z-3 ; final ooze wipe\nG1 Y60 F2000 ; final ooze wipe\nG1 Y20 F2000 ; final ooze wipe\nM117 AXI Starting Print\nG1 Z2 ; move nozzle back up to not run into things on print start\nM400 ; wait for moves to finish\nM117 AXI Printing" - }, - "machine_end_gcode": { - "default_value": "M400 ; wait for moves to finish\nM140 S50 ; start bed cooling\nM104 S0 ; disable hotend\nM107 ; disable fans\nM117 Cooling please wait\nG91 ; relative positioning\nG1 Z5 F3000 ; move Z up 5mm so it wont drag on the print\nG90 ; absolute positioning\nG1 X5 Y5 F3000 ; move to cooling position\nM190 R50 ; wait for bed to cool down to removal temp\nG1 X145 Y260 F1000 ; present finished print\nM140 S0 ; cool down bed\nM77 ; End LCD Print Timer\nM18 X Y E ; turn off x y and e axis\nM117 Print Complete." - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 280 }, + "machine_name": { "default_value": "AXI2" }, + "machine_shape": { "default_value": "rectangular" }, + "machine_start_gcode": { "default_value": ";This G-Code has been generated specifically for Syndaver AXI 2 with Hemera toolhead\nM73 P0 ; clear LCD progress bar\nM75 ; Start LCD Print Timer\nM107 ; disable fans\nM420 S0 ; disable leveling matrix\nM82 ; set extruder to absolute mode\nG92 E0 ; set extruder position to 0\nM140 S{material_bed_temperature_layer_0} ; start bed heating up\nM104 S170 ; start nozzle heating up\nG28 ; home all axes\nM117 AXI Heating Up...\nG1 X-17.5 Y100 F3000 ; move to wiper pad\nG1 Z10 F5000 ; move to wiper pad\nG29 L1 ; load leveling matrix slot 1\nG29 A ; ensure mesh is enabled\nM109 R170 ; wait for nozzle to reach wiping temp\nG1 E-3 ; retract material before wipe\nM117 AXI Wiping Nozzle...\nG1 Z-3 ; lower nozzle\nG1 Y90 F1000 ; slow wipe\nG1 Y65 F1000 ; slow wipe\nG1 Y80 F1000 ; slow wipe\nG1 Y65 F1000 ; slow wipe\nG1 Y55 F1000 ; slow wipe\nG1 Y30 F3000 ; fast wipe\nG1 Y55 F3000 ; fast wipe\nG1 Y30 F3000 ; fast wipe\nG1 Y55 F3000 ; fast wipe\nG1 Z10 ; raise nozzle\nM117 Heating...\nM190 R{material_bed_temperature_layer_0} ; wait for bed to reach printing temp\nM104 S{material_print_temperature_layer_0} ; set extruder to reach initial printing temp, held back for ooze reasons\nM117 Probe Z at Temp\nG28 Z ; re-probe Z0 to account for any thermal expansion in the bed\nG1 X-17.5 Y80 F3000 ; move to wiper pad\nG1 Z10 F5000 ; move to wiper pad\nM117 Heating...\nM109 R{material_print_temperature_layer_0} ; wait for extruder to reach initial printing temp\nM117 AXI Wiping Nozzle...\nG1 E0 ; prime material in nozzle\nG1 Z-3 ; final ooze wipe\nG1 Y60 F2000 ; final ooze wipe\nG1 Y20 F2000 ; final ooze wipe\nM117 AXI Starting Print\nG1 Z2 ; move nozzle back up to not run into things on print start\nM400 ; wait for moves to finish\nM117 AXI Printing" }, + "machine_width": { "default_value": 280 } } } \ No newline at end of file diff --git a/resources/definitions/tam.def.json b/resources/definitions/tam.def.json index 080a3125db..84bbc9c8fb 100644 --- a/resources/definitions/tam.def.json +++ b/resources/definitions/tam.def.json @@ -2,62 +2,58 @@ "version": 2, "name": "Series 1 2014", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "TypeAMachines", "manufacturer": "TypeAMachines", "file_formats": "text/x-gcode", "platform": "tam_series1.3mf", - "platform_offset": [-580.0, -6.23, 253.5], "has_materials": false, - "machine_extruder_trains": - { - "0": "tam_extruder_0" - } + "machine_extruder_trains": { "0": "tam_extruder_0" }, + "platform_offset": [ + -580.0, + -6.23, + 253.5 + ] }, - "overrides": { - "machine_name": { "default_value": "TypeAMachines" }, - + "overrides": + { + "gantry_height": { "value": "35" }, + "infill_pattern": { "value": "'tetrahedral'" }, + "infill_sparse_density": { "default_value": 5 }, "layer_height": { "default_value": 0.2 }, "layer_height_0": { "default_value": 0.3 }, - "infill_sparse_density": { "default_value": 5 }, - "wall_thickness": { "value": "1" }, - "top_bottom_thickness": { "default_value": 1 }, - - "infill_pattern": { "value": "'tetrahedral'" }, - - "machine_width": { "default_value": 305 }, - "machine_depth": { "default_value": 305 }, - "machine_height": { "default_value": 305 }, - - "machine_heated_bed": { "default_value": true }, - "machine_head_with_fans_polygon": { "default_value": [ [ -35, 65 ], [ -35, -55 ], [ 55, 65 ], [ 55, -55 ] ] }, - "gantry_height": { "value": "35" }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_center_is_zero": { "default_value": false }, - - "speed_print": { "default_value": 60 }, - - "retraction_amount": { "default_value": 0.4 }, - "retraction_speed": { "default_value": 35}, - - "xy_offset": { "default_value": -0.01 }, - - "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, - - "machine_nozzle_tip_outer_diameter": { "default_value": 1 }, - "machine_nozzle_head_distance": { "default_value": 3 }, - + "machine_depth": { "default_value": 305 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 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_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-35, 65], + [-35, -55], + [55, 65], + [55, -55] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 305 }, + "machine_max_acceleration_e": { "default_value": 175 }, "machine_max_acceleration_x": { "default_value": 6000 }, "machine_max_acceleration_y": { "default_value": 6000 }, "machine_max_acceleration_z": { "default_value": 12000 }, - "machine_max_acceleration_e": { "default_value": 175 }, - - "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_end_gcode": { - "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 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_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 }, + "machine_width": { "default_value": 305 }, + "retraction_amount": { "default_value": 0.4 }, + "retraction_speed": { "default_value": 35 }, + "speed_print": { "default_value": 60 }, + "top_bottom_thickness": { "default_value": 1 }, + "wall_thickness": { "value": "1" }, + "xy_offset": { "default_value": -0.01 } } -} +} \ No newline at end of file diff --git a/resources/definitions/tank_m3.def.json b/resources/definitions/tank_m3.def.json new file mode 100644 index 0000000000..a9d9e3f1d0 --- /dev/null +++ b/resources/definitions/tank_m3.def.json @@ -0,0 +1,27 @@ +{ + "version": 2, + "name": "Tank M3", + "inherits": "tank_m_base", + "metadata": + { + "visible": true, + "quality_definition": "tank_m_base" + }, + "overrides": + { + "gantry_height": { "value": 0 }, + "machine_depth": { "default_value": 235 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-26, 34], + [-26, -32], + [32, -32], + [32, 34] + ] + }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "Tank M3" }, + "machine_width": { "default_value": 235 } + } +} \ No newline at end of file diff --git a/resources/definitions/tank_m3_max.def.json b/resources/definitions/tank_m3_max.def.json new file mode 100644 index 0000000000..6b8b02f4e8 --- /dev/null +++ b/resources/definitions/tank_m3_max.def.json @@ -0,0 +1,27 @@ +{ + "version": 2, + "name": "Tank M3 Max", + "inherits": "tank_m_base", + "metadata": + { + "visible": true, + "quality_definition": "tank_m_base" + }, + "overrides": + { + "gantry_height": { "value": 0 }, + "machine_depth": { "default_value": 310 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-26, 34], + [-26, -32], + [32, -32], + [32, 34] + ] + }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Tank M3 Max" }, + "machine_width": { "default_value": 310 } + } +} \ No newline at end of file diff --git a/resources/definitions/tank_m_base.def.json b/resources/definitions/tank_m_base.def.json new file mode 100644 index 0000000000..069c6a4755 --- /dev/null +++ b/resources/definitions/tank_m_base.def.json @@ -0,0 +1,83 @@ +{ + "version": 2, + "name": "tank_m Base Printer", + "inherits": "fdmprinter", + "metadata": + { + "visible": false, + "author": "tank_m", + "manufacturer": "tank_m", + "file_formats": "text/x-gcode", + "platform": "tank_m.obj", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "machine_extruder_trains": { "0": "tank_m_base_extruder_0" }, + "platform_texture": "tank_m.png", + "preferred_material": "generic_pla", + "preferred_quality_type": "standard" + }, + "overrides": + { + "acceleration_print": { "value": 2500 }, + "acceleration_travel": { "value": 2500 }, + "adhesion_type": { "value": "'skirt'" }, + "brim_replaces_support": { "value": false }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "value": 10 }, + "fill_outline_gaps": { "value": false }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_sparse_density": { "value": "15" }, + "machine_acceleration": { "value": 2500 }, + "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_heated_bed": { "default_value": true }, + "machine_max_acceleration_e": { "value": 2000 }, + "machine_max_acceleration_x": { "value": 2500 }, + "machine_max_acceleration_y": { "value": 2500 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_feedrate_e": { "value": 500 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 50 }, + "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Move to min endstops\nG1 Z15.0 F9000 ;move the platform down 15mm\nM117 Printing..." }, + "material_bed_temperature": { "value": "55" }, + "material_bed_temperature_layer_0": { "value": "material_bed_temperature" }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "material_print_temperature": { "value": "195" }, + "material_standby_temperature": { "value": "material_print_temperature" }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "retraction_amount": { "value": 1.0 }, + "retraction_speed": { "value": 40 }, + "skirt_gap": { "value": 6.0 }, + "skirt_line_count": { "value": 3 }, + "speed_layer_0": { "value": 25.0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": 50.0 }, + "speed_support": { "value": "speed_wall_0" }, + "speed_travel": { "value": "120.0 if speed_print < 60 else 300.0 if speed_print > 100 else speed_print * 2.2" }, + "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 25 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 4 }, + "support_enable": { "value": true }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_interface_skip_height": { "value": 0.2 }, + "support_pattern": { "value": "'zigzag'" }, + "support_wall_count": { "value": 1 }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, + "wall_thickness": { "value": "line_width * 2" } + } +} \ No newline at end of file diff --git a/resources/definitions/tevo_blackwidow.def.json b/resources/definitions/tevo_blackwidow.def.json index 3ed71d3036..5d6a1597ca 100644 --- a/resources/definitions/tevo_blackwidow.def.json +++ b/resources/definitions/tevo_blackwidow.def.json @@ -2,61 +2,29 @@ "version": 2, "name": "Tevo Black Widow", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "TheTobby", "manufacturer": "Tevo", "file_formats": "text/x-gcode", - "has_materials": false, - "has_machine_quality": true, "platform": "tevo_blackwidow.3mf", - "preferred_quality_type": "normal", - "machine_extruder_trains": - { - "0": "tevo_blackwidow_extruder_0" - } + "has_machine_quality": true, + "has_materials": false, + "machine_extruder_trains": { "0": "tevo_blackwidow_extruder_0" }, + "preferred_quality_type": "normal" }, "overrides": { - "machine_name": - { - "default_value": "Tevo Black Widow" - }, - "machine_heated_bed": - { - "default_value": true - }, - "machine_width": - { - "default_value": 350 - }, - "machine_height": - { - "default_value": 250 - }, - "machine_depth": - { - "default_value": 250 - }, - "machine_center_is_zero": - { - "default_value": false - }, - "gantry_height": - { - "value": "0" - }, - "machine_gcode_flavor": - { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": - { - "default_value": "M280 P0 S160 ; release BLTouch alarm (OK to send for Non BLTouch)\nM420 Z2 ; set fade leveling at 2mm for BLTouch (OK to send for Non BLTouch)\nG28 ; home all\nG29 ; probe bed\nG92 E0 ;zero the extruded length\nG1 X0.0 Y50.0 Z10.0 F3600\n; perform wipe and prime\nG1 Z0.0 F1000\nG1 Z0.2 Y70.0 E9.0 F1000.0 ; prime\nG1 Y100.0 E12.5 F1000.0 ; prime\nG92 E0 ; zero extruder again\nM117 Printing..." - }, - "machine_end_gcode": - { - "default_value": "G92 E0 ; zero the extruded length again\nG1 E-1.5 F500 ; retract the filament to release some of the pressure\nM104 S0 ; turn off extruder\nM140 S0 ; turn off bed\nG28 X0 ; home X axis\nG1 Y245 ; move Y axis to end position\nM84 ; disable motors\nM107 ; turn off fan" - } + "gantry_height": { "value": "0" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 250 }, + "machine_end_gcode": { "default_value": "G92 E0 ; zero the extruded length again\nG1 E-1.5 F500 ; retract the filament to release some of the pressure\nM104 S0 ; turn off extruder\nM140 S0 ; turn off bed\nG28 X0 ; home X axis\nG1 Y245 ; move Y axis to end position\nM84 ; disable motors\nM107 ; turn off fan" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "Tevo Black Widow" }, + "machine_start_gcode": { "default_value": "M280 P0 S160 ; release BLTouch alarm (OK to send for Non BLTouch)\nM420 Z2 ; set fade leveling at 2mm for BLTouch (OK to send for Non BLTouch)\nG28 ; home all\nG29 ; probe bed\nG92 E0 ;zero the extruded length\nG1 X0.0 Y50.0 Z10.0 F3600\n; perform wipe and prime\nG1 Z0.0 F1000\nG1 Z0.2 Y70.0 E9.0 F1000.0 ; prime\nG1 Y100.0 E12.5 F1000.0 ; prime\nG92 E0 ; zero extruder again\nM117 Printing..." }, + "machine_width": { "default_value": 350 } } -} +} \ No newline at end of file diff --git a/resources/definitions/tevo_tarantula.def.json b/resources/definitions/tevo_tarantula.def.json index 8811776a8f..2874291f73 100644 --- a/resources/definitions/tevo_tarantula.def.json +++ b/resources/definitions/tevo_tarantula.def.json @@ -15,39 +15,37 @@ "1": "tevo_tarantula_extruder_1" } }, - "overrides": { - "machine_name": { "default_value": "Tevo Tarantula" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 200 }, - "machine_height": { "default_value": 200 }, - "machine_depth": { "default_value": 200 }, + "acceleration_print": { "default_value": 2650 }, + "gantry_height": { "value": "55" }, + "machine_acceleration": { "default_value": 2650 }, "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F9000 ;move Z up a bit and retract filament even more\nG90 ;absolute positioning\nG1 X0 Y200 F3600 ;move extruder out of the way by moving the baseplate to the front for easier access to printed object\nM84 ;steppers off" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { - "default_value": - [ + "default_value": [ [-75, -18], [-75, 35], [18, 35], [18, -18] ] }, - "gantry_height": { "value": "55" }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_acceleration": { "default_value": 2650 }, - "machine_max_jerk_xy": { "default_value": 15.0 }, - "machine_max_jerk_z": { "default_value": 0.4 }, - "machine_max_jerk_e": { "default_value": 5 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200 }, + "machine_max_acceleration_x": { "default_value": 2650 }, + "machine_max_acceleration_y": { "default_value": 2650 }, "machine_max_feedrate_x": { "default_value": 255 }, "machine_max_feedrate_y": { "default_value": 225 }, "machine_max_feedrate_z": { "default_value": 3 }, - "machine_max_acceleration_x": { "default_value": 2650 }, - "machine_max_acceleration_y": { "default_value": 2650 }, - "acceleration_print": { "default_value": 2650 }, + "machine_max_jerk_e": { "default_value": 5 }, + "machine_max_jerk_xy": { "default_value": 15.0 }, + "machine_max_jerk_z": { "default_value": 0.4 }, + "machine_name": { "default_value": "Tevo Tarantula" }, "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 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..." }, - "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F9000 ;move Z up a bit and retract filament even more\nG90 ;absolute positioning\nG1 X0 Y200 F3600 ;move extruder out of the way by moving the baseplate to the front for easier access to printed object\nM84 ;steppers off" }, + "machine_width": { "default_value": 200 }, "speed_z_hop": { "default_value": 3 } } -} +} \ No newline at end of file diff --git a/resources/definitions/tevo_tarantula_pro.def.json b/resources/definitions/tevo_tarantula_pro.def.json index 486ea92528..c79840b5bc 100644 --- a/resources/definitions/tevo_tarantula_pro.def.json +++ b/resources/definitions/tevo_tarantula_pro.def.json @@ -2,7 +2,8 @@ "version": 2, "name": "Tevo Tarantula Pro", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "FN59", "manufacturer": "Tevo", @@ -15,33 +16,41 @@ "1": "tevo_tarantula_pro_extruder_1" } }, - - "overrides": { - "machine_name": { "default_value": "Tevo Tarantula Pro" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 240 }, - "machine_height": { "default_value": 260 }, - "machine_depth": { "default_value": 240 }, - "machine_center_is_zero": { "default_value": false }, - "layer_height": { "default_value": 0.15 }, - "retraction_amount": { "default_value": 4.5 }, - "retraction_speed": { "default_value": 35 }, + "overrides": + { + "acceleration_print": { "default_value": 2000 }, "adhesion_type": { "default_value": "brim" }, - "machine_head_with_fans_polygon": { "default_value": [[-42,29],[42,29],[42,-55],[-42,-55]] }, "gantry_height": { "value": "32" }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "layer_height": { "default_value": 0.15 }, "machine_acceleration": { "default_value": 2000 }, - "machine_max_jerk_xy": { "default_value": 15.0 }, - "machine_max_jerk_z": { "default_value": 0.4 }, - "machine_max_jerk_e": { "default_value": 5 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 240 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off\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\nG90 ;absolute positioning\nG1 X0 Y220 F3600 ;move extruder out of the way by moving the baseplate to the front for easier access to printed object\nM84 ;steppers off" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-42, 29], + [42, 29], + [42, -55], + [-42, -55] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 260 }, + "machine_max_acceleration_x": { "default_value": 2000 }, + "machine_max_acceleration_y": { "default_value": 2000 }, "machine_max_feedrate_x": { "default_value": 200 }, "machine_max_feedrate_y": { "default_value": 200 }, "machine_max_feedrate_z": { "default_value": 9 }, - "machine_max_acceleration_x": { "default_value": 2000 }, - "machine_max_acceleration_y": { "default_value": 2000 }, - "acceleration_print": { "default_value": 2000 }, + "machine_max_jerk_e": { "default_value": 5 }, + "machine_max_jerk_xy": { "default_value": 15.0 }, + "machine_max_jerk_z": { "default_value": 0.4 }, + "machine_name": { "default_value": "Tevo Tarantula Pro" }, "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 Z30.0 F9000 ;move the gentry up 30mm\nG92 E0 ;zero the extruded length\nG1 F200 E10 ;extrude 10mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..." }, - "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off\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\nG90 ;absolute positioning\nG1 X0 Y220 F3600 ;move extruder out of the way by moving the baseplate to the front for easier access to printed object\nM84 ;steppers off" }, + "machine_width": { "default_value": 240 }, + "retraction_amount": { "default_value": 4.5 }, + "retraction_speed": { "default_value": 35 }, "speed_z_hop": { "default_value": 9 } } -} +} \ No newline at end of file diff --git a/resources/definitions/tevo_tornado.def.json b/resources/definitions/tevo_tornado.def.json index 3b6c431feb..6b6db55e6a 100644 --- a/resources/definitions/tevo_tornado.def.json +++ b/resources/definitions/tevo_tornado.def.json @@ -1,34 +1,37 @@ { - "name": "Tevo Tornado", "version": 2, + "name": "Tevo Tornado", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "nean", "manufacturer": "Tevo", "file_formats": "text/x-gcode", "has_materials": true, - "machine_extruder_trains": { - "0": "tevo_tornado_extruder_0" - } + "machine_extruder_trains": { "0": "tevo_tornado_extruder_0" } }, - "overrides": { - "machine_name": { - "default_value": "Tevo Tornado" - }, - "machine_width": { - "default_value": 300 - }, - "machine_height": { - "default_value": 400 - }, - "machine_depth": { - "default_value": 300 - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_head_with_fans_polygon": { + "overrides": + { + "acceleration_enabled": { "default_value": true }, + "acceleration_print": { "default_value": 500 }, + "acceleration_travel": { "value": 500 }, + "acceleration_travel_layer_0": { "value": 500 }, + "adhesion_type": { "default_value": "skirt" }, + "cool_min_layer_time": { "default_value": 10 }, + "gantry_height": { "value": "30" }, + "infill_pattern": { "value": "'triangles'" }, + "jerk_enabled": { "default_value": true }, + "jerk_print": { "default_value": 8 }, + "jerk_travel": { "value": 8 }, + "jerk_travel_layer_0": { "value": 8 }, + "machine_acceleration": { "default_value": 1500 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": ";\n; end_gcode\nG92 E0 ; zero the extruded length\nG1 E-5 F9000 ; retract\nM104 S0 ; turn off temperature\nM140 S0 ; turn off bed\nG91 ; relative positioning\nG1 E-1 F300 ; retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+20 E-5 X-20 Y-20 F7200 ; move Z up a bit and retract filament even more\nG1 X320 Y150 F10000 ; move right mid\nM107 ; turn off layer fan\nM84 ; disable motors\nG90 ; absolute positioning\n;\n;EOF" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ [-30, 34], [-30, -32], @@ -36,80 +39,18 @@ [30, 34] ] }, - "top_bottom_thickness": { - "default_value": 1.2 - }, - "top_bottom_pattern": { - "default_value": "lines" - }, - "infill_pattern": { - "value": "'triangles'" - }, - "retraction_enable": { - "default_value": true - }, - "retraction_amount": { - "default_value": 6.8 - }, - "retraction_speed": { - "default_value": 40 - }, - "cool_min_layer_time": { - "default_value": 10 - }, - "adhesion_type": { - "default_value": "skirt" - }, - "skirt_line_count": { - "default_value": 4 - }, - "skirt_gap": { - "default_value": 10 - }, - "machine_heated_bed": { - "default_value": true - }, - "gantry_height": { - "value": "30" - }, - "acceleration_enabled": { - "default_value": true - }, - "acceleration_print": { - "default_value": 500 - }, - "acceleration_travel": { - "value": 500 - }, - "acceleration_travel_layer_0": { - "value": 500 - }, - "machine_acceleration": { - "default_value": 1500 - }, - "jerk_enabled": { - "default_value": true - }, - "jerk_print": { - "default_value": 8 - }, - "jerk_travel": { - "value": 8 - }, - "jerk_travel_layer_0": { - "value": 8 - }, - "machine_max_jerk_xy": { - "default_value": 6 - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "; start_gcode\nM117 Start Clean ; Indicate nozzle clean in progress on LCD\n;\nM104 S{material_print_temperature_layer_0} \nM109 S{material_print_temperature_layer_0} \nM109 R{material_print_temperature_layer_0} \n;\nM107 ; Turn layer fan off\nG21 ; Set to metric [change to G20 if you want Imperial]\nG90 ; Force coordinates to be absolute relative to the origin\nG28 ; Home X/Y/Z axis\n;\nG1 X3 Y1 Z15 F9000 ; Move safe Z height to shear strings\nG0 X1 Y1 Z0.2 F9000 ; Move in 1mm from edge and up [z] 0.2mm\nG92 E0 ; Set extruder to [0] zero\nG1 X100 E12 F500 ; Extrude 30mm filiment along X axis 100mm long to prime and clean the nozzle\nG92 E0 ; Reset extruder to [0] zero end of cleaning run\nG1 E-1 F500 ; Retract filiment by 1 mm to reduce string effect\nG1 X180 F4000 ; quick wipe away from the filament line / purge\nM117 End Clean ; Indicate nozzle clean in progress on LCD\n;\nM117 Printing...\n; Begin printing with sliced GCode after here\n;" - }, - "machine_end_gcode": { - "default_value": ";\n; end_gcode\nG92 E0 ; zero the extruded length\nG1 E-5 F9000 ; retract\nM104 S0 ; turn off temperature\nM140 S0 ; turn off bed\nG91 ; relative positioning\nG1 E-1 F300 ; retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+20 E-5 X-20 Y-20 F7200 ; move Z up a bit and retract filament even more\nG1 X320 Y150 F10000 ; move right mid\nM107 ; turn off layer fan\nM84 ; disable motors\nG90 ; absolute positioning\n;\n;EOF" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 400 }, + "machine_max_jerk_xy": { "default_value": 6 }, + "machine_name": { "default_value": "Tevo Tornado" }, + "machine_start_gcode": { "default_value": "; start_gcode\nM117 Start Clean ; Indicate nozzle clean in progress on LCD\n;\nM104 S{material_print_temperature_layer_0} \nM109 S{material_print_temperature_layer_0} \nM109 R{material_print_temperature_layer_0} \n;\nM107 ; Turn layer fan off\nG21 ; Set to metric [change to G20 if you want Imperial]\nG90 ; Force coordinates to be absolute relative to the origin\nG28 ; Home X/Y/Z axis\n;\nG1 X3 Y1 Z15 F9000 ; Move safe Z height to shear strings\nG0 X1 Y1 Z0.2 F9000 ; Move in 1mm from edge and up [z] 0.2mm\nG92 E0 ; Set extruder to [0] zero\nG1 X100 E12 F500 ; Extrude 30mm filiment along X axis 100mm long to prime and clean the nozzle\nG92 E0 ; Reset extruder to [0] zero end of cleaning run\nG1 E-1 F500 ; Retract filiment by 1 mm to reduce string effect\nG1 X180 F4000 ; quick wipe away from the filament line / purge\nM117 End Clean ; Indicate nozzle clean in progress on LCD\n;\nM117 Printing...\n; Begin printing with sliced GCode after here\n;" }, + "machine_width": { "default_value": 300 }, + "retraction_amount": { "default_value": 6.8 }, + "retraction_enable": { "default_value": true }, + "retraction_speed": { "default_value": 40 }, + "skirt_gap": { "default_value": 10 }, + "skirt_line_count": { "default_value": 4 }, + "top_bottom_pattern": { "default_value": "lines" }, + "top_bottom_thickness": { "default_value": 1.2 } } -} +} \ No newline at end of file diff --git a/resources/definitions/tinyboy_e10.def.json b/resources/definitions/tinyboy_e10.def.json index 26c306cf4e..999e176ead 100644 --- a/resources/definitions/tinyboy_e10.def.json +++ b/resources/definitions/tinyboy_e10.def.json @@ -2,30 +2,24 @@ "version": 2, "name": "TinyBoy E10/J10/L10/M10", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Fred Chan", "manufacturer": "TinyBoy", "file_formats": "text/x-gcode", - "has_materials": false, "has_machine_quality": true, - "preferred_quality_type": "normal", - "machine_extruder_trains": - { - "0": "tinyboy_extruder_0" - } + "has_materials": false, + "machine_extruder_trains": { "0": "tinyboy_extruder_0" }, + "preferred_quality_type": "normal" }, - - "overrides": { - "machine_name": { "default_value": "TinyBoy E10" }, - "machine_width": { "default_value": 100 }, + "overrides": + { "machine_depth": { "default_value": 100 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E80\nG1 E-80 F2000\nG28 X0 Y0\nM84" }, "machine_height": { "default_value": 105 }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E80\nG1 E-80 F2000\nG28 X0 Y0\nM84" - } + "machine_name": { "default_value": "TinyBoy E10" }, + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" }, + "machine_width": { "default_value": 100 } } -} +} \ No newline at end of file diff --git a/resources/definitions/tinyboy_e16.def.json b/resources/definitions/tinyboy_e16.def.json index 7f63405c79..38a18cb377 100644 --- a/resources/definitions/tinyboy_e16.def.json +++ b/resources/definitions/tinyboy_e16.def.json @@ -2,30 +2,24 @@ "version": 2, "name": "TinyBoy E16/L16/M16", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Fred Chan", "manufacturer": "TinyBoy", "file_formats": "text/x-gcode", - "has_materials": false, "has_machine_quality": true, - "preferred_quality_type": "normal", - "machine_extruder_trains": - { - "0": "tinyboy_extruder_0" - } + "has_materials": false, + "machine_extruder_trains": { "0": "tinyboy_extruder_0" }, + "preferred_quality_type": "normal" }, - - "overrides": { - "machine_name": { "default_value": "TinyBoy E16" }, - "machine_width": { "default_value": 100 }, - "machine_depth": { "default_value": 100 }, + "overrides": + { + "machine_depth": { "default_value": 100 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E80\nG1 E-80 F2000\nG28 X0 Y0\nM84" }, "machine_height": { "default_value": 165 }, - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E80\nG1 E-80 F2000\nG28 X0 Y0\nM84" - } + "machine_name": { "default_value": "TinyBoy E16" }, + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" }, + "machine_width": { "default_value": 100 } } -} +} \ No newline at end of file diff --git a/resources/definitions/tinyboy_fabrikator15.def.json b/resources/definitions/tinyboy_fabrikator15.def.json index 9f440a249f..96c8a46847 100644 --- a/resources/definitions/tinyboy_fabrikator15.def.json +++ b/resources/definitions/tinyboy_fabrikator15.def.json @@ -1,43 +1,43 @@ -{ - "version": 2, - "name": "TinyBoy Fabrikator Mini 1.5", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Reiner Buehl", - "manufacturer": "TinyBoy", - "file_formats": "text/x-gcode", - "platform": "tinyboy_fabrikator15.stl", - "platform_offset": [-95, -3, -46], - "has_materials": true, - "preferred_material": "generic_pla_175", - "has_machine_quality": true, - "preferred_quality_type": "normal", - "machine_extruder_trains": - { - "0": "tinyboy_fabrikator15_extruder_0" - } - }, - - "overrides": { - "machine_name": { "default_value": "Fabrikator Mini 1.5" }, - "machine_width": { "default_value": 80 }, - "machine_depth": { "default_value": 80 }, - "machine_height": { "default_value": 80 }, - "machine_head_with_fans_polygon": { "default_value": [ - [-10, 35], - [-10, -18], - [28, -18], - [28, 35] - ] - }, - "gantry_height": { "value": 45 }, - "machine_center_is_zero": { "default_value": false }, - "machine_start_gcode": { - "default_value": ";Sliced at: {day} {date} {time}\n;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {infill_sparse_density}\n;Print time: {print_time}\n;Filament used: {filament_amount}m {filament_weight}g\n;Filament cost: {filament_cost}\nG21 ;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 X0.0 Y0.0 Z15.0 F6000 ;move the printhead up 15mm\nG92 E0 ;zero the extruded length\nM104 S{material_print_temperature} ;set extruder temperature\nM105\nM109 S{material_print_temperature} ;wait for extruder temperature\nG1 F200 E30 ;extrude 30mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F6000\n;Put printing message on LCD screen\nM117 Printing..." - }, - "machine_end_gcode": { - "default_value": ";End GCode\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F6000 ;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\n;{jobname}" - } - } -} +{ + "version": 2, + "name": "TinyBoy Fabrikator Mini 1.5", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Reiner Buehl", + "manufacturer": "TinyBoy", + "file_formats": "text/x-gcode", + "platform": "tinyboy_fabrikator15.stl", + "has_machine_quality": true, + "has_materials": true, + "machine_extruder_trains": { "0": "tinyboy_fabrikator15_extruder_0" }, + "platform_offset": [ + -95, + -3, + -46 + ], + "preferred_material": "generic_pla_175", + "preferred_quality_type": "normal" + }, + "overrides": + { + "gantry_height": { "value": 45 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 80 }, + "machine_end_gcode": { "default_value": ";End GCode\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F6000 ;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\n;{jobname}" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-10, 35], + [-10, -18], + [28, -18], + [28, 35] + ] + }, + "machine_height": { "default_value": 80 }, + "machine_name": { "default_value": "Fabrikator Mini 1.5" }, + "machine_start_gcode": { "default_value": ";Sliced at: {day} {date} {time}\n;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {infill_sparse_density}\n;Print time: {print_time}\n;Filament used: {filament_amount}m {filament_weight}g\n;Filament cost: {filament_cost}\nG21 ;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 X0.0 Y0.0 Z15.0 F6000 ;move the printhead up 15mm\nG92 E0 ;zero the extruded length\nM104 S{material_print_temperature} ;set extruder temperature\nM105\nM109 S{material_print_temperature} ;wait for extruder temperature\nG1 F200 E30 ;extrude 30mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F6000\n;Put printing message on LCD screen\nM117 Printing..." }, + "machine_width": { "default_value": 80 } + } +} \ No newline at end of file diff --git a/resources/definitions/tinyboy_ra20.def.json b/resources/definitions/tinyboy_ra20.def.json index 9f1e4c9071..f0bdd09170 100644 --- a/resources/definitions/tinyboy_ra20.def.json +++ b/resources/definitions/tinyboy_ra20.def.json @@ -2,35 +2,31 @@ "version": 2, "name": "TinyBoy RA20", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Fred Chan", "manufacturer": "TinyBoy", "file_formats": "text/x-gcode", "platform": "tinyboy_ra20.obj", - "platform_offset": [ 8, -73.3, -8 ], - "has_materials": false, "has_machine_quality": true, - "preferred_quality_type": "normal", - "machine_extruder_trains": - { - "0": "tinyboy_extruder_0" - } + "has_materials": false, + "machine_extruder_trains": { "0": "tinyboy_extruder_0" }, + "platform_offset": [ + 8, + -73.3, + -8 + ], + "preferred_quality_type": "normal" }, - - "overrides": { - "machine_name": { "default_value": "TinyBoy RA20" }, - "machine_width": { "default_value": 120 }, - "machine_depth": { "default_value": 120 }, - "machine_height": { "default_value": 205 }, + "overrides": + { + "machine_depth": { "default_value": 120 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E80\nG1 E-80 F2000\nG28 X0 Y0\nM84" }, "machine_heated_bed": { "default_value": true }, - - "machine_start_gcode": { - "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" - }, - "machine_end_gcode": { - "default_value": "M104 S0\nM140 S0\nG92 E80\nG1 E-80 F2000\nG28 X0 Y0\nM84" - } + "machine_height": { "default_value": 205 }, + "machine_name": { "default_value": "TinyBoy RA20" }, + "machine_start_gcode": { "default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform" }, + "machine_width": { "default_value": 120 } } -} - +} \ No newline at end of file diff --git a/resources/definitions/tizyx_evy.def.json b/resources/definitions/tizyx_evy.def.json index 5032ee16d7..fc2eadc2fb 100644 --- a/resources/definitions/tizyx_evy.def.json +++ b/resources/definitions/tizyx_evy.def.json @@ -1,41 +1,91 @@ { - "name": "Tizyx Evy", "version": 2, + "name": "Tizyx Evy", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Tizyx", "manufacturer": "Tizyx", "file_formats": "text/x-gcode", - + "platform": "tizyx_k25_platform.3mf", + "exclude_materials": [ + "chromatik_pla", + "dsm_arnitel2045_175", + "dsm_novamid1070_175", + "fabtotum_abs", + "fabtotum_nylon", + "fabtotum_pla", + "fabtotum_tpu", + "fiberlogy_hd_pla", + "filo3d_pla", + "filo3d_pla_green", + "filo3d_pla_red", + "generic_bam", + "generic_cpe", + "generic_cpe_175", + "generic_cpe_plus", + "generic_hips", + "generic_hips_175", + "generic_nylon", + "generic_nylon_175", + "generic_pc", + "generic_pc_175", + "generic_pp", + "generic_pva", + "generic_pva_175", + "generic_tpu", + "generic_tpu_175", + "imade3d_petg_green", + "imade3d_petg_pink", + "imade3d_pla_green", + "imade3d_pla_pink", + "innofill_innoflex60_175", + "octofiber_pla", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "verbatim_bvoh_175", + "Vertex_Delta_ABS", + "Vertex_Delta_PET", + "Vertex_Delta_PLA", + "Vertex_Delta_TPU", + "zyyx_pro_flex", + "zyyx_pro_pla" + ], + "first_start_actions": [ "MachineSettingsAction" ], "has_machine_quality": true, "has_materials": true, "has_variants": true, - - "preferred_variant_name": "0.4mm", + "machine_extruder_trains": { "0": "tizyx_evy_extruder_0" }, + "platform_offset": [ + 0, + -4, + 0 + ], "preferred_material": "tizyx_pla", "preferred_quality_type": "normal", - "exclude_materials": ["chromatik_pla", "dsm_arnitel2045_175", "dsm_novamid1070_175", "fabtotum_abs", "fabtotum_nylon", "fabtotum_pla", "fabtotum_tpu", "fiberlogy_hd_pla", "filo3d_pla", "filo3d_pla_green", "filo3d_pla_red", "generic_bam", "generic_cpe", "generic_cpe_175", "generic_cpe_plus", "generic_hips", "generic_hips_175", "generic_nylon", "generic_nylon_175", "generic_pc", "generic_pc_175","generic_pp", "generic_pva", "generic_pva_175", "generic_tpu", "generic_tpu_175", "imade3d_petg_green", "imade3d_petg_pink", "imade3d_pla_green", "imade3d_pla_pink", "innofill_innoflex60_175", "octofiber_pla", "polyflex_pla", "polymax_pla", "polyplus_pla", "polywood_pla", "ultimaker_abs_black", "ultimaker_abs_blue", "ultimaker_abs_green", "ultimaker_abs_grey", "ultimaker_abs_orange", "ultimaker_abs_pearl-gold", "ultimaker_abs_red", "ultimaker_abs_silver-metallic", "ultimaker_abs_white", "ultimaker_abs_yellow", "ultimaker_bam", "ultimaker_cpe_black", "ultimaker_cpe_blue", "ultimaker_cpe_dark-grey", "ultimaker_cpe_green", "ultimaker_cpe_light-grey", "ultimaker_cpe_plus_black", "ultimaker_cpe_plus_transparent", "ultimaker_cpe_plus_white", "ultimaker_cpe_red", "ultimaker_cpe_transparent", "ultimaker_cpe_white", "ultimaker_cpe_yellow", "ultimaker_nylon_black", "ultimaker_nylon_transparent", "ultimaker_pc_black", "ultimaker_pc_transparent", "ultimaker_pc_white", "ultimaker_pla_black", "ultimaker_pla_blue", "ultimaker_pla_green", "ultimaker_pla_magenta", "ultimaker_pla_orange", "ultimaker_pla_pearl-white", "ultimaker_pla_red", "ultimaker_pla_silver-metallic", "ultimaker_pla_transparent", "ultimaker_pla_white", "ultimaker_pla_yellow", "ultimaker_pp_transparent", "ultimaker_pva", "ultimaker_tough_pla_black", "ultimaker_tough_pla_green", "ultimaker_tough_pla_red", "ultimaker_tough_pla_white", "ultimaker_tpu_black", "ultimaker_tpu_blue", "ultimaker_tpu_red", "ultimaker_tpu_white", "verbatim_bvoh_175", "Vertex_Delta_ABS", "Vertex_Delta_PET", "Vertex_Delta_PLA", "Vertex_Delta_TPU", "zyyx_pro_flex", "zyyx_pro_pla" ], - - "machine_extruder_trains": - { - "0": "tizyx_evy_extruder_0" - }, - "platform": "tizyx_k25_platform.3mf", - "platform_offset": [0, -4, 0], - "first_start_actions": ["MachineSettingsAction"], - "supported_actions": ["MachineSettingsAction"] + "preferred_variant_name": "0.4mm", + "supported_actions": [ "MachineSettingsAction" ] }, - - "overrides": { - "machine_extruder_count": { "default_value": 1 }, - "machine_heated_bed": { "default_value": true }, - "machine_center_is_zero": { "default_value": false }, + "overrides": + { + "acceleration_enabled": { "value": "False" }, + "acceleration_print": { "value": "1500" }, + "adhesion_type": { "default_value": "skirt" }, + "cool_min_layer_time": { "default_value": 11 }, + "fill_outline_gaps": { "default_value": true }, "gantry_height": { "value": "500" }, - "machine_height": { "default_value": 255 }, + "infill_sparse_density": { "default_value": 15 }, + "layer_height": { "maximum_value": "(0.8 * min(extruderValues('machine_nozzle_size')))" }, + "layer_height_0": { "maximum_value": "(0.8 * min(extruderValues('machine_nozzle_size')))" }, + "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 255 }, - "machine_width": { "default_value": 255 }, - "machine_head_with_fans_polygon": { + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG91\nG1 E-5 F300\nG1 Z+3 F3000\nG1 Y245 F3000\nM84" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_head_with_fans_polygon": + { "default_value": [ [25, 49], [25, -49], @@ -43,33 +93,18 @@ [25, 49] ] }, - - "adhesion_type": { "default_value": "skirt" }, - "skirt_line_count": {"default_value": 2}, - "skirt_gap": { "default_value": 2}, - "fill_outline_gaps": { "default_value": true}, - "infill_sparse_density": { "default_value": 15}, - "retraction_amount": { "default_value": 2.5}, - "retraction_speed": { "default_value": 30}, - "speed_print": { "default_value": 60}, - "cool_min_layer_time": { "default_value": 11}, - "layer_height": { "maximum_value": "(0.8 * min(extruderValues('machine_nozzle_size')))" }, - "layer_height_0": { "maximum_value": "(0.8 * min(extruderValues('machine_nozzle_size')))" }, - - "machine_start_gcode": - { - "default_value": "M82\nG90\nG28 X\nG28 Y\nG28 Z\nG29\nG91\nG1 Z0\nG90\nM82\nG92 E0\nG1 X125 Y245 F3000\nG1 Z0" - }, - "machine_end_gcode": - { - "default_value": "M104 S0\nM140 S0\nG91\nG1 E-5 F300\nG1 Z+3 F3000\nG1 Y245 F3000\nM84" - }, - - "acceleration_enabled": {"value": "False"}, - "acceleration_print": {"value": "1500"}, - "z_seam_type": {"default_value": "back"}, - "z_seam_x": {"value": "127.5"}, - "z_seam_y": {"value": "250"}, - "retraction_combing": {"value": "'off'"} + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 255 }, + "machine_start_gcode": { "default_value": "M82\nG90\nG28 X\nG28 Y\nG28 Z\nG29\nG91\nG1 Z0\nG90\nM82\nG92 E0\nG1 X125 Y245 F3000\nG1 Z0" }, + "machine_width": { "default_value": 255 }, + "retraction_amount": { "default_value": 2.5 }, + "retraction_combing": { "value": "'off'" }, + "retraction_speed": { "default_value": 30 }, + "skirt_gap": { "default_value": 2 }, + "skirt_line_count": { "default_value": 2 }, + "speed_print": { "default_value": 60 }, + "z_seam_type": { "default_value": "back" }, + "z_seam_x": { "value": "127.5" }, + "z_seam_y": { "value": "250" } } -} +} \ No newline at end of file diff --git a/resources/definitions/tizyx_evy_dual.def.json b/resources/definitions/tizyx_evy_dual.def.json index 2aafa5cecc..1ea1095af5 100644 --- a/resources/definitions/tizyx_evy_dual.def.json +++ b/resources/definitions/tizyx_evy_dual.def.json @@ -1,42 +1,80 @@ { - "name": "Tizyx Evy Dual", "version": 2, + "name": "Tizyx Evy Dual", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Tizyx", "manufacturer": "Tizyx", "file_formats": "text/x-gcode", - + "platform": "tizyx_k25_platform.3mf", + "exclude_materials": [ + "chromatik_pla", + "dsm_arnitel2045_175", + "dsm_novamid1070_175", + "fabtotum_abs", + "fabtotum_nylon", + "fabtotum_pla", + "fabtotum_tpu", + "fiberlogy_hd_pla", + "filo3d_pla", + "filo3d_pla_green", + "filo3d_pla_red", + "generic_cpe_175", + "generic_cpe_plus", + "generic_hips_175", + "generic_nylon_175", + "generic_pc_175", + "generic_pva_175", + "imade3d_petg_green", + "imade3d_petg_pink", + "imade3d_pla_green", + "imade3d_pla_pink", + "innofill_innoflex60_175", + "octofiber_pla", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "verbatim_bvoh_175", + "Vertex_Delta_ABS", + "Vertex_Delta_PET", + "Vertex_Delta_PLA", + "Vertex_Delta_TPU", + "zyyx_pro_flex", + "zyyx_pro_pla" + ], + "first_start_actions": [ "MachineSettingsAction" ], "has_machine_quality": true, "has_materials": true, "has_variants": true, - "preferred_variant_name": "Classic Extruder", - - "preferred_material": "tizyx_pla", - "preferred_quality_type": "normal", - "exclude_materials": ["chromatik_pla", "dsm_arnitel2045_175", "dsm_novamid1070_175", "fabtotum_abs", "fabtotum_nylon", "fabtotum_pla", "fabtotum_tpu", "fiberlogy_hd_pla", "filo3d_pla", "filo3d_pla_green", "filo3d_pla_red", "generic_cpe_175", "generic_cpe_plus","generic_hips_175","generic_nylon_175", "generic_pc_175", "generic_pva_175", "imade3d_petg_green", "imade3d_petg_pink", "imade3d_pla_green", "imade3d_pla_pink", "innofill_innoflex60_175", "octofiber_pla", "polyflex_pla", "polymax_pla", "polyplus_pla", "polywood_pla", "verbatim_bvoh_175", "Vertex_Delta_ABS", "Vertex_Delta_PET", "Vertex_Delta_PLA", "Vertex_Delta_TPU", "zyyx_pro_flex", "zyyx_pro_pla" ], - "machine_extruder_trains": { "0": "tizyx_evy_dual_extruder_0", "1": "tizyx_evy_dual_extruder_1" }, - "platform": "tizyx_k25_platform.3mf", - "platform_offset": [0, -4, 0], - "first_start_actions": ["MachineSettingsAction"], - "supported_actions": ["MachineSettingsAction"] + "platform_offset": [ + 0, + -4, + 0 + ], + "preferred_material": "tizyx_pla", + "preferred_quality_type": "normal", + "preferred_variant_name": "Classic Extruder", + "supported_actions": [ "MachineSettingsAction" ] }, - - "overrides": { - "machine_extruder_count": { "default_value": 2 }, - "machine_heated_bed": { "default_value": true }, - "machine_center_is_zero": { "default_value": false }, + "overrides": + { + "acceleration_enabled": { "value": "False" }, + "acceleration_print": { "value": "1500" }, "gantry_height": { "value": "500" }, - "machine_height": { "default_value": 255 }, + "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 255 }, - "machine_width": { "default_value": 255 }, - "machine_head_with_fans_polygon": { + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG91\nG1 E-5 F300\nG1 Z+3 F3000\nG1 Y245 F3000\nM84" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_head_with_fans_polygon": + { "default_value": [ [25, 49], [25, -49], @@ -44,20 +82,13 @@ [25, 49] ] }, - "machine_start_gcode": - { - "default_value": "M82\nG90\nG28 X\nG28 Y\nG28 Z\nG29\nG91\nG1 Z0\nG90\nM82\nG92 E0\nG1 X125 Y245 F3000\nG1 Z0" - }, - "machine_end_gcode": - { - "default_value": "M104 S0\nM140 S0\nG91\nG1 E-5 F300\nG1 Z+3 F3000\nG1 Y245 F3000\nM84" - }, - - "acceleration_enabled": {"value": "False"}, - "acceleration_print": {"value": "1500"}, - "z_seam_type": {"default_value": "back"}, - "z_seam_x": {"value": "127.5"}, - "z_seam_y": {"value": "250"}, - "retraction_combing": {"value": "'off'"} + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 255 }, + "machine_start_gcode": { "default_value": "M82\nG90\nG28 X\nG28 Y\nG28 Z\nG29\nG91\nG1 Z0\nG90\nM82\nG92 E0\nG1 X125 Y245 F3000\nG1 Z0" }, + "machine_width": { "default_value": 255 }, + "retraction_combing": { "value": "'off'" }, + "z_seam_type": { "default_value": "back" }, + "z_seam_x": { "value": "127.5" }, + "z_seam_y": { "value": "250" } } -} +} \ No newline at end of file diff --git a/resources/definitions/tizyx_k25.def.json b/resources/definitions/tizyx_k25.def.json index 9f65d67313..cc301ab54e 100644 --- a/resources/definitions/tizyx_k25.def.json +++ b/resources/definitions/tizyx_k25.def.json @@ -1,60 +1,104 @@ -{ - "version": 2, - "name": "Tizyx K25", - "inherits": "fdmprinter", - "metadata": - { - "visible": true, - "author": "Tizyx", - "manufacturer": "Tizyx", - "file_formats": "text/x-gcode", - "platform": "tizyx_k25_platform.3mf", - "platform_offset": [0, -4, 0], - "exclude_materials": ["chromatik_pla", "dsm_arnitel2045_175", "dsm_novamid1070_175", "fabtotum_abs", "fabtotum_nylon", "fabtotum_pla", "fabtotum_tpu", "fiberlogy_hd_pla", "filo3d_pla", "filo3d_pla_green", "filo3d_pla_red", "generic_abs", "generic_abs_175", "generic_bam", "generic_cpe", "generic_cpe_175", "generic_cpe_plus", "generic_hips", "generic_hips_175", "generic_nylon", "generic_nylon_175", "generic_pc", "generic_pc_175", "generic_petg", "generic_petg_175", "generic_pla", "generic_pla_175", "generic_pp", "generic_pva", "generic_pva_175", "generic_tough_pla", "generic_tpu", "generic_tpu_175", "imade3d_petg_green", "imade3d_petg_pink", "imade3d_pla_green", "imade3d_pla_pink", "innofill_innoflex60_175", "octofiber_pla", "polyflex_pla", "polymax_pla", "polyplus_pla", "polywood_pla", "ultimaker_abs_black", "ultimaker_abs_blue", "ultimaker_abs_green", "ultimaker_abs_grey", "ultimaker_abs_orange", "ultimaker_abs_pearl-gold", "ultimaker_abs_red", "ultimaker_abs_silver-metallic", "ultimaker_abs_white", "ultimaker_abs_yellow", "ultimaker_bam", "ultimaker_cpe_black", "ultimaker_cpe_blue", "ultimaker_cpe_dark-grey", "ultimaker_cpe_green", "ultimaker_cpe_light-grey", "ultimaker_cpe_plus_black", "ultimaker_cpe_plus_transparent", "ultimaker_cpe_plus_white", "ultimaker_cpe_red", "ultimaker_cpe_transparent", "ultimaker_cpe_white", "ultimaker_cpe_yellow", "ultimaker_nylon_black", "ultimaker_nylon_transparent", "ultimaker_pc_black", "ultimaker_pc_transparent", "ultimaker_pc_white", "ultimaker_pla_black", "ultimaker_pla_blue", "ultimaker_pla_green", "ultimaker_pla_magenta", "ultimaker_pla_orange", "ultimaker_pla_pearl-white", "ultimaker_pla_red", "ultimaker_pla_silver-metallic", "ultimaker_pla_transparent", "ultimaker_pla_white", "ultimaker_pla_yellow", "ultimaker_pp_transparent", "ultimaker_pva", "ultimaker_tough_pla_black", "ultimaker_tough_pla_green", "ultimaker_tough_pla_red", "ultimaker_tough_pla_white", "ultimaker_tpu_black", "ultimaker_tpu_blue", "ultimaker_tpu_red", "ultimaker_tpu_white", "verbatim_bvoh_175", "Vertex_Delta_ABS", "Vertex_Delta_PET", "Vertex_Delta_PLA", "Vertex_Delta_TPU", "zyyx_pro_flex", "zyyx_pro_pla" ], - "preferred_material": "tizyx_pla", - "has_machine_quality": true, - "has_materials": true, - "has_variants": true, - "preferred_variant_name": "0.4 mm", - "machine_extruder_trains": - { - "0": "tizyx_k25_extruder_0" - } - }, - - "overrides": - { - "machine_name": { "default_value": "TiZYX K25" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 255 }, - "machine_height": { "default_value": 255 }, - "machine_depth": { "default_value": 255 }, - "machine_center_is_zero": { "default_value": false }, - "gantry_height": { "value": "500" }, - "machine_head_with_fans_polygon": { - "default_value": [ - [25, 49], - [25, -49], - [-25, -49], - [25, 49] - ] - }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": - { - "default_value": "M82\nG90\nG28 X\nG28 Y\nG28 Z\nG29\nG91\nG1 Z0\nG90\nM82\nG92 E0\nG1 X125 Y245 F3000\nG1 Z0" - }, - "machine_end_gcode": - { - "default_value": "M104 S0\nM140 S0\nG91\nG1 E-5 F300\nG1 Z+3 F3000\nG1 Y245 F3000\nM84" - }, - - - "acceleration_enabled": {"value": "False"}, - "acceleration_print": {"value": "1500"}, - "z_seam_type": {"default_value": "back"}, - "z_seam_x": {"value": "127.5"}, - "z_seam_y": {"value": "250"}, - "retraction_combing": {"value": "'off'"} - } -} +{ + "version": 2, + "name": "Tizyx K25", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Tizyx", + "manufacturer": "Tizyx", + "file_formats": "text/x-gcode", + "platform": "tizyx_k25_platform.3mf", + "exclude_materials": [ + "chromatik_pla", + "dsm_arnitel2045_175", + "dsm_novamid1070_175", + "fabtotum_abs", + "fabtotum_nylon", + "fabtotum_pla", + "fabtotum_tpu", + "fiberlogy_hd_pla", + "filo3d_pla", + "filo3d_pla_green", + "filo3d_pla_red", + "generic_abs", + "generic_abs_175", + "generic_bam", + "generic_cpe", + "generic_cpe_175", + "generic_cpe_plus", + "generic_hips", + "generic_hips_175", + "generic_nylon", + "generic_nylon_175", + "generic_pc", + "generic_pc_175", + "generic_petg", + "generic_petg_175", + "generic_pla", + "generic_pla_175", + "generic_pp", + "generic_pva", + "generic_pva_175", + "generic_tough_pla", + "generic_tpu", + "generic_tpu_175", + "imade3d_petg_green", + "imade3d_petg_pink", + "imade3d_pla_green", + "imade3d_pla_pink", + "innofill_innoflex60_175", + "octofiber_pla", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "verbatim_bvoh_175", + "Vertex_Delta_ABS", + "Vertex_Delta_PET", + "Vertex_Delta_PLA", + "Vertex_Delta_TPU", + "zyyx_pro_flex", + "zyyx_pro_pla" + ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "tizyx_k25_extruder_0" }, + "platform_offset": [ + 0, + -4, + 0 + ], + "preferred_material": "tizyx_pla", + "preferred_variant_name": "0.4 mm" + }, + "overrides": + { + "acceleration_enabled": { "value": "False" }, + "acceleration_print": { "value": "1500" }, + "gantry_height": { "value": "500" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 255 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG91\nG1 E-5 F300\nG1 Z+3 F3000\nG1 Y245 F3000\nM84" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [25, 49], + [25, -49], + [-25, -49], + [25, 49] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 255 }, + "machine_name": { "default_value": "TiZYX K25" }, + "machine_start_gcode": { "default_value": "M82\nG90\nG28 X\nG28 Y\nG28 Z\nG29\nG91\nG1 Z0\nG90\nM82\nG92 E0\nG1 X125 Y245 F3000\nG1 Z0" }, + "machine_width": { "default_value": 255 }, + "retraction_combing": { "value": "'off'" }, + "z_seam_type": { "default_value": "back" }, + "z_seam_x": { "value": "127.5" }, + "z_seam_y": { "value": "250" } + } +} \ No newline at end of file diff --git a/resources/definitions/trimaker_cosmosII.def.json b/resources/definitions/trimaker_cosmosII.def.json index 45072df1b1..475eb4e371 100644 --- a/resources/definitions/trimaker_cosmosII.def.json +++ b/resources/definitions/trimaker_cosmosII.def.json @@ -2,20 +2,13 @@ "version": 2, "name": "Trimaker Cosmos II", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Trimaker", "manufacturer": "Trimaker", "file_formats": "text/x-gcode", "platform": "trimaker_cosmosII_platform.stl", - "platform_offset": [-110.5, -28.3, 134], - - "has_machine_quality": true, - "preferred_quality_type": "normal", - "preferred_material": "redd_pla", - - "has_materials": true, - "machine_extruder_trains": {"0": "trimaker_cosmosII_extruder"}, "exclude_materials": [ "chromatik_pla", "dsm_arnitel2045_175", @@ -89,55 +82,6 @@ "tizyx_pla", "tizyx_pla_bois", "tizyx_pva", - "ultimaker_abs_black", - "ultimaker_abs_blue", - "ultimaker_abs_green", - "ultimaker_abs_grey", - "ultimaker_abs_orange", - "ultimaker_abs_pearl-gold", - "ultimaker_abs_red", - "ultimaker_abs_silver-metallic", - "ultimaker_abs_white", - "ultimaker_abs_yellow", - "ultimaker_bam", - "ultimaker_cpe_black", - "ultimaker_cpe_blue", - "ultimaker_cpe_dark-grey", - "ultimaker_cpe_green", - "ultimaker_cpe_light-grey", - "ultimaker_cpe_plus_black", - "ultimaker_cpe_plus_transparent", - "ultimaker_cpe_plus_white", - "ultimaker_cpe_red", - "ultimaker_cpe_transparent", - "ultimaker_cpe_white", - "ultimaker_cpe_yellow", - "ultimaker_nylon_black", - "ultimaker_nylon_transparent", - "ultimaker_pc_black", - "ultimaker_pc_transparent", - "ultimaker_pc_white", - "ultimaker_pla_black", - "ultimaker_pla_blue", - "ultimaker_pla_green", - "ultimaker_pla_magenta", - "ultimaker_pla_orange", - "ultimaker_pla_pearl-white", - "ultimaker_pla_red", - "ultimaker_pla_silver-metallic", - "ultimaker_pla_transparent", - "ultimaker_pla_white", - "ultimaker_pla_yellow", - "ultimaker_pp_transparent", - "ultimaker_pva", - "ultimaker_tough_pla_black", - "ultimaker_tough_pla_green", - "ultimaker_tough_pla_red", - "ultimaker_tough_pla_white", - "ultimaker_tpu_black", - "ultimaker_tpu_blue", - "ultimaker_tpu_red", - "ultimaker_tpu_white", "verbatim_bvoh_175", "Vertex_Delta_ABS", "Vertex_Delta_PET", @@ -149,50 +93,56 @@ "Vertex_Delta_TPU", "zyyx_pro_flex", "zyyx_pro_pla" - ] + ], + "has_machine_quality": true, + "has_materials": true, + "machine_extruder_trains": { "0": "trimaker_cosmosII_extruder" }, + "platform_offset": [ + -110.5, + -28.3, + 134 + ], + "preferred_material": "redd_pla", + "preferred_quality_type": "normal" }, - - "overrides": { - - "machine_name": {"default_value": "Trimaker Cosmos II"}, - "machine_width": {"default_value": 200}, - "machine_depth": {"default_value": 200}, - "machine_height": {"default_value": 200}, - - "layer_height": {"default_value": 0.2}, - "material_flow": {"value": 100}, - "xy_offset": {"default_value": 0}, - "xy_offset_layer_0": {"value": -0.1}, - "wall_thickness": {"value": "line_width * 3" }, - "top_bottom_thickness": {"value": "layer_height * 6"}, - "infill_sparse_density": {"default_value": 25}, - "infill_pattern": {"value": "'grid'"}, - "infill_sparse_thickness": {"value": "resolveOrValue('layer_height')"}, - "default_material_bed_temperature": {"default_value": 60}, - "default_material_print_temperature": {"default_value": 200}, - "speed_print": {"default_value": 45}, - "speed_travel": {"value": "speed_print if magic_spiralize else 100"}, - "speed_wall_0": {"value": 35}, - "speed_wall_x": {"value": 45}, - "retraction_enable": {"default_value": true}, - "retraction_amount": {"default_value": 1}, - "retraction_speed": {"default_value": 45}, - "cool_fan_enabled": {"default_value": true}, - "cool_fan_speed": {"value": "100.0 if cool_fan_enabled else 0.0"}, - "support_enable": {"default_value": true}, - "support_type": {"default_value": "everywhere"}, - "support_angle": {"default_value": 50}, - "support_pattern": {"default_value": "zigzag"}, - "support_z_distance": {"default_value": 0.17}, - "support_xy_distance": {"default_value": 0.7}, - "adhesion_type": {"default_value": "skirt"}, - - "gantry_height": {"value": 2}, - "machine_start_gcode": {"default_value": ";Start GCode - Cosmos II - 3.x.x_SEGcTK_1.1\n M104 S120; Comienzo a calentar extrusor\n G21; Unidades en mm\n G90; absolute positioning\n M82; set extruder to absolute mode\n M107; Apagar FAN\n G28; Home\n M190 S{material_bed_temperature_layer_0}\n G29; Senso la cama\n M500\n G1 F5000 X0.5 Y0.5\n M109 S{material_print_temperature}\n M900 K0.04\n G1 F200 Z10\n G92 E0; Defino cero en la posición del actual del extrusor\n G1 F200 X0.5 Y0.5 Z0.300; Posiciono antes de hacer una línea\n G1 F900 X0.5 Y51.5 E2.56436; Hago una línea\n "}, - "machine_end_gcode": {"default_value": ";CODIGO FINAL\n M107; Fan off\n G90; Set to absolute positioning\n G1 X0 Y0 Z201; Get extruder out of way\n G92 E0; Reset extruder position\n G1 E-1; Reduce filament pressure\n G92 E0; Reset extruder position again\n M140 S0; Disable heated bed\n M104 S0; Disable extruder\n M84; Turn steppers off"}, - "machine_heated_bed": {"default_value": true}, - "material_diameter": {"default_value": 1.75}, - "machine_center_is_zero": {"default_value": false} - + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "cool_fan_enabled": { "default_value": true }, + "cool_fan_speed": { "value": "100.0 if cool_fan_enabled else 0.0" }, + "default_material_bed_temperature": { "default_value": 60 }, + "default_material_print_temperature": { "default_value": 200 }, + "gantry_height": { "value": 2 }, + "infill_pattern": { "value": "'grid'" }, + "infill_sparse_density": { "default_value": 25 }, + "infill_sparse_thickness": { "value": "resolveOrValue('layer_height')" }, + "layer_height": { "default_value": 0.2 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": ";CODIGO FINAL\n M107; Fan off\n G90; Set to absolute positioning\n G1 X0 Y0 Z201; Get extruder out of way\n G92 E0; Reset extruder position\n G1 E-1; Reduce filament pressure\n G92 E0; Reset extruder position again\n M140 S0; Disable heated bed\n M104 S0; Disable extruder\n M84; Turn steppers off" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "Trimaker Cosmos II" }, + "machine_start_gcode": { "default_value": ";Start GCode - Cosmos II - 3.x.x_SEGcTK_1.1\n M104 S120; Comienzo a calentar extrusor\n G21; Unidades en mm\n G90; absolute positioning\n M82; set extruder to absolute mode\n M107; Apagar FAN\n G28; Home\n M190 S{material_bed_temperature_layer_0}\n G29; Senso la cama\n M500\n G1 F5000 X0.5 Y0.5\n M109 S{material_print_temperature}\n M900 K0.04\n G1 F200 Z10\n G92 E0; Defino cero en la posici\u00f3n del actual del extrusor\n G1 F200 X0.5 Y0.5 Z0.300; Posiciono antes de hacer una l\u00ednea\n G1 F900 X0.5 Y51.5 E2.56436; Hago una l\u00ednea\n " }, + "machine_width": { "default_value": 200 }, + "material_diameter": { "default_value": 1.75 }, + "material_flow": { "value": 100 }, + "retraction_amount": { "default_value": 1 }, + "retraction_enable": { "default_value": true }, + "retraction_speed": { "default_value": 45 }, + "speed_print": { "default_value": 45 }, + "speed_travel": { "value": "speed_print if magic_spiralize else 100" }, + "speed_wall_0": { "value": 35 }, + "speed_wall_x": { "value": 45 }, + "support_angle": { "default_value": 50 }, + "support_enable": { "default_value": true }, + "support_pattern": { "default_value": "zigzag" }, + "support_type": { "default_value": "everywhere" }, + "support_xy_distance": { "default_value": 0.7 }, + "support_z_distance": { "default_value": 0.17 }, + "top_bottom_thickness": { "value": "layer_height * 6" }, + "wall_thickness": { "value": "line_width * 3" }, + "xy_offset": { "default_value": 0 }, + "xy_offset_layer_0": { "value": -0.1 } } -} +} \ No newline at end of file diff --git a/resources/definitions/trimaker_nebula.def.json b/resources/definitions/trimaker_nebula.def.json index dd8e3a565c..c380f34a9a 100644 --- a/resources/definitions/trimaker_nebula.def.json +++ b/resources/definitions/trimaker_nebula.def.json @@ -2,20 +2,13 @@ "version": 2, "name": "Trimaker Nebula", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Trimaker", "manufacturer": "Trimaker", "file_formats": "text/x-gcode", "platform": "trimaker_nebula_platform.stl", - - "has_machine_quality": true, - "preferred_quality_type": "normal", - "preferred_material": "redd_pla", - - "platform_offset": [-117.5, -40, 147.5], - "has_materials": true, - "machine_extruder_trains": {"0": "trimaker_nebula_extruder"}, "exclude_materials": [ "chromatik_pla", "dsm_arnitel2045_175", @@ -89,55 +82,6 @@ "tizyx_pla", "tizyx_pla_bois", "tizyx_pva", - "ultimaker_abs_black", - "ultimaker_abs_blue", - "ultimaker_abs_green", - "ultimaker_abs_grey", - "ultimaker_abs_orange", - "ultimaker_abs_pearl-gold", - "ultimaker_abs_red", - "ultimaker_abs_silver-metallic", - "ultimaker_abs_white", - "ultimaker_abs_yellow", - "ultimaker_bam", - "ultimaker_cpe_black", - "ultimaker_cpe_blue", - "ultimaker_cpe_dark-grey", - "ultimaker_cpe_green", - "ultimaker_cpe_light-grey", - "ultimaker_cpe_plus_black", - "ultimaker_cpe_plus_transparent", - "ultimaker_cpe_plus_white", - "ultimaker_cpe_red", - "ultimaker_cpe_transparent", - "ultimaker_cpe_white", - "ultimaker_cpe_yellow", - "ultimaker_nylon_black", - "ultimaker_nylon_transparent", - "ultimaker_pc_black", - "ultimaker_pc_transparent", - "ultimaker_pc_white", - "ultimaker_pla_black", - "ultimaker_pla_blue", - "ultimaker_pla_green", - "ultimaker_pla_magenta", - "ultimaker_pla_orange", - "ultimaker_pla_pearl-white", - "ultimaker_pla_red", - "ultimaker_pla_silver-metallic", - "ultimaker_pla_transparent", - "ultimaker_pla_white", - "ultimaker_pla_yellow", - "ultimaker_pp_transparent", - "ultimaker_pva", - "ultimaker_tough_pla_black", - "ultimaker_tough_pla_green", - "ultimaker_tough_pla_red", - "ultimaker_tough_pla_white", - "ultimaker_tpu_black", - "ultimaker_tpu_blue", - "ultimaker_tpu_red", - "ultimaker_tpu_white", "verbatim_bvoh_175", "Vertex_Delta_ABS", "Vertex_Delta_PET", @@ -149,50 +93,57 @@ "Vertex_Delta_TPU", "zyyx_pro_flex", "zyyx_pro_pla" - ] + ], + "has_machine_quality": true, + "has_materials": true, + "machine_extruder_trains": { "0": "trimaker_nebula_extruder" }, + "platform_offset": [ + -117.5, + -40, + 147.5 + ], + "preferred_material": "redd_pla", + "preferred_quality_type": "normal" }, - - "overrides": { - - "machine_name": {"default_value": "Trimaker Nebula"}, - "machine_width": {"default_value": 230}, - "machine_depth": {"default_value": 230}, - "machine_height": {"default_value": 260}, - - "layer_height": {"default_value": 0.2}, - "material_flow": {"value": 100}, - "xy_offset": {"default_value": 0}, - "xy_offset_layer_0": {"value": -0.1}, - "wall_thickness": {"value": "line_width * 3" }, - "top_bottom_thickness": {"value": "layer_height * 6"}, - "infill_sparse_density": {"default_value": 25}, - "infill_pattern": {"value": "'grid'"}, - "infill_sparse_thickness": {"value": "resolveOrValue('layer_height')"}, - "default_material_bed_temperature": {"default_value": 60}, - "default_material_print_temperature": {"default_value": 200}, - "speed_print": {"default_value": 45}, - "speed_travel": {"value": "speed_print if magic_spiralize else 100"}, - "speed_wall_0": {"value": 35}, - "speed_wall_x": {"value": 45}, - "retraction_enable": {"default_value": true}, - "retraction_amount": {"default_value": 1}, - "retraction_speed": {"default_value": 45}, - "cool_fan_enabled": {"default_value": true}, - "cool_fan_speed": {"value": "100.0 if cool_fan_enabled else 0.0"}, - "support_enable": {"default_value": true}, - "support_type": {"default_value": "everywhere"}, - "support_angle": {"default_value": 50}, - "support_pattern": {"default_value": "zigzag"}, - "support_z_distance": {"default_value": 0.17}, - "support_xy_distance": {"default_value": 0.7}, - "adhesion_type": {"default_value": "skirt"}, - - "gantry_height": {"value": 2}, - "machine_start_gcode": {"default_value": ";Trimaker Nebula Start Code\n G21; Unidades en mm\n G90; Posicion absoluta\n M82; Extrusor en modo absoluto\n M107; Fan apagado\n G28 X Y Z; Enviamos a home a todos los ejes\n M900 K=0; Linear advance desactivado\n M104 S110; Precalentamos el extrusor hasta 110 grados\n M190 S{material_bed_temperature_layer_0}; Calentamos cama y esperamos\n G29; Senso la cama\n M500\n G1 F5000 X0.5 Y0.5\n M109 S{material_print_temperature}; Calentamos extrusor y esperamos\n G92 E0; E=0\n G1 F200 X0.5 Y0.5 Z0.300\n G1 F900 X0.5 Y51.5 E2.56436; Hacemos una linea para limpiar extrusor\n"}, - "machine_end_gcode": {"default_value": ";Trimaker Nebula End Code\n M107; Apagamos fan\n G90\n G92 E0\n G1 X0 Y200\n G91\n G1 Z5\n G92 E0\n M140 S0; Enfriamos\n M104 S0; Enfriamos\n M84\n G90\n M117 Impresion finalizada\n M300 S440 P700\n"}, - "machine_heated_bed": {"default_value": true}, - "material_diameter": {"default_value": 1.75}, - "machine_center_is_zero": {"default_value": false} - + "overrides": + { + "acceleration_enabled": { "value": true }, + "adhesion_type": { "default_value": "skirt" }, + "cool_fan_enabled": { "default_value": true }, + "cool_fan_speed": { "value": "100.0 if cool_fan_enabled else 0.0" }, + "default_material_bed_temperature": { "default_value": 60 }, + "default_material_print_temperature": { "default_value": 200 }, + "gantry_height": { "value": 2 }, + "infill_pattern": { "value": "'grid'" }, + "infill_sparse_density": { "default_value": 25 }, + "infill_sparse_thickness": { "value": "resolveOrValue('layer_height')" }, + "layer_height": { "default_value": 0.2 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 230 }, + "machine_end_gcode": { "default_value": ";Trimaker Nebula End Code\n M107; Apagamos fan\n G90\n G92 E0\n G1 X0 Y200\n G91\n G1 Z5\n G92 E0\n M140 S0; Enfriamos\n M104 S0; Enfriamos\n M84\n G90\n M117 Impresion finalizada\n M300 S440 P700\n" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 260 }, + "machine_name": { "default_value": "Trimaker Nebula" }, + "machine_start_gcode": { "default_value": ";Trimaker Nebula Start Code\n G21; Unidades en mm\n G90; Posicion absoluta\n M82; Extrusor en modo absoluto\n M107; Fan apagado\n G28 X Y Z; Enviamos a home a todos los ejes\n M900 K=0; Linear advance desactivado\n M104 S110; Precalentamos el extrusor hasta 110 grados\n M190 S{material_bed_temperature_layer_0}; Calentamos cama y esperamos\n G29; Senso la cama\n M500\n G1 F5000 X0.5 Y0.5\n M109 S{material_print_temperature}; Calentamos extrusor y esperamos\n G92 E0; E=0\n G1 F200 X0.5 Y0.5 Z0.300\n G1 F900 X0.5 Y51.5 E2.56436; Hacemos una linea para limpiar extrusor\n" }, + "machine_width": { "default_value": 230 }, + "material_diameter": { "default_value": 1.75 }, + "material_flow": { "value": 100 }, + "retraction_amount": { "default_value": 1 }, + "retraction_enable": { "default_value": true }, + "retraction_speed": { "default_value": 45 }, + "speed_print": { "default_value": 45 }, + "speed_travel": { "value": "speed_print if magic_spiralize else 100" }, + "speed_wall_0": { "value": 35 }, + "speed_wall_x": { "value": 45 }, + "support_angle": { "default_value": 50 }, + "support_enable": { "default_value": true }, + "support_pattern": { "default_value": "zigzag" }, + "support_type": { "default_value": "everywhere" }, + "support_xy_distance": { "default_value": 0.7 }, + "support_z_distance": { "default_value": 0.17 }, + "top_bottom_thickness": { "value": "layer_height * 6" }, + "wall_thickness": { "value": "line_width * 3" }, + "xy_offset": { "default_value": 0 }, + "xy_offset_layer_0": { "value": -0.1 } } -} +} \ No newline at end of file diff --git a/resources/definitions/trimaker_nebula_plus.def.json b/resources/definitions/trimaker_nebula_plus.def.json index 71fb729c0f..906ef4cb86 100644 --- a/resources/definitions/trimaker_nebula_plus.def.json +++ b/resources/definitions/trimaker_nebula_plus.def.json @@ -1,114 +1,124 @@ -{ - "version": 2, - "name": "Trimaker Nebula Plus", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Trimaker", - "manufacturer": "Trimaker", - "file_formats": "text/x-gcode", - "platform": "trimaker_nebula_platform.stl", - - "has_machine_quality": true, - "preferred_quality_type": "normal", - "preferred_material": "redd_pla", - - "platform_offset": [-117.5, -40, 147.5], - "has_materials": true, - "machine_extruder_trains": {"0": "trimaker_nebula_extruder"} - }, - - "overrides": { - - "machine_name": {"default_value": "Trimaker Nebula"}, - "machine_width": {"default_value": 230}, - "machine_depth": {"default_value": 230}, - "machine_height": {"default_value": 260}, - "machine_heated_bed": {"default_value": true}, - "machine_gcode_flavor": { "default_value": "Marlin (Volumetric)" }, - "machine_max_feedrate_x": { "default_value": 300 }, - "machine_max_feedrate_y": { "default_value": 300 }, - "machine_max_feedrate_z": { "default_value": 40 }, - "machine_acceleration": { "default_value": 3000 }, - "machine_extruder_count": { "default_value": 1 }, - - "acceleration_enabled": { "value": "True" }, - "acceleration_layer_0": { "value": "acceleration_topbottom" }, - "acceleration_print": { "value": "4000" }, - "acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, - "acceleration_support_interface": { "value": "acceleration_topbottom" }, - "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 500 / 4000)" }, - "acceleration_wall": { "value": "math.ceil(acceleration_print * 1000 / 4000)" }, - "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 500 / 1000)" }, - - - "layer_height": {"default_value": 0.2}, - "material_flow": {"value": 100}, - "xy_offset": {"default_value": 0}, - "xy_offset_layer_0": {"value": -0.1}, - "wall_thickness": {"value": "line_width * 3" }, - "top_bottom_thickness": {"value": "layer_height * 6"}, - "infill_sparse_density": {"default_value": 25}, - "infill_sparse_thickness": {"value": "resolveOrValue('layer_height')"}, - "default_material_bed_temperature": {"default_value": 60}, - "default_material_print_temperature": {"default_value": 200}, - - "speed_print": {"default_value": 45}, - "speed_travel": {"value": "speed_print if magic_spiralize else 100"}, - "speed_wall_0": {"value": 35}, - "speed_wall_x": {"value": 45}, - "speed_layer_0": {"value": 20}, - - "infill_before_walls": { "value": false }, - "infill_line_width": { "value": "round(line_width * 0.5 / 0.35, 2)" }, - "infill_overlap": { "value": "0" }, - "infill_pattern": { "value": "'grid'" }, - "infill_wipe_dist": { "value": "0" }, - - "jerk_enabled": { "value": "True" }, - "jerk_print": { "value": "20", "minimum_value_warning": 20 }, - "jerk_infill": {"minimum_value_warning": 20 }, - "jerk_wall": { "value": "jerk_print", "minimum_value_warning": 20 }, - "jerk_wall_0": { "value": "jerk_wall", "minimum_value_warning": 20 }, - "jerk_roofing": {"minimum_value_warning": 20 }, - "jerk_topbottom": { "value": "jerk_print", "minimum_value_warning": 20 }, - "jerk_support": { "value": "jerk_print", "minimum_value_warning": 20 }, - "jerk_support_infill": {"minimum_value_warning": 20 }, - "jerk_support_interface": { "value": "math.ceil(jerk_print * 5 / 20)"}, - "jerk_travel": {"minimum_value_warning": 20 }, - "jerk_layer_0": { "value": "jerk_topbottom", "minimum_value_warning": 20}, - "jerk_print_layer_0": {"minimum_value_warning": 20 }, - "jerk_travel_layer_0": {"minimum_value_warning": 20 }, - "jerk_skirt_brim": {"minimum_value_warning": 20 }, - - "line_width": { "value": "machine_nozzle_size * 0.875" }, - - "retraction_enable": {"default_value": true}, - "retraction_amount": {"default_value": 1}, - "retraction_speed": {"default_value": 45}, - - "skin_monotonic" : { "value": true }, - "skin_overlap": { "value": "10" }, - - - "cool_fan_enabled": {"default_value": true}, - "cool_fan_speed": {"value": "100.0 if cool_fan_enabled else 0.0"}, - - "support_enable": {"default_value": true}, - "support_type": {"default_value": "everywhere"}, - "support_angle": {"default_value": 50}, - "support_pattern": {"default_value": "zigzag"}, - "support_z_distance": {"default_value": 0.17}, - "support_xy_distance": {"default_value": 0.7}, - - "adhesion_type": {"default_value": "skirt"}, - - "optimize_wall_printing_order": { "value": "True" }, - - "gantry_height": {"value": 2}, - "machine_start_gcode": {"default_value": ";Trimaker Nebula Start Code\n G21; Unidades en mm\n G90; Posicion absoluta\n M82; Extrusor en modo absoluto\n M107; Fan apagado\n G28 X Y Z; Enviamos a home a todos los ejes\n M900 K=0; Linear advance desactivado\n M104 S110; Precalentamos el extrusor hasta 110 grados\n M190 S{material_bed_temperature_layer_0};\n G29; Senso la cama\n M500\n G1 F5000 X0.5 Y0.5\n Calentamos cama y esperamos\n M109 S{material_print_temperature}; Calentamos extrusor y esperamos\n G92 E0; E=0\n G1 F200 X0.5 Y0.5 Z0.300\n G1 F900 X0.5 Y51.5 E2.56436; Hacemos una linea para limpiar extrusor\n"}, - "machine_end_gcode": {"default_value": ";Trimaker Nebula End Code\n M107; Apagamos fan\n G90\n G92 E0\n G1 X0 Y200\n G91\n G1 Z5\n G92 E0\n M140 S0; Enfriamos\n M104 S0; Enfriamos\n M84\n G90\n M117 Impresion finalizada\n M300 S440 P700\n"}, - "material_diameter": {"default_value": 1.75}, - "machine_center_is_zero": {"default_value": false} - } -} +{ + "version": 2, + "name": "Trimaker Nebula Plus", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Trimaker", + "manufacturer": "Trimaker", + "file_formats": "text/x-gcode", + "platform": "trimaker_nebula_platform.stl", + "has_machine_quality": true, + "has_materials": true, + "machine_extruder_trains": { "0": "trimaker_nebula_extruder" }, + "platform_offset": [ + -117.5, + -40, + 147.5 + ], + "preferred_material": "redd_pla", + "preferred_quality_type": "normal" + }, + "overrides": + { + "acceleration_layer_0": { "value": "acceleration_topbottom" }, + "acceleration_print": { "value": "4000" }, + "acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, + "acceleration_support_interface": { "value": "acceleration_topbottom" }, + "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 500 / 4000)" }, + "acceleration_wall": { "value": "math.ceil(acceleration_print * 1000 / 4000)" }, + "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 500 / 1000)" }, + "adhesion_type": { "default_value": "skirt" }, + "cool_fan_enabled": { "default_value": true }, + "cool_fan_speed": { "value": "100.0 if cool_fan_enabled else 0.0" }, + "default_material_bed_temperature": { "default_value": 60 }, + "default_material_print_temperature": { "default_value": 200 }, + "gantry_height": { "value": 2 }, + "infill_before_walls": { "value": false }, + "infill_line_width": { "value": "round(line_width * 0.5 / 0.35, 2)" }, + "infill_overlap": { "value": "0" }, + "infill_pattern": { "value": "'grid'" }, + "infill_sparse_density": { "default_value": 25 }, + "infill_sparse_thickness": { "value": "resolveOrValue('layer_height')" }, + "infill_wipe_dist": { "value": "0" }, + "jerk_enabled": { "value": "True" }, + "jerk_infill": { "minimum_value_warning": 20 }, + "jerk_layer_0": + { + "minimum_value_warning": 20, + "value": "jerk_topbottom" + }, + "jerk_print": + { + "minimum_value_warning": 20, + "value": "20" + }, + "jerk_print_layer_0": { "minimum_value_warning": 20 }, + "jerk_roofing": { "minimum_value_warning": 20 }, + "jerk_skirt_brim": { "minimum_value_warning": 20 }, + "jerk_support": + { + "minimum_value_warning": 20, + "value": "jerk_print" + }, + "jerk_support_infill": { "minimum_value_warning": 20 }, + "jerk_support_interface": { "value": "math.ceil(jerk_print * 5 / 20)" }, + "jerk_topbottom": + { + "minimum_value_warning": 20, + "value": "jerk_print" + }, + "jerk_travel": { "minimum_value_warning": 20 }, + "jerk_travel_layer_0": { "minimum_value_warning": 20 }, + "jerk_wall": + { + "minimum_value_warning": 20, + "value": "jerk_print" + }, + "jerk_wall_0": + { + "minimum_value_warning": 20, + "value": "jerk_wall" + }, + "layer_height": { "default_value": 0.2 }, + "line_width": { "value": "machine_nozzle_size * 0.875" }, + "machine_acceleration": { "default_value": 3000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 230 }, + "machine_end_gcode": { "default_value": ";Trimaker Nebula End Code\n M107; Apagamos fan\n G90\n G92 E0\n G1 X0 Y200\n G91\n G1 Z5\n G92 E0\n M140 S0; Enfriamos\n M104 S0; Enfriamos\n M84\n G90\n M117 Impresion finalizada\n M300 S440 P700\n" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 260 }, + "machine_max_feedrate_x": { "default_value": 300 }, + "machine_max_feedrate_y": { "default_value": 300 }, + "machine_max_feedrate_z": { "default_value": 40 }, + "machine_name": { "default_value": "Trimaker Nebula" }, + "machine_start_gcode": { "default_value": ";Trimaker Nebula Start Code\n G21; Unidades en mm\n G90; Posicion absoluta\n M82; Extrusor en modo absoluto\n M107; Fan apagado\n G28 X Y Z; Enviamos a home a todos los ejes\n M900 K=0; Linear advance desactivado\n M104 S110; Precalentamos el extrusor hasta 110 grados\n M190 S{material_bed_temperature_layer_0};\n G29; Senso la cama\n M500\n G1 F5000 X0.5 Y0.5\n Calentamos cama y esperamos\n M109 S{material_print_temperature}; Calentamos extrusor y esperamos\n G92 E0; E=0\n G1 F200 X0.5 Y0.5 Z0.300\n G1 F900 X0.5 Y51.5 E2.56436; Hacemos una linea para limpiar extrusor\n" }, + "machine_width": { "default_value": 230 }, + "material_diameter": { "default_value": 1.75 }, + "material_flow": { "value": 100 }, + "optimize_wall_printing_order": { "value": "True" }, + "retraction_amount": { "default_value": 1 }, + "retraction_enable": { "default_value": true }, + "retraction_speed": { "default_value": 45 }, + "skin_monotonic": { "value": true }, + "skin_overlap": { "value": "10" }, + "speed_layer_0": { "value": 20 }, + "speed_print": { "default_value": 45 }, + "speed_travel": { "value": "speed_print if magic_spiralize else 100" }, + "speed_wall_0": { "value": 35 }, + "speed_wall_x": { "value": 45 }, + "support_angle": { "default_value": 50 }, + "support_enable": { "default_value": true }, + "support_pattern": { "default_value": "zigzag" }, + "support_type": { "default_value": "everywhere" }, + "support_xy_distance": { "default_value": 0.7 }, + "support_z_distance": { "default_value": 0.17 }, + "top_bottom_thickness": { "value": "layer_height * 6" }, + "wall_thickness": { "value": "line_width * 3" }, + "xy_offset": { "default_value": 0 }, + "xy_offset_layer_0": { "value": -0.1 } + } +} \ No newline at end of file diff --git a/resources/definitions/tronxy_d01.def.json b/resources/definitions/tronxy_d01.def.json index 6a752656f7..0827412e1e 100644 --- a/resources/definitions/tronxy_d01.def.json +++ b/resources/definitions/tronxy_d01.def.json @@ -1,29 +1,31 @@ { - "name": "Tronxy D01", "version": 2, + "name": "Tronxy D01", "inherits": "tronxy_x", - "metadata": { - "quality_definition": "tronxy_x", + "metadata": + { "visible": true, - "platform": "tronxy.stl" + "platform": "tronxy.stl", + "quality_definition": "tronxy_x" }, - "overrides": { - "machine_name": { "default_value": "Tronxy D01" }, - "machine_width": { "default_value": 220 }, + "overrides": + { + "gantry_height": { "value": 30 }, + "machine_acceleration": { "value": 120 }, "machine_depth": { "default_value": 220 }, - "machine_height": { "default_value": 220 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_end_gcode": { "default_value": "M83 ; Set extrder to Relative\nG1 E-5 F3000 ; Retract 5mm of filament at 50mm/s\nG90 ; Set all axis to Absolute \nG1 X0 Y{machine_depth} ; Park print head\nG1 Z10 ; Move up 10mm\nM106 S0 ; Set fan speed to 0\nM104 S0 ; Set bed temp to 0\nM140 S0 ; Set Nozzle temp to 0\nM84 ; Disable all stepper motors\n" }, + "machine_head_with_fans_polygon": + { + "default_value": [ [-32, 45], [-32, -30], [32, -30], [32, 45] ] }, - "gantry_height": { "value": 30 }, - + "machine_height": { "default_value": 220 }, + "machine_name": { "default_value": "Tronxy D01" }, "machine_start_gcode": { "default_value": "; D01 Start Code\nG21\nG90\nM82\nM107 T0\nM140 S{material_bed_temperature_layer_0}\nM104 S{material_print_temperature_layer_0} T0\nM190 S{material_bed_temperature_layer_0}\nM109 S{material_print_temperature_layer_0} T0\nG28\nG92 E0\nG1 Z2.0 F3000 ; Move Z Axis up little to preventscratching of Heat Bed\nG1 X1 Y20 Z0.3 F3600.0 ; Move to start position\nG1 X1 Y200.0 Z0.3 F1500.0 E25 ; Draw the first line\nG1 X1.6 Y200.0 Z0.3 F3600.0 ; Move to side a little\nG1 X1.6 Y20 Z0.3 F1500.0 E50 ; 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.3 F3600.0 ; Move over to prevent blob squish" }, - "machine_end_gcode": { "default_value": "M83 ; Set extrder to Relative\nG1 E-5 F3000 ; Retract 5mm of filament at 50mm/s\nG90 ; Set all axis to Absolute \nG1 X0 Y{machine_depth} ; Park print head\nG1 Z10 ; Move up 10mm\nM106 S0 ; Set fan speed to 0\nM104 S0 ; Set bed temp to 0\nM140 S0 ; Set Nozzle temp to 0\nM84 ; Disable all stepper motors\n" }, - - "machine_acceleration": { "value": 120 } + "machine_width": { "default_value": 220 } } -} +} \ No newline at end of file diff --git a/resources/definitions/tronxy_x.def.json b/resources/definitions/tronxy_x.def.json index 9665ca0f4f..58dea24c90 100644 --- a/resources/definitions/tronxy_x.def.json +++ b/resources/definitions/tronxy_x.def.json @@ -1,156 +1,132 @@ { - "name": "Tronxy Base Printer", "version": 2, + "name": "Tronxy Base Printer", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": false, "author": "KV/AdderMk2", "manufacturer": "Tronxy", "file_formats": "text/x-gcode", - "first_start_actions": ["MachineSettingsAction"], - - "machine_extruder_trains": { + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { "0": "tronxy_base_extruder_0", "1": "tronxy_base_extruder_1" }, - - "has_materials": true, - "has_variants": true, - "has_machine_quality": true, - "variants_name": "Nozzle Size", - - "preferred_variant_name": "0.4mm Nozzle", + "preferred_material": "generic_pla", "preferred_quality_type": "normal", - "preferred_material": "generic_pla" + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Size" }, - "overrides": { - "machine_name": { "default_value": "Tronxy Base Printer" }, - "machine_start_gcode": { "default_value": "G21\nG90\nM82\nM107 T0\nM140 S{material_bed_temperature_layer_0}\nM104 S{material_print_temperature_layer_0} T0\nM190 S{material_bed_temperature_layer_0}\nM109 S{material_print_temperature_layer_0} T0\nG28\nG92 E0\nG1 Z15.0 F{speed_travel_layer_0}\nG0 E3 F200\nG92 E0\n" }, - "machine_end_gcode": { "default_value": "M107 T0\nM104 S0\nM104 S0 T1\nM140 S0\nG92 E0\nG91\nG1 E-1 F300 \nG1 Z+0.5 E-5 X-20 Y-20 F9000\nG28 X0 Y0\nM84 ;steppers off\nG90 ;absolute positioning\n" }, - - - "machine_heated_bed": { "default_value": true }, - - "material_diameter": { "default_value": 1.75 }, - + "overrides": + { + "acceleration_enabled": { "value": false }, "acceleration_print": { "value": "machine_acceleration" }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, "acceleration_travel": { "value": "machine_acceleration" }, "acceleration_travel_layer_0": { "value": "acceleration_travel" }, - "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, - + "adaptive_layer_height_variation": { "value": 0.04 }, + "adaptive_layer_height_variation_step": { "value": 0.04 }, + "adhesion_type": { "value": "'skirt'" }, + "brim_replaces_support": { "value": false }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "value": 10 }, + "fill_outline_gaps": { "value": true }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 30.0 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 56 else 'cubic'" }, + "infill_wipe_dist": { "value": 0.0 }, + "jerk_enabled": { "value": false }, "jerk_print": { "value": 12 }, "jerk_travel": { "value": "jerk_print" }, "jerk_travel_layer_0": { "value": "jerk_travel" }, - - "acceleration_enabled": { "value": false }, - "jerk_enabled": { "value": false }, - - "speed_print": { "value": 60.0 } , - "speed_infill": { "value": "speed_print" }, - "speed_wall": { "value": "speed_print *0.75" }, - "speed_wall_0": { "value": "speed_wall" }, - "speed_wall_x": { "value": "speed_wall" }, - "speed_topbottom": { "value": "speed_print * 0.5" }, - "speed_roofing": { "value": "speed_topbottom" }, - "speed_travel": { "value": "60.0 if speed_print < 50 else 120.0 if speed_print > 80 else speed_print * 1.25" }, - "speed_layer_0": { "value": 30.0 }, - "speed_print_layer_0": { "value": "speed_layer_0" }, - "speed_travel_layer_0": { "value": "45 if speed_layer_0 < 20 else 60 if speed_layer_0 > 30 else speed_layer_0 * 1.5" }, - "speed_prime_tower": { "value": "speed_topbottom" }, - "speed_support": { "value": "speed_wall_0" }, - "speed_support_interface": { "value": "speed_topbottom" }, - "speed_z_hop": { "value": 5 }, - - "skirt_brim_speed": { "value": "speed_layer_0" }, - - "line_width": { "value": "machine_nozzle_size" }, - - "optimize_wall_printing_order": { "value": "True" }, - - "material_initial_print_temperature": { "value": "material_print_temperature" }, + "machine_end_gcode": { "default_value": "M107 T0\nM104 S0\nM104 S0 T1\nM140 S0\nG92 E0\nG91\nG1 E-1 F300 \nG1 Z+0.5 E-5 X-20 Y-20 F9000\nG28 X0 Y0\nM84 ;steppers off\nG90 ;absolute positioning\n" }, + "machine_heated_bed": { "default_value": true }, + "machine_name": { "default_value": "Tronxy Base Printer" }, + "machine_start_gcode": { "default_value": "G21\nG90\nM82\nM107 T0\nM140 S{material_bed_temperature_layer_0}\nM104 S{material_print_temperature_layer_0} T0\nM190 S{material_bed_temperature_layer_0}\nM109 S{material_print_temperature_layer_0} T0\nG28\nG92 E0\nG1 Z15.0 F{speed_travel_layer_0}\nG0 E3 F200\nG92 E0\n" }, + "material_diameter": { "default_value": 1.75 }, "material_final_print_temperature": { "value": "material_print_temperature" }, "material_flow": { "value": 95 }, "material_flow_layer_0": { "value": 95 }, - - "z_seam_type": { "value": "'sharpest_corner'" }, - "z_seam_corner": { "value": "'z_seam_corner_inner'" }, - - "infill_sparse_density": { "value": "20" }, - "infill_pattern": { "value": "'lines' if infill_sparse_density > 56 else 'cubic'" }, - "infill_before_walls": { "value": false }, - "infill_overlap": { "value": 30.0 }, - "skin_overlap": { "value": 10.0 }, - "infill_wipe_dist": { "value": 0.0 }, - "wall_0_wipe_dist": { "value": 0.0 }, - - "fill_outline_gaps": { "value": true }, - - "retraction_speed": { - "maximum_value_warning": "machine_max_feedrate_e", - "default_value": 45, - "maximum_value": 200 - }, - "retraction_retract_speed": { - "maximum_value_warning": "machine_max_feedrate_e", - "maximum_value": 200 - }, - "retraction_prime_speed": { - "maximum_value_warning": "machine_max_feedrate_e", - "maximum_value": 200 - }, - - "retraction_hop": { "value": 0.2 }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "meshfix_maximum_resolution": { "value": "0.25" }, + "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "optimize_wall_printing_order": { "value": "True" }, + "retract_at_layer_change": { "value": true }, "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, "retraction_combing_max_distance": { "value": 30 }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 5 }, + "retraction_hop": { "value": 0.2 }, + "retraction_hop_enabled": { "value": true }, + "retraction_min_travel": { "value": 1.5 }, + "retraction_prime_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e" + }, + "retraction_retract_speed": + { + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e" + }, + "retraction_speed": + { + "default_value": 45, + "maximum_value": 200, + "maximum_value_warning": "machine_max_feedrate_e" + }, + "skin_overlap": { "value": 10.0 }, + "skirt_brim_speed": { "value": "speed_layer_0" }, + "skirt_gap": { "value": 10.0 }, + "skirt_line_count": { "value": 3 }, + "speed_layer_0": { "value": 30.0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": 60.0 }, + "speed_roofing": { "value": "speed_topbottom" }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_topbottom": { "value": "speed_print * 0.5" }, + "speed_travel": { "value": "60.0 if speed_print < 50 else 120.0 if speed_print > 80 else speed_print * 1.25" }, + "speed_travel_layer_0": { "value": "45 if speed_layer_0 < 20 else 60 if speed_layer_0 > 30 else speed_layer_0 * 1.5" }, + "speed_wall": { "value": "speed_print * 0.75" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 4 }, + "support_infill_angles": + { + "value": [ + 45 + ] + }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 30" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_interface_skip_height": { "value": 0.2 }, + "support_pattern": { "value": "'zigzag'" }, + "support_wall_count": { "value": "1 if (support_structure == 'tree') else 0" }, + "support_xy_distance": { "value": "wall_line_width_0 * 3" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, + "top_bottom_pattern": { "value": "'zigzag'" }, + "top_bottom_pattern_0": { "value": "'zigzag'" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, "travel_avoid_other_parts": { "value": false }, "travel_avoid_supports": { "value": true }, "travel_retract_before_outer_wall": { "value": true }, - - "retraction_enable": { "value": true }, - "retract_at_layer_change": { "value": true }, - "retraction_count_max": { "value": 100 }, - "retraction_extrusion_window": { "value": 5 }, - "retraction_hop_enabled": { "value": true }, - "retraction_min_travel": { "value": 1.5 }, - - "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, - "cool_fan_enabled": { "value": true }, - "cool_min_layer_time": { "value": 10 }, - - "adhesion_type": { "value": "'skirt'" }, - "brim_replaces_support": { "value": false }, - "skirt_gap": { "value": 10.0 }, - "skirt_line_count": { "value": 3 }, - - "adaptive_layer_height_variation": { "value": 0.04 }, - "adaptive_layer_height_variation_step": { "value": 0.04 }, - - "meshfix_maximum_resolution": { "value": "0.25" }, - "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, - - "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, - "support_pattern": { "value": "'zigzag'" }, - "support_infill_angles": { "value": [45] }, - "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 30" }, - "support_use_towers": { "value": false }, - "support_xy_distance": { "value": "wall_line_width_0 * 3" }, - "support_xy_distance_overhang": { "value": "wall_line_width_0" }, - "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, - "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, - "support_wall_count": { "value": 0 }, - "support_brim_enable": { "value": true }, - "support_brim_width": { "value": 4 }, - - "support_interface_enable": { "value": false }, - "support_interface_height": { "value": "layer_height * 4" }, - "support_interface_density": { "value": 33.333 }, - "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, - "minimum_support_area": { "value": 2 }, - "minimum_interface_area": { "value": 10 }, - "top_bottom_pattern": {"value": "'zigzag'" }, - "top_bottom_pattern_0": {"value": "'zigzag'" }, - "top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" }, - "wall_line_count": {"value": "3" } + "wall_0_wipe_dist": { "value": 0.0 }, + "wall_line_count": { "value": "3" }, + "z_seam_corner": { "value": "'z_seam_corner_inner'" }, + "z_seam_type": { "value": "'sharpest_corner'" } } } \ No newline at end of file diff --git a/resources/definitions/tronxy_x5sa.def.json b/resources/definitions/tronxy_x5sa.def.json index ba0b9a92e0..3ae615ff0e 100644 --- a/resources/definitions/tronxy_x5sa.def.json +++ b/resources/definitions/tronxy_x5sa.def.json @@ -1,30 +1,32 @@ { - "name": "Tronxy X5SA/X5ST/Pro/2E/D01 Plus", "version": 2, + "name": "Tronxy X5SA/X5ST/Pro/2E/D01 Plus", "inherits": "tronxy_x", - "metadata": { - "quality_definition": "tronxy_x", + "metadata": + { "visible": true, - "platform": "tronxy.stl" + "platform": "tronxy.stl", + "quality_definition": "tronxy_x" }, - "overrides": { - "machine_name": { "default_value": "Tronxy X5SA" }, - "machine_width": { "default_value": 330 }, + "overrides": + { + "gantry_height": { "value": 40 }, + "machine_acceleration": { "value": 150 }, "machine_depth": { "default_value": 330 }, - "machine_height": { "default_value": 400 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_end_gcode": { "default_value": "G91 ; Set Positioning to Relative\nM83 ; Set Extruder to Relative\nG92 E0 ; Reset Extruder\nG1 E-4 F3000 ; Retract 4mm of filament\nG1 Z0.2 ; Raise nozzle .2mm\nG90 ; Set positioning to absolute\nG1 X{machine_width} Y{machine_depth} ; Park print head\nG91 ; Set Positioning to RelativeG1 Z10 ; Raise nozzle 10mm\nM106 S0 ; Turn off part fan\nM104 S0 ; Set nozzle temp to zero\nM140 S0 ; set bed temp to zero\nM84 X Y Z E ; Disable X Y Z and E steppers\n" }, + "machine_head_with_fans_polygon": + { + "default_value": [ [-48, 45], [-48, -30], [27, -30], [27, 45] ] }, - "gantry_height": { "value": 40 }, - "retraction_amount": { "value": 4.5 }, - - "machine_start_gcode": { "default_value": "; X5SA Start Code\nG21 ; Set units to millimeters\nG90 ; Set all axis to Absolute\nM82 ; Set extrusion to Absolute\nM107 ; Disable all fans\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nG28 ; Home all axis\n; Uncomment the line below to enable ABL Mesh probing\n;G29 ; Probe bed mesh for ABL\n; For best results do not run nozzle heater while performing ABL\nG1 Z5.0 ; Raise nozzle to prevent scratching of heat bed\nG1 X0 Y0 ; Move nozzle to Home before heating\nM109 S{material_print_temperature_layer_0} T0 ; Set nozzle temp and wait\nG92 E0 ; Set Extruder position to zero\n; Uncomment the following lines to enable nozzle purge line along left edge of bed\n;G1 Z2.0 F3000 ; Raise Z axis\n;G1 X1.1 Y20 Z0.2 F3600.0 ; Move to purge line start position\n;G1 Y220 F1500.0 E10 ; Draw first purge line\n;G1 X1.4 F3600.0 ; Move to side\n;G1 Y20 F1500.0 E20 ; Draw second purge line\n;G92 E0 ; Reset Extruder\n;G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n;G1 X5 Y20 Z0.2 F3600.0 ; Move over to finish nozzle wipe\n;G92 E0\n"}, - "machine_end_gcode": { "default_value": "G91 ; Set Positioning to Relative\nM83 ; Set Extruder to Relative\nG92 E0 ; Reset Extruder\nG1 E-4 F3000 ; Retract 4mm of filament\nG1 Z0.2 ; Raise nozzle .2mm\nG90 ; Set positioning to absolute\nG1 X{machine_width} Y{machine_depth} ; Park print head\nG91 ; Set Positioning to RelativeG1 Z10 ; Raise nozzle 10mm\nM106 S0 ; Turn off part fan\nM104 S0 ; Set nozzle temp to zero\nM140 S0 ; set bed temp to zero\nM84 X Y Z E ; Disable X Y Z and E steppers\n" }, - - "machine_acceleration": { "value": 150 } + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Tronxy X5SA" }, + "machine_start_gcode": { "default_value": "; X5SA Start Code\nG21 ; Set units to millimeters\nG90 ; Set all axis to Absolute\nM82 ; Set extrusion to Absolute\nM107 ; Disable all fans\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nG28 ; Home all axis\n; Uncomment the line below to enable ABL Mesh probing\n;G29 ; Probe bed mesh for ABL\n; For best results do not run nozzle heater while performing ABL\nG1 Z5.0 ; Raise nozzle to prevent scratching of heat bed\nG1 X0 Y0 ; Move nozzle to Home before heating\nM109 S{material_print_temperature_layer_0} T0 ; Set nozzle temp and wait\nG92 E0 ; Set Extruder position to zero\n; Uncomment the following lines to enable nozzle purge line along left edge of bed\n;G1 Z2.0 F3000 ; Raise Z axis\n;G1 X1.1 Y20 Z0.2 F3600.0 ; Move to purge line start position\n;G1 Y220 F1500.0 E10 ; Draw first purge line\n;G1 X1.4 F3600.0 ; Move to side\n;G1 Y20 F1500.0 E20 ; Draw second purge line\n;G92 E0 ; Reset Extruder\n;G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n;G1 X5 Y20 Z0.2 F3600.0 ; Move over to finish nozzle wipe\n;G92 E0\n" }, + "machine_width": { "default_value": 330 }, + "retraction_amount": { "value": 4.5 } } -} +} \ No newline at end of file diff --git a/resources/definitions/tronxy_x5sa_400.def.json b/resources/definitions/tronxy_x5sa_400.def.json index d1448a3287..d71b96f06b 100644 --- a/resources/definitions/tronxy_x5sa_400.def.json +++ b/resources/definitions/tronxy_x5sa_400.def.json @@ -1,30 +1,32 @@ { - "name": "Tronxy X5SA/X5ST/Pro/2E 400mm", "version": 2, + "name": "Tronxy X5SA/X5ST/Pro/2E 400mm", "inherits": "tronxy_x", - "metadata": { - "quality_definition": "tronxy_x", + "metadata": + { "visible": true, - "platform": "tronxy.stl" + "platform": "tronxy.stl", + "quality_definition": "tronxy_x" }, - "overrides": { - "machine_name": { "default_value": "Tronxy X5SA 400" }, - "machine_width": { "default_value": 400 }, + "overrides": + { + "gantry_height": { "value": 40 }, + "machine_acceleration": { "value": 150 }, "machine_depth": { "default_value": 400 }, - "machine_height": { "default_value": 400 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_end_gcode": { "default_value": "G91 ; Set Positioning to Relative\nM83 ; Set Extruder to Relative\nG92 E0 ; Reset Extruder\nG1 E-4 F3000 ; Retract 4mm of filament\nG1 Z0.2 ; Raise nozzle .2mm\nG90 ; Set positioning to absolute\nG1 X{machine_width} Y{machine_depth} ; Park print head\nG91 ; Set Positioning to RelativeG1 Z10 ; Raise nozzle 10mm\nM106 S0 ; Turn off part fan\nM104 S0 ; Set nozzle temp to zero\nM140 S0 ; set bed temp to zero\nM84 X Y Z E ; Disable X Y Z and E steppers\n" }, + "machine_head_with_fans_polygon": + { + "default_value": [ [-48, 45], [-48, -30], [27, -30], [27, 45] ] }, - "gantry_height": { "value": 40 }, - "retraction_amount": { "value": 6.5 }, - - "machine_start_gcode": { "default_value": "; X5SA Start Code\nG21 ; Set units to millimeters\nG90 ; Set all axis to Absolute\nM82 ; Set extrusion to Absolute\nM107 ; Disable all fans\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nG28 ; Home all axis\n; Uncomment the line below to enable ABL Mesh probing\n;G29 ; Probe bed mesh for ABL\n; For best results do not run nozzle heater while performing ABL\nG1 Z5.0 ; Raise nozzle to prevent scratching of heat bed\nG1 X0 Y0 ; Move nozzle to Home before heating\nM109 S{material_print_temperature_layer_0} T0 ; Set nozzle temp and wait\nG92 E0 ; Set Extruder position to zero\n; Uncomment the following lines to enable nozzle purge line along left edge of bed\n;G1 Z2.0 F3000 ; Raise Z axis\n;G1 X1.1 Y20 Z0.2 F3600.0 ; Move to purge line start position\n;G1 Y290 F1500.0 E15 ; Draw first purge line\n;G1 X1.4 F3600.0 ; Move to side\n;G1 Y20 F1500.0 E30 ; Draw second purge line\n;G92 E0 ; Reset Extruder\n;G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n;G1 X5 Y20 Z0.2 F3600.0 ; Move over to finish nozzle wipe\n;G92 E0\n"}, - "machine_end_gcode": { "default_value": "G91 ; Set Positioning to Relative\nM83 ; Set Extruder to Relative\nG92 E0 ; Reset Extruder\nG1 E-4 F3000 ; Retract 4mm of filament\nG1 Z0.2 ; Raise nozzle .2mm\nG90 ; Set positioning to absolute\nG1 X{machine_width} Y{machine_depth} ; Park print head\nG91 ; Set Positioning to RelativeG1 Z10 ; Raise nozzle 10mm\nM106 S0 ; Turn off part fan\nM104 S0 ; Set nozzle temp to zero\nM140 S0 ; set bed temp to zero\nM84 X Y Z E ; Disable X Y Z and E steppers\n" }, - - "machine_acceleration": { "value": 150 } + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Tronxy X5SA 400" }, + "machine_start_gcode": { "default_value": "; X5SA Start Code\nG21 ; Set units to millimeters\nG90 ; Set all axis to Absolute\nM82 ; Set extrusion to Absolute\nM107 ; Disable all fans\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nG28 ; Home all axis\n; Uncomment the line below to enable ABL Mesh probing\n;G29 ; Probe bed mesh for ABL\n; For best results do not run nozzle heater while performing ABL\nG1 Z5.0 ; Raise nozzle to prevent scratching of heat bed\nG1 X0 Y0 ; Move nozzle to Home before heating\nM109 S{material_print_temperature_layer_0} T0 ; Set nozzle temp and wait\nG92 E0 ; Set Extruder position to zero\n; Uncomment the following lines to enable nozzle purge line along left edge of bed\n;G1 Z2.0 F3000 ; Raise Z axis\n;G1 X1.1 Y20 Z0.2 F3600.0 ; Move to purge line start position\n;G1 Y290 F1500.0 E15 ; Draw first purge line\n;G1 X1.4 F3600.0 ; Move to side\n;G1 Y20 F1500.0 E30 ; Draw second purge line\n;G92 E0 ; Reset Extruder\n;G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n;G1 X5 Y20 Z0.2 F3600.0 ; Move over to finish nozzle wipe\n;G92 E0\n" }, + "machine_width": { "default_value": 400 }, + "retraction_amount": { "value": 6.5 } } } \ No newline at end of file diff --git a/resources/definitions/tronxy_x5sa_500.def.json b/resources/definitions/tronxy_x5sa_500.def.json index 44f8d1ba1a..b08b5fbc7a 100644 --- a/resources/definitions/tronxy_x5sa_500.def.json +++ b/resources/definitions/tronxy_x5sa_500.def.json @@ -1,30 +1,32 @@ { - "name": "Tronxy X5SA/X5ST/Pro/2E 500mm", "version": 2, + "name": "Tronxy X5SA/X5ST/Pro/2E 500mm", "inherits": "tronxy_x", - "metadata": { - "quality_definition": "tronxy_x", + "metadata": + { "visible": true, - "platform": "tronxy.stl" + "platform": "tronxy.stl", + "quality_definition": "tronxy_x" }, - "overrides": { - "machine_name": { "default_value": "Tronxy X5SA 500" }, - "machine_width": { "default_value": 500 }, + "overrides": + { + "gantry_height": { "value": 40 }, + "machine_acceleration": { "value": 150 }, "machine_depth": { "default_value": 500 }, - "machine_height": { "default_value": 600 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_end_gcode": { "default_value": "G91 ; Set Positioning to Relative\nM83 ; Set Extruder to Relative\nG92 E0 ; Reset Extruder\nG1 E-4 F3000 ; Retract 4mm of filament\nG1 Z0.2 ; Raise nozzle .2mm\nG90 ; Set positioning to absolute\nG1 X{machine_width} Y{machine_depth} ; Park print head\nG91 ; Set Positioning to RelativeG1 Z10 ; Raise nozzle 10mm\nM106 S0 ; Turn off part fan\nM104 S0 ; Set nozzle temp to zero\nM140 S0 ; set bed temp to zero\nM84 X Y Z E ; Disable X Y Z and E steppers\n" }, + "machine_head_with_fans_polygon": + { + "default_value": [ [-48, 45], [-48, -30], [27, -30], [27, 45] ] }, - "gantry_height": { "value": 40 }, - "retraction_amount": { "value": 6.5 }, - - "machine_start_gcode": { "default_value": "; X5SA Start Code\nG21 ; Set units to millimeters\nG90 ; Set all axis to Absolute\nM82 ; Set extrusion to Absolute\nM107 ; Disable all fans\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nG28 ; Home all axis\n; Uncomment the line below to enable ABL Mesh probing\n;G29 ; Probe bed mesh for ABL\n; For best results do not run nozzle heater while performing ABL\nG1 Z5.0 ; Raise nozzle to prevent scratching of heat bed\nG1 X0 Y0 ; Move nozzle to Home before heating\nM109 S{material_print_temperature_layer_0} T0 ; Set nozzle temp and wait\nG92 E0 ; Set Extruder position to zero\n; Uncomment the following lines to enable nozzle purge line along left edge of bed\n;G1 Z2.0 F3000 ; Raise Z axis\n;G1 X1.1 Y20 Z0.2 F3600.0 ; Move to purge line start position\n;G1 Y290 F1500.0 E15 ; Draw first purge line\n;G1 X1.4 F3600.0 ; Move to side\n;G1 Y20 F1500.0 E30 ; Draw second purge line\n;G92 E0 ; Reset Extruder\n;G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n;G1 X5 Y20 Z0.2 F3600.0 ; Move over to finish nozzle wipe\n;G92 E0\n"}, - "machine_end_gcode": { "default_value": "G91 ; Set Positioning to Relative\nM83 ; Set Extruder to Relative\nG92 E0 ; Reset Extruder\nG1 E-4 F3000 ; Retract 4mm of filament\nG1 Z0.2 ; Raise nozzle .2mm\nG90 ; Set positioning to absolute\nG1 X{machine_width} Y{machine_depth} ; Park print head\nG91 ; Set Positioning to RelativeG1 Z10 ; Raise nozzle 10mm\nM106 S0 ; Turn off part fan\nM104 S0 ; Set nozzle temp to zero\nM140 S0 ; set bed temp to zero\nM84 X Y Z E ; Disable X Y Z and E steppers\n" }, - - "machine_acceleration": { "value": 150 } + "machine_height": { "default_value": 600 }, + "machine_name": { "default_value": "Tronxy X5SA 500" }, + "machine_start_gcode": { "default_value": "; X5SA Start Code\nG21 ; Set units to millimeters\nG90 ; Set all axis to Absolute\nM82 ; Set extrusion to Absolute\nM107 ; Disable all fans\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nG28 ; Home all axis\n; Uncomment the line below to enable ABL Mesh probing\n;G29 ; Probe bed mesh for ABL\n; For best results do not run nozzle heater while performing ABL\nG1 Z5.0 ; Raise nozzle to prevent scratching of heat bed\nG1 X0 Y0 ; Move nozzle to Home before heating\nM109 S{material_print_temperature_layer_0} T0 ; Set nozzle temp and wait\nG92 E0 ; Set Extruder position to zero\n; Uncomment the following lines to enable nozzle purge line along left edge of bed\n;G1 Z2.0 F3000 ; Raise Z axis\n;G1 X1.1 Y20 Z0.2 F3600.0 ; Move to purge line start position\n;G1 Y290 F1500.0 E15 ; Draw first purge line\n;G1 X1.4 F3600.0 ; Move to side\n;G1 Y20 F1500.0 E30 ; Draw second purge line\n;G92 E0 ; Reset Extruder\n;G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n;G1 X5 Y20 Z0.2 F3600.0 ; Move over to finish nozzle wipe\n;G92 E0\n" }, + "machine_width": { "default_value": 500 }, + "retraction_amount": { "value": 6.5 } } -} +} \ No newline at end of file diff --git a/resources/definitions/tronxy_xy2.def.json b/resources/definitions/tronxy_xy2.def.json index 7894141b9d..e3b994c01d 100644 --- a/resources/definitions/tronxy_xy2.def.json +++ b/resources/definitions/tronxy_xy2.def.json @@ -1,30 +1,32 @@ { - "name": "Tronxy XY-2", "version": 2, + "name": "Tronxy XY-2", "inherits": "tronxy_x", - "metadata": { - "quality_definition": "tronxy_x", + "metadata": + { "visible": true, - "platform": "tronxy.stl" + "platform": "tronxy.stl", + "quality_definition": "tronxy_x" }, - "overrides": { - "machine_name": { "default_value": "Tronxy XY-2" }, - "machine_width": { "default_value": 220 }, + "overrides": + { + "gantry_height": { "value": 40 }, + "machine_acceleration": { "value": 150 }, "machine_depth": { "default_value": 220 }, - "machine_height": { "default_value": 260 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_end_gcode": { "default_value": "M83 ; Set extrder to Relative\nG1 E-5 F3000 ; Retract 5mm of filament at 50mm/s\nG90 ; Set all axis to Absolute \nG1 X0 Y{machine_depth} ; Park print head\nG1 Z10 ; Move up 10mm\nM106 S0 ; Set fan speed to 0\nM104 S0 ; Set bed temp to 0\nM140 S0 ; Set Nozzle temp to 0\nM84 ; Disable all stepper motors\n" }, + "machine_head_with_fans_polygon": + { + "default_value": [ [-30, 45], [-30, -30], [27, -30], [27, 45] ] }, - "gantry_height": { "value": 40 }, - "retraction_amount": { "value": 4.5 }, - - "machine_start_gcode": { "default_value": "; XY-2 Start Code\nG21 ; Set units to millimeters\nG90 ; Set all axis to Absolute\nM82 ; Set extrusion to Absolute\nM107 ; Disable all fans\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nG28 ; Home all axis\nG1 Z5.0 ; Raise nozzle to prevent scratching of heat bed\nG1 X0 Y0 ; Move nozzle to Home before heating\nM109 S{material_print_temperature_layer_0} T0 ; Set nozzle temp and wait\nG92 E0 ; Set Extruder position to zero\n; Uncomment the following lines to enable nozzle purge line along left edge of bed\n;G1 Z2.0 F3000 ; Raise Z axis\n;G1 X1.1 Y20 Z0.2 F3600.0 ; Move to purge line start position\n;G1 Y220 F1500.0 E10 ; Draw first purge line\n;G1 X1.4 F3600.0 ; Move to side\n;G1 Y20 F1500.0 E20 ; Draw second purge line\n;G92 E0 ; Reset Extruder\n;G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n;G1 X5 Y20 Z0.2 F3600.0 ; Move over to finish nozzle wipe\n;G92 E0\n"}, - "machine_end_gcode": { "default_value": "M83 ; Set extrder to Relative\nG1 E-5 F3000 ; Retract 5mm of filament at 50mm/s\nG90 ; Set all axis to Absolute \nG1 X0 Y{machine_depth} ; Park print head\nG1 Z10 ; Move up 10mm\nM106 S0 ; Set fan speed to 0\nM104 S0 ; Set bed temp to 0\nM140 S0 ; Set Nozzle temp to 0\nM84 ; Disable all stepper motors\n" }, - - "machine_acceleration": { "value": 150 } + "machine_height": { "default_value": 260 }, + "machine_name": { "default_value": "Tronxy XY-2" }, + "machine_start_gcode": { "default_value": "; XY-2 Start Code\nG21 ; Set units to millimeters\nG90 ; Set all axis to Absolute\nM82 ; Set extrusion to Absolute\nM107 ; Disable all fans\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nG28 ; Home all axis\nG1 Z5.0 ; Raise nozzle to prevent scratching of heat bed\nG1 X0 Y0 ; Move nozzle to Home before heating\nM109 S{material_print_temperature_layer_0} T0 ; Set nozzle temp and wait\nG92 E0 ; Set Extruder position to zero\n; Uncomment the following lines to enable nozzle purge line along left edge of bed\n;G1 Z2.0 F3000 ; Raise Z axis\n;G1 X1.1 Y20 Z0.2 F3600.0 ; Move to purge line start position\n;G1 Y220 F1500.0 E10 ; Draw first purge line\n;G1 X1.4 F3600.0 ; Move to side\n;G1 Y20 F1500.0 E20 ; Draw second purge line\n;G92 E0 ; Reset Extruder\n;G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n;G1 X5 Y20 Z0.2 F3600.0 ; Move over to finish nozzle wipe\n;G92 E0\n" }, + "machine_width": { "default_value": 220 }, + "retraction_amount": { "value": 4.5 } } -} +} \ No newline at end of file diff --git a/resources/definitions/tronxy_xy2pro.def.json b/resources/definitions/tronxy_xy2pro.def.json index ed16c34352..14064772a2 100644 --- a/resources/definitions/tronxy_xy2pro.def.json +++ b/resources/definitions/tronxy_xy2pro.def.json @@ -1,30 +1,32 @@ { - "name": "Tronxy XY-2 Pro/Pro 2E/XY3 SE", "version": 2, + "name": "Tronxy XY-2 Pro/Pro 2E/XY3 SE", "inherits": "tronxy_x", - "metadata": { - "quality_definition": "tronxy_x", + "metadata": + { "visible": true, - "platform": "tronxy.stl" + "platform": "tronxy.stl", + "quality_definition": "tronxy_x" }, - "overrides": { - "machine_name": { "default_value": "Tronxy XY-2 Pro" }, - "machine_width": { "default_value": 255 }, + "overrides": + { + "gantry_height": { "value": 40 }, + "machine_acceleration": { "value": 150 }, "machine_depth": { "default_value": 255 }, - "machine_height": { "default_value": 260 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_end_gcode": { "default_value": "M83 ; Set extrder to Relative\nG1 E-5 F3000 ; Retract 5mm of filament at 50mm/s\nG90 ; Set all axis to Absolute \nG1 X0 Y{machine_depth} ; Park print head\nG1 Z10 ; Move up 10mm\nM106 S0 ; Set fan speed to 0\nM104 S0 ; Set bed temp to 0\nM140 S0 ; Set Nozzle temp to 0\nM84 ; Disable all stepper motors\n" }, + "machine_head_with_fans_polygon": + { + "default_value": [ [-48, 45], [-48, -30], [27, -30], [27, 45] ] }, - "gantry_height": { "value": 40 }, - "retraction_amount": { "value": 4.5 }, - - "machine_start_gcode": { "default_value": "; XY-2 Pro Start Code\nG21 ; Set units to millimeters\nG90 ; Set all axis to Absolute\nM82 ; Set extrusion to Absolute\nM107 ; Disable all fans\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nG28 ; Home all axis\n; Uncomment the line below to enable ABL Mesh probing\n;G29 ; Probe bed mesh for ABL\n; For best results do not run nozzle heater while performing ABL\nG1 Z5.0 ; Raise nozzle to prevent scratching of heat bed\nG1 X0 Y0 ; Move nozzle to Home before heating\nM109 S{material_print_temperature_layer_0} T0 ; Set nozzle temp and wait\nG92 E0 ; Set Extruder position to zero\n; Uncomment the following lines to enable nozzle purge line along left edge of bed\n;G1 Z2.0 F3000 ; Raise Z axis\n;G1 X1.1 Y20 Z0.2 F3600.0 ; Move to purge line start position\n;G1 Y220 F1500.0 E10 ; Draw first purge line\n;G1 X1.4 F3600.0 ; Move to side\n;G1 Y20 F1500.0 E20 ; Draw second purge line\n;G92 E0 ; Reset Extruder\n;G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n;G1 X5 Y20 Z0.2 F3600.0 ; Move over to finish nozzle wipe\n;G92 E0\n"}, - "machine_end_gcode": { "default_value": "M83 ; Set extrder to Relative\nG1 E-5 F3000 ; Retract 5mm of filament at 50mm/s\nG90 ; Set all axis to Absolute \nG1 X0 Y{machine_depth} ; Park print head\nG1 Z10 ; Move up 10mm\nM106 S0 ; Set fan speed to 0\nM104 S0 ; Set bed temp to 0\nM140 S0 ; Set Nozzle temp to 0\nM84 ; Disable all stepper motors\n" }, - - "machine_acceleration": { "value": 150 } + "machine_height": { "default_value": 260 }, + "machine_name": { "default_value": "Tronxy XY-2 Pro" }, + "machine_start_gcode": { "default_value": "; XY-2 Pro Start Code\nG21 ; Set units to millimeters\nG90 ; Set all axis to Absolute\nM82 ; Set extrusion to Absolute\nM107 ; Disable all fans\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nG28 ; Home all axis\n; Uncomment the line below to enable ABL Mesh probing\n;G29 ; Probe bed mesh for ABL\n; For best results do not run nozzle heater while performing ABL\nG1 Z5.0 ; Raise nozzle to prevent scratching of heat bed\nG1 X0 Y0 ; Move nozzle to Home before heating\nM109 S{material_print_temperature_layer_0} T0 ; Set nozzle temp and wait\nG92 E0 ; Set Extruder position to zero\n; Uncomment the following lines to enable nozzle purge line along left edge of bed\n;G1 Z2.0 F3000 ; Raise Z axis\n;G1 X1.1 Y20 Z0.2 F3600.0 ; Move to purge line start position\n;G1 Y220 F1500.0 E10 ; Draw first purge line\n;G1 X1.4 F3600.0 ; Move to side\n;G1 Y20 F1500.0 E20 ; Draw second purge line\n;G92 E0 ; Reset Extruder\n;G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n;G1 X5 Y20 Z0.2 F3600.0 ; Move over to finish nozzle wipe\n;G92 E0\n" }, + "machine_width": { "default_value": 255 }, + "retraction_amount": { "value": 4.5 } } -} +} \ No newline at end of file diff --git a/resources/definitions/tronxy_xy3.def.json b/resources/definitions/tronxy_xy3.def.json index 345def8926..6ef59dc92d 100644 --- a/resources/definitions/tronxy_xy3.def.json +++ b/resources/definitions/tronxy_xy3.def.json @@ -1,30 +1,32 @@ { - "name": "Tronxy XY-3/Pro", "version": 2, + "name": "Tronxy XY-3/Pro", "inherits": "tronxy_x", - "metadata": { - "quality_definition": "tronxy_x", + "metadata": + { "visible": true, - "platform": "tronxy.stl" + "platform": "tronxy.stl", + "quality_definition": "tronxy_x" }, - "overrides": { - "machine_name": { "default_value": "Tronxy XY-3" }, - "machine_width": { "default_value": 310 }, + "overrides": + { + "gantry_height": { "value": 30 }, + "machine_acceleration": { "value": 150 }, "machine_depth": { "default_value": 310 }, - "machine_height": { "default_value": 330 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_end_gcode": { "default_value": "M83 ; Set extrder to Relative\nG1 E-5 F3000 ; Retract 5mm of filament at 50mm/s\nG90 ; Set all axis to Absolute \nG1 X0 Y{machine_depth} ; Park print head\nG1 Z10 ; Move up 10mm\nM106 S0 ; Set fan speed to 0\nM104 S0 ; Set bed temp to 0\nM140 S0 ; Set Nozzle temp to 0\nM84 ; Disable all stepper motors\n" }, + "machine_head_with_fans_polygon": + { + "default_value": [ [-30, 45], [-30, -30], [27, -30], [27, 45] ] }, - "gantry_height": { "value": 30 }, - "retraction_amount": { "value": 5 }, - - "machine_start_gcode": { "default_value": "; XY-3 Start Code\nG21 ; Set units to millimeters\nG90 ; Set all axis to Absolute\nM82 ; Set extrusion to Absolute\nM107 ; Disable all fans\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nG28 ; Home all axis\n; Uncomment the line below to enable ABL Mesh probing\n;G29 ; Probe bed mesh for ABL\n; For best results do not run nozzle heater while performing ABL\nG1 Z5.0 ; Raise nozzle to prevent scratching of heat bed\nG1 X0 Y0 ; Move nozzle to Home before heating\nM109 S{material_print_temperature_layer_0} T0 ; Set nozzle temp and wait\nG92 E0 ; Set Extruder position to zero\n; Uncomment the following lines to enable nozzle purge line along left edge of bed\n;G1 Z2.0 F3000 ; Raise Z axis\n;G1 X1.1 Y20 Z0.2 F3600.0 ; Move to purge line start position\n;G1 Y220 F1500.0 E10 ; Draw first purge line\n;G1 X1.4 F3600.0 ; Move to side\n;G1 Y20 F1500.0 E20 ; Draw second purge line\n;G92 E0 ; Reset Extruder\n;G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n;G1 X5 Y20 Z0.2 F3600.0 ; Move over to finish nozzle wipe\n;G92 E0\n"}, - "machine_end_gcode": { "default_value": "M83 ; Set extrder to Relative\nG1 E-5 F3000 ; Retract 5mm of filament at 50mm/s\nG90 ; Set all axis to Absolute \nG1 X0 Y{machine_depth} ; Park print head\nG1 Z10 ; Move up 10mm\nM106 S0 ; Set fan speed to 0\nM104 S0 ; Set bed temp to 0\nM140 S0 ; Set Nozzle temp to 0\nM84 ; Disable all stepper motors\n" }, - - "machine_acceleration": { "value": 150 } + "machine_height": { "default_value": 330 }, + "machine_name": { "default_value": "Tronxy XY-3" }, + "machine_start_gcode": { "default_value": "; XY-3 Start Code\nG21 ; Set units to millimeters\nG90 ; Set all axis to Absolute\nM82 ; Set extrusion to Absolute\nM107 ; Disable all fans\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nG28 ; Home all axis\n; Uncomment the line below to enable ABL Mesh probing\n;G29 ; Probe bed mesh for ABL\n; For best results do not run nozzle heater while performing ABL\nG1 Z5.0 ; Raise nozzle to prevent scratching of heat bed\nG1 X0 Y0 ; Move nozzle to Home before heating\nM109 S{material_print_temperature_layer_0} T0 ; Set nozzle temp and wait\nG92 E0 ; Set Extruder position to zero\n; Uncomment the following lines to enable nozzle purge line along left edge of bed\n;G1 Z2.0 F3000 ; Raise Z axis\n;G1 X1.1 Y20 Z0.2 F3600.0 ; Move to purge line start position\n;G1 Y220 F1500.0 E10 ; Draw first purge line\n;G1 X1.4 F3600.0 ; Move to side\n;G1 Y20 F1500.0 E20 ; Draw second purge line\n;G92 E0 ; Reset Extruder\n;G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n;G1 X5 Y20 Z0.2 F3600.0 ; Move over to finish nozzle wipe\n;G92 E0\n" }, + "machine_width": { "default_value": 310 }, + "retraction_amount": { "value": 5 } } -} +} \ No newline at end of file diff --git a/resources/definitions/tronxy_xy3proV2.def.json b/resources/definitions/tronxy_xy3proV2.def.json index 841c159375..b7348662d9 100644 --- a/resources/definitions/tronxy_xy3proV2.def.json +++ b/resources/definitions/tronxy_xy3proV2.def.json @@ -1,32 +1,33 @@ { - "name": "Tronxy XY-3 Pro V2", "version": 2, + "name": "Tronxy XY-3 Pro V2", "inherits": "tronxy_x", - "metadata": { - "quality_definition": "tronxy_x", + "metadata": + { "visible": true, - "platform": "tronxy.stl" + "platform": "tronxy.stl", + "quality_definition": "tronxy_x" }, - "overrides": { - "machine_name": { "default_value": "Tronxy XY-3" }, - "machine_width": { "default_value": 310 }, + "overrides": + { + "gantry_height": { "value": 30 }, + "machine_acceleration": { "value": 150 }, "machine_depth": { "default_value": 310 }, - "machine_height": { "default_value": 330 }, - "machine_head_with_fans_polygon": { "default_value": [ + "machine_end_gcode": { "default_value": "M83 ; Set extrder to Relative\nG1 E-5 F3000 ; Retract 5mm of filament at 50mm/s\nG90 ; Set all axis to Absolute \nG1 X0 Y{machine_depth} ; Park print head\nG1 Z10 ; Move up 10mm\nM106 S0 ; Set fan speed to 0\nM104 S0 ; Set bed temp to 0\nM140 S0 ; Set Nozzle temp to 0\nM84 ; Disable all stepper motors\n" }, + "machine_head_with_fans_polygon": + { + "default_value": [ [-30, 45], [-30, -30], [27, -30], [27, 45] ] }, - "gantry_height": { "value": 30 }, + "machine_height": { "default_value": 330 }, + "machine_name": { "default_value": "Tronxy XY-3" }, + "machine_start_gcode": { "default_value": "; XY-3 Pro Start Code\nG21 ; Set units to millimeters\nG90 ; Set all axis to Absolute\nM82 ; Set extrusion to Absolute\nM107 ; Disable all fans\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nG28 ; Home all axis\n; Uncomment the line below to enable ABL Mesh probing\n;G29 ; Probe bed mesh for ABL\n; For best results do not run nozzle heater while performing ABL\nG1 Z5.0 ; Raise nozzle to prevent scratching of heat bed\nG1 X0 Y0 ; Move nozzle to Home before heating\nM109 S{material_print_temperature_layer_0} T0 ; Set nozzle temp and wait\nG92 E0 ; Set Extruder position to zero\n; Uncomment the following lines to enable nozzle purge line along left edge of bed\n;G1 Z2.0 F3000 ; Raise Z axis\n;G1 X1.1 Y20 Z0.2 F3600.0 ; Move to purge line start position\n;G1 Y220 F1500.0 E10 ; Draw first purge line\n;G1 X1.4 F3600.0 ; Move to side\n;G1 Y20 F1500.0 E20 ; Draw second purge line\n;G92 E0 ; Reset Extruder\n;G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n;G1 X5 Y20 Z0.2 F3600.0 ; Move over to finish nozzle wipe\n;G92 E0\n" }, + "machine_width": { "default_value": 310 }, "retraction_amount": { "value": 0.5 }, - "retraction_speed": { "value": 45 }, - - - "machine_start_gcode": { "default_value": "; XY-3 Pro Start Code\nG21 ; Set units to millimeters\nG90 ; Set all axis to Absolute\nM82 ; Set extrusion to Absolute\nM107 ; Disable all fans\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nG28 ; Home all axis\n; Uncomment the line below to enable ABL Mesh probing\n;G29 ; Probe bed mesh for ABL\n; For best results do not run nozzle heater while performing ABL\nG1 Z5.0 ; Raise nozzle to prevent scratching of heat bed\nG1 X0 Y0 ; Move nozzle to Home before heating\nM109 S{material_print_temperature_layer_0} T0 ; Set nozzle temp and wait\nG92 E0 ; Set Extruder position to zero\n; Uncomment the following lines to enable nozzle purge line along left edge of bed\n;G1 Z2.0 F3000 ; Raise Z axis\n;G1 X1.1 Y20 Z0.2 F3600.0 ; Move to purge line start position\n;G1 Y220 F1500.0 E10 ; Draw first purge line\n;G1 X1.4 F3600.0 ; Move to side\n;G1 Y20 F1500.0 E20 ; Draw second purge line\n;G92 E0 ; Reset Extruder\n;G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\n;G1 X5 Y20 Z0.2 F3600.0 ; Move over to finish nozzle wipe\n;G92 E0\n"}, - "machine_end_gcode": { "default_value": "M83 ; Set extrder to Relative\nG1 E-5 F3000 ; Retract 5mm of filament at 50mm/s\nG90 ; Set all axis to Absolute \nG1 X0 Y{machine_depth} ; Park print head\nG1 Z10 ; Move up 10mm\nM106 S0 ; Set fan speed to 0\nM104 S0 ; Set bed temp to 0\nM140 S0 ; Set Nozzle temp to 0\nM84 ; Disable all stepper motors\n" }, - - "machine_acceleration": { "value": 150 } + "retraction_speed": { "value": 45 } } -} +} \ No newline at end of file diff --git a/resources/definitions/two_trees_base.def.json b/resources/definitions/two_trees_base.def.json index b672a2f4cd..108d8df11f 100644 --- a/resources/definitions/two_trees_base.def.json +++ b/resources/definitions/two_trees_base.def.json @@ -1,121 +1,87 @@ { - "name": "Two Trees Base Printer", "version": 2, + "name": "Two Trees Base Printer", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": false, "author": "3DGadgets.my", "manufacturer": "Two Trees", "file_formats": "text/x-gcode", - "first_start_actions": ["MachineSettingsAction"], - - "machine_extruder_trains": { - "0": "two_trees_base_extruder_0" - }, - + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, "has_materials": true, "has_variants": true, - "has_machine_quality": true, - "variants_name": "Nozzle Size", - - "preferred_variant_name": "0.4mm Nozzle", + "machine_extruder_trains": { "0": "two_trees_base_extruder_0" }, + "preferred_material": "generic_pla", "preferred_quality_type": "standard", - "preferred_material": "generic_pla" - + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Size" }, - "overrides": { - "machine_name": { "default_value": "Two Trees Base Printer" }, - "machine_start_gcode": { "default_value": "G28 ;Home\nM420 S1 ;Enable ABL using saved Mesh and Fade Height\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move bed down\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Bed up" }, - "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, - - "machine_heated_bed": { "default_value": true }, - - "material_diameter": { "default_value": 1.75 }, - - "speed_print": { "value": 50.0 } , - "speed_infill": { "value": "speed_print" }, - "speed_wall": { "value": "speed_print / 2" }, - "speed_wall_0": { "value": "speed_wall" }, - "speed_wall_x": { "value": "speed_print / 1.5" }, - "speed_topbottom": { "value": "speed_print / 2" }, - "speed_roofing": { "value": "speed_topbottom" }, - "speed_layer_0": { "value": 20.0 }, - "speed_print_layer_0": { "value": "speed_layer_0" }, - "speed_prime_tower": { "value": "speed_topbottom" }, - "speed_support": { "value": "speed_wall_0" }, - "speed_support_interface": { "value": "speed_topbottom" }, - "speed_z_hop": { "value": 5 }, - - "skirt_brim_speed": { "value": "speed_layer_0" }, - - "line_width": { "value": "machine_nozzle_size" }, - - "optimize_wall_printing_order": { "value": "True" }, - - "z_seam_type": { "value": "'sharpest_corner'" }, - "z_seam_corner": { "value": "'z_seam_corner_inner'" }, - - "infill_sparse_density": { "value": "20" }, - "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "overrides": + { + "adaptive_layer_height_variation": { "value": 0.04 }, + "adaptive_layer_height_variation_step": { "value": 0.04 }, + "adhesion_type": { "value": "'skirt'" }, + "brim_replaces_support": { "value": false }, + "cool_fan_full_layer": { "value": "2" }, + "cool_min_layer_time": { "value": 10 }, + "fill_outline_gaps": { "value": false }, "infill_before_walls": { "value": false }, "infill_overlap": { "value": 30.0 }, - "skin_overlap": { "value": 10.0 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, "infill_wipe_dist": { "value": 0.0 }, - "wall_0_wipe_dist": { "value": 0.0 }, - - "fill_outline_gaps": { "value": false }, - - "retraction_hop_enabled": { "value": "False" }, - "retraction_hop": { "value": 0.2 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, + "machine_heated_bed": { "default_value": true }, + "machine_name": { "default_value": "Two Trees Base Printer" }, + "machine_start_gcode": { "default_value": "G28 ;Home\nM420 S1 ;Enable ABL using saved Mesh and Fade Height\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move bed down\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Bed up" }, + "material_diameter": { "default_value": 1.75 }, + "meshfix_maximum_resolution": { "value": "0.25" }, + "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "optimize_wall_printing_order": { "value": "True" }, + "retraction_amount": { "default_value": 7 }, "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, "retraction_combing_max_distance": { "value": 30 }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 10 }, + "retraction_hop": { "value": 0.2 }, + "retraction_min_travel": { "value": 1.5 }, + "retraction_speed": { "default_value": 40 }, + "skin_overlap": { "value": 10.0 }, + "skirt_brim_speed": { "value": "speed_layer_0" }, + "skirt_gap": { "value": 10.0 }, + "skirt_line_count": { "value": 3 }, + "speed_layer_0": { "value": 20.0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": 50.0 }, + "speed_roofing": { "value": "speed_topbottom" }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_wall_x": { "value": "speed_print / 1.5" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": 50 }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 5 }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 25" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_interface_skip_height": { "value": 0.2 }, + "support_pattern": { "value": "'zigzag'" }, + "support_wall_count": { "value": "1 if (support_structure == 'tree') else 0" }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, "travel_avoid_other_parts": { "value": true }, "travel_avoid_supports": { "value": true }, "travel_retract_before_outer_wall": { "value": true }, - - "retraction_enable": { "value": true }, - "retraction_speed": { "default_value" : 40 }, - "retraction_amount": { "default_value" : 7 }, - "retraction_count_max": { "value": 100 }, - "retraction_extrusion_window": { "value": 10 }, - "retraction_min_travel": { "value": 1.5 }, - - - "cool_fan_full_layer": { "value": "2" }, - "cool_fan_enabled": { "value": true }, - "cool_min_layer_time": { "value": 10 }, - - "adhesion_type": { "value": "'skirt'" }, - "brim_replaces_support": { "value": false }, - "skirt_gap": { "value": 10.0 }, - "skirt_line_count": { "value": 3 }, - - "adaptive_layer_height_variation": { "value": 0.04 }, - "adaptive_layer_height_variation_step": { "value": 0.04 }, - - "meshfix_maximum_resolution": { "value": "0.25" }, - "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, - - "support_angle": { "value": 50 }, - "support_pattern": { "value": "'zigzag'" }, - "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 25" }, - "support_use_towers": { "value": false }, - "support_xy_distance": { "value": "wall_line_width_0 * 2" }, - "support_xy_distance_overhang": { "value": "wall_line_width_0" }, - "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, - "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, - "support_wall_count": { "value": 0 }, - "support_brim_enable": { "value": true }, - "support_brim_width": { "value": 5 }, - - "support_interface_enable": { "value": false }, - "support_interface_height": { "value": "layer_height * 4" }, - "support_interface_density": { "value": 33.333 }, - "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, - "minimum_support_area": { "value": 2 }, - "minimum_interface_area": { "value": 10 }, - "top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" }, - "wall_thickness": {"value": "line_width * 2" } + "wall_0_wipe_dist": { "value": 0.0 }, + "wall_thickness": { "value": "line_width * 2" }, + "z_seam_corner": { "value": "'z_seam_corner_inner'" }, + "z_seam_type": { "value": "'sharpest_corner'" } } -} +} \ No newline at end of file diff --git a/resources/definitions/two_trees_bluer.def.json b/resources/definitions/two_trees_bluer.def.json index 67e903f74d..138c10fc02 100644 --- a/resources/definitions/two_trees_bluer.def.json +++ b/resources/definitions/two_trees_bluer.def.json @@ -1,37 +1,38 @@ { - "name": "Two Trees Bluer", "version": 2, + "name": "Two Trees Bluer", "inherits": "two_trees_base", - "overrides": { - "machine_start_gcode": { "default_value": "G28 ;Home\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move bed down\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Bed up" }, - "machine_name": { "default_value": "Two Trees Bluer" }, - "machine_width": { "default_value": 230 }, - "machine_depth": { "default_value": 230 }, - "machine_height": { "default_value": 280 }, - "machine_head_with_fans_polygon": { "default_value": [ - [-47, 37], - [-47, -23], - [47, -23], - [47, 37] - ] - }, - + "metadata": + { + "visible": true, + "platform": "twotrees235x235_generic.stl", + "quality_definition": "two_trees_base" + }, + "overrides": + { "gantry_height": { "value": 28 }, + "infill_material_flow": { "value": 100 }, + "infill_overlap": { "value": 30 }, + "machine_depth": { "default_value": 230 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-47, 37], + [-47, -23], + [47, -23], + [47, 37] + ] + }, + "machine_height": { "default_value": 280 }, + "machine_name": { "default_value": "Two Trees Bluer" }, + "machine_start_gcode": { "default_value": "G28 ;Home\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move bed down\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Bed up" }, + "machine_width": { "default_value": 230 }, + "material_flow": { "value": 90 }, + "retraction_amount": { "default_value": 8 }, + "retraction_speed": { "default_value": 50 }, + "skin_overlap": { "value": 20 }, "speed_print": { "value": 50.0 }, "speed_travel": { "value": 180 }, - "speed_travel_layer_0": { "value": 100 }, - "retraction_speed": { "default_value" : 50 }, - "retraction_amount": { "default_value" : 8 }, - - "material_flow": { "value": 90 }, - "infill_material_flow": { "value": 100 }, - - "infill_overlap": { "value": 30 }, - "skin_overlap": { "value": 20 } - }, - "metadata": { - "quality_definition": "two_trees_base", - "visible": true, - "platform": "twotrees235x235_generic.stl" + "speed_travel_layer_0": { "value": 100 } } -} +} \ No newline at end of file diff --git a/resources/definitions/two_trees_bluerplus.def.json b/resources/definitions/two_trees_bluerplus.def.json index 1e1dcd20c3..9fa727aacf 100644 --- a/resources/definitions/two_trees_bluerplus.def.json +++ b/resources/definitions/two_trees_bluerplus.def.json @@ -1,36 +1,37 @@ { - "name": "Two Trees Bluer Plus", "version": 2, + "name": "Two Trees Bluer Plus", "inherits": "two_trees_base", - "overrides": { + "metadata": + { + "visible": true, + "platform": "twotrees300x300_generic.stl", + "quality_definition": "two_trees_base" + }, + "overrides": + { + "gantry_height": { "value": 28 }, + "infill_material_flow": { "value": 100 }, + "infill_overlap": { "value": 30 }, + "machine_depth": { "default_value": 300 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-47, 37], + [-47, -23], + [47, -23], + [47, 37] + ] + }, + "machine_height": { "default_value": 400 }, "machine_name": { "default_value": "Two Trees Bluer Plus" }, "machine_width": { "default_value": 300 }, - "machine_depth": { "default_value": 300 }, - "machine_height": { "default_value": 400 }, - "machine_head_with_fans_polygon": { "default_value": [ - [-47, 37], - [-47, -23], - [47, -23], - [47, 37] - ] - }, - - "gantry_height": { "value": 28 }, + "material_flow": { "value": 90 }, + "retraction_amount": { "default_value": 8 }, + "retraction_speed": { "default_value": 50 }, + "skin_overlap": { "value": 20 }, "speed_print": { "value": 50.0 }, "speed_travel": { "value": 180 }, - "speed_travel_layer_0": { "value": 100 }, - "retraction_speed": { "default_value" : 50 }, - "retraction_amount": { "default_value" : 8 }, - - "material_flow": { "value": 90 }, - "infill_material_flow": { "value": 100 }, - - "infill_overlap": { "value": 30 }, - "skin_overlap": { "value": 20 } - }, - "metadata": { - "quality_definition": "two_trees_base", - "visible": true, - "platform": "twotrees300x300_generic.stl" + "speed_travel_layer_0": { "value": 100 } } -} +} \ No newline at end of file diff --git a/resources/definitions/two_trees_sapphireplus.def.json b/resources/definitions/two_trees_sapphireplus.def.json index 8dae455a28..183c7b7f38 100644 --- a/resources/definitions/two_trees_sapphireplus.def.json +++ b/resources/definitions/two_trees_sapphireplus.def.json @@ -1,38 +1,37 @@ { - "name": "Two Trees Sapphire Plus", "version": 2, + "name": "Two Trees Sapphire Plus", "inherits": "two_trees_base", - "overrides": { + "metadata": + { + "visible": true, + "platform": "sapphireplus_platform.stl", + "quality_definition": "two_trees_base" + }, + "overrides": + { + "gantry_height": { "value": 65 }, + "infill_material_flow": { "value": 100 }, + "infill_overlap": { "value": 30 }, + "machine_depth": { "default_value": 300 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-30, 19], + [30, 19], + [30, -49], + [-30, -49] + ] + }, + "machine_height": { "default_value": 350 }, "machine_name": { "default_value": "Two Trees Sapphire Plus" }, "machine_width": { "default_value": 300 }, - "machine_depth": { "default_value": 300 }, - "machine_height": { "default_value": 350 }, - "machine_head_with_fans_polygon": { "default_value": [ - [-30,19], - [30,19], - [30,-49], - [-30,-49] - ] - }, - - "gantry_height": { "value": 65 }, - + "material_flow": { "value": 90 }, + "retraction_amount": { "default_value": 7 }, + "retraction_speed": { "default_value": 40 }, + "skin_overlap": { "value": 20 }, "speed_print": { "value": 60.0 }, "speed_travel": { "value": 180 }, - "speed_travel_layer_0": { "value": 100 }, - "retraction_speed": { "default_value" : 40 }, - "retraction_amount": { "default_value" : 7 }, - - "material_flow": { "value": 90 }, - "infill_material_flow": { "value": 100 }, - - "infill_overlap": { "value": 30 }, - "skin_overlap": { "value": 20 } - }, - "metadata": { - "quality_definition": "two_trees_base", - "visible": true, - "platform": "sapphireplus_platform.stl" - + "speed_travel_layer_0": { "value": 100 } } -} +} \ No newline at end of file diff --git a/resources/definitions/two_trees_sapphirepro.def.json b/resources/definitions/two_trees_sapphirepro.def.json index 0a66a5e232..7f4a1714ae 100644 --- a/resources/definitions/two_trees_sapphirepro.def.json +++ b/resources/definitions/two_trees_sapphirepro.def.json @@ -1,39 +1,38 @@ { - "name": "Two Trees Sapphire Pro", "version": 2, + "name": "Two Trees Sapphire Pro", "inherits": "two_trees_base", - "overrides": { - "machine_start_gcode": { "default_value": "G28 ;Home\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move bed down\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Bed up" }, - "machine_name": { "default_value": "Two Trees Sapphire Pro" }, - "machine_width": { "default_value": 220 }, - "machine_depth": { "default_value": 220 }, - "machine_height": { "default_value": 220 }, - "machine_head_with_fans_polygon": { "default_value": [ - [-30,19], - [30,19], - [30,-49], - [-30,-49] - ] - }, - + "metadata": + { + "visible": true, + "platform": "sapphirepro_platform.stl", + "quality_definition": "two_trees_base" + }, + "overrides": + { "gantry_height": { "value": 65 }, - + "infill_material_flow": { "value": 100 }, + "infill_overlap": { "value": 30 }, + "machine_depth": { "default_value": 220 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-30, 19], + [30, 19], + [30, -49], + [-30, -49] + ] + }, + "machine_height": { "default_value": 220 }, + "machine_name": { "default_value": "Two Trees Sapphire Pro" }, + "machine_start_gcode": { "default_value": "G28 ;Home\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move bed down\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Bed up" }, + "machine_width": { "default_value": 220 }, + "material_flow": { "value": 90 }, + "retraction_amount": { "default_value": 7 }, + "retraction_speed": { "default_value": 40 }, + "skin_overlap": { "value": 20 }, "speed_print": { "value": 60.0 }, "speed_travel": { "value": 180 }, - "speed_travel_layer_0": { "value": 100 }, - "retraction_speed": { "default_value" : 40 }, - "retraction_amount": { "default_value" : 7 }, - - "material_flow": { "value": 90 }, - "infill_material_flow": { "value": 100 }, - - "infill_overlap": { "value": 30 }, - "skin_overlap": { "value": 20 } - }, - "metadata": { - "quality_definition": "two_trees_base", - "visible": true, - "platform": "sapphirepro_platform.stl" - + "speed_travel_layer_0": { "value": 100 } } -} +} \ No newline at end of file diff --git a/resources/definitions/ubuild-3d_mr_bot_280.def.json b/resources/definitions/ubuild-3d_mr_bot_280.def.json index f1c7bc7581..b883287f6b 100644 --- a/resources/definitions/ubuild-3d_mr_bot_280.def.json +++ b/resources/definitions/ubuild-3d_mr_bot_280.def.json @@ -2,43 +2,49 @@ "version": 2, "name": "uBuild-3D Mr Bot 280", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "uBuild-3D", "manufacturer": "uBuild-3D", "file_formats": "text/x-gcode", "has_materials": true, - "preferred_quality_type": "draft", - "machine_extruder_trains": - { - "0": "ubuild-3d_mr_bot_280_extruder_0" - } + "machine_extruder_trains": { "0": "ubuild-3d_mr_bot_280_extruder_0" }, + "preferred_quality_type": "draft" }, - - "overrides": { - "machine_name": { "default_value": "Mr Bot 280" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 275 }, - "machine_height": { "default_value": 275 }, - "machine_depth": { "default_value": 275 }, - "machine_center_is_zero": { "default_value": false }, - "layer_height_0": { "default_value": 0.1 }, - "retraction_amount": { "default_value": 2 }, - "retraction_speed": { "default_value": 50 }, + "overrides": + { "adhesion_type": { "default_value": "skirt" }, - "machine_nozzle_heat_up_speed": { "default_value": 2 }, - "machine_nozzle_cool_down_speed": { "default_value": 2 }, - "machine_head_with_fans_polygon": { "default_value": [[-20,20],[10,10],[10,10],[10,10]] }, "gantry_height": { "value": "275" }, - "machine_max_feedrate_z": { "default_value": 15 }, - "machine_max_feedrate_e": { "default_value": 60 }, - "machine_max_acceleration_z": { "default_value": 1000 }, + "layer_height_0": { "default_value": 0.1 }, "machine_acceleration": { "default_value": 2000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 275 }, + "machine_end_gcode": { "default_value": "M400 ; wait for moves to finish\nG92 Z0 E0 ; reset Z position\nG1 E-2 F9000 ; retract material\nG1 Z2 ; get extruder out of the way\nM104 S0 ; turn off extruder\nG1 Y285 F3000 ; present finished print\nM140 S0 ; turn off bed\nM84 ; disable motors\nM117 Print complete" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-20, 20], + [10, 10], + [10, 10], + [10, 10] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 275 }, + "machine_max_acceleration_z": { "default_value": 1000 }, + "machine_max_feedrate_e": { "default_value": 60 }, + "machine_max_feedrate_z": { "default_value": 15 }, + "machine_max_jerk_e": { "default_value": 5 }, "machine_max_jerk_xy": { "default_value": 20 }, "machine_max_jerk_z": { "default_value": 0.4 }, - "machine_max_jerk_e": { "default_value": 5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_name": { "default_value": "Mr Bot 280" }, + "machine_nozzle_cool_down_speed": { "default_value": 2 }, + "machine_nozzle_heat_up_speed": { "default_value": 2 }, "machine_start_gcode": { "default_value": "G21 ; set units to millimeters\nG90 ; use absolute positioning\nM82 ; absolute extrusion mode\nM140 S{material_bed_temperature} ; set bed temp\nM104 S{material_print_temperature} ; set extruder temp\nG28 ; home X, Y and Z\nG29 ; probe sequence (for auto-leveling)\nG1 Z15 F600 ; go to Z15 position\nG1 X0 Y-20 F10000 ; go to X0 Y-20 position\nM190 S{material_bed_temperature} ; wait for bed temp\nM109 S{material_print_temperature} ; wait for extruder temp\nG92 E0 ; reset extruder distance position\nG1 E25 F100 ; extrude 25mm of material\nG92 E0 ; reset extruder distance position\nM117 Printing..." }, - "machine_end_gcode": { "default_value": "M400 ; wait for moves to finish\nG92 Z0 E0 ; reset Z position\nG1 E-2 F9000 ; retract material\nG1 Z2 ; get extruder out of the way\nM104 S0 ; turn off extruder\nG1 Y285 F3000 ; present finished print\nM140 S0 ; turn off bed\nM84 ; disable motors\nM117 Print complete" } + "machine_width": { "default_value": 275 }, + "retraction_amount": { "default_value": 2 }, + "retraction_speed": { "default_value": 50 } } -} +} \ No newline at end of file diff --git a/resources/definitions/ultimaker.def.json b/resources/definitions/ultimaker.def.json index c5352f60ef..b43a13f9c6 100644 --- a/resources/definitions/ultimaker.def.json +++ b/resources/definitions/ultimaker.def.json @@ -2,262 +2,133 @@ "version": 2, "name": "Ultimaker", "inherits": "fdmprinter", - "metadata": { + "metadata": + { + "visible": false, "author": "Ultimaker", "manufacturer": "Ultimaker B.V.", - "visible": false, - "exclude_materials": [ "generic_hips", "structur3d_dap100silicone" ] + "exclude_materials": [ + "generic_hips", + "structur3d_dap100silicone" + ] }, - "overrides": { - "machine_max_feedrate_e": { - "default_value": 45 + "overrides": + { + "acceleration_layer_0": { "value": "acceleration_topbottom" }, + "acceleration_travel_enabled": { "value": false }, + "bottom_layers": { "value": "math.ceil(round(bottom_thickness / resolveOrValue('layer_height'), 4))" }, + "bridge_enable_more_layers": { "value": false }, + "bridge_fan_speed": { "value": "cool_fan_speed_max" }, + "bridge_fan_speed_2": { "value": "cool_fan_speed_min" }, + "bridge_fan_speed_3": { "value": "cool_fan_speed_min" }, + "bridge_settings_enabled": { "value": true }, + "bridge_skin_density": { "value": "80" }, + "bridge_skin_density_2": { "value": 100 }, + "bridge_skin_density_3": { "value": 100 }, + "bridge_skin_material_flow": { "value": "skin_material_flow" }, + "bridge_skin_material_flow_2": { "value": "skin_material_flow" }, + "bridge_skin_material_flow_3": { "value": "skin_material_flow" }, + "bridge_skin_speed": { "value": "speed_topbottom" }, + "bridge_skin_speed_2": { "value": "speed_topbottom" }, + "bridge_skin_speed_3": { "value": "speed_topbottom" }, + "bridge_skin_support_threshold": { "value": 50 }, + "bridge_sparse_infill_max_density": { "value": 0 }, + "bridge_wall_coast": { "value": 0 }, + "bridge_wall_material_flow": { "value": "wall_material_flow" }, + "bridge_wall_speed": { "value": "bridge_skin_speed" }, + "cool_fan_speed_0": { "value": "cool_fan_speed_min" }, + "cool_fan_speed_max": { "value": "100" }, + "cool_min_layer_time": { "value": 6 }, + "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])" }, + "gradual_support_infill_step_height": { "value": "4 * layer_height" }, + "gradual_support_infill_steps": { "value": "2 if support_interface_enable else 0" }, + "infill_material_flow": { "value": "(1.95-infill_sparse_density / 100 if infill_sparse_density > 95 else 1) * material_flow" }, + "inset_direction": { "value": "'outside_in'" }, + "jerk_infill": { "minimum_value_warning": 20 }, + "jerk_prime_tower": { "minimum_value_warning": 20 }, + "jerk_print": + { + "minimum_value_warning": 20, + "value": "20" }, - "material_print_temperature": { + "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_travel_enabled": { "value": false }, + "jerk_wall": { "minimum_value_warning": 20 }, + "jerk_wall_0": { "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_warning": "125", "minimum_value": "0" }, - "material_bed_temperature": { - "minimum_value": "0", - "maximum_value_warning": "125" - }, - "material_bed_temperature_layer_0": - { - "maximum_value_warning": "125" - }, - "material_standby_temperature": { - "minimum_value": "0" - }, - "extruder_prime_pos_y": + "material_bed_temperature_layer_0": { "maximum_value_warning": "125" }, + "material_print_temperature": { "minimum_value": "0" }, + "material_standby_temperature": { "minimum_value": "0", - "maximum_value": "machine_depth" - }, - "extruder_prime_pos_x": - { - "minimum_value": "0", - "maximum_value": "machine_width" + "value": "material_print_temperature - 100" }, + "meshfix_maximum_deviation": { "value": "machine_nozzle_size / 10" }, + "meshfix_maximum_resolution": { "value": "max(speed_wall_0 / 75, 0.5)" }, + "raft_base_speed": { "value": "raft_speed" }, + "raft_base_thickness": { "value": "min(machine_nozzle_size * 0.75, 0.3)" }, + "raft_interface_fan_speed": { "value": "(raft_base_fan_speed + raft_surface_fan_speed) / 2" }, + "raft_interface_line_width": { "value": "(raft_base_line_width + raft_surface_line_width) / 2" }, + "raft_interface_speed": { "value": "(raft_surface_speed + raft_base_speed) / 2" }, + "raft_interface_thickness": { "value": "(raft_base_thickness + raft_surface_thickness) / 2" }, + "raft_speed": { "value": 15 }, + "raft_surface_fan_speed": { "value": "cool_fan_speed_min" }, + "raft_surface_speed": { "value": "speed_topbottom" }, "relative_extrusion": { - "value": false, - "enabled": false - }, - "skin_angles": { - "value": "[] if infill_pattern not in ['cross', 'cross_3d'] else [20, 110]" - }, - "line_width": { - "value": "machine_nozzle_size" - }, - "wall_thickness": { - "value": "wall_line_width_0 + wall_line_width_x" - }, - "infill_material_flow": { - "value": "(1.95-infill_sparse_density / 100 if infill_sparse_density > 95 else 1) * material_flow" - }, - "retraction_combing": { - "value": "'no_outer_surfaces'" - }, - "retraction_count_max": { - "value": 25 - }, - "retraction_extrusion_window": { - "value": 1 - }, - "roofing_layer_count": { - "value": "1" - }, - "roofing_material_flow": { - "value": "material_flow" - }, - "skin_material_flow": { - "value": "0.95 * material_flow" - }, - "support_interface_material_flow": { - "value": "skin_material_flow" - }, - "skin_monotonic" : { - "value": true - }, - "speed_equalize_flow_width_factor": { - "value": "110.0" - }, - "top_layers": { - "value": "math.ceil(round(top_thickness / resolveOrValue('layer_height'), 4))" - }, - "bottom_layers": { - "value": "math.ceil(round(bottom_thickness / resolveOrValue('layer_height'), 4))" - }, - "xy_offset": { - "value": "-layer_height * 0.1" - }, - "meshfix_maximum_resolution": { - "value": "max(speed_wall_0 / 75, 0.5)" - }, - "meshfix_maximum_deviation": { - "value": "machine_nozzle_size / 10" - }, - "jerk_travel_enabled": { + "enabled": false, "value": false }, - "acceleration_travel_enabled": { - "value": false - }, - "acceleration_travel": { - "value": "acceleration_wall" - }, - "skin_edge_support_thickness": { - "value": "4 * layer_height if infill_sparse_density < 30 else 0" - }, - "bridge_settings_enabled": { - "value": false - }, - "bridge_wall_min_length": { - "value": 0 - }, - "bridge_skin_support_threshold": { - "value": 50 - }, - "bridge_sparse_infill_max_density": { - "value": 0 - }, - "bridge_wall_coast": { - "value": 0 - }, - "bridge_wall_speed": { - "value": "speed_wall" - }, - "bridge_wall_material_flow": { - "value": "wall_material_flow" - }, - "bridge_skin_speed": { - "value": "speed_topbottom" - }, - "bridge_skin_material_flow": { - "value": "skin_material_flow" - }, - "bridge_skin_density": { - "value": "80" - }, - "bridge_fan_speed": { - "value": "cool_fan_speed_max" - }, - "bridge_enable_more_layers": { - "value": false - }, - "bridge_skin_speed_2": { - "value": "speed_topbottom" - }, - "bridge_skin_material_flow_2": { - "value": "skin_material_flow" - }, - "bridge_skin_density_2": { - "value": 100 - }, - "bridge_fan_speed_2": { - "value": "cool_fan_speed_min" - }, - "bridge_skin_speed_3": { - "value": "speed_topbottom" - }, - "bridge_skin_material_flow_3": { - "value": "skin_material_flow" - }, - "bridge_skin_density_3": { - "value": 100 - }, - "bridge_fan_speed_3": { - "value": "cool_fan_speed_min" - }, - "jerk_print": { - "value": "20", - "minimum_value_warning": 20 - }, - "jerk_infill": { - "minimum_value_warning": 20 - }, - "jerk_wall": { - "minimum_value_warning": 20 - }, - "jerk_wall_0": { - "minimum_value_warning": 20 - }, - "jerk_roofing": { - "minimum_value_warning": 20 - }, - "jerk_topbottom": { - "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_prime_tower": { - "minimum_value_warning": 20 - }, - "jerk_layer_0": { - "minimum_value_warning": 20 - }, - "jerk_print_layer_0": { - "minimum_value_warning": 20 - }, - "jerk_travel": { - "value": "jerk_print", - "minimum_value_warning": 20 - }, - "jerk_travel_layer_0": { - "minimum_value_warning": 20 - }, - "jerk_skirt_brim": { - "minimum_value_warning": 20 - }, - "support_wall_count": { - "value": "1 if support_structure == 'tree' else 0" - }, - "zig_zaggify_support": { - "value": true - }, - "support_infill_rate": { - "value": "80 if gradual_support_infill_steps != 0 else 15" - }, - "gradual_support_infill_steps": { - "value": "2 if support_interface_enable else 0" - }, - "gradual_support_infill_step_height": { - "value": "4*layer_height" - }, - "support_interface_height": { - "value": "2*layer_height" - }, - "support_offset": { - "value": "support_xy_distance if support_interface_enable else 0" - }, - "support_xy_distance": { - "value": "1" - }, - "support_xy_distance_overhang": { - "value": "0.2" - }, - "minimum_support_area": { - "value": "(2 + support_offset)**2" - }, - "support_interface_skip_height": { - "value": "layer_height" - }, - "support_interface_pattern": { - "value": "'concentric'" - }, - "support_interface_offset": { - "value": "support_offset" - }, - "support_use_towers": { - "value": false - }, - "support_z_distance": { - "value": "0" - } + "retraction_combing": { "value": "'no_outer_surfaces'" }, + "retraction_combing_max_distance": { "value": 15 }, + "retraction_count_max": { "value": 25 }, + "retraction_extrusion_window": { "value": 1 }, + "roofing_layer_count": { "value": "1" }, + "roofing_material_flow": { "value": "material_flow" }, + "skin_angles": { "value": "[] if infill_pattern not in ['cross', 'cross_3d'] else [20, 110]" }, + "skin_edge_support_thickness": { "value": "4 * layer_height if infill_sparse_density < 30 else 0" }, + "skin_material_flow": { "value": "0.95 * material_flow" }, + "skin_material_flow_layer_0": { "value": "0.9 * material_flow_layer_0" }, + "skin_monotonic": { "value": "roofing_layer_count == 0" }, + "speed_equalize_flow_width_factor": { "value": "110.0" }, + "speed_layer_0": { "value": "min(30, layer_height / layer_height_0 * speed_wall_0)" }, + "speed_slowdown_layers": { "value": 1 }, + "speed_travel_layer_0": { "value": "speed_travel" }, + "support_infill_rate": { "value": "0 if support_structure == 'tree' else 80 if gradual_support_infill_steps != 0 else 15" }, + "support_initial_layer_line_distance": { "minimum_value_warning": "0 if support_structure == 'tree' else support_line_width" }, + "support_interface_height": { "value": "2 * layer_height" }, + "support_interface_material_flow": { "value": "skin_material_flow" }, + "support_interface_offset": { "value": "support_offset" }, + "support_interface_pattern": { "value": "'zigzag'" }, + "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_wall_count": { "value": "1 if support_structure == 'tree' else 0" }, + "support_xy_distance_overhang": { "value": "0.2" }, + "support_z_distance": { "value": "0" }, + "top_layers": { "value": "math.ceil(round(top_thickness / resolveOrValue('layer_height'), 4))" }, + "wall_0_material_flow_layer_0": { "value": "1.10 * material_flow_layer_0" }, + "wall_thickness": { "value": "wall_line_width_0 + wall_line_width_x" }, + "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'" }, + "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 5399abc02b..f68d51dd6c 100644 --- a/resources/definitions/ultimaker2.def.json +++ b/resources/definitions/ultimaker2.def.json @@ -2,93 +2,105 @@ "version": 2, "name": "Ultimaker 2", "inherits": "ultimaker", - "metadata": { + "metadata": + { "visible": true, "author": "Ultimaker", "manufacturer": "Ultimaker B.V.", - "weight": 3, "file_formats": "text/x-gcode", "platform": "ultimaker2_platform.obj", - "platform_texture": "Ultimaker2backplate.png", - "platform_offset": [9, 0, 0], - "has_materials": false, - "has_machine_quality": true, - "preferred_variant_name": "0.4 mm", - "machine_extruder_trains": - { - "0": "ultimaker2_extruder_0" - }, + "exclude_materials": [ + "generic_hips", + "generic_petg", + "structur3d_dap100silicone", + "ultimaker_petg_red", + "ultimaker_petg_blue", + "ultimaker_petg_grey", + "ultimaker_petg_black", + "ultimaker_petg_green", + "ultimaker_petg_white", + "ultimaker_petg_orange", + "ultimaker_petg_silver", + "ultimaker_petg_yellow", + "ultimaker_petg_transparent", + "ultimaker_petg_red_translucent", + "ultimaker_petg_blue_translucent", + "ultimaker_petg_green_translucent", + "ultimaker_petg_yellow_fluorescent" + ], "firmware_file": "MarlinUltimaker2.hex", - "exclude_materials": [ "generic_hips", "generic_petg", "structur3d_dap100silicone", "ultimaker_petg_red", "ultimaker_petg_blue", "ultimaker_petg_grey", "ultimaker_petg_black", "ultimaker_petg_green", "ultimaker_petg_white", "ultimaker_petg_orange", "ultimaker_petg_silver", "ultimaker_petg_yellow", "ultimaker_petg_transparent", "ultimaker_petg_red_translucent", "ultimaker_petg_blue_translucent", "ultimaker_petg_green_translucent", "ultimaker_petg_yellow_fluorescent"] + "has_machine_quality": true, + "has_materials": false, + "machine_extruder_trains": { "0": "ultimaker2_extruder_0" }, + "platform_offset": [ + 9, + 0, + 0 + ], + "platform_texture": "Ultimaker2backplate.png", + "preferred_variant_name": "0.4 mm", + "weight": 3 }, - "overrides": { - "machine_name": { "default_value": "Ultimaker 2" }, - "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_end_gcode" : { - "value": "\";Version _2.6 of the firmware can abort the print too early if the file ends\\n;too soon. However if the file hasn't ended yet because there are comments at\\n;the end of the file, it won't abort yet. Therefore we have to put at least 512\\n;bytes at the end of the g-code so that the file is not yet finished by the\\n;time that the motion planner gets flushed. With firmware version _3.3 this\\n;should be fixed, so this comment wouldn't be necessary any more. Now we have\\n;to pad this text to make precisely 512 bytes.\" if machine_gcode_flavor == \"UltiGCode\" else \"M104 S0 ;extruder heater off\\nM140 S0 ;heated bed heater off (if you have it)\\nG91 ;relative positioning\\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\\nG1 Z+0.5 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\\n;Version _2.6 of the firmware can abort the print too early if the file ends\\n;too soon. However if the file hasn't ended yet because there are comments at\\n;the end of the file, it won't abort yet. Therefore we have to put at least 512\\n;bytes at the end of the g-code so that the file is not yet finished by the\\n;time that the motion planner gets flushed. With firmware version _3.3 this\\n;should be fixed, so this comment wouldn't be necessary any more. Now we have\\n;to pad this text to make precisely 512 bytes.\"" - }, - "machine_width": { - "default_value": 223 - }, - "machine_depth": { - "default_value": 223 - }, - "machine_height": { - "default_value": 205 - }, - "machine_heated_bed": { - "default_value": true + "overrides": + { + "cool_fan_speed_0": { "value": 0 }, + "gantry_height": { "value": "48" }, + "layer_height_0": { "value": 0.3 }, + "machine_acceleration": { "default_value": 3000 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 223 }, + "machine_disallowed_areas": + { + "default_value": [ + [ + [-115, 112.5], + [-82, 112.5], + [-84, 102.5], + [-115, 102.5] + ], + [ + [115, 112.5], + [115, 102.5], + [110, 102.5], + [108, 112.5] + ], + [ + [-115, -112.5], + [-115, -104.5], + [-84, -104.5], + [-82, -112.5] + ], + [ + [115, -112.5], + [108, -112.5], + [110, -104.5], + [115, -104.5] + ] + ] }, + "machine_end_gcode": { "value": "\";Version _2.6 of the firmware can abort the print too early if the file ends\\n;too soon. However if the file hasn't ended yet because there are comments at\\n;the end of the file, it won't abort yet. Therefore we have to put at least 512\\n;bytes at the end of the g-code so that the file is not yet finished by the\\n;time that the motion planner gets flushed. With firmware version _3.3 this\\n;should be fixed, so this comment wouldn't be necessary any more. Now we have\\n;to pad this text to make precisely 512 bytes.\" if machine_gcode_flavor == \"UltiGCode\" else \"M104 S0 ;extruder heater off\\nM140 S0 ;heated bed heater off (if you have it)\\nG91 ;relative positioning\\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\\nG1 Z+0.5 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\\n;Version _2.6 of the firmware can abort the print too early if the file ends\\n;too soon. However if the file hasn't ended yet because there are comments at\\n;the end of the file, it won't abort yet. Therefore we have to put at least 512\\n;bytes at the end of the g-code so that the file is not yet finished by the\\n;time that the motion planner gets flushed. With firmware version _3.3 this\\n;should be fixed, so this comment wouldn't be necessary any more. Now we have\\n;to pad this text to make precisely 512 bytes.\"" }, + "machine_gcode_flavor": { "default_value": "UltiGCode" }, "machine_head_with_fans_polygon": { "default_value": [ - [ -42, 12 ], - [ -42, -32 ], - [ 62, 12 ], - [ 62, -32 ] + [-42, 12], + [-42, -32], + [62, 12], + [62, -32] ] }, - "machine_center_is_zero": { - "default_value": false - }, - "gantry_height": { - "value": "48" - }, - "machine_use_extruder_offset_to_offset_coords": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "UltiGCode" - }, - "machine_disallowed_areas": { - "default_value": [ - [[-115, 112.5], [ -82, 112.5], [ -84, 102.5], [-115, 102.5]], - [[ 115, 112.5], [ 115, 102.5], [ 110, 102.5], [ 108, 112.5]], - [[-115, -112.5], [-115, -104.5], [ -84, -104.5], [ -82, -112.5]], - [[ 115, -112.5], [ 108, -112.5], [ 110, -104.5], [ 115, -104.5]] - ]}, - "machine_nozzle_tip_outer_diameter": { - "default_value": 1 - }, - "machine_nozzle_head_distance": { - "default_value": 3 - }, - "machine_max_feedrate_x": { - "default_value": 300 - }, - "machine_max_feedrate_y": { - "default_value": 300 - }, - "machine_max_feedrate_z": { - "default_value": 40 - }, - "machine_acceleration": { - "default_value": 3000 - }, - "support_z_distance": { - "value": "0.1" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 205 }, + "machine_max_feedrate_x": { "default_value": 300 }, + "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 }, + "machine_width": { "default_value": 223 }, + "speed_slowdown_layers": { "value": 2 }, + "support_z_distance": { "value": "0.1" } } -} +} \ No newline at end of file diff --git a/resources/definitions/ultimaker2_extended.def.json b/resources/definitions/ultimaker2_extended.def.json index 572634c602..92adfae7e4 100644 --- a/resources/definitions/ultimaker2_extended.def.json +++ b/resources/definitions/ultimaker2_extended.def.json @@ -2,25 +2,21 @@ "version": 2, "name": "Ultimaker 2 Extended", "inherits": "ultimaker2", - "metadata": { + "metadata": + { "author": "Ultimaker", "manufacturer": "Ultimaker B.V.", - "quality_definition": "ultimaker2", - "weight": 3, "file_formats": "text/x-gcode", "platform": "ultimaker2_platform.obj", + "firmware_file": "MarlinUltimaker2extended.hex", + "machine_extruder_trains": { "0": "ultimaker2_extended_extruder_0" }, "platform_texture": "Ultimaker2Extendedbackplate.png", - "machine_extruder_trains": - { - "0": "ultimaker2_extended_extruder_0" - }, - "firmware_file": "MarlinUltimaker2extended.hex" + "quality_definition": "ultimaker2", + "weight": 3 }, - - "overrides": { - "machine_name": { "default_value": "Ultimaker 2 Extended" }, - "machine_height": { - "default_value": 305 - } + "overrides": + { + "machine_height": { "default_value": 305 }, + "machine_name": { "default_value": "Ultimaker 2 Extended" } } -} +} \ No newline at end of file diff --git a/resources/definitions/ultimaker2_extended_olsson.def.json b/resources/definitions/ultimaker2_extended_olsson.def.json index d2eb7f9a5d..f2afc8c6d0 100644 --- a/resources/definitions/ultimaker2_extended_olsson.def.json +++ b/resources/definitions/ultimaker2_extended_olsson.def.json @@ -2,11 +2,9 @@ "version": 2, "name": "Ultimaker 2 Extended with Olsson", "inherits": "ultimaker2_extended", - "metadata": { - "has_variants": true - }, - - "overrides": { + "metadata": { "has_variants": true }, + "overrides": + { "machine_name": { "default_value": "Ultimaker 2 Extended with Olsson" } } -} +} \ No newline at end of file diff --git a/resources/definitions/ultimaker2_extended_plus.def.json b/resources/definitions/ultimaker2_extended_plus.def.json index 0242115057..23f8a15f40 100644 --- a/resources/definitions/ultimaker2_extended_plus.def.json +++ b/resources/definitions/ultimaker2_extended_plus.def.json @@ -2,25 +2,21 @@ "version": 2, "name": "Ultimaker 2 Extended+", "inherits": "ultimaker2_plus", - "metadata": { + "metadata": + { "author": "Ultimaker", "manufacturer": "Ultimaker B.V.", - "quality_definition": "ultimaker2_plus", - "weight": 2, "file_formats": "text/x-gcode", "platform": "ultimaker2_platform.obj", + "firmware_file": "MarlinUltimaker2extended-plus.hex", + "machine_extruder_trains": { "0": "ultimaker2_extended_plus_extruder_0" }, "platform_texture": "Ultimaker2ExtendedPlusbackplate.png", - "machine_extruder_trains": - { - "0": "ultimaker2_extended_plus_extruder_0" - }, - "firmware_file": "MarlinUltimaker2extended-plus.hex" + "quality_definition": "ultimaker2_plus", + "weight": 2 }, - - "overrides": { - "machine_name": { "default_value": "Ultimaker 2 Extended+" }, - "machine_height": { - "default_value": 305 - } + "overrides": + { + "machine_height": { "default_value": 305 }, + "machine_name": { "default_value": "Ultimaker 2 Extended+" } } -} +} \ No newline at end of file diff --git a/resources/definitions/ultimaker2_go.def.json b/resources/definitions/ultimaker2_go.def.json index 774d215bef..e7ba8d1358 100644 --- a/resources/definitions/ultimaker2_go.def.json +++ b/resources/definitions/ultimaker2_go.def.json @@ -1,44 +1,59 @@ { - "version": 2, + "version": 2, "name": "Ultimaker 2 Go", "inherits": "ultimaker2", - "metadata": { + "metadata": + { "author": "Ultimaker", "manufacturer": "Ultimaker B.V.", - "quality_definition": "ultimaker2", - "weight": 3, "file_formats": "text/x-gcode", "platform": "ultimaker2go_platform.obj", + "firmware_file": "MarlinUltimaker2go.hex", + "machine_extruder_trains": { "0": "ultimaker2_go_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ], "platform_texture": "Ultimaker2Gobackplate.png", - "platform_offset": [0, 0, 0], - "machine_extruder_trains": - { - "0": "ultimaker2_go_extruder_0" - }, - "firmware_file": "MarlinUltimaker2go.hex" + "quality_definition": "ultimaker2", + "weight": 3 }, - - "overrides": { - "machine_name": { "default_value": "Ultimaker 2 Go" }, - "machine_width": { - "default_value": 120 - }, - "machine_depth": { - "default_value": 120 - }, - "machine_height": { - "default_value": 115 - }, - "machine_heated_bed": { - "default_value": false - }, - "machine_disallowed_areas": { + "overrides": + { + "machine_depth": { "default_value": 120 }, + "machine_disallowed_areas": + { "default_value": [ - [[-60, 60], [-33, 60], [-35, 52], [-60, 52]], - [[ 60, 60], [ 60, 52], [ 35, 52], [ 33, 60]], - [[-60, -60], [-60, -52], [-35, -52], [-33, -60]], - [[ 60, -60], [ 33, -60], [ 35, -52], [ 60, -52]] + [ + [-60, 60], + [-33, 60], + [-35, 52], + [-60, 52] + ], + [ + [60, 60], + [60, 52], + [35, 52], + [33, 60] + ], + [ + [-60, -60], + [-60, -52], + [-35, -52], + [-33, -60] + ], + [ + [60, -60], + [33, -60], + [35, -52], + [60, -52] + ] ] - } + }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 115 }, + "machine_name": { "default_value": "Ultimaker 2 Go" }, + "machine_width": { "default_value": 120 } } -} +} \ No newline at end of file diff --git a/resources/definitions/ultimaker2_olsson.def.json b/resources/definitions/ultimaker2_olsson.def.json index 2f8b877942..74c562988f 100644 --- a/resources/definitions/ultimaker2_olsson.def.json +++ b/resources/definitions/ultimaker2_olsson.def.json @@ -2,12 +2,13 @@ "version": 2, "name": "Ultimaker 2 with Olsson Block", "inherits": "ultimaker2", - "metadata": { + "metadata": + { "has_variants": true, "quality_definition": "ultimaker2" }, - - "overrides": { + "overrides": + { "machine_name": { "default_value": "Ultimaker 2 with Olsson Block" } } -} +} \ No newline at end of file diff --git a/resources/definitions/ultimaker2_plus.def.json b/resources/definitions/ultimaker2_plus.def.json index 0d4191383d..18b377813a 100644 --- a/resources/definitions/ultimaker2_plus.def.json +++ b/resources/definitions/ultimaker2_plus.def.json @@ -2,72 +2,104 @@ "version": 2, "name": "Ultimaker 2+", "inherits": "ultimaker2", - "metadata": { + "metadata": + { "author": "Ultimaker", "manufacturer": "Ultimaker B.V.", - "weight": 1, "file_formats": "text/x-gcode", "platform": "ultimaker2_platform.obj", + "exclude_materials": [ + "generic_hips", + "generic_petg", + "generic_bam", + "ultimaker_bam", + "generic_pva", + "ultimaker_pva", + "generic_tough_pla", + "ultimaker_tough_pla_black", + "ultimaker_tough_pla_green", + "ultimaker_tough_pla_red", + "ultimaker_tough_pla_white", + "generic_cffcpe", + "generic_cffpa", + "generic_gffcpe", + "generic_gffpa", + "structur3d_dap100silicone", + "ultimaker_petg_red", + "ultimaker_petg_blue", + "ultimaker_petg_grey", + "ultimaker_petg_black", + "ultimaker_petg_green", + "ultimaker_petg_white", + "ultimaker_petg_orange", + "ultimaker_petg_silver", + "ultimaker_petg_yellow", + "ultimaker_petg_transparent", + "ultimaker_petg_red_translucent", + "ultimaker_petg_blue_translucent", + "ultimaker_petg_green_translucent", + "ultimaker_petg_yellow_fluorescent" + ], + "firmware_file": "MarlinUltimaker2plus.hex", + "first_start_actions": [], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "ultimaker2_plus_extruder_0" }, "platform_texture": "Ultimaker2Plusbackplate.png", "preferred_variant_name": "0.4 mm", - "has_variants": true, - "has_materials": true, - "has_machine_quality": true, - "exclude_materials": ["generic_hips", "generic_petg", "generic_bam", "ultimaker_bam", "generic_pva", "ultimaker_pva", "generic_tough_pla", "ultimaker_tough_pla_black", "ultimaker_tough_pla_green", "ultimaker_tough_pla_red", "ultimaker_tough_pla_white", "generic_cffcpe", "generic_cffpa", "generic_gffcpe", "generic_gffpa", "structur3d_dap100silicone", "ultimaker_petg_red", "ultimaker_petg_blue", "ultimaker_petg_grey", "ultimaker_petg_black", "ultimaker_petg_green", "ultimaker_petg_white", "ultimaker_petg_orange", "ultimaker_petg_silver", "ultimaker_petg_yellow", "ultimaker_petg_transparent", "ultimaker_petg_red_translucent", "ultimaker_petg_blue_translucent", "ultimaker_petg_green_translucent", "ultimaker_petg_yellow_fluorescent"], - "first_start_actions": [], "supported_actions": [], - "machine_extruder_trains": - { - "0": "ultimaker2_plus_extruder_0" - }, - "firmware_file": "MarlinUltimaker2plus.hex" + "weight": 1 }, - - "overrides": { - "machine_name": { "default_value": "Ultimaker 2+" }, - "speed_infill": { - "value": "speed_print" - }, - "speed_wall_x": { - "value": "speed_wall" - }, - "layer_height_0": { - "value": "round(machine_nozzle_size / 1.5, 2)" - }, - "speed_support": { - "value": "speed_wall_0" - }, - "machine_height": { - "default_value": 205 - }, - "machine_show_variants": { - "default_value": true - }, - "gantry_height": { - "value": "52" - }, - "machine_nozzle_head_distance": { - "default_value": 5 - }, - "machine_heat_zone_length": { - "default_value": 20 + "overrides": + { + "gantry_height": { "value": "52" }, + "layer_height_0": { "value": "round(machine_nozzle_size / 1.5, 2)" }, + "machine_disallowed_areas": + { + "default_value": [ + [ + [-115, 112.5], + [-78, 112.5], + [-80, 102.5], + [-115, 102.5] + ], + [ + [115, 112.5], + [115, 102.5], + [105, 102.5], + [103, 112.5] + ], + [ + [-115, -112.5], + [-115, -104.5], + [-84, -104.5], + [-82, -112.5] + ], + [ + [115, -112.5], + [108, -112.5], + [110, -104.5], + [115, -104.5] + ] + ] }, "machine_head_with_fans_polygon": { "default_value": [ - [ -44, 14 ], - [ -44, -34 ], - [ 64, 14 ], - [ 64, -34 ] + [-44, 14], + [-44, -34], + [64, 14], + [64, -34] ] }, - "machine_disallowed_areas": { - "default_value": [ - [[-115, 112.5], [ -78, 112.5], [ -80, 102.5], [-115, 102.5]], - [[ 115, 112.5], [ 115, 102.5], [ 105, 102.5], [ 103, 112.5]], - [[-115, -112.5], [-115, -104.5], [ -84, -104.5], [ -82, -112.5]], - [[ 115, -112.5], [ 108, -112.5], [ 110, -104.5], [ 115, -104.5]] - ] - } + "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" }, + "speed_wall_x": { "value": "speed_wall" } } -} +} \ No newline at end of file diff --git a/resources/definitions/ultimaker2_plus_connect.def.json b/resources/definitions/ultimaker2_plus_connect.def.json index 8ccbd7f380..2a8c675951 100644 --- a/resources/definitions/ultimaker2_plus_connect.def.json +++ b/resources/definitions/ultimaker2_plus_connect.def.json @@ -2,89 +2,121 @@ "version": 2, "name": "Ultimaker 2+ Connect", "inherits": "ultimaker2", - "metadata": { + "metadata": + { "author": "Ultimaker", "manufacturer": "Ultimaker B.V.", - "weight": 1, "file_formats": "application/x-ufp;text/x-gcode", "platform": "ultimaker2_plus_connect_platform.obj", - "platform_texture": "Ultimaker2PlusConnectbackplate.png", - "platform_offset": [-1, -6, 0], - "preferred_variant_name": "0.4 mm", - "has_variants": true, - "has_materials": true, + "exclude_materials": [ + "generic_hips", + "generic_petg", + "generic_bam", + "ultimaker_bam", + "generic_pva", + "ultimaker_pva", + "generic_tough_pla", + "ultimaker_tough_pla_black", + "ultimaker_tough_pla_green", + "ultimaker_tough_pla_red", + "ultimaker_tough_pla_white", + "generic_cffcpe", + "generic_cffpa", + "generic_gffcpe", + "generic_gffpa", + "structur3d_dap100silicone" + ], + "first_start_actions": [], "has_machine_materials": true, "has_machine_quality": true, - "exclude_materials": ["generic_hips", "generic_petg", "generic_bam", "ultimaker_bam", "generic_pva", "ultimaker_pva", "generic_tough_pla", "ultimaker_tough_pla_black", "ultimaker_tough_pla_green", "ultimaker_tough_pla_red", "ultimaker_tough_pla_white", "generic_cffcpe", "generic_cffpa", "generic_gffcpe", "generic_gffpa", "structur3d_dap100silicone" ], - "first_start_actions": [], + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "ultimaker2_plus_connect_extruder_0" }, + "platform_offset": [ + -1, + -6, + 0 + ], + "platform_texture": "Ultimaker2PlusConnectbackplate.png", + "preferred_variant_name": "0.4 mm", "supported_actions": [], - "machine_extruder_trains": - { - "0": "ultimaker2_plus_connect_extruder_0" - }, + "supports_network_connection": true, "supports_usb_connection": false, - "supports_network_connection": true + "weight": 1 }, - - "overrides": { - "machine_name": { "default_value": "Ultimaker 2+ Connect" }, - "machine_gcode_flavor": { "default_value": "Griffin" }, - "machine_width": { "default_value": 223 }, - "machine_depth": { "default_value": 220 }, - "machine_height": { "default_value": 205 }, - "machine_show_variants": { "default_value": true }, + "overrides": + { "gantry_height": { "value": "52" }, - "machine_nozzle_head_distance": { "default_value": 5 }, - "machine_heat_zone_length": { "default_value": 20 }, + "infill_overlap": { "value": "0" }, + "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'grid'" }, + "infill_wipe_dist": { "value": "0" }, + "layer_height_0": { "value": "round(machine_nozzle_size / 1.5, 2)" }, + "machine_depth": { "default_value": 220 }, + "machine_disallowed_areas": + { + "default_value": [ + [ + [-115, 112.5], + [-83, 112.5], + [-85, 104.0], + [-115, 104.0] + ], + [ + [115, 112.5], + [115, 104.0], + [104, 104.0], + [102, 112.5] + ], + [ + [-115, -112.5], + [-115, -104.0], + [-87, -104.0], + [-85, -112.5] + ], + [ + [115, -112.5], + [104, -112.5], + [106, -104.0], + [115, -104.0] + ] + ] + }, + "machine_end_gcode": { "value": "''" }, + "machine_gcode_flavor": { "default_value": "Griffin" }, "machine_head_with_fans_polygon": { "default_value": [ - [ -44, 14 ], - [ -44, -34 ], - [ 64, 14 ], - [ 64, -34 ] + [-44, 14], + [-44, -34], + [64, 14], + [64, -34] ] }, - "machine_disallowed_areas": - { - "default_value": [ - [[-115, 112.5], [ -83, 112.5], [ -85, 104.0], [-115, 104.0]], - [[ 115, 112.5], [ 115, 104.0], [ 104, 104.0], [ 102, 112.5]], - [[-115, -112.5], [-115, -104.0], [ -87, -104.0], [ -85, -112.5]], - [[ 115, -112.5], [ 104, -112.5], [ 106, -104.0], [ 115, -104.0]] - ] - }, - "infill_wipe_dist": { "value": "0" }, - "infill_overlap": { "value": "0" }, - "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'grid'" }, - "speed_infill": { "value": "speed_print" }, - "speed_wall_x": { "value": "speed_wall" }, - "layer_height_0": { "value": "round(machine_nozzle_size / 1.5, 2)" }, - "optimize_wall_printing_order": { "value": "True" }, - "zig_zaggify_infill": { "value": "gradual_infill_steps == 0" }, - "speed_support": { "value": "speed_wall_0" }, - "material_initial_print_temperature": { - "value": "material_print_temperature", - "maximum_value": 260 - }, - "material_final_print_temperature": { - "value": "material_print_temperature", - "maximum_value": 260 - }, - "material_print_temperature_layer_0": { - "value": "material_print_temperature", - "maximum_value": 260 - }, + "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_end_gcode": { "value": "''" }, + "machine_width": { "default_value": 223 }, "material_bed_temperature": { "maximum_value": 110 }, "material_bed_temperature_layer_0": { "maximum_value": 110 }, "material_print_temperature": { "maximum_value": 260 }, - "meshfix_maximum_resolution": { "value": "(speed_wall_0 + speed_wall_x) / 60" }, + "material_print_temperature_layer_0": { "maximum_value": 260 }, "meshfix_maximum_deviation": { "value": "(layer_height / 3) if magic_spiralize else (layer_height / 4)" }, + "meshfix_maximum_resolution": { "value": "(speed_wall_0 + speed_wall_x) / 60" }, "meshfix_maximum_travel_resolution": { "value": 0.5 }, - "prime_blob_enable": { "enabled": true, "default_value": true, "value": "resolveOrValue('print_sequence') != 'one_at_a_time'" }, + "optimize_wall_printing_order": { "value": "True" }, + "prime_blob_enable": + { + "default_value": true, + "enabled": true, + "value": "resolveOrValue('print_sequence') != 'one_at_a_time'" + }, "retraction_prime_speed": { "value": "15" }, - "retraction_speed": {"value": "45" } + "retraction_speed": { "value": "45" }, + "speed_support": { "value": "speed_wall_0" }, + "speed_wall_x": { "value": "speed_wall" }, + "zig_zaggify_infill": { "value": "gradual_infill_steps == 0" } } -} +} \ No newline at end of file diff --git a/resources/definitions/ultimaker3.def.json b/resources/definitions/ultimaker3.def.json index 38428b89ca..a929e28258 100644 --- a/resources/definitions/ultimaker3.def.json +++ b/resources/definitions/ultimaker3.def.json @@ -2,88 +2,55 @@ "version": 2, "name": "Ultimaker 3", "inherits": "ultimaker", - "metadata": { + "metadata": + { + "visible": true, "author": "Ultimaker", "manufacturer": "Ultimaker B.V.", - "visible": true, "file_formats": "application/gzip;text/x-gcode", "platform": "ultimaker3_platform.obj", - "platform_texture": "Ultimaker3backplate.png", - "platform_offset": [0, 0, 0], + "bom_numbers": [ + 9066 + ], + "exclude_materials": [ + "generic_hips", + "generic_cffcpe", + "generic_cffpa", + "generic_gffcpe", + "generic_gffpa", + "structur3d_dap100silicone" + ], + "firmware_update_info": + { + "check_urls": [ "https://software.ultimaker.com/releases/firmware/9066/stable/um-update.swu.version" ], + "id": 9066, + "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, - "exclude_materials": [ "generic_hips", "generic_cffcpe", "generic_cffpa", "generic_gffcpe", "generic_gffpa", "structur3d_dap100silicone" ], - "preferred_variant_name": "AA 0.4", - "preferred_quality_type": "normal", - "variants_name": "Print core", "machine_extruder_trains": { "0": "ultimaker3_extruder_left", "1": "ultimaker3_extruder_right" }, - "first_start_actions": [ "DiscoverUM3Action" ], + "platform_offset": [ + 0, + 0, + 0 + ], + "platform_texture": "Ultimaker3backplate.png", + "preferred_quality_type": "fast", + "preferred_variant_name": "AA 0.4", "supported_actions": [ "DiscoverUM3Action" ], - "supports_usb_connection": false, "supports_network_connection": true, - "firmware_update_info": { - "id": 9066, - "check_urls": - [ - "https://software.ultimaker.com/releases/firmware/9066/stable/um-update.swu.version" - ], - "update_url": "https://ultimaker.com/firmware?utm_source=cura&utm_medium=software&utm_campaign=fw-update" - }, - "bom_numbers": [ - 9066 - ] + "supports_usb_connection": false, + "variants_name": "Print core" }, - - - - "overrides": { - "machine_name": { "default_value": "Ultimaker 3" }, - "machine_width": { "default_value": 233 }, - "machine_depth": { "default_value": 215 }, - "machine_height": { "default_value": 200 }, - "machine_heated_bed": { "default_value": true }, - "machine_nozzle_heat_up_speed": { "default_value": 1.4 }, - "machine_nozzle_cool_down_speed": { "default_value": 0.8 }, - "machine_head_with_fans_polygon": - { - "default_value": - [ - [ -41.9, -45.8 ], - [ -41.9, 33.9 ], - [ 59.9, 33.9 ], - [ 59.9, -45.8 ] - ] - }, - "machine_gcode_flavor": { "default_value": "Griffin" }, - "machine_max_feedrate_x": { "default_value": 300 }, - "machine_max_feedrate_y": { "default_value": 300 }, - "machine_max_feedrate_z": { "default_value": 40 }, - "machine_acceleration": { "default_value": 3000 }, - "gantry_height": { "value": "60" }, - "machine_disallowed_areas": { "default_value": [ - [[92.8, -53.4], [92.8, -97.5], [116.5, -97.5], [116.5, -53.4]], - [[73.8, 107.5], [73.8, 100.5], [116.5, 100.5], [116.5, 107.5]], - [[74.6, 107.5], [74.6, 100.5], [116.5, 100.5], [116.5, 107.5]], - [[74.9, -97.5], [74.9, -107.5], [116.5, -107.5], [116.5, -97.5]], - [[-116.5, -103.5], [-116.5, -107.5], [-100.9, -107.5], [-100.9, -103.5]], - [[-116.5, 105.8], [-96.9, 105.8], [-96.9, 107.5], [-116.5, 107.5]] - ]}, - "machine_extruder_count": { "default_value": 2 }, - "extruder_prime_pos_abs": { "default_value": true }, - "machine_start_gcode": { "default_value": "" }, - "machine_end_gcode": { "default_value": "G91 ;Relative movement\nG0 F15000 X8.0 Z0.5 E-4.5 ;Wiping+material retraction\nG0 F10000 Z1.5 E4.5 ;Compensation for the retraction\nG90 ;Disable relative movement" }, - "prime_tower_position_x": { "value": "machine_depth - max(extruderValue(adhesion_extruder_nr, 'brim_width') * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(adhesion_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) - 30" }, - "prime_tower_wipe_enabled": { "default_value": false }, - - "prime_blob_enable": { "enabled": true, "default_value": true, "value": "resolveOrValue('print_sequence') != 'one_at_a_time'" }, - - "acceleration_enabled": { "value": "True" }, - "acceleration_layer_0": { "value": "acceleration_topbottom" }, + "overrides": + { + "acceleration_enabled": { "value": true }, "acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 3500)" }, "acceleration_print": { "value": "3500" }, "acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 3500)" }, @@ -92,43 +59,102 @@ "acceleration_wall": { "value": "math.ceil(acceleration_print * 1500 / 3500)" }, "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 1000 / 3500)" }, "brim_width": { "value": "3" }, - "cool_fan_full_at_height": { "value": "layer_height_0 + 4 * layer_height" }, "cool_fan_speed": { "value": "50" }, - "cool_fan_speed_max": { "value": "100" }, - "cool_min_speed": { "value": "5" }, + "default_material_print_temperature": { "value": "200" }, + "extruder_prime_pos_abs": { "default_value": true }, + "gantry_height": { "value": "60" }, "infill_overlap": { "value": "0" }, "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'triangles'" }, "infill_wipe_dist": { "value": "0" }, - "initial_layer_line_width_factor": { "value": "120" }, "jerk_enabled": { "value": "True" }, - "layer_height_0": { "value": "round(machine_nozzle_size / 1.5, 2)" }, "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_acceleration": { "default_value": 3000 }, + "machine_depth": { "default_value": 215 }, + "machine_disallowed_areas": + { + "default_value": [ + [ + [92.8, -53.4], + [92.8, -97.5], + [116.5, -97.5], + [116.5, -53.4] + ], + [ + [73.8, 107.5], + [73.8, 100.5], + [116.5, 100.5], + [116.5, 107.5] + ], + [ + [74.6, 107.5], + [74.6, 100.5], + [116.5, 100.5], + [116.5, 107.5] + ], + [ + [74.9, -97.5], + [74.9, -107.5], + [116.5, -107.5], + [116.5, -97.5] + ], + [ + [-116.5, -103.5], + [-116.5, -107.5], + [-100.9, -107.5], + [-100.9, -103.5] + ], + [ + [-116.5, 105.8], + [-96.9, 105.8], + [-96.9, 107.5], + [-116.5, 107.5] + ] + ] + }, + "machine_end_gcode": { "default_value": "G91 ;Relative movement\nG0 F15000 X8.0 Z0.5 E-4.5 ;Wiping+material retraction\nG0 F10000 Z1.5 E4.5 ;Compensation for the retraction\nG90 ;Disable relative movement" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "Griffin" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-41.9, -45.8], + [-41.9, 33.9], + [59.9, 33.9], + [59.9, -45.8] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200 }, + "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" }, - "default_material_print_temperature": { "value": "200" }, - "material_print_temperature_layer_0": { "value": "material_print_temperature + 5" }, + "machine_name": { "default_value": "Ultimaker 3" }, + "machine_nozzle_cool_down_speed": { "default_value": 0.8 }, + "machine_nozzle_heat_up_speed": { "default_value": 1.4 }, + "machine_start_gcode": { "default_value": "" }, + "machine_width": { "default_value": 233 }, "material_bed_temperature": { "maximum_value": "115" }, "material_bed_temperature_layer_0": { "maximum_value": "115" }, - "material_standby_temperature": { "value": "100" }, "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'" + }, "prime_tower_enable": { "default_value": true }, - "raft_airgap": { "value": "0" }, - "raft_base_thickness": { "value": "0.3" }, - "raft_interface_line_spacing": { "value": "0.5" }, - "raft_interface_line_width": { "value": "0.5" }, - "raft_interface_thickness": { "value": "0.2" }, - "raft_jerk": { "value": "jerk_layer_0" }, - "raft_margin": { "value": "10" }, - "raft_surface_layers": { "value": "1" }, + "prime_tower_position_x": { "value": "machine_depth - max(extruderValue(adhesion_extruder_nr, 'brim_width') * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(adhesion_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) - 30" }, + "prime_tower_wipe_enabled": { "default_value": false }, "retraction_amount": { "value": "6.5" }, "retraction_hop": { "value": "2" }, - "retraction_hop_enabled": { "value": "extruders_enabled_count > 1" }, + "retraction_hop_enabled": { "value": "extruders_enabled_count > 1" }, "retraction_hop_only_when_collides": { "value": "True" }, "retraction_min_travel": { "value": "5" }, "retraction_prime_speed": { "value": "15" }, "skin_overlap": { "value": "10" }, - "speed_layer_0": { "value": "20" }, "speed_prime_tower": { "value": "speed_topbottom" }, "speed_print": { "value": "35" }, "speed_support": { "value": "speed_wall_0" }, @@ -146,4 +172,4 @@ "wall_0_inset": { "value": "0" }, "zig_zaggify_infill": { "value": "gradual_infill_steps == 0" } } -} +} \ No newline at end of file diff --git a/resources/definitions/ultimaker3_extended.def.json b/resources/definitions/ultimaker3_extended.def.json index 970d3a405d..5afbbce1da 100644 --- a/resources/definitions/ultimaker3_extended.def.json +++ b/resources/definitions/ultimaker3_extended.def.json @@ -2,42 +2,45 @@ "version": 2, "name": "Ultimaker 3 Extended", "inherits": "ultimaker3", - "metadata": { + "metadata": + { + "visible": true, "author": "Ultimaker", "manufacturer": "Ultimaker B.V.", - "quality_definition": "ultimaker3", - "visible": true, "file_formats": "application/gzip;text/x-gcode", "platform": "ultimaker3_platform.obj", - "platform_texture": "Ultimaker3Extendedbackplate.png", - "platform_offset": [0, 0, 0], + "bom_numbers": [ + 9511 + ], + "firmware_update_info": + { + "check_urls": [ "https://software.ultimaker.com/releases/firmware/9066/stable/um-update.swu.version" ], + "id": 9511, + "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, - "preferred_variant_name": "AA 0.4", - "variants_name": "Print core", "machine_extruder_trains": { "0": "ultimaker3_extended_extruder_left", "1": "ultimaker3_extended_extruder_right" }, - "first_start_actions": [ "DiscoverUM3Action" ], + "platform_offset": [ + 0, + 0, + 0 + ], + "platform_texture": "Ultimaker3Extendedbackplate.png", + "preferred_variant_name": "AA 0.4", + "quality_definition": "ultimaker3", "supported_actions": [ "DiscoverUM3Action" ], - "firmware_update_info": { - "id": 9511, - "check_urls": - [ - "https://software.ultimaker.com/releases/firmware/9066/stable/um-update.swu.version" - ], - "update_url": "https://ultimaker.com/firmware?utm_source=cura&utm_medium=software&utm_campaign=fw-update" - }, - "bom_numbers": [ - 9511 - ] + "variants_name": "Print core" }, - - "overrides": { - "machine_name": { "default_value": "Ultimaker 3 Extended" }, - "machine_height": { "default_value": 300 } + "overrides": + { + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "Ultimaker 3 Extended" } } -} +} \ No newline at end of file diff --git a/resources/definitions/ultimaker_original.def.json b/resources/definitions/ultimaker_original.def.json index 15b381f4da..c34dd4aadf 100644 --- a/resources/definitions/ultimaker_original.def.json +++ b/resources/definitions/ultimaker_original.def.json @@ -2,66 +2,84 @@ "version": 2, "name": "Ultimaker Original", "inherits": "ultimaker", - "metadata": { + "metadata": + { "visible": true, "author": "Ultimaker", "manufacturer": "Ultimaker B.V.", - "weight": 4, "file_formats": "text/x-gcode", "platform": "ultimaker_platform.3mf", - "has_materials": true, - "has_machine_quality": true, - "exclude_materials": ["generic_hips", "generic_petg", "generic_bam", "ultimaker_bam", "generic_pva", "ultimaker_pva", "generic_tough_pla", "ultimaker_tough_pla_black", "ultimaker_tough_pla_green", "ultimaker_tough_pla_red", "ultimaker_tough_pla_white", "generic_cffcpe", "generic_cffpa", "generic_gffcpe", "generic_gffpa", "structur3d_dap100silicone", "ultimaker_petg_blue", "ultimaker_petg_grey", "ultimaker_petg_black", "ultimaker_petg_green", "ultimaker_petg_white", "ultimaker_petg_orange", "ultimaker_petg_silver", "ultimaker_petg_yellow", "ultimaker_petg_transparent", "ultimaker_petg_red_translucent", "ultimaker_petg_blue_translucent", "ultimaker_petg_green_translucent", "ultimaker_petg_yellow_fluorescent", "ultimaker_petg_red" ], - "first_start_actions": ["UMOUpgradeSelection", "BedLevel"], - "supported_actions": ["UMOUpgradeSelection", "BedLevel"], - "machine_extruder_trains": - { - "0": "ultimaker_original_extruder_0" - }, + "exclude_materials": [ + "generic_hips", + "generic_petg", + "generic_bam", + "ultimaker_bam", + "generic_pva", + "ultimaker_pva", + "generic_tough_pla", + "ultimaker_tough_pla_black", + "ultimaker_tough_pla_green", + "ultimaker_tough_pla_red", + "ultimaker_tough_pla_white", + "generic_cffcpe", + "generic_cffpa", + "generic_gffcpe", + "generic_gffpa", + "structur3d_dap100silicone", + "ultimaker_petg_blue", + "ultimaker_petg_grey", + "ultimaker_petg_black", + "ultimaker_petg_green", + "ultimaker_petg_white", + "ultimaker_petg_orange", + "ultimaker_petg_silver", + "ultimaker_petg_yellow", + "ultimaker_petg_transparent", + "ultimaker_petg_red_translucent", + "ultimaker_petg_blue_translucent", + "ultimaker_petg_green_translucent", + "ultimaker_petg_yellow_fluorescent", + "ultimaker_petg_red" + ], "firmware_file": "MarlinUltimaker-{baudrate}.hex", - "firmware_hbk_file": "MarlinUltimaker-HBK-{baudrate}.hex" + "firmware_hbk_file": "MarlinUltimaker-HBK-{baudrate}.hex", + "first_start_actions": [ + "UMOUpgradeSelection", + "BedLevel" + ], + "has_machine_quality": true, + "has_materials": true, + "machine_extruder_trains": { "0": "ultimaker_original_extruder_0" }, + "supported_actions": [ + "UMOUpgradeSelection", + "BedLevel" + ], + "weight": 4 }, - - "overrides": { - "machine_name": { "default_value": "Ultimaker Original" }, - "machine_width": { - "default_value": 205 - }, - "machine_height": { - "default_value": 200 - }, - "machine_depth": { - "default_value": 205 - }, - "machine_center_is_zero": { - "default_value": false - }, + "overrides": + { + "cool_fan_speed_0": { "value": 0 }, + "gantry_height": { "value": "55" }, + "infill_before_walls": { "value": "False" }, + "layer_height_0": { "value": 0.3 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 205 }, + "machine_end_gcode": { "value": "'M104 S0 ;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_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { "default_value": [ - [ -75, 35 ], - [ -75, -18 ], - [ 18, 35 ], - [ 18, -18 ] + [-75, 35], + [-75, -18], + [18, 35], + [18, -18] ] }, - "gantry_height": { - "value": "55" - }, - "machine_use_extruder_offset_to_offset_coords": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "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_end_gcode": { - "value": "'M104 S0 ;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'" - }, - "infill_before_walls": { - "value": "False" - } + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "Ultimaker Original" }, + "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 }, + "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 bda8a0ce12..59bc4fb8bb 100644 --- a/resources/definitions/ultimaker_original_dual.def.json +++ b/resources/definitions/ultimaker_original_dual.def.json @@ -2,74 +2,88 @@ "version": 2, "name": "Ultimaker Original Dual Extrusion", "inherits": "ultimaker", - "metadata": { + "metadata": + { "visible": true, "author": "Ultimaker", "manufacturer": "Ultimaker B.V.", - "weight": 4, "file_formats": "text/x-gcode", "platform": "ultimaker_platform.3mf", - "has_materials": true, + "exclude_materials": [ + "generic_hips", + "generic_petg", + "generic_bam", + "ultimaker_bam", + "generic_pva", + "ultimaker_pva", + "generic_tough_pla", + "ultimaker_tough_pla_black", + "ultimaker_tough_pla_green", + "ultimaker_tough_pla_red", + "ultimaker_tough_pla_white", + "generic_cffcpe", + "generic_cffpa", + "generic_gffcpe", + "generic_gffpa", + "structur3d_dap100silicone", + "ultimaker_petg_blue", + "ultimaker_petg_grey", + "ultimaker_petg_black", + "ultimaker_petg_green", + "ultimaker_petg_white", + "ultimaker_petg_orange", + "ultimaker_petg_silver", + "ultimaker_petg_yellow", + "ultimaker_petg_transparent", + "ultimaker_petg_red_translucent", + "ultimaker_petg_blue_translucent", + "ultimaker_petg_green_translucent", + "ultimaker_petg_yellow_fluorescent", + "ultimaker_petg_red" + ], + "firmware_file": "MarlinUltimaker-{baudrate}-dual.hex", + "firmware_hbk_file": "MarlinUltimaker-HBK-{baudrate}-dual.hex", + "first_start_actions": [ + "UMOUpgradeSelection", + "BedLevel" + ], "has_machine_quality": true, - "quality_definition": "ultimaker_original", - "exclude_materials": ["generic_hips", "generic_petg", "generic_bam", "ultimaker_bam", "generic_pva", "ultimaker_pva", "generic_tough_pla", "ultimaker_tough_pla_black", "ultimaker_tough_pla_green", "ultimaker_tough_pla_red", "ultimaker_tough_pla_white", "generic_cffcpe", "generic_cffpa", "generic_gffcpe", "generic_gffpa", "structur3d_dap100silicone", "ultimaker_petg_blue", "ultimaker_petg_grey", "ultimaker_petg_black", "ultimaker_petg_green", "ultimaker_petg_white", "ultimaker_petg_orange", "ultimaker_petg_silver", "ultimaker_petg_yellow", "ultimaker_petg_transparent", "ultimaker_petg_red_translucent", "ultimaker_petg_blue_translucent", "ultimaker_petg_green_translucent", "ultimaker_petg_yellow_fluorescent", "ultimaker_petg_red" ], + "has_materials": true, "machine_extruder_trains": { "0": "ultimaker_original_dual_1st", "1": "ultimaker_original_dual_2nd" }, - "firmware_file": "MarlinUltimaker-{baudrate}-dual.hex", - "firmware_hbk_file": "MarlinUltimaker-HBK-{baudrate}-dual.hex", - "first_start_actions": ["UMOUpgradeSelection", "BedLevel"], - "supported_actions": ["UMOUpgradeSelection", "BedLevel"] + "quality_definition": "ultimaker_original", + "supported_actions": [ + "UMOUpgradeSelection", + "BedLevel" + ], + "weight": 4 }, - - "overrides": { - "machine_name": { "default_value": "Ultimaker Original" }, - "machine_width": { - "default_value": 205 - }, - "machine_height": { - "default_value": 200 - }, - "machine_depth": { - "default_value": 195 - }, - "machine_center_is_zero": { - "default_value": false - }, + "overrides": + { + "gantry_height": { "value": "55" }, + "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_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { "default_value": [ - [ -75, 35 ], - [ -75, -18 ], - [ 18, 35 ], - [ 18, -18 ] + [-75, 35], + [-75, -18], + [18, 35], + [18, -18] ] }, - "gantry_height": { - "value": "55" - }, - "machine_use_extruder_offset_to_offset_coords": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "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_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_extruder_count": { - "default_value": 2 - }, - "prime_tower_position_x": { - "value": "195" - }, - "prime_tower_position_y": { - "value": "149" - } + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "Ultimaker Original" }, + "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 }, + "prime_tower_position_x": { "value": "195" }, + "prime_tower_position_y": { "value": "149" } } -} +} \ No newline at end of file diff --git a/resources/definitions/ultimaker_original_plus.def.json b/resources/definitions/ultimaker_original_plus.def.json index 949e2e8d0d..26924a8ba6 100644 --- a/resources/definitions/ultimaker_original_plus.def.json +++ b/resources/definitions/ultimaker_original_plus.def.json @@ -2,31 +2,25 @@ "version": 2, "name": "Ultimaker Original+", "inherits": "ultimaker_original", - "metadata": { + "metadata": + { "author": "Ultimaker", "manufacturer": "Ultimaker B.V.", - "weight": 4, "file_formats": "text/x-gcode", "platform": "ultimaker2_platform.obj", + "firmware_file": "MarlinUltimaker-UMOP-{baudrate}.hex", + "firmware_hbk_file": "MarlinUltimaker-UMOP-{baudrate}.hex", + "first_start_actions": [ "BedLevel" ], + "machine_extruder_trains": { "0": "ultimaker_original_plus_extruder_0" }, "platform_texture": "UltimakerPlusbackplate.png", "quality_definition": "ultimaker_original", - "first_start_actions": ["BedLevel"], - "supported_actions": ["BedLevel"], - "machine_extruder_trains": - { - "0": "ultimaker_original_plus_extruder_0" - }, - "firmware_file": "MarlinUltimaker-UMOP-{baudrate}.hex", - "firmware_hbk_file": "MarlinUltimaker-UMOP-{baudrate}.hex" + "supported_actions": [ "BedLevel" ], + "weight": 4 }, - - "overrides": { - "machine_name": { "default_value": "Ultimaker Original+" }, - "machine_heated_bed": { - "default_value": true - }, - "machine_max_feedrate_z": { - "default_value": 30 - } + "overrides": + { + "machine_heated_bed": { "default_value": true }, + "machine_max_feedrate_z": { "default_value": 30 }, + "machine_name": { "default_value": "Ultimaker Original+" } } -} +} \ No newline at end of file diff --git a/resources/definitions/ultimaker_s3.def.json b/resources/definitions/ultimaker_s3.def.json index 743ab7f478..61652b23a6 100644 --- a/resources/definitions/ultimaker_s3.def.json +++ b/resources/definitions/ultimaker_s3.def.json @@ -2,81 +2,53 @@ "version": 2, "name": "Ultimaker S3", "inherits": "ultimaker", - "metadata": { + "metadata": + { + "visible": true, "author": "Ultimaker", "manufacturer": "Ultimaker B.V.", - "visible": true, "file_formats": "application/x-ufp;text/x-gcode", "platform": "ultimaker_s3_platform.obj", - "platform_texture": "UltimakerS3backplate.png", - "platform_offset": [0, 0, 0], + "bom_numbers": [213482, 213483], + "exclude_materials": [ + "generic_hips", + "generic_petg", + "structur3d_dap100silicone" + ], + "firmware_update_info": + { + "check_urls": [ "https://software.ultimaker.com/releases/firmware/213482/stable/um-update.swu.version" ], + "id": 213482, + "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_variant_buildplates": false, "has_variants": true, - "exclude_materials": [ "generic_hips", "generic_petg", "structur3d_dap100silicone" ], - "preferred_variant_name": "AA 0.4", - "preferred_quality_type": "normal", - "variants_name": "Print core", - "nozzle_offsetting_for_disallowed_areas": false, "machine_extruder_trains": { "0": "ultimaker_s3_extruder_left", "1": "ultimaker_s3_extruder_right" }, - "first_start_actions": [ "DiscoverUM3Action" ], + "nozzle_offsetting_for_disallowed_areas": false, + "platform_offset": [ + 0, + 0, + 0 + ], + "platform_texture": "UltimakerS3backplate.png", + "preferred_quality_type": "fast", + "preferred_variant_name": "AA 0.4", "supported_actions": [ "DiscoverUM3Action" ], - "supports_usb_connection": false, "supports_material_export": true, - "weight": -1, - "firmware_update_info": { - "id": 213482, - "check_urls": ["https://software.ultimaker.com/releases/firmware/213482/stable/um-update.swu.version"], - "update_url": "https://ultimaker.com/firmware?utm_source=cura&utm_medium=software&utm_campaign=fw-update" - }, - "bom_numbers": [ - 213482 - ] + "supports_usb_connection": false, + "variants_name": "Print core", + "weight": -1 }, - - "overrides": { - "machine_name": { "default_value": "Ultimaker S3" }, - "machine_width": { "default_value": 230 }, - "machine_depth": { "default_value": 190 }, - "machine_height": { "default_value": 200 }, - "machine_heated_bed": { "default_value": true }, - "machine_nozzle_heat_up_speed": { "default_value": 1.4 }, - "machine_nozzle_cool_down_speed": { "default_value": 0.8 }, - "machine_head_with_fans_polygon": - { - "default_value": - [ - [ -41.4, -45.8 ], - [ -41.4, 36.0 ], - [ 63.3, 36.0 ], - [ 63.3, -45.8 ] - ] - }, - "machine_gcode_flavor": { "default_value": "Griffin" }, - "machine_max_feedrate_x": { "default_value": 300 }, - "machine_max_feedrate_y": { "default_value": 300 }, - "machine_max_feedrate_z": { "default_value": 40 }, - "machine_acceleration": { "default_value": 3000 }, - "gantry_height": { "value": "55" }, - "machine_extruder_count": { "default_value": 2 }, - "extruder_prime_pos_abs": { "default_value": true }, - "machine_start_gcode": { "default_value": "" }, - "machine_end_gcode": { "default_value": "" }, - "prime_blob_enable": { "enabled": true, "default_value": false }, - - "speed_travel": - { - "maximum_value": "150", - "value": "150" - }, - - "acceleration_enabled": { "value": "True" }, - "acceleration_layer_0": { "value": "acceleration_topbottom" }, + "overrides": + { + "acceleration_enabled": { "value": true }, "acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 3500)" }, "acceleration_print": { "value": "3500" }, "acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 3500)" }, @@ -85,48 +57,67 @@ "acceleration_wall": { "value": "math.ceil(acceleration_print * 1500 / 3500)" }, "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 1000 / 1000)" }, "brim_width": { "value": "3" }, - "cool_fan_full_at_height": { "value": "layer_height_0 + 4 * layer_height" }, "cool_fan_speed": { "value": "50" }, - "cool_fan_speed_max": { "value": "100" }, - "cool_min_speed": { "value": "5" }, + "default_material_print_temperature": { "value": "200" }, + "extruder_prime_pos_abs": { "default_value": true }, + "gantry_height": { "value": "55" }, "infill_overlap": { "value": "0" }, "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'triangles'" }, "infill_wipe_dist": { "value": "0" }, "jerk_enabled": { "value": "True" }, - "layer_height_0": { "value": "round(machine_nozzle_size / 1.5, 2)" }, "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_acceleration": { "default_value": 3000 }, + "machine_depth": { "default_value": 190 }, + "machine_end_gcode": { "default_value": "" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "Griffin" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-41.4, -45.8], + [-41.4, 36.0], + [63.3, 36.0], + [63.3, -45.8] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200 }, + "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" }, - "default_material_print_temperature": { "value": "200" }, - "material_standby_temperature": { "value": "100" }, + "machine_name": { "default_value": "Ultimaker S3" }, + "machine_nozzle_cool_down_speed": { "default_value": 0.8 }, + "machine_nozzle_heat_up_speed": { "default_value": 1.4 }, + "machine_start_gcode": { "default_value": "" }, + "machine_width": { "default_value": 230 }, "multiple_mesh_overlap": { "value": "0" }, "optimize_wall_printing_order": { "value": "True" }, + "prime_blob_enable": + { + "default_value": false, + "enabled": true + }, "prime_tower_enable": { "value": "True" }, - "raft_airgap": { "value": "0" }, - "raft_base_speed": { "value": "20" }, - "raft_base_thickness": { "value": "0.3" }, - "raft_interface_line_spacing": { "value": "0.5" }, - "raft_interface_line_width": { "value": "0.5" }, - "raft_interface_speed": { "value": "20" }, - "raft_interface_thickness": { "value": "0.2" }, - "raft_jerk": { "value": "jerk_layer_0" }, - "raft_margin": { "value": "10" }, - "raft_speed": { "value": "25" }, - "raft_surface_layers": { "value": "1" }, "retraction_amount": { "value": "6.5" }, "retraction_hop": { "value": "2" }, - "retraction_hop_enabled": { "value": "extruders_enabled_count > 1" }, + "retraction_hop_enabled": { "value": "extruders_enabled_count > 1" }, "retraction_hop_only_when_collides": { "value": "True" }, "retraction_min_travel": { "value": "5" }, "retraction_prime_speed": { "value": "15" }, - "retraction_speed": {"value": "45" }, + "retraction_speed": { "value": "45" }, "skin_overlap": { "value": "10" }, - "speed_layer_0": { "value": "20" }, "speed_prime_tower": { "value": "speed_topbottom" }, "speed_print": { "value": "35" }, "speed_support": { "value": "speed_wall_0" }, "speed_support_interface": { "value": "speed_topbottom" }, "speed_topbottom": { "value": "math.ceil(speed_print * 20 / 35)" }, + "speed_travel": + { + "maximum_value": "150", + "value": "150" + }, "speed_wall": { "value": "math.ceil(speed_print * 30 / 35)" }, "speed_wall_0": { "value": "math.ceil(speed_wall * 20 / 30)" }, "speed_wall_x": { "value": "speed_wall" }, @@ -134,10 +125,8 @@ "switch_extruder_prime_speed": { "value": "15" }, "switch_extruder_retraction_amount": { "value": "8" }, "top_bottom_thickness": { "value": "1" }, - "travel_avoid_supports": { "value": "True" }, "travel_avoid_distance": { "value": "3 if extruders_enabled_count > 1 else machine_nozzle_tip_outer_diameter / 2 * 1.5" }, "wall_0_inset": { "value": "0" }, - "initial_layer_line_width_factor": { "value": "120" }, "zig_zaggify_infill": { "value": "gradual_infill_steps == 0" } } -} +} \ No newline at end of file diff --git a/resources/definitions/ultimaker_s5.def.json b/resources/definitions/ultimaker_s5.def.json index da0367f571..44ca7d7018 100644 --- a/resources/definitions/ultimaker_s5.def.json +++ b/resources/definitions/ultimaker_s5.def.json @@ -2,83 +2,54 @@ "version": 2, "name": "Ultimaker S5", "inherits": "ultimaker", - "metadata": { + "metadata": + { + "visible": true, "author": "Ultimaker", "manufacturer": "Ultimaker B.V.", - "visible": true, "file_formats": "application/x-ufp;text/x-gcode", "platform": "ultimaker_s5_platform.obj", - "platform_texture": "UltimakerS5backplate.png", - "platform_offset": [0, -30, -10], + "bom_numbers": [ + 9051, + 214475, + 214476 + ], + "firmware_update_info": + { + "check_urls": [ "https://software.ultimaker.com/releases/firmware/9051/stable/um-update.swu.version" ], + "id": 9051, + "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_variant_buildplates": true, "has_variants": true, - "preferred_variant_name": "AA 0.4", - "preferred_variant_buildplate_name": "Glass", - "preferred_quality_type": "normal", - "variants_name": "Print core", - "nozzle_offsetting_for_disallowed_areas": false, "machine_extruder_trains": { "0": "ultimaker_s5_extruder_left", "1": "ultimaker_s5_extruder_right" }, - "first_start_actions": [ "DiscoverUM3Action" ], + "nozzle_offsetting_for_disallowed_areas": false, + "platform_offset": [ + 0, + -30, + -10 + ], + "platform_texture": "UltimakerS5backplate.png", + "preferred_quality_type": "fast", + "preferred_variant_buildplate_name": "Glass", + "preferred_variant_name": "AA 0.4", "supported_actions": [ "DiscoverUM3Action" ], - "supports_usb_connection": false, - "supports_network_connection": true, "supports_material_export": true, - "weight": -2, - "firmware_update_info": { - "id": 9051, - "check_urls": ["https://software.ultimaker.com/releases/firmware/9051/stable/um-update.swu.version"], - "update_url": "https://ultimaker.com/firmware?utm_source=cura&utm_medium=software&utm_campaign=fw-update" - }, - "bom_numbers": [ - 9051, 214475 - ] + "supports_network_connection": true, + "supports_usb_connection": false, + "variants_name": "Print core", + "weight": -2 }, - - "overrides": { - "machine_name": { "default_value": "Ultimaker S5" }, - "machine_width": { "default_value": 330 }, - "machine_depth": { "default_value": 240 }, - "machine_height": { "default_value": 300 }, - "machine_heated_bed": { "default_value": true }, - "machine_heated_build_volume": { "default_value": true }, - "machine_nozzle_heat_up_speed": { "default_value": 1.4 }, - "machine_nozzle_cool_down_speed": { "default_value": 0.8 }, - "machine_head_with_fans_polygon": - { - "default_value": - [ - [ -41.4, -45.8 ], - [ -41.4, 36.0 ], - [ 63.3, 36.0 ], - [ 63.3, -45.8 ] - ] - }, - "machine_gcode_flavor": { "default_value": "Griffin" }, - "machine_max_feedrate_x": { "default_value": 300 }, - "machine_max_feedrate_y": { "default_value": 300 }, - "machine_max_feedrate_z": { "default_value": 40 }, - "machine_acceleration": { "default_value": 3000 }, - "gantry_height": { "value": "55" }, - "machine_extruder_count": { "default_value": 2 }, - "extruder_prime_pos_abs": { "default_value": true }, - "machine_start_gcode": { "default_value": "" }, - "machine_end_gcode": { "default_value": "" }, - "prime_blob_enable": { "enabled": true, "default_value": false }, - - "speed_travel": - { - "maximum_value": "150", - "value": "150" - }, - - "acceleration_enabled": { "value": "True" }, - "acceleration_layer_0": { "value": "acceleration_topbottom" }, + "overrides": + { + "acceleration_enabled": { "value": true }, "acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 3500)" }, "acceleration_print": { "value": "3500" }, "acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 3500)" }, @@ -87,48 +58,70 @@ "acceleration_wall": { "value": "math.ceil(acceleration_print * 1500 / 3500)" }, "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 1000 / 1000)" }, "brim_width": { "value": "3" }, - "cool_fan_full_at_height": { "value": "layer_height_0 + 4 * layer_height" }, + "build_volume_temperature": { "maximum_value": 50 }, "cool_fan_speed": { "value": "50" }, - "cool_fan_speed_max": { "value": "100" }, - "cool_min_speed": { "value": "5" }, + "default_material_print_temperature": { "value": "200" }, + "extruder_prime_pos_abs": { "default_value": true }, + "gantry_height": { "value": "55" }, "infill_overlap": { "value": "0" }, "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'triangles'" }, "infill_wipe_dist": { "value": "0" }, "jerk_enabled": { "value": "True" }, - "layer_height_0": { "value": "round(machine_nozzle_size / 1.5, 2)" }, "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_acceleration": { "default_value": 3000 }, + "machine_depth": { "default_value": 240 }, + "machine_end_gcode": { "default_value": "" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "Griffin" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-41.4, -45.8], + [-41.4, 36.0], + [63.3, 36.0], + [63.3, -45.8] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_heated_build_volume": { "default_value": true }, + "machine_height": { "default_value": 300 }, + "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" }, - "default_material_print_temperature": { "value": "200" }, - "material_standby_temperature": { "value": "100" }, + "machine_name": { "default_value": "Ultimaker S5" }, + "machine_nozzle_cool_down_speed": { "default_value": 0.8 }, + "machine_nozzle_heat_up_speed": { "default_value": 1.4 }, + "machine_start_gcode": { "default_value": "" }, + "machine_width": { "default_value": 330 }, "multiple_mesh_overlap": { "value": "0" }, + "optimize_wall_printing_order": { "value": "True" }, + "prime_blob_enable": + { + "default_value": false, + "enabled": true + }, "prime_tower_enable": { "value": "True" }, - "raft_airgap": { "value": "0" }, - "raft_base_speed": { "value": "20" }, - "raft_base_thickness": { "value": "0.3" }, - "raft_interface_line_spacing": { "value": "0.5" }, - "raft_interface_line_width": { "value": "0.5" }, - "raft_interface_speed": { "value": "20" }, - "raft_interface_thickness": { "value": "0.2" }, - "raft_jerk": { "value": "jerk_layer_0" }, - "raft_margin": { "value": "10" }, - "raft_speed": { "value": "25" }, - "raft_surface_layers": { "value": "1" }, "retraction_amount": { "value": "6.5" }, - "retraction_combing": { "value": "'no_outer_surfaces'"}, + "retraction_combing": { "value": "'no_outer_surfaces'" }, "retraction_hop": { "value": "2" }, - "retraction_hop_enabled": { "value": "extruders_enabled_count > 1" }, + "retraction_hop_enabled": { "value": "extruders_enabled_count > 1" }, "retraction_hop_only_when_collides": { "value": "True" }, "retraction_min_travel": { "value": "5" }, "retraction_prime_speed": { "value": "15" }, - "retraction_speed": {"value": "45" }, + "retraction_speed": { "value": "45" }, "skin_overlap": { "value": "10" }, - "speed_layer_0": { "value": "20" }, "speed_prime_tower": { "value": "speed_topbottom" }, "speed_print": { "value": "35" }, "speed_support": { "value": "speed_wall_0" }, "speed_support_interface": { "value": "speed_topbottom" }, "speed_topbottom": { "value": "math.ceil(speed_print * 20 / 35)" }, + "speed_travel": + { + "maximum_value": "150", + "value": "150" + }, "speed_wall": { "value": "math.ceil(speed_print * 30 / 35)" }, "speed_wall_0": { "value": "math.ceil(speed_wall * 20 / 30)" }, "speed_wall_x": { "value": "speed_wall" }, @@ -136,12 +129,8 @@ "switch_extruder_prime_speed": { "value": "15" }, "switch_extruder_retraction_amount": { "value": "8" }, "top_bottom_thickness": { "value": "1" }, - "travel_avoid_supports": { "value": "True" }, "travel_avoid_distance": { "value": "3 if extruders_enabled_count > 1 else machine_nozzle_tip_outer_diameter / 2 * 1.5" }, "wall_0_inset": { "value": "0" }, - "optimize_wall_printing_order": { "value": "True" }, - "initial_layer_line_width_factor": { "value": "120" }, - "zig_zaggify_infill": { "value": "gradual_infill_steps == 0" }, - "build_volume_temperature": { "maximum_value": 50 } + "zig_zaggify_infill": { "value": "gradual_infill_steps == 0" } } -} +} \ No newline at end of file diff --git a/resources/definitions/ultimaker_s7.def.json b/resources/definitions/ultimaker_s7.def.json new file mode 100644 index 0000000000..a996e00f72 --- /dev/null +++ b/resources/definitions/ultimaker_s7.def.json @@ -0,0 +1,50 @@ +{ + "version": 2, + "name": "Ultimaker S7", + "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": [ + 5078167 + ], + "firmware_update_info": + { + "check_urls": [ "https://software.ultimaker.com/releases/firmware/9051/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_s7_extruder_left", + "1": "ultimaker_s7_extruder_right" + }, + "nozzle_offsetting_for_disallowed_areas": false, + "platform_offset": [ + 0, + 0, + 0 + ], + "platform_texture": "UltimakerS7backplate.png", + "preferred_variant_name": "AA 0.4", + "quality_definition": "ultimaker_s5", + "supported_actions": [ "DiscoverUM3Action" ], + "supports_material_export": true, + "supports_network_connection": true, + "supports_usb_connection": false, + "variants_name": "Print core", + "weight": -2 + }, + "overrides": + { + "machine_name": { "default_value": "Ultimaker S7" } + } +} \ No newline at end of file diff --git a/resources/definitions/uni_200.def.json b/resources/definitions/uni_200.def.json index f425a3d89f..9b1d498408 100644 --- a/resources/definitions/uni_200.def.json +++ b/resources/definitions/uni_200.def.json @@ -1,18 +1,20 @@ { - "name": "Uni 200", - "version": 2, - "inherits": "uni_base", - "metadata": { - "author": "Nail` Gimadeev (C)", - "visible": true, - "quality_definition": "uni_base", - "platform": "uni_200_platform.stl", - "platform_texture": "uni.png" - }, - "overrides": { - "machine_name": {"default_value": "uni_200"}, - "machine_width": {"default_value": 220}, - "machine_depth": {"default_value": 220}, - "machine_height": {"default_value": 250} - } -} + "version": 2, + "name": "Uni 200", + "inherits": "uni_base", + "metadata": + { + "visible": true, + "author": "Nail` Gimadeev (C)", + "platform": "uni_200_platform.stl", + "platform_texture": "uni.png", + "quality_definition": "uni_base" + }, + "overrides": + { + "machine_depth": { "default_value": 220 }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "uni_200" }, + "machine_width": { "default_value": 220 } + } +} \ No newline at end of file diff --git a/resources/definitions/uni_250.def.json b/resources/definitions/uni_250.def.json index c6a5642439..a6300a32e2 100644 --- a/resources/definitions/uni_250.def.json +++ b/resources/definitions/uni_250.def.json @@ -1,18 +1,20 @@ { - "name": "Uni 250", - "version": 2, - "inherits": "uni_base", - "metadata": { - "author": "Nail` Gimadeev (C)", - "visible": true, - "quality_definition": "uni_base", - "platform": "uni_250_platform.stl", - "platform_texture": "uni.png" - }, - "overrides": { - "machine_name": {"default_value": "uni_250"}, - "machine_width": {"default_value": 270}, - "machine_depth": {"default_value": 220}, - "machine_height": {"default_value": 250} - } -} + "version": 2, + "name": "Uni 250", + "inherits": "uni_base", + "metadata": + { + "visible": true, + "author": "Nail` Gimadeev (C)", + "platform": "uni_250_platform.stl", + "platform_texture": "uni.png", + "quality_definition": "uni_base" + }, + "overrides": + { + "machine_depth": { "default_value": 220 }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "uni_250" }, + "machine_width": { "default_value": 270 } + } +} \ No newline at end of file diff --git a/resources/definitions/uni_300.def.json b/resources/definitions/uni_300.def.json index 52cfc769cf..a5c8be60a6 100644 --- a/resources/definitions/uni_300.def.json +++ b/resources/definitions/uni_300.def.json @@ -1,18 +1,20 @@ { - "name": "Uni 300", - "version": 2, - "inherits": "uni_base", - "metadata": { - "author": "Nail` Gimadeev (C)", - "visible": true, - "quality_definition": "uni_base", - "platform": "uni_300_platform.stl", - "platform_texture": "uni.png" - }, - "overrides": { - "machine_name": {"default_value": "uni_300"}, - "machine_width": {"default_value": 320}, - "machine_depth": {"default_value": 220}, - "machine_height": {"default_value": 250} - } -} + "version": 2, + "name": "Uni 300", + "inherits": "uni_base", + "metadata": + { + "visible": true, + "author": "Nail` Gimadeev (C)", + "platform": "uni_300_platform.stl", + "platform_texture": "uni.png", + "quality_definition": "uni_base" + }, + "overrides": + { + "machine_depth": { "default_value": 220 }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "uni_300" }, + "machine_width": { "default_value": 320 } + } +} \ No newline at end of file diff --git a/resources/definitions/uni_base.def.json b/resources/definitions/uni_base.def.json index 82b05f3366..1b3dbc104d 100644 --- a/resources/definitions/uni_base.def.json +++ b/resources/definitions/uni_base.def.json @@ -1,191 +1,148 @@ { - "name": "Uni Base Printer", "version": 2, + "name": "Uni Base Printer", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": false, "author": "Nail` Gimadeev (C)", "manufacturer": "Uni 3D", "file_formats": "text/x-gcode", - "first_start_actions": ["MachineSettingsAction"], - "machine_extruder_trains": { + "exclude_materials": [ + "chromatik_pla", + "dsm_arnitel2045_175", + "dsm_novamid1070_175", + "emotiontech_abs", + "emotiontech_asax", + "emotiontech_hips", + "emotiontech_petg", + "emotiontech_pla", + "emotiontech_pva-m", + "emotiontech_pva-oks", + "emotiontech_pva-s", + "emotiontech_tpu98a", + "fabtotum_abs", + "fabtotum_nylon", + "fabtotum_pla", + "fabtotum_tpu", + "fiberlogy_hd_pla", + "filo3d_pla", + "filo3d_pla_green", + "filo3d_pla_red", + "imade3d_petg_175", + "imade3d_pla_175", + "innofill_innoflex60_175", + "leapfrog_abs_natural", + "leapfrog_epla_natural", + "leapfrog_pva_natural", + "octofiber_pla", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "redd_abs", + "redd_asa", + "redd_hips", + "redd_nylon", + "redd_petg", + "redd_pla", + "redd_tpe", + "structur3d_dap100silicone", + "tizyx_abs", + "tizyx_flex", + "tizyx_petg", + "tizyx_pla", + "tizyx_pla_bois", + "tizyx_pva", + "verbatim_bvoh_175", + "Vertex_Delta_ABS", + "Vertex_Delta_PET", + "Vertex_Delta_PLA", + "Vertex_Delta_PLA_Glitter", + "Vertex_Delta_PLA_Mat", + "Vertex_Delta_PLA_Satin", + "Vertex_Delta_PLA_Wood", + "Vertex_Delta_TPU", + "zyyx_pro_flex", + "zyyx_pro_pla" + ], + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { "0": "uni_extruder_1st", "1": "uni_extruder_2nd" }, - "has_materials": true, "preferred_material": "generic_abs_175", - "has_variants": true, - "variants_name": "Nozzle Size", - "preferred_variant_name": "0.40mm Nozzle", - "has_machine_quality": true, "preferred_quality_type": "q020", - "exclude_materials": [ - "chromatik_pla", - "dsm_arnitel2045_175", - "dsm_novamid1070_175", - "emotiontech_abs", - "emotiontech_asax", - "emotiontech_hips", - "emotiontech_petg", - "emotiontech_pla", - "emotiontech_pva-m", - "emotiontech_pva-oks", - "emotiontech_pva-s", - "emotiontech_tpu98a", - "fabtotum_abs", - "fabtotum_nylon", - "fabtotum_pla", - "fabtotum_tpu", - "fiberlogy_hd_pla", - "filo3d_pla", - "filo3d_pla_green", - "filo3d_pla_red", - "imade3d_petg_175", - "imade3d_pla_175", - "innofill_innoflex60_175", - "leapfrog_abs_natural", - "leapfrog_epla_natural", - "leapfrog_pva_natural", - "octofiber_pla", - "polyflex_pla", - "polymax_pla", - "polyplus_pla", - "polywood_pla", - "redd_abs", - "redd_asa", - "redd_hips", - "redd_nylon", - "redd_petg", - "redd_pla", - "redd_tpe", - "structur3d_dap100silicone", - "tizyx_abs", - "tizyx_flex", - "tizyx_petg", - "tizyx_pla", - "tizyx_pla_bois", - "tizyx_pva", - "ultimaker_abs_black", - "ultimaker_abs_blue", - "ultimaker_abs_green", - "ultimaker_abs_grey", - "ultimaker_abs_orange", - "ultimaker_abs_pearl-gold", - "ultimaker_abs_red", - "ultimaker_abs_silver-metallic", - "ultimaker_abs_white", - "ultimaker_abs_yellow", - "ultimaker_bam", - "ultimaker_cpe_black", - "ultimaker_cpe_blue", - "ultimaker_cpe_dark-grey", - "ultimaker_cpe_green", - "ultimaker_cpe_light-grey", - "ultimaker_cpe_plus_black", - "ultimaker_cpe_plus_transparent", - "ultimaker_cpe_plus_white", - "ultimaker_cpe_red", - "ultimaker_cpe_transparent", - "ultimaker_cpe_white", - "ultimaker_cpe_yellow", - "ultimaker_nylon_black", - "ultimaker_nylon_transparent", - "ultimaker_pc_black", - "ultimaker_pc_transparent", - "ultimaker_pc_white", - "ultimaker_pla_black", - "ultimaker_pla_blue", - "ultimaker_pla_green", - "ultimaker_pla_magenta", - "ultimaker_pla_orange", - "ultimaker_pla_pearl-white", - "ultimaker_pla_red", - "ultimaker_pla_silver-metallic", - "ultimaker_pla_transparent", - "ultimaker_pla_white", - "ultimaker_pla_yellow", - "ultimaker_pp_transparent", - "ultimaker_pva", - "ultimaker_tough_pla_black", - "ultimaker_tough_pla_green", - "ultimaker_tough_pla_red", - "ultimaker_tough_pla_white", - "ultimaker_tpu_black", - "ultimaker_tpu_blue", - "ultimaker_tpu_red", - "ultimaker_tpu_white", - "verbatim_bvoh_175", - "Vertex_Delta_ABS", - "Vertex_Delta_PET", - "Vertex_Delta_PLA", - "Vertex_Delta_PLA_Glitter", - "Vertex_Delta_PLA_Mat", - "Vertex_Delta_PLA_Satin", - "Vertex_Delta_PLA_Wood", - "Vertex_Delta_TPU", - "zyyx_pro_flex", - "zyyx_pro_pla"] + "preferred_variant_name": "0.40mm Nozzle", + "variants_name": "Nozzle Size" }, - "overrides": { - "machine_name": {"default_value": "UNI Base Printer"}, - "machine_start_gcode": {"default_value": ";Sliced at: {day} {date} {time}\nG21\nG90\nM82\nM220 S100\nM221 S100\nG28\nM190 S{material_bed_temperature_layer_0}\nM109 S{material_print_temperature_layer_0}\nG1 F600 Z15\nG92 E0\nG1 F300 E10\nM117 Printing...\n;\n"}, - "machine_end_gcode": {"default_value": "G91\nG1 E-1 F600\nG1 Z+1 E-3 X-20 Y-20 F4800\nM104 S0\nM106 S0\nM140 S0\nM220 S100\nM221 S100\nG28\nG90\nM84\n;\n"}, - "machine_heated_bed": {"default_value": true}, - "material_diameter": {"default_value": 1.75}, - "machine_shape": {"default_value": "rectangular"}, - "machine_width": {"default_value": 270}, - "machine_depth": {"default_value": 220}, - "machine_height": {"default_value": 250}, - "machine_extruder_count": {"value": 2}, - "machine_buildplate_type": {"value": "glass"}, - "machine_center_is_zero": {"default_value": false}, - "machine_gcode_flavor": {"default_value": "RepRap (Marlin/Sprinter)"}, - "machine_head_with_fans_polygon": {"default_value": [ - [-10,10], - [-10,-10], - [10,-10], - [10,10] - ] - }, - "gantry_height": {"value": 55}, - "layer_height_0": {"value": "layer_height"}, - "line_width": {"value": "machine_nozzle_size"}, - "skin_line_width": {"value": "round(line_width * 1.0, 2)"}, - "infill_line_width": {"value": "round(line_width * 1.1, 2)"}, - "skirt_brim_line_width": {"value": "round(line_width * 1.1, 2)"}, - "initial_layer_line_width_factor": {"value": "100"}, - "bottom_thickness": {"value": "layer_height*3 if layer_height > 0.15 else 0.8"}, - "top_bottom_pattern": {"value": "'zigzag'"}, - "top_bottom_pattern_0": {"value": "'zigzag'"}, - "optimize_wall_printing_order": {"value": "True" }, - "z_seam_type": {"value": "'shortest'"}, - "skin_outline_count": {"value": "0"}, - "infill_pattern": {"value": "'gyroid'"}, - "zig_zaggify_infill": {"value": "True"}, - "infill_before_walls": {"value": "False"}, - "infill_enable_travel_optimization": {"value": "True"}, - "expand_skins_expand_distance": {"value": "3"}, - "retraction_min_travel": {"value": "3"}, - "retraction_amount": {"value": "4"}, - "speed_print": {"value": "80"}, - "speed_topbottom": {"value": "50"}, - "speed_layer_0": {"value": "25"}, - "speed_travel_layer_0": {"value": "40"}, - "retraction_combing": {"value": "'all'"}, - "retraction_combing_max_distance": {"value": "10"}, - "travel_avoid_other_parts": {"value": "False"}, - "cool_min_layer_time_fan_speed_max": {"value": "20"}, - "cool_fan_full_at_height": {"value": "layer_height*2"}, - "cool_min_layer_time": {"value": "5"}, - "cool_min_speed": {"value": "15"}, - "cool_lift_head": {"value": "True"}, - "support_enable": {"value": "True"}, - "support_angle": {"value": "65"}, - "support_brim_enable": {"value": "True"}, - "support_infill_rate": {"value": "20"}, - "support_offset": {"value": "2"}, - "adhesion_type": {"value": "'brim'"}, - "brim_width": {"value": "5"}, - "bridge_settings_enabled": {"value": "True"} + "overrides": + { + "adhesion_type": { "value": "'brim'" }, + "bottom_thickness": { "value": "layer_height*3 if layer_height > 0.15 else 0.8" }, + "bridge_settings_enabled": { "value": "True" }, + "brim_width": { "value": "5" }, + "cool_fan_full_at_height": { "value": "layer_height*2" }, + "cool_lift_head": { "value": "True" }, + "cool_min_layer_time": { "value": "5" }, + "cool_min_layer_time_fan_speed_max": { "value": "20" }, + "cool_min_speed": { "value": "15" }, + "expand_skins_expand_distance": { "value": "3" }, + "gantry_height": { "value": 55 }, + "infill_before_walls": { "value": "False" }, + "infill_enable_travel_optimization": { "value": "True" }, + "infill_line_width": { "value": "round(line_width * 1.1, 2)" }, + "infill_pattern": { "value": "'gyroid'" }, + "initial_layer_line_width_factor": { "value": "100" }, + "layer_height_0": { "value": "layer_height" }, + "line_width": { "value": "machine_nozzle_size" }, + "machine_buildplate_type": { "value": "glass" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "G91\nG1 E-1 F600\nG1 Z+1 E-3 X-20 Y-20 F4800\nM104 S0\nM106 S0\nM140 S0\nM220 S100\nM221 S100\nG28\nG90\nM84\n;\n" }, + "machine_extruder_count": { "value": 2 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-10, 10], + [-10, -10], + [10, -10], + [10, 10] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "UNI Base Printer" }, + "machine_shape": { "default_value": "rectangular" }, + "machine_start_gcode": { "default_value": ";Sliced at: {day} {date} {time}\nG21\nG90\nM82\nM220 S100\nM221 S100\nG28\nM190 S{material_bed_temperature_layer_0}\nM109 S{material_print_temperature_layer_0}\nG1 F600 Z15\nG92 E0\nG1 F300 E10\nM117 Printing...\n;\n" }, + "machine_width": { "default_value": 270 }, + "material_diameter": { "default_value": 1.75 }, + "optimize_wall_printing_order": { "value": "True" }, + "retraction_amount": { "value": "4" }, + "retraction_combing": { "value": "'all'" }, + "retraction_combing_max_distance": { "value": "10" }, + "retraction_min_travel": { "value": "3" }, + "skin_line_width": { "value": "round(line_width * 1.0, 2)" }, + "skin_outline_count": { "value": "0" }, + "skirt_brim_line_width": { "value": "round(line_width * 1.1, 2)" }, + "speed_layer_0": { "value": "25" }, + "speed_print": { "value": "80" }, + "speed_topbottom": { "value": "50" }, + "speed_travel_layer_0": { "value": "40" }, + "support_angle": { "value": "65" }, + "support_brim_enable": { "value": "True" }, + "support_enable": { "value": "True" }, + "support_infill_rate": { "value": "20" }, + "support_offset": { "value": "2" }, + "top_bottom_pattern": { "value": "'zigzag'" }, + "top_bottom_pattern_0": { "value": "'zigzag'" }, + "travel_avoid_other_parts": { "value": "False" }, + "z_seam_type": { "value": "'shortest'" }, + "zig_zaggify_infill": { "value": "True" } } -} +} \ No newline at end of file diff --git a/resources/definitions/uni_mini.def.json b/resources/definitions/uni_mini.def.json index 4da67907f9..5c08db9fb3 100644 --- a/resources/definitions/uni_mini.def.json +++ b/resources/definitions/uni_mini.def.json @@ -1,18 +1,20 @@ { - "name": "Uni Mini", - "version": 2, - "inherits": "uni_base", - "metadata": { - "author": "Nail` Gimadeev (C)", - "visible": true, - "quality_definition": "uni_base", - "platform": "uni_mini_platform.stl", - "platform_texture": "uni.png" - }, - "overrides": { - "machine_name": {"default_value": "uni_mini"}, - "machine_width": {"default_value": 160}, - "machine_depth": {"default_value": 160}, - "machine_height": {"default_value": 175} - } -} + "version": 2, + "name": "Uni Mini", + "inherits": "uni_base", + "metadata": + { + "visible": true, + "author": "Nail` Gimadeev (C)", + "platform": "uni_mini_platform.stl", + "platform_texture": "uni.png", + "quality_definition": "uni_base" + }, + "overrides": + { + "machine_depth": { "default_value": 160 }, + "machine_height": { "default_value": 175 }, + "machine_name": { "default_value": "uni_mini" }, + "machine_width": { "default_value": 160 } + } +} \ No newline at end of file diff --git a/resources/definitions/uni_print_3d.def.json b/resources/definitions/uni_print_3d.def.json index 7d71d73540..050ec1589e 100644 --- a/resources/definitions/uni_print_3d.def.json +++ b/resources/definitions/uni_print_3d.def.json @@ -1,36 +1,33 @@ { - "name": "Uni-Print-3D", "version": 2, + "name": "Uni-Print-3D", "inherits": "fdmprinter", "metadata": { "visible": true, - "author": "Alexander Rössler", + "author": "Alexander R\u00f6ssler", "manufacturer": "TheCoolTool", "file_formats": "text/x-ngc;text/x-gcode", "platform": "uni_print_3d_platform.3mf", - "platform_offset": [0, 0, 0], - "machine_extruder_trains": { - "0": "uni_print_3d_extruder_0" - } + "machine_extruder_trains": { "0": "uni_print_3d_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ] }, - - "overrides": { - "machine_name": { "default_value": "UNI-PRINT-3D" }, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 186 }, - "machine_height": { "default_value": 230 }, - "machine_depth": { "default_value": 220 }, + "overrides": + { "machine_center_is_zero": { "default_value": true }, - "machine_nozzle_heat_up_speed": { "default_value": 2.0 }, - "machine_nozzle_cool_down_speed": { "default_value": 2.0 }, + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "M104 P0 ; turn off hotend\nG0 X-80 Y100; move the extruder out of the way\nM420 R0.0 E0.1 D0.0 P0.6 ; signalize end of print\nM140 P0 ; turn off heatbed\nM65 P16 ; turn off external fan\nM65 P15 ; turn off power" }, "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - - "machine_start_gcode": { - "default_value": "M53; enable feed-hold\nG0 Z2.0; always start from the same height to compensate backlash\nG28; move extruder to 0\nM420 R0.0 E0.0 D0.0 P0.1 ; turn the lights on\nM107; turn off fan\nG64 P0.05 Q0.05; path blending settings\nG23; unretract" - }, - "machine_end_gcode": { - "default_value": "M104 P0 ; turn off hotend\nG0 X-80 Y100; move the extruder out of the way\nM420 R0.0 E0.1 D0.0 P0.6 ; signalize end of print\nM140 P0 ; turn off heatbed\nM65 P16 ; turn off external fan\nM65 P15 ; turn off power" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 230 }, + "machine_name": { "default_value": "UNI-PRINT-3D" }, + "machine_nozzle_cool_down_speed": { "default_value": 2.0 }, + "machine_nozzle_heat_up_speed": { "default_value": 2.0 }, + "machine_start_gcode": { "default_value": "M53; enable feed-hold\nG0 Z2.0; always start from the same height to compensate backlash\nG28; move extruder to 0\nM420 R0.0 E0.0 D0.0 P0.1 ; turn the lights on\nM107; turn off fan\nG64 P0.05 Q0.05; path blending settings\nG23; unretract" }, + "machine_width": { "default_value": 186 } } -} +} \ No newline at end of file diff --git a/resources/definitions/uniqbot_one.def.json b/resources/definitions/uniqbot_one.def.json index ec8336ae50..43231ee037 100644 --- a/resources/definitions/uniqbot_one.def.json +++ b/resources/definitions/uniqbot_one.def.json @@ -2,44 +2,24 @@ "version": 2, "name": "Uniqbot", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "author": "Unimatech", "manufacturer": "Unimatech", "file_formats": "text/x-gcode", - "machine_extruder_trains": - { - "0": "uniqbot_one_extruder_0" - } + "machine_extruder_trains": { "0": "uniqbot_one_extruder_0" } }, - - "overrides": { + "overrides": + { + "gantry_height": { "value": "55" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 160 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+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_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 120 }, "machine_name": { "default_value": "Uniqbot" }, - "machine_heated_bed": { - "default_value": false - }, - "machine_width": { - "default_value": 140 - }, - "machine_height": { - "default_value": 120 - }, - "machine_depth": { - "default_value": 160 - }, - "machine_center_is_zero": { - "default_value": false - }, - "gantry_height": { - "value": "55" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "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 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+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_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 E3 ;extrude 3mm 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": 140 } } -} +} \ No newline at end of file diff --git a/resources/definitions/vertex_delta_k8800.def.json b/resources/definitions/vertex_delta_k8800.def.json index 71646d76ee..d667f4ca1c 100644 --- a/resources/definitions/vertex_delta_k8800.def.json +++ b/resources/definitions/vertex_delta_k8800.def.json @@ -1,139 +1,58 @@ { - "name": "Vertex Delta K8800", - "version": 2, - "inherits": "fdmprinter", - "metadata": { - "manufacturer": "Velleman N.V.", - "file_formats": "text/x-gcode", - "visible": true, - "author": "Velleman N.V.", - "has_machine_quality": true, - "has_materials": true, - "machine_extruder_trains": + "version": 2, + "name": "Vertex Delta K8800", + "inherits": "fdmprinter", + "metadata": { - "0": "vertex_delta_k8800_extruder_0" + "visible": true, + "author": "Velleman N.V.", + "manufacturer": "Velleman N.V.", + "file_formats": "text/x-gcode", + "has_machine_quality": true, + "has_materials": true, + "machine_extruder_trains": { "0": "vertex_delta_k8800_extruder_0" } + }, + "overrides": + { + "brim_width": { "value": 6 }, + "cool_fan_full_at_height": { "value": 2 }, + "cool_fan_full_layer": { "value": 11 }, + "cool_min_layer_time": { "value": 8 }, + "gantry_height": { "value": "0" }, + "infill_line_width": { "value": 0.35 }, + "infill_overlap": { "value": 5 }, + "infill_sparse_density": { "value": 40 }, + "line_width": { "value": 0.35 }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "; Vertex Delta end code\nM107 ; Turn off fan\nG91 ; Relative positioning\nT0\nG1 E-1 F1500; Reduce filament pressure\nM104 T0 S0\nG90 ; Absolute positioning\nG92 E0 ; Reset extruder position\nM300 S4000 P500\nM300 S3000 P500\nM300 S2000 P800\nG28\nM84 ; Turn steppers off" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_height": { "default_value": 225 }, + "machine_shape": { "default_value": "elliptic" }, + "machine_start_gcode": { "default_value": "; Vertex Delta Start Gcode\nM0 Is my nozzle clean?\nM400\nG28 ; Home extruder\nM106 S128 ; Start fan\nM104 T0 R130 ; Set cold nozzle\nM109 T0 R130 ; Wait for cold nozzle\nM117 Leveling bed...\nG29 ; Level Bed\nG1 X0 Y100 Z1 F2000\nG92 Z0.9 ; Set Z position (SET Z OFFSET HERE -> 1 - OFFSET)\nM107 ; Stop fan\nG90 ; Absolute positioning\nM82 ; Extruder in absolute mode\nM104 T0 S{material_print_temperature}\nG92 E0 ; Reset extruder position\nM109 T0 S{material_print_temperature}\nM117 Priming nozzle...\nM83\nG1 E20 F100 ; purge/prime nozzle\nM82\nG92 E0 ; Reset extruder position\nG4 S3 ; Wait 3 seconds\nG1 Z5 F2000\nM117 Vertex Delta printing" }, + "machine_width": { "default_value": 200 }, + "min_infill_area": { "value": 0.1 }, + "retract_at_layer_change": { "value": true }, + "retraction_count_max": { "value": 15 }, + "retraction_extrusion_window": { "value": 1 }, + "retraction_hop": { "value": 0.1 }, + "retraction_hop_enabled": { "value": true }, + "retraction_min_travel": { "value": 1 }, + "skirt_brim_minimal_length": { "value": 50 }, + "skirt_brim_speed": { "value": 20 }, + "skirt_line_count": { "value": 2 }, + "speed_infill": { "value": 40 }, + "speed_layer_0": { "value": 20 }, + "speed_print": { "value": 35 }, + "speed_print_layer_0": { "value": 20 }, + "speed_topbottom": { "value": 35 }, + "speed_travel": { "value": 190 }, + "speed_wall": { "value": 35 }, + "speed_wall_x": { "value": 35 }, + "support_xy_distance": { "value": 1 }, + "support_z_distance": { "value": 0.4 }, + "top_bottom_thickness": { "value": 0.6 }, + "travel_retract_before_outer_wall": { "value": false }, + "wall_thickness": { "value": "0.7" } } - }, - "overrides": { - "machine_width": { - "default_value": 200 - }, - "machine_height": { - "default_value": 225 - }, - "machine_depth": { - "default_value": 200 - }, - "machine_center_is_zero": { - "default_value": true - }, - "machine_shape": { - "default_value": "elliptic" - }, - "gantry_height": { - "value": "0" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "; Vertex Delta Start Gcode\nM0 Is my nozzle clean?\nM400\nG28 ; Home extruder\nM106 S128 ; Start fan\nM104 T0 R130 ; Set cold nozzle\nM109 T0 R130 ; Wait for cold nozzle\nM117 Leveling bed...\nG29 ; Level Bed\nG1 X0 Y100 Z1 F2000\nG92 Z0.9 ; Set Z position (SET Z OFFSET HERE -> 1 - OFFSET)\nM107 ; Stop fan\nG90 ; Absolute positioning\nM82 ; Extruder in absolute mode\nM104 T0 S{material_print_temperature}\nG92 E0 ; Reset extruder position\nM109 T0 S{material_print_temperature}\nM117 Priming nozzle...\nM83\nG1 E20 F100 ; purge/prime nozzle\nM82\nG92 E0 ; Reset extruder position\nG4 S3 ; Wait 3 seconds\nG1 Z5 F2000\nM117 Vertex Delta printing" - }, - "machine_end_gcode": { - "default_value": "; Vertex Delta end code\nM107 ; Turn off fan\nG91 ; Relative positioning\nT0\nG1 E-1 F1500; Reduce filament pressure\nM104 T0 S0\nG90 ; Absolute positioning\nG92 E0 ; Reset extruder position\nM300 S4000 P500\nM300 S3000 P500\nM300 S2000 P800\nG28\nM84 ; Turn steppers off" - }, - "line_width": { - "value": 0.35 - }, - "infill_line_width": { - "value": 0.35 - }, - "wall_thickness": { - "value": "0.7" - }, - "top_bottom_thickness": { - "value": 0.6 - }, - "infill_sparse_density": { - "value": 40 - }, - "infill_overlap": { - "value": 5 - }, - "min_infill_area": { - "value": 0.1 - }, - "retract_at_layer_change": { - "value": true - }, - "retraction_min_travel": { - "value": 1 - }, - "retraction_count_max": { - "value": 15 - }, - "retraction_extrusion_window": { - "value": 1 - }, - "speed_print": { - "value": 35 - }, - "speed_infill": { - "value": 40 - }, - "speed_wall": { - "value": 35 - }, - "speed_wall_x": { - "value": 35 - }, - "speed_topbottom": { - "value": 35 - }, - "speed_travel": { - "value": 190 - }, - "speed_layer_0": { - "value": 20 - }, - "speed_print_layer_0": { - "value": 20 - }, - "skirt_brim_speed": { - "value": 20 - }, - "travel_retract_before_outer_wall": { - "value": false - }, - "retraction_hop_enabled": { - "value": true - }, - "retraction_hop": { - "value": 0.1 - }, - "cool_fan_full_at_height": { - "value": 2 - }, - "cool_fan_full_layer": { - "value": 11 - }, - "cool_min_layer_time": { - "value": 8 - }, - "support_z_distance": { - "value": 0.4 - }, - "support_xy_distance": { - "value": 1 - }, - "brim_width": { - "value": 6 - }, - "skirt_line_count": { - "value": 2 - }, - "skirt_brim_minimal_length": { - "value": 50 - } - } } \ No newline at end of file diff --git a/resources/definitions/vertex_k8400.def.json b/resources/definitions/vertex_k8400.def.json index ef50499703..c23bb65fbf 100644 --- a/resources/definitions/vertex_k8400.def.json +++ b/resources/definitions/vertex_k8400.def.json @@ -2,40 +2,41 @@ "version": 2, "name": "Vertex K8400", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "manufacturer": "Velleman N.V.", "file_formats": "text/x-gcode", "platform": "Vertex_build_panel.3mf", - "platform_offset": [0, -3, 0], - "supports_usb_connection": true, - "supported_actions": ["MachineSettingsAction"], - "machine_extruder_trains": - { - "0": "vertex_k8400_extruder_0" - } + "machine_extruder_trains": { "0": "vertex_k8400_extruder_0" }, + "platform_offset": [ + 0, + -3, + 0 + ], + "supported_actions": [ "MachineSettingsAction" ], + "supports_usb_connection": true }, - "overrides": { - "machine_name": { "default_value": "Vertex K8400" }, - "machine_heated_bed": { - "default_value": true + "overrides": + { + "gantry_height": { "value": "18" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_disallowed_areas": + { + "default_value": [ + [ + [-100, 100], + [-100, 80], + [100, 80], + [100, 100] + ] + ] }, - "machine_width": { - "default_value": 200 - }, - "machine_height": { - "default_value": 190 - }, - "machine_depth": { - "default_value": 200 - }, - "machine_disallowed_areas": { "default_value": [ - [[-100,100],[-100,80],[100,80],[100,100]] - ]}, - "machine_center_is_zero": { - "default_value": false - }, - "machine_head_with_fans_polygon": { + "machine_end_gcode": { "default_value": "G1 X0 Y0 Z130 ;Get extruder out of way\nM107 ;Turn off fan\n;Disable all extruders\nG91 ;Relative positioning\nT0\nG1 E-1 ;Reduce filament pressure\nM104 T0 S0\nG90 ;Absolute positioning\nG92 E0 ;Reset extruder position\nM140 S0 ;Disable heated bed\nM84 ;Turn steppers off" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ [-60, -40], [-60, 40], @@ -43,17 +44,10 @@ [18, -40] ] }, - "gantry_height": { - "value": "18" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "M104 T0 S{material_print_temperature_layer_0}\nG28 ;Home extruder\nG90 ;Absolute positioning\nM82 ;Extruder in absolute mode\nG1 Z1 F100\nG92 E0 ;Reset extruder position\nM109 T0 S{material_print_temperature_layer_0}\nG1 E20 F100\nG92 E0 ;Reset extruder position" - }, - "machine_end_gcode": { - "default_value": "G1 X0 Y0 Z130 ;Get extruder out of way\nM107 ;Turn off fan\n;Disable all extruders\nG91 ;Relative positioning\nT0\nG1 E-1 ;Reduce filament pressure\nM104 T0 S0\nG90 ;Absolute positioning\nG92 E0 ;Reset extruder position\nM140 S0 ;Disable heated bed\nM84 ;Turn steppers off" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 190 }, + "machine_name": { "default_value": "Vertex K8400" }, + "machine_start_gcode": { "default_value": "M104 T0 S{material_print_temperature_layer_0}\nG28 ;Home extruder\nG90 ;Absolute positioning\nM82 ;Extruder in absolute mode\nG1 Z1 F100\nG92 E0 ;Reset extruder position\nM109 T0 S{material_print_temperature_layer_0}\nG1 E20 F100\nG92 E0 ;Reset extruder position" }, + "machine_width": { "default_value": 200 } } } \ No newline at end of file diff --git a/resources/definitions/vertex_k8400_dual.def.json b/resources/definitions/vertex_k8400_dual.def.json index e6e1062b4d..ccbf5f8d20 100644 --- a/resources/definitions/vertex_k8400_dual.def.json +++ b/resources/definitions/vertex_k8400_dual.def.json @@ -2,41 +2,44 @@ "version": 2, "name": "Vertex K8400 Dual", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "manufacturer": "Velleman N.V.", "file_formats": "text/x-gcode", "platform": "Vertex_build_panel.3mf", - "platform_offset": [0, -3, 0], - "machine_extruder_trains": { + "machine_extruder_trains": + { "0": "vertex_k8400_dual_1st", "1": "vertex_k8400_dual_2nd" - } + }, + "platform_offset": [ + 0, + -3, + 0 + ] }, - "overrides": { - "machine_name": { "default_value": "Vertex K8400 Dual" }, - "machine_heated_bed": { - "default_value": true + "overrides": + { + "gantry_height": { "value": "18" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_disallowed_areas": + { + "default_value": [ + [ + [-111.85, 100], + [111.85, 100], + [-111.85, 80], + [111.85, 80] + ] + ] }, - "machine_width": { - "default_value": 223.7 - }, - "machine_height": { - "default_value": 190 - }, - "machine_depth": { - "default_value": 200 - }, - "machine_disallowed_areas": { "default_value": [ - [[-111.85,100],[111.85,100],[-111.85,80],[111.85,80]] - ]}, - "machine_center_is_zero": { - "default_value": false - }, - "machine_use_extruder_offset_to_offset_coords": { - "default_value": true - }, - "machine_head_with_fans_polygon": { + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 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": + { "default_value": [ [-60, -40], [-60, 40], @@ -44,20 +47,11 @@ [18, -40] ] }, - "gantry_height": { - "value": "18" - }, - "machine_extruder_count": { - "default_value": 2 - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "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 E3 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 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_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 190 }, + "machine_name": { "default_value": "Vertex K8400 Dual" }, + "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 E3 ;extrude 3mm 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": 223.7 } } } \ No newline at end of file diff --git a/resources/definitions/vertex_nano_k8600.def.json b/resources/definitions/vertex_nano_k8600.def.json index 9f7b9d2cb7..8cbfdaf5fd 100644 --- a/resources/definitions/vertex_nano_k8600.def.json +++ b/resources/definitions/vertex_nano_k8600.def.json @@ -2,76 +2,36 @@ "version": 2, "name": "Vertex K8600", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "manufacturer": "Velleman N.V.", "file_formats": "text/x-gcode", - "supports_usb_connection": true, - "supported_actions": ["MachineSettingsAction"], - "machine_extruder_trains": { - "0": "vertex_nano_k8600_extruder_0" - } + "machine_extruder_trains": { "0": "vertex_nano_k8600_extruder_0" }, + "supported_actions": [ "MachineSettingsAction" ], + "supports_usb_connection": true }, - "overrides": { - "machine_name": { - "default_value": "Vertex K8600" - }, - "machine_heated_bed": { - "default_value": false - }, - "machine_width": { - "default_value": 80 - }, - "machine_height": { - "default_value": 75 - }, - "machine_depth": { - "default_value": 80 - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "; Vertex Nano Start G-code M0 is my nozzle clean M400 G28 ; Home extruder G90 ; Absolute positioning M82 ; Extruder in absolute mode M104 T0 S{material_print_temperature} G92 E0 ; Reset extruder position G1 Z1 F800 M109 T0 S{material_print_temperature} M117 Priming nozzle... M83 G1 E20 F100 ; purge/prime nozzle M82 G92 E0 ; Reset extruder position G4 S3 ; Wait 3 seconds G1 Z5 F2000 M117 Vertex Nano is printing" - }, - "machine_end_gcode": { - "default_value": "; Vertex Nano end G-Code G91 ; Relative positioning T0 G1 E-1 F1500; Reduce filament pressure M104 T0 S0 G90 ; Absolute positioning G92 E0 ; Reset extruder position G28 M84 ; Turn steppers off" - }, - "line_width": { - "value": 0.35 - }, - "infill_line_width": { - "value": 0.35 - }, - "wall_thickness": { - "value": "0.7" - }, - "top_bottom_thickness": { - "value": 0.6 - }, - "infill_sparse_density": { - "value": 40 - }, - "infill_overlap": { - "value": 5 - }, - "min_infill_area": { - "value": 0.1 - }, - "retract_at_layer_change": { - "value": true - }, - "retraction_min_travel": { - "value": 1 - }, - "retraction_count_max": { - "value": 15 - }, - "retraction_extrusion_window": { - "value": 1 - } + "overrides": + { + "infill_line_width": { "value": 0.35 }, + "infill_overlap": { "value": 5 }, + "infill_sparse_density": { "value": 40 }, + "line_width": { "value": 0.35 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 80 }, + "machine_end_gcode": { "default_value": "; Vertex Nano end G-Code G91 ; Relative positioning T0 G1 E-1 F1500; Reduce filament pressure M104 T0 S0 G90 ; Absolute positioning G92 E0 ; Reset extruder position G28 M84 ; Turn steppers off" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 75 }, + "machine_name": { "default_value": "Vertex K8600" }, + "machine_start_gcode": { "default_value": "; Vertex Nano Start G-code M0 is my nozzle clean M400 G28 ; Home extruder G90 ; Absolute positioning M82 ; Extruder in absolute mode M104 T0 S{material_print_temperature} G92 E0 ; Reset extruder position G1 Z1 F800 M109 T0 S{material_print_temperature} M117 Priming nozzle... M83 G1 E20 F100 ; purge/prime nozzle M82 G92 E0 ; Reset extruder position G4 S3 ; Wait 3 seconds G1 Z5 F2000 M117 Vertex Nano is printing" }, + "machine_width": { "default_value": 80 }, + "min_infill_area": { "value": 0.1 }, + "retract_at_layer_change": { "value": true }, + "retraction_count_max": { "value": 15 }, + "retraction_extrusion_window": { "value": 1 }, + "retraction_min_travel": { "value": 1 }, + "top_bottom_thickness": { "value": 0.6 }, + "wall_thickness": { "value": "0.7" } } -} +} \ No newline at end of file diff --git a/resources/definitions/vivedino_base.def.json b/resources/definitions/vivedino_base.def.json new file mode 100644 index 0000000000..5ffd06f3f0 --- /dev/null +++ b/resources/definitions/vivedino_base.def.json @@ -0,0 +1,118 @@ +{ + "version": 2, + "name": "Vivedino/FormBot Base Printer", + "inherits": "fdmprinter", + "metadata": + { + "visible": false, + "author": "bitflipper11", + "manufacturer": "Vivedino, Formbot", + "file_formats": "text/x-gcode", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "trex_base_extruder_0" }, + "preferred_material": "generic_pla", + "preferred_quality_type": "standard", + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Size" + }, + "overrides": + { + "acceleration_print": { "value": 500 }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, + "acceleration_travel": { "value": 500 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel" }, + "adaptive_layer_height_variation": { "value": 0.04 }, + "adaptive_layer_height_variation_step": { "value": 0.04 }, + "adhesion_type": { "value": "'skirt'" }, + "brim_replaces_support": { "value": false }, + "cool_fan_enabled": { "value": true }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "value": 10 }, + "fill_outline_gaps": { "value": false }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 30.0 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_wipe_dist": { "value": 0.0 }, + "jerk_print": { "value": 8 }, + "jerk_travel": { "value": "jerk_print" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "line_width": { "value": "machine_nozzle_size * 0.95" }, + "machine_acceleration": { "value": 500 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, + "machine_heated_bed": { "default_value": true }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_feedrate_e": { "value": 50 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_name": { "default_value": "Vivedino Base Printer" }, + "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_flow": { "value": 100 }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "meshfix_maximum_resolution": { "value": 0.25 }, + "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 10 }, + "optimize_wall_printing_order": { "value": true }, + "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, + "retraction_combing_max_distance": { "value": 30 }, + "retraction_count_max": { "value": 100 }, + "retraction_enable": { "value": true }, + "retraction_extrusion_window": { "value": 10 }, + "retraction_hop": { "value": 0.2 }, + "retraction_hop_enabled": { "value": false }, + "retraction_min_travel": { "value": 1.5 }, + "retraction_prime_speed": { "maximum_value": 200 }, + "retraction_retract_speed": { "maximum_value": 200 }, + "retraction_speed": { "maximum_value": 200 }, + "skin_overlap": { "value": 10.0 }, + "skirt_brim_speed": { "value": "speed_layer_0" }, + "skirt_gap": { "value": 10.0 }, + "skirt_line_count": { "value": 3 }, + "speed_layer_0": { "value": 20.0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": 50.0 }, + "speed_print_layer_0": { "value": "speed_layer_0" }, + "speed_roofing": { "value": "speed_topbottom" }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" }, + "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 4 }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_interface_skip_height": { "value": 0.2 }, + "support_pattern": { "value": "'zigzag'" }, + "support_wall_count": { "value": 1 }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, + "travel_avoid_other_parts": { "value": true }, + "travel_avoid_supports": { "value": true }, + "travel_retract_before_outer_wall": { "value": true }, + "wall_0_wipe_dist": { "value": 0.0 }, + "wall_thickness": { "value": "line_width * 2" }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, + "z_seam_type": { "value": "'back'" } + } +} \ No newline at end of file diff --git a/resources/definitions/vivedino_trex2plus.def.json b/resources/definitions/vivedino_trex2plus.def.json new file mode 100644 index 0000000000..0bd2a771a7 --- /dev/null +++ b/resources/definitions/vivedino_trex2plus.def.json @@ -0,0 +1,37 @@ +{ + "version": 2, + "name": "Vivedino T-REX 2+", + "inherits": "vivedino_base", + "metadata": + { + "visible": true, + "platform": "vivedino_trex.stl", + "machine_extruder_trains": + { + "0": "trex2_extruder_0", + "1": "trex2_extruder_1" + }, + "quality_definition": "vivedino_trex2plus" + }, + "overrides": + { + "gantry_height": { "value": 30 }, + "machine_depth": { "default_value": 400 }, + "machine_end_gcode": { "default_value": "G28 X0 Y0\nM104 S0 T1 ; turn off extruder\nM104 S0 T0\nM140 S0 ; turn off bed\nG28 X0\nM106 P0 S0\nM106 P1 S0\nM84 S0\nM84 XYE; disable motors except Z" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-30, 34], + [-30, -32], + [30, -32], + [30, 34] + ] + }, + "machine_heat_zone_length": { "value": "10" }, + "machine_height": { "default_value": 500 }, + "machine_start_gcode": { "default_value": "T0\nG28 ; home all axes\nM420 S1\nG1 X-42 F8000\nG92 E0\nG1 E5 F500\nG1 X0 F5000\nG1 X-40\nG1 X0\nG1 X-40\nG1 X0\nG1 X-40\nG1 X200\nG1 Y200 F5000" }, + "machine_width": { "default_value": 400 }, + "retraction_amount": { "value": "2" } + } +} \ No newline at end of file diff --git a/resources/definitions/vivedino_trex3.def.json b/resources/definitions/vivedino_trex3.def.json new file mode 100644 index 0000000000..43b84ac110 --- /dev/null +++ b/resources/definitions/vivedino_trex3.def.json @@ -0,0 +1,37 @@ +{ + "version": 2, + "name": "Vivedino T-REX 3", + "inherits": "vivedino_base", + "metadata": + { + "visible": true, + "platform": "vivedino_trex.stl", + "machine_extruder_trains": + { + "0": "trex_extruder_0", + "1": "trex_extruder_1" + }, + "quality_definition": "vivedino_trex3" + }, + "overrides": + { + "gantry_height": { "value": 30 }, + "machine_depth": { "default_value": 400 }, + "machine_end_gcode": { "default_value": "G28 X0 Y0\nM104 S0 T1 ; turn off extruder\nM104 S0 T0\nM140 S0 ; turn off bed\nG28 X0\nM106 P0 S0\nM106 P1 S0\nM84 S0\nM84 XYE; disable motors except Z" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-30, 34], + [-30, -32], + [30, -32], + [30, 34] + ] + }, + "machine_heat_zone_length": { "value": "10" }, + "machine_height": { "default_value": 500 }, + "machine_start_gcode": { "default_value": "M605 S1 ; Set dual carriage mode S0 slicer full control | S1 AutoPark inactive head | S2 duplicate\nT0\nM106 P0 S[fan_speed_pwm]\nM106 P1 S[fan_speed_pwm]\nG28 ; home all axes\nM420 S1 ; Enable bed leveling compensation using current grid/mesh\nG1 X-42 F8000\nG92 E0\nG1 E5 F500\nG1 X0 F5000\nG1 X-40\nG1 X0\nG1 X-40\nG1 X0\nG1 X-40\nG1 X200\nG1 Y200 F5000\nT1\nG1 X440 F8000 ; park T0 head at X=440\nG92 E0 ; Zero extruder count" }, + "machine_width": { "default_value": 400 }, + "retraction_amount": { "value": "2" } + } +} \ No newline at end of file diff --git a/resources/definitions/voron0_120.def.json b/resources/definitions/voron0_120.def.json index d0bf92f0e0..a6d29944e2 100644 --- a/resources/definitions/voron0_120.def.json +++ b/resources/definitions/voron0_120.def.json @@ -1,6 +1,6 @@ { - "name": "Voron 0", "version": 2, + "name": "Voron 0", "inherits": "voron2_base", "metadata": { @@ -10,9 +10,9 @@ }, "overrides": { - "machine_name": { "default_value": "VORON 0" }, - "machine_width": { "default_value": 120 }, - "machine_depth": { "default_value": 120 }, - "machine_height": { "default_value": 120 } + "machine_depth": { "default_value": 120 }, + "machine_height": { "default_value": 120 }, + "machine_name": { "default_value": "VORON 0" }, + "machine_width": { "default_value": 120 } } -} +} \ No newline at end of file diff --git a/resources/definitions/voron2_250.def.json b/resources/definitions/voron2_250.def.json index a479576458..a3f6ec3757 100644 --- a/resources/definitions/voron2_250.def.json +++ b/resources/definitions/voron2_250.def.json @@ -1,6 +1,6 @@ { - "name": "Voron2 250", "version": 2, + "name": "Voron2 250", "inherits": "voron2_base", "metadata": { @@ -10,9 +10,9 @@ }, "overrides": { - "machine_name": { "default_value": "VORON2 250" }, - "machine_width": { "default_value": 250 }, - "machine_depth": { "default_value": 250 }, - "machine_height": { "default_value": 250 } + "machine_depth": { "default_value": 250 }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "VORON2 250" }, + "machine_width": { "default_value": 250 } } -} +} \ No newline at end of file diff --git a/resources/definitions/voron2_300.def.json b/resources/definitions/voron2_300.def.json index 943b841c4d..b6bdee13be 100644 --- a/resources/definitions/voron2_300.def.json +++ b/resources/definitions/voron2_300.def.json @@ -1,6 +1,6 @@ { - "name": "Voron2 300", "version": 2, + "name": "Voron2 300", "inherits": "voron2_base", "metadata": { @@ -10,9 +10,9 @@ }, "overrides": { - "machine_name": { "default_value": "VORON2 300" }, - "machine_width": { "default_value": 300 }, - "machine_depth": { "default_value": 300 }, - "machine_height": { "default_value": 300 } + "machine_depth": { "default_value": 300 }, + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "VORON2 300" }, + "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/voron2_350.def.json b/resources/definitions/voron2_350.def.json index 36e5e9339c..3c38b7ba0a 100644 --- a/resources/definitions/voron2_350.def.json +++ b/resources/definitions/voron2_350.def.json @@ -1,6 +1,6 @@ { - "name": "Voron2 350", "version": 2, + "name": "Voron2 350", "inherits": "voron2_base", "metadata": { @@ -10,9 +10,9 @@ }, "overrides": { - "machine_name": { "default_value": "VORON2 350" }, - "machine_width": { "default_value": 350 }, - "machine_depth": { "default_value": 350 }, - "machine_height": { "default_value": 350 } + "machine_depth": { "default_value": 350 }, + "machine_height": { "default_value": 350 }, + "machine_name": { "default_value": "VORON2 350" }, + "machine_width": { "default_value": 350 } } -} +} \ No newline at end of file diff --git a/resources/definitions/voron2_base.def.json b/resources/definitions/voron2_base.def.json index 850a75ef28..1e76380b69 100644 --- a/resources/definitions/voron2_base.def.json +++ b/resources/definitions/voron2_base.def.json @@ -1,155 +1,125 @@ { - "name": "Voron2 Base", "version": 2, + "name": "Voron2 Base", "inherits": "fdmprinter", - "metadata": + "metadata": { "visible": false, "author": "Fulg, Maglin, pizzle_Dizzle", "manufacturer": "VoronDesign", "file_formats": "text/x-gcode", - "first_start_actions": ["MachineSettingsAction"], - "preferred_quality_type": "fast", + "exclude_materials": [], + "first_start_actions": [ "MachineSettingsAction" ], "has_machine_quality": true, "has_materials": true, "has_variants": true, - "variants_name": "Toolhead", - "preferred_variant_name": "V6 0.40mm", "machine_extruder_trains": { "0": "voron2_extruder_0" }, "preferred_material": "generic_abs", - "exclude_materials": [ - "ultimaker_abs_black", - "ultimaker_abs_blue", - "ultimaker_abs_green", - "ultimaker_abs_grey", - "ultimaker_abs_orange", - "ultimaker_abs_pearl-gold", - "ultimaker_abs_red", - "ultimaker_abs_silver-metallic", - "ultimaker_abs_white", - "ultimaker_abs_yellow", - "ultimaker_bam", - "ultimaker_cpe_black", - "ultimaker_cpe_blue", - "ultimaker_cpe_dark-grey", - "ultimaker_cpe_green", - "ultimaker_cpe_light-grey", - "ultimaker_cpe_plus_black", - "ultimaker_cpe_plus_transparent", - "ultimaker_cpe_plus_white", - "ultimaker_cpe_red", - "ultimaker_cpe_transparent", - "ultimaker_cpe_white", - "ultimaker_cpe_yellow", - "ultimaker_nylon_black", - "ultimaker_nylon_transparent", - "ultimaker_pc_black", - "ultimaker_pc_transparent", - "ultimaker_pc_white", - "ultimaker_pla_black", - "ultimaker_pla_blue", - "ultimaker_pla_green", - "ultimaker_pla_magenta", - "ultimaker_pla_orange", - "ultimaker_pla_pearl-white", - "ultimaker_pla_red", - "ultimaker_pla_silver-metallic", - "ultimaker_pla_transparent", - "ultimaker_pla_white", - "ultimaker_pla_yellow", - "ultimaker_pp_transparent", - "ultimaker_pva", - "ultimaker_tough_pla_black", - "ultimaker_tough_pla_green", - "ultimaker_tough_pla_red", - "ultimaker_tough_pla_white", - "ultimaker_tpu_black", - "ultimaker_tpu_blue", - "ultimaker_tpu_red", - "ultimaker_tpu_white" - ] + "preferred_quality_type": "fast", + "preferred_variant_name": "V6 0.40mm", + "variants_name": "Toolhead" }, "overrides": { - "machine_name": { "default_value": "VORON2" }, - "machine_width": { "default_value": 250 }, - "machine_depth": { "default_value": 250 }, - "machine_height": { "default_value": 250 }, - "gantry_height": { "value": 30 }, - "machine_heated_bed": { "default_value": true }, - "machine_max_acceleration_x": { "default_value": 1500 }, - "machine_max_acceleration_y": { "default_value": 1500 }, - "machine_max_acceleration_z": { "default_value": 250 }, - "machine_acceleration": { "default_value": 1500 }, - "machine_max_jerk_xy": { "default_value": 20 }, - "machine_max_jerk_z": { "default_value": 1 }, - "machine_max_jerk_e": { "default_value": 60 }, - "machine_steps_per_mm_x": { "default_value": 80 }, - "machine_steps_per_mm_y": { "default_value": 80 }, - "machine_steps_per_mm_z": { "default_value": 400 }, - "machine_endstop_positive_direction_x": { "default_value": true }, - "machine_endstop_positive_direction_y": { "default_value": true }, - "machine_endstop_positive_direction_z": { "default_value": false }, - "machine_feeder_wheel_diameter": { "default_value": 7.5 }, - "machine_head_with_fans_polygon": { "default_value": [ [-35, 65], [-35, -50], [35, -50], [35, 65] ] }, - "machine_max_feedrate_z": { "default_value": 40 }, - "machine_max_feedrate_e": { "default_value": 120 }, - "machine_gcode_flavor": { "default_value": "RepRap (RepRap)" }, - "machine_start_gcode": { "default_value": "print_start" }, - "machine_end_gcode": { "default_value": "print_end" }, - "adhesion_type": { "default_value": "skirt" }, - "retraction_amount": { "default_value": 0.75 }, - "skirt_brim_minimal_length": { "default_value": 550 }, - "retraction_speed": { "default_value": 30, "maximum_value_warning": 130 }, - "retraction_retract_speed": { "maximum_value_warning": 130 }, - "retraction_prime_speed": { "value": "math.ceil(retraction_speed * 0.4)", "maximum_value_warning": 130 }, - "retraction_hop_enabled": { "default_value": true }, - "retraction_hop": { "default_value": 0.2 }, - "retraction_combing": { "value": "'noskin'" }, - "retraction_combing_max_distance": { "default_value": 10 }, - "travel_avoid_other_parts": { "default_value": false }, - "speed_travel": { "value": 300, "maximum_value_warning": 501 }, - "speed_travel_layer_0": { "value": "math.ceil(speed_travel * 0.4)" }, - "speed_layer_0": { "value": "math.ceil(speed_print * 0.25)" }, - "speed_wall": { "value": "math.ceil(speed_print * 0.33)" }, - "speed_wall_0": { "value": "math.ceil(speed_print * 0.33)" }, - "speed_wall_x": { "value": "math.ceil(speed_print * 0.66)" }, - "speed_topbottom": { "value": "math.ceil(speed_print * 0.33)" }, - "speed_roofing": { "value": "math.ceil(speed_print * 0.33)" }, - "speed_slowdown_layers": { "default_value": 4 }, - "roofing_layer_count": { "value": 1 }, - "optimize_wall_printing_order": { "default_value": true }, - "infill_enable_travel_optimization": { "default_value": true }, - "minimum_polygon_circumference": { "default_value": 0.2 }, - "wall_overhang_angle": { "default_value": 75 }, - "wall_overhang_speed_factor": { "default_value": 50 }, - "bridge_settings_enabled": { "default_value": true }, - "bridge_wall_coast": { "default_value": 10 }, - "bridge_fan_speed": { "default_value": 100 }, - "bridge_fan_speed_2": { "resolve": "max(cool_fan_speed, 50)" }, - "bridge_fan_speed_3": { "resolve": "max(cool_fan_speed, 20)" }, - "alternate_extra_perimeter": { "default_value": true }, - "cool_min_layer_time_fan_speed_max": { "default_value": 20 }, - "cool_min_layer_time": { "default_value": 15 }, - "cool_fan_speed_min": { "value": "cool_fan_speed" }, - "cool_fan_full_at_height": { "value": "resolveOrValue('layer_height_0') + resolveOrValue('layer_height') * max(1, cool_fan_full_layer - 1)" }, - "cool_fan_full_layer": { "value": 4 }, - "layer_height_0": { "resolve": "max(0.2, min(extruderValues('layer_height')))" }, - "line_width": { "value": "machine_nozzle_size * 1.125" }, - "wall_line_width": { "value": "machine_nozzle_size" }, - "fill_outline_gaps": { "default_value": true }, - "meshfix_maximum_resolution": { "default_value": 0.01 }, - "infill_before_walls": { "default_value": false }, - "zig_zaggify_infill": { "value": true }, - "min_infill_area": { "default_value": 5.0 }, - "acceleration_enabled": { "default_value": false }, - "acceleration_print": { "default_value": 2200 }, - "acceleration_wall_0": { "value": 1800 }, - "acceleration_layer_0": { "value": 1800 }, - "acceleration_travel_layer_0": { "value": 1800 }, - "acceleration_roofing": { "value": 1800 }, - "jerk_enabled": { "default_value": false }, - "jerk_wall_0": { "value": 10 }, - "jerk_roofing": { "value": 10 } + "acceleration_enabled": { "default_value": false }, + "acceleration_layer_0": { "value": 1800 }, + "acceleration_print": { "default_value": 2200 }, + "acceleration_roofing": { "value": 1800 }, + "acceleration_travel_layer_0": { "value": 1800 }, + "acceleration_wall_0": { "value": 1800 }, + "adhesion_type": { "default_value": "skirt" }, + "alternate_extra_perimeter": { "default_value": true }, + "bridge_fan_speed": { "default_value": 100 }, + "bridge_fan_speed_2": { "resolve": "max(cool_fan_speed, 50)" }, + "bridge_fan_speed_3": { "resolve": "max(cool_fan_speed, 20)" }, + "bridge_settings_enabled": { "default_value": true }, + "bridge_wall_coast": { "default_value": 10 }, + "cool_fan_full_at_height": { "value": "resolveOrValue('layer_height_0') + resolveOrValue('layer_height') * max(1, cool_fan_full_layer - 1)" }, + "cool_fan_full_layer": { "value": 4 }, + "cool_fan_speed_min": { "value": "cool_fan_speed" }, + "cool_min_layer_time": { "default_value": 15 }, + "cool_min_layer_time_fan_speed_max": { "default_value": 20 }, + "fill_outline_gaps": { "default_value": true }, + "gantry_height": { "value": 30 }, + "infill_before_walls": { "default_value": false }, + "infill_enable_travel_optimization": { "default_value": true }, + "jerk_enabled": { "default_value": false }, + "jerk_roofing": { "value": 10 }, + "jerk_wall_0": { "value": 10 }, + "layer_height_0": { "resolve": "max(0.2, min(extruderValues('layer_height')))" }, + "line_width": { "value": "machine_nozzle_size * 1.125" }, + "machine_acceleration": { "default_value": 1500 }, + "machine_depth": { "default_value": 250 }, + "machine_end_gcode": { "default_value": "print_end" }, + "machine_endstop_positive_direction_x": { "default_value": true }, + "machine_endstop_positive_direction_y": { "default_value": true }, + "machine_endstop_positive_direction_z": { "default_value": false }, + "machine_feeder_wheel_diameter": { "default_value": 7.5 }, + "machine_gcode_flavor": { "default_value": "RepRap (RepRap)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-35, 65], + [-35, -50], + [35, -50], + [35, 65] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 250 }, + "machine_max_acceleration_x": { "default_value": 1500 }, + "machine_max_acceleration_y": { "default_value": 1500 }, + "machine_max_acceleration_z": { "default_value": 250 }, + "machine_max_feedrate_e": { "default_value": 120 }, + "machine_max_feedrate_z": { "default_value": 40 }, + "machine_max_jerk_e": { "default_value": 60 }, + "machine_max_jerk_xy": { "default_value": 20 }, + "machine_max_jerk_z": { "default_value": 1 }, + "machine_name": { "default_value": "VORON2" }, + "machine_start_gcode": { "default_value": "print_start" }, + "machine_steps_per_mm_x": { "default_value": 80 }, + "machine_steps_per_mm_y": { "default_value": 80 }, + "machine_steps_per_mm_z": { "default_value": 400 }, + "machine_width": { "default_value": 250 }, + "meshfix_maximum_resolution": { "default_value": 0.01 }, + "min_infill_area": { "default_value": 5.0 }, + "minimum_polygon_circumference": { "default_value": 0.2 }, + "optimize_wall_printing_order": { "default_value": true }, + "retraction_amount": { "default_value": 0.75 }, + "retraction_combing": { "value": "'noskin'" }, + "retraction_combing_max_distance": { "default_value": 10 }, + "retraction_hop": { "default_value": 0.2 }, + "retraction_hop_enabled": { "default_value": true }, + "retraction_prime_speed": + { + "maximum_value_warning": 130, + "value": "math.ceil(retraction_speed * 0.4)" + }, + "retraction_retract_speed": { "maximum_value_warning": 130 }, + "retraction_speed": + { + "default_value": 30, + "maximum_value_warning": 130 + }, + "roofing_layer_count": { "value": 1 }, + "skirt_brim_minimal_length": { "default_value": 550 }, + "speed_layer_0": { "value": "math.ceil(speed_print * 0.25)" }, + "speed_roofing": { "value": "math.ceil(speed_print * 0.33)" }, + "speed_slowdown_layers": { "default_value": 4 }, + "speed_topbottom": { "value": "math.ceil(speed_print * 0.33)" }, + "speed_travel": + { + "maximum_value_warning": 501, + "value": 300 + }, + "speed_travel_layer_0": { "value": "math.ceil(speed_travel * 0.4)" }, + "speed_wall": { "value": "math.ceil(speed_print * 0.33)" }, + "speed_wall_0": { "value": "math.ceil(speed_print * 0.33)" }, + "speed_wall_x": { "value": "math.ceil(speed_print * 0.66)" }, + "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 }, + "zig_zaggify_infill": { "value": true } } -} +} \ No newline at end of file diff --git a/resources/definitions/voron2_custom.def.json b/resources/definitions/voron2_custom.def.json index 45612e0cba..21006464c0 100644 --- a/resources/definitions/voron2_custom.def.json +++ b/resources/definitions/voron2_custom.def.json @@ -1,6 +1,6 @@ { - "name": "Voron2 Custom", "version": 2, + "name": "Voron2 Custom", "inherits": "voron2_base", "metadata": { @@ -9,6 +9,6 @@ }, "overrides": { - "machine_name": { "default_value": "VORON2 Custom" } + "machine_name": { "default_value": "VORON2 Custom" } } -} +} \ No newline at end of file diff --git a/resources/definitions/voron_trident_250.def.json b/resources/definitions/voron_trident_250.def.json new file mode 100644 index 0000000000..b506ae619f --- /dev/null +++ b/resources/definitions/voron_trident_250.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Voron Trident 250", + "inherits": "voron_trident_base", + "metadata": + { + "visible": true, + "author": "RagingRoosevelt, hartk", + "platform": "voron_trident_250mm_bed_model.stl", + "quality_definition": "voron2_base" + }, + "overrides": + { + "machine_name": { "default_value": "VORON Trident 250" } + } +} \ No newline at end of file diff --git a/resources/definitions/voron_trident_300.def.json b/resources/definitions/voron_trident_300.def.json new file mode 100644 index 0000000000..48944ef946 --- /dev/null +++ b/resources/definitions/voron_trident_300.def.json @@ -0,0 +1,18 @@ +{ + "version": 2, + "name": "Voron Trident 300", + "inherits": "voron_trident_base", + "metadata": + { + "visible": true, + "author": "RagingRoosevelt, hartk", + "platform": "voron_trident_300mm_bed_model.stl", + "quality_definition": "voron2_base" + }, + "overrides": + { + "machine_depth": { "default_value": 300 }, + "machine_name": { "default_value": "VORON Trident 300" }, + "machine_width": { "default_value": 300 } + } +} \ No newline at end of file diff --git a/resources/definitions/voron_trident_350.def.json b/resources/definitions/voron_trident_350.def.json new file mode 100644 index 0000000000..c693539e79 --- /dev/null +++ b/resources/definitions/voron_trident_350.def.json @@ -0,0 +1,18 @@ +{ + "version": 2, + "name": "Voron Trident 350", + "inherits": "voron_trident_base", + "metadata": + { + "visible": true, + "author": "RagingRoosevelt, hartk", + "platform": "voron_trident_350mm_bed_model.stl", + "quality_definition": "voron2_base" + }, + "overrides": + { + "machine_depth": { "default_value": 350 }, + "machine_name": { "default_value": "VORON Trident 350" }, + "machine_width": { "default_value": 350 } + } +} \ No newline at end of file diff --git a/resources/definitions/voron_trident_base.def.json b/resources/definitions/voron_trident_base.def.json new file mode 100644 index 0000000000..c1fa8146ac --- /dev/null +++ b/resources/definitions/voron_trident_base.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "Voron Trident Base", + "inherits": "voron2_base", + "metadata": + { + "visible": false, + "author": "RagingRoosevelt, hartk", + "platform": "voron_trident_250mm_bed_model.stl", + "quality_definition": "voron2_base" + }, + "overrides": + { + "machine_depth": { "default_value": 250 }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "VORON Trident" }, + "machine_width": { "default_value": 250 } + } +} \ No newline at end of file diff --git a/resources/definitions/vzbot_235.def.json b/resources/definitions/vzbot_235.def.json new file mode 100644 index 0000000000..a8312a2ab4 --- /dev/null +++ b/resources/definitions/vzbot_235.def.json @@ -0,0 +1,18 @@ +{ + "version": 2, + "name": "VzBot 235", + "inherits": "vzbot_base", + "metadata": + { + "visible": true, + "platform": "vzbot_235_bed.stl", + "quality_definition": "vzbot_base" + }, + "overrides": + { + "machine_depth": { "default_value": 235 }, + "machine_height": { "default_value": 240 }, + "machine_name": { "default_value": "VzBot 235" }, + "machine_width": { "default_value": 235 } + } +} \ No newline at end of file diff --git a/resources/definitions/vzbot_330.def.json b/resources/definitions/vzbot_330.def.json new file mode 100644 index 0000000000..f85af31224 --- /dev/null +++ b/resources/definitions/vzbot_330.def.json @@ -0,0 +1,18 @@ +{ + "version": 2, + "name": "VzBot 330", + "inherits": "vzbot_base", + "metadata": + { + "visible": true, + "platform": "vzbot_330_bed.stl", + "quality_definition": "vzbot_base" + }, + "overrides": + { + "machine_depth": { "default_value": 330 }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "VzBot 330" }, + "machine_width": { "default_value": 330 } + } +} \ No newline at end of file diff --git a/resources/definitions/vzbot_base.def.json b/resources/definitions/vzbot_base.def.json new file mode 100644 index 0000000000..4efdbc2f66 --- /dev/null +++ b/resources/definitions/vzbot_base.def.json @@ -0,0 +1,203 @@ +{ + "version": 2, + "name": "VzBot Base", + "inherits": "fdmprinter", + "metadata": + { + "visible": false, + "author": "Chris, ckvsoft.at", + "manufacturer": "VzBot", + "file_formats": "text/x-gcode", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "vzbot_extruder_0" }, + "preferred_material": "generic_abs", + "preferred_quality_type": "standard", + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Size" + }, + "overrides": + { + "acceleration_enabled": { "default_value": true }, + "acceleration_infill": { "maximum_value_warning": 50000 }, + "acceleration_layer_0": + { + "maximum_value_warning": 50000, + "value": 15000 + }, + "acceleration_print": + { + "default_value": 15000, + "maximum_value_warning": 50000 + }, + "acceleration_print_layer_0": + { + "maximum_value_warning": 50000, + "value": 15000 + }, + "acceleration_roofing": + { + "maximum_value_warning": 50000, + "value": 15000 + }, + "acceleration_skirt_brim": + { + "maximum_value_warning": 50000, + "value": 15000 + }, + "acceleration_topbottom": + { + "maximum_value_warning": 50000, + "value": 15000 + }, + "acceleration_travel": + { + "maximum_value_warning": 50000, + "value": 15000 + }, + "acceleration_travel_layer_0": + { + "maximum_value_warning": 50000, + "value": 15000 + }, + "acceleration_wall": { "maximum_value_warning": 50000 }, + "acceleration_wall_0": + { + "maximum_value_warning": 50000, + "value": 15000 + }, + "acceleration_wall_x": + { + "maximum_value_warning": 50000, + "value": 15000 + }, + "adhesion_type": { "default_value": "skirt" }, + "alternate_extra_perimeter": { "default_value": true }, + "bridge_fan_speed_2": { "resolve": "max(cool_fan_speed, 50)" }, + "bridge_fan_speed_3": { "resolve": "max(cool_fan_speed, 20)" }, + "bridge_settings_enabled": { "default_value": true }, + "bridge_wall_coast": { "default_value": 10 }, + "cool_fan_full_at_height": { "value": "resolveOrValue('layer_height_0') + resolveOrValue('layer_height') * max(1, cool_fan_full_layer - 1)" }, + "cool_fan_full_layer": { "value": 4 }, + "cool_min_layer_time_fan_speed_max": { "default_value": 20 }, + "gantry_height": { "value": 34 }, + "infill_before_walls": { "default_value": false }, + "infill_enable_travel_optimization": { "default_value": true }, + "infill_pattern": { "value": "'grid' if infill_sparse_density > 40 else 'cubic'" }, + "infill_sparse_density": { "value": 35 }, + "jerk_roofing": { "value": 10 }, + "jerk_wall_0": { "value": 10 }, + "layer_height_0": { "resolve": "max(0.2, min(extruderValues('layer_height')))" }, + "line_width": { "value": "machine_nozzle_size * 1.125" }, + "machine_acceleration": { "default_value": 15000 }, + "machine_depth": { "default_value": 330 }, + "machine_end_gcode": { "default_value": "end_print" }, + "machine_endstop_positive_direction_x": { "default_value": true }, + "machine_endstop_positive_direction_y": { "default_value": true }, + "machine_endstop_positive_direction_z": { "default_value": false }, + "machine_feeder_wheel_diameter": { "default_value": 7.5 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-35, 65], + [-35, -50], + [35, -50], + [35, 65] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 400 }, + "machine_max_acceleration_x": { "default_value": 15000 }, + "machine_max_acceleration_y": { "default_value": 15000 }, + "machine_max_acceleration_z": { "default_value": 2000 }, + "machine_max_feedrate_e": { "default_value": 120 }, + "machine_max_feedrate_z": { "default_value": 40 }, + "machine_max_jerk_e": { "default_value": 60 }, + "machine_max_jerk_xy": { "default_value": 20 }, + "machine_max_jerk_z": { "default_value": 1 }, + "machine_name": { "default_value": "VzBot" }, + "machine_start_gcode": { "default_value": "start_print B={material_bed_temperature_layer_0} H={material_print_temperature_layer_0} C={build_volume_temperature}" }, + "machine_steps_per_mm_x": { "default_value": 80 }, + "machine_steps_per_mm_y": { "default_value": 80 }, + "machine_steps_per_mm_z": { "default_value": 400 }, + "machine_width": { "default_value": 330 }, + "meshfix_maximum_resolution": { "default_value": 0.01 }, + "min_infill_area": { "default_value": 5.0 }, + "minimum_polygon_circumference": { "default_value": 0.2 }, + "optimize_wall_printing_order": { "default_value": true }, + "retraction_amount": { "default_value": 0.65 }, + "retraction_combing": { "value": "'noskin'" }, + "retraction_combing_max_distance": { "default_value": 10 }, + "retraction_hop": { "default_value": 0.2 }, + "retraction_prime_speed": + { + "maximum_value_warning": 150, + "value": "math.ceil(retraction_speed * 0.4)" + }, + "retraction_retract_speed": { "maximum_value_warning": 150 }, + "retraction_speed": + { + "default_value": 45, + "maximum_value_warning": 150 + }, + "roofing_layer_count": { "value": 1 }, + "skin_monotonic": { "default_value": true }, + "skirt_brim_minimal_length": { "default_value": 550 }, + "speed_infill": { "maximum_value_warning": 1001 }, + "speed_layer_0": + { + "maximum_value_warning": 1001, + "value": "math.ceil(speed_print * 0.25)" + }, + "speed_print": + { + "maximum_value_warning": 1001, + "value": 300 + }, + "speed_roofing": + { + "maximum_value_warning": 1001, + "value": "math.ceil(speed_print * 0.5)" + }, + "speed_topbottom": + { + "maximum_value_warning": 1001, + "value": "math.ceil(speed_print * 0.5)" + }, + "speed_travel": + { + "maximum_value_warning": 1001, + "value": 300 + }, + "speed_travel_layer_0": + { + "maximum_value_warning": 1001, + "value": "math.ceil(speed_travel * 0.4)" + }, + "speed_wall": + { + "maximum_value_warning": 1001, + "value": "math.ceil(speed_print * 0.5)" + }, + "speed_wall_0": + { + "maximum_value_warning": 1001, + "value": "math.ceil(speed_print * 0.5)" + }, + "speed_wall_x": + { + "maximum_value_warning": 1001, + "value": "math.ceil(speed_print)" + }, + "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 }, + "xy_offset_layer_0": { "value": -0.3 }, + "z_seam_type": { "value": "'back'" }, + "zig_zaggify_infill": { "value": true } + } +} \ No newline at end of file diff --git a/resources/definitions/vzbot_custom.def.json b/resources/definitions/vzbot_custom.def.json new file mode 100644 index 0000000000..47416529fd --- /dev/null +++ b/resources/definitions/vzbot_custom.def.json @@ -0,0 +1,17 @@ +{ + "version": 2, + "name": "VzBot Custom", + "inherits": "vzbot_base", + "metadata": + { + "visible": true, + "quality_definition": "vzbot_base" + }, + "overrides": + { + "machine_depth": { "default_value": 400 }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "VzBot Custom" }, + "machine_width": { "default_value": 400 } + } +} \ No newline at end of file diff --git a/resources/definitions/wanhao_d4s.def.json b/resources/definitions/wanhao_d4s.def.json index c1807923c6..e29fc4e58d 100644 --- a/resources/definitions/wanhao_d4s.def.json +++ b/resources/definitions/wanhao_d4s.def.json @@ -1,48 +1,32 @@ { - "version": 2, - "name": "Wanhao Duplicator 4S", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Ricardo Snoek", - "manufacturer": "Wanhao", - "file_formats": "text/x-gcode", - "has_materials": true, - "platform": "wanhao_225_145_platform.obj", - "platform_texture": "Wanhaobackplate.png", - "machine_extruder_trains": { - "0": "wanhao_d4s_extruder_0" + "version": 2, + "name": "Wanhao Duplicator 4S", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Ricardo Snoek", + "manufacturer": "Wanhao", + "file_formats": "text/x-gcode", + "platform": "wanhao_225_145_platform.obj", + "has_materials": true, + "machine_extruder_trains": { "0": "wanhao_d4s_extruder_0" }, + "platform_offset": [ + 0, + -28, + 5 + ], + "platform_texture": "Wanhaobackplate.png" }, - "platform_offset": [ - 0, - -28, - 5 - ] - }, - "overrides": { - "machine_name": { - "default_value": "Wanhao Duplicator 4S" - }, - "machine_width": { - "default_value": 225 - }, - "machine_height": { - "default_value": 150 - }, - "machine_depth": { - "default_value": 150 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G21 ;metric values\n G90 ;absolute positioning\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G28 X0 Y0 ;move X/Y to min endstops\n G28 Z0 ;move Z to min endstops\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E6 ;extrude 6 mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel} \n ;Put printing message on LCD screen\n M117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off \n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning" + "overrides": + { + "machine_depth": { "default_value": 150 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off \n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 150 }, + "machine_name": { "default_value": "Wanhao Duplicator 4S" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\n G90 ;absolute positioning\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G28 X0 Y0 ;move X/Y to min endstops\n G28 Z0 ;move Z to min endstops\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E6 ;extrude 6 mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel} \n ;Put printing message on LCD screen\n M117 Printing..." }, + "machine_width": { "default_value": 225 } } - } -} +} \ No newline at end of file diff --git a/resources/definitions/wanhao_d6.def.json b/resources/definitions/wanhao_d6.def.json index eaaae54826..9f8f49a34f 100644 --- a/resources/definitions/wanhao_d6.def.json +++ b/resources/definitions/wanhao_d6.def.json @@ -1,51 +1,33 @@ { - "version": 2, - "name": "Wanhao Duplicator 6", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Ricardo Snoek", - "manufacturer": "Wanhao", - "file_formats": "text/x-gcode", - "has_materials": true, - "platform": "wanhao_200_200_platform.obj", - "platform_texture": "Wanhaobackplate.png", - "machine_extruder_trains": { - "0": "wanhao_d6_extruder_0" + "version": 2, + "name": "Wanhao Duplicator 6", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Ricardo Snoek", + "manufacturer": "Wanhao", + "file_formats": "text/x-gcode", + "platform": "wanhao_200_200_platform.obj", + "has_materials": true, + "machine_extruder_trains": { "0": "wanhao_d6_extruder_0" }, + "platform_offset": [ + 0, + -28, + 0 + ], + "platform_texture": "Wanhaobackplate.png" }, - "platform_offset": [ - 0, - -28, - 0 - ] - }, - "overrides": { - "machine_name": { - "default_value": "Wanhao Duplicator 6" - }, - "machine_width": { - "default_value": 200 - }, - "machine_height": { - "default_value": 180 - }, - "machine_depth": { - "default_value": 200 - }, - "machine_heated_bed": { - "default_value": true - }, - "gantry_height": { - "value": "55" - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G21 ;metric values\n G90 ;absolute positioning\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G28 X0 Y0 ;move X/Y to min endstops\n G28 Z0 ;move Z to min endstops\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E6 ;extrude 6 mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel} \n ;Put printing message on LCD screen\n M117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off \n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning" + "overrides": + { + "gantry_height": { "value": "55" }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off \n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 180 }, + "machine_name": { "default_value": "Wanhao Duplicator 6" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\n G90 ;absolute positioning\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G28 X0 Y0 ;move X/Y to min endstops\n G28 Z0 ;move Z to min endstops\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E6 ;extrude 6 mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel} \n ;Put printing message on LCD screen\n M117 Printing..." }, + "machine_width": { "default_value": 200 } } - } -} +} \ No newline at end of file diff --git a/resources/definitions/wanhao_d6_plus.def.json b/resources/definitions/wanhao_d6_plus.def.json index b3b5ed9b0a..31d11e2a2c 100644 --- a/resources/definitions/wanhao_d6_plus.def.json +++ b/resources/definitions/wanhao_d6_plus.def.json @@ -1,48 +1,32 @@ { - "version": 2, - "name": "Wanhao Duplicator 6 Plus", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Ricardo Snoek", - "manufacturer": "Wanhao", - "file_formats": "text/x-gcode", - "has_materials": true, - "platform": "wanhao_200_200_platform.obj", - "platform_texture": "Wanhaobackplate.png", - "machine_extruder_trains": { - "0": "wanhao_d6_plus_extruder_0" + "version": 2, + "name": "Wanhao Duplicator 6 Plus", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Ricardo Snoek", + "manufacturer": "Wanhao", + "file_formats": "text/x-gcode", + "platform": "wanhao_200_200_platform.obj", + "has_materials": true, + "machine_extruder_trains": { "0": "wanhao_d6_plus_extruder_0" }, + "platform_offset": [ + 0, + -28, + 0 + ], + "platform_texture": "Wanhaobackplate.png" }, - "platform_offset": [ - 0, - -28, - 0 - ] - }, - "overrides": { - "machine_name": { - "default_value": "Wanhao Duplicator 6 Plus" - }, - "machine_width": { - "default_value": 200 - }, - "machine_height": { - "default_value": 180 - }, - "machine_depth": { - "default_value": 200 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G21 ;metric values\n G90 ;absolute positioning\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G28 X0 Y0 ;move X/Y to min endstops\n G28 Z0 ;move Z to min endstops\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E6 ;extrude 6 mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel} \n ;Put printing message on LCD screen\n M117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off \n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning" + "overrides": + { + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off \n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 180 }, + "machine_name": { "default_value": "Wanhao Duplicator 6 Plus" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\n G90 ;absolute positioning\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G28 X0 Y0 ;move X/Y to min endstops\n G28 Z0 ;move Z to min endstops\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E6 ;extrude 6 mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel} \n ;Put printing message on LCD screen\n M117 Printing..." }, + "machine_width": { "default_value": 200 } } - } -} +} \ No newline at end of file diff --git a/resources/definitions/wanhao_d9.def.json b/resources/definitions/wanhao_d9.def.json index ac4d41fa40..45a02bbae3 100644 --- a/resources/definitions/wanhao_d9.def.json +++ b/resources/definitions/wanhao_d9.def.json @@ -1,39 +1,38 @@ -{ - "version": 2, - "name": "Wanhao Duplicator 9", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "manufacturer": "Wanhao", - "file_formats": "text/x-gcode", - "has_materials": true, - "platform": "wanhao_300_300_platform.obj", - "platform_texture": "Wanhaobackplate.png", - "machine_extruder_trains": { - "0": "wanhao_d9_extruder_0" - }, - "platform_offset": [ 0, -55, 0] - }, - - "overrides": { - "machine_name": { "default_value": "Wanhao Duplicator 9" }, - "machine_width": { "default_value": 300 }, - "machine_height": { "default_value": 400 }, - "machine_depth": { "default_value": 300 }, - "machine_heated_bed": { "default_value": true }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "G21 ;metric values\n G90 ;absolute positioning\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G28 X0 Y0 ;move X/Y to min endstops\n G28 Z0 ;move Z to min endstops\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E6 ;extrude 6 mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel} \n ;Put printing message on LCD screen\n M117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off \n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning" - }, - "support_angle": { "default_value": 60 }, - "support_enable": { "default_value": true }, - "layer_height_0": { "default_value": 0.15 }, - "layer_height": { "default_value": 0.2 }, - "speed_print": { "default_value": 30 }, - "adhesion_type": { "default_value": "raft" }, - "support_z_distance": { "default_value": 0.22 } - } -} +{ + "version": 2, + "name": "Wanhao Duplicator 9", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "manufacturer": "Wanhao", + "file_formats": "text/x-gcode", + "platform": "wanhao_300_300_platform.obj", + "has_materials": true, + "machine_extruder_trains": { "0": "wanhao_d9_extruder_0" }, + "platform_offset": [ + 0, + -55, + 0 + ], + "platform_texture": "Wanhaobackplate.png" + }, + "overrides": + { + "adhesion_type": { "default_value": "raft" }, + "layer_height": { "default_value": 0.2 }, + "layer_height_0": { "default_value": 0.15 }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off \n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Wanhao Duplicator 9" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\n G90 ;absolute positioning\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G28 X0 Y0 ;move X/Y to min endstops\n G28 Z0 ;move Z to min endstops\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E6 ;extrude 6 mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel} \n ;Put printing message on LCD screen\n M117 Printing..." }, + "machine_width": { "default_value": 300 }, + "speed_print": { "default_value": 30 }, + "support_angle": { "default_value": 60 }, + "support_enable": { "default_value": true }, + "support_z_distance": { "default_value": 0.22 } + } +} \ No newline at end of file diff --git a/resources/definitions/wanhao_duplicator5S.def.json b/resources/definitions/wanhao_duplicator5S.def.json index b27a13fda8..5fc800a620 100644 --- a/resources/definitions/wanhao_duplicator5S.def.json +++ b/resources/definitions/wanhao_duplicator5S.def.json @@ -1,51 +1,33 @@ { - "version": 2, - "name": "Wanhao Duplicator 5S", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Ricardo Snoek", - "manufacturer": "Wanhao", - "file_formats": "text/x-gcode", - "has_materials": true, - "platform": "wanhao_300_200_platform.obj", - "platform_texture": "Wanhaobackplate.png", - "machine_extruder_trains": { - "0": "wanhao_duplicator5S_extruder_0" + "version": 2, + "name": "Wanhao Duplicator 5S", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Ricardo Snoek", + "manufacturer": "Wanhao", + "file_formats": "text/x-gcode", + "platform": "wanhao_300_200_platform.obj", + "has_materials": true, + "machine_extruder_trains": { "0": "wanhao_duplicator5S_extruder_0" }, + "platform_offset": [ + 0, + -28, + 0 + ], + "platform_texture": "Wanhaobackplate.png" }, - "platform_offset": [ - 0, - -28, - 0 - ] - }, - "overrides": { - "machine_name": { - "default_value": "Wanhao Duplicator 5S" - }, - "machine_width": { - "default_value": 300 - }, - "machine_height": { - "default_value": 600 - }, - "machine_depth": { - "default_value": 200 - }, - "machine_center_is_zero": { - "default_value": false - }, - "machine_heated_bed": { - "default_value": false - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G21 ;metric values\n G90 ;absolute positioning\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G28 X0 Y0 ;move X/Y to min endstops\n G28 Z0 ;move Z to min endstops\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E6 ;extrude 6 mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel} \n ;Put printing message on LCD screen\n M117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off \n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning" + "overrides": + { + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off \n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 600 }, + "machine_name": { "default_value": "Wanhao Duplicator 5S" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\n G90 ;absolute positioning\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G28 X0 Y0 ;move X/Y to min endstops\n G28 Z0 ;move Z to min endstops\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E6 ;extrude 6 mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel} \n ;Put printing message on LCD screen\n M117 Printing..." }, + "machine_width": { "default_value": 300 } } - } -} +} \ No newline at end of file diff --git a/resources/definitions/wanhao_duplicator5Smini.def.json b/resources/definitions/wanhao_duplicator5Smini.def.json index e3ef0b92fe..c33f39a07c 100644 --- a/resources/definitions/wanhao_duplicator5Smini.def.json +++ b/resources/definitions/wanhao_duplicator5Smini.def.json @@ -1,48 +1,32 @@ { - "version": 2, - "name": "Wanhao Duplicator 5S Mini", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Ricardo Snoek", - "manufacturer": "Wanhao", - "file_formats": "text/x-gcode", - "has_materials": true, - "platform": "wanhao_300_200_platform.obj", - "platform_texture": "Wanhaobackplate.png", - "machine_extruder_trains": { - "0": "wanhao_duplicator5Smini_extruder_0" + "version": 2, + "name": "Wanhao Duplicator 5S Mini", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Ricardo Snoek", + "manufacturer": "Wanhao", + "file_formats": "text/x-gcode", + "platform": "wanhao_300_200_platform.obj", + "has_materials": true, + "machine_extruder_trains": { "0": "wanhao_duplicator5Smini_extruder_0" }, + "platform_offset": [ + 0, + -28, + 0 + ], + "platform_texture": "Wanhaobackplate.png" }, - "platform_offset": [ - 0, - -28, - 0 - ] - }, - "overrides": { - "machine_name": { - "default_value": "Wanhao Duplicator 5S Mini" - }, - "machine_width": { - "default_value": 300 - }, - "machine_height": { - "default_value": 180 - }, - "machine_depth": { - "default_value": 200 - }, - "machine_heated_bed": { - "default_value": false - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G21 ;metric values\n G90 ;absolute positioning\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G28 X0 Y0 ;move X/Y to min endstops\n G28 Z0 ;move Z to min endstops\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E6 ;extrude 6 mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel} \n ;Put printing message on LCD screen\n M117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off \n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning" + "overrides": + { + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off \n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 180 }, + "machine_name": { "default_value": "Wanhao Duplicator 5S Mini" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\n G90 ;absolute positioning\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G28 X0 Y0 ;move X/Y to min endstops\n G28 Z0 ;move Z to min endstops\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E6 ;extrude 6 mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel} \n ;Put printing message on LCD screen\n M117 Printing..." }, + "machine_width": { "default_value": 300 } } - } -} +} \ No newline at end of file diff --git a/resources/definitions/wanhao_i3.def.json b/resources/definitions/wanhao_i3.def.json index 42b19c8748..dfc4e75fcd 100644 --- a/resources/definitions/wanhao_i3.def.json +++ b/resources/definitions/wanhao_i3.def.json @@ -1,48 +1,32 @@ { - "version": 2, - "name": "Wanhao Duplicator i3", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Ricardo Snoek", - "manufacturer": "Wanhao", - "file_formats": "text/x-gcode", - "has_materials": true, - "platform": "wanhao_200_200_platform.obj", - "platform_texture": "Wanhaobackplate.png", - "machine_extruder_trains": { - "0": "wanhao_i3_extruder_0" + "version": 2, + "name": "Wanhao Duplicator i3", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Ricardo Snoek", + "manufacturer": "Wanhao", + "file_formats": "text/x-gcode", + "platform": "wanhao_200_200_platform.obj", + "has_materials": true, + "machine_extruder_trains": { "0": "wanhao_i3_extruder_0" }, + "platform_offset": [ + 0, + -28, + 0 + ], + "platform_texture": "Wanhaobackplate.png" }, - "platform_offset": [ - 0, - -28, - 0 - ] - }, - "overrides": { - "machine_name": { - "default_value": "Wanhao Duplicator i3" - }, - "machine_width": { - "default_value": 200 - }, - "machine_height": { - "default_value": 180 - }, - "machine_depth": { - "default_value": 200 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G21 ;metric values\n G90 ;absolute positioning\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G28 X0 Y0 ;move X/Y to min endstops\n G28 Z0 ;move Z to min endstops\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E6 ;extrude 6 mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel} \n ;Put printing message on LCD screen\n M117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off \n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning" + "overrides": + { + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off \n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 180 }, + "machine_name": { "default_value": "Wanhao Duplicator i3" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\n G90 ;absolute positioning\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G28 X0 Y0 ;move X/Y to min endstops\n G28 Z0 ;move Z to min endstops\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E6 ;extrude 6 mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel} \n ;Put printing message on LCD screen\n M117 Printing..." }, + "machine_width": { "default_value": 200 } } - } -} +} \ No newline at end of file diff --git a/resources/definitions/wanhao_i3mini.def.json b/resources/definitions/wanhao_i3mini.def.json index 0c70391c27..a4bfd38921 100644 --- a/resources/definitions/wanhao_i3mini.def.json +++ b/resources/definitions/wanhao_i3mini.def.json @@ -1,48 +1,32 @@ { - "version": 2, - "name": "Wanhao Duplicator i3 Mini", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Ricardo Snoek", - "manufacturer": "Wanhao", - "file_formats": "text/x-gcode", - "has_materials": true, - "platform": "wanhao_110_110_platform.obj", - "platform_texture": "Wanhaobackplate.png", - "machine_extruder_trains": { - "0": "wanhao_i3mini_extruder_0" + "version": 2, + "name": "Wanhao Duplicator i3 Mini", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Ricardo Snoek", + "manufacturer": "Wanhao", + "file_formats": "text/x-gcode", + "platform": "wanhao_110_110_platform.obj", + "has_materials": true, + "machine_extruder_trains": { "0": "wanhao_i3mini_extruder_0" }, + "platform_offset": [ + 0, + -15, + 7 + ], + "platform_texture": "Wanhaobackplate.png" }, - "platform_offset": [ - 0, - -15, - 7 - ] - }, - "overrides": { - "machine_name": { - "default_value": "Wanhao Duplicator i3 Mini" - }, - "machine_width": { - "default_value": 110 - }, - "machine_height": { - "default_value": 110 - }, - "machine_depth": { - "default_value": 110 - }, - "machine_heated_bed": { - "default_value": false - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G21 ;metric values\n G90 ;absolute positioning\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G28 X0 Y0 ;move X/Y to min endstops\n G28 Z0 ;move Z to min endstops\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E6 ;extrude 6 mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel} \n ;Put printing message on LCD screen\n M117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off \n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning" + "overrides": + { + "machine_depth": { "default_value": 110 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off \n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 110 }, + "machine_name": { "default_value": "Wanhao Duplicator i3 Mini" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\n G90 ;absolute positioning\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G28 X0 Y0 ;move X/Y to min endstops\n G28 Z0 ;move Z to min endstops\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E6 ;extrude 6 mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel} \n ;Put printing message on LCD screen\n M117 Printing..." }, + "machine_width": { "default_value": 110 } } - } -} +} \ No newline at end of file diff --git a/resources/definitions/wanhao_i3plus.def.json b/resources/definitions/wanhao_i3plus.def.json index e454a40ae1..2d14723af8 100644 --- a/resources/definitions/wanhao_i3plus.def.json +++ b/resources/definitions/wanhao_i3plus.def.json @@ -1,48 +1,32 @@ { - "version": 2, - "name": "Wanhao Duplicator i3 Plus", - "inherits": "fdmprinter", - "metadata": { - "visible": true, - "author": "Ricardo Snoek", - "manufacturer": "Wanhao", - "file_formats": "text/x-gcode", - "has_materials": true, - "platform": "wanhao_200_200_platform.obj", - "platform_texture": "Wanhaobackplate.png", - "machine_extruder_trains": { - "0": "wanhao_i3plus_extruder_0" + "version": 2, + "name": "Wanhao Duplicator i3 Plus", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Ricardo Snoek", + "manufacturer": "Wanhao", + "file_formats": "text/x-gcode", + "platform": "wanhao_200_200_platform.obj", + "has_materials": true, + "machine_extruder_trains": { "0": "wanhao_i3plus_extruder_0" }, + "platform_offset": [ + 0, + -28, + 0 + ], + "platform_texture": "Wanhaobackplate.png" }, - "platform_offset": [ - 0, - -28, - 0 - ] - }, - "overrides": { - "machine_name": { - "default_value": "Wanhao Duplicator i3 Plus" - }, - "machine_width": { - "default_value": 200 - }, - "machine_depth": { - "default_value": 200 - }, - "machine_height": { - "default_value": 180 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "machine_start_gcode": { - "default_value": "G21 ;metric values\n G90 ;absolute positioning\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G28 X0 Y0 ;move X/Y to min endstops\n G28 Z0 ;move Z to min endstops\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E6 ;extrude 6 mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel} \n ;Put printing message on LCD screen\n M117 Printing..." - }, - "machine_end_gcode": { - "default_value": "M104 S0 ;extruder heater off \n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning" + "overrides": + { + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "M104 S0 ;extruder heater off \n G91 ;relative positioning\n G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\n G1 Z+0.5 E-5 X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more\n G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\n M84 ;steppers off\n G90 ;absolute positioning" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 180 }, + "machine_name": { "default_value": "Wanhao Duplicator i3 Plus" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\n G90 ;absolute positioning\n M82 ;set extruder to absolute mode\n M107 ;start with the fan off\n G28 X0 Y0 ;move X/Y to min endstops\n G28 Z0 ;move Z to min endstops\n G1 Z15.0 F{speed_travel} ;move the platform down 15mm\n G92 E0 ;zero the extruded length\n G1 F200 E6 ;extrude 6 mm of feed stock\n G92 E0 ;zero the extruded length again\n G1 F{speed_travel} \n ;Put printing message on LCD screen\n M117 Printing..." }, + "machine_width": { "default_value": 200 } } - } -} +} \ No newline at end of file diff --git a/resources/definitions/weedo_x40.def.json b/resources/definitions/weedo_x40.def.json index 9fb5cad2d8..043bae3cb0 100644 --- a/resources/definitions/weedo_x40.def.json +++ b/resources/definitions/weedo_x40.def.json @@ -1,290 +1,278 @@ -{ - "version": 2, - "name": "Weedo X40", - "inherits": "fdmprinter", - "metadata": { - "author": "X40-Community.org", - "manufacturer": "Weedo", - "visible": true, - "file_formats": "text/x-gcode", - "platform": "weedo_x40.3mf", - "platform_offset": [ 0, 193, 35], - "has_machine_quality": true, - "has_materials": true, - "has_variants": true, - "preferred_material": "generic_pla_175", - "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", - "generic_pc_175", - "generic_nylon_175", - "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", - "goofoo_wood_pla", - "emotiontech_abs", - "emotiontech_absx", - "emotiontech_acetate", - "emotiontech_asax", - "emotiontech_bvoh", - "emotiontech_copa", - "emotiontech_hips", - "emotiontech_nylon_1030", - "emotiontech_nylon_1030cf", - "emotiontech_nylon_1070", - "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", - "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", - "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", - "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", - "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", - "zyyx_pro_flex", - "zyyx_pro_pla" - ], - "preferred_variant_name": "0.4mm Nozzle", - "preferred_quality_type": "normal", - "variants_name": "Nozzle Type", - "machine_extruder_trains": - { - "0": "weedo_x40_extruder_left_0", - "1": "weedo_x40_extruder_right_0" - } - }, - - "overrides": { - "machine_name": { "default_value": "Weedo X40" }, - "machine_width": { "default_value": 300 }, - "machine_depth": { "default_value": 300 }, - "machine_height": { "default_value": 400 }, - "machine_heated_bed": { "default_value": true }, - "machine_nozzle_heat_up_speed": { "default_value": 1.6 }, - "machine_nozzle_cool_down_speed": { "default_value": 0.75 }, - "machine_head_with_fans_polygon": - { - "default_value": - [ - [ -42.5, 18 ], - [ -42.5, -50 ], - [ 24.5, 18 ], - [ 24.5, -50.0 ] - ] - }, - "machine_max_feedrate_x": { "value": 500 }, - "machine_max_feedrate_y": { "value": 500 }, - "machine_max_feedrate_z": { "value": 10 }, - "machine_max_feedrate_e": { "value": 50 }, - "machine_acceleration": { "value": 500 }, - "machine_max_acceleration_x": { "value": 500 }, - "machine_max_acceleration_y": { "value": 500 }, - "machine_max_acceleration_z": { "value": 100 }, - "machine_max_acceleration_e": { "value": 5000 }, - "gantry_height": { "value": "12" }, - "machine_extruder_count": { "default_value": 2 }, - "machine_start_gcode": {"default_value": "; x40-community.org configuration Rev. 08\n;(**** start.gcode for WEEDO X40 DUAL****)\nT{initial_extruder_nr} S ; Selected start extruder\nM140 S{material_bed_temperature_layer_0} ; Preheat bed\nM109 S{material_print_temperature_layer_0}; Preheat nozzle\nM73 P0 ; Set current print progress percentage\nG21 ; Millimeter Units\nG90 ; Absolute positioning\nM82 ; Extruder in absolute mode\nT0 S ; Select left extruder\nM301 H1 P15.53 I1.32 D45.75 ; PID left extruder with Weedo X40 coolingsystem\n;M301 H1 P13.32 I0.98 D45.13 ; PID left extruder with X40 Community coolingsystem\nM92 E94.90 ; Calibrate left extruder\nT1 S ; Select right extruder\nM301 H1 P15.44 I1.29 D46.11 ; PID right extruder with Weedo X40 coolingsystem\n;M301 H1 P13.32 I0.98 D45.13 ; PID right extruder with X40 Community coolingsystem\nM92 E94.90 ; Calibrate right extruder\nT0 S ; Select left extruder\nG28 ; Auto home\nG29 ; Bed Leveling\nG1 X-47 F3000 ; Move left nozzle to parking position\nT1 S ; select right extruder\nG1 X351 F3000 ; Move right nozzle to parking position\nM107 P0 ; Turn off left fan\nM107 P1 ; Turn off right fan\nT{initial_extruder_nr} S ; Set start extruder\nM190 S{material_bed_temperature_layer_0} ; Waiting for bed temperature\nG1 E50 F100 ; Extrude in parking position\nM77 ; Stop heat up timer\nM75 ; Start print timer\n" - }, - "machine_end_gcode": {"default_value": "(*********end X40 End.gcode*******)\nG28 X Y F3000\nG91 ; Relative positioning\nG1 E-6 ; Reduce filament pressure\nG90 ; Absolute positioning\nG0 Y300 F3000 ; Move headbed\nM104 S0 T0 ; Cool down left extruder\nM104 S0 T1 ; Cool down right extruder\nM140 S0 ; Cool down heatbed\nM107 P0 ; Turn off left fan\nM107 P1 ; Turn off right fan\nM82; Extruder in absolute mode\nM73 P100 ; Set print progress to 100%" }, - - "speed_travel": - { - "maximum_value": "150", - "value": "150" - }, - - "acceleration_enabled": { "value": false }, - "acceleration_print": { "value": 1000 }, - "acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, - "acceleration_support_interface": { "value": "acceleration_topbottom" }, - "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 500 / 4000)" }, - "acceleration_wall": { "value": "math.ceil(acceleration_print * 1000 / 4000)" }, - "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 500 / 1000)" }, - "acceleration_travel": { "value": 2000 }, - "acceleration_travel_layer_0": { "value": "acceleration_travel / 2" }, - "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, - "adhesion_type": { "value": "'brim'" }, - "brim_width": { "value": "8" }, - "bridge_settings_enabled": { "default_value": true }, - "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, - "cool_fan_speed": { "value": "50" }, - "cool_fan_speed_max": { "value": "100" }, - "cool_min_speed": { "value": "7" }, - "fill_outline_gaps": { "value": false }, - "infill_line_width": { "value": "round(line_width * 0.42 / 0.35, 2)" }, - "infill_overlap": { "value": 30.0 }, - "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, - "infill_wipe_dist": { "value": 0.0 }, - "infill_sparse_density": { "value": "20" }, - "infill_before_walls": { "value": false }, - "jerk_enabled": { "value": false }, - "jerk_print": { "value": 11 }, - - "jerk_wall": { "value": "jerk_print - 2" }, - "jerk_travel": { "value": 18 }, - "jerk_travel_layer_0": { "value": "jerk_travel" }, - "layer_height_0": { "value": "round(layer_height * 1.5, 2)" }, - "line_width": { "value": "machine_nozzle_size" }, - "machine_min_cool_heat_time_window": { "default_value": 360 }, - "machine_max_jerk_xy": { "value": 10 }, - "machine_max_jerk_z": { "value": 0.4 }, - "machine_max_jerk_e": { "value": 5 }, - "machine_center_is_zero": { "default_value": false }, - "material_diameter": { "default_value": 1.75 }, - "material_flow": { "value": 100 }, - "material_standby_temperature": { "value": "100" }, - "material_print_temp_prepend": { "default_value":false }, - "prime_tower_enable": { "default_value": false }, - "raft_airgap": { "default_value": 0.22 }, - "raft_base_speed":{ "value": 20 }, - "raft_interface_speed": { "value": 33 }, - "raft_margin": { "default_value": 8 }, - "retraction_enable": { "value": true }, - "retraction_amount": { "default_value": 4.5 }, - "retraction_count_max": { "value": 100 }, - "retraction_extrusion_window": { "value": 8 }, - "retraction_hop": { "value": 0.5 }, - "retraction_hop_enabled": { "value": "False" }, - "retraction_min_travel": { "value": 1.5 }, - "skin_overlap": { "value": 10.0 }, - "speed_layer_0": { "value": "round(speed_print / 2.5, 2)" }, - "speed_print": { "value": 50.0 }, - "speed_support": { "value": "speed_wall_0" }, - "speed_support_interface": { "value": "speed_print" }, - "speed_topbottom": { "value": "speed_print / 2" }, - "speed_wall": { "value": "speed_print / 2" }, - "speed_wall_0": { "value": "speed_wall" }, - "speed_wall_x": { "value": "speed_wall" }, - "speed_infill": { "value": "speed_print" }, - "speed_support_infill": { "value": 58.0 }, - "speed_print_layer_0": { "value": "speed_layer_0" }, - "speed_travel_layer_0": { "value": 60 }, - "speed_support_roof": { "value": 39.0 }, - "speed_support_bottom": { "value": 39.0 }, - "speed_roofing": { "value": 30.0 }, - "support_angle": { "default_value": 45 }, - "support_pattern": { "value": "'zigzag'" }, - "support_use_towers": { "value": true }, - "support_fan_enable": { "value": true }, - "support_xy_distance": { "value": "wall_line_width_0 * 2" }, - "support_xy_distance_overhang": { "value": "wall_line_width_0" }, - "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, - "support_supported_skin_fan_speed": { "value": 100 }, - "switch_extruder_retraction_amount": { "value": 0 }, - "travel_avoid_other_parts": { "value": true }, - "travel_retract_before_outer_wall": { "value": true }, - "top_bottom_thickness": {"value": "line_width * 2" }, - "travel_avoid_supports": { "value": true }, - "wall_thickness": {"value": "line_width * 2" }, - "wall_0_wipe_dist": { "value": 0.0 }, - "meshfix_maximum_resolution": { "value": "0.25" }, - "optimize_wall_printing_order": { "value": "True" }, - "ooze_shield_enabled":{ "default_value":false }, - "ooze_shield_dist":{ "default_value":3.0 }, - "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, - "retraction_combing_max_distance": { "value": 30 }, - "retraction_speed": { "default_value": 28 }, - "z_seam_type": { "value": "'back'" }, - "z_seam_corner": { "value": "'z_seam_corner_weighted'" } - } -} +{ + "version": 2, + "name": "Weedo X40", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "X40-Community.org", + "manufacturer": "Weedo", + "file_formats": "text/x-gcode", + "platform": "weedo_x40.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", + "generic_pc_175", + "generic_nylon_175", + "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", + "goofoo_wood_pla", + "emotiontech_abs", + "emotiontech_absx", + "emotiontech_acetate", + "emotiontech_asax", + "emotiontech_bvoh", + "emotiontech_copa", + "emotiontech_hips", + "emotiontech_nylon_1030", + "emotiontech_nylon_1030cf", + "emotiontech_nylon_1070", + "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", + "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", + "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", + "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", + "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", + "zyyx_pro_flex", + "zyyx_pro_pla" + ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { + "0": "weedo_x40_extruder_left_0", + "1": "weedo_x40_extruder_right_0" + }, + "platform_offset": [ + 0, + 193, + 35 + ], + "preferred_material": "generic_pla_175", + "preferred_quality_type": "normal", + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Type" + }, + "overrides": + { + "acceleration_enabled": { "value": false }, + "acceleration_print": { "value": 1000 }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, + "acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, + "acceleration_support_interface": { "value": "acceleration_topbottom" }, + "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 500 / 4000)" }, + "acceleration_travel": { "value": 2000 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel / 2" }, + "acceleration_wall": { "value": "math.ceil(acceleration_print * 1000 / 4000)" }, + "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 500 / 1000)" }, + "adhesion_type": { "value": "'brim'" }, + "bridge_settings_enabled": { "default_value": true }, + "brim_width": { "value": "8" }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_fan_speed": { "value": "50" }, + "cool_fan_speed_max": { "value": "100" }, + "cool_min_speed": { "value": "7" }, + "fill_outline_gaps": { "value": false }, + "gantry_height": { "value": "12" }, + "infill_before_walls": { "value": false }, + "infill_line_width": { "value": "round(line_width * 0.42 / 0.35, 2)" }, + "infill_overlap": { "value": 30.0 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_wipe_dist": { "value": 0.0 }, + "jerk_enabled": { "value": false }, + "jerk_print": { "value": 11 }, + "jerk_travel": { "value": 18 }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "jerk_wall": { "value": "jerk_print - 2" }, + "layer_height_0": { "value": "round(layer_height * 1.5, 2)" }, + "machine_acceleration": { "value": 500 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "(*********end X40 End.gcode*******)\nG28 X Y F3000\nG91 ; Relative positioning\nG1 E-6 ; Reduce filament pressure\nG90 ; Absolute positioning\nG0 Y300 F3000 ; Move headbed\nM104 S0 T0 ; Cool down left extruder\nM104 S0 T1 ; Cool down right extruder\nM140 S0 ; Cool down heatbed\nM107 P0 ; Turn off left fan\nM107 P1 ; Turn off right fan\nM82; Extruder in absolute mode\nM73 P100 ; Set print progress to 100%" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-42.5, 18], + [-42.5, -50], + [24.5, 18], + [24.5, -50.0] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 400 }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_feedrate_e": { "value": 50 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_min_cool_heat_time_window": { "default_value": 360 }, + "machine_name": { "default_value": "Weedo X40" }, + "machine_nozzle_cool_down_speed": { "default_value": 0.75 }, + "machine_nozzle_heat_up_speed": { "default_value": 1.6 }, + "machine_start_gcode": { "default_value": "; x40-community.org configuration Rev. 08\n;(**** start.gcode for WEEDO X40 DUAL****)\nT{initial_extruder_nr} S ; Selected start extruder\nM140 S{material_bed_temperature_layer_0} ; Preheat bed\nM109 S{material_print_temperature_layer_0}; Preheat nozzle\nM73 P0 ; Set current print progress percentage\nG21 ; Millimeter Units\nG90 ; Absolute positioning\nM82 ; Extruder in absolute mode\nT0 S ; Select left extruder\nM301 H1 P15.53 I1.32 D45.75 ; PID left extruder with Weedo X40 coolingsystem\n;M301 H1 P13.32 I0.98 D45.13 ; PID left extruder with X40 Community coolingsystem\nM92 E94.90 ; Calibrate left extruder\nT1 S ; Select right extruder\nM301 H1 P15.44 I1.29 D46.11 ; PID right extruder with Weedo X40 coolingsystem\n;M301 H1 P13.32 I0.98 D45.13 ; PID right extruder with X40 Community coolingsystem\nM92 E94.90 ; Calibrate right extruder\nT0 S ; Select left extruder\nG28 ; Auto home\nG29 ; Bed Leveling\nG1 X-47 F3000 ; Move left nozzle to parking position\nT1 S ; select right extruder\nG1 X351 F3000 ; Move right nozzle to parking position\nM107 P0 ; Turn off left fan\nM107 P1 ; Turn off right fan\nT{initial_extruder_nr} S ; Set start extruder\nM190 S{material_bed_temperature_layer_0} ; Waiting for bed temperature\nG1 E50 F100 ; Extrude in parking position\nM77 ; Stop heat up timer\nM75 ; Start print timer\n" }, + "machine_width": { "default_value": 300 }, + "material_diameter": { "default_value": 1.75 }, + "material_print_temp_prepend": { "default_value": false }, + "material_standby_temperature": { "value": "100" }, + "meshfix_maximum_resolution": { "value": "0.25" }, + "ooze_shield_dist": { "default_value": 3.0 }, + "ooze_shield_enabled": { "default_value": false }, + "optimize_wall_printing_order": { "value": "True" }, + "raft_airgap": { "default_value": 0.22 }, + "raft_base_speed": { "value": 20 }, + "raft_interface_speed": { "value": 33 }, + "raft_margin": { "default_value": 8 }, + "retraction_amount": { "default_value": 4.5 }, + "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, + "retraction_combing_max_distance": { "value": 30 }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 8 }, + "retraction_hop": { "value": 0.5 }, + "retraction_min_travel": { "value": 1.5 }, + "retraction_speed": { "default_value": 28 }, + "skin_overlap": { "value": 10.0 }, + "speed_layer_0": { "value": "round(speed_print / 2.5, 2)" }, + "speed_print": { "value": 50.0 }, + "speed_roofing": { "value": 30.0 }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_bottom": { "value": 39.0 }, + "speed_support_infill": { "value": 58.0 }, + "speed_support_interface": { "value": "speed_print" }, + "speed_support_roof": { "value": 39.0 }, + "speed_travel": + { + "maximum_value": "150", + "value": "150" + }, + "speed_travel_layer_0": { "value": 60 }, + "speed_wall_x": { "value": "speed_wall" }, + "support_angle": { "default_value": 45 }, + "support_fan_enable": { "value": true }, + "support_pattern": { "value": "'zigzag'" }, + "support_supported_skin_fan_speed": { "value": 100 }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" }, + "switch_extruder_retraction_amount": { "value": 0 }, + "top_bottom_thickness": { "value": "line_width * 2" }, + "travel_avoid_other_parts": { "value": true }, + "travel_avoid_supports": { "value": true }, + "travel_retract_before_outer_wall": { "value": true }, + "wall_0_wipe_dist": { "value": 0.0 }, + "wall_thickness": { "value": "line_width * 2" }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, + "z_seam_type": { "value": "'back'" } + } +} \ No newline at end of file diff --git a/resources/definitions/winbo_dragonl4.def.json b/resources/definitions/winbo_dragonl4.def.json index 746b9ce2fe..ea61d190cd 100644 --- a/resources/definitions/winbo_dragonl4.def.json +++ b/resources/definitions/winbo_dragonl4.def.json @@ -2,52 +2,25 @@ "version": 2, "name": "Winbo Dragon(L)4", "inherits": "fdmprinter", - "metadata": { + "metadata": + { + "visible": true, "author": "Winbo", "manufacturer": "Winbo Smart Tech Co., Ltd.", - "visible": true, "file_formats": "text/x-gcode", - "supports_usb_connection": false, - "machine_extruder_trains": - { - "0": "winbo_dragonl4_extruder" - } + "machine_extruder_trains": { "0": "winbo_dragonl4_extruder" }, + "supports_usb_connection": false }, - - "overrides": { - "machine_name": { "default_value": "Winbo Dragon(L)4" }, - "machine_width": { "default_value": 615 }, - "machine_depth": { "default_value": 463 }, - "machine_height": { "default_value": 615 }, - "machine_heated_bed": { "default_value": true }, - "material_bed_temp_wait": { "default_value": false }, - "machine_nozzle_heat_up_speed": { "default_value": 1.4 }, - "machine_nozzle_cool_down_speed": { "default_value": 0.8 }, - "machine_head_with_fans_polygon": - { - "default_value": - [ - [ -50, 90 ],[ -50, -60 ],[ 50, -60 ],[ 50, 90 ] - ] - }, - "machine_gcode_flavor": { "default_value": "Marlin" }, - "machine_max_feedrate_x": { "default_value": 300 }, - "machine_max_feedrate_y": { "default_value": 300 }, - "machine_max_feedrate_z": { "default_value": 40 }, - "machine_acceleration": { "default_value": 2000 }, - "gantry_height": { "value": "80" }, - "machine_extruder_count": { "default_value": 1 }, - "machine_start_gcode": { "default_value": "G21\nG90\nM82\nM107\nM9998\nG28 X0 Y0\nG28 Z0\nG1 F6000 Z0.3\nG92 E0\nG1 F800 X585 E12\nG92 E0" }, - "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E2\nG1 E0 F200\nG28 X0 Y0\nM84 X Y E" }, - "prime_blob_enable": { "enabled": true }, - "acceleration_enabled": { "value": "True" }, + "overrides": + { + "acceleration_enabled": { "value": true }, "acceleration_layer_0": { "value": "acceleration_topbottom" }, "acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, "acceleration_print": { "value": "1800" }, - "acceleration_travel": { "value": "2000" }, "acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, "acceleration_support_interface": { "value": "acceleration_topbottom" }, "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 500 / 4000)" }, + "acceleration_travel": { "value": "2000" }, "acceleration_wall": { "value": "math.ceil(acceleration_print * 1000 / 4000)" }, "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 500 / 1000)" }, "brim_width": { "value": "4" }, @@ -55,10 +28,14 @@ "cool_fan_speed": { "value": "100" }, "cool_fan_speed_max": { "value": "100" }, "cool_min_speed": { "value": "5" }, + "default_material_print_temperature": { "value": "200" }, "fill_outline_gaps": { "value": "True" }, + "gantry_height": { "value": "80" }, + "gradual_infill_step_height": { "value": "1" }, + "gradual_support_infill_step_height": { "value": "0.2" }, + "gradual_support_infill_steps": { "value": "1" }, "infill_overlap": { "value": "0" }, - "min_infill_area": { "value": "1" }, - "min_skin_width_for_expansion": { "value": "2" }, + "initial_layer_line_width_factor": { "value": "120" }, "jerk_enabled": { "value": "True" }, "jerk_layer_0": { "value": "jerk_topbottom" }, "jerk_prime_tower": { "value": "math.ceil(jerk_print * 15 / 25)" }, @@ -66,20 +43,42 @@ "jerk_support": { "value": "math.ceil(jerk_print * 15 / 25)" }, "jerk_support_interface": { "value": "jerk_topbottom" }, "jerk_topbottom": { "value": "math.ceil(jerk_print * 5 / 25)" }, + "jerk_travel": { "value": "25" }, "jerk_wall": { "value": "math.ceil(jerk_print * 10 / 25)" }, "jerk_wall_0": { "value": "math.ceil(jerk_wall * 5 / 10)" }, - "wall_thickness": { "value": "2.4"}, - "line_width": { "value": "extruderValue(-1,'machine_nozzle_size')" }, - "wall_0_inset": { "value": "0.05" }, - "wall_line_width_x": { "value": "line_width" }, - "wall_line_width_0": { "value": "line_width-0.05" }, - "support_line_width": { "value": "max(min(line_width,0.4),line_width/2)" }, - "support_interface_line_width": { "value": "support_line_width" }, + "line_width": { "value": "extruderValue(-1, 'machine_nozzle_size')" }, + "machine_acceleration": { "default_value": 2000 }, + "machine_depth": { "default_value": 463 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E2\nG1 E0 F200\nG28 X0 Y0\nM84 X Y E" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-50, 90], + [-50, -60], + [50, -60], + [50, 90] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 615 }, + "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" }, - "default_material_print_temperature": { "value": "200" }, - "material_print_temperature_layer_0": { "value": "material_print_temperature - 5" }, + "machine_name": { "default_value": "Winbo Dragon(L)4" }, + "machine_nozzle_cool_down_speed": { "default_value": 0.8 }, + "machine_nozzle_heat_up_speed": { "default_value": 1.4 }, + "machine_start_gcode": { "default_value": "G21\nG90\nM82\nM107\nM9998\nG28 X0 Y0\nG28 Z0\nG1 F6000 Z0.3\nG92 E0\nG1 F800 X585 E12\nG92 E0" }, + "machine_width": { "default_value": 615 }, + "material_bed_temp_wait": { "default_value": false }, "material_bed_temperature": { "maximum_value": "100" }, "material_bed_temperature_layer_0": { "maximum_value": "100" }, + "material_print_temperature_layer_0": { "value": "material_print_temperature - 5" }, + "min_infill_area": { "value": "1" }, + "min_skin_width_for_expansion": { "value": "2" }, + "prime_blob_enable": { "enabled": true }, "raft_airgap": { "value": "0" }, "raft_base_thickness": { "value": "0.3" }, "raft_interface_line_spacing": { "value": "0.5" }, @@ -97,37 +96,37 @@ "retraction_min_travel": { "value": "5" }, "retraction_prime_speed": { "value": "25" }, "skin_overlap": { "value": "10" }, + "speed_infill": { "value": "speed_print * line_width / infill_line_width" }, "speed_layer_0": { "value": "25" }, "speed_print": { "value": "70" }, - "speed_support": { "value": "speed_print*line_width/support_line_width" }, - "speed_support_interface": { "value": "speed_print*line_width/support_interface_line_width" }, - "speed_topbottom": { "value": "speed_print*line_width/skin_line_width" }, + "speed_support": { "value": "speed_print * line_width / support_line_width" }, + "speed_support_interface": { "value": "speed_print * line_width / support_interface_line_width" }, + "speed_topbottom": { "value": "speed_print * line_width / skin_line_width" }, "speed_travel": { "value": "100" }, - "speed_infill": { "value": "speed_print*line_width/infill_line_width" }, - "speed_wall": { "value": "speed_print*wall_line_width_0/line_width" }, + "speed_wall": { "value": "speed_print * wall_line_width_0 / line_width" }, "speed_wall_0": { "value": "math.ceil(speed_wall * 0.6)" }, "speed_wall_x": { "value": "speed_wall" }, "support_angle": { "value": "50" }, - "support_xy_distance": { "value": "1" }, - "support_z_distance": { "value": "max((0.2 if(0.2%layer_height==0) else layer_height*int((0.2+layer_height)/layer_height)),layer_height)" }, - "support_bottom_distance": { "value": "max(support_z_distance,layer_height*int(0.45/layer_height))" }, - "top_bottom_thickness": { "value": "max(1.2,layer_height*6)" }, - "travel_avoid_distance": { "value": "3" }, - "gradual_support_infill_step_height": { "value": "0.2" }, - "gradual_support_infill_steps": { "value": "1" }, - "infill_sparse_density": { "value": "20" }, - "gradual_infill_step_height": { "value": "1" }, - "initial_layer_line_width_factor": { "value": "120" }, - "jerk_travel": { "value": "25" }, + "support_bottom_distance": { "value": "max(support_z_distance, layer_height * int(0.45 / layer_height))" }, "support_bottom_enable": { "value": "True" }, - "support_bottom_height": { "value": "max((0.15 if(0.15%layer_height==0) else layer_height*int((0.15+layer_height)/layer_height)),layer_height)" }, + "support_bottom_height": { "value": "max((0.15 if(0.15 % layer_height == 0) else layer_height * int((0.15 + layer_height) / layer_height)), layer_height)" }, "support_bottom_pattern": { "value": "'zigzag'" }, "support_connect_zigzags": { "value": "False" }, "support_infill_rate": { "value": "8 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 8" }, "support_interface_density": { "value": "80" }, - "support_interface_enable": { "value": "True" }, + "support_interface_enable": { "value": true }, "support_interface_height": { "value": "0.5" }, + "support_interface_line_width": { "value": "support_line_width" }, + "support_line_width": { "value": "max(min(line_width, 0.4),line_width / 2)" }, "support_roof_pattern": { "value": "'concentric'" }, + "support_xy_distance": { "value": "1" }, + "support_z_distance": { "value": "max((0.2 if(0.2 % layer_height == 0) else layer_height * int((0.2 + layer_height) / layer_height)), layer_height)" }, + "top_bottom_thickness": { "value": "max(1.2, layer_height * 6)" }, + "travel_avoid_distance": { "value": "3" }, + "wall_0_inset": { "value": "0.05" }, + "wall_line_width_0": { "value": "line_width-0.05" }, + "wall_line_width_x": { "value": "line_width" }, + "wall_thickness": { "value": "2.4" }, "z_seam_type": { "value": "'shortest'" } } -} +} \ No newline at end of file diff --git a/resources/definitions/winbo_mini2.def.json b/resources/definitions/winbo_mini2.def.json index 903142010b..fbb1de3b0e 100644 --- a/resources/definitions/winbo_mini2.def.json +++ b/resources/definitions/winbo_mini2.def.json @@ -2,52 +2,25 @@ "version": 2, "name": "Winbo Mini2", "inherits": "fdmprinter", - "metadata": { + "metadata": + { + "visible": true, "author": "Winbo", "manufacturer": "Winbo Smart Tech Co., Ltd.", - "visible": true, "file_formats": "text/x-gcode", - "supports_usb_connection": true, - "machine_extruder_trains": - { - "0": "winbo_mini2_extruder" - } + "machine_extruder_trains": { "0": "winbo_mini2_extruder" }, + "supports_usb_connection": true }, - - "overrides": { - "machine_name": { "default_value": "Winbo Mini2" }, - "machine_width": { "default_value": 205 }, - "machine_depth": { "default_value": 155 }, - "machine_height": { "default_value": 205 }, - "machine_heated_bed": { "default_value": false }, - "material_bed_temp_wait": { "default_value": false }, - "machine_nozzle_heat_up_speed": { "default_value": 1.4 }, - "machine_nozzle_cool_down_speed": { "default_value": 0.8 }, - "machine_head_with_fans_polygon": - { - "default_value": - [ - [ -52, 30 ],[ -52, -40 ],[ 13, -40 ],[ 13, 30 ] - ] - }, - "machine_gcode_flavor": { "default_value": "Marlin" }, - "machine_max_feedrate_x": { "default_value": 250 }, - "machine_max_feedrate_y": { "default_value": 200 }, - "machine_max_feedrate_z": { "default_value": 40 }, - "machine_acceleration": { "default_value": 3000 }, - "gantry_height": { "value": "75" }, - "machine_extruder_count": { "default_value": 1 }, - "machine_start_gcode": { "default_value": "G21\nG90\nM82\nM107\nG28 X0 Y0\nG28 Z0\nG1 F1000 Z3\nG1 F4000 X0\nG1 F4000 Y0\nG1 F1000 Z0.2\nG92 E0\nG1 F1000 X30 E8\nG92 E0\nM117 Printing." }, - "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E2\nG1 E0 F200\nG28 X0 Y0\nM84 X Y E" }, - "prime_blob_enable": { "enabled": true }, - "acceleration_enabled": { "value": "True" }, + "overrides": + { + "acceleration_enabled": { "value": true }, "acceleration_layer_0": { "value": "acceleration_topbottom" }, "acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, "acceleration_print": { "value": "2000" }, - "acceleration_travel": { "value": "2500" }, "acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, "acceleration_support_interface": { "value": "acceleration_topbottom" }, "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 500 / 4000)" }, + "acceleration_travel": { "value": "2500" }, "acceleration_wall": { "value": "math.ceil(acceleration_print * 1000 / 4000)" }, "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 500 / 1000)" }, "brim_width": { "value": "3" }, @@ -55,10 +28,14 @@ "cool_fan_speed": { "value": "100" }, "cool_fan_speed_max": { "value": "100" }, "cool_min_speed": { "value": "5" }, + "default_material_print_temperature": { "value": "200" }, "fill_outline_gaps": { "value": "True" }, + "gantry_height": { "value": "75" }, + "gradual_infill_step_height": { "value": "1" }, + "gradual_support_infill_step_height": { "value": "0.2" }, + "gradual_support_infill_steps": { "value": "1" }, "infill_overlap": { "value": "0" }, - "min_infill_area": { "value": "1" }, - "min_skin_width_for_expansion": { "value": "2" }, + "initial_layer_line_width_factor": { "value": "120" }, "jerk_enabled": { "value": "True" }, "jerk_layer_0": { "value": "jerk_topbottom" }, "jerk_prime_tower": { "value": "math.ceil(jerk_print * 15 / 25)" }, @@ -66,20 +43,42 @@ "jerk_support": { "value": "math.ceil(jerk_print * 15 / 25)" }, "jerk_support_interface": { "value": "jerk_topbottom" }, "jerk_topbottom": { "value": "math.ceil(jerk_print * 5 / 25)" }, + "jerk_travel": { "value": "25" }, "jerk_wall": { "value": "math.ceil(jerk_print * 10 / 25)" }, "jerk_wall_0": { "value": "math.ceil(jerk_wall * 5 / 10)" }, - "wall_thickness": { "value": "1.2"}, "line_width": { "value": "extruderValue(-1,'machine_nozzle_size')" }, - "wall_0_inset": { "value": "0.05" }, - "wall_line_width_x": { "value": "line_width" }, - "wall_line_width_0": { "value": "line_width-0.05" }, - "support_line_width": { "value": "max(min(line_width,0.4),line_width/2)" }, - "support_interface_line_width": { "value": "support_line_width" }, + "machine_acceleration": { "default_value": 3000 }, + "machine_depth": { "default_value": 155 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E2\nG1 E0 F200\nG28 X0 Y0\nM84 X Y E" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-52, 30], + [-52, -40], + [13, -40], + [13, 30] + ] + }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 205 }, + "machine_max_feedrate_x": { "default_value": 250 }, + "machine_max_feedrate_y": { "default_value": 200 }, + "machine_max_feedrate_z": { "default_value": 40 }, "machine_min_cool_heat_time_window": { "value": "15" }, - "default_material_print_temperature": { "value": "200" }, - "material_print_temperature_layer_0": { "value": "material_print_temperature - 5" }, + "machine_name": { "default_value": "Winbo Mini2" }, + "machine_nozzle_cool_down_speed": { "default_value": 0.8 }, + "machine_nozzle_heat_up_speed": { "default_value": 1.4 }, + "machine_start_gcode": { "default_value": "G21\nG90\nM82\nM107\nG28 X0 Y0\nG28 Z0\nG1 F1000 Z3\nG1 F4000 X0\nG1 F4000 Y0\nG1 F1000 Z0.2\nG92 E0\nG1 F1000 X30 E8\nG92 E0\nM117 Printing." }, + "machine_width": { "default_value": 205 }, + "material_bed_temp_wait": { "default_value": false }, "material_bed_temperature": { "maximum_value": "115" }, "material_bed_temperature_layer_0": { "maximum_value": "115" }, + "material_print_temperature_layer_0": { "value": "material_print_temperature - 5" }, + "min_infill_area": { "value": "1" }, + "min_skin_width_for_expansion": { "value": "2" }, + "prime_blob_enable": { "enabled": true }, "raft_airgap": { "value": "0" }, "raft_base_thickness": { "value": "0.3" }, "raft_interface_line_spacing": { "value": "0.5" }, @@ -97,37 +96,37 @@ "retraction_min_travel": { "value": "5" }, "retraction_prime_speed": { "value": "25" }, "skin_overlap": { "value": "10" }, + "speed_infill": { "value": "speed_print * line_width / infill_line_width" }, "speed_layer_0": { "value": "20" }, "speed_print": { "value": "50" }, - "speed_support": { "value": "speed_print*line_width/support_line_width" }, - "speed_support_interface": { "value": "speed_print*line_width/support_interface_line_width" }, - "speed_topbottom": { "value": "speed_print*line_width/skin_line_width" }, + "speed_support": { "value": "speed_print * line_width / support_line_width" }, + "speed_support_interface": { "value": "speed_print * line_width / support_interface_line_width" }, + "speed_topbottom": { "value": "speed_print * line_width / skin_line_width" }, "speed_travel": { "value": "90" }, - "speed_infill": { "value": "speed_print*line_width/infill_line_width" }, - "speed_wall": { "value": "speed_print*wall_line_width_0/line_width" }, + "speed_wall": { "value": "speed_print * wall_line_width_0 /line_width" }, "speed_wall_0": { "value": "math.ceil(speed_wall * 0.6)" }, "speed_wall_x": { "value": "speed_wall" }, "support_angle": { "value": "50" }, - "support_xy_distance": { "value": "1" }, - "support_z_distance": { "value": "max((0.2 if(0.2%layer_height==0) else layer_height*int((0.2+layer_height)/layer_height)),layer_height)" }, "support_bottom_distance": { "value": "max(support_z_distance,layer_height*int(0.45/layer_height))" }, - "top_bottom_thickness": { "value": "max(1.2,layer_height*6)" }, - "travel_avoid_distance": { "value": "3" }, - "gradual_support_infill_step_height": { "value": "0.2" }, - "gradual_support_infill_steps": { "value": "1" }, - "infill_sparse_density": { "value": "20" }, - "gradual_infill_step_height": { "value": "1" }, - "initial_layer_line_width_factor": { "value": "120" }, - "jerk_travel": { "value": "25" }, "support_bottom_enable": { "value": "True" }, "support_bottom_height": { "value": "max((0.15 if(0.15%layer_height==0) else layer_height*int((0.15+layer_height)/layer_height)),layer_height)" }, "support_bottom_pattern": { "value": "'zigzag'" }, "support_connect_zigzags": { "value": "False" }, "support_infill_rate": { "value": "8 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 8" }, "support_interface_density": { "value": "80" }, - "support_interface_enable": { "value": "True" }, + "support_interface_enable": { "value": true }, "support_interface_height": { "value": "0.5" }, + "support_interface_line_width": { "value": "support_line_width" }, + "support_line_width": { "value": "max(min(line_width,0.4),line_width/2)" }, "support_roof_pattern": { "value": "'concentric'" }, + "support_xy_distance": { "value": "1" }, + "support_z_distance": { "value": "max((0.2 if(0.2 % layer_height==0) else layer_height * int((0.2 + layer_height) / layer_height)), layer_height)" }, + "top_bottom_thickness": { "value": "max(1.2,layer_height*6)" }, + "travel_avoid_distance": { "value": "3" }, + "wall_0_inset": { "value": "0.05" }, + "wall_line_width_0": { "value": "line_width-0.05" }, + "wall_line_width_x": { "value": "line_width" }, + "wall_thickness": { "value": "1.2" }, "z_seam_type": { "value": "'shortest'" } } -} +} \ No newline at end of file diff --git a/resources/definitions/winbo_superhelper105.def.json b/resources/definitions/winbo_superhelper105.def.json index 055967f8ab..a1a8f2c17e 100644 --- a/resources/definitions/winbo_superhelper105.def.json +++ b/resources/definitions/winbo_superhelper105.def.json @@ -2,52 +2,25 @@ "version": 2, "name": "Winbo Super Helper 105", "inherits": "fdmprinter", - "metadata": { + "metadata": + { + "visible": true, "author": "Winbo", "manufacturer": "Winbo Smart Tech Co., Ltd.", - "visible": true, "file_formats": "text/x-gcode", - "supports_usb_connection": true, - "machine_extruder_trains": - { - "0": "winbo_superhelper105_extruder" - } + "machine_extruder_trains": { "0": "winbo_superhelper105_extruder" }, + "supports_usb_connection": true }, - - "overrides": { - "machine_name": { "default_value": "Winbo Super Helper 105" }, - "machine_width": { "default_value": 108 }, - "machine_depth": { "default_value": 108 }, - "machine_height": { "default_value": 158 }, - "machine_heated_bed": { "default_value": false }, - "material_bed_temp_wait": { "default_value": false }, - "machine_nozzle_heat_up_speed": { "default_value": 1.4 }, - "machine_nozzle_cool_down_speed": { "default_value": 0.8 }, - "machine_head_with_fans_polygon": - { - "default_value": - [ - [ -110, 50 ],[ -110, -30 ],[ 110, -30 ],[ 110, 50 ] - ] - }, - "machine_gcode_flavor": { "default_value": "Marlin" }, - "machine_max_feedrate_x": { "default_value": 250 }, - "machine_max_feedrate_y": { "default_value": 200 }, - "machine_max_feedrate_z": { "default_value": 40 }, - "machine_acceleration": { "default_value": 2000 }, - "gantry_height": { "value": "200" }, - "machine_extruder_count": { "default_value": 1 }, - "machine_start_gcode": { "default_value": "G21\nG90\nM82\nM107\nG28 X0 Y0\nG28 Z0\nG1 F6000 Z0.3\nG92 E0\nG1 F1000 X30 E8\nG92 E0\nM117 Printing." }, - "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E2\nG1 E0 F200\nG28 X0 Y0\nM84 X Y E" }, - "prime_blob_enable": { "enabled": true }, + "overrides": + { "acceleration_enabled": { "value": "True" }, "acceleration_layer_0": { "value": "acceleration_topbottom" }, "acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, "acceleration_print": { "value": "2000" }, - "acceleration_travel": { "value": "1500" }, "acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 4000)" }, "acceleration_support_interface": { "value": "acceleration_topbottom" }, "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 500 / 4000)" }, + "acceleration_travel": { "value": "1500" }, "acceleration_wall": { "value": "math.ceil(acceleration_print * 1000 / 4000)" }, "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 500 / 1000)" }, "brim_width": { "value": "3" }, @@ -56,9 +29,12 @@ "cool_fan_speed_max": { "value": "100" }, "cool_min_speed": { "value": "5" }, "fill_outline_gaps": { "value": "True" }, + "gantry_height": { "value": "200" }, + "gradual_infill_step_height": { "value": "1" }, + "gradual_support_infill_step_height": { "value": "0.2" }, + "gradual_support_infill_steps": { "value": "1" }, "infill_overlap": { "value": "0" }, - "min_infill_area": { "value": "1" }, - "min_skin_width_for_expansion": { "value": "2" }, + "initial_layer_line_width_factor": { "value": "120" }, "jerk_enabled": { "value": "True" }, "jerk_layer_0": { "value": "jerk_topbottom" }, "jerk_prime_tower": { "value": "math.ceil(jerk_print * 15 / 25)" }, @@ -66,10 +42,38 @@ "jerk_support": { "value": "math.ceil(jerk_print * 15 / 25)" }, "jerk_support_interface": { "value": "jerk_topbottom" }, "jerk_topbottom": { "value": "math.ceil(jerk_print * 5 / 25)" }, + "jerk_travel": { "value": "25" }, "jerk_wall": { "value": "math.ceil(jerk_print * 10 / 25)" }, "jerk_wall_0": { "value": "math.ceil(jerk_wall * 5 / 10)" }, - "wall_thickness": { "value": "0.8"}, "line_width": { "value": "extruderValue(-1,'machine_nozzle_size')" }, + "machine_acceleration": { "default_value": 2000 }, + "machine_depth": { "default_value": 108 }, + "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG92 E2\nG1 E0 F200\nG28 X0 Y0\nM84 X Y E" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-110, 50], + [-110, -30], + [110, -30], + [110, 50] + ] + }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 158 }, + "machine_max_feedrate_x": { "default_value": 250 }, + "machine_max_feedrate_y": { "default_value": 200 }, + "machine_max_feedrate_z": { "default_value": 40 }, + "machine_name": { "default_value": "Winbo Super Helper 105" }, + "machine_nozzle_cool_down_speed": { "default_value": 0.8 }, + "machine_nozzle_heat_up_speed": { "default_value": 1.4 }, + "machine_start_gcode": { "default_value": "G21\nG90\nM82\nM107\nG28 X0 Y0\nG28 Z0\nG1 F6000 Z0.3\nG92 E0\nG1 F1000 X30 E8\nG92 E0\nM117 Printing." }, + "machine_width": { "default_value": 108 }, + "material_bed_temp_wait": { "default_value": false }, + "min_infill_area": { "value": "1" }, + "min_skin_width_for_expansion": { "value": "2" }, + "prime_blob_enable": { "enabled": true }, "raft_base_thickness": { "value": "0.3" }, "raft_interface_line_spacing": { "value": "0.5" }, "raft_interface_line_width": { "value": "0.5" }, @@ -86,37 +90,32 @@ "retraction_min_travel": { "value": "5" }, "retraction_prime_speed": { "value": "25" }, "skin_overlap": { "value": "10" }, + "speed_infill": { "value": "speed_print * line_width / infill_line_width" }, "speed_layer_0": { "value": "20" }, "speed_print": { "value": "52" }, - "speed_support": { "value": "speed_print*line_width/support_line_width" }, - "speed_support_interface": { "value": "speed_print*line_width/support_interface_line_width" }, - "speed_topbottom": { "value": "speed_print*line_width/skin_line_width" }, + "speed_support": { "value": "speed_print * line_width / support_line_width" }, + "speed_support_interface": { "value": "speed_print * line_width / support_interface_line_width" }, + "speed_topbottom": { "value": "speed_print * line_width / skin_line_width" }, "speed_travel": { "value": "80" }, - "speed_infill": { "value": "speed_print*line_width/infill_line_width" }, - "speed_wall": { "value": "speed_print*wall_line_width_0/line_width" }, + "speed_wall": { "value": "speed_print * wall_line_width_0 / line_width" }, "speed_wall_0": { "value": "math.ceil(speed_wall * 0.6)" }, "speed_wall_x": { "value": "speed_wall" }, "support_angle": { "value": "50" }, - "support_xy_distance": { "value": "1" }, - "support_z_distance": { "value": "max((0.2 if(0.2%layer_height==0) else layer_height*int((0.2+layer_height)/layer_height)),layer_height)" }, - "support_bottom_distance": { "value": "max(support_z_distance,layer_height*int(0.45/layer_height))" }, - "top_bottom_thickness": { "value": "max(1.2,layer_height*6)" }, - "travel_avoid_distance": { "value": "3" }, - "gradual_support_infill_step_height": { "value": "0.2" }, - "gradual_support_infill_steps": { "value": "1" }, - "infill_sparse_density": { "value": "20" }, - "gradual_infill_step_height": { "value": "1" }, - "initial_layer_line_width_factor": { "value": "120" }, - "jerk_travel": { "value": "25" }, - "support_bottom_enable": { "value": "True" }, + "support_bottom_distance": { "value": "max(support_z_distance,layer_height * int(0.45 / layer_height))" }, + "support_bottom_enable": { "value": true }, "support_bottom_height": { "value": "max((0.15 if(0.15%layer_height==0) else layer_height*int((0.15+layer_height)/layer_height)),layer_height)" }, "support_bottom_pattern": { "value": "'zigzag'" }, - "support_connect_zigzags": { "value": "False" }, + "support_connect_zigzags": { "value": false }, "support_infill_rate": { "value": "8 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 8" }, "support_interface_density": { "value": "80" }, - "support_interface_enable": { "value": "True" }, + "support_interface_enable": { "value": true }, "support_interface_height": { "value": "0.5" }, "support_roof_pattern": { "value": "'concentric'" }, + "support_xy_distance": { "value": "1" }, + "support_z_distance": { "value": "max((0.2 if(0.2 % layer_height == 0) else layer_height * int((0.2 + layer_height) / layer_height)), layer_height)" }, + "top_bottom_thickness": { "value": "max(1.2,layer_height*6)" }, + "travel_avoid_distance": { "value": "3" }, + "wall_thickness": { "value": "0.8" }, "z_seam_type": { "value": "'shortest'" } } -} +} \ No newline at end of file diff --git a/resources/definitions/winbo_superhelper155.def.json b/resources/definitions/winbo_superhelper155.def.json index 77b4bc31c5..50b14bd41d 100644 --- a/resources/definitions/winbo_superhelper155.def.json +++ b/resources/definitions/winbo_superhelper155.def.json @@ -2,28 +2,29 @@ "version": 2, "name": "Winbo Super Helper 155", "inherits": "winbo_superhelper105", - "metadata": { + "metadata": + { + "visible": true, "author": "Winbo", "manufacturer": "Winbo Smart Tech Co., Ltd.", - "visible": true, "file_formats": "text/x-gcode", - "supports_usb_connection": true, - "machine_extruder_trains": - { - "0": "winbo_superhelper155_extruder" - } + "machine_extruder_trains": { "0": "winbo_superhelper155_extruder" }, + "supports_usb_connection": true }, - "overrides": { - "machine_name": { "default_value": "Winbo Super Helper 155" }, - "machine_width": { "default_value": 158 }, + "overrides": + { "machine_depth": { "default_value": 158 }, - "machine_height": { "default_value": 208 }, "machine_head_with_fans_polygon": { - "default_value": - [ - [ -160, 50 ],[ -160, -30 ],[ 160, -30 ],[ 160, 50 ] + "default_value": [ + [-160, 50], + [-160, -30], + [160, -30], + [160, 50] ] - } + }, + "machine_height": { "default_value": 208 }, + "machine_name": { "default_value": "Winbo Super Helper 155" }, + "machine_width": { "default_value": 158 } } -} +} \ No newline at end of file diff --git a/resources/definitions/xyzprinting_base.def.json b/resources/definitions/xyzprinting_base.def.json index d9fa789b23..f2fc2b2d90 100644 --- a/resources/definitions/xyzprinting_base.def.json +++ b/resources/definitions/xyzprinting_base.def.json @@ -1,47 +1,43 @@ { - "name": "XYZprinting Base Printer", "version": 2, + "name": "XYZprinting Base Printer", "inherits": "fdmprinter", - "metadata": { + "machine_end_gcode": { "default_value": ";end gcode\nM104 S0 T0\nM140 S0 T0\nG162 Z F1800\nG28 X Y\nM652\nM132 X Y Z A B\nG91\nM18" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_start_gcode": { "default_value": ";Start Gcode\nG90 ;absolute positioning\nM118 X25.00 Y25.00 Z20.00 T0\nM140 S{material_bed_temperature_layer_0} T0 ;Heat bed up to first layer temperature\nM104 S{material_print_temperature_layer_0} T0 ;Set nozzle temperature to first layer temperature\nM107 ;start with the fan off\nG90\nG28\nM132 X Y Z A B\nG1 Z50.000 F420\nG161 X Y F3300\nM7 T0\nM6 T0\nM651\nM907 X100 Y100 Z40 A100 B20 ;Digital potentiometer value\nM108 T0\n;Purge line\nG1 X-110.00 Y-60.00 F4800\nG1 Z{layer_height_0} F420\nG1 X-110.00 Y60.00 E17,4 F1200\n;Purge line end" }, + "metadata": + { "visible": false, "author": "XYZprinting Software", "manufacturer": "XYZprinting", "file_formats": "text/x-gcode", - "first_start_actions": ["MachineSettingsAction"], - "machine_extruder_trains": - { - "0": "xyzprinting_base_extruder_0" - }, + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, "has_materials": true, "has_variants": true, - "has_machine_quality": true, - "preferred_quality_type": "normal", + "machine_extruder_trains": { "0": "xyzprinting_base_extruder_0" }, "preferred_material": "xyzprinting_antibact_pla", + "preferred_quality_type": "normal", "variants_name": "Nozzle Type" }, - "overrides": { - "machine_heated_bed": {"default_value": true}, - "machine_max_feedrate_x": { "value": 500 }, - "machine_max_feedrate_y": { "value": 500 }, - "machine_max_feedrate_z": { "value": 10 }, - "machine_max_feedrate_e": { "value": 50 }, + "overrides": + { + "adhesion_type": { "value": "'none' if support_enable else 'brim'" }, + "brim_width": { "value": 10.0 }, + "cool_fan_speed": { "value": 100 }, + "cool_fan_speed_0": { "value": 0 }, + "machine_acceleration": { "value": 500 }, + "machine_heated_bed": { "default_value": true }, + "machine_max_acceleration_e": { "value": 5000 }, "machine_max_acceleration_x": { "value": 1500 }, "machine_max_acceleration_y": { "value": 1500 }, "machine_max_acceleration_z": { "value": 500 }, - "machine_max_acceleration_e": { "value": 5000 }, - "machine_acceleration": { "value": 500 }, - "machine_max_jerk_xy": { "value": 10 }, - "machine_max_jerk_z": { "value": 0.4 }, + "machine_max_feedrate_e": { "value": 50 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, "machine_max_jerk_e": { "value": 5 }, - "adhesion_type": { "value": "'none' if support_enable else 'brim'" }, - "brim_width": { "value": 10.0 }, - "cool_fan_speed": { "value": 100 }, - "cool_fan_speed_0": { "value": 0 } - }, - - - "machine_gcode_flavor": {"default_value": "RepRap (Marlin/Sprinter)"}, - "machine_start_gcode": {"default_value": ";Start Gcode\nG90 ;absolute positioning\nM118 X25.00 Y25.00 Z20.00 T0\nM140 S{material_bed_temperature_layer_0} T0 ;Heat bed up to first layer temperature\nM104 S{material_print_temperature_layer_0} T0 ;Set nozzle temperature to first layer temperature\nM107 ;start with the fan off\nG90\nG28\nM132 X Y Z A B\nG1 Z50.000 F420\nG161 X Y F3300\nM7 T0\nM6 T0\nM651\nM907 X100 Y100 Z40 A100 B20 ;Digital potentiometer value\nM108 T0\n;Purge line\nG1 X-110.00 Y-60.00 F4800\nG1 Z{layer_height_0} F420\nG1 X-110.00 Y60.00 E17,4 F1200\n;Purge line end"}, - "machine_end_gcode": {"default_value": ";end gcode\nM104 S0 T0\nM140 S0 T0\nG162 Z F1800\nG28 X Y\nM652\nM132 X Y Z A B\nG91\nM18" - } + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.4 } } +} \ No newline at end of file diff --git a/resources/definitions/xyzprinting_da_vinci_1p0_pro.def.json b/resources/definitions/xyzprinting_da_vinci_1p0_pro.def.json index 87700973b7..a61c2e8af5 100644 --- a/resources/definitions/xyzprinting_da_vinci_1p0_pro.def.json +++ b/resources/definitions/xyzprinting_da_vinci_1p0_pro.def.json @@ -1,52 +1,48 @@ { - "version": 2, + "version": 2, "name": "XYZprinting da Vinci 1.0 Pro", "inherits": "xyzprinting_base", - "metadata": { - "author": "XYZprinting Software", - "manufacturer": "XYZprinting", + "metadata": + { "visible": true, + "author": "XYZprinting Software", + "manufacturer": "XYZprinting", "file_formats": "text/x-gcode", - "has_machine_quality": true, + "has_machine_quality": true, "has_materials": true, "has_variants": true, - "supports_usb_connection": true, + "machine_extruder_trains": { "0": "xyzprinting_da_vinci_1p0_pro_extruder_0" }, "preferred_quality_type": "normal", - "quality_definition": "xyzprinting_da_vinci_1p0_pro", - "preferred_variant_name": "Copper 0.4mm Nozzle", - "variants_name": "Nozzle Type", - "machine_extruder_trains": { - "0": "xyzprinting_da_vinci_1p0_pro_extruder_0" - } + "preferred_variant_name": "Copper 0.4mm Nozzle", + "quality_definition": "xyzprinting_da_vinci_1p0_pro", + "supports_usb_connection": true, + "variants_name": "Nozzle Type" }, - - "overrides": { - "machine_name": { "default_value": "XYZprinting da Vinci 1.0 Pro" }, - "machine_shape": { "default_value": "rectangular"}, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 200.00 }, - "machine_depth": { "default_value": 200.00 }, - "machine_height": { "default_value":200.00 }, + "overrides": + { + "brim_line_count": { "value": 5 }, + "cool_fan_enabled": { "default_value": true }, + "cool_fan_speed_0": { "value": 100 }, "machine_center_is_zero": { "default_value": false }, - "machine_head_with_fans_polygon": { + "machine_depth": { "default_value": 200.0 }, + "machine_end_gcode": { "default_value": "M104 S0 ; turn off temperature\nM105 S0; \nG28 X0 ; home X axis\nM84 ; disable motors\n" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ - [ -20, -10 ], - [ -20, 10 ], - [ 10, 10 ], - [ 10, -10 ] + [-20, -10], + [-20, 10], + [10, 10], + [10, -10] ] }, - "material_flow_layer_0": {"value": 120}, - "cool_fan_enabled": { "default_value": true }, - "cool_fan_speed_0": { "value": 100 }, - "brim_line_count": { "value" : 5 }, - "skirt_line_count": { "default_value" : 5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "G28 ; home all axes\nG1 Z15 F5000 ; lift nozzle\nG92 E0\nG1 F200 E3\n" - }, - "machine_end_gcode": { - "default_value": "M104 S0 ; turn off temperature\nM105 S0; \nG28 X0 ; home X axis\nM84 ; disable motors\n" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200.0 }, + "machine_name": { "default_value": "XYZprinting da Vinci 1.0 Pro" }, + "machine_shape": { "default_value": "rectangular" }, + "machine_start_gcode": { "default_value": "G28 ; home all axes\nG1 Z15 F5000 ; lift nozzle\nG92 E0\nG1 F200 E3\n" }, + "machine_width": { "default_value": 200.0 }, + "material_flow_layer_0": { "value": 120 }, + "skirt_line_count": { "default_value": 5 } } -} +} \ No newline at end of file diff --git a/resources/definitions/xyzprinting_da_vinci_jr_1p0a_pro.def.json b/resources/definitions/xyzprinting_da_vinci_jr_1p0a_pro.def.json index ab2e1d9fcf..164c0eb579 100644 --- a/resources/definitions/xyzprinting_da_vinci_jr_1p0a_pro.def.json +++ b/resources/definitions/xyzprinting_da_vinci_jr_1p0a_pro.def.json @@ -1,53 +1,80 @@ { - "version": 2, + "version": 2, "name": "XYZprinting da Vinci Jr. 1.0A Pro", "inherits": "xyzprinting_base", - "metadata": { - "author": "XYZprinting Software", - "manufacturer": "XYZprinting", + "metadata": + { "visible": true, + "author": "XYZprinting Software", + "manufacturer": "XYZprinting", "file_formats": "text/x-gcode", - "has_machine_quality": true, + "exclude_materials": [ + "generic_hips", + "generic_petg", + "generic_bam", + "ultimaker_bam", + "generic_pva", + "ultimaker_pva", + "generic_tough_pla", + "ultimaker_tough_pla_black", + "ultimaker_tough_pla_green", + "ultimaker_tough_pla_red", + "ultimaker_tough_pla_white", + "generic_cffcpe", + "generic_cffpa", + "generic_gffcpe", + "generic_gffpa", + "structur3d_dap100silicone", + "ultimaker_petg_blue", + "ultimaker_petg_grey", + "ultimaker_petg_black", + "ultimaker_petg_green", + "ultimaker_petg_white", + "ultimaker_petg_orange", + "ultimaker_petg_silver", + "ultimaker_petg_yellow", + "ultimaker_petg_transparent", + "ultimaker_petg_red_translucent", + "ultimaker_petg_blue_translucent", + "ultimaker_petg_green_translucent", + "ultimaker_petg_yellow_fluorescent", + "ultimaker_petg_red" + ], + "has_machine_quality": true, "has_materials": true, "has_variants": true, - "exclude_materials": ["generic_hips", "generic_petg", "generic_bam", "ultimaker_bam", "generic_pva", "ultimaker_pva", "generic_tough_pla", "ultimaker_tough_pla_black", "ultimaker_tough_pla_green", "ultimaker_tough_pla_red", "ultimaker_tough_pla_white", "generic_cffcpe", "generic_cffpa", "generic_gffcpe", "generic_gffpa", "structur3d_dap100silicone", "ultimaker_petg_blue", "ultimaker_petg_grey", "ultimaker_petg_black", "ultimaker_petg_green", "ultimaker_petg_white", "ultimaker_petg_orange", "ultimaker_petg_silver", "ultimaker_petg_yellow", "ultimaker_petg_transparent", "ultimaker_petg_red_translucent", "ultimaker_petg_blue_translucent", "ultimaker_petg_green_translucent", "ultimaker_petg_yellow_fluorescent", "ultimaker_petg_red" ], - "supports_usb_connection": true, + "machine_extruder_trains": { "0": "xyzprinting_da_vinci_jr_1p0a_pro_extruder_0" }, "preferred_quality_type": "normal", - "quality_definition": "xyzprinting_da_vinci_jr_1p0a_pro", - "preferred_variant_name": "Copper 0.4mm Nozzle", - "variants_name": "Nozzle Type", - "machine_extruder_trains": { - "0": "xyzprinting_da_vinci_jr_1p0a_pro_extruder_0" - } + "preferred_variant_name": "Copper 0.4mm Nozzle", + "quality_definition": "xyzprinting_da_vinci_jr_1p0a_pro", + "supports_usb_connection": true, + "variants_name": "Nozzle Type" }, - - "overrides": { - "machine_name": { "default_value": "XYZprinting da Vinci Jr. 1.0A Pro" }, - "machine_shape": { "default_value": "rectangular"}, - "machine_heated_bed": { "default_value": false }, - "machine_width": { "default_value": 175.00 }, - "machine_depth": { "default_value": 175.00 }, - "machine_height": { "default_value":175.00 }, + "overrides": + { + "brim_line_count": { "value": 5 }, + "cool_fan_enabled": { "default_value": true }, + "cool_fan_speed_0": { "value": 100 }, "machine_center_is_zero": { "default_value": false }, - "machine_head_with_fans_polygon": { + "machine_depth": { "default_value": 175.0 }, + "machine_end_gcode": { "default_value": "M104 S0 ; turn off temperature\nM105 S0; \nG28 X0 ; home X axis\nM84 ; disable motors\n" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ - [ -20, -10 ], - [ -20, 10 ], - [ 10, 10 ], - [ 10, -10 ] + [-20, -10], + [-20, 10], + [10, 10], + [10, -10] ] }, - "material_flow_layer_0": {"value": 120}, - "cool_fan_enabled": { "default_value": true }, - "cool_fan_speed_0": { "value": 100 }, - "brim_line_count": { "value" : 5 }, - "skirt_line_count": { "default_value" : 5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "G28 ; home all axes\nG1 Z15 F5000 ; lift nozzle\nG92 E0\nG1 F200 E3\n" - }, - "machine_end_gcode": { - "default_value": "M104 S0 ; turn off temperature\nM105 S0; \nG28 X0 ; home X axis\nM84 ; disable motors\n" - } + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 175.0 }, + "machine_name": { "default_value": "XYZprinting da Vinci Jr. 1.0A Pro" }, + "machine_shape": { "default_value": "rectangular" }, + "machine_start_gcode": { "default_value": "G28 ; home all axes\nG1 Z15 F5000 ; lift nozzle\nG92 E0\nG1 F200 E3\n" }, + "machine_width": { "default_value": 175.0 }, + "material_flow_layer_0": { "value": 120 }, + "skirt_line_count": { "default_value": 5 } } -} +} \ No newline at end of file diff --git a/resources/definitions/xyzprinting_da_vinci_jr_pro_xeplus.def.json b/resources/definitions/xyzprinting_da_vinci_jr_pro_xeplus.def.json index eb4c4139d3..5946cf1e99 100644 --- a/resources/definitions/xyzprinting_da_vinci_jr_pro_xeplus.def.json +++ b/resources/definitions/xyzprinting_da_vinci_jr_pro_xeplus.def.json @@ -1,52 +1,48 @@ { - "version": 2, + "version": 2, "name": "XYZprinting da Vinci Jr. Pro Xe+", "inherits": "xyzprinting_base", - "metadata": { - "author": "XYZprinting Software", - "manufacturer": "XYZprinting", + "metadata": + { "visible": true, + "author": "XYZprinting Software", + "manufacturer": "XYZprinting", "file_formats": "text/x-gcode", - "has_machine_quality": true, + "has_machine_quality": true, "has_materials": true, "has_variants": true, - "supports_usb_connection": true, + "machine_extruder_trains": { "0": "xyzprinting_da_vinci_jr_pro_xeplus_extruder_0" }, "preferred_quality_type": "normal", - "quality_definition": "xyzprinting_da_vinci_jr_pro_xeplus", - "preferred_variant_name": "Copper 0.4mm Nozzle", - "variants_name": "Nozzle Type", - "machine_extruder_trains": { - "0": "xyzprinting_da_vinci_jr_pro_xeplus_extruder_0" - } + "preferred_variant_name": "Copper 0.4mm Nozzle", + "quality_definition": "xyzprinting_da_vinci_jr_pro_xeplus", + "supports_usb_connection": true, + "variants_name": "Nozzle Type" }, - - "overrides": { - "machine_name": { "default_value": "XYZprinting da Vinci Jr. Pro Xe+" }, - "machine_shape": { "default_value": "rectangular"}, - "machine_heated_bed": { "default_value": false }, - "machine_width": { "default_value": 175.00 }, - "machine_depth": { "default_value": 175.00 }, - "machine_height": { "default_value":175.00 }, + "overrides": + { + "brim_line_count": { "value": 5 }, + "cool_fan_enabled": { "default_value": true }, + "cool_fan_speed_0": { "value": 100 }, "machine_center_is_zero": { "default_value": false }, - "machine_head_with_fans_polygon": { + "machine_depth": { "default_value": 175.0 }, + "machine_end_gcode": { "default_value": "M104 S0 ; turn off temperature\nM105 S0; \nG28 X0 ; home X axis\nM84 ; disable motors\n" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ - [ -20, -10 ], - [ -20, 10 ], - [ 10, 10 ], - [ 10, -10 ] + [-20, -10], + [-20, 10], + [10, 10], + [10, -10] ] }, - "material_flow_layer_0": {"value": 120}, - "cool_fan_enabled": { "default_value": true }, - "cool_fan_speed_0": { "value": 100 }, - "brim_line_count": { "value" : 5 }, - "skirt_line_count": { "default_value" : 5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "G28 ; home all axes\nG1 Z15 F5000 ; lift nozzle\nG92 E0\nG1 F200 E3\n" - }, - "machine_end_gcode": { - "default_value": "M104 S0 ; turn off temperature\nM105 S0; \nG28 X0 ; home X axis\nM84 ; disable motors\n" - } + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 175.0 }, + "machine_name": { "default_value": "XYZprinting da Vinci Jr. Pro Xe+" }, + "machine_shape": { "default_value": "rectangular" }, + "machine_start_gcode": { "default_value": "G28 ; home all axes\nG1 Z15 F5000 ; lift nozzle\nG92 E0\nG1 F200 E3\n" }, + "machine_width": { "default_value": 175.0 }, + "material_flow_layer_0": { "value": 120 }, + "skirt_line_count": { "default_value": 5 } } -} +} \ No newline at end of file diff --git a/resources/definitions/xyzprinting_da_vinci_jr_pro_xplus.def.json b/resources/definitions/xyzprinting_da_vinci_jr_pro_xplus.def.json index 3216929029..03796edc35 100644 --- a/resources/definitions/xyzprinting_da_vinci_jr_pro_xplus.def.json +++ b/resources/definitions/xyzprinting_da_vinci_jr_pro_xplus.def.json @@ -1,52 +1,48 @@ { - "version": 2, + "version": 2, "name": "XYZprinting da Vinci Jr. Pro X+", "inherits": "xyzprinting_base", - "metadata": { - "author": "XYZprinting Software", - "manufacturer": "XYZprinting", + "metadata": + { "visible": true, + "author": "XYZprinting Software", + "manufacturer": "XYZprinting", "file_formats": "text/x-gcode", - "has_machine_quality": true, + "has_machine_quality": true, "has_materials": true, "has_variants": true, - "supports_usb_connection": true, + "machine_extruder_trains": { "0": "xyzprinting_da_vinci_jr_pro_xplus_extruder_0" }, "preferred_quality_type": "normal", - "quality_definition": "xyzprinting_da_vinci_jr_pro_xplus", - "preferred_variant_name": "Copper 0.4mm Nozzle", - "variants_name": "Nozzle Type", - "machine_extruder_trains": { - "0": "xyzprinting_da_vinci_jr_pro_xplus_extruder_0" - } + "preferred_variant_name": "Copper 0.4mm Nozzle", + "quality_definition": "xyzprinting_da_vinci_jr_pro_xplus", + "supports_usb_connection": true, + "variants_name": "Nozzle Type" }, - - "overrides": { - "machine_name": { "default_value": "XYZprinting da Vinci Jr. Pro X+" }, - "machine_shape": { "default_value": "rectangular"}, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 175.00 }, - "machine_depth": { "default_value": 175.00 }, - "machine_height": { "default_value":175.00 }, + "overrides": + { + "brim_line_count": { "value": 5 }, + "cool_fan_enabled": { "default_value": true }, + "cool_fan_speed_0": { "value": 100 }, "machine_center_is_zero": { "default_value": false }, - "machine_head_with_fans_polygon": { + "machine_depth": { "default_value": 175.0 }, + "machine_end_gcode": { "default_value": "M104 S0 ; turn off temperature\nM105 S0; \nG28 X0 ; home X axis\nM84 ; disable motors\n" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ - [ -20, -10 ], - [ -20, 10 ], - [ 10, 10 ], - [ 10, -10 ] + [-20, -10], + [-20, 10], + [10, 10], + [10, -10] ] }, - "material_flow_layer_0": {"value": 120}, - "cool_fan_enabled": { "default_value": true }, - "cool_fan_speed_0": { "value": 100 }, - "brim_line_count": { "value" : 5 }, - "skirt_line_count": { "default_value" : 5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "G28 ; home all axes\nG1 Z15 F5000 ; lift nozzle\nG92 E0\nG1 F200 E3\n" - }, - "machine_end_gcode": { - "default_value": "M104 S0 ; turn off temperature\nM105 S0; \nG28 X0 ; home X axis\nM84 ; disable motors\n" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 175.0 }, + "machine_name": { "default_value": "XYZprinting da Vinci Jr. Pro X+" }, + "machine_shape": { "default_value": "rectangular" }, + "machine_start_gcode": { "default_value": "G28 ; home all axes\nG1 Z15 F5000 ; lift nozzle\nG92 E0\nG1 F200 E3\n" }, + "machine_width": { "default_value": 175.0 }, + "material_flow_layer_0": { "value": 120 }, + "skirt_line_count": { "default_value": 5 } } -} +} \ No newline at end of file diff --git a/resources/definitions/xyzprinting_da_vinci_jr_w_pro.def.json b/resources/definitions/xyzprinting_da_vinci_jr_w_pro.def.json index 923fec524e..686163c7af 100644 --- a/resources/definitions/xyzprinting_da_vinci_jr_w_pro.def.json +++ b/resources/definitions/xyzprinting_da_vinci_jr_w_pro.def.json @@ -1,52 +1,48 @@ { - "version": 2, + "version": 2, "name": "XYZprinting da Vinci Jr. WiFi Pro", "inherits": "xyzprinting_base", - "metadata": { - "author": "XYZprinting Software", - "manufacturer": "XYZprinting", + "metadata": + { "visible": true, + "author": "XYZprinting Software", + "manufacturer": "XYZprinting", "file_formats": "text/x-gcode", - "has_machine_quality": true, + "has_machine_quality": true, "has_materials": true, "has_variants": true, - "supports_usb_connection": true, + "machine_extruder_trains": { "0": "xyzprinting_da_vinci_jr_w_pro_extruder_0" }, "preferred_quality_type": "normal", - "quality_definition": "xyzprinting_da_vinci_jr_w_pro", - "preferred_variant_name": "Stainless Steel 0.4mm Nozzle", - "variants_name": "Nozzle Type", - "machine_extruder_trains": { - "0": "xyzprinting_da_vinci_jr_w_pro_extruder_0" - } + "preferred_variant_name": "Stainless Steel 0.4mm Nozzle", + "quality_definition": "xyzprinting_da_vinci_jr_w_pro", + "supports_usb_connection": true, + "variants_name": "Nozzle Type" }, - - "overrides": { - "machine_name": { "default_value": "XYZprinting da Vinci Jr. WiFi Pro" }, - "machine_shape": { "default_value": "rectangular"}, - "machine_heated_bed": { "default_value": false }, - "machine_width": { "default_value": 150.00 }, - "machine_depth": { "default_value": 150.00 }, - "machine_height": { "default_value":150.00 }, + "overrides": + { + "brim_line_count": { "value": 5 }, + "cool_fan_enabled": { "default_value": true }, + "cool_fan_speed_0": { "value": 100 }, "machine_center_is_zero": { "default_value": false }, - "machine_head_with_fans_polygon": { + "machine_depth": { "default_value": 150.0 }, + "machine_end_gcode": { "default_value": "M104 S0 ; turn off temperature\nM105 S0; \nG28 X0 ; home X axis\nM84 ; disable motors\n" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ - [ -20, -10 ], - [ -20, 10 ], - [ 10, 10 ], - [ 10, -10 ] + [-20, -10], + [-20, 10], + [10, 10], + [10, -10] ] }, - "material_flow_layer_0": {"value": 120}, - "cool_fan_enabled": { "default_value": true }, - "cool_fan_speed_0": { "value": 100 }, - "brim_line_count": { "value" : 5 }, - "skirt_line_count": { "default_value" : 5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "G28 ; home all axes\nG1 Z15 F5000 ; lift nozzle\nG92 E0\nG1 F200 E3\n" - }, - "machine_end_gcode": { - "default_value": "M104 S0 ; turn off temperature\nM105 S0; \nG28 X0 ; home X axis\nM84 ; disable motors\n" - } + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 150.0 }, + "machine_name": { "default_value": "XYZprinting da Vinci Jr. WiFi Pro" }, + "machine_shape": { "default_value": "rectangular" }, + "machine_start_gcode": { "default_value": "G28 ; home all axes\nG1 Z15 F5000 ; lift nozzle\nG92 E0\nG1 F200 E3\n" }, + "machine_width": { "default_value": 150.0 }, + "material_flow_layer_0": { "value": 120 }, + "skirt_line_count": { "default_value": 5 } } -} +} \ No newline at end of file diff --git a/resources/definitions/xyzprinting_da_vinci_pro_evo.def.json b/resources/definitions/xyzprinting_da_vinci_pro_evo.def.json new file mode 100644 index 0000000000..7bb05e9dc3 --- /dev/null +++ b/resources/definitions/xyzprinting_da_vinci_pro_evo.def.json @@ -0,0 +1,80 @@ +{ + "version": 2, + "name": "XYZprinting da Vinci Pro EVO", + "inherits": "xyzprinting_base", + "metadata": + { + "visible": true, + "author": "XYZprinting Software", + "manufacturer": "XYZprinting", + "file_formats": "text/x-gcode", + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "xyzprinting_da_vinci_pro_evo_extruder_0" }, + "preferred_quality_type": "normal", + "preferred_variant_name": "Hardened Steel 0.4mm Nozzle", + "quality_definition": "xyzprinting_da_vinci_pro_evo", + "supports_usb_connection": true, + "variants_name": "Nozzle Type" + }, + "overrides": + { + "acceleration_enabled": { "value": true }, + "acceleration_layer_0": { "value": "acceleration_topbottom" }, + "acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 3000)" }, + "acceleration_print": { "value": "3000" }, + "acceleration_support": { "value": "math.ceil(acceleration_print * 2000 / 3000)" }, + "acceleration_support_interface": { "value": "acceleration_topbottom" }, + "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 500 / 3000)" }, + "acceleration_travel": { "value": "3000" }, + "acceleration_wall": { "value": "math.ceil(acceleration_print * 1000 / 3000)" }, + "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 500 / 1000)" }, + "brim_line_count": { "value": 5 }, + "brim_width": { "value": "10" }, + "cool_fan_enabled": { "default_value": true }, + "cool_fan_speed_0": { "value": 100 }, + "cool_min_speed": { "value": 5 }, + "infill_before_walls": { "value": false }, + "infill_line_width": { "value": "0.4" }, + "infill_overlap": { "value": "0" }, + "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'triangles'" }, + "infill_wipe_dist": { "value": "0" }, + "jerk_enabled": { "value": true }, + "line_width": { "value": "0.35" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200.0 }, + "machine_end_gcode": { "default_value": "M106 P1 S255 ; turn on fan\nG92 E0\nG28; home X,Y,Z axis\nM84 ; disable motors\n" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-20, -10], + [-20, 10], + [10, 10], + [10, -10] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 200.0 }, + "machine_name": { "default_value": "XYZprinting da Vinci Pro EVO" }, + "machine_shape": { "default_value": "rectangular" }, + "machine_start_gcode": { "default_value": "M191\nG28 ; home all axes\nG1 Z15 F5000 ; lift nozzle\nG92 E0\nG1 F200 E3\n" }, + "machine_width": { "default_value": 220.0 }, + "material_flow_layer_0": { "value": 120 }, + "multiple_mesh_overlap": { "value": "0" }, + "optimize_wall_printing_order": { "value": "True" }, + "retraction_count_max": { "value": "25" }, + "retraction_extrusion_window": { "value": "1" }, + "skin_material_flow": { "value": "97" }, + "skin_monotonic": { "value": true }, + "skin_overlap": { "value": "15" }, + "skirt_line_count": { "default_value": 5 }, + "speed_layer_0": { "value": 10 }, + "speed_wall_0": { "value": "math.ceil(speed_wall * 20 / 30)" }, + "speed_wall_x": { "value": "speed_print" }, + "wall_0_inset": { "value": "0" }, + "wall_line_width_x": { "value": "0.35" }, + "wall_thickness": { "value": "1" } + } +} \ No newline at end of file diff --git a/resources/definitions/xyzprinting_da_vinci_super.def.json b/resources/definitions/xyzprinting_da_vinci_super.def.json index 1fbc4ec9d0..b8c4768028 100644 --- a/resources/definitions/xyzprinting_da_vinci_super.def.json +++ b/resources/definitions/xyzprinting_da_vinci_super.def.json @@ -1,52 +1,48 @@ { - "version": 2, + "version": 2, "name": "XYZprinting da Vinci Super", "inherits": "xyzprinting_base", - "metadata": { - "author": "XYZprinting Software", - "manufacturer": "XYZprinting", + "metadata": + { "visible": true, + "author": "XYZprinting Software", + "manufacturer": "XYZprinting", "file_formats": "text/x-gcode", - "has_machine_quality": true, + "has_machine_quality": true, "has_materials": true, "has_variants": true, - "supports_usb_connection": true, + "machine_extruder_trains": { "0": "xyzprinting_da_vinci_super_extruder_0" }, "preferred_quality_type": "normal", - "quality_definition": "xyzprinting_da_vinci_super", - "preferred_variant_name": "Copper 0.4mm Nozzle", - "variants_name": "Nozzle Type", - "machine_extruder_trains": { - "0": "xyzprinting_da_vinci_super_extruder_0" - } + "preferred_variant_name": "Copper 0.4mm Nozzle", + "quality_definition": "xyzprinting_da_vinci_super", + "supports_usb_connection": true, + "variants_name": "Nozzle Type" }, - - "overrides": { - "machine_name": { "default_value": "XYZprinting da Vinci Super" }, - "machine_shape": { "default_value": "rectangular"}, - "machine_heated_bed": { "default_value": true }, - "machine_width": { "default_value": 300.00 }, - "machine_depth": { "default_value": 300.00 }, - "machine_height": { "default_value":300.00 }, + "overrides": + { + "brim_line_count": { "value": 5 }, + "cool_fan_enabled": { "default_value": true }, + "cool_fan_speed_0": { "value": 100 }, "machine_center_is_zero": { "default_value": false }, - "machine_head_with_fans_polygon": { + "machine_depth": { "default_value": 300.0 }, + "machine_end_gcode": { "default_value": "M104 S0 ; turn off temperature\nM105 S0; \nG28 X0 ; home X axis\nM84 ; disable motors\n" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { "default_value": [ - [ -20, -10 ], - [ -20, 10 ], - [ 10, 10 ], - [ 10, -10 ] + [-20, -10], + [-20, 10], + [10, 10], + [10, -10] ] }, - "material_flow_layer_0": {"value": 120}, - "cool_fan_enabled": { "default_value": true }, - "cool_fan_speed_0": { "value": 100 }, - "brim_line_count": { "value" : 5 }, - "skirt_line_count": { "default_value" : 5 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, - "machine_start_gcode": { - "default_value": "G28 ; home all axes\nG1 Z15 F5000 ; lift nozzle\nG92 E0\nG1 F200 E3\n" - }, - "machine_end_gcode": { - "default_value": "M104 S0 ; turn off temperature\nM105 S0; \nG28 X0 ; home X axis\nM84 ; disable motors\n" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 300.0 }, + "machine_name": { "default_value": "XYZprinting da Vinci Super" }, + "machine_shape": { "default_value": "rectangular" }, + "machine_start_gcode": { "default_value": "G28 ; home all axes\nG1 Z15 F5000 ; lift nozzle\nG92 E0\nG1 F200 E3\n" }, + "machine_width": { "default_value": 300.0 }, + "material_flow_layer_0": { "value": 120 }, + "skirt_line_count": { "default_value": 5 } } -} +} \ No newline at end of file diff --git a/resources/definitions/z-bolt_classic.def.json b/resources/definitions/z-bolt_classic.def.json index 563d9f87ef..5b80597092 100644 --- a/resources/definitions/z-bolt_classic.def.json +++ b/resources/definitions/z-bolt_classic.def.json @@ -2,58 +2,36 @@ "version": 2, "name": "Z-Bolt Classic", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Z-Bolt", "manufacturer": "Z-Bolt Co.", "file_formats": "text/x-gcode", "platform": "z-bolt_classic_platform.3mf", - "machine_extruder_trains": - { - "0": "z-bolt_extruder_0" - } + "machine_extruder_trains": { "0": "z-bolt_extruder_0" } }, - - "overrides": { - "machine_name": { "default_value": "Z-Bolt Classic" }, - "machine_heated_bed": { - "default_value": true - }, - "machine_width": { - "default_value": 200 - }, - "machine_height": { - "default_value": 240 - }, - "machine_depth": { - "default_value": 200 - }, - "machine_center_is_zero": { - "default_value": false - }, + "overrides": + { + "gantry_height": { "value": "55" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "'M104 S0 ;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 Z0 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning'" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { "default_value": [ - [ -75, 35 ], - [ -75, -18 ], - [ 18, 35 ], - [ 18, -18 ] + [-75, 35], + [-75, -18], + [18, 35], + [18, -18] ] }, - "gantry_height": { - "value": "55" - }, - "machine_use_extruder_offset_to_offset_coords": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "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 F9000\n;Put printing message on LCD screen\nM117 Printing..." - }, - "machine_end_gcode": { - "default_value": "'M104 S0 ;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 Z0 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning'" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 240 }, + "machine_name": { "default_value": "Z-Bolt Classic" }, + "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 F9000\n;Put printing message on LCD screen\nM117 Printing..." }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, + "machine_width": { "default_value": 200 } } } \ No newline at end of file diff --git a/resources/definitions/z-bolt_plus.def.json b/resources/definitions/z-bolt_plus.def.json index 3a33fa690b..fdee0f50c4 100644 --- a/resources/definitions/z-bolt_plus.def.json +++ b/resources/definitions/z-bolt_plus.def.json @@ -2,58 +2,36 @@ "version": 2, "name": "Z-Bolt Plus", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Z-Bolt", "manufacturer": "Z-Bolt Co.", "file_formats": "text/x-gcode", "platform": "z-bolt_plus_platform.3mf", - "machine_extruder_trains": - { - "0": "z-bolt_extruder_0" - } + "machine_extruder_trains": { "0": "z-bolt_extruder_0" } }, - - "overrides": { - "machine_name": { "default_value": "Z-Bolt Plus" }, - "machine_heated_bed": { - "default_value": true - }, - "machine_width": { - "default_value": 300 - }, - "machine_height": { - "default_value": 335 - }, - "machine_depth": { - "default_value": 200 - }, - "machine_center_is_zero": { - "default_value": false - }, + "overrides": + { + "gantry_height": { "value": "55" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "'M104 S0 ;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 Z0 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning'" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { "default_value": [ - [ -75, 35 ], - [ -75, -18 ], - [ 18, 35 ], - [ 18, -18 ] + [-75, 35], + [-75, -18], + [18, 35], + [18, -18] ] }, - "gantry_height": { - "value": "55" - }, - "machine_use_extruder_offset_to_offset_coords": { - "default_value": true - }, - "machine_gcode_flavor": { - "default_value": "RepRap (Marlin/Sprinter)" - }, - "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 F9000\n;Put printing message on LCD screen\nM117 Printing..." - }, - "machine_end_gcode": { - "default_value": "'M104 S0 ;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 Z0 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning'" - } + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 335 }, + "machine_name": { "default_value": "Z-Bolt Plus" }, + "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 F9000\n;Put printing message on LCD screen\nM117 Printing..." }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, + "machine_width": { "default_value": 300 } } } \ No newline at end of file diff --git a/resources/definitions/zav_base.def.json b/resources/definitions/zav_base.def.json index 9f73419d46..2c9516aecf 100644 --- a/resources/definitions/zav_base.def.json +++ b/resources/definitions/zav_base.def.json @@ -1,200 +1,157 @@ { - "name": "Zav Base Printer", "version": 2, + "name": "Zav Base Printer", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": false, "author": "Kirill Nikolaev, Kim Evgeniy (C)", "manufacturer": "Zav Co., Ltd.", "file_formats": "text/x-gcode", - "first_start_actions": ["MachineSettingsAction"], - "machine_extruder_trains": { + "exclude_materials": [ + "chromatik_pla", + "dsm_arnitel2045_175", + "dsm_novamid1070_175", + "emotiontech_abs", + "emotiontech_absx", + "emotiontech_asax", + "emotiontech_bvoh", + "emotiontech_hips", + "emotiontech_petg", + "emotiontech_pla", + "emotiontech_pva-m", + "emotiontech_pva-oks", + "emotiontech_pva-s", + "emotiontech_tpu98a", + "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", + "fabtotum_abs", + "fabtotum_nylon", + "fabtotum_pla", + "fabtotum_tpu", + "fiberlogy_hd_pla", + "filo3d_pla", + "filo3d_pla_green", + "filo3d_pla_red", + "imade3d_petg_175", + "imade3d_pla_175", + "innofill_innoflex60_175", + "leapfrog_abs_natural", + "leapfrog_epla_natural", + "leapfrog_pva_natural", + "octofiber_pla", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "redd_abs", + "redd_asa", + "redd_hips", + "redd_nylon", + "redd_petg", + "redd_pla", + "redd_tpe", + "structur3d_dap100silicone", + "tizyx_abs", + "tizyx_flex", + "tizyx_petg", + "tizyx_pla", + "tizyx_pla_bois", + "tizyx_pva", + "verbatim_bvoh_175", + "Vertex_Delta_ABS", + "Vertex_Delta_PET", + "Vertex_Delta_PLA", + "Vertex_Delta_PLA_Glitter", + "Vertex_Delta_PLA_Mat", + "Vertex_Delta_PLA_Satin", + "Vertex_Delta_PLA_Wood", + "Vertex_Delta_TPU", + "zyyx_pro_flex", + "zyyx_pro_pla" + ], + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { "0": "zav_extruder_1", "1": "zav_extruder_2" }, - "has_materials": true, "preferred_material": "bestfilament_abs_skyblue", - "has_variants": true, - "variants_name": "Nozzle Size", - "preferred_variant_name": "0.40mm_ZAV_Nozzle", - "has_machine_quality": true, "preferred_quality_type": "ZAV_layer_020", - "exclude_materials": [ - "chromatik_pla", - "dsm_arnitel2045_175", - "dsm_novamid1070_175", - "emotiontech_abs", - "emotiontech_absx", - "emotiontech_asax", - "emotiontech_bvoh", - "emotiontech_hips", - "emotiontech_petg", - "emotiontech_pla", - "emotiontech_pva-m", - "emotiontech_pva-oks", - "emotiontech_pva-s", - "emotiontech_tpu98a", - "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", - "fabtotum_abs", - "fabtotum_nylon", - "fabtotum_pla", - "fabtotum_tpu", - "fiberlogy_hd_pla", - "filo3d_pla", - "filo3d_pla_green", - "filo3d_pla_red", - "imade3d_petg_175", - "imade3d_pla_175", - "innofill_innoflex60_175", - "leapfrog_abs_natural", - "leapfrog_epla_natural", - "leapfrog_pva_natural", - "octofiber_pla", - "polyflex_pla", - "polymax_pla", - "polyplus_pla", - "polywood_pla", - "redd_abs", - "redd_asa", - "redd_hips", - "redd_nylon", - "redd_petg", - "redd_pla", - "redd_tpe", - "structur3d_dap100silicone", - "tizyx_abs", - "tizyx_flex", - "tizyx_petg", - "tizyx_pla", - "tizyx_pla_bois", - "tizyx_pva", - "ultimaker_abs_black", - "ultimaker_abs_blue", - "ultimaker_abs_green", - "ultimaker_abs_grey", - "ultimaker_abs_orange", - "ultimaker_abs_pearl-gold", - "ultimaker_abs_red", - "ultimaker_abs_silver-metallic", - "ultimaker_abs_white", - "ultimaker_abs_yellow", - "ultimaker_bam", - "ultimaker_cpe_black", - "ultimaker_cpe_blue", - "ultimaker_cpe_dark-grey", - "ultimaker_cpe_green", - "ultimaker_cpe_light-grey", - "ultimaker_cpe_plus_black", - "ultimaker_cpe_plus_transparent", - "ultimaker_cpe_plus_white", - "ultimaker_cpe_red", - "ultimaker_cpe_transparent", - "ultimaker_cpe_white", - "ultimaker_cpe_yellow", - "ultimaker_nylon_black", - "ultimaker_nylon_transparent", - "ultimaker_pc_black", - "ultimaker_pc_transparent", - "ultimaker_pc_white", - "ultimaker_pla_black", - "ultimaker_pla_blue", - "ultimaker_pla_green", - "ultimaker_pla_magenta", - "ultimaker_pla_orange", - "ultimaker_pla_pearl-white", - "ultimaker_pla_red", - "ultimaker_pla_silver-metallic", - "ultimaker_pla_transparent", - "ultimaker_pla_white", - "ultimaker_pla_yellow", - "ultimaker_pp_transparent", - "ultimaker_pva", - "ultimaker_tough_pla_black", - "ultimaker_tough_pla_green", - "ultimaker_tough_pla_red", - "ultimaker_tough_pla_white", - "ultimaker_tpu_black", - "ultimaker_tpu_blue", - "ultimaker_tpu_red", - "ultimaker_tpu_white", - "verbatim_bvoh_175", - "Vertex_Delta_ABS", - "Vertex_Delta_PET", - "Vertex_Delta_PLA", - "Vertex_Delta_PLA_Glitter", - "Vertex_Delta_PLA_Mat", - "Vertex_Delta_PLA_Satin", - "Vertex_Delta_PLA_Wood", - "Vertex_Delta_TPU", - "zyyx_pro_flex", - "zyyx_pro_pla"] + "preferred_variant_name": "0.40mm_ZAV_Nozzle", + "variants_name": "Nozzle Size" }, - "overrides": { - "machine_name": {"default_value": "ZAV Base Printer"}, - "machine_start_gcode": {"default_value": ";---- Starting Script Start ----\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 Z0 ;move Z to min endstops\nG28 X0 Y0 ;move X/Y to min endstops\nG92 E0 ;zero the extruded length\nG1 F5000 ;set speed\nG1 Y40 ;move to start position Y\nM117 Printing...\n;---- Starting Script End ----\n"}, - "machine_end_gcode": {"default_value": ";---- Ending Script Start ----\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-4 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 F5000 ;move Z up a bit and retract filament even more\nG28 Z0 ;move bed down\nG28 X0 Y0 ;move X/Y to min endstops so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning\nM107 ;switch off cooling fan\nM355 S0 P0 ;switch off case light\n;---- Ending Script End ----\n"}, - "machine_heated_bed": {"default_value": true}, - "material_diameter": {"default_value": 1.75}, - "machine_shape": {"default_value": "rectangular"}, - "machine_width": {"default_value": 300}, - "machine_depth": {"default_value": 200}, - "machine_height": {"default_value": 270}, - "machine_extruder_count": {"value": 1}, - "machine_buildplate_type": {"value": "glass"}, - "machine_center_is_zero": {"default_value": false}, - "machine_gcode_flavor": {"default_value": "RepRap (Marlin/Sprinter)"}, - "machine_head_with_fans_polygon": {"default_value": [ - [-26,41], - [-26,-21], - [36,-21], - [36,41] - ] - }, - "gantry_height": {"value": 999999}, - "layer_height_0": {"value": "layer_height"}, - "line_width": {"value": "machine_nozzle_size"}, - "skin_line_width": {"value": "round(line_width * 1.0, 2)"}, - "infill_line_width": {"value": "round(line_width * 1.1, 2)"}, - "skirt_brim_line_width": {"value": "round(line_width * 1.1, 2)"}, - "initial_layer_line_width_factor": {"value": "100"}, - "bottom_thickness": {"value": "layer_height*3 if layer_height > 0.15 else 0.8"}, - "top_bottom_pattern": {"value": "'zigzag'"}, - "top_bottom_pattern_0": {"value": "'zigzag'"}, - "optimize_wall_printing_order": {"value": "True" }, - "z_seam_type": {"value": "'shortest'"}, - "skin_outline_count": {"value": "0"}, - "infill_pattern": {"value": "'gyroid'"}, - "zig_zaggify_infill": {"value": "True"}, - "infill_before_walls": {"value": "False"}, - "infill_enable_travel_optimization": {"value": "True"}, - "expand_skins_expand_distance": {"value": "3"}, - "retraction_min_travel": {"value": "3"}, - "retraction_amount": {"value": "4"}, - "speed_print": {"value": "80"}, - "speed_topbottom": {"value": "50"}, - "speed_layer_0": {"value": "25"}, - "speed_travel_layer_0": {"value": "40"}, - "retraction_combing": {"value": "'all'"}, - "retraction_combing_max_distance": {"value": "10"}, - "travel_avoid_other_parts": {"value": "False"}, - "cool_min_layer_time_fan_speed_max": {"value": "20"}, - "cool_fan_full_at_height": {"value": "layer_height*2"}, - "cool_min_layer_time": {"value": "15"}, - "cool_min_speed": {"value": "15"}, - "cool_lift_head": {"value": "True"}, - "support_enable": {"value": "True"}, - "support_angle": {"value": "65"}, - "support_brim_enable": {"value": "True"}, - "support_infill_rate": {"value": "20"}, - "support_offset": {"value": "2"}, - "adhesion_type": {"value": "'brim'"}, - "brim_width": {"value": "5"}, - "bridge_settings_enabled": {"value": "True"} + "overrides": + { + "adhesion_type": { "value": "'brim'" }, + "bottom_thickness": { "value": "layer_height*3 if layer_height > 0.15 else 0.8" }, + "bridge_settings_enabled": { "value": "True" }, + "brim_width": { "value": "5" }, + "cool_fan_full_at_height": { "value": "layer_height*2" }, + "cool_lift_head": { "value": "True" }, + "cool_min_layer_time": { "value": "15" }, + "cool_min_layer_time_fan_speed_max": { "value": "20" }, + "cool_min_speed": { "value": "15" }, + "expand_skins_expand_distance": { "value": "3" }, + "gantry_height": { "value": 999999 }, + "infill_before_walls": { "value": "False" }, + "infill_enable_travel_optimization": { "value": "True" }, + "infill_line_width": { "value": "round(line_width * 1.1, 2)" }, + "infill_pattern": { "value": "'gyroid'" }, + "initial_layer_line_width_factor": { "value": "100" }, + "layer_height_0": { "value": "layer_height" }, + "line_width": { "value": "machine_nozzle_size" }, + "machine_buildplate_type": { "value": "glass" }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": ";---- Ending Script Start ----\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-4 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 F5000 ;move Z up a bit and retract filament even more\nG28 Z0 ;move bed down\nG28 X0 Y0 ;move X/Y to min endstops so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning\nM107 ;switch off cooling fan\nM355 S0 P0 ;switch off case light\n;---- Ending Script End ----\n" }, + "machine_extruder_count": { "value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-26, 41], + [-26, -21], + [36, -21], + [36, 41] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 270 }, + "machine_name": { "default_value": "ZAV Base Printer" }, + "machine_shape": { "default_value": "rectangular" }, + "machine_start_gcode": { "default_value": ";---- Starting Script Start ----\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 Z0 ;move Z to min endstops\nG28 X0 Y0 ;move X/Y to min endstops\nG92 E0 ;zero the extruded length\nG1 F5000 ;set speed\nG1 Y40 ;move to start position Y\nM117 Printing...\n;---- Starting Script End ----\n" }, + "machine_width": { "default_value": 300 }, + "material_diameter": { "default_value": 1.75 }, + "optimize_wall_printing_order": { "value": "True" }, + "retraction_amount": { "value": "4" }, + "retraction_combing": { "value": "'all'" }, + "retraction_combing_max_distance": { "value": "10" }, + "retraction_min_travel": { "value": "3" }, + "skin_line_width": { "value": "round(line_width * 1.0, 2)" }, + "skin_outline_count": { "value": "0" }, + "skirt_brim_line_width": { "value": "round(line_width * 1.1, 2)" }, + "speed_layer_0": { "value": "25" }, + "speed_print": { "value": "80" }, + "speed_topbottom": { "value": "50" }, + "speed_travel_layer_0": { "value": "40" }, + "support_angle": { "value": "65" }, + "support_brim_enable": { "value": "True" }, + "support_enable": { "value": "True" }, + "support_infill_rate": { "value": "20" }, + "support_offset": { "value": "2" }, + "top_bottom_pattern": { "value": "'zigzag'" }, + "top_bottom_pattern_0": { "value": "'zigzag'" }, + "travel_avoid_other_parts": { "value": "False" }, + "z_seam_type": { "value": "'shortest'" }, + "zig_zaggify_infill": { "value": "True" } } -} +} \ No newline at end of file diff --git a/resources/definitions/zav_big.def.json b/resources/definitions/zav_big.def.json index 56d6f77111..8bcaa24e6e 100644 --- a/resources/definitions/zav_big.def.json +++ b/resources/definitions/zav_big.def.json @@ -1,17 +1,23 @@ { - "name": "Zav Big", - "version": 2, - "inherits": "zav_base", - "metadata": { - "author": "Kirill Nikolaev, Kim Evgeniy (C)", - "visible": true, - "quality_definition": "zav_base", - "platform": "zav_big.stl", - "platform_offset": [0, 0, 0] - }, - "overrides": { - "machine_name": {"default_value": "zav_big"}, - "machine_depth": {"default_value": 300}, - "machine_height": {"default_value": 340} - } -} + "version": 2, + "name": "Zav Big", + "inherits": "zav_base", + "metadata": + { + "visible": true, + "author": "Kirill Nikolaev, Kim Evgeniy (C)", + "platform": "zav_big.stl", + "platform_offset": [ + 0, + 0, + 0 + ], + "quality_definition": "zav_base" + }, + "overrides": + { + "machine_depth": { "default_value": 300 }, + "machine_height": { "default_value": 340 }, + "machine_name": { "default_value": "zav_big" } + } +} \ No newline at end of file diff --git a/resources/definitions/zav_bigplus.def.json b/resources/definitions/zav_bigplus.def.json index a8b24ae323..1631e73ff9 100644 --- a/resources/definitions/zav_bigplus.def.json +++ b/resources/definitions/zav_bigplus.def.json @@ -1,16 +1,18 @@ { - "name": "Zav Big+", - "version": 2, - "inherits": "zav_base", - "metadata": { - "author": "Kirill Nikolaev, Kim Evgeniy (C)", - "visible": true, - "quality_definition": "zav_base", - "platform": "zav_bigplus.stl" - }, - "overrides": { - "machine_name": {"default_value": "zav_bigplus"}, - "machine_depth": {"default_value": 300}, - "machine_height": {"default_value": 500} - } -} + "version": 2, + "name": "Zav Big+", + "inherits": "zav_base", + "metadata": + { + "visible": true, + "author": "Kirill Nikolaev, Kim Evgeniy (C)", + "platform": "zav_bigplus.stl", + "quality_definition": "zav_base" + }, + "overrides": + { + "machine_depth": { "default_value": 300 }, + "machine_height": { "default_value": 500 }, + "machine_name": { "default_value": "zav_bigplus" } + } +} \ No newline at end of file diff --git a/resources/definitions/zav_l.def.json b/resources/definitions/zav_l.def.json index 604cb49ddb..7c0d893705 100644 --- a/resources/definitions/zav_l.def.json +++ b/resources/definitions/zav_l.def.json @@ -1,16 +1,18 @@ { - "name": "Zav L Family Printer", - "version": 2, - "inherits": "zav_base", - "metadata": { - "author": "Kirill Nikolaev, Kim Evgeniy (C)", - "visible": true, - "quality_definition": "zav_base", - "platform": "zav_l.stl" - }, - "overrides": { - "machine_name": {"default_value": "zav_l"}, - "machine_width": {"default_value": 200}, - "machine_height": {"default_value": 200} - } -} + "version": 2, + "name": "Zav L Family Printer", + "inherits": "zav_base", + "metadata": + { + "visible": true, + "author": "Kirill Nikolaev, Kim Evgeniy (C)", + "platform": "zav_l.stl", + "quality_definition": "zav_base" + }, + "overrides": + { + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "zav_l" }, + "machine_width": { "default_value": 200 } + } +} \ No newline at end of file diff --git a/resources/definitions/zav_max.def.json b/resources/definitions/zav_max.def.json index 3e5e987cc7..4324b6083d 100644 --- a/resources/definitions/zav_max.def.json +++ b/resources/definitions/zav_max.def.json @@ -1,16 +1,18 @@ { - "name": "Zav Max", - "version": 2, - "inherits": "zav_base", - "metadata": { - "author": "Kirill Nikolaev, Kim Evgeniy (C)", - "visible": true, - "quality_definition": "zav_base", - "platform": "zav_max.stl" - }, - "overrides": { - "machine_name": {"default_value": "zav_max"}, - "machine_width": {"default_value": 200}, - "machine_height": {"default_value": 240} - } -} + "version": 2, + "name": "Zav Max", + "inherits": "zav_base", + "metadata": + { + "visible": true, + "author": "Kirill Nikolaev, Kim Evgeniy (C)", + "platform": "zav_max.stl", + "quality_definition": "zav_base" + }, + "overrides": + { + "machine_height": { "default_value": 240 }, + "machine_name": { "default_value": "zav_max" }, + "machine_width": { "default_value": 200 } + } +} \ No newline at end of file diff --git a/resources/definitions/zav_maxpro.def.json b/resources/definitions/zav_maxpro.def.json index 97f8806f45..4de9e4dde5 100644 --- a/resources/definitions/zav_maxpro.def.json +++ b/resources/definitions/zav_maxpro.def.json @@ -1,13 +1,15 @@ { - "name": "Zav Pro", - "version": 2, - "inherits": "zav_base", - "metadata": { - "author": "Kirill Nikolaev, Kim Evgeniy (C)", - "visible": true, - "quality_definition": "zav_base" - }, - "overrides": { - "machine_name": {"default_value": "zav_maxpro"} - } -} + "version": 2, + "name": "Zav Pro", + "inherits": "zav_base", + "metadata": + { + "visible": true, + "author": "Kirill Nikolaev, Kim Evgeniy (C)", + "quality_definition": "zav_base" + }, + "overrides": + { + "machine_name": { "default_value": "zav_maxpro" } + } +} \ No newline at end of file diff --git a/resources/definitions/zav_mini.def.json b/resources/definitions/zav_mini.def.json index 8491ddd01c..c438a84d8d 100644 --- a/resources/definitions/zav_mini.def.json +++ b/resources/definitions/zav_mini.def.json @@ -1,17 +1,19 @@ { - "name": "Zav Mini", - "version": 2, - "inherits": "zav_base", - "metadata": { - "author": "Kirill Nikolaev, Kim Evgeniy (C)", - "visible": true, - "quality_definition": "zav_base", - "platform": "zav_mini.stl" - }, - "overrides": { - "machine_name": {"default_value": "zav_mini"}, - "machine_width": {"default_value": 100}, - "machine_depth": {"default_value": 100}, - "machine_height": {"default_value": 110} - } -} + "version": 2, + "name": "Zav Mini", + "inherits": "zav_base", + "metadata": + { + "visible": true, + "author": "Kirill Nikolaev, Kim Evgeniy (C)", + "platform": "zav_mini.stl", + "quality_definition": "zav_base" + }, + "overrides": + { + "machine_depth": { "default_value": 100 }, + "machine_height": { "default_value": 110 }, + "machine_name": { "default_value": "zav_mini" }, + "machine_width": { "default_value": 100 } + } +} \ No newline at end of file diff --git a/resources/definitions/zone3d_printer.def.json b/resources/definitions/zone3d_printer.def.json index 8939043e05..83e94e2133 100644 --- a/resources/definitions/zone3d_printer.def.json +++ b/resources/definitions/zone3d_printer.def.json @@ -1,28 +1,30 @@ { - "name": "Zone3d Printer", "version": 2, + "name": "Zone3d Printer", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "manufacturer": "Zone3D", "file_formats": "text/x-gcode", - "platform_offset": [ 0, 0, 0], - "machine_extruder_trains": - { - "0": "zone3d_printer_extruder_0" - } + "machine_extruder_trains": { "0": "zone3d_printer_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ] }, - - "overrides": { - "prime_tower_size": { "default_value": 10.350983390135314 }, + "overrides": + { "layer_height": { "default_value": 0.14 }, - "machine_extruder_count": { "default_value": 1 }, - "machine_heated_bed": { "default_value": true }, "machine_center_is_zero": { "default_value": false }, - "machine_height": { "default_value": 210 }, - "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_depth": { "default_value": 220 }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 210 }, + "machine_name": { "default_value": "Zone3D Printer" }, "machine_width": { "default_value": 240 }, - "machine_name": { "default_value": "Zone3D Printer" } + "prime_tower_size": { "default_value": 10.350983390135314 } } -} +} \ No newline at end of file diff --git a/resources/definitions/zyyx_agile.def.json b/resources/definitions/zyyx_agile.def.json index 7294a1b10e..4f57045e40 100644 --- a/resources/definitions/zyyx_agile.def.json +++ b/resources/definitions/zyyx_agile.def.json @@ -1,61 +1,63 @@ { - "name": "Zyyx Agile", "version": 2, + "name": "Zyyx Agile", "inherits": "fdmprinter", - "metadata": { + "metadata": + { "visible": true, "author": "Magicfirm Europe", "manufacturer": "Magicfirm Europe", "file_formats": "application/x3g", "platform": "zyyx_platform.3mf", "has_machine_quality": true, - "quality_definition": "zyyx_agile", + "machine_extruder_trains": { "0": "zyyx_agile_extruder_0" }, + "machine_x3g_variant": "z", "preferred_material": "zyyx_pro_pla", "preferred_quality_type": "normal", - "machine_x3g_variant": "z", - "machine_extruder_trains": - { - "0": "zyyx_agile_extruder_0" - } + "quality_definition": "zyyx_agile" }, - - "overrides": { - "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_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_width": { "default_value": 265 }, - "machine_depth": { "default_value": 225 }, - "machine_height": { "default_value": 195 }, - "machine_center_is_zero": { "default_value": true }, - "machine_gcode_flavor": { "default_value": "Makerbot" }, - "machine_head_with_fans_polygon": { "default_value": [ [ -37, 50 ], [ 25, 50 ], [ 25, -40 ], [ -37, -40 ] ] }, + "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_steps_per_mm_e": { "default_value": 96.27520187033366 }, + "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 }, - "speed_travel": { "value": 80 }, - "speed_layer_0": { "value": 15 }, + "support_interface_density": { "default_value": 80 }, "support_interface_enable": { "default_value": true }, "support_interface_height": { "default_value": 0.8 }, - "support_interface_density": { "default_value": 80 }, "support_interface_pattern": { "default_value": "grid" }, - "infill_overlap": { "value": "12 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0" }, - "retract_at_layer_change": { "default_value": true }, - "travel_retract_before_outer_wall": { "default_value": true }, - "material_initial_print_temperature": { "value": "material_print_temperature" }, - "material_final_print_temperature": { "value": "material_print_temperature" }, "travel_avoid_other_parts": { "default_value": false }, - "raft_airgap": { "default_value": 0.15 }, - "raft_margin": { "default_value": 6 } + "travel_retract_before_outer_wall": { "default_value": true } } -} +} \ No newline at end of file diff --git a/resources/extruders/101Hero_extruder_0.def.json b/resources/extruders/101Hero_extruder_0.def.json index 21c892133c..49e7a415d3 100644 --- a/resources/extruders/101Hero_extruder_0.def.json +++ b/resources/extruders/101Hero_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "101Hero", "position": "0" }, - - "overrides": { + "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/3dator_extruder_0.def.json b/resources/extruders/3dator_extruder_0.def.json index 97b03518f7..640d5c3f41 100644 --- a/resources/extruders/3dator_extruder_0.def.json +++ b/resources/extruders/3dator_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "3dator", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.5 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/3di_base_extruder_0.def.json b/resources/extruders/3di_base_extruder_0.def.json index 5fbb347ede..608093e270 100644 --- a/resources/extruders/3di_base_extruder_0.def.json +++ b/resources/extruders/3di_base_extruder_0.def.json @@ -1,15 +1,16 @@ -{ - "version": 2, - "name": "Extruder 1", - "inherits": "fdmextruder", - "metadata": { - "machine": "3di_base", - "position": "0" - }, - - "overrides": { - "extruder_nr": { "default_value": 0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } - } +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "3di_base", + "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/3dtech_semi_professional_extruder_0.def.json b/resources/extruders/3dtech_semi_professional_extruder_0.def.json index 4952d274d9..cb55b93eec 100644 --- a/resources/extruders/3dtech_semi_professional_extruder_0.def.json +++ b/resources/extruders/3dtech_semi_professional_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "3dtech_semi_professional", "position": "0" }, - - "overrides": { + "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/Geeetech_Dual_Extruder_0.def.json b/resources/extruders/Geeetech_Dual_Extruder_0.def.json new file mode 100644 index 0000000000..c9ce9b40c5 --- /dev/null +++ b/resources/extruders/Geeetech_Dual_Extruder_0.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "E0", + "inherits": "fdmextruder", + "metadata": + { + "machine": "Geeetech_Base_Dual_Extruder", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "1" + }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/Geeetech_Dual_Extruder_1.def.json b/resources/extruders/Geeetech_Dual_Extruder_1.def.json new file mode 100644 index 0000000000..39410d2815 --- /dev/null +++ b/resources/extruders/Geeetech_Dual_Extruder_1.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "E1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "Geeetech_Base_Dual_Extruder", + "position": "1" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_value": "1" + }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/Geeetech_Multi_Extruder_0.def.json b/resources/extruders/Geeetech_Multi_Extruder_0.def.json new file mode 100644 index 0000000000..970e7f242b --- /dev/null +++ b/resources/extruders/Geeetech_Multi_Extruder_0.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "E0", + "inherits": "fdmextruder", + "metadata": + { + "machine": "Geeetech_Base_Multi_Extruder", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "2" + }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/Geeetech_Multi_Extruder_1.def.json b/resources/extruders/Geeetech_Multi_Extruder_1.def.json new file mode 100644 index 0000000000..01910b03d9 --- /dev/null +++ b/resources/extruders/Geeetech_Multi_Extruder_1.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "E1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "Geeetech_Base_Multi_Extruder", + "position": "1" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_value": "2" + }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/Geeetech_Multi_Extruder_2.def.json b/resources/extruders/Geeetech_Multi_Extruder_2.def.json new file mode 100644 index 0000000000..a46a852925 --- /dev/null +++ b/resources/extruders/Geeetech_Multi_Extruder_2.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "E2", + "inherits": "fdmextruder", + "metadata": + { + "machine": "Geeetech_Base_Multi_Extruder", + "position": "2" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 2, + "maximum_value": "2" + }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/Geeetech_Single_Extruder.def.json b/resources/extruders/Geeetech_Single_Extruder.def.json new file mode 100644 index 0000000000..784d852f09 --- /dev/null +++ b/resources/extruders/Geeetech_Single_Extruder.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "Geeetech_Base_Single_Extruder", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/I3MetalMotion_extruder_0.def.json b/resources/extruders/I3MetalMotion_extruder_0.def.json index 064e1360b6..abea14d3ed 100644 --- a/resources/extruders/I3MetalMotion_extruder_0.def.json +++ b/resources/extruders/I3MetalMotion_extruder_0.def.json @@ -1,17 +1,17 @@ { - "version": 2, "name": "I3MetalMotion extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "I3MetalMotion", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, - "material_diameter": { "default_value": 1.75 }, "machine_nozzle_offset_x": { "default_value": 0 }, - "machine_nozzle_offset_y": { "default_value": 0 } + "machine_nozzle_offset_y": { "default_value": 0 }, + "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 27becf88ff..89992ad450 100644 --- a/resources/extruders/Mark2_extruder1.def.json +++ b/resources/extruders/Mark2_extruder1.def.json @@ -2,17 +2,19 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "Mark2_for_Ultimaker2", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 } } -} +} \ No newline at end of file diff --git a/resources/extruders/Mark2_extruder2.def.json b/resources/extruders/Mark2_extruder2.def.json index ac654d9c00..967e32d8b8 100644 --- a/resources/extruders/Mark2_extruder2.def.json +++ b/resources/extruders/Mark2_extruder2.def.json @@ -2,17 +2,19 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "Mark2_for_Ultimaker2", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 } } -} +} \ No newline at end of file diff --git a/resources/extruders/SV01_extruder_0.def.json b/resources/extruders/SV01_extruder_0.def.json index 1620eb0b1d..500c7540e4 100644 --- a/resources/extruders/SV01_extruder_0.def.json +++ b/resources/extruders/SV01_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "SV01", "position": "0" }, - - "overrides": { + "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/SV02_extruder_0.def.json b/resources/extruders/SV02_extruder_0.def.json index 073242f2bd..7804cbb135 100644 --- a/resources/extruders/SV02_extruder_0.def.json +++ b/resources/extruders/SV02_extruder_0.def.json @@ -1,26 +1,24 @@ -{ - "version": 2, - "name": "Left Extruder", - "inherits": "fdmextruder", - "metadata": { - "machine": "SV02", - "position": "0" - }, - - "overrides": { - "extruder_nr": { - "default_value": 0, - "maximum_value": "1" - }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "machine_extruder_start_code": { - "default_value": "\nT0 ;switch to extruder 1\nG92 E0 ;reset extruder distance\nG1 F2000 E93 ;load filament\nG92 E0 ;reset extruder distance\nM104 S{material_print_temperature}" - }, - "machine_extruder_end_code": { - "default_value": "\nG92 E0 ;reset extruder distance\nG1 F800 E-5 ;short retract\nG1 F2400 X250 Y220\nG1 F2000 E-93 ;long retract for filament removal\nG92 E0 ;reset extruder distance\nG90" - } - } -} +{ + "version": 2, + "name": "Left Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "SV02", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "1" + }, + "machine_extruder_end_code": { "default_value": "\nG92 E0 ;reset extruder distance\nG1 F800 E-5 ;short retract\nG1 F2400 X250 Y220\nG1 F2000 E-93 ;long retract for filament removal\nG92 E0 ;reset extruder distance\nG90" }, + "machine_extruder_start_code": { "default_value": "\nT0 ;switch to extruder 1\nG92 E0 ;reset extruder distance\nG1 F2000 E93 ;load filament\nG92 E0 ;reset extruder distance\nM104 S{material_print_temperature}" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/SV02_extruder_1.def.json b/resources/extruders/SV02_extruder_1.def.json index 41ede774df..7d0819cb09 100644 --- a/resources/extruders/SV02_extruder_1.def.json +++ b/resources/extruders/SV02_extruder_1.def.json @@ -1,26 +1,24 @@ -{ - "version": 2, - "name": "Right Extruder", - "inherits": "fdmextruder", - "metadata": { - "machine": "SV02", - "position": "1" - }, - - "overrides": { - "extruder_nr": { - "default_value": 1, - "maximum_value": "1" - }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "machine_extruder_start_code": { - "default_value": "\nT1 ;switch to extruder 2\nG92 E0 ;reset extruder distance\nG1 F2000 E93 ;load filament\nG92 E0 ;reset extruder distance\nM104 S{material_print_temperature}" - }, - "machine_extruder_end_code": { - "default_value": "\nG92 E0 ;reset extruder distance\nG1 F800 E-5 ;short retract\nG1 F2400 X250 Y220\nG1 F2000 E-93 ;long retract for filament removal\nG92 E0 ;reset extruder distance\nG90" - } - } -} +{ + "version": 2, + "name": "Right Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "SV02", + "position": "1" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_value": "1" + }, + "machine_extruder_end_code": { "default_value": "\nG92 E0 ;reset extruder distance\nG1 F800 E-5 ;short retract\nG1 F2400 X250 Y220\nG1 F2000 E-93 ;long retract for filament removal\nG92 E0 ;reset extruder distance\nG90" }, + "machine_extruder_start_code": { "default_value": "\nT1 ;switch to extruder 2\nG92 E0 ;reset extruder distance\nG1 F2000 E93 ;load filament\nG92 E0 ;reset extruder distance\nM104 S{material_print_temperature}" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/SV03_extruder_0.def.json b/resources/extruders/SV03_extruder_0.def.json index 9ceb468d64..f1838a1101 100644 --- a/resources/extruders/SV03_extruder_0.def.json +++ b/resources/extruders/SV03_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "SV03", "position": "0" }, - - "overrides": { + "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/abax_pri3_extruder_0.def.json b/resources/extruders/abax_pri3_extruder_0.def.json index 618ca7f596..e3b9f61187 100644 --- a/resources/extruders/abax_pri3_extruder_0.def.json +++ b/resources/extruders/abax_pri3_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "abax_pri3", "position": "0" }, - - "overrides": { + "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/abax_pri5_extruder_0.def.json b/resources/extruders/abax_pri5_extruder_0.def.json index 4a96b5e12e..16af44847d 100644 --- a/resources/extruders/abax_pri5_extruder_0.def.json +++ b/resources/extruders/abax_pri5_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "abax_pri5", "position": "0" }, - - "overrides": { + "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/abax_titan_extruder_0.def.json b/resources/extruders/abax_titan_extruder_0.def.json index 078b9f0470..671d165878 100644 --- a/resources/extruders/abax_titan_extruder_0.def.json +++ b/resources/extruders/abax_titan_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "abax_titan", "position": "0" }, - - "overrides": { + "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/alfawise_u20_extruder_0.def.json b/resources/extruders/alfawise_u20_extruder_0.def.json index 6bb2bde534..4672949e13 100644 --- a/resources/extruders/alfawise_u20_extruder_0.def.json +++ b/resources/extruders/alfawise_u20_extruder_0.def.json @@ -2,12 +2,13 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "alfawise_u20", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 } diff --git a/resources/extruders/alfawise_u30_extruder_0.def.json b/resources/extruders/alfawise_u30_extruder_0.def.json index 4014b5ab62..047db171a6 100644 --- a/resources/extruders/alfawise_u30_extruder_0.def.json +++ b/resources/extruders/alfawise_u30_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "alfawise_u30", "position": "0" }, - - "overrides": { + "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/alya3dp_extruder_0.def.json b/resources/extruders/alya3dp_extruder_0.def.json index 5e05210e2c..929835fbdf 100644 --- a/resources/extruders/alya3dp_extruder_0.def.json +++ b/resources/extruders/alya3dp_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "alya3dp", "position": "0" }, - - "overrides": { + "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/anet3d_extruder_0.def.json b/resources/extruders/anet3d_extruder_0.def.json index 4a53178769..3c1f909d74 100644 --- a/resources/extruders/anet3d_extruder_0.def.json +++ b/resources/extruders/anet3d_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "anet3d", "position": "0" }, - - "overrides": { + "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/ankermake_m5_extruder_0.def.json b/resources/extruders/ankermake_m5_extruder_0.def.json new file mode 100644 index 0000000000..ec65e16d8c --- /dev/null +++ b/resources/extruders/ankermake_m5_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "ankermake_m5", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/anycubic_4max_extruder_0.def.json b/resources/extruders/anycubic_4max_extruder_0.def.json index 9ea55928b8..962fbf35fd 100644 --- a/resources/extruders/anycubic_4max_extruder_0.def.json +++ b/resources/extruders/anycubic_4max_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "anycubic_4max", "position": "0" }, - - "overrides": { + "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/anycubic_chiron_extruder_0.def.json b/resources/extruders/anycubic_chiron_extruder_0.def.json index b4117c755a..73be0bd2e8 100644 --- a/resources/extruders/anycubic_chiron_extruder_0.def.json +++ b/resources/extruders/anycubic_chiron_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "anycubic_chiron", "position": "0" }, - - "overrides": { + "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/anycubic_i3_mega_extruder_0.def.json b/resources/extruders/anycubic_i3_mega_extruder_0.def.json index f15eab4829..330675e174 100644 --- a/resources/extruders/anycubic_i3_mega_extruder_0.def.json +++ b/resources/extruders/anycubic_i3_mega_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "anycubic_i3_mega", "position": "0" }, - - "overrides": { + "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/anycubic_i3_mega_s_extruder_0.def.json b/resources/extruders/anycubic_i3_mega_s_extruder_0.def.json index d59384f3e4..0f389ac185 100644 --- a/resources/extruders/anycubic_i3_mega_s_extruder_0.def.json +++ b/resources/extruders/anycubic_i3_mega_s_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "anycubic_i3_mega_s", "position": "0" }, - - "overrides": { + "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/geeetech_A20_1.def.json b/resources/extruders/anycubic_kobra_extruder_0.def.json similarity index 60% rename from resources/extruders/geeetech_A20_1.def.json rename to resources/extruders/anycubic_kobra_extruder_0.def.json index ce47abb402..1c95af9fc0 100644 --- a/resources/extruders/geeetech_A20_1.def.json +++ b/resources/extruders/anycubic_kobra_extruder_0.def.json @@ -1,16 +1,16 @@ -{ - "version": 2, - "name": "Extruder 1", - "inherits": "fdmextruder", - "metadata": { - "machine": "geeetech_A20", - "position": "0" - }, - - "overrides": { - "extruder_nr": { "default_value": 0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } - - } -} +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "anycubic_kobra", + "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/anycubic_kobra_go_extruder_0.def.json b/resources/extruders/anycubic_kobra_go_extruder_0.def.json new file mode 100644 index 0000000000..848313a24f --- /dev/null +++ b/resources/extruders/anycubic_kobra_go_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "anycubic_kobra_go", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/anycubic_kobra_max_extruder_0.def.json b/resources/extruders/anycubic_kobra_max_extruder_0.def.json new file mode 100644 index 0000000000..31158aa59a --- /dev/null +++ b/resources/extruders/anycubic_kobra_max_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "anycubic_kobra_max", + "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/anycubic_kossel_extruder_0.def.json b/resources/extruders/anycubic_kossel_extruder_0.def.json index 5e1929568c..f8a1bd4808 100644 --- a/resources/extruders/anycubic_kossel_extruder_0.def.json +++ b/resources/extruders/anycubic_kossel_extruder_0.def.json @@ -1,15 +1,16 @@ { - "version": 2, - "name": "Extruder 1", - "inherits": "fdmextruder", - "metadata": { - "machine": "anycubic_kossel", - "position": "0" - }, - - "overrides": { - "extruder_nr": { "default_value": 0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } - } -} + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "anycubic_kossel", + "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/anycubic_mega_zero_extruder_0.def.json b/resources/extruders/anycubic_mega_zero_extruder_0.def.json index 09b6307716..8d18c4956b 100644 --- a/resources/extruders/anycubic_mega_zero_extruder_0.def.json +++ b/resources/extruders/anycubic_mega_zero_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "anycubic_mega_zero", "position": "0" }, - - "overrides": { + "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/anycubic_vyper_extruder_0.def.json b/resources/extruders/anycubic_vyper_extruder_0.def.json index 539f886a75..da716304d1 100644 --- a/resources/extruders/anycubic_vyper_extruder_0.def.json +++ b/resources/extruders/anycubic_vyper_extruder_0.def.json @@ -1,20 +1,16 @@ { - "version": 2, - "name": "Extruder 1", - "inherits": "fdmextruder", - "metadata": { - "machine": "anycubic_vyper", - "position": "0" - }, - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - } - } + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "anycubic_vyper", + "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/arjun_dm_extruder.def.json b/resources/extruders/arjun_dm_extruder.def.json index da3e4da203..138413c3ae 100644 --- a/resources/extruders/arjun_dm_extruder.def.json +++ b/resources/extruders/arjun_dm_extruder.def.json @@ -2,19 +2,21 @@ "version": 2, "name": "Duplication Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "arjun_duplication", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, "machine_nozzle_offset_x": { "default_value": 0 }, - "machine_nozzle_offset_y": { "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/arjun_extruder_0.def.json b/resources/extruders/arjun_extruder_0.def.json index c47c93a851..5ca58e234b 100644 --- a/resources/extruders/arjun_extruder_0.def.json +++ b/resources/extruders/arjun_extruder_0.def.json @@ -2,26 +2,28 @@ "version": 2, "name": "Left Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "arjun300", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": 0 }, - "machine_nozzle_offset_y": { "default_value": 0 }, - "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" }, "machine_extruder_end_pos_abs": { "default_value": true }, "machine_extruder_end_pos_x": { "value": -51 }, "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }, - "machine_extruder_start_code": { "default_value": "T0" } + "machine_extruder_start_code": { "default_value": "T0" }, + "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" }, + "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/arjun_extruder_1.def.json b/resources/extruders/arjun_extruder_1.def.json index b8ee27f33e..af62e14cc8 100644 --- a/resources/extruders/arjun_extruder_1.def.json +++ b/resources/extruders/arjun_extruder_1.def.json @@ -2,26 +2,28 @@ "version": 2, "name": "Right Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "arjun300", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "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" }, "machine_extruder_end_pos_abs": { "default_value": true }, "machine_extruder_end_pos_x": { "value": 257 }, "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }, - "machine_extruder_start_code": { "default_value": "T1" } + "machine_extruder_start_code": { "default_value": "T1" }, + "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" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/arjun_mm_extruder.def.json b/resources/extruders/arjun_mm_extruder.def.json index a8364e95f1..c1d68ce7e1 100644 --- a/resources/extruders/arjun_mm_extruder.def.json +++ b/resources/extruders/arjun_mm_extruder.def.json @@ -2,19 +2,21 @@ "version": 2, "name": "Mirror Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "arjun_mirrored", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, "machine_nozzle_offset_x": { "default_value": 0 }, - "machine_nozzle_offset_y": { "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/arjunpro_dm_extruder.def.json b/resources/extruders/arjunpro_dm_extruder.def.json index 9ea7bbe27b..c33ba7fc9b 100644 --- a/resources/extruders/arjunpro_dm_extruder.def.json +++ b/resources/extruders/arjunpro_dm_extruder.def.json @@ -2,19 +2,21 @@ "version": 2, "name": "Duplication Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "arjunpro_duplication", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, "machine_nozzle_offset_x": { "default_value": 0 }, - "machine_nozzle_offset_y": { "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/arjunpro_extruder_0.def.json b/resources/extruders/arjunpro_extruder_0.def.json index b4ba094804..15b2abb414 100644 --- a/resources/extruders/arjunpro_extruder_0.def.json +++ b/resources/extruders/arjunpro_extruder_0.def.json @@ -2,26 +2,28 @@ "version": 2, "name": "Left Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "arjunpro300", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": 0 }, - "machine_nozzle_offset_y": { "default_value": 0 }, - "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" }, "machine_extruder_end_pos_abs": { "default_value": true }, "machine_extruder_end_pos_x": { "value": -51 }, "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }, - "machine_extruder_start_code": { "default_value": "T0" } + "machine_extruder_start_code": { "default_value": "T0" }, + "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" }, + "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/arjunpro_extruder_1.def.json b/resources/extruders/arjunpro_extruder_1.def.json index b5177807b8..2a6d71c220 100644 --- a/resources/extruders/arjunpro_extruder_1.def.json +++ b/resources/extruders/arjunpro_extruder_1.def.json @@ -2,26 +2,28 @@ "version": 2, "name": "Right Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "arjunpro300", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "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" }, "machine_extruder_end_pos_abs": { "default_value": true }, "machine_extruder_end_pos_x": { "value": 257 }, "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }, - "machine_extruder_start_code": { "default_value": "T1" } + "machine_extruder_start_code": { "default_value": "T1" }, + "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" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/arjunpro_mm_extruder.def.json b/resources/extruders/arjunpro_mm_extruder.def.json index c101ede4ca..3d69ead29b 100644 --- a/resources/extruders/arjunpro_mm_extruder.def.json +++ b/resources/extruders/arjunpro_mm_extruder.def.json @@ -2,19 +2,21 @@ "version": 2, "name": "Mirror Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "arjunpro_mirrored", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, "machine_nozzle_offset_x": { "default_value": 0 }, - "machine_nozzle_offset_y": { "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/artillery_base_extruder_0.def.json b/resources/extruders/artillery_base_extruder_0.def.json index 4cf8af1a09..27885114a5 100644 --- a/resources/extruders/artillery_base_extruder_0.def.json +++ b/resources/extruders/artillery_base_extruder_0.def.json @@ -2,15 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "artillery_base", "position": "0" }, - - "overrides": { + "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/atmat_signal_pro_extruder_left.def.json b/resources/extruders/atmat_signal_pro_extruder_left.def.json index 1e379ec875..67202bc455 100644 --- a/resources/extruders/atmat_signal_pro_extruder_left.def.json +++ b/resources/extruders/atmat_signal_pro_extruder_left.def.json @@ -2,27 +2,29 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "atmat_signal_pro_base", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0 }, - "machine_nozzle_offset_y": { "default_value": 0 }, - "machine_extruder_start_pos_abs": { "default_value": true }, - "machine_extruder_start_pos_x": { "default_value": 270 }, - "machine_extruder_start_pos_y": { "default_value": 270 }, - "machine_extruder_end_pos_abs": { "default_value": true }, - "machine_extruder_end_pos_x": { "default_value": 270 }, - "machine_extruder_end_pos_y": { "default_value": 270 }, - "extruder_prime_pos_x": { "default_value": 0 }, - "extruder_prime_pos_y": { "default_value": 0 }, - "extruder_prime_pos_z": { "default_value": 0 }, - "material_diameter": { "default_value": 1.75 } + "extruder_prime_pos_x": { "default_value": 0 }, + "extruder_prime_pos_y": { "default_value": 0 }, + "extruder_prime_pos_z": { "default_value": 0 }, + "machine_extruder_end_pos_abs": { "default_value": true }, + "machine_extruder_end_pos_x": { "default_value": 270 }, + "machine_extruder_end_pos_y": { "default_value": 270 }, + "machine_extruder_start_pos_abs": { "default_value": true }, + "machine_extruder_start_pos_x": { "default_value": 270 }, + "machine_extruder_start_pos_y": { "default_value": 270 }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/atmat_signal_pro_extruder_right.def.json b/resources/extruders/atmat_signal_pro_extruder_right.def.json index 7eef618a1e..48ac898869 100644 --- a/resources/extruders/atmat_signal_pro_extruder_right.def.json +++ b/resources/extruders/atmat_signal_pro_extruder_right.def.json @@ -2,27 +2,29 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "atmat_signal_pro_base", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0 }, - "machine_nozzle_offset_y": { "default_value": 0 }, - "machine_extruder_start_pos_abs": { "default_value": true }, - "machine_extruder_start_pos_x": { "default_value": 270 }, - "machine_extruder_start_pos_y": { "default_value": 270 }, - "machine_extruder_end_pos_abs": { "default_value": true }, - "machine_extruder_end_pos_x": { "default_value": 270 }, - "machine_extruder_end_pos_y": { "default_value": 270 }, - "extruder_prime_pos_x": { "default_value": 0 }, - "extruder_prime_pos_y": { "default_value": 0 }, - "extruder_prime_pos_z": { "default_value": 0 }, - "material_diameter": { "default_value": 1.75 } + "extruder_prime_pos_x": { "default_value": 0 }, + "extruder_prime_pos_y": { "default_value": 0 }, + "extruder_prime_pos_z": { "default_value": 0 }, + "machine_extruder_end_pos_abs": { "default_value": true }, + "machine_extruder_end_pos_x": { "default_value": 270 }, + "machine_extruder_end_pos_y": { "default_value": 270 }, + "machine_extruder_start_pos_abs": { "default_value": true }, + "machine_extruder_start_pos_x": { "default_value": 270 }, + "machine_extruder_start_pos_y": { "default_value": 270 }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/atom2_extruder_0.def.json b/resources/extruders/atom2_extruder_0.def.json index be9d5782ff..3cc43399f0 100644 --- a/resources/extruders/atom2_extruder_0.def.json +++ b/resources/extruders/atom2_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "atom2", "position": "0" }, - - "overrides": { + "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/atom3_extruder_0.def.json b/resources/extruders/atom3_extruder_0.def.json index 7b8dffd963..ccc7a0bd6b 100644 --- a/resources/extruders/atom3_extruder_0.def.json +++ b/resources/extruders/atom3_extruder_0.def.json @@ -1,15 +1,16 @@ { - "version": 2, - "name": "Extruder 1", - "inherits": "fdmextruder", - "metadata": { - "machine": "atom3", - "position": "0" - }, - - "overrides": { - "extruder_nr": { "default_value": 0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } - } + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "atom3", + "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/atomstack_cambrianmaxe175_extruder_0.def.json b/resources/extruders/atomstack_cambrianmaxe175_extruder_0.def.json index 1132948e90..5431bae165 100644 --- a/resources/extruders/atomstack_cambrianmaxe175_extruder_0.def.json +++ b/resources/extruders/atomstack_cambrianmaxe175_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "atomstack_cambrianmaxe175", "position": "0" }, - - "overrides": { + "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/atomstack_cambrianmaxe285_extruder_0.def.json b/resources/extruders/atomstack_cambrianmaxe285_extruder_0.def.json index db5db9638a..ab05d3f05b 100644 --- a/resources/extruders/atomstack_cambrianmaxe285_extruder_0.def.json +++ b/resources/extruders/atomstack_cambrianmaxe285_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "atomstack_cambrianmaxe285", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.8 }, "material_diameter": { "default_value": 2.85 } } -} +} \ No newline at end of file diff --git a/resources/extruders/atomstack_cambrianproe175_extruder_0.def.json b/resources/extruders/atomstack_cambrianproe175_extruder_0.def.json index d55afde8a2..47e92a489e 100644 --- a/resources/extruders/atomstack_cambrianproe175_extruder_0.def.json +++ b/resources/extruders/atomstack_cambrianproe175_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "atomstack_cambrianproe175", "position": "0" }, - - "overrides": { + "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/atomstack_cambrianproe285_extruder_0.def.json b/resources/extruders/atomstack_cambrianproe285_extruder_0.def.json index db3dcda781..44c41164b6 100644 --- a/resources/extruders/atomstack_cambrianproe285_extruder_0.def.json +++ b/resources/extruders/atomstack_cambrianproe285_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "atomstack_cambrianproe285", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.8 }, "material_diameter": { "default_value": 2.85 } } -} +} \ No newline at end of file diff --git a/resources/extruders/beamup_l_extruder_0.def.json b/resources/extruders/beamup_l_extruder_0.def.json index b3ab9ed045..d7eb6030b5 100644 --- a/resources/extruders/beamup_l_extruder_0.def.json +++ b/resources/extruders/beamup_l_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "beamup_l", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.8 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/beamup_s_extruder_0.def.json b/resources/extruders/beamup_s_extruder_0.def.json index 1df9068198..f50d8aadcd 100644 --- a/resources/extruders/beamup_s_extruder_0.def.json +++ b/resources/extruders/beamup_s_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "beamup_s", "position": "0" }, - - "overrides": { + "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/bfb_extruder_0.def.json b/resources/extruders/bfb_extruder_0.def.json index 6dd995d098..8d3fc4dabe 100644 --- a/resources/extruders/bfb_extruder_0.def.json +++ b/resources/extruders/bfb_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "bfb", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.5 }, "material_diameter": { "default_value": 1.7 } } -} +} \ No newline at end of file diff --git a/resources/extruders/bibo2_dual_extruder_0.def.json b/resources/extruders/bibo2_dual_extruder_0.def.json index 91508ecc6d..5175c07add 100644 --- a/resources/extruders/bibo2_dual_extruder_0.def.json +++ b/resources/extruders/bibo2_dual_extruder_0.def.json @@ -1,45 +1,28 @@ -{ - "version": 2, - "name": "Extruder 1", - "inherits": "fdmextruder", - "metadata": { - "machine": "bibo2_dual", - "position": "0" - }, - "overrides": { - "extruder_nr": { - "default_value": 0, - "maximum_value": "1" - }, - "material_diameter": { - "default_value": 1.75 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "machine_nozzle_offset_x": { - "default_value": 0.0 - }, - "machine_nozzle_offset_y": { - "default_value": 0.0 - }, - "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" - }, - "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" - } - } -} +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "bibo2_dual", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "1" + }, + "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_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" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/bibo2_dual_extruder_1.def.json b/resources/extruders/bibo2_dual_extruder_1.def.json index 129ad27273..23a908dfc4 100644 --- a/resources/extruders/bibo2_dual_extruder_1.def.json +++ b/resources/extruders/bibo2_dual_extruder_1.def.json @@ -1,45 +1,28 @@ -{ - "version": 2, - "name": "Extruder 2", - "inherits": "fdmextruder", - "metadata": { - "machine": "bibo2_dual", - "position": "1" - }, - "overrides": { - "extruder_nr": { - "default_value": 1, - "maximum_value": "1" - }, - "material_diameter": { - "default_value": 1.75 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "machine_nozzle_offset_x": { - "default_value": 0.0 - }, - "machine_nozzle_offset_y": { - "default_value": 0.0 - }, - "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" - }, - "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" - } - } -} +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": + { + "machine": "bibo2_dual", + "position": "1" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_value": "1" + }, + "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_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" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/biqu_base_extruder_0.def.json b/resources/extruders/biqu_base_extruder_0.def.json index 205bc87d8f..6a1f3ee710 100755 --- a/resources/extruders/biqu_base_extruder_0.def.json +++ b/resources/extruders/biqu_base_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "biqu_base", "position": "0" }, - - "overrides": { + "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/blocks_mkii_extruder_0.def.json b/resources/extruders/blocks_mkii_extruder_0.def.json new file mode 100644 index 0000000000..3eb79739ef --- /dev/null +++ b/resources/extruders/blocks_mkii_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "blocks_mkii", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/blocks_one_extruder_0.def.json b/resources/extruders/blocks_one_extruder_0.def.json new file mode 100644 index 0000000000..bcc4875fe1 --- /dev/null +++ b/resources/extruders/blocks_one_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "blocks_one", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/blocks_pros100_extruder_0.def.json b/resources/extruders/blocks_pros100_extruder_0.def.json new file mode 100644 index 0000000000..fa7392fd40 --- /dev/null +++ b/resources/extruders/blocks_pros100_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "blocks_pros100", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.8 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/blocks_pros30_extruder_0.def.json b/resources/extruders/blocks_pros30_extruder_0.def.json new file mode 100644 index 0000000000..414c7ae3cc --- /dev/null +++ b/resources/extruders/blocks_pros30_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "blocks_pros30", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/blocks_r21_extruder_0.def.json b/resources/extruders/blocks_r21_extruder_0.def.json new file mode 100644 index 0000000000..8f63c31b9e --- /dev/null +++ b/resources/extruders/blocks_r21_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "blocks_r21", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/blocks_rd50_extruder_0.def.json b/resources/extruders/blocks_rd50_extruder_0.def.json new file mode 100644 index 0000000000..48cb870acf --- /dev/null +++ b/resources/extruders/blocks_rd50_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "blocks_rd50", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/blocks_rd50_extruder_1.def.json b/resources/extruders/blocks_rd50_extruder_1.def.json new file mode 100644 index 0000000000..0490bc73f7 --- /dev/null +++ b/resources/extruders/blocks_rd50_extruder_1.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": + { + "machine": "blocks_rd50", + "position": "1" + }, + "overrides": + { + "extruder_nr": { "default_value": 1 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/blocks_zero_extruder_0.def.json b/resources/extruders/blocks_zero_extruder_0.def.json new file mode 100644 index 0000000000..e6d1776f80 --- /dev/null +++ b/resources/extruders/blocks_zero_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "blocks_zero", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/blv_mgn_cube_extruder_0.def.json b/resources/extruders/blv_mgn_cube_extruder_0.def.json index 4a5ed97f47..faf1664e52 100644 --- a/resources/extruders/blv_mgn_cube_extruder_0.def.json +++ b/resources/extruders/blv_mgn_cube_extruder_0.def.json @@ -1,20 +1,16 @@ -{ - "name": "Extruder 1", - "version": 2, - "inherits": "fdmextruder", - "metadata": { - "machine": "blv_mgn_cube_base", - "position": "0" - }, - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - } - } +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "blv_mgn_cube_base", + "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/bq_hephestos_2_extruder_0.def.json b/resources/extruders/bq_hephestos_2_extruder_0.def.json index d58d8d755a..2457b451ad 100644 --- a/resources/extruders/bq_hephestos_2_extruder_0.def.json +++ b/resources/extruders/bq_hephestos_2_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "bq_hephestos_2", "position": "0" }, - - "overrides": { + "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/bq_hephestos_extruder_0.def.json b/resources/extruders/bq_hephestos_extruder_0.def.json index dc9b42d66d..74ed7845ea 100644 --- a/resources/extruders/bq_hephestos_extruder_0.def.json +++ b/resources/extruders/bq_hephestos_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "bq_hephestos", "position": "0" }, - - "overrides": { + "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/bq_hephestos_xl_extruder_0.def.json b/resources/extruders/bq_hephestos_xl_extruder_0.def.json index a52032f129..1cd713dfe6 100644 --- a/resources/extruders/bq_hephestos_xl_extruder_0.def.json +++ b/resources/extruders/bq_hephestos_xl_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "bq_hephestos_xl", "position": "0" }, - - "overrides": { + "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/bq_witbox_2_extruder_0.def.json b/resources/extruders/bq_witbox_2_extruder_0.def.json index 62fe62ad0b..484421cc46 100644 --- a/resources/extruders/bq_witbox_2_extruder_0.def.json +++ b/resources/extruders/bq_witbox_2_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "bq_witbox_2", "position": "0" }, - - "overrides": { + "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/bq_witbox_extruder_0.def.json b/resources/extruders/bq_witbox_extruder_0.def.json index 37b1492676..32562de5c6 100644 --- a/resources/extruders/bq_witbox_extruder_0.def.json +++ b/resources/extruders/bq_witbox_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "bq_witbox", "position": "0" }, - - "overrides": { + "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/builder_premium_large_front.def.json b/resources/extruders/builder_premium_large_front.def.json index dc1c557304..9903b1a20a 100644 --- a/resources/extruders/builder_premium_large_front.def.json +++ b/resources/extruders/builder_premium_large_front.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "Front Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "builder_premium_large", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "material_diameter": { "default_value": 1.75 }, - - "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" }, + "extruder_prime_pos_abs": { "default_value": true }, "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" }, - "extruder_prime_pos_abs": { "default_value": true } + "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" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/builder_premium_large_rear.def.json b/resources/extruders/builder_premium_large_rear.def.json index 5dbe6d30c9..44bfcd21a6 100644 --- a/resources/extruders/builder_premium_large_rear.def.json +++ b/resources/extruders/builder_premium_large_rear.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "Rear Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "builder_premium_large", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "material_diameter": { "default_value": 1.75 }, - - "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" }, + "extruder_prime_pos_abs": { "default_value": true }, "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" }, - "extruder_prime_pos_abs": { "default_value": true } + "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" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/builder_premium_medium_front.def.json b/resources/extruders/builder_premium_medium_front.def.json index 2d38e48aab..ee31efc309 100644 --- a/resources/extruders/builder_premium_medium_front.def.json +++ b/resources/extruders/builder_premium_medium_front.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "Front Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "builder_premium_medium", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "material_diameter": { "default_value": 1.75 }, - - "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" }, + "extruder_prime_pos_abs": { "default_value": true }, "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" }, - "extruder_prime_pos_abs": { "default_value": true } + "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" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/builder_premium_medium_rear.def.json b/resources/extruders/builder_premium_medium_rear.def.json index 0a789c38f1..54ca3a60f8 100644 --- a/resources/extruders/builder_premium_medium_rear.def.json +++ b/resources/extruders/builder_premium_medium_rear.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "Rear Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "builder_premium_medium", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "material_diameter": { "default_value": 1.75 }, - - "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" }, + "extruder_prime_pos_abs": { "default_value": true }, "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" }, - "extruder_prime_pos_abs": { "default_value": true } + "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" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/builder_premium_small_front.def.json b/resources/extruders/builder_premium_small_front.def.json index b36c535aeb..25420a0e52 100644 --- a/resources/extruders/builder_premium_small_front.def.json +++ b/resources/extruders/builder_premium_small_front.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "Front Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "builder_premium_small", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "material_diameter": { "default_value": 1.75 }, - - "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" }, + "extruder_prime_pos_abs": { "default_value": true }, "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" }, - "extruder_prime_pos_abs": { "default_value": true } + "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" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/builder_premium_small_rear.def.json b/resources/extruders/builder_premium_small_rear.def.json index 8e00d0cc39..f544ec3fa3 100644 --- a/resources/extruders/builder_premium_small_rear.def.json +++ b/resources/extruders/builder_premium_small_rear.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "Rear Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "builder_premium_small", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "material_diameter": { "default_value": 1.75 }, - - "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" }, + "extruder_prime_pos_abs": { "default_value": true }, "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" }, - "extruder_prime_pos_abs": { "default_value": true } + "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" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/cartesio_extruder_0.def.json b/resources/extruders/cartesio_extruder_0.def.json index ad27d4854c..f1ab23ed0e 100644 --- a/resources/extruders/cartesio_extruder_0.def.json +++ b/resources/extruders/cartesio_extruder_0.def.json @@ -2,24 +2,22 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "cartesio", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "3" }, + "machine_extruder_end_code": { "default_value": "\nM104 T0 S{material_standby_temperature}\nG1 X65 Y35 F9000 ; go to wipe position\nM109 T0 R{material_standby_temperature}; wait for temp\nG1 X45 Y15 F3000; wipe\nG1 X55 F9000\nG1 Y35 F6000; wipe again\n\n;end T0\n\n" }, + "machine_extruder_start_code": { "default_value": "\n;start T0\n\nM104 T0 S{material_print_temperature_layer_0}\nG1 X65 Y35 F9000 ; go to wipe position\nM109 T0 S{material_print_temperature_layer_0}; wait for temp\nG1 E10 F300; prime\nG92 E0\nG1 X45 Y15 F3000; wipe\nG1 X55 F9000\nG1 Y35 F6000; wipe again\n\nM117 printing...\n" }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": { - "default_value": "\n;start T0\n\nM104 T0 S{material_print_temperature_layer_0}\nG1 X65 Y35 F9000 ; go to wipe position\nM109 T0 S{material_print_temperature_layer_0}; wait for temp\nG1 E10 F300; prime\nG92 E0\nG1 X45 Y15 F3000; wipe\nG1 X55 F9000\nG1 Y35 F6000; wipe again\n\nM117 printing...\n" - }, - "machine_extruder_end_code": { - "default_value": "\nM104 T0 S{material_standby_temperature}\nG1 X65 Y35 F9000 ; go to wipe position\nM109 T0 R{material_standby_temperature}; wait for temp\nG1 X45 Y15 F3000; wipe\nG1 X55 F9000\nG1 Y35 F6000; wipe again\n\n;end T0\n\n" - } + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/cartesio_extruder_1.def.json b/resources/extruders/cartesio_extruder_1.def.json index 1699a9c6a8..7a41f2d99c 100644 --- a/resources/extruders/cartesio_extruder_1.def.json +++ b/resources/extruders/cartesio_extruder_1.def.json @@ -2,24 +2,22 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "cartesio", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "3" }, + "machine_extruder_end_code": { "default_value": "\nM104 T1 S{material_standby_temperature}\nG1 X41 Y35 F9000 ; go to wipe position\nM109 T1 R{material_standby_temperature}; wait for temp\nG1 X21 Y15 F3000; wipe\nG1 X31 F9000\nG1 Y35 F6000; wipe again\n\n;end T1\n\n" }, + "machine_extruder_start_code": { "default_value": "\n;start T1\n\nM104 T1 S{material_print_temperature_layer_0}\nG1 X41 Y35 F9000 ; go to wipe position\nM109 T1 S{material_print_temperature_layer_0}; wait for temp\nG1 E10 F300; prime\nG92 E0\nG1 X21 Y15 F3000; wipe\nG1 X34 F9000\nG1 Y35 F6000; wipe again\n\nM117 printing...\n" }, "machine_nozzle_offset_x": { "default_value": 24.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": { - "default_value": "\n;start T1\n\nM104 T1 S{material_print_temperature_layer_0}\nG1 X41 Y35 F9000 ; go to wipe position\nM109 T1 S{material_print_temperature_layer_0}; wait for temp\nG1 E10 F300; prime\nG92 E0\nG1 X21 Y15 F3000; wipe\nG1 X34 F9000\nG1 Y35 F6000; wipe again\n\nM117 printing...\n" - }, - "machine_extruder_end_code": { - "default_value": "\nM104 T1 S{material_standby_temperature}\nG1 X41 Y35 F9000 ; go to wipe position\nM109 T1 R{material_standby_temperature}; wait for temp\nG1 X21 Y15 F3000; wipe\nG1 X31 F9000\nG1 Y35 F6000; wipe again\n\n;end T1\n\n" - } + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/cartesio_extruder_2.def.json b/resources/extruders/cartesio_extruder_2.def.json index 2521ada681..04e4a27011 100644 --- a/resources/extruders/cartesio_extruder_2.def.json +++ b/resources/extruders/cartesio_extruder_2.def.json @@ -2,24 +2,22 @@ "version": 2, "name": "Extruder 3", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "cartesio", "position": "2" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 2, "maximum_value": "3" }, + "machine_extruder_end_code": { "default_value": "\nM104 T2 S{material_standby_temperature}\nG1 X41 Y215 F9000 ; go to wipe position\nM109 T2 R{material_standby_temperature}; wait for temp\nG1 X21 Y235 F3000; wipe\nG1 X31 F9000\nG1 Y215 F6000; wipe again\n\n;end T2\n\n" }, + "machine_extruder_start_code": { "default_value": "\n;start T2\n\nM104 T2 S{material_print_temperature_layer_0}\nG1 X41 Y215 F9000 ; go to wipe position\nM109 T2 S{material_print_temperature_layer_0}; wait for temp\nG1 E10 F300; prime\nG92 E0\nG1 X21 Y235 F3000; wipe\nG1 X31 F9000\nG1 Y215 F6000; wipe again\n\nM117 printing...\n" }, "machine_nozzle_offset_x": { "default_value": 24.0 }, "machine_nozzle_offset_y": { "default_value": -100.0 }, - "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": { - "default_value": "\n;start T2\n\nM104 T2 S{material_print_temperature_layer_0}\nG1 X41 Y215 F9000 ; go to wipe position\nM109 T2 S{material_print_temperature_layer_0}; wait for temp\nG1 E10 F300; prime\nG92 E0\nG1 X21 Y235 F3000; wipe\nG1 X31 F9000\nG1 Y215 F6000; wipe again\n\nM117 printing...\n" - }, - "machine_extruder_end_code": { - "default_value": "\nM104 T2 S{material_standby_temperature}\nG1 X41 Y215 F9000 ; go to wipe position\nM109 T2 R{material_standby_temperature}; wait for temp\nG1 X21 Y235 F3000; wipe\nG1 X31 F9000\nG1 Y215 F6000; wipe again\n\n;end T2\n\n" - } + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/cartesio_extruder_3.def.json b/resources/extruders/cartesio_extruder_3.def.json index c844e7ce54..02ac2328ca 100644 --- a/resources/extruders/cartesio_extruder_3.def.json +++ b/resources/extruders/cartesio_extruder_3.def.json @@ -2,24 +2,22 @@ "version": 2, "name": "Extruder 4", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "cartesio", "position": "3" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 3, "maximum_value": "3" }, + "machine_extruder_end_code": { "default_value": "\nM104 T3 S{material_standby_temperature}\nG1 X65 Y215 F9000 ; go to wipe position\nM109 T3 R{material_standby_temperature}; wait for temp\nG1 X45 Y235 F3000; wipe\nG1 X55 F9000\nG1 Y215 F6000; wipe again\n\n;end T3\n\n" }, + "machine_extruder_start_code": { "default_value": "\n;start T3\n\nM104 T3 S{material_print_temperature_layer_0}\nG1 X65 Y215 F9000 ; go to wipe position\nM109 T3 S{material_print_temperature_layer_0}; wait for temp\nG1 E10 F300; prime\nG92 E0\nG1 X45 Y235 F3000; wipe\nG1 X55 F9000\nG1 Y215 F6000; wipe again\n\nM117 printing...\n" }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": -100.0 }, - "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": { - "default_value": "\n;start T3\n\nM104 T3 S{material_print_temperature_layer_0}\nG1 X65 Y215 F9000 ; go to wipe position\nM109 T3 S{material_print_temperature_layer_0}; wait for temp\nG1 E10 F300; prime\nG92 E0\nG1 X45 Y235 F3000; wipe\nG1 X55 F9000\nG1 Y215 F6000; wipe again\n\nM117 printing...\n" - }, - "machine_extruder_end_code": { - "default_value": "\nM104 T3 S{material_standby_temperature}\nG1 X65 Y215 F9000 ; go to wipe position\nM109 T3 R{material_standby_temperature}; wait for temp\nG1 X45 Y235 F3000; wipe\nG1 X55 F9000\nG1 Y215 F6000; wipe again\n\n;end T3\n\n" - } + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/cocoon_create_extruder_0.def.json b/resources/extruders/cocoon_create_extruder_0.def.json index edca4b33bb..9ffc2da638 100644 --- a/resources/extruders/cocoon_create_extruder_0.def.json +++ b/resources/extruders/cocoon_create_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "cocoon_create", "position": "0" }, - - "overrides": { + "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/cocoon_create_modelmaker_extruder_0.def.json b/resources/extruders/cocoon_create_modelmaker_extruder_0.def.json index dfa06c776a..a9115d7863 100644 --- a/resources/extruders/cocoon_create_modelmaker_extruder_0.def.json +++ b/resources/extruders/cocoon_create_modelmaker_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "cocoon_create_modelmaker", "position": "0" }, - - "overrides": { + "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/cocoon_create_touch_extruder_0.def.json b/resources/extruders/cocoon_create_touch_extruder_0.def.json index ca7c3e38af..083d6f5834 100644 --- a/resources/extruders/cocoon_create_touch_extruder_0.def.json +++ b/resources/extruders/cocoon_create_touch_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "cocoon_create_touch", "position": "0" }, - - "overrides": { + "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/cr-x_extruder_0.def.json b/resources/extruders/cr-x_extruder_0.def.json index d9b7b03021..e01e85e9da 100644 --- a/resources/extruders/cr-x_extruder_0.def.json +++ b/resources/extruders/cr-x_extruder_0.def.json @@ -2,25 +2,23 @@ "version": 2, "name": "Left Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "creality_cr-x", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, + "machine_extruder_end_code": { "default_value": "\nG92 E0 ;reset extruder distance\nG1 F800 E-5 ;short retract\nG1 F2400 X295 Y265 ;move near prime tower\nG1 F2000 E-93 ;long retract for filament removal\nG92 E0 ;reset extruder distance\nG90" }, + "machine_extruder_start_code": { "default_value": "\nT0 ;switch to extruder 1\nG92 E0 ;reset extruder distance\nG1 F2000 E93 ;load filament\nG92 E0 ;reset extruder distance\nM104 S{material_print_temperature}" }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "material_diameter": { "default_value": 1.75 }, "machine_nozzle_size": { "default_value": 0.4 }, - "machine_extruder_start_code": { - "default_value": "\nT0 ;switch to extruder 1\nG92 E0 ;reset extruder distance\nG1 F2000 E93 ;load filament\nG92 E0 ;reset extruder distance\nM104 S{material_print_temperature}" - }, - "machine_extruder_end_code": { - "default_value": "\nG92 E0 ;reset extruder distance\nG1 F800 E-5 ;short retract\nG1 F2400 X295 Y265 ;move near prime tower\nG1 F2000 E-93 ;long retract for filament removal\nG92 E0 ;reset extruder distance\nG90" - } + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/cr-x_extruder_1.def.json b/resources/extruders/cr-x_extruder_1.def.json index 8e763df64f..5ddb5aa1a0 100644 --- a/resources/extruders/cr-x_extruder_1.def.json +++ b/resources/extruders/cr-x_extruder_1.def.json @@ -2,25 +2,23 @@ "version": 2, "name": "Right Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "creality_cr-x", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, + "machine_extruder_end_code": { "default_value": "\nG92 E0 ;reset extruder distance\nG1 F800 E-5 ;short retract\nG1 F2400 X295 Y265 ;move near prime tower\nG1 F2000 E-93 ;long retract for filament removal\nG92 E0 ;reset extruder distance\nG90" }, + "machine_extruder_start_code": { "default_value": "\nT1 ;switch to extruder 2\nG92 E0 ;reset extruder distance\nG1 F2000 E93 ;load filament\nG92 E0 ;reset extruder distance\nM104 S{material_print_temperature}" }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "material_diameter": { "default_value": 1.75 }, "machine_nozzle_size": { "default_value": 0.4 }, - "machine_extruder_start_code": { - "default_value": "\nT1 ;switch to extruder 2\nG92 E0 ;reset extruder distance\nG1 F2000 E93 ;load filament\nG92 E0 ;reset extruder distance\nM104 S{material_print_temperature}" - }, - "machine_extruder_end_code": { - "default_value": "\nG92 E0 ;reset extruder distance\nG1 F800 E-5 ;short retract\nG1 F2400 X295 Y265 ;move near prime tower\nG1 F2000 E-93 ;long retract for filament removal\nG92 E0 ;reset extruder distance\nG90" - } + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/crazy3dprint_cz300_extruder_0.def.json b/resources/extruders/crazy3dprint_cz300_extruder_0.def.json index 72bbdbe17e..bc2354c8f8 100644 --- a/resources/extruders/crazy3dprint_cz300_extruder_0.def.json +++ b/resources/extruders/crazy3dprint_cz300_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "crazy3dprint_base", "position": "0" }, - - "overrides": { + "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/creality_base_extruder_0.def.json b/resources/extruders/creality_base_extruder_0.def.json index a173d1c2fa..68a5545fb4 100644 --- a/resources/extruders/creality_base_extruder_0.def.json +++ b/resources/extruders/creality_base_extruder_0.def.json @@ -2,15 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "creality_base", "position": "0" }, - - "overrides": { + "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/creasee_cs50spro_extruder.def.json b/resources/extruders/creasee_cs50spro_extruder.def.json index 8fdd42186a..793bb515fe 100644 --- a/resources/extruders/creasee_cs50spro_extruder.def.json +++ b/resources/extruders/creasee_cs50spro_extruder.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "creasee_cs50spro", "position": "0" }, - - "overrides": { + "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/creasee_extruder_0.def.json b/resources/extruders/creasee_extruder_0.def.json index abefa6b1c8..5495a691b0 100644 --- a/resources/extruders/creasee_extruder_0.def.json +++ b/resources/extruders/creasee_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "creasee_cs20", "position": "0" }, - - "overrides": { + "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/creasee_extruder_1.def.json b/resources/extruders/creasee_extruder_1.def.json index 747e1c48f8..805493a00e 100644 --- a/resources/extruders/creasee_extruder_1.def.json +++ b/resources/extruders/creasee_extruder_1.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "creasee_cs30", "position": "0" }, - - "overrides": { + "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/creasee_phoenix_extruder.def.json b/resources/extruders/creasee_phoenix_extruder.def.json index 9eed5943e4..3312f7406e 100644 --- a/resources/extruders/creasee_phoenix_extruder.def.json +++ b/resources/extruders/creasee_phoenix_extruder.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "creasee_phoenix", "position": "0" }, - - "overrides": { + "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/creasee_skywalker_extruder.def.json b/resources/extruders/creasee_skywalker_extruder.def.json index 0e240665ec..a1c1f5c1f5 100644 --- a/resources/extruders/creasee_skywalker_extruder.def.json +++ b/resources/extruders/creasee_skywalker_extruder.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "creasee_skywalker", "position": "0" }, - - "overrides": { + "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/creatable_d3_extruder_0.def.json b/resources/extruders/creatable_d3_extruder_0.def.json index 95883d0f69..66e8888b09 100644 --- a/resources/extruders/creatable_d3_extruder_0.def.json +++ b/resources/extruders/creatable_d3_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "creatable_d3", "position": "0" }, - - "overrides": { + "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/cremaker_extruder_0.def.json b/resources/extruders/cremaker_extruder_0.def.json index bf1dcce526..e7ed5300fe 100644 --- a/resources/extruders/cremaker_extruder_0.def.json +++ b/resources/extruders/cremaker_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "cremaker_common", "position": "0" }, - - "overrides": { + "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/cubicon_3dp_110f_extruder_0.def.json b/resources/extruders/cubicon_3dp_110f_extruder_0.def.json index 048c12b992..a0637bf552 100644 --- a/resources/extruders/cubicon_3dp_110f_extruder_0.def.json +++ b/resources/extruders/cubicon_3dp_110f_extruder_0.def.json @@ -2,25 +2,17 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "cubicon_3dp_110f", "position": "0" }, - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "machine_nozzle_offset_x": { - "default_value": -15 - }, - "machine_nozzle_offset_y": { - "default_value": -5 - }, - "material_diameter": { - "default_value": 1.75 - } + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_offset_x": { "default_value": -15 }, + "machine_nozzle_offset_y": { "default_value": -5 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } } \ No newline at end of file diff --git a/resources/extruders/cubicon_3dp_210f_extruder_0.def.json b/resources/extruders/cubicon_3dp_210f_extruder_0.def.json index 07fe7f3769..97bbd009ed 100644 --- a/resources/extruders/cubicon_3dp_210f_extruder_0.def.json +++ b/resources/extruders/cubicon_3dp_210f_extruder_0.def.json @@ -2,25 +2,17 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "cubicon_3dp_210f", "position": "0" }, - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "machine_nozzle_offset_x": { - "default_value": -7.25 - }, - "machine_nozzle_offset_y": { - "default_value": -5.82 - }, - "material_diameter": { - "default_value": 1.75 - } + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_offset_x": { "default_value": -7.25 }, + "machine_nozzle_offset_y": { "default_value": -5.82 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } } \ No newline at end of file diff --git a/resources/extruders/cubicon_3dp_310f_extruder_0.def.json b/resources/extruders/cubicon_3dp_310f_extruder_0.def.json index 8dc336877f..ee450c87b5 100644 --- a/resources/extruders/cubicon_3dp_310f_extruder_0.def.json +++ b/resources/extruders/cubicon_3dp_310f_extruder_0.def.json @@ -2,25 +2,17 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "cubicon_3dp_310f", "position": "0" }, - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "machine_nozzle_offset_x": { - "default_value": -15 - }, - "machine_nozzle_offset_y": { - "default_value": -5 - }, - "material_diameter": { - "default_value": 1.75 - } + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_offset_x": { "default_value": -15 }, + "machine_nozzle_offset_y": { "default_value": -5 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } } \ No newline at end of file diff --git a/resources/extruders/cubicon_dual_pro_a30_extruder_0.def.json b/resources/extruders/cubicon_dual_pro_a30_extruder_0.def.json index 6c8993e799..4bd95152c0 100644 --- a/resources/extruders/cubicon_dual_pro_a30_extruder_0.def.json +++ b/resources/extruders/cubicon_dual_pro_a30_extruder_0.def.json @@ -2,25 +2,17 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "cubicon_dual_pro_a30", "position": "0" }, - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "machine_nozzle_offset_x": { - "default_value": -27.3 - }, - "machine_nozzle_offset_y": { - "default_value": -19.9 - }, - "material_diameter": { - "default_value": 1.75 - } + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_offset_x": { "default_value": -27.3 }, + "machine_nozzle_offset_y": { "default_value": -19.9 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/cubicon_dual_pro_a30_extruder_1.def.json b/resources/extruders/cubicon_dual_pro_a30_extruder_1.def.json index ccdfdee1f7..687c6d464e 100644 --- a/resources/extruders/cubicon_dual_pro_a30_extruder_1.def.json +++ b/resources/extruders/cubicon_dual_pro_a30_extruder_1.def.json @@ -2,25 +2,17 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "cubicon_dual_pro_a30", "position": "1" }, - "overrides": { - "extruder_nr": { - "default_value": 1 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "machine_nozzle_offset_x": { - "default_value": -27.3 - }, - "machine_nozzle_offset_y": { - "default_value": -19.9 - }, - "material_diameter": { - "default_value": 1.75 - } + "overrides": + { + "extruder_nr": { "default_value": 1 }, + "machine_nozzle_offset_x": { "default_value": -27.3 }, + "machine_nozzle_offset_y": { "default_value": -19.9 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/cubicon_style_neo_a22_extruder_0.def.json b/resources/extruders/cubicon_style_neo_a22_extruder_0.def.json index 587d093a9e..6da644c38a 100644 --- a/resources/extruders/cubicon_style_neo_a22_extruder_0.def.json +++ b/resources/extruders/cubicon_style_neo_a22_extruder_0.def.json @@ -2,25 +2,17 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "cubicon_style_neo_a22", "position": "0" }, - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "machine_nozzle_offset_x": { - "default_value": -3.20 - }, - "machine_nozzle_offset_y": { - "default_value": -4.70 - }, - "material_diameter": { - "default_value": 1.75 - } + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_offset_x": { "default_value": -3.2 }, + "machine_nozzle_offset_y": { "default_value": -4.7 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/cubicon_style_neo_a31_extruder_0.def.json b/resources/extruders/cubicon_style_neo_a31_extruder_0.def.json index 4f6ced9818..1467ee6845 100644 --- a/resources/extruders/cubicon_style_neo_a31_extruder_0.def.json +++ b/resources/extruders/cubicon_style_neo_a31_extruder_0.def.json @@ -2,25 +2,17 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "cubicon_style_neo_a31", "position": "0" }, - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "machine_nozzle_offset_x": { - "default_value": -7.13 - }, - "machine_nozzle_offset_y": { - "default_value": -3.77 - }, - "material_diameter": { - "default_value": 1.75 - } + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_offset_x": { "default_value": -7.13 }, + "machine_nozzle_offset_y": { "default_value": -3.77 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/cubicon_style_plus_a15_extruder_0.def.json b/resources/extruders/cubicon_style_plus_a15_extruder_0.def.json index 12d022cd1e..7474413762 100644 --- a/resources/extruders/cubicon_style_plus_a15_extruder_0.def.json +++ b/resources/extruders/cubicon_style_plus_a15_extruder_0.def.json @@ -2,25 +2,17 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "cubicon_style_plus_a15", "position": "0" }, - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "machine_nozzle_offset_x": { - "default_value": -4.00 - }, - "machine_nozzle_offset_y": { - "default_value": -7.00 - }, - "material_diameter": { - "default_value": 1.75 - } + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_offset_x": { "default_value": -4.0 }, + "machine_nozzle_offset_y": { "default_value": -7.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/custom_extruder_1.def.json b/resources/extruders/custom_extruder_1.def.json index 942f3e96b9..f15f98b3ec 100644 --- a/resources/extruders/custom_extruder_1.def.json +++ b/resources/extruders/custom_extruder_1.def.json @@ -2,15 +2,17 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "custom", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "7" } } -} +} \ No newline at end of file diff --git a/resources/extruders/custom_extruder_2.def.json b/resources/extruders/custom_extruder_2.def.json index cd43efa994..8812503dd4 100644 --- a/resources/extruders/custom_extruder_2.def.json +++ b/resources/extruders/custom_extruder_2.def.json @@ -2,15 +2,17 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "custom", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "7" } } -} +} \ No newline at end of file diff --git a/resources/extruders/custom_extruder_3.def.json b/resources/extruders/custom_extruder_3.def.json index be5bdd0e6a..734e0f81f7 100644 --- a/resources/extruders/custom_extruder_3.def.json +++ b/resources/extruders/custom_extruder_3.def.json @@ -2,15 +2,17 @@ "version": 2, "name": "Extruder 3", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "custom", "position": "2" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 2, "maximum_value": "7" } } -} +} \ No newline at end of file diff --git a/resources/extruders/custom_extruder_4.def.json b/resources/extruders/custom_extruder_4.def.json index ce1df0a5f5..21635bed58 100644 --- a/resources/extruders/custom_extruder_4.def.json +++ b/resources/extruders/custom_extruder_4.def.json @@ -2,15 +2,17 @@ "version": 2, "name": "Extruder 4", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "custom", "position": "3" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 3, "maximum_value": "7" } } -} +} \ No newline at end of file diff --git a/resources/extruders/custom_extruder_5.def.json b/resources/extruders/custom_extruder_5.def.json index beb4786505..2e8f9a8c6a 100644 --- a/resources/extruders/custom_extruder_5.def.json +++ b/resources/extruders/custom_extruder_5.def.json @@ -2,15 +2,17 @@ "version": 2, "name": "Extruder 5", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "custom", "position": "4" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 4, "maximum_value": "7" } } -} +} \ No newline at end of file diff --git a/resources/extruders/custom_extruder_6.def.json b/resources/extruders/custom_extruder_6.def.json index 7f1e1a1343..b6bd726e3a 100644 --- a/resources/extruders/custom_extruder_6.def.json +++ b/resources/extruders/custom_extruder_6.def.json @@ -2,15 +2,17 @@ "version": 2, "name": "Extruder 6", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "custom", "position": "5" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 5, "maximum_value": "7" } } -} +} \ No newline at end of file diff --git a/resources/extruders/custom_extruder_7.def.json b/resources/extruders/custom_extruder_7.def.json index e4239f35f0..2cebd0cf02 100644 --- a/resources/extruders/custom_extruder_7.def.json +++ b/resources/extruders/custom_extruder_7.def.json @@ -2,15 +2,17 @@ "version": 2, "name": "Extruder 7", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "custom", "position": "6" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 6, "maximum_value": "7" } } -} +} \ No newline at end of file diff --git a/resources/extruders/custom_extruder_8.def.json b/resources/extruders/custom_extruder_8.def.json index 7671825792..be70ff2226 100644 --- a/resources/extruders/custom_extruder_8.def.json +++ b/resources/extruders/custom_extruder_8.def.json @@ -2,15 +2,17 @@ "version": 2, "name": "Extruder 8", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "custom", "position": "7" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 7, "maximum_value": "7" } } -} +} \ No newline at end of file diff --git a/resources/extruders/dagoma_discoeasy200_extruder.def.json b/resources/extruders/dagoma_discoeasy200_extruder.def.json index 7bef0a7649..402630591b 100644 --- a/resources/extruders/dagoma_discoeasy200_extruder.def.json +++ b/resources/extruders/dagoma_discoeasy200_extruder.def.json @@ -2,20 +2,15 @@ "version": 2, "name": "Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "dagoma_discoeasy200", "position": "0" }, - - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - } + "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/dagoma_discoeasy200_extruder_0.def.json b/resources/extruders/dagoma_discoeasy200_extruder_0.def.json index af1c2c42e9..158150dbb2 100644 --- a/resources/extruders/dagoma_discoeasy200_extruder_0.def.json +++ b/resources/extruders/dagoma_discoeasy200_extruder_0.def.json @@ -2,26 +2,17 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "dagoma_discoeasy200_bicolor", "position": "0" }, - - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - }, - "machine_extruder_start_code": { - "default_value": ";Start T0\nM83\nG1 E{retraction_amount} F3000\nG1 E60 F3000\nG1 E-{retraction_amount} F5000\nM82\nG92 E0" - }, - "machine_extruder_end_code": { - "default_value": "M83\nG1 E-{retraction_amount} F10000\nG1 E1.5 F3000\nG1 E-60 F10000\nM82\nG92 E0\n;End T0" - } + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_extruder_end_code": { "default_value": "M83\nG1 E-{retraction_amount} F10000\nG1 E1.5 F3000\nG1 E-60 F10000\nM82\nG92 E0\n;End T0" }, + "machine_extruder_start_code": { "default_value": ";Start T0\nM83\nG1 E{retraction_amount} F3000\nG1 E60 F3000\nG1 E-{retraction_amount} F5000\nM82\nG92 E0" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/dagoma_discoeasy200_extruder_1.def.json b/resources/extruders/dagoma_discoeasy200_extruder_1.def.json index f01a805270..1705cb89c0 100644 --- a/resources/extruders/dagoma_discoeasy200_extruder_1.def.json +++ b/resources/extruders/dagoma_discoeasy200_extruder_1.def.json @@ -2,26 +2,17 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "dagoma_discoeasy200_bicolor", "position": "1" }, - - "overrides": { - "extruder_nr": { - "default_value": 1 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - }, - "machine_extruder_start_code": { - "default_value": ";Start T1\nM83\nG1 E{retraction_amount} F3000\nG1 E60 F3000\nG1 E-{retraction_amount} F5000\nM82\nG92 E0" - }, - "machine_extruder_end_code": { - "default_value": "M83\nG1 E-{retraction_amount} F10000\nG1 E1.5 F3000\nG1 E-60 F10000\nM82\nG92 E0\n;End T1" - } + "overrides": + { + "extruder_nr": { "default_value": 1 }, + "machine_extruder_end_code": { "default_value": "M83\nG1 E-{retraction_amount} F10000\nG1 E1.5 F3000\nG1 E-60 F10000\nM82\nG92 E0\n;End T1" }, + "machine_extruder_start_code": { "default_value": ";Start T1\nM83\nG1 E{retraction_amount} F3000\nG1 E60 F3000\nG1 E-{retraction_amount} F5000\nM82\nG92 E0" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/dagoma_discoultimate_extruder.def.json b/resources/extruders/dagoma_discoultimate_extruder.def.json index a53145f429..d9a454f345 100644 --- a/resources/extruders/dagoma_discoultimate_extruder.def.json +++ b/resources/extruders/dagoma_discoultimate_extruder.def.json @@ -2,20 +2,15 @@ "version": 2, "name": "Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "dagoma_discoultimate", "position": "0" }, - - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - } + "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/dagoma_discoultimate_extruder_0.def.json b/resources/extruders/dagoma_discoultimate_extruder_0.def.json index 766d5b2902..56229f57c8 100644 --- a/resources/extruders/dagoma_discoultimate_extruder_0.def.json +++ b/resources/extruders/dagoma_discoultimate_extruder_0.def.json @@ -2,26 +2,17 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "dagoma_discoultimate_bicolor", "position": "0" }, - - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - }, - "machine_extruder_start_code": { - "default_value": ";Start T0\nM83\nG1 E{retraction_amount} F3000\nG1 E60 F3000\nG1 E-{retraction_amount} F5000\nM82\nG92 E0" - }, - "machine_extruder_end_code": { - "default_value": "M83\nG1 E-{retraction_amount} F10000\nG1 E1.5 F3000\nG1 E-60 F10000\nM82\nG92 E0\n;End T0" - } + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_extruder_end_code": { "default_value": "M83\nG1 E-{retraction_amount} F10000\nG1 E1.5 F3000\nG1 E-60 F10000\nM82\nG92 E0\n;End T0" }, + "machine_extruder_start_code": { "default_value": ";Start T0\nM83\nG1 E{retraction_amount} F3000\nG1 E60 F3000\nG1 E-{retraction_amount} F5000\nM82\nG92 E0" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/dagoma_discoultimate_extruder_1.def.json b/resources/extruders/dagoma_discoultimate_extruder_1.def.json index f71b875261..518a7153f7 100644 --- a/resources/extruders/dagoma_discoultimate_extruder_1.def.json +++ b/resources/extruders/dagoma_discoultimate_extruder_1.def.json @@ -2,26 +2,17 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "dagoma_discoultimate_bicolor", "position": "1" }, - - "overrides": { - "extruder_nr": { - "default_value": 1 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - }, - "machine_extruder_start_code": { - "default_value": ";Start T1\nM83\nG1 E{retraction_amount} F3000\nG1 E60 F3000\nG1 E-{retraction_amount} F5000\nM82\nG92 E0" - }, - "machine_extruder_end_code": { - "default_value": "M83\nG1 E-{retraction_amount} F10000\nG1 E1.5 F3000\nG1 E-60 F10000\nM82\nG92 E0\n;End T1" - } + "overrides": + { + "extruder_nr": { "default_value": 1 }, + "machine_extruder_end_code": { "default_value": "M83\nG1 E-{retraction_amount} F10000\nG1 E1.5 F3000\nG1 E-60 F10000\nM82\nG92 E0\n;End T1" }, + "machine_extruder_start_code": { "default_value": ";Start T1\nM83\nG1 E{retraction_amount} F3000\nG1 E60 F3000\nG1 E-{retraction_amount} F5000\nM82\nG92 E0" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/dagoma_magis_extruder.def.json b/resources/extruders/dagoma_magis_extruder.def.json index 06cf6127ce..74b5d01115 100644 --- a/resources/extruders/dagoma_magis_extruder.def.json +++ b/resources/extruders/dagoma_magis_extruder.def.json @@ -2,20 +2,15 @@ "version": 2, "name": "Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "dagoma_magis", "position": "0" }, - - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - } + "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/dagoma_neva_extruder.def.json b/resources/extruders/dagoma_neva_extruder.def.json index 3fa26ab5c9..56376a95fa 100644 --- a/resources/extruders/dagoma_neva_extruder.def.json +++ b/resources/extruders/dagoma_neva_extruder.def.json @@ -2,20 +2,15 @@ "version": 2, "name": "Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "dagoma_neva", "position": "0" }, - - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - } + "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/dagoma_pro_430_bowden_extruder.def.json b/resources/extruders/dagoma_pro_430_bowden_extruder.def.json new file mode 100644 index 0000000000..afa3a25b4e --- /dev/null +++ b/resources/extruders/dagoma_pro_430_bowden_extruder.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "dagoma_pro_430_bowden", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/dagoma_pro_430_bowden_extruder_0.def.json b/resources/extruders/dagoma_pro_430_bowden_extruder_0.def.json deleted file mode 100644 index eeba40cb05..0000000000 --- a/resources/extruders/dagoma_pro_430_bowden_extruder_0.def.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "version": 2, - "name": "Extruder 1", - "inherits": "fdmextruder", - "metadata": { - "machine": "dagoma_pro_430_bowden", - "position": "0" - }, - - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "material_diameter": { - "default_value": 1.75 - } - } -} \ No newline at end of file diff --git a/resources/extruders/dagoma_pro_430_directdrive_extruder.def.json b/resources/extruders/dagoma_pro_430_directdrive_extruder.def.json new file mode 100644 index 0000000000..2ec2ff9167 --- /dev/null +++ b/resources/extruders/dagoma_pro_430_directdrive_extruder.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "dagoma_pro_430_directdrive", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/dagoma_pro_430_dual_extruder_left.def.json b/resources/extruders/dagoma_pro_430_dual_extruder_left.def.json new file mode 100644 index 0000000000..b45c6778c4 --- /dev/null +++ b/resources/extruders/dagoma_pro_430_dual_extruder_left.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "dagoma_pro_430_dual", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "1" + }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/dagoma_pro_430_dual_extruder_right.def.json b/resources/extruders/dagoma_pro_430_dual_extruder_right.def.json new file mode 100644 index 0000000000..d858320a54 --- /dev/null +++ b/resources/extruders/dagoma_pro_430_dual_extruder_right.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": + { + "machine": "dagoma_pro_430_dual", + "position": "1" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_value": "1" + }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/dagoma_sigma_extruder.def.json b/resources/extruders/dagoma_sigma_extruder.def.json new file mode 100644 index 0000000000..53384a846e --- /dev/null +++ b/resources/extruders/dagoma_sigma_extruder.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "dagoma_sigma", + "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/delta_go_extruder_0.def.json b/resources/extruders/delta_go_extruder_0.def.json index 330cde08bf..072054dad7 100644 --- a/resources/extruders/delta_go_extruder_0.def.json +++ b/resources/extruders/delta_go_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "delta_go", "position": "0" }, - - "overrides": { + "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/deltabot_extruder_0.def.json b/resources/extruders/deltabot_extruder_0.def.json index d4773ccf9f..e89ee5a428 100644 --- a/resources/extruders/deltabot_extruder_0.def.json +++ b/resources/extruders/deltabot_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "deltabot", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.5 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/deltacomb_base_extruder_0.def.json b/resources/extruders/deltacomb_base_extruder_0.def.json index d3ad8aa06c..7d358186c5 100644 --- a/resources/extruders/deltacomb_base_extruder_0.def.json +++ b/resources/extruders/deltacomb_base_extruder_0.def.json @@ -1,19 +1,24 @@ { - "version": 2, - "name": "Extruder 1", - "inherits": "fdmextruder", - "metadata": { - "machine": "deltacomb_base", - "position": "0" + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "deltacomb_base", + "position": "0" }, - - "overrides": { - "extruder_nr": { "default_value": 0, "maximum_value": "3" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";Deltacomb Extruder 1\n;Put your custom code here"}, - "machine_extruder_end_code": { "default_value": ";Deltacomb Extruder 1\n;Put your custom code here"} + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "3" + }, + "machine_extruder_end_code": { "default_value": ";Deltacomb Extruder 1\n;Put your custom code here" }, + "machine_extruder_start_code": { "default_value": ";Deltacomb Extruder 1\n;Put your custom code here" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/deltacomb_base_extruder_1.def.json b/resources/extruders/deltacomb_base_extruder_1.def.json index 2f2de6c747..99227302c0 100644 --- a/resources/extruders/deltacomb_base_extruder_1.def.json +++ b/resources/extruders/deltacomb_base_extruder_1.def.json @@ -1,19 +1,24 @@ { - "version": 2, - "name": "Extruder 2", - "inherits": "fdmextruder", - "metadata": { - "machine": "deltacomb_base", - "position": "1" + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": + { + "machine": "deltacomb_base", + "position": "1" }, - - "overrides": { - "extruder_nr": { "default_value": 1, "maximum_value": "3" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";Deltacomb Extruder 2\n;Put your custom code here"}, - "machine_extruder_end_code": { "default_value": ";Deltacomb Extruder 2\n;Put your custom code here"} + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_value": "3" + }, + "machine_extruder_end_code": { "default_value": ";Deltacomb Extruder 2\n;Put your custom code here" }, + "machine_extruder_start_code": { "default_value": ";Deltacomb Extruder 2\n;Put your custom code here" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/deltacomb_base_extruder_2.def.json b/resources/extruders/deltacomb_base_extruder_2.def.json index f4a898f0c7..6d507e1aa4 100644 --- a/resources/extruders/deltacomb_base_extruder_2.def.json +++ b/resources/extruders/deltacomb_base_extruder_2.def.json @@ -1,19 +1,24 @@ { - "version": 2, - "name": "Extruder 3", - "inherits": "fdmextruder", - "metadata": { - "machine": "deltacomb_base", - "position": "2" + "version": 2, + "name": "Extruder 3", + "inherits": "fdmextruder", + "metadata": + { + "machine": "deltacomb_base", + "position": "2" }, - - "overrides": { - "extruder_nr": { "default_value": 2, "maximum_value": "3" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";Deltacomb Extruder 3\n;Put your custom code here"}, - "machine_extruder_end_code": { "default_value": ";Deltacomb Extruder 3\n;Put your custom code here"} + "overrides": + { + "extruder_nr": + { + "default_value": 2, + "maximum_value": "3" + }, + "machine_extruder_end_code": { "default_value": ";Deltacomb Extruder 3\n;Put your custom code here" }, + "machine_extruder_start_code": { "default_value": ";Deltacomb Extruder 3\n;Put your custom code here" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/deltacomb_base_extruder_3.def.json b/resources/extruders/deltacomb_base_extruder_3.def.json index 2d01c8e5aa..a4338723bc 100644 --- a/resources/extruders/deltacomb_base_extruder_3.def.json +++ b/resources/extruders/deltacomb_base_extruder_3.def.json @@ -1,19 +1,24 @@ { - "version": 2, - "name": "Extruder 4", - "inherits": "fdmextruder", - "metadata": { - "machine": "deltacomb_base", - "position": "3" + "version": 2, + "name": "Extruder 4", + "inherits": "fdmextruder", + "metadata": + { + "machine": "deltacomb_base", + "position": "3" }, - - "overrides": { - "extruder_nr": { "default_value": 3, "maximum_value": "3" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";Deltacomb Extruder 4\n;Put your custom code here"}, - "machine_extruder_end_code": { "default_value": ";Deltacomb Extruder 4\n;Put your custom code here"} + "overrides": + { + "extruder_nr": + { + "default_value": 3, + "maximum_value": "3" + }, + "machine_extruder_end_code": { "default_value": ";Deltacomb Extruder 4\n;Put your custom code here" }, + "machine_extruder_start_code": { "default_value": ";Deltacomb Extruder 4\n;Put your custom code here" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/deltacomb_dc20dual_extruder_0.def.json b/resources/extruders/deltacomb_dc20dual_extruder_0.def.json index f01a416224..8b0dd18d1b 100644 --- a/resources/extruders/deltacomb_dc20dual_extruder_0.def.json +++ b/resources/extruders/deltacomb_dc20dual_extruder_0.def.json @@ -1,19 +1,20 @@ { - "version": 2, - "name": "Extruder 1", - "inherits": "fdmextruder", - "metadata": { - "machine": "deltacomb_dc20dual", - "position": "0" + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "deltacomb_dc20dual", + "position": "0" }, - - "overrides": { - "extruder_nr": { "default_value": 0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": -8.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";DC20 Dual Extruder 1\n;Put your custom code here"}, - "machine_extruder_end_code": { "default_value": ";DC20 Dual Extruder 1\n;Put your custom code here"} + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_extruder_end_code": { "default_value": ";DC20 Dual Extruder 1\n;Put your custom code here" }, + "machine_extruder_start_code": { "default_value": ";DC20 Dual Extruder 1\n;Put your custom code here" }, + "machine_nozzle_offset_x": { "default_value": -8.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/deltacomb_dc20dual_extruder_1.def.json b/resources/extruders/deltacomb_dc20dual_extruder_1.def.json index 2749254242..07dcc881c7 100644 --- a/resources/extruders/deltacomb_dc20dual_extruder_1.def.json +++ b/resources/extruders/deltacomb_dc20dual_extruder_1.def.json @@ -1,19 +1,20 @@ { - "version": 2, - "name": "Extruder 2", - "inherits": "fdmextruder", - "metadata": { - "machine": "deltacomb_dc20dual", - "position": "1" + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": + { + "machine": "deltacomb_dc20dual", + "position": "1" }, - - "overrides": { - "extruder_nr": { "default_value": 1 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": -8.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";DC20 Dual Extruder 2\n;Put your custom code here"}, - "machine_extruder_end_code": { "default_value": ";DC20 Dual Extruder 2\n;Put your custom code here"} + "overrides": + { + "extruder_nr": { "default_value": 1 }, + "machine_extruder_end_code": { "default_value": ";DC20 Dual Extruder 2\n;Put your custom code here" }, + "machine_extruder_start_code": { "default_value": ";DC20 Dual Extruder 2\n;Put your custom code here" }, + "machine_nozzle_offset_x": { "default_value": -8.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/deltacomb_dc20flux_extruder_0.def.json b/resources/extruders/deltacomb_dc20flux_extruder_0.def.json index b36879898c..9bcc5cf179 100644 --- a/resources/extruders/deltacomb_dc20flux_extruder_0.def.json +++ b/resources/extruders/deltacomb_dc20flux_extruder_0.def.json @@ -1,19 +1,20 @@ { - "version": 2, - "name": "Extruder 1", - "inherits": "fdmextruder", - "metadata": { - "machine": "deltacomb_dc20flux", - "position": "0" + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "deltacomb_dc20flux", + "position": "0" }, - - "overrides": { - "extruder_nr": { "default_value": 0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 1 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, - "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 1 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"} + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 1 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------" }, + "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 1 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/deltacomb_dc20flux_extruder_1.def.json b/resources/extruders/deltacomb_dc20flux_extruder_1.def.json index d1232c24a8..cf4472aa61 100644 --- a/resources/extruders/deltacomb_dc20flux_extruder_1.def.json +++ b/resources/extruders/deltacomb_dc20flux_extruder_1.def.json @@ -1,20 +1,21 @@ { - "version": 2, - "name": "Extruder 2", - "inherits": "fdmextruder", - "metadata": { - "machine": "deltacomb_dc20flux", - "position": "1" + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": + { + "machine": "deltacomb_dc20flux", + "position": "1" }, - - "overrides": { - "extruder_nr": { "default_value": 1 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 2 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, - "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 2 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, - "prime_tower_flow": { "value": "200" } + "overrides": + { + "extruder_nr": { "default_value": 1 }, + "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 2 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------" }, + "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 2 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "prime_tower_flow": { "value": "200" } } -} +} \ No newline at end of file diff --git a/resources/extruders/deltacomb_dc20flux_extruder_2.def.json b/resources/extruders/deltacomb_dc20flux_extruder_2.def.json index d64a0d8b66..b98bc7ac74 100644 --- a/resources/extruders/deltacomb_dc20flux_extruder_2.def.json +++ b/resources/extruders/deltacomb_dc20flux_extruder_2.def.json @@ -1,20 +1,21 @@ { - "version": 2, - "name": "Extruder 3", - "inherits": "fdmextruder", - "metadata": { - "machine": "deltacomb_dc20flux", - "position": "2" + "version": 2, + "name": "Extruder 3", + "inherits": "fdmextruder", + "metadata": + { + "machine": "deltacomb_dc20flux", + "position": "2" }, - - "overrides": { - "extruder_nr": { "default_value": 2 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 3 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, - "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 3 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, - "prime_tower_flow": { "value": "200" } + "overrides": + { + "extruder_nr": { "default_value": 2 }, + "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 3 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------" }, + "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 3 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "prime_tower_flow": { "value": "200" } } -} +} \ No newline at end of file diff --git a/resources/extruders/deltacomb_dc20flux_extruder_3.def.json b/resources/extruders/deltacomb_dc20flux_extruder_3.def.json index 061de645df..25b4b75a0c 100644 --- a/resources/extruders/deltacomb_dc20flux_extruder_3.def.json +++ b/resources/extruders/deltacomb_dc20flux_extruder_3.def.json @@ -1,24 +1,21 @@ { - "version": 2, - "name": "Extruder 4", - "inherits": "fdmextruder", - "metadata": { - "machine": "deltacomb_dc20flux", - "position": "3" + "version": 2, + "name": "Extruder 4", + "inherits": "fdmextruder", + "metadata": + { + "machine": "deltacomb_dc20flux", + "position": "3" }, - - "overrides": { - "extruder_nr": { "default_value": 3 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 4 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, - "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 4 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, - "prime_tower_flow": { "value": "200" } + "overrides": + { + "extruder_nr": { "default_value": 3 }, + "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 4 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------" }, + "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 4 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "prime_tower_flow": { "value": "200" } } -} - - - - +} \ No newline at end of file diff --git a/resources/extruders/deltacomb_dc30dual_extruder_0.def.json b/resources/extruders/deltacomb_dc30dual_extruder_0.def.json index 45cd65ea8a..5acc27dfc2 100644 --- a/resources/extruders/deltacomb_dc30dual_extruder_0.def.json +++ b/resources/extruders/deltacomb_dc30dual_extruder_0.def.json @@ -1,19 +1,20 @@ { - "version": 2, - "name": "Extruder 1", - "inherits": "fdmextruder", - "metadata": { - "machine": "deltacomb_dc30dual", - "position": "0" + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "deltacomb_dc30dual", + "position": "0" }, - - "overrides": { - "extruder_nr": { "default_value": 0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": -8.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";DC30 Dual Extruder 1\n;Put your custom code here"}, - "machine_extruder_end_code": { "default_value": ";DC30 Dual Extruder 1\n;Put your custom code here"} + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_extruder_end_code": { "default_value": ";DC30 Dual Extruder 1\n;Put your custom code here" }, + "machine_extruder_start_code": { "default_value": ";DC30 Dual Extruder 1\n;Put your custom code here" }, + "machine_nozzle_offset_x": { "default_value": -8.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/deltacomb_dc30dual_extruder_1.def.json b/resources/extruders/deltacomb_dc30dual_extruder_1.def.json index 74d2b3d39d..9f847d7d24 100644 --- a/resources/extruders/deltacomb_dc30dual_extruder_1.def.json +++ b/resources/extruders/deltacomb_dc30dual_extruder_1.def.json @@ -1,19 +1,20 @@ { - "version": 2, - "name": "Extruder 2", - "inherits": "fdmextruder", - "metadata": { - "machine": "deltacomb_dc30dual", - "position": "1" + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": + { + "machine": "deltacomb_dc30dual", + "position": "1" }, - - "overrides": { - "extruder_nr": { "default_value": 1 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": -8.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";DC30 Dual Extruder 2\n;Put your custom code here"}, - "machine_extruder_end_code": { "default_value": ";DC30 Dual Extruder 2\n;Put your custom code here"} + "overrides": + { + "extruder_nr": { "default_value": 1 }, + "machine_extruder_end_code": { "default_value": ";DC30 Dual Extruder 2\n;Put your custom code here" }, + "machine_extruder_start_code": { "default_value": ";DC30 Dual Extruder 2\n;Put your custom code here" }, + "machine_nozzle_offset_x": { "default_value": -8.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/deltacomb_dc30flux_extruder_0.def.json b/resources/extruders/deltacomb_dc30flux_extruder_0.def.json index 604affe3f2..405eb7554c 100644 --- a/resources/extruders/deltacomb_dc30flux_extruder_0.def.json +++ b/resources/extruders/deltacomb_dc30flux_extruder_0.def.json @@ -1,19 +1,20 @@ { - "version": 2, - "name": "Extruder 1", - "inherits": "fdmextruder", - "metadata": { - "machine": "deltacomb_dc30flux", - "position": "0" + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "deltacomb_dc30flux", + "position": "0" }, - - "overrides": { - "extruder_nr": { "default_value": 0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 1 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, - "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 1 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"} + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 1 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------" }, + "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 1 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/deltacomb_dc30flux_extruder_1.def.json b/resources/extruders/deltacomb_dc30flux_extruder_1.def.json index e0b0e1711f..df59e027da 100644 --- a/resources/extruders/deltacomb_dc30flux_extruder_1.def.json +++ b/resources/extruders/deltacomb_dc30flux_extruder_1.def.json @@ -1,20 +1,21 @@ { - "version": 2, - "name": "Extruder 2", - "inherits": "fdmextruder", - "metadata": { - "machine": "deltacomb_dc30flux", - "position": "1" + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": + { + "machine": "deltacomb_dc30flux", + "position": "1" }, - - "overrides": { - "extruder_nr": { "default_value": 1 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 2 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, - "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 2 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, - "prime_tower_flow": { "value": "200" } + "overrides": + { + "extruder_nr": { "default_value": 1 }, + "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 2 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------" }, + "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 2 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "prime_tower_flow": { "value": "200" } } -} +} \ No newline at end of file diff --git a/resources/extruders/deltacomb_dc30flux_extruder_2.def.json b/resources/extruders/deltacomb_dc30flux_extruder_2.def.json index 048499988d..ade9f58fb8 100644 --- a/resources/extruders/deltacomb_dc30flux_extruder_2.def.json +++ b/resources/extruders/deltacomb_dc30flux_extruder_2.def.json @@ -1,20 +1,21 @@ { - "version": 2, - "name": "Extruder 3", - "inherits": "fdmextruder", - "metadata": { - "machine": "deltacomb_dc30flux", - "position": "2" + "version": 2, + "name": "Extruder 3", + "inherits": "fdmextruder", + "metadata": + { + "machine": "deltacomb_dc30flux", + "position": "2" }, - - "overrides": { - "extruder_nr": { "default_value": 2 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 3 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, - "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 3 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, - "prime_tower_flow": { "value": "200" } + "overrides": + { + "extruder_nr": { "default_value": 2 }, + "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 3 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------" }, + "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 3 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "prime_tower_flow": { "value": "200" } } -} +} \ No newline at end of file diff --git a/resources/extruders/deltacomb_dc30flux_extruder_3.def.json b/resources/extruders/deltacomb_dc30flux_extruder_3.def.json index a18f2f1288..a94ca07d48 100644 --- a/resources/extruders/deltacomb_dc30flux_extruder_3.def.json +++ b/resources/extruders/deltacomb_dc30flux_extruder_3.def.json @@ -1,20 +1,21 @@ { - "version": 2, - "name": "Extruder 4", - "inherits": "fdmextruder", - "metadata": { - "machine": "deltacomb_dc30flux", - "position": "3" + "version": 2, + "name": "Extruder 4", + "inherits": "fdmextruder", + "metadata": + { + "machine": "deltacomb_dc30flux", + "position": "3" }, - - "overrides": { - "extruder_nr": { "default_value": 3 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 4 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, - "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 4 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}, - "prime_tower_flow": { "value": "200" } + "overrides": + { + "extruder_nr": { "default_value": 3 }, + "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 4 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------" }, + "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 4 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "prime_tower_flow": { "value": "200" } } -} +} \ 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 8f7f0d12fa..4d802b4a8d 100644 --- a/resources/extruders/diy220_extruder_0.def.json +++ b/resources/extruders/diy220_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "diy220", "position": "0" }, - - "overrides": { + "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/dxu_extruder1.def.json b/resources/extruders/dxu_extruder1.def.json index 0a01881441..de974b8174 100644 --- a/resources/extruders/dxu_extruder1.def.json +++ b/resources/extruders/dxu_extruder1.def.json @@ -2,19 +2,21 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "dxu", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 } + "machine_nozzle_offset_y": { "default_value": 0.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/dxu_extruder2.def.json b/resources/extruders/dxu_extruder2.def.json index 5e730c49f4..b4de471289 100644 --- a/resources/extruders/dxu_extruder2.def.json +++ b/resources/extruders/dxu_extruder2.def.json @@ -2,19 +2,21 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "dxu", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, "machine_nozzle_offset_x": { "default_value": 19.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 } + "machine_nozzle_offset_y": { "default_value": 0.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/easyarts_ares_extruder_0.def.json b/resources/extruders/easyarts_ares_extruder_0.def.json index 4ddd476dbb..e9d34d6e20 100644 --- a/resources/extruders/easyarts_ares_extruder_0.def.json +++ b/resources/extruders/easyarts_ares_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "easyarts_ares", "position": "0" }, - - "overrides": { + "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/eazao_zero_extruder_0.def.json b/resources/extruders/eazao_zero_extruder_0.def.json index 00038a2ac9..5d34008337 100644 --- a/resources/extruders/eazao_zero_extruder_0.def.json +++ b/resources/extruders/eazao_zero_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "eazao_zero", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 1.5 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/elegoo_extruder_0.def.json b/resources/extruders/elegoo_extruder_0.def.json new file mode 100644 index 0000000000..c6332f41bd --- /dev/null +++ b/resources/extruders/elegoo_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "elegoo_base", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/elegoo_neptune2D_extruder_0.def.json b/resources/extruders/elegoo_neptune2D_extruder_0.def.json index ad8dee15e8..73fada60cc 100644 --- a/resources/extruders/elegoo_neptune2D_extruder_0.def.json +++ b/resources/extruders/elegoo_neptune2D_extruder_0.def.json @@ -2,16 +2,17 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "elegoo_neptune_2D", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, + "machine_extruder_end_code": { "default_value": "G1 F1600 E-80\nG92 E0" }, + "machine_extruder_start_code": { "default_value": "G1 F1200 E80\nG92 E0" }, "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": {"default_value": "G1 F1200 E80\nG92 E0"}, - "machine_extruder_end_code": {"default_value": "G1 F1600 E-80\nG92 E0"} + "material_diameter": { "default_value": 1.75 } } } \ No newline at end of file diff --git a/resources/extruders/elegoo_neptune2D_extruder_1.def.json b/resources/extruders/elegoo_neptune2D_extruder_1.def.json index f4ec5194c4..567f2d8b33 100644 --- a/resources/extruders/elegoo_neptune2D_extruder_1.def.json +++ b/resources/extruders/elegoo_neptune2D_extruder_1.def.json @@ -2,16 +2,17 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "elegoo_neptune_2D", "position": "1" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 1 }, + "machine_extruder_end_code": { "default_value": "G1 F1600 E-80\nG92 E0" }, + "machine_extruder_start_code": { "default_value": "G1 F1200 E80\nG92 E0" }, "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": {"default_value": "G1 F1200 E80\nG92 E0"}, - "machine_extruder_end_code": {"default_value": "G1 F1600 E-80\nG92 E0"} + "material_diameter": { "default_value": 1.75 } } } \ No newline at end of file diff --git a/resources/extruders/elegoo_neptune2_extruder_0.def.json b/resources/extruders/elegoo_neptune2_extruder_0.def.json index c182885b1f..ac9190c006 100644 --- a/resources/extruders/elegoo_neptune2_extruder_0.def.json +++ b/resources/extruders/elegoo_neptune2_extruder_0.def.json @@ -2,16 +2,17 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "elegoo_neptune_2", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, + "machine_extruder_end_code": { "default_value": "" }, + "machine_extruder_start_code": { "default_value": "" }, "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": {"default_value": ""}, - "machine_extruder_end_code": {"default_value": ""} + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/eryone_er20_extruder_0.def.json b/resources/extruders/eryone_er20_extruder_0.def.json index 4dcf363af9..30cbf76a01 100644 --- a/resources/extruders/eryone_er20_extruder_0.def.json +++ b/resources/extruders/eryone_er20_extruder_0.def.json @@ -2,26 +2,17 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "eryone_er20", "position": "0" }, - - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - }, - "machine_nozzle_offset_x": { - "default_value": 5 - }, - "machine_nozzle_offset_y": { - "default_value": 8.0 - } - } -} + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_offset_x": { "default_value": 5 }, + "machine_nozzle_offset_y": { "default_value": 8.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/eryone_thinker_extruder_0.def.json b/resources/extruders/eryone_thinker_extruder_0.def.json index 32889435a8..e87540573f 100644 --- a/resources/extruders/eryone_thinker_extruder_0.def.json +++ b/resources/extruders/eryone_thinker_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "eryone_thinker", "position": "0" }, - - "overrides": { + "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/erzay3d_extruder_0.def.json b/resources/extruders/erzay3d_extruder_0.def.json index a9cea62897..a4082a6224 100644 --- a/resources/extruders/erzay3d_extruder_0.def.json +++ b/resources/extruders/erzay3d_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "erzay3d", "position": "0" }, - - "overrides": { + "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/fablabbcn_0.def.json b/resources/extruders/fablabbcn_0.def.json new file mode 100644 index 0000000000..64f2f820d0 --- /dev/null +++ b/resources/extruders/fablabbcn_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "fablabbcn_pasteprinter", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 3.0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/fabtotum_extruder_0.def.json b/resources/extruders/fabtotum_extruder_0.def.json index a763fbcc15..c56d57b5da 100644 --- a/resources/extruders/fabtotum_extruder_0.def.json +++ b/resources/extruders/fabtotum_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "fabtotum", "position": "0" }, - - "overrides": { + "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/fabxpro_extruder_0.def.json b/resources/extruders/fabxpro_extruder_0.def.json index 761aebe287..045d62a032 100644 --- a/resources/extruders/fabxpro_extruder_0.def.json +++ b/resources/extruders/fabxpro_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "fabxpro", "position": "0" }, - - "overrides": { + "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/farm2_ce_extruder_1.def.json b/resources/extruders/farm2_ce_extruder_1.def.json index 0c2e77f501..0967869eae 100644 --- a/resources/extruders/farm2_ce_extruder_1.def.json +++ b/resources/extruders/farm2_ce_extruder_1.def.json @@ -2,15 +2,14 @@ "version": 2, "name": "PrintHead", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "farm2_ce", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "material_diameter": { "default_value": 1.75 } - } -} - +} \ No newline at end of file diff --git a/resources/extruders/farm2_extruder_1.def.json b/resources/extruders/farm2_extruder_1.def.json index 8c86af9f93..6479fec990 100644 --- a/resources/extruders/farm2_extruder_1.def.json +++ b/resources/extruders/farm2_extruder_1.def.json @@ -2,15 +2,14 @@ "version": 2, "name": "PrintHead", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "farm2", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "material_diameter": { "default_value": 1.75 } - } -} - +} \ No newline at end of file diff --git a/resources/extruders/felixpro2_dual_extruder_0.def.json b/resources/extruders/felixpro2_dual_extruder_0.def.json index 4278a532f9..877efda85c 100644 --- a/resources/extruders/felixpro2_dual_extruder_0.def.json +++ b/resources/extruders/felixpro2_dual_extruder_0.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "Left Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "felixpro2dual", "position": "0" }, - - "overrides": { - "extruder_nr": { + "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.35 }, - "material_diameter": { "default_value": 1.75 }, - + "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_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" }, - "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_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.35 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/felixpro2_dual_extruder_1.def.json b/resources/extruders/felixpro2_dual_extruder_1.def.json index 195aad474d..8cd4f33209 100644 --- a/resources/extruders/felixpro2_dual_extruder_1.def.json +++ b/resources/extruders/felixpro2_dual_extruder_1.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "Right Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "felixpro2dual", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "2" }, - "machine_nozzle_offset_x": { "default_value": 0 }, - "machine_nozzle_offset_y": { "default_value": 0 }, - "machine_nozzle_size": { "default_value": 0.35 }, - "material_diameter": { "default_value": 1.75 }, - + "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_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" }, - "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_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.35 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/felixtec4_dual_extruder_0.def.json b/resources/extruders/felixtec4_dual_extruder_0.def.json index 1821b0e601..ceccbf714b 100644 --- a/resources/extruders/felixtec4_dual_extruder_0.def.json +++ b/resources/extruders/felixtec4_dual_extruder_0.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "Left Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "felixtec4dual", "position": "0" }, - - "overrides": { - "extruder_nr": { + "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.35 }, - "material_diameter": { "default_value": 1.75 }, - + "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_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" }, - "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_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.35 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/felixtec4_dual_extruder_1.def.json b/resources/extruders/felixtec4_dual_extruder_1.def.json index 37a99c5fb4..a4deac1f56 100644 --- a/resources/extruders/felixtec4_dual_extruder_1.def.json +++ b/resources/extruders/felixtec4_dual_extruder_1.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "Right Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "felixtec4dual", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "2" }, - "machine_nozzle_offset_x": { "default_value": 13 }, - "machine_nozzle_offset_y": { "default_value": 0 }, - "machine_nozzle_size": { "default_value": 0.35 }, - "material_diameter": { "default_value": 1.75 }, - + "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_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" }, - "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_nozzle_offset_x": { "default_value": 13 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.35 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/flashforge_dreamernx_extruder_0.def.json b/resources/extruders/flashforge_dreamernx_extruder_0.def.json index b9f1df00dc..064a61bda9 100644 --- a/resources/extruders/flashforge_dreamernx_extruder_0.def.json +++ b/resources/extruders/flashforge_dreamernx_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "flashforge_base", "position": "0" }, - - "overrides": { + "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/flsun_q5_extruder.def.json b/resources/extruders/flsun_q5_extruder.def.json index ece222d70a..5282c3bebd 100644 --- a/resources/extruders/flsun_q5_extruder.def.json +++ b/resources/extruders/flsun_q5_extruder.def.json @@ -2,13 +2,15 @@ "version": 2, "name": "Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "flsun_q5", "position": "0" }, - "overrides": { + "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/flsun_qq_extruder.def.json b/resources/extruders/flsun_qq_extruder.def.json index c7ca0ed6eb..929b54db4b 100644 --- a/resources/extruders/flsun_qq_extruder.def.json +++ b/resources/extruders/flsun_qq_extruder.def.json @@ -2,13 +2,15 @@ "version": 2, "name": "Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "flsun_qq", "position": "0" }, - "overrides": { + "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/flsun_qq_s_extruder_0.def.json b/resources/extruders/flsun_qq_s_extruder_0.def.json index e61056fcd3..7ab5f7d7aa 100644 --- a/resources/extruders/flsun_qq_s_extruder_0.def.json +++ b/resources/extruders/flsun_qq_s_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "flsun_qq_s", "position": "0" }, - - "overrides": { + "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/flsun_sr_extruder_0.def.json b/resources/extruders/flsun_sr_extruder_0.def.json index 31880b5130..24234c39e7 100644 --- a/resources/extruders/flsun_sr_extruder_0.def.json +++ b/resources/extruders/flsun_sr_extruder_0.def.json @@ -2,19 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "flsun_sr", "position": "0" }, - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - } + "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/flsun_v400_extruder_0.def.json b/resources/extruders/flsun_v400_extruder_0.def.json new file mode 100644 index 0000000000..a66d7192d8 --- /dev/null +++ b/resources/extruders/flsun_v400_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "flsun_v400", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/flyingbear_base_extruder_0.def.json b/resources/extruders/flyingbear_base_extruder_0.def.json index a792b373ff..5bc4d80d46 100644 --- a/resources/extruders/flyingbear_base_extruder_0.def.json +++ b/resources/extruders/flyingbear_base_extruder_0.def.json @@ -2,15 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "flyingbear_base", "position": "0" }, - - "overrides": { + "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/folgertech_FT-5_extruder_0.def.json b/resources/extruders/folgertech_FT-5_extruder_0.def.json index 861b0e7a7e..ecbc98bd3f 100644 --- a/resources/extruders/folgertech_FT-5_extruder_0.def.json +++ b/resources/extruders/folgertech_FT-5_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "folgertech_FT-5", "position": "0" }, - - "overrides": { + "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/fusedform_base_extruder_0.def.json b/resources/extruders/fusedform_base_extruder_0.def.json index 19ecc0915d..5bb154ace5 100644 --- a/resources/extruders/fusedform_base_extruder_0.def.json +++ b/resources/extruders/fusedform_base_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "fusedform_base", "position": "0" }, - - "overrides": { + "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/fusedform_doppia_base_extruder_0.def.json b/resources/extruders/fusedform_doppia_base_extruder_0.def.json index 005647b736..f8627969a3 100644 --- a/resources/extruders/fusedform_doppia_base_extruder_0.def.json +++ b/resources/extruders/fusedform_doppia_base_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "fusedform_doppia_base", "position": "0" }, - - "overrides": { + "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/fusedform_doppia_base_extruder_1.def.json b/resources/extruders/fusedform_doppia_base_extruder_1.def.json index b0862c824c..a3dce50fa8 100644 --- a/resources/extruders/fusedform_doppia_base_extruder_1.def.json +++ b/resources/extruders/fusedform_doppia_base_extruder_1.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "fusedform_doppia_base", "position": "1" }, - - "overrides": { + "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/fusion3_extruder_0.def.json b/resources/extruders/fusion3_extruder_0.def.json new file mode 100644 index 0000000000..4369308122 --- /dev/null +++ b/resources/extruders/fusion3_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "fusion3", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/geeetech_A10M_1.def.json b/resources/extruders/geeetech_A10M_1.def.json index b3c87489e9..c31760c43e 100644 --- a/resources/extruders/geeetech_A10M_1.def.json +++ b/resources/extruders/geeetech_A10M_1.def.json @@ -1,19 +1,20 @@ -{ - "version": 2, - "name": "Extruder 1", - "inherits": "fdmextruder", - "metadata": { - "machine": "geeetech_A10M", - "position": "0" - }, - - "overrides": { - "extruder_nr": { - "default_value": 0, - "maximum_value": "1" - }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } - - } -} +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "geeetech_A10M", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_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/geeetech_A10M_2.def.json b/resources/extruders/geeetech_A10M_2.def.json index 59c8d36aab..a5e8d1cec3 100644 --- a/resources/extruders/geeetech_A10M_2.def.json +++ b/resources/extruders/geeetech_A10M_2.def.json @@ -1,19 +1,20 @@ -{ - "version": 2, - "name": "Extruder 2", - "inherits": "fdmextruder", - "metadata": { - "machine": "geeetech_A10M", - "position": "1" - }, - - "overrides": { - "extruder_nr": { - "default_value": 1, - "maximum_value": "1" - }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } - - } -} +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": + { + "machine": "geeetech_A10M", + "position": "1" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_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/geeetech_A10T_1.def.json b/resources/extruders/geeetech_A10T_1.def.json index 240a71ccc4..1f8de1805b 100644 --- a/resources/extruders/geeetech_A10T_1.def.json +++ b/resources/extruders/geeetech_A10T_1.def.json @@ -1,19 +1,20 @@ -{ - "version": 2, - "name": "Extruder 1", - "inherits": "fdmextruder", - "metadata": { - "machine": "geeetech_A10T", - "position": "0" - }, - - "overrides": { - "extruder_nr": { - "default_value": 0, - "maximum_value": "2" - }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } - - } -} +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "geeetech_A10T", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "2" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/geeetech_A10T_2.def.json b/resources/extruders/geeetech_A10T_2.def.json index cc93fdd416..6ccaa18d02 100644 --- a/resources/extruders/geeetech_A10T_2.def.json +++ b/resources/extruders/geeetech_A10T_2.def.json @@ -1,19 +1,20 @@ -{ - "version": 2, - "name": "Extruder 2", - "inherits": "fdmextruder", - "metadata": { - "machine": "geeetech_A10T", - "position": "1" - }, - - "overrides": { - "extruder_nr": { - "default_value": 1, - "maximum_value": "2" - }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } - - } -} +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": + { + "machine": "geeetech_A10T", + "position": "1" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_value": "2" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/geeetech_A10T_3.def.json b/resources/extruders/geeetech_A10T_3.def.json index ddee8fcd3b..2cb697a81e 100644 --- a/resources/extruders/geeetech_A10T_3.def.json +++ b/resources/extruders/geeetech_A10T_3.def.json @@ -1,19 +1,20 @@ -{ - "version": 2, - "name": "Extruder 3", - "inherits": "fdmextruder", - "metadata": { - "machine": "geeetech_A10T", - "position": "2" - }, - - "overrides": { - "extruder_nr": { - "default_value": 2, - "maximum_value": "2" - }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } - - } -} +{ + "version": 2, + "name": "Extruder 3", + "inherits": "fdmextruder", + "metadata": + { + "machine": "geeetech_A10T", + "position": "2" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 2, + "maximum_value": "2" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/geeetech_A10_1.def.json b/resources/extruders/geeetech_A10_1.def.json index bcf889ab43..b0ab86c6eb 100644 --- a/resources/extruders/geeetech_A10_1.def.json +++ b/resources/extruders/geeetech_A10_1.def.json @@ -1,17 +1,16 @@ -{ - - "version": 2, - "name": "Extruder 1", - "inherits": "fdmextruder", - "metadata": { - "machine": "geeetech_A10", - "position": "0" - }, - - "overrides": { - "extruder_nr": { "default_value": 0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } - - } -} +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "geeetech_A10", + "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/geeetech_A20M_1.def.json b/resources/extruders/geeetech_A20M_1.def.json index b0c00f4144..d840cfe5ce 100644 --- a/resources/extruders/geeetech_A20M_1.def.json +++ b/resources/extruders/geeetech_A20M_1.def.json @@ -1,19 +1,20 @@ -{ - "version": 2, - "name": "Extruder 1", - "inherits": "fdmextruder", - "metadata": { - "machine": "geeetech_A20M", - "position": "0" - }, - - "overrides": { - "extruder_nr": { - "default_value": 0, - "maximum_value": "1" - }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } - - } -} +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "geeetech_A20M", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_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/geeetech_A20M_2.def.json b/resources/extruders/geeetech_A20M_2.def.json index 51dd29723a..94e64ef055 100644 --- a/resources/extruders/geeetech_A20M_2.def.json +++ b/resources/extruders/geeetech_A20M_2.def.json @@ -1,19 +1,20 @@ -{ - "version": 2, - "name": "Extruder 2", - "inherits": "fdmextruder", - "metadata": { - "machine": "geeetech_A20M", - "position": "1" - }, - - "overrides": { - "extruder_nr": { - "default_value": 1, - "maximum_value": "1" - }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } - - } -} +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": + { + "machine": "geeetech_A20M", + "position": "1" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_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/geeetech_A20T_1.def.json b/resources/extruders/geeetech_A20T_1.def.json index 4880f2147b..fd59575148 100644 --- a/resources/extruders/geeetech_A20T_1.def.json +++ b/resources/extruders/geeetech_A20T_1.def.json @@ -1,19 +1,20 @@ -{ - "version": 2, - "name": "Extruder 1", - "inherits": "fdmextruder", - "metadata": { - "machine": "geeetech_A20T", - "position": "0" - }, - - "overrides": { - "extruder_nr": { - "default_value": 0, - "maximum_value": "2" - }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } - - } -} +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "geeetech_A20T", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "2" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/geeetech_A20T_2.def.json b/resources/extruders/geeetech_A20T_2.def.json index d001cbc291..ef0285103f 100644 --- a/resources/extruders/geeetech_A20T_2.def.json +++ b/resources/extruders/geeetech_A20T_2.def.json @@ -1,19 +1,20 @@ -{ - "version": 2, - "name": "Extruder 2", - "inherits": "fdmextruder", - "metadata": { - "machine": "geeetech_A20T", - "position": "1" - }, - - "overrides": { - "extruder_nr": { - "default_value": 1, - "maximum_value": "2" - }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } - - } -} +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": + { + "machine": "geeetech_A20T", + "position": "1" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_value": "2" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/geeetech_A20T_3.def.json b/resources/extruders/geeetech_A20T_3.def.json index db60908cb9..9a657824fe 100644 --- a/resources/extruders/geeetech_A20T_3.def.json +++ b/resources/extruders/geeetech_A20T_3.def.json @@ -1,19 +1,20 @@ -{ - "version": 2, - "name": "Extruder 3", - "inherits": "fdmextruder", - "metadata": { - "machine": "geeetech_A20T", - "position": "2" - }, - - "overrides": { - "extruder_nr": { - "default_value": 2, - "maximum_value": "2" - }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } - - } -} +{ + "version": 2, + "name": "Extruder 3", + "inherits": "fdmextruder", + "metadata": + { + "machine": "geeetech_A20T", + "position": "2" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 2, + "maximum_value": "2" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/geeetech_Mizar_S_1.def.json b/resources/extruders/geeetech_Mizar_S_1.def.json new file mode 100644 index 0000000000..f0fdcf2a79 --- /dev/null +++ b/resources/extruders/geeetech_Mizar_S_1.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "geeetech_Mizar_S", + "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/geeetech_a30_extruder_0.def.json b/resources/extruders/geeetech_a30_extruder_0.def.json index 90cb496877..0b255e5f3d 100644 --- a/resources/extruders/geeetech_a30_extruder_0.def.json +++ b/resources/extruders/geeetech_a30_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "geeetech_a30", "position": "0" }, - - "overrides": { + "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/gmax15plus_dual_extruder_0.def.json b/resources/extruders/gmax15plus_dual_extruder_0.def.json index 45f35dee1f..d22b0e040e 100644 --- a/resources/extruders/gmax15plus_dual_extruder_0.def.json +++ b/resources/extruders/gmax15plus_dual_extruder_0.def.json @@ -2,27 +2,27 @@ "version": 2, "name": "Left Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "gmax15plus_dual", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_nozzle_size": { "default_value": 0.5 }, - "material_diameter": { "default_value": 1.75 }, - + "machine_extruder_end_pos_abs": { "default_value": true }, + "machine_extruder_end_pos_x": { "value": 40 }, + "machine_extruder_end_pos_y": { "value": 210 }, "machine_extruder_start_pos_abs": { "default_value": true }, "machine_extruder_start_pos_x": { "value": 40 }, "machine_extruder_start_pos_y": { "value": 210 }, - "machine_extruder_end_pos_abs": { "default_value": true }, - "machine_extruder_end_pos_x": { "value": 40 }, - "machine_extruder_end_pos_y": { "value": 210 } - + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, + "machine_nozzle_size": { "default_value": 0.5 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/gmax15plus_dual_extruder_1.def.json b/resources/extruders/gmax15plus_dual_extruder_1.def.json index 6d0d5db06f..09924fcef5 100644 --- a/resources/extruders/gmax15plus_dual_extruder_1.def.json +++ b/resources/extruders/gmax15plus_dual_extruder_1.def.json @@ -2,29 +2,27 @@ "version": 2, "name": "Right Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "gmax15plus_dual", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_nozzle_size": { "default_value": 0.5 }, - "material_diameter": { "default_value": 1.75 }, - + "machine_extruder_end_pos_abs": { "default_value": true }, + "machine_extruder_end_pos_x": { "value": 40 }, + "machine_extruder_end_pos_y": { "value": 210 }, "machine_extruder_start_pos_abs": { "default_value": true }, "machine_extruder_start_pos_x": { "value": 40 }, "machine_extruder_start_pos_y": { "value": 210 }, - "machine_extruder_end_pos_abs": { "default_value": true }, - "machine_extruder_end_pos_x": { "value": 40 }, - "machine_extruder_end_pos_y": { "value": 210 } - + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, + "machine_nozzle_size": { "default_value": 0.5 }, + "material_diameter": { "default_value": 1.75 } } -} - - +} \ No newline at end of file diff --git a/resources/extruders/gmax15plus_extruder_0.def.json b/resources/extruders/gmax15plus_extruder_0.def.json index 5b0889d46d..ecd0653169 100644 --- a/resources/extruders/gmax15plus_extruder_0.def.json +++ b/resources/extruders/gmax15plus_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "gmax15plus", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.5 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/goofoo_base_extruder.def.json b/resources/extruders/goofoo_base_extruder.def.json index 453989e961..4ce315f1d9 100644 --- a/resources/extruders/goofoo_base_extruder.def.json +++ b/resources/extruders/goofoo_base_extruder.def.json @@ -2,15 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "goofoo_base", "position": "0" }, - - "overrides": { + "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/goofoo_gemini_1st.def.json b/resources/extruders/goofoo_gemini_1st.def.json index 7eefc49579..c147efbbf2 100644 --- a/resources/extruders/goofoo_gemini_1st.def.json +++ b/resources/extruders/goofoo_gemini_1st.def.json @@ -2,18 +2,19 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "goofoo_gemini", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_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/goofoo_gemini_2st.def.json b/resources/extruders/goofoo_gemini_2st.def.json index 35bc765526..fa6758168e 100644 --- a/resources/extruders/goofoo_gemini_2st.def.json +++ b/resources/extruders/goofoo_gemini_2st.def.json @@ -2,18 +2,19 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "goofoo_gemini", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_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/goofoo_tone_1st.def.json b/resources/extruders/goofoo_tone_1st.def.json index e4594301a8..8de9b68940 100644 --- a/resources/extruders/goofoo_tone_1st.def.json +++ b/resources/extruders/goofoo_tone_1st.def.json @@ -2,18 +2,19 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "goofoo_t-one", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_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/goofoo_tone_2st.def.json b/resources/extruders/goofoo_tone_2st.def.json index 3f07ac5d33..bb30de00a0 100644 --- a/resources/extruders/goofoo_tone_2st.def.json +++ b/resources/extruders/goofoo_tone_2st.def.json @@ -2,18 +2,19 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "goofoo_t-one", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_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/grr_neo_extruder_0.def.json b/resources/extruders/grr_neo_extruder_0.def.json index a9f1fa4faa..3eca391625 100644 --- a/resources/extruders/grr_neo_extruder_0.def.json +++ b/resources/extruders/grr_neo_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "grr_neo", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.5 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/gutenberg_extruder_0.def.json b/resources/extruders/gutenberg_extruder_0.def.json new file mode 100644 index 0000000000..aafe35e92b --- /dev/null +++ b/resources/extruders/gutenberg_extruder_0.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "Toolhead", + "inherits": "fdmextruder", + "metadata": + { + "machine": "gutenberg_base", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": 1 + }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/hBp_extruder_left.def.json b/resources/extruders/hBp_extruder_left.def.json index ce23f27c29..f15ca227da 100644 --- a/resources/extruders/hBp_extruder_left.def.json +++ b/resources/extruders/hBp_extruder_left.def.json @@ -2,22 +2,23 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "helloBEEprusa", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0 }, - "machine_nozzle_offset_y": { "default_value": 0 }, - "material_diameter": { "default_value": 1.75 }, - "extruder_prime_pos_x": { "default_value": 0 }, "extruder_prime_pos_y": { "default_value": 0 }, - "extruder_prime_pos_z": { "default_value": 2 } + "extruder_prime_pos_z": { "default_value": 2 }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/hBp_extruder_right.def.json b/resources/extruders/hBp_extruder_right.def.json index 170556a1fd..7a80f63f61 100644 --- a/resources/extruders/hBp_extruder_right.def.json +++ b/resources/extruders/hBp_extruder_right.def.json @@ -2,22 +2,23 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "helloBEEprusa", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0 }, - "machine_nozzle_offset_y": { "default_value": 0 }, - "material_diameter": { "default_value": 1.75 }, - "extruder_prime_pos_x": { "default_value": 185 }, "extruder_prime_pos_y": { "default_value": 0 }, - "extruder_prime_pos_z": { "default_value": 2 } + "extruder_prime_pos_z": { "default_value": 2 }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/hardprint_hozo_extruder_0.def.json b/resources/extruders/hardprint_hozo_extruder_0.def.json index 1f37977e4c..87788f514a 100644 --- a/resources/extruders/hardprint_hozo_extruder_0.def.json +++ b/resources/extruders/hardprint_hozo_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hardprint_hozo", "position": "0" }, - - "overrides": { + "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/hardprint_hozo_ix_extruder_0.def.json b/resources/extruders/hardprint_hozo_ix_extruder_0.def.json index ba67cebe9a..cb0c700254 100644 --- a/resources/extruders/hardprint_hozo_ix_extruder_0.def.json +++ b/resources/extruders/hardprint_hozo_ix_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hardprint_hozo_ix", "position": "0" }, - - "overrides": { + "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/hctech_hc300-m1&m1h_extruder_0.def.json b/resources/extruders/hctech_hc300-m1&m1h_extruder_0.def.json new file mode 100644 index 0000000000..a0394448b6 --- /dev/null +++ b/resources/extruders/hctech_hc300-m1&m1h_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "hctech_hc300-m1&m1h", + "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/hctech_hc300-m2h_extruder_0.def.json b/resources/extruders/hctech_hc300-m2h_extruder_0.def.json new file mode 100644 index 0000000000..f04ffca54b --- /dev/null +++ b/resources/extruders/hctech_hc300-m2h_extruder_0.def.json @@ -0,0 +1,25 @@ +{ + "version": 2, + "name": "Left Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "hctech_hc300-m2h", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "1" + }, + "machine_extruder_cooling_fan_number": { "default_value": 0 }, + "machine_extruder_end_code": { "default_value": "G92 E0 ;reset extruder distance\nG1 F800 E-1 ;retract\nG92 E0 ;reset extruder distance\nG1 X0 Y300 F4800 ;move to start position\nG1 X5 Y319 ;move to wait posiotion" }, + "machine_extruder_start_code": { "default_value": "G1 X5 Y319 ;move to wait posiotion\nT0 ;switch to extruder 1\nM109 S{material_print_temperature}\nG1 F5000\nG12 ;clean nozzle\nG1 X0 Y300 F4800 ;move to start point" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/hctech_hc300-m2h_extruder_1.def.json b/resources/extruders/hctech_hc300-m2h_extruder_1.def.json new file mode 100644 index 0000000000..f3a3ce030e --- /dev/null +++ b/resources/extruders/hctech_hc300-m2h_extruder_1.def.json @@ -0,0 +1,25 @@ +{ + "version": 2, + "name": "Right Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "hctech_hc300-m2h", + "position": "1" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_value": "1" + }, + "machine_extruder_cooling_fan_number": { "default_value": 0 }, + "machine_extruder_end_code": { "default_value": "G92 E0 ;reset extruder distance\nG1 F800 E-1 ;retract\nG92 E0 ;reset extruder distance\nG1 X0 Y300 F4800 ;move to start position\nG1 X5 Y319 ;move to wait posiotion" }, + "machine_extruder_start_code": { "default_value": "G1 X5 Y319 ;move to wait posiotion\nT1 ;switch to extruder 2\nM109 S{material_print_temperature}\nG1 F5000\nG12 ;clean nozzle\nG1 X0 Y300 F4800 ;move to start point" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/hctech_hc300-m3_extruder_0.def.json b/resources/extruders/hctech_hc300-m3_extruder_0.def.json new file mode 100644 index 0000000000..d1e01c2ea5 --- /dev/null +++ b/resources/extruders/hctech_hc300-m3_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "hctech_hc300-m3", + "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/hellbot_adonis_extruder.def.json b/resources/extruders/hellbot_adonis_extruder.def.json index 4201f6b393..c03e9d78b7 100644 --- a/resources/extruders/hellbot_adonis_extruder.def.json +++ b/resources/extruders/hellbot_adonis_extruder.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hellbot_adonis", "position": "0" }, - - "overrides": { + "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/hellbot_hidra_extruder_0.def.json b/resources/extruders/hellbot_hidra_extruder_0.def.json index aa8da12ea3..353930aebe 100644 --- a/resources/extruders/hellbot_hidra_extruder_0.def.json +++ b/resources/extruders/hellbot_hidra_extruder_0.def.json @@ -2,17 +2,19 @@ "version": 2, "name": "Extruder E1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hellbot_hidra", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_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/hellbot_hidra_extruder_1.def.json b/resources/extruders/hellbot_hidra_extruder_1.def.json index 8389b5e8d8..71aa078443 100644 --- a/resources/extruders/hellbot_hidra_extruder_1.def.json +++ b/resources/extruders/hellbot_hidra_extruder_1.def.json @@ -2,17 +2,19 @@ "version": 2, "name": "Extruder E2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hellbot_hidra", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_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/hellbot_hidra_plus_extruder_0.def.json b/resources/extruders/hellbot_hidra_plus_extruder_0.def.json index 2b023119eb..c2565e13f4 100644 --- a/resources/extruders/hellbot_hidra_plus_extruder_0.def.json +++ b/resources/extruders/hellbot_hidra_plus_extruder_0.def.json @@ -2,17 +2,19 @@ "version": 2, "name": "Extruder E1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hellbot_hidra_plus", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_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/hellbot_hidra_plus_extruder_1.def.json b/resources/extruders/hellbot_hidra_plus_extruder_1.def.json index ade40aafea..991b37ec12 100644 --- a/resources/extruders/hellbot_hidra_plus_extruder_1.def.json +++ b/resources/extruders/hellbot_hidra_plus_extruder_1.def.json @@ -2,17 +2,19 @@ "version": 2, "name": "Extruder E2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hellbot_hidra_plus", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_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/hellbot_magna_2_230_dual_extruder_0.def.json b/resources/extruders/hellbot_magna_2_230_dual_extruder_0.def.json index 2dc919ea68..36d982a2ee 100644 --- a/resources/extruders/hellbot_magna_2_230_dual_extruder_0.def.json +++ b/resources/extruders/hellbot_magna_2_230_dual_extruder_0.def.json @@ -2,23 +2,21 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hellbot_magna_2_230_dual", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, + "machine_extruder_end_code": { "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X230 Y200 \nG1 F3000 E-100 \nG92 E0 \nG90" }, + "machine_extruder_start_code": { "default_value": "T0 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" }, "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": { - "default_value": "T0 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" - }, - "machine_extruder_end_code": { - "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X230 Y200 \nG1 F3000 E-100 \nG92 E0 \nG90" - } + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/hellbot_magna_2_230_dual_extruder_1.def.json b/resources/extruders/hellbot_magna_2_230_dual_extruder_1.def.json index 6b5c6214cb..a7ee1201f7 100644 --- a/resources/extruders/hellbot_magna_2_230_dual_extruder_1.def.json +++ b/resources/extruders/hellbot_magna_2_230_dual_extruder_1.def.json @@ -2,23 +2,21 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hellbot_magna_2_230_dual", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, + "machine_extruder_end_code": { "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X230 Y200 \nG1 F3000 E-100 \nG92 E0 \nG90" }, + "machine_extruder_start_code": { "default_value": "T1 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" }, "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": { - "default_value": "T1 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" - }, - "machine_extruder_end_code": { - "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X230 Y200 \nG1 F3000 E-100 \nG92 E0 \nG90" - } + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/hellbot_magna_2_230_extruder_0.def.json b/resources/extruders/hellbot_magna_2_230_extruder_0.def.json index 83e76a2d31..a74d0bb090 100644 --- a/resources/extruders/hellbot_magna_2_230_extruder_0.def.json +++ b/resources/extruders/hellbot_magna_2_230_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hellbot_magna_2_230", "position": "0" }, - - "overrides": { + "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/hellbot_magna_2_300_dual_extruder_0.def.json b/resources/extruders/hellbot_magna_2_300_dual_extruder_0.def.json index 403001b86f..0b87f0159c 100644 --- a/resources/extruders/hellbot_magna_2_300_dual_extruder_0.def.json +++ b/resources/extruders/hellbot_magna_2_300_dual_extruder_0.def.json @@ -2,23 +2,21 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hellbot_magna_2_300_dual", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, + "machine_extruder_end_code": { "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X300 Y250 \nG1 F3000 E-100 \nG92 E0 \nG90" }, + "machine_extruder_start_code": { "default_value": "T0 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" }, "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": { - "default_value": "T0 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" - }, - "machine_extruder_end_code": { - "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X300 Y250 \nG1 F3000 E-100 \nG92 E0 \nG90" - } + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/hellbot_magna_2_300_dual_extruder_1.def.json b/resources/extruders/hellbot_magna_2_300_dual_extruder_1.def.json index ee3663f610..53aceeb01f 100644 --- a/resources/extruders/hellbot_magna_2_300_dual_extruder_1.def.json +++ b/resources/extruders/hellbot_magna_2_300_dual_extruder_1.def.json @@ -2,23 +2,21 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hellbot_magna_2_300_dual", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, + "machine_extruder_end_code": { "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X300 Y250 \nG1 F3000 E-100 \nG92 E0 \nG90" }, + "machine_extruder_start_code": { "default_value": "T1 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" }, "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": { - "default_value": "T1 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" - }, - "machine_extruder_end_code": { - "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X300 Y250 \nG1 F3000 E-100 \nG92 E0 \nG90" - } + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/hellbot_magna_2_300_extruder_0.def.json b/resources/extruders/hellbot_magna_2_300_extruder_0.def.json index db68460415..4f2078a791 100644 --- a/resources/extruders/hellbot_magna_2_300_extruder_0.def.json +++ b/resources/extruders/hellbot_magna_2_300_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hellbot_magna_2_300", "position": "0" }, - - "overrides": { + "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/hellbot_magna_2_400_dual_extruder_0.def.json b/resources/extruders/hellbot_magna_2_400_dual_extruder_0.def.json index f42dd7f986..fac8c63eb6 100644 --- a/resources/extruders/hellbot_magna_2_400_dual_extruder_0.def.json +++ b/resources/extruders/hellbot_magna_2_400_dual_extruder_0.def.json @@ -2,23 +2,21 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hellbot_magna_2_400_dual", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, + "machine_extruder_end_code": { "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X395 Y350 \nG1 F3000 E-100 \nG92 E0 \nG90" }, + "machine_extruder_start_code": { "default_value": "T0 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" }, "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": { - "default_value": "T0 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" - }, - "machine_extruder_end_code": { - "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X395 Y350 \nG1 F3000 E-100 \nG92 E0 \nG90" - } + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/hellbot_magna_2_400_dual_extruder_1.def.json b/resources/extruders/hellbot_magna_2_400_dual_extruder_1.def.json index f5ab430fc7..8622a75c13 100644 --- a/resources/extruders/hellbot_magna_2_400_dual_extruder_1.def.json +++ b/resources/extruders/hellbot_magna_2_400_dual_extruder_1.def.json @@ -2,23 +2,21 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hellbot_magna_2_400_dual", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, + "machine_extruder_end_code": { "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X395 Y350 \nG1 F3000 E-100 \nG92 E0 \nG90" }, + "machine_extruder_start_code": { "default_value": "T1 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" }, "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": { - "default_value": "T1 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" - }, - "machine_extruder_end_code": { - "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X395 Y350 \nG1 F3000 E-100 \nG92 E0 \nG90" - } + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/hellbot_magna_2_400_extruder_0.def.json b/resources/extruders/hellbot_magna_2_400_extruder_0.def.json index 59ee87321c..0c2c35006e 100644 --- a/resources/extruders/hellbot_magna_2_400_extruder_0.def.json +++ b/resources/extruders/hellbot_magna_2_400_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hellbot_magna_2_400", "position": "0" }, - - "overrides": { + "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/hellbot_magna_2_500_dual_extruder_0.def.json b/resources/extruders/hellbot_magna_2_500_dual_extruder_0.def.json index 033b62e0f9..09af39dd0d 100644 --- a/resources/extruders/hellbot_magna_2_500_dual_extruder_0.def.json +++ b/resources/extruders/hellbot_magna_2_500_dual_extruder_0.def.json @@ -2,23 +2,21 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hellbot_magna_2_500_dual", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, + "machine_extruder_end_code": { "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X495 Y450 \nG1 F3000 E-100 \nG92 E0 \nG90" }, + "machine_extruder_start_code": { "default_value": "T0 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" }, "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": { - "default_value": "T0 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" - }, - "machine_extruder_end_code": { - "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X495 Y450 \nG1 F3000 E-100 \nG92 E0 \nG90" - } + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/hellbot_magna_2_500_dual_extruder_1.def.json b/resources/extruders/hellbot_magna_2_500_dual_extruder_1.def.json index 62f6e1b7bc..1369bb374d 100644 --- a/resources/extruders/hellbot_magna_2_500_dual_extruder_1.def.json +++ b/resources/extruders/hellbot_magna_2_500_dual_extruder_1.def.json @@ -2,23 +2,21 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hellbot_magna_2_500_dual", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, + "machine_extruder_end_code": { "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X495 Y450 \nG1 F3000 E-100 \nG92 E0 \nG90" }, + "machine_extruder_start_code": { "default_value": "T1 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" }, "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": { - "default_value": "T1 \nG92 E0 \nG1 F1000 E100 \nG92 E0 \nM104 S{material_print_temperature}" - }, - "machine_extruder_end_code": { - "default_value": "G92 E0 \nG1 F2500 E-5 \nG1 F2400 X495 Y450 \nG1 F3000 E-100 \nG92 E0 \nG90" - } + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/hellbot_magna_2_500_extruder_0.def.json b/resources/extruders/hellbot_magna_2_500_extruder_0.def.json index 749e77cbe7..e311bb9779 100644 --- a/resources/extruders/hellbot_magna_2_500_extruder_0.def.json +++ b/resources/extruders/hellbot_magna_2_500_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hellbot_magna_2_500", "position": "0" }, - - "overrides": { + "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/hellbot_magna_SE_300_extruder.def.json b/resources/extruders/hellbot_magna_SE_300_extruder.def.json new file mode 100644 index 0000000000..7de00b2fae --- /dev/null +++ b/resources/extruders/hellbot_magna_SE_300_extruder.def.json @@ -0,0 +1,20 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "hellbot_magna_SE_300", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_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/hellbot_magna_SE_Pro_extruder.def.json b/resources/extruders/hellbot_magna_SE_Pro_extruder.def.json new file mode 100644 index 0000000000..6271ee36ce --- /dev/null +++ b/resources/extruders/hellbot_magna_SE_Pro_extruder.def.json @@ -0,0 +1,20 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "hellbot_magna_SE_Pro", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_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/hellbot_magna_SE_extruder.def.json b/resources/extruders/hellbot_magna_SE_extruder.def.json index 23c267b63b..194f10c7f5 100644 --- a/resources/extruders/hellbot_magna_SE_extruder.def.json +++ b/resources/extruders/hellbot_magna_SE_extruder.def.json @@ -1,18 +1,20 @@ -{ - "version": 2, - "name": "Extruder 1", - "inherits": "fdmextruder", - "metadata": { - "machine": "hellbot_magna_SE", - "position": "0" - }, - - "overrides": { - "extruder_nr": { - "default_value": 0, - "maximum_value": "1" - }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } - } -} +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "hellbot_magna_SE", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_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/hellbot_magna_dual_extruder_1.def.json b/resources/extruders/hellbot_magna_dual_extruder_1.def.json index a31a3fdd70..30bae4017d 100644 --- a/resources/extruders/hellbot_magna_dual_extruder_1.def.json +++ b/resources/extruders/hellbot_magna_dual_extruder_1.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hellbot_magna_dual", "position": "0" }, - - "overrides": { + "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/hellbot_magna_dual_extruder_2.def.json b/resources/extruders/hellbot_magna_dual_extruder_2.def.json index 651c39d53b..23a83bc002 100644 --- a/resources/extruders/hellbot_magna_dual_extruder_2.def.json +++ b/resources/extruders/hellbot_magna_dual_extruder_2.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hellbot_magna_dual", "position": "1" }, - - "overrides": { + "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/hellbot_magna_i_extruder.def.json b/resources/extruders/hellbot_magna_i_extruder.def.json index 70117c2aed..92ec439bb9 100644 --- a/resources/extruders/hellbot_magna_i_extruder.def.json +++ b/resources/extruders/hellbot_magna_i_extruder.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hellbot_magna_I", "position": "0" }, - - "overrides": { + "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/hms434_tool_1.def.json b/resources/extruders/hms434_tool_1.def.json index 17f4cbc6f0..14ee07cba0 100644 --- a/resources/extruders/hms434_tool_1.def.json +++ b/resources/extruders/hms434_tool_1.def.json @@ -2,24 +2,22 @@ "version": 2, "name": "Tool 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hms434", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "8" }, + "machine_extruder_end_code": { "default_value": "\nG1 X10 Y40 F12000\nG1 X-25 F12000\nM109 T0 R{material_standby_temperature}\nG1 Y20 F3000\n; ending tool1\n\n" }, + "machine_extruder_start_code": { "default_value": "\n;changing to tool1\nT0\nM83\nM109 T0 S{material_print_temperature}\nM114\nG1 E{switch_extruder_retraction_amount} F300\nG1 E{switch_extruder_retraction_amount} F300\nG1 E{switch_extruder_retraction_amount} F300\nG1 E{switch_extruder_retraction_amount} F300\nG1 E-{switch_extruder_retraction_amount} F2400\nG1 Y40 F3000\nG1 X10 F12000\n\n" }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": { - "default_value": "\n;changing to tool1\nT0\nM83\nM109 T0 S{material_print_temperature}\nM114\nG1 E{switch_extruder_retraction_amount} F300\nG1 E{switch_extruder_retraction_amount} F300\nG1 E{switch_extruder_retraction_amount} F300\nG1 E{switch_extruder_retraction_amount} F300\nG1 E-{switch_extruder_retraction_amount} F2400\nG1 Y40 F3000\nG1 X10 F12000\n\n" - }, - "machine_extruder_end_code": { - "default_value": "\nG1 X10 Y40 F12000\nG1 X-25 F12000\nM109 T0 R{material_standby_temperature}\nG1 Y20 F3000\n; ending tool1\n\n" - } + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/hms434_tool_2.def.json b/resources/extruders/hms434_tool_2.def.json index 00e92613e4..7a35d828fd 100644 --- a/resources/extruders/hms434_tool_2.def.json +++ b/resources/extruders/hms434_tool_2.def.json @@ -2,24 +2,22 @@ "version": 2, "name": "Tool 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hms434", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "8" }, + "machine_extruder_end_code": { "default_value": "\nG1 X10 Y40 F12000\nG1 X-25 F12000\nM109 T1 R{material_standby_temperature}\nG1 Y20 F3000\n; ending tool2\n\n" }, + "machine_extruder_start_code": { "default_value": "\n;changing to tool2\nT1\nM83\nM109 T1 S{material_print_temperature}\nM114\nG1 E{switch_extruder_retraction_amount} F300\nG1 E{switch_extruder_retraction_amount} F300\nG1 E{switch_extruder_retraction_amount} F300\nG1 E{switch_extruder_retraction_amount} F300\nG1 E-{switch_extruder_retraction_amount} F2400\nG1 Y40 F3000\nG1 X10 F12000\n\n" }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": { - "default_value": "\n;changing to tool2\nT1\nM83\nM109 T1 S{material_print_temperature}\nM114\nG1 E{switch_extruder_retraction_amount} F300\nG1 E{switch_extruder_retraction_amount} F300\nG1 E{switch_extruder_retraction_amount} F300\nG1 E{switch_extruder_retraction_amount} F300\nG1 E-{switch_extruder_retraction_amount} F2400\nG1 Y40 F3000\nG1 X10 F12000\n\n" - }, - "machine_extruder_end_code": { - "default_value": "\nG1 X10 Y40 F12000\nG1 X-25 F12000\nM109 T1 R{material_standby_temperature}\nG1 Y20 F3000\n; ending tool2\n\n" - } + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/hms434_tool_3.def.json b/resources/extruders/hms434_tool_3.def.json index e1e237d332..0f215c30cb 100644 --- a/resources/extruders/hms434_tool_3.def.json +++ b/resources/extruders/hms434_tool_3.def.json @@ -2,24 +2,22 @@ "version": 2, "name": "Tool 3", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hms434", "position": "2" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 2, "maximum_value": "8" }, + "machine_extruder_end_code": { "default_value": "\n;ending tool3" }, + "machine_extruder_start_code": { "default_value": "\n;changing to tool3" }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": { - "default_value": "\n;changing to tool3" - }, - "machine_extruder_end_code": { - "default_value": "\n;ending tool3" - } + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/hms434_tool_4.def.json b/resources/extruders/hms434_tool_4.def.json index 1a68d5aff5..af5c51dec3 100644 --- a/resources/extruders/hms434_tool_4.def.json +++ b/resources/extruders/hms434_tool_4.def.json @@ -2,24 +2,22 @@ "version": 2, "name": "Tool 4", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hms434", "position": "3" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 3, "maximum_value": "8" }, + "machine_extruder_end_code": { "default_value": "\n;ending tool4" }, + "machine_extruder_start_code": { "default_value": "\n;changing to tool4" }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": { - "default_value": "\n;changing to tool4" - }, - "machine_extruder_end_code": { - "default_value": "\n;ending tool4" - } + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/hms434_tool_5.def.json b/resources/extruders/hms434_tool_5.def.json index b56e8be84e..c73ad63efb 100644 --- a/resources/extruders/hms434_tool_5.def.json +++ b/resources/extruders/hms434_tool_5.def.json @@ -2,24 +2,22 @@ "version": 2, "name": "Tool 5", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hms434", "position": "4" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 4, "maximum_value": "8" }, + "machine_extruder_end_code": { "default_value": "\n;ending tool5" }, + "machine_extruder_start_code": { "default_value": "\n;changing to tool5" }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": { - "default_value": "\n;changing to tool5" - }, - "machine_extruder_end_code": { - "default_value": "\n;ending tool5" - } + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/hms434_tool_6.def.json b/resources/extruders/hms434_tool_6.def.json index b8c8cdf062..34e0044a95 100644 --- a/resources/extruders/hms434_tool_6.def.json +++ b/resources/extruders/hms434_tool_6.def.json @@ -2,24 +2,22 @@ "version": 2, "name": "Tool 6", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hms434", "position": "5" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 5, "maximum_value": "8" }, + "machine_extruder_end_code": { "default_value": "\n;ending tool6" }, + "machine_extruder_start_code": { "default_value": "\n;changing to tool6" }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": { - "default_value": "\n;changing to tool6" - }, - "machine_extruder_end_code": { - "default_value": "\n;ending tool6" - } + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/hms434_tool_7.def.json b/resources/extruders/hms434_tool_7.def.json index 3fc04078fa..1933b370a5 100644 --- a/resources/extruders/hms434_tool_7.def.json +++ b/resources/extruders/hms434_tool_7.def.json @@ -2,24 +2,22 @@ "version": 2, "name": "Tool 7", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hms434", "position": "6" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 6, "maximum_value": "8" }, + "machine_extruder_end_code": { "default_value": "\n;ending tool7" }, + "machine_extruder_start_code": { "default_value": "\n;changing to tool7" }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": { - "default_value": "\n;changing to tool7" - }, - "machine_extruder_end_code": { - "default_value": "\n;ending tool7" - } + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/hms434_tool_8.def.json b/resources/extruders/hms434_tool_8.def.json index faa6f36871..fd4e580599 100644 --- a/resources/extruders/hms434_tool_8.def.json +++ b/resources/extruders/hms434_tool_8.def.json @@ -2,24 +2,22 @@ "version": 2, "name": "Tool 8", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "hms434", "position": "7" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 7, "maximum_value": "8" }, + "machine_extruder_end_code": { "default_value": "\n;ending tool8" }, + "machine_extruder_start_code": { "default_value": "\n;changing to tool8" }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "material_diameter": { "default_value": 1.75 }, - "machine_extruder_start_code": { - "default_value": "\n;changing to tool8" - }, - "machine_extruder_end_code": { - "default_value": "\n;ending tool8" - } + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/ideagen3D_sapphire_plus_0.def.json b/resources/extruders/ideagen3D_sapphire_plus_0.def.json index ab14b131b6..fe621bf670 100644 --- a/resources/extruders/ideagen3D_sapphire_plus_0.def.json +++ b/resources/extruders/ideagen3D_sapphire_plus_0.def.json @@ -2,12 +2,13 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ideagen3D_sapphire_plus", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 } diff --git a/resources/extruders/imade3d_jellybox_2_extruder_0.def.json b/resources/extruders/imade3d_jellybox_2_extruder_0.def.json index ca25b62286..c15d0165d3 100644 --- a/resources/extruders/imade3d_jellybox_2_extruder_0.def.json +++ b/resources/extruders/imade3d_jellybox_2_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "imade3d_jellybox_2", "position": "0" }, - - "overrides": { + "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/imade3d_jellybox_extruder_0.def.json b/resources/extruders/imade3d_jellybox_extruder_0.def.json index 69c6d87d79..99e1f5577a 100644 --- a/resources/extruders/imade3d_jellybox_extruder_0.def.json +++ b/resources/extruders/imade3d_jellybox_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "imade3d_jellybox", "position": "0" }, - - "overrides": { + "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/inat_extruder_0.def.json b/resources/extruders/inat_extruder_0.def.json index 100b8c0bca..7876d08e7b 100644 --- a/resources/extruders/inat_extruder_0.def.json +++ b/resources/extruders/inat_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "inat_base", "position": "0" }, - - "overrides": { + "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/innovo_inventor_extruder_0.def.json b/resources/extruders/innovo_inventor_extruder_0.def.json index 8758f3d516..dd00bab22d 100644 --- a/resources/extruders/innovo_inventor_extruder_0.def.json +++ b/resources/extruders/innovo_inventor_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "innovo_inventor", "position": "0" }, - - "overrides": { + "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/jgaurora_a1_extruder_0.def.json b/resources/extruders/jgaurora_a1_extruder_0.def.json index f67d8d553e..2980e9e07a 100644 --- a/resources/extruders/jgaurora_a1_extruder_0.def.json +++ b/resources/extruders/jgaurora_a1_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "jgaurora_a1", "position": "0" }, - - "overrides": { + "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/jgaurora_a3s_extruder_0.def.json b/resources/extruders/jgaurora_a3s_extruder_0.def.json index 9a42d0da04..78601ea79a 100644 --- a/resources/extruders/jgaurora_a3s_extruder_0.def.json +++ b/resources/extruders/jgaurora_a3s_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "jgaurora_a3s", "position": "0" }, - - "overrides": { + "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/jgaurora_a5_extruder_0.def.json b/resources/extruders/jgaurora_a5_extruder_0.def.json index 5308c57934..bf3db0f2cf 100644 --- a/resources/extruders/jgaurora_a5_extruder_0.def.json +++ b/resources/extruders/jgaurora_a5_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "jgaurora_a5", "position": "0" }, - - "overrides": { + "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/jgaurora_a6_extruder_0.def.json b/resources/extruders/jgaurora_a6_extruder_0.def.json index dbe6248a7e..de8641c1fc 100644 --- a/resources/extruders/jgaurora_a6_extruder_0.def.json +++ b/resources/extruders/jgaurora_a6_extruder_0.def.json @@ -2,15 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - - "metadata": { + "metadata": + { "machine": "jgaurora_a6", "position": "0" }, - - "overrides": { + "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/jgaurora_jgmaker_magic_extruder_0.def.json b/resources/extruders/jgaurora_jgmaker_magic_extruder_0.def.json index 58beaa4cc8..94f6dff1ba 100644 --- a/resources/extruders/jgaurora_jgmaker_magic_extruder_0.def.json +++ b/resources/extruders/jgaurora_jgmaker_magic_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "jgaurora_jgmaker_magic", "position": "0" }, - - "overrides": { + "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/jgaurora_z_603s_extruder_0.def.json b/resources/extruders/jgaurora_z_603s_extruder_0.def.json index 647016d5ff..fa83087ac9 100644 --- a/resources/extruders/jgaurora_z_603s_extruder_0.def.json +++ b/resources/extruders/jgaurora_z_603s_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "jgaurora_z_603s", "position": "0" }, - - "overrides": { + "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/julia_extruder_0.def.json b/resources/extruders/julia_extruder_0.def.json index ef0ca83ac4..b094d4277e 100644 --- a/resources/extruders/julia_extruder_0.def.json +++ b/resources/extruders/julia_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "julia", "position": "0" }, - - "overrides": { + "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/kemiq_q2_beta_extruder_0.def.json b/resources/extruders/kemiq_q2_beta_extruder_0.def.json index 79d55223f3..42fda26ca4 100644 --- a/resources/extruders/kemiq_q2_beta_extruder_0.def.json +++ b/resources/extruders/kemiq_q2_beta_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "kemiq_q2_beta", "position": "0" }, - - "overrides": { + "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/kemiq_q2_gama_extruder_0.def.json b/resources/extruders/kemiq_q2_gama_extruder_0.def.json index ad6e6372ee..d8a409987b 100644 --- a/resources/extruders/kemiq_q2_gama_extruder_0.def.json +++ b/resources/extruders/kemiq_q2_gama_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "kemiq_q2_gama", "position": "0" }, - - "overrides": { + "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/key3d_tyro_extruder_0.def.json b/resources/extruders/key3d_tyro_extruder_0.def.json index f08ae351ab..09749e7cc6 100644 --- a/resources/extruders/key3d_tyro_extruder_0.def.json +++ b/resources/extruders/key3d_tyro_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "0.4mm Nozzle", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "key3d_tyro", "position": "0" }, - - "overrides": { + "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/kingroon_base_extruder_0.def.json b/resources/extruders/kingroon_base_extruder_0.def.json index bcb7e93260..5734723a73 100644 --- a/resources/extruders/kingroon_base_extruder_0.def.json +++ b/resources/extruders/kingroon_base_extruder_0.def.json @@ -2,15 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "kingroon_base", "position": "0" }, - - "overrides": { + "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/klema_180_m1_t1_extruder_1.def.json b/resources/extruders/klema_180_m1_t1_extruder_1.def.json new file mode 100644 index 0000000000..7bfdec8ddb --- /dev/null +++ b/resources/extruders/klema_180_m1_t1_extruder_1.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "klema_180", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/klema_250_m1_t1_extruder_1.def.json b/resources/extruders/klema_250_m1_t1_extruder_1.def.json new file mode 100644 index 0000000000..c81dc33ddc --- /dev/null +++ b/resources/extruders/klema_250_m1_t1_extruder_1.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "klema_250", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/klema_250_pro_m1_t2_extruder_1.def.json b/resources/extruders/klema_250_pro_m1_t2_extruder_1.def.json new file mode 100644 index 0000000000..941a822076 --- /dev/null +++ b/resources/extruders/klema_250_pro_m1_t2_extruder_1.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "klema_250_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/extruders/klema_250_twin_m1_t1_extruder_1.def.json b/resources/extruders/klema_250_twin_m1_t1_extruder_1.def.json new file mode 100644 index 0000000000..570c4bc0ce --- /dev/null +++ b/resources/extruders/klema_250_twin_m1_t1_extruder_1.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "klema_250_twin", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/klema_250_twin_m1_t1_extruder_2.def.json b/resources/extruders/klema_250_twin_m1_t1_extruder_2.def.json new file mode 100644 index 0000000000..63c5c45d03 --- /dev/null +++ b/resources/extruders/klema_250_twin_m1_t1_extruder_2.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": + { + "machine": "klema_250_twin", + "position": "1" + }, + "overrides": + { + "extruder_nr": { "default_value": 1 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/klema_500_m1_t1_extruder_1.def.json b/resources/extruders/klema_500_m1_t1_extruder_1.def.json new file mode 100644 index 0000000000..5f5292b77c --- /dev/null +++ b/resources/extruders/klema_500_m1_t1_extruder_1.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "klema_500", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/koonovo_base_extruder_0.def.json b/resources/extruders/koonovo_base_extruder_0.def.json index 34e3e3bffb..798d24edcb 100644 --- a/resources/extruders/koonovo_base_extruder_0.def.json +++ b/resources/extruders/koonovo_base_extruder_0.def.json @@ -2,15 +2,15 @@ "version": 2, "name": "Extruder 0", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "koonovo_base", "position": "0" }, - - "overrides": { + "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/koonovo_kn3_extruder_0.def.json b/resources/extruders/koonovo_kn3_extruder_0.def.json index e507f9fdc5..bf41f5890d 100644 --- a/resources/extruders/koonovo_kn3_extruder_0.def.json +++ b/resources/extruders/koonovo_kn3_extruder_0.def.json @@ -1,21 +1,18 @@ -{ - "version": 2, - "name": "Left Extruder", - "inherits": "fdmextruder", - "metadata": { - "machine": "koonovo_kn3", - "position": "0" - }, - - "overrides": { - "extruder_nr": { - "default_value": 0 - - }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_nozzle_size": { "default_value": 0.4}, - "material_diameter": { "default_value": 1.75 } - - } -} +{ + "version": 2, + "name": "Left Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "koonovo_kn3", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/koonovo_kn3_extruder_1.def.json b/resources/extruders/koonovo_kn3_extruder_1.def.json index 0aebad348a..ba57b38a56 100644 --- a/resources/extruders/koonovo_kn3_extruder_1.def.json +++ b/resources/extruders/koonovo_kn3_extruder_1.def.json @@ -1,21 +1,18 @@ -{ - "version": 2, - "name": "Right Extruder", - "inherits": "fdmextruder", - "metadata": { - "machine": "koonovo_kn3", - "position": "1" - }, - - "overrides": { - "extruder_nr": { - "default_value": 1 - - }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } - - } -} +{ + "version": 2, + "name": "Right Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "koonovo_kn3", + "position": "1" + }, + "overrides": + { + "extruder_nr": { "default_value": 1 }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/koonovo_kn5_extruder_0.def.json b/resources/extruders/koonovo_kn5_extruder_0.def.json index 53aa0a3ff1..a86604bf35 100644 --- a/resources/extruders/koonovo_kn5_extruder_0.def.json +++ b/resources/extruders/koonovo_kn5_extruder_0.def.json @@ -1,21 +1,18 @@ -{ - "version": 2, - "name": "Left Extruder", - "inherits": "fdmextruder", - "metadata": { - "machine": "koonovo_kn5", - "position": "0" - }, - - "overrides": { - "extruder_nr": { - "default_value": 0 - - }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_nozzle_size": { "default_value": 0.4}, - "material_diameter": { "default_value": 1.75 } - - } -} +{ + "version": 2, + "name": "Left Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "koonovo_kn5", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/koonovo_kn5_extruder_1.def.json b/resources/extruders/koonovo_kn5_extruder_1.def.json index d526c5715c..b3a94d48fe 100644 --- a/resources/extruders/koonovo_kn5_extruder_1.def.json +++ b/resources/extruders/koonovo_kn5_extruder_1.def.json @@ -1,22 +1,18 @@ -{ - "version": 2, - "name": "Right Extruder", - "inherits": "fdmextruder", - "metadata": { - "machine": "koonovo_kn5", - "position": "1" - }, - - "overrides": { - "extruder_nr": { - "default_value": 1 - - }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } - - - } -} +{ + "version": 2, + "name": "Right Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "koonovo_kn5", + "position": "1" + }, + "overrides": + { + "extruder_nr": { "default_value": 1 }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/kosher_dm_extruder.def.json b/resources/extruders/kosher_dm_extruder.def.json index 50ce46b434..bd961bd31e 100644 --- a/resources/extruders/kosher_dm_extruder.def.json +++ b/resources/extruders/kosher_dm_extruder.def.json @@ -2,19 +2,21 @@ "version": 2, "name": "Duplication Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "kosher_duplication", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, "machine_nozzle_offset_x": { "default_value": 0 }, - "machine_nozzle_offset_y": { "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/kosher_extruder_0.def.json b/resources/extruders/kosher_extruder_0.def.json index 9b1fa4d934..2f581dea49 100644 --- a/resources/extruders/kosher_extruder_0.def.json +++ b/resources/extruders/kosher_extruder_0.def.json @@ -2,26 +2,28 @@ "version": 2, "name": "Left Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "kosher", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": 0 }, - "machine_nozzle_offset_y": { "default_value": 0 }, - "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" }, "machine_extruder_end_pos_abs": { "default_value": true }, "machine_extruder_end_pos_x": { "value": -51 }, "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }, - "machine_extruder_start_code": { "default_value": "T0" } + "machine_extruder_start_code": { "default_value": "T0" }, + "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" }, + "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/kosher_extruder_1.def.json b/resources/extruders/kosher_extruder_1.def.json index 353d6bcea4..13964b62d6 100644 --- a/resources/extruders/kosher_extruder_1.def.json +++ b/resources/extruders/kosher_extruder_1.def.json @@ -2,26 +2,28 @@ "version": 2, "name": "Right Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "kosher", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "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" }, "machine_extruder_end_pos_abs": { "default_value": true }, "machine_extruder_end_pos_x": { "value": 257 }, "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }, - "machine_extruder_start_code": { "default_value": "T1" } + "machine_extruder_start_code": { "default_value": "T1" }, + "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" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/kosher_mm_extruder.def.json b/resources/extruders/kosher_mm_extruder.def.json index 8eacf54875..35ebfccb44 100644 --- a/resources/extruders/kosher_mm_extruder.def.json +++ b/resources/extruders/kosher_mm_extruder.def.json @@ -2,19 +2,21 @@ "version": 2, "name": "Mirror Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "kosher_mirror", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, "machine_nozzle_offset_x": { "default_value": 0 }, - "machine_nozzle_offset_y": { "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/kossel_mini_extruder_0.def.json b/resources/extruders/kossel_mini_extruder_0.def.json index 7da2cff3b1..ebdc0af8fb 100644 --- a/resources/extruders/kossel_mini_extruder_0.def.json +++ b/resources/extruders/kossel_mini_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "kossel_mini", "position": "0" }, - - "overrides": { + "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/kossel_pro_extruder_0.def.json b/resources/extruders/kossel_pro_extruder_0.def.json index 48c1180f84..1741393c59 100644 --- a/resources/extruders/kossel_pro_extruder_0.def.json +++ b/resources/extruders/kossel_pro_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "kossel_pro", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.35 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/kupido_extruder_0.def.json b/resources/extruders/kupido_extruder_0.def.json index 784e453bd1..758669b1c4 100644 --- a/resources/extruders/kupido_extruder_0.def.json +++ b/resources/extruders/kupido_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "kupido", "position": "0" }, - - "overrides": { + "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/leapfrog_bolt_pro_extruder_left.def.json b/resources/extruders/leapfrog_bolt_pro_extruder_left.def.json index 4ec859a60c..572299c750 100644 --- a/resources/extruders/leapfrog_bolt_pro_extruder_left.def.json +++ b/resources/extruders/leapfrog_bolt_pro_extruder_left.def.json @@ -2,20 +2,23 @@ "version": 2, "name": "Left extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "leapfrog_bolt_pro", "position": "1" }, - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, + "machine_extruder_start_code": { "default_value": "G1 Y-32 F12000\nG1 X6 F1000\nG1 X-32 F4000\nG1 X6" }, "machine_nozzle_head_distance": { "default_value": 22 }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": "G1 Y-32 F12000\nG1 X6 F1000\nG1 X-32 F4000\nG1 X6" } + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/leapfrog_bolt_pro_extruder_right.def.json b/resources/extruders/leapfrog_bolt_pro_extruder_right.def.json index fe27106afd..0db13104c3 100644 --- a/resources/extruders/leapfrog_bolt_pro_extruder_right.def.json +++ b/resources/extruders/leapfrog_bolt_pro_extruder_right.def.json @@ -2,20 +2,23 @@ "version": 2, "name": "Right extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "leapfrog_bolt_pro", "position": "0" }, - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, + "machine_extruder_start_code": { "default_value": "G1 Y-32 F12000\nG1 X296 F1000\nG1 X334 F4000\nG1 X296" }, "machine_nozzle_head_distance": { "default_value": 22 }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": { "default_value": "G1 Y-32 F12000\nG1 X296 F1000\nG1 X334 F4000\nG1 X296"} + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/leapfrog_creatr_hs_extruder_left.def.json b/resources/extruders/leapfrog_creatr_hs_extruder_left.def.json index 52f3848e47..348ca7cbd3 100644 --- a/resources/extruders/leapfrog_creatr_hs_extruder_left.def.json +++ b/resources/extruders/leapfrog_creatr_hs_extruder_left.def.json @@ -2,17 +2,17 @@ "version": 2, "name": "Left extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "leapfrog_creatr_hs", "position": "1" }, - "overrides": { - "extruder_nr": { - "default_value": 1 - }, - "machine_nozzle_size": { "default_value": 0.35 }, - "material_diameter": { "default_value": 1.75 }, + "overrides": + { + "extruder_nr": { "default_value": 1 }, "machine_nozzle_offset_x": { "default_value": 20 }, - "machine_nozzle_offset_y": { "default_value": 25 } + "machine_nozzle_offset_y": { "default_value": 25 }, + "machine_nozzle_size": { "default_value": 0.35 }, + "material_diameter": { "default_value": 1.75 } } } \ No newline at end of file diff --git a/resources/extruders/leapfrog_creatr_hs_extruder_right.def.json b/resources/extruders/leapfrog_creatr_hs_extruder_right.def.json index 6be5456210..a3d33e2149 100644 --- a/resources/extruders/leapfrog_creatr_hs_extruder_right.def.json +++ b/resources/extruders/leapfrog_creatr_hs_extruder_right.def.json @@ -2,17 +2,17 @@ "version": 2, "name": "Right extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "leapfrog_creatr_hs", "position": "0" }, - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { "default_value": 0.35 }, - "material_diameter": { "default_value": 1.75 }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, "machine_nozzle_offset_x": { "default_value": 35 }, - "machine_nozzle_offset_y": { "default_value": 25 } + "machine_nozzle_offset_y": { "default_value": 25 }, + "machine_nozzle_size": { "default_value": 0.35 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/leapfrog_creatr_hs_xl_extruder_left.def.json b/resources/extruders/leapfrog_creatr_hs_xl_extruder_left.def.json index 647fd12a2c..8b3473c661 100644 --- a/resources/extruders/leapfrog_creatr_hs_xl_extruder_left.def.json +++ b/resources/extruders/leapfrog_creatr_hs_xl_extruder_left.def.json @@ -2,17 +2,17 @@ "version": 2, "name": "Left extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "leapfrog_creatr_hs_xl", "position": "1" }, - "overrides": { - "extruder_nr": { - "default_value": 1 - }, - "machine_nozzle_size": { "default_value": 0.35 }, - "material_diameter": { "default_value": 1.75 }, + "overrides": + { + "extruder_nr": { "default_value": 1 }, "machine_nozzle_offset_x": { "default_value": 20 }, - "machine_nozzle_offset_y": { "default_value": 25 } + "machine_nozzle_offset_y": { "default_value": 25 }, + "machine_nozzle_size": { "default_value": 0.35 }, + "material_diameter": { "default_value": 1.75 } } } \ No newline at end of file diff --git a/resources/extruders/leapfrog_creatr_hs_xl_extruder_right.def.json b/resources/extruders/leapfrog_creatr_hs_xl_extruder_right.def.json index b866b684b1..80df0f6620 100644 --- a/resources/extruders/leapfrog_creatr_hs_xl_extruder_right.def.json +++ b/resources/extruders/leapfrog_creatr_hs_xl_extruder_right.def.json @@ -2,17 +2,17 @@ "version": 2, "name": "Right extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "leapfrog_creatr_hs_xl", "position": "0" }, - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { "default_value": 0.35 }, - "material_diameter": { "default_value": 1.75 }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, "machine_nozzle_offset_x": { "default_value": 35 }, - "machine_nozzle_offset_y": { "default_value": 25 } + "machine_nozzle_offset_y": { "default_value": 25 }, + "machine_nozzle_size": { "default_value": 0.35 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/liquid_extruder.def.json b/resources/extruders/liquid_extruder.def.json index d0fb0a4caf..9d56887b6e 100644 --- a/resources/extruders/liquid_extruder.def.json +++ b/resources/extruders/liquid_extruder.def.json @@ -2,13 +2,14 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "liquid", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/lnl3d_extruder_left.def.json b/resources/extruders/lnl3d_extruder_left.def.json new file mode 100755 index 0000000000..7e5d2dfe98 --- /dev/null +++ b/resources/extruders/lnl3d_extruder_left.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "Extruder Left", + "inherits": "fdmextruder", + "metadata": + { + "machine": "lnl3d_base", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "1" + }, + "machine_extruder_cooling_fan_number": { "value": 1 }, + "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_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" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/lnl3d_extruder_right.def.json b/resources/extruders/lnl3d_extruder_right.def.json new file mode 100755 index 0000000000..6b5e0993de --- /dev/null +++ b/resources/extruders/lnl3d_extruder_right.def.json @@ -0,0 +1,29 @@ +{ + "version": 2, + "name": "Extruder Right", + "inherits": "fdmextruder", + "metadata": + { + "machine": "lnl3d_base", + "position": "1" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_value": "1" + }, + "machine_extruder_cooling_fan_number": { "value": 1 }, + "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_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" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/longer_base_extruder_0.def.json b/resources/extruders/longer_base_extruder_0.def.json index f4b144ec87..585e76320a 100644 --- a/resources/extruders/longer_base_extruder_0.def.json +++ b/resources/extruders/longer_base_extruder_0.def.json @@ -2,15 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "longer_base", "position": "0" }, - - "overrides": { + "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/lotmaxx_sc10_extruder_0.def.json b/resources/extruders/lotmaxx_sc10_extruder_0.def.json index 2477d35cba..cadcfb86f0 100644 --- a/resources/extruders/lotmaxx_sc10_extruder_0.def.json +++ b/resources/extruders/lotmaxx_sc10_extruder_0.def.json @@ -2,12 +2,13 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "lotmaxx_sc10", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 } diff --git a/resources/extruders/lotmaxx_sc20_extruder_0.def.json b/resources/extruders/lotmaxx_sc20_extruder_0.def.json index d02af04a57..f080aa3452 100644 --- a/resources/extruders/lotmaxx_sc20_extruder_0.def.json +++ b/resources/extruders/lotmaxx_sc20_extruder_0.def.json @@ -2,12 +2,13 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "lotmaxx_sc20", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 } diff --git a/resources/extruders/lotmaxx_sc60_extruder_left.def.json b/resources/extruders/lotmaxx_sc60_extruder_left.def.json index 430cea8106..d16d93d122 100644 --- a/resources/extruders/lotmaxx_sc60_extruder_left.def.json +++ b/resources/extruders/lotmaxx_sc60_extruder_left.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "lotmaxx_sc60", "position": "0" }, - - "overrides": { + "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/lotmaxx_sc60_extruder_right.def.json b/resources/extruders/lotmaxx_sc60_extruder_right.def.json index a5a96c993b..33360bea52 100644 --- a/resources/extruders/lotmaxx_sc60_extruder_right.def.json +++ b/resources/extruders/lotmaxx_sc60_extruder_right.def.json @@ -2,16 +2,19 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "lotmaxx_sc60", "position": "1" }, - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_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/lulzbot_mini_2_se_extruder.def.json b/resources/extruders/lulzbot_mini_2_se_extruder.def.json index 135b247b67..94f63d9688 100644 --- a/resources/extruders/lulzbot_mini_2_se_extruder.def.json +++ b/resources/extruders/lulzbot_mini_2_se_extruder.def.json @@ -2,24 +2,26 @@ "version": 2, "name": "Lulzbot Mini 2 | SE | 0.5mm", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "lulzbot_mini_2_se", "position": "0" }, - - "overrides": { - "extruder_nr": { + "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.5 }, + "machine_extruder_end_pos_abs": { "default_value": false }, + "machine_extruder_end_pos_x": { "default_value": 0 }, + "machine_extruder_end_pos_y": { "default_value": 0 }, "machine_extruder_start_pos_abs": { "default_value": false }, "machine_extruder_start_pos_x": { "default_value": 0 }, "machine_extruder_start_pos_y": { "default_value": 0 }, - "machine_extruder_end_pos_abs": { "default_value": false }, - "machine_extruder_end_pos_x": { "default_value": 0 }, - "machine_extruder_end_pos_y": { "default_value": 0 } + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.5 } } -} +} \ No newline at end of file diff --git a/resources/extruders/lulzbot_mini_2_sl_extruder.def.json b/resources/extruders/lulzbot_mini_2_sl_extruder.def.json index 12faf247e5..3b27f79741 100644 --- a/resources/extruders/lulzbot_mini_2_sl_extruder.def.json +++ b/resources/extruders/lulzbot_mini_2_sl_extruder.def.json @@ -2,24 +2,26 @@ "version": 2, "name": "Lulzbot Mini 2 | SL | 0.25mm (Micro)", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "lulzbot_mini_2_sl", "position": "0" }, - - "overrides": { - "extruder_nr": { + "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.25 }, + "machine_extruder_end_pos_abs": { "default_value": false }, + "machine_extruder_end_pos_x": { "default_value": 0 }, + "machine_extruder_end_pos_y": { "default_value": 0 }, "machine_extruder_start_pos_abs": { "default_value": false }, "machine_extruder_start_pos_x": { "default_value": 0 }, "machine_extruder_start_pos_y": { "default_value": 0 }, - "machine_extruder_end_pos_abs": { "default_value": false }, - "machine_extruder_end_pos_x": { "default_value": 0 }, - "machine_extruder_end_pos_y": { "default_value": 0 } + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.25 } } -} +} \ No newline at end of file diff --git a/resources/extruders/lulzbot_taz_pro_dual_extruder_0.def.json b/resources/extruders/lulzbot_taz_pro_dual_extruder_0.def.json index 1bc148c583..5134958293 100644 --- a/resources/extruders/lulzbot_taz_pro_dual_extruder_0.def.json +++ b/resources/extruders/lulzbot_taz_pro_dual_extruder_0.def.json @@ -2,24 +2,26 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "lulzbot_taz_pro_dual", "position": "0" }, - - "overrides": { - "extruder_nr": { + "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.5 }, + "machine_extruder_end_pos_abs": { "default_value": false }, + "machine_extruder_end_pos_x": { "default_value": 0 }, + "machine_extruder_end_pos_y": { "default_value": 0 }, "machine_extruder_start_pos_abs": { "default_value": false }, "machine_extruder_start_pos_x": { "default_value": 0 }, "machine_extruder_start_pos_y": { "default_value": 0 }, - "machine_extruder_end_pos_abs": { "default_value": false }, - "machine_extruder_end_pos_x": { "default_value": 0 }, - "machine_extruder_end_pos_y": { "default_value": 0 } + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.5 } } -} +} \ No newline at end of file diff --git a/resources/extruders/lulzbot_taz_pro_dual_extruder_1.def.json b/resources/extruders/lulzbot_taz_pro_dual_extruder_1.def.json index 3d193426cb..69ac843d1f 100644 --- a/resources/extruders/lulzbot_taz_pro_dual_extruder_1.def.json +++ b/resources/extruders/lulzbot_taz_pro_dual_extruder_1.def.json @@ -2,29 +2,37 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "lulzbot_taz_pro_dual", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0 }, - "machine_nozzle_offset_y": { "default_value": 0 }, - "machine_nozzle_size": { "default_value": 0.5 }, - "nozzle_disallowed_areas": { - "default_value": [ - [[-115, 140], [ -140, 140], [ -140, -140], [-115, -140]] - ] - }, + "machine_extruder_end_pos_abs": { "default_value": false }, + "machine_extruder_end_pos_x": { "default_value": 0 }, + "machine_extruder_end_pos_y": { "default_value": 0 }, "machine_extruder_start_pos_abs": { "default_value": false }, "machine_extruder_start_pos_x": { "default_value": 0 }, "machine_extruder_start_pos_y": { "default_value": 0 }, - "machine_extruder_end_pos_abs": { "default_value": false }, - "machine_extruder_end_pos_x": { "default_value": 0 }, - "machine_extruder_end_pos_y": { "default_value": 0 } + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.5 }, + "nozzle_disallowed_areas": + { + "default_value": [ + [ + [-115, 140], + [-140, 140], + [-140, -140], + [-115, -140] + ] + ] + } } -} +} \ No newline at end of file diff --git a/resources/extruders/makeR_pegasus_extruder_0.def.json b/resources/extruders/makeR_pegasus_extruder_0.def.json index c17c51d599..854aa80f32 100644 --- a/resources/extruders/makeR_pegasus_extruder_0.def.json +++ b/resources/extruders/makeR_pegasus_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "makeR_pegasus", "position": "0" }, - - "overrides": { + "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/makeR_prusa_tairona_i3_extruder_0.def.json b/resources/extruders/makeR_prusa_tairona_i3_extruder_0.def.json index 278981f355..6de907a802 100644 --- a/resources/extruders/makeR_prusa_tairona_i3_extruder_0.def.json +++ b/resources/extruders/makeR_prusa_tairona_i3_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "makeR_prusa_tairona_i3", "position": "0" }, - - "overrides": { + "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/makeblock_mcreate_extruder_0.def.json b/resources/extruders/makeblock_mcreate_extruder_0.def.json index 060ea634f8..1a6901a772 100644 --- a/resources/extruders/makeblock_mcreate_extruder_0.def.json +++ b/resources/extruders/makeblock_mcreate_extruder_0.def.json @@ -2,19 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "makeblock_mcreate", "position": "0" }, - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - } + "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/makeit_dual_1st.def.json b/resources/extruders/makeit_dual_1st.def.json index 16374b40d1..61dd944335 100644 --- a/resources/extruders/makeit_dual_1st.def.json +++ b/resources/extruders/makeit_dual_1st.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "1st Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "makeit_pro_m", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - + "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_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" }, - "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_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/makeit_dual_2nd.def.json b/resources/extruders/makeit_dual_2nd.def.json index 562cfcbc40..1147e1da96 100644 --- a/resources/extruders/makeit_dual_2nd.def.json +++ b/resources/extruders/makeit_dual_2nd.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "2nd Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "makeit_pro_m", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - + "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_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" }, - "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_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/makeit_l_dual_1st.def.json b/resources/extruders/makeit_l_dual_1st.def.json index 8fbc2944b1..0e549945a2 100644 --- a/resources/extruders/makeit_l_dual_1st.def.json +++ b/resources/extruders/makeit_l_dual_1st.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "1st Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "makeit_pro_l", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - + "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_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" }, - "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_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/makeit_l_dual_2nd.def.json b/resources/extruders/makeit_l_dual_2nd.def.json index e163e9565a..33c27fecbd 100644 --- a/resources/extruders/makeit_l_dual_2nd.def.json +++ b/resources/extruders/makeit_l_dual_2nd.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "2nd Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "makeit_pro_l", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - + "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_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" }, - "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_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/makeit_mx_dual_1st.def.json b/resources/extruders/makeit_mx_dual_1st.def.json index 48a15bb4e7..1d1adf2ff6 100644 --- a/resources/extruders/makeit_mx_dual_1st.def.json +++ b/resources/extruders/makeit_mx_dual_1st.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "1st Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "makeit_pro_mx", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - + "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_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" }, - "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_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/makeit_mx_dual_2nd.def.json b/resources/extruders/makeit_mx_dual_2nd.def.json index b17b1b9051..9db1ea1732 100644 --- a/resources/extruders/makeit_mx_dual_2nd.def.json +++ b/resources/extruders/makeit_mx_dual_2nd.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "2nd Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "makeit_pro_mx", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - + "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_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" }, - "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_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/maker_made_300x_extruder_0.def.json b/resources/extruders/maker_made_300x_extruder_0.def.json index a35c47b395..632dd4fa79 100644 --- a/resources/extruders/maker_made_300x_extruder_0.def.json +++ b/resources/extruders/maker_made_300x_extruder_0.def.json @@ -1,15 +1,16 @@ -{ - "name": "Extruder 1", - "version": 2, - "inherits": "fdmextruder", - "metadata": { - "machine": "maker_made_300x", - "position": "0" - }, - - "overrides": { - "extruder_nr": { "default_value": 0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } - } -} +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "maker_made_300x", + "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/maker_starter_extruder_0.def.json b/resources/extruders/maker_starter_extruder_0.def.json index 76e2f74a4c..1a8877f8ef 100644 --- a/resources/extruders/maker_starter_extruder_0.def.json +++ b/resources/extruders/maker_starter_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "maker_starter", "position": "0" }, - - "overrides": { + "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/makerbotreplicator_extruder_0.def.json b/resources/extruders/makerbotreplicator_extruder_0.def.json index 595134d788..dc0895e7b0 100644 --- a/resources/extruders/makerbotreplicator_extruder_0.def.json +++ b/resources/extruders/makerbotreplicator_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "makerbotreplicator", "position": "0" }, - - "overrides": { + "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/makergear_m2_v3b.def.json b/resources/extruders/makergear_m2_v3b.def.json index c9ccebdb27..125ea4dc82 100644 --- a/resources/extruders/makergear_m2_v3b.def.json +++ b/resources/extruders/makergear_m2_v3b.def.json @@ -2,12 +2,13 @@ "version": 2, "name": "MakerGear M2 V3B", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "makergear_m2", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 } diff --git a/resources/extruders/malyan_m180_extruder_0.def.json b/resources/extruders/malyan_m180_extruder_0.def.json index 04bc70ce55..a8db6ff3a9 100644 --- a/resources/extruders/malyan_m180_extruder_0.def.json +++ b/resources/extruders/malyan_m180_extruder_0.def.json @@ -2,16 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "malyan_m180", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { - "default_value": 1.75 - } + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/malyan_m200_extruder_0.def.json b/resources/extruders/malyan_m200_extruder_0.def.json index 88d99fb426..c1f70bf9da 100644 --- a/resources/extruders/malyan_m200_extruder_0.def.json +++ b/resources/extruders/malyan_m200_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "malyan_m200", "position": "0" }, - - "overrides": { + "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/mankati_fullscale_xt_plus_extruder_0.def.json b/resources/extruders/mankati_fullscale_xt_plus_extruder_0.def.json index 4cb893336e..53a88d2641 100644 --- a/resources/extruders/mankati_fullscale_xt_plus_extruder_0.def.json +++ b/resources/extruders/mankati_fullscale_xt_plus_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "mankati_fullscale_xt_plus", "position": "0" }, - - "overrides": { + "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/mbot3d_grid2_extruder_0.def.json b/resources/extruders/mbot3d_grid2_extruder_0.def.json index 7bfd5ffa9e..525829a0d4 100644 --- a/resources/extruders/mbot3d_grid2_extruder_0.def.json +++ b/resources/extruders/mbot3d_grid2_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "mbot3d_grid2plus", "position": "0" }, - - "overrides": { + "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/mbot3d_grid2_extruder_left.def.json b/resources/extruders/mbot3d_grid2_extruder_left.def.json index e8368cd1bb..e06e1a1b45 100644 --- a/resources/extruders/mbot3d_grid2_extruder_left.def.json +++ b/resources/extruders/mbot3d_grid2_extruder_left.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "mbot3d_grid2plus_dual", "position": "0" }, - - "overrides": { - "extruder_nr": { + "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 }, - + "machine_extruder_end_pos_abs": { "default_value": true }, + "machine_extruder_end_pos_x": { "default_value": 200 }, + "machine_extruder_end_pos_y": { "default_value": 200 }, "machine_extruder_start_pos_abs": { "default_value": true }, "machine_extruder_start_pos_x": { "default_value": 200 }, "machine_extruder_start_pos_y": { "default_value": 200 }, - "machine_extruder_end_pos_abs": { "default_value": true }, - "machine_extruder_end_pos_x": { "default_value": 200 }, - "machine_extruder_end_pos_y": { "default_value": 200 } + "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/mbot3d_grid2_extruder_right.def.json b/resources/extruders/mbot3d_grid2_extruder_right.def.json index fed6cc7333..67628face7 100644 --- a/resources/extruders/mbot3d_grid2_extruder_right.def.json +++ b/resources/extruders/mbot3d_grid2_extruder_right.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "mbot3d_grid2plus_dual", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "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 }, - + "machine_extruder_end_pos_abs": { "default_value": true }, + "machine_extruder_end_pos_x": { "default_value": 200 }, + "machine_extruder_end_pos_y": { "default_value": 200 }, "machine_extruder_start_pos_abs": { "default_value": true }, "machine_extruder_start_pos_x": { "default_value": 200 }, "machine_extruder_start_pos_y": { "default_value": 200 }, - "machine_extruder_end_pos_abs": { "default_value": true }, - "machine_extruder_end_pos_x": { "default_value": 200 }, - "machine_extruder_end_pos_y": { "default_value": 200 } + "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/mbot3d_grid4_extruder_0.def.json b/resources/extruders/mbot3d_grid4_extruder_0.def.json index a75145fb74..7fbac0e9f2 100644 --- a/resources/extruders/mbot3d_grid4_extruder_0.def.json +++ b/resources/extruders/mbot3d_grid4_extruder_0.def.json @@ -2,16 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "mbot3d_grid4", "position": "0" }, - - "overrides": { - "extruder_nr": { - "default_value": 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/mbot3d_grid4_extruder_left.def.json b/resources/extruders/mbot3d_grid4_extruder_left.def.json index fb568c6eb6..657fd2533b 100644 --- a/resources/extruders/mbot3d_grid4_extruder_left.def.json +++ b/resources/extruders/mbot3d_grid4_extruder_left.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "mbot3d_grid4_dual", "position": "0" }, - - "overrides": { - "extruder_nr": { + "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 }, - + "machine_extruder_end_pos_abs": { "default_value": true }, + "machine_extruder_end_pos_x": { "default_value": 200 }, + "machine_extruder_end_pos_y": { "default_value": 200 }, "machine_extruder_start_pos_abs": { "default_value": true }, "machine_extruder_start_pos_x": { "default_value": 200 }, "machine_extruder_start_pos_y": { "default_value": 200 }, - "machine_extruder_end_pos_abs": { "default_value": true }, - "machine_extruder_end_pos_x": { "default_value": 200 }, - "machine_extruder_end_pos_y": { "default_value": 200 } + "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/mbot3d_grid4_extruder_right.def.json b/resources/extruders/mbot3d_grid4_extruder_right.def.json index 7b36ff22e4..5c1646d18e 100644 --- a/resources/extruders/mbot3d_grid4_extruder_right.def.json +++ b/resources/extruders/mbot3d_grid4_extruder_right.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "mbot3d_grid4_dual", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "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 }, - + "machine_extruder_end_pos_abs": { "default_value": true }, + "machine_extruder_end_pos_x": { "default_value": 200 }, + "machine_extruder_end_pos_y": { "default_value": 200 }, "machine_extruder_start_pos_abs": { "default_value": true }, "machine_extruder_start_pos_x": { "default_value": 200 }, "machine_extruder_start_pos_y": { "default_value": 200 }, - "machine_extruder_end_pos_abs": { "default_value": true }, - "machine_extruder_end_pos_x": { "default_value": 200 }, - "machine_extruder_end_pos_y": { "default_value": 200 } + "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/mendel90_extruder_0.def.json b/resources/extruders/mendel90_extruder_0.def.json index 2ea4d9a7de..0701164a65 100644 --- a/resources/extruders/mendel90_extruder_0.def.json +++ b/resources/extruders/mendel90_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "mendel90", "position": "0" }, - - "overrides": { + "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/mingda_base_extruder_0.def.json b/resources/extruders/mingda_base_extruder_0.def.json index 034f6ce45f..2a63d15eb6 100644 --- a/resources/extruders/mingda_base_extruder_0.def.json +++ b/resources/extruders/mingda_base_extruder_0.def.json @@ -2,15 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "mingda_base", "position": "0" }, - - "overrides": { + "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/mixware_hyper_k_extruder_0.def.json b/resources/extruders/mixware_hyper_k_extruder_0.def.json new file mode 100644 index 0000000000..0aafdbde42 --- /dev/null +++ b/resources/extruders/mixware_hyper_k_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "mixware_hyper_k", + "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/mixware_hyper_s_extruder_0.def.json b/resources/extruders/mixware_hyper_s_extruder_0.def.json index 09971ee688..3e90bba293 100644 --- a/resources/extruders/mixware_hyper_s_extruder_0.def.json +++ b/resources/extruders/mixware_hyper_s_extruder_0.def.json @@ -1,15 +1,16 @@ { "version": 2, - "name": "Extruder 1", + "name": "Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "mixware_hyper_s", "position": "0" }, - - "overrides": { + "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/mixware_vulcan_extruder_0.def.json b/resources/extruders/mixware_vulcan_extruder_0.def.json new file mode 100644 index 0000000000..0e28285e48 --- /dev/null +++ b/resources/extruders/mixware_vulcan_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "mixware_vulcan", + "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/mixware_wand_extruder_0.def.json b/resources/extruders/mixware_wand_extruder_0.def.json new file mode 100644 index 0000000000..8ba35c5898 --- /dev/null +++ b/resources/extruders/mixware_wand_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "mixware_wand", + "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/modix_v3_extruder_0.def.json b/resources/extruders/modix_v3_extruder_0.def.json new file mode 100644 index 0000000000..7b983e06b2 --- /dev/null +++ b/resources/extruders/modix_v3_extruder_0.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "Left Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "modix_v3_base", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "1" + }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/modix_v3_extruder_1.def.json b/resources/extruders/modix_v3_extruder_1.def.json new file mode 100644 index 0000000000..0d218e8168 --- /dev/null +++ b/resources/extruders/modix_v3_extruder_1.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "Right Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "modix_v3_base", + "position": "1" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_value": "1" + }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/modix_v4_extruder_0.def.json b/resources/extruders/modix_v4_extruder_0.def.json new file mode 100644 index 0000000000..bce44abe0f --- /dev/null +++ b/resources/extruders/modix_v4_extruder_0.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "Left Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "modix_v4_base", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "1" + }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/modix_v4_extruder_1.def.json b/resources/extruders/modix_v4_extruder_1.def.json new file mode 100644 index 0000000000..bae7499c45 --- /dev/null +++ b/resources/extruders/modix_v4_extruder_1.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "Right Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "modix_v4_base", + "position": "1" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_value": "1" + }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/monoprice_select_mini_v1_extruder_0.def.json b/resources/extruders/monoprice_select_mini_v1_extruder_0.def.json index 023bd6b27c..35d7168f04 100644 --- a/resources/extruders/monoprice_select_mini_v1_extruder_0.def.json +++ b/resources/extruders/monoprice_select_mini_v1_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "monoprice_select_mini_v1", "position": "0" }, - - "overrides": { + "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/monoprice_select_mini_v2_extruder_0.def.json b/resources/extruders/monoprice_select_mini_v2_extruder_0.def.json index 79ba110701..a6c9fc26f9 100644 --- a/resources/extruders/monoprice_select_mini_v2_extruder_0.def.json +++ b/resources/extruders/monoprice_select_mini_v2_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "monoprice_select_mini_v2", "position": "0" }, - - "overrides": { + "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/mp_mini_delta_extruder_0.def.json b/resources/extruders/mp_mini_delta_extruder_0.def.json index b4eab5c7a2..9250ed44e7 100644 --- a/resources/extruders/mp_mini_delta_extruder_0.def.json +++ b/resources/extruders/mp_mini_delta_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 0", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "mp_mini_delta", "position": "0" }, - - "overrides": { + "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/mp_mini_delta_v2_extruder_0.def.json b/resources/extruders/mp_mini_delta_v2_extruder_0.def.json index 022ace632f..55d6c89b33 100644 --- a/resources/extruders/mp_mini_delta_v2_extruder_0.def.json +++ b/resources/extruders/mp_mini_delta_v2_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 0", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "mp_mini_delta_v2", "position": "0" }, - - "overrides": { + "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/nps_extruder_0.def.json b/resources/extruders/nps_extruder_0.def.json new file mode 100644 index 0000000000..89039443ef --- /dev/null +++ b/resources/extruders/nps_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "nps", + "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/nwa3d_a31_extruder_0.def.json b/resources/extruders/nwa3d_a31_extruder_0.def.json index de1938956a..dea524c940 100644 --- a/resources/extruders/nwa3d_a31_extruder_0.def.json +++ b/resources/extruders/nwa3d_a31_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Standard 0.4mm", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "nwa3d_a31", "position": "0" }, - - "overrides": { + "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/nwa3d_a5_extruder_0.def.json b/resources/extruders/nwa3d_a5_extruder_0.def.json index 9131480732..d53fd941b3 100644 --- a/resources/extruders/nwa3d_a5_extruder_0.def.json +++ b/resources/extruders/nwa3d_a5_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Regular 0.4mm Nozzle", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "nwa3d_a5", "position": "0" }, - - "overrides": { + "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/ord_extruder_0.def.json b/resources/extruders/ord_extruder_0.def.json index 61317c4a17..160e869fa4 100644 --- a/resources/extruders/ord_extruder_0.def.json +++ b/resources/extruders/ord_extruder_0.def.json @@ -2,13 +2,15 @@ "version": 2, "name": "0", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ord", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "4" }, @@ -17,4 +19,4 @@ "machine_nozzle_size": { "default_value": 0.35 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/ord_extruder_1.def.json b/resources/extruders/ord_extruder_1.def.json index 43bc11fa71..f7d22fffc0 100644 --- a/resources/extruders/ord_extruder_1.def.json +++ b/resources/extruders/ord_extruder_1.def.json @@ -2,13 +2,15 @@ "version": 2, "name": "1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ord", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "4" }, @@ -17,4 +19,4 @@ "machine_nozzle_size": { "default_value": 0.35 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/ord_extruder_2.def.json b/resources/extruders/ord_extruder_2.def.json index 84bcbd5332..a959ea1f49 100644 --- a/resources/extruders/ord_extruder_2.def.json +++ b/resources/extruders/ord_extruder_2.def.json @@ -2,13 +2,15 @@ "version": 2, "name": "2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ord", "position": "2" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 2, "maximum_value": "4" }, @@ -17,4 +19,4 @@ "machine_nozzle_size": { "default_value": 0.35 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/ord_extruder_3.def.json b/resources/extruders/ord_extruder_3.def.json index db81f82b78..2cb1fc5454 100644 --- a/resources/extruders/ord_extruder_3.def.json +++ b/resources/extruders/ord_extruder_3.def.json @@ -2,13 +2,15 @@ "version": 2, "name": "3", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ord", "position": "3" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 3, "maximum_value": "4" }, @@ -17,4 +19,4 @@ "machine_nozzle_size": { "default_value": 0.35 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/ord_extruder_4.def.json b/resources/extruders/ord_extruder_4.def.json index 2ca7609e06..f9f693e977 100644 --- a/resources/extruders/ord_extruder_4.def.json +++ b/resources/extruders/ord_extruder_4.def.json @@ -2,13 +2,15 @@ "version": 2, "name": "4", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ord", "position": "4" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 4, "maximum_value": "4" }, @@ -17,4 +19,4 @@ "machine_nozzle_size": { "default_value": 0.35 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/pbr3d_g1_extruder_0.def.json b/resources/extruders/pbr3d_g1_extruder_0.def.json index 3a79fe4f20..c52e61c87e 100644 --- a/resources/extruders/pbr3d_g1_extruder_0.def.json +++ b/resources/extruders/pbr3d_g1_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "pbr3d_g1", "position": "0" }, - - "overrides": { + "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/peopoly_moai_extruder_0.def.json b/resources/extruders/peopoly_moai_extruder_0.def.json index 1acf5b499f..f6a0f8dc29 100644 --- a/resources/extruders/peopoly_moai_extruder_0.def.json +++ b/resources/extruders/peopoly_moai_extruder_0.def.json @@ -2,17 +2,19 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "peopoly_moai", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.067 }, - "material_diameter": { - "enabled": false, - "default_value": 1.75 + "material_diameter": + { + "default_value": 1.75, + "enabled": false } } -} +} \ No newline at end of file diff --git a/resources/extruders/predator_extruder_0.def.json b/resources/extruders/predator_extruder_0.def.json index 59574ae69f..f78706952d 100644 --- a/resources/extruders/predator_extruder_0.def.json +++ b/resources/extruders/predator_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 0", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "predator", "position": "0" }, - - "overrides": { + "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/printrbot_play_extruder_0.def.json b/resources/extruders/printrbot_play_extruder_0.def.json index 682810c8d8..15fe9179fe 100644 --- a/resources/extruders/printrbot_play_extruder_0.def.json +++ b/resources/extruders/printrbot_play_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "printrbot_play", "position": "0" }, - - "overrides": { + "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/printrbot_play_heated_extruder_0.def.json b/resources/extruders/printrbot_play_heated_extruder_0.def.json index 72335e82d6..8949ac253a 100644 --- a/resources/extruders/printrbot_play_heated_extruder_0.def.json +++ b/resources/extruders/printrbot_play_heated_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "printrbot_play_heated", "position": "0" }, - - "overrides": { + "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/printrbot_simple_extended_extruder_0.def.json b/resources/extruders/printrbot_simple_extended_extruder_0.def.json index b50a142d2e..81a05a5974 100644 --- a/resources/extruders/printrbot_simple_extended_extruder_0.def.json +++ b/resources/extruders/printrbot_simple_extended_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "printrbot_simple_extended", "position": "0" }, - - "overrides": { + "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/printrbot_simple_extruder_0.def.json b/resources/extruders/printrbot_simple_extruder_0.def.json index 4fa5d7fbf2..fd414912dc 100644 --- a/resources/extruders/printrbot_simple_extruder_0.def.json +++ b/resources/extruders/printrbot_simple_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "printrbot_simple", "position": "0" }, - - "overrides": { + "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/printrbot_simple_makers_kit_extruder_0.def.json b/resources/extruders/printrbot_simple_makers_kit_extruder_0.def.json index a58195fdfb..cd0ca9b74b 100644 --- a/resources/extruders/printrbot_simple_makers_kit_extruder_0.def.json +++ b/resources/extruders/printrbot_simple_makers_kit_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "printrbot_simple_makers_kit", "position": "0" }, - - "overrides": { + "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/prusa_i3_extruder_0.def.json b/resources/extruders/prusa_i3_extruder_0.def.json index dbb01032b8..42e8f36461 100644 --- a/resources/extruders/prusa_i3_extruder_0.def.json +++ b/resources/extruders/prusa_i3_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "prusa_i3", "position": "0" }, - - "overrides": { + "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/prusa_i3_mk2_extruder_0.def.json b/resources/extruders/prusa_i3_mk2_extruder_0.def.json index e802687062..78251aa61d 100644 --- a/resources/extruders/prusa_i3_mk2_extruder_0.def.json +++ b/resources/extruders/prusa_i3_mk2_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "prusa_i3_mk2", "position": "0" }, - - "overrides": { + "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/prusa_i3_mk3_extruder_0.def.json b/resources/extruders/prusa_i3_mk3_extruder_0.def.json index 29156f0d70..cf489aaf3c 100644 --- a/resources/extruders/prusa_i3_mk3_extruder_0.def.json +++ b/resources/extruders/prusa_i3_mk3_extruder_0.def.json @@ -2,12 +2,13 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "prusa_i3_mk3", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 } diff --git a/resources/extruders/prusa_i3_xl_extruder_0.def.json b/resources/extruders/prusa_i3_xl_extruder_0.def.json index c4125b36ee..4a28924f9b 100644 --- a/resources/extruders/prusa_i3_xl_extruder_0.def.json +++ b/resources/extruders/prusa_i3_xl_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "prusa_i3_xl", "position": "0" }, - - "overrides": { + "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/punchtec_connect_xl_extruder_0.def.json b/resources/extruders/punchtec_connect_xl_extruder_0.def.json index f286140167..3524ff6fba 100644 --- a/resources/extruders/punchtec_connect_xl_extruder_0.def.json +++ b/resources/extruders/punchtec_connect_xl_extruder_0.def.json @@ -2,13 +2,15 @@ "version": 2, "name": "0", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "punchtec_connect_xl", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, @@ -16,4 +18,4 @@ "machine_nozzle_offset_y": { "default_value": 0.0 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/punchtec_connect_xl_extruder_1.def.json b/resources/extruders/punchtec_connect_xl_extruder_1.def.json index 47d28882cf..0bfa950060 100644 --- a/resources/extruders/punchtec_connect_xl_extruder_1.def.json +++ b/resources/extruders/punchtec_connect_xl_extruder_1.def.json @@ -2,13 +2,15 @@ "version": 2, "name": "1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "punchtec_connect_xl", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, @@ -16,4 +18,4 @@ "machine_nozzle_offset_y": { "default_value": 0.0 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/raise3D_N2_dual_extruder_0.def.json b/resources/extruders/raise3D_N2_dual_extruder_0.def.json index 9294a73933..27cc06fea8 100644 --- a/resources/extruders/raise3D_N2_dual_extruder_0.def.json +++ b/resources/extruders/raise3D_N2_dual_extruder_0.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "Left Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "raise3D_N2_dual", "position": "0" }, - - "overrides": { - "extruder_nr": { + "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 }, - + "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_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" }, - "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_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/raise3D_N2_dual_extruder_1.def.json b/resources/extruders/raise3D_N2_dual_extruder_1.def.json index e09cb6b9fc..7397de74a2 100644 --- a/resources/extruders/raise3D_N2_dual_extruder_1.def.json +++ b/resources/extruders/raise3D_N2_dual_extruder_1.def.json @@ -2,28 +2,27 @@ "version": 2, "name": "Right Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "raise3D_N2_dual", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 24.8 }, - "machine_nozzle_offset_y": { "default_value": 0.6 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - + "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_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" }, - "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_nozzle_offset_x": { "default_value": 24.8 }, + "machine_nozzle_offset_y": { "default_value": 0.6 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} - - +} \ No newline at end of file diff --git a/resources/extruders/raise3D_N2_plus_dual_extruder_0.def.json b/resources/extruders/raise3D_N2_plus_dual_extruder_0.def.json index d8821204f0..e1f0a6ff27 100644 --- a/resources/extruders/raise3D_N2_plus_dual_extruder_0.def.json +++ b/resources/extruders/raise3D_N2_plus_dual_extruder_0.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "Left Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "raise3D_N2_plus_dual", "position": "0" }, - - "overrides": { - "extruder_nr": { + "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 }, - + "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_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" }, - "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_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/raise3D_N2_plus_dual_extruder_1.def.json b/resources/extruders/raise3D_N2_plus_dual_extruder_1.def.json index 0a6ded63a3..2b371c71e4 100644 --- a/resources/extruders/raise3D_N2_plus_dual_extruder_1.def.json +++ b/resources/extruders/raise3D_N2_plus_dual_extruder_1.def.json @@ -2,28 +2,27 @@ "version": 2, "name": "Right Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "raise3D_N2_plus_dual", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 24.8 }, - "machine_nozzle_offset_y": { "default_value": 0.6 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - + "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_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" }, - "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_nozzle_offset_x": { "default_value": 24.8 }, + "machine_nozzle_offset_y": { "default_value": 0.6 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} - - +} \ No newline at end of file diff --git a/resources/extruders/raise3D_N2_plus_single_extruder_0.def.json b/resources/extruders/raise3D_N2_plus_single_extruder_0.def.json index efb071cb8c..38bdbf4328 100644 --- a/resources/extruders/raise3D_N2_plus_single_extruder_0.def.json +++ b/resources/extruders/raise3D_N2_plus_single_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "raise3D_N2_plus_single", "position": "0" }, - - "overrides": { + "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/raise3D_N2_single_extruder_0.def.json b/resources/extruders/raise3D_N2_single_extruder_0.def.json index 399d577110..a96056bc85 100644 --- a/resources/extruders/raise3D_N2_single_extruder_0.def.json +++ b/resources/extruders/raise3D_N2_single_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "raise3D_N2_single", "position": "0" }, - - "overrides": { + "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/renkforce_pro7dual_1st.def.json b/resources/extruders/renkforce_pro7dual_1st.def.json new file mode 100755 index 0000000000..78ff8d8583 --- /dev/null +++ b/resources/extruders/renkforce_pro7dual_1st.def.json @@ -0,0 +1,20 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "renkforce_pro7dual", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_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/renkforce_pro7dual_2nd.def.json b/resources/extruders/renkforce_pro7dual_2nd.def.json new file mode 100755 index 0000000000..2006806327 --- /dev/null +++ b/resources/extruders/renkforce_pro7dual_2nd.def.json @@ -0,0 +1,20 @@ +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": + { + "machine": "renkforce_pro7dual", + "position": "1" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_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/renkforce_rf100_extruder_0.def.json b/resources/extruders/renkforce_rf100_extruder_0.def.json index ff64e2f86a..84f9db7ce7 100644 --- a/resources/extruders/renkforce_rf100_extruder_0.def.json +++ b/resources/extruders/renkforce_rf100_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "renkforce_rf100", "position": "0" }, - - "overrides": { + "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/renkforce_rf100_xl_extruder_0.def.json b/resources/extruders/renkforce_rf100_xl_extruder_0.def.json index 718a3738c4..b962496430 100644 --- a/resources/extruders/renkforce_rf100_xl_extruder_0.def.json +++ b/resources/extruders/renkforce_rf100_xl_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "renkforce_rf100_xl", "position": "0" }, - - "overrides": { + "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/rigid3d_base_extruder_0.def.json b/resources/extruders/rigid3d_base_extruder_0.def.json index c4d34c304f..a584689699 100644 --- a/resources/extruders/rigid3d_base_extruder_0.def.json +++ b/resources/extruders/rigid3d_base_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "rigid3d_base", "position": "0" }, - - "overrides": { + "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/rigidbot_big_extruder_0.def.json b/resources/extruders/rigidbot_big_extruder_0.def.json index 9ef72d5203..72e643857e 100644 --- a/resources/extruders/rigidbot_big_extruder_0.def.json +++ b/resources/extruders/rigidbot_big_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "rigidbot_big", "position": "0" }, - - "overrides": { + "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/rigidbot_extruder_0.def.json b/resources/extruders/rigidbot_extruder_0.def.json index 9155be0ff1..6ca622b9fe 100644 --- a/resources/extruders/rigidbot_extruder_0.def.json +++ b/resources/extruders/rigidbot_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "rigidbot", "position": "0" }, - - "overrides": { + "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/robo_3d_r1_extruder_0.def.json b/resources/extruders/robo_3d_r1_extruder_0.def.json index 60811842ac..916b780aa2 100644 --- a/resources/extruders/robo_3d_r1_extruder_0.def.json +++ b/resources/extruders/robo_3d_r1_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "robo_3d_r1", "position": "0" }, - - "overrides": { + "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/seckit_skgo_extruder_0.def.json b/resources/extruders/seckit_skgo_extruder_0.def.json index 2c79e00c6d..8e1f8d3737 100644 --- a/resources/extruders/seckit_skgo_extruder_0.def.json +++ b/resources/extruders/seckit_skgo_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "seckit_skgo", "position": "0" }, - - "overrides": { + "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/seckit_sktank_extruder_0.def.json b/resources/extruders/seckit_sktank_extruder_0.def.json index 15e8b9f5c6..4db87cae82 100644 --- a/resources/extruders/seckit_sktank_extruder_0.def.json +++ b/resources/extruders/seckit_sktank_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "seckit_sktank", "position": "0" }, - - "overrides": { + "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/seemecnc_artemis_extruder_0.def.json b/resources/extruders/seemecnc_artemis_extruder_0.def.json index a86e5eb2bd..508a87e7f0 100644 --- a/resources/extruders/seemecnc_artemis_extruder_0.def.json +++ b/resources/extruders/seemecnc_artemis_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "seemecnc_artemis", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.5 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/seemecnc_v32_extruder_0.def.json b/resources/extruders/seemecnc_v32_extruder_0.def.json index b223116be3..603f2acf5f 100644 --- a/resources/extruders/seemecnc_v32_extruder_0.def.json +++ b/resources/extruders/seemecnc_v32_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "seemecnc_v32", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.5 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/sh65_extruder.def.json b/resources/extruders/sh65_extruder.def.json index f01011e281..5ca8cec8d8 100644 --- a/resources/extruders/sh65_extruder.def.json +++ b/resources/extruders/sh65_extruder.def.json @@ -1,21 +1,16 @@ -{ - "version": 2, - "name": "Extruder", - "inherits": "fdmextruder", - "metadata": { - "machine": "sh65", - "position": "0" - }, - - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - } - } -} +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "sh65", + "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/skriware_2_extruder_0.def.json b/resources/extruders/skriware_2_extruder_0.def.json index 0569600094..d74044ff6a 100644 --- a/resources/extruders/skriware_2_extruder_0.def.json +++ b/resources/extruders/skriware_2_extruder_0.def.json @@ -2,17 +2,19 @@ "version": 2, "name": "Left Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "skriware_2", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_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/skriware_2_extruder_1.def.json b/resources/extruders/skriware_2_extruder_1.def.json index d6fa76e1a0..860185e88d 100644 --- a/resources/extruders/skriware_2_extruder_1.def.json +++ b/resources/extruders/skriware_2_extruder_1.def.json @@ -2,17 +2,19 @@ "version": 2, "name": "Right Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "skriware_2", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_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/snakeoil_standard_extruder_0.def.json b/resources/extruders/snakeoil_standard_extruder_0.def.json new file mode 100644 index 0000000000..11d6297f06 --- /dev/null +++ b/resources/extruders/snakeoil_standard_extruder_0.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "Toolhead", + "inherits": "fdmextruder", + "metadata": + { + "machine": "snakeoil_standard_base", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": 1 + }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/snapmaker_dual_extruder_0.def.json b/resources/extruders/snapmaker_dual_extruder_0.def.json new file mode 100644 index 0000000000..f30ab8a533 --- /dev/null +++ b/resources/extruders/snapmaker_dual_extruder_0.def.json @@ -0,0 +1,20 @@ +{ + "version": 2, + "name": "Extruder Left", + "inherits": "fdmextruder", + "metadata": + { + "machine": "snapmaker2_dual", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_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/snapmaker_dual_extruder_1.def.json b/resources/extruders/snapmaker_dual_extruder_1.def.json new file mode 100644 index 0000000000..07bd111081 --- /dev/null +++ b/resources/extruders/snapmaker_dual_extruder_1.def.json @@ -0,0 +1,21 @@ +{ + "version": 2, + "name": "Extruder Right", + "inherits": "fdmextruder", + "metadata": + { + "machine": "snapmaker2_dual", + "position": "1" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_value": "1" + }, + "machine_extruder_cooling_fan_number": { "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/snapmaker_extruder_0.def.json b/resources/extruders/snapmaker_extruder_0.def.json index c9b69703a7..d8c2173396 100644 --- a/resources/extruders/snapmaker_extruder_0.def.json +++ b/resources/extruders/snapmaker_extruder_0.def.json @@ -1,20 +1,16 @@ -{ - "name": "Extruder 1", - "version": 2, - "inherits": "fdmextruder", - "metadata": { - "machine": "snapmaker2", - "position": "0" - }, - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - } - } -} +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "snapmaker2", + "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/sovol_bowden_extruder_0.def.json b/resources/extruders/sovol_bowden_extruder_0.def.json new file mode 100644 index 0000000000..44f745f9eb --- /dev/null +++ b/resources/extruders/sovol_bowden_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "sovol_base_bowden", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/sovol_planetary_extruder_0.def.json b/resources/extruders/sovol_planetary_extruder_0.def.json new file mode 100644 index 0000000000..b3fcf33567 --- /dev/null +++ b/resources/extruders/sovol_planetary_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "sovol_base_planetary", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/sovol_titan_extruder_0.def.json b/resources/extruders/sovol_titan_extruder_0.def.json new file mode 100644 index 0000000000..8a1f76dd2e --- /dev/null +++ b/resources/extruders/sovol_titan_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "sovol_base_titan", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/stereotech_start_extruder_0.def.json b/resources/extruders/stereotech_start_extruder_0.def.json index b0a1e91d1c..91a60e02d8 100644 --- a/resources/extruders/stereotech_start_extruder_0.def.json +++ b/resources/extruders/stereotech_start_extruder_0.def.json @@ -2,12 +2,13 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "stereotech_start", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 } diff --git a/resources/extruders/stereotech_ste320_1st.def.json b/resources/extruders/stereotech_ste320_1st.def.json index 8110775d33..d89ed900c3 100644 --- a/resources/extruders/stereotech_ste320_1st.def.json +++ b/resources/extruders/stereotech_ste320_1st.def.json @@ -2,44 +2,27 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "stereotech_ste320", "position": "0" }, - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_offset_x": { - "default_value": 0.0 - }, - "machine_nozzle_offset_y": { - "default_value": 0.0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - }, - "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" - }, - "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_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_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" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/stereotech_ste320_2nd.def.json b/resources/extruders/stereotech_ste320_2nd.def.json index 12a1479164..135adbb7c2 100644 --- a/resources/extruders/stereotech_ste320_2nd.def.json +++ b/resources/extruders/stereotech_ste320_2nd.def.json @@ -2,44 +2,27 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "stereotech_ste320", "position": "1" }, - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_offset_x": { - "default_value": 18.0 - }, - "machine_nozzle_offset_y": { - "default_value": 0.0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - }, - "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" - }, - "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_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_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" }, + "machine_nozzle_offset_x": { "default_value": 18.0 }, + "machine_nozzle_offset_y": { "default_value": 0.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/strateo3d_left_extruder.def.json b/resources/extruders/strateo3d_left_extruder.def.json index 096b265030..e707a74dc9 100644 --- a/resources/extruders/strateo3d_left_extruder.def.json +++ b/resources/extruders/strateo3d_left_extruder.def.json @@ -2,15 +2,20 @@ "version": 2, "name": "Left Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "strateo3d", "position": "1" }, - - "overrides": { - "extruder_nr": { "default_value": 1, "maximum_value": "1" }, - "material_diameter": { "default_value": 1.75 }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_value": "1" + }, "machine_nozzle_offset_x": { "default_value": 0 }, - "machine_nozzle_offset_y": { "default_value": 0 } + "machine_nozzle_offset_y": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } } } \ No newline at end of file diff --git a/resources/extruders/strateo3d_right_extruder.def.json b/resources/extruders/strateo3d_right_extruder.def.json index 24acdef8b5..6f4122a3f6 100644 --- a/resources/extruders/strateo3d_right_extruder.def.json +++ b/resources/extruders/strateo3d_right_extruder.def.json @@ -2,15 +2,20 @@ "version": 2, "name": "Right Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "strateo3d", "position": "0" }, - - "overrides": { - "extruder_nr": { "default_value": 0, "maximum_value": "1" }, - "material_diameter": { "default_value": 1.75 }, + "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_offset_y": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } } } \ No newline at end of file diff --git a/resources/extruders/stream20_extruder.def.json b/resources/extruders/stream20_extruder.def.json index f7186c704f..0e07b22b0b 100644 --- a/resources/extruders/stream20_extruder.def.json +++ b/resources/extruders/stream20_extruder.def.json @@ -2,20 +2,15 @@ "version": 2, "name": "STREAM20MK2 Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "stream20pro_mk2", "position": "0" }, - - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - } + "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/stream20dual_0.def.json b/resources/extruders/stream20dual_0.def.json index 9138d5df63..52e484660a 100644 --- a/resources/extruders/stream20dual_0.def.json +++ b/resources/extruders/stream20dual_0.def.json @@ -2,30 +2,27 @@ "version": 2, "name": "Left extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "stream20dual_mk2", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - }, - "machine_nozzle_offset_x": { "default_value": 0 }, - "machine_nozzle_offset_y": { "default_value": 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_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" }, - "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_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/stream20dual_1.def.json b/resources/extruders/stream20dual_1.def.json index d52ab86111..d9862c9393 100644 --- a/resources/extruders/stream20dual_1.def.json +++ b/resources/extruders/stream20dual_1.def.json @@ -2,32 +2,27 @@ "version": 2, "name": "Right extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "stream20dual_mk2", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - }, - "machine_nozzle_offset_x": { "default_value": 35 }, - "machine_nozzle_offset_y": { "default_value": 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_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" }, - "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_nozzle_offset_x": { "default_value": 35 }, + "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/stream30_extruder.def.json b/resources/extruders/stream30_extruder.def.json index 182ef9b481..5331b74c75 100644 --- a/resources/extruders/stream30_extruder.def.json +++ b/resources/extruders/stream30_extruder.def.json @@ -2,20 +2,15 @@ "version": 2, "name": "STREAM30MK2 Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "stream30pro_mk2", "position": "0" }, - - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - } + "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/stream30dual_0.def.json b/resources/extruders/stream30dual_0.def.json index 3955219154..2acf1d631c 100644 --- a/resources/extruders/stream30dual_0.def.json +++ b/resources/extruders/stream30dual_0.def.json @@ -2,30 +2,27 @@ "version": 2, "name": "Left extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "stream30dual_mk2", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - }, - "machine_nozzle_offset_x": { "default_value": 0 }, - "machine_nozzle_offset_y": { "default_value": 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_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" }, - "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_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/stream30dual_1.def.json b/resources/extruders/stream30dual_1.def.json index 8db42ecdc7..cd2233f162 100644 --- a/resources/extruders/stream30dual_1.def.json +++ b/resources/extruders/stream30dual_1.def.json @@ -2,32 +2,27 @@ "version": 2, "name": "Right extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "stream30dual_mk2", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - }, - "machine_nozzle_offset_x": { "default_value": 35 }, - "machine_nozzle_offset_y": { "default_value": 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_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" }, - "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_nozzle_offset_x": { "default_value": 35 }, + "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/stream30mk3_extruder.def.json b/resources/extruders/stream30mk3_extruder.def.json index 8a9bbfa1f9..f786af4b78 100644 --- a/resources/extruders/stream30mk3_extruder.def.json +++ b/resources/extruders/stream30mk3_extruder.def.json @@ -1,21 +1,16 @@ -{ - "version": 2, - "name": "Extruder", - "inherits": "fdmextruder", - "metadata": { - "machine": "stream30mk3", - "position": "0" - }, - - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - } - } -} +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "stream30mk3", + "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/stream30ultra_extruder.def.json b/resources/extruders/stream30ultra_extruder.def.json index a2564677ec..d18cce16a7 100644 --- a/resources/extruders/stream30ultra_extruder.def.json +++ b/resources/extruders/stream30ultra_extruder.def.json @@ -2,20 +2,15 @@ "version": 2, "name": "Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "stream30ultra", "position": "0" }, - - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - } + "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/stream30ultrasc2_extruder.def.json b/resources/extruders/stream30ultrasc2_extruder.def.json index 56c34a34e1..62e5afea77 100644 --- a/resources/extruders/stream30ultrasc2_extruder.def.json +++ b/resources/extruders/stream30ultrasc2_extruder.def.json @@ -1,21 +1,16 @@ -{ - "version": 2, - "name": "Extruder", - "inherits": "fdmextruder", - "metadata": { - "machine": "stream30ultrasc2", - "position": "0" - }, - - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - } - } -} +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "stream30ultrasc2", + "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/stream30ultrasc_extruder.def.json b/resources/extruders/stream30ultrasc_extruder.def.json index 1f76837e87..9820a970a8 100644 --- a/resources/extruders/stream30ultrasc_extruder.def.json +++ b/resources/extruders/stream30ultrasc_extruder.def.json @@ -2,20 +2,15 @@ "version": 2, "name": "Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "stream30ultrasc", "position": "0" }, - - "overrides": { - "extruder_nr": { - "default_value": 0 - }, - "machine_nozzle_size": { - "default_value": 0.4 - }, - "material_diameter": { - "default_value": 1.75 - } + "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/structur3d_discov3ry1_complete_um2plus_extruder_0.def.json b/resources/extruders/structur3d_discov3ry1_complete_um2plus_extruder_0.def.json index c63f740f11..0258f9da9c 100644 --- a/resources/extruders/structur3d_discov3ry1_complete_um2plus_extruder_0.def.json +++ b/resources/extruders/structur3d_discov3ry1_complete_um2plus_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Discov3ry Extruder", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "structur3d_discov3ry1_complete_um2plus", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.84 }, "material_diameter": { "default_value": 3.175 } } -} +} \ No newline at end of file diff --git a/resources/extruders/syndaveraxi2_extruder_0.def.json b/resources/extruders/syndaveraxi2_extruder_0.def.json index 62357f3227..5750e7fcc5 100644 --- a/resources/extruders/syndaveraxi2_extruder_0.def.json +++ b/resources/extruders/syndaveraxi2_extruder_0.def.json @@ -2,15 +2,16 @@ "version": 2, "name": "Hemera 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "syndaveraxi2", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_steps_per_mm_e": { "default_value": 400 } + "machine_steps_per_mm_e": { "default_value": 400 }, + "material_diameter": { "default_value": 1.75 } } } \ No newline at end of file diff --git a/resources/extruders/syndaveraxi_extruder_0.def.json b/resources/extruders/syndaveraxi_extruder_0.def.json index 4d8d3e8ab4..ecd1e8c65b 100644 --- a/resources/extruders/syndaveraxi_extruder_0.def.json +++ b/resources/extruders/syndaveraxi_extruder_0.def.json @@ -2,15 +2,16 @@ "version": 2, "name": "Hemera 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "syndaveraxi", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, - "machine_steps_per_mm_e": { "default_value": 400 } + "machine_steps_per_mm_e": { "default_value": 400 }, + "material_diameter": { "default_value": 1.75 } } } \ No newline at end of file diff --git a/resources/extruders/tam_extruder_0.def.json b/resources/extruders/tam_extruder_0.def.json index f487a6ff90..b606474ff0 100644 --- a/resources/extruders/tam_extruder_0.def.json +++ b/resources/extruders/tam_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "tam", "position": "0" }, - - "overrides": { + "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/tank_m_base_extruder_0.def.json b/resources/extruders/tank_m_base_extruder_0.def.json new file mode 100644 index 0000000000..59f58d1329 --- /dev/null +++ b/resources/extruders/tank_m_base_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 0", + "inherits": "fdmextruder", + "metadata": + { + "machine": "tank_m_base", + "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/tevo_blackwidow_extruder_0.def.json b/resources/extruders/tevo_blackwidow_extruder_0.def.json index 3450b36ac6..b65ecda212 100644 --- a/resources/extruders/tevo_blackwidow_extruder_0.def.json +++ b/resources/extruders/tevo_blackwidow_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "tevo_blackwidow", "position": "0" }, - - "overrides": { + "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/tevo_tarantula_extruder_0.def.json b/resources/extruders/tevo_tarantula_extruder_0.def.json index a2ac48c06d..da9cb76ee2 100644 --- a/resources/extruders/tevo_tarantula_extruder_0.def.json +++ b/resources/extruders/tevo_tarantula_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "tevo_tarantula", "position": "0" }, - - "overrides": { + "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/tevo_tarantula_extruder_1.def.json b/resources/extruders/tevo_tarantula_extruder_1.def.json index 20d4c7004a..e5083bdd31 100644 --- a/resources/extruders/tevo_tarantula_extruder_1.def.json +++ b/resources/extruders/tevo_tarantula_extruder_1.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "tevo_tarantula", "position": "1" }, - - "overrides": { + "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/tevo_tarantula_pro_extruder_0.def.json b/resources/extruders/tevo_tarantula_pro_extruder_0.def.json index d178242d36..2845819878 100644 --- a/resources/extruders/tevo_tarantula_pro_extruder_0.def.json +++ b/resources/extruders/tevo_tarantula_pro_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "tevo_tarantula_pro", "position": "0" }, - - "overrides": { + "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/tevo_tarantula_pro_extruder_1.def.json b/resources/extruders/tevo_tarantula_pro_extruder_1.def.json index f02e74efff..02d6f0111f 100644 --- a/resources/extruders/tevo_tarantula_pro_extruder_1.def.json +++ b/resources/extruders/tevo_tarantula_pro_extruder_1.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "tevo_tarantula_pro", "position": "1" }, - - "overrides": { + "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/tevo_tornado_extruder_0.def.json b/resources/extruders/tevo_tornado_extruder_0.def.json index 6c0c9f39b1..9dc4e5fec1 100644 --- a/resources/extruders/tevo_tornado_extruder_0.def.json +++ b/resources/extruders/tevo_tornado_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "tevo_tornado", "position": "0" }, - - "overrides": { + "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/tinyboy_extruder_0.def.json b/resources/extruders/tinyboy_extruder_0.def.json index 246d00135e..21a3b07b46 100644 --- a/resources/extruders/tinyboy_extruder_0.def.json +++ b/resources/extruders/tinyboy_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "tinyboy_e10", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.3 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/tinyboy_fabrikator15_extruder_0.def.json b/resources/extruders/tinyboy_fabrikator15_extruder_0.def.json index 81fa4bd140..f2a4166ed4 100644 --- a/resources/extruders/tinyboy_fabrikator15_extruder_0.def.json +++ b/resources/extruders/tinyboy_fabrikator15_extruder_0.def.json @@ -1,15 +1,16 @@ -{ - "version": 2, - "name": "Extruder 1", - "inherits": "fdmextruder", - "metadata": { - "machine": "tinyboy_fabrikator15", - "position": "0" - }, - - "overrides": { - "extruder_nr": { "default_value": 0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } - } -} +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "tinyboy_fabrikator15", + "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/tizyx_k25_extruder_0.def.json b/resources/extruders/tizyx_k25_extruder_0.def.json index 626fedf434..dcf4764da9 100644 --- a/resources/extruders/tizyx_k25_extruder_0.def.json +++ b/resources/extruders/tizyx_k25_extruder_0.def.json @@ -1,15 +1,16 @@ -{ - "version": 2, - "name": "Extruder 1", - "inherits": "fdmextruder", - "metadata": { - "machine": "tizyx_k25", - "position": "0" - }, - - "overrides": { - "extruder_nr": { "default_value": 0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } - } +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "tizyx_k25", + "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/trex2_extruder_0.def.json b/resources/extruders/trex2_extruder_0.def.json new file mode 100644 index 0000000000..1de1cc21bf --- /dev/null +++ b/resources/extruders/trex2_extruder_0.def.json @@ -0,0 +1,23 @@ +{ + "version": 2, + "name": "Left Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "vivedino_trex2plus", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "3" + }, + "machine_extruder_end_code": { "default_value": "" }, + "machine_extruder_start_code": { "default_value": "G0 X-40" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/trex2_extruder_1.def.json b/resources/extruders/trex2_extruder_1.def.json new file mode 100644 index 0000000000..be715f36bf --- /dev/null +++ b/resources/extruders/trex2_extruder_1.def.json @@ -0,0 +1,23 @@ +{ + "version": 2, + "name": "Right Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "vivedino_trex2plus", + "position": "1" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_value": "3" + }, + "machine_extruder_end_code": { "default_value": "" }, + "machine_extruder_start_code": { "default_value": "G0 X438.2" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/trex_base_extruder_0.def.json b/resources/extruders/trex_base_extruder_0.def.json new file mode 100644 index 0000000000..c1ce9ef655 --- /dev/null +++ b/resources/extruders/trex_base_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "vivedino_base", + "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/trex_extruder_0.def.json b/resources/extruders/trex_extruder_0.def.json new file mode 100644 index 0000000000..2f7a62c915 --- /dev/null +++ b/resources/extruders/trex_extruder_0.def.json @@ -0,0 +1,23 @@ +{ + "version": 2, + "name": "Left Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "vivedino_trex3", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "3" + }, + "machine_extruder_end_code": { "default_value": "M106 P0 S0" }, + "machine_extruder_start_code": { "default_value": "M106 P0 S[fan_speed_pwm]" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/trex_extruder_1.def.json b/resources/extruders/trex_extruder_1.def.json new file mode 100644 index 0000000000..39f1f53834 --- /dev/null +++ b/resources/extruders/trex_extruder_1.def.json @@ -0,0 +1,23 @@ +{ + "version": 2, + "name": "Right Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "vivedino_trex3", + "position": "1" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_value": "3" + }, + "machine_extruder_end_code": { "default_value": "M106 P1 S0" }, + "machine_extruder_start_code": { "default_value": "M106 P1 S[fan_speed_pwm]" }, + "machine_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/trimaker_cosmosII_extruder.def.json b/resources/extruders/trimaker_cosmosII_extruder.def.json index 87c9394d96..c5a9debca7 100644 --- a/resources/extruders/trimaker_cosmosII_extruder.def.json +++ b/resources/extruders/trimaker_cosmosII_extruder.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "trimaker_cosmosII", "position": "0" }, - - "overrides": { + "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/trimaker_nebula_extruder.def.json b/resources/extruders/trimaker_nebula_extruder.def.json index 6dbd251edc..eca213de2f 100644 --- a/resources/extruders/trimaker_nebula_extruder.def.json +++ b/resources/extruders/trimaker_nebula_extruder.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "trimaker_nebula", "position": "0" }, - - "overrides": { + "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/tronxy_base_extruder_0.def.json b/resources/extruders/tronxy_base_extruder_0.def.json index 14acb5150a..c0089f2a57 100644 --- a/resources/extruders/tronxy_base_extruder_0.def.json +++ b/resources/extruders/tronxy_base_extruder_0.def.json @@ -2,18 +2,19 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "tronxy_x", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_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/tronxy_base_extruder_1.def.json b/resources/extruders/tronxy_base_extruder_1.def.json index 3a5a35cd01..f6175d8e69 100644 --- a/resources/extruders/tronxy_base_extruder_1.def.json +++ b/resources/extruders/tronxy_base_extruder_1.def.json @@ -2,18 +2,19 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "tronxy_x", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_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/two_trees_base_extruder_0.def.json b/resources/extruders/two_trees_base_extruder_0.def.json index d8a810dedc..81100bcf1c 100644 --- a/resources/extruders/two_trees_base_extruder_0.def.json +++ b/resources/extruders/two_trees_base_extruder_0.def.json @@ -2,15 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "two_trees_base", "position": "0" }, - - "overrides": { + "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/ubuild-3d_mr_bot_280_extruder_0.def.json b/resources/extruders/ubuild-3d_mr_bot_280_extruder_0.def.json index 749a5ed77d..8c4462d72f 100644 --- a/resources/extruders/ubuild-3d_mr_bot_280_extruder_0.def.json +++ b/resources/extruders/ubuild-3d_mr_bot_280_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ubuild-3d_mr_bot_280", "position": "0" }, - - "overrides": { + "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/ultimaker2_extended_extruder_0.def.json b/resources/extruders/ultimaker2_extended_extruder_0.def.json index cc7306a393..d44449ee3a 100644 --- a/resources/extruders/ultimaker2_extended_extruder_0.def.json +++ b/resources/extruders/ultimaker2_extended_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ultimaker2_extended", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 2.85 } } -} +} \ No newline at end of file diff --git a/resources/extruders/ultimaker2_extended_plus_extruder_0.def.json b/resources/extruders/ultimaker2_extended_plus_extruder_0.def.json index 337c120097..fa4a98ee5b 100644 --- a/resources/extruders/ultimaker2_extended_plus_extruder_0.def.json +++ b/resources/extruders/ultimaker2_extended_plus_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ultimaker2_extended_plus", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 2.85 } } -} +} \ 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 64ac8698f1..17d0d425df 100644 --- a/resources/extruders/ultimaker2_extruder_0.def.json +++ b/resources/extruders/ultimaker2_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ultimaker2", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 2.85 } } -} +} \ No newline at end of file diff --git a/resources/extruders/ultimaker2_go_extruder_0.def.json b/resources/extruders/ultimaker2_go_extruder_0.def.json index 5ddcfbd551..7f7726585f 100644 --- a/resources/extruders/ultimaker2_go_extruder_0.def.json +++ b/resources/extruders/ultimaker2_go_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ultimaker2_go", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 2.85 } } -} +} \ No newline at end of file diff --git a/resources/extruders/ultimaker2_plus_connect_extruder_0.def.json b/resources/extruders/ultimaker2_plus_connect_extruder_0.def.json index 871fdd3645..0b74aae019 100644 --- a/resources/extruders/ultimaker2_plus_connect_extruder_0.def.json +++ b/resources/extruders/ultimaker2_plus_connect_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ultimaker2_plus_connect", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 2.85 } } -} +} \ No newline at end of file diff --git a/resources/extruders/ultimaker2_plus_extruder_0.def.json b/resources/extruders/ultimaker2_plus_extruder_0.def.json index abf36c0b08..3fec85805e 100644 --- a/resources/extruders/ultimaker2_plus_extruder_0.def.json +++ b/resources/extruders/ultimaker2_plus_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ultimaker2_plus", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 2.85 } } -} +} \ No newline at end of file diff --git a/resources/extruders/ultimaker3_extended_extruder_left.def.json b/resources/extruders/ultimaker3_extended_extruder_left.def.json index fbc49a1f32..2f1d8941a7 100644 --- a/resources/extruders/ultimaker3_extended_extruder_left.def.json +++ b/resources/extruders/ultimaker3_extended_extruder_left.def.json @@ -2,29 +2,30 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ultimaker3_extended", "position": "0", "quality_definition": "ultimaker3_extruder_left" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0 }, - "machine_nozzle_offset_y": { "default_value": 0 }, - - "machine_extruder_start_pos_abs": { "default_value": true }, - "machine_extruder_start_pos_x": { "default_value": 213 }, - "machine_extruder_start_pos_y": { "default_value": 207 }, + "extruder_prime_pos_x": { "default_value": 9 }, + "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": 213 }, "machine_extruder_end_pos_y": { "default_value": 207 }, + "machine_extruder_start_pos_abs": { "default_value": true }, + "machine_extruder_start_pos_x": { "default_value": 213 }, + "machine_extruder_start_pos_y": { "default_value": 207 }, "machine_nozzle_head_distance": { "default_value": 2.7 }, - "extruder_prime_pos_x": { "default_value": 9 }, - "extruder_prime_pos_y": { "default_value": 6 }, - "extruder_prime_pos_z": { "default_value": 2 } + "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/ultimaker3_extended_extruder_right.def.json b/resources/extruders/ultimaker3_extended_extruder_right.def.json index fbe6bcc878..9bff5cac63 100644 --- a/resources/extruders/ultimaker3_extended_extruder_right.def.json +++ b/resources/extruders/ultimaker3_extended_extruder_right.def.json @@ -2,29 +2,30 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ultimaker3_extended", "position": "1", "quality_definition": "ultimaker3_extruder_right" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 18 }, - "machine_nozzle_offset_y": { "default_value": 0 }, - - "machine_extruder_start_pos_abs": { "default_value": true }, - "machine_extruder_start_pos_x": { "default_value": 213 }, - "machine_extruder_start_pos_y": { "default_value": 189 }, + "extruder_prime_pos_x": { "default_value": 222 }, + "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": 213 }, "machine_extruder_end_pos_y": { "default_value": 189 }, + "machine_extruder_start_pos_abs": { "default_value": true }, + "machine_extruder_start_pos_x": { "default_value": 213 }, + "machine_extruder_start_pos_y": { "default_value": 189 }, "machine_nozzle_head_distance": { "default_value": 4.2 }, - "extruder_prime_pos_x": { "default_value": 222 }, - "extruder_prime_pos_y": { "default_value": 6 }, - "extruder_prime_pos_z": { "default_value": 2 } + "machine_nozzle_offset_x": { "default_value": 18 }, + "machine_nozzle_offset_y": { "default_value": 0 } } -} +} \ No newline at end of file diff --git a/resources/extruders/ultimaker3_extruder_left.def.json b/resources/extruders/ultimaker3_extruder_left.def.json index b18e2decfa..4699884c85 100644 --- a/resources/extruders/ultimaker3_extruder_left.def.json +++ b/resources/extruders/ultimaker3_extruder_left.def.json @@ -2,29 +2,30 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ultimaker3", "position": "0", "quality_definition": "ultimaker3_extruder_left" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0 }, - "machine_nozzle_offset_y": { "default_value": 0 }, - - "machine_extruder_start_pos_abs": { "default_value": true }, - "machine_extruder_start_pos_x": { "default_value": 213 }, - "machine_extruder_start_pos_y": { "default_value": 207 }, + "extruder_prime_pos_x": { "default_value": 9 }, + "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": 213 }, "machine_extruder_end_pos_y": { "default_value": 207 }, + "machine_extruder_start_pos_abs": { "default_value": true }, + "machine_extruder_start_pos_x": { "default_value": 213 }, + "machine_extruder_start_pos_y": { "default_value": 207 }, "machine_nozzle_head_distance": { "default_value": 2.7 }, - "extruder_prime_pos_x": { "default_value": 9 }, - "extruder_prime_pos_y": { "default_value": 6 }, - "extruder_prime_pos_z": { "default_value": 2 } + "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/ultimaker3_extruder_right.def.json b/resources/extruders/ultimaker3_extruder_right.def.json index 4753fde489..86afcf1529 100644 --- a/resources/extruders/ultimaker3_extruder_right.def.json +++ b/resources/extruders/ultimaker3_extruder_right.def.json @@ -2,29 +2,30 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ultimaker3", "position": "1", "quality_definition": "ultimaker3_extruder_right" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 18 }, - "machine_nozzle_offset_y": { "default_value": 0 }, - - "machine_extruder_start_pos_abs": { "default_value": true }, - "machine_extruder_start_pos_x": { "default_value": 213 }, - "machine_extruder_start_pos_y": { "default_value": 189 }, + "extruder_prime_pos_x": { "default_value": 222 }, + "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": 213 }, "machine_extruder_end_pos_y": { "default_value": 189 }, + "machine_extruder_start_pos_abs": { "default_value": true }, + "machine_extruder_start_pos_x": { "default_value": 213 }, + "machine_extruder_start_pos_y": { "default_value": 189 }, "machine_nozzle_head_distance": { "default_value": 4.2 }, - "extruder_prime_pos_x": { "default_value": 222 }, - "extruder_prime_pos_y": { "default_value": 6 }, - "extruder_prime_pos_z": { "default_value": 2 } + "machine_nozzle_offset_x": { "default_value": 18 }, + "machine_nozzle_offset_y": { "default_value": 0 } } -} +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_original_dual_1st.def.json b/resources/extruders/ultimaker_original_dual_1st.def.json index acc8168d94..9c92b5bea5 100644 --- a/resources/extruders/ultimaker_original_dual_1st.def.json +++ b/resources/extruders/ultimaker_original_dual_1st.def.json @@ -2,25 +2,26 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ultimaker_original_dual", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - + "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_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" }, - "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_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, + "machine_nozzle_size": { "default_value": 0.4 } } -} +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_original_dual_2nd.def.json b/resources/extruders/ultimaker_original_dual_2nd.def.json index 7907571e66..8596555e28 100644 --- a/resources/extruders/ultimaker_original_dual_2nd.def.json +++ b/resources/extruders/ultimaker_original_dual_2nd.def.json @@ -2,25 +2,26 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ultimaker_original_dual", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 21.6 }, - "machine_nozzle_size": { "default_value": 0.4 }, - + "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_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" }, - "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_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 21.6 }, + "machine_nozzle_size": { "default_value": 0.4 } } -} +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_original_extruder_0.def.json b/resources/extruders/ultimaker_original_extruder_0.def.json index 30df96df58..5f71313557 100644 --- a/resources/extruders/ultimaker_original_extruder_0.def.json +++ b/resources/extruders/ultimaker_original_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ultimaker_original", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 2.85 } } -} +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_original_plus_extruder_0.def.json b/resources/extruders/ultimaker_original_plus_extruder_0.def.json index fec40e93a9..f195850658 100644 --- a/resources/extruders/ultimaker_original_plus_extruder_0.def.json +++ b/resources/extruders/ultimaker_original_plus_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ultimaker_original_plus", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 2.85 } } -} +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_s3_extruder_left.def.json b/resources/extruders/ultimaker_s3_extruder_left.def.json index 7af6f7d0dc..3926a260ff 100644 --- a/resources/extruders/ultimaker_s3_extruder_left.def.json +++ b/resources/extruders/ultimaker_s3_extruder_left.def.json @@ -2,28 +2,29 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ultimaker_s3", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0 }, - "machine_nozzle_offset_y": { "default_value": 0 }, - - "machine_extruder_start_pos_abs": { "default_value": true }, - "machine_extruder_start_pos_x": { "default_value": 180 }, - "machine_extruder_start_pos_y": { "default_value": 180 }, + "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": 180 }, "machine_extruder_end_pos_y": { "default_value": 180 }, + "machine_extruder_start_pos_abs": { "default_value": true }, + "machine_extruder_start_pos_x": { "default_value": 180 }, + "machine_extruder_start_pos_y": { "default_value": 180 }, "machine_nozzle_head_distance": { "default_value": 2.7 }, - "extruder_prime_pos_x": { "default_value": -3 }, - "extruder_prime_pos_y": { "default_value": 6 }, - "extruder_prime_pos_z": { "default_value": 2 } + "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_s3_extruder_right.def.json b/resources/extruders/ultimaker_s3_extruder_right.def.json index 7199710327..3749e94bb9 100644 --- a/resources/extruders/ultimaker_s3_extruder_right.def.json +++ b/resources/extruders/ultimaker_s3_extruder_right.def.json @@ -2,28 +2,29 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ultimaker_s3", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 22 }, - "machine_nozzle_offset_y": { "default_value": 0 }, - - "machine_extruder_start_pos_abs": { "default_value": true }, - "machine_extruder_start_pos_x": { "default_value": 180 }, - "machine_extruder_start_pos_y": { "default_value": 180 }, + "extruder_prime_pos_x": { "value": "machine_width + 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": 180 }, "machine_extruder_end_pos_y": { "default_value": 180 }, + "machine_extruder_start_pos_abs": { "default_value": true }, + "machine_extruder_start_pos_x": { "default_value": 180 }, + "machine_extruder_start_pos_y": { "default_value": 180 }, "machine_nozzle_head_distance": { "default_value": 4.2 }, - "extruder_prime_pos_x": { "value": "machine_width + 3" }, - "extruder_prime_pos_y": { "default_value": 6 }, - "extruder_prime_pos_z": { "default_value": 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_s5_extruder_left.def.json b/resources/extruders/ultimaker_s5_extruder_left.def.json index 24de85e9cc..00d7bbabb5 100644 --- a/resources/extruders/ultimaker_s5_extruder_left.def.json +++ b/resources/extruders/ultimaker_s5_extruder_left.def.json @@ -2,28 +2,29 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ultimaker_s5", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0 }, - "machine_nozzle_offset_y": { "default_value": 0 }, - - "machine_extruder_start_pos_abs": { "default_value": true }, - "machine_extruder_start_pos_x": { "default_value": 330 }, - "machine_extruder_start_pos_y": { "default_value": 237 }, + "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_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 }, - "extruder_prime_pos_x": { "default_value": -3 }, - "extruder_prime_pos_y": { "default_value": 6 }, - "extruder_prime_pos_z": { "default_value": 2 } + "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_s5_extruder_right.def.json b/resources/extruders/ultimaker_s5_extruder_right.def.json index 1e0ac3eace..ba5ec99378 100644 --- a/resources/extruders/ultimaker_s5_extruder_right.def.json +++ b/resources/extruders/ultimaker_s5_extruder_right.def.json @@ -2,28 +2,29 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ultimaker_s5", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 22 }, - "machine_nozzle_offset_y": { "default_value": 0 }, - - "machine_extruder_start_pos_abs": { "default_value": true }, - "machine_extruder_start_pos_x": { "default_value": 330 }, - "machine_extruder_start_pos_y": { "default_value": 219 }, + "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_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 }, - "extruder_prime_pos_x": { "default_value": 333 }, - "extruder_prime_pos_y": { "default_value": 6 }, - "extruder_prime_pos_z": { "default_value": 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_s7_extruder_left.def.json b/resources/extruders/ultimaker_s7_extruder_left.def.json new file mode 100644 index 0000000000..b085698c1d --- /dev/null +++ b/resources/extruders/ultimaker_s7_extruder_left.def.json @@ -0,0 +1,31 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "ultimaker_s7", + "position": "0", + "quality_definition": "ultimaker_s5_extruder_left" + }, + "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_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_s7_extruder_right.def.json b/resources/extruders/ultimaker_s7_extruder_right.def.json new file mode 100644 index 0000000000..0aa9a40b79 --- /dev/null +++ b/resources/extruders/ultimaker_s7_extruder_right.def.json @@ -0,0 +1,31 @@ +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": + { + "machine": "ultimaker_s7", + "position": "1", + "quality_definition": "ultimaker_s5_extruder_right" + }, + "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_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/uni_extruder_1st.def.json b/resources/extruders/uni_extruder_1st.def.json index d11fc9d60d..51d7345d0c 100644 --- a/resources/extruders/uni_extruder_1st.def.json +++ b/resources/extruders/uni_extruder_1st.def.json @@ -2,24 +2,23 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { - "machine": "uni_base", + "metadata": + { + "machine": "uni_base", "position": "0" }, - - "overrides": { - "extruder_nr": { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "1" + }, + "machine_extruder_end_code": { "default_value": ";G92 E0 ;reset extruder distance\n;G1 F800 E-5 ;short retract\n;G1 F2400 X5 Y5 ;move near prime tower\n;G1 F2000 E-93 ;long retract for filament removal\n;G92 E0 ;reset extruder distance\n;G90 ;absolute coordinate\n;\n" }, + "machine_extruder_start_code": { "default_value": ";T0 ;switch to extruder 1\n;G92 E0 ;reset extruder distance\n;G1 F2000 E93 ;load filament\n;G92 E0 ;reset extruder distance\n;M104 S{material_print_temperature}\n;\n" }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": - { - "default_value": ";T0 ;switch to extruder 1\n;G92 E0 ;reset extruder distance\n;G1 F2000 E93 ;load filament\n;G92 E0 ;reset extruder distance\n;M104 S{material_print_temperature}\n;\n" - }, - "machine_extruder_end_code": - { - "default_value": ";G92 E0 ;reset extruder distance\n;G1 F800 E-5 ;short retract\n;G1 F2400 X5 Y5 ;move near prime tower\n;G1 F2000 E-93 ;long retract for filament removal\n;G92 E0 ;reset extruder distance\n;G90 ;absolute coordinate\n;\n" - } + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/uni_extruder_2nd.def.json b/resources/extruders/uni_extruder_2nd.def.json index 2fc2f054ab..ce08041175 100644 --- a/resources/extruders/uni_extruder_2nd.def.json +++ b/resources/extruders/uni_extruder_2nd.def.json @@ -2,24 +2,23 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { - "machine": "uni_base", + "metadata": + { + "machine": "uni_base", "position": "1" }, - - "overrides": { - "extruder_nr": { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_value": "1" + }, + "machine_extruder_end_code": { "default_value": ";G92 E0 ;reset extruder distance\n;G1 F800 E-5 ;short retract\n;G1 F2400 X5 Y5 ;move near prime tower\n;G1 F2000 E-93 ;long retract for filament removal\n;G92 E0 ;reset extruder distance\n;G90 ;absolute coordinate\n;\n" }, + "machine_extruder_start_code": { "default_value": ";T1 ;switch to extruder 2\n;G92 E0 ;reset extruder distance\n;G1 F2000 E93 ;load filament\n;G92 E0 ;reset extruder distance\n;M104 S{material_print_temperature}\n;\n" }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": - { - "default_value": ";T1 ;switch to extruder 2\n;G92 E0 ;reset extruder distance\n;G1 F2000 E93 ;load filament\n;G92 E0 ;reset extruder distance\n;M104 S{material_print_temperature}\n;\n" - }, - "machine_extruder_end_code": - { - "default_value": ";G92 E0 ;reset extruder distance\n;G1 F800 E-5 ;short retract\n;G1 F2400 X5 Y5 ;move near prime tower\n;G1 F2000 E-93 ;long retract for filament removal\n;G92 E0 ;reset extruder distance\n;G90 ;absolute coordinate\n;\n" - } + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/uni_print_3d_extruder_0.def.json b/resources/extruders/uni_print_3d_extruder_0.def.json index 747fb9e020..9486782926 100644 --- a/resources/extruders/uni_print_3d_extruder_0.def.json +++ b/resources/extruders/uni_print_3d_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "uni_print_3d", "position": "0" }, - - "overrides": { + "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/uniqbot_one_extruder_0.def.json b/resources/extruders/uniqbot_one_extruder_0.def.json index 0a8982559d..772c0b648b 100644 --- a/resources/extruders/uniqbot_one_extruder_0.def.json +++ b/resources/extruders/uniqbot_one_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "uniqbot_one", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.5 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/vertex_delta_k8800_extruder_0.def.json b/resources/extruders/vertex_delta_k8800_extruder_0.def.json index 05a010222f..55f0c7881c 100644 --- a/resources/extruders/vertex_delta_k8800_extruder_0.def.json +++ b/resources/extruders/vertex_delta_k8800_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "vertex_delta_k8800", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.35 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/vertex_k8400_dual_1st.def.json b/resources/extruders/vertex_k8400_dual_1st.def.json index 947cfbc7d8..488f2477eb 100644 --- a/resources/extruders/vertex_k8400_dual_1st.def.json +++ b/resources/extruders/vertex_k8400_dual_1st.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "vertex_k8400_dual", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 23.7 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_nozzle_size": { "default_value": 0.35 }, - "material_diameter": { "default_value": 1.75 }, - + "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_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" }, - "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_nozzle_offset_x": { "default_value": 23.7 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, + "machine_nozzle_size": { "default_value": 0.35 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/vertex_k8400_dual_2nd.def.json b/resources/extruders/vertex_k8400_dual_2nd.def.json index e606e46337..44c7aa49ba 100644 --- a/resources/extruders/vertex_k8400_dual_2nd.def.json +++ b/resources/extruders/vertex_k8400_dual_2nd.def.json @@ -2,26 +2,27 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "vertex_k8400_dual", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_nozzle_size": { "default_value": 0.35 }, - "material_diameter": { "default_value": 1.75 }, - + "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_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" }, - "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_nozzle_offset_x": { "default_value": 0.0 }, + "machine_nozzle_offset_y": { "default_value": 0.0 }, + "machine_nozzle_size": { "default_value": 0.35 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/vertex_k8400_extruder_0.def.json b/resources/extruders/vertex_k8400_extruder_0.def.json index e0304f57bd..62fd1a417c 100644 --- a/resources/extruders/vertex_k8400_extruder_0.def.json +++ b/resources/extruders/vertex_k8400_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "vertex_k8400", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.35 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/vertex_nano_k8600_extruder_0.def.json b/resources/extruders/vertex_nano_k8600_extruder_0.def.json index cfb2d11217..61c1bf1106 100644 --- a/resources/extruders/vertex_nano_k8600_extruder_0.def.json +++ b/resources/extruders/vertex_nano_k8600_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "vertex_nano_k8600", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.35 }, "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/voron2_extruder_0.def.json b/resources/extruders/voron2_extruder_0.def.json index 5559cdf620..671c58665e 100644 --- a/resources/extruders/voron2_extruder_0.def.json +++ b/resources/extruders/voron2_extruder_0.def.json @@ -7,10 +7,13 @@ "machine": "voron2_base", "position": "0" }, - "overrides": { - "extruder_nr": { "default_value": 0, "maximum_value": 1 }, - "material_diameter": { "default_value": 1.75 } + "extruder_nr": + { + "default_value": 0, + "maximum_value": 1 + }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/vzbot_extruder_0.def.json b/resources/extruders/vzbot_extruder_0.def.json new file mode 100644 index 0000000000..2b8154733f --- /dev/null +++ b/resources/extruders/vzbot_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "vzbot_base", + "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/wanhao_d4s_extruder_0.def.json b/resources/extruders/wanhao_d4s_extruder_0.def.json index bd6023faf4..ce2f1298ef 100644 --- a/resources/extruders/wanhao_d4s_extruder_0.def.json +++ b/resources/extruders/wanhao_d4s_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "wanhao_d4s", "position": "0" }, - - "overrides": { + "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/wanhao_d6_extruder_0.def.json b/resources/extruders/wanhao_d6_extruder_0.def.json index 093546eabf..2f88be41a0 100644 --- a/resources/extruders/wanhao_d6_extruder_0.def.json +++ b/resources/extruders/wanhao_d6_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "wanhao_d6", "position": "0" }, - - "overrides": { + "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/wanhao_d6_plus_extruder_0.def.json b/resources/extruders/wanhao_d6_plus_extruder_0.def.json index acc5b66072..4f000afd9f 100644 --- a/resources/extruders/wanhao_d6_plus_extruder_0.def.json +++ b/resources/extruders/wanhao_d6_plus_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "wanhao_d6_plus", "position": "0" }, - - "overrides": { + "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/wanhao_d9_extruder_0.def.json b/resources/extruders/wanhao_d9_extruder_0.def.json index 40fcf422f5..de22cb6e4b 100644 --- a/resources/extruders/wanhao_d9_extruder_0.def.json +++ b/resources/extruders/wanhao_d9_extruder_0.def.json @@ -1,15 +1,16 @@ -{ - "version": 2, - "name": "Extruder 1", - "inherits": "fdmextruder", - "metadata": { - "machine": "wanhao_d9", - "position": "0" - }, - - "overrides": { - "extruder_nr": { "default_value": 0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 } - } -} +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "wanhao_d9", + "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/wanhao_duplicator5S_extruder_0.def.json b/resources/extruders/wanhao_duplicator5S_extruder_0.def.json index 7274d5117e..7a3165bac2 100644 --- a/resources/extruders/wanhao_duplicator5S_extruder_0.def.json +++ b/resources/extruders/wanhao_duplicator5S_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "wanhao_duplicator5S", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 3 } } -} +} \ No newline at end of file diff --git a/resources/extruders/wanhao_duplicator5Smini_extruder_0.def.json b/resources/extruders/wanhao_duplicator5Smini_extruder_0.def.json index 3479c94e35..0829af3301 100644 --- a/resources/extruders/wanhao_duplicator5Smini_extruder_0.def.json +++ b/resources/extruders/wanhao_duplicator5Smini_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "wanhao_duplicator5Smini", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 3 } } -} +} \ No newline at end of file diff --git a/resources/extruders/wanhao_i3_extruder_0.def.json b/resources/extruders/wanhao_i3_extruder_0.def.json index 387a456ff2..13cb72dc49 100644 --- a/resources/extruders/wanhao_i3_extruder_0.def.json +++ b/resources/extruders/wanhao_i3_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "wanhao_i3", "position": "0" }, - - "overrides": { + "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/wanhao_i3mini_extruder_0.def.json b/resources/extruders/wanhao_i3mini_extruder_0.def.json index 2d52f0d126..8e280610dd 100644 --- a/resources/extruders/wanhao_i3mini_extruder_0.def.json +++ b/resources/extruders/wanhao_i3mini_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "wanhao_i3mini", "position": "0" }, - - "overrides": { + "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/wanhao_i3plus_extruder_0.def.json b/resources/extruders/wanhao_i3plus_extruder_0.def.json index 103e3b9335..5ecec8b84e 100644 --- a/resources/extruders/wanhao_i3plus_extruder_0.def.json +++ b/resources/extruders/wanhao_i3plus_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "wanhao_i3plus", "position": "0" }, - - "overrides": { + "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/weedo_x40_extruder_left_0.def.json b/resources/extruders/weedo_x40_extruder_left_0.def.json index 955e98f0de..b28c4b1d84 100644 --- a/resources/extruders/weedo_x40_extruder_left_0.def.json +++ b/resources/extruders/weedo_x40_extruder_left_0.def.json @@ -2,21 +2,23 @@ "version": 2, "name": "Extruder Left", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "weedo_x40", "position": "0", "quality_definition": "weedo_x40_extruder_left_0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, + "machine_extruder_start_code": { "default_value": "; left extruder start code\n" }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, - "machine_extruder_start_code": { "default_value": "; left extruder start code\n"} + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/weedo_x40_extruder_right_0.def.json b/resources/extruders/weedo_x40_extruder_right_0.def.json index 1a1f9e591d..537391c9c8 100644 --- a/resources/extruders/weedo_x40_extruder_right_0.def.json +++ b/resources/extruders/weedo_x40_extruder_right_0.def.json @@ -2,21 +2,23 @@ "version": 2, "name": "Extruder Right", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "weedo_x40", "position": "1", "quality_definition": "weedo_x40_extruder_right_0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, + "machine_extruder_start_code": { "default_value": "; right extruder start code\n" }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, - "machine_extruder_start_code": { "default_value": "; right extruder start code\n"} + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/winbo_dragonl4_extruder.def.json b/resources/extruders/winbo_dragonl4_extruder.def.json index 37a08c8d08..2de6363c29 100644 --- a/resources/extruders/winbo_dragonl4_extruder.def.json +++ b/resources/extruders/winbo_dragonl4_extruder.def.json @@ -2,19 +2,21 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "winbo_dragonl4", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "2" }, - "material_diameter": { "default_value": 3.0 }, - "machine_nozzle_size": { "default_value": 0.8 }, "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 } + "machine_nozzle_offset_y": { "default_value": 0.0 }, + "machine_nozzle_size": { "default_value": 0.8 }, + "material_diameter": { "default_value": 3.0 } } -} +} \ No newline at end of file diff --git a/resources/extruders/winbo_mini2_extruder.def.json b/resources/extruders/winbo_mini2_extruder.def.json index a57ec28109..38511b454b 100644 --- a/resources/extruders/winbo_mini2_extruder.def.json +++ b/resources/extruders/winbo_mini2_extruder.def.json @@ -2,19 +2,21 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "winbo_mini2", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "2" }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_size": { "default_value": 0.4 }, "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 } + "machine_nozzle_offset_y": { "default_value": 0.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/winbo_superhelper105_extruder.def.json b/resources/extruders/winbo_superhelper105_extruder.def.json index a974317937..0ad31e8ae8 100644 --- a/resources/extruders/winbo_superhelper105_extruder.def.json +++ b/resources/extruders/winbo_superhelper105_extruder.def.json @@ -2,19 +2,21 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "winbo_superhelper105", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "2" }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_size": { "default_value": 0.4 }, "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 } + "machine_nozzle_offset_y": { "default_value": 0.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/winbo_superhelper155_extruder.def.json b/resources/extruders/winbo_superhelper155_extruder.def.json index 6d83689bf4..28ecef5fb4 100644 --- a/resources/extruders/winbo_superhelper155_extruder.def.json +++ b/resources/extruders/winbo_superhelper155_extruder.def.json @@ -2,19 +2,21 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "winbo_superhelper155", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "2" }, - "material_diameter": { "default_value": 1.75 }, - "machine_nozzle_size": { "default_value": 0.4 }, "machine_nozzle_offset_x": { "default_value": 0.0 }, - "machine_nozzle_offset_y": { "default_value": 0.0 } + "machine_nozzle_offset_y": { "default_value": 0.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/xyzprinting_base_extruder_0.def.json b/resources/extruders/xyzprinting_base_extruder_0.def.json index 0a04c63103..1bfbf79680 100644 --- a/resources/extruders/xyzprinting_base_extruder_0.def.json +++ b/resources/extruders/xyzprinting_base_extruder_0.def.json @@ -2,15 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "xyzprinting_base", "position": "0" }, - - "overrides": { + "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/xyzprinting_da_vinci_1p0_pro_extruder_0.def.json b/resources/extruders/xyzprinting_da_vinci_1p0_pro_extruder_0.def.json index 22010de7d7..8e4c0b0679 100644 --- a/resources/extruders/xyzprinting_da_vinci_1p0_pro_extruder_0.def.json +++ b/resources/extruders/xyzprinting_da_vinci_1p0_pro_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "xyzprinting_da_vinci_1p0_pro", "position": "0" }, - - "overrides": { + "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/xyzprinting_da_vinci_jr_1p0a_pro_extruder_0.def.json b/resources/extruders/xyzprinting_da_vinci_jr_1p0a_pro_extruder_0.def.json index 4e9d0c8ad0..9190e6c019 100644 --- a/resources/extruders/xyzprinting_da_vinci_jr_1p0a_pro_extruder_0.def.json +++ b/resources/extruders/xyzprinting_da_vinci_jr_1p0a_pro_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "xyzprinting_da_vinci_jr_1p0a_pro", "position": "0" }, - - "overrides": { + "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/xyzprinting_da_vinci_jr_pro_xeplus_extruder_0.def.json b/resources/extruders/xyzprinting_da_vinci_jr_pro_xeplus_extruder_0.def.json index 9ac465dda4..847342825e 100644 --- a/resources/extruders/xyzprinting_da_vinci_jr_pro_xeplus_extruder_0.def.json +++ b/resources/extruders/xyzprinting_da_vinci_jr_pro_xeplus_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "xyzprinting_da_vinci_jr_pro_xeplus", "position": "0" }, - - "overrides": { + "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/xyzprinting_da_vinci_jr_pro_xplus_extruder_0.def.json b/resources/extruders/xyzprinting_da_vinci_jr_pro_xplus_extruder_0.def.json index ce653eeedd..225c2fa12a 100644 --- a/resources/extruders/xyzprinting_da_vinci_jr_pro_xplus_extruder_0.def.json +++ b/resources/extruders/xyzprinting_da_vinci_jr_pro_xplus_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "xyzprinting_da_vinci_jr_pro_xplus", "position": "0" }, - - "overrides": { + "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/xyzprinting_da_vinci_jr_w_pro_extruder_0.def.json b/resources/extruders/xyzprinting_da_vinci_jr_w_pro_extruder_0.def.json index 6b1a23da45..fe63ffbfa7 100644 --- a/resources/extruders/xyzprinting_da_vinci_jr_w_pro_extruder_0.def.json +++ b/resources/extruders/xyzprinting_da_vinci_jr_w_pro_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "xyzprinting_da_vinci_jr_w_pro", "position": "0" }, - - "overrides": { + "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/xyzprinting_da_vinci_pro_evo_extruder_0.def.json b/resources/extruders/xyzprinting_da_vinci_pro_evo_extruder_0.def.json new file mode 100644 index 0000000000..78da1dcbad --- /dev/null +++ b/resources/extruders/xyzprinting_da_vinci_pro_evo_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "xyzprinting_da_vinci_pro_evo", + "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/xyzprinting_da_vinci_super_extruder_0.def.json b/resources/extruders/xyzprinting_da_vinci_super_extruder_0.def.json index e414746665..61598d6199 100644 --- a/resources/extruders/xyzprinting_da_vinci_super_extruder_0.def.json +++ b/resources/extruders/xyzprinting_da_vinci_super_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "xyzprinting_da_vinci_super", "position": "0" }, - - "overrides": { + "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/z-bolt_extruder_0.def.json b/resources/extruders/z-bolt_extruder_0.def.json index 04c8d10cbb..ff97e20ef9 100644 --- a/resources/extruders/z-bolt_extruder_0.def.json +++ b/resources/extruders/z-bolt_extruder_0.def.json @@ -2,11 +2,9 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { - "position": "0" - }, - - "overrides": { + "metadata": { "position": "0" }, + "overrides": + { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 } diff --git a/resources/extruders/zav_extruder_1.def.json b/resources/extruders/zav_extruder_1.def.json index 88c302aaf0..f8f24f7a71 100644 --- a/resources/extruders/zav_extruder_1.def.json +++ b/resources/extruders/zav_extruder_1.def.json @@ -2,24 +2,19 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "zav_base", "position": "0" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 0 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, + "machine_extruder_end_code": { "default_value": ";---- Starting End G-code Extruder 1 ----\n;G92 E0 ;reset extruder distance\n;G1 F800 E-5 ;short retract\n;G1 F2400 X5 Y5 ;move near prime tower\n;G1 F2000 E-93 ;long retract for filament removal\n;G92 E0 ;reset extruder distance\n;G90 ;absolute coordinate\n;---- Ending End G-code Extruder 1 ----" }, + "machine_extruder_start_code": { "default_value": ";---- Starting Start G-code Extruder 1 ----\n;T0 ;switch to extruder 1\n;G92 E0 ;reset extruder distance\n;G1 F2000 E93 ;load filament\n;G92 E0 ;reset extruder distance\n;M104 S{material_print_temperature}\n;---- Ending Start G-code Extruder 1 ----" }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": - { - "default_value": ";---- Starting Start G-code Extruder 1 ----\n;T0 ;switch to extruder 1\n;G92 E0 ;reset extruder distance\n;G1 F2000 E93 ;load filament\n;G92 E0 ;reset extruder distance\n;M104 S{material_print_temperature}\n;---- Ending Start G-code Extruder 1 ----" - }, - "machine_extruder_end_code": - { - "default_value": ";---- Starting End G-code Extruder 1 ----\n;G92 E0 ;reset extruder distance\n;G1 F800 E-5 ;short retract\n;G1 F2400 X5 Y5 ;move near prime tower\n;G1 F2000 E-93 ;long retract for filament removal\n;G92 E0 ;reset extruder distance\n;G90 ;absolute coordinate\n;---- Ending End G-code Extruder 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/zav_extruder_2.def.json b/resources/extruders/zav_extruder_2.def.json index f2b418f62c..1c848a7c2c 100644 --- a/resources/extruders/zav_extruder_2.def.json +++ b/resources/extruders/zav_extruder_2.def.json @@ -2,24 +2,19 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "zav_base", "position": "1" }, - - "overrides": { + "overrides": + { "extruder_nr": { "default_value": 1 }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, + "machine_extruder_end_code": { "default_value": ";---- Starting End G-code Extruder 2 ----\nG92 E0 ;reset extruder distance\nG1 F800 E-5 ;short retract\nG1 F2400 X5 Y5 ;move near prime tower\nG1 F2000 E-93 ;long retract for filament removal\nG92 E0 ;reset extruder distance\nG90 ;absolute coordinate\n;---- Ending End G-code Extruder 2 ----" }, + "machine_extruder_start_code": { "default_value": ";---- Starting Start G-code Extruder 2 ----\nT1 ;switch to extruder 2\nG92 E0 ;reset extruder distance\nG1 F2000 E93 ;load filament\nG92 E0 ;reset extruder distance\nM104 S{material_print_temperature}\n;---- Ending Start G-code Extruder 2 ----" }, "machine_nozzle_offset_x": { "default_value": 17.7 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, - "machine_extruder_start_code": - { - "default_value": ";---- Starting Start G-code Extruder 2 ----\nT1 ;switch to extruder 2\nG92 E0 ;reset extruder distance\nG1 F2000 E93 ;load filament\nG92 E0 ;reset extruder distance\nM104 S{material_print_temperature}\n;---- Ending Start G-code Extruder 2 ----" - }, - "machine_extruder_end_code": - { - "default_value": ";---- Starting End G-code Extruder 2 ----\nG92 E0 ;reset extruder distance\nG1 F800 E-5 ;short retract\nG1 F2400 X5 Y5 ;move near prime tower\nG1 F2000 E-93 ;long retract for filament removal\nG92 E0 ;reset extruder distance\nG90 ;absolute coordinate\n;---- Ending End G-code Extruder 2 ----" - } + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/zone3d_printer_extruder_0.def.json b/resources/extruders/zone3d_printer_extruder_0.def.json index fb8f40d3e2..36535d0ee7 100644 --- a/resources/extruders/zone3d_printer_extruder_0.def.json +++ b/resources/extruders/zone3d_printer_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "zone3d_printer", "position": "0" }, - - "overrides": { + "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_agile_extruder_0.def.json b/resources/extruders/zyyx_agile_extruder_0.def.json index c01ffb59f3..a34d020faa 100644 --- a/resources/extruders/zyyx_agile_extruder_0.def.json +++ b/resources/extruders/zyyx_agile_extruder_0.def.json @@ -2,14 +2,15 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "zyyx_agile", "position": "0" }, - - "overrides": { + "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/i18n/cs_CZ/cura.po b/resources/i18n/cs_CZ/cura.po index 7ebe7251af..cfe7c3b0a6 100644 --- a/resources/i18n/cs_CZ/cura.po +++ b/resources/i18n/cs_CZ/cura.po @@ -1,14 +1,14 @@ # Cura -# Copyright (C) 2022 Ultimaker B.V. +# Copyright (C) 2022 UltiMaker. # This file is distributed under the same license as the Cura package. # Ultimaker , 2022. # msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0200\n" -"PO-Revision-Date: 2022-04-25 20:15+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-04-06 15:55+0000\n" +"PO-Revision-Date: 2023-02-16 20:28+0100\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" "Language: cs_CZ\n" @@ -16,238 +16,116 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n>=2 && n<=4 ? 1 : 2);\n" -"X-Generator: Poedit 3.0.1\n" +"X-Generator: Poedit 3.2.2\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -msgctxt "@label" -msgid "Unknown" -msgstr "Neznámý" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "Níže uvedené tiskárny nelze připojit, protože jsou součástí skupiny" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Dostupné síťové tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Nepřepsáno" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Connected printers" -msgstr "Připojené tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Preset printers" -msgstr "Přednastavené tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:143 -#, 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 "Doopravdy chcete odstranit {0}? Toto nelze vrátit zpět!" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:61 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 -msgctxt "@label" -msgid "Default" -msgstr "Výchozí" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:65 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Vizuální" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:66 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "Vizuální profil je navržen pro tisk vizuálních prototypů a modelů s cílem vysoké vizuální a povrchové kvality." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:70 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Technika" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "Inženýrský profil je navržen pro tisk funkčních prototypů a koncových částí s cílem lepší přesnosti a bližších tolerancí." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:75 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Návrh" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:76 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "Návrhový profil je navržen pro tisk počátečních prototypů a ověření koncepce s cílem podstatného zkrácení doby tisku." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:232 -msgctxt "@label" -msgid "Custom Material" -msgstr "Vlastní materiál" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:233 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 -msgctxt "@label" -msgid "Custom" -msgstr "Vlastní" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:391 -msgctxt "@label" -msgid "Custom profiles" -msgstr "Vlastní profily" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:426 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Všechny podporované typy ({0})" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Všechny soubory (*)" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Vypočítáno" - -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 +#: cura/API/Account.py:199 msgctxt "@info:title" msgid "Login failed" msgstr "Přihlášení selhalo" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: cura/Arranging/ArrangeObjectsJob.py:25 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Hledám nové umístění pro objekt" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: cura/Arranging/ArrangeObjectsJob.py:29 msgctxt "@info:title" msgid "Finding Location" msgstr "Hledám umístění" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Nemohu najít lokaci na podložce pro všechny objekty" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: cura/Arranging/ArrangeObjectsJob.py:43 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Nemohu najít umístění" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:115 +#: cura/Backups/Backup.py:115 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Nelze vytvořit archiv ze složky s uživatelskými daty: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:159 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +#: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159 +#: plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: plugins/CuraDrive/src/DrivePluginExtension.py:126 msgctxt "@info:title" msgid "Backup" msgstr "Záloha" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:134 +#: cura/Backups/Backup.py:134 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Pokusil se obnovit zálohu Cura bez nutnosti správných dat nebo metadat." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:145 +#: cura/Backups/Backup.py:145 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that is higher than the current version." msgstr "Pokusil se obnovit zálohu Cura, která je vyšší než aktuální verze." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:158 +#: cura/Backups/Backup.py:158 msgctxt "@info:backup_failed" msgid "The following error occurred while trying to restore a Cura backup:" msgstr "Během obnovení zálohy Cura se vyskytly následující chyby:" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: cura/BuildVolume.py:100 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." msgstr "Výška podložky byla snížena kvůli hodnotě nastavení „Sekvence tisku“, aby se zabránilo kolizi rámu s tištěnými modely." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 +#: cura/BuildVolume.py:103 msgctxt "@info:title" msgid "Build Volume" msgstr "Podložka" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura nelze spustit" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" -"

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

    \n" +"

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

    Jejda, Ultimaker Cura narazil na něco, co se nezdá být v pořádku.

    \n" +"

    Jejda, UltiMaker Cura narazil na něco, co se nezdá být v pořádku.

    \n" "                    

    Během spouštění jsme zaznamenali neodstranitelnou chybu. Bylo to pravděpodobně způsobeno některými nesprávnými konfiguračními soubory. Doporučujeme zálohovat a resetovat vaši konfiguraci.

    \n" "                    

    Zálohy najdete v konfigurační složce.

    \n" "                    

    Za účelem vyřešení problému nám prosím pošlete tento záznam pádu.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: cura/CrashHandler.py:122 msgctxt "@action:button" -msgid "Send crash report to Ultimaker" -msgstr "Poslat záznam o pádu do Ultimakeru" +msgid "Send crash report to UltiMaker" +msgstr "Poslat záznam o pádu do UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Zobrazit podrobný záznam pádu" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Zobrazit složku s konfigurací" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Zálohovat a resetovat konfiguraci" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Záznam pádu" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

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

    \n" @@ -258,573 +136,2243 @@ msgstr "" "            

    Použijte tlačítko „Odeslat zprávu“ k automatickému odeslání hlášení o chybě na naše servery

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Systémové informace" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Neznámý" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Verze Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Jazyk Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Jazyk operačního systému" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Platforma" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Verze Qt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Verze PyQt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized" -msgstr "" +msgstr "Neinicializováno" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Verze OpenGL: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL Vendor: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL Renderer: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 +#: cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Stopování chyby" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 +#: cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Protokoly" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 +#: cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Odeslat záznam" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:531 +#: cura/CuraApplication.py:540 msgctxt "@info:progress" msgid "Loading machines..." msgstr "Načítám zařízení..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +#: cura/CuraApplication.py:547 msgctxt "@info:progress" msgid "Setting up preferences..." msgstr "Nastavuji preference..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +#: cura/CuraApplication.py:692 msgctxt "@info:progress" msgid "Initializing Active Machine..." msgstr "Inicializuji aktivní zařízení..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +#: cura/CuraApplication.py:839 msgctxt "@info:progress" msgid "Initializing machine manager..." msgstr "Inicializuji správce zařízení..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +#: cura/CuraApplication.py:853 msgctxt "@info:progress" msgid "Initializing build volume..." msgstr "Inicializuji prostor podložky..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +#: cura/CuraApplication.py:921 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "Připravuji scénu..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +#: cura/CuraApplication.py:957 msgctxt "@info:progress" msgid "Loading interface..." msgstr "Načítám rozhraní..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +#: cura/CuraApplication.py:962 msgctxt "@info:progress" msgid "Initializing engine..." msgstr "Inicializuji engine..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#: cura/CuraApplication.py:1290 #, 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" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1798 +#: cura/CuraApplication.py:1816 #, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Současně lze načíst pouze jeden soubor G-kódu. Přeskočen import {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 +#: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 msgctxt "@info:title" msgid "Warning" msgstr "Varování" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#: cura/CuraApplication.py:1828 #, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "Nelze otevřít žádný jiný soubor, když se načítá G kód. Přeskočen import {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1812 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156 +#: cura/Settings/CuraContainerRegistry.py:166 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 msgctxt "@info:title" msgid "Error" msgstr "Chyba" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 +#: cura/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Neznámý" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "Níže uvedené tiskárny nelze připojit, protože jsou součástí skupiny" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Dostupné síťové tiskárny" + +#: cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Nepřepsáno" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:28 +msgctxt "@label" +msgid "Connected printers" +msgstr "Připojené tiskárny" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +msgctxt "@label" +msgid "Preset printers" +msgstr "Přednastavené tiskárny" + +#: cura/Machines/Models/GlobalStacksModel.py:165 +#, 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 "Doopravdy chcete odstranit {0}? Toto nelze vrátit zpět!" + +#: cura/Machines/Models/IntentCategoryModel.py:42 +#: cura/Machines/Models/IntentSelectionModel.py:61 +#: cura/Machines/Models/IntentTranslations.py:11 +#: cura/Machines/Models/QualityManagementModel.py:347 +msgctxt "@label" +msgid "Default" +msgstr "Výchozí" + +#: cura/Machines/Models/IntentCategoryModel.py:45 +#: cura/Machines/Models/IntentSelectionModel.py:65 +#: cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "Vizuální" + +#: cura/Machines/Models/IntentCategoryModel.py:46 +#: cura/Machines/Models/IntentSelectionModel.py:66 +#: cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "Vizuální profil je navržen pro tisk vizuálních prototypů a modelů s cílem vysoké vizuální a povrchové kvality." + +#: cura/Machines/Models/IntentCategoryModel.py:49 +#: cura/Machines/Models/IntentSelectionModel.py:70 +#: cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "Technika" + +#: cura/Machines/Models/IntentCategoryModel.py:50 +#: cura/Machines/Models/IntentSelectionModel.py:71 +#: cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "Inženýrský profil je navržen pro tisk funkčních prototypů a koncových částí s cílem lepší přesnosti a bližších tolerancí." + +#: cura/Machines/Models/IntentCategoryModel.py:53 +#: cura/Machines/Models/IntentSelectionModel.py:75 +#: cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "Návrh" + +#: cura/Machines/Models/IntentCategoryModel.py:54 +#: cura/Machines/Models/IntentSelectionModel.py:76 +#: cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "Návrhový profil je navržen pro tisk počátečních prototypů a ověření koncepce s cílem podstatného zkrácení doby tisku." + +#: cura/Machines/Models/MaterialManagementModel.py:232 +msgctxt "@label" +msgid "Custom Material" +msgstr "Vlastní materiál" + +#: cura/Machines/Models/MaterialManagementModel.py:233 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 +msgctxt "@label" +msgid "Custom" +msgstr "Vlastní" + +#: cura/Machines/Models/QualityManagementModel.py:400 +msgctxt "@label" +msgid "Custom profiles" +msgstr "Vlastní profily" + +#: cura/Machines/Models/QualityManagementModel.py:435 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Všechny podporované typy ({0})" + +#: cura/Machines/Models/QualityManagementModel.py:436 +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Všechny soubory (*)" + +#: cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Vypočítáno" + +#: cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Násobím a rozmisťuji objekty" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 +#: cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "Umisťuji objekty" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 +#: cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Umisťuji objekt" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +#: cura/OAuth2/AuthorizationHelpers.py:89 msgctxt "@message" msgid "Could not read response." msgstr "Nelze přečíst odpověď." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +#: cura/OAuth2/AuthorizationRequestHandler.py:75 msgctxt "@message" msgid "The provided state is not correct." msgstr "Poskytnutý stav není správný." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +#: cura/OAuth2/AuthorizationRequestHandler.py:80 msgctxt "@message" msgid "Timeout when authenticating with the account server." msgstr "Vypršel časový limit při autentizaci se serverem s účty." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +#: cura/OAuth2/AuthorizationRequestHandler.py:97 msgctxt "@message" msgid "Please give the required permissions when authorizing this application." msgstr "Při autorizaci této aplikace zadejte požadovaná oprávnění." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +#: cura/OAuth2/AuthorizationRequestHandler.py:104 msgctxt "@message" msgid "Something unexpected happened when trying to log in, please try again." msgstr "Při pokusu o přihlášení se stalo něco neočekávaného, zkuste to znovu." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:216 +#: cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Nepodařilo se mi spustit nový proces přihlášení. Zkontrolujte, zda nějaký jiný již neběží." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:277 +#: cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "Nelze se dostat na server účtu Ultimaker." +msgid "Unable to reach the UltiMaker account server." +msgstr "Nelze se dostat na server účtu UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 +#: cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" msgid "Log-in failed" msgstr "Přihlášení selhalo" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +#: cura/PrinterOutput/UploadMaterialsJob.py:104 msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Nepodařilo se vytvořit archiv s materiály pro synchronizaci s tiskárnami." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +#: cura/PrinterOutput/UploadMaterialsJob.py:111 +#: cura/PrinterOutput/UploadMaterialsJob.py:165 msgctxt "@text:error" msgid "Failed to load the archive of materials to sync it with printers." msgstr "Nepodařilo se načíst archiv s materiály pro synchronizaci s tiskárnami." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +#: cura/PrinterOutput/UploadMaterialsJob.py:143 msgctxt "@text:error" msgid "The response from Digital Factory appears to be corrupted." msgstr "Odpověď z Digital Factory se zdá být poškozená." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +#: cura/PrinterOutput/UploadMaterialsJob.py:147 +#: cura/PrinterOutput/UploadMaterialsJob.py:151 +#: cura/PrinterOutput/UploadMaterialsJob.py:155 msgctxt "@text:error" msgid "The response from Digital Factory is missing important information." msgstr "Odpověď z Digital Factory postrádá důležité informace." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +#: cura/PrinterOutput/UploadMaterialsJob.py:218 msgctxt "@text:error" msgid "Failed to connect to Digital Factory to sync materials with some of the printers." msgstr "Nepodařilo se připojit k Digital Factory pro synchronizaci materiálů s některými z tiskáren." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +#: cura/PrinterOutput/UploadMaterialsJob.py:232 msgctxt "@text:error" msgid "Failed to connect to Digital Factory." msgstr "Nepodařilo se připojit k Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:207 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: cura/Settings/ActiveQuality.py:43 +msgctxt "@label" +msgid "Experimental" +msgstr "Experimentální" + +#: cura/Settings/ContainerManager.py:207 +#: cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "Soubor již existuje" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: cura/Settings/ContainerManager.py:208 +#: cura/Settings/CuraContainerRegistry.py:141 #, 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 "Soubor {0} již existuje. Opravdu jej chcete přepsat?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 +#: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "Špatná cesta k souboru:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Nepodařilo se exportovat profil do {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Export profilu do {0} se nezdařil: Zapisovací zásuvný modul ohlásil chybu." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Exportován profil do {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Export úspěšný" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Nepodařilo se importovat profil z {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: cura/Settings/CuraContainerRegistry.py:209 #, 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 "Nemohu přidat profil z {0} před tím, než je přidána tiskárna." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "V souboru {0} není k dispozici žádný vlastní profil" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Import profilu z {0} se nezdařil:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: cura/Settings/CuraContainerRegistry.py:252 +#: cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Tento profil {0} obsahuje nesprávná data, nemohl je importovat." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Import profilu z {0} se nezdařil:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Úspěšně importován profil {0}." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Soubor {0} neobsahuje žádný platný profil." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Profil {0} má neznámý typ souboru nebo je poškozen." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Vlastní profil" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "V profilu chybí typ kvality." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Zatím neexistuje aktivní tiskárna." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Nepovedlo se přidat profil." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "Typ kvality '{0}' není kompatibilní s definicí '{1}' aktivního zařízení." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: cura/Settings/CuraContainerRegistry.py:488 #, 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 "Varování: Profil není viditelný, protože typ kvality '{0}' není dostupný pro aktuální konfiguraci. Přepněte na kombinaci materiálu a trysky, která může být použita s tímto typem kvality." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Nepodporovaný" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Výchozí" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:219 +#: cura/Settings/MachineManager.py:746 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:221 msgctxt "@label" msgid "Nozzle" msgstr "Tryska" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +#: cura/Settings/MachineManager.py:890 msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Nastavení byla změněna, aby odpovídala aktuální dostupnosti extruderů:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: cura/Settings/MachineManager.py:891 msgctxt "@info:title" msgid "Settings updated" msgstr "Nastavení aktualizováno" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 +#: cura/Settings/MachineManager.py:1514 msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extruder(y) zakázány" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 +#: cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Nepodporovaný" + +#: cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Výchozí" + +#: cura/UI/AddPrinterPagesModel.py:17 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" msgid "Add" msgstr "Přidat" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:290 +#: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290 msgctxt "@action:button" msgid "Finish" msgstr "Dokončit" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:508 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:323 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:291 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:74 +#: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386 +#: plugins/ImageReader/ConfigUI.qml:323 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 +#: resources/qml/ColorDialog.qml:143 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: resources/qml/Dialogs/RenameDialog.qml:103 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 msgctxt "@action:button" msgid "Cancel" msgstr "Zrušit" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: cura/UI/ObjectsModel.py:69 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Skupina #{group_nr}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 +#: cura/UI/PrintInformation.py:87 msgctxt "@tooltip" msgid "Outer Wall" msgstr "Vnější stěna" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +#: cura/UI/PrintInformation.py:88 msgctxt "@tooltip" msgid "Inner Walls" msgstr "Vnitřní stěna" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +#: cura/UI/PrintInformation.py:89 msgctxt "@tooltip" msgid "Skin" -msgstr "Skin" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +#: cura/UI/PrintInformation.py:90 msgctxt "@tooltip" msgid "Infill" msgstr "Výplň" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +#: cura/UI/PrintInformation.py:91 msgctxt "@tooltip" msgid "Support Infill" msgstr "Výplň podpor" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +#: cura/UI/PrintInformation.py:92 msgctxt "@tooltip" msgid "Support Interface" msgstr "Rozhraní podpor" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +#: cura/UI/PrintInformation.py:93 msgctxt "@tooltip" msgid "Support" msgstr "Podpora" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +#: cura/UI/PrintInformation.py:94 msgctxt "@tooltip" msgid "Skirt" msgstr "Límec" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +#: cura/UI/PrintInformation.py:95 msgctxt "@tooltip" msgid "Prime Tower" msgstr "Hlavní věž" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +#: cura/UI/PrintInformation.py:96 msgctxt "@tooltip" msgid "Travel" msgstr "Pohyb" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +#: cura/UI/PrintInformation.py:97 msgctxt "@tooltip" msgid "Retractions" msgstr "Retrakce" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +#: cura/UI/PrintInformation.py:98 msgctxt "@tooltip" msgid "Other" msgstr "Jiné" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:63 +#: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63 msgctxt "@text:window" msgid "The release notes could not be opened." msgstr "Poznámky k vydání nelze otevřít." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:277 +#: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277 msgctxt "@action:button" msgid "Next" msgstr "Další" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68 msgctxt "@action:button" msgid "Skip" msgstr "Přeskočit" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:443 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:186 +#: cura/UI/WhatsNewPagesModel.py:76 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444 +#: resources/qml/Dialogs/AboutDialog.qml:188 msgctxt "@action:button" msgid "Close" msgstr "Zavřít" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: cura/UltimakerCloud/CloudMaterialSync.py:66 msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Prosím synchronizujte před začátkem tisku materiálové profily s vašimi tiskárnami." -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: cura/UltimakerCloud/CloudMaterialSync.py:67 msgctxt "@action:button" msgid "New materials installed" msgstr "Byly nainstalovány nové materiály" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: cura/UltimakerCloud/CloudMaterialSync.py:74 msgctxt "@action:button" msgid "Sync materials" msgstr "Synchronizovat materiály" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:397 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:80 +#: cura/UltimakerCloud/CloudMaterialSync.py:82 +#: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80 msgctxt "@action:button" msgid "Learn more" msgstr "Zjistit více" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +#: cura/UltimakerCloud/CloudMaterialSync.py:135 msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Nelze uložit archiv s materiálem do {}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +#: cura/UltimakerCloud/CloudMaterialSync.py:136 msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Nepodařilo se uložit archiv s materiálem" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +#: cura/UltimakerCloud/CloudMaterialSync.py:188 msgctxt "@text" msgid "Unknown error." msgstr "Neznámá chyba." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:558 +#, 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 "Projektový soubor {0} obsahuje neznámý typ zařízení {1}. Nelze importovat zařízení. Místo toho budou importovány modely." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:561 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "Otevřít soubor s projektem" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: plugins/3MFReader/WorkspaceDialog.qml:99 +#: plugins/3MFReader/WorkspaceDialog.qml:127 +#: plugins/3MFReader/WorkspaceDialog.qml:134 +msgctxt "@button" +msgid "Create new" +msgstr "Vytvořit nový" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:692 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "Soubor projektu {0} je neočekávaně nedostupný: {1}." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:720 +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "Nepovedlo se otevřít soubor projektu" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:700 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:718 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "Soubor projektu {0} je poškozený: {1}." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:765 +#, 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 "Soubor projektu {0} je vytvořený s profily, které nejsou této verzi UltiMaker Cura známé." + +#: plugins/3MFReader/WorkspaceDialog.py:233 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Doporučeno" + +#: plugins/3MFReader/WorkspaceDialog.py:235 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Vlastní" + +#: plugins/3MFReader/WorkspaceDialog.py:411 +msgctxt "@info:status" +msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." +msgstr "Materiál použitý v tomto projektu závisí na jiných definicích materiálů, které nejsou dostupné v Cuře. To může způsobit nečekané problémy při tisku. Důrazně doporučujeme nainstalovat kompletní balíček materiálů z Obchodu." + +#: plugins/3MFReader/WorkspaceDialog.py:413 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "Materiálové profily nejsou nainstalovány" + +#: plugins/3MFReader/WorkspaceDialog.py:426 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "Instalovat materiály" + +#: plugins/3MFReader/WorkspaceDialog.qml:15 +msgctxt "@title:window" +msgid "Open Project" +msgstr "Otevřit projekt" + +#: plugins/3MFReader/WorkspaceDialog.qml:31 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61 +msgctxt "@action:title" +msgid "Summary - Cura Project" +msgstr "Souhrn - Projekt Cura" + +#: plugins/3MFReader/WorkspaceDialog.qml:65 +msgctxt "@action:ComboBox Update/override existing profile" +msgid "Update existing" +msgstr "Aktualizovat existující" + +#: plugins/3MFReader/WorkspaceDialog.qml:66 +msgctxt "@action:ComboBox Save settings in a new profile" +msgid "Create new" +msgstr "Vytvořit nový" + +#: plugins/3MFReader/WorkspaceDialog.qml:83 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97 +msgctxt "@action:label" +msgid "Printer settings" +msgstr "Nastavení tiskárny" + +#: plugins/3MFReader/WorkspaceDialog.qml:92 +#: plugins/3MFReader/WorkspaceRow.qml:23 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106 +msgctxt "@action:label" +msgid "Type" +msgstr "Typ" + +#: plugins/3MFReader/WorkspaceDialog.qml:98 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +msgctxt "@action:label" +msgid "Printer Group" +msgstr "Skupina tiskárny" + +#: plugins/3MFReader/WorkspaceDialog.qml:103 +msgctxt "@action:label" +msgid "Open With" +msgstr "Otevřít s" + +#: plugins/3MFReader/WorkspaceDialog.qml:104 +msgctxt "@info:tooltip" +msgid "Printer settings will be updated to match the settings saved with the project." +msgstr "Nastavení tiskárny bude aktualizováno, aby odpovídalo nastavení uloženému v projektu." + +#: plugins/3MFReader/WorkspaceDialog.qml:156 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222 +msgctxt "@action:label" +msgid "Profile settings" +msgstr "Nastavení profilu" + +#: plugins/3MFReader/WorkspaceDialog.qml:166 +#: plugins/3MFReader/WorkspaceDialog.qml:238 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246 +msgctxt "@action:label" +msgid "Name" +msgstr "Název" + +#: plugins/3MFReader/WorkspaceDialog.qml:172 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263 +msgctxt "@action:label" +msgid "Intent" +msgstr "Záměr" + +#: plugins/3MFReader/WorkspaceDialog.qml:178 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230 +msgctxt "@action:label" +msgid "Not in profile" +msgstr "Není v profilu" + +#: plugins/3MFReader/WorkspaceDialog.qml:179 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235 +msgctxt "@action:label" +msgid "%1 override" +msgid_plural "%1 overrides" +msgstr[0] "%1 přepsání" +msgstr[1] "%1 přepsání" +msgstr[2] "%1 přepsání" + +#: plugins/3MFReader/WorkspaceDialog.qml:185 +msgctxt "@action:label" +msgid "Derivative from" +msgstr "Derivát z" + +#: plugins/3MFReader/WorkspaceDialog.qml:186 +msgctxt "@action:label" +msgid "%1, %2 override" +msgid_plural "%1, %2 overrides" +msgstr[0] "%1, %2 override" +msgstr[1] "%1, %2 overrides" +msgstr[2] "%1, %2 overrides" + +#: plugins/3MFReader/WorkspaceDialog.qml:226 +msgctxt "@action:label" +msgid "Material settings" +msgstr "Nastavení materiálu" + +#: plugins/3MFReader/WorkspaceDialog.qml:280 +msgctxt "@action:label" +msgid "Setting visibility" +msgstr "Nastavení zobrazení" + +#: plugins/3MFReader/WorkspaceDialog.qml:290 +msgctxt "@action:label" +msgid "Mode" +msgstr "Mód" + +#: plugins/3MFReader/WorkspaceDialog.qml:296 +msgctxt "@action:label" +msgid "%1 out of %2" +msgstr "%1 z %2" + +#: plugins/3MFReader/WorkspaceDialog.qml:321 +msgctxt "@action:warning" +msgid "Loading a project will clear all models on the build plate." +msgstr "Nahrání projektu vymaže všechny modely na podložce." + +#: plugins/3MFReader/WorkspaceDialog.qml:367 +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." + +#: plugins/3MFReader/WorkspaceDialog.qml:392 +msgctxt "@action:button" +msgid "Open" +msgstr "Otevřít" + +#: plugins/3MFReader/WorkspaceDialog.qml:398 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "Přesto otevřít projekt" + +#: plugins/3MFReader/WorkspaceDialog.qml:407 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "Nainstalovat chybějící materiál" + +#: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33 +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "Soubor 3MF" + +#: plugins/3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "Čtečka 3MF" + +#: plugins/3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Poskytuje podporu pro čtení souborů 3MF." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "Plugin 3MF Writer je poškozen." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Zatím neexistuje žádný pracovní prostor. Nejprve prosím přidejte tiskárnu." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "Nemáte oprávnění zapisovat do tohoto pracovního prostoru." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +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." + +#: plugins/3MFWriter/ThreeMFWriter.py:240 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Chyba při zápisu 3mf file." + +#: plugins/3MFWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "Soubor 3MF" + +#: plugins/3MFWriter/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Soubor Cura Project 3MF" + +#: plugins/3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "Zapisovač 3MF" + +#: plugins/3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Poskytuje podporu pro psaní souborů 3MF." + +#: plugins/AMFReader/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "Soubor AMF" + +#: plugins/AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "Čtečka AMF" + +#: plugins/AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Poskytuje podporu pro čtení souborů AMF." + +#: plugins/CuraDrive/plugin.json +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Zálohujte a obnovte konfiguraci." + +#: plugins/CuraDrive/plugin.json +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura zálohy" + +#: plugins/CuraDrive/src/CreateBackupJob.py:25 +msgctxt "@info:title" +msgid "Backups" +msgstr "Zálohy" + +#: plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Nastala chyba při nahrávání vaší zálohy." + +#: plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "Vytvářím zálohu..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "Nastala chyba při vytváření zálohy." + +#: plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Nahrávám vaši zálohu..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Vaše záloha byla úspěšně nahrána." + +#: plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "Záloha překračuje maximální povolenou velikost soubor." + +#: plugins/CuraDrive/src/DriveApiService.py:86 +#: plugins/CuraDrive/src/RestoreBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Nastala chyba při pokusu obnovit vaši zálohu." + +#: plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Spravovat zálohy" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "Chcete více?" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Zálohovat nyní" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Automatické zálohy" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Automaticky vytvořte zálohu každý den, kdy je spuštěna Cura." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 +msgctxt "@button" +msgid "Restore" +msgstr "Obnovit" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Odstranit zálohu" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Opravdu chcete tuto zálohu smazat? To nelze vrátit zpět." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Obnovit zálohu" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "Před obnovením zálohy budete muset restartovat Curu. Chcete nyní Curu zavřít?" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Cura verze" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Zařízení" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Materiály" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Profily" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Zásuvné moduly" + +#: plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Cura zálohy" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "Moje zálohy" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Momentálně nemáte žádné zálohy. Pomocí tlačítka 'Zálohovat nyní' vytvořte." + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Během fáze náhledu budete omezeni na 5 viditelných záloh. Chcete-li zobrazit starší, odstraňte zálohu." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Zálohovat a synchronizovat vaše nastavení Cura." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 +#: plugins/Marketplace/resources/qml/Marketplace.qml:312 +#: resources/qml/Account/GeneralOperations.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180 +#: resources/qml/WelcomePages/CloudContent.qml:212 +msgctxt "@button" +msgid "Sign in" +msgstr "Přihlásit se" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message" +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." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:163 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "Slicování selhalo" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Nahlásit chybu" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:169 +msgctxt "@message:description" +msgid "Report a bug on UltiMaker Cura's issue tracker." +msgstr "Nahlásit chybu v UltiMaker Cura issue trackeru." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:416 +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "Nelze slicovat s aktuálním materiálem, protože je nekompatibilní s vybraným strojem nebo konfigurací." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:417 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:450 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:477 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:501 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:514 +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "Nelze slicovat" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:449 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "S aktuálním nastavením nelze slicovat. Následující nastavení obsahuje chyby: {0}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:476 +#, 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 "Nelze slicovat kvůli některým nastavení jednotlivých modelů. Následující nastavení obsahuje chyby na jednom nebo více modelech: {error_labels}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:488 +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "Nelze slicovat, protože hlavní věž nebo primární pozice jsou neplatné." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:500 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "Nelze slicovat, protože jsou zde objekty asociované k zakázanému extruder %s." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:510 +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 "" +"Zkontrolujte nastavení a zda vaše modely:\n" +"- Vejdou se na pracovní prostor\n" +"- Jsou přiřazeny k povolenému extruderu\n" +"- Nejsou nastavené jako modifikační sítě" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Zpracovávám vrstvy" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Informace" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Poskytuje odkaz na backend krájení CuraEngine." + +#: plugins/CuraProfileReader/__init__.py:14 +#: plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Cura profil" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Čtečka Cura profilu" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Poskytuje podporu pro import profilů Cura." + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Zapisovač Cura profilu" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Poskytuje podporu pro export profilů Cura." + +#: plugins/DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Připojuje k Digitální knihovně. Umožňuje Cuře otevírat a ukládat soubory z a do Digitální knihovny." + +#: plugins/DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Digitální knihovna UltiMaker" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 +msgctxt "@option" +msgid "Save Cura project and print file" +msgstr "Uložit projekt Cura a tiskový soubor UFP" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Uložit projekt Cura" + +#: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19 +msgctxt "@text Placeholder for the username if it has been deleted" +msgid "deleted user" +msgstr "smazaný uživatel" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Nemohu načíst informace o aktualizaci." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, 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 "K dispozici mohou být nové funkce nebo opravy chyb pro zařízení {machine_name}! Pokud jste tak už neučinili, je doporučeno zaktualizovat firmware vaší tiskárny na verzi {latest_version}." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "Nový stabilní firmware je k dispozici pro %s" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Jak aktualizovat" + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Zkontroluje dostupné aktualizace firmwaru." + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Kontroler aktualizace firmwaru" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Aktualizovat firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "Aktualizovat firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 +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 "Firmware je software běžící přímo na vaší 3D tiskárně. Tento firmware řídí krokové motory, reguluje teplotu a v konečném důsledku zajišťuje vaši práci tiskárny." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "Dodávání firmwaru s novými tiskárnami funguje, ale nové verze mají obvykle více funkcí a vylepšení." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Automaticky aktualizovat firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Nahrát vlastní firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "Firmware nelze aktualizovat, protože není spojeno s tiskárnou." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "Firmware nelze aktualizovat, protože připojení k tiskárně nepodporuje aktualizaci firmwaru." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Vybrat vlastní firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Aktualizace firmwaru" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 +msgctxt "@label" +msgid "Updating firmware." +msgstr "Aktualizuji firmware." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Aktualizace firmwaru kompletní." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "Aktualizace firmwaru selhala kvůli neznámému problému." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "Aktualizace firmwaru selhala kvůli chybě v komunikaci." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "Aktualizace firmwaru selhala kvůli chybě vstupu / výstupu." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "Aktualizace firmwaru selhala kvůli chybějícímu firmwaru." + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "name" +msgid "Firmware Updater" +msgstr "" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Poskytuje akce počítače pro aktualizaci firmwaru." + +#: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "Kompresovaný soubor G kódu" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Čtečka kompresovaného G kódu" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Čte g-kód z komprimovaného archivu." + +#: plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "GCodeGzWriter nepodporuje textový mód." + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Zapisova kompresovaného G kódu" + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Zapíše g-kód do komprimovaného archivu." + +#: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14 +#: plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "Soubor G-kódu" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Čtečka profilu G kódu" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Poskytuje podporu pro import profilů ze souborů g-kódu." + +#: plugins/GCodeReader/FlavorParser.py:359 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "Zpracovávám G kód" + +#: plugins/GCodeReader/FlavorParser.py:361 +#: plugins/GCodeReader/FlavorParser.py:515 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "Podrobnosti G kódu" + +#: plugins/GCodeReader/FlavorParser.py:513 +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 "Před odesláním souboru se ujistěte, že je g-kód vhodný pro vaši tiskárnu a konfiguraci tiskárny. Reprezentace g-kódu nemusí být přesná." + +#: plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "G soubor" + +#: plugins/GCodeReader/plugin.json +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Povoluje načítání a zobrazení souborů G kódu." + +#: plugins/GCodeReader/plugin.json +msgctxt "name" +msgid "G-code Reader" +msgstr "Čtečka G kódu" + +#: plugins/GCodeWriter/GCodeWriter.py:75 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "GCodeWriter nepodporuje netextový mód." + +#: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Před exportem prosím připravte G-kód." + +#: plugins/GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "Zapisovač G kódu" + +#: plugins/GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Zapisuje G kód o souboru." + +#: plugins/ImageReader/ConfigUI.qml:14 +msgctxt "@title:window" +msgid "Convert Image" +msgstr "Konvertovat obrázek" + +#: plugins/ImageReader/ConfigUI.qml:33 +msgctxt "@action:label" +msgid "Height (mm)" +msgstr "Výška (mm)" + +#: plugins/ImageReader/ConfigUI.qml:56 +msgctxt "@info:tooltip" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "Maximální vzdálenost každého pixelu od „základny“." + +#: plugins/ImageReader/ConfigUI.qml:66 +msgctxt "@action:label" +msgid "Base (mm)" +msgstr "Základna (mm)" + +#: plugins/ImageReader/ConfigUI.qml:90 +msgctxt "@info:tooltip" +msgid "The base height from the build plate in millimeters." +msgstr "Výška základny od podložky v milimetrech." + +#: plugins/ImageReader/ConfigUI.qml:100 +msgctxt "@action:label" +msgid "Width (mm)" +msgstr "Šířka (mm)" + +#: plugins/ImageReader/ConfigUI.qml:124 +msgctxt "@info:tooltip" +msgid "The width in millimeters on the build plate" +msgstr "Šířka na podložce v milimetrech" + +#: plugins/ImageReader/ConfigUI.qml:134 +msgctxt "@action:label" +msgid "Depth (mm)" +msgstr "Hloubka (mm)" + +#: plugins/ImageReader/ConfigUI.qml:158 +msgctxt "@info:tooltip" +msgid "The depth in millimeters on the build plate" +msgstr "Hloubka podložky v milimetrech" + +#: plugins/ImageReader/ConfigUI.qml:187 +msgctxt "@item:inlistbox" +msgid "Darker is higher" +msgstr "Tmavější je vyšší" + +#: plugins/ImageReader/ConfigUI.qml:188 +msgctxt "@item:inlistbox" +msgid "Lighter is higher" +msgstr "Světlejší je vyšší" + +#: plugins/ImageReader/ConfigUI.qml:195 +msgctxt "@info:tooltip" +msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." +msgstr "U litofanů by tmavé pixely měly odpovídat silnějším místům, aby blokovaly více světla procházejícího. Pro výškové mapy znamenají světlejší pixely vyšší terén, takže světlejší pixely by měly odpovídat silnějším umístěním v generovaném 3D modelu." + +#: plugins/ImageReader/ConfigUI.qml:205 +msgctxt "@action:label" +msgid "Color Model" +msgstr "Barevný model" + +#: plugins/ImageReader/ConfigUI.qml:224 +msgctxt "@item:inlistbox" +msgid "Linear" +msgstr "Lineární" + +#: plugins/ImageReader/ConfigUI.qml:225 +msgctxt "@item:inlistbox" +msgid "Translucency" +msgstr "Průsvitnost" + +#: plugins/ImageReader/ConfigUI.qml:232 +msgctxt "@info:tooltip" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "Pro litofany je k dispozici jednoduchý logaritmický model pro průsvitnost. U výškových map odpovídají hodnoty pixelů lineárně výškám." + +#: plugins/ImageReader/ConfigUI.qml:242 +msgctxt "@action:label" +msgid "1mm Transmittance (%)" +msgstr "1mm propustnost (%)" + +#: plugins/ImageReader/ConfigUI.qml:263 +msgctxt "@info:tooltip" +msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." +msgstr "Procento světla pronikajícího do tisku o tloušťce 1 milimetr. Snížení této hodnoty zvyšuje kontrast v tmavých oblastech a snižuje kontrast ve světlých oblastech obrazu." + +#: plugins/ImageReader/ConfigUI.qml:274 +msgctxt "@action:label" +msgid "Smoothing" +msgstr "Vyhlazování" + +#: plugins/ImageReader/ConfigUI.qml:298 +msgctxt "@info:tooltip" +msgid "The amount of smoothing to apply to the image." +msgstr "Množství vyhlazení, které se použije na obrázek." + +#: plugins/ImageReader/ConfigUI.qml:329 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 +#: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25 +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + +#: plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "Obrázek JPG" + +#: plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "Obrázek JPEG" + +#: plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "Obrázek PNG" + +#: plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "Obrázek BMP" + +#: plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "Obrázek GIF" + +#: plugins/ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Umožňuje generovat tiskovou geometrii ze 2D obrazových souborů." + +#: plugins/ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Čtečka obrázků" + +#: plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Profily Cura 15.04" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Čtečka legacy Cura profilu" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Poskytuje podporu pro import profilů ze starších verzí Cura." + +#: plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Nastavení zařízení" + +#: plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Tiskárna" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Nastavení trysky" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Velikost trysky" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Kompatibilní průměr materiálu" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "X offset trysky" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Y offset trysky" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Číslo chladícího větráku" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "Počáteční G-kód extuderu" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "Ukončující G-kód extuderu" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Nastavení tiskárny" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (Šířka)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Hloubka)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Výška)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Tvar tiskové podložky" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 +msgctxt "@label" +msgid "Origin at center" +msgstr "Počátek ve středu" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 +msgctxt "@label" +msgid "Heated bed" +msgstr "Topná podložka" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Vyhřívaný objem sestavení" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 +msgctxt "@label" +msgid "G-code flavor" +msgstr "Varianta G kódu" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Nastavení tiskové hlavy" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 +msgctxt "@label" +msgid "X min" +msgstr "X min" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 +msgctxt "@label" +msgid "Y min" +msgstr "Y min" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 +msgctxt "@label" +msgid "X max" +msgstr "X max" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 +msgctxt "@label" +msgid "Y max" +msgstr "Y max" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Výška rámu tiskárny" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Počet extrůderů" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:342 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Aplikovat offsety extruderu do G kódu" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:390 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "Počáteční G kód" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:401 +msgctxt "@title:label" +msgid "End G-code" +msgstr "Ukončující G kód" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Akce nastavení zařízení" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Poskytuje způsob, jak změnit nastavení zařízení (například objem sestavení, velikost trysek atd.)." + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "Chcete synchronizovat materiálové a softwarové balíčky s vaším účtem?" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:95 +msgctxt "@info:title" +msgid "Changes detected from your UltiMaker account" +msgstr "Zjištěny změny z vašeho účtu UltiMaker" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 +msgctxt "@action:button" +msgid "Sync" +msgstr "Synchronizovat" + +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "Synchronizuji..." + +#: plugins/Marketplace/CloudSync/LicenseModel.py:12 +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:79 +msgctxt "@button" +msgid "Decline" +msgstr "Odmítnout" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:13 +#: resources/qml/WelcomePages/UserAgreementContent.qml:53 +msgctxt "@button" +msgid "Agree" +msgstr "Přijmout" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:77 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Licenční ujednání zásuvného modulu" + +#: plugins/Marketplace/CloudSync/LicensePresenter.py:42 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Odmítnout a odstranit z účtu" + +#: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "Než se změny projeví, musíte ukončit a restartovat {}." + +#: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "Nepovedlo se stáhnout {} zásuvných modulů" + +#: plugins/Marketplace/LocalPackageList.py:28 +msgctxt "@label" +msgid "Installed Plugins" +msgstr "Nainstalované moduly" + +#: plugins/Marketplace/LocalPackageList.py:29 +msgctxt "@label" +msgid "Installed Materials" +msgstr "Nainstalované materiály" + +#: plugins/Marketplace/LocalPackageList.py:33 +msgctxt "@label" +msgid "Bundled Plugins" +msgstr "Přibalené moduly" + +#: plugins/Marketplace/LocalPackageList.py:34 +msgctxt "@label" +msgid "Bundled Materials" +msgstr "Přibalené materiály" + +#: plugins/Marketplace/PackageModel.py:43 +msgctxt "@label:property" +msgid "Unknown Package" +msgstr "Neznámý balíček" + +#: plugins/Marketplace/PackageModel.py:66 +msgctxt "@label:property" +msgid "Unknown Author" +msgstr "Neznámý autor" + +#: plugins/Marketplace/PackageModel.py:95 +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 "Balíček materiálů spojený s tímto Cura projektem nebyl nalezen v Ultimaker Marketplace. Částečnou definici materiálového profilu uloženou v Cura projektu používejte na vlastní nebezpečí." + +#: plugins/Marketplace/RemotePackageList.py:117 +msgctxt "@info:error" +msgid "Could not interpret the server's response." +msgstr "Nelze přečíst odpověď serveru." + +#: plugins/Marketplace/RemotePackageList.py:148 +msgctxt "@info:error" +msgid "Could not reach Marketplace." +msgstr "Nelze se připojit k Obchodu." + +#: plugins/Marketplace/plugin.json +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Spravuje rozšíření aplikace a umožňuje prohlížení rozšíření z webu UltiMaker." + +#: plugins/Marketplace/plugin.json +msgctxt "name" +msgid "Marketplace" +msgstr "Obchod" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 +msgctxt "@title" +msgid "Changes from your account" +msgstr "Změny z vašeho účtu" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +msgctxt "@button" +msgid "Dismiss" +msgstr "Schovat" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +#: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 +#: resources/qml/WelcomePages/WhatsNewContent.qml:175 +msgctxt "@button" +msgid "Next" +msgstr "Další" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "Následující balíčky byly přidány:" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "Následující balíčky nelze nainstalovat z důvodu nekompatibilní verze Cura:" + +#: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "Nainstalovat chybějící materiály" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "Licenční smlouva modulu" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:47 +msgctxt "@text" +msgid "Please read and agree with the plugin licence." +msgstr "Prosím přečtěte si a přijměte licenci modulu." + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "Příjmout" + +#: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Spravovat balíčky" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:12 +msgctxt "@header" +msgid "Manage packages" +msgstr "Spravovat balíčky" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:16 +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 "Zde můžete spravovat své UltiMaker Cura moduly a materiály. Udržujte své moduly aktuální a pravidelně zálohujte své nastavení." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" +msgid "Loading..." +msgstr "Načítám..." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "Zásuvné moduly" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "Materiály" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "Hledat v prohlížeči" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:271 +msgctxt "@button" +msgid "In order to use the package you will need to restart Cura" +msgstr "Abyste mohli balíček použít, musíte restartovat Curu" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:279 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "Ukončit %1" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:300 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" +msgstr "Přihlaste se, abyste získali ověřené pluginy a materiály pro UltiMaker Cura Enterprise" + +#: plugins/Marketplace/resources/qml/Materials.qml:8 +#: plugins/Marketplace/resources/qml/MissingPackages.qml:8 +msgctxt "@header" +msgid "Install Materials" +msgstr "Instalovat materiály" + +#: plugins/Marketplace/resources/qml/Materials.qml:12 +msgctxt "@text" +msgid "Select and install material profiles optimised for your UltiMaker 3D printers." +msgstr "Vyberte a nainstalujte materiálové profily optimalizované pro vaše 3D tiskárny UltiMaker." + +#: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "Pro instalaci balíčku musíte přijmout licenční ujednání" + +#: plugins/Marketplace/resources/qml/OnboardBanner.qml:101 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205 +msgctxt "@button:label" +msgid "Learn More" +msgstr "Zjistit Více" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170 +msgctxt "@label Is followed by the name of an author" +msgid "By" +msgstr "Od" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Disable" +msgstr "Vypnout" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Enable" +msgstr "Zapnout" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242 +msgctxt "@button" +msgid "Downgrading..." +msgstr "Snižuji verzi..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243 +msgctxt "@button" +msgid "Downgrade" +msgstr "Snížit verzi" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247 +msgctxt "@button" +msgid "Installing..." +msgstr "Instaluji..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248 +msgctxt "@button" +msgid "Install" +msgstr "Instalovat" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252 +msgctxt "@button" +msgid "Uninstall" +msgstr "Odinstalovat" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Update" +msgstr "Aktualizovat" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Updating..." +msgstr "Aktualizuji..." + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "Detaily balíčku" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Zpět" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "Popis" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "Kompatibilní tiskárny" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "Žádné informace o kompatibilitě" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "Kompatibilní materiály podpor" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "Žádné" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:193 +msgctxt "@header" +msgid "Compatible with Material Station" +msgstr "Kompatibilní s Material Station" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "No" +msgstr "Ne" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "Yes" +msgstr "Ano" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:219 +msgctxt "@header" +msgid "Optimized for Air Manager" +msgstr "Optimalizováno pro Air Manager" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Visit plug-in website" +msgstr "Navštívit webovou stránku modulu" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Website" +msgstr "Webová stránka" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:252 +msgctxt "@button" +msgid "Buy spool" +msgstr "Koupit cívku" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:261 +msgctxt "@button" +msgid "Safety datasheet" +msgstr "Bezpečnostní list" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:270 +msgctxt "@button" +msgid "Technical datasheet" +msgstr "Technický list" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Failed to load packages:" +msgstr "Nepodařilo se načíst balíčky:" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Retry?" +msgstr "Opakovat?" + +#: plugins/Marketplace/resources/qml/Packages.qml:167 +msgctxt "@button" +msgid "Loading" +msgstr "Načítám" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No more results to load" +msgstr "Žádné další výsledky k načtení" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No results found with current filter" +msgstr "S aktuálním filtrem nebyly nalezeny žádné výsledky" + +#: plugins/Marketplace/resources/qml/Packages.qml:226 +msgctxt "@button" +msgid "Load more" +msgstr "Načíst více" + +#: plugins/Marketplace/resources/qml/Plugins.qml:8 +msgctxt "@header" +msgid "Install Plugins" +msgstr "Nainstalovat moduly" + +#: plugins/Marketplace/resources/qml/Plugins.qml:12 +msgctxt "@text" +msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." +msgstr "Urychlete váš postup práce a přizpůsobte si zážitek s UltiMaker Cura pomocí modulů, kterými přispěla naše úžasná komunita uživatelů." + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 +msgctxt "@info" +msgid "UltiMaker Verified Plug-in" +msgstr "Modul ověřený společností UltiMaker" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "UltiMaker Certified Material" +msgstr "Materiál certifikovaný společností UltiMaker" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 +msgctxt "@info" +msgid "UltiMaker Verified Package" +msgstr "Balíček ověřený společností UltiMaker" + +#: plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "Asistent 3D modelu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -838,827 +2386,1094 @@ msgstr "" "

    Zjistěte, jak zajistit nejlepší možnou kvalitu a spolehlivost tisku.

    \n" "

    Zobrazit průvodce kvalitou tisku

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 -#, 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 "Projektový soubor {0} obsahuje neznámý typ zařízení {1}. Nelze importovat zařízení. Místo toho budou importovány modely." +#: plugins/ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Zkontroluje možné tiskové modely a konfiguraci tisku a poskytne návrhy." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "Otevřít soubor s projektem" +#: plugins/ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Kontroler modelu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "Soubor projektu {0} je neočekávaně nedostupný: {1}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:659 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "Nepovedlo se otevřít soubor projektu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:658 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "Soubor projektu {0} je poškozený: {1}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:711 -#, 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 "Soubor projektu {0} je vytvořený profily, které jsou této verzi Ultimaker Cura neznámé." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Doporučeno" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:214 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Vlastní" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:390 -msgctxt "@info:status" -msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 -msgctxt "@info:title" -msgid "Material profiles not installed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 -msgctxt "@action:button" -msgid "Install Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "Soubor 3MF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "Plugin 3MF Writer je poškozen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "Zatím neexistuje žádný pracovní prostor. Nejprve prosím přidejte tiskárnu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "Nemáte oprávnění zapisovat do tohoto pracovního prostoru." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 -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." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:238 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Chyba při zápisu 3mf file." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:282 -#, python-brace-format -msgctxt "@error:material" -msgid "It was not possible to store material package information in project file: {material}. This project may not open correctly on other systems." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 -msgctxt "@info:title" -msgid "Failed to save material package information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "Soubor 3MF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Soubor Cura Project 3MF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Soubor AMF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 -msgctxt "@info:title" -msgid "Backups" -msgstr "Zálohy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Nastala chyba při nahrávání vaší zálohy." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Vytvářím zálohu..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "Nastala chyba při vytváření zálohy." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Nahrávám vaši zálohu..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Vaše záloha byla úspěšně nahrána." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "Záloha překračuje maximální povolenou velikost soubor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Nastala chyba při pokusu obnovit vaši zálohu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Spravovat zálohy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 -msgctxt "@message" -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." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "Slicování selhalo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 -msgctxt "@message:button" -msgid "Report a bug" -msgstr "Nahlásit chybu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 -msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." -msgstr "Nahlásit chybu v Ultimaker Cura issue trackeru." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:400 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "Nelze slicovat s aktuálním materiálem, protože je nekompatibilní s vybraným strojem nebo konfigurací." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:401 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:434 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:461 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:473 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:485 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:498 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "Nelze slicovat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:433 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "S aktuálním nastavením nelze slicovat. Následující nastavení obsahuje chyby: {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:460 -#, 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 "Nelze slicovat kvůli některým nastavení jednotlivých modelů. Následující nastavení obsahuje chyby na jednom nebo více modelech: {error_labels}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:472 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "Nelze slicovat, protože hlavní věž nebo primární pozice jsou neplatné." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:484 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "Nelze slicovat, protože jsou zde objekty asociované k zakázanému extruder %s." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 -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 "" -"Zkontrolujte nastavení a zda vaše modely:\n" -"- Vejdou se na pracovní prostor\n" -"- Jsou přiřazeny k povolenému extruderu\n" -"- Nejsou nastavené jako modifikační sítě" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Zpracovávám vrstvy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 -msgctxt "@info:title" -msgid "Information" -msgstr "Informace" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura profil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" -msgid "Could not access update information." -msgstr "Nemohu načíst informace o aktualizaci." +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 "" +"Zkontrolujte, zda má tiskárna připojení:\n" +"- Zkontrolujte, zda je tiskárna zapnutá.\n" +"- Zkontrolujte, zda je tiskárna připojena k síti.\n" +"- Zkontrolujte, zda jste přihlášeni k objevování tiskáren připojených k cloudu." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, 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 "K dispozici mohou být nové funkce nebo opravy chyb pro zařízení {machine_name}! Pokud jste tak už neučinili, je doporučeno zaktualizovat firmware vaší tiskárny na verzi {latest_version}." +#: plugins/MonitorStage/MonitorMain.qml:113 +msgctxt "@info" +msgid "Please connect your printer to the network." +msgstr "Připojte tiskárnu k síti." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s stable firmware available" -msgstr "Nový stabilní firmware je k dispozici pro %s" +#: plugins/MonitorStage/MonitorMain.qml:148 +msgctxt "@label link to technical assistance" +msgid "View user manuals online" +msgstr "Zobrazit online manuály" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "Jak aktualizovat" +#: plugins/MonitorStage/MonitorMain.qml:164 +msgctxt "@info" +msgid "In order to monitor your print from Cura, please connect the printer." +msgstr "Abyste mohli monitorovat tisk z Cury, připojte prosím tiskárnu." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Aktualizovat firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Kompresovaný soubor G kódu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter nepodporuje textový mód." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Soubor G-kódu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:350 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Zpracovávám G kód" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:506 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "Podrobnosti G kódu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 -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 "Před odesláním souboru se ujistěte, že je g-kód vhodný pro vaši tiskárnu a konfiguraci tiskárny. Reprezentace g-kódu nemusí být přesná." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G soubor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter nepodporuje netextový mód." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Před exportem prosím připravte G-kód." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Obrázek JPG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Obrázek JPEG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Obrázek PNG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Obrázek BMP" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Obrázek GIF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Profily Cura 15.04" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Nastavení zařízení" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Chcete synchronizovat materiálové a softwarové balíčky s vaším účtem?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Zjištěny změny z vašeho účtu Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 -msgctxt "@action:button" -msgid "Sync" -msgstr "Synchronizovat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Synchronizuji..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:12 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:79 -msgctxt "@button" -msgid "Decline" -msgstr "Odmítnout" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:13 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53 -msgctxt "@button" -msgid "Agree" -msgstr "Přijmout" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Licenční ujednání zásuvného modulu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Odmítnout a odstranit z účtu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "Než se změny projeví, musíte ukončit a restartovat {}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "Nepovedlo se stáhnout {} zásuvných modulů" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:28 -msgctxt "@label" -msgid "Installed Plugins" -msgstr "Nainstalované moduly" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:29 -msgctxt "@label" -msgid "Installed Materials" -msgstr "Nainstalované materiály" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:33 -msgctxt "@label" -msgid "Bundled Plugins" -msgstr "Přibalené moduly" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:34 -msgctxt "@label" -msgid "Bundled Materials" -msgstr "Přibalené materiály" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:43 -msgctxt "@label:property" -msgid "Unknown Package" -msgstr "Neznámý balíček" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:66 -msgctxt "@label:property" -msgid "Unknown Author" -msgstr "Neznámý autor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:117 -msgctxt "@info:error" -msgid "Could not interpret the server's response." -msgstr "Nelze přečíst odpověď serveru." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:148 -msgctxt "@info:error" -msgid "Could not reach Marketplace." -msgstr "Nelze se připojit k Obchodu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 +#: plugins/MonitorStage/__init__.py:14 msgctxt "@item:inmenu" msgid "Monitor" msgstr "Monitorování" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: plugins/MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Fáze monitoringu" + +#: plugins/MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Poskytuje monitorovací scénu v Cuře." + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 +msgctxt "@label" +msgid "Mesh Type" +msgstr "Typ síťového modelu" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 +msgctxt "@label" +msgid "Normal model" +msgstr "Normální model" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 +msgctxt "@label" +msgid "Print as support" +msgstr "Tisknout jako podporu" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Upravte nastavení překrývání" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "Nepodporovat překrývání" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 +msgctxt "@item:inlistbox" +msgid "Infill mesh only" +msgstr "Pouze síť výplně" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161 +msgctxt "@item:inlistbox" +msgid "Cutting mesh" +msgstr "Síť řezu" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386 +msgctxt "@action:button" +msgid "Select settings" +msgstr "Vybrat nastavení" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Vybrat nastavení k přizpůsobení pro tento model" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtrovat..." + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Zobrazit vše" + +#: plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" msgid "Per Model Settings" msgstr "Nastavení pro každý model" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +#: plugins/PerObjectSettingsTool/__init__.py:15 msgctxt "@info:tooltip" msgid "Configure Per Model Settings" msgstr "Konfigurovat nastavení pro každý model" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Nástroj pro nastavení pro každý model" + +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Umožňuje nastavení pro každý model." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" -msgstr "Post Processing" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "Modifikovat G kód" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Zásuvný balíček Post Processing" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 +msgctxt "@label" +msgid "Post Processing Scripts" +msgstr "Skripty Post Processingu" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "Přidat skript" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 +msgctxt "@label" +msgid "Settings" +msgstr "Nastavení" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Změnít aktivní post-processing skripty." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "Následují skript je aktivní:" +msgstr[1] "Následují skripty jsou aktivní:" +msgstr[2] "Následují skripty jsou aktivní:" + +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Rozšíření, které umožňuje uživateli vytvořené skripty pro následné zpracování" + +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Post Processing" + +#: plugins/PrepareStage/PrepareMenu.qml:74 +msgctxt "@button" +msgid "Add printer" +msgstr "Přidat tiskárnu" + +#: plugins/PrepareStage/PrepareMenu.qml:90 +msgctxt "@button" +msgid "Manage printers" +msgstr "Spravovat tiskárny" + +#: plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "Příprava" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 +#: plugins/PrepareStage/plugin.json +msgctxt "name" +msgid "Prepare Stage" +msgstr "Fáze přípravy" + +#: plugins/PrepareStage/plugin.json +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Poskytuje přípravnou fázi v Cuře." + +#: plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" msgid "Preview" msgstr "Náhled" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +#: plugins/PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Fáze náhledu" + +#: plugins/PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Poskytuje fázi náhledu v Cura." + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Uložit na vyměnitelný disk" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Uložit na vyměnitelný disk {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "Nejsou k dispozici žádné formáty souborů pro zápis!" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 #, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Ukládám na vyměnitelný disk {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 msgctxt "@info:title" msgid "Saving" msgstr "Ukládám" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "Nemohu uložit na {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 #, 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 "Při pokusu o zápis do zařízení {device} nebyl nalezen název souboru." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 #, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Nelze uložit na vyměnitelnou jednotku {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 #, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Ukládám na vyměnitelnou jednotku {0} jako {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 msgctxt "@info:title" msgid "File Saved" msgstr "Soubor uložen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 msgctxt "@action:button" msgid "Eject" msgstr "Vysunout" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 #, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Vysunout vyměnitelnou jednotku {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 #, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Vysunuto {0}. Nyní můžete bezpečně vyjmout jednotku." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 msgctxt "@info:title" msgid "Safely Remove Hardware" msgstr "Bezpečně vysunout hardware" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 #, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Nepodařilo se vysunout {0}. Jednotku může používat jiný program." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +#: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 msgctxt "@item:intext" msgid "Removable Drive" msgstr "Vyměnitelná jednotka" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -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." +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Poskytuje vyměnitelnou jednotku za plného zapojení a podporu zápisu." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Pohled simulace" +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Vyměnitelný zásuvný modul pro výstupní zařízení" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 +#: plugins/SentryLogger/plugin.json +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Protokolová určité události, aby je mohl použít reportér havárií" + +#: plugins/SentryLogger/plugin.json +msgctxt "name" +msgid "Sentry Logger" +msgstr "Záznamník hlavy" + +#: plugins/SimulationView/SimulationView.py:129 msgctxt "@info:status" msgid "Nothing is shown because you need to slice first." msgstr "Nic není zobrazeno, nejdříve musíte slicovat." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 +#: plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "No layers to show" msgstr "Žádné vrstvy k zobrazení" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 +#: plugins/SimulationView/SimulationView.py:132 +#: plugins/SolidView/SolidView.py:74 msgctxt "@info:option_text" msgid "Do not show this message again" msgstr "Znovu nezobrazovat tuto zprávu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:18 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:47 +msgctxt "@label" +msgid "Color scheme" +msgstr "Barevné schéma" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Barva materiálu" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Typ úsečky" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:112 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Rychlost" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:116 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Tloušťka vrstvy" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:120 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Šířka čáry" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:124 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Průtok" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:164 +msgctxt "@label" +msgid "Compatibility Mode" +msgstr "Mód kompatibility" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:231 +msgctxt "@label" +msgid "Travels" +msgstr "Cesty" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:237 +msgctxt "@label" +msgid "Helpers" +msgstr "Pomocníci" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:243 +msgctxt "@label" +msgid "Shell" +msgstr "Plášť" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:249 +msgctxt "@label" +msgid "Infill" +msgstr "Výplň" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:257 +msgctxt "@label" +msgid "Starts" +msgstr "Začátky" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:304 +msgctxt "@label" +msgid "Only Show Top Layers" +msgstr "Zobrazit jen vrchní vrstvy" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:313 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "Zobrazit 5 podrobných vrstev nahoře" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:326 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Nahoře / Dole" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:330 +msgctxt "@label" +msgid "Inner Wall" +msgstr "Vnitřní stěna" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:397 +msgctxt "@label" +msgid "min" +msgstr "min" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:462 +msgctxt "@label" +msgid "max" +msgstr "max" + +#: plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Pohled vrstev" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +#: plugins/SimulationView/plugin.json +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Poskytuje náhled slicovaných dat vrstev." + +#: plugins/SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "Pohled simulace" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Další informace o anonymním shromažďování údajů" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 +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 shromažďuje anonymní data za účelem zlepšení kvality tisku a uživatelského komfortu. Níže uvádíme příklad všech sdílených dat:" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Nechci posílat anonymní data" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Povolit zasílání anonymních dat" + +#: plugins/SliceInfoPlugin/SliceInfo.py:95 msgctxt "@text" msgid "Unable to read example data file." msgstr "Nelze načíst ukázkový datový soubor." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Informace o slicování" + +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Odešle anonymní informace o slicování. Lze deaktivovat pomocí preferencí." + +#: plugins/SolidView/SolidView.py:71 msgctxt "@info:status" msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." msgstr "Zvýrazněné oblasti označují chybějící nebo vedlejší povrchy. Opravte váš model a otevřete jej znovu." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +#: plugins/SolidView/SolidView.py:73 msgctxt "@info:title" msgid "Model Errors" msgstr "Chyby modelu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +#: plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" msgstr "Pevný pohled" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +#: plugins/SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Poskytuje normální zobrazení pevné sítě." + +#: plugins/SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Pevný pohled" + +#: plugins/SupportEraser/__init__.py:12 msgctxt "@label" msgid "Support Blocker" msgstr "Blokovač podpor" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 +#: plugins/SupportEraser/__init__.py:13 msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "Vytvořit prostor ve kterém nejsou tištěny podpory." -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 +#: plugins/SupportEraser/plugin.json +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Vytvoří gumovou síť, která blokuje tisk podpory na určitých místech" + +#: plugins/SupportEraser/plugin.json +msgctxt "name" +msgid "Support Eraser" +msgstr "Mazač podpor" + +#: plugins/TrimeshReader/__init__.py:15 msgctxt "@item:inlistbox 'Open' is part of the name of this file format." msgid "Open Compressed Triangle Mesh" msgstr "Open Compressed Triangle Mesh" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: plugins/TrimeshReader/__init__.py:19 msgctxt "@item:inlistbox" msgid "COLLADA Digital Asset Exchange" msgstr "COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: plugins/TrimeshReader/__init__.py:23 msgctxt "@item:inlistbox" msgid "glTF Binary" msgstr "gITF binární soubor" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: plugins/TrimeshReader/__init__.py:27 msgctxt "@item:inlistbox" msgid "glTF Embedded JSON" msgstr "glTF Embedded JSON" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: plugins/TrimeshReader/__init__.py:36 msgctxt "@item:inlistbox" msgid "Stanford Triangle Format" msgstr "Stanford Triangle Format" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: plugins/TrimeshReader/__init__.py:40 msgctxt "@item:inlistbox" msgid "Compressed COLLADA Digital Asset Exchange" msgstr "Kompresovaný COLLADA Digital Asset Exchenge" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Balíček ve formátu Ultimaker" +#: plugins/TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Poskytuje podporu pro čtení souborů modelu." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 +#: plugins/TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Čtečka trimesh" + +#: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "UltiMaker Format Package" +msgstr "Balíček ve formátu UltiMaker" + +#: plugins/UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Poskytuje podporu pro čtení balíčků formátu UltiMaker." + +#: plugins/UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "Čtečka UFP" + +#: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80 +#: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115 +#: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180 msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "Nemohu zapsat do UFP souboru:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Vyrovnat podložku" +#: plugins/UFPWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Poskytuje podporu pro psaní balíčků formátu UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Vybrat vylepšení" +#: plugins/UFPWriter/plugin.json +msgctxt "name" +msgid "UFP Writer" +msgstr "Zapisovač UFP" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Spravuje síťová připojení k síťovým tiskárnám UltiMaker." + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Síťové připojení UltiMaker" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Připojte se k síťové tiskárně" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Vyberte svou tiskárnu z nabídky níže:" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +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 "Chcete-li tisknout přímo na tiskárně prostřednictvím sítě, zkontrolujte, zda je tiskárna připojena k síti pomocí síťového kabelu nebo připojením tiskárny k síti WIFI. Pokud nepřipojíte Curu k tiskárně, můžete stále používat jednotku USB k přenosu souborů g-kódu do vaší tiskárny." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 +msgctxt "@action:button" +msgid "Edit" +msgstr "Upravit" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 +#: resources/qml/Preferences/MachinesPage.qml:153 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:186 +#: resources/qml/Preferences/ProfilesPage.qml:321 +msgctxt "@action:button" +msgid "Remove" +msgstr "Odstranit" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Aktualizovat" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "Pokud vaše tiskárna není uvedena, přečtěte si průvodce řešením problémů se síťovým tiskem " + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 +msgctxt "@label" +msgid "Type" +msgstr "Typ" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 +msgctxt "@label" +msgid "Firmware version" +msgstr "Verze firmwaru" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 +msgctxt "@label" +msgid "Address" +msgstr "Adresa" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Tato tiskárna není nastavena tak, aby hostovala skupinu tiskáren." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Tato tiskárna je hostitelem skupiny tiskáren %1." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "Tiskárna na této adrese dosud neodpověděla." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" +msgid "Connect" +msgstr "Připojit" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Špatná IP adresa" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Prosím zadejte validní IP adresu." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Adresa tiskárny" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Vložte IP adresu vaší tiskárny na síti." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Změny konfigurace" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 +msgctxt "@action:button" +msgid "Override" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "Přiřazená tiskárna %1 vyžaduje následující změnu konfigurace:" +msgstr[1] "Přiřazená tiskárna %1 vyžaduje následující změny akonfigurace:" +msgstr[2] "Přiřazená tiskárna %1 vyžaduje následující změnu konfigurace:" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "Tiskárna %1 je přiřazena, ale úloha obsahuje neznámou konfiguraci materiálu." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Změnit materiál %1 z %2 na %3." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 +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)." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Změnit jádro tisku %1 z %2 na %3." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "Přepsání použije zadaná nastavení s existující konfigurací tiskárny. To může vést k selhání tisku." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@label" +msgid "Move to top" +msgstr "Přesunout nahoru" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155 +msgctxt "@label" +msgid "Delete" +msgstr "Odstranit" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186 +#: resources/qml/MonitorButton.qml:284 +msgctxt "@label" +msgid "Resume" +msgstr "Obnovit" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188 +msgctxt "@label" +msgid "Pausing..." +msgstr "Pozastavuji..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190 +msgctxt "@label" +msgid "Resuming..." +msgstr "Obnovuji..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192 +#: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288 +msgctxt "@label" +msgid "Pause" +msgstr "Pozastavit" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Abort" +msgstr "Zrušit" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Aborting..." +msgstr "Ruším..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218 +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 "Doopravdy chcete posunout %1 na začátek fronty?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Přesunout tiskovou úlohu nahoru" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "Doopravdy chcete odstranit %1?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Odstranit tiskovou úlohu" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "Doopravdy chcete zrušit %1?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237 +#: resources/qml/MonitorButton.qml:326 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Zrušit tisk" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Nedostupná tiskárna" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 +msgctxt "@label" +msgid "First available" +msgstr "První dostupný" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Aktualizujte firmware tiskárny a spravujte frontu vzdáleně." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +msgctxt "@label:status" +msgid "Aborted" +msgstr "Zrušeno" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 +msgctxt "@label:status" +msgid "Finished" +msgstr "Dokončeno" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Připravuji..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "Ruším..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +msgctxt "@label:status" +msgid "Failed" +msgstr "Selhání" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Pozastavuji..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Paused" +msgstr "Pozastaveno" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Obnovuji..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Action required" +msgstr "Akce vyžadována" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Dokončuji %1 z %2" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Spravovat tiskárnu" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280 +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 "Vstup z webové kamery nemůže být pro cloudové tiskárny zobrazen v UltiMaker Cura. Klikněte na \"Spravovat tiskárnu\", abyste navštívili Ultimaker Digital Factory a zobrazili tuto webkameru." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Načítám..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Nedostupný" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Nedostupný" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Idle" +msgstr "Čekám" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361 +msgctxt "@label:status" +msgid "Printing" +msgstr "Tisknu" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402 +msgctxt "@label" +msgid "Untitled" +msgstr "Bez názvu" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417 +msgctxt "@label" +msgid "Anonymous" +msgstr "Anonymní" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Jsou nutné změny v nastavení" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452 +msgctxt "@action:button" +msgid "Details" +msgstr "Podrobnosti" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 +msgctxt "@label" +msgid "Queued" +msgstr "Zařazeno do fronty" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Spravovat v prohlížeči" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "Ve frontě nejsou žádné tiskové úlohy. Slicujte a odesláním úlohy jednu přidejte." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "Print jobs" +msgstr "Tiskové úlohy" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108 +msgctxt "@label" +msgid "Total print time" +msgstr "Celkový čas tisknutí" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117 +msgctxt "@label" +msgid "Waiting for" +msgstr "Čekám na" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117 +msgctxt "@info" +msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" +msgstr "Sledujte své tiskárny odkudkoliv pomocí Ultimaker Digital Factory" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129 +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Zobrazit tiskárny v Digital Factory" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Tisk přes síť" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 +msgctxt "@action:button" +msgid "Print" +msgstr "Tisk" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 +msgctxt "@label" +msgid "Printer selection" +msgstr "Výběr tiskárny" + +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162 msgctxt "@action:button" msgid "Print via cloud" msgstr "Tisknout přes cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Tisknout přes cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Připojen přes cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276 msgctxt "@action:button" msgid "Monitor print" msgstr "Sledovat tisk" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278 msgctxt "@action:tooltip" msgid "Track the print in Ultimaker Digital Factory" msgstr "Sledujte tisk v Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Při nahrávání tiskové úlohy došlo k chybě s neznámým kódem: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "Z vašeho Ultimaker účtu byla detekována nová tiskárna" -msgstr[1] "Z vašeho Ultimaker účtu byly detekovány nové tiskárny" -msgstr[2] "Z vašeho Ultimaker účtu byly detekovány nové tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:242 -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "Přidávám tiskárnu {name} ({model}) z vašeho účtu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:261 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "... a {0} další" -msgstr[1] "... a {0} další" -msgstr[2] "... a {0} dalších" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:266 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "Tiskárny přidané z Digital Factory:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:334 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "Pro tuto tiskárnu není připojení přes cloud dostupné" -msgstr[1] "Pro tyto tiskárny není připojení přes cloud dostupné" -msgstr[2] "Pro tyto tiskárny není připojení přes cloud dostupné" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:343 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "Tato tiskárna není napojena na Digital Factory:" -msgstr[1] "Tyto tiskárny nejsou napojeny na Digital Factory:" -msgstr[2] "Tyto tiskárny nejsou napojeny na Digital Factory:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:348 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:440 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:352 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "Chcete-li navázat spojení, navštivte {website_link}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:356 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "Zachovat konfiguraci tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "Odstranit tiskárnu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:442 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425 #, 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 "Tiskárna {printer_name} bude odebrána až do další synchronizace účtu." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:443 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426 #, 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 "Chcete-li tiskárnu {printer_name} trvale odebrat, navštivte {digital_factory_link}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:444 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427 #, 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 "Opravdu chcete tiskárnu {printer_name} dočasně odebrat?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474 msgctxt "@title:window" msgid "Remove printers?" msgstr "Odstranit tiskárny?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477 #, python-brace-format msgctxt "@label" msgid "" @@ -1677,7 +3492,7 @@ msgstr[2] "" "Chystáte se odebrat {0} tiskáren z Cury. Tuto akci nelze vrátit zpět.\n" "Doopravdy chcete pokračovat?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be undone.\n" @@ -1686,7 +3501,7 @@ msgstr "" "Chystáte se odebrat všechny tiskárny z Cury. Tuto akci nelze vrátit zpět.\n" "Doopravdy chcete pokračovat?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, python-brace-format msgctxt "@info:status" msgid "" @@ -1696,2682 +3511,1571 @@ msgstr "" "Vaše tiskárna {printer_name} může být připojena přes cloud.\n" " Spravujte vaši tiskovou frontu a sledujte tisk odkudkoliv připojením vaší tiskárny k Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 msgctxt "@info:title" msgid "Are you ready for cloud printing?" msgstr "Jste připraveni na tisk přes cloud?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 msgctxt "@action" msgid "Get started" msgstr "Začínáme" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24 msgctxt "@action" msgid "Learn more" msgstr "Zjistit více" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 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 "Pokoušíte se připojit k tiskárně, na které není spuštěna aplikace Ultimaker Connect. Aktualizujte tiskárnu na nejnovější firmware." +msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." +msgstr "Pokoušíte se připojit k tiskárně, na které není spuštěna aplikace UltiMaker Connect. Aktualizujte tiskárnu na nejnovější firmware." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 msgctxt "@info:title" msgid "Update your printer" msgstr "Aktualizujte vaší tiskárnu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 #, 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 zjistil materiálové profily, které ještě nebyly nainstalovány na hostitelské tiskárně skupiny {0}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Odesílání materiálů do tiskárny" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "Ve vašem Ultimaker účtu byla detekována nová tiskárna" +msgstr[1] "Ve vašem Ultimaker účtu byly detekovány nové tiskárny" +msgstr[2] "Ve vašem Ultimaker účtu byly detekovány nové tiskárny" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29 +#, python-brace-format +msgctxt "info:status Filled in with printer name and printer model." +msgid "Adding printer {name} ({model}) from your account" +msgstr "Přidávám tiskárnu {name} ({model}) z vašeho účtu" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "... a {0} další" +msgstr[1] "... a {0} další" +msgstr[2] "... a {0} dalších" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "Tiskárny přidané z Digital Factory:" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 #, 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 "Pokoušíte se připojit k {0}, ale není hostitelem skupiny. Webovou stránku můžete navštívit a nakonfigurovat ji jako skupinového hostitele." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 msgctxt "@info:title" msgid "Not a group host" msgstr "Není hostem skupiny" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 msgctxt "@action" msgid "Configure group" msgstr "Konfigurovat skupinu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18 +msgctxt "@info:status" +msgid "You will receive a confirmation via email when the print job is approved" +msgstr "Až bude tisková úloha schválena, obdržíte potvrzovací e-mail" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19 +msgctxt "@info:title" +msgid "The print job was successfully submitted" +msgstr "Tisková úloha byla úspěšně odeslána" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22 +msgctxt "@action" +msgid "Manage print jobs" +msgstr "Spravovat tiskové úlohy" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 msgctxt "@info:status" msgid "Please wait until the current job has been sent." msgstr "Počkejte, až bude odeslána aktuální úloha." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 msgctxt "@info:title" msgid "Print error" msgstr "Chyba tisku" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Nemohu nahrát data do tiskárny." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 msgctxt "@info:title" msgid "Network error" msgstr "Chyba sítě" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 msgctxt "@info:status" msgid "Sending Print Job" msgstr "Odesílám tiskovou úlohu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 msgctxt "@info:status" msgid "Uploading print job to printer." msgstr "Nahrávám tiskovou úlohu do tiskárny." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 msgctxt "@info:status" msgid "Print job queue is full. The printer can't accept a new job." msgstr "Fronta tiskových úloh je plná. Tiskárna nemůže přijmout další úlohu." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 msgctxt "@info:title" msgid "Queue Full" msgstr "Fronta je plná" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "Tisková úloha byla úspěšně odeslána do tiskárny." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 msgctxt "@info:title" msgid "Data Sent" msgstr "Data poslána" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "Tato tiskárna není napojena na Digital Factory:" +msgstr[1] "Tyto tiskárny nejsou napojeny na Digital Factory:" +msgstr[2] "Tyto tiskárny nejsou napojeny na Digital Factory:" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "Chcete-li navázat spojení, navštivte {website_link}" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "Pro tuto tiskárnu není připojení přes cloud dostupné" +msgstr[1] "Pro tyto tiskárny není připojení přes cloud dostupné" +msgstr[2] "Pro tyto tiskárny není připojení přes cloud dostupné" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "Zachovat konfiguraci tiskárny" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "Odstranit tiskárnu" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "Tisk přes síť" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "Tisk přes síť" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64 msgctxt "@info:status" msgid "Connected over the network" msgstr "Připojeno přes síť" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 msgctxt "@action" msgid "Connect via Network" msgstr "Připojit přes síť" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +#: plugins/UM3NetworkPrinting/src/Utils.py:27 msgctxt "@info:status" msgid "tomorrow" msgstr "zítra" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +#: plugins/UM3NetworkPrinting/src/Utils.py:30 msgctxt "@info:status" msgid "today" msgstr "dnes" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:42 msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB tisk" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:43 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print via USB" msgstr "Tisk přes USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:44 msgctxt "@info:tooltip" msgid "Print via USB" msgstr "Tisk přes USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:80 msgctxt "@info:status" msgid "Connected via USB" msgstr "Připojeno přes USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:110 msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" msgstr "Probíhá tisk přes USB, uzavření Cura tento tisk zastaví. Jsi si jistá?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:135 msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Tisk stále probíhá. Cura nemůže spustit další tisk přes USB, dokud není předchozí tisk dokončen." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:136 msgctxt "@message" msgid "Print in Progress" msgstr "Probíhá tisk" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "Soubor X3D" +#: plugins/USBPrinting/plugin.json +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Přijme G-kód a odešle je do tiskárny. Plugin může také aktualizovat firmware." -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Rentgenový pohled" +#: plugins/USBPrinting/plugin.json +msgctxt "name" +msgid "USB printing" +msgstr "USB tisk" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 -msgctxt "@title:window" -msgid "Open Project" -msgstr "Otevřit projekt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "Aktualizovat existující" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "Vytvořit nový" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:59 -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "Souhrn - Projekt Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108 -msgctxt "@info:tooltip" -msgid "How should the conflict in the machine be resolved?" -msgstr "Jak by měl být problém v zařízení vyřešen?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:95 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Nastavení tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:104 -msgctxt "@action:label" -msgid "Type" -msgstr "Typ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:192 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -msgctxt "@action:label" -msgid "Printer Group" -msgstr "Skupina tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:217 -msgctxt "@info:tooltip" -msgid "How should the conflict in the profile be resolved?" -msgstr "Jak by měl být problém v profilu vyřešen?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:220 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Nastavení profilu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:250 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:375 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:244 -msgctxt "@action:label" -msgid "Name" -msgstr "Název" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:268 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:261 -msgctxt "@action:label" -msgid "Intent" -msgstr "Záměr" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:286 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:228 -msgctxt "@action:label" -msgid "Not in profile" -msgstr "Není v profilu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:292 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:233 -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "%1 přepsání" -msgstr[1] "%1 přepsání" -msgstr[2] "%1 přepsání" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 -msgctxt "@action:label" -msgid "Derivative from" -msgstr "Derivát z" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:311 -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "%1, %2 override" -msgstr[1] "%1, %2 overrides" -msgstr[2] "%1, %2 overrides" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:333 -msgctxt "@info:tooltip" -msgid "How should the conflict in the material be resolved?" -msgstr "Jak by měl být problém v materiálu vyřešen?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:360 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Nastavení materiálu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:396 -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "Nastavení zobrazení" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 -msgctxt "@action:label" -msgid "Mode" -msgstr "Mód" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 -msgctxt "@action:label" -msgid "Visible settings:" -msgstr "Viditelná zařízení:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "%1 z %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:447 -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "Nahrání projektu vymaže všechny modely na podložce." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 -msgctxt "@action:button" -msgid "Open" -msgstr "Otevřít" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 -msgctxt "@action:button" -msgid "Open project anyway" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 -msgctxt "@action:button" -msgid "Install missing material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Chcete více?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Zálohovat nyní" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Automatické zálohy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Automaticky vytvořte zálohu každý den, kdy je spuštěna Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 -msgctxt "@button" -msgid "Restore" -msgstr "Obnovit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Odstranit zálohu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Opravdu chcete tuto zálohu smazat? To nelze vrátit zpět." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Obnovit zálohu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "Před obnovením zálohy budete muset restartovat Curu. Chcete nyní Curu zavřít?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura verze" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Zařízení" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materiály" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profily" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Zásuvné moduly" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura zálohy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Moje zálohy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Momentálně nemáte žádné zálohy. Pomocí tlačítka 'Zálohovat nyní' vytvořte." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Během fáze náhledu budete omezeni na 5 viditelných záloh. Chcete-li zobrazit starší, odstraňte zálohu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Zálohovat a synchronizovat vaše nastavení Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:212 -msgctxt "@button" -msgid "Sign in" -msgstr "Přihlásit se" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 -msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 -msgctxt "@option" -msgid "Save Cura project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Aktualizovat firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 -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 "Firmware je software běžící přímo na vaší 3D tiskárně. Tento firmware řídí krokové motory, reguluje teplotu a v konečném důsledku zajišťuje vaši práci tiskárny." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 -msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "Dodávání firmwaru s novými tiskárnami funguje, ale nové verze mají obvykle více funkcí a vylepšení." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Automaticky aktualizovat firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Nahrát vlastní firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "Firmware nelze aktualizovat, protože není spojeno s tiskárnou." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "Firmware nelze aktualizovat, protože připojení k tiskárně nepodporuje aktualizaci firmwaru." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Vybrat vlastní firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Aktualizace firmwaru" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Aktualizuji firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Aktualizace firmwaru kompletní." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Aktualizace firmwaru selhala kvůli neznámému problému." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Aktualizace firmwaru selhala kvůli chybě v komunikaci." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Aktualizace firmwaru selhala kvůli chybě vstupu / výstupu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Aktualizace firmwaru selhala kvůli chybějícímu firmwaru." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:14 -msgctxt "@title:window" -msgid "Convert Image" -msgstr "Konvertovat obrázek" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 -msgctxt "@action:label" -msgid "Height (mm)" -msgstr "Výška (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "Maximální vzdálenost každého pixelu od „základny“." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 -msgctxt "@action:label" -msgid "Base (mm)" -msgstr "Základna (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 -msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "Výška základny od podložky v milimetrech." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 -msgctxt "@action:label" -msgid "Width (mm)" -msgstr "Šířka (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 -msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate" -msgstr "Šířka na podložce v milimetrech" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 -msgctxt "@action:label" -msgid "Depth (mm)" -msgstr "Hloubka (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 -msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "Hloubka podložky v milimetrech" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 -msgctxt "@item:inlistbox" -msgid "Darker is higher" -msgstr "Tmavější je vyšší" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -msgctxt "@item:inlistbox" -msgid "Lighter is higher" -msgstr "Světlejší je vyšší" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 -msgctxt "@info:tooltip" -msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." -msgstr "U litofanů by tmavé pixely měly odpovídat silnějším místům, aby blokovaly více světla procházejícího. Pro výškové mapy znamenají světlejší pixely vyšší terén, takže světlejší pixely by měly odpovídat silnějším umístěním v generovaném 3D modelu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:205 -msgctxt "@action:label" -msgid "Color Model" -msgstr "Barevný model" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:224 -msgctxt "@item:inlistbox" -msgid "Linear" -msgstr "Lineární" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 -msgctxt "@item:inlistbox" -msgid "Translucency" -msgstr "Průsvitnost" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 -msgctxt "@info:tooltip" -msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." -msgstr "Pro litofany je k dispozici jednoduchý logaritmický model pro průsvitnost. U výškových map odpovídají hodnoty pixelů lineárně výškám." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 -msgctxt "@action:label" -msgid "1mm Transmittance (%)" -msgstr "1mm propustnost (%)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 -msgctxt "@info:tooltip" -msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." -msgstr "Procento světla pronikajícího do tisku o tloušťce 1 milimetr. Snížení této hodnoty zvyšuje kontrast v tmavých oblastech a snižuje kontrast ve světlých oblastech obrazu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 -msgctxt "@action:label" -msgid "Smoothing" -msgstr "Vyhlazování" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:298 -msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "Množství vyhlazení, které se použije na obrázek." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:143 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:80 -msgctxt "@action:button" -msgid "OK" -msgstr "OK" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Tiskárna" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Nastavení trysky" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Velikost trysky" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Kompatibilní průměr materiálu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "X offset trysky" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Y offset trysky" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Číslo chladícího větráku" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Počáteční G-kód extuderu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Ukončující G-kód extuderu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Nastavení tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (Šířka)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Hloubka)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Výška)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Tvar tiskové podložky" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 -msgctxt "@label" -msgid "Origin at center" -msgstr "Počátek ve středu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 -msgctxt "@label" -msgid "Heated bed" -msgstr "Topná podložka" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Vyhřívaný objem sestavení" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 -msgctxt "@label" -msgid "G-code flavor" -msgstr "Varianta G kódu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Nastavení tiskové hlavy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 -msgctxt "@label" -msgid "X min" -msgstr "X min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 -msgctxt "@label" -msgid "Y min" -msgstr "Y min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 -msgctxt "@label" -msgid "X max" -msgstr "X max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 -msgctxt "@label" -msgid "Y max" -msgstr "Y max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Výška rámu tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Počet extrůderů" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Aplikovat offsety extruderu do G kódu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "Počáteční G kód" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400 -msgctxt "@title:label" -msgid "End G-code" -msgstr "Ukončující G kód" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 -msgctxt "@title" -msgid "Changes from your account" -msgstr "Změny z vašeho účtu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -msgctxt "@button" -msgid "Dismiss" -msgstr "Schovat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:118 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:175 -msgctxt "@button" -msgid "Next" -msgstr "Další" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "Následující balíčky byly přidány:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "Následující balíčky nelze nainstalovat z důvodu nekompatibilní verze Cura:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 -msgctxt "@title" -msgid "Install missing Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 -msgctxt "@button" -msgid "Plugin license agreement" -msgstr "Licenční smlouva modulu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47 -msgctxt "@text" -msgid "Please read and agree with the plugin licence." -msgstr "Prosím přečtěte si a přijměte licenci modulu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 -msgctxt "@button" -msgid "Accept" -msgstr "Příjmout" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 -msgctxt "@header" -msgid "Manage packages" -msgstr "Spravovat balíčky" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15 -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 "Zde můžete spravovat své Ultimaker Cura moduly a materiály. Udržujte své moduly aktuální a pravidelně zálohujte své nastavení." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 -msgctxt "@info:tooltip" -msgid "Manage packages" -msgstr "Spravovat balíčky" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 -msgctxt "@title" -msgid "Loading..." -msgstr "Načítám..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 -msgctxt "@button" -msgid "Plugins" -msgstr "Zásuvné moduly" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 -msgctxt "@button" -msgid "Materials" -msgstr "Materiály" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 -msgctxt "@info" -msgid "Search in the browser" -msgstr "Hledat v prohlížeči" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:271 -msgctxt "@button" -msgid "In order to use the package you will need to restart Cura" -msgstr "Abyste mohli balíček použít, musíte restartovat Curu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:279 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Ukončit %1" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:8 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MissingPackages.qml:8 -msgctxt "@header" -msgid "Install Materials" -msgstr "Instalovat materiály" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 -msgctxt "@text" -msgid "Select and install material profiles optimised for your Ultimaker 3D printers." -msgstr "Vyberte a nainstalujte materiálové profily optimalizované pro vaše 3D tiskárny Ultimaker." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "Pro instalaci balíčku musíte přijmout licenční ujednání" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:101 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:207 -msgctxt "@button:label" -msgid "Learn More" -msgstr "Zjistit Více" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:172 -msgctxt "@label Is followed by the name of an author" -msgid "By" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Enable" -msgstr "Zapnout" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Disable" -msgstr "Vypnout" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 -msgctxt "@button" -msgid "Downgrading..." -msgstr "Snižuji verzi..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 -msgctxt "@button" -msgid "Downgrade" -msgstr "Snížit verzi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 -msgctxt "@button" -msgid "Installing..." -msgstr "Instaluji..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 -msgctxt "@button" -msgid "Install" -msgstr "Instalovat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 -msgctxt "@button" -msgid "Uninstall" -msgstr "Odinstalovat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Updating..." -msgstr "Aktualizuji..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Update" -msgstr "Aktualizovat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 -msgctxt "@header" -msgid "Package details" -msgstr "Detaily balíčku" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 -msgctxt "@button:tooltip" -msgid "Back" -msgstr "Zpět" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 -msgctxt "@header" -msgid "Description" -msgstr "Popis" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 -msgctxt "@header" -msgid "Compatible printers" -msgstr "Kompatibilní tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:134 -msgctxt "@info" -msgid "No compatibility information" -msgstr "Žádné informace o kompatibilitě" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:152 -msgctxt "@header" -msgid "Compatible support materials" -msgstr "Kompatibilní materiály podpor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176 -msgctxt "@info No materials" -msgid "None" -msgstr "Žádné" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:193 -msgctxt "@header" -msgid "Compatible with Material Station" -msgstr "Kompatibilní s Material Station" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "Yes" -msgstr "Ano" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "No" -msgstr "Ne" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:219 -msgctxt "@header" -msgid "Optimized for Air Manager" -msgstr "Optimalizováno pro Air Manager" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Visit plug-in website" -msgstr "Navštívit webovou stránku modulu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Website" -msgstr "Webová stránka" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:252 -msgctxt "@button" -msgid "Buy spool" -msgstr "Koupit cívku" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:261 -msgctxt "@button" -msgid "Safety datasheet" -msgstr "Bezpečnostní list" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:270 -msgctxt "@button" -msgid "Technical datasheet" -msgstr "Technický list" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Failed to load packages:" -msgstr "Nepodařilo se načíst balíčky:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Retry?" -msgstr "Opakovat?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:167 -msgctxt "@button" -msgid "Loading" -msgstr "Načítám" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No more results to load" -msgstr "Žádné další výsledky k načtení" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No results found with current filter" -msgstr "S aktuálním filtrem nebyly nalezeny žádné výsledky" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:226 -msgctxt "@button" -msgid "Load more" -msgstr "Načíst více" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8 -msgctxt "@header" -msgid "Install Plugins" -msgstr "Nainstalovat moduly" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12 -msgctxt "@text" -msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users." -msgstr "Urychlete váš postup práce a přizpůsobte si zážitek s Ultimaker Cura pomocí modulů, kterými přispěla naše úžasná komunita uživatelů." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 -msgctxt "@info" -msgid "Ultimaker Verified Plug-in" -msgstr "Modul ověřený společností Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 -msgctxt "@info" -msgid "Ultimaker Certified Material" -msgstr "Materiál certifikovaný společností Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 -msgctxt "@info" -msgid "Ultimaker Verified Package" -msgstr "Balíček ověřený společností Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 -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 "" -"Zkontrolujte, zda má tiskárna připojení:\n" -"- Zkontrolujte, zda je tiskárna zapnutá.\n" -"- Zkontrolujte, zda je tiskárna připojena k síti.\n" -"- Zkontrolujte, zda jste přihlášeni k objevování tiskáren připojených k cloudu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 -msgctxt "@info" -msgid "Please connect your printer to the network." -msgstr "Připojte tiskárnu k síti." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 -msgctxt "@label link to technical assistance" -msgid "View user manuals online" -msgstr "Zobrazit online manuály" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:163 -msgctxt "@info" -msgid "In order to monitor your print from Cura, please connect the printer." -msgstr "Abyste mohli monitorovat tisk z Cury, připojte prosím tiskárnu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Typ síťového modelu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 -msgctxt "@label" -msgid "Normal model" -msgstr "Normální model" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 -msgctxt "@label" -msgid "Print as support" -msgstr "Tisknout jako podporu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Upravte nastavení překrývání" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Nepodporovat překrývání" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Pouze síť výplně" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Síť řezu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Vybrat nastavení" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Vybrat nastavení k přizpůsobení pro tento model" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtrovat..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Zobrazit vše" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Zásuvný balíček Post Processing" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Skripty Post Processingu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" -msgid "Add a script" -msgstr "Přidat skript" +msgid "Level build plate" +msgstr "Vyrovnat podložku" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 -msgctxt "@label" -msgid "Settings" -msgstr "Nastavení" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:459 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Změnít aktivní post-processing skripty." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:463 -msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "Následují skript je aktivní:" -msgstr[1] "Následují skripty jsou aktivní:" -msgstr[2] "Následují skripty jsou aktivní:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:47 -msgctxt "@label" -msgid "Color scheme" -msgstr "Barevné schéma" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Barva materiálu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Typ úsečky" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Rychlost" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Tloušťka vrstvy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Šířka čáry" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Průtok" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Mód kompatibility" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 -msgctxt "@label" -msgid "Travels" -msgstr "Cesty" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 -msgctxt "@label" -msgid "Helpers" -msgstr "Pomocníci" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 -msgctxt "@label" -msgid "Shell" -msgstr "Shell" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:64 -msgctxt "@label" -msgid "Infill" -msgstr "Výplň" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Starts" -msgstr "Začátky" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Zobrazit jen vrchní vrstvy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Zobrazit 5 podrobných vrstev nahoře" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Nahoře / Dole" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Vnitřní stěna" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 -msgctxt "@label" -msgid "min" -msgstr "min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 -msgctxt "@label" -msgid "max" -msgstr "max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Další informace o anonymním shromažďování údajů" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 -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 shromažďuje anonymní data za účelem zlepšení kvality tisku a uživatelského komfortu. Níže uvádíme příklad všech sdílených dat:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Nechci posílat anonymní data" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Povolit zasílání anonymních dat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 msgctxt "@title" msgid "Build Plate Leveling" msgstr "Vyrovnávání podložky" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 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 "Chcete-li se ujistit, že vaše výtisky vyjdou skvěle, můžete nyní sestavení své podložku. Když kliknete na „Přesunout na další pozici“, tryska se přesune do různých poloh, které lze upravit." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 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." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 msgctxt "@action:button" msgid "Start Build Plate Leveling" msgstr "Spustit vyrovnání položky" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 msgctxt "@action:button" msgid "Move to Next Position" msgstr "Přesunout na další pozici" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Vyberte prosím všechny upgrady provedené v tomto originálu Ultimaker" +#: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "Vybrat vylepšení" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this UltiMaker Original" +msgstr "Vyberte prosím všechny upgrady provedené v tomto originálu UltiMaker" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 msgctxt "@label" msgid "Heated Build Plate (official kit or self-built)" msgstr "Vyhřívaná podložka (Oficiální kit, nebo vytvořená)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Připojte se k síťové tiskárně" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -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 "Chcete-li tisknout přímo na tiskárně prostřednictvím sítě, zkontrolujte, zda je tiskárna připojena k síti pomocí síťového kabelu nebo připojením tiskárny k síti WIFI. Pokud nepřipojíte Curu k tiskárně, můžete stále používat jednotku USB k přenosu souborů g-kódu do vaší tiskárny." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Vyberte svou tiskárnu z nabídky níže:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 -msgctxt "@action:button" -msgid "Edit" -msgstr "Upravit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:140 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:321 -msgctxt "@action:button" -msgid "Remove" -msgstr "Odstranit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Aktualizovat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "Pokud vaše tiskárna není uvedena, přečtěte si průvodce řešením problémů se síťovým tiskem " - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 -msgctxt "@label" -msgid "Type" -msgstr "Typ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 -msgctxt "@label" -msgid "Firmware version" -msgstr "Verze firmwaru" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 -msgctxt "@label" -msgid "Address" -msgstr "Adresa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Tato tiskárna není nastavena tak, aby hostovala skupinu tiskáren." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Tato tiskárna je hostitelem skupiny tiskáren %1." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "Tiskárna na této adrese dosud neodpověděla." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 -msgctxt "@action:button" -msgid "Connect" -msgstr "Připojit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Špatná IP adresa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Prosím zadejte validní IP adresu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Adresa tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Vložte IP adresu vaší tiskárny na síti." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Změny konfigurace" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 -msgctxt "@action:button" -msgid "Override" -msgstr "Override" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "Přiřazená tiskárna %1 vyžaduje následující změnu konfigurace:" -msgstr[1] "Přiřazená tiskárna %1 vyžaduje následující změny akonfigurace:" -msgstr[2] "Přiřazená tiskárna %1 vyžaduje následující změnu konfigurace:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "Tiskárna %1 je přiřazena, ale úloha obsahuje neznámou konfiguraci materiálu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Změnit materiál %1 z %2 na %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 -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)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Změnit jádro tisku %1 z %2 na %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Změnit podložku na %1 (Toto nemůže být přepsáno)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "Přepsání použije zadaná nastavení s existující konfigurací tiskárny. To může vést k selhání tisku." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:178 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:175 -msgctxt "@label" -msgid "Glass" -msgstr "Sklo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154 -msgctxt "@label" -msgid "Aluminum" -msgstr "Hliník" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Přesunout nahoru" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Odstranit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:284 -msgctxt "@label" -msgid "Resume" -msgstr "Obnovit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Pozastavuji..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Obnovuji..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:288 -msgctxt "@label" -msgid "Pause" -msgstr "Pozastavit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Ruším..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Zrušit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:142 -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 "Doopravdy chcete posunout %1 na začátek fronty?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Přesunout tiskovou úlohu nahoru" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:151 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "Doopravdy chcete odstranit %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Odstranit tiskovou úlohu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:160 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "Doopravdy chcete zrušit %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Zrušit tisk" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Spravovat tiskárnu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:239 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Aktualizujte firmware tiskárny a spravujte frontu vzdáleně." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:275 -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 "Vstup z webové kamery nemůže být pro cloudové tiskárny zobrazen v Ultimaker Cura. Klikněte na \"Spravovat tiskárnu\", abyste navštívili Ultimaker Digital Factory a zobrazili tuto webkameru." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Načítám..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Nedostupný" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Nedostupný" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347 -msgctxt "@label:status" -msgid "Idle" -msgstr "Čekám" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Připravuji..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Printing" -msgstr "Tisknu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397 -msgctxt "@label" -msgid "Untitled" -msgstr "Bez názvu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:412 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anonymní" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:433 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Jsou nutné změny v nastavení" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:447 -msgctxt "@action:button" -msgid "Details" -msgstr "Podrobnosti" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Nedostupná tiskárna" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 -msgctxt "@label" -msgid "First available" -msgstr "První dostupný" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Zrušeno" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 -msgctxt "@label:status" -msgid "Finished" -msgstr "Dokončeno" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Ruším..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Failed" -msgstr "Selhání" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Pozastavuji..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Paused" -msgstr "Pozastaveno" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Obnovuji..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Action required" -msgstr "Akce vyžadována" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Dokončuji %1 z %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 -msgctxt "@label" -msgid "Queued" -msgstr "Zařazeno do fronty" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Spravovat v prohlížeči" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:90 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "Ve frontě nejsou žádné tiskové úlohy. Slicujte a odesláním úlohy jednu přidejte." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:98 -msgctxt "@label" -msgid "Print jobs" -msgstr "Tiskové úlohy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107 -msgctxt "@label" -msgid "Total print time" -msgstr "Celkový čas tisknutí" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116 -msgctxt "@label" -msgid "Waiting for" -msgstr "Čekám na" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Tisk přes síť" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 -msgctxt "@action:button" -msgid "Print" -msgstr "Tisk" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 -msgctxt "@label" -msgid "Printer selection" -msgstr "Výběr tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Poskytuje akce strojů pro stroje UltiMaker (jako je průvodce vyrovnáváním tiskové podložky, výběr upgradů atd.)." + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Akce zařízení UltiMaker" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Aktualizuje konfigurace z Cura 2.1 na Cura 2.2." + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Aktualizace verze 2.1 na 2.2" + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Aktualizuje konfigurace z Cura 2.2 na Cura 2.4." + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Aktualizace verze 2.2 na 2.4" + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Aktualizuje konfigurace z Cura 2.5 na Cura 2.6." + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Aktualizace verze 2.5 na 2.6" + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Aktualizuje konfigurace z Cura 2.6 na Cura 2.7." + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Aktualizace verze 2.6 na 2.7" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Aktualizuje konfigurace z Cura 2.7 na Cura 3.0." + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Aktualizace verze 2.7 na 3.0" + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Aktualizuje konfigurace z Cura 3.0 na Cura 3.1." + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Aktualizace verze 3.0 na 3.1" + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Aktualizuje konfigurace z Cura 3.2 na Cura 3.3." + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Aktualizace verze 3.2 na 3.3" + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Aktualizuje konfigurace z Cura 3.3 na Cura 3.4." + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Aktualizace verze 3.3 na 3.4" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Aktualizuje konfigurace z Cura 3.4 na Cura 3.5." + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Aktualizace verze 3.4 na 3.5" + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Aktualizuje konfigurace z Cura 3.5 na Cura 4.0." + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Aktualizace verze 3.5 na 4.0" + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Aktualizuje konfigurace z Cura 4.0 na Cura 4.1." + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Aktualizace verze 4.0 na 4.1" + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Aktualizuje konfigurace z Cura 4.11 na Cura 4.12." + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Aktualizace verze 4.11 na 4.12" + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Aktualizuje konfigurace z Cura 4.13 na Cura 5.0." + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Aktualizace verze 4.13 na 5.0" + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Aktualizuje konfigurace z Cura 4.1 na Cura 4.2." + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Aktualizace verze 4.1 na 4.2" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Aktualizuje konfigurace z Cura 4.2 na Cura 4.3." + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Aktualizace verze 4.2 na 4.3" + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Aktualizuje konfigurace z Cura 4.3 na Cura 4.4." + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Aktualizace verze 4.3 na 4.4" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Aktualizuje konfigurace z Cura 4.4 na Cura 4.5." + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Aktualizace verze 4.4 na 4.5" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Aktualizuje konfigurace z Cura 4.5 na Cura 4.6." + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Aktualizace verze 4.5 na 4.6" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Aktualizuje konfigurace z Cura 4.6.0 na Cura 4.6.2." + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Aktualizace verze 4.6.0 na 4.6.2" + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Aktualizuje konfigurace z Cura 4.6.2 na Cura 4.7." + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Aktualizace verze 4.6.2 na 4.7" + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Aktualizuje konfigurace z Cura 4.7 na Cura 4.8." + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Aktualizace verze 4.7 na 4.8" + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Aktualizuje konfigurace z Cura 4.8 na Cura 4.9." + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Aktualizace verze 4.8 na 4.9" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Aktualizuje konfigurace z Cura 4.9 na Cura 4.10." + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Aktualizace verze 4.9 na 4.10" + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Aktualizuje konfigurace z Cura 5.2 na Cura 5.3." + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Aktualizace verze 5.2 na 5.3" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "" + +#: plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "Soubor X3D" + +#: plugins/X3DReader/plugin.json +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Poskytuje podporu pro čtení souborů X3D." + +#: plugins/X3DReader/plugin.json +msgctxt "name" +msgid "X3D Reader" +msgstr "Čtečka X3D" + +#: plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Rentgenový pohled" + +#: plugins/XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Poskytuje rentgenové zobrazení." + +#: plugins/XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Rentgenový pohled" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Materiálové profily" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Poskytuje funkce pro čtení a zápis materiálových profilů založených na XML." + +#: resources/qml/Account/AccountWidget.qml:24 msgctxt "@action:button" msgid "Sign in" msgstr "Přihlásit se" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: resources/qml/Account/GeneralOperations.qml:19 +#: resources/qml/WelcomePages/CloudContent.qml:64 msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Přihlásit se do platformy Ultimaker" +msgid "Sign in to the UltiMaker platform" +msgstr "Přihlásit se do platformy UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 +#: resources/qml/Account/GeneralOperations.qml:39 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" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" msgstr "" -"- Přidejte materiálnové profily and moduly z Obchodu\n" +"- Přidejte materiálnové profily and moduly z Marketplace\n" "- Zálohujte a synchronizujte vaše materiálové profily and moduly\n" -"- Sdílejte nápady a získejte pomoc od více než 48 000 uživatelů v Ultimaker komunitě" +"- Sdílejte nápady a získejte pomoc od více než 48 000 uživatelů v UltiMaker komunitě" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 +#: resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "Vytvořit účet Ultimaker zdarma" +msgid "Create a free UltiMaker account" +msgstr "Vytvořit účet UltiMaker zdarma" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 +#: resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "Kontroluji..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 +#: resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "Účet byl synchronizován" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 +#: resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "Nastala chyba..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 +#: resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "Nainstalujte čekající aktualizace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 +#: resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "Zkontrolovat aktualizace pro účet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +#: resources/qml/Account/UserOperations.qml:78 msgctxt "@label The argument is a timestamp" msgid "Last update: %1" msgstr "Poslední aktualizace: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +#: resources/qml/Account/UserOperations.qml:107 msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimaker Account" +msgid "UltiMaker Account" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +#: resources/qml/Account/UserOperations.qml:126 msgctxt "@button" msgid "Sign Out" msgstr "Odhlásit se" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" msgid "No time estimation available" msgstr "Žádný odhad času není dostupný" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:77 msgctxt "@label" msgid "No cost estimation available" msgstr "Žádná cena není dostupná" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:127 msgctxt "@button" msgid "Preview" msgstr "Náhled" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" msgid "Time estimation" msgstr "Odhad času" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 +#: resources/qml/ActionPanel/PrintJobInformation.qml:107 msgctxt "@label" msgid "Material estimation" msgstr "Odhad materiálu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:156 +#: resources/qml/ActionPanel/PrintJobInformation.qml:156 msgctxt "@label m for meter" msgid "%1m" msgstr "%1m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:157 +#: resources/qml/ActionPanel/PrintJobInformation.qml:157 msgctxt "@label g for grams" msgid "%1g" msgstr "%1g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:54 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Slicuji..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:78 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:78 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "Nelze slicovat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Processing" msgstr "Zpracovává se" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Slice" msgstr "Slicovat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:115 msgctxt "@label" msgid "Start the slicing process" msgstr "Začít proces slicování" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:132 msgctxt "@button" msgid "Cancel" msgstr "Zrušit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 +#: resources/qml/Actions.qml:81 msgctxt "@action:inmenu" msgid "Show Online Troubleshooting" msgstr "Zobrazit online řešení problémů" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 +#: resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "Přepnout zobrazení na celou obrazovku" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 +#: resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "Ukončit zobrazení na celou obrazovku" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 +#: resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "&Vrátit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 +#: resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "&Znovu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 +#: resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "&Ukončit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 +#: resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "3D Pohled" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 +#: resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Přední pohled" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 +#: resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "Pohled seshora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 +#: resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "Pohled zezdola" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 +#: resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "Pohled z pravé strany" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 +#: resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "Pohled z pravé strany" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 +#: resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Konfigurovat Cura..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 +#: resources/qml/Actions.qml:197 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "Přidat t&iskárnu..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 +#: resources/qml/Actions.qml:203 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "Spravovat &tiskárny..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 +#: resources/qml/Actions.qml:210 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Spravovat materiály..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:216 -msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate." +#: resources/qml/Actions.qml:218 +msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." msgid "Add more materials from Marketplace" -msgstr "Přidat více materiálů z Obchodu" +msgstr "Přidat více materiálů z Marketplace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 +#: resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "&Aktualizovat profil s aktuálními nastaveními/přepsáními" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 +#: resources/qml/Actions.qml:233 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "Smazat aktuální &změny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 +#: resources/qml/Actions.qml:245 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "&Vytvořit profil z aktuálního nastavení/přepsání." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 +#: resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "Spravovat profily..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 +#: resources/qml/Actions.qml:259 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Zobrazit online &dokumentaci" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 +#: resources/qml/Actions.qml:267 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "Nahlásit &chybu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 +#: resources/qml/Actions.qml:275 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "Co je nového" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 +#: resources/qml/Actions.qml:289 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "Více..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 +#: resources/qml/Actions.qml:296 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "Smazat vybrané" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 +#: resources/qml/Actions.qml:306 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "Centrovat vybrané" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 +#: resources/qml/Actions.qml:315 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "Násobit vybrané" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 +#: resources/qml/Actions.qml:324 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Odstranit model" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 +#: resources/qml/Actions.qml:332 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "&Centerovat model na podložce" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 +#: resources/qml/Actions.qml:338 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "Sesk&upit modely" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 +#: resources/qml/Actions.qml:358 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Rozdělit modely" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 +#: resources/qml/Actions.qml:368 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "Spo&jit modely" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 +#: resources/qml/Actions.qml:378 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "Náso&bení modelu..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 +#: resources/qml/Actions.qml:385 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "Vybrat všechny modely" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 +#: resources/qml/Actions.qml:395 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "Vyčistit podložku" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 +#: resources/qml/Actions.qml:405 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "Znovu načíst všechny modely" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 +#: resources/qml/Actions.qml:414 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Uspořádat všechny modely" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 +#: resources/qml/Actions.qml:422 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Uspořádat selekci" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 +#: resources/qml/Actions.qml:429 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Resetovat všechny pozice modelů" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 +#: resources/qml/Actions.qml:436 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "Resetovat všechny transformace modelů" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 +#: resources/qml/Actions.qml:445 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Otevřít soubor(y)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 +#: resources/qml/Actions.qml:455 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Nový projekt..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 +#: resources/qml/Actions.qml:462 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Zobrazit složku s konfigurací" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 +#: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Konfigurovat viditelnost nastavení..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 msgctxt "@label:button" msgid "My printers" msgstr "Moje tiskárny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 msgctxt "@tooltip:button" msgid "Monitor printers in Ultimaker Digital Factory." msgstr "Sledujte tiskárny v Ultimaker Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Vytvořte tiskové projekty v Digital Library." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 msgctxt "@label:button" msgid "Print jobs" msgstr "Tiskové úlohy" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 msgctxt "@tooltip:button" msgid "Monitor print jobs and reprint from your print history." msgstr "Sledujte tiskové úlohy a znovu tiskněte z historie." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." -msgstr "Rozšiřte Ultimaker Cura pomocí modulů a materiálových profilů." +msgid "Extend UltiMaker Cura with plugins and material profiles." +msgstr "Rozšiřte UltiMaker Cura pomocí modulů a materiálových profilů." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 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." +msgid "Become a 3D printing expert with UltiMaker e-learning." +msgstr "Staňte se expertem na 3D tisk díky UltiMaker e-learningu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Ultimaker podpora" +msgid "UltiMaker support" +msgstr "UltiMaker podpora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." -msgstr "Zjistěte, jak začít s Ultimaker Cura." +msgid "Learn how to get started with UltiMaker Cura." +msgstr "Zjistěte, jak začít s UltiMaker Cura." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 msgctxt "@label:button" msgid "Ask a question" msgstr "Položit otázku" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Poraďte se s Ultimaker komunitou." +msgid "Consult the UltiMaker Community." +msgstr "Poraďte se s UltiMaker komunitou." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 msgctxt "@label:button" msgid "Report a bug" msgstr "Nahlásit chybu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Dejte vývojářům vědět, že je něco špatně." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Navštivte web Ultimaker." +msgid "Visit the UltiMaker website." +msgstr "Navštivte web UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 +#: resources/qml/ColorDialog.qml:110 msgctxt "@label" msgid "Hex" msgstr "Hexadecimální" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 +#: resources/qml/Cura.qml:256 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "Tento balíček bude nainstalován po restartování." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +#: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14 msgctxt "@title:tab" msgid "General" msgstr "Obecné" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +#: resources/qml/Cura.qml:470 msgctxt "@title:tab" msgid "Settings" msgstr "Nastavení" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:468 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:17 +#: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17 msgctxt "@title:tab" msgid "Printers" msgstr "Tiskárny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:470 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70 +#: resources/qml/Cura.qml:474 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:70 msgctxt "@title:tab" msgid "Materials" msgstr "Materiály" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:472 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:57 +#: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57 msgctxt "@title:tab" msgid "Profiles" msgstr "Profily" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +#: resources/qml/Cura.qml:581 msgctxt "@title:window %1 is the application name" msgid "Closing %1" msgstr "Zavírám %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:590 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:599 +#: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591 msgctxt "@label %1 is the application name" msgid "Are you sure you want to exit %1?" msgstr "Doopravdy chcete zavřít %1?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:637 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 +#: resources/qml/Cura.qml:629 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 msgctxt "@title:window" msgid "Open file(s)" msgstr "Otevřít soubor(y)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +#: resources/qml/Cura.qml:734 msgctxt "@window:title" msgid "Install Package" msgstr "Nainstalovat balíček" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +#: resources/qml/Cura.qml:741 msgctxt "@title:window" msgid "Open File(s)" msgstr "Otevřít Soubor(y)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +#: resources/qml/Cura.qml:743 msgctxt "@text:window" msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." msgstr "Ve vybraných souborech jsme našli jeden nebo více souborů G-kódu. Naraz můžete otevřít pouze jeden soubor G-kódu. Pokud chcete otevřít soubor G-Code, vyberte pouze jeden." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:831 +#: resources/qml/Cura.qml:828 msgctxt "@title:window" msgid "Add Printer" msgstr "Přidat tiskárnu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +#: resources/qml/Cura.qml:836 msgctxt "@title:window" msgid "What's New" msgstr "Co je nového" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: resources/qml/Cura.qml:890 +msgctxt "@title:window" +msgid "Save Custom Profile" +msgstr "Uložit vlastní profil" + +#: resources/qml/Cura.qml:891 +msgctxt "@textfield:placeholder" +msgid "New Custom Profile" +msgstr "Nový vlastní profil" + +#: resources/qml/Cura.qml:892 +msgctxt "@info" +msgid "Custom profile name:" +msgstr "Název vlastního profilu:" + +#: resources/qml/Cura.qml:909 +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 "Ve vlastním profilu budou uložena pouze nastavení změněná uživatelem.
    Pro materiály, které to podporují, bude nový vlastní profil dědit vlastnosti z %1." + +#: resources/qml/Cura.qml:917 +msgctxt "@action:button" +msgid "Learn more about Cura print profiles" +msgstr "Zjistit více o profilech tisku Cura" + +#: resources/qml/Cura.qml:926 +msgctxt "@button" +msgid "Save new profile" +msgstr "Uložit nový profil" + +#: resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "O %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: resources/qml/Dialogs/AboutDialog.qml:59 msgctxt "@label" msgid "version: %1" msgstr "verze: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: resources/qml/Dialogs/AboutDialog.qml:74 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Komplexní řešení pro 3D tisk z taveného filamentu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: resources/qml/Dialogs/AboutDialog.qml:87 msgctxt "@info:credit" msgid "" -"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura is developed by UltiMaker in cooperation with the community.\n" "Cura proudly uses the following open source projects:" msgstr "" -"Cura vyvíjí Ultimaker B.V. ve spolupráci s komunitou.\n" +"Cura vyvíjí UltiMaker ve spolupráci s komunitou.\n" "Cura hrdě používá následující open source projekty:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label Description for application component" msgid "Graphical user interface" msgstr "Grafické uživatelské prostředí" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label Description for application component" msgid "Application framework" msgstr "Aplikační framework" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label Description for application component" msgid "G-code generator" msgstr "Generátor G kódu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label Description for application component" msgid "Interprocess communication library" msgstr "Meziprocesní komunikační knihovna" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:142 +msgctxt "@label Description for application component" msgid "Python bindings for libnest2d" msgstr "Propojení libnest2d s jazykem Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label Description for application component" msgid "Polygon packing library, developed by Prusa Research" msgstr "Knihovna pro plošnou optimalizaci vyvinutá Prusa Research" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:144 +msgctxt "@label Description for application component" msgid "Support library for handling 3MF files" msgstr "Podpůrná knihovna pro manipulaci s 3MF soubory" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:145 +msgctxt "@label Description for application component" msgid "Support library for file metadata and streaming" msgstr "Podpůrná knihovna pro metadata souborů a streaming" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Programovací jazyk" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label Description for application dependency" msgid "GUI framework" -msgstr "GUI framework" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label Description for application dependency" msgid "GUI framework bindings" msgstr "Propojení GUI frameworku" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label Description for application dependency" msgid "C/C++ Binding library" msgstr "Binding knihovna C/C++" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:152 +msgctxt "@label Description for application dependency" msgid "Data interchange format" msgstr "Formát výměny dat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "Font" msgstr "Font" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label Description for application dependency" msgid "Polygon clipping library" msgstr "Knihovna pro výstřižky z mnohoúhelníků" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label Description for application dependency" msgid "JSON parser" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:158 +msgctxt "@label Description for application dependency" msgid "Utility functions, including an image loader" -msgstr "" +msgstr "Pomocné funkce zahrnující načítání obrázků" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:159 +msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" -msgstr "" +msgstr "Pomocná knihovna zahrnující Voronoi generátor" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:162 +#: resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label Description for application dependency" msgid "Root Certificates for validating SSL trustworthiness" -msgstr "" +msgstr "Kořenové certifikáty pro ověření důvěryhodnosti SSL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label Description for application dependency" msgid "Compatibility between Python 2 and 3" -msgstr "" +msgstr "Kompatibilita mezi Python 2 a 3" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:165 +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" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label Description for application dependency" msgid "Support library for faster math" msgstr "Podpůrný knihovna pro rychlejší matematické výpočty" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label Description for application dependency" msgid "Support library for handling STL files" msgstr "Podpůrná knihovna pro práci se soubory STL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label Description for application dependency" msgid "Python bindings for Clipper" msgstr "Propojení Clipper s jazykem Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Knihovna pro sériovou komunikaci" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label Description for application dependency" msgid "Support library for scientific computing" msgstr "Podpůrná knihovna pro vědecké výpočty" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 -msgctxt "@Label" +#: resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@Label Description for application dependency" msgid "Python Error tracking library" -msgstr "Chyba v Python trackovací knihovně" +msgstr "Knihovna pro sledování Python chyb" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:172 +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" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:173 +msgctxt "@label Description for application dependency" msgid "ZeroConf discovery library" msgstr "Knihovna ZeroConf discovery" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label Description for development tool" msgid "Universal build system configuration" -msgstr "" +msgstr "Univerzální konfigurace překladu programů" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label Description for development tool" msgid "Dependency and package manager" -msgstr "" +msgstr "Správce závislostí a balíčků" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label Description for development tool" msgid "Packaging Python-applications" -msgstr "" +msgstr "Vytváření balíčků Python aplikací" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:179 +msgctxt "@label Description for development tool" msgid "Linux cross-distribution application deployment" -msgstr "Linux cross-distribution application deployment" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 -msgctxt "@label" -msgid "Generating Windows installers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 +#: resources/qml/Dialogs/AboutDialog.qml:180 +msgctxt "@label Description for development tool" +msgid "Generating Windows installers" +msgstr "Generování instalátorů pro Windows" + +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 msgctxt "@title:window" msgid "Open project file" msgstr "Otevřít soubor s projektem" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84 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 "Toto je soubor projektu Cura. Chcete jej otevřít jako projekt nebo importovat z něj modely?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:90 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91 msgctxt "@text:window" msgid "Remember my choice" msgstr "Pamatuj si moji volbu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105 msgctxt "@action:button" msgid "Open as project" msgstr "Otevřít jako projekt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110 msgctxt "@action:button" msgid "Import models" msgstr "Importovat modely" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:17 +msgctxt "@title:window" +msgid "Select Printer" +msgstr "Vyberte tiskárnu" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:54 +msgctxt "@title:label" +msgid "Compatible Printers" +msgstr "Kompatibilní tiskárny" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:110 +msgctxt "@description" +msgid "No compatible printers, that are currently online, were found." +msgstr "Nebyly nalezeny žádné online kompatibilní tiskárny." + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Smazat nebo nechat změny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:49 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64 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 "Upravili jste některá nastavení profilu. Chcete tato nastavení zachovat i po přepnutí profilů? V opačném případě můžete změny zahodit a načíst výchozí hodnoty z '%1'." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90 msgctxt "@title:column" msgid "Profile settings" msgstr "Nastavení profilu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92 msgctxt "@title:column" msgid "Current changes" msgstr "Aktuální změny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:799 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123 +#: resources/qml/Preferences/GeneralPage.qml:820 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Vždy se zeptat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Smazat a už se nikdy neptat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Nechat a už se nikdy neptat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157 msgctxt "@action:button" msgid "Discard changes" msgstr "Smazat změny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164 msgctxt "@action:button" msgid "Keep changes" msgstr "Zanechat změny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171 +msgctxt "@action:button" +msgid "Save as new custom profile" +msgstr "Uložit jako nový vlastní profil" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178 +msgctxt "@action:button" +msgid "Save changes" +msgstr "Uložit změny" + +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 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 "Ve vybraných souborech jsme našli jeden nebo více projektových souborů. Naraz můžete otevřít pouze jeden soubor projektu. Doporučujeme importovat pouze modely z těchto souborů. Chtěli byste pokračovat?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 msgctxt "@action:button" msgid "Import all as models" msgstr "Importovat vše jako modely" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 +#: resources/qml/Dialogs/RenameDialog.qml:23 +msgctxt "@title:window" +msgid "Rename" +msgstr "Přejmenovat" + +#: resources/qml/Dialogs/RenameDialog.qml:24 +msgctxt "@info" +msgid "Please provide a new name." +msgstr "Prosím uveďte nové jméno." + +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 msgctxt "@title:window" msgid "Save Project" msgstr "Uložit projekt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177 msgctxt "@action:label" msgid "Extruder %1" msgstr "Extruder %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & materiál" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195 msgctxt "@action:label" msgid "Material" msgstr "Materiál" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "Nezobrazovat souhrn projektu při uložení znovu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298 msgctxt "@action:button" msgid "Save" msgstr "Uložit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -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" -msgstr[0] "Tisknout vybraný model pomocí %1" -msgstr[1] "Tisknout vybraný model pomocí %1" -msgstr[2] "Tisknout vybraný model pomocí %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:93 +#: resources/qml/JobSpecs.qml:93 msgctxt "@text Print job name" msgid "Untitled" msgstr "Bez názvu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 +#: resources/qml/MainWindow/ApplicationMenu.qml:63 +#: resources/qml/Menus/SettingsMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "Nasta&vení" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 +#: resources/qml/MainWindow/ApplicationMenu.qml:87 msgctxt "@title:window" msgid "New project" msgstr "Nový projekt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88 +#: resources/qml/MainWindow/ApplicationMenu.qml:88 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 "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135 +#: resources/qml/MainWindow/MainWindowHeader.qml:135 msgctxt "@action:button" msgid "Marketplace" msgstr "Obchod" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +#: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 msgctxt "@header" msgid "Configurations" msgstr "Konfigurace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 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." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 msgctxt "@label" msgid "Marketplace" msgstr "Obchod" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 msgctxt "@label" msgid "Loading available configurations from the printer..." msgstr "Načítání dostupných konfigurací z tiskárny ..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 msgctxt "@label" msgid "The configurations are not available because the printer is disconnected." msgstr "Konfigurace nejsou k dispozici, protože je tiskárna odpojena." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 msgctxt "@tooltip" msgid "The configuration of this extruder is not allowed, and prohibits slicing." msgstr "Konfigurace tohoto extruderu není dovolena a znemožňuje slicování." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 msgctxt "@tooltip" msgid "There are no profiles matching the configuration of this extruder." msgstr "Neexistují žádné profily odpovídající nastavení tohoto extruderu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 msgctxt "@label" msgid "Select configuration" msgstr "Vybrat konfiguraci" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 msgctxt "@label" msgid "Configurations" msgstr "Konfigurace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 msgctxt "@header" msgid "Custom" msgstr "Vlastní" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:62 -msgctxt "@label" -msgid "Printer" -msgstr "Tiskárna" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:217 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173 msgctxt "@label" msgid "Enabled" msgstr "Povoleno" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222 msgctxt "@label" msgid "Material" msgstr "Materiál" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348 msgctxt "@label" msgid "Use glue for better adhesion with this material combination." msgstr "S touto kombinací materiálu pro lepší adhezi použijte lepidlo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:29 +#: resources/qml/Menus/ContextMenu.qml:29 msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -4379,7 +5083,7 @@ msgstr[0] "Tisknout vybraný model pomocí:" msgstr[1] "Tisknout vybrané modely pomocí:" msgstr[2] "Tisknout vybrané modely pomocí:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:92 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" @@ -4387,227 +5091,227 @@ msgstr[0] "Násobit vybraný model" msgstr[1] "Násobit vybrané modele" msgstr[2] "Násobit vybrané modele" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:123 msgctxt "@label" msgid "Number of Copies" msgstr "Počet kopií" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/EditMenu.qml:12 +#: resources/qml/Menus/EditMenu.qml:12 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "Upr&avit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ExtensionMenu.qml:13 +#: resources/qml/Menus/ExtensionMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "D&oplňky" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 +#: resources/qml/Menus/FileMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "&Soubor" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:45 +#: resources/qml/Menus/FileMenu.qml:45 msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Uložit projekt..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:78 +#: resources/qml/Menus/FileMenu.qml:78 msgctxt "@title:menu menubar:file" msgid "&Export..." msgstr "&Exportovat..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:89 +#: resources/qml/Menus/FileMenu.qml:89 msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Výběr exportu..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/HelpMenu.qml:14 +#: resources/qml/Menus/HelpMenu.qml:14 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "Po&moc" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +#: resources/qml/Menus/MaterialMenu.qml:13 msgctxt "@label:category menu label" msgid "Material" msgstr "Materiál" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:53 +#: resources/qml/Menus/MaterialMenu.qml:53 msgctxt "@label:category menu label" msgid "Favorites" msgstr "Oblíbené" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:78 +#: resources/qml/Menus/MaterialMenu.qml:78 msgctxt "@label:category menu label" msgid "Generic" msgstr "Obecné" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +#: resources/qml/Menus/OpenFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open File(s)..." msgstr "Otevřít soubor(y)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PreferencesMenu.qml:21 +#: resources/qml/Menus/PreferencesMenu.qml:21 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "P&reference" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:13 +#: resources/qml/Menus/PrinterMenu.qml:13 msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "&Tiskárna" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:17 +#: resources/qml/Menus/PrinterMenu.qml:17 msgctxt "@label:category menu label" msgid "Network enabled printers" msgstr "Tiskárny s povolenou sítí" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:50 +#: resources/qml/Menus/PrinterMenu.qml:50 msgctxt "@label:category menu label" msgid "Local printers" msgstr "Lokální tiskárny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +#: resources/qml/Menus/RecentFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open &Recent" msgstr "Otevřít &Poslední" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +#: resources/qml/Menus/SaveProjectMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Save Project..." msgstr "Uložit projekt..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:34 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Materiál" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:49 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Nastavit jako aktivní extruder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:55 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Povolit extuder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:63 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Zakázat Extruder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 msgctxt "@action:inmenu" msgid "Visible Settings" msgstr "Viditelná nastavení" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 msgctxt "@action:inmenu" msgid "Collapse All Categories" msgstr "Sbalit všechny kategorie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 msgctxt "@action:inmenu" msgid "Manage Setting Visibility..." msgstr "Spravovat nastavení viditelnosti ..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:13 +#: resources/qml/Menus/SettingsMenu.qml:34 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Materiál" + +#: resources/qml/Menus/SettingsMenu.qml:49 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Nastavit jako aktivní extruder" + +#: resources/qml/Menus/SettingsMenu.qml:55 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Povolit extuder" + +#: resources/qml/Menus/SettingsMenu.qml:63 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Zakázat Extruder" + +#: resources/qml/Menus/ViewMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&View" msgstr "Po&hled" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:17 +#: resources/qml/Menus/ViewMenu.qml:17 msgctxt "@action:inmenu menubar:view" msgid "&Camera position" msgstr "Pozice &kamery" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:30 +#: resources/qml/Menus/ViewMenu.qml:30 msgctxt "@action:inmenu menubar:view" msgid "Camera view" msgstr "Pohled kamery" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 +#: resources/qml/Menus/ViewMenu.qml:48 msgctxt "@action:inmenu menubar:view" msgid "Perspective" msgstr "Perspektiva" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +#: resources/qml/Menus/ViewMenu.qml:59 msgctxt "@action:inmenu menubar:view" msgid "Orthographic" msgstr "Ortografický" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:115 +#: resources/qml/MonitorButton.qml:115 msgctxt "@label:MonitorStatus" msgid "Not connected to a printer" msgstr "Nepřipojen k tiskárně" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 +#: resources/qml/MonitorButton.qml:119 msgctxt "@label:MonitorStatus" msgid "Printer does not accept commands" msgstr "Tiskárna nepřijímá příkazy" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:129 +#: resources/qml/MonitorButton.qml:129 msgctxt "@label:MonitorStatus" msgid "In maintenance. Please check the printer" msgstr "V údržbě. Prosím zkontrolujte tiskíárnu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:140 +#: resources/qml/MonitorButton.qml:140 msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Ztráta spojení s tiskárnou" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +#: resources/qml/MonitorButton.qml:142 msgctxt "@label:MonitorStatus" msgid "Printing..." msgstr "Tisknu..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +#: resources/qml/MonitorButton.qml:145 msgctxt "@label:MonitorStatus" msgid "Paused" msgstr "Pozastaveno" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +#: resources/qml/MonitorButton.qml:148 msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Připravuji..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +#: resources/qml/MonitorButton.qml:150 msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Prosím odstraňte výtisk" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +#: resources/qml/MonitorButton.qml:318 msgctxt "@label" msgid "Abort Print" msgstr "Zrušit tisk" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:327 +#: resources/qml/MonitorButton.qml:327 msgctxt "@label" msgid "Are you sure you want to abort the print?" msgstr "Jste si jist, že chcete zrušit tisknutí?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:109 +#: resources/qml/ObjectItemButton.qml:109 msgctxt "@label" msgid "Is printed as support." msgstr "Je tisknuto jako podpora." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:112 +#: resources/qml/ObjectItemButton.qml:112 msgctxt "@label" msgid "Other models overlapping with this model are modified." msgstr "Ostatní modely překrývající se s tímto modelem jsou upraveny." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:115 +#: resources/qml/ObjectItemButton.qml:115 msgctxt "@label" msgid "Infill overlapping with this model is modified." msgstr "Výplň překrývající se s tímto modelem byla modifikována." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:118 +#: resources/qml/ObjectItemButton.qml:118 msgctxt "@label" msgid "Overlaps with this model are not supported." msgstr "Přesahy na tomto modelu nejsou podporovány." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:125 +#: resources/qml/ObjectItemButton.qml:125 msgctxt "@label %1 is the number of settings it overrides." msgid "Overrides %1 setting." msgid_plural "Overrides %1 settings." @@ -4615,824 +5319,822 @@ msgstr[0] "Přepíše %1 nastavení." msgstr[1] "Přepíše %1 nastavení." msgstr[2] "Přepíše %1 nastavení." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 +#: resources/qml/ObjectSelector.qml:59 msgctxt "@label" msgid "Object list" msgstr "Seznam objektů" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:131 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:24 +#: resources/qml/Preferences/GeneralPage.qml:134 +#: resources/qml/Preferences/SettingVisibilityPage.qml:24 msgctxt "@action:button" msgid "Defaults" msgstr "Výchozí" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +#: resources/qml/Preferences/GeneralPage.qml:172 msgctxt "@label" msgid "Interface" msgstr "Rozhranní" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +#: resources/qml/Preferences/GeneralPage.qml:215 msgctxt "@heading" msgid "-- incomplete --" msgstr "-- nekompletní --" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +#: resources/qml/Preferences/GeneralPage.qml:261 msgctxt "@label" msgid "Currency:" msgstr "Měna:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:274 +#: resources/qml/Preferences/GeneralPage.qml:277 msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." msgid "Theme*:" msgstr "Styl*:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +#: resources/qml/Preferences/GeneralPage.qml:323 msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Slicovat automaticky při změně nastavení." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +#: resources/qml/Preferences/GeneralPage.qml:331 msgctxt "@option:check" msgid "Slice automatically" msgstr "Slicovat automaticky" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:337 +#: resources/qml/Preferences/GeneralPage.qml:340 +msgctxt "@info:tooltip" +msgid "Show an icon and notifications in the system notification area." +msgstr "Zobrazovat ikonu a oznámení v oznamovací oblasti systému." + +#: resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Add icon to system tray *" +msgstr "Přidat ikonu do systémové lišty *" + +#: resources/qml/Preferences/GeneralPage.qml:357 msgctxt "@label" msgid "*You will need to restart the application for these changes to have effect." msgstr "*Aby se tyto změny projevily, budete muset aplikaci restartovat." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +#: resources/qml/Preferences/GeneralPage.qml:373 msgctxt "@label" msgid "Viewport behavior" msgstr "Chování výřezu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +#: resources/qml/Preferences/GeneralPage.qml:381 msgctxt "@info:tooltip" msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." msgstr "Zvýraznit červeně místa modelu bez podpor. Bez podpor tyto místa nebudou správně vytisknuta." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:369 +#: resources/qml/Preferences/GeneralPage.qml:390 msgctxt "@option:check" msgid "Display overhang" msgstr "Zobrazit převis" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +#: resources/qml/Preferences/GeneralPage.qml:400 msgctxt "@info:tooltip" msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." msgstr "Zvýraznit chybějící nebo vedlejší povrchy modelu pomocí varovných značek. Dráhám nástrojů budou často chybět části zamýšlené geometrie." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:388 +#: resources/qml/Preferences/GeneralPage.qml:409 msgctxt "@option:check" msgid "Display model errors" msgstr "Zobrazovat chyby modelu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +#: resources/qml/Preferences/GeneralPage.qml:417 msgctxt "@info:tooltip" msgid "Moves the camera so the model is in the center of the view when a model is selected" msgstr "Při výběru modelu pohybuje kamerou tak, aby byl model ve středu pohledu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:401 +#: resources/qml/Preferences/GeneralPage.qml:422 msgctxt "@action:button" msgid "Center camera when item is selected" msgstr "Vycentrovat kameru pokud je vybrána položka" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +#: resources/qml/Preferences/GeneralPage.qml:432 msgctxt "@info:tooltip" msgid "Should the default zoom behavior of cura be inverted?" msgstr "Mělo by být výchozí chování přiblížení u cury invertováno?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:416 +#: resources/qml/Preferences/GeneralPage.qml:437 msgctxt "@action:button" msgid "Invert the direction of camera zoom." msgstr "Obrátit směr přibližování kamery." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Should zooming move in the direction of the mouse?" msgstr "Mělo by se přibližování pohybovat ve směru myši?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Zooming towards the mouse is not supported in the orthographic perspective." msgstr "V pravoúhlé perspektivě není podporováno přiblížení směrem k myši." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:437 +#: resources/qml/Preferences/GeneralPage.qml:458 msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "Přiblížit směrem k směru myši" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +#: resources/qml/Preferences/GeneralPage.qml:484 msgctxt "@info:tooltip" msgid "Should models on the platform be moved so that they no longer intersect?" msgstr "Měly by se modely na platformě pohybovat tak, aby se již neprotínaly?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:468 +#: resources/qml/Preferences/GeneralPage.qml:489 msgctxt "@option:check" msgid "Ensure models are kept apart" msgstr "Zajistěte, aby modely byly odděleny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +#: resources/qml/Preferences/GeneralPage.qml:498 msgctxt "@info:tooltip" msgid "Should models on the platform be moved down to touch the build plate?" msgstr "Měly by být modely na platformě posunuty dolů tak, aby se dotýkaly podložky?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:482 +#: resources/qml/Preferences/GeneralPage.qml:503 msgctxt "@option:check" msgid "Automatically drop models to the build plate" msgstr "Automaticky přetáhnout modely na podložku" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +#: resources/qml/Preferences/GeneralPage.qml:515 msgctxt "@info:tooltip" msgid "Show caution message in g-code reader." msgstr "Zobrazte v čtečce g-kódu varovnou zprávu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503 +#: resources/qml/Preferences/GeneralPage.qml:524 msgctxt "@option:check" msgid "Caution message in g-code reader" msgstr "Upozornění ve čtečce G-kódu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +#: resources/qml/Preferences/GeneralPage.qml:532 msgctxt "@info:tooltip" msgid "Should layer be forced into compatibility mode?" msgstr "Měla by být vrstva vynucena do režimu kompatibility?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +#: resources/qml/Preferences/GeneralPage.qml:537 msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Vynutit režim kompatibility zobrazení vrstev (vyžaduje restart)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +#: resources/qml/Preferences/GeneralPage.qml:547 msgctxt "@info:tooltip" msgid "Should Cura open at the location it was closed?" msgstr "Měla by se Cura otevřít v místě, kde byla uzavřena?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:531 +#: resources/qml/Preferences/GeneralPage.qml:552 msgctxt "@option:check" msgid "Restore window position on start" msgstr "Při zapnutí obnovit pozici okna" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +#: resources/qml/Preferences/GeneralPage.qml:562 msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Jaký typ kamery by se měl použít?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +#: resources/qml/Preferences/GeneralPage.qml:569 msgctxt "@window:text" msgid "Camera rendering:" msgstr "Vykreslování kamery:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +#: resources/qml/Preferences/GeneralPage.qml:576 msgid "Perspective" msgstr "Perspektiva" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +#: resources/qml/Preferences/GeneralPage.qml:577 msgid "Orthographic" msgstr "Ortografický" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +#: resources/qml/Preferences/GeneralPage.qml:617 msgctxt "@label" msgid "Opening and saving files" msgstr "Otevírám a ukládám soubory" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +#: resources/qml/Preferences/GeneralPage.qml:624 msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "Měli by se soubory z plochy, nebo externích aplikací otevírat ve stejné instanci Cury?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:608 +#: resources/qml/Preferences/GeneralPage.qml:629 msgctxt "@option:check" msgid "Use a single instance of Cura" msgstr "Používat pouze jednu instanci programu Cura" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +#: resources/qml/Preferences/GeneralPage.qml:640 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?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +#: resources/qml/Preferences/GeneralPage.qml:646 msgctxt "@option:check" msgid "Clear buildplate before loading model into the single instance" msgstr "Vyčistit podložku před načtením modelu do jediné instance" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 +#: resources/qml/Preferences/GeneralPage.qml:656 msgctxt "@info:tooltip" msgid "Should models be scaled to the build volume if they are too large?" msgstr "Měly by být modely upraveny na velikost podložky, pokud jsou příliš velké?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +#: resources/qml/Preferences/GeneralPage.qml:661 msgctxt "@option:check" msgid "Scale large models" msgstr "Škálovat velké modely" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +#: resources/qml/Preferences/GeneralPage.qml:671 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 "Model se může jevit velmi malý, pokud je jeho jednotka například v metrech, nikoli v milimetrech. Měly by být tyto modely škálovány?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:655 +#: resources/qml/Preferences/GeneralPage.qml:676 msgctxt "@option:check" msgid "Scale extremely small models" msgstr "Škálovat extrémně malé modely" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +#: resources/qml/Preferences/GeneralPage.qml:686 msgctxt "@info:tooltip" msgid "Should models be selected after they are loaded?" msgstr "Měly by být modely vybrány po načtení?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: resources/qml/Preferences/GeneralPage.qml:691 msgctxt "@option:check" msgid "Select models when loaded" msgstr "Vybrat modely po načtení" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +#: resources/qml/Preferences/GeneralPage.qml:701 msgctxt "@info:tooltip" msgid "Should a prefix based on the printer name be added to the print job name automatically?" msgstr "Je třeba k názvu tiskové úlohy přidat předponu založenou na názvu tiskárny automaticky?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:685 +#: resources/qml/Preferences/GeneralPage.qml:706 msgctxt "@option:check" msgid "Add machine prefix to job name" msgstr "Přidat předponu zařízení před název úlohy" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +#: resources/qml/Preferences/GeneralPage.qml:716 msgctxt "@info:tooltip" msgid "Should a summary be shown when saving a project file?" msgstr "Mělo by se při ukládání souboru projektu zobrazit souhrn?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: resources/qml/Preferences/GeneralPage.qml:720 msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Zobrazit souhrnný dialog při ukládání projektu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +#: resources/qml/Preferences/GeneralPage.qml:730 msgctxt "@info:tooltip" msgid "Default behavior when opening a project file" msgstr "Výchozí chování při otevírání souboru" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +#: resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@window:text" msgid "Default behavior when opening a project file: " msgstr "Výchozí chování při otevření souboru s projektem: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +#: resources/qml/Preferences/GeneralPage.qml:753 msgctxt "@option:openProject" msgid "Always ask me this" msgstr "Vždy se zeptat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: resources/qml/Preferences/GeneralPage.qml:754 msgctxt "@option:openProject" msgid "Always open as a project" msgstr "Vždy otevírat jako projekt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +#: resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:openProject" msgid "Always import models" msgstr "Vždy importovat modely" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +#: resources/qml/Preferences/GeneralPage.qml:792 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 "Pokud jste provedli změny v profilu a přepnuli na jiný, zobrazí se dialogové okno s dotazem, zda si přejete zachovat své modifikace nebo ne, nebo si můžete zvolit výchozí chování a už nikdy toto dialogové okno nezobrazovat." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:780 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:36 +#: resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46 msgctxt "@label" msgid "Profiles" msgstr "Profily" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +#: resources/qml/Preferences/GeneralPage.qml:806 msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Výchozí chování pro změněné hodnoty nastavení při přepnutí na jiný profil: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:800 +#: resources/qml/Preferences/GeneralPage.qml:821 msgctxt "@option:discardOrKeep" msgid "Always discard changed settings" msgstr "Vždy smazat změněné nastavení" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/Preferences/GeneralPage.qml:822 msgctxt "@option:discardOrKeep" msgid "Always transfer changed settings to new profile" msgstr "Vždy přesunout nastavení do nového profilu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +#: resources/qml/Preferences/GeneralPage.qml:856 msgctxt "@label" msgid "Privacy" msgstr "Soukromí" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +#: resources/qml/Preferences/GeneralPage.qml:862 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 "Měla by být anonymní data o vašem tisku zaslána společnosti Ultimaker? Upozorňujeme, že nejsou odesílány ani ukládány žádné modely, adresy IP ani jiné osobní údaje." +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 "Měla by být anonymní data o vašem tisku zaslána společnosti UltiMaker? Upozorňujeme, že nejsou odesílány ani ukládány žádné modely, adresy IP ani jiné osobní údaje." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +#: resources/qml/Preferences/GeneralPage.qml:867 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "Posílat (anonymní) informace o tisku" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +#: resources/qml/Preferences/GeneralPage.qml:897 msgctxt "@label" msgid "Updates" msgstr "Aktualizace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +#: resources/qml/Preferences/GeneralPage.qml:904 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "Měla by Cura zkontrolovat aktualizace při spuštění programu?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:888 +#: resources/qml/Preferences/GeneralPage.qml:909 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Zkontrolovat aktualizace při zapnutí" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +#: resources/qml/Preferences/GeneralPage.qml:925 msgctxt "@info:tooltip" msgid "When checking for updates, only check for stable releases." msgstr "Při kontrole aktualizací kontrolovat pouze stabilní vydání." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:910 +#: resources/qml/Preferences/GeneralPage.qml:931 msgctxt "@option:radio" msgid "Stable releases only" msgstr "Pouze stabilní vydání" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +#: resources/qml/Preferences/GeneralPage.qml:941 msgctxt "@info:tooltip" msgid "When checking for updates, check for both stable and for beta releases." msgstr "Při kontrole aktualizací kontrolovat stabilní i beta vydání." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:926 +#: resources/qml/Preferences/GeneralPage.qml:947 msgctxt "@option:radio" msgid "Stable and Beta releases" msgstr "Stabilní a beta vydání" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +#: resources/qml/Preferences/GeneralPage.qml:957 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 "Mají být při každém startu Cury automaticky kontrolovány nové moduly? Důrazně doporučujeme tuto možnost nevypínat!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:941 +#: resources/qml/Preferences/GeneralPage.qml:962 msgctxt "@option:check" msgid "Get notifications for plugin updates" msgstr "Získávat oznámení o aktualizacích modulů" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:50 +#: resources/qml/Preferences/MachinesPage.qml:50 msgctxt "@action:button" msgid "Add New" msgstr "Přidat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:134 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +#: resources/qml/Preferences/MachinesPage.qml:147 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:160 +#: resources/qml/Preferences/ProfilesPage.qml:294 msgctxt "@action:button" msgid "Activate" msgstr "Aktivovat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:146 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:331 +#: resources/qml/Preferences/MachinesPage.qml:159 +#: resources/qml/Preferences/ProfilesPage.qml:331 msgctxt "@action:button" msgid "Rename" msgstr "Přejmenovat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:72 msgctxt "@label" msgid "Materials compatible with active printer:" msgstr "Materiály kompatibilní s aktivní tiskárnou:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:94 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:78 +#: resources/qml/Preferences/ProfilesPage.qml:94 msgctxt "@action:button" msgid "Create new" msgstr "Vytvořit nový" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:88 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:90 +#: resources/qml/Preferences/ProfilesPage.qml:88 msgctxt "@action:button" msgid "Import" msgstr "Import" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:101 msgctxt "@action:button" msgid "Sync with Printers" msgstr "Synchronizovat s tiskárnami" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:311 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:174 +#: resources/qml/Preferences/ProfilesPage.qml:311 msgctxt "@action:button" msgid "Duplicate" msgstr "Duplikovat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:342 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:198 +#: resources/qml/Preferences/ProfilesPage.qml:342 msgctxt "@action:button" msgid "Export" msgstr "Export" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:392 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:212 +#: resources/qml/Preferences/ProfilesPage.qml:392 msgctxt "@title:window" msgid "Confirm Remove" msgstr "Potvrdit odstranění" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:393 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:215 +#: resources/qml/Preferences/ProfilesPage.qml:393 msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "Doopravdy chcete odstranit %1? Toto nelze vrátit zpět!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:228 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:238 msgctxt "@title:window" msgid "Import Material" msgstr "Importovat materiál" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:242 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Úspěšně importován materiál %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:245 msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not import material %1: %2" msgstr "Nelze importovat materiál %1: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:267 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:256 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:267 msgctxt "@title:window" msgid "Export Material" msgstr "Exportovat materiál" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:272 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:272 msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Neúspěch při exportu materiálu do %1: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:275 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:275 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Úspěšné exportování materiálu do %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 msgctxt "@title:window" msgid "Sync materials with printers" msgstr "Synchronizovat materiály s tiskárnami" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 msgctxt "@title:header" msgid "Sync materials with printers" msgstr "Synchronizovat materiály s tiskárnami" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 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." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 msgctxt "@button" msgid "Why do I need to sync material profiles?" msgstr "K čemu je dobrá synchronizace materiálových profilů?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 msgctxt "@button" msgid "Start" msgstr "Začít" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144 msgctxt "@title:header" msgid "Sign in" msgstr "Přihlásit se" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150 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 "Pro automatickou synchronizaci materiálových profilů se všemi vašimi tiskárnami připojenými k Digital Factory musíte být přihlášení v Cuře." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:446 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:586 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602 msgctxt "@button" msgid "Sync materials with USB" msgstr "Synchronizovat materiály pomocí USB" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 msgctxt "@title:header" msgid "The following printers will receive the new material profiles:" msgstr "Následující tiskárny získají nové materiálové profily:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:198 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 msgctxt "@title:header" msgid "Something went wrong when sending the materials to the printers." msgstr "Při odesílání materiálů do tiskáren se něco nepodařilo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:205 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221 msgctxt "@title:header" msgid "Material profiles successfully synced with the following printers:" msgstr "Materiálové profily byly úspěšně synchronizovány s následujícími tiskárnami:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:429 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445 msgctxt "@button" msgid "Troubleshooting" msgstr "Podpora při problémech" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422 msgctxt "@text Asking the user whether printers are missing in a list." msgid "Printers missing?" msgstr "Chybí tiskárny?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:408 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424 msgctxt "@text" msgid "Make sure all your printers are turned ON and connected to Digital Factory." msgstr "Ujistěte se, že jsou všechny vaše tiskárny zapnuté a připojené k Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:417 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433 msgctxt "@button" msgid "Refresh List" msgstr "Obnovit seznam" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473 msgctxt "@button" msgid "Try again" msgstr "Zkusit znovu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:461 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Done" msgstr "Hotovo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:606 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622 msgctxt "@button" msgid "Sync" msgstr "Synchronizovat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535 msgctxt "@button" msgid "Syncing" msgstr "Synchronizuji" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553 msgctxt "@title:header" msgid "No printers found" msgstr "Nenalezeny žádné tiskárny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574 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 "Zdá se, že nemáte žádné kompatibilní tiskárny připojené k Digital Factory. Ujistěte se, že je vaše tiskárna připojena a používá nejnovější firmware." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:569 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585 msgctxt "@button" msgid "Learn how to connect your printer to Digital Factory" msgstr "Zjistěte, jak připojit vaši tiskárnu k Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:597 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613 msgctxt "@button" msgid "Refresh" msgstr "Obnovit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642 msgctxt "@title:header" msgid "Sync material profiles via USB" msgstr "Synchronizovat materiálové profily přes USB" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:632 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648 msgctxt "@text In the UI this is followed by a list of steps the user needs to take." msgid "Follow the following steps to load the new material profiles to your printer." msgstr "Následujte tyto kroky, abyste nahráli nové materiálové profily do vaší tiskárny." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 msgctxt "@text" msgid "Click the export material archive button." msgstr "Klikněte na tlačítko \"Exportovat archiv s materiálem\"." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Uložte soubor .umm na USB úložiště." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 msgctxt "@text" msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." msgstr "Připojte USB úložiště k vaší tiskárně a spusťte proceduru pro nahrání nových materiálových profilů." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:673 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689 msgctxt "@button" msgid "How to load new material profiles to my printer" msgstr "Jak nahrát nové materiálové profily do mé tiskárny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:687 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 msgctxt "@button" msgid "Back" msgstr "Zpět" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Export material archive" msgstr "Exportovat archiv s materiálem" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747 msgctxt "@title:window" msgid "Export All Materials" msgstr "Exportovat všechny materiály" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121 +#: resources/qml/Preferences/Materials/MaterialsView.qml:121 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Potvrdit změnu průměru" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122 +#: resources/qml/Preferences/Materials/MaterialsView.qml:122 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 "Nový průměr vlákna je nastaven na %1 mm, což není kompatibilní s aktuálním extrudérem. Přejete si pokračovat?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152 +#: resources/qml/Preferences/Materials/MaterialsView.qml:152 msgctxt "@label" msgid "Display Name" msgstr "Jméno" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 +#: resources/qml/Preferences/Materials/MaterialsView.qml:171 msgctxt "@label" msgid "Brand" msgstr "Značka" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190 +#: resources/qml/Preferences/Materials/MaterialsView.qml:190 msgctxt "@label" msgid "Material Type" msgstr "Typ materiálu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +#: resources/qml/Preferences/Materials/MaterialsView.qml:210 msgctxt "@label" msgid "Color" msgstr "Barva" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:262 +#: resources/qml/Preferences/Materials/MaterialsView.qml:262 msgctxt "@title" msgid "Material color picker" msgstr "Volba barvy materiálu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:275 +#: resources/qml/Preferences/Materials/MaterialsView.qml:275 msgctxt "@label" msgid "Properties" msgstr "Vlastnosti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +#: resources/qml/Preferences/Materials/MaterialsView.qml:286 msgctxt "@label" msgid "Density" msgstr "Husttoa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +#: resources/qml/Preferences/Materials/MaterialsView.qml:319 msgctxt "@label" msgid "Diameter" msgstr "Průměr" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:369 +#: resources/qml/Preferences/Materials/MaterialsView.qml:369 msgctxt "@label" msgid "Filament Cost" msgstr "Cena filamentu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:401 +#: resources/qml/Preferences/Materials/MaterialsView.qml:401 msgctxt "@label" msgid "Filament weight" msgstr "Váha filamentu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:433 +#: resources/qml/Preferences/Materials/MaterialsView.qml:433 msgctxt "@label" msgid "Filament length" msgstr "Délka filamentu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:451 +#: resources/qml/Preferences/Materials/MaterialsView.qml:451 msgctxt "@label" msgid "Cost per Meter" msgstr "Cena za metr" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:465 +#: resources/qml/Preferences/Materials/MaterialsView.qml:465 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "Tento materiál je propojen s %1 a sdílí některé jeho vlastnosti." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:472 +#: resources/qml/Preferences/Materials/MaterialsView.qml:472 msgctxt "@label" msgid "Unlink Material" msgstr "Zrušit propojení s materiálem" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +#: resources/qml/Preferences/Materials/MaterialsView.qml:485 msgctxt "@label" msgid "Description" msgstr "Popis" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:503 +#: resources/qml/Preferences/Materials/MaterialsView.qml:503 msgctxt "@label" msgid "Adhesion Information" msgstr "Informace o adhezi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642 +#: resources/qml/Preferences/Materials/MaterialsView.qml:642 msgctxt "@title" msgid "Information" msgstr "Informace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:647 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:82 +#: resources/qml/Preferences/Materials/MaterialsView.qml:647 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 msgctxt "@label" msgid "Print settings" msgstr "Nastavení tisku" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:59 +#: resources/qml/Preferences/ProfilesPage.qml:59 msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "Profily kompatibilní s aktivní tiskárnou:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:98 +#: resources/qml/Preferences/ProfilesPage.qml:98 msgctxt "@action:tooltip" msgid "Create new profile from current settings/overrides" msgstr "Vytvořit nový profil z aktuálních nastavení/přepsání" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:125 +#: resources/qml/Preferences/ProfilesPage.qml:125 msgctxt "@action:label" msgid "Some settings from current profile were overwritten." msgstr "Některá nastavení z aktuálního profilu byla přepsána." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:140 +#: resources/qml/Preferences/ProfilesPage.qml:140 msgctxt "@action:button" msgid "Update profile." msgstr "Aktualizovat profil." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:143 +#: resources/qml/Preferences/ProfilesPage.qml:143 msgctxt "@action:tooltip" msgid "Update profile with current settings/overrides" msgstr "Aktualizovat profil s aktuálními nastaveními/přepsáními" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:148 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256 +#: resources/qml/Preferences/ProfilesPage.qml:148 msgctxt "@action:button" msgid "Discard current changes" msgstr "Zrušit aktuální změny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:158 +#: resources/qml/Preferences/ProfilesPage.qml:158 msgctxt "@action:label" msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." msgstr "Tento profil používá výchozí nastavení zadaná tiskárnou, takže nemá žádná nastavení / přepíše v níže uvedeném seznamu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:165 +#: resources/qml/Preferences/ProfilesPage.qml:165 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "Vaše aktuální nastavení odpovídá vybranému profilu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +#: resources/qml/Preferences/ProfilesPage.qml:175 msgctxt "@title:tab" msgid "Global Settings" msgstr "Globální nastavení" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: resources/qml/Preferences/ProfilesPage.qml:278 msgctxt "@title:window" msgid "Create Profile" msgstr "Vytvořit profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:280 +#: resources/qml/Preferences/ProfilesPage.qml:280 msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Prosím uveďte jméno pro tento profil." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:368 +#: resources/qml/Preferences/ProfilesPage.qml:352 +#: resources/qml/Preferences/ProfilesPage.qml:368 msgctxt "@title:window" msgid "Export Profile" msgstr "Exportovat profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +#: resources/qml/Preferences/ProfilesPage.qml:382 msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Duplikovat profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:409 +#: resources/qml/Preferences/ProfilesPage.qml:409 msgctxt "@title:window" msgid "Rename Profile" msgstr "Přejmenovat profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:422 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:429 +#: resources/qml/Preferences/ProfilesPage.qml:422 +#: resources/qml/Preferences/ProfilesPage.qml:429 msgctxt "@title:window" msgid "Import Profile" msgstr "Importovat profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:22 -msgctxt "@title:window" -msgid "Rename" -msgstr "Přejmenovat" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:23 -msgctxt "@info" -msgid "Please provide a new name." -msgstr "Prosím uveďte nové jméno." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56 +#: resources/qml/Preferences/SettingVisibilityItem.qml:56 msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." msgstr "Toto nastavení bylo skryto aktivním zařízením a nebude viditelné." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73 +#: resources/qml/Preferences/SettingVisibilityItem.qml:73 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." @@ -5440,189 +6142,42 @@ msgstr[0] "Toto nastavení bylo skryto hodnotou nastavení %1. Změňte hodnotu msgstr[1] "Toto nastavení bylo skryto hodnotami nastavení %1. Změňte hodnoty těch nastavení, aby bylo toto znovu viditelné." msgstr[2] "Toto nastavení bylo skryto hodnotami nastavení %1. Změňte hodnoty těch nastavení, aby bylo toto znovu viditelné." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13 +#: resources/qml/Preferences/SettingVisibilityPage.qml:13 msgctxt "@title:tab" msgid "Setting Visibility" msgstr "Nastavení zobrazení" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 +#: resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" msgid "Check all" msgstr "Zkontrolovat vše" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 -msgctxt "@label" -msgid "Extruder" -msgstr "Extuder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70 -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." -msgstr "Cílová teplota hotendu. Hotend se ohřeje nebo ochladí na tuto teplotu. Pokud je 0, ohřev teplé vody je vypnutý." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Aktuální teplota tohoto hotendu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "Teplota pro předehřátí hotendu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Zrušit" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Předehřání" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Před tiskem zahřejte hotend předem. Můžete pokračovat v úpravách tisku, zatímco se zahřívá, a nemusíte čekat na zahřátí hotendu, až budete připraveni k tisku." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Barva materiálu v tomto extruderu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Materiál v tomto extruderu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Vložená trysky v tomto extruderu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -msgctxt "@label" -msgid "Build plate" -msgstr "Podložka" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55 -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 "Cílová teplota vyhřívací podložky. Podložka se zahřeje, nebo schladí směrem k této teplotě. Pokud je 0, tak je vyhřívání podložky vypnuto." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "Aktuální teplota vyhřívané podložky." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "Teplota pro předehřátí podložky." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Před tiskem zahřejte postel předem. Můžete pokračovat v úpravě tisku, zatímco se zahřívá, a nemusíte čekat, až se postel zahřeje, až budete připraveni k tisku." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51 -msgctxt "@label" -msgid "Printer control" -msgstr "Ovládání tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66 -msgctxt "@label" -msgid "Jog Position" -msgstr "Pozice hlavy" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Vzdálenost hlavy" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Send G-code" -msgstr "Poslat G kód" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Na připojenou tiskárnu odešlete vlastní příkaz G-kódu. Stisknutím klávesy „Enter“ odešlete příkaz." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "Tiskárna není připojena." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "Cloudová tiskárna je offline. Prosím zkontrolujte, zda je tiskárna zapnutá a připojená k internetu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Tiskárna není připojena k vašemu účtu. Prosím navštivte Ultimaker Digital Factory pro navázání spojení." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "Připojení ke cloudu není nyní dostupné. Prosím přihlašte se k připojení ke cloudové tiskárně." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "Připojení ke cloudu není nyní dostupné. Prosím zkontrolujte si vaše internetové připojení." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:235 -msgctxt "@button" -msgid "Add printer" -msgstr "Přidat tiskárnu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Manage printers" -msgstr "Spravovat tiskárny" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Active print" msgstr "Aktivní tisk" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Job Name" msgstr "Název úlohy" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +#: resources/qml/PrintMonitor.qml:172 msgctxt "@label" msgid "Printing Time" msgstr "Čas tisku" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +#: resources/qml/PrintMonitor.qml:180 msgctxt "@label" msgid "Estimated time left" msgstr "Předpokládaný zbývající čas" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 msgctxt "@label" msgid "Profile" msgstr "Profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5633,132 +6188,384 @@ msgstr "" "\n" "Klepnutím otevřete správce profilů." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 +#: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 msgctxt "@label:header" msgid "Custom profiles" msgstr "Vlastní profily" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 msgctxt "@label shown when we load a Gcode file" msgid "Print setup disabled. G-code file can not be modified." msgstr "Nastavení tisku zakázáno. Soubor G-kódu nelze změnit." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:179 msgctxt "@button" msgid "Recommended" msgstr "Doporučeno" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156 -msgctxt "@button" -msgid "Custom" -msgstr "Vlastní" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 msgctxt "@label:Should be short" msgid "On" msgstr "Zap" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 msgctxt "@label:Should be short" msgid "Off" msgstr "Vyp" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "Experimentální" +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is active and you overwrote some settings." +msgstr "Je aktivní vlastní profil %1 a některá nastavení jste přepsali." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:54 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is overriding some settings." +msgstr "Vlastní profil %1 přepisuje některá nastavení." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92 +msgctxt "@info %1 is the name of a profile" +msgid "Recommended settings (for %1) were altered." +msgstr "Doporučená nastavení (pro %1) byla změněna." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106 +msgctxt "@info %1 is the name of a profile" +msgid "Some setting-values defined in %1 were overridden." +msgstr "Některé hodnoty nastavení definované v %1 byly přepsány." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137 msgctxt "@info" -msgid "custom profile is active and you overwrote some settings." -msgstr "" +msgid "Reset to defaults." +msgstr "Resetovat na výchozí." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178 msgctxt "@info" -msgid "custom profile is overriding some settings." -msgstr "" +msgid "Compare and save." +msgstr "Porovnat a uložit." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 -msgctxt "@info" -msgid "Some settings were changed." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15 msgctxt "@label" msgid "Adhesion" msgstr "Adheze" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20 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." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:198 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102 msgctxt "@label" -msgid "Gradual infill" -msgstr "Postupná výplň" +msgid "Recommended print settings" +msgstr "Doporučená nastavení tisku" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:236 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "Postupná výplň postupně zvyšuje množství výplně směrem nahoru." +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111 +msgctxt "@button" +msgid "Show Custom" +msgstr "Zobrazit vlastní" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27 msgctxt "@label" msgid "Resolution" -msgstr "" +msgstr "Rozlišení" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16 +msgctxt "@label" +msgid "Strength" +msgstr "Pevnost" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20 +msgctxt "@label" +msgid "The following settings define the strength of your part." +msgstr "Následující nastavení definuje pevnost součásti." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34 +msgctxt "infill_sparse_density description" +msgid "Infill Density" +msgstr "Hustota výplně" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35 +msgctxt "@label" +msgid "Adjusts the density of infill of the print." +msgstr "Upravuje hustotu výplně tisku." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54 +msgctxt "@action:label" +msgid "Infill Pattern" +msgstr "Výplňový vzor" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56 +msgctxt "@label" +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 "" +"Vzor výplně při tisku modelu:\n" +"\n" +"Pro rychlý tisk jiných než funkčních částí vyberte čáry, cik-cak nebo bleskovou výplň.\n" +"\n" +"Pro funkční části, které nebudou příliš namáhány, doporučujeme mřížku, trojúhelníky nebo tri-hexagony.\n" +"\n" +"Pro funkční 3D výtisky, které vyžadují velkou pevnost ve více směrech, použijte výplně: krychle, kubické členění, čtvrtinově krychlová, oktet nebo gyroid." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67 +msgctxt "@action:label" +msgid "Shell Thickness" +msgstr "Tloušťka pláště" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68 +msgctxt "@label" +msgid "Defines the thickness of your part side walls, roof and floor." +msgstr "Definuje tloušťku stěn, střechy a podlahy vašeho modelu." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16 msgctxt "@label" msgid "Support" msgstr "Podpora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21 msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Vytvořte struktury pro podporu částí modelu, které mají přesahy. Bez těchto struktur by se takové části během tisku zhroutily." +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." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40 +msgctxt "@action:label" +msgid "Support Type" +msgstr "Typ podpory" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41 +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 "" +"Volí mezi dostupnými technikami pro generování podpory. \n" +"\n" +"„Normální“ podpora vytváří podpůrnou strukturu přímo pod převislými částmi a spouští tyto podpory přímo dolů. \n" +"\n" +"„Stromová“ podpora vytváří větve směrem k převislým oblastem, které podporují model na koncích těchto větví, a umožňuje větvím procházet kolem modelu a podporovat je co nejvíce z konstrukční desky." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53 +msgctxt "@action:label" +msgid "Print with" +msgstr "Tisknout pomocí" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54 +msgctxt "@label" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "Vytlačovací souprava použitá pro tisk podpory. Používá se při vícenásobném vytlačování." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67 +msgctxt "@action:label" +msgid "Placement" +msgstr "Umístění" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68 +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 "Upravuje umístění podpůrných struktur. Umístění lze nastavit tak, aby se dotýkalo pouze podložky nebo všude. Pokud je nastaveno všude, podpůrné struktury budou vytištěny také na modelu." + +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 msgctxt "@error" msgid "Configuration not supported" -msgstr "" +msgstr "Konfigurace není podporována" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." -msgstr "" +msgstr "Pro vybranou konfiguraci materiál/%1 není dostupný žádný profil. Prosím změňte svou konfiguraci." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 msgctxt "@button:label" msgid "Learn more" -msgstr "" +msgstr "Zjistit více" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +#: resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "Extuder" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:70 +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." +msgstr "Cílová teplota hotendu. Hotend se ohřeje nebo ochladí na tuto teplotu. Pokud je 0, ohřev teplé vody je vypnutý." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:105 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "Aktuální teplota tohoto hotendu." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:182 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "Teplota pro předehřátí hotendu." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:271 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:259 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Zrušit" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:274 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:263 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Předehřání" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:297 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Před tiskem zahřejte hotend předem. Můžete pokračovat v úpravách tisku, zatímco se zahřívá, a nemusíte čekat na zahřátí hotendu, až budete připraveni k tisku." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:335 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "Barva materiálu v tomto extruderu." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:367 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "Materiál v tomto extruderu." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:400 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "Vložená trysky v tomto extruderu." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:25 +msgctxt "@label" +msgid "Build plate" +msgstr "Podložka" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:55 +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 "Cílová teplota vyhřívací podložky. Podložka se zahřeje, nebo schladí směrem k této teplotě. Pokud je 0, tak je vyhřívání podložky vypnuto." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "Aktuální teplota vyhřívané podložky." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:162 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "Teplota pro předehřátí podložky." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:286 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Před tiskem zahřejte postel předem. Můžete pokračovat v úpravě tisku, zatímco se zahřívá, a nemusíte čekat, až se postel zahřeje, až budete připraveni k tisku." + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:51 +msgctxt "@label" +msgid "Printer control" +msgstr "Ovládání tiskárny" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:66 +msgctxt "@label" +msgid "Jog Position" +msgstr "Pozice hlavy" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:82 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:162 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:217 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Vzdálenost hlavy" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Send G-code" +msgstr "Poslat G kód" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:319 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Na připojenou tiskárnu odešlete vlastní příkaz G-kódu. Stisknutím klávesy „Enter“ odešlete příkaz." + +#: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "Tiskárna není připojena." + +#: resources/qml/PrinterSelector/MachineListButton.qml:34 +msgctxt "@label" +msgid "Hide all connected printers" +msgstr "Skrýt všechny připojené tiskárny" + +#: resources/qml/PrinterSelector/MachineListButton.qml:47 +msgctxt "@label" +msgid "Show all connected printers" +msgstr "Zobrazit všechny připojené tiskárny" + +#: resources/qml/PrinterSelector/MachineSelector.qml:64 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "Cloudová tiskárna je offline. Prosím zkontrolujte, zda je tiskárna zapnutá a připojená k internetu." + +#: resources/qml/PrinterSelector/MachineSelector.qml:68 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Tiskárna není připojena k vašemu účtu. Prosím navštivte Ultimaker Digital Factory pro navázání spojení." + +#: resources/qml/PrinterSelector/MachineSelector.qml:73 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "Připojení ke cloudu není nyní dostupné. Prosím přihlašte se k připojení ke cloudové tiskárně." + +#: resources/qml/PrinterSelector/MachineSelector.qml:78 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "Připojení ke cloudu není nyní dostupné. Prosím zkontrolujte si vaše internetové připojení." + +#: resources/qml/PrinterSelector/MachineSelectorList.qml:30 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:32 +msgctxt "@label" +msgid "Other printers" +msgstr "Ostatní tiskárny" + +#: resources/qml/ProfileOverview.qml:36 msgctxt "@title:column" msgid "Setting" msgstr "Nastavení" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +#: resources/qml/ProfileOverview.qml:37 msgctxt "@title:column" msgid "Profile" msgstr "Profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +#: resources/qml/ProfileOverview.qml:38 msgctxt "@title:column" msgid "Current" msgstr "Aktuální" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +#: resources/qml/ProfileOverview.qml:39 msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Jednotka" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +#: resources/qml/SearchBar.qml:17 msgctxt "@placeholder" msgid "Search" msgstr "Hledat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 +#: resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5769,32 +6576,32 @@ msgstr "" "\n" "Klepnutím toto nastavení zviditelníte." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 +#: resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "Toto nastavení se nepoužívá, protože všechna nastavení, která ovlivňuje, jsou přepsána." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +#: resources/qml/Settings/SettingItem.qml:89 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Ovlivňuje" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +#: resources/qml/Settings/SettingItem.qml:94 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "Ovlivněno" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:190 +#: resources/qml/Settings/SettingItem.qml:196 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "Toto nastavení je vždy sdíleno všemi extrudéry. Jeho změnou se změní hodnota všech extruderů." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +#: resources/qml/Settings/SettingItem.qml:200 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Toto nastavení je vyřešeno z konfliktních hodnot specifického extruder:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +#: resources/qml/Settings/SettingItem.qml:240 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5805,7 +6612,7 @@ msgstr "" "\n" "Klepnutím obnovíte hodnotu profilu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:334 +#: resources/qml/Settings/SettingItem.qml:340 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5816,1667 +6623,329 @@ msgstr "" "\n" "Klepnutím obnovíte vypočítanou hodnotu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +#: resources/qml/Settings/SettingView.qml:48 msgctxt "@label:textbox" msgid "Search settings" msgstr "Prohledat nastavení" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:395 +#: resources/qml/Settings/SettingView.qml:395 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Kopírovat hodnotu na všechny extrudery" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:404 +#: resources/qml/Settings/SettingView.qml:404 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Kopírovat všechny změněné hodnoty na všechny extrudery" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:440 +#: resources/qml/Settings/SettingView.qml:440 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Schovat toto nastavení" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:453 +#: resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Neukazovat toto nastavení" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:457 +#: resources/qml/Settings/SettingView.qml:457 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Nechat toto nastavení viditelné" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +#: resources/qml/Toolbar.qml:142 +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" +msgstr[0] "Tisknout vybraný model pomocí %1" +msgstr[1] "Tisknout vybraný model pomocí %1" +msgstr[2] "Tisknout vybraný model pomocí %1" + +#: resources/qml/ViewOrientationControls.qml:25 msgctxt "@info:tooltip" msgid "3D View" msgstr "3D Pohled" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +#: resources/qml/ViewOrientationControls.qml:38 msgctxt "@info:tooltip" msgid "Front View" msgstr "Přední pohled" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +#: resources/qml/ViewOrientationControls.qml:51 msgctxt "@info:tooltip" msgid "Top View" msgstr "Pohled seshora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +#: resources/qml/ViewOrientationControls.qml:64 msgctxt "@info:tooltip" msgid "Left View" msgstr "Pohled zleva" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +#: resources/qml/ViewOrientationControls.qml:77 msgctxt "@info:tooltip" msgid "Right View" msgstr "Pohled zprava" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: resources/qml/ViewsSelector.qml:50 msgctxt "@label" msgid "View type" msgstr "Typ pohledu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:47 msgctxt "@label" msgid "Add a Cloud printer" msgstr "Přidat Cloudovou tiskárnu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:73 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:73 msgctxt "@label" msgid "Waiting for Cloud response" msgstr "Čekám na odpověď od Cloudu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:83 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:83 msgctxt "@label" msgid "No printers found in your account?" msgstr "Žádné tiskárny nenalezeny ve vašem účtě?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:117 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:117 msgctxt "@label" msgid "The following printers in your account have been added in Cura:" msgstr "Následující tiskárny ve vašem účtě byla přidány do Cury:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:186 msgctxt "@button" msgid "Add printer manually" msgstr "Přidat tiskárnu manuálně" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 msgctxt "@label" msgid "Manufacturer" msgstr "Výrobce" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Profile author" msgstr "Autor profilu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 msgctxt "@label" msgid "Printer name" msgstr "Název tiskárny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 msgctxt "@text" msgid "Please name your printer" msgstr "Pojmenujte prosím svou tiskárnu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "Přidat tiskárnu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:38 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Přidat síťovou tiskárnu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:87 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Přidat ne-síťovou tiskárnu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 msgctxt "@label" msgid "There is no printer found over your network." msgstr "Přes síť nebyla nalezena žádná tiskárna." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 msgctxt "@label" msgid "Refresh" msgstr "Obnovit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 msgctxt "@label" msgid "Add printer by IP" msgstr "Přidat tiskárnu podle IP" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Přidat cloudovou tiskárnu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205 msgctxt "@label" msgid "Troubleshooting" msgstr "Podpora při problémech" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 msgctxt "@label" msgid "Add printer by IP address" msgstr "Přidat tiskárnu podle IP adresy" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Zadejte IP adresu vaší tiskárny." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 msgctxt "@button" msgid "Add" msgstr "Přidat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 msgctxt "@label" msgid "Could not connect to device." msgstr "Nelze se připojit k zařízení." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Nemůžete se připojit k Vaší tiskárně Ultimaker?" +msgid "Can't connect to your UltiMaker printer?" +msgstr "Nemůžete se připojit k Vaší tiskárně UltiMaker?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 msgctxt "@label" msgid "The printer at this address has not responded yet." msgstr "Tiskárna na této adrese dosud neodpověděla." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 msgctxt "@label" msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." msgstr "Tuto tiskárnu nelze přidat, protože se jedná o neznámou tiskárnu nebo není hostitelem skupiny." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 msgctxt "@button" msgid "Connect" msgstr "Připojit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Přidat síťovou tiskárnu" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Přidat ne-síťovou tiskárnu" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102 +msgctxt "@button" +msgid "Add UltiMaker printer via Digital Factory" +msgstr "Přidat UltiMaker tiskárnu přes Digital Factory" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "In order to start using Cura you will need to configure a printer." +msgstr "Abyste mohli začít používat Curu, musíte nakonfigurovat tiskárnu." + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36 +msgctxt "@label" +msgid "What printer would you like to setup?" +msgstr "Jakou tiskárnu si přejete nakonfigurovat?" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55 +msgctxt "@button" +msgid "UltiMaker printer" +msgstr "UltiMaker tiskárna" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64 +msgctxt "@button" +msgid "Non UltiMaker printer" +msgstr "Jiná než UltiMaker tiskárna" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73 +msgctxt "@button" +msgid "Learn more about adding printers to Cura" +msgstr "Zjistit více o přidávání tiskáren do Cury" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29 +msgctxt "@label" +msgid "Add printer" +msgstr "Přidat tiskárnu" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33 +msgctxt "@label" +msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." +msgstr "Nové tiskárny UltiMaker mohou být připojeny k Digital Factory a vzdáleně monitorovány." + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70 +msgctxt "@label" +msgid "If you are trying to add a new UltiMaker printer to Cura" +msgstr "Pokud se pokoušíte přidat novou tiskárnu UltiMaker do Cura" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80 +msgctxt "@info" +msgid "Sign in into UltiMaker Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81 +msgctxt "@info" +msgid "Follow the procedure to add a new printer" +msgstr "Řiďte se postupem pro přidání nové tiskárny" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82 +msgctxt "@info" +msgid "Your new printer will automatically appear in Cura" +msgstr "Vaše nová tiskárna se automaticky objeví v Cuře" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100 +msgctxt "@button" +msgid "Learn more" +msgstr "Zjistit více" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121 +msgctxt "@button" +msgid "Add local printer" +msgstr "Přidat lokální tiskárnu" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129 +msgctxt "@button" +msgid "Sign in to Digital Factory" +msgstr "Přihlásit do Digital Factory" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133 +msgctxt "@button" +msgid "Waiting for new printers" +msgstr "Čekám na nové tiskárny" + +#: resources/qml/WelcomePages/ChangelogContent.qml:24 msgctxt "@label" msgid "Release Notes" msgstr "Poznámky k vydání" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:123 +#: resources/qml/WelcomePages/CloudContent.qml:123 msgctxt "@text" msgid "Add material settings and plugins from the Marketplace" msgstr "Přidat nastavení materiálů a moduly z Obchodu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:149 +#: resources/qml/WelcomePages/CloudContent.qml:149 msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Zálohovat a synchronizovat nastavení materiálů a moduly" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:175 +#: resources/qml/WelcomePages/CloudContent.qml:175 msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Sdílejte nápady a získejte pomoc od více než 48 0000 uživatelů v Ultimaker komunitě" +msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" +msgstr "Sdílejte nápady a získejte pomoc od více než 48 0000 uživatelů v UltiMaker komunitě" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +#: resources/qml/WelcomePages/CloudContent.qml:189 msgctxt "@button" msgid "Skip" msgstr "Přeskočit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +#: resources/qml/WelcomePages/CloudContent.qml:201 msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Vytvořit účet Ultimaker zdarma" +msgid "Create a free UltiMaker Account" +msgstr "Vytvořit účet UltiMaker zdarma" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Pomožte nám zlepšovat Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:56 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura shromažďuje anonymní data za účelem zlepšení kvality tisku a uživatelského komfortu, včetně:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:68 -msgctxt "@text" -msgid "Machine types" -msgstr "Typy zařízení" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:74 -msgctxt "@text" -msgid "Material usage" -msgstr "Použití materiálu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:80 -msgctxt "@text" -msgid "Number of slices" -msgstr "Počet sliců" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:86 -msgctxt "@text" -msgid "Print settings" -msgstr "Nastavení tisku" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:99 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Data shromážděná společností Ultimaker Cura nebudou obsahovat žádné osobní údaje." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:100 -msgctxt "@text" -msgid "More information" -msgstr "Více informací" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +#: resources/qml/WelcomePages/DropDownWidget.qml:93 msgctxt "@label" msgid "Empty" msgstr "Prázdné" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +#: resources/qml/WelcomePages/UserAgreementContent.qml:23 msgctxt "@label" msgid "User Agreement" msgstr "Uživatelská dohoda" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67 +#: resources/qml/WelcomePages/UserAgreementContent.qml:67 msgctxt "@button" msgid "Decline and close" msgstr "Odmítnout a zavřít" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Vítejte v Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:67 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "Při nastavování postupujte podle těchto pokynů Ultimaker Cura. Bude to trvat jen několik okamžiků." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:82 -msgctxt "@button" -msgid "Get started" -msgstr "Začínáme" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: resources/qml/WelcomePages/WhatsNewContent.qml:28 msgctxt "@label" msgid "What's New" msgstr "Co je nového" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: resources/qml/Widgets/ComboBox.qml:18 msgctxt "@label" msgid "No items to select from" msgstr "Není z čeho vybírat" -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Zkontroluje možné tiskové modely a konfiguraci tisku a poskytne návrhy." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "Kontroler modelu" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Poskytuje podporu pro čtení souborů 3MF." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "Čtečka 3MF" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Poskytuje podporu pro psaní souborů 3MF." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "Zapisovač 3MF" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Poskytuje podporu pro čtení souborů AMF." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "Čtečka AMF" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Zálohujte a obnovte konfiguraci." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura zálohy" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Poskytuje odkaz na backend krájení CuraEngine." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine Backend" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Poskytuje podporu pro import profilů Cura." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Čtečka Cura profilu" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Poskytuje podporu pro export profilů Cura." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Zapisovač Cura profilu" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Připojuje k Digitální knihovně. Umožňuje Cuře otevírat a ukládat soubory z a do Digitální knihovny." - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Digitální knihovna Ultimaker" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Zkontroluje dostupné aktualizace firmwaru." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Kontroler aktualizace firmwaru" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Poskytuje akce počítače pro aktualizaci firmwaru." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Firmware Updater" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Čte g-kód z komprimovaného archivu." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Čtečka kompresovaného G kódu" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Zapíše g-kód do komprimovaného archivu." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Zapisova kompresovaného G kódu" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Poskytuje podporu pro import profilů ze souborů g-kódu." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Čtečka profilu G kódu" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Povoluje načítání a zobrazení souborů G kódu." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "Čtečka G kódu" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Zapisuje G kód o souboru." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "Zapisovač G kódu" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Umožňuje generovat tiskovou geometrii ze 2D obrazových souborů." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Čtečka obrázků" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Poskytuje podporu pro import profilů ze starších verzí Cura." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Čtečka legacy Cura profilu" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Poskytuje způsob, jak změnit nastavení zařízení (například objem sestavení, velikost trysek atd.)." - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Akce nastavení zařízení" - -#: Marketplace/plugin.json -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the Ultimaker website." -msgstr "Spravuje rozšíření aplikace a umožňuje prohlížení rozšíření z webu Ultimaker." - -#: Marketplace/plugin.json -msgctxt "name" -msgid "Marketplace" -msgstr "Obchod" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Poskytuje monitorovací scénu v Cuře." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Fáze monitoringu" - -#: PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Umožňuje nastavení pro každý model." - -#: PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Nástroj pro nastavení pro každý model" - -#: PostProcessingPlugin/plugin.json -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Rozšíření, které umožňuje uživateli vytvořené skripty pro následné zpracování" - -#: PostProcessingPlugin/plugin.json -msgctxt "name" -msgid "Post Processing" -msgstr "Post Processing" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Poskytuje přípravnou fázi v Cuře." - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "Fáze přípravy" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Poskytuje fázi náhledu v Cura." - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "Fáze náhledu" - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Poskytuje vyměnitelnou jednotku za plného zapojení a podporu zápisu." - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Vyměnitelný zásuvný modul pro výstupní zařízení" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Protokolová určité události, aby je mohl použít reportér havárií" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "Záznamník hlavy" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Poskytuje náhled slicovaných dat vrstev" - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "Pohled simulace" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Odešle anonymní informace o slicování. Lze deaktivovat pomocí preferencí." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Informace o slicování" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Poskytuje normální zobrazení pevné sítě." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Solid View" - -#: SupportEraser/plugin.json -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Vytvoří gumovou síť, která blokuje tisk podpory na určitých místech" - -#: SupportEraser/plugin.json -msgctxt "name" -msgid "Support Eraser" -msgstr "Mazač podpor" - -#: TrimeshReader/plugin.json -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Poskytuje podporu pro čtení souborů modelu." - -#: TrimeshReader/plugin.json -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Čtečka trimesh" - -#: UFPReader/plugin.json -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Poskytuje podporu pro čtení balíčků formátu Ultimaker." - -#: UFPReader/plugin.json -msgctxt "name" -msgid "UFP Reader" -msgstr "Čtečka UFP" - -#: UFPWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Poskytuje podporu pro psaní balíčků formátu Ultimaker." - -#: UFPWriter/plugin.json -msgctxt "name" -msgid "UFP Writer" -msgstr "Zapisovač UFP" - -#: UltimakerMachineActions/plugin.json -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Poskytuje akce strojů pro stroje Ultimaker (jako je průvodce vyrovnáváním postele, výběr upgradů atd.)." - -#: UltimakerMachineActions/plugin.json -msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Akce zařízení Ultimaker" - -#: UM3NetworkPrinting/plugin.json -msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Spravuje síťová připojení k síťovým tiskárnám Ultimaker." - -#: UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Síťové připojení Ultimaker" - -#: USBPrinting/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Přijme G-kód a odešle je do tiskárny. Plugin může také aktualizovat firmware." - -#: USBPrinting/plugin.json -msgctxt "name" -msgid "USB printing" -msgstr "USB tisk" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Aktualizuje konfigurace z Cura 2.1 na Cura 2.2." - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Aktualizace verze 2.1 na 2.2" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Aktualizuje konfigurace z Cura 2.2 na Cura 2.4." - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Aktualizace verze 2.2 na 2.4" - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Aktualizuje konfigurace z Cura 2.5 na Cura 2.6." - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Aktualizace verze 2.5 na 2.6" - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Aktualizuje konfigurace z Cura 2.6 na Cura 2.7." - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Aktualizace verze 2.6 na 2.7" - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Aktualizuje konfigurace z Cura 2.7 na Cura 3.0." - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Aktualizace verze 2.7 na 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Aktualizuje konfigurace z Cura 3.0 na Cura 3.1." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Aktualizace verze 3.0 na 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Aktualizuje konfigurace z Cura 3.2 na Cura 3.3." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Aktualizace verze 3.2 na 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Aktualizuje konfigurace z Cura 3.3 na Cura 3.4." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Aktualizace verze 3.3 na 3.4" - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Aktualizuje konfigurace z Cura 3.4 na Cura 3.5." - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Aktualizace verze 3.4 na 3.5" - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Aktualizuje konfigurace z Cura 3.5 na Cura 4.0." - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Aktualizace verze 3.5 na 4.0" - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Aktualizuje konfigurace z Cura 4.0 na Cura 4.1." - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Aktualizace verze 4.0 na 4.1" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Aktualizuje konfigurace z Cura 4.11 na Cura 4.12." - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Aktualizace verze 4.11 na 4.12" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Aktualizuje konfigurace z Cura 4.13 na Cura 5.0." - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Aktualizace verze 4.13 na 5.0" - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Aktualizuje konfigurace z Cura 4.1 na Cura 4.2." - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Aktualizace verze 4.1 na 4.2" - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Aktualizuje konfigurace z Cura 4.2 na Cura 4.3." - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Aktualizace verze 4.2 na 4.3" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Aktualizuje konfigurace z Cura 4.3 na Cura 4.4." - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Aktualizace verze 4.3 na 4.4" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Aktualizuje konfigurace z Cura 4.4 na Cura 4.5." - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Aktualizace verze 4.4 na 4.5" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Aktualizuje konfigurace z Cura 4.5 na Cura 4.6." - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Aktualizace verze 4.5 na 4.6" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Aktualizuje konfigurace z Cura 4.6.0 na Cura 4.6.2." - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Aktualizace verze 4.6.0 na 4.6.2" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Aktualizuje konfigurace z Cura 4.6.2 na Cura 4.7." - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Aktualizace verze 4.6.2 na 4.7" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Aktualizuje konfigurace z Cura 4.7 na Cura 4.8." - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Aktualizace verze 4.7 na 4.8" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Aktualizuje konfigurace z Cura 4.8 na Cura 4.9." - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Aktualizace verze 4.8 na 4.9" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Aktualizuje konfigurace z Cura 4.9 na Cura 4.10." - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Aktualizace verze 4.9 na 4.10" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Poskytuje podporu pro čtení souborů X3D." - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "Čtečka X3D" - -#: XmlMaterialProfile/plugin.json -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Poskytuje funkce pro čtení a zápis materiálových profilů založených na XML." - -#: XmlMaterialProfile/plugin.json -msgctxt "name" -msgid "Material Profiles" -msgstr "Materiálové profily" - -#: XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Poskytuje rentgenové zobrazení." - -#: XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "Rentgenový pohled" - -#~ msgctxt "@label" -#~ msgid "Not yet initialized
    " -#~ msgstr "Neinicializováno
    " - -#~ msgctxt "@label" -#~ msgid "By" -#~ msgstr "Od" - -#~ msgctxt "@Label" -#~ msgid "Static type checker for Python" -#~ msgstr "Kontrola statických typů pro Python" - -#~ msgctxt "@Label" -#~ msgid "Root Certificates for validating SSL trustworthiness" -#~ msgstr "Základní certifikáty pro validaci důvěryhodnosti SSL" - -#~ msgctxt "@label" -#~ msgid "Python extensions for Microsoft Windows" -#~ msgstr "Python rozšíření pro Microsoft Windows" - -#~ msgctxt "@label" -#~ msgid "SVG icons" -#~ msgstr "Ikony SVG" - -#~ msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" -#~ msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" -#~ msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" -#~ msgstr[0] "Neexistuje žádný profil %1 pro konfiguraci v extruderu %2. Místo toho bude použit výchozí záměr" -#~ msgstr[1] "Neexistuje žádný profil %1 pro konfigurace v extruderu %2. Místo toho bude použit výchozí záměr" -#~ msgstr[2] "Neexistuje žádný profil %1 pro konfigurace v extruderu %2. Místo toho bude použit výchozí záměr" - -#~ msgctxt "@tooltip" -#~ msgid "You have modified some profile settings. If you want to change these go to custom mode." -#~ msgstr "Upravili jste některá nastavení profilu. Pokud je chcete změnit, přejděte do uživatelského režimu." - -#~ msgctxt "@action:button" -#~ msgid "Sync materials with printers" -#~ msgstr "Synchronizovat materiály s tiskárnami" - -#~ msgctxt "@title:window" -#~ msgid "Convert Image..." -#~ msgstr "Konvertovat obrázek.." - -#~ msgctxt "@info:tooltip" -#~ msgid "The width in millimeters on the build plate." -#~ msgstr "Šířka podložky v milimetrech." - -#~ msgctxt "@title" -#~ msgid "Marketplace" -#~ msgstr "Obchod" - -#~ msgctxt "@info" -#~ msgid "You will need to restart Cura before changes in packages have effect." -#~ msgstr "Než se změny v balíčcích projeví, budete muset restartovat Curu." - -#~ msgctxt "@action:button" -#~ msgid "Install" -#~ msgstr "Nainstalovat" - -#~ msgctxt "@action:button" -#~ msgid "Installed" -#~ msgstr "Nainstalováno" - -#~ msgctxt "@label" -#~ msgid "Premium" -#~ msgstr "Premium" - -#~ msgctxt "@info:tooltip" -#~ msgid "Go to Web Marketplace" -#~ msgstr "Přejít na webový obchod" - -#~ msgctxt "@label" -#~ msgid "Search materials" -#~ msgstr "Hledat materiály" - -#~ msgctxt "@label" -#~ msgid "Compatibility" -#~ msgstr "Kompatibilita" - -#~ msgctxt "@label:table_header" -#~ msgid "Machine" -#~ msgstr "Zařízení" - -#~ msgctxt "@label:table_header" -#~ msgid "Build Plate" -#~ msgstr "Podložka" - -#~ msgctxt "@label:table_header" -#~ msgid "Support" -#~ msgstr "Podpora" - -#~ msgctxt "@label:table_header" -#~ msgid "Quality" -#~ msgstr "Kvalita" - -#~ msgctxt "@action:label" -#~ msgid "Technical Data Sheet" -#~ msgstr "Technický datasheet" - -#~ msgctxt "@action:label" -#~ msgid "Safety Data Sheet" -#~ msgstr "Datasheet bezpečnosti" - -#~ msgctxt "@action:label" -#~ msgid "Printing Guidelines" -#~ msgstr "Zásady tisku" - -#~ msgctxt "@action:label" -#~ msgid "Website" -#~ msgstr "Webová stránka" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to install or update" -#~ msgstr "K instalaci nebo aktualizaci je vyžadováno přihlášení" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Buy material spools" -#~ msgstr "Koupit cívky materiálu" - -#~ msgctxt "@action:button" -#~ msgid "Update" -#~ msgstr "Aktualizace" - -#~ msgctxt "@action:button" -#~ msgid "Updating" -#~ msgstr "Aktualizuji" - -#~ msgctxt "@action:button" -#~ msgid "Updated" -#~ msgstr "Aktualizování" - -#~ msgctxt "@action:button" -#~ msgid "Back" -#~ msgstr "Zpět" - -#~ msgctxt "@title:tab" -#~ msgid "Plugins" -#~ msgstr "Zásuvné moduly" - -#~ msgctxt "@title:tab" -#~ msgid "Installed" -#~ msgstr "Nainstalování" - -#~ msgctxt "@label" -#~ msgid "Will install upon restarting" -#~ msgstr "Nainstaluje se po restartu" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to update" -#~ msgstr "Pro aktualizace je potřeba se přihlásit" - -#~ msgctxt "@action:button" -#~ msgid "Downgrade" -#~ msgstr "Downgrade" - -#~ msgctxt "@action:button" -#~ msgid "Uninstall" -#~ msgstr "Odinstalace" - -#~ msgctxt "@label" -#~ msgid "Community Contributions" -#~ msgstr "Soubory od komunity" - -#~ msgctxt "@label" -#~ msgid "Community Plugins" -#~ msgstr "Komunitní zásuvné moduly" - -#~ msgctxt "@label" -#~ msgid "Generic Materials" -#~ msgstr "Obecné materiály" - -#~ msgctxt "@info" -#~ msgid "Fetching packages..." -#~ msgstr "Načítám balíčky..." - -#~ msgctxt "@label" -#~ msgid "Website" -#~ msgstr "Webová stránka" - -#~ msgctxt "@label" -#~ msgid "Email" -#~ msgstr "Email" - -#~ msgctxt "@description" -#~ msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -#~ msgstr "Přihlaste se, abyste získali ověřené pluginy a materiály pro Ultimaker Cura Enterprise" - -#~ msgctxt "@label" -#~ msgid "Version" -#~ msgstr "Verze" - -#~ msgctxt "@label" -#~ msgid "Last updated" -#~ msgstr "Naposledy aktualizování" - -#~ msgctxt "@label" -#~ msgid "Downloads" -#~ msgstr "Ke stažení" - -#~ msgctxt "@title:tab" -#~ msgid "Installed plugins" -#~ msgstr "Nainstalovaná rozšíření" - -#~ msgctxt "@info" -#~ msgid "No plugin has been installed." -#~ msgstr "Žádné rozšíření nebylo nainstalováno." - -#~ msgctxt "@title:tab" -#~ msgid "Installed materials" -#~ msgstr "Nainstalované materiály" - -#~ msgctxt "@info" -#~ msgid "No material has been installed." -#~ msgstr "Žádný materiál nebyl nainstalován." - -#~ msgctxt "@title:tab" -#~ msgid "Bundled plugins" -#~ msgstr "Zabalená rozšíření" - -#~ msgctxt "@title:tab" -#~ msgid "Bundled materials" -#~ msgstr "Zabalené materiály" - -#~ msgctxt "@info" -#~ msgid "Could not connect to the Cura Package database. Please check your connection." -#~ msgstr "Nelze se připojit k databázi balíčku Cura. Zkontrolujte připojení." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall" -#~ msgstr "Potvrdit odinstalaci" - -#~ msgctxt "@text:window" -#~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -#~ msgstr "Odinstalujete materiály a / nebo profily, které se stále používají. Potvrzením resetujete následující materiály / profily na výchozí hodnoty." - -#~ msgctxt "@text:window" -#~ msgid "Materials" -#~ msgstr "Materiály" - -#~ msgctxt "@text:window" -#~ msgid "Profiles" -#~ msgstr "Profily" - -#~ msgctxt "@action:button" -#~ msgid "Confirm" -#~ msgstr "Potvrdit" - -#~ msgctxt "@info:tooltip" -#~ msgid "Some things could be problematic in this print. Click to see tips for adjustment." -#~ msgstr "Některé věci mohou být v tomto tisku problematické. Kliknutím zobrazíte tipy pro úpravy." - -#~ msgctxt "@label" -#~ msgid "Support library for handling planar objects" -#~ msgstr "Podpůrná knihovna pro manipulaci s planárními objekty" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "Upravili jste některá nastavení profilu.\n" -#~ "Chcete tato změněná nastavení zachovat i po přepnutí profilů?\n" -#~ "V opačném případě můžete změny smazat a načíst výchozí hodnoty z '%1'." - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Build plate" -#~ msgstr "Pod&ložka" - -#~ msgctxt "@label" -#~ msgid "Create" -#~ msgstr "Vytvořit" - -#~ msgctxt "@label" -#~ msgid "Duplicate" -#~ msgstr "Duplikovat" - -#~ msgctxt "@label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "Tiskárna: %1" - -#~ msgctxt "@action:button" -#~ msgid "Update profile with current settings/overrides" -#~ msgstr "Aktualizovat profil s aktuálním nastavení/přepsánímy" - -#~ msgctxt "@label" -#~ msgid "Theme:" -#~ msgstr "Styl:" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for these changes to have effect." -#~ msgstr "Aby se tyto změny projevily, budete muset aplikaci restartovat." - -#~ msgctxt "@action:button" -#~ msgid "More information" -#~ msgstr "Více informací" - -#~ msgctxt "@action:button" -#~ msgid "Create" -#~ msgstr "Vytvořit" - -#~ msgctxt "@action:button Sending materials to printers" -#~ msgid "Sync with Printers" -#~ msgstr "Synchronizovat s tiskárnami" - -#~ msgctxt "@action:label" -#~ msgid "Printer" -#~ msgstr "Tiskárna" - -#~ msgctxt "@title:column" -#~ msgid "Unit" -#~ msgstr "Jednotka" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting Guide" -#~ msgstr "Zobrazit online průvodce řešením problémů" - -#~ msgctxt "@action:inmenu" -#~ msgid "Add more materials from Marketplace" -#~ msgstr "Přidat více materiálů z obchodu" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange All Models To All Build Plates" -#~ msgstr "Uspořádejte všechny modely do všechpodložek" - -#~ msgctxt "@action:menu" -#~ msgid "&Marketplace" -#~ msgstr "Mark&et" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new Cura packages." -#~ msgstr "Najděte, spravujte a nainstalujte nové balíčky Cura." - -#~ msgctxt "name" -#~ msgid "Toolbox" -#~ msgstr "Nástroje" - -#~ msgctxt "description" -#~ msgid "Provides the Simulation view." -#~ msgstr "Poskytuje zobrazení simulace." - #~ msgctxt "@info:status" -#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Odesílejte a sledujte tiskové úlohy odkudkoli pomocí účtu Ultimaker." - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Digital Factory" -#~ msgstr "Připojit se k Ultimaker Digital Factory" - -#~ msgctxt "@info" -#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." -#~ msgstr "Vstup z webových kamer pro cloudové tiskárny nemůže být v Ultimaker Cura zobrazen." - -#~ 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 not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -#~ msgstr "Pro vaše {machine_name} mohou být k dispozici nové funkce nebo opravy chyb! Pokud ještě není v nejnovější verzi, doporučuje se aktualizovat firmware v tiskárně na verzi {latest_version}." - -#~ msgctxt "@info:title The %s gets replaced with the printer name." -#~ msgid "New %s firmware available" -#~ msgstr "Nový %s firmware je dostupný" - -#~ msgctxt "@info:status" -#~ msgid "Global stack is missing." -#~ msgstr "Chybí globální zásobník." - -#~ msgctxt "@info:status" -#~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces." -#~ msgstr "Váš model není rozmanitý. Zvýrazněné oblasti indikují buď chybějící, či vedlejší povrch." +#~ 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 "@info:title" -#~ msgid "Model errors" -#~ msgstr "Chyby modelu" - -#~ msgctxt "@label:listbox" -#~ msgid "Layer thickness" -#~ msgstr "Tloušťka vrstvy" - -#~ msgctxt "@label" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "Váš klíč k propojenému 3D tisku" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Customize your experience with more print profiles and plugins\n" -#~ "- Stay flexible by syncing your setup and loading it anywhere\n" -#~ "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "" -#~ "- Přizpůsobte si své zážitky pomocí více profilů tisku a modulů\n" -#~ "- Zůstaňte flexibilní díky synchronizaci nastavení a přístupu k ní kdekoli\n" -#~ "- Zvyšte efektivitu pomocí vzdáleného pracovního postupu na tiskárnách Ultimaker" - -#~ msgctxt "@button" -#~ msgid "Create account" -#~ msgstr "Vytvořit účet" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete Selected Model" -#~ msgid_plural "Delete Selected Models" -#~ msgstr[0] "Smazat vybraný model" -#~ msgstr[1] "Smazat vybrané modely" -#~ msgstr[2] "Smazat vybrané modely" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Center Selected Model" -#~ msgid_plural "Center Selected Models" -#~ msgstr[0] "Centrovat vybraný model" -#~ msgstr[1] "Centrovat vybrané modely" -#~ msgstr[2] "Centrovat vybrané modely" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Multiply Selected Model" -#~ msgid_plural "Multiply Selected Models" -#~ msgstr[0] "Násobit vybraný model" -#~ msgstr[1] "Násobit vybrané modely" -#~ msgstr[2] "Násobit vybrané modely" - -#~ msgctxt "@button" -#~ msgid "Finish" -#~ msgstr "Dokončit" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Account" -#~ msgstr "Účet Ultimaker" - -#~ msgctxt "@text" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "Váš klíč k propojenému 3D tisku" - -#~ msgctxt "@text" -#~ msgid "- Customize your experience with more print profiles and plugins" -#~ msgstr "- Přizpůsobte si své zážitky pomocí více profilů tisku a modulů" - -#~ msgctxt "@text" -#~ msgid "- Stay flexible by syncing your setup and loading it anywhere" -#~ msgstr "- Zůstaňte flexibilní díky synchronizaci nastavení a přístupu k ní kdekoli" - -#~ msgctxt "@text" -#~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "- Zvyšte efektivitu pomocí vzdáleného pracovního postupu na tiskárnách Ultimaker" - -#~ msgctxt "@text" -#~ msgid "" -#~ "Please follow these steps to set up\n" -#~ "Ultimaker Cura. This will only take a few moments." -#~ msgstr "" -#~ "Při nastavování postupujte podle těchto pokynů\n" -#~ "Ultimaker Cura. Bude to trvat jen několik okamžiků." - -#~ msgctxt "@label" -#~ msgid "What's new in Ultimaker Cura" -#~ msgstr "Co je nového v Ultimaker Cura" - -#~ msgctxt "@label ({} is object name)" -#~ msgid "Are you sure you wish to remove {}? This cannot be undone!" -#~ msgstr "Doopravdy chcete odstranit {}? Toto nelze vrátit zpět!" - -#~ msgctxt "@info:status" -#~ msgid "The selected model was too small to load." -#~ msgstr "Vybraný model byl moc malý k načtení." - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profile {0}" -#~ msgstr "Úspěšně importován profil {0}" - -#~ msgctxt "@info:status" -#~ msgid "Could not find a quality type {0} for the current configuration." -#~ msgstr "Nelze najít typ kvality {0} pro aktuální konfiguraci." - -#~ msgctxt "info:status" -#~ msgid "Adding printer {} ({}) from your account" -#~ msgstr "Přidávám tiskárnu {} ({}) z vašeho účtu" - -#~ msgctxt "info:hidden list items" -#~ msgid "
  • ... and {} others
  • " -#~ msgstr "
  • ... a {} dalších
  • " - -#~ msgctxt "info:status" -#~ msgid "Printers added from Digital Factory:
      {}
    " -#~ msgstr "Tiskárny přidané z Digital Factory:
      {}
    " - -#~ msgctxt "info:status" -#~ msgid "
      {}
    To establish a connection, please visit the Ultimaker Digital Factory." -#~ msgstr "
      {}
    Chcete-li navázat spojení, navštivte Ultimaker Digital Factory." - -#~ msgctxt "@label ({} is printer name)" -#~ msgid "{} will be removed until the next account sync.
    To remove {} permanently, visit Ultimaker Digital Factory.

    Are you sure you want to remove {} temporarily?" -#~ msgstr "{} bude odebrána až do další synchronizace účtu.
    Chcete-li {} trvale odebrat, navštivte Ultimaker Digital Factory.

    Opravdu chcete dočasně odebrat {}?" - -#~ msgctxt "@label" -#~ msgid "" -#~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n" -#~ "Are you sure you want to continue?" -#~ msgstr "" -#~ "Chystáte se odebrat {} tiskárny z Cury. Tuto akci nelze vrátit zpět.\n" -#~ "Jste si jistý, že chcete pokračovat?" - -#~ msgctxt "@label" -#~ msgid "" -#~ "You are about to remove all printers from Cura. This action cannot be undone. \n" -#~ "Are you sure you want to continue?" -#~ msgstr "" -#~ "Chystáte se odebrat všechny tiskárny z Cury. Tuto akci nelze vrátit zpět.\n" -#~ "Doopravdy chcete pokračovat?" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update" -#~ msgstr "Aktualizovat" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Create new" -#~ msgstr "Vytvořit nový" - -#~ msgctxt "@label" -#~ msgid "Shared Heater" -#~ msgstr "Sdílený ohřívač" - -#~ msgctxt "@info" -#~ msgid "The webcam is not available because you are monitoring a cloud printer." -#~ msgstr "Webová kamera není k dispozici, protože monitorujete cloudovou tiskárnu." - -#~ msgctxt "@button" -#~ msgid "Ultimaker Digital Factory" -#~ msgstr "Ultimaker Digital Factory" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can Discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "Upravili jste některá nastavení profilu.\n" -#~ "Chcete tato změněná nastavení zachovat i po přepnutí profilů?\n" -#~ "Alternativně můžete zahodit změny a načíst výchozí hodnoty z '%1'." - -#~ msgctxt "@label" -#~ msgid "Overrides %1 setting." -#~ msgid_plural "Overrides %1 settings." -#~ msgstr[0] "Přepsat %1 nastavení." -#~ msgstr[1] "Přepsat %1 nastavení." -#~ msgstr[2] "Přepsat %1 nastavení." - -#~ msgctxt "@text" -#~ msgid "Please give your printer a name" -#~ msgstr "Prosím dejte vaší tiskárně název" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." -#~ msgstr "Pro vaše zařízení {machine_name} jsou k dispozici nové funkce! Doporučujeme aktualizovat firmware na tiskárně." - -#~ msgctxt "@action:button" -#~ msgid "Print via Cloud" -#~ msgstr "Tisknout přes Cloud" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print via Cloud" -#~ msgstr "Tisknout přes Cloud" - -#~ msgctxt "@info:status" -#~ msgid "Connected via Cloud" -#~ msgstr "Připojeno přes Cloud" - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Připojit k Ultimaker Cloudu" - -#~ msgctxt "@label" -#~ msgid "You need to login first before you can rate" -#~ msgstr "Před hodnocením se musíte přihlásit" - -#~ msgctxt "@label" -#~ msgid "You need to install the package before you can rate" -#~ msgstr "Před hodnocením musíte nainstalovat balíček" - -#~ msgctxt "@label" -#~ msgid "ratings" -#~ msgstr "hodnocení" - -#~ msgctxt "@label" -#~ msgid "Featured" -#~ msgstr "Doporučeno" - -#~ msgctxt "@label" -#~ msgid "Your rating" -#~ msgstr "Vaše hodnocení" - -#~ msgctxt "@label" -#~ msgid "Author" -#~ msgstr "Autor" - -#~ msgctxt "@description" -#~ msgid "Get plugins and materials verified by Ultimaker" -#~ msgstr "Získejte pluginy a materiály ověřené společností Ultimaker" - -#~ msgctxt "@label The argument is a username." -#~ msgid "Hi %1" -#~ msgstr "Zdravím, %1" - -#~ msgctxt "@button" -#~ msgid "Ultimaker account" -#~ msgstr "Ultimaker účet" - -#~ msgctxt "@button" -#~ msgid "Sign out" -#~ msgstr "Odhlásit se" - -#~ msgctxt "@label" -#~ msgid "Support library for analysis of complex networks" -#~ msgstr "Podpůrná knihovna pro analýzu komplexních sítí" - -#~ msgctxt "@Label" -#~ msgid "Python HTTP library" -#~ msgstr "Python HTTP knihovna" - -#~ msgctxt "@text:window" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to keep or discard those settings?" -#~ msgstr "" -#~ "Upravili jste některá nastavení profilu.\n" -#~ "Chcete tato nastavení zachovat nebo zrušit?" - -#~ msgctxt "@title:column" -#~ msgid "Default" -#~ msgstr "Výchozí" - -#~ msgctxt "@title:column" -#~ msgid "Customized" -#~ msgstr "Upraveno" - -#~ msgctxt "@action:button" -#~ msgid "Discard" -#~ msgstr "Smazat" - -#~ msgctxt "@action:button" -#~ msgid "Keep" -#~ msgstr "Ponechat" - -#~ msgctxt "@action:button" -#~ msgid "Create New Profile" -#~ msgstr "Vytvořit nový profil" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "&Save..." -#~ msgstr "Uloži&t..." - -#~ msgctxt "@text" -#~ msgid "Place enter your printer's IP address." -#~ msgstr "Prosím zadejte IP adresu vaší tiskárny." - -#~ msgctxt "@button" -#~ msgid "Create an account" -#~ msgstr "Vytvořit účet" - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder." -#~ msgstr "Nic ke slicování, protože žádný z modelů neodpovídá objemu sestavení nebo není přiřazen k vytlačovacímu stroji s deaktivací. Změňte měřítko nebo otočte modely, aby se vešly, nebo povolte extrudér." - -#~ msgctxt "@info:backup_status" -#~ msgid "There was an error listing your backups." -#~ msgstr "Nastala chyba při výpisu vašich záloh." - -#~ msgctxt "@title:groupbox" -#~ msgid "User description (Note: Developers may not speak your language, please use English if possible)" -#~ msgstr "Popis (Poznámka: Vývojáři nemusí mluvit vaším jazykem, pokud je to možné, použijte prosím angličtinu)" - -#~ msgctxt "@title:window" -#~ msgid "Closing Cura" -#~ msgstr "Zavírám Curu" - -#~ msgctxt "@label" -#~ msgid "Are you sure you want to exit Cura?" -#~ msgstr "Doopravdy chcete ukončit Curu?" - -#~ msgctxt "@label" -#~ msgid "Language:" -#~ msgstr "Jazyk:" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud" - -#~ msgctxt "@text" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "Pracovní postup 3D tisku nové generace" - -#~ msgctxt "@text" -#~ msgid "- Send print jobs to Ultimaker printers outside your local network" -#~ msgstr "- Odeslat tiskové úlohy do tiskáren Ultimaker mimo vaši místní síť" - -#~ msgctxt "@text" -#~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere" -#~ msgstr "- Uložte svá nastavení Ultimaker Cura do cloudu pro použití kdekoli" - -#~ msgctxt "@text" -#~ msgid "- Get exclusive access to print profiles from leading brands" -#~ msgstr "- Získejte exkluzivní přístup k profilům tisku od předních značek" - -#~ msgctxt "@label" -#~ msgid "The value is resolved from per-extruder values " -#~ msgstr "Hodnota je rozlišena z hodnot na extruderu " - -#~ msgctxt "@label" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "Pracovní postup 3D tisku nové generace" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to print profiles from leading brands" -#~ msgstr "" -#~ "- Odeslat tiskové úlohy do tiskáren Ultimaker mimo vaši místní síť\n" -#~ "- Uložte svá nastavení Ultimaker Cura do cloudu pro použití kdekoli\n" -#~ "- Získejte exkluzivní přístup k profilům tisku od předních značek" - -#~ msgctxt "@title:window" -#~ msgid "About " -#~ msgstr "O " - -#~ msgctxt "@info:button" -#~ msgid "Quit Cura" -#~ msgstr "Ukončit Curu" - -#~ msgctxt "@action:checkbox" -#~ msgid "Infill only" -#~ msgstr "Pouze výplň" - -#~ msgctxt "@info:tooltip" -#~ msgid "Change active post-processing scripts" -#~ msgstr "Změnit akitvní post-processing skripty" - -#~ msgctxt "@label:listbox" -#~ msgid "Feedrate" -#~ msgstr "Feedrate" - -#~ msgctxt "name" -#~ msgid "Machine Settings action" -#~ msgstr "Akce nastavení zařízení" +#~ msgid "Simulation View" +#~ msgstr "Pohled simulace" diff --git a/resources/i18n/cs_CZ/fdmextruder.def.json.po b/resources/i18n/cs_CZ/fdmextruder.def.json.po index c1a650093e..5184070070 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: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-08 09:03+0000\n" "PO-Revision-Date: 2020-02-20 17:30+0100\n" "Last-Translator: DenyCZ \n" "Language-Team: DenyCZ \n" @@ -17,6 +17,96 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.3\n" +#: fdmextruder.def.json +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adheze" + +#: fdmextruder.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Nastavuje průměr použitého vlákna filamentu. Srovnejte tuto hodnotu s průměrem použitého vlákna." + +#: fdmextruder.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adheze topné podložky" + +#: fdmextruder.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Průměr" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Ukončete g-kód, který se má provést při odpojení od tohoto extrudéru." + +#: fdmextruder.def.json +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "Extruder" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code label" +msgid "Extruder End G-Code" +msgstr "Ukončující G kód extruderu" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_abs label" +msgid "Extruder End Position Absolute" +msgstr "Absolutní finální pozice extruderu" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x label" +msgid "Extruder End Position X" +msgstr "Konečná pozice X extruderu" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y label" +msgid "Extruder End Position Y" +msgstr "Konečná pozice Y extruderu" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Primární pozice extruderu X" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Primární pozice extruderu Y" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "První Z pozice extruderu" + +#: fdmextruder.def.json +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Chladič extruderu" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_code label" +msgid "Extruder Start G-Code" +msgstr "Počáteční G kód extruderu" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_abs label" +msgid "Extruder Start Position Absolute" +msgstr "Absolutní počáteční pozice extruderu" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "Počáteční pozice extruderu X" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "Počáteční pozice extruderu Y" + #: fdmextruder.def.json msgctxt "machine_settings label" msgid "Machine" @@ -28,69 +118,9 @@ msgid "Machine specific settings" msgstr "Specifické nastavení pro zařízení" #: fdmextruder.def.json -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "Extruder" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID trysky" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "ID trysky pro vytlačovací stroj, např. \"AA 0.4\" nebo \"BB 0.8\"." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Průměr trysky" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x label" -msgid "Nozzle X Offset" -msgstr "X offset trysky" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "X-ová souřadnice offsetu trysky." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "Y offset trysky" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "Y-ová souřadnice offsetu trysky." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code label" -msgid "Extruder Start G-Code" -msgstr "Počáteční G kód extruderu" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_abs label" -msgid "Extruder Start Position Absolute" -msgstr "Absolutní počáteční pozice extruderu" +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 "Koncovou polohu extruderu udělejte absolutně, nikoliv relativně k poslednímu známému umístění hlavy." #: fdmextruder.def.json msgctxt "machine_extruder_start_pos_abs description" @@ -98,114 +128,9 @@ msgid "Make the extruder starting position absolute rather than relative to the msgstr "Udělejte počáteční pozici extrudéru absolutně, nikoli relativně k poslednímu známému umístění hlavy." #: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "Počáteční pozice extruderu X" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "Souřadnice x počáteční pozice při zapnutí extrudéru." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "Počáteční pozice extruderu Y" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code label" -msgid "Extruder End G-Code" -msgstr "Ukončující G kód extruderu" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Ukončete g-kód, který se má provést při odpojení od tohoto extrudéru." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_abs label" -msgid "Extruder End Position Absolute" -msgstr "Absolutní finální pozice extruderu" - -#: fdmextruder.def.json -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 "Koncovou polohu extruderu udělejte absolutně, nikoliv relativně k poslednímu známému umístění hlavy." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x label" -msgid "Extruder End Position X" -msgstr "Konečná pozice X extruderu" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "Souřadnice x koncové polohy při vypnutí extrudéru." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y label" -msgid "Extruder End Position Y" -msgstr "Konečná pozice Y extruderu" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "Souřadnice y koncové polohy při vypnutí extrudéru." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "První Z pozice extruderu" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Souřadnice Z pozice, ve které tryska naplní tlak na začátku tisku." - -#: fdmextruder.def.json -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Chladič extruderu" - -#: fdmextruder.def.json -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 "Číslo ventilátoru chlazení tisku přidruženého k tomuto extrudéru. Tuto změnu změňte pouze z výchozí hodnoty 0, pokud máte pro každý extrudér jiný ventilátor chlazení tisku." - -#: fdmextruder.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adheze topné podložky" - -#: fdmextruder.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adheze" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Primární pozice extruderu X" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Souřadnice X polohy, ve které tryska naplní tlak na začátku tisku." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Primární pozice extruderu Y" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Souřadnice Y polohy, ve které tryska naplní tlak na začátku tisku." +msgctxt "material description" +msgid "Material" +msgstr "Materiál" #: fdmextruder.def.json msgctxt "material label" @@ -213,16 +138,91 @@ msgid "Material" msgstr "Materiál" #: fdmextruder.def.json -msgctxt "material description" -msgid "Material" -msgstr "Materiál" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Průměr trysky" #: fdmextruder.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Průměr" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID trysky" #: fdmextruder.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Nastavuje průměr použitého vlákna filamentu. Srovnejte tuto hodnotu s průměrem použitého vlákna." +msgctxt "machine_nozzle_offset_x label" +msgid "Nozzle X Offset" +msgstr "X offset trysky" + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "Y offset trysky" + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Souřadnice X polohy, ve které tryska naplní tlak na začátku tisku." + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Souřadnice Y polohy, ve které tryska naplní tlak na začátku tisku." + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Souřadnice Z pozice, ve které tryska naplní tlak na začátku tisku." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "ID trysky pro vytlačovací stroj, např. \"AA 0.4\" nebo \"BB 0.8\"." + +#: fdmextruder.def.json +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 "Číslo ventilátoru chlazení tisku přidruženého k tomuto extrudéru. Tuto změnu změňte pouze z výchozí hodnoty 0, pokud máte pro každý extrudér jiný ventilátor chlazení tisku." + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "Souřadnice x koncové polohy při vypnutí extrudéru." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "X-ová souřadnice offsetu trysky." + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "Souřadnice x počáteční pozice při zapnutí extrudéru." + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "Souřadnice y koncové polohy při vypnutí extrudéru." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "Y-ová souřadnice offsetu trysky." + +#: fdmextruder.def.json +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." diff --git a/resources/i18n/cs_CZ/fdmprinter.def.json.po b/resources/i18n/cs_CZ/fdmprinter.def.json.po index 48abe57ff5..89a6cf544b 100644 --- a/resources/i18n/cs_CZ/fdmprinter.def.json.po +++ b/resources/i18n/cs_CZ/fdmprinter.def.json.po @@ -7,1606 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" -"PO-Revision-Date: 2022-05-02 22:27+0200\n" +"POT-Creation-Date: 2023-03-28 11:57+0000\n" +"PO-Revision-Date: 2023-02-16 20:35+0100\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" "Language: cs_CZ\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 3.0.1\n" - -#: fdmprinter.def.json -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Zařízení" - -#: fdmprinter.def.json -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Specifické nastavení pro zařízení" - -#: fdmprinter.def.json -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Typ zařízení" - -#: fdmprinter.def.json -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Název vašeho modelu 3D tiskárny." - -#: fdmprinter.def.json -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Zobrazit varianty zařízení" - -#: fdmprinter.def.json -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Zda se mají zobrazit různé varianty tohoto zařízení, které jsou popsány v samostatných souborech json." - -#: fdmprinter.def.json -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "Počáteční G kód" - -#: fdmprinter.def.json -msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." -msgstr "" -"Příkazy G-kódu, které mají být provedeny na samém konci - oddělené\n" -"." - -#: fdmprinter.def.json -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "Ukončující G kód" - -#: fdmprinter.def.json -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." -msgstr "Příkazy G-kódu, které mají být provedeny od samého začátku - oddělené \\ n." - -#: fdmprinter.def.json -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID materiálu" - -#: fdmprinter.def.json -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID materiálu. Je nastaveno automaticky." - -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Průměr" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Nastavuje průměr použitého vlákna filamentu. Srovnejte tuto hodnotu s průměrem použitého vlákna." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Čekat na zahřátí desky" - -#: fdmprinter.def.json -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 "Zda se má vložit příkaz k čekání, až se dosáhne teploty podložky na začátku." - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Čekat na zahřátí trysek" - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Zda čekat na dosažení teploty trysky na začátku." - -#: fdmprinter.def.json -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Zahrnout teploty materiálu" - -#: fdmprinter.def.json -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 "Zda zahrnout příkazy teploty trysek na začátku gcode. Pokud start_gcode již obsahuje příkazy teploty trysek, Cura frontend toto nastavení automaticky deaktivuje." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Zahrnout teploty podložky" - -#: fdmprinter.def.json -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 "Zda zahrnout příkazy pro sestavení teploty desky na začátku gcode. Pokud start_gcode již obsahuje příkazy teploty desky, Cura frontend toto nastavení automaticky deaktivuje." - -#: fdmprinter.def.json -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Šířka zařízení" - -#: fdmprinter.def.json -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "Šířka (Osa X) plochy k tisku." - -#: fdmprinter.def.json -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Hloubka zařízení" - -#: fdmprinter.def.json -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "Hlouba (Isa Y) plochy k tisku." - -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Výška zařízení" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Výška (Osa Z) plochy k tisku." - -#: fdmprinter.def.json -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Tvar podložky" - -#: fdmprinter.def.json -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í." - -#: fdmprinter.def.json -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Obdélníková" - -#: fdmprinter.def.json -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Eliptická" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Materiál podložky" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Materiál podložky nainstalované na tiskárně." - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Sklo" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Hliník" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Má vyhřívanou podložku" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Zda má stroj vyhřívanou podložku." - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Má stabilizaci teploty podložky" - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Zda je zařízení schopno stabilizovat teplotu podložky." - -#: fdmprinter.def.json -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "Vždy Zapisovat Aktivní Nástroj" - -#: fdmprinter.def.json -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 "Zapisování aktivního nástroje po odeslání dočasných příkazů neaktivnímu nástroji. Vyžadováno pro tisk s dvojitým extruderem se Smoothie, či jiným firmwarem s modálními příkazy nástrojů." - -#: fdmprinter.def.json -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Je střed počátek" - -#: fdmprinter.def.json -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 "Zda jsou souřadnice X / Y nulové polohy tiskárny ve středu tisknutelné oblasti." - -#: fdmprinter.def.json -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Počet extrůderů" - -#: fdmprinter.def.json -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Počet extruderových strojů. Vytlačovací souprava je kombinací podavače, bowdenu a trysky." - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Počet povolených extruderů" - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Počet extruderových strojů, které jsou povoleny; Automaticky nastaveno v softwaru" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Vnější průměr trysky" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Délka trysky" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Úhel trysky" - -#: fdmprinter.def.json -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 "Úhel mezi vodorovnou rovinou a kuželovou částí přímo nad špičkou trysky." - -#: fdmprinter.def.json -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Délka tepelné zóny" - -#: fdmprinter.def.json -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 "Vzdálenost od špičky trysky, ve které se teplo z trysky přenáší na filament." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Povolit řízení teploty trysek" - -#: fdmprinter.def.json -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 "Zda ovládat teplotu z Cury. Vypnutím této funkce můžete regulovat teplotu trysek z vnějšku Cury." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Rychlost zahřívání" - -#: fdmprinter.def.json -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 "Rychlost (° C / s), kterou se tryska zahřívá, se průměruje nad oknem normální teploty tisku a pohotovostní teploty." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Rychlost chlazení" - -#: fdmprinter.def.json -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 "Rychlost (° C / s), kterou tryska ochlazuje, se průměrovala nad oknem normální teploty tisku a pohotovostní teploty." - -#: fdmprinter.def.json -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Minimální doba pohotovostního režimu" - -#: fdmprinter.def.json -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 "Minimální doba, po kterou musí být extrudér neaktivní, než se tryska ochladí. Pouze v případě, že se extrudér nepoužívá déle, než je tato doba, může se ochladit na pohotovostní teplotu." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Varianta G kódu" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Typ generovaného g-kódu." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumetric)" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -#: fdmprinter.def.json -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Retrakce firmwaru" - -#: fdmprinter.def.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 "Zda se mají použít příkazy pro retrakci firmwaru (G10 / G11) namísto použití vlastnosti E v příkazech G1 pro stažení materiálu." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Extrudery sdílí ohřívač" - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Zda extrudéry sdílejí jeden ohřívač spíše než každý extrudér mající svůj vlastní ohřívač." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Extrudery sdílí trysku" - -#: fdmprinter.def.json -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 "Určuje, zda extrudery sdílí jednu trysku namísto, aby měl každý extruder svou vlastní trysku. Pokud je zvoleno, předpokládá se, že počáteční G kód tiskárny správně nastaví všechny extrudery do známého stavu, který je vzájemně kompatibilní (všechny filamenty jsou zatažené nebo jen jeden je nezatažený). V tomto případě je počáteční stav zatažení určen pro každý extruder parametrem 'machine_extruders_shared_nozzle_initial_retraction'." - -#: fdmprinter.def.json -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Počáteční retrakce sdílené trysky" - -#: fdmprinter.def.json -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 "Jak daleko je zatažen filament každého extruderu sdílené trysky po dokončení počátečního G kódu tiskárny. Tato hodnota by se měla rovnat nebo být vyšší než je délka společné části vedení trysky." - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Zakázané zóny" - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Seznam polygonů s oblastmi, do kterých tisková hlava nemá přístup." - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Zakázané oblasti pro trysku" - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "Seznam polygonů s oblastmi, do kterých nesmí vstoupit tryska." - -#: fdmprinter.def.json -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Polygon hlavy a větráku zařízení" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Výška rámu tiskárny" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID trysky" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "ID trysky pro vytlačovací stroj, např. \"AA 0.4\" nebo \"BB 0.8\"." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Průměr trysky" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Offset s extrudérem" - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Použít offset extruderu v souřadnicovém systému. Ovlivňuje všechny extrudery." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "První Z pozice extruderu" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Souřadnice Z pozice, ve které tryska naplní tlak na začátku tisku." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Absolutní výchozí pozice extruderu" - -#: fdmprinter.def.json -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 "Zajistěte, aby hlavní poloha extrudéru byla absolutní, nikoli relativní k poslednímu známému umístění hlavy." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Maximální rychlost X" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "Maximální rychlost pro motor ve směru X." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Maximální rychlost Y" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Maximální rychlost pro motor ve směru Y." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Maximální rychlost Z" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Maximální rychlost pro motor ve směru Z." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Maximální rychlost E" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "Maximální rychlost filamentu." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Maximální akcelerace X" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Maximální akcelerace Y" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Maximální zrychlení pro motor ve směru Y." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Maximální akcelerace Z" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Maximální zrychlení pro motor ve směru Z." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Maximální akcelerace filamentu" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Maximální zrychlení pro motor filamentu." - -#: fdmprinter.def.json -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Výchozí akcelerace" - -#: fdmprinter.def.json -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "Výchozí zrychlení pohybu tiskové hlavy." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Výchozí X-Y jerk rychlost motoru" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "Výchozí trhnutí pro pohyb ve vodorovné rovině." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Výchozí Z jerk rychlost motoru" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Výchozí trhnutí pro motor ve směru Z." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Výchozí jerk filamentu" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Výchozí trhnutí pro motor filamentu." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Kroků za milimetr (X)" - -#: fdmprinter.def.json -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 "Kolik kroků krokového motoru povede k jednomu milimetru pohybu ve směru X." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Kroků za milimetr (Y)" - -#: fdmprinter.def.json -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 "Kolik kroků krokového motoru povede k jednomu milimetru pohybu ve směru Y." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Kroků za milimetr (Z)" - -#: fdmprinter.def.json -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 "Kolik kroků krokového motoru povede k jednomu milimetru pohybu ve směru Z." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Kroků za milimetr (E)" - -#: fdmprinter.def.json -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 "Kolik kroků krokového motoru povede k pohybu kolečka feederu o jeden milimetr po jeho obvodu." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Endstop X v kladném směru" - -#: fdmprinter.def.json -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 "Zda koncový doraz osy X je v kladném směru (vysoká souřadnice X) nebo záporný (souřadnice nízké X)." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Endstop Y v kladném směru" - -#: fdmprinter.def.json -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 "Zda koncový doraz osy X je v kladném směru (vysoká souřadnice X) nebo záporný (souřadnice nízké X)...." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Endstop Z v kladném směru" - -#: fdmprinter.def.json -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 "Zda je koncová zarážka osy Z v kladném směru (vysoká souřadnice Z) nebo záporná (souřadnice nízké Z)." - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Minimální feedrate" - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Minimální rychlost pohybu tiskové hlavy." - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Průměr kolečka feederu" - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "Průměr kola, který pohání materiál v podavači." - -#: fdmprinter.def.json -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Odstupňovat rychlost ventilátoru mezi 0–1" - -#: fdmprinter.def.json -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 "Změnit stupnici rychlosti ventilátoru na 0 až 1, namísto 0 až 256." - -#: fdmprinter.def.json -msgctxt "resolution label" -msgid "Quality" -msgstr "Kvalita" - -#: fdmprinter.def.json -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)" - -#: fdmprinter.def.json -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Výška vrstvy" - -#: fdmprinter.def.json -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 "Výška každé vrstvy v mm. Vyšší hodnoty produkují rychlejší výtisky v nižším rozlišení, nižší hodnoty produkují pomalejší výtisky ve vyšším rozlišení." - -#: fdmprinter.def.json -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Výška výchozí vrstvy" - -#: fdmprinter.def.json -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 "Výška počáteční vrstvy v mm. Silnější počáteční vrstva usnadňuje přilnavost k montážní desce." - -#: fdmprinter.def.json -msgctxt "line_width label" -msgid "Line Width" -msgstr "Šířka čáry" - -#: fdmprinter.def.json -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 "Šířka jedné řádky. Obecně by šířka každé linie měla odpovídat šířce trysky. Avšak mírné snížení této hodnoty by mohlo vést k lepším výtiskům." - -#: fdmprinter.def.json -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Šířka čáry stěny" - -#: fdmprinter.def.json -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Šířka jedné stěny." - -#: fdmprinter.def.json -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Šířka čáry vnější stěny" - -#: fdmprinter.def.json -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 "Šířka čáry nejkrajnější stěny. Snížením této hodnoty lze vytisknout vyšší úrovně detailů." - -#: fdmprinter.def.json -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Šířka čáry vnitřních stěn" - -#: fdmprinter.def.json -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Šířka jedné linie stěny pro všechny linie stěny kromě nejvzdálenější." - -#: fdmprinter.def.json -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Horní/dolní šířka čáry" - -#: fdmprinter.def.json -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Šířka jedné horní/spodní čáry." - -#: fdmprinter.def.json -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Šířka čáry výplně" - -#: fdmprinter.def.json -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Šířka jedné výplně." - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Šířka čáry okraje/límce" - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Šířka čáry límce nebo okraje linie." - -#: fdmprinter.def.json -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Šířka čáry podpory" - -#: fdmprinter.def.json -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Šířka jedné linie podpůrné struktury." - -#: fdmprinter.def.json -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Šířka čáry rozhraní podpor" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Šířka čáry podpory střechy" - -#: fdmprinter.def.json -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Šířka jedné podpůrné linie střechy." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Šířka čáry podpory podlahy" - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Šířka jedné podpůrné podlahové linie." - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Šířka čáry primární věže" - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Šířka jedné hlavní věže." - -#: fdmprinter.def.json -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Šířka čáry počáteční vrstvy" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "shell label" -msgid "Walls" -msgstr "Stěny" - -#: fdmprinter.def.json -msgctxt "shell description" -msgid "Shell" -msgstr "Shell" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Extruder zdi" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "Vytlačovací souprava použitá pro tisk stěn. Používá se při vícenásobném vytlačování." - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extruder vnější zdi" - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "Vytlačovací souprava použitá pro tisk vnější stěny. Používá se při vícenásobném vytlačování." - -#: fdmprinter.def.json -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extruder vnitřní zdi" - -#: fdmprinter.def.json -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í." - -#: fdmprinter.def.json -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Tloušťka stěny" - -#: fdmprinter.def.json -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 "Tloušťka stěn v horizontálním směru. Tato hodnota dělená šířkou čáry stěny definuje počet stěn." - -#: fdmprinter.def.json -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Počet čar zdi" - -#: fdmprinter.def.json -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 "Počet stěn. Při výpočtu podle tloušťky stěny je tato hodnota zaokrouhlena na celé číslo." - -#: fdmprinter.def.json -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Délka změny počtu čar zdí" - -#: fdmprinter.def.json -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í." - -#: fdmprinter.def.json -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Počet čar zdí měnících šířku" - -#: fdmprinter.def.json -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 "Počet čar zdí od středu, které mají měnit svou šířku při změně počtu čar zdí. Nižší hodnoty znamenají, že vnější stěny nebudou měnit svou šířku." - -#: fdmprinter.def.json -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Prahový úhel pro změnu počtu čar zdí" - -#: fdmprinter.def.json -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 "Určuje, kdy se bude měnit počet čar zdí. Pokud se v modelu vyskytuje tvar klínu s úhlem přesahujícím hodnotu tohoto nastavení, nebudou se pro vyplnění prostoru uprostřed používat sbíhající se čáry zdí s proměnlivou šířkou. Snížením této hodnoty se snižuje počet a délka těchto prostředních zdí, ale může zůstávat více mezer nebo nadměrná extruze." - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Minimální vzdálenost změny počtu čar zdí" - -#: fdmprinter.def.json -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 "Pokud by se mělo rychle za sebou přecházet tam a zpět mezi různými počty zdí, nebude se sbíhání provádět. Nastavení odstraní přechody mezi různými počty čar zdí, pokud by byly blíže než tato vzdálenost." - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Rezerva pro změnu počtu čar zdí" - -#: fdmprinter.def.json -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í." - -#: fdmprinter.def.json -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Vzdálenost stírání vnější stěny" - -#: fdmprinter.def.json -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Vzdálenost pohybového posunu vloženého za vnější stěnu, aby se skryla Z šev lépe." - -#: fdmprinter.def.json -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Vnější stěna" - -#: fdmprinter.def.json -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 "Inset aplikovaný na cestu vnější stěny. Pokud je vnější stěna menší než tryska a je vytištěna za vnitřními stěnami, použijte toto odsazení, aby se otvor v trysce překrýval s vnitřními stěnami místo vně modelu." - -#: fdmprinter.def.json -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Optimalizace pořadí tisku stěn" - -#: fdmprinter.def.json -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 "Optimalizujte pořadí, ve kterém se stěny tisknou, aby se snížil počet retrakcí a ujetá vzdálenost. Většina částí bude mít z tohoto povolení prospěch, ale některé mohou ve skutečnosti trvat déle, proto porovnejte odhady doby tisku s optimalizací a bez ní. První vrstva není optimalizována při výběru okraje jako adhezního typu desky." - -#: fdmprinter.def.json -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Pořadí tisku zdí" - -#: fdmprinter.def.json -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." -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á s rozměrovou přesností, 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ů." - -#: fdmprinter.def.json -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "Zevnitř ven" - -#: fdmprinter.def.json -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "Zvenku dovnitř" - -#: fdmprinter.def.json -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Alternativní zeď navíc" - -#: fdmprinter.def.json -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 "Vytiskne další stěnu na každou další vrstvu. Tímto způsobem se výplň zachytí mezi těmito stěnami, což má za následek silnější výtisky." - -#: fdmprinter.def.json -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Minimální šířka čáry zdi" - -#: fdmprinter.def.json -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í." - -#: fdmprinter.def.json -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Minimální šířka párové čáry zdi" - -#: fdmprinter.def.json -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 "Minimální šířka čáry pro běžné mnohoúhelníkové zdi. Toto nastavení určuje tloušťku, při které se přepne z tisku jedné tenké čáry zdi na tisk dvou čar zdi. Vyšší hodnota Minimální šířky párové čáry zdi vede k vyšší maximální šířce nepárové čáry zdi. Maximální šířka párové čáry zdi je spočítána jako Šířka čáry vnější stěny + 0,5 * Minimální šířka nepárové čáry zdi." - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold label" -msgid "Split Middle Line Threshold" -msgstr "Mez pro rozdělení prostřední čáry" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "Nejnižší šířka čáry, zadaná jako procento běžné šířky čáry, nad kterou bude prostřední nepárová čára (pokud nějaká je) rozdělena na dvě párové čáry. Snižte toto nastavení, aby se používalo více tenkých čar. Zvyšte toto nastavení pro použití méně a širších čar. Je třeba si uvědomit, že toto nastavení se použije, jako kdyby byl celý tvar vyplněn zdmi. Takže termín prostřední zde znamená prostředek objektu mezi dvěma vnějšími hranami tvaru, a to i v případě, že se namísto zdi tiskne výplň nebo jiný povrch." - -#: fdmprinter.def.json -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Minimální šířka nepárové čáry zdi" - -#: fdmprinter.def.json -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 "Minimální šířka čáry použité jako výplň mezi párovými čárami zdi. Toto nastavení určuje tloušťku modelu, při které se přepíná z tisku dvou čar zdi na tisk dvou vnějších čar zdi a jedné centrální čáry zdi mezi nimi. Vyšší hodnota Minimální šířky nepárové čáry zdi vede k vyšší maximální šířce párové čáry zdi. Maximální šířka nepárové čáry zdi je vypočtena jako 2 * Minimální šířka párové čáry zdi," - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold label" -msgid "Add Middle Line Threshold" -msgstr "Mez pro přidání prostřední čáry" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "Nejnižší šířka čáry, zadaná jako procento běžné šířky čáry, nad kterou bude přidána prostřední nepárová čára mezi dvě párové čáry (pokud mezi nimi ještě nebyla). Snižte toto nastavení, aby se používalo více tenkých čar. Zvyšte toto nastavení pro použití méně a širších čar. Je třeba si uvědomit, že toto nastavení se použije, jako kdyby byl celý tvar vyplněn zdmi. Takže termín prostřední zde znamená prostředek objektu mezi dvěma vnějšími hranami tvaru, a to i v případě, že se namísto zdi tiskne výplň nebo jiný povrch." - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Tisk tenkých stěn" - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Tiskněte kousky modelu, které jsou vodorovně tenčí než velikost trysek." - -#: fdmprinter.def.json -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Minimální velikost částí" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Minimální šířka tenkých stěn" - -#: fdmprinter.def.json -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 "Šířka zdi, která nahradí tenké části modelu (v souladu s nastavením Minimální velikost částí). Pokud je Minimální šířka tenkých stěn nižší, než část určitá modelu, bude zeď tištěna skutečnou tloušťkou této části." - -#: fdmprinter.def.json -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Horizontální expanze" - -#: fdmprinter.def.json -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 "Množství ofsetu aplikovaného na všechny polygony v každé vrstvě. Pozitivní hodnoty mohou kompenzovat příliš velké díry; záporné hodnoty mohou kompenzovat příliš malé díry." - -#: fdmprinter.def.json -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Počáteční horizontální rozšíření vrstvy" - -#: fdmprinter.def.json -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 "Množství ofsetu aplikovaného na všechny polygony v první vrstvě. Záporná hodnota může kompenzovat pískání první vrstvy známé jako „sloní noha“." - -#: fdmprinter.def.json -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Horizontální expanze díry" - -#: fdmprinter.def.json -msgctxt "hole_xy_offset description" -msgid "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." -msgstr "Množství ofsetu aplikovaného na všechny díry v každé vrstvě. Pozitivní hodnoty zvětšují velikost děr, záporné hodnoty snižují velikost děr." - -#: fdmprinter.def.json -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Vyrovnávní spojů na ose Z" - -#: fdmprinter.def.json -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ší." - -#: fdmprinter.def.json -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Uživatelem specifikováno" - -#: fdmprinter.def.json -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Nejkratší" - -#: fdmprinter.def.json -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Náhodné" - -#: fdmprinter.def.json -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Nejostřejší roh" - -#: fdmprinter.def.json -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Z pozice švu" - -#: fdmprinter.def.json -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "Poloha poblíž místa, kde začít tisknout každou část ve vrstvě." - -#: fdmprinter.def.json -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Zadní levá" - -#: fdmprinter.def.json -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Zpět" - -#: fdmprinter.def.json -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Zadní pravá" - -#: fdmprinter.def.json -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Pravá" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Přední pravá" - -#: fdmprinter.def.json -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Přední" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Přední levá" - -#: fdmprinter.def.json -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Levá" - -#: fdmprinter.def.json -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z šev X" - -#: fdmprinter.def.json -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "Souřadnice X pozice poblíž místa, kde se má začít tisknout každá část ve vrstvě." - -#: fdmprinter.def.json -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z šev Y" - -#: fdmprinter.def.json -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "Souřadnice Y pozice poblíž místa, kde se má začít tisknout každá část ve vrstvě." - -#: fdmprinter.def.json -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Rohová preference švu" - -#: fdmprinter.def.json -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 "Určete, zda rohy na obrysu modelu ovlivňují polohu švu. Žádné znamená, že rohy nemají žádný vliv na polohu švu. Funkce \"Schovat šev\" zvyšuje pravděpodobnost, že se šev vyskytuje ve vnitřním rohu. \"Ukázat šev\" zvyšuje pravděpodobnost, že se šev objeví na vnějším rohu. \"Skrýt nebo vystavit šev\" zvyšuje pravděpodobnost, že šev nastane ve vnitřním nebo vnějším rohu. \"Inteligentní skrytí\" umožňuje vnitřní i vnější rohy, ale v případě potřeby vybírá vnitřní rohy častěji." - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Žádný" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Schovat šev" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Ukázat šev" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Skrýt nebo ukázat šev" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Inteligentní skrývání" - -#: fdmprinter.def.json -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Relativní Z šev" - -#: fdmprinter.def.json -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 "Pokud je tato možnost povolena, jsou souřadnice z švu vztaženy ke středu každé součásti. Pokud je zakázána, souřadnice definují absolutní polohu na sestavovací desce." - -#: fdmprinter.def.json -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Vrch/spodek" - -#: fdmprinter.def.json -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Vrch/spodek" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Nejvyšší povrchový extrudér" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "Vytlačovací souprava použitá pro tisk nejvyššího povrchu. Používá se při vícenásobném vytlačování." - -#: fdmprinter.def.json -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Nejvyšší povrchová vrstva" - -#: fdmprinter.def.json -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 "Počet nejpřednějších vrstev pokožky. Obvykle stačí jedna horní vrstva nejvíce k vytvoření horních povrchů vyšší kvality." - -#: fdmprinter.def.json -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Vrchní/spodní extruder" - -#: fdmprinter.def.json -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 "Vytlačovací souprava použitá pro tisk horní a spodní pokožky. Používá se při vícenásobném vytlačování." - -#: fdmprinter.def.json -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Vrchní/spodní tloušťka" - -#: fdmprinter.def.json -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 "Tloušťka horní / dolní vrstvy v tisku. Tato hodnota dělená výškou vrstvy definuje počet vrstev horní / dolní." - -#: fdmprinter.def.json -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Vrchní tloušťka" - -#: fdmprinter.def.json -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 "Tloušťka horních vrstev v tisku. Tato hodnota dělená výškou vrstvy definuje počet vrchních vrstev." - -#: fdmprinter.def.json -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Vrchní vrstvy" - -#: fdmprinter.def.json -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 "Počet vrchních vrstev. Při výpočtu podle nejvyšší tloušťky se tato hodnota zaokrouhlí na celé číslo." - -#: fdmprinter.def.json -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Spodní tloušťka" - -#: fdmprinter.def.json -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 "Tloušťka spodních vrstev v tisku. Tato hodnota dělená výškou vrstvy definuje počet spodních vrstev." - -#: fdmprinter.def.json -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Spodní vrstvy" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Počáteční spodní vrstvy" - -#: fdmprinter.def.json -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 "Počet počátečních spodních vrstev od montážní desky směrem nahoru. Při výpočtu podle tloušťky dna je tato hodnota zaokrouhlena na celé číslo." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Vrchní/spodní vzor" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Vzor horní / dolní vrstvy." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Čáry" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Soustředný" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Vzor spodní počáteční vrstvy" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "Vzor ve spodní části tisku na první vrstvě." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Čáry" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Soustředný" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Připojte horní / dolní polygony" - -#: fdmprinter.def.json -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 "Propojte horní / dolní povrchové cesty tam, kde běží vedle sebe. Pro soustředné uspořádání umožňující toto nastavení výrazně zkracuje dobu cestování, ale protože se spojení může uskutečnit uprostřed výplně, může tato funkce snížit kvalitu povrchu." - -#: fdmprinter.def.json -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Monotónní pořadí horních / dolních povrchů" - -#: fdmprinter.def.json -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 "Tisknout horní / dolní linky v takovém pořadí, aby se navazující linky překrývaly ve stejném směru. Tisk zabere trochu více času, ale hladké povrchy budou vypadat více jednolité." - -#: fdmprinter.def.json -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Pokyny pro horní a dolní řádek" - -#: fdmprinter.def.json -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 "Seznam směrů celočíselných čar, které se použijí, když horní / dolní vrstvy používají čáry nebo vzor zig zag. 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ňů)." - -#: fdmprinter.def.json -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Žádný povrch v Z mezerách" - -#: fdmprinter.def.json -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 "Pokud má model malé svislé mezery pouze v několika vrstvách, měla by být kolem těchto vrstev v úzkém prostoru normální povrch. Povolte toto nastavení, abyste nevytvořili vzhled, pokud je vertikální mezera velmi malá. To zlepšuje dobu tisku a slicování, ale technicky zůstává výplň vystavena vzduchu." - -#: fdmprinter.def.json -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Počet povrchových zdí navíc" - -#: fdmprinter.def.json -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 "Nahrazuje nejvzdálenější část horního / spodního vzoru řadou soustředných čar. Použití jedné nebo dvou čar zlepšuje střechy, které začínají na výplňovém materiálu." - -#: fdmprinter.def.json -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Povolit žehlení" - -#: fdmprinter.def.json -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 "Ještě jednou přejděte horní povrch, ale tentokrát vytlačujete jen velmi málo materiálu. To má za cíl roztavit plast nahoře dále a vytvořit hladší povrch. Tlak v komoře trysky je udržován vysoký, takže rýhy na povrchu jsou vyplněny materiálem." - -#: fdmprinter.def.json -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Žehlit pouze nejvyšší vrstvu" - -#: fdmprinter.def.json -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 "Žehlení provádějte pouze na poslední vrstvě sítě. To šetří čas, pokud spodní vrstvy nepotřebují hladký povrch." - -#: fdmprinter.def.json -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Vzor žehlení" - -#: fdmprinter.def.json -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Vzor pro žehlení horních povrchů." - -#: fdmprinter.def.json -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Soustředný" - -#: fdmprinter.def.json -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Monotónní pořadí žehlení" - -#: fdmprinter.def.json -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 "Tisknout žehlící linky v takovém pořadí, aby se navazující linky překrývaly ve stejném směru. Tisk zabere trochu více času, ale hladké povrchy budou vypadat více jednolité." - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Rozteč žehlicích linek" - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "Vzdálenost mezi čárami žehlení." - -#: fdmprinter.def.json -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Průtok při žehlení" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Žehlící vložka" +"X-Generator: Poedit 3.2.2\n" #: fdmprinter.def.json msgctxt "ironing_inset description" @@ -1614,279 +23,39 @@ msgid "A distance to keep from the edges of the model. Ironing all the way to th msgstr "Vzdálenost, která se má držet od okrajů modelu. Žehlení až k okraji mřížky může vést k zubatému okraji na výtisku." #: fdmprinter.def.json -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Rychlost žehlení" +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." #: fdmprinter.def.json -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "Rychlost, kterou musí projít přes horní povrch." +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ňů)." #: fdmprinter.def.json -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Akcelerace žehlení" +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 "Seznam směrů celočíselných čar, které se použijí, když horní / dolní vrstvy používají čáry nebo vzor zig zag. 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ňů)." #: fdmprinter.def.json -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "Zrychlení, s nímž se provádí žehlení." +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 "Seznam směrů celého čísla, které je třeba použít. 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žít výchozí úhel 0 stupňů." #: fdmprinter.def.json -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Trhnutí při žehlení" +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 "Seznam směrů celého čísla, které je třeba použít. 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žít výchozí úhly (střídavě mezi 45 a 135 stupni, pokud jsou rozhraní poměrně silná nebo 90 stupňů)." #: fdmprinter.def.json -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Maximální okamžitá změna rychlosti při provádění žehlení." +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 "Seznam směrů celého čísla, které je třeba použít. 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žít výchozí úhly (střídavě mezi 45 a 135 stupni, pokud jsou rozhraní poměrně silná nebo 90 stupňů)." #: fdmprinter.def.json -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Procentuální překrytí povrchu" - -#: fdmprinter.def.json -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 "Upravte míru překrytí mezi stěnami a (koncovými body) osami povrchu jako procento šířky linií pokožky a nejvnitřnější stěny. Mírné překrytí umožňuje, aby se stěny pevně spojily s povrchem. Uvědomte si, že při stejné šířce linie povrchu a stěny může jakékoli procento nad 50% již způsobit, že jakýkoli povrch projde kolem zdi, protože v tomto bodě může pozice trysky extruderu povrchu už dosáhnout kolem středu zeď." - -#: fdmprinter.def.json -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Překrytí povrchu" - -#: fdmprinter.def.json -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 "Upravte míru překrytí mezi stěnami a (koncovými body) osami porvchu. Mírné překrytí umožňuje, aby se stěny pevně spojily s povrchem. Je třeba si uvědomit, že při stejné šířce linie povrchu a stěny může jakákoli hodnota přesahující polovinu šířky stěny již způsobit, že jakýkoli povrch projde kolem zdi, protože v tomto bodě může pozice trysky extruderu povrchu již dosáhnout. kolem středu zdi." - -#: fdmprinter.def.json -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Šířka odstranění povrchu" - -#: fdmprinter.def.json -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 "Největší šířka 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í / spodní kůže na šikmých plochách v modelu." - -#: fdmprinter.def.json -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Horní šířka odstranění povrchu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Dolní šířka odstranění povrchu" - -#: fdmprinter.def.json -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 "Největší šířka spodních částí 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 spodní vrstvy na šikmých plochách v modelu." - -#: fdmprinter.def.json -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Vzdálenost rozšíření povrchu" - -#: fdmprinter.def.json -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 "Vzdálenost povrchu je rozšířena do výplně. Vyšší hodnoty umožňují lepší přilnavost povrchu k vzoru výplně a díky tomu lepí přilnavost stěn na sousedních vrstvách k povrchu. Nižší hodnoty šetří množství použitého materiálu." - -#: fdmprinter.def.json -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Horní vzdálenost rozšíření povrchu" - -#: fdmprinter.def.json -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 "Vzdálenost, ve které jsou vrchní vrstvy povrchu rozšířeny do výplně. Vyšší hodnoty umožňují lepší přilnavost povrchu k vzoru výplně a lepší přilnutí stěn nad vrstvou k povrchu. Nižší hodnoty šetří množství použitého materiálu." - -#: fdmprinter.def.json -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Dolní vzdálenost rozšíření povrchu" - -#: fdmprinter.def.json -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 "Vzdálenost spodního povrchu, který se rozšiřuje do výplně. Vyšší hodnoty umožňují lepší přilnavost povrchu k vzoru výplně a lepší přilnavost povrchu ke stěnám na spodní vrstvě. Nižší hodnoty šetří množství použitého materiálu." - -#: fdmprinter.def.json -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Maximální úhel pro rozšíření povrchu" - -#: fdmprinter.def.json -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 "Horní a/nebo dolní povrchy objektu s větším úhlem, než je toto nastavení, nebudou mít své horní/spodní povrchy rozšířeny. Tím se zabrání rozšíření úzkých oblastí, které jsou vytvořeny, když má povrch modelu téměř svislý sklon. Úhel 0° je vodorovný a způsobí, že žádný povrch nebude rozšířen, zatímco úhel 90° je svislý a způsobí, že všechny povrchy budou rozšířeny." - -#: fdmprinter.def.json -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Minimální úhel pro rozšíření povrchu" - -#: fdmprinter.def.json -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 "Oblasti povrchu užší, než je tento, nejsou rozšířeny. Tím se zabrání rozšíření úzkých oblastí vzhledu, které jsou vytvořeny, když má povrch modelu sklon v blízkosti svislé." - -#: fdmprinter.def.json -msgctxt "infill label" -msgid "Infill" -msgstr "Výplň" - -#: fdmprinter.def.json -msgctxt "infill description" -msgid "Infill" -msgstr "Výplň" - -#: fdmprinter.def.json -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Výplňový extrudér" - -#: fdmprinter.def.json -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í." - -#: fdmprinter.def.json -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Hustota výplně" - -#: fdmprinter.def.json -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Upravuje hustotu výplně tisku." - -#: fdmprinter.def.json -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Vzdálenost výplně" - -#: fdmprinter.def.json -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 "Vzdálenost mezi tištěnými výplněmi. Toto nastavení se vypočítá podle hustoty výplně a šířky výplně." - -#: fdmprinter.def.json -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Výplňový vzor" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Mřížka" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Čáry" - -#: fdmprinter.def.json -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Trojúhelníky" - -#: fdmprinter.def.json -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Tri-Hexagony" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Krychle" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Kubické členění" - -#: fdmprinter.def.json -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Oktet" - -#: fdmprinter.def.json -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Čtvrtinově krychlový" - -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Soustředný" - -#: fdmprinter.def.json -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Cik-cak" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Křížek" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "3D Křížek" - -#: fdmprinter.def.json -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Bleskový" - -#: fdmprinter.def.json -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Spojovat čáry výplně" - -#: fdmprinter.def.json -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 "Konce, kde se vzor výplně setkává s vnitřní stěnou, pomocí čáry, která sleduje tvar vnitřní stěny. Aktivace tohoto nastavení může zlepšit přilnavost výplně ke stěnám a snížit vliv výplně na kvalitu svislých povrchů. Vypnutím tohoto nastavení se sníží množství použitého materiálu." - -#: fdmprinter.def.json -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Připojte výplňové polygony" - -#: fdmprinter.def.json -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 "Připojte výplňové cesty tam, kde běží vedle sebe. Pro výplňové vzory, které se skládají z několika uzavřených polygonů, umožňuje toto nastavení výrazně zkrátit dobu cestování." - -#: fdmprinter.def.json -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Směr výplně" +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 "Seznam směrů celého čísla, které je třeba použít. 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žít výchozí úhly (střídavě mezi 45 a 135 stupni, pokud jsou rozhraní poměrně silná nebo 90 stupňů)." #: fdmprinter.def.json msgctxt "infill_angles description" @@ -1894,49 +63,44 @@ msgid "A list of integer line directions to use. Elements from the list are used msgstr "Seznam směrů celého čísla, které je třeba použít. 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, který znamená použití tradičních výchozích úhlů (45 a 135 stupňů pro čáry a cik-cak vzory a 45 stupňů pro všechny ostatní vzory)." #: fdmprinter.def.json -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "X Offset výplně" +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "Seznam polygonů s oblastmi, do kterých nesmí vstoupit tryska." #: fdmprinter.def.json -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "Výplňový vzor se pohybuje touto vzdáleností podél osy X." +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Seznam polygonů s oblastmi, do kterých tisková hlava nemá přístup." #: fdmprinter.def.json -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Y Offset výplně" +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "Část plně obklopená jinou částí může generovat vnější límec, který se dotýká vnitřku obklopující části. Toto nastavení odstraní límec v dané vzdálenosti od vnitřních otvorů." #: fdmprinter.def.json -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "Výplňový vzor se pohybuje touto vzdáleností podél osy Y." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Absolutní výchozí pozice extruderu" #: fdmprinter.def.json -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Náhodné spuštění výplně" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Maximální variabilita adaptivních vrstev" #: fdmprinter.def.json -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 "Náhodně vyberte, který výplňový řádek je vytištěn jako první. To zabraňuje tomu, aby se jeden segment stal nejsilnějším, ale činí to za cenu dalšího pohybu." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Velikost topografie adaptivních vrstev" #: fdmprinter.def.json -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Náplň řádku linky" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Velikost kroku adaptivní vrstvy" #: fdmprinter.def.json -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 "Převeďte každou výplňovou linii na tuto řadu řádků. Další čáry se nepřekrývají, ale vzájemně se vyhýbají. Díky tomu je výplň tužší, ale zvyšuje se doba tisku a spotřeba materiálu." - -#: fdmprinter.def.json -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Počet navíc výplní zdí" +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." #: fdmprinter.def.json msgctxt "infill_wall_line_count description" @@ -1948,284 +112,9 @@ msgstr "" "Tato funkce se může kombinovat s polygony Spojení výplně a spojit veškerou výplň do jediné cesty vytlačování bez nutnosti cest a stáhnutí, pokud je nakonfigurováno správně." #: fdmprinter.def.json -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Shell kubické rozdělení" - -#: fdmprinter.def.json -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 "Přídavek k poloměru od středu každé krychle ke kontrole hranice modelu, aby se rozhodlo, zda má být tato krychle rozdělena. Větší hodnoty vedou k silnější skořápce malých kostek poblíž hranice modelu." - -#: fdmprinter.def.json -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Procento překrytí výplně" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Výplň se překrývá" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Vzdálenost výplně" - -#: fdmprinter.def.json -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 "Vzdálenost pohybového pohybu vloženého za každou výplňovou linii, aby se výplň lepila ke stěnám lépe. Tato možnost je podobná překrývání výplně, ale bez vytlačování a pouze na jednom konci výplňové linky." - -#: fdmprinter.def.json -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Tloušťka výplně vrstvy" - -#: fdmprinter.def.json -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 "Tloušťka výplňového materiálu na vrstvu. Tato hodnota by měla být vždy násobkem výšky vrstvy a je jinak zaoblená." - -#: fdmprinter.def.json -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Postupné kroky výplně" - -#: fdmprinter.def.json -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 "Kolikrát se hustota výplně sníží na polovinu, když se dostane dále pod horní povrchy. Oblasti, které jsou blíže k vrchním povrchům, mají vyšší hustotu až do hustoty výplně." - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Postupná výška kroku výplně" - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "Výška výplně dané hustoty před přepnutím na polovinu hustoty." - -#: fdmprinter.def.json -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Výplň před zdmi" - -#: fdmprinter.def.json -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 "Vytiskněte výplň před tiskem na stěny. První tisk stěn může vést k přesnějším stěnám, ale převisy se zhoršují. Tisk výplně nejprve vede k robustnějším stěnám, ale vzor výplně se někdy může objevit skrz povrch." - -#: fdmprinter.def.json -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Minimální plocha výplně" - -#: fdmprinter.def.json -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Nevytvářejte oblasti výplně menší než tato (místo toho použijte povrch)." - -#: fdmprinter.def.json -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Výplňová podpora" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Výplňový přesahový úhel" - -#: fdmprinter.def.json -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 "Minimální úhel vnitřních přesahů, pro které je přidána výplň. Při hodnotě 0 ° jsou objekty zcela vyplněny výplní, 90 ° neposkytuje výplně." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Tloušťka podpory hrany povrchu" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "Tloušťka další výplně, která podporuje okraje povrchu." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Vrstvy podpory hrany povrchu" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "Počet výplňových vrstev, které podporují okraje povrchu." - -#: fdmprinter.def.json -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Úhel podpory bleskové výplně" - -#: fdmprinter.def.json -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 "Určuje, kdy má vrstva bleskové výplně nad sebou něco, co má podporovat. Zadává se jako úhel a řídí se tloušťkou vrstvy." - -#: fdmprinter.def.json -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Úhel převisu bleskové podpory" - -#: fdmprinter.def.json -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 "Určuje, od jakého úhlu převisu bude vrstva bleskové výplň podporovat model nad sebou." - -#: fdmprinter.def.json -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Úhel ústupu bleskové vrstvy" - -#: fdmprinter.def.json -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 "Koncové body čar výplně jsou zkracovány pro šetření materiálu. Toto nastavení je úhel převisu koncových bodů těchto čar." - -#: fdmprinter.def.json -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Úhel vyrovnávání bleskové vrstvy" - -#: fdmprinter.def.json -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 "Čáry výplně jsou vyrovnávány, aby se snížila doba tisku. Toto je maximální dovolený úhel převisu podél čáry výplně." - -#: fdmprinter.def.json -msgctxt "material label" -msgid "Material" -msgstr "Materiál" - -#: fdmprinter.def.json -msgctxt "material description" -msgid "Material" -msgstr "Materiál" - -#: fdmprinter.def.json -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Výchozí teplota tisknutí" - -#: fdmprinter.def.json -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 "Výchozí teplota použitá pro tisk. To by měla být „základní“ teplota materiálu. Všechny ostatní teploty tisku by měly používat odchylky založené na této hodnotě" - -#: fdmprinter.def.json -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Teplota sestavení" - -#: fdmprinter.def.json -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 "Teplota prostředí, ve kterém se má tisknout. Pokud je to 0, nebude se brát teplota prostředí v potaz." - -#: fdmprinter.def.json -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Teplota při tisku" - -#: fdmprinter.def.json -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Teplota, která se používá pro tisk." - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Teplota při tisku první vrstvy" - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Teplota, která se používá pro tisk první vrstvy." - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Počáteční teplota tisku" - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "Minimální teplota při zahřívání až na teplotu tisku, při které již může tisk začít." - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Konečná teplota tisku" - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "Teplota, na kterou se má začít ochlazovat těsně před koncem tisku." - -#: fdmprinter.def.json -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Modifikátor rychlosti chlazení extruze" - -#: fdmprinter.def.json -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 "Extra rychlost, kterou se tryska během vytlačování ochladí. Stejná hodnota se používá k označení rychlosti zahřívání ztracené při zahřívání během vytlačování." - -#: fdmprinter.def.json -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Výchozí teplota podložky" - -#: fdmprinter.def.json -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 "Výchozí teplota použitá pro vyhřívanou podložku. To by měla být „základní“ teplota podložky. Všechny ostatní teploty tisku by měly používat odchylky založené na této hodnotě" - -#: fdmprinter.def.json -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Teplota podložky" - -#: fdmprinter.def.json -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 "Teplota použitá pro vyhřívanou podložku. Pokud je to 0, podložka se vyhřívat nebude." - -#: fdmprinter.def.json -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Teplota podložky při počáteční vrstvě" - -#: fdmprinter.def.json -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 "Teplota použitá pro vyhřívanou podložku při první vrstvě. Pokud je to 0, podložka se při první vrstvě vyhřívat nebude." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adheze" #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" @@ -2233,1924 +122,19 @@ msgid "Adhesion Tendency" msgstr "Tendence adheze" #: fdmprinter.def.json -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Tendence povrchové přilnavosti." +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 "Upravte míru překrytí mezi stěnami a (koncovými body) osami povrchu jako procento šířky linií pokožky a nejvnitřnější stěny. Mírné překrytí umožňuje, aby se stěny pevně spojily s povrchem. Uvědomte si, že při stejné šířce linie povrchu a stěny může jakékoli procento nad 50% již způsobit, že jakýkoli povrch projde kolem zdi, protože v tomto bodě může pozice trysky extruderu povrchu už dosáhnout kolem středu zeď." #: fdmprinter.def.json -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Povrchová 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 "Upravte míru překrytí mezi stěnami a (koncovými body) osami porvchu. Mírné překrytí umožňuje, aby se stěny pevně spojily s povrchem. Je třeba si uvědomit, že při stejné šířce linie povrchu a stěny může jakákoli hodnota přesahující polovinu šířky stěny již způsobit, že jakýkoli povrch projde kolem zdi, protože v tomto bodě může pozice trysky extruderu povrchu již dosáhnout. kolem středu zdi." #: fdmprinter.def.json -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Povrchová energie." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Faktor zvětšení pro kompenzaci smrštění" - -#: fdmprinter.def.json -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 "Model bude zvětšen tímto faktorem, aby bylo kompenzováno smrštění materiálu po vychladnutí." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Horizontální faktor zvětšení pro kompenzaci smrštění" - -#: fdmprinter.def.json -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 "Model bude zvětšen tímto faktorem ve směru XY (horizontálně), aby bylo kompenzováno smrštění materiálu po vychladnutí." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Vertikální faktor zvětšení pro kompenzaci smrštění" - -#: fdmprinter.def.json -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 "Model bude zvětšen tímto faktorem ve směru Z (vertikálně), aby bylo kompenzováno smrštění materiálu po vychladnutí." - -#: fdmprinter.def.json -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Krystalický materiál" - -#: fdmprinter.def.json -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 "Je tento materiál typem, který se při zahřívání (krystalický) čistě rozpadá, nebo jde o typ, který vytváří dlouhé propletené polymerní řetězce (nekrystalické)?" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Pozice zabraňující úniku" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "Jak daleko musí být materiál zasunut, než přestane vytékat." - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Rychlost návratu při vytékání" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Jak rychle je třeba materiál zatáhnout během výměně filamentu, aby se zabránilo vytečení." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Maximální napnutí filamentu při zahřátí" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Jak daleko může být filament natažen, než se rozbije při zahřátí." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Maximální rychlost napnutí při zahřátí" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "Jak rychle musí být filament zatažen těsně před jeho rozbitím." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Teplota přípravy na napnutí" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "Teplota použitá k čištění materiálu by měla být zhruba stejná jako nejvyšší možná teplota tisku." - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Pozice napnutí" - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "Jak daleko se filament zasune tak, aby se čistě přerušil." - -#: fdmprinter.def.json -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Rychlost navíjení vlákna" - -#: fdmprinter.def.json -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "Rychlost, kterou se má vlákno navíjet zpět, aby se čistě přerušilo." - -#: fdmprinter.def.json -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Teplota přerušení" - -#: fdmprinter.def.json -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "Teplota, při které je filament možno přerušit pro čisté přerušení." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Rychlost proplachování" - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "Jak rychle se materiál po přepnutí na jiný materiál má rozjet." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Délka proplachování" - -#: fdmprinter.def.json -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 "Kolik materiálu použít k vyčištění předchozího materiálu z trysky (v délce vlákna) při přechodu na jiný materiál." - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Rychlost proplachování na konci filamentu" - -#: fdmprinter.def.json -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 "Jak rychle se materiál po výměně prázdné cívky zastírá čerstvou cívkou stejného materiálu." - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Délka proplachu na konci vlákna" - -#: fdmprinter.def.json -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 "Kolik materiálu se použije k propláchnutí předchozího materiálu z trysky (v délce vlákna) při výměně prázdné cívky za novou cívku ze stejného materiálu." - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Maximální doba parkingu" - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "Jak dlouho lze materiál bezpečně uchovávat mimo suché úložiště." - -#: fdmprinter.def.json -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Žádný faktor přesunu zatížení" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flow label" -msgid "Flow" -msgstr "Průtok" - -#: fdmprinter.def.json -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Kompenzace toku: množství vytlačovaného materiálu se vynásobí touto hodnotou." - -#: fdmprinter.def.json -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Průtok u zdi" - -#: fdmprinter.def.json -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Kompenzace průtoku na stěnách." - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Průtok u vnější zdi" - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Kompenzace průtoku na vnější linii stěny." - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Průtok u vnitřních zdí" - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Kompenzace toku na liniích stěn pro všechny linie stěn s výjimkou nejvzdálenějších." - -#: fdmprinter.def.json -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Horní/spodní průtok" - -#: fdmprinter.def.json -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Kompenzace průtoku na horních / dolních řádcích." - -#: fdmprinter.def.json -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Nejlepší horní povrchový tok" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Průtok u výplně" - -#: fdmprinter.def.json -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Kompenzace toku na výplňových vedeních." - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Průtok u límce/okraje" - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Kompenzace toku na límci nebo okrajových liniích." - -#: fdmprinter.def.json -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Průtok u podpor" - -#: fdmprinter.def.json -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Kompenzace toku na podpůrných strukturách." - -#: fdmprinter.def.json -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Průtok rozhraní podpor" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Průtok u podpor střechy" - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Kompenzace toku na podpůrných liniích střechy." - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Průtok u podpor podlahy" - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Kompenzace toku na podpůrných podlahových linkách." - -#: fdmprinter.def.json -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Průtok u hlavní věžě" - -#: fdmprinter.def.json -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Kompenzace toku na hlavních liniích věží." - -#: fdmprinter.def.json -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Průtok při prvotní vrstvě" - -#: fdmprinter.def.json -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 "Kompenzace toku pro první vrstvu: množství materiálu vytlačovaného na počáteční vrstvě se vynásobí touto hodnotou." - -#: fdmprinter.def.json -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Teplota při čekání" - -#: fdmprinter.def.json -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "Teplota trysky, když je pro tisk aktuálně použita jiná tryska." - -#: fdmprinter.def.json -msgctxt "speed label" -msgid "Speed" -msgstr "Rychlost" - -#: fdmprinter.def.json -msgctxt "speed description" -msgid "Speed" -msgstr "Rychlost" - -#: fdmprinter.def.json -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Rychlost tisku" - -#: fdmprinter.def.json -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Rychlost tisku." - -#: fdmprinter.def.json -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Rychlost tisku výplně" - -#: fdmprinter.def.json -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Rychlost tisku výplně." - -#: fdmprinter.def.json -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Rychlost tisku zdi" - -#: fdmprinter.def.json -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Rychlost, s jakou se stěny tisknou." - -#: fdmprinter.def.json -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Rychlost tisku vnější zdi" - -#: fdmprinter.def.json -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 "Rychlost tisku vnějších stěn. Tisk vnější stěny nižší rychlostí zlepšuje konečnou kvalitu kůže. Avšak velký rozdíl mezi rychlostí vnitřní stěny a rychlostí vnější stěny negativně ovlivní kvalitu." - -#: fdmprinter.def.json -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Rychlost tisku vnitřní zdi" - -#: fdmprinter.def.json -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ě." - -#: fdmprinter.def.json -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Rychlost tisku horního povrchu" - -#: fdmprinter.def.json -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "Rychlost tisku povrchových vrstev povrchu." - -#: fdmprinter.def.json -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Rychlost tisku horní/spodní vrstvy" - -#: fdmprinter.def.json -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Rychlost tisku horní a dolní vrstvy." - -#: fdmprinter.def.json -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Rychlost tisku podor" - -#: fdmprinter.def.json -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 "Rychlost tisku nosné struktury. Podpora tisku při vyšších rychlostech může výrazně zkrátit dobu tisku. Kvalita povrchu nosné konstrukce není důležitá, protože je odstraněna po tisku." - -#: fdmprinter.def.json -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Rychlost tisku výplně podpor" - -#: fdmprinter.def.json -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 "Rychlost tisku výplně podpory. Tisk výplně při nižších rychlostech zvyšuje stabilitu." - -#: fdmprinter.def.json -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Rychlost tisku rozhraní podpor" - -#: fdmprinter.def.json -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 "Rychlost, jakou se potiskují střechy a podlahy podpěry. Jejich tisk nižší rychlostí může zlepšit kvalitu převisu." - -#: fdmprinter.def.json -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Rychlost tisku podpor střechy" - -#: fdmprinter.def.json -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 "Rychlost, při které jsou střechy podpěry vytištěny. Jejich tisk nižší rychlostí může zlepšit kvalitu převisu." - -#: fdmprinter.def.json -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Rychlost tisku podpor podlahy" - -#: fdmprinter.def.json -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 "Rychlost tisku potisku podlahy. Tisk s nižší rychlostí může zlepšit přilnutí podpory na váš model." - -#: fdmprinter.def.json -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Rychlost tisku hlavní věže" - -#: fdmprinter.def.json -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 "Rychlost tisku hlavní věže. Pomalejší tisk hlavní věže může zvýšit její stabilitu, je-li adheze mezi různými vlákny suboptimální." - -#: fdmprinter.def.json -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Cestovní rychlost" - -#: fdmprinter.def.json -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Rychlost, jakou se dělají pohyby." - -#: fdmprinter.def.json -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Rychlost prvotní vrstvy" - -#: fdmprinter.def.json -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 "Rychlost počáteční vrstvy. Doporučuje se nižší hodnota pro zlepšení přilnavosti k montážní desce. Nemá vliv na samotné struktury pro přilnavost k podložce (např. límec a raft)." - -#: fdmprinter.def.json -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Rychlost tisku prvotní vrstvy" - -#: fdmprinter.def.json -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 "Rychlost tisku pro počáteční vrstvu. Doporučuje se nižší hodnota pro zlepšení přilnavosti k montážní desce." - -#: fdmprinter.def.json -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Rychlost cestování prvotní vrstvy" - -#: fdmprinter.def.json -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 "Rychlost pohybu se pohybuje v počáteční vrstvě. Doporučuje se nižší hodnota, aby nedocházelo k tažení dříve potištěných částí pryč od sestavovací desky. Hodnota tohoto nastavení lze automaticky vypočítat z poměru mezi rychlostí cestování a rychlostí tisku." - -#: fdmprinter.def.json -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Rychlost tisku límce/okraje" - -#: fdmprinter.def.json -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 "Rychlost tisku Límec a okraje. Normálně se tak děje při počáteční rychlosti vrstvy, ale někdy můžete chtít sukni nebo okraj vytisknout jinou rychlostí." - -#: fdmprinter.def.json -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Rychlost Z Hopu" - -#: fdmprinter.def.json -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 "Rychlost, při které se svislý pohyb Z provádí pro Z Hopy. To je obvykle nižší než rychlost tisku, protože stavba talíře nebo portálového zařízení je obtížnější se pohybovat." - -#: fdmprinter.def.json -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Počet pomalých vrstev" - -#: fdmprinter.def.json -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 "Prvních několik vrstev je vytištěno pomaleji než zbytek modelu, aby se dosáhlo lepší přilnavosti k sestavovací desce a zlepšila se celková úspěšnost tisků. Rychlost se v těchto vrstvách postupně zvyšuje." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Míra vyrovnávání toku" - -#: fdmprinter.def.json -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 "Faktor korekce rychlosti v závislosti na šířce extruze. Při 0 % je rychlost pohybu konstantně na hodnotě Rychlost tisku. Při 100 % je rychlost pohybu upravena tak, aby byl tok (v mm³/s) konstantní. To znamená, že čáry o šířce poloviny nastavení Šířka čáry jsou tištěny dvojnásobnou rychlostí a čáry dvojnásobné šířky jsou tištěny poloviční rychlostí. Hodnota vyšší než 100 % může pomoci kompenzovat vysoký tlak potřebný k extruzi širokých čar." - -#: fdmprinter.def.json -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Povolit ovládání akcelerace" - -#: fdmprinter.def.json -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 "Umožňuje nastavení zrychlení tiskové hlavy. Zvýšení zrychlení může zkrátit dobu tisku za cenu kvality tisku." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Akcelerace tisku" - -#: fdmprinter.def.json -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Zrychlení, s nímž dochází k tisku." - -#: fdmprinter.def.json -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Akcelerace tisku výplně" - -#: fdmprinter.def.json -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "Zrychlení, kterým je výplň vytištěna." - -#: fdmprinter.def.json -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Akcelerace tisku zdi" - -#: fdmprinter.def.json -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Zrychlení, kterým jsou stěny potištěny." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Akcelerace tisku vnější zdi" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "Zrychlení, kterým se potiskují vnější stěny." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Akcelerace tisku vnitřní zdi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Akcelerace tisku horního povrchu" - -#: fdmprinter.def.json -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "Zrychlení, kterým se potiskují vrchní povrchové vrstvy." - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Akcelerace tisku nahoře/dole" - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Zrychlení, kterým se tisknou horní / dolní vrstvy." - -#: fdmprinter.def.json -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Akcelerace tisku podpor" - -#: fdmprinter.def.json -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Zrychlení, kterým je tisknuta nosná struktura." - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Akcelerace tisku výplně podpor" - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Zrychlení, kterým je vytištěna výplň podpory." - -#: fdmprinter.def.json -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Akcelerace tisku rozhraní podpor" - -#: fdmprinter.def.json -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 "Zrychlení, kterým se potiskují střechy a podlahy podložky. Jejich tisk při nižším zrychlení může zlepšit kvalitu převisu." - -#: fdmprinter.def.json -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Akcelerace tisku podpor střechy" - -#: fdmprinter.def.json -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 "Zrychlení, kterým se potiskují střechy podpěry. Jejich tisk při nižším zrychlení může zlepšit kvalitu převisu." - -#: fdmprinter.def.json -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Akcelerace tisku podpor podlahy" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Akcelerace tisku hlavní věže" - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "Zrychlení, kterým je vytištěna hlavní věž." - -#: fdmprinter.def.json -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Cestovní akcelerace" - -#: fdmprinter.def.json -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Zrychlení, kterým se pohybují pohyby." - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Akcelerace při první vrstvě" - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Zrychlení počáteční vrstvy." - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Akcelerace tisku při první vrstvě" - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "Zrychlení během tisku počáteční vrstvy." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Akcelerace při cestách v první vrstvě" - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Zrychlení pro pohyb se pohybuje v počáteční vrstvě." - -#: fdmprinter.def.json -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Akcelerace tisku límce/okraje" - -#: fdmprinter.def.json -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 "Zrychlení, s nímž jsou Límec a okraj vytištěny. Normálně se tak děje s počátečním zrychlením vrstvy, ale někdy budete chtít vytisknout sukni nebo okraje při jiném zrychlení." - -#: fdmprinter.def.json -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Povolit kontrolu trhu" - -#: fdmprinter.def.json -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 "Umožňuje nastavení trhnutí tiskové hlavy, když se mění rychlost v ose X nebo Y. Zvýšení trhnutí může zkrátit dobu tisku za cenu kvality tisku." - -#: fdmprinter.def.json -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Trh při tisku" - -#: fdmprinter.def.json -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "Maximální okamžitá změna rychlosti tiskové hlavy." - -#: fdmprinter.def.json -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Trh při tisku výplně" - -#: fdmprinter.def.json -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ě." - -#: fdmprinter.def.json -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Okamžitá rychlost při tisku zdi" - -#: fdmprinter.def.json -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "Maximální okamžitá změna rychlosti, se kterou se stěny tisknou." - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Okamžitá rychlost při tisku vnější zdi" - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "Maximální okamžitá změna rychlosti tisku vnějších stěn." - -#: fdmprinter.def.json -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Okamžitá rychlost při tisku vnitřní zdi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Okamžitá rychlost při tisku horního povrchu" - -#: fdmprinter.def.json -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "Maximální okamžitá změna rychlosti, se kterou se potiskují vrchní povrchové vrstvy." - -#: fdmprinter.def.json -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Okamžitá rychlost při tisku vršku/spodku" - -#: fdmprinter.def.json -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "Maximální okamžitá změna rychlosti, se kterou se tisknou horní / dolní vrstvy." - -#: fdmprinter.def.json -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Okamžitá rychlost při tisku podpor" - -#: fdmprinter.def.json -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "Maximální okamžitá změna rychlosti, se kterou se tiskne nosná struktura." - -#: fdmprinter.def.json -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Okamžitá rychlost při tisku výplně podpor" - -#: fdmprinter.def.json -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "Maximální okamžitá změna rychlosti, s níž je vytištěna výplň podpory." - -#: fdmprinter.def.json -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Okamžitá rychlost při tisku rozhraní podpor" - -#: fdmprinter.def.json -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "Maximální okamžitá změna rychlosti tisku potisků střech a podlah." - -#: fdmprinter.def.json -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Okamžitá rychlost při tisku podpor střechy" - -#: fdmprinter.def.json -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "Maximální okamžitá změna rychlosti, se kterou jsou střechy nosiče vytištěny." - -#: fdmprinter.def.json -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Okamžitá rychlost při tisku podpor podlahy" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Okamžitá rychlost při tisku hlavní věže" - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "Maximální okamžitá změna rychlosti, se kterou se tiskne hlavní věž." - -#: fdmprinter.def.json -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Okamžitá rychlost při cestování" - -#: fdmprinter.def.json -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "Maximální okamžitá změna rychlosti, se kterou se pohybují pohyby." - -#: fdmprinter.def.json -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Okamžitá rychlost při prvotní vrstvě" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Okamžitá rychlost při tisku prvotní vrstvy" - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "Maximální okamžitá změna rychlosti během tisku počáteční vrstvy." - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Okamžitá rychlost při cestování nad prvotní vrstvou" - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Zrychlení pro pohyb se pohybuje v počáteční vrstvě." - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Okamžitá rychlost při tisku límce/okraje" - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "Maximální okamžitá změna rychlosti, se kterou jsou Límec a okraj vytištěny." - -#: fdmprinter.def.json -msgctxt "travel label" -msgid "Travel" -msgstr "Pohyb" - -#: fdmprinter.def.json -msgctxt "travel description" -msgid "travel" -msgstr "cestování" - -#: fdmprinter.def.json -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Povolit retrakci" - -#: fdmprinter.def.json -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Zasunout vlákno, když se tryska pohybuje po netisknutelné oblasti." - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Zasunout při změně vrstvy" - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "Zasuňte vlákno, když se tryska pohybuje do další vrstvy." - -#: fdmprinter.def.json -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Délka zatažení" - -#: fdmprinter.def.json -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "Délka materiálu zasunutého během pohybu zasunutí." - -#: fdmprinter.def.json -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Rychlost zatažení" - -#: fdmprinter.def.json -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "Rychlost, při které je vlákno zasunuto a aktivováno během pohybu zasunutí." - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Rychlost zatažení vlákna" - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "Rychlost, při které se vlákno během zatahovacího pohybu stahuje." - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Primární rychlost zatažení" - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "Rychlost, se kterou se vlákno během navíjení pohybuje." - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Množství zatažení navíc" - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Během pohybu může nějaký materiál uniknout pryč, což může být kompenzováno zde." - -#: fdmprinter.def.json -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Minimální pojezd" - -#: fdmprinter.def.json -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 "Minimální vzdálenost potřebná k tomu, aby ke stažení došlo. To pomáhá dosáhnout menšího počtu stažení v malé oblasti." - -#: fdmprinter.def.json -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Maximální pojezd" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Minimální vzdálenost extruze" - -#: fdmprinter.def.json -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 "Okno, ve kterém je vynucován maximální počet stažení. Tato hodnota by měla být přibližně stejná jako retrakční vzdálenost, takže je účinně omezen počet opakování protažení stejnou vrstvou materiálu." - -#: fdmprinter.def.json -msgctxt "limit_support_retractions label" -msgid "Limit Support Retractions" -msgstr "Omezení retrakce podpor" - -#: fdmprinter.def.json -msgctxt "limit_support_retractions description" -msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -msgstr "Při přechodu od podpory k podpoře v přímé linii vynechejte stažení. Povolením tohoto nastavení se šetří čas tisku, ale může to vést k nadměrnému strunění uvnitř podpůrné struktury." - -#: fdmprinter.def.json -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Režím Combing" - -#: fdmprinter.def.json -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 udržuje trysku v již vytištěných oblastech při cestování. To má za následek mírně delší pohybové tahy, ale snižuje potřebu zatažení. Pokud je combing vyplý, materiál se stáhne a tryska se pohybuje v přímce k dalšímu bodu. Je také možné vyhnout se combingu na horních / dolních částech povrchu nebo jen combing uvnitř výplně." - -#: fdmprinter.def.json -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Vyp" - -#: fdmprinter.def.json -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Vše" - -#: fdmprinter.def.json -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Ne na vnějším povrchu" - -#: fdmprinter.def.json -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Ne v povrchu" - -#: fdmprinter.def.json -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "V rámci výplně" - -#: fdmprinter.def.json -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Maximální vzdálenost Combing-u bez retrakce" - -#: fdmprinter.def.json -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 "Pokud je větší než nula, combingové pohyby delší než tato vzdálenost budou používat retrakci. Nula znamená, že se při combingových pohybech retrakce provádět nebudou." - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Zasuňte před vnější stěnu" - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Vždy zatáhnout filament, když se přesouvá k začátku vnější zdi." - -#: fdmprinter.def.json -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Při cestování se vyhněte tištěným součástem" - -#: fdmprinter.def.json -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 "Při cestování se tryska vyhýbá již potištěným částem. Tato možnost je k dispozici, pouze pokud je povolen combing." - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Při pohybu se vyhnout podporám" - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "Při cestování se tryska vyhýbá již potištěným podpěrám. Tato možnost je k dispozici, pouze pokud je combing povolen." - -#: fdmprinter.def.json -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Vzdálenost vyhnutí se při pohybu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "Start vrstvy X" - -#: fdmprinter.def.json -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "Souřadnice X pozice poblíž místa, kde má být nalezen díl pro zahájení tisku každé vrstvy." - -#: fdmprinter.def.json -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Start vrstvy Y" - -#: fdmprinter.def.json -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "Souřadnice Y pozice poblíž místa, kde má být nalezen díl pro zahájení tisku každé vrstvy." - -#: fdmprinter.def.json -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Z Hop po zatažení" - -#: fdmprinter.def.json -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 "Kdykoli je provedeno zasunutí, sestavovací deska se 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." - -#: fdmprinter.def.json -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Z Hop pouze přes tištěné díly" - -#: fdmprinter.def.json -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í." - -#: fdmprinter.def.json -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Výška Z Hopu" - -#: fdmprinter.def.json -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Výškový rozdíl při provádění Z-hopu." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Z Hop po přepnutí extruderu" - -#: fdmprinter.def.json -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 "Poté, co se stroj přepnul z jednoho extrudéru na druhý, sestavovací deska se spustí, aby se vytvořila vůle mezi tryskou a tiskem. Tím se zabrání tomu, aby tryska zanechávala vyteklý materiál na vnější straně tisku." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Výška Z Hopu po přepnutí extruderu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cooling label" -msgid "Cooling" -msgstr "Chlazení" - -#: fdmprinter.def.json -msgctxt "cooling description" -msgid "Cooling" -msgstr "Chlazení" - -#: fdmprinter.def.json -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Povolit chlazení při tisku" - -#: fdmprinter.def.json -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 "Aktivuje ventilátory chlazení tisku během tisku. Ventilátory zlepšují kvalitu tisku na vrstvách s krátkými časy a přemostěním / přesahy." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Rychlost větráku" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "Rychlost otáčení ventilátorů chlazení tisku." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Normální rychlost ventilátoru" - -#: fdmprinter.def.json -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 "Rychlost, při které se fanoušci točí před dosažením prahu. Když vrstva tiskne rychleji, než je prahová hodnota, rychlost ventilátoru se postupně naklání směrem k maximální rychlosti ventilátoru." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Maximální rychlost ventilátoru" - -#: fdmprinter.def.json -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 "Rychlost, kterou se fanoušci otáčejí při minimální době vrstvy. Rychlost ventilátoru se postupně zvyšuje mezi normální rychlostí ventilátoru a maximální rychlostí ventilátoru, když je dosaženo prahu." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Pravidelná / maximální prahová rychlost ventilátoru" - -#: fdmprinter.def.json -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 "Čas vrstvy, který nastavuje práh mezi normální rychlostí ventilátoru a maximální rychlostí ventilátoru. Vrstvy, které se tisknou pomaleji než tentokrát, používají běžnou rychlost ventilátoru. U rychlejších vrstev se rychlost ventilátoru postupně zvyšuje směrem k maximální rychlosti ventilátoru." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Počáteční rychlost ventilátoru" - -#: fdmprinter.def.json -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 "Rychlost, kterou se ventilátory otáčejí na začátku tisku. V následujících vrstvách se rychlost ventilátoru postupně zvyšuje až na vrstvu odpovídající normální rychlosti ventilátoru ve výšce." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Pravidelná rychlost ventilátoru ve výšce" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Normální rychlost ventilátoru ve vrstvě" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Minimální doba vrstvy" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Minimální rychlost" - -#: fdmprinter.def.json -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 "Minimální rychlost tisku, navzdory zpomalení kvůli minimální době vrstvy. Pokud by tiskárna příliš zpomalila, byl by tlak v trysce příliš nízký a výsledkem by byla špatná kvalita tisku." - -#: fdmprinter.def.json -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Zvednout hlavu" - -#: fdmprinter.def.json -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 "Pokud je minimální rychlost zasažena z důvodu minimálního času vrstvy, zvedněte hlavu z tisku a vyčkejte další čas, dokud není dosaženo minimálního času vrstvy." - -#: fdmprinter.def.json -msgctxt "support label" -msgid "Support" -msgstr "Podpora" - -#: fdmprinter.def.json -msgctxt "support description" -msgid "Support" -msgstr "Podpora" - -#: fdmprinter.def.json -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Generovat podpory" - -#: fdmprinter.def.json -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 "Vytvořte struktury pro podporu částí modelu, které mají přesahy. Bez těchto struktur by se takové části během tisku zhroutily." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extruder pro podpory" - -#: fdmprinter.def.json -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "Vytlačovací souprava použitá pro tisk podpory. Používá se při vícenásobném vytlačování." - -#: fdmprinter.def.json -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extruder pro vnitřní podpory" - -#: fdmprinter.def.json -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 "Vytlačovací souprava použitá pro tisk výplně podpory. Používá se při vícenásobném vytlačování." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extruder pro první vrstvu" - -#: fdmprinter.def.json -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 "Vytlačovací souprava použitá pro tisk první vrstvy výplně podpory. Používá se při vícenásobném vytlačování." - -#: fdmprinter.def.json -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extruder pro rozhraní podpor" - -#: fdmprinter.def.json -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 "Vytlačovací souprava použitá pro tisk střech a podlah podpory. Používá se při vícenásobném vytlačování." - -#: fdmprinter.def.json -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extruder pro podporu střech" - -#: fdmprinter.def.json -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 "Vytlačovací souprava použitá pro tisk střech podpory. Používá se při vícenásobném vytlačování." - -#: fdmprinter.def.json -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extruder pro podporu podlahy" - -#: fdmprinter.def.json -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 "Vytlačovací souprava použitá pro tisk podlah podpory. Používá se při vícenásobném vytlačování." - -#: fdmprinter.def.json -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Podpůrná struktura" - -#: fdmprinter.def.json -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 "Volí mezi dostupnými technikami pro generování podpory. „Normální“ podpora vytváří podpůrnou strukturu přímo pod převislými částmi a upouští tyto oblasti přímo dolů. „Stromová“ podpora vytváří větve směrem k převislým oblastem, které podporují model na koncích těchto větví, a umožňuje větvím procházet se kolem modelu a podporovat je co nejvíce z konstrukční desky." - -#: fdmprinter.def.json -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normální" - -#: fdmprinter.def.json -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Strom" - -#: fdmprinter.def.json -msgctxt "support_tree_angle label" -msgid "Tree Support Branch Angle" -msgstr "Úhel větve stromové podpory" - -#: fdmprinter.def.json -msgctxt "support_tree_angle description" -msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "Úhel větví. Použijte nižší úhel, aby byly více vertikální a stabilnější. K dosažení většího dosahu použijte vyšší úhel." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance label" -msgid "Tree Support Branch Distance" -msgstr "Vzdálenost větví stromu" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance description" -msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -msgstr "Jak daleko od sebe musí být větve, když se dotýkají modelu. Zmenšení této vzdálenosti způsobí, že se stromová podpora dotkne modelu ve více bodech, což způsobí lepší přesah, ale těžší odstranění podpory." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter label" -msgid "Tree Support Branch Diameter" -msgstr "Průměr větve podpěry stromu" - -#: fdmprinter.def.json -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 "Průměr větve stromu podpory Průměr nejtenčí větve stromu podpory. Silnější větve jsou odolnější. Větve směrem k základně budou silnější než tato." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter_angle label" -msgid "Tree Support Branch Diameter Angle" -msgstr "Průměr úhlu větve podpěry stromu" - -#: fdmprinter.def.json -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 "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." - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution label" -msgid "Tree Support Collision Resolution" -msgstr "Stromová podpora - rozlišení kolize" - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution description" -msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -msgstr "Rozlišení pro výpočet kolizí, aby nedošlo k nárazu do modelu. Nastavením této nižší se vytvoří přesnější stromy, které selhávají méně často, ale dramaticky se zvyšuje doba slicování." - -#: fdmprinter.def.json -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Rozmistění podpor" - -#: fdmprinter.def.json -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 "Upravuje umístění podpůrných struktur. Umístění lze nastavit tak, aby se dotýkalo podložky nebo kdekoli. Pokud je nastavena všude, podpůrné struktury budou také vytištěny na modelu." - -#: fdmprinter.def.json -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Dotýká se podložky" - -#: fdmprinter.def.json -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Všude" - -#: fdmprinter.def.json -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Podpora převislého úhlu" - -#: fdmprinter.def.json -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 "Minimální úhel přesahů, pro které je přidána podpora. Při hodnotě 0° jsou podporovány všechny přesahy, 90° neposkytuje žádnou podporu." - -#: fdmprinter.def.json -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Vzor podpor" - -#: fdmprinter.def.json -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 "Vzor podpůrných struktur tisku. Výsledkem různých dostupných možností je robustní nebo snadno odstranitelná podpora." - -#: fdmprinter.def.json -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Čáry" - -#: fdmprinter.def.json -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Mřížka" - -#: fdmprinter.def.json -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Trojúhelníky" - -#: fdmprinter.def.json -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Soustředný" - -#: fdmprinter.def.json -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Křížek" - -#: fdmprinter.def.json -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" - -#: fdmprinter.def.json -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Počet podpůrných stěn" - -#: fdmprinter.def.json -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 "Počet stěn, které mají obklopovat, se vyplní. Přidání zdi může zajistit spolehlivější podporu tisku a lepší podporu převisů, ale zvyšuje dobu tisku a spotřebovaný materiál." - -#: fdmprinter.def.json -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Spojovat linky podpor" - -#: fdmprinter.def.json -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 "Spojte konce podpůrných linek dohromady. Aktivace tohoto nastavení může zvýšit vaši podporu a snížit podextruzi, ale bude to stát více materiálu." - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Spojovat cig-cag podpory" - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Připojte ZigZagy. Tím se zvýší pevnost nosné struktury klikatá zag." - -#: fdmprinter.def.json -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Hustota podpor" - -#: fdmprinter.def.json -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 "Nastavuje hustotu podpůrné struktury. Vyšší hodnota má za následek lepší přesahy, ale podpory je těžší odstranit." - -#: fdmprinter.def.json -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Vzdálenost mezi linkami podpor" - -#: fdmprinter.def.json -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Vzdálenost mezi tištěnými liniemi podpůrné struktury. Toto nastavení se vypočítá podle hustoty podpory." - -#: fdmprinter.def.json -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Počáteční vzdálenost linek podpory" - -#: fdmprinter.def.json -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 "Vzdálenost mezi tištěnými liniemi základní struktury podpory. Toto nastavení se vypočítá podle hustoty podpory." - -#: fdmprinter.def.json -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Směry podpůrných výplní linek" - -#: fdmprinter.def.json -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 "Seznam směrů celého čísla, které je třeba použít. 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žít výchozí úhel 0 stupňů." - -#: fdmprinter.def.json -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Povolit okrajové podpory" - -#: fdmprinter.def.json -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 "Vytvořte okraj v podpůrných výplňových oblastech první vrstvy. Tento okraj je vytištěn pod podpěrou, ne kolem ní. Povolením tohoto nastavení se zvýší přilnavost podpory k podložce." - -#: fdmprinter.def.json -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Šířka okrajových podpor" - -#: fdmprinter.def.json -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 "Šířka okraje pro tisk pod podpěrou. Větší okraj zvyšuje přilnavost ke podložce za cenu nějakého dalšího materiálu." - -#: fdmprinter.def.json -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Počet podpůrných čar okraje" - -#: fdmprinter.def.json -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ý okraj. Více okrajových linií zvyšuje přilnavost k stavební desce za cenu nějakého dalšího materiálu." - -#: fdmprinter.def.json -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Vzdálenost Z podor" - -#: fdmprinter.def.json -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. This value is rounded up to a multiple of the layer height." -msgstr "Vzdálenost od horní / dolní nosné struktury k tisku. Tato mezera poskytuje vůli pro odstranění podpěr po vytištění modelu. Tato hodnota je zaokrouhlena nahoru na násobek výšky vrstvy." - -#: fdmprinter.def.json -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Vzdálenost horní podpory" - -#: fdmprinter.def.json -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Vzdálenost od horní strany podpory k tisku." - -#: fdmprinter.def.json -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Vzdálenost spodní podpory" - -#: fdmprinter.def.json -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Vzdálenost od tisku ke spodní části podpěry." - -#: fdmprinter.def.json -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Vzdálenost podpor X/Y" - -#: fdmprinter.def.json -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Vzdálenost podpůrné struktury od tisku ve směru X / Y." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Priorita vzdálenost podpor" - -#: fdmprinter.def.json -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 "Zda podpůrná vzdálenost X / Y přepíše podpůrnou vzdálenost Z nebo naopak. Když X / Y přepíše Z, X / Y vzdálenost může vytlačit podporu z modelu, což ovlivňuje skutečnou Z vzdálenost k převisu. Můžeme to zakázat tím, že nepoužijeme vzdálenost X / Y kolem převisů." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y přepisuje Z" - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z přepisuje X/Y" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Minimální vzdálenost podpor X/Y" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Vzdálenost podpor od převisu ve směru X/Y." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Výška schodu podpěrného schodiště" - -#: fdmprinter.def.json -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 "Výška stupňů schodišťového dna podpory spočívá na modelu. Nízká hodnota ztěžuje odstranění podpory, ale příliš vysoké hodnoty mohou vést k nestabilním podpůrným strukturám. Nastavením na nulu vypnete chování podobné schodišti." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Maximální šířka schodu podpěrného schodiště" - -#: fdmprinter.def.json -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 "Maximální šířka schodů schodišťového dna podpory spočívá na modelu. Nízká hodnota ztěžuje odstranění podpory, ale příliš vysoké hodnoty mohou vést k nestabilním podpůrným strukturám." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Podpora Schodu Minimální Úhel Sklonu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Vzdálenost propojení podpor" - -#: fdmprinter.def.json -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 "Maximální vzdálenost mezi podpůrnými strukturami ve směru X / Y. Když jsou oddělené struktury blíže k sobě než tato hodnota, struktury se sloučí do jedné." - -#: fdmprinter.def.json -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Expanze horizontálnách podpor" - -#: fdmprinter.def.json -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 "Množství ofsetu aplikovaného na všechny podpůrné polygony v každé vrstvě. Pozitivní hodnoty mohou vyhladit oblasti podpory a vést k robustnější podpoře." - -#: fdmprinter.def.json -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Tloušťka vrstvy výplně podpory" - -#: fdmprinter.def.json -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 "Tloušťka na vrstvu nosného výplňového materiálu. Tato hodnota by měla být vždy násobkem výšky vrstvy a je jinak zaoblená." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Postupné kroky vyplňování podpory" - -#: fdmprinter.def.json -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 "Počet opakování, aby se hustota výplně podpory snížila na polovinu, když se dostaneme dále pod horní povrchy. Oblasti, které jsou blíže k vrchním povrchům, mají vyšší hustotu až do podpůrné hustoty výplně." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Výška výplně krokové podpory" - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "Výška podpůrné výplně dané hustoty před přepnutím na polovinu hustoty." - -#: fdmprinter.def.json -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Minimální oblast pro podporu" - -#: fdmprinter.def.json -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 "Minimální velikost plochy pro podpůrné polygony. Polygony, které mají plochu menší než tato hodnota, nebudou generovány." - -#: fdmprinter.def.json -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Povolit rozhraní podpor" - -#: fdmprinter.def.json -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 "Vytvořte husté rozhraní mezi modelem a podporou. Tím se vytvoří povrch v horní části podpory, na které je model vytištěn, a ve spodní části podpory, kde spočívá na modelu." - -#: fdmprinter.def.json -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Povolit podpory stěch" - -#: fdmprinter.def.json -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 "Vytvořte hustou desku materiálu mezi horní částí podpory a modelem. Tím vytvoříte vzhled mezi modelem a podporou." - -#: fdmprinter.def.json -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Povolit podpory podlah" - -#: fdmprinter.def.json -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 "Vytvořte hustou desku materiálu mezi spodní částí nosiče a modelem. Tím vytvoříte vzhled mezi modelem a podporou." - -#: fdmprinter.def.json -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Tloušťka rozhraní podpor" - -#: fdmprinter.def.json -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 "Tloušťka rozhraní podpěry, kde se dotýká modelu na spodní nebo horní straně." - -#: fdmprinter.def.json -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Tloušťka podpor střechy" - -#: fdmprinter.def.json -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 "Tloušťka nosných střech. Tím se řídí množství hustých vrstev v horní části nosiče, na kterém model spočívá." - -#: fdmprinter.def.json -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Tloušťka podpor podlahy" - -#: fdmprinter.def.json -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 "Tloušťka nosných podlah. Tím se řídí počet hustých vrstev, které jsou vytištěny na místech modelu, na kterých leží podpora." - -#: fdmprinter.def.json -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Rozlišení rozhraní podpor" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Hustota rozhraní podpor" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Upravuje hustotu výplně tisku." #: fdmprinter.def.json msgctxt "support_interface_density description" @@ -4158,898 +142,19 @@ msgid "Adjusts the density of the roofs and floors of the support structure. A h msgstr "Upravuje hustotu střech a podlah nosné konstrukce. Vyšší hodnota má za následek lepší přesahy, ale podpory je těžší odstranit." #: fdmprinter.def.json -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Hustota podpor střechy" +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 "Nastavuje hustotu podpůrné struktury. Vyšší hodnota má za následek lepší přesahy, ale podpory je těžší odstranit." #: fdmprinter.def.json -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 "Hustota střech nosné konstrukce. Vyšší hodnota má za následek lepší přesahy, ale podpory je těžší odstranit." +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Nastavuje průměr použitého vlákna filamentu. Srovnejte tuto hodnotu s průměrem použitého vlákna." #: fdmprinter.def.json -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Vzdálenost linek podpor střechy" - -#: fdmprinter.def.json -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 "Vzdálenost mezi tištěnými oporami střechy. Toto nastavení se vypočítá podle hustoty nosné střechy, ale lze ji upravit samostatně." - -#: fdmprinter.def.json -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Hustota podpor podlahy" - -#: fdmprinter.def.json -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 "Hustota podlah nosné konstrukce. Vyšší hodnota vede k lepší adhezi podpory k horní části modelu." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Vzdálenost linek podpor podlahy" - -#: fdmprinter.def.json -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 "Vzdálenost mezi tištěnými podpůrnými podlahovými liniemi. Toto nastavení se vypočítá podle hustoty podpůrné podlahy, ale lze ji upravit samostatně." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Vzor rozhraní podpor" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Vzor, pomocí kterého je vytištěno rozhraní podpory s modelem." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Čáry" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Mřížka" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Trojúhelníky" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Soustředný" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Vzor podpor střechy" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "Vzor, kterým se tisknou střechy podpěry." - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Čáry" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Mřížka" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Trojúhelníky" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Soustředný" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Vzor podpor podlahy" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "Vzor, kterým se potiskují podlahy podpěry." - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Čáry" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Mřížka" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Trojúhelníky" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Soustředný" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Minimální plocha pro tisk rozhraní podpory" - -#: fdmprinter.def.json -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 "Minimální velikost plochy pro polygony rozhraní podpory. Polygony, které mají plochu menší než tato hodnota, budou vytištěny jako normální podpora." - -#: fdmprinter.def.json -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Minimální oblast pro podporu střechy" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Minimální oblast pro podporu podlahy" - -#: fdmprinter.def.json -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 "Minimální velikost plochy podlah podpěry. Polygony, které mají plochu menší než tato hodnota, budou vytištěny jako normální podpora." - -#: fdmprinter.def.json -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Horizontální rozšíření rozhraní podpor" - -#: fdmprinter.def.json -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Množství offsetu aplikovaného na polygony rozhraní podpory." - -#: fdmprinter.def.json -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Horizontální expanze podpory střechy" - -#: fdmprinter.def.json -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Množství offsetu aplikovaný na střechy podpěry." - -#: fdmprinter.def.json -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Horizontální expanze podpory podlah" - -#: fdmprinter.def.json -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Částka kompenzace použitá na podlahy podpory." - -#: fdmprinter.def.json -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Směrové linie rozhraní podpor" - -#: fdmprinter.def.json -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 "Seznam směrů celého čísla, které je třeba použít. 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žít výchozí úhly (střídavě mezi 45 a 135 stupni, pokud jsou rozhraní poměrně silná nebo 90 stupňů)." - -#: fdmprinter.def.json -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Směrové linie rozhraní střechy" - -#: fdmprinter.def.json -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 "Seznam směrů celého čísla, které je třeba použít. 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žít výchozí úhly (střídavě mezi 45 a 135 stupni, pokud jsou rozhraní poměrně silná nebo 90 stupňů)." - -#: fdmprinter.def.json -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Směrové linie rozhraní podlahy" - -#: fdmprinter.def.json -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 "Seznam směrů celého čísla, které je třeba použít. 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žít výchozí úhly (střídavě mezi 45 a 135 stupni, pokud jsou rozhraní poměrně silná nebo 90 stupňů)." - -#: fdmprinter.def.json -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Přepsání rychlosti ventilátoru" - -#: fdmprinter.def.json -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Je-li tato funkce povolena, mění se rychlost ventilátoru chlazení tisku pro oblasti kůže bezprostředně nad podporou." - -#: fdmprinter.def.json -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Rychlost ventilátoru při tisku podpor povrch" - -#: fdmprinter.def.json -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 "Procentuální rychlost ventilátoru, která se použije při tisku oblastí kůže bezprostředně nad podporou. Použití vysoké rychlosti ventilátoru může usnadnit odebrání podpory." - -#: fdmprinter.def.json -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Používat věže" - -#: fdmprinter.def.json -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 podpoře malých převislých oblastí použijte specializované věže. Tyto věže mají větší průměr než oblast, kterou podporují. V blízkosti převisu se průměr věží zmenšuje a vytváří střechu." - -#: fdmprinter.def.json -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Průměr věže" - -#: fdmprinter.def.json -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "Průměr speciální věže." - -#: fdmprinter.def.json -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Maximální průměr podporovaný věží" - -#: fdmprinter.def.json -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 "Maximální průměr ve směru X / Y malé plochy, která má být podepřena specializovanou podpůrnou věží." - -#: fdmprinter.def.json -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Úhel střechy věže" - -#: fdmprinter.def.json -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 "Úhel střechy věže. Vyšší hodnota vede ke špičatým střechám věží, nižší hodnota vede ke zploštěním střech věží." - -#: fdmprinter.def.json -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Podpory pod celou sítí" - -#: fdmprinter.def.json -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 "Podpořte všude pod podpůrnou sítí, aby v podpůrné síti nebyl přesah." - -#: fdmprinter.def.json -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "Scéna Má Podpůrné Masky" - -#: fdmprinter.def.json -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Ve scéně existují podpůrné masky. Toto nastavení je kontrolováno Curou." - -#: fdmprinter.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adheze topné podložky" - -#: fdmprinter.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adheze" - -#: fdmprinter.def.json -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Povolit primární blob" - -#: fdmprinter.def.json -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 "Zda se vlákno před tiskem připraví blobem. Zapnutím tohoto nastavení zajistíte, že extrudér bude mít před tiskem materiál připravený v trysce. Tisk límce nebo Sukně může také fungovat jako základní nátěr, takže vypnutí tohoto nastavení ušetří čas." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Primární pozice extruderu X" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Souřadnice X polohy, ve které tryska naplní tlak na začátku tisku." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Primární pozice extruderu Y" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Souřadnice Y polohy, ve které tryska naplní tlak na začátku tisku." - -#: fdmprinter.def.json -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Typ přilnavosti podložky" - -#: fdmprinter.def.json -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 "Různé možnosti, které pomáhají zlepšit jak vytlačování, tak adhezi k sestavovací desce. Límec přidává jedinou vrstvu roviny kolem základny vašeho modelu, aby se zabránilo deformaci. Raft přidává tlustou mřížku se střechou pod modelem. Okraj je čára vytištěná kolem modelu, ale není k modelu připojena." - -#: fdmprinter.def.json -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Okraj" - -#: fdmprinter.def.json -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Límec" - -#: fdmprinter.def.json -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" - -#: fdmprinter.def.json -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Žádný" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Extruder pro adhezi podložky" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "Vytlačovací souprava použitá pro tisk límce / okraje / raftu. Používá se při vícenásobném vytlačování." - -#: fdmprinter.def.json -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Extruder okraje/límce" - -#: fdmprinter.def.json -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 "Vytlačovací souprava použitá pro tisk okraje nebo límce. Používá se při vícenásobném vytlačování." - -#: fdmprinter.def.json -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Extruder základny raftu" - -#: fdmprinter.def.json -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 "Vytlačovací souprava použitá pro tisk první vrstvy raftu. Používá se při vícenásobném vytlačování." - -#: fdmprinter.def.json -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Extruder vnitřku raftu" - -#: fdmprinter.def.json -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 "Vytlačovací souprava použitá pro tisk vnitřních vrstev raftu. Používá se při vícenásobném vytlačování." - -#: fdmprinter.def.json -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Extruder povrchu raftu" - -#: fdmprinter.def.json -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 "Vytlačovací souprava použitá pro tisk horní vrstvy (vrstev) raftu. Používá se při vícenásobném vytlačování." - -#: fdmprinter.def.json -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Počet linek okraje" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Vzdálenost okraj" - -#: fdmprinter.def.json -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 "" -"Vodorovná vzdálenost mezi okrajem a první vrstvou tisku.\n" -"Toto je minimální vzdálenost. Z této vzdálenosti se bude rozprostírat více linek okraje." - -#: fdmprinter.def.json -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Minimální délka límce/okraje" - -#: fdmprinter.def.json -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 "Minimální délka límce nebo okraje. Pokud tuto délku nedosáhnou všechny linie sukní nebo okrajů dohromady, přidává se více sukní nebo okrajových linií, dokud není dosaženo minimální délky. Poznámka: Pokud je počet řádků nastaven na 0, ignoruje se." - -#: fdmprinter.def.json -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Šířka límce" - -#: fdmprinter.def.json -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 "Vzdálenost od modelu k nejzazší linii límce. Větší límec zvyšuje přilnavost k podložce, ale také snižuje efektivní tiskovou plochu." - -#: fdmprinter.def.json -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Počet linek pro límec" - -#: fdmprinter.def.json -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 "Počet řádků použitých pro límec. Více linek límce zvyšuje přilnavost k podložce, ale také snižuje efektivní tiskovou plochu." - -#: fdmprinter.def.json -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Vzdálenost límce" - -#: fdmprinter.def.json -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 "Vodorovná vzdálenost mezi první čarou límce a obrysem první vrstvy tisku. Malá mezera může usnadnit demontáž límce a přitom poskytovat tepelné výhody." - -#: fdmprinter.def.json -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Límec nahrazuje podpory" - -#: fdmprinter.def.json -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 "Zajistěte, aby Límec bylo natištěno kolem modelu, i když by tento prostor byl jinak obsazen podporou. To nahradí některé regiony první vrstvy podpory okrajovými regiony." - -#: fdmprinter.def.json -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Límec pouze venku" - -#: fdmprinter.def.json -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í okraje, který je třeba následně odstranit, zatímco to tolik nesnižuje přilnavost k podložce." - -#: fdmprinter.def.json -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Místo navíc kolem raftu" - -#: fdmprinter.def.json -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 "Pokud je raft povolen, jedná se o další oblast voru kolem modelu, která má také raft. Zvětšení tohoto okraje vytvoří silnější raft při použití více materiálu a ponechání menší plochy pro váš tisk." - -#: fdmprinter.def.json -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Vyhlazování raftu" - -#: fdmprinter.def.json -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 "Toto nastavení řídí, kolik vnitřních rohů v obrysu raftů je zaobleno. Vnitřní rohy jsou zaokrouhleny na půlkruh s poloměrem rovným zde uvedené hodnotě. Toto nastavení také odstraní otvory v obrysu raftu, které jsou menší než takový kruh." - -#: fdmprinter.def.json -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Vzduchový mezera v raftu" - -#: fdmprinter.def.json -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 "Mezera mezi finální vrstvou raftu a první vrstvou modelu. Pouze první vrstva se zvýší o tuto částku, aby se snížilo spojení mezi vorovou vrstvou a modelem. Usnadňuje oloupání voru." - -#: fdmprinter.def.json -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Počáteční překrytí vrstvy Z" - -#: fdmprinter.def.json -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ů." - -#: fdmprinter.def.json -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Vrchní vrstvy raftu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Tloušťka horní vrstvy raftu" - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Tloušťka vrstev vrchních vrstev raftu." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Šířka horní linky raftu" - -#: fdmprinter.def.json -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 "Šířka čar v horním povrchu raftu. Mohou to být tenké čáry, takže horní část raftu je hladká." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Mezera ve horních vrstvách raftu" - -#: fdmprinter.def.json -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 "Vzdálenost mezi liniemi raftů pro horní vrstvy raftů. Rozestup by měl být roven šířce čáry, takže povrch je pevný." - -#: fdmprinter.def.json -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Počet středních vrstev raftu" - -#: fdmprinter.def.json -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 "Počet vrstev mezi základnou a povrchem raftu. Tyto vrstvy tvoří hlavní část tloušťky raftu. Vyšší hodnota vytvoří tlustší a robustnější raft." - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Tloušťka prostředku raftu" - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Tloušťka vrstvy střední vrstvy raftu." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Šířka prostřední linky raftu" - -#: fdmprinter.def.json -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 "Šířka čar ve střední vrstvě raftu. Další vytlačování druhé vrstvy způsobí, že se linie přilepí na podložku." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Mezera ve středu raftu" - -#: fdmprinter.def.json -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 "Vzdálenost mezi liniemi raftů pro střední vrstvu raftů. Vzdálenost mezi středy by měla být poměrně široká, přičemž by měla být dostatečně hustá, aby podepírala horní vrstvy raftů." - -#: fdmprinter.def.json -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Tloušťka základny raftu" - -#: fdmprinter.def.json -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 "Tloušťka vrstvy základní vrstvy raftu. Měla by to být silná vrstva, která pevně přilne k podložce tiskárny." - -#: fdmprinter.def.json -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Šířka základní linky raftu" - -#: fdmprinter.def.json -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 "Šířka čar v základní vrstvě raftu. Měly by to být silné čáry, které napomáhají při přilnutí desky." - -#: fdmprinter.def.json -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Rozteč základny voru" - -#: fdmprinter.def.json -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 "Vzdálenost mezi vorovými liniemi pro základní vrstvu raftu. Široký rozestup umožňuje snadné vyjmutí voru z podložky." - -#: fdmprinter.def.json -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Rychlost tisku raftu" - -#: fdmprinter.def.json -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "Rychlost, při které se raft tiskne." - -#: fdmprinter.def.json -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Rychlost tisku vršku raftu" - -#: fdmprinter.def.json -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 "Rychlost tisku horních vrstev raftu. Ty by měly být vytištěny trochu pomaleji, aby tryska mohla pomalu vyhlazovat sousední povrchové linie." - -#: fdmprinter.def.json -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Rychlost tisku prostředku raftu" - -#: fdmprinter.def.json -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 "Rychlost tisku střední 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ý." - -#: fdmprinter.def.json -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Rychlost tisku spodku raftu" - -#: fdmprinter.def.json -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ý." - -#: fdmprinter.def.json -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Zrychlení tisku raftu" - -#: fdmprinter.def.json -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "Zrychlení, s nímž je raft tištěn." - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Zrychlení tisku vrchu raftu" - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Zrychlení, s nímž se tiskne horní vrstvy raftu." - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Zrychlení tisku středu raftu" - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "Zrychlení, kterým je tištěna střední vrstva raftu." - -#: fdmprinter.def.json -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Zrychlení tisku spodku raftu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Trhnutí při tisku raftu" - -#: fdmprinter.def.json -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "Trhnutí, při kterém je raft tištěn." - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Trhnutí při tisku vrchní vrstvy raftu" - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Trhnutí, kterým se tisknou horní vrstvy raftu." - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Trhnutí při tisku střední vrstvy raftu" - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "Trhnutí, kterým je tisknuta střední vrstva raftu." - -#: fdmprinter.def.json -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Trhnutí při tisku dolní vrstvy raftu" - -#: fdmprinter.def.json -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Trhnutí, kterým je tisknuta základní vrstva raftu." - -#: fdmprinter.def.json -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Rychlost ventilátoru při tisku raftu" - -#: fdmprinter.def.json -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Rychlost ventilátoru pro tisk raftu." - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Rychlost ventilátoru při tisku horních vrstev raftu" - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Rychlost ventilátoru při tisku horních vrstev raftu." - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Rychlost ventilátoru při tisku středních vrstev raftu" - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "Rychlost ventilátoru při tisku středních vrstev raftu." - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Rychlost ventilátoru při tisku základních vrstev raftu" - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Rychlost ventilátoru při tisku základních vrstev raftu." - -#: fdmprinter.def.json -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Dvojitá extruze" - -#: fdmprinter.def.json -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Nastavení použitá pro tisk pomocí více extruderů." - -#: fdmprinter.def.json -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Povolit hlavní věže" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Velikost hlavní věže" - -#: fdmprinter.def.json -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "Šířka hlavní věže." - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Minimální objem hlavní věže" - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "Minimální objem pro každou vrstvu hlavní věže, aby se propláchlo dost materiálu." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Pozice X hlavní věže" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "Souřadnice X polohy hlavní věže." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Pozice Y hlavní věže" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "Souřadnice Y polohy hlavní věže." - -#: fdmprinter.def.json -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Otřete neaktivní trysku na Prime Tower" +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 "Upravuje umístění podpůrných struktur. Umístění lze nastavit tak, aby se dotýkalo podložky nebo kdekoli. Pokud je nastavena všude, podpůrné struktury budou také vytištěny na modelu." #: fdmprinter.def.json msgctxt "prime_tower_wipe_enabled description" @@ -5057,244 +162,14 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "Po vytištění hlavní věže jednou tryskou otřete vyteklý materiál z druhé trysky na hlavní věži." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Límec hlavní věže" +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 "Poté, co se stroj přepnul z jednoho extrudéru na druhý, sestavovací deska se spustí, aby se vytvořila vůle mezi tryskou a tiskem. Tím se zabrání tomu, aby tryska zanechávala vyteklý materiál na vnější straně tisku." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Hlavní věže mohou potřebovat zvláštní přilnavost, kterou poskytuje Límec, i když to model neumožňuje. V současnosti nelze použít s adhezním typem „Raft“." - -#: fdmprinter.def.json -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Povolit Ooze štít" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Úhel Ooze štítu" - -#: fdmprinter.def.json -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 "Maximální úhel, který bude mít část štítu. S 0° svislým a 90° vodorovným. Menší úhel vede k méně poškozeným štítům, ale více materiálu." - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Vzdálenost Ooze štítu" - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "Vzdálenost štítu od tisku ve směru X / Y." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Retrakční vzdálenost přepnutí trysek" - -#: fdmprinter.def.json -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 "Množství zatažení při přepínání extruderů. Nastavit na 0 pro žádné stažení. To by obecně mělo být stejné jako délka tepelné zóny." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Retrakční rychlost přepnutí trysek" - -#: fdmprinter.def.json -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 "Rychlost, při které je vlákno zasunuto. Vyšší retrakční rychlost funguje lépe, ale velmi vysoká retrakční rychlost může vést k broušení vlákna." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Rychlost retrakce při změně trysky" - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "Rychlost, kterou je vlákno zasunuto během změny trysky." - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Rychlost přepínání trysky" - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "Rychlost, při které se vlákno tlačí zpět po změně trysky." - -#: fdmprinter.def.json -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Množství materiálu navíc pro změnu trysky" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Opravy sítí" - -#: fdmprinter.def.json -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Udělat sítě lépe 3D tisknutelné." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Spojit překrývající se objekty" - -#: fdmprinter.def.json -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 "Ignorujte vnitřní geometrii vznikající z překrývajících se svazků v síti a svazky vytiskněte jako jeden. To může způsobit, že nechtěné vnitřní dutiny zmizí." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Odstranit všechny díry" - -#: fdmprinter.def.json -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 "Odstraňte otvory v každé vrstvě a zachujte pouze vnější tvar. To bude ignorovat jakoukoli neviditelnou vnitřní geometrii. Ignoruje však také díry vrstvy, které lze prohlížet shora nebo zdola." - -#: fdmprinter.def.json -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Rozsáhlé prošívání" - -#: fdmprinter.def.json -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í." - -#: fdmprinter.def.json -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Ponechat odpojené plochy" - -#: fdmprinter.def.json -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 "Normálně se Cura pokouší spojit malé otvory do sítě a odstranit části vrstvy s velkými otvory. Povolením této možnosti zůstanou zachovány ty části, které nelze sešívat. Tato možnost by měla být použita jako poslední možnost, pokud všechno ostatní nedokáže vytvořit správný g-kód." - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Sloučené sítě se překrývají" - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Síťky, které se navzájem dotýkají, se trochu překrývají. Díky tomu se lepí dohromady." - -#: fdmprinter.def.json -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Odstanit průnik sítí" - -#: fdmprinter.def.json -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 "Odstraňte oblasti, kde se více sítí vzájemně překrývají. To lze použít, pokud se sloučené duální hmotné objekty vzájemně překrývají." - -#: fdmprinter.def.json -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Alternativní odstranění sítí" - -#: fdmprinter.def.json -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 "Přepněte do kterého protínajícího se svazku sítí bude patřit každá vrstva, takže překrývající se očka se protnou. Vypnutí tohoto nastavení způsobí, že jedna z sítí získá veškerý objem v překrytí, zatímco je odstraněna z ostatních sítí." - -#: fdmprinter.def.json -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Odstraňte prázdné první vrstvy" - -#: fdmprinter.def.json -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 "Odstraňte prázdné vrstvy pod první potištěnou vrstvou, pokud jsou přítomny. Deaktivace tohoto nastavení může způsobit prázdné první vrstvy, pokud je nastavení Tolerance řezu nastaveno na Exkluzivní nebo Střední." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Maximální rozlišení" - -#: fdmprinter.def.json -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 "Minimální velikost segmentu čáry po krájení. Pokud toto zvětšíte, bude mít síť nižší rozlišení. To může umožnit, aby tiskárna udržovala krok s rychlostí, kterou musí zpracovat g-kód, a zvýší se rychlost řezu odstraněním detailů sítě, které stejně nemůže zpracovat." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Maximální rozlišení pohybu" - -#: fdmprinter.def.json -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 "Minimální velikost segmentu cestovní čáry po krájení. Pokud toto zvýšíte, budou mít cestovní pohyby méně hladké rohy. To může umožnit tiskárně držet krok s rychlostí, kterou musí zpracovat g-kód, ale může to způsobit, že se vyhnutí modelu stane méně přesným." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Maximální odchylka" - -#: fdmprinter.def.json -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 "Maximální odchylka povolená při snižování rozlišení pro nastavení Maximální rozlišení. Pokud toto zvýšíte, bude tisk méně přesný, ale g-kód bude menší. Maximální odchylka je limit pro maximální rozlišení, takže pokud dojde ke konfliktu, bude maximální odchylka vždy platná." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Maximální odchylka plochy extruze" - -#: fdmprinter.def.json -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 "Maximální dovolená odchylka plochy extruze při odstraňování mezilehlých bodů na rovné čáře. Mezilehlý bod může sloužit jako místo, kde se mění tloušťka dlouhé přímé čáry. Proto, pokud je odstraněn, bude mít tato čára jednotnou šířku a následkem toho ztratí (nebo získá) kousek plochy extruze. Při zvýšení tohoto nastavení můžete zaznamenat mírnou podextruzi nebo nadměrnou extruzi mezi rovnými rovnoběžnými zdmi, jelikož bude dovoleno odstranit více mezilehlých bodů měnících šířku čáry. Vaše výtisky budou méně přesně, ale g-kód bude menší." - -#: fdmprinter.def.json -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Speciální módy" - -#: fdmprinter.def.json -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Netradiční způsoby, jak tisknout vaše modely." - -#: fdmprinter.def.json -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Tisková sekvence" - -#: fdmprinter.def.json -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 "Zda tisknout všechny modely po jedné vrstvě najednou, nebo počkat na dokončení jednoho modelu, než se přesunete k další. Jeden za časovým režimem je možný, pokud a) je povolen pouze jeden extrudér a b) všechny modely jsou odděleny tak, že celá tisková hlava se může pohybovat mezi a všechny modely jsou menší než vzdálenost mezi tryskou a X / Osy Y." +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Vše" #: fdmprinter.def.json msgctxt "print_sequence option all_at_once" @@ -5302,1273 +177,19 @@ msgid "All at Once" msgstr "Vše najednou" #: fdmprinter.def.json -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Pouze jedna" +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)" #: fdmprinter.def.json -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Síť výplně" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Alternativní zeď navíc" #: fdmprinter.def.json -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 "Pomocí této mřížky můžete upravit výplň dalších sítí, s nimiž se překrývá. Nahrazuje výplňové oblasti jiných sítí oblastmi pro tuto síť. Pro tuto mřížku se doporučuje tisknout pouze jednu zeď a žádnou horní / dolní vrstvu." - -#: fdmprinter.def.json -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Pořadí zpracování sítě" - -#: fdmprinter.def.json -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 "Určuje prioritu této sítě, když se překrývá více sítí výplně. U oblastí, kde se překrývá více sítí výplně, se nastavení přebírá ze sítě s nejvyšším pořadím. Síť výplně s vyšším pořadím bude modifikovat výplň sítě výplně s nižším pořadím a běžné sítě." - -#: fdmprinter.def.json -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Síť pro řezání" - -#: fdmprinter.def.json -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 "Objem této sítě omezte na jiné sítě. Můžete to použít k vytvoření určitých oblastí tisku jednoho oka s různým nastavením as úplně jiným extruderem." - -#: fdmprinter.def.json -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Forma" - -#: fdmprinter.def.json -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 "Vytiskněte modely jako formu, kterou lze odlít, abyste získali model, který se podobá modelům na podložce." - -#: fdmprinter.def.json -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Minimální šířka formy" - -#: fdmprinter.def.json -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "Minimální vzdálenost mezi vnější stranou formy a modelu." - -#: fdmprinter.def.json -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Výška střechy formy" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Úhel formy" - -#: fdmprinter.def.json -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 "Úhel přesahu vnějších stěn vytvořených pro formu. 0° způsobí, že vnější skořepina formy bude svislá, zatímco 90° způsobí, že vnější strana modelu bude sledovat obrys modelu." - -#: fdmprinter.def.json -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Síť podpor" - -#: fdmprinter.def.json -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Pomocí této sítě můžete určit oblasti podpory. To lze použít ke generování podpůrné struktury." - -#: fdmprinter.def.json -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Síť proti převisu" - -#: fdmprinter.def.json -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 "Pomocí této mřížky určete, kde by žádná část modelu neměla být detekována jako převis. To lze použít k odstranění nežádoucí podpůrné struktury." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Povrchový režim" - -#: fdmprinter.def.json -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 "S modelem zacházejte pouze jako s povrchem, objemem nebo objemy s volnými povrchy. Normální režim tisku tiskne pouze uzavřené svazky. „Povrch“ vytiskne jedinou stěnu, která sleduje povrch oka bez výplně a bez horní / dolní povrch. „Oba“ tiskne uzavřené svazky jako normální a všechny zbývající polygony jako povrchy." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normální" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Povrchový" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Obojí" - -#: fdmprinter.def.json -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Spiralizujte vnější konturu" - -#: fdmprinter.def.json -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 "Spiralizace vyhlazuje pohyb Z vnější hrany. Tím se vytvoří stálý nárůst Z v celém tisku. Tato funkce mění pevný model na jednostěnný tisk s plným dnem. Tato funkce by měla být povolena, pouze pokud každá vrstva obsahuje pouze jednu část." - -#: fdmprinter.def.json -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Hladké spiralizované obrysy" - -#: fdmprinter.def.json -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 "Vyhlaďte spiralizované obrysy, aby se snížila viditelnost Z-spoje (Z-spoj by měl být sotva viditelný na výtisku, ale bude stále viditelný v pohledu vrstvy). Všimněte si, že vyhlazení bude mít tendenci rozmazávat jemné detaily povrchu." - -#: fdmprinter.def.json -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Relativní vytlačování" - -#: fdmprinter.def.json -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 "Použijte spíše relativní extruzi než absolutní extruzi. Použití relativních E-kroků usnadňuje následné zpracování g-kódu. Není však podporována všemi tiskárnami a může vést k velmi malým odchylkám v množství ukládaného materiálu ve srovnání s absolutními kroky E. Bez ohledu na toto nastavení bude režim vytlačování vždy nastaven na absolutní před výstupem jakéhokoli skriptu g-kódu." - -#: fdmprinter.def.json -msgctxt "experimental label" -msgid "Experimental" -msgstr "Experimentální" - -#: fdmprinter.def.json -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Nové vychytávky, které ještě nejsou venku." - -#: fdmprinter.def.json -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Tolerance slicování" - -#: fdmprinter.def.json -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 "Vertikální tolerance ve slicovaných vrstvách. Obrysy vrstvy jsou obvykle vytvářeny průřezy středem tloušťky každé vrstvy (uprostřed). Alternativně každá vrstva může mít oblasti, které spadají dovnitř objemu po celé tloušťce vrstvy (Exkluzivní), nebo vrstva má oblasti, které padají dovnitř kdekoli v rámci vrstvy (Inkluzivní). Inclusive si zachovává nejpodrobnější detaily, Exclusive dělá to nejlepší a Middle zůstává co nejblíže původnímu povrchu." - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Střední" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exkluzivní" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inkluzivní" - -#: fdmprinter.def.json -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Nejvyšší šířka linie povrchu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Vzor horního povrchu" - -#: fdmprinter.def.json -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "Vzor nejvyšší vrstvy." - -#: fdmprinter.def.json -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Čáry" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Soustředný" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Monotónní pořadí horního povrchu" - -#: fdmprinter.def.json -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 "Tisknout linky horního povrchu v takovém pořadí, aby se navazující linky překrývaly ve stejném směru. Tisk zabere trochu více času, ale hladké povrchy budou vypadat více jednolité." - -#: fdmprinter.def.json -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Pokyny pro horní povrchovou linii" - -#: fdmprinter.def.json -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ňů)." - -#: fdmprinter.def.json -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Optimalizace pohybu při tisku výplně" - -#: fdmprinter.def.json -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 "Je-li tato funkce povolena, je pořadí, ve kterém jsou vyplněny řádky výplně, optimalizováno, aby se snížila ujetá vzdálenost. Zkrácení doby cestování dosažené velmi záleží na modelu, který je nakrájen, vzor výplně, hustota atd. U některých modelů, které mají mnoho malých oblastí výplně, může být doba krájení modelu značně prodloužena." - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature label" -msgid "Auto Temperature" -msgstr "Automatická teplota" - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature description" -msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -msgstr "Změňte teplotu pro každou vrstvu automaticky s průměrnou rychlostí průtoku této vrstvy." - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Graf teploty toku" - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Data spojující tok materiálu (v mm3 za sekundu) s teplotou (ve stupních Celsia)." - -#: fdmprinter.def.json -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Minimální polygonální obvod" - -#: fdmprinter.def.json -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ů." - -#: fdmprinter.def.json -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Rozdělte podporu na kousky" - -#: fdmprinter.def.json -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 "Přeskočte některá připojení podpůrné linky, aby se podpůrná struktura snadněji odtrhla. Toto nastavení je použitelné pro vzor výplně podpory Zig Zag." - -#: fdmprinter.def.json -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Velikost bloku podpory" - -#: fdmprinter.def.json -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 "Vynechejte spojení mezi podpůrnými linkami jednou za N milimetr, abyste usnadnili odtržení podpůrné struktury." - -#: fdmprinter.def.json -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Počet kusů linek podpory" - -#: fdmprinter.def.json -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Přeskočte jeden v každém N spojovacím vedení, aby se usnadnilo odtržení podpůrné struktury." - -#: fdmprinter.def.json -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Zapnout štít modelu" - -#: fdmprinter.def.json -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 "Tím se vytvoří kolem modelu zeď, která zachycuje (horký) vzduch a chrání před vnějším proudem vzduchu. Obzvláště užitečné pro materiály, které se snadno deformují." - -#: fdmprinter.def.json -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "X/Y vzdálenost štítu modelu" - -#: fdmprinter.def.json -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Vzdálenost štítu před tiskem ve směru X / Y." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Limitace štítu modelu" - -#: fdmprinter.def.json -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 "Nastavte výšku štítu proti průvanu. Zvolte, zda chcete tisknout štít konceptu v plné výšce modelu nebo v omezené výšce." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Plná" - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Limitovaná" - -#: fdmprinter.def.json -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Výška štítu modelu" - -#: fdmprinter.def.json -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Výškové omezení ochranného štítu. Nad touto výškou nebude vytištěn žádný koncept štítu." - -#: fdmprinter.def.json -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Udělat převis tisknutelný" - -#: fdmprinter.def.json -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 "Změňte geometrii tištěného modelu tak, aby byla vyžadována minimální podpora. Strmé převisy se stanou mělkými převisy. Převislé oblasti budou klesat dolů, aby se staly vertikálními." - -#: fdmprinter.def.json -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Maximální úhel modelu" - -#: fdmprinter.def.json -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 "Maximální úhel přesahů po jejich tisku. Při hodnotě 0 ° jsou všechny převisy nahrazeny kusem modelu připojeným k podložce, 90 ° model nijak nijak nezmění." - -#: fdmprinter.def.json -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Maximální plocha díry pod převisem" - -#: fdmprinter.def.json -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 "Maximální plocha díry v základně modelu, která nebude odstraněna funkcí „Udělat převis tisknutelný“. Menší díry budou zachovány. Hodnota 0 mm² způsobí vyplnění všech děr v základně modelu." - -#: fdmprinter.def.json -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Povolit Coasting" - -#: fdmprinter.def.json -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 nahradí poslední část vytlačovací cesty cestou. Vyteklý materiál se používá k tisku posledního kusu vytlačovací cesty, aby se snížilo strunování." - -#: fdmprinter.def.json -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Objem coastingu" - -#: fdmprinter.def.json -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Objem jinak vytekl. Tato hodnota by měla být obecně blízká průměru trysek." - -#: fdmprinter.def.json -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Minimální objem před coastingem" - -#: fdmprinter.def.json -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 "Nejmenší objem, který by měla mít vytlačovací cesta, než povolí dojezd. U menších vytlačovacích drah se v bowdenové trubici vytvořil menší tlak, a tak se dojezdový objem lineárně upraví. Tato hodnota by měla být vždy větší než dojezdový objem." - -#: fdmprinter.def.json -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Rychlost coastingu" - -#: fdmprinter.def.json -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 "Rychlost, kterou se má pohybovat během dojezdu, relativně k rychlosti vytlačovací dráhy. Doporučuje se hodnota mírně pod 100%, protože během jízdy se pohybuje tlak v bowdenové trubici." - -#: fdmprinter.def.json -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Velikost kapsy u 3D kříže" - -#: fdmprinter.def.json -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á." - -#: fdmprinter.def.json -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Obrázek s křížovou výplní" - -#: fdmprinter.def.json -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 "Umístění souboru obrázku, jehož hodnoty jasu určují minimální hustotu na odpovídajícím místě ve výplni tisku." - -#: fdmprinter.def.json -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Obrázek s křížovou výplní pro podporu" - -#: fdmprinter.def.json -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 "Umístění souboru obrázku, jehož hodnoty jasu určují minimální hustotu na odpovídajícím místě v podpoře." - -#: fdmprinter.def.json -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Povolit kuželovou podporu" - -#: fdmprinter.def.json -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Zmenšete podpůrné oblasti na spodní straně než na převis." - -#: fdmprinter.def.json -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Kónický podpěrný úhel" - -#: fdmprinter.def.json -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 "Úhel náklonu kuželové podpory. S 0° svislým a 90° vodorovným. Menší úhly způsobují, že podpora je robustnější, ale sestává z více materiálu. Záporné úhly způsobují, že základna podpory je širší než horní část." - -#: fdmprinter.def.json -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Minimální šířka kónické podpory" - -#: fdmprinter.def.json -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 "Minimální šířka, na kterou se zmenší základna kuželové nosné plochy. Malé šířky mohou vést k nestabilním podpůrným strukturám." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Rozmazaný povrch" - -#: fdmprinter.def.json -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 "Při tisku na vnější stěnu náhodně chvěte tak, že povrch má drsný a rozmazaný vzhled." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Rozmazaný povrch pouze venku" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Rozmazat jen okrajové části modelu a žádné díry modelu." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Tloušťka rozmazaného povrchu" - -#: fdmprinter.def.json -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 "Šířka, do které se chvěje. Doporučuje se to udržovat pod šířkou vnější stěny, protože vnitřní stěny zůstávají nezměněny." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Hustota nejasného povrchu" - -#: fdmprinter.def.json -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 "Průměrná hustota bodů zavedených na každý mnohoúhelník ve vrstvě. Všimněte si, že původní body mnohoúhelníku jsou zahozeny, takže nízká hustota vede ke snížení rozlišení." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Vzdálenost bodů při rozmazané výplni" - -#: fdmprinter.def.json -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 "Průměrná vzdálenost mezi náhodnými body zavedenými v každém segmentu čáry. Všimněte si, že původní body mnohoúhelníku jsou zahozeny, takže vysoká hladkost vede ke snížení rozlišení. Tato hodnota musí být vyšší než polovina tloušťky rozmazaného povrchu." - -#: fdmprinter.def.json -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Kompenzace průtoku maximální posunutí extruze" - -#: fdmprinter.def.json -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 "Maximální vzdálenost v mm pro pohyb vlákna za účelem kompenzace změn průtoku." - -#: fdmprinter.def.json -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Faktor kompenzace průtoku" - -#: fdmprinter.def.json -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 "Jak daleko posunout vlákno za účelem kompenzace změn průtoku, jako procento toho, jak daleko by se vlákno pohybovalo v jedné sekundě vytlačování." - -#: fdmprinter.def.json -msgctxt "wireframe_enabled label" -msgid "Wire Printing" -msgstr "Drátový tisk" - -#: fdmprinter.def.json -msgctxt "wireframe_enabled description" -msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -msgstr "Tiskněte pouze vnější povrch s řídkou strukturou struktury a tiskněte „na vzduchu“. To je realizováno horizontálním tiskem kontur modelu v daných intervalech Z, které jsou spojeny pomocí linií nahoru a diagonálně dolů." - -#: fdmprinter.def.json -msgctxt "wireframe_height label" -msgid "WP Connection Height" -msgstr "Výška připojení DT" - -#: fdmprinter.def.json -msgctxt "wireframe_height description" -msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -msgstr "Výška nahoru a diagonálně dolů směřujících čar mezi dvěma vodorovnými částmi. To určuje celkovou hustotu struktury sítě. Platí pouze pro drátový tisk." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset label" -msgid "WP Roof Inset Distance" -msgstr "Vzdálenost střechy DT" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset description" -msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -msgstr "Vzdálenost ujetá při vytváření spojení od obrysu střechy dovnitř. Platí pouze pro drátový tisk." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed label" -msgid "WP Speed" -msgstr "Rychlost DT" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed description" -msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -msgstr "Rychlost, jakou se tryska pohybuje při vytlačování materiálu. Platí pouze pro drátový tisk." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom label" -msgid "WP Bottom Printing Speed" -msgstr "Rychlost tisku spodního DT" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom description" -msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -msgstr "Rychlost tisku první vrstvy, která je jedinou vrstvou dotýkající se platformy sestavení. Platí pouze pro drátový tisk." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up label" -msgid "WP Upward Printing Speed" -msgstr "Rychlost tisku nahoru u DT" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up description" -msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -msgstr "Rychlost tisku řádku nahoru „na vzduchu“. Platí pouze pro drátový tisk." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down label" -msgid "WP Downward Printing Speed" -msgstr "Rychlost tisku směrem dolů u DT" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down description" -msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -msgstr "Rychlost tisku linie šikmo dolů. Platí pouze pro drátový tisk." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat label" -msgid "WP Horizontal Printing Speed" -msgstr "Rychlost horizontálního tisku DT" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat description" -msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -msgstr "Rychlost tisku vodorovných obrysů modelu. Platí pouze pro drátový tisk." - -#: fdmprinter.def.json -msgctxt "wireframe_flow label" -msgid "WP Flow" -msgstr "Průtok při DT" - -#: fdmprinter.def.json -msgctxt "wireframe_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -msgstr "Kompenzace toku: množství vytlačovaného materiálu se vynásobí touto hodnotou. Platí pouze pro drátový tisk." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection label" -msgid "WP Connection Flow" -msgstr "Průtok při spojování DT" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection description" -msgid "Flow compensation when going up or down. Only applies to Wire Printing." -msgstr "Kompenzace toku při stoupání nebo klesání. Platí pouze pro drátový tisk." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat label" -msgid "WP Flat Flow" -msgstr "Průtok při plochém DT" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat description" -msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -msgstr "Kompenzace toku při tisku rovných čar. Platí pouze pro drátový tisk." - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay label" -msgid "WP Top Delay" -msgstr "Zpoždení pohybu nahoře při tisku DT" - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay description" -msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -msgstr "Zpoždění po pohybu vzhůru, aby mohla stoupající čára ztvrdnout. Platí pouze pro drátový tisk." - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay label" -msgid "WP Bottom Delay" -msgstr "Zpoždení pohybu dole při tisku DT" - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay description" -msgid "Delay time after a downward move. Only applies to Wire Printing." -msgstr "Zpoždění po pohybu dolů. Platí pouze pro drátový tisk." - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay label" -msgid "WP Flat Delay" -msgstr "Zpoždění při tisku plochých segmentů DT" - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay description" -msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -msgstr "Doba zpoždění mezi dvěma vodorovnými segmenty. Zavedení takového zpoždění může způsobit lepší přilnavost k předchozím vrstvám ve spojovacích bodech, zatímco příliš dlouhé zpoždění může způsobit ochabnutí. Platí pouze pro drátový tisk." - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed label" -msgid "WP Ease Upward" -msgstr "Poloviční rychlost DT" - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed description" -msgid "" -"Distance of an upward move which is extruded with half speed.\n" -"This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "" -"Vzdálenost pohybu nahoru, který je vytlačován poloviční rychlostí.\n" -"To může způsobit lepší přilnavost k předchozím vrstvám, aniž by se materiál v těchto vrstvách příliš zahříval. Platí pouze pro drátový tisk." - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump label" -msgid "WP Knot Size" -msgstr "Velikost uzlu DT" - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump description" -msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -msgstr "Vytvoří malý uzel v horní části vzestupné linie, takže po sobě jdoucí vodorovná vrstva má lepší šanci se k němu připojit. Platí pouze pro drátový tisk." - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down label" -msgid "WP Fall Down" -msgstr "Pád materiálu DT" - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down description" -msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "Vzdálenost, se kterou materiál padá po vytlačení směrem nahoru. Tato vzdálenost je kompenzována. Platí pouze pro drátový tisk." - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along label" -msgid "WP Drag Along" -msgstr "Tah DT" - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along description" -msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "Vzdálenost, se kterou je materiál vytlačování směrem vzhůru tažen spolu s diagonálně směrem dolů vytlačováním. Tato vzdálenost je kompenzována. Platí pouze pro drátový tisk." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy label" -msgid "WP Strategy" -msgstr "Strategie DT" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy description" -msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -msgstr "Strategie pro zajištění toho, aby se v každém místě připojení připojily dvě po sobě následující vrstvy. Zpětné zasunutí umožní, aby linie vzhůru ztvrdly ve správné poloze, ale mohou způsobit broušení vlákna. Uzel může být vytvořen na konci vzestupné linie, aby se zvýšila šance na připojení k ní a aby se linka ochladila; to však může vyžadovat nízké rychlosti tisku. Další strategií je kompenzovat prohnutý vrchol horní linie; čáry však nebudou vždy klesat, jak bylo předpovězeno." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option compensate" -msgid "Compensate" -msgstr "Kompenzovat" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option knot" -msgid "Knot" -msgstr "Uzel" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option retract" -msgid "Retract" -msgstr "Retrakce" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down label" -msgid "WP Straighten Downward Lines" -msgstr "Vyrovnat spodní linky DT" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down description" -msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -msgstr "Procento diagonálně sestupné linie, která je zakryta vodorovnou čárou. To může zabránit ochabnutí nejvyššího bodu vzhůru. Platí pouze pro drátový tisk." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down label" -msgid "WP Roof Fall Down" -msgstr "Pád materiálu střechy DT" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down description" -msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -msgstr "Vzdálenost, kterou vodorovné linie střechy vytištěné „na vzduchu“ klesají při tisku. Tato vzdálenost je kompenzována. Platí pouze pro drátový tisk." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along label" -msgid "WP Roof Drag Along" -msgstr "Tah střechy DT" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along description" -msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -msgstr "Vzdálenost koncového kusu vnitřní linie, která se táhne, když se vrací zpět k vnějšímu obrysu střechy. Tato vzdálenost je kompenzována. Platí pouze pro drátový tisk." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay label" -msgid "WP Roof Outer Delay" -msgstr "Vnější zpoždění střechy DT" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay description" -msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -msgstr "Čas strávený na vnějším obvodu díry, která se má stát střechou. Delší časy mohou zajistit lepší spojení. Platí pouze pro drátový tisk." - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance label" -msgid "WP Nozzle Clearance" -msgstr "Vyčištění trysky DT" - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance description" -msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -msgstr "Vzdálenost mezi tryskou a vodorovnými liniemi dolů. Větší vůle vede k diagonálně dolů směřujícím liniím s menším strmým úhlem, což zase vede k menšímu spojení nahoru s další vrstvou. Platí pouze pro drátový tisk." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Použít adaptivní vrstvy" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Maximální variabilita adaptivních vrstev" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "Maximální povolená výška se liší od výšky základní vrstvy." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Velikost kroku adaptivní vrstvy" - -#: fdmprinter.def.json -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í." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Velikost topografie adaptivních vrstev" - -#: fdmprinter.def.json -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 "Zaměřte vodorovnou vzdálenost mezi dvěma sousedními vrstvami. Snížení tohoto nastavení způsobí, že se tenčí vrstvy použijí k přibližování okrajů vrstev k sobě." - -#: fdmprinter.def.json -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Převislý úhel stěny" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Rychlost tisku převislé stěny" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Povolit nastavení mostu" - -#: fdmprinter.def.json -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ů." - -#: fdmprinter.def.json -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Minimální délka stěny mostu" - -#: fdmprinter.def.json -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 "Nepodporované stěny kratší než tato budou vytištěny pomocí běžného nastavení zdi. Delší nepodporované stěny budou vytištěny pomocí nastavení mostní zdi." - -#: fdmprinter.def.json -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Prahová hodnota podpory povrchu mostu" - -#: fdmprinter.def.json -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 "Pokud je oblast povrchu podporována pro méně než toto procento její plochy, vytiskněte ji pomocí nastavení můstku. V opačném případě se vytiskne pomocí běžných nastavení vzhledu." - -#: fdmprinter.def.json -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Maximální hustota výplně mostu" - -#: fdmprinter.def.json -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 "Maximální hustota výplně považovaná za řídkou. Kůže nad řídkou výplní je považována za nepodporovanou, a proto ji lze považovat za můstkovou kůži." - -#: fdmprinter.def.json -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Coasting zdi můstku" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Rychlost tisku zdi můstku" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Průtok při tisku zdi můstku" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Rychlost při tisku povrchu můstku" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Průtok při tisku povrchu můstku" - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Při tisku oblastí povrchu můstku je množství vytlačovaného materiálu násobeno touto hodnotou." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Hustota povrchu mostu" - -#: fdmprinter.def.json -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 "Hustota vrstvy povrchu můstku. Hodnoty menší než 100 zvýší mezery mezi liniemi pokožky." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Rychlost ventilátoru při tisknutí můstku" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Procentuální rychlost ventilátoru, která se použije při tisku mostních stěn a povrchu." - -#: fdmprinter.def.json -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Můstek má více vrstev" - -#: fdmprinter.def.json -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 "Pokud je povoleno, druhá a třetí vrstva nad vzduchem se vytisknou pomocí následujících nastavení. V opačném případě se tyto vrstvy tisknou pomocí běžných nastavení." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Rychlost tisku druhé vrstvy povrchu můstku" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Rychlost tisku, která se použije při tisku druhé vrstvy povrchu mostu." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Průtok při tisku druhé vrstvy povrchu můstku" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Hustota druhé vrstvy povrchu můstku" - -#: fdmprinter.def.json -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 "Hustota druhé vrstvy vrstvy můstku. Hodnoty menší než 100 zvýší mezery mezi liniemi pokožky." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Rychlost ventilátoru při tisku druhé vrstvy povrchu můstku" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Procentuální rychlost ventilátoru, která se použije při tisku druhé vrstvy povrchu mostu." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Rychlost tisku třetí vrstvy povrchu můstku" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Rychlost tisku, která se použije při tisku třetí vrstvy povrchu mostu." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Průtok při tisku třetí vrstvy povrchu můstku" - -#: fdmprinter.def.json -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 "Při tisku třetí vrstvy potahu se množství vytlačovaného materiálu násobí touto hodnotou." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Hustota třetí vrstvy povrchu můstku" - -#: fdmprinter.def.json -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 "Hustota třetí vrstvy vrstvy můstku. Hodnoty menší než 100 zvýší mezery mezi liniemi pokožky." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Rychlost ventilátoru při tisku třetí vrstvy povrchu můstku" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Čistit trysku mezi vrstvami" - -#: fdmprinter.def.json -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 "Zda se má G-kód stírat tryskou mezi vrstvami (maximálně 1 na vrstvu). Povolení tohoto nastavení by mohlo ovlivnit chování zatahování při změně vrstvy. Použijte nastavení retrakce čištění pro kontrolu stažení ve vrstvách, kde bude fungovat skript." - -#: fdmprinter.def.json -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Objem materiálu mezi čištěními" - -#: fdmprinter.def.json -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 "Maximální materiál, který může být vytlačen před zahájením dalšího stírání trysky. Pokud je tato hodnota menší než objem materiálu potřebného ve vrstvě, nemá nastavení v této vrstvě žádný účinek, tj. Je omezeno na jedno čištění na vrstvu." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Povolit retrakci při čištění" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Zasunout filament, když se tryska pohybuje po netisknuté oblasti." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Vzdálenost retrakce při čištění" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Délka pro zasunutí filamentu tak, aby během sekvence stírání nevytekla." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Množství zasunutí filamentu při prvotním čištění" - -#: fdmprinter.def.json -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 "Během pohybu stěrače může nějaký materiál vytéct pryč, což může být kompenzováno zde." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Rychlost retrakce při čištění" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "Rychlost, při které je vlákno zasunuto a aktivováno během pohybu stěrače." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Rychlost navíjení stírání" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "Rychlost, při které je vlákno zataženo během pohybu stěrače." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Primární rychlost retrakce při čištění" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "Rychlost, při které je vlákno aktivováno během pohybu stěrače." - -#: fdmprinter.def.json -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Pozastavit čištění" - -#: fdmprinter.def.json -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pozastavit po vytažení." - -#: fdmprinter.def.json -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Čistit Z Hop" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Výška čištění Z Hopu" - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Výškový rozdíl při provádění Z-hopu." - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Rychlost čištění Hopu" - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Rychlost pohybu osy z během hopu." - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Pozice X stěrače" - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "X místo, kde bude spuštěn čistící skript." - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Počet opakování čištění" - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Počet posunů trysky přes kartáč." - -#: fdmprinter.def.json -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Velikost pohybu při čištění" - -#: fdmprinter.def.json -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "Vzdálenost k pohybu hlavy tam a zpět přes štětec." - -#: fdmprinter.def.json -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Maximální velikost malé díry" - -#: fdmprinter.def.json -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 "Otvory a obrysy součástí s průměrem menším, než je tento, budou vytištěny pomocí funkce Rychlost malých funkcí." - -#: fdmprinter.def.json -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Maximální délka malých částí" - -#: fdmprinter.def.json -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Obrysy částí, které jsou kratší než tato délka, budou vytištěny pomocí funkce Rychlost malých částí." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Rychlost malých částí" - -#: fdmprinter.def.json -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 "Drobné části budou vytištěny v procentech jejich normální rychlosti tisku. Pomalejší tisk může pomoci s přilnavostí a přesností." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Rychlost malých částí v počáteční vrstvě" - -#: fdmprinter.def.json -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 "Malé části v první vrstvě budou vytištěny při tomto procentuálním poměru jejich normální rychlosti tisku. Pomalejší tisk může pomoci s přilnavostí a přesností." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Alternativní odstranění sítí" #: fdmprinter.def.json msgctxt "material_alternate_walls label" @@ -6581,34 +202,349 @@ msgid "Alternate wall directions every other layer and inset. Useful for materia msgstr "Střídat směr zdí s každou vrstvou. Je užitečné pro materiály, ve kterých se může hromadit napětí, jako například kovové materiály." #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Odstranit vnitřní rohy raftu" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Hliník" #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Odstranit vnitřní rohy raftu a změnit tak raft v konvexní (vypouklý) tvar." +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "Vždy Zapisovat Aktivní Nástroj" #: fdmprinter.def.json -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Počet zdí raftu" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Vždy zatáhnout filament, když se přesouvá k začátku vnější zdi." #: fdmprinter.def.json -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." +msgctxt "hole_xy_offset description" +msgid "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." +msgstr "Množství ofsetu aplikovaného na všechny díry v každé vrstvě. Pozitivní hodnoty zvětšují velikost děr, záporné hodnoty snižují velikost děr." #: fdmprinter.def.json -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Nastavení příkazové řádky" +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 "Množství ofsetu aplikovaného na všechny polygony v každé vrstvě. Pozitivní hodnoty mohou kompenzovat příliš velké díry; záporné hodnoty mohou kompenzovat příliš malé díry." #: fdmprinter.def.json -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Nastavení, která se používají, pouze pokud není CuraEngine vyvolán z rozhraní Cura." +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 "Množství ofsetu aplikovaného na všechny polygony v první vrstvě. Záporná hodnota může kompenzovat pískání první vrstvy známé jako „sloní noha“." + +#: fdmprinter.def.json +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 "Množství ofsetu aplikovaného na všechny podpůrné polygony v každé vrstvě. Pozitivní hodnoty mohou vyhladit oblasti podpory a vést k robustnější podpoře." + +#: fdmprinter.def.json +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Částka kompenzace použitá na podlahy podpory." + +#: fdmprinter.def.json +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Množství offsetu aplikovaný na střechy podpěry." + +#: fdmprinter.def.json +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Množství offsetu aplikovaného na polygony rozhraní podpory." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Délka pro zasunutí filamentu tak, aby během sekvence stírání nevytekla." + +#: fdmprinter.def.json +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 "Přídavek k poloměru od středu každé krychle ke kontrole hranice modelu, aby se rozhodlo, zda má být tato krychle rozdělena. Větší hodnoty vedou k silnější skořápce malých kostek poblíž hranice modelu." + +#: fdmprinter.def.json +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Síť proti převisu" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Pozice zabraňující úniku" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Rychlost návratu při vytékání" + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Použít offset extruderu v souřadnicovém systému. Ovlivňuje všechny extrudery." + +#: fdmprinter.def.json +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 "V místech, kde se modely dotýkají, budou generovány vzájemně propletené struktury. Ty zlepšují adhezi mezi modely, obzvláště u modelů tištěných z různých materiálů." + +#: fdmprinter.def.json +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Při cestování se vyhněte tištěným součástem" + +#: fdmprinter.def.json +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Při pohybu se vyhnout podporám" + +#: fdmprinter.def.json +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Zpět" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Zadní levá" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Zadní pravá" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Obojí" + +#: fdmprinter.def.json +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Spodní vrstvy" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Vzor spodní počáteční vrstvy" + +#: fdmprinter.def.json +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Dolní vzdálenost rozšíření povrchu" + +#: fdmprinter.def.json +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Dolní šířka odstranění povrchu" + +#: fdmprinter.def.json +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Spodní tloušťka" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Maximální napnutí filamentu při zahřátí" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Maximální rychlost napnutí při zahřátí" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Teplota přípravy na napnutí" + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Pozice napnutí" + +#: fdmprinter.def.json +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Rychlost navíjení vlákna" + +#: fdmprinter.def.json +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Teplota přerušení" + +#: fdmprinter.def.json +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Rozdělte podporu na kousky" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Rychlost ventilátoru při tisknutí můstku" + +#: fdmprinter.def.json +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Můstek má více vrstev" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Hustota druhé vrstvy povrchu můstku" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Rychlost ventilátoru při tisku druhé vrstvy povrchu můstku" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Průtok při tisku druhé vrstvy povrchu můstku" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Rychlost tisku druhé vrstvy povrchu můstku" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Hustota povrchu mostu" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Průtok při tisku povrchu můstku" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Rychlost při tisku povrchu můstku" + +#: fdmprinter.def.json +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Prahová hodnota podpory povrchu mostu" + +#: fdmprinter.def.json +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Maximální hustota výplně mostu" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Hustota třetí vrstvy povrchu můstku" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Rychlost ventilátoru při tisku třetí vrstvy povrchu můstku" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Průtok při tisku třetí vrstvy povrchu můstku" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Rychlost tisku třetí vrstvy povrchu můstku" + +#: fdmprinter.def.json +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Coasting zdi můstku" + +#: fdmprinter.def.json +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Průtok při tisku zdi můstku" + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Rychlost tisku zdi můstku" + +#: fdmprinter.def.json +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Límec" + +#: fdmprinter.def.json +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Vzdálenost límce" + +#: fdmprinter.def.json +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "Vzdálenost od límce uvnitř" + +#: fdmprinter.def.json +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Počet linek pro límec" + +#: fdmprinter.def.json +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Límec pouze venku" + +#: fdmprinter.def.json +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Límec nahrazuje podpory" + +#: fdmprinter.def.json +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Šířka límce" + +#: fdmprinter.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adheze topné podložky" + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Extruder pro adhezi podložky" + +#: fdmprinter.def.json +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Typ přilnavosti podložky" + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Materiál podložky" + +#: fdmprinter.def.json +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Tvar podložky" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Teplota podložky" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Teplota podložky při počáteční vrstvě" + +#: fdmprinter.def.json +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Teplota sestavení" #: fdmprinter.def.json msgctxt "center_object label" @@ -6616,61 +552,6044 @@ msgid "Center Object" msgstr "Centrovat objekt" #: fdmprinter.def.json -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 "Zda centrovat objekt uprostřed podložky (0,0), místo použití souřadnicového systému, ve kterém byl objekt uložen." +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 "Změňte geometrii tištěného modelu tak, aby byla vyžadována minimální podpora. Strmé převisy se stanou mělkými převisy. Převislé oblasti budou klesat dolů, aby se staly vertikálními." + +#: fdmprinter.def.json +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 "Volí mezi dostupnými technikami pro generování podpory. „Normální“ podpora vytváří podpůrnou strukturu přímo pod převislými částmi a upouští tyto oblasti přímo dolů. „Stromová“ podpora vytváří větve směrem k převislým oblastem, které podporují model na koncích těchto větví, a umožňuje větvím procházet se kolem modelu a podporovat je co nejvíce z konstrukční desky." + +#: fdmprinter.def.json +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Rychlost coastingu" + +#: fdmprinter.def.json +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Objem coastingu" + +#: fdmprinter.def.json +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 nahradí poslední část vytlačovací cesty cestou. Vyteklý materiál se používá k tisku posledního kusu vytlačovací cesty, aby se snížilo strunování." + +#: fdmprinter.def.json +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Režím Combing" + +#: fdmprinter.def.json +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 udržuje trysku v již vytištěných oblastech při cestování. To má za následek mírně delší pohybové tahy, ale snižuje potřebu zatažení. Pokud je combing vyplý, materiál se stáhne a tryska se pohybuje v přímce k dalšímu bodu. Je také možné vyhnout se combingu na horních / dolních částech povrchu nebo jen combing uvnitř výplně." + +#: fdmprinter.def.json +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Nastavení příkazové řádky" + +#: fdmprinter.def.json +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Soustředný" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Soustředný" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Soustředný" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Soustředný" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Soustředný" + +#: fdmprinter.def.json +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Soustředný" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Soustředný" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Soustředný" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Soustředný" + +#: fdmprinter.def.json +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Kónický podpěrný úhel" + +#: fdmprinter.def.json +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Minimální šířka kónické podpory" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Spojovat čáry výplně" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Připojte výplňové polygony" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Spojovat linky podpor" + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Spojovat cig-cag podpory" + +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Připojte horní / dolní polygony" + +#: fdmprinter.def.json +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 "Připojte výplňové cesty tam, kde běží vedle sebe. Pro výplňové vzory, které se skládají z několika uzavřených polygonů, umožňuje toto nastavení výrazně zkrátit dobu cestování." + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Připojte ZigZagy. Tím se zvýší pevnost nosné struktury klikatá zag." + +#: fdmprinter.def.json +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 "Spojte konce podpůrných linek dohromady. Aktivace tohoto nastavení může zvýšit vaši podporu a snížit podextruzi, ale bude to stát více materiálu." + +#: fdmprinter.def.json +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 "Konce, kde se vzor výplně setkává s vnitřní stěnou, pomocí čáry, která sleduje tvar vnitřní stěny. Aktivace tohoto nastavení může zlepšit přilnavost výplně ke stěnám a snížit vliv výplně na kvalitu svislých povrchů. Vypnutím tohoto nastavení se sníží množství použitého materiálu." + +#: fdmprinter.def.json +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 "Propojte horní / dolní povrchové cesty tam, kde běží vedle sebe. Pro soustředné uspořádání umožňující toto nastavení výrazně zkracuje dobu cestování, ale protože se spojení může uskutečnit uprostřed výplně, může tato funkce snížit kvalitu povrchu." + +#: fdmprinter.def.json +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 "Určete, zda rohy na obrysu modelu ovlivňují polohu švu. Žádné znamená, že rohy nemají žádný vliv na polohu švu. Funkce \"Schovat šev\" zvyšuje pravděpodobnost, že se šev vyskytuje ve vnitřním rohu. \"Ukázat šev\" zvyšuje pravděpodobnost, že se šev objeví na vnějším rohu. \"Skrýt nebo vystavit šev\" zvyšuje pravděpodobnost, že šev nastane ve vnitřním nebo vnějším rohu. \"Inteligentní skrytí\" umožňuje vnitřní i vnější rohy, ale v případě potřeby vybírá vnitřní rohy častěji." + +#: fdmprinter.def.json +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 "Převeďte každou výplňovou linii na tuto řadu řádků. Další čáry se nepřekrývají, ale vzájemně se vyhýbají. Díky tomu je výplň tužší, ale zvyšuje se doba tisku a spotřeba materiálu." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Rychlost chlazení" + +#: fdmprinter.def.json +msgctxt "cooling description" +msgid "Cooling" +msgstr "Chlazení" + +#: fdmprinter.def.json +msgctxt "cooling label" +msgid "Cooling" +msgstr "Chlazení" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Křížek" + +#: fdmprinter.def.json +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Křížek" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "3D Křížek" + +#: fdmprinter.def.json +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Velikost kapsy u 3D kříže" + +#: fdmprinter.def.json +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Obrázek s křížovou výplní pro podporu" + +#: fdmprinter.def.json +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Obrázek s křížovou výplní" + +#: fdmprinter.def.json +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Krystalický materiál" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Krychle" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Kubické členění" + +#: fdmprinter.def.json +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Shell kubické rozdělení" + +#: fdmprinter.def.json +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Síť pro řezání" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Data spojující tok materiálu (v mm3 za sekundu) s teplotou (ve stupních Celsia)." + +#: fdmprinter.def.json +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Výchozí akcelerace" + +#: fdmprinter.def.json +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Výchozí teplota podložky" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Výchozí jerk filamentu" + +#: fdmprinter.def.json +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Výchozí teplota tisknutí" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Výchozí X-Y jerk rychlost motoru" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Výchozí Z jerk rychlost motoru" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "Výchozí trhnutí pro pohyb ve vodorovné rovině." + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Výchozí trhnutí pro motor ve směru Z." + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Výchozí trhnutí pro motor filamentu." + +#: fdmprinter.def.json +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ů." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Určuje prioritu této sítě, když se překrývá více sítí výplně. U oblastí, kde se překrývá více sítí výplně, se nastavení přebírá ze sítě s nejvyšším pořadím. Síť výplně s vyšším pořadím bude modifikovat výplň sítě výplně s nižším pořadím a běžné sítě." + +#: fdmprinter.def.json +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 "Určuje, kdy má vrstva bleskové výplně nad sebou něco, co má podporovat. Zadává se jako úhel a řídí se tloušťkou vrstvy." + +#: fdmprinter.def.json +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 "Určuje, od jakého úhlu převisu bude vrstva bleskové výplň podporovat model nad sebou." + +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Průměr" + +#: fdmprinter.def.json +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 "Různé možnosti, které pomáhají zlepšit jak vytlačování, tak adhezi k sestavovací desce. Límec přidává jedinou vrstvu roviny kolem základny vašeho modelu, aby se zabránilo deformaci. Raft přidává tlustou mřížku se střechou pod modelem. Okraj je čára vytištěná kolem modelu, ale není k modelu připojena." + +#: fdmprinter.def.json +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Zakázané zóny" + +#: fdmprinter.def.json +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 "Vzdálenost mezi tištěnými výplněmi. Toto nastavení se vypočítá podle hustoty výplně a šířky výplně." + +#: fdmprinter.def.json +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 "Vzdálenost mezi tištěnými liniemi základní struktury podpory. Toto nastavení se vypočítá podle hustoty podpory." + +#: fdmprinter.def.json +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 "Vzdálenost mezi tištěnými podpůrnými podlahovými liniemi. Toto nastavení se vypočítá podle hustoty podpůrné podlahy, ale lze ji upravit samostatně." + +#: fdmprinter.def.json +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 "Vzdálenost mezi tištěnými oporami střechy. Toto nastavení se vypočítá podle hustoty nosné střechy, ale lze ji upravit samostatně." + +#: fdmprinter.def.json +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Vzdálenost mezi tištěnými liniemi podpůrné struktury. Toto nastavení se vypočítá podle hustoty podpory." + +#: fdmprinter.def.json +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support." +msgstr "Vzdálenost od tisku ke spodní části podpěry." + +#: fdmprinter.def.json +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Vzdálenost od horní strany podpory k tisku." + +#: fdmprinter.def.json +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. This value is rounded up to a multiple of the layer height." +msgstr "Vzdálenost od horní / dolní nosné struktury k tisku. Tato mezera poskytuje vůli pro odstranění podpěr po vytištění modelu. Tato hodnota je zaokrouhlena nahoru na násobek výšky vrstvy." + +#: fdmprinter.def.json +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 "Vzdálenost pohybového pohybu vloženého za každou výplňovou linii, aby se výplň lepila ke stěnám lépe. Tato možnost je podobná překrývání výplně, ale bez vytlačování a pouze na jednom konci výplňové linky." + +#: fdmprinter.def.json +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Vzdálenost pohybového posunu vloženého za vnější stěnu, aby se skryla Z šev lépe." + +#: fdmprinter.def.json +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Vzdálenost štítu před tiskem ve směru X / Y." + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "Vzdálenost štítu od tisku ve směru X / Y." + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Vzdálenost podpor od převisu ve směru X/Y." + +#: fdmprinter.def.json +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Vzdálenost podpůrné struktury od tisku ve směru X / Y." + +#: fdmprinter.def.json +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Nevytvářejte oblasti výplně menší než tato (místo toho použijte povrch)." + +#: fdmprinter.def.json +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Výška štítu modelu" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Limitace štítu modelu" + +#: fdmprinter.def.json +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "X/Y vzdálenost štítu modelu" + +#: fdmprinter.def.json +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Podpory pod celou sítí" + +#: fdmprinter.def.json +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Dvojitá extruze" + +#: fdmprinter.def.json +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Eliptická" + +#: fdmprinter.def.json +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Povolit ovládání akcelerace" + +#: fdmprinter.def.json +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Povolit nastavení mostu" + +#: fdmprinter.def.json +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Povolit Coasting" + +#: fdmprinter.def.json +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Povolit kuželovou podporu" + +#: fdmprinter.def.json +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Zapnout štít modelu" + +#: fdmprinter.def.json +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Povolit žehlení" + +#: fdmprinter.def.json +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Povolit kontrolu trhu" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Povolit řízení teploty trysek" + +#: fdmprinter.def.json +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Povolit Ooze štít" + +#: fdmprinter.def.json +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Povolit primární blob" + +#: fdmprinter.def.json +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Povolit hlavní věže" + +#: fdmprinter.def.json +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Povolit chlazení při tisku" + +#: fdmprinter.def.json +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Povolit retrakci" + +#: fdmprinter.def.json +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Povolit okrajové podpory" + +#: fdmprinter.def.json +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Povolit podpory podlah" + +#: fdmprinter.def.json +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Povolit rozhraní podpor" + +#: fdmprinter.def.json +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Povolit podpory stěch" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Změnit akceleraci cestování" + +#: fdmprinter.def.json +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Změnit okamžitou rychlost cestování" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Umožňuje nastavení trhnutí tiskové hlavy, když se mění rychlost v ose X nebo Y. Zvýšení trhnutí může zkrátit dobu tisku za cenu kvality tisku." + +#: fdmprinter.def.json +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 "Umožňuje nastavení zrychlení tiskové hlavy. Zvýšení zrychlení může zkrátit dobu tisku za cenu kvality tisku." + +#: fdmprinter.def.json +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 "Aktivuje ventilátory chlazení tisku během tisku. Ventilátory zlepšují kvalitu tisku na vrstvách s krátkými časy a přemostěním / přesahy." + +#: fdmprinter.def.json +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "Ukončující G kód" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Délka proplachu na konci vlákna" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Rychlost proplachování na konci filamentu" + +#: fdmprinter.def.json +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 "Zajistěte, aby Límec bylo natištěno kolem modelu, i když by tento prostor byl jinak obsazen podporou. To nahradí některé regiony první vrstvy podpory okrajovými regiony." + +#: fdmprinter.def.json +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Všude" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exkluzivní" + +#: fdmprinter.def.json +msgctxt "experimental label" +msgid "Experimental" +msgstr "Experimentální" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Ukázat šev" + +#: fdmprinter.def.json +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Rozsáhlé prošívání" + +#: fdmprinter.def.json +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í." + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Počet navíc výplní zdí" + +#: fdmprinter.def.json +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Počet povrchových zdí navíc" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Primární pozice extruderu X" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Primární pozice extruderu Y" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "První Z pozice extruderu" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Extrudery sdílí ohřívač" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Extrudery sdílí trysku" + +#: fdmprinter.def.json +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Modifikátor rychlosti chlazení extruze" + +#: fdmprinter.def.json +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 "Faktor korekce rychlosti v závislosti na šířce extruze. Při 0 % je rychlost pohybu konstantně na hodnotě Rychlost tisku. Při 100 % je rychlost pohybu upravena tak, aby byl tok (v mm³/s) konstantní. To znamená, že čáry o šířce poloviny nastavení Šířka čáry jsou tištěny dvojnásobnou rychlostí a čáry dvojnásobné šířky jsou tištěny poloviční rychlostí. Hodnota vyšší než 100 % může pomoci kompenzovat vysoký tlak potřebný k extruzi širokých čar." + +#: fdmprinter.def.json +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Rychlost větráku" + +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Přepsání rychlosti ventilátoru" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Obrysy částí, které jsou kratší než tato délka, budou vytištěny pomocí funkce Rychlost malých částí." + +#: fdmprinter.def.json +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Nové vychytávky, které ještě nejsou venku." + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Průměr kolečka feederu" + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Konečná teplota tisku" + +#: fdmprinter.def.json +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Retrakce firmwaru" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extruder pro první vrstvu" + +#: fdmprinter.def.json +msgctxt "material_flow label" +msgid "Flow" +msgstr "Průtok" + +#: fdmprinter.def.json +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Míra vyrovnávání toku" + +#: fdmprinter.def.json +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Faktor kompenzace průtoku" + +#: fdmprinter.def.json +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Kompenzace průtoku maximální posunutí extruze" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Graf teploty toku" + +#: fdmprinter.def.json +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 "Kompenzace toku pro první vrstvu: množství materiálu vytlačovaného na počáteční vrstvě se vynásobí touto hodnotou." + +#: fdmprinter.def.json +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ě" + +#: fdmprinter.def.json +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Kompenzace toku na výplňových vedeních." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Kompenzace toku na hlavních liniích věží." + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Kompenzace toku na límci nebo okrajových liniích." + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Kompenzace toku na podpůrných podlahových linkách." + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Kompenzace toku na podpůrných liniích střechy." + +#: fdmprinter.def.json +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Kompenzace toku na podpůrných strukturách." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Kompenzace průtoku na vnější linii stěny." + +#: fdmprinter.def.json +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Kompenzace průtoku na horních / dolních řádcích." + +#: fdmprinter.def.json +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 "Kompenzace toku pro všechny čáry stěn kromě té nejvíce venkovní, ale pouze pro první vrstvu" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Kompenzace toku na liniích stěn pro všechny linie stěn s výjimkou těch nejvíce venkovních." + +#: fdmprinter.def.json +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Kompenzace průtoku na stěnách." + +#: fdmprinter.def.json +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Kompenzace toku: množství vytlačovaného materiálu se vynásobí touto hodnotou." + +#: fdmprinter.def.json +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Délka proplachování" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Rychlost proplachování" + +#: fdmprinter.def.json +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í." + +#: fdmprinter.def.json +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Přední" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Přední levá" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Přední pravá" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Plná" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Rozmazaný povrch" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Hustota nejasného povrchu" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Rozmazaný povrch pouze venku" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Vzdálenost bodů při rozmazané výplni" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Tloušťka rozmazaného povrchu" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Varianta G kódu" + +#: fdmprinter.def.json +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "Příkazy G-kódu, které mají být provedeny od samého začátku - oddělené \\ n." + +#: fdmprinter.def.json +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" +"Příkazy G-kódu, které mají být provedeny na samém konci - oddělené\n" +"." + +#: fdmprinter.def.json +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID materiálu. Je nastaveno automaticky." + +#: fdmprinter.def.json +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Výška rámu tiskárny" + +#: fdmprinter.def.json +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Generovat vzájemné propletení" + +#: fdmprinter.def.json +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Generovat podpory" + +#: fdmprinter.def.json +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 "Vytvořte okraj v podpůrných výplňových oblastech první vrstvy. Tento okraj je vytištěn pod podpěrou, ne kolem ní. Povolením tohoto nastavení se zvýší přilnavost podpory k podložce." + +#: fdmprinter.def.json +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 "Vytvořte husté rozhraní mezi modelem a podporou. Tím se vytvoří povrch v horní části podpory, na které je model vytištěn, a ve spodní části podpory, kde spočívá na modelu." + +#: fdmprinter.def.json +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 "Vytvořte hustou desku materiálu mezi spodní částí nosiče a modelem. Tím vytvoříte vzhled mezi modelem a podporou." + +#: fdmprinter.def.json +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 "Vytvořte hustou desku materiálu mezi horní částí podpory a modelem. Tím vytvoříte vzhled mezi modelem a podporou." + +#: fdmprinter.def.json +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 "Vytvořte struktury pro podporu částí modelu, které mají přesahy. Bez těchto struktur by se takové části během tisku zhroutily." + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Sklo" + +#: fdmprinter.def.json +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 "Ještě jednou přejděte horní povrch, ale tentokrát vytlačujete jen velmi málo materiálu. To má za cíl roztavit plast nahoře dále a vytvořit hladší povrch. Tlak v komoře trysky je udržován vysoký, takže rýhy na povrchu jsou vyplněny materiálem." + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Postupná výška kroku výplně" + +#: fdmprinter.def.json +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Postupné kroky výplně" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Výška výplně krokové podpory" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Postupné kroky vyplňování podpory" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Mřížka" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Mřížka" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Mřížka" + +#: fdmprinter.def.json +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Mřížka" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Mřížka" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +#: fdmprinter.def.json +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" + +#: fdmprinter.def.json +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Má stabilizaci teploty podložky" + +#: fdmprinter.def.json +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Má vyhřívanou podložku" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Rychlost zahřívání" + +#: fdmprinter.def.json +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Délka tepelné zóny" + +#: fdmprinter.def.json +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Výškové omezení ochranného štítu. Nad touto výškou nebude vytištěn žádný koncept štítu." + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Schovat šev" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Skrýt nebo ukázat šev" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Horizontální expanze díry" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "" + +#: fdmprinter.def.json +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 "Otvory a obrysy součástí s průměrem menším, než je tento, budou vytištěny pomocí funkce Rychlost malých funkcí." + +#: fdmprinter.def.json +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Horizontální expanze" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Horizontální faktor zvětšení pro kompenzaci smrštění" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance description" +msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." +msgstr "Jak daleko od sebe musí být větve, když se dotýkají modelu. Zmenšení této vzdálenosti způsobí, že se stromová podpora dotkne modelu ve více bodech, což způsobí lepší přesah, ale těžší odstranění podpory." + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Jak daleko může být filament natažen, než se rozbije při zahřátí." + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "Jak daleko musí být materiál zasunut, než přestane vytékat." + +#: fdmprinter.def.json +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 "Jak daleko posunout vlákno za účelem kompenzace změn průtoku, jako procento toho, jak daleko by se vlákno pohybovalo v jedné sekundě vytlačování." + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "Jak daleko se filament zasune tak, aby se čistě přerušil." + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "Jak rychle musí být filament zatažen těsně před jeho rozbitím." + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Jak rychle je třeba materiál zatáhnout během výměně filamentu, aby se zabránilo vytečení." + +#: fdmprinter.def.json +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 "Jak rychle se materiál po výměně prázdné cívky zastírá čerstvou cívkou stejného materiálu." + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "Jak rychle se materiál po přepnutí na jiný materiál má rozjet." + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "Jak dlouho lze materiál bezpečně uchovávat mimo suché úložiště." + +#: fdmprinter.def.json +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 "Kolik kroků krokového motoru povede k jednomu milimetru pohybu ve směru X." + +#: fdmprinter.def.json +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 "Kolik kroků krokového motoru povede k jednomu milimetru pohybu ve směru Y." + +#: fdmprinter.def.json +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 "Kolik kroků krokového motoru povede k jednomu milimetru pohybu ve směru Z." + +#: fdmprinter.def.json +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 "Kolik kroků krokového motoru povede k pohybu kolečka feederu o jeden milimetr po jeho obvodu." + +#: fdmprinter.def.json +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 "Kolik materiálu se použije k propláchnutí předchozího materiálu z trysky (v délce vlákna) při výměně prázdné cívky za novou cívku ze stejného materiálu." + +#: fdmprinter.def.json +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 "Kolik materiálu použít k vyčištění předchozího materiálu z trysky (v délce vlákna) při přechodu na jiný materiál." + +#: fdmprinter.def.json +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 "Jak daleko je zatažen filament každého extruderu sdílené trysky po dokončení počátečního G kódu tiskárny. Tato hodnota by se měla rovnat nebo být vyšší než je délka společné části vedení trysky." + +#: fdmprinter.def.json +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 "Pokud je oblast povrchu podporována pro méně než toto procento její plochy, vytiskněte ji pomocí nastavení můstku. V opačném případě se vytiskne pomocí běžných nastavení vzhledu." + +#: fdmprinter.def.json +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 "Pokud je povoleno, druhá a třetí vrstva nad vzduchem se vytisknou pomocí následujících nastavení. V opačném případě se tyto vrstvy tisknou pomocí běžných nastavení." + +#: fdmprinter.def.json +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 "Pokud by se mělo rychle za sebou přecházet tam a zpět mezi různými počty zdí, nebude se sbíhání provádět. Nastavení odstraní přechody mezi různými počty čar zdí, pokud by byly blíže než tato vzdálenost." + +#: fdmprinter.def.json +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 "Pokud je raft povolen, jedná se o další oblast voru kolem modelu, která má také raft. Zvětšení tohoto okraje vytvoří silnější raft při použití více materiálu a ponechání menší plochy pro váš tisk." + +#: fdmprinter.def.json +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 "Ignorujte vnitřní geometrii vznikající z překrývajících se svazků v síti a svazky vytiskněte jako jeden. To může způsobit, že nechtěné vnitřní dutiny zmizí." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Zahrnout teploty podložky" + +#: fdmprinter.def.json +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Zahrnout teploty materiálu" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inkluzivní" + +#: fdmprinter.def.json +msgctxt "infill description" +msgid "Infill" +msgstr "Výplň" + +#: fdmprinter.def.json +msgctxt "infill label" +msgid "Infill" +msgstr "Výplň" + +#: fdmprinter.def.json +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Akcelerace tisku výplně" + +#: fdmprinter.def.json +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Výplň před zdmi" + +#: fdmprinter.def.json +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Hustota výplně" + +#: fdmprinter.def.json +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Výplňový extrudér" + +#: fdmprinter.def.json +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Průtok u výplně" + +#: fdmprinter.def.json +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Trh při tisku výplně" + +#: fdmprinter.def.json +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Tloušťka výplně vrstvy" + +#: fdmprinter.def.json +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Směr výplně" + +#: fdmprinter.def.json +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Vzdálenost výplně" + +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Náplň řádku linky" + +#: fdmprinter.def.json +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Šířka čáry výplně" + +#: fdmprinter.def.json +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Síť výplně" + +#: fdmprinter.def.json +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Výplňový přesahový úhel" + +#: fdmprinter.def.json +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Výplň se překrývá" + +#: fdmprinter.def.json +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Procento překrytí výplně" + +#: fdmprinter.def.json +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Výplňový vzor" + +#: fdmprinter.def.json +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Rychlost tisku výplně" + +#: fdmprinter.def.json +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Výplňová podpora" + +#: fdmprinter.def.json +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Optimalizace pohybu při tisku výplně" + +#: fdmprinter.def.json +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Vzdálenost výplně" + +#: fdmprinter.def.json +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "X Offset výplně" + +#: fdmprinter.def.json +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Y Offset výplně" + +#: fdmprinter.def.json +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Počáteční spodní vrstvy" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Počáteční rychlost ventilátoru" + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Akcelerace při první vrstvě" + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Průtok první vrstvy spodku" + +#: fdmprinter.def.json +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Průtok při prvotní vrstvě" + +#: fdmprinter.def.json +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Výška výchozí vrstvy" + +#: fdmprinter.def.json +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Počáteční horizontální rozšíření vrstvy" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Průtok vnitřních stěn první vrstvy" + +#: fdmprinter.def.json +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Okamžitá rychlost při prvotní vrstvě" + +#: fdmprinter.def.json +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Šířka čáry počáteční vrstvy" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Průtok venkovních stěn první vrstvy" + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Akcelerace tisku při první vrstvě" + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Okamžitá rychlost při tisku prvotní vrstvy" + +#: fdmprinter.def.json +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Rychlost tisku prvotní vrstvy" + +#: fdmprinter.def.json +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Rychlost prvotní vrstvy" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Počáteční vzdálenost linek podpory" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Akcelerace při cestách v první vrstvě" + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Okamžitá rychlost při cestování nad prvotní vrstvou" + +#: fdmprinter.def.json +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Rychlost cestování prvotní vrstvy" + +#: fdmprinter.def.json +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Počáteční překrytí vrstvy Z" + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Počáteční teplota tisku" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Akcelerace tisku vnitřní zdi" + +#: fdmprinter.def.json +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extruder vnitřní zdi" + +#: fdmprinter.def.json +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Okamžitá rychlost při tisku vnitřní zdi" + +#: fdmprinter.def.json +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Rychlost tisku vnitřní zdi" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Průtok u vnitřních zdí" + +#: fdmprinter.def.json +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Šířka čáry vnitřních stěn" + +#: fdmprinter.def.json +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 "Inset aplikovaný na cestu vnější stěny. Pokud je vnější stěna menší než tryska a je vytištěna za vnitřními stěnami, použijte toto odsazení, aby se otvor v trysce překrýval s vnitřními stěnami místo vně modelu." + +#: fdmprinter.def.json +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "Zevnitř ven" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Počet vrstev paprsků vzájemného propletení" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Šířka paprsku vzájemného propletení" + +#: fdmprinter.def.json +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Vyhýbání vzájemného propletení hranicím" + +#: fdmprinter.def.json +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Hloubka vzájemného propletení" + +#: fdmprinter.def.json +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Orientace vzájemného propletení" + +#: fdmprinter.def.json +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Žehlit pouze nejvyšší vrstvu" + +#: fdmprinter.def.json +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Akcelerace žehlení" + +#: fdmprinter.def.json +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Průtok při žehlení" + +#: fdmprinter.def.json +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Žehlící vložka" + +#: fdmprinter.def.json +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Trhnutí při žehlení" + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Rozteč žehlicích linek" + +#: fdmprinter.def.json +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Vzor žehlení" + +#: fdmprinter.def.json +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Rychlost žehlení" + +#: fdmprinter.def.json +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Je střed počátek" + +#: fdmprinter.def.json +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 "Je tento materiál typem, který se při zahřívání (krystalický) čistě rozpadá, nebo jde o typ, který vytváří dlouhé propletené polymerní řetězce (nekrystalické)?" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Rozmazat jen okrajové části modelu a žádné díry modelu." + +#: fdmprinter.def.json +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Ponechat odpojené plochy" + +#: fdmprinter.def.json +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Výška vrstvy" + +#: fdmprinter.def.json +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "Start vrstvy X" + +#: fdmprinter.def.json +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Start vrstvy Y" + +#: fdmprinter.def.json +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 "Tloušťka vrstvy základní vrstvy raftu. Měla by to být silná vrstva, která pevně přilne k podložce tiskárny." + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Tloušťka vrstvy střední vrstvy raftu." + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Tloušťka vrstev vrchních vrstev raftu." + +#: fdmprinter.def.json +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 "Vynechejte spojení mezi podpůrnými linkami jednou za N milimetr, abyste usnadnili odtržení podpůrné struktury." + +#: fdmprinter.def.json +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Levá" + +#: fdmprinter.def.json +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Zvednout hlavu" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Bleskový" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Úhel převisu bleskové podpory" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Úhel ústupu bleskové vrstvy" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Úhel vyrovnávání bleskové vrstvy" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Úhel podpory bleskové výplně" + +#: fdmprinter.def.json +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 "Objem této sítě omezte na jiné sítě. Můžete to použít k vytvoření určitých oblastí tisku jednoho oka s různým nastavením as úplně jiným extruderem." + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Limitovaná" + +#: fdmprinter.def.json +msgctxt "line_width label" +msgid "Line Width" +msgstr "Šířka čáry" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Čáry" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Čáry" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Čáry" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Čáry" + +#: fdmprinter.def.json +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Čáry" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Čáry" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Čáry" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Čáry" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +#: fdmprinter.def.json +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Zařízení" + +#: fdmprinter.def.json +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Hloubka zařízení" + +#: fdmprinter.def.json +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Polygon hlavy a větráku zařízení" + +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Výška zařízení" + +#: fdmprinter.def.json +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Typ zařízení" + +#: fdmprinter.def.json +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Šířka zařízení" + +#: fdmprinter.def.json +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Specifické nastavení pro zařízení" + +#: fdmprinter.def.json +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Udělat převis tisknutelný" + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Síťky, které se navzájem dotýkají, se trochu překrývají. Díky tomu se lepí dohromady." + +#: fdmprinter.def.json +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Zmenšete podpůrné oblasti na spodní straně než na převis." + +#: fdmprinter.def.json +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 "Podpořte všude pod podpůrnou sítí, aby v podpůrné síti nebyl přesah." + +#: fdmprinter.def.json +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 "Zajistěte, aby hlavní poloha extrudéru byla absolutní, nikoli relativní k poslednímu známému umístění hlavy." + +#: fdmprinter.def.json +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ů." + +#: fdmprinter.def.json +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Udělat sítě lépe 3D tisknutelné." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumetric)" + +#: fdmprinter.def.json +msgctxt "material description" +msgid "Material" +msgstr "Materiál" + +#: fdmprinter.def.json +msgctxt "material label" +msgid "Material" +msgstr "Materiál" + +#: fdmprinter.def.json +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID materiálu" + +#: fdmprinter.def.json +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Objem materiálu mezi čištěními" + +#: fdmprinter.def.json +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Maximální vzdálenost Combing-u bez retrakce" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Maximální akcelerace X" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Maximální akcelerace Y" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Maximální akcelerace Z" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Maximální odchylka" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Maximální odchylka plochy extruze" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Maximální rychlost ventilátoru" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Maximální akcelerace filamentu" + +#: fdmprinter.def.json +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Maximální úhel modelu" + +#: fdmprinter.def.json +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Maximální plocha díry pod převisem" + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Maximální doba parkingu" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Maximální rozlišení" + +#: fdmprinter.def.json +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Maximální pojezd" + +#: fdmprinter.def.json +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Maximální úhel pro rozšíření povrchu" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Maximální rychlost E" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Maximální rychlost X" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Maximální rychlost Y" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Maximální rychlost Z" + +#: fdmprinter.def.json +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Maximální průměr podporovaný věží" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Maximální rozlišení pohybu" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Maximální zrychlení pro motor ve směru Y." + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Maximální zrychlení pro motor ve směru Z." + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Maximální zrychlení pro motor filamentu." + +#: fdmprinter.def.json +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 "Maximální hustota výplně považovaná za řídkou. Kůže nad řídkou výplní je považována za nepodporovanou, a proto ji lze považovat za můstkovou kůži." + +#: fdmprinter.def.json +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 "Maximální průměr ve směru X / Y malé plochy, která má být podepřena specializovanou podpůrnou věží." + +#: fdmprinter.def.json +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 "Maximální materiál, který může být vytlačen před zahájením dalšího stírání trysky. Pokud je tato hodnota menší než objem materiálu potřebného ve vrstvě, nemá nastavení v této vrstvě žádný účinek, tj. Je omezeno na jedno čištění na vrstvu." + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Sloučené sítě se překrývají" + +#: fdmprinter.def.json +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Opravy sítí" #: fdmprinter.def.json msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "Pozice sítě X" -#: fdmprinter.def.json -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Offset aplikovaný na objekt ve směru x." - #: fdmprinter.def.json msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "Pozice sítě Y" -#: fdmprinter.def.json -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Offset aplikovaný na objekt ve směru y." - #: fdmprinter.def.json msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "Pozice sítě Z" #: fdmprinter.def.json -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 aplikovaný na objekt ve směru z." +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Pořadí zpracování sítě" #: fdmprinter.def.json msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "Matice rotace sítě" +#: fdmprinter.def.json +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Střední" + +#: fdmprinter.def.json +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Minimální šířka formy" + +#: fdmprinter.def.json +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Minimální doba pohotovostního režimu" + +#: fdmprinter.def.json +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Minimální délka stěny mostu" + +#: fdmprinter.def.json +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Minimální šířka párové čáry zdi" + +#: fdmprinter.def.json +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Minimální vzdálenost extruze" + +#: fdmprinter.def.json +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Minimální velikost částí" + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Minimální feedrate" + +#: fdmprinter.def.json +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Minimální plocha výplně" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Minimální doba vrstvy" + +#: fdmprinter.def.json +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Minimální šířka nepárové čáry zdi" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Minimální polygonální obvod" + +#: fdmprinter.def.json +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Minimální úhel pro rozšíření povrchu" + +#: fdmprinter.def.json +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Minimální rychlost" + +#: fdmprinter.def.json +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Minimální oblast pro podporu" + +#: fdmprinter.def.json +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Minimální oblast pro podporu podlahy" + +#: fdmprinter.def.json +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Minimální plocha pro tisk rozhraní podpory" + +#: fdmprinter.def.json +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Minimální oblast pro podporu střechy" + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Minimální vzdálenost podpor X/Y" + +#: fdmprinter.def.json +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Minimální šířka tenkých stěn" + +#: fdmprinter.def.json +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Minimální objem před coastingem" + +#: fdmprinter.def.json +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Minimální šířka čáry zdi" + +#: fdmprinter.def.json +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 "Minimální velikost plochy pro polygony rozhraní podpory. Polygony, které mají plochu menší než tato hodnota, budou vytištěny jako normální podpora." + +#: fdmprinter.def.json +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 "Minimální velikost plochy pro podpůrné polygony. Polygony, které mají plochu menší než tato hodnota, nebudou generovány." + +#: fdmprinter.def.json +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 "Minimální velikost plochy podlah podpěry. Polygony, které mají plochu menší než tato hodnota, budou vytištěny jako normální podpora." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Minimální šířka, na kterou se zmenší základna kuželové nosné plochy. Malé šířky mohou vést k nestabilním podpůrným strukturám." + +#: fdmprinter.def.json +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Forma" + +#: fdmprinter.def.json +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Úhel formy" + +#: fdmprinter.def.json +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Výška střechy formy" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Monotónní pořadí žehlení" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Monotónní pořadí horního povrchu" + +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Monotónní pořadí horních / dolních povrchů" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Žádný faktor přesunu zatížení" + +#: fdmprinter.def.json +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Žádný povrch v Z mezerách" + +#: fdmprinter.def.json +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Netradiční způsoby, jak tisknout vaše modely." + +#: fdmprinter.def.json +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Žádný" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Žádný" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normální" + +#: fdmprinter.def.json +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normální" + +#: fdmprinter.def.json +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 "Normálně se Cura pokouší spojit malé otvory do sítě a odstranit části vrstvy s velkými otvory. Povolením této možnosti zůstanou zachovány ty části, které nelze sešívat. Tato možnost by měla být použita jako poslední možnost, pokud všechno ostatní nedokáže vytvořit správný g-kód." + +#: fdmprinter.def.json +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Ne v povrchu" + +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Ne na vnějším povrchu" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Úhel trysky" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Průměr trysky" + +#: fdmprinter.def.json +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Zakázané oblasti pro trysku" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID trysky" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Délka trysky" + +#: fdmprinter.def.json +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Množství materiálu navíc pro změnu trysky" + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Rychlost přepínání trysky" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Rychlost retrakce při změně trysky" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Retrakční vzdálenost přepnutí trysek" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Retrakční rychlost přepnutí trysek" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Počet extrůderů" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Počet povolených extruderů" + +#: fdmprinter.def.json +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Počet pomalých vrstev" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Počet extruderových strojů, které jsou povoleny; Automaticky nastaveno v softwaru" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Počet extruderových strojů. Vytlačovací souprava je kombinací podavače, bowdenu a trysky." + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Počet posunů trysky přes kartáč." + +#: fdmprinter.def.json +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 "Kolikrát se hustota výplně sníží na polovinu, když se dostane dále pod horní povrchy. Oblasti, které jsou blíže k vrchním povrchům, mají vyšší hustotu až do hustoty výplně." + +#: fdmprinter.def.json +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 "Počet opakování, aby se hustota výplně podpory snížila na polovinu, když se dostaneme dále pod horní povrchy. Oblasti, které jsou blíže k vrchním povrchům, mají vyšší hustotu až do podpůrné hustoty výplně." + +#: fdmprinter.def.json +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Oktet" + +#: fdmprinter.def.json +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Vyp" + +#: fdmprinter.def.json +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Offset aplikovaný na objekt ve směru x." + +#: fdmprinter.def.json +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Offset aplikovaný na objekt ve směru y." + +#: fdmprinter.def.json +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 aplikovaný na objekt ve směru z." + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Offset s extrudérem" + +#: fdmprinter.def.json +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Pouze jedna" + +#: fdmprinter.def.json +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í." + +#: fdmprinter.def.json +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 "Žehlení provádějte pouze na poslední vrstvě sítě. To šetří čas, pokud spodní vrstvy nepotřebují hladký povrch." + +#: fdmprinter.def.json +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í okraje, který je třeba následně odstranit, zatímco to tolik nesnižuje přilnavost k podložce." + +#: fdmprinter.def.json +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Úhel Ooze štítu" + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Vzdálenost Ooze štítu" + +#: fdmprinter.def.json +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Optimalizace pořadí tisku stěn" + +#: fdmprinter.def.json +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 "Optimalizujte pořadí, ve kterém se stěny tisknou, aby se snížil počet retrakcí a ujetá vzdálenost. Většina částí bude mít z tohoto povolení prospěch, ale některé mohou ve skutečnosti trvat déle, proto porovnejte odhady doby tisku s optimalizací a bez ní. První vrstva není optimalizována při výběru okraje jako adhezního typu desky." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Vnější průměr trysky" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Akcelerace tisku vnější zdi" + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extruder vnější zdi" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Průtok u vnější zdi" + +#: fdmprinter.def.json +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Vnější stěna" + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Okamžitá rychlost při tisku vnější zdi" + +#: fdmprinter.def.json +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Šířka čáry vnější stěny" + +#: fdmprinter.def.json +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Rychlost tisku vnější zdi" + +#: fdmprinter.def.json +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Vzdálenost stírání vnější stěny" + +#: fdmprinter.def.json +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "Zvenku dovnitř" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Převislý úhel stěny" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Rychlost tisku převislé stěny" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pozastavit po vytažení." + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Procentuální rychlost ventilátoru, která se použije při tisku mostních stěn a povrchu." + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Procentuální rychlost ventilátoru, která se použije při tisku druhé vrstvy povrchu mostu." + +#: fdmprinter.def.json +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 "Procentuální rychlost ventilátoru, která se použije při tisku oblastí kůže bezprostředně nad podporou. Použití vysoké rychlosti ventilátoru může usnadnit odebrání podpory." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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ů." + +#: fdmprinter.def.json +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í." + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Akcelerace tisku hlavní věže" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Brim" +msgstr "Límec hlavní věže" + +#: fdmprinter.def.json +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Průtok u hlavní věžě" + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Okamžitá rychlost při tisku hlavní věže" + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Šířka čáry primární věže" + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Minimální objem hlavní věže" + +#: fdmprinter.def.json +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Velikost hlavní věže" + +#: fdmprinter.def.json +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Rychlost tisku hlavní věže" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Pozice X hlavní věže" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Pozice Y hlavní věže" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +msgstr "Hlavní věže mohou potřebovat zvláštní přilnavost, kterou poskytuje Límec, i když to model neumožňuje. V současnosti nelze použít s adhezním typem „Raft“." + +#: fdmprinter.def.json +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Akcelerace tisku" + +#: fdmprinter.def.json +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Trh při tisku" + +#: fdmprinter.def.json +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Tisková sekvence" + +#: fdmprinter.def.json +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Rychlost tisku" + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Tisk tenkých stěn" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Tisknout žehlící linky v takovém pořadí, aby se navazující linky překrývaly ve stejném směru. Tisk zabere trochu více času, ale hladké povrchy budou vypadat více jednolité." + +#: fdmprinter.def.json +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 "Vytiskněte modely jako formu, kterou lze odlít, abyste získali model, který se podobá modelům na podložce." + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Tiskněte kousky modelu, které jsou vodorovně tenčí než velikost trysek." + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Rychlost tisku, která se použije při tisku druhé vrstvy povrchu mostu." + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Rychlost tisku, která se použije při tisku třetí vrstvy povrchu mostu." + +#: fdmprinter.def.json +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 "Vytiskněte výplň před tiskem na stěny. První tisk stěn může vést k přesnějším stěnám, ale převisy se zhoršují. Tisk výplně nejprve vede k robustnějším stěnám, ale vzor výplně se někdy může objevit skrz povrch." + +#: fdmprinter.def.json +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 "Tisknout linky horního povrchu v takovém pořadí, aby se navazující linky překrývaly ve stejném směru. Tisk zabere trochu více času, ale hladké povrchy budou vypadat více jednolité." + +#: fdmprinter.def.json +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 "Tisknout horní / dolní linky v takovém pořadí, aby se navazující linky překrývaly ve stejném směru. Tisk zabere trochu více času, ale hladké povrchy budou vypadat více jednolité." + +#: fdmprinter.def.json +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Teplota při tisku" + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Teplota při tisku první vrstvy" + +#: fdmprinter.def.json +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "" + +#: fdmprinter.def.json +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 "Vytiskne další stěnu na každou další vrstvu. Tímto způsobem se výplň zachytí mezi těmito stěnami, což má za následek silnější výtisky." + +#: fdmprinter.def.json +msgctxt "resolution label" +msgid "Quality" +msgstr "Kvalita" + +#: fdmprinter.def.json +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Čtvrtinově krychlový" + +#: fdmprinter.def.json +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" + +#: fdmprinter.def.json +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Vzduchový mezera v raftu" + +#: fdmprinter.def.json +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Extruder základny raftu" + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Rychlost ventilátoru při tisku základních vrstev raftu" + +#: fdmprinter.def.json +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Rozteč základny voru" + +#: fdmprinter.def.json +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Šířka základní linky raftu" + +#: fdmprinter.def.json +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Zrychlení tisku spodku raftu" + +#: fdmprinter.def.json +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Trhnutí při tisku dolní vrstvy raftu" + +#: fdmprinter.def.json +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Rychlost tisku spodku raftu" + +#: fdmprinter.def.json +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Tloušťka základny raftu" + +#: fdmprinter.def.json +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Počet zdí raftu" + +#: fdmprinter.def.json +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Místo navíc kolem raftu" + +#: fdmprinter.def.json +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Rychlost ventilátoru při tisku raftu" + +#: fdmprinter.def.json +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Extruder vnitřku raftu" + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Rychlost ventilátoru při tisku středních vrstev raftu" + +#: fdmprinter.def.json +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Počet středních vrstev raftu" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Šířka prostřední linky raftu" + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Zrychlení tisku středu raftu" + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Trhnutí při tisku střední vrstvy raftu" + +#: fdmprinter.def.json +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Rychlost tisku prostředku raftu" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Mezera ve středu raftu" + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Tloušťka prostředku raftu" + +#: fdmprinter.def.json +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Zrychlení tisku raftu" + +#: fdmprinter.def.json +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Trhnutí při tisku raftu" + +#: fdmprinter.def.json +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Rychlost tisku raftu" + +#: fdmprinter.def.json +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Vyhlazování raftu" + +#: fdmprinter.def.json +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Extruder povrchu raftu" + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Rychlost ventilátoru při tisku horních vrstev raftu" + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Tloušťka horní vrstvy raftu" + +#: fdmprinter.def.json +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Vrchní vrstvy raftu" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Šířka horní linky raftu" + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Zrychlení tisku vrchu raftu" + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Trhnutí při tisku vrchní vrstvy raftu" + +#: fdmprinter.def.json +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Rychlost tisku vršku raftu" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Mezera ve horních vrstvách raftu" + +#: fdmprinter.def.json +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Náhodné" + +#: fdmprinter.def.json +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Náhodné spuštění výplně" + +#: fdmprinter.def.json +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 "Náhodně vyberte, který výplňový řádek je vytištěn jako první. To zabraňuje tomu, aby se jeden segment stal nejsilnějším, ale činí to za cenu dalšího pohybu." + +#: fdmprinter.def.json +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 "Při tisku na vnější stěnu náhodně chvěte tak, že povrch má drsný a rozmazaný vzhled." + +#: fdmprinter.def.json +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Obdélníková" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Normální rychlost ventilátoru" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Pravidelná rychlost ventilátoru ve výšce" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Normální rychlost ventilátoru ve vrstvě" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Pravidelná / maximální prahová rychlost ventilátoru" + +#: fdmprinter.def.json +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Relativní vytlačování" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Odstranit všechny díry" + +#: fdmprinter.def.json +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Odstraňte prázdné první vrstvy" + +#: fdmprinter.def.json +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Odstanit průnik sítí" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Odstranit vnitřní rohy raftu" + +#: fdmprinter.def.json +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 "Odstraňte oblasti, kde se více sítí vzájemně překrývají. To lze použít, pokud se sloučené duální hmotné objekty vzájemně překrývají." + +#: fdmprinter.def.json +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 "Odstraňte prázdné vrstvy pod první potištěnou vrstvou, pokud jsou přítomny. Deaktivace tohoto nastavení může způsobit prázdné první vrstvy, pokud je nastavení Tolerance řezu nastaveno na Exkluzivní nebo Střední." + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Odstranit vnitřní rohy raftu a změnit tak raft v konvexní (vypouklý) tvar." + +#: fdmprinter.def.json +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 "Odstraňte otvory v každé vrstvě a zachujte pouze vnější tvar. To bude ignorovat jakoukoli neviditelnou vnitřní geometrii. Ignoruje však také díry vrstvy, které lze prohlížet shora nebo zdola." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +#: fdmprinter.def.json +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 "Nahrazuje nejvzdálenější část horního / spodního vzoru řadou soustředných čar. Použití jedné nebo dvou čar zlepšuje střechy, které začínají na výplňovém materiálu." + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution description" +msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." +msgstr "Rozlišení pro výpočet kolizí, aby nedošlo k nárazu do modelu. Nastavením této nižší se vytvoří přesnější stromy, které selhávají méně často, ale dramaticky se zvyšuje doba slicování." + +#: fdmprinter.def.json +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Zasuňte před vnější stěnu" + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Zasunout při změně vrstvy" + +#: fdmprinter.def.json +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Zasunout vlákno, když se tryska pohybuje po netisknutelné oblasti." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Zasunout filament, když se tryska pohybuje po netisknuté oblasti." + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "Zasuňte vlákno, když se tryska pohybuje do další vrstvy." + +#: fdmprinter.def.json +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Délka zatažení" + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Množství zatažení navíc" + +#: fdmprinter.def.json +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Minimální pojezd" + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Primární rychlost zatažení" + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Rychlost zatažení vlákna" + +#: fdmprinter.def.json +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Rychlost zatažení" + +#: fdmprinter.def.json +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Pravá" + +#: fdmprinter.def.json +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Odstupňovat rychlost ventilátoru mezi 0–1" + +#: fdmprinter.def.json +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 "Změnit stupnici rychlosti ventilátoru na 0 až 1, namísto 0 až 256." + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Faktor zvětšení pro kompenzaci smrštění" + +#: fdmprinter.def.json +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "Scéna Má Podpůrné Masky" + +#: fdmprinter.def.json +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Rohová preference švu" + +#: fdmprinter.def.json +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 "Nastavte výšku štítu proti průvanu. Zvolte, zda chcete tisknout štít konceptu v plné výšce modelu nebo v omezené výšce." + +#: fdmprinter.def.json +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Nastavení použitá pro tisk pomocí více extruderů." + +#: fdmprinter.def.json +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Nastavení, která se používají, pouze pokud není CuraEngine vyvolán z rozhraní Cura." + +#: fdmprinter.def.json +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Počáteční retrakce sdílené trysky" + +#: fdmprinter.def.json +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Nejostřejší roh" + +#: fdmprinter.def.json +msgctxt "shell description" +msgid "Shell" +msgstr "Shell" + +#: fdmprinter.def.json +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Nejkratší" + +#: fdmprinter.def.json +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Zobrazit varianty zařízení" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Vrstvy podpory hrany povrchu" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Tloušťka podpory hrany povrchu" + +#: fdmprinter.def.json +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Vzdálenost rozšíření povrchu" + +#: fdmprinter.def.json +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Překrytí povrchu" + +#: fdmprinter.def.json +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Procentuální překrytí povrchu" + +#: fdmprinter.def.json +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Šířka odstranění povrchu" + +#: fdmprinter.def.json +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 "Oblasti povrchu užší, než je tento, nejsou rozšířeny. Tím se zabrání rozšíření úzkých oblastí vzhledu, které jsou vytvořeny, když má povrch modelu sklon v blízkosti svislé." + +#: fdmprinter.def.json +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Přeskočte jeden v každém N spojovacím vedení, aby se usnadnilo odtržení podpůrné struktury." + +#: fdmprinter.def.json +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 "Přeskočte některá připojení podpůrné linky, aby se podpůrná struktura snadněji odtrhla. Toto nastavení je použitelné pro vzor výplně podpory Zig Zag." + +#: fdmprinter.def.json +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Okraj" + +#: fdmprinter.def.json +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Vzdálenost okraj" + +#: fdmprinter.def.json +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Počet linek okraje" + +#: fdmprinter.def.json +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Akcelerace tisku límce/okraje" + +#: fdmprinter.def.json +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Extruder okraje/límce" + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Průtok u límce/okraje" + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Okamžitá rychlost při tisku límce/okraje" + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Šířka čáry okraje/límce" + +#: fdmprinter.def.json +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Minimální délka límce/okraje" + +#: fdmprinter.def.json +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Rychlost tisku límce/okraje" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Tolerance slicování" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Rychlost malých částí v počáteční vrstvě" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Maximální délka malých částí" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Rychlost malých částí" + +#: fdmprinter.def.json +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Maximální velikost malé díry" + +#: fdmprinter.def.json +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Teplota tisku malých vrstev" + +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + +#: fdmprinter.def.json +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 "Malé části v první vrstvě budou vytištěny při tomto procentuálním poměru jejich normální rychlosti tisku. Pomalejší tisk může pomoci s přilnavostí a přesností." + +#: fdmprinter.def.json +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 "Drobné části budou vytištěny v procentech jejich normální rychlosti tisku. Pomalejší tisk může pomoci s přilnavostí a přesností." + +#: fdmprinter.def.json +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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Inteligentní skrývání" + +#: fdmprinter.def.json +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Hladké spiralizované obrysy" + +#: fdmprinter.def.json +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 "Vyhlaďte spiralizované obrysy, aby se snížila viditelnost Z-spoje (Z-spoj by měl být sotva viditelný na výtisku, ale bude stále viditelný v pohledu vrstvy). Všimněte si, že vyhlazení bude mít tendenci rozmazávat jemné detaily povrchu." + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Během pohybu může nějaký materiál uniknout pryč, což může být kompenzováno zde." + +#: fdmprinter.def.json +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 "Během pohybu stěrače může nějaký materiál vytéct pryč, což může být kompenzováno zde." + +#: fdmprinter.def.json +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Speciální módy" + +#: fdmprinter.def.json +msgctxt "speed description" +msgid "Speed" +msgstr "Rychlost" + +#: fdmprinter.def.json +msgctxt "speed label" +msgid "Speed" +msgstr "Rychlost" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Rychlost pohybu osy z během hopu." + +#: fdmprinter.def.json +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Spiralizujte vnější konturu" + +#: fdmprinter.def.json +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 "Spiralizace vyhlazuje pohyb Z vnější hrany. Tím se vytvoří stálý nárůst Z v celém tisku. Tato funkce mění pevný model na jednostěnný tisk s plným dnem. Tato funkce by měla být povolena, pouze pokud každá vrstva obsahuje pouze jednu část." + +#: fdmprinter.def.json +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Teplota při čekání" + +#: fdmprinter.def.json +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "Počáteční G kód" + +#: fdmprinter.def.json +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ší." + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Kroků za milimetr (E)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Kroků za milimetr (X)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Kroků za milimetr (Y)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Kroků za milimetr (Z)" + +#: fdmprinter.def.json +msgctxt "support description" +msgid "Support" +msgstr "Podpora" + +#: fdmprinter.def.json +msgctxt "support label" +msgid "Support" +msgstr "Podpora" + +#: fdmprinter.def.json +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Akcelerace tisku podpor" + +#: fdmprinter.def.json +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Vzdálenost spodní podpory" + +#: fdmprinter.def.json +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Počet stěn v podlaze podpor" + +#: fdmprinter.def.json +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Počet podpůrných čar okraje" + +#: fdmprinter.def.json +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Šířka okrajových podpor" + +#: fdmprinter.def.json +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Počet kusů linek podpory" + +#: fdmprinter.def.json +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Velikost bloku podpory" + +#: fdmprinter.def.json +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Hustota podpor" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Priorita vzdálenost podpor" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extruder pro podpory" + +#: fdmprinter.def.json +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Akcelerace tisku podpor podlahy" + +#: fdmprinter.def.json +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Hustota podpor podlahy" + +#: fdmprinter.def.json +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extruder pro podporu podlahy" + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Průtok u podpor podlahy" + +#: fdmprinter.def.json +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Horizontální expanze podpory podlah" + +#: fdmprinter.def.json +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Okamžitá rychlost při tisku podpor podlahy" + +#: fdmprinter.def.json +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Směrové linie rozhraní podlahy" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Vzdálenost linek podpor podlahy" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Šířka čáry podpory podlahy" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Vzor podpor podlahy" + +#: fdmprinter.def.json +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Rychlost tisku podpor podlahy" + +#: fdmprinter.def.json +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Tloušťka podpor podlahy" + +#: fdmprinter.def.json +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Průtok u podpor" + +#: fdmprinter.def.json +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Expanze horizontálnách podpor" + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Akcelerace tisku výplně podpor" + +#: fdmprinter.def.json +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extruder pro vnitřní podpory" + +#: fdmprinter.def.json +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Okamžitá rychlost při tisku výplně podpor" + +#: fdmprinter.def.json +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Tloušťka vrstvy výplně podpory" + +#: fdmprinter.def.json +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Směry podpůrných výplní linek" + +#: fdmprinter.def.json +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Rychlost tisku výplně podpor" + +#: fdmprinter.def.json +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Akcelerace tisku rozhraní podpor" + +#: fdmprinter.def.json +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Hustota rozhraní podpor" + +#: fdmprinter.def.json +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extruder pro rozhraní podpor" + +#: fdmprinter.def.json +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Průtok rozhraní podpor" + +#: fdmprinter.def.json +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Horizontální rozšíření rozhraní podpor" + +#: fdmprinter.def.json +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Okamžitá rychlost při tisku rozhraní podpor" + +#: fdmprinter.def.json +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Směrové linie rozhraní podpor" + +#: fdmprinter.def.json +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Šířka čáry rozhraní podpor" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Vzor rozhraní podpor" + +#: fdmprinter.def.json +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Rozlišení rozhraní podpor" + +#: fdmprinter.def.json +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Rychlost tisku rozhraní podpor" + +#: fdmprinter.def.json +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Tloušťka rozhraní podpor" + +#: fdmprinter.def.json +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Počet stěn rozhraní podpor" + +#: fdmprinter.def.json +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Okamžitá rychlost při tisku podpor" + +#: fdmprinter.def.json +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Vzdálenost propojení podpor" + +#: fdmprinter.def.json +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Vzdálenost mezi linkami podpor" + +#: fdmprinter.def.json +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Šířka čáry podpory" + +#: fdmprinter.def.json +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Síť podpor" + +#: fdmprinter.def.json +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Podpora převislého úhlu" + +#: fdmprinter.def.json +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Vzor podpor" + +#: fdmprinter.def.json +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Rozmistění podpor" + +#: fdmprinter.def.json +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Akcelerace tisku podpor střechy" + +#: fdmprinter.def.json +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Hustota podpor střechy" + +#: fdmprinter.def.json +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extruder pro podporu střech" + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Průtok u podpor střechy" + +#: fdmprinter.def.json +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Horizontální expanze podpory střechy" + +#: fdmprinter.def.json +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Okamžitá rychlost při tisku podpor střechy" + +#: fdmprinter.def.json +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Směrové linie rozhraní střechy" + +#: fdmprinter.def.json +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Vzdálenost linek podpor střechy" + +#: fdmprinter.def.json +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Šířka čáry podpory střechy" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Vzor podpor střechy" + +#: fdmprinter.def.json +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Rychlost tisku podpor střechy" + +#: fdmprinter.def.json +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Tloušťka podpor střechy" + +#: fdmprinter.def.json +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Počet stěn ve střeše podpor" + +#: fdmprinter.def.json +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Rychlost tisku podor" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Výška schodu podpěrného schodiště" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Maximální šířka schodu podpěrného schodiště" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Podpora Schodu Minimální Úhel Sklonu" + +#: fdmprinter.def.json +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Podpůrná struktura" + +#: fdmprinter.def.json +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Vzdálenost horní podpory" + +#: fdmprinter.def.json +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Počet stěn podpor" + +#: fdmprinter.def.json +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Vzdálenost podpor X/Y" + +#: fdmprinter.def.json +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Vzdálenost Z podor" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Rychlost ventilátoru při tisku podpor povrch" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Povrchový" + +#: fdmprinter.def.json +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Povrchová energie" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Povrchový režim" + +#: fdmprinter.def.json +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Tendence povrchové přilnavosti." + +#: fdmprinter.def.json +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Povrchová energie." + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + +#: fdmprinter.def.json +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 "Přepněte do kterého protínajícího se svazku sítí bude patřit každá vrstva, takže překrývající se očka se protnou. Vypnutí tohoto nastavení způsobí, že jedna z sítí získá veškerý objem v překrytí, zatímco je odstraněna z ostatních sítí." + +#: fdmprinter.def.json +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 "Zaměřte vodorovnou vzdálenost mezi dvěma sousedními vrstvami. Snížení tohoto nastavení způsobí, že se tenčí vrstvy použijí k přibližování okrajů vrstev k sobě." + +#: fdmprinter.def.json +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "Souřadnice X pozice poblíž místa, kde má být nalezen díl pro zahájení tisku každé vrstvy." + +#: fdmprinter.def.json +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "Souřadnice X pozice poblíž místa, kde se má začít tisknout každá část ve vrstvě." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Souřadnice X polohy, ve které tryska naplní tlak na začátku tisku." + +#: fdmprinter.def.json +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "Souřadnice Y pozice poblíž místa, kde má být nalezen díl pro zahájení tisku každé vrstvy." + +#: fdmprinter.def.json +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "Souřadnice Y pozice poblíž místa, kde se má začít tisknout každá část ve vrstvě." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Souřadnice Y polohy, ve které tryska naplní tlak na začátku tisku." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Souřadnice Z pozice, ve které tryska naplní tlak na začátku tisku." + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "Zrychlení během tisku počáteční vrstvy." + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Zrychlení počáteční vrstvy." + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Zrychlení pro pohyb se pohybuje v počáteční vrstvě." + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Zrychlení pro pohyb se pohybuje v počáteční vrstvě." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "Zrychlení, kterým je výplň vytištěna." + +#: fdmprinter.def.json +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "Zrychlení, s nímž se provádí žehlení." + +#: fdmprinter.def.json +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Zrychlení, s nímž dochází k tisku." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Zrychlení, kterým je vytištěna výplň podpory." + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "Zrychlení, kterým je tištěna střední vrstva raftu." + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "Zrychlení, kterým se potiskují vnější stěny." + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "Zrychlení, kterým je vytištěna hlavní věž." + +#: fdmprinter.def.json +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "Zrychlení, s nímž je raft tištěn." + +#: fdmprinter.def.json +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 "Zrychlení, kterým se potiskují střechy a podlahy podložky. Jejich tisk při nižším zrychlení může zlepšit kvalitu převisu." + +#: fdmprinter.def.json +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 "Zrychlení, kterým se potiskují střechy podpěry. Jejich tisk při nižším zrychlení může zlepšit kvalitu převisu." + +#: fdmprinter.def.json +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 "Zrychlení, s nímž jsou Límec a okraj vytištěny. Normálně se tak děje s počátečním zrychlením vrstvy, ale někdy budete chtít vytisknout sukni nebo okraje při jiném zrychlení." + +#: fdmprinter.def.json +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Zrychlení, kterým je tisknuta nosná struktura." + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Zrychlení, s nímž se tiskne horní vrstvy raftu." + +#: fdmprinter.def.json +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Zrychlení, kterým jsou stěny potištěny." + +#: fdmprinter.def.json +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "Zrychlení, kterým se potiskují vrchní povrchové vrstvy." + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Zrychlení, kterým se tisknou horní / dolní vrstvy." + +#: fdmprinter.def.json +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Zrychlení, kterým se pohybují pohyby." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Množství zatažení při přepínání extruderů. Nastavit na 0 pro žádné stažení. To by obecně mělo být stejné jako délka tepelné zóny." + +#: fdmprinter.def.json +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 "Úhel mezi vodorovnou rovinou a kuželovou částí přímo nad špičkou trysky." + +#: fdmprinter.def.json +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 "Úhel střechy věže. Vyšší hodnota vede ke špičatým střechám věží, nižší hodnota vede ke zploštěním střech věží." + +#: fdmprinter.def.json +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 "Úhel přesahu vnějších stěn vytvořených pro formu. 0° způsobí, že vnější skořepina formy bude svislá, zatímco 90° způsobí, že vnější strana modelu bude sledovat obrys modelu." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "support_tree_angle description" +msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "Úhel větví. Použijte nižší úhel, aby byly více vertikální a stabilnější. K dosažení většího dosahu použijte vyšší úhel." + +#: fdmprinter.def.json +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 "Úhel náklonu kuželové podpory. S 0° svislým a 90° vodorovným. Menší úhly způsobují, že podpora je robustnější, ale sestává z více materiálu. Záporné úhly způsobují, že základna podpory je širší než horní část." + +#: fdmprinter.def.json +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 "Průměrná hustota bodů zavedených na každý mnohoúhelník ve vrstvě. Všimněte si, že původní body mnohoúhelníku jsou zahozeny, takže nízká hustota vede ke snížení rozlišení." + +#: fdmprinter.def.json +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 "Průměrná vzdálenost mezi náhodnými body zavedenými v každém segmentu čáry. Všimněte si, že původní body mnohoúhelníku jsou zahozeny, takže vysoká hladkost vede ke snížení rozlišení. Tato hodnota musí být vyšší než polovina tloušťky rozmazaného povrchu." + +#: fdmprinter.def.json +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "Výchozí zrychlení pohybu tiskové hlavy." + +#: fdmprinter.def.json +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 "Výchozí teplota použitá pro tisk. To by měla být „základní“ teplota materiálu. Všechny ostatní teploty tisku by měly používat odchylky založené na této hodnotě" + +#: fdmprinter.def.json +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 "Výchozí teplota použitá pro vyhřívanou podložku. To by měla být „základní“ teplota podložky. Všechny ostatní teploty tisku by měly používat odchylky založené na této hodnotě" + +#: fdmprinter.def.json +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 "Hustota vrstvy povrchu můstku. Hodnoty menší než 100 zvýší mezery mezi liniemi pokožky." + +#: fdmprinter.def.json +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 "Hustota podlah nosné konstrukce. Vyšší hodnota vede k lepší adhezi podpory k horní části modelu." + +#: fdmprinter.def.json +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 "Hustota střech nosné konstrukce. Vyšší hodnota má za následek lepší přesahy, ale podpory je těžší odstranit." + +#: fdmprinter.def.json +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 "Hustota druhé vrstvy vrstvy můstku. Hodnoty menší než 100 zvýší mezery mezi liniemi pokožky." + +#: fdmprinter.def.json +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 "Hustota třetí vrstvy vrstvy můstku. Hodnoty menší než 100 zvýší mezery mezi liniemi pokožky." + +#: fdmprinter.def.json +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "Hlouba (Isa Y) plochy k tisku." + +#: fdmprinter.def.json +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "Průměr speciální věže." + +#: fdmprinter.def.json +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 "Průměr větve stromu podpory Průměr nejtenčí větve stromu podpory. Silnější větve jsou odolnější. Větve směrem k základně budou silnější než tato." + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "Průměr kola, který pohání materiál v podavači." + +#: fdmprinter.def.json +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 "Průměr nejširší větve stromové podpory. Širší kmen je více stabilní; tenší kmen zabírá méně místa na podložce." + +#: fdmprinter.def.json +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í." + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "Vzdálenost mezi čárami žehlení." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Vzdálenost mezi vorovými liniemi pro základní vrstvu raftu. Široký rozestup umožňuje snadné vyjmutí voru z podložky." + +#: fdmprinter.def.json +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 "Vzdálenost mezi liniemi raftů pro střední vrstvu raftů. Vzdálenost mezi středy by měla být poměrně široká, přičemž by měla být dostatečně hustá, aby podepírala horní vrstvy raftů." + +#: fdmprinter.def.json +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 "Vzdálenost mezi liniemi raftů pro horní vrstvy raftů. Rozestup by měl být roven šířce čáry, takže povrch je pevný." + +#: fdmprinter.def.json +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 "Vzdálenost od hranic mezi modely, do jaké generovat vzájemně propletené struktury (měřeno v buňkách). Příliš málo buněk způsobí špatnou přilnavost." + +#: fdmprinter.def.json +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 "Vzdálenost od modelu k nejzazší linii límce. Větší límec zvyšuje přilnavost k podložce, ale také snižuje efektivní tiskovou plochu." + +#: fdmprinter.def.json +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 "Vzdálenost od vnějšku modelu, ve které nebudou vzájemně propletené se struktury generovány. Měřeno v buňkách." + +#: fdmprinter.def.json +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 "Vzdálenost od špičky trysky, ve které se teplo z trysky přenáší na filament." + +#: fdmprinter.def.json +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 "Vzdálenost spodního povrchu, který se rozšiřuje do výplně. Vyšší hodnoty umožňují lepší přilnavost povrchu k vzoru výplně a lepší přilnavost povrchu ke stěnám na spodní vrstvě. Nižší hodnoty šetří množství použitého materiálu." + +#: fdmprinter.def.json +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 "Vzdálenost povrchu je rozšířena do výplně. Vyšší hodnoty umožňují lepší přilnavost povrchu k vzoru výplně a díky tomu lepí přilnavost stěn na sousedních vrstvách k povrchu. Nižší hodnoty šetří množství použitého materiálu." + +#: fdmprinter.def.json +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 "Vzdálenost, ve které jsou vrchní vrstvy povrchu rozšířeny do výplně. Vyšší hodnoty umožňují lepší přilnavost povrchu k vzoru výplně a lepší přilnutí stěn nad vrstvou k povrchu. Nižší hodnoty šetří množství použitého materiálu." + +#: fdmprinter.def.json +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "Vzdálenost k pohybu hlavy tam a zpět přes štětec." + +#: fdmprinter.def.json +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 "Koncové body čar výplně jsou zkracovány pro šetření materiálu. Toto nastavení je úhel převisu koncových bodů těchto čar." + +#: fdmprinter.def.json +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 "Extra rychlost, kterou se tryska během vytlačování ochladí. Stejná hodnota se používá k označení rychlosti zahřívání ztracené při zahřívání během vytlačování." + +#: fdmprinter.def.json +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 "Vytlačovací souprava použitá pro tisk první vrstvy výplně podpory. Používá se při vícenásobném vytlačování." + +#: fdmprinter.def.json +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 "Vytlačovací souprava použitá pro tisk první vrstvy raftu. Používá se při vícenásobném vytlačování." + +#: fdmprinter.def.json +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 "Vytlačovací souprava použitá pro tisk podlah podpory. Používá se při vícenásobném vytlačování." + +#: fdmprinter.def.json +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 "Vytlačovací souprava použitá pro tisk výplně podpory. Používá se při vícenásobném vytlačování." + +#: fdmprinter.def.json +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 "Vytlačovací souprava použitá pro tisk vnitřních vrstev raftu. Používá se při vícenásobném vytlačování." + +#: fdmprinter.def.json +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 "Vytlačovací souprava použitá pro tisk střech a podlah podpory. Používá se při vícenásobném vytlačování." + +#: fdmprinter.def.json +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 "Vytlačovací souprava použitá pro tisk střech podpory. Používá se při vícenásobném vytlačování." + +#: fdmprinter.def.json +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 "Vytlačovací souprava použitá pro tisk okraje nebo límce. Používá se při vícenásobném vytlačování." + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "Vytlačovací souprava použitá pro tisk límce / okraje / raftu. Používá se při vícenásobném vytlačování." + +#: fdmprinter.def.json +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "Vytlačovací souprava použitá pro tisk podpory. Používá se při vícenásobném vytlačování." + +#: fdmprinter.def.json +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 "Vytlačovací souprava použitá pro tisk horní vrstvy (vrstev) raftu. Používá se při vícenásobném vytlačování." + +#: fdmprinter.def.json +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í." + +#: fdmprinter.def.json +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í." + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "Vytlačovací souprava použitá pro tisk vnější stěny. Používá se při vícenásobném vytlačování." + +#: fdmprinter.def.json +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 "Vytlačovací souprava použitá pro tisk horní a spodní pokožky. Používá se při vícenásobném vytlačování." + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "Vytlačovací souprava použitá pro tisk nejvyššího povrchu. Používá se při vícenásobném vytlačování." + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "Vytlačovací souprava použitá pro tisk stěn. Používá se při vícenásobném vytlačování." + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Rychlost ventilátoru při tisku základních vrstev raftu." + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "Rychlost ventilátoru při tisku středních vrstev raftu." + +#: fdmprinter.def.json +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Rychlost ventilátoru pro tisk raftu." + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Rychlost ventilátoru při tisku horních vrstev raftu." + +#: fdmprinter.def.json +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 "Umístění souboru obrázku, jehož hodnoty jasu určují minimální hustotu na odpovídajícím místě ve výplni tisku." + +#: fdmprinter.def.json +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 "Umístění souboru obrázku, jehož hodnoty jasu určují minimální hustotu na odpovídajícím místě v podpoře." + +#: fdmprinter.def.json +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 "Prvních několik vrstev je vytištěno pomaleji než zbytek modelu, aby se dosáhlo lepší přilnavosti k sestavovací desce a zlepšila se celková úspěšnost tisků. Rychlost se v těchto vrstvách postupně zvyšuje." + +#: fdmprinter.def.json +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 "Mezera mezi finální vrstvou raftu a první vrstvou modelu. Pouze první vrstva se zvýší o tuto částku, aby se snížilo spojení mezi vorovou vrstvou a modelem. Usnadňuje oloupání voru." + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Výška (Osa Z) plochy k tisku." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Výškový rozdíl při provádění Z-hopu." + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Výškový rozdíl při provádění Z-hopu." + +#: fdmprinter.def.json +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 "Výška každé vrstvy v mm. Vyšší hodnoty produkují rychlejší výtisky v nižším rozlišení, nižší hodnoty produkují pomalejší výtisky ve vyšším rozlišení." + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "Výška výplně dané hustoty před přepnutím na polovinu hustoty." + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "Výška podpůrné výplně dané hustoty před přepnutím na polovinu hustoty." + +#: fdmprinter.def.json +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 "Výška paprsků vzájemného propletení. Měřeno v počtu vrstev. Méně vrstev způsobí větší pevnost, ale zvýší náchylnost k vadám." + +#: fdmprinter.def.json +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 "Výška paprsků vzájemného propletení. Měřeno v počtu vrstev. Méně vrstev způsobí větší pevnost, ale zvýší náchylnost k vadám." + +#: fdmprinter.def.json +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 "Výška počáteční vrstvy v mm. Silnější počáteční vrstva usnadňuje přilnavost k montážní desce." + +#: fdmprinter.def.json +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 "Výška stupňů schodišťového dna podpory spočívá na modelu. Nízká hodnota ztěžuje odstranění podpory, ale příliš vysoké hodnoty mohou vést k nestabilním podpůrným strukturám. Nastavením na nulu vypnete chování podobné schodišti." + +#: fdmprinter.def.json +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 "Vodorovná vzdálenost mezi první čarou límce a obrysem první vrstvy tisku. Malá mezera může usnadnit demontáž límce a přitom poskytovat tepelné výhody." + +#: fdmprinter.def.json +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 "" +"Vodorovná vzdálenost mezi okrajem a první vrstvou tisku.\n" +"Toto je minimální vzdálenost. Z této vzdálenosti se bude rozprostírat více linek okraje." + +#: fdmprinter.def.json +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 "Čáry výplně jsou vyrovnávány, aby se snížila doba tisku. Toto je maximální dovolený úhel převisu podél čáry výplně." + +#: fdmprinter.def.json +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "Výplňový vzor se pohybuje touto vzdáleností podél osy X." + +#: fdmprinter.def.json +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "Výplňový vzor se pohybuje touto vzdáleností podél osy Y." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Trhnutí, kterým je tisknuta základní vrstva raftu." + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "Trhnutí, kterým je tisknuta střední vrstva raftu." + +#: fdmprinter.def.json +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "Trhnutí, při kterém je raft tištěn." + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Trhnutí, kterým se tisknou horní vrstvy raftu." + +#: fdmprinter.def.json +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 "Největší šířka spodních částí 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 spodní vrstvy na šikmých plochách v modelu." + +#: fdmprinter.def.json +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 "Největší šířka 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í / spodní kůže na šikmých plochách v modelu." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Čas vrstvy, který nastavuje práh mezi normální rychlostí ventilátoru a maximální rychlostí ventilátoru. Vrstvy, které se tisknou pomaleji než tentokrát, používají běžnou rychlost ventilátoru. U rychlejších vrstev se rychlost ventilátoru postupně zvyšuje směrem k maximální rychlosti ventilátoru." + +#: fdmprinter.def.json +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "Délka materiálu zasunutého během pohybu zasunutí." + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Materiál podložky nainstalované na tiskárně." + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "Maximální povolená výška se liší od výšky základní vrstvy." + +#: fdmprinter.def.json +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 "Maximální úhel, který bude mít část štítu. S 0° svislým a 90° vodorovným. Menší úhel vede k méně poškozeným štítům, ale více materiálu." + +#: fdmprinter.def.json +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 "Maximální úhel přesahů po jejich tisku. Při hodnotě 0 ° jsou všechny převisy nahrazeny kusem modelu připojeným k podložce, 90 ° model nijak nijak nezmění." + +#: fdmprinter.def.json +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 "Maximální plocha díry v základně modelu, která nebude odstraněna funkcí „Udělat převis tisknutelný“. Menší díry budou zachovány. Hodnota 0 mm² způsobí vyplnění všech děr v základně modelu." + +#: fdmprinter.def.json +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 "Maximální odchylka povolená při snižování rozlišení pro nastavení Maximální rozlišení. Pokud toto zvýšíte, bude tisk méně přesný, ale g-kód bude menší. Maximální odchylka je limit pro maximální rozlišení, takže pokud dojde ke konfliktu, bude maximální odchylka vždy platná." + +#: fdmprinter.def.json +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 "Maximální vzdálenost mezi podpůrnými strukturami ve směru X / Y. Když jsou oddělené struktury blíže k sobě než tato hodnota, struktury se sloučí do jedné." + +#: fdmprinter.def.json +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 "Maximální vzdálenost v mm pro pohyb vlákna za účelem kompenzace změn průtoku." + +#: fdmprinter.def.json +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 "Maximální dovolená odchylka plochy extruze při odstraňování mezilehlých bodů na rovné čáře. Mezilehlý bod může sloužit jako místo, kde se mění tloušťka dlouhé přímé čáry. Proto, pokud je odstraněn, bude mít tato čára jednotnou šířku a následkem toho ztratí (nebo získá) kousek plochy extruze. Při zvýšení tohoto nastavení můžete zaznamenat mírnou podextruzi nebo nadměrnou extruzi mezi rovnými rovnoběžnými zdmi, jelikož bude dovoleno odstranit více mezilehlých bodů měnících šířku čáry. Vaše výtisky budou méně přesně, ale g-kód bude menší." + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "Maximální okamžitá změna rychlosti během tisku počáteční vrstvy." + +#: fdmprinter.def.json +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "Maximální okamžitá změna rychlosti tiskové hlavy." + +#: fdmprinter.def.json +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Maximální okamžitá změna rychlosti při provádění žehlení." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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ě." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "Maximální okamžitá změna rychlosti, s níž je vytištěna výplň podpory." + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "Maximální okamžitá změna rychlosti tisku vnějších stěn." + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "Maximální okamžitá změna rychlosti, se kterou se tiskne hlavní věž." + +#: fdmprinter.def.json +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "Maximální okamžitá změna rychlosti tisku potisků střech a podlah." + +#: fdmprinter.def.json +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "Maximální okamžitá změna rychlosti, se kterou jsou střechy nosiče vytištěny." + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "Maximální okamžitá změna rychlosti, se kterou jsou Límec a okraj vytištěny." + +#: fdmprinter.def.json +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "Maximální okamžitá změna rychlosti, se kterou se tiskne nosná struktura." + +#: fdmprinter.def.json +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "Maximální okamžitá změna rychlosti, se kterou se stěny tisknou." + +#: fdmprinter.def.json +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "Maximální okamžitá změna rychlosti, se kterou se potiskují vrchní povrchové vrstvy." + +#: fdmprinter.def.json +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "Maximální okamžitá změna rychlosti, se kterou se tisknou horní / dolní vrstvy." + +#: fdmprinter.def.json +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "Maximální okamžitá změna rychlosti, se kterou se pohybují pohyby." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "Maximální rychlost pro motor ve směru X." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Maximální rychlost pro motor ve směru Y." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Maximální rychlost pro motor ve směru Z." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "Maximální rychlost filamentu." + +#: fdmprinter.def.json +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 "Maximální šířka schodů schodišťového dna podpory spočívá na modelu. Nízká hodnota ztěžuje odstranění podpory, ale příliš vysoké hodnoty mohou vést k nestabilním podpůrným strukturám." + +#: fdmprinter.def.json +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "Minimální vzdálenost mezi vnější stranou formy a modelu." + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Minimální rychlost pohybu tiskové hlavy." + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "Minimální teplota při zahřívání až na teplotu tisku, při které již může tisk začít." + +#: fdmprinter.def.json +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 "Minimální doba, po kterou musí být extrudér neaktivní, než se tryska ochladí. Pouze v případě, že se extrudér nepoužívá déle, než je tato doba, může se ochladit na pohotovostní teplotu." + +#: fdmprinter.def.json +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 "Minimální úhel vnitřních přesahů, pro které je přidána výplň. Při hodnotě 0 ° jsou objekty zcela vyplněny výplní, 90 ° neposkytuje výplně." + +#: fdmprinter.def.json +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 "Minimální úhel přesahů, pro které je přidána podpora. Při hodnotě 0° jsou podporovány všechny přesahy, 90° neposkytuje žádnou podporu." + +#: fdmprinter.def.json +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 "Minimální vzdálenost potřebná k tomu, aby ke stažení došlo. To pomáhá dosáhnout menšího počtu stažení v malé oblasti." + +#: fdmprinter.def.json +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 "Minimální délka límce nebo okraje. Pokud tuto délku nedosáhnou všechny linie sukní nebo okrajů dohromady, přidává se více sukní nebo okrajových linií, dokud není dosaženo minimální délky. Poznámka: Pokud je počet řádků nastaven na 0, ignoruje se." + +#: fdmprinter.def.json +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 "Minimální šířka čáry použité jako výplň mezi párovými čárami zdi. Toto nastavení určuje tloušťku modelu, při které se přepíná z tisku dvou čar zdi na tisk dvou vnějších čar zdi a jedné centrální čáry zdi mezi nimi. Vyšší hodnota Minimální šířky nepárové čáry zdi vede k vyšší maximální šířce párové čáry zdi. Maximální šířka nepárové čáry zdi je vypočtena jako 2 * Minimální šířka párové čáry zdi." + +#: fdmprinter.def.json +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 "Minimální šířka čáry pro běžné mnohoúhelníkové zdi. Toto nastavení určuje tloušťku, při které se přepne z tisku jedné tenké čáry zdi na tisk dvou čar zdi. Vyšší hodnota Minimální šířky párové čáry zdi vede k vyšší maximální šířce nepárové čáry zdi. Maximální šířka párové čáry zdi je spočítána jako Šířka čáry vnější stěny + 0,5 * Minimální šířka nepárové čáry zdi." + +#: fdmprinter.def.json +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 "Minimální rychlost tisku, navzdory zpomalení kvůli minimální době vrstvy. Pokud by tiskárna příliš zpomalila, byl by tlak v trysce příliš nízký a výsledkem by byla špatná kvalita tisku." + +#: fdmprinter.def.json +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 "Minimální velikost segmentu čáry po krájení. Pokud toto zvětšíte, bude mít síť nižší rozlišení. To může umožnit, aby tiskárna udržovala krok s rychlostí, kterou musí zpracovat g-kód, a zvýší se rychlost řezu odstraněním detailů sítě, které stejně nemůže zpracovat." + +#: fdmprinter.def.json +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 "Minimální velikost segmentu cestovní čáry po krájení. Pokud toto zvýšíte, budou mít cestovní pohyby méně hladké rohy. To může umožnit tiskárně držet krok s rychlostí, kterou musí zpracovat g-kód, ale může to způsobit, že se vyhnutí modelu stane méně přesným." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "Minimální objem pro každou vrstvu hlavní věže, aby se propláchlo dost materiálu." + +#: fdmprinter.def.json +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Název vašeho modelu 3D tiskárny." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "ID trysky pro vytlačovací stroj, např. \"AA 0.4\" nebo \"BB 0.8\"." + +#: fdmprinter.def.json +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 "Při cestování se tryska vyhýbá již potištěným částem. Tato možnost je k dispozici, pouze pokud je povolen combing." + +#: fdmprinter.def.json +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "Při cestování se tryska vyhýbá již potištěným podpěrám. Tato možnost je k dispozici, pouze pokud je combing povolen." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "Počet výplňových vrstev, které podporují okraje povrchu." + +#: fdmprinter.def.json +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 "Počet počátečních spodních vrstev od montážní desky směrem nahoru. Při výpočtu podle tloušťky dna je tato hodnota zaokrouhlena na celé číslo." + +#: fdmprinter.def.json +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 "Počet vrstev mezi základnou a povrchem raftu. Tyto vrstvy tvoří hlavní část tloušťky raftu. Vyšší hodnota vytvoří tlustší a robustnější raft." + +#: fdmprinter.def.json +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 "Počet řádků použitých pro límec. Více linek límce zvyšuje přilnavost k podložce, ale také snižuje efektivní tiskovou plochu." + +#: fdmprinter.def.json +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ý okraj. Více okrajových linií zvyšuje přilnavost k stavební desce za cenu nějakého dalšího materiálu." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Počet vrchních vrstev. Při výpočtu podle nejvyšší tloušťky se tato hodnota zaokrouhlí na celé číslo." + +#: fdmprinter.def.json +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 "Počet nejpřednějších vrstev pokožky. Obvykle stačí jedna horní vrstva nejvíce k vytvoření horních povrchů vyšší kvality." + +#: fdmprinter.def.json +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 "Počet stěn, který mají mít podpory. Přidání stěny může učinit podporu spolehlivější a umožnit podporovat lépe převisy, ale zároveň prodlouží tisk a zvýší spotřebu materiálu." + +#: fdmprinter.def.json +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 "Počet stěn, který mají mít podlahy podpor. Přidání stěny může učinit podporu spolehlivější a umožnit podporovat lépe převisy, ale zároveň prodlouží tisk a zvýší spotřebu materiálu." + +#: fdmprinter.def.json +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 "Počet stěn, který mají mít střechy podpor. Přidání stěny může učinit podporu spolehlivější a umožnit podporovat lépe převisy, ale zároveň prodlouží tisk a zvýší spotřebu materiálu." + +#: fdmprinter.def.json +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 "Počet stěn, který mají mít rozhraní podpor. Přidání stěny může učinit podporu spolehlivější a umožnit podporovat lépe převisy, ale zároveň prodlouží tisk a zvýší spotřebu materiálu." + +#: fdmprinter.def.json +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 "Počet čar zdí od středu, které mají měnit svou šířku při změně počtu čar zdí. Nižší hodnoty znamenají, že vnější stěny nebudou měnit svou šířku." + +#: fdmprinter.def.json +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 "Počet stěn. Při výpočtu podle tloušťky stěny je tato hodnota zaokrouhlena na celé číslo." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Vzor podpůrných struktur tisku. Výsledkem různých dostupných možností je robustní nebo snadno odstranitelná podpora." + +#: fdmprinter.def.json +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "Vzor nejvyšší vrstvy." + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Vzor horní / dolní vrstvy." + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "Vzor ve spodní části tisku na první vrstvě." + +#: fdmprinter.def.json +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Vzor pro žehlení horních povrchů." + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "Vzor, kterým se potiskují podlahy podpěry." + +#: fdmprinter.def.json +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Vzor, pomocí kterého je vytištěno rozhraní podpory s modelem." + +#: fdmprinter.def.json +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "Vzor, kterým se tisknou střechy podpěry." + +#: fdmprinter.def.json +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "Poloha poblíž místa, kde začít tisknout každou část ve vrstvě." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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í." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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á." + +#: fdmprinter.def.json +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 "Nejmenší objem, který by měla mít vytlačovací cesta, než povolí dojezd. U menších vytlačovacích drah se v bowdenové trubici vytvořil menší tlak, a tak se dojezdový objem lineárně upraví. Tato hodnota by měla být vždy větší než dojezdový objem." + +#: fdmprinter.def.json +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 "Rychlost (° C / s), kterou tryska ochlazuje, se průměrovala nad oknem normální teploty tisku a pohotovostní teploty." + +#: fdmprinter.def.json +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 "Rychlost (° C / s), kterou se tryska zahřívá, se průměruje nad oknem normální teploty tisku a pohotovostní teploty." + +#: fdmprinter.def.json +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ě." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Rychlost tisku výplně." + +#: fdmprinter.def.json +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Rychlost tisku." + +#: fdmprinter.def.json +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ý." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Rychlost, kterou se ventilátory otáčejí na začátku tisku. V následujících vrstvách se rychlost ventilátoru postupně zvyšuje až na vrstvu odpovídající normální rychlosti ventilátoru ve výšce." + +#: fdmprinter.def.json +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 "Rychlost, při které se fanoušci točí před dosažením prahu. Když vrstva tiskne rychleji, než je prahová hodnota, rychlost ventilátoru se postupně naklání směrem k maximální rychlosti ventilátoru." + +#: fdmprinter.def.json +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 "Rychlost, kterou se fanoušci otáčejí při minimální době vrstvy. Rychlost ventilátoru se postupně zvyšuje mezi normální rychlostí ventilátoru a maximální rychlostí ventilátoru, když je dosaženo prahu." + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "Rychlost, se kterou se vlákno během navíjení pohybuje." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "Rychlost, při které je vlákno aktivováno během pohybu stěrače." + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "Rychlost, při které se vlákno tlačí zpět po změně trysky." + +#: fdmprinter.def.json +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "Rychlost, při které je vlákno zasunuto a aktivováno během pohybu zasunutí." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "Rychlost, při které je vlákno zasunuto a aktivováno během pohybu stěrače." + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "Rychlost, kterou je vlákno zasunuto během změny trysky." + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "Rychlost, při které se vlákno během zatahovacího pohybu stahuje." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "Rychlost, při které je vlákno zataženo během pohybu stěrače." + +#: fdmprinter.def.json +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 "Rychlost, při které je vlákno zasunuto. Vyšší retrakční rychlost funguje lépe, ale velmi vysoká retrakční rychlost může vést k broušení vlákna." + +#: fdmprinter.def.json +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 "Rychlost tisku potisku podlahy. Tisk s nižší rychlostí může zlepšit přilnutí podpory na váš model." + +#: fdmprinter.def.json +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 "Rychlost tisku výplně podpory. Tisk výplně při nižších rychlostech zvyšuje stabilitu." + +#: fdmprinter.def.json +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 "Rychlost tisku střední 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ý." + +#: fdmprinter.def.json +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 "Rychlost tisku vnějších stěn. Tisk vnější stěny nižší rychlostí zlepšuje konečnou kvalitu kůže. Avšak velký rozdíl mezi rychlostí vnitřní stěny a rychlostí vnější stěny negativně ovlivní kvalitu." + +#: fdmprinter.def.json +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 "Rychlost tisku hlavní věže. Pomalejší tisk hlavní věže může zvýšit její stabilitu, je-li adheze mezi různými vlákny suboptimální." + +#: fdmprinter.def.json +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "Rychlost otáčení ventilátorů chlazení tisku." + +#: fdmprinter.def.json +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "Rychlost, při které se raft tiskne." + +#: fdmprinter.def.json +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 "Rychlost, jakou se potiskují střechy a podlahy podpěry. Jejich tisk nižší rychlostí může zlepšit kvalitu převisu." + +#: fdmprinter.def.json +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 "Rychlost, při které jsou střechy podpěry vytištěny. Jejich tisk nižší rychlostí může zlepšit kvalitu převisu." + +#: fdmprinter.def.json +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 "Rychlost tisku Límec a okraje. Normálně se tak děje při počáteční rychlosti vrstvy, ale někdy můžete chtít sukni nebo okraj vytisknout jinou rychlostí." + +#: fdmprinter.def.json +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 "Rychlost tisku nosné struktury. Podpora tisku při vyšších rychlostech může výrazně zkrátit dobu tisku. Kvalita povrchu nosné konstrukce není důležitá, protože je odstraněna po tisku." + +#: fdmprinter.def.json +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 "Rychlost tisku horních vrstev raftu. Ty by měly být vytištěny trochu pomaleji, aby tryska mohla pomalu vyhlazovat sousední povrchové linie." + +#: fdmprinter.def.json +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 "Rychlost, při které se svislý pohyb Z provádí pro Z Hopy. To je obvykle nižší než rychlost tisku, protože stavba talíře nebo portálového zařízení je obtížnější se pohybovat." + +#: fdmprinter.def.json +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Rychlost, s jakou se stěny tisknou." + +#: fdmprinter.def.json +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "Rychlost, kterou musí projít přes horní povrch." + +#: fdmprinter.def.json +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "Rychlost, kterou se má vlákno navíjet zpět, aby se čistě přerušilo." + +#: fdmprinter.def.json +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "Rychlost tisku povrchových vrstev povrchu." + +#: fdmprinter.def.json +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Rychlost tisku horní a dolní vrstvy." + +#: fdmprinter.def.json +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Rychlost, jakou se dělají pohyby." + +#: fdmprinter.def.json +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 "Rychlost, kterou se má pohybovat během dojezdu, relativně k rychlosti vytlačovací dráhy. Doporučuje se hodnota mírně pod 100%, protože během jízdy se pohybuje tlak v bowdenové trubici." + +#: fdmprinter.def.json +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 "Rychlost počáteční vrstvy. Doporučuje se nižší hodnota pro zlepšení přilnavosti k montážní desce. Nemá vliv na samotné struktury pro přilnavost k podložce (např. límec a raft)." + +#: fdmprinter.def.json +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 "Rychlost tisku pro počáteční vrstvu. Doporučuje se nižší hodnota pro zlepšení přilnavosti k montážní desce." + +#: fdmprinter.def.json +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 "Rychlost pohybu se pohybuje v počáteční vrstvě. Doporučuje se nižší hodnota, aby nedocházelo k tažení dříve potištěných částí pryč od sestavovací desky. Hodnota tohoto nastavení lze automaticky vypočítat z poměru mezi rychlostí cestování a rychlostí tisku." + +#: fdmprinter.def.json +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "Teplota, při které je filament možno přerušit pro čisté přerušení." + +#: fdmprinter.def.json +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 "Teplota prostředí, ve kterém se má tisknout. Pokud je to 0, nebude se brát teplota prostředí v potaz." + +#: fdmprinter.def.json +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "Teplota trysky, když je pro tisk aktuálně použita jiná tryska." + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "Teplota, na kterou se má začít ochlazovat těsně před koncem tisku." + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +msgstr "Teplota, která se používá pro tisk první vrstvy." + +#: fdmprinter.def.json +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Teplota, která se používá pro tisk." + +#: fdmprinter.def.json +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 "Teplota použitá pro vyhřívanou podložku při první vrstvě. Pokud je to 0, podložka se při první vrstvě vyhřívat nebude." + +#: fdmprinter.def.json +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 "Teplota použitá pro vyhřívanou podložku. Pokud je to 0, podložka se vyhřívat nebude." + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "Teplota použitá k čištění materiálu by měla být zhruba stejná jako nejvyšší možná teplota tisku." + +#: fdmprinter.def.json +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 "Tloušťka spodních vrstev v tisku. Tato hodnota dělená výškou vrstvy definuje počet spodních vrstev." + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "Tloušťka další výplně, která podporuje okraje povrchu." + +#: fdmprinter.def.json +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 "Tloušťka rozhraní podpěry, kde se dotýká modelu na spodní nebo horní straně." + +#: fdmprinter.def.json +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 "Tloušťka nosných podlah. Tím se řídí počet hustých vrstev, které jsou vytištěny na místech modelu, na kterých leží podpora." + +#: fdmprinter.def.json +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 "Tloušťka nosných střech. Tím se řídí množství hustých vrstev v horní části nosiče, na kterém model spočívá." + +#: fdmprinter.def.json +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 "Tloušťka horních vrstev v tisku. Tato hodnota dělená výškou vrstvy definuje počet vrchních vrstev." + +#: fdmprinter.def.json +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 "Tloušťka horní / dolní vrstvy v tisku. Tato hodnota dělená výškou vrstvy definuje počet vrstev horní / dolní." + +#: fdmprinter.def.json +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 "Tloušťka stěn v horizontálním směru. Tato hodnota dělená šířkou čáry stěny definuje počet stěn." + +#: fdmprinter.def.json +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 "Tloušťka výplňového materiálu na vrstvu. Tato hodnota by měla být vždy násobkem výšky vrstvy a je jinak zaoblená." + +#: fdmprinter.def.json +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 "Tloušťka na vrstvu nosného výplňového materiálu. Tato hodnota by měla být vždy násobkem výšky vrstvy a je jinak zaoblená." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Typ generovaného g-kódu." + +#: fdmprinter.def.json +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Objem jinak vytekl. Tato hodnota by měla být obecně blízká průměru trysek." + +#: fdmprinter.def.json +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "Šířka (Osa X) plochy k tisku." + +#: fdmprinter.def.json +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 "Šířka okraje pro tisk pod podpěrou. Větší okraj zvyšuje přilnavost ke podložce za cenu nějakého dalšího materiálu." + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "Šířka paprsků vzájemného propletení." + +#: fdmprinter.def.json +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "Šířka hlavní věže." + +#: fdmprinter.def.json +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 "Šířka, do které se chvěje. Doporučuje se to udržovat pod šířkou vnější stěny, protože vnitřní stěny zůstávají nezměněny." + +#: fdmprinter.def.json +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 "Okno, ve kterém je vynucován maximální počet stažení. Tato hodnota by měla být přibližně stejná jako retrakční vzdálenost, takže je účinně omezen počet opakování protažení stejnou vrstvou materiálu." + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "Souřadnice X polohy hlavní věže." + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "Souřadnice Y polohy hlavní věže." + +#: fdmprinter.def.json +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Ve scéně existují podpůrné masky. Toto nastavení je kontrolováno Curou." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Toto nastavení řídí, kolik vnitřních rohů v obrysu raftů je zaobleno. Vnitřní rohy jsou zaokrouhleny na půlkruh s poloměrem rovným zde uvedené hodnotě. Toto nastavení také odstraní otvory v obrysu raftu, které jsou menší než takový kruh." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Tím se vytvoří kolem modelu zeď, která zachycuje (horký) vzduch a chrání před vnějším proudem vzduchu. Obzvláště užitečné pro materiály, které se snadno deformují." + +#: fdmprinter.def.json +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 "Model bude zvětšen tímto faktorem ve směru XY (horizontálně), aby bylo kompenzováno smrštění materiálu po vychladnutí." + +#: fdmprinter.def.json +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 "Model bude zvětšen tímto faktorem ve směru Z (vertikálně), aby bylo kompenzováno smrštění materiálu po vychladnutí." + +#: fdmprinter.def.json +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 "Model bude zvětšen tímto faktorem, aby bylo kompenzováno smrštění materiálu po vychladnutí." + +#: fdmprinter.def.json +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Vrchní vrstvy" + +#: fdmprinter.def.json +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Horní vzdálenost rozšíření povrchu" + +#: fdmprinter.def.json +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Horní šířka odstranění povrchu" + +#: fdmprinter.def.json +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Akcelerace tisku horního povrchu" + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Nejvyšší povrchový extrudér" + +#: fdmprinter.def.json +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Nejlepší horní povrchový tok" + +#: fdmprinter.def.json +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Okamžitá rychlost při tisku horního povrchu" + +#: fdmprinter.def.json +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Nejvyšší povrchová vrstva" + +#: fdmprinter.def.json +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Pokyny pro horní povrchovou linii" + +#: fdmprinter.def.json +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Nejvyšší šířka linie povrchu" + +#: fdmprinter.def.json +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Vzor horního povrchu" + +#: fdmprinter.def.json +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Rychlost tisku horního povrchu" + +#: fdmprinter.def.json +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Vrchní tloušťka" + +#: fdmprinter.def.json +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 "Horní a/nebo dolní povrchy objektu s větším úhlem, než je toto nastavení, nebudou mít své horní/spodní povrchy rozšířeny. Tím se zabrání rozšíření úzkých oblastí, které jsou vytvořeny, když má povrch modelu téměř svislý sklon. Úhel 0° je vodorovný a způsobí, že žádný povrch nebude rozšířen, zatímco úhel 90° je svislý a způsobí, že všechny povrchy budou rozšířeny." + +#: fdmprinter.def.json +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Vrch/spodek" + +#: fdmprinter.def.json +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Vrch/spodek" + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Akcelerace tisku nahoře/dole" + +#: fdmprinter.def.json +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Vrchní/spodní extruder" + +#: fdmprinter.def.json +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Horní/spodní průtok" + +#: fdmprinter.def.json +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Okamžitá rychlost při tisku vršku/spodku" + +#: fdmprinter.def.json +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Pokyny pro horní a dolní řádek" + +#: fdmprinter.def.json +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Horní/dolní šířka čáry" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Vrchní/spodní vzor" + +#: fdmprinter.def.json +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Rychlost tisku horní/spodní vrstvy" + +#: fdmprinter.def.json +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Vrchní/spodní tloušťka" + +#: fdmprinter.def.json +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Dotýká se podložky" + +#: fdmprinter.def.json +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Průměr věže" + +#: fdmprinter.def.json +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Úhel střechy věže" + #: fdmprinter.def.json msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Transformační matice, která se použije na model při načítání ze souboru." +#: fdmprinter.def.json +msgctxt "travel label" +msgid "Travel" +msgstr "Pohyb" + +#: fdmprinter.def.json +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Cestovní akcelerace" + +#: fdmprinter.def.json +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Vzdálenost vyhnutí se při pohybu" + +#: fdmprinter.def.json +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Okamžitá rychlost při cestování" + +#: fdmprinter.def.json +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Cestovní rychlost" + +#: fdmprinter.def.json +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 "S modelem zacházejte pouze jako s povrchem, objemem nebo objemy s volnými povrchy. Normální režim tisku tiskne pouze uzavřené svazky. „Povrch“ vytiskne jedinou stěnu, která sleduje povrch oka bez výplně a bez horní / dolní povrch. „Oba“ tiskne uzavřené svazky jako normální a všechny zbývající polygony jako povrchy." + +#: fdmprinter.def.json +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Strom" + +#: fdmprinter.def.json +msgctxt "support_tree_angle label" +msgid "Tree Support Branch Angle" +msgstr "Úhel větve stromové podpory" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter label" +msgid "Tree Support Branch Diameter" +msgstr "Průměr větve podpěry stromu" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter_angle label" +msgid "Tree Support Branch Diameter Angle" +msgstr "Průměr úhlu větve podpěry stromu" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance label" +msgid "Tree Support Branch Distance" +msgstr "Vzdálenost větví stromu" + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution label" +msgid "Tree Support Collision Resolution" +msgstr "Stromová podpora - rozlišení kolize" + +#: fdmprinter.def.json +msgctxt "support_tree_max_diameter label" +msgid "Tree Support Trunk Diameter" +msgstr "Průměr kmene stromové podpory" + +#: fdmprinter.def.json +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Tri-Hexagony" + +#: fdmprinter.def.json +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Trojúhelníky" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Trojúhelníky" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Trojúhelníky" + +#: fdmprinter.def.json +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Trojúhelníky" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Trojúhelníky" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Spojit překrývající se objekty" + +#: fdmprinter.def.json +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 "Nepodporované stěny kratší než tato budou vytištěny pomocí běžného nastavení zdi. Delší nepodporované stěny budou vytištěny pomocí nastavení mostní zdi." + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Použít adaptivní vrstvy" + +#: fdmprinter.def.json +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Používat věže" + +#: fdmprinter.def.json +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 "Použít jiné samostatné akcelerace pro cestovní pohyby. Pokud je vypnuto, pak budou cestovní pohyby používat hodnotu akcelerace podle tištěné čáry v cíli pohybu." + +#: fdmprinter.def.json +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 "Použít samostatné nastavení okamžité rychlosti pro cestovní pohyby. Pokud je vypnuto, pak budou cestovní pohyby používat hodnotu okamžité rychlosti podle tištěné čáry v cíli pohybu." + +#: fdmprinter.def.json +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 "Použijte spíše relativní extruzi než absolutní extruzi. Použití relativních E-kroků usnadňuje následné zpracování g-kódu. Není však podporována všemi tiskárnami a může vést k velmi malým odchylkám v množství ukládaného materiálu ve srovnání s absolutními kroky E. Bez ohledu na toto nastavení bude režim vytlačování vždy nastaven na absolutní před výstupem jakéhokoli skriptu g-kódu." + +#: fdmprinter.def.json +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 podpoře malých převislých oblastí použijte specializované věže. Tyto věže mají větší průměr než oblast, kterou podporují. V blízkosti převisu se průměr věží zmenšuje a vytváří střechu." + +#: fdmprinter.def.json +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 "Pomocí této mřížky můžete upravit výplň dalších sítí, s nimiž se překrývá. Nahrazuje výplňové oblasti jiných sítí oblastmi pro tuto síť. Pro tuto mřížku se doporučuje tisknout pouze jednu zeď a žádnou horní / dolní vrstvu." + +#: fdmprinter.def.json +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Pomocí této sítě můžete určit oblasti podpory. To lze použít ke generování podpůrné struktury." + +#: fdmprinter.def.json +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 "Pomocí této mřížky určete, kde by žádná část modelu neměla být detekována jako převis. To lze použít k odstranění nežádoucí podpůrné struktury." + +#: fdmprinter.def.json +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Uživatelem specifikováno" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Vertikální faktor zvětšení pro kompenzaci smrštění" + +#: fdmprinter.def.json +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 "Vertikální tolerance ve slicovaných vrstvách. Obrysy vrstvy jsou obvykle vytvářeny průřezy středem tloušťky každé vrstvy (uprostřed). Alternativně každá vrstva může mít oblasti, které spadají dovnitř objemu po celé tloušťce vrstvy (Exkluzivní), nebo vrstva má oblasti, které padají dovnitř kdekoli v rámci vrstvy (Inkluzivní). Inclusive si zachovává nejpodrobnější detaily, Exclusive dělá to nejlepší a Middle zůstává co nejblíže původnímu povrchu." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Čekat na zahřátí desky" + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Čekat na zahřátí trysek" + +#: fdmprinter.def.json +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Akcelerace tisku zdi" + +#: fdmprinter.def.json +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Počet čar zdí měnících šířku" + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Extruder zdi" + +#: fdmprinter.def.json +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Průtok u zdi" + +#: fdmprinter.def.json +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Okamžitá rychlost při tisku zdi" + +#: fdmprinter.def.json +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Počet čar zdi" + +#: fdmprinter.def.json +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Šířka čáry stěny" + +#: fdmprinter.def.json +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Pořadí tisku zdí" + +#: fdmprinter.def.json +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Rychlost tisku zdi" + +#: fdmprinter.def.json +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Tloušťka stěny" + +#: fdmprinter.def.json +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Délka změny počtu čar zdí" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Minimální vzdálenost změny počtu čar zdí" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Rezerva pro změnu počtu čar zdí" + +#: fdmprinter.def.json +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Prahový úhel pro změnu počtu čar zdí" + +#: fdmprinter.def.json +msgctxt "shell label" +msgid "Walls" +msgstr "Stěny" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Je-li tato funkce povolena, je pořadí, ve kterém jsou vyplněny řádky výplně, optimalizováno, aby se snížila ujetá vzdálenost. Zkrácení doby cestování dosažené velmi záleží na modelu, který je nakrájen, vzor výplně, hustota atd. U některých modelů, které mají mnoho malých oblastí výplně, může být doba krájení modelu značně prodloužena." + +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Je-li tato funkce povolena, mění se rychlost ventilátoru chlazení tisku pro oblasti kůže bezprostředně nad podporou." + +#: fdmprinter.def.json +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 "Pokud je tato možnost povolena, jsou souřadnice z švu vztaženy ke středu každé součásti. Pokud je zakázána, souřadnice definují absolutní polohu na sestavovací desce." + +#: fdmprinter.def.json +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 "Pokud je větší než nula, combingové pohyby delší než tato vzdálenost budou používat retrakci. Nula znamená, že se při combingových pohybech retrakce provádět nebudou." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Při tisku oblastí povrchu můstku je množství vytlačovaného materiálu násobeno touto hodnotou." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Při tisku třetí vrstvy potahu se množství vytlačovaného materiálu násobí touto hodnotou." + +#: fdmprinter.def.json +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 "Pokud je minimální rychlost zasažena z důvodu minimálního času vrstvy, zvedněte hlavu z tisku a vyčkejte další čas, dokud není dosaženo minimálního času vrstvy." + +#: fdmprinter.def.json +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 "Pokud má model malé svislé mezery pouze v několika vrstvách, měla by být kolem těchto vrstev v úzkém prostoru normální povrch. Povolte toto nastavení, abyste nevytvořili vzhled, pokud je vertikální mezera velmi malá. To zlepšuje dobu tisku a slicování, ale technicky zůstává výplň vystavena vzduchu." + +#: fdmprinter.def.json +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 "Určuje, kdy se bude měnit počet čar zdí. Pokud se v modelu vyskytuje tvar klínu s úhlem přesahujícím hodnotu tohoto nastavení, nebudou se pro vyplnění prostoru uprostřed používat sbíhající se čáry zdí s proměnlivou šířkou. Snížením této hodnoty se snižuje počet a délka těchto prostředních zdí, ale může zůstávat více mezer nebo nadměrná extruze." + +#: fdmprinter.def.json +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í." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Kdykoli je provedeno zasunutí, sestavovací deska se 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." + +#: fdmprinter.def.json +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 "Zda podpůrná vzdálenost X / Y přepíše podpůrnou vzdálenost Z nebo naopak. Když X / Y přepíše Z, X / Y vzdálenost může vytlačit podporu z modelu, což ovlivňuje skutečnou Z vzdálenost k převisu. Můžeme to zakázat tím, že nepoužijeme vzdálenost X / Y kolem převisů." + +#: fdmprinter.def.json +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 "Zda jsou souřadnice X / Y nulové polohy tiskárny ve středu tisknutelné oblasti." + +#: fdmprinter.def.json +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 "Zda koncový doraz osy X je v kladném směru (vysoká souřadnice X) nebo záporný (souřadnice nízké X)." + +#: fdmprinter.def.json +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 "Zda koncový doraz osy X je v kladném směru (vysoká souřadnice X) nebo záporný (souřadnice nízké X)...." + +#: fdmprinter.def.json +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 "Zda je koncová zarážka osy Z v kladném směru (vysoká souřadnice Z) nebo záporná (souřadnice nízké Z)." + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Zda extrudéry sdílejí jeden ohřívač spíše než každý extrudér mající svůj vlastní ohřívač." + +#: fdmprinter.def.json +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 "Určuje, zda extrudery sdílí jednu trysku namísto, aby měl každý extruder svou vlastní trysku. Pokud je zvoleno, předpokládá se, že počáteční G kód tiskárny správně nastaví všechny extrudery do známého stavu, který je vzájemně kompatibilní (všechny filamenty jsou zatažené nebo jen jeden je nezatažený). V tomto případě je počáteční stav zatažení určen pro každý extruder parametrem 'machine_extruders_shared_nozzle_initial_retraction'." + +#: fdmprinter.def.json +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Zda má stroj vyhřívanou podložku." + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Zda je zařízení schopno stabilizovat teplotu podložky." + +#: fdmprinter.def.json +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 "Zda centrovat objekt uprostřed podložky (0,0), místo použití souřadnicového systému, ve kterém byl objekt uložen." + +#: fdmprinter.def.json +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 "Zda ovládat teplotu z Cury. Vypnutím této funkce můžete regulovat teplotu trysek z vnějšku Cury." + +#: fdmprinter.def.json +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 "Zda zahrnout příkazy pro sestavení teploty desky na začátku gcode. Pokud start_gcode již obsahuje příkazy teploty desky, Cura frontend toto nastavení automaticky deaktivuje." + +#: fdmprinter.def.json +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 "Zda zahrnout příkazy teploty trysek na začátku gcode. Pokud start_gcode již obsahuje příkazy teploty trysek, Cura frontend toto nastavení automaticky deaktivuje." + +#: fdmprinter.def.json +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 "Zda se má G-kód stírat tryskou mezi vrstvami (maximálně 1 na vrstvu). Povolení tohoto nastavení by mohlo ovlivnit chování zatahování při změně vrstvy. Použijte nastavení retrakce čištění pro kontrolu stažení ve vrstvách, kde bude fungovat skript." + +#: fdmprinter.def.json +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 "Zda se má vložit příkaz k čekání, až se dosáhne teploty podložky na začátku." + +#: fdmprinter.def.json +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 "Zda se vlákno před tiskem připraví blobem. Zapnutím tohoto nastavení zajistíte, že extrudér bude mít před tiskem materiál připravený v trysce. Tisk límce nebo Sukně může také fungovat jako základní nátěr, takže vypnutí tohoto nastavení ušetří čas." + +#: fdmprinter.def.json +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 "Zda tisknout všechny modely po jedné vrstvě najednou, nebo počkat na dokončení jednoho modelu, než se přesunete k další. Jeden za časovým režimem je možný, pokud a) je povolen pouze jeden extrudér a b) všechny modely jsou odděleny tak, že celá tisková hlava se může pohybovat mezi a všechny modely jsou menší než vzdálenost mezi tryskou a X / Osy Y." + +#: fdmprinter.def.json +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Zda se mají zobrazit různé varianty tohoto zařízení, které jsou popsány v samostatných souborech json." + +#: fdmprinter.def.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 "Zda se mají použít příkazy pro retrakci firmwaru (G10 / G11) namísto použití vlastnosti E v příkazech G1 pro stažení materiálu." + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Zda čekat na dosažení teploty trysky na začátku." + +#: fdmprinter.def.json +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Šířka jedné výplně." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Šířka jedné řádky. Obecně by šířka každé linie měla odpovídat šířce trysky. Avšak mírné snížení této hodnoty by mohlo vést k lepším výtiskům." + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Šířka jedné hlavní věže." + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Šířka čáry límce nebo okraje linie." + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Šířka jedné podpůrné podlahové linie." + +#: fdmprinter.def.json +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Šířka jedné podpůrné linie střechy." + +#: fdmprinter.def.json +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Šířka jedné linie podpůrné struktury." + +#: fdmprinter.def.json +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Šířka jedné horní/spodní čáry." + +#: fdmprinter.def.json +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Šířka jedné linie stěny pro všechny linie stěny kromě té nejvíce venkovní." + +#: fdmprinter.def.json +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Šířka jedné stěny." + +#: fdmprinter.def.json +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 "Šířka čar v základní vrstvě raftu. Měly by to být silné čáry, které napomáhají při přilnutí desky." + +#: fdmprinter.def.json +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 "Šířka čar ve střední vrstvě raftu. Další vytlačování druhé vrstvy způsobí, že se linie přilepí na podložku." + +#: fdmprinter.def.json +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 "Šířka čar v horním povrchu raftu. Mohou to být tenké čáry, takže horní část raftu je hladká." + +#: fdmprinter.def.json +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 "Šířka čáry nejkrajnější stěny. Snížením této hodnoty lze vytisknout vyšší úrovně detailů." + +#: fdmprinter.def.json +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 "Šířka zdi, která nahradí tenké části modelu (v souladu s nastavením Minimální velikost částí). Pokud je Minimální šířka tenkých stěn nižší, než část určitá modelu, bude zeď tištěna skutečnou tloušťkou této části." + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Pozice X stěrače" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Rychlost čištění Hopu" + +#: fdmprinter.def.json +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Otřete neaktivní trysku na Prime Tower" + +#: fdmprinter.def.json +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Velikost pohybu při čištění" + +#: fdmprinter.def.json +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Čistit trysku mezi vrstvami" + +#: fdmprinter.def.json +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Pozastavit čištění" + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Počet opakování čištění" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Vzdálenost retrakce při čištění" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Povolit retrakci při čištění" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Množství zasunutí filamentu při prvotním čištění" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Primární rychlost retrakce při čištění" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Rychlost navíjení stírání" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Rychlost retrakce při čištění" + +#: fdmprinter.def.json +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Čistit Z Hop" + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Výška čištění Z Hopu" + +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "V rámci výplně" + +#: fdmprinter.def.json +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 "Zapisování aktivního nástroje po odeslání dočasných příkazů neaktivnímu nástroji. Vyžadováno pro tisk s dvojitým extruderem se Smoothie, či jiným firmwarem s modálními příkazy nástrojů." + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Endstop X v kladném směru" + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "X místo, kde bude spuštěn čistící skript." + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y přepisuje Z" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Endstop Y v kladném směru" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Endstop Z v kladném směru" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Z Hop po přepnutí extruderu" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Výška Z Hopu po přepnutí extruderu" + +#: fdmprinter.def.json +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Výška Z Hopu" + +#: fdmprinter.def.json +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Z Hop pouze přes tištěné díly" + +#: fdmprinter.def.json +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Rychlost Z Hopu" + +#: fdmprinter.def.json +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Z Hop po zatažení" + +#: fdmprinter.def.json +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Vyrovnávní spojů na ose Z" + +#: fdmprinter.def.json +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Z pozice švu" + +#: fdmprinter.def.json +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Relativní Z šev" + +#: fdmprinter.def.json +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z šev X" + +#: fdmprinter.def.json +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z šev Y" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z přepisuje X/Y" + +#: fdmprinter.def.json +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Cik-cak" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "travel description" +msgid "travel" +msgstr "cestování" + #~ msgctxt "machine_head_with_fans_polygon description" #~ msgid "A 2D silhouette of the print head (fan caps included)." #~ msgstr "2D silueta tiskové hlavy (včetně krytů ventilátoru)." -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Vnější stěny před vnitřními" +#~ msgctxt "spaghetti_infill_extra_volume description" +#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." +#~ msgstr "Korekční termín pro úpravu celkového objemu, který se vytlačuje pokaždé, když se plní špagety." -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Když je povoleno, tiskne stěny v pořadí od vnějšku dovnitř. To může pomoci zlepšit rozměrovou přesnost v X a Y při použití plastu s vysokou viskozitou, jako je ABS; může však snížit kvalitu tisku vnějšího povrchu, zejména na převisy." +#~ msgctxt "wall_add_middle_threshold label" +#~ msgid "Add Middle Line Threshold" +#~ msgstr "Mez pro přidání prostřední čáry" + +#~ msgctxt "spaghetti_flow description" +#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." +#~ msgstr "Upravuje hustotu výplně špaget. Mějte na paměti, že hustota výplně řídí pouze rozteč linií výplňového vzoru, nikoli velikost výtluku pro výplň špaget." + +#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" +#~ msgid "Apply the extruder offset to the coordinate system." +#~ msgstr "Naneste odsazení extrudéru na souřadnicový systém." + +#~ msgctxt "material_flow_dependent_temperature label" +#~ msgid "Auto Temperature" +#~ msgstr "Automatická teplota" + +#~ msgctxt "material_flow_dependent_temperature description" +#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." +#~ msgstr "Změňte teplotu pro každou vrstvu automaticky s průměrnou rychlostí průtoku této vrstvy." + +#~ msgctxt "wireframe_strategy option compensate" +#~ msgid "Compensate" +#~ msgstr "Kompenzovat" + +#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" +#~ msgid "Compensate Inner Wall Overlaps" +#~ msgstr "Kompenzujte překrytí vnitřní stěny" + +#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" +#~ msgid "Compensate Outer Wall Overlaps" +#~ msgstr "Kompenzujte překrytí vnější stěny" #~ msgctxt "travel_compensate_overlapping_walls_enabled label" #~ msgid "Compensate Wall Overlaps" @@ -6680,37 +6599,89 @@ msgstr "Transformační matice, která se použije na model při načítání ze #~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." #~ msgstr "Vykompenzujte tok částí tisku, které se tisknou tam, kde je již zeď na místě." -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Kompenzujte překrytí vnější stěny" +#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" +#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." +#~ msgstr "Kompenzujte tok částí tisknuté vnitřní stěny, kde již je zeď na místě." #~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" #~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." #~ msgstr "Vykompenzujte tok částí tisknuté vnější stěny, kde již je zeď na místě." -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Kompenzujte překrytí vnitřní stěny" +#~ msgctxt "wireframe_top_jump description" +#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." +#~ msgstr "Vytvoří malý uzel v horní části vzestupné linie, takže po sobě jdoucí vodorovná vrstva má lepší šanci se k němu připojit. Platí pouze pro drátový tisk." -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Kompenzujte tok částí tisknuté vnitřní stěny, kde již je zeď na místě." +#~ msgctxt "wireframe_bottom_delay description" +#~ msgid "Delay time after a downward move. Only applies to Wire Printing." +#~ msgstr "Zpoždění po pohybu dolů. Platí pouze pro drátový tisk." -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Minimální průtok zdi" +#~ msgctxt "wireframe_top_delay description" +#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." +#~ msgstr "Zpoždění po pohybu vzhůru, aby mohla stoupající čára ztvrdnout. Platí pouze pro drátový tisk." -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "Minimální povolený procentuální průtok pro linii stěny. Kompenzace překrytí stěny snižuje průtok stěny, když leží blízko ke stávající zdi. Stěny, jejichž průtok je menší než tato hodnota, budou nahrazeny pohybem. Při použití tohoto nastavení musíte povolit kompenzaci překrytí stěny a vnější stěnu vytisknout před vnitřními stěnami." +#~ msgctxt "wireframe_flat_delay description" +#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." +#~ msgstr "Doba zpoždění mezi dvěma vodorovnými segmenty. Zavedení takového zpoždění může způsobit lepší přilnavost k předchozím vrstvám ve spojovacích bodech, zatímco příliš dlouhé zpoždění může způsobit ochabnutí. Platí pouze pro drátový tisk." -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Preferovat retrakci" +#~ 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." +#~ 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á s rozměrovou přesností, 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ů." -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Je-li tato funkce povolena, je pro retrakční pohyby, které nahrazují stěny, jejichž průtok je pod prahem minimálního průtoku, používáno spíše zatahování." +#~ 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 lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "Určuje prioritu této sítě, když se překrývá více sítí výplně. U oblastí, kde se překrývá více sítí výplně, se nastavení přebírá ze sítě s nejnižším pořadím. Síť výplně s vyšším pořadím bude modifikovat výplň sítě výplně s nižším pořadím a běžné sítě." + +#~ msgctxt "infill_mesh_order description" +#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "Určuje prioritu této sítě při zvažování překrývajících se objemů. Oblasti, kde je umístěno více sítí, budou vyhrány sítí s nižším hodnocením. Výplňová síť s vyšším pořádkem upraví výplň síťových výplní s nižším řádem a běžnými oky." + +#~ msgctxt "infill_mesh_order description" +#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "Určuje, která výplň je uvnitř výplně jiné výplně. Výplňová síť s vyšším pořádkem upraví výplň síťových výplní s nižším řádem a normálními oky." + +#~ msgctxt "wireframe_nozzle_clearance description" +#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." +#~ msgstr "Vzdálenost mezi tryskou a vodorovnými liniemi dolů. Větší vůle vede k diagonálně dolů směřujícím liniím s menším strmým úhlem, což zase vede k menšímu spojení nahoru s další vrstvou. Platí pouze pro drátový tisk." + +#~ msgctxt "wireframe_up_half_speed description" +#~ msgid "" +#~ "Distance of an upward move which is extruded with half speed.\n" +#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." +#~ msgstr "" +#~ "Vzdálenost pohybu nahoru, který je vytlačován poloviční rychlostí.\n" +#~ "To může způsobit lepší přilnavost k předchozím vrstvám, aniž by se materiál v těchto vrstvách příliš zahříval. Platí pouze pro drátový tisk." + +#~ msgctxt "support_xy_distance_overhang description" +#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " +#~ msgstr "Vzdálenost podpor od převisu ve směru X / Y. " + +#~ msgctxt "wireframe_fall_down description" +#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Vzdálenost, se kterou materiál padá po vytlačení směrem nahoru. Tato vzdálenost je kompenzována. Platí pouze pro drátový tisk." + +#~ msgctxt "wireframe_drag_along description" +#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Vzdálenost, se kterou je materiál vytlačování směrem vzhůru tažen spolu s diagonálně směrem dolů vytlačováním. Tato vzdálenost je kompenzována. Platí pouze pro drátový tisk." + +#~ msgctxt "material_end_of_filament_purge_length label" +#~ msgid "End Of Filament Purge Length" +#~ msgstr "Délka proplachování konce filamentu" + +#~ msgctxt "material_end_of_filament_purge_speed label" +#~ msgid "End Of Filament Purge Speed" +#~ msgstr "Rychlost proplachování konce filamentu" + +#~ msgctxt "speed_equalize_flow_enabled label" +#~ msgid "Equalize Filament Flow" +#~ msgstr "Vyrovnat tok vlákna" + +#~ msgctxt "fill_perimeter_gaps option everywhere" +#~ msgid "Everywhere" +#~ msgstr "Všude" + +#~ msgctxt "machine_filament_park_distance label" +#~ msgid "Filament Park Distance" +#~ msgstr "Vzdálenost filamentového parkingu" #~ msgctxt "fill_perimeter_gaps label" #~ msgid "Fill Gaps Between Walls" @@ -6720,14 +6691,6 @@ msgstr "Transformační matice, která se použije na model při načítání ze #~ msgid "Fills the gaps between walls where no walls fit." #~ msgstr "Vyplní mezery mezi stěnami, kde se žádné stěny nehodí." -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Nikde" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Všude" - #~ msgctxt "filter_out_tiny_gaps label" #~ msgid "Filter Out Tiny Gaps" #~ msgstr "Vyfiltrujte drobné mezery" @@ -6736,187 +6699,55 @@ msgstr "Transformační matice, která se použije na model při načítání ze #~ msgid "Filter out tiny gaps to reduce blobs on outside of model." #~ msgstr "Filtrujte drobné mezery, abyste zmenšili kuličky na vnější straně modelu." -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Vyrovnat tok vlákna" +#~ msgctxt "wireframe_flow_connection description" +#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." +#~ msgstr "Kompenzace toku při stoupání nebo klesání. Platí pouze pro drátový tisk." -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Tiskněte tenčí než normální čáry rychleji, takže množství materiálu vytlačovaného za sekundu zůstává stejné. Tenké kousky ve vašem modelu mohou vyžadovat čáry vytištěné s menší šířkou čáry, než je uvedeno v nastavení. Toto nastavení řídí změny rychlosti těchto linek." +#~ msgctxt "wireframe_flow_flat description" +#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." +#~ msgstr "Kompenzace toku při tisku rovných čar. Platí pouze pro drátový tisk." -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Maximální rychlost pro vyrovnávání průtoku" - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "Maximální rychlost tisku při úpravě rychlosti tisku za účelem vyrovnání toku." - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Maximální feedrate" - -#~ 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 (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ 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 horní povrchy objektu. U bleskového vzoru má procento význam pouze v první vrstvě pod každým povrchem." - -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "Určuje, pod jakým úhlem mezi jednotlivými vrstvami se větve bleskové výplně zkracují." - -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ msgstr "Určuje, pod jakým úhlem mezi jednotlivými vrstvami může docházet k vyrovnávání větví bleskové výplně." - -#~ 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." -#~ msgstr "Vzor výplňového materiálu tisku. Směr a cik-cak vyplňují směr výměny na alternativních vrstvách, čímž se snižují náklady na materiál. Mřížka, trojúhelník, tri-hexagon, krychlový, oktet, čtvrtý krychlový, křížový a soustředný obrazec jsou plně vytištěny v každé vrstvě. Výplň Gyroid, krychlový, kvartální 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." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "Minimální vzdálenost mezi vnější stranou formy a vnější stranou modelu." - -#~ msgctxt "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "Kolik kroků krokových motorů vyústí v jeden milimetr vytlačování." - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "Pokud nenulové, pohyby combingového pohybu, které jsou delší než tato vzdálenost, použijí zatažení." - -#~ 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 lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Určuje prioritu této sítě, když se překrývá více sítí výplně. U oblastí, kde se překrývá více sítí výplně, se nastavení přebírá ze sítě s nejnižším pořadím. Síť výplně s vyšším pořadím bude modifikovat výplň sítě výplně s nižším pořadím a běžné sítě." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Naneste odsazení extrudéru na souřadnicový systém." - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Shell" - -#~ 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, while an angle of 90° is vertical." -#~ msgstr "Horní a/nebo dolní povrch objektu s větším úhlem, než je toto nastavení, nebudou mít rozbalenou horní/dolní plochu. Tím se zabrání rozšíření úzkých oblastí vzhledu, které jsou vytvořeny, když má povrch modelu téměř svislý sklon. Úhel 0° je vodorovný, zatímco úhel 90° je svislý." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "Rychlost počáteční vrstvy. Doporučuje se nižší hodnota pro zlepšení přilnavosti k montážní desce." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "Teplota použitá pro vyhřívanou podložku. Pokud je to 0, teplota podložky nebude upravena." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "Teplota použitá pro vyhřívanou podložku v první vrstvě." - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Poměr smrštění" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "Poměr smrštění v procentech." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Určuje prioritu této sítě při zvažování překrývajících se objemů. Oblasti, kde je umístěno více sítí, budou vyhrány sítí s nižším hodnocením. Výplňová síť s vyšším pořádkem upraví výplň síťových výplní s nižším řádem a běžnými oky." - -#~ 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 "Zda se mají tisknout všechny modely po jedné vrstvě najednou, nebo počkat na dokončení jednoho modelu, než se přesunete na další. Jeden za časovým režimem je možný, pokud a) je povolen pouze jeden extruder ab) všechny modely jsou odděleny tak, že celá tisková hlava se může pohybovat mezi a všechny modely jsou menší než vzdálenost mezi tryskou a X / Osy Y. " - -#~ msgctxt "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Pořadí sítě výplně" - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Určuje, která výplň je uvnitř výplně jiné výplně. Výplňová síť s vyšším pořádkem upraví výplň síťových výplní s nižším řádem a normálními oky." - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Stromová podpora" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Vygenerujte stromovou podporu s větvemi, které podporují váš tisk. To může snížit spotřebu materiálu a dobu tisku, ale výrazně prodlužuje dobu slicování." - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "Jak krájet vrstvy s diagonálními povrchy. Oblasti vrstvy mohou být generovány na základě toho, kde střed vrstvy protíná povrch (Střední). Alternativně každá vrstva může mít oblasti, které padají uvnitř objemu po celé výšce vrstvy (Exkluzivní), nebo vrstva má oblasti, které padají dovnitř kdekoli v rámci vrstvy (Inkluzivní). Exkluzivní zachovává co nejvíce podrobností, Inkluzivní dělá to nejlepší a Střední trvá zpracování nejméně času." - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Špagetová výplň" - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Výplň tiskněte tak často, aby se vlákno chaoticky stočilo uvnitř objektu. To zkracuje dobu tisku, ale chování je spíše nepředvídatelné." - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Krokování při špagetové výplni" - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Zda se má tisknout špagetová výplň po krocích, nebo se vytlačí veškeré výplňové vlákno na konci tisku." - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Maximální úhel špagetové výplně" - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "Maximální úhel osy Z uvnitř tisku pro oblasti, které mají být poté vyplněny špagetovou výplní. Snížení této hodnoty způsobí, že se na každé vrstvě vyplní více šikmých částí modelu." - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Maximální výška špagetové výplně" - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "Maximální výška vnitřního prostoru, kterou lze kombinovat a naplnit shora." - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Špagetová výplň" - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "Odsazení od stěn, odkud bude vytištěna výplň špaget." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Průtok při špagetové výplni" - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Upravuje hustotu výplně špaget. Mějte na paměti, že hustota výplně řídí pouze rozteč linií výplňového vzoru, nikoli velikost výtluku pro výplň špaget." - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Objem navíc při špagetové výplni" - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Korekční termín pro úpravu celkového objemu, který se vytlačuje pokaždé, když se plní špagety." +#~ msgctxt "wireframe_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." +#~ msgstr "Kompenzace toku: množství vytlačovaného materiálu se vynásobí touto hodnotou. Platí pouze pro drátový tisk." #~ msgctxt "material_guid description" #~ msgid "GUID of the material. This is set automatically. " #~ msgstr "GUID materiálu. Toto je nastaveno automaticky. " -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Vzdálenost filamentového parkingu" +#~ msgctxt "support_tree_enable description" +#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." +#~ msgstr "Vygenerujte stromovou podporu s větvemi, které podporují váš tisk. To může snížit spotřebu materiálu a dobu tisku, ale výrazně prodlužuje dobu slicování." -#~ msgctxt "machine_filament_park_distance description" -#~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used." -#~ msgstr "Vzdálenost od konce trysky, kde se má zaparkovat vlákno, když se extrudér již nepoužívá." +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "Kolik kroků krokových motorů vyústí v jeden milimetr vytlačování." -#~ msgctxt "material_flush_purge_speed description" +#~ msgctxt "slicing_tolerance description" +#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." +#~ msgstr "Jak krájet vrstvy s diagonálními povrchy. Oblasti vrstvy mohou být generovány na základě toho, kde střed vrstvy protíná povrch (Střední). Alternativně každá vrstva může mít oblasti, které padají uvnitř objemu po celé výšce vrstvy (Exkluzivní), nebo vrstva má oblasti, které padají dovnitř kdekoli v rámci vrstvy (Inkluzivní). Exkluzivní zachovává co nejvíce podrobností, Inkluzivní dělá to nejlepší a Střední trvá zpracování nejméně času." + +#~ msgctxt "wall_min_flow_retract description" +#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +#~ msgstr "Je-li tato funkce povolena, je pro retrakční pohyby, které nahrazují stěny, jejichž průtok je pod prahem minimálního průtoku, používáno spíše zatahování." + +#~ msgctxt "infill_mesh_order label" +#~ msgid "Infill Mesh Order" +#~ msgstr "Pořadí sítě výplně" + +#~ msgctxt "wireframe_strategy option knot" +#~ msgid "Knot" +#~ msgstr "Uzel" + +#~ msgctxt "limit_support_retractions label" +#~ msgid "Limit Support Retractions" +#~ msgstr "Omezení retrakce podpor" + +#~ msgctxt "material_end_of_filament_purge_length description" +#~ msgid "Material Station internal value" +#~ msgstr "Interní hodnota stanice materiálu" + +#~ msgctxt "material_end_of_filament_purge_speed description" #~ msgid "Material Station internal value" #~ msgstr "Interní hodnota stanice materiálu" @@ -6924,19 +6755,7 @@ msgstr "Transformační matice, která se použije na model při načítání ze #~ msgid "Material Station internal value" #~ msgstr "Interní hodnota stanice materiálu" -#~ msgctxt "material_end_of_filament_purge_speed label" -#~ msgid "End Of Filament Purge Speed" -#~ msgstr "Rychlost proplachování konce filamentu" - -#~ msgctxt "material_end_of_filament_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Interní hodnota stanice materiálu" - -#~ msgctxt "material_end_of_filament_purge_length label" -#~ msgid "End Of Filament Purge Length" -#~ msgstr "Délka proplachování konce filamentu" - -#~ msgctxt "material_end_of_filament_purge_length description" +#~ msgctxt "material_flush_purge_speed description" #~ msgid "Material Station internal value" #~ msgstr "Interní hodnota stanice materiálu" @@ -6948,22 +6767,338 @@ msgstr "Transformační matice, která se použije na model při načítání ze #~ msgid "Material Station internal value" #~ msgstr "Interní hodnota stanice materiálu" +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "Maximální feedrate" + +#~ msgctxt "speed_equalize_flow_max label" +#~ msgid "Maximum Speed for Flow Equalization" +#~ msgstr "Maximální rychlost pro vyrovnávání průtoku" + +#~ msgctxt "speed_equalize_flow_max description" +#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." +#~ msgstr "Maximální rychlost tisku při úpravě rychlosti tisku za účelem vyrovnání toku." + +#~ msgctxt "wall_min_flow label" +#~ msgid "Minimum Wall Flow" +#~ msgstr "Minimální průtok zdi" + +#~ msgctxt "wall_min_flow description" +#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." +#~ msgstr "Minimální povolený procentuální průtok pro linii stěny. Kompenzace překrytí stěny snižuje průtok stěny, když leží blízko ke stávající zdi. Stěny, jejichž průtok je menší než tato hodnota, budou nahrazeny pohybem. Při použití tohoto nastavení musíte povolit kompenzaci překrytí stěny a vnější stěnu vytisknout před vnitřními stěnami." + +#~ msgctxt "fill_perimeter_gaps option nowhere" +#~ msgid "Nowhere" +#~ msgstr "Nikde" + +#~ msgctxt "limit_support_retractions description" +#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." +#~ msgstr "Při přechodu od podpory k podpoře v přímé linii vynechejte stažení. Povolením tohoto nastavení se šetří čas tisku, ale může to vést k nadměrnému strunění uvnitř podpůrné struktury." + +#~ msgctxt "outer_inset_first label" +#~ msgid "Outer Before Inner Walls" +#~ msgstr "Vnější stěny před vnitřními" + +#~ msgctxt "wireframe_straight_before_down description" +#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." +#~ msgstr "Procento diagonálně sestupné linie, která je zakryta vodorovnou čárou. To může zabránit ochabnutí nejvyššího bodu vzhůru. Platí pouze pro drátový tisk." + +#~ msgctxt "wall_min_flow_retract label" +#~ msgid "Prefer Retract" +#~ msgstr "Preferovat retrakci" + +#~ msgctxt "wireframe_enabled description" +#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." +#~ msgstr "Tiskněte pouze vnější povrch s řídkou strukturou struktury a tiskněte „na vzduchu“. To je realizováno horizontálním tiskem kontur modelu v daných intervalech Z, které jsou spojeny pomocí linií nahoru a diagonálně dolů." + +#~ msgctxt "spaghetti_infill_enabled description" +#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." +#~ msgstr "Výplň tiskněte tak často, aby se vlákno chaoticky stočilo uvnitř objektu. To zkracuje dobu tisku, ale chování je spíše nepředvídatelné." + +#~ msgctxt "speed_equalize_flow_enabled description" +#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." +#~ msgstr "Tiskněte tenčí než normální čáry rychleji, takže množství materiálu vytlačovaného za sekundu zůstává stejné. Tenké kousky ve vašem modelu mohou vyžadovat čáry vytištěné s menší šířkou čáry, než je uvedeno v nastavení. Toto nastavení řídí změny rychlosti těchto linek." + +#~ msgctxt "outer_inset_first description" +#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." +#~ msgstr "Když je povoleno, tiskne stěny v pořadí od vnějšku dovnitř. To může pomoci zlepšit rozměrovou přesnost v X a Y při použití plastu s vysokou viskozitou, jako je ABS; může však snížit kvalitu tisku vnějšího povrchu, zejména na převisy." + +#~ msgctxt "wireframe_strategy option retract" +#~ msgid "Retract" +#~ msgstr "Retrakce" + #~ msgctxt "retraction_enable description" #~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " #~ msgstr "Zasuňte vlákno, když se tryska pohybuje po netisknuté oblasti. " -#~ msgctxt "support_xy_distance_overhang description" -#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " -#~ msgstr "Vzdálenost podpor od převisu ve směru X / Y. " +#~ msgctxt "shell label" +#~ msgid "Shell" +#~ msgstr "Shell" -#~ msgctxt "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "category_fixes" +#~ msgctxt "material_shrinkage_percentage label" +#~ msgid "Shrinkage Ratio" +#~ msgstr "Poměr smrštění" + +#~ msgctxt "material_shrinkage_percentage description" +#~ msgid "Shrinkage ratio in percentage." +#~ msgstr "Poměr smrštění v procentech." + +#~ msgctxt "spaghetti_flow label" +#~ msgid "Spaghetti Flow" +#~ msgstr "Průtok při špagetové výplni" + +#~ msgctxt "spaghetti_infill_enabled label" +#~ msgid "Spaghetti Infill" +#~ msgstr "Špagetová výplň" + +#~ msgctxt "spaghetti_infill_extra_volume label" +#~ msgid "Spaghetti Infill Extra Volume" +#~ msgstr "Objem navíc při špagetové výplni" + +#~ msgctxt "spaghetti_max_height label" +#~ msgid "Spaghetti Infill Maximum Height" +#~ msgstr "Maximální výška špagetové výplně" + +#~ msgctxt "spaghetti_infill_stepped label" +#~ msgid "Spaghetti Infill Stepping" +#~ msgstr "Krokování při špagetové výplni" + +#~ msgctxt "spaghetti_inset label" +#~ msgid "Spaghetti Inset" +#~ msgstr "Špagetová výplň" + +#~ msgctxt "spaghetti_max_infill_angle label" +#~ msgid "Spaghetti Maximum Infill Angle" +#~ msgstr "Maximální úhel špagetové výplně" + +#~ msgctxt "wireframe_printspeed description" +#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." +#~ msgstr "Rychlost, jakou se tryska pohybuje při vytlačování materiálu. Platí pouze pro drátový tisk." + +#~ msgctxt "wireframe_printspeed_down description" +#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." +#~ msgstr "Rychlost tisku linie šikmo dolů. Platí pouze pro drátový tisk." + +#~ msgctxt "wireframe_printspeed_up description" +#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." +#~ msgstr "Rychlost tisku řádku nahoru „na vzduchu“. Platí pouze pro drátový tisk." + +#~ msgctxt "wireframe_printspeed_bottom description" +#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." +#~ msgstr "Rychlost tisku první vrstvy, která je jedinou vrstvou dotýkající se platformy sestavení. Platí pouze pro drátový tisk." + +#~ msgctxt "wireframe_printspeed_flat description" +#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." +#~ msgstr "Rychlost tisku vodorovných obrysů modelu. Platí pouze pro drátový tisk." + +#~ msgctxt "wall_split_middle_threshold label" +#~ msgid "Split Middle Line Threshold" +#~ msgstr "Mez pro rozdělení prostřední čáry" + +#~ msgctxt "wireframe_strategy description" +#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." +#~ msgstr "Strategie pro zajištění toho, aby se v každém místě připojení připojily dvě po sobě následující vrstvy. Zpětné zasunutí umožní, aby linie vzhůru ztvrdly ve správné poloze, ale mohou způsobit broušení vlákna. Uzel může být vytvořen na konci vzestupné linie, aby se zvýšila šance na připojení k ní a aby se linka ochladila; to však může vyžadovat nízké rychlosti tisku. Další strategií je kompenzovat prohnutý vrchol horní linie; čáry však nebudou vždy klesat, jak bylo předpovězeno." + +#~ msgctxt "lightning_infill_prune_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." +#~ msgstr "Určuje, pod jakým úhlem mezi jednotlivými vrstvami se větve bleskové výplně zkracují." + +#~ msgctxt "lightning_infill_straightening_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." +#~ msgstr "Určuje, pod jakým úhlem mezi jednotlivými vrstvami může docházet k vyrovnávání větví bleskové výplně." + +#~ msgctxt "wireframe_roof_inset description" +#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." +#~ msgstr "Vzdálenost ujetá při vytváření spojení od obrysu střechy dovnitř. Platí pouze pro drátový tisk." + +#~ msgctxt "wireframe_roof_drag_along description" +#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Vzdálenost koncového kusu vnitřní linie, která se táhne, když se vrací zpět k vnějšímu obrysu střechy. Tato vzdálenost je kompenzována. Platí pouze pro drátový tisk." + +#~ msgctxt "wireframe_roof_fall_down description" +#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Vzdálenost, kterou vodorovné linie střechy vytištěné „na vzduchu“ klesají při tisku. Tato vzdálenost je kompenzována. Platí pouze pro drátový tisk." + +#~ msgctxt "wireframe_height description" +#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." +#~ msgstr "Výška nahoru a diagonálně dolů směřujících čar mezi dvěma vodorovnými částmi. To určuje celkovou hustotu struktury sítě. Platí pouze pro drátový tisk." + +#~ msgctxt "spaghetti_max_infill_angle description" +#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." +#~ msgstr "Maximální úhel osy Z uvnitř tisku pro oblasti, které mají být poté vyplněny špagetovou výplní. Snížení této hodnoty způsobí, že se na každé vrstvě vyplní více šikmých částí modelu." + +#~ msgctxt "spaghetti_max_height description" +#~ msgid "The maximum height of inside space which can be combined and filled from the top." +#~ msgstr "Maximální výška vnitřního prostoru, kterou lze kombinovat a naplnit shora." + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "Minimální vzdálenost mezi vnější stranou formy a vnější stranou modelu." + +#~ 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 "Minimální šířka čáry použité jako výplň mezi párovými čárami zdi. Toto nastavení určuje tloušťku modelu, při které se přepíná z tisku dvou čar zdi na tisk dvou vnějších čar zdi a jedné centrální čáry zdi mezi nimi. Vyšší hodnota Minimální šířky nepárové čáry zdi vede k vyšší maximální šířce párové čáry zdi. Maximální šířka nepárové čáry zdi je vypočtena jako 2 * Minimální šířka párové čáry zdi," + +#~ msgctxt "spaghetti_inset description" +#~ msgid "The offset from the walls from where the spaghetti infill will be printed." +#~ msgstr "Odsazení od stěn, odkud bude vytištěna výplň špaget." + +#~ 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." +#~ msgstr "Vzor výplňového materiálu tisku. Směr a cik-cak vyplňují směr výměny na alternativních vrstvách, čímž se snižují náklady na materiál. Mřížka, trojúhelník, tri-hexagon, krychlový, oktet, čtvrtý krychlový, křížový a soustředný obrazec jsou plně vytištěny v každé vrstvě. Výplň Gyroid, krychlový, kvartální 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." + +#~ 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 (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." +#~ 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 horní povrchy objektu. U bleskového vzoru má procento význam pouze v první vrstvě pod každým povrchem." + +#~ msgctxt "wall_add_middle_threshold description" +#~ msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." +#~ msgstr "Nejnižší šířka čáry, zadaná jako procento běžné šířky čáry, nad kterou bude přidána prostřední nepárová čára mezi dvě párové čáry (pokud mezi nimi ještě nebyla). Snižte toto nastavení, aby se používalo více tenkých čar. Zvyšte toto nastavení pro použití méně a širších čar. Je třeba si uvědomit, že toto nastavení se použije, jako kdyby byl celý tvar vyplněn zdmi. Takže termín prostřední zde znamená prostředek objektu mezi dvěma vnějšími hranami tvaru, a to i v případě, že se namísto zdi tiskne výplň nebo jiný povrch." + +#~ msgctxt "wall_split_middle_threshold description" +#~ msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." +#~ msgstr "Nejnižší šířka čáry, zadaná jako procento běžné šířky čáry, nad kterou bude prostřední nepárová čára (pokud nějaká je) rozdělena na dvě párové čáry. Snižte toto nastavení, aby se používalo více tenkých čar. Zvyšte toto nastavení pro použití méně a širších čar. Je třeba si uvědomit, že toto nastavení se použije, jako kdyby byl celý tvar vyplněn zdmi. Takže termín prostřední zde znamená prostředek objektu mezi dvěma vnějšími hranami tvaru, a to i v případě, že se namísto zdi tiskne výplň nebo jiný povrch." + +#~ msgctxt "speed_layer_0 description" +#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." +#~ msgstr "Rychlost počáteční vrstvy. Doporučuje se nižší hodnota pro zlepšení přilnavosti k montážní desce." + +#~ msgctxt "material_bed_temperature_layer_0 description" +#~ msgid "The temperature used for the heated build plate at the first layer." +#~ msgstr "Teplota použitá pro vyhřívanou podložku v první vrstvě." + +#~ msgctxt "material_bed_temperature description" +#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." +#~ msgstr "Teplota použitá pro vyhřívanou podložku. Pokud je to 0, teplota podložky nebude upravena." + +#~ msgctxt "wireframe_roof_outer_delay description" +#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." +#~ msgstr "Čas strávený na vnějším obvodu díry, která se má stát střechou. Delší časy mohou zajistit lepší spojení. Platí pouze pro drátový tisk." + +#~ 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, while an angle of 90° is vertical." +#~ msgstr "Horní a/nebo dolní povrch objektu s větším úhlem, než je toto nastavení, nebudou mít rozbalenou horní/dolní plochu. Tím se zabrání rozšíření úzkých oblastí vzhledu, které jsou vytvořeny, když má povrch modelu téměř svislý sklon. Úhel 0° je vodorovný, zatímco úhel 90° je svislý." + +#~ msgctxt "support_tree_enable label" +#~ msgid "Tree Support" +#~ msgstr "Stromová podpora" + +#~ msgctxt "wireframe_bottom_delay label" +#~ msgid "WP Bottom Delay" +#~ msgstr "Zpoždení pohybu dole při tisku DT" + +#~ msgctxt "wireframe_printspeed_bottom label" +#~ msgid "WP Bottom Printing Speed" +#~ msgstr "Rychlost tisku spodního DT" + +#~ msgctxt "wireframe_flow_connection label" +#~ msgid "WP Connection Flow" +#~ msgstr "Průtok při spojování DT" + +#~ msgctxt "wireframe_height label" +#~ msgid "WP Connection Height" +#~ msgstr "Výška připojení DT" + +#~ msgctxt "wireframe_printspeed_down label" +#~ msgid "WP Downward Printing Speed" +#~ msgstr "Rychlost tisku směrem dolů u DT" + +#~ msgctxt "wireframe_drag_along label" +#~ msgid "WP Drag Along" +#~ msgstr "Tah DT" + +#~ msgctxt "wireframe_up_half_speed label" +#~ msgid "WP Ease Upward" +#~ msgstr "Poloviční rychlost DT" + +#~ msgctxt "wireframe_fall_down label" +#~ msgid "WP Fall Down" +#~ msgstr "Pád materiálu DT" + +#~ msgctxt "wireframe_flat_delay label" +#~ msgid "WP Flat Delay" +#~ msgstr "Zpoždění při tisku plochých segmentů DT" + +#~ msgctxt "wireframe_flow_flat label" +#~ msgid "WP Flat Flow" +#~ msgstr "Průtok při plochém DT" + +#~ msgctxt "wireframe_flow label" +#~ msgid "WP Flow" +#~ msgstr "Průtok při DT" + +#~ msgctxt "wireframe_printspeed_flat label" +#~ msgid "WP Horizontal Printing Speed" +#~ msgstr "Rychlost horizontálního tisku DT" + +#~ msgctxt "wireframe_top_jump label" +#~ msgid "WP Knot Size" +#~ msgstr "Velikost uzlu DT" + +#~ msgctxt "wireframe_nozzle_clearance label" +#~ msgid "WP Nozzle Clearance" +#~ msgstr "Vyčištění trysky DT" + +#~ msgctxt "wireframe_roof_drag_along label" +#~ msgid "WP Roof Drag Along" +#~ msgstr "Tah střechy DT" + +#~ msgctxt "wireframe_roof_fall_down label" +#~ msgid "WP Roof Fall Down" +#~ msgstr "Pád materiálu střechy DT" + +#~ msgctxt "wireframe_roof_inset label" +#~ msgid "WP Roof Inset Distance" +#~ msgstr "Vzdálenost střechy DT" + +#~ msgctxt "wireframe_roof_outer_delay label" +#~ msgid "WP Roof Outer Delay" +#~ msgstr "Vnější zpoždění střechy DT" + +#~ msgctxt "wireframe_printspeed label" +#~ msgid "WP Speed" +#~ msgstr "Rychlost DT" + +#~ msgctxt "wireframe_straight_before_down label" +#~ msgid "WP Straighten Downward Lines" +#~ msgstr "Vyrovnat spodní linky DT" + +#~ msgctxt "wireframe_strategy label" +#~ msgid "WP Strategy" +#~ msgstr "Strategie DT" + +#~ msgctxt "wireframe_top_delay label" +#~ msgid "WP Top Delay" +#~ msgstr "Zpoždení pohybu nahoře při tisku DT" + +#~ msgctxt "wireframe_printspeed_up label" +#~ msgid "WP Upward Printing Speed" +#~ msgstr "Rychlost tisku nahoru u DT" + +#~ msgctxt "retraction_combing_max_distance description" +#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." +#~ msgstr "Pokud nenulové, pohyby combingového pohybu, které jsou delší než tato vzdálenost, použijí zatažení." + +#~ 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 "Zda se mají tisknout všechny modely po jedné vrstvě najednou, nebo počkat na dokončení jednoho modelu, než se přesunete na další. Jeden za časovým režimem je možný, pokud a) je povolen pouze jeden extruder ab) všechny modely jsou odděleny tak, že celá tisková hlava se může pohybovat mezi a všechny modely jsou menší než vzdálenost mezi tryskou a X / Osy Y. " + +#~ msgctxt "spaghetti_infill_stepped description" +#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." +#~ msgstr "Zda se má tisknout špagetová výplň po krocích, nebo se vytlačí veškeré výplňové vlákno na konci tisku." + +#~ msgctxt "wireframe_enabled label" +#~ msgid "Wire Printing" +#~ msgstr "Drátový tisk" #~ msgctxt "blackmagic description" #~ msgid "category_blackmagic" #~ msgstr "category_blackmagic" +#~ msgctxt "meshfix description" +#~ msgid "category_fixes" +#~ msgstr "category_fixes" + #~ msgctxt "experimental description" #~ msgid "experimental!" #~ msgstr "experimentální!" diff --git a/resources/i18n/cura.pot b/resources/i18n/cura.pot index d99f32edcc..033fdf015a 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: 2022-06-21 12:50+0200\n" +"POT-Creation-Date: 2023-04-06 15:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,1104 +18,1270 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -msgctxt "@label" -msgid "Unknown" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "" -"The printer(s) below cannot be connected because they are part of a group" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Connected printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Preset printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:143 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:61 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 -msgctxt "@label" -msgid "Default" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:65 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:66 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "" -"The visual profile is designed to print visual prototypes and models with " -"the intent of high visual and surface quality." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:70 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "" -"The engineering profile is designed to print functional prototypes and end-" -"use parts with the intent of better accuracy and for closer tolerances." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:75 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:76 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "" -"The draft profile is designed to print initial prototypes and concept " -"validation with the intent of significant print time reduction." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:232 -msgctxt "@label" -msgid "Custom Material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:233 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 -msgctxt "@label" -msgid "Custom" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:391 -msgctxt "@label" -msgid "Custom profiles" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:426 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 -msgctxt "@info:status" -msgid "Calculated" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 +#: cura/API/Account.py:199 msgctxt "@info:title" msgid "Login failed" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: cura/Arranging/ArrangeObjectsJob.py:25 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: cura/Arranging/ArrangeObjectsJob.py:29 msgctxt "@info:title" msgid "Finding Location" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: cura/Arranging/ArrangeObjectsJob.py:42 +#: cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: cura/Arranging/ArrangeObjectsJob.py:43 msgctxt "@info:title" msgid "Can't Find Location" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:115 +#: cura/Backups/Backup.py:115 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:159 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +#: cura/Backups/Backup.py:122 +#: cura/Backups/Backup.py:159 +#: plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: plugins/CuraDrive/src/DrivePluginExtension.py:126 msgctxt "@info:title" msgid "Backup" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:134 +#: cura/Backups/Backup.py:134 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:145 +#: cura/Backups/Backup.py:145 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that is higher than the current version." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:158 +#: cura/Backups/Backup.py:158 msgctxt "@info:backup_failed" msgid "The following error occurred while trying to restore a Cura backup:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: cura/BuildVolume.py:100 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." +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." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 +#: cura/BuildVolume.py:103 msgctxt "@info:title" msgid "Build Volume" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: cura/CrashHandler.py:113 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" +"

    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 "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: cura/CrashHandler.py:122 msgctxt "@action:button" -msgid "Send crash report to Ultimaker" +msgid "Send crash report to UltiMaker" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: cura/CrashHandler.py:190 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" +"

    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 "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 +#: cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 +#: cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 +#: cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:531 +#: cura/CuraApplication.py:540 msgctxt "@info:progress" msgid "Loading machines..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +#: cura/CuraApplication.py:547 msgctxt "@info:progress" msgid "Setting up preferences..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +#: cura/CuraApplication.py:692 msgctxt "@info:progress" msgid "Initializing Active Machine..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +#: cura/CuraApplication.py:839 msgctxt "@info:progress" msgid "Initializing machine manager..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +#: cura/CuraApplication.py:853 msgctxt "@info:progress" msgid "Initializing build volume..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +#: cura/CuraApplication.py:921 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +#: cura/CuraApplication.py:957 msgctxt "@info:progress" msgid "Loading interface..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +#: cura/CuraApplication.py:962 msgctxt "@info:progress" msgid "Initializing engine..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#: cura/CuraApplication.py:1290 #, python-format -msgctxt "" -"@info 'width', 'depth' and 'height' are variable names that must NOT be " -"translated; just translate the format of ##x##x## mm." +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 "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1798 +#: cura/CuraApplication.py:1816 #, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 +#: cura/CuraApplication.py:1818 +#: cura/OAuth2/AuthorizationService.py:217 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 msgctxt "@info:title" msgid "Warning" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#: cura/CuraApplication.py:1828 #, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1812 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: cura/CuraApplication.py:1830 +#: cura/Settings/CuraContainerRegistry.py:156 +#: cura/Settings/CuraContainerRegistry.py:166 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 msgctxt "@info:title" msgid "Error" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 +#: cura/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "" + +#: cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:28 +msgctxt "@label" +msgid "Connected printers" +msgstr "" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +msgctxt "@label" +msgid "Preset printers" +msgstr "" + +#: cura/Machines/Models/GlobalStacksModel.py:165 +#, 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 "" + +#: cura/Machines/Models/IntentCategoryModel.py:42 +#: cura/Machines/Models/IntentSelectionModel.py:61 +#: cura/Machines/Models/IntentTranslations.py:11 +#: cura/Machines/Models/QualityManagementModel.py:347 +msgctxt "@label" +msgid "Default" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:45 +#: cura/Machines/Models/IntentSelectionModel.py:65 +#: cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:46 +#: cura/Machines/Models/IntentSelectionModel.py:66 +#: cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:49 +#: cura/Machines/Models/IntentSelectionModel.py:70 +#: cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:50 +#: cura/Machines/Models/IntentSelectionModel.py:71 +#: cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:53 +#: cura/Machines/Models/IntentSelectionModel.py:75 +#: cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:54 +#: cura/Machines/Models/IntentSelectionModel.py:76 +#: cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "" + +#: cura/Machines/Models/MaterialManagementModel.py:232 +msgctxt "@label" +msgid "Custom Material" +msgstr "" + +#: cura/Machines/Models/MaterialManagementModel.py:233 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 +msgctxt "@label" +msgid "Custom" +msgstr "" + +#: cura/Machines/Models/QualityManagementModel.py:400 +msgctxt "@label" +msgid "Custom profiles" +msgstr "" + +#: cura/Machines/Models/QualityManagementModel.py:435 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "" + +#: cura/Machines/Models/QualityManagementModel.py:436 +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "" + +#: cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "" + +#: cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 +#: cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 +#: cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +#: cura/OAuth2/AuthorizationHelpers.py:89 msgctxt "@message" msgid "Could not read response." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +#: cura/OAuth2/AuthorizationRequestHandler.py:75 msgctxt "@message" msgid "The provided state is not correct." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +#: cura/OAuth2/AuthorizationRequestHandler.py:80 msgctxt "@message" msgid "Timeout when authenticating with the account server." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +#: cura/OAuth2/AuthorizationRequestHandler.py:97 msgctxt "@message" msgid "Please give the required permissions when authorizing this application." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +#: cura/OAuth2/AuthorizationRequestHandler.py:104 msgctxt "@message" msgid "Something unexpected happened when trying to log in, please try again." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:216 +#: cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" -msgid "" -"Unable to start a new sign in process. Check if another sign in attempt is " -"still active." +msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:277 +#: cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." +msgid "Unable to reach the UltiMaker account server." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 +#: cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" msgid "Log-in failed" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +#: cura/PrinterOutput/UploadMaterialsJob.py:104 msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +#: cura/PrinterOutput/UploadMaterialsJob.py:111 +#: cura/PrinterOutput/UploadMaterialsJob.py:165 msgctxt "@text:error" msgid "Failed to load the archive of materials to sync it with printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +#: cura/PrinterOutput/UploadMaterialsJob.py:143 msgctxt "@text:error" msgid "The response from Digital Factory appears to be corrupted." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +#: cura/PrinterOutput/UploadMaterialsJob.py:147 +#: cura/PrinterOutput/UploadMaterialsJob.py:151 +#: cura/PrinterOutput/UploadMaterialsJob.py:155 msgctxt "@text:error" msgid "The response from Digital Factory is missing important information." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +#: cura/PrinterOutput/UploadMaterialsJob.py:218 msgctxt "@text:error" -msgid "" -"Failed to connect to Digital Factory to sync materials with some of the " -"printers." +msgid "Failed to connect to Digital Factory to sync materials with some of the printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +#: cura/PrinterOutput/UploadMaterialsJob.py:232 msgctxt "@text:error" msgid "Failed to connect to Digital Factory." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:207 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: cura/Settings/ActiveQuality.py:43 +msgctxt "@label" +msgid "Experimental" +msgstr "" + +#: cura/Settings/ContainerManager.py:207 +#: cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: cura/Settings/ContainerManager.py:208 +#: cura/Settings/CuraContainerRegistry.py:141 #, 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?" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 +#: cura/Settings/ContainerManager.py:459 +#: cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" -msgid "" -"Failed to export profile to {0}: {1}" +msgid "Failed to export profile to {0}: {1}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" -msgid "" -"Failed to export profile to {0}: Writer plugin reported " -"failure." +msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: cura/Settings/CuraContainerRegistry.py:209 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" -msgid "" -"Can't import profile from {0} before a printer is added." +msgid "Can't import profile from {0} before a printer is added." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: cura/Settings/CuraContainerRegistry.py:252 +#: cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" -msgid "" -"This profile {0} contains incorrect data, could not " -"import it." +msgid "This profile {0} contains incorrect data, could not import it." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" -msgid "" -"Quality type '{0}' is not compatible with the current active machine " -"definition '{1}'." +msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: cura/Settings/CuraContainerRegistry.py:488 #, 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." +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 "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:219 +#: cura/Settings/MachineManager.py:746 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:221 msgctxt "@label" msgid "Nozzle" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +#: cura/Settings/MachineManager.py:890 msgctxt "@info:message Followed by a list of settings." -msgid "" -"Settings have been changed to match the current availability of extruders:" +msgid "Settings have been changed to match the current availability of extruders:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: cura/Settings/MachineManager.py:891 msgctxt "@info:title" msgid "Settings updated" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 +#: cura/Settings/MachineManager.py:1514 msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 +#: cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "" + +#: cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "" + +#: cura/UI/AddPrinterPagesModel.py:17 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" msgid "Add" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:290 +#: cura/UI/AddPrinterPagesModel.py:26 +#: cura/UI/WelcomePagesModel.py:290 msgctxt "@action:button" msgid "Finish" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:508 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:323 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:291 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:74 +#: cura/UI/AddPrinterPagesModel.py:33 +#: plugins/3MFReader/WorkspaceDialog.qml:386 +#: plugins/ImageReader/ConfigUI.qml:323 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 +#: resources/qml/ColorDialog.qml:143 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: resources/qml/Dialogs/RenameDialog.qml:103 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 msgctxt "@action:button" msgid "Cancel" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: cura/UI/ObjectsModel.py:69 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 +#: cura/UI/PrintInformation.py:87 msgctxt "@tooltip" msgid "Outer Wall" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +#: cura/UI/PrintInformation.py:88 msgctxt "@tooltip" msgid "Inner Walls" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +#: cura/UI/PrintInformation.py:89 msgctxt "@tooltip" msgid "Skin" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +#: cura/UI/PrintInformation.py:90 msgctxt "@tooltip" msgid "Infill" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +#: cura/UI/PrintInformation.py:91 msgctxt "@tooltip" msgid "Support Infill" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +#: cura/UI/PrintInformation.py:92 msgctxt "@tooltip" msgid "Support Interface" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +#: cura/UI/PrintInformation.py:93 msgctxt "@tooltip" msgid "Support" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +#: cura/UI/PrintInformation.py:94 msgctxt "@tooltip" msgid "Skirt" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +#: cura/UI/PrintInformation.py:95 msgctxt "@tooltip" msgid "Prime Tower" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +#: cura/UI/PrintInformation.py:96 msgctxt "@tooltip" msgid "Travel" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +#: cura/UI/PrintInformation.py:97 msgctxt "@tooltip" msgid "Retractions" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +#: cura/UI/PrintInformation.py:98 msgctxt "@tooltip" msgid "Other" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:63 +#: cura/UI/TextManager.py:37 +#: cura/UI/TextManager.py:63 msgctxt "@text:window" msgid "The release notes could not be opened." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:277 +#: cura/UI/WelcomePagesModel.py:57 +#: cura/UI/WelcomePagesModel.py:277 msgctxt "@action:button" msgid "Next" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: cura/UI/WelcomePagesModel.py:286 +#: cura/UI/WhatsNewPagesModel.py:68 msgctxt "@action:button" msgid "Skip" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:443 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:186 +#: cura/UI/WhatsNewPagesModel.py:76 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444 +#: resources/qml/Dialogs/AboutDialog.qml:188 msgctxt "@action:button" msgid "Close" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: cura/UltimakerCloud/CloudMaterialSync.py:66 msgctxt "@action:button" -msgid "" -"Please sync the material profiles with your printers before starting to " -"print." +msgid "Please sync the material profiles with your printers before starting to print." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: cura/UltimakerCloud/CloudMaterialSync.py:67 msgctxt "@action:button" msgid "New materials installed" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: cura/UltimakerCloud/CloudMaterialSync.py:74 msgctxt "@action:button" msgid "Sync materials" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:397 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:80 +#: cura/UltimakerCloud/CloudMaterialSync.py:82 +#: plugins/3MFReader/WorkspaceDialog.py:418 +#: plugins/SolidView/SolidView.py:80 msgctxt "@action:button" msgid "Learn more" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +#: cura/UltimakerCloud/CloudMaterialSync.py:135 msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +#: cura/UltimakerCloud/CloudMaterialSync.py:136 msgctxt "@message:title" msgid "Failed to save material archive" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +#: cura/UltimakerCloud/CloudMaterialSync.py:188 msgctxt "@text" msgid "Unknown error." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 -msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:558 #, 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." +msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:561 msgctxt "@info:title" msgid "Open Project File" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "" -"Project file {0} is suddenly inaccessible: {1}" -"." +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: plugins/3MFReader/WorkspaceDialog.qml:99 +#: plugins/3MFReader/WorkspaceDialog.qml:127 +#: plugins/3MFReader/WorkspaceDialog.qml:134 +msgctxt "@button" +msgid "Create new" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:659 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:692 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:720 msgctxt "@info:title" msgid "Can't Open Project File" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:658 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:700 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:718 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" -msgid "" -"Project file {0} is corrupt: {1}." +msgid "Project file {0} is corrupt: {1}." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:711 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:765 #, 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." +msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 +#: plugins/3MFReader/WorkspaceDialog.py:233 msgctxt "@title:tab" msgid "Recommended" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:214 +#: plugins/3MFReader/WorkspaceDialog.py:235 msgctxt "@title:tab" msgid "Custom" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:390 +#: plugins/3MFReader/WorkspaceDialog.py:411 msgctxt "@info:status" -msgid "" -"The material used in this project relies on some material definitions not " -"available in Cura, this might produce undesirable print results. We highly " -"recommend installing the full material package from the Marketplace." +msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 +#: plugins/3MFReader/WorkspaceDialog.py:413 msgctxt "@info:title" msgid "Material profiles not installed" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 +#: plugins/3MFReader/WorkspaceDialog.py:426 msgctxt "@action:button" msgid "Install Materials" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 +#: plugins/3MFReader/WorkspaceDialog.qml:15 +msgctxt "@title:window" +msgid "Open Project" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:31 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61 +msgctxt "@action:title" +msgid "Summary - Cura Project" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:65 +msgctxt "@action:ComboBox Update/override existing profile" +msgid "Update existing" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:66 +msgctxt "@action:ComboBox Save settings in a new profile" +msgid "Create new" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:83 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97 +msgctxt "@action:label" +msgid "Printer settings" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:92 +#: plugins/3MFReader/WorkspaceRow.qml:23 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106 +msgctxt "@action:label" +msgid "Type" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:98 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +msgctxt "@action:label" +msgid "Printer Group" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:103 +msgctxt "@action:label" +msgid "Open With" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:104 +msgctxt "@info:tooltip" +msgid "Printer settings will be updated to match the settings saved with the project." +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:156 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222 +msgctxt "@action:label" +msgid "Profile settings" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:166 +#: plugins/3MFReader/WorkspaceDialog.qml:238 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246 +msgctxt "@action:label" +msgid "Name" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:172 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263 +msgctxt "@action:label" +msgid "Intent" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:178 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230 +msgctxt "@action:label" +msgid "Not in profile" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:179 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235 +msgctxt "@action:label" +msgid "%1 override" +msgid_plural "%1 overrides" +msgstr[0] "" +msgstr[1] "" + +#: plugins/3MFReader/WorkspaceDialog.qml:185 +msgctxt "@action:label" +msgid "Derivative from" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:186 +msgctxt "@action:label" +msgid "%1, %2 override" +msgid_plural "%1, %2 overrides" +msgstr[0] "" +msgstr[1] "" + +#: plugins/3MFReader/WorkspaceDialog.qml:226 +msgctxt "@action:label" +msgid "Material settings" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:280 +msgctxt "@action:label" +msgid "Setting visibility" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:290 +msgctxt "@action:label" +msgid "Mode" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:296 +msgctxt "@action:label" +msgid "%1 out of %2" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:321 +msgctxt "@action:warning" +msgid "Loading a project will clear all models on the build plate." +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:367 +msgctxt "@label" +msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:392 +msgctxt "@action:button" +msgid "Open" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:398 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:407 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "" + +#: plugins/3MFReader/__init__.py:27 +#: plugins/3MFReader/__init__.py:33 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 msgctxt "@error" msgid "There is no workspace yet to write. Please add a printer first." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 msgctxt "@error:zip" msgid "No permission to write the workspace here." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 msgctxt "@error:zip" -msgid "" -"The operating system does not allow saving a project file to this location " -"or with this file name." +msgid "The operating system does not allow saving a project file to this location or with this file name." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:238 +#: plugins/3MFWriter/ThreeMFWriter.py:240 msgctxt "@error:zip" msgid "Error writing 3mf file." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:282 -#, python-brace-format -msgctxt "@error:material" -msgid "" -"It was not possible to store material package information in project file: " -"{material}. This project may not open correctly on other systems." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 -msgctxt "@info:title" -msgid "Failed to save material package information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:28 +#: plugins/3MFWriter/__init__.py:28 msgctxt "@item:inlistbox" msgid "3MF file" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:36 +#: plugins/3MFWriter/__init__.py:36 msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 +#: plugins/AMFReader/__init__.py:15 msgctxt "@item:inlistbox" msgid "AMF File" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 +#: plugins/CuraDrive/src/CreateBackupJob.py:25 msgctxt "@info:title" msgid "Backups" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 +#: plugins/CuraDrive/src/CreateBackupJob.py:26 msgctxt "@info:backup_status" msgid "There was an error while uploading your backup." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 +#: plugins/CuraDrive/src/CreateBackupJob.py:46 msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 +#: plugins/CuraDrive/src/CreateBackupJob.py:55 msgctxt "@info:backup_status" msgid "There was an error while creating your backup." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 +#: plugins/CuraDrive/src/CreateBackupJob.py:59 msgctxt "@info:backup_status" msgid "Uploading your backup..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 +#: plugins/CuraDrive/src/CreateBackupJob.py:69 msgctxt "@info:backup_status" msgid "Your backup has finished uploading." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 +#: plugins/CuraDrive/src/CreateBackupJob.py:103 msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 +#: plugins/CuraDrive/src/DriveApiService.py:86 +#: plugins/CuraDrive/src/RestoreBackupJob.py:26 msgctxt "@info:backup_status" msgid "There was an error trying to restore your backup." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 +#: plugins/CuraDrive/src/DrivePluginExtension.py:69 msgctxt "@item:inmenu" msgid "Manage backups" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 -msgctxt "@message" -msgid "" -"Slicing failed with an unexpected error. Please consider reporting a bug on " -"our issue tracker." +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 +msgctxt "@button" +msgid "Restore" +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "" + +#: plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "" + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "" + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 +#: plugins/Marketplace/resources/qml/Marketplace.qml:312 +#: resources/qml/Account/GeneralOperations.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180 +#: resources/qml/WelcomePages/CloudContent.qml:212 +msgctxt "@button" +msgid "Sign in" +msgstr "" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:163 msgctxt "@message:title" msgid "Slicing failed" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:168 msgctxt "@message:button" msgid "Report a bug" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:169 msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." +msgid "Report a bug on UltiMaker Cura's issue tracker." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:400 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:416 msgctxt "@info:status" -msgid "" -"Unable to slice with the current material as it is incompatible with the " -"selected machine or configuration." +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:401 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:434 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:461 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:473 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:485 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:498 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:417 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:450 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:477 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:501 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:514 msgctxt "@info:title" msgid "Unable to slice" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:433 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:449 #, python-brace-format msgctxt "@info:status" -msgid "" -"Unable to slice with the current settings. The following settings have " -"errors: {0}" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:460 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:476 #, 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}" +msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:472 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:488 msgctxt "@info:status" -msgid "" -"Unable to slice because the prime tower or prime position(s) are invalid." +msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:484 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:500 #, python-format msgctxt "@info:status" -msgid "" -"Unable to slice because there are objects associated with disabled Extruder " -"%s." +msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:510 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -1124,1744 +1290,911 @@ msgid "" "- Are not all set as modifier meshes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 msgctxt "@info:status" msgid "Processing Layers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 msgctxt "@info:title" msgid "Information" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 +#: plugins/CuraProfileReader/__init__.py:14 +#: plugins/CuraProfileWriter/__init__.py:14 msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 +msgctxt "@option" +msgid "Save Cura project and print file" +msgstr "" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "" + +#: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19 +msgctxt "@text Placeholder for the username if it has been deleted" +msgid "deleted user" +msgstr "" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 msgctxt "@info" msgid "Could not access update information." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 #, 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}." +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 "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 #, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 msgctxt "@action:button" msgid "How to update" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 msgctxt "@action" msgid "Update Firmware" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:350 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:506 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 -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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 -msgctxt "@action:button" -msgid "Sync" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:12 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:79 -msgctxt "@button" -msgid "Decline" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:13 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53 -msgctxt "@button" -msgid "Agree" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:28 -msgctxt "@label" -msgid "Installed Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:29 -msgctxt "@label" -msgid "Installed Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:33 -msgctxt "@label" -msgid "Bundled Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:34 -msgctxt "@label" -msgid "Bundled Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:43 -msgctxt "@label:property" -msgid "Unknown Package" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:66 -msgctxt "@label:property" -msgid "Unknown Author" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:117 -msgctxt "@info:error" -msgid "Could not interpret the server's response." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:148 -msgctxt "@info:error" -msgid "Could not reach Marketplace." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 -msgctxt "@label" -msgid "Per Model Settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 -msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 -msgctxt "@info:title" -msgid "Saving" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -msgctxt "@info:title" -msgid "File Saved" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -msgctxt "@action:button" -msgid "Eject" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 -msgctxt "@text" -msgid "Unable to read example data file." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 -msgctxt "@info:status" -msgid "" -"The highlighted areas indicate either missing or extraneous surfaces. Fix " -"your model and open it again into Cura." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 -msgctxt "@action:button" -msgid "Print via cloud" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 -msgctxt "@properties:tooltip" -msgid "Print via cloud" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 -msgctxt "@info:status" -msgid "Connected via cloud" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 -msgctxt "@action:button" -msgid "Monitor print" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 -msgctxt "@action:tooltip" -msgid "Track the print in Ultimaker Digital Factory" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 -#, python-brace-format -msgctxt "@error:send" -msgid "Unknown error code when uploading print job: {0}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:242 -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:261 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:266 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:334 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:343 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:348 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:440 -msgctxt "info:name" -msgid "Ultimaker Digital Factory" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:352 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:356 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:442 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:443 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:444 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 -msgctxt "@title:window" -msgid "Remove printers?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 -#, python-brace-format -msgctxt "@label" -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] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 -msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be " -"undone.\n" -"Are you sure you want to continue?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 -msgctxt "@info:title" -msgid "Are you ready for cloud printing?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 -msgctxt "@action" -msgid "Get started" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 -msgctxt "@action" -msgid "Learn more" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 -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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 -msgctxt "@action" -msgid "Configure group" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 -msgctxt "@info:status" -msgid "Connected via USB" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 -msgctxt "@label" -msgid "" -"A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 -msgctxt "@message" -msgid "" -"A print is still in progress. Cura cannot start another print via USB until " -"the previous print has completed." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 -msgctxt "@message" -msgid "Print in Progress" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 -msgctxt "@title:window" -msgid "Open Project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:59 -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108 -msgctxt "@info:tooltip" -msgid "How should the conflict in the machine be resolved?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:95 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:104 -msgctxt "@action:label" -msgid "Type" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:192 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -msgctxt "@action:label" -msgid "Printer Group" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:217 -msgctxt "@info:tooltip" -msgid "How should the conflict in the profile be resolved?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:220 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:250 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:375 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:244 -msgctxt "@action:label" -msgid "Name" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:268 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:261 -msgctxt "@action:label" -msgid "Intent" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:286 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:228 -msgctxt "@action:label" -msgid "Not in profile" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:292 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:233 -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 -msgctxt "@action:label" -msgid "Derivative from" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:311 -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:333 -msgctxt "@info:tooltip" -msgid "How should the conflict in the material be resolved?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:360 -msgctxt "@action:label" -msgid "Material settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:396 -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 -msgctxt "@action:label" -msgid "Mode" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 -msgctxt "@action:label" -msgid "Visible settings:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:447 -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 -msgctxt "@action:button" -msgid "Open" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 -msgctxt "@action:button" -msgid "Open project anyway" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 -msgctxt "@action:button" -msgid "Install missing material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 -msgctxt "@button" -msgid "Restore" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 -msgctxt "@dialog:info" -msgid "" -"You will need to restart Cura before your backup is restored. Do you want to " -"close Cura now?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 -msgctxt "@empty_state" -msgid "" -"You don't have any backups currently. Use the 'Backup Now' button to create " -"one." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 -msgctxt "@backup_limit_info" -msgid "" -"During the preview phase, you'll be limited to 5 visible backups. Remove a " -"backup to see older ones." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:212 -msgctxt "@button" -msgid "Sign in" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 -msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 -msgctxt "@option" -msgid "Save Cura project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 msgctxt "@title" msgid "Update Firmware" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 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." +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 "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 msgctxt "@label" -msgid "" -"The firmware shipping with new printers works, but new versions tend to have " -"more features and improvements." +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 msgctxt "@action:button" msgid "Automatically upgrade Firmware" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 msgctxt "@label" -msgid "" -"Firmware can not be updated because there is no connection with the printer." +msgid "Firmware can not be updated because there is no connection with the printer." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 msgctxt "@label" -msgid "" -"Firmware can not be updated because the connection with the printer does not " -"support upgrading firmware." +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 msgctxt "@title:window" msgid "Select custom firmware" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 msgctxt "@title:window" msgid "Firmware Update" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 msgctxt "@label" msgid "Updating firmware." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 msgctxt "@label" msgid "Firmware update completed." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 msgctxt "@label" msgid "Firmware update failed due to an unknown error." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 msgctxt "@label" msgid "Firmware update failed due to an communication error." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 msgctxt "@label" msgid "Firmware update failed due to an input/output error." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 msgctxt "@label" msgid "Firmware update failed due to missing firmware." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:14 +#: plugins/GCodeGzReader/__init__.py:17 +#: plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "" + +#: plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "" + +#: plugins/GCodeProfileReader/__init__.py:14 +#: plugins/GCodeReader/__init__.py:14 +#: plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "" + +#: plugins/GCodeReader/FlavorParser.py:359 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "" + +#: plugins/GCodeReader/FlavorParser.py:361 +#: plugins/GCodeReader/FlavorParser.py:515 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "" + +#: plugins/GCodeReader/FlavorParser.py:513 +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 "" + +#: plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "" + +#: plugins/GCodeWriter/GCodeWriter.py:75 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "" + +#: plugins/GCodeWriter/GCodeWriter.py:81 +#: plugins/GCodeWriter/GCodeWriter.py:97 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:14 msgctxt "@title:window" msgid "Convert Image" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 +#: plugins/ImageReader/ConfigUI.qml:33 msgctxt "@action:label" msgid "Height (mm)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" msgid "The maximum distance of each pixel from \"Base.\"" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 +#: plugins/ImageReader/ConfigUI.qml:66 msgctxt "@action:label" msgid "Base (mm)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 +#: plugins/ImageReader/ConfigUI.qml:90 msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 +#: plugins/ImageReader/ConfigUI.qml:100 msgctxt "@action:label" msgid "Width (mm)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 +#: plugins/ImageReader/ConfigUI.qml:124 msgctxt "@info:tooltip" msgid "The width in millimeters on the build plate" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 +#: plugins/ImageReader/ConfigUI.qml:134 msgctxt "@action:label" msgid "Depth (mm)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 +#: plugins/ImageReader/ConfigUI.qml:158 msgctxt "@info:tooltip" msgid "The depth in millimeters on the build plate" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 +#: plugins/ImageReader/ConfigUI.qml:187 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 +#: plugins/ImageReader/ConfigUI.qml:188 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: plugins/ImageReader/ConfigUI.qml:195 msgctxt "@info:tooltip" -msgid "" -"For lithophanes dark pixels should correspond to thicker locations in order " -"to block more light coming through. For height maps lighter pixels signify " -"higher terrain, so lighter pixels should correspond to thicker locations in " -"the generated 3D model." +msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:205 +#: plugins/ImageReader/ConfigUI.qml:205 msgctxt "@action:label" msgid "Color Model" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:224 +#: plugins/ImageReader/ConfigUI.qml:224 msgctxt "@item:inlistbox" msgid "Linear" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 +#: plugins/ImageReader/ConfigUI.qml:225 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 +#: plugins/ImageReader/ConfigUI.qml:232 msgctxt "@info:tooltip" -msgid "" -"For lithophanes a simple logarithmic model for translucency is available. " -"For height maps the pixel values correspond to heights linearly." +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 +#: plugins/ImageReader/ConfigUI.qml:242 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 +#: plugins/ImageReader/ConfigUI.qml:263 msgctxt "@info:tooltip" -msgid "" -"The percentage of light penetrating a print with a thickness of 1 " -"millimeter. Lowering this value increases the contrast in dark regions and " -"decreases the contrast in light regions of the image." +msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 +#: plugins/ImageReader/ConfigUI.qml:274 msgctxt "@action:label" msgid "Smoothing" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:298 +#: plugins/ImageReader/ConfigUI.qml:298 msgctxt "@info:tooltip" msgid "The amount of smoothing to apply to the image." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:143 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:80 +#: plugins/ImageReader/ConfigUI.qml:329 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 +#: resources/qml/ColorDialog.qml:148 +#: resources/qml/Dialogs/RenameDialog.qml:25 msgctxt "@action:button" msgid "OK" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +#: plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "" + +#: plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "" + +#: plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "" + +#: plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "" + +#: plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "" + +#: plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "" + +#: plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "" + +#: plugins/MachineSettingsAction/MachineSettingsAction.qml:42 msgctxt "@title:tab" msgid "Printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 msgctxt "@title:label" msgid "Nozzle Settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 msgctxt "@label" msgid "Nozzle size" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99 msgctxt "@label" msgid "mm" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 msgctxt "@label" msgid "Compatible material diameter" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 msgctxt "@label" msgid "Nozzle offset X" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 msgctxt "@label" msgid "Nozzle offset Y" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 msgctxt "@label" msgid "Cooling Fan Number" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 msgctxt "@title:label" msgid "Extruder End G-code" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 msgctxt "@title:label" msgid "Printer Settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 msgctxt "@label" msgid "X (Width)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 msgctxt "@label" msgid "Y (Depth)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 msgctxt "@label" msgid "Z (Height)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 msgctxt "@label" msgid "Build plate shape" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 msgctxt "@label" msgid "Origin at center" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 msgctxt "@label" msgid "Heated bed" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 msgctxt "@label" msgid "Heated build volume" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 msgctxt "@label" msgid "G-code flavor" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 msgctxt "@title:label" msgid "Printhead Settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 msgctxt "@label" msgid "X min" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 msgctxt "@label" msgid "Y min" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 msgctxt "@label" msgid "X max" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 msgctxt "@label" msgid "Y max" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 msgctxt "@label" msgid "Gantry Height" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 msgctxt "@label" msgid "Number of Extruders" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:342 msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:390 msgctxt "@title:label" msgid "Start G-code" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:401 msgctxt "@title:label" msgid "End G-code" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:95 +msgctxt "@info:title" +msgid "Changes detected from your UltiMaker account" +msgstr "" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 +msgctxt "@action:button" +msgid "Sync" +msgstr "" + +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:12 +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:79 +msgctxt "@button" +msgid "Decline" +msgstr "" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:13 +#: resources/qml/WelcomePages/UserAgreementContent.qml:53 +msgctxt "@button" +msgid "Agree" +msgstr "" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:77 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "" + +#: plugins/Marketplace/CloudSync/LicensePresenter.py:42 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "" + +#: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "" + +#: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "" + +#: plugins/Marketplace/LocalPackageList.py:28 +msgctxt "@label" +msgid "Installed Plugins" +msgstr "" + +#: plugins/Marketplace/LocalPackageList.py:29 +msgctxt "@label" +msgid "Installed Materials" +msgstr "" + +#: plugins/Marketplace/LocalPackageList.py:33 +msgctxt "@label" +msgid "Bundled Plugins" +msgstr "" + +#: plugins/Marketplace/LocalPackageList.py:34 +msgctxt "@label" +msgid "Bundled Materials" +msgstr "" + +#: plugins/Marketplace/PackageModel.py:43 +msgctxt "@label:property" +msgid "Unknown Package" +msgstr "" + +#: plugins/Marketplace/PackageModel.py:66 +msgctxt "@label:property" +msgid "Unknown Author" +msgstr "" + +#: plugins/Marketplace/PackageModel.py:95 +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 "" + +#: plugins/Marketplace/RemotePackageList.py:117 +msgctxt "@info:error" +msgid "Could not interpret the server's response." +msgstr "" + +#: plugins/Marketplace/RemotePackageList.py:148 +msgctxt "@info:error" +msgid "Could not reach Marketplace." +msgstr "" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 msgctxt "@title" msgid "Changes from your account" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 msgctxt "@button" msgid "Dismiss" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:118 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:175 +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +#: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 +#: resources/qml/WelcomePages/WhatsNewContent.qml:175 msgctxt "@button" msgid "Next" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 msgctxt "@label" msgid "The following packages will be added:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 msgctxt "@label" -msgid "" -"The following packages can not be installed because of an incompatible Cura " -"version:" +msgid "The following packages can not be installed because of an incompatible Cura version:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +#: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 msgctxt "@title" msgid "Install missing Materials" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:15 msgctxt "@button" msgid "Plugin license agreement" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47 +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:47 msgctxt "@text" msgid "Please read and agree with the plugin licence." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:70 msgctxt "@button" msgid "Accept" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 -msgctxt "@header" -msgid "Manage packages" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15 -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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +#: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 msgctxt "@info:tooltip" msgid "Manage packages" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:12 +msgctxt "@header" +msgid "Manage packages" +msgstr "" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:16 +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 "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:87 msgctxt "@title" msgid "Loading..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 +#: plugins/Marketplace/resources/qml/Marketplace.qml:148 msgctxt "@button" msgid "Plugins" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 +#: plugins/Marketplace/resources/qml/Marketplace.qml:156 msgctxt "@button" msgid "Materials" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 +#: plugins/Marketplace/resources/qml/Marketplace.qml:193 msgctxt "@info" msgid "Search in the browser" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:271 +#: plugins/Marketplace/resources/qml/Marketplace.qml:271 msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:279 +#: plugins/Marketplace/resources/qml/Marketplace.qml:279 msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:8 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MissingPackages.qml:8 +#: plugins/Marketplace/resources/qml/Marketplace.qml:300 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" +msgstr "" + +#: plugins/Marketplace/resources/qml/Materials.qml:8 +#: plugins/Marketplace/resources/qml/MissingPackages.qml:8 msgctxt "@header" msgid "Install Materials" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 +#: plugins/Marketplace/resources/qml/Materials.qml:12 msgctxt "@text" -msgid "" -"Select and install material profiles optimised for your Ultimaker 3D " -"printers." +msgid "Select and install material profiles optimised for your UltiMaker 3D printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 +#: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 msgctxt "@label" msgid "You need to accept the license to install the package" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:101 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:207 +#: plugins/Marketplace/resources/qml/OnboardBanner.qml:101 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205 msgctxt "@button:label" msgid "Learn More" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:172 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170 msgctxt "@label Is followed by the name of an author" msgid "By" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Enable" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 msgctxt "@button" msgid "Disable" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Enable" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242 msgctxt "@button" msgid "Downgrading..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243 msgctxt "@button" msgid "Downgrade" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247 msgctxt "@button" msgid "Installing..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248 msgctxt "@button" msgid "Install" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252 msgctxt "@button" msgid "Uninstall" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Updating..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 msgctxt "@button" msgid "Update" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Updating..." +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:15 msgctxt "@header" msgid "Package details" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 +#: plugins/Marketplace/resources/qml/PackageDetails.qml:40 msgctxt "@button:tooltip" msgid "Back" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 +#: plugins/Marketplace/resources/qml/PackagePage.qml:81 msgctxt "@header" msgid "Description" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 +#: plugins/Marketplace/resources/qml/PackagePage.qml:110 msgctxt "@header" msgid "Compatible printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:134 +#: plugins/Marketplace/resources/qml/PackagePage.qml:134 msgctxt "@info" msgid "No compatibility information" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:152 +#: plugins/Marketplace/resources/qml/PackagePage.qml:152 msgctxt "@header" msgid "Compatible support materials" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176 +#: plugins/Marketplace/resources/qml/PackagePage.qml:176 msgctxt "@info No materials" msgid "None" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:193 +#: plugins/Marketplace/resources/qml/PackagePage.qml:193 msgctxt "@header" msgid "Compatible with Material Station" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "Yes" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 msgctxt "@info" msgid "No" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:219 +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "Yes" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:219 msgctxt "@header" msgid "Optimized for Air Manager" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 msgctxt "@button" msgid "Visit plug-in website" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 msgctxt "@button" msgid "Website" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:252 +#: plugins/Marketplace/resources/qml/PackagePage.qml:252 msgctxt "@button" msgid "Buy spool" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:261 +#: plugins/Marketplace/resources/qml/PackagePage.qml:261 msgctxt "@button" msgid "Safety datasheet" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:270 +#: plugins/Marketplace/resources/qml/PackagePage.qml:270 msgctxt "@button" msgid "Technical datasheet" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 +#: plugins/Marketplace/resources/qml/Packages.qml:151 msgctxt "@button" msgid "Failed to load packages:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 +#: plugins/Marketplace/resources/qml/Packages.qml:151 msgctxt "@button" msgid "Retry?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:167 +#: plugins/Marketplace/resources/qml/Packages.qml:167 msgctxt "@button" msgid "Loading" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 +#: plugins/Marketplace/resources/qml/Packages.qml:183 msgctxt "@message" msgid "No more results to load" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 +#: plugins/Marketplace/resources/qml/Packages.qml:183 msgctxt "@message" msgid "No results found with current filter" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:226 +#: plugins/Marketplace/resources/qml/Packages.qml:226 msgctxt "@button" msgid "Load more" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8 +#: plugins/Marketplace/resources/qml/Plugins.qml:8 msgctxt "@header" msgid "Install Plugins" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12 +#: plugins/Marketplace/resources/qml/Plugins.qml:12 msgctxt "@text" +msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." +msgstr "" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 +msgctxt "@info" +msgid "UltiMaker Verified Plug-in" +msgstr "" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "UltiMaker Certified Material" +msgstr "" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 +msgctxt "@info" +msgid "UltiMaker Verified Package" +msgstr "" + +#: plugins/ModelChecker/ModelChecker.py:31 +msgctxt "@info:title" +msgid "3D Model Assistant" +msgstr "" + +#: plugins/ModelChecker/ModelChecker.py:97 +#, python-brace-format +msgctxt "@info:status" msgid "" -"Streamline your workflow and customize your Ultimaker Cura experience with " -"plugins contributed by our amazing community of users." +"

    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 "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 -msgctxt "@info" -msgid "Ultimaker Verified Plug-in" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 -msgctxt "@info" -msgid "Ultimaker Certified Material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 -msgctxt "@info" -msgid "Ultimaker Verified Package" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -2870,3121 +2203,3715 @@ msgid "" "- Check if you are signed in to discover cloud-connected printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 +#: plugins/MonitorStage/MonitorMain.qml:113 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 +#: plugins/MonitorStage/MonitorMain.qml:148 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:163 +#: plugins/MonitorStage/MonitorMain.qml:164 msgctxt "@info" msgid "In order to monitor your print from Cura, please connect the printer." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 +#: plugins/MonitorStage/__init__.py:14 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 msgctxt "@label" msgid "Mesh Type" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 msgctxt "@label" msgid "Normal model" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 msgctxt "@label" msgid "Print as support" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 msgctxt "@label" msgid "Modify settings for overlaps" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 msgctxt "@label" msgid "Don't support overlaps" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 msgctxt "@item:inlistbox" msgid "Infill mesh only" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161 msgctxt "@item:inlistbox" msgid "Cutting mesh" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386 msgctxt "@action:button" msgid "Select settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 msgctxt "@title:window" msgid "Select Settings to Customize for this model" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: resources/qml/Preferences/SettingVisibilityPage.qml:102 msgctxt "@label:textbox" msgid "Filter..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 msgctxt "@label:checkbox" msgid "Show all" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +#: plugins/PerObjectSettingsTool/__init__.py:14 +msgctxt "@label" +msgid "Per Model Settings" +msgstr "" + +#: plugins/PerObjectSettingsTool/__init__.py:15 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +msgctxt "@item:inmenu" +msgid "Post Processing" +msgstr "" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +msgctxt "@item:inmenu" +msgid "Modify G-Code" +msgstr "" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 msgctxt "@label" msgid "Post Processing Scripts" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 msgctxt "@action" msgid "Add a script" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 msgctxt "@label" msgid "Settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:459 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460 msgctxt "@info:tooltip" msgid "Change active post-processing scripts." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:463 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 msgctxt "@info:tooltip" msgid "The following script is active:" msgid_plural "The following scripts are active:" msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:47 +#: plugins/PrepareStage/PrepareMenu.qml:74 +msgctxt "@button" +msgid "Add printer" +msgstr "" + +#: plugins/PrepareStage/PrepareMenu.qml:90 +msgctxt "@button" +msgid "Manage printers" +msgstr "" + +#: plugins/PrepareStage/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "" + +#: plugins/PreviewStage/__init__.py:13 +msgctxt "@item:inmenu" +msgid "Preview" +msgstr "" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 +msgctxt "@info:title" +msgid "Saving" +msgstr "" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 +#, 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 "" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 +#, python-brace-format +msgctxt "@info:status" +msgid "Could not save to removable drive {0}: {1}" +msgstr "" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 +msgctxt "@info:title" +msgid "File Saved" +msgstr "" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +msgctxt "@action:button" +msgid "Eject" +msgstr "" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "" + +#: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "" + +#: plugins/SimulationView/SimulationView.py:129 +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "" + +#: plugins/SimulationView/SimulationView.py:130 +msgctxt "@info:title" +msgid "No layers to show" +msgstr "" + +#: plugins/SimulationView/SimulationView.py:132 +#: plugins/SolidView/SolidView.py:74 +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:18 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:47 msgctxt "@label" msgid "Color scheme" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:104 msgctxt "@label:listbox" msgid "Material Color" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:108 msgctxt "@label:listbox" msgid "Line Type" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:112 msgctxt "@label:listbox" msgid "Speed" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:116 msgctxt "@label:listbox" msgid "Layer Thickness" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:120 msgctxt "@label:listbox" msgid "Line Width" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:124 msgctxt "@label:listbox" msgid "Flow" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:164 msgctxt "@label" msgid "Compatibility Mode" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:231 msgctxt "@label" msgid "Travels" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:237 msgctxt "@label" msgid "Helpers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:243 msgctxt "@label" msgid "Shell" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:64 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:249 msgctxt "@label" msgid "Infill" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" msgid "Starts" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:304 msgctxt "@label" msgid "Only Show Top Layers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:313 msgctxt "@label" msgid "Show 5 Detailed Layers On Top" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:326 msgctxt "@label" msgid "Top / Bottom" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:330 msgctxt "@label" msgid "Inner Wall" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:397 msgctxt "@label" msgid "min" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:462 msgctxt "@label" msgid "max" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 +#: plugins/SimulationView/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 msgctxt "@title:window" msgid "More information on anonymous data collection" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 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:" +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 "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 msgctxt "@text:window" msgid "I don't want to send anonymous data" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" +#: plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 +#: plugins/SolidView/SolidView.py:71 +msgctxt "@info:status" +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "" + +#: plugins/SolidView/SolidView.py:73 +msgctxt "@info:title" +msgid "Model Errors" +msgstr "" + +#: plugins/SolidView/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "" + +#: plugins/SupportEraser/__init__.py:12 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." +msgid "Support Blocker" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 -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." +#: plugins/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" +#: plugins/TrimeshReader/__init__.py:15 +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 -msgctxt "@action:button" -msgid "Move to Next Position" +#: plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" +#: plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" +#: plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 +#: plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "" + +#: plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "" + +#: plugins/UFPReader/__init__.py:22 +#: plugins/UFPWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "UltiMaker Format Package" +msgstr "" + +#: plugins/UFPWriter/UFPWriter.py:64 +#: plugins/UFPWriter/UFPWriter.py:80 +#: plugins/UFPWriter/UFPWriter.py:93 +#: plugins/UFPWriter/UFPWriter.py:115 +#: plugins/UFPWriter/UFPWriter.py:170 +#: plugins/UFPWriter/UFPWriter.py:180 +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 msgctxt "@title:window" msgid "Connect to Networked Printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 msgctxt "@label" msgid "Select your printer from the list below:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +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 "" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 msgctxt "@action:button" msgid "Edit" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:140 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:321 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 +#: resources/qml/Preferences/MachinesPage.qml:153 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:186 +#: resources/qml/Preferences/ProfilesPage.qml:321 msgctxt "@action:button" msgid "Remove" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 msgctxt "@action:button" msgid "Refresh" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 msgctxt "@label" -msgid "" -"If your printer is not listed, read the network printing " -"troubleshooting guide" +msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 msgctxt "@label" msgid "Type" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 msgctxt "@label" msgid "Firmware version" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 msgctxt "@label" msgid "Address" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 msgctxt "@label" msgid "This printer is not set up to host a group of printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 msgctxt "@label" msgid "The printer at this address has not yet responded." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 msgctxt "@action:button" msgid "Connect" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 msgctxt "@title:window" msgid "Invalid IP address" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 msgctxt "@text" msgid "Please enter a valid IP address." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 msgctxt "@title:window" msgid "Printer Address" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 msgctxt "@label" msgid "Enter the IP address of your printer on the network." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 msgctxt "@title:window" msgid "Configuration Changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 msgctxt "@action:button" msgid "Override" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 msgctxt "@label" msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "" -"The assigned printer, %1, requires the following configuration changes:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 msgctxt "@label" -msgid "" -"The printer %1 is assigned, but the job contains an unknown material " -"configuration." +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 msgctxt "@label" msgid "Change material %1 from %2 to %3." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 msgctxt "@label" msgid "Load %3 as material %1 (This cannot be overridden)." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 msgctxt "@label" msgid "Change print core %1 from %2 to %3." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110 msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113 -msgctxt "@label" -msgid "" -"Override will use the specified settings with the existing printer " -"configuration. This may result in a failed print." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:178 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:175 -msgctxt "@label" -msgid "Glass" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154 -msgctxt "@label" -msgid "Aluminum" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 msgctxt "@label" msgid "Move to top" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155 msgctxt "@label" msgid "Delete" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:284 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186 +#: resources/qml/MonitorButton.qml:284 msgctxt "@label" msgid "Resume" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188 msgctxt "@label" msgid "Pausing..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190 msgctxt "@label" msgid "Resuming..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:288 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192 +#: resources/qml/MonitorButton.qml:279 +#: resources/qml/MonitorButton.qml:288 msgctxt "@label" msgid "Pause" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 msgctxt "@label" msgid "Abort" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:142 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Aborting..." +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218 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 "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219 msgctxt "@window:title" msgid "Move print job to top" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:151 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227 msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to delete %1?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228 msgctxt "@window:title" msgid "Delete print job" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:160 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236 msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to abort %1?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237 +#: resources/qml/MonitorButton.qml:326 msgctxt "@window:title" msgid "Abort print" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:239 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:275 -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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335 -msgctxt "@label:status" -msgid "Loading..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347 -msgctxt "@label:status" -msgid "Idle" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Printing" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397 -msgctxt "@label" -msgid "Untitled" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:412 -msgctxt "@label" -msgid "Anonymous" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:433 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:447 -msgctxt "@action:button" -msgid "Details" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 msgctxt "@label" msgid "Unavailable printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 msgctxt "@label" msgid "First available" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 msgctxt "@label:status" msgid "Aborted" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 msgctxt "@label:status" msgid "Finished" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 msgctxt "@label:status" msgid "Aborting..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 msgctxt "@label:status" msgid "Failed" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 msgctxt "@label:status" msgid "Pausing..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 msgctxt "@label:status" msgid "Paused" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 msgctxt "@label:status" msgid "Resuming..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 msgctxt "@label:status" msgid "Action required" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 msgctxt "@label:status" msgid "Finishes %1 at %2" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280 +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 "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340 +msgctxt "@label:status" +msgid "Loading..." +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Idle" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361 +msgctxt "@label:status" +msgid "Printing" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402 +msgctxt "@label" +msgid "Untitled" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417 +msgctxt "@label" +msgid "Anonymous" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452 +msgctxt "@action:button" +msgid "Details" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 msgctxt "@label" msgid "Queued" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64 msgctxt "@label link to connect manager" msgid "Manage in browser" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91 msgctxt "@label" msgid "There are no print jobs in the queue. Slice and send a job to add one." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:98 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 msgctxt "@label" msgid "Print jobs" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108 msgctxt "@label" msgid "Total print time" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117 msgctxt "@label" msgid "Waiting for" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117 +msgctxt "@info" +msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129 +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 msgctxt "@title:window" msgid "Print over network" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 msgctxt "@action:button" msgid "Print" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 msgctxt "@label" msgid "Printer selection" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162 +msgctxt "@action:button" +msgid "Print via cloud" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163 +msgctxt "@properties:tooltip" +msgid "Print via cloud" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164 +msgctxt "@info:status" +msgid "Connected via cloud" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276 +msgctxt "@action:button" +msgid "Monitor print" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278 +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298 +#, python-brace-format +msgctxt "@error:send" +msgid "Unknown error code when uploading print job: {0}" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23 +msgctxt "info:name" +msgid "Ultimaker Digital Factory" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425 +#, 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 "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426 +#, 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 "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427 +#, 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 "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474 +msgctxt "@title:window" +msgid "Remove printers?" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477 +#, python-brace-format +msgctxt "@label" +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] "" +msgstr[1] "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +msgctxt "@label" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#, 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 "" + +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +msgctxt "@action" +msgid "Get started" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24 +msgctxt "@action" +msgid "Learn more" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +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 "" + +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#, 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 "" + +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "" +msgstr[1] "" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29 +#, python-brace-format +msgctxt "info:status Filled in with printer name and printer model." +msgid "Adding printer {name} ({model}) from your account" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "" +msgstr[1] "" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#, 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 "" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +msgctxt "@action" +msgid "Configure group" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18 +msgctxt "@info:status" +msgid "You will receive a confirmation via email when the print job is approved" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19 +msgctxt "@info:title" +msgid "The print job was successfully submitted" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22 +msgctxt "@action" +msgid "Manage print jobs" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +msgctxt "@info:title" +msgid "Print error" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +msgctxt "@info:title" +msgid "Network error" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "" +msgstr[1] "" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "" +msgstr[1] "" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +msgctxt "@action" +msgid "Connect via Network" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:43 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:44 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:80 +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:110 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:135 +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 +msgctxt "@action" +msgid "Level build plate" +msgstr "" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 +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 "" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 +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 "" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this UltiMaker Original" +msgstr "" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "" + +#: plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "" + +#: plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "" + +#: resources/qml/Account/AccountWidget.qml:24 msgctxt "@action:button" msgid "Sign in" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: resources/qml/Account/GeneralOperations.qml:19 +#: resources/qml/WelcomePages/CloudContent.qml:64 msgctxt "@label" -msgid "Sign in to the Ultimaker platform" +msgid "Sign in to the UltiMaker platform" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 +#: resources/qml/Account/GeneralOperations.qml:39 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" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 +#: resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" -msgid "Create a free Ultimaker account" +msgid "Create a free UltiMaker account" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 +#: resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 +#: resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 +#: resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 +#: resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 +#: resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +#: resources/qml/Account/UserOperations.qml:78 msgctxt "@label The argument is a timestamp" msgid "Last update: %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +#: resources/qml/Account/UserOperations.qml:107 msgctxt "@button" -msgid "Ultimaker Account" +msgid "UltiMaker Account" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +#: resources/qml/Account/UserOperations.qml:126 msgctxt "@button" msgid "Sign Out" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" msgid "No time estimation available" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:77 msgctxt "@label" msgid "No cost estimation available" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:127 msgctxt "@button" msgid "Preview" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" msgid "Time estimation" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 +#: resources/qml/ActionPanel/PrintJobInformation.qml:107 msgctxt "@label" msgid "Material estimation" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:156 +#: resources/qml/ActionPanel/PrintJobInformation.qml:156 msgctxt "@label m for meter" msgid "%1m" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:157 +#: resources/qml/ActionPanel/PrintJobInformation.qml:157 msgctxt "@label g for grams" msgid "%1g" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:54 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:78 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:78 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Processing" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Slice" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:115 msgctxt "@label" msgid "Start the slicing process" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:132 msgctxt "@button" msgid "Cancel" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 +#: resources/qml/Actions.qml:81 msgctxt "@action:inmenu" msgid "Show Online Troubleshooting" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 +#: resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 +#: resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 +#: resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 +#: resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 +#: resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 +#: resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 +#: resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 +#: resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 +#: resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 +#: resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 +#: resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 +#: resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 +#: resources/qml/Actions.qml:197 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 +#: resources/qml/Actions.qml:203 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 +#: resources/qml/Actions.qml:210 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:216 -msgctxt "" -"@action:inmenu Marketplace is a brand name of Ultimaker's, so don't " -"translate." +#: resources/qml/Actions.qml:218 +msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." msgid "Add more materials from Marketplace" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 +#: resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 +#: resources/qml/Actions.qml:233 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 +#: resources/qml/Actions.qml:245 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 +#: resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 +#: resources/qml/Actions.qml:259 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 +#: resources/qml/Actions.qml:267 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 +#: resources/qml/Actions.qml:275 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 +#: resources/qml/Actions.qml:289 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 +#: resources/qml/Actions.qml:296 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 +#: resources/qml/Actions.qml:306 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 +#: resources/qml/Actions.qml:315 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 +#: resources/qml/Actions.qml:324 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 +#: resources/qml/Actions.qml:332 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 +#: resources/qml/Actions.qml:338 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 +#: resources/qml/Actions.qml:358 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 +#: resources/qml/Actions.qml:368 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 +#: resources/qml/Actions.qml:378 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 +#: resources/qml/Actions.qml:385 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 +#: resources/qml/Actions.qml:395 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 +#: resources/qml/Actions.qml:405 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 +#: resources/qml/Actions.qml:414 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 +#: resources/qml/Actions.qml:422 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 +#: resources/qml/Actions.qml:429 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 +#: resources/qml/Actions.qml:436 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 +#: resources/qml/Actions.qml:445 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 +#: resources/qml/Actions.qml:455 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 +#: resources/qml/Actions.qml:462 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 +#: resources/qml/Actions.qml:469 +#: resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 msgctxt "@label:button" msgid "My printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 msgctxt "@tooltip:button" msgid "Monitor printers in Ultimaker Digital Factory." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 msgctxt "@label:button" msgid "Print jobs" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 msgctxt "@tooltip:button" msgid "Monitor print jobs and reprint from your print history." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." +msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." +msgid "Become a 3D printing expert with UltiMaker e-learning." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 msgctxt "@label:button" -msgid "Ultimaker support" +msgid "UltiMaker support" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." +msgid "Learn how to get started with UltiMaker Cura." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 msgctxt "@label:button" msgid "Ask a question" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." +msgid "Consult the UltiMaker Community." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 msgctxt "@label:button" msgid "Report a bug" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." +msgid "Visit the UltiMaker website." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 +#: resources/qml/ColorDialog.qml:110 msgctxt "@label" msgid "Hex" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 +#: resources/qml/Cura.qml:256 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +#: resources/qml/Cura.qml:467 +#: resources/qml/Preferences/GeneralPage.qml:14 msgctxt "@title:tab" msgid "General" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +#: resources/qml/Cura.qml:470 msgctxt "@title:tab" msgid "Settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:468 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:17 +#: resources/qml/Cura.qml:472 +#: resources/qml/Preferences/MachinesPage.qml:17 msgctxt "@title:tab" msgid "Printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:470 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70 +#: resources/qml/Cura.qml:474 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:70 msgctxt "@title:tab" msgid "Materials" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:472 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:57 +#: resources/qml/Cura.qml:476 +#: resources/qml/Preferences/ProfilesPage.qml:57 msgctxt "@title:tab" msgid "Profiles" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +#: resources/qml/Cura.qml:581 msgctxt "@title:window %1 is the application name" msgid "Closing %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:590 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:599 +#: resources/qml/Cura.qml:582 +#: resources/qml/Cura.qml:591 msgctxt "@label %1 is the application name" msgid "Are you sure you want to exit %1?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:637 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 +#: resources/qml/Cura.qml:629 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 msgctxt "@title:window" msgid "Open file(s)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +#: resources/qml/Cura.qml:734 msgctxt "@window:title" msgid "Install Package" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +#: resources/qml/Cura.qml:741 msgctxt "@title:window" msgid "Open File(s)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +#: resources/qml/Cura.qml:743 msgctxt "@text:window" -msgid "" -"We have found one or more G-Code files within the files you have selected. " -"You can only open one G-Code file at a time. If you want to open a G-Code " -"file, please just select only one." +msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:831 +#: resources/qml/Cura.qml:828 msgctxt "@title:window" msgid "Add Printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +#: resources/qml/Cura.qml:836 msgctxt "@title:window" msgid "What's New" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: resources/qml/Cura.qml:890 +msgctxt "@title:window" +msgid "Save Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:891 +msgctxt "@textfield:placeholder" +msgid "New Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:892 +msgctxt "@info" +msgid "Custom profile name:" +msgstr "" + +#: resources/qml/Cura.qml:909 +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 "" + +#: resources/qml/Cura.qml:917 +msgctxt "@action:button" +msgid "Learn more about Cura print profiles" +msgstr "" + +#: resources/qml/Cura.qml:926 +msgctxt "@button" +msgid "Save new profile" +msgstr "" + +#: resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: resources/qml/Dialogs/AboutDialog.qml:59 msgctxt "@label" msgid "version: %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: resources/qml/Dialogs/AboutDialog.qml:74 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: resources/qml/Dialogs/AboutDialog.qml:87 msgctxt "@info:credit" msgid "" -"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura is developed by UltiMaker in cooperation with the community.\n" "Cura proudly uses the following open source projects:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label Description for application component" msgid "Graphical user interface" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label Description for application component" msgid "Application framework" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label Description for application component" msgid "G-code generator" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label Description for application component" msgid "Interprocess communication library" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:142 +msgctxt "@label Description for application component" msgid "Python bindings for libnest2d" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label Description for application component" msgid "Polygon packing library, developed by Prusa Research" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:144 +msgctxt "@label Description for application component" msgid "Support library for handling 3MF files" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:145 +msgctxt "@label Description for application component" msgid "Support library for file metadata and streaming" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label Description for application dependency" msgid "GUI framework" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label Description for application dependency" msgid "GUI framework bindings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label Description for application dependency" msgid "C/C++ Binding library" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:152 +msgctxt "@label Description for application dependency" msgid "Data interchange format" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "Font" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label Description for application dependency" msgid "Polygon clipping library" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label Description for application dependency" msgid "JSON parser" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:158 +msgctxt "@label Description for application dependency" msgid "Utility functions, including an image loader" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:159 +msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:162 +#: resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label Description for application dependency" msgid "Root Certificates for validating SSL trustworthiness" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label Description for application dependency" msgid "Compatibility between Python 2 and 3" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label Description for application dependency" msgid "Support library for system keyring access" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label Description for application dependency" msgid "Support library for faster math" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label Description for application dependency" msgid "Support library for handling STL files" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label Description for application dependency" msgid "Python bindings for Clipper" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label Description for application dependency" msgid "Support library for scientific computing" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 -msgctxt "@Label" +#: resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@Label Description for application dependency" msgid "Python Error tracking library" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:172 +msgctxt "@label Description for application dependency" msgid "Support library for handling triangular meshes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:173 +msgctxt "@label Description for application dependency" msgid "ZeroConf discovery library" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label Description for development tool" msgid "Dependency and package manager" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label Description for development tool" msgid "Packaging Python-applications" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:179 +msgctxt "@label Description for development tool" msgid "Linux cross-distribution application deployment" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:180 +msgctxt "@label Description for development tool" msgid "Generating Windows installers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 msgctxt "@title:window" msgid "Open project file" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84 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?" +msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:90 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91 msgctxt "@text:window" msgid "Remember my choice" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105 msgctxt "@action:button" msgid "Open as project" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110 msgctxt "@action:button" msgid "Import models" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:17 +msgctxt "@title:window" +msgid "Select Printer" +msgstr "" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:54 +msgctxt "@title:label" +msgid "Compatible Printers" +msgstr "" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:110 +msgctxt "@description" +msgid "No compatible printers, that are currently online, were found." +msgstr "" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:49 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64 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'." +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 "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90 msgctxt "@title:column" msgid "Profile settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92 msgctxt "@title:column" msgid "Current changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:799 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123 +#: resources/qml/Preferences/GeneralPage.qml:820 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157 msgctxt "@action:button" msgid "Discard changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164 msgctxt "@action:button" msgid "Keep changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 -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?" +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171 +msgctxt "@action:button" +msgid "Save as new custom profile" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178 +msgctxt "@action:button" +msgid "Save changes" +msgstr "" + +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 +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 "" + +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 msgctxt "@action:button" msgid "Import all as models" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 +#: resources/qml/Dialogs/RenameDialog.qml:23 +msgctxt "@title:window" +msgid "Rename" +msgstr "" + +#: resources/qml/Dialogs/RenameDialog.qml:24 +msgctxt "@info" +msgid "Please provide a new name." +msgstr "" + +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 msgctxt "@title:window" msgid "Save Project" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177 msgctxt "@action:label" msgid "Extruder %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 msgctxt "@action:label" msgid "%1 & material" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195 msgctxt "@action:label" msgid "Material" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298 msgctxt "@action:button" msgid "Save" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -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" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:93 +#: resources/qml/JobSpecs.qml:93 msgctxt "@text Print job name" msgid "Untitled" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 +#: resources/qml/MainWindow/ApplicationMenu.qml:63 +#: resources/qml/Menus/SettingsMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 +#: resources/qml/MainWindow/ApplicationMenu.qml:87 msgctxt "@title:window" msgid "New project" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88 +#: resources/qml/MainWindow/ApplicationMenu.qml:88 msgctxt "@info:question" -msgid "" -"Are you sure you want to start a new project? This will clear the build " -"plate and any unsaved settings." +msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135 +#: resources/qml/MainWindow/MainWindowHeader.qml:135 msgctxt "@action:button" msgid "Marketplace" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +#: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 msgctxt "@header" msgid "Configurations" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 msgctxt "@label" -msgid "" -"This configuration is not available because %1 is not recognized. Please " -"visit %2 to download the correct material profile." +msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 msgctxt "@label" msgid "Marketplace" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 msgctxt "@label" msgid "Loading available configurations from the printer..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 msgctxt "@label" -msgid "" -"The configurations are not available because the printer is disconnected." +msgid "The configurations are not available because the printer is disconnected." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 msgctxt "@tooltip" -msgid "" -"The configuration of this extruder is not allowed, and prohibits slicing." +msgid "The configuration of this extruder is not allowed, and prohibits slicing." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 msgctxt "@tooltip" msgid "There are no profiles matching the configuration of this extruder." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 msgctxt "@label" msgid "Select configuration" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 msgctxt "@label" msgid "Configurations" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 msgctxt "@header" msgid "Custom" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:62 -msgctxt "@label" -msgid "Printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:217 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173 msgctxt "@label" msgid "Enabled" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222 msgctxt "@label" msgid "Material" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348 msgctxt "@label" msgid "Use glue for better adhesion with this material combination." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:29 +#: resources/qml/Menus/ContextMenu.qml:29 msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:92 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:123 msgctxt "@label" msgid "Number of Copies" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/EditMenu.qml:12 +#: resources/qml/Menus/EditMenu.qml:12 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ExtensionMenu.qml:13 +#: resources/qml/Menus/ExtensionMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 +#: resources/qml/Menus/FileMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:45 +#: resources/qml/Menus/FileMenu.qml:45 msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:78 +#: resources/qml/Menus/FileMenu.qml:78 msgctxt "@title:menu menubar:file" msgid "&Export..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:89 +#: resources/qml/Menus/FileMenu.qml:89 msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/HelpMenu.qml:14 +#: resources/qml/Menus/HelpMenu.qml:14 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +#: resources/qml/Menus/MaterialMenu.qml:13 msgctxt "@label:category menu label" msgid "Material" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:53 +#: resources/qml/Menus/MaterialMenu.qml:53 msgctxt "@label:category menu label" msgid "Favorites" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:78 +#: resources/qml/Menus/MaterialMenu.qml:78 msgctxt "@label:category menu label" msgid "Generic" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +#: resources/qml/Menus/OpenFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open File(s)..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PreferencesMenu.qml:21 +#: resources/qml/Menus/PreferencesMenu.qml:21 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:13 +#: resources/qml/Menus/PrinterMenu.qml:13 msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:17 +#: resources/qml/Menus/PrinterMenu.qml:17 msgctxt "@label:category menu label" msgid "Network enabled printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:50 +#: resources/qml/Menus/PrinterMenu.qml:50 msgctxt "@label:category menu label" msgid "Local printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +#: resources/qml/Menus/RecentFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open &Recent" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +#: resources/qml/Menus/SaveProjectMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Save Project..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:34 -msgctxt "@title:menu" -msgid "&Material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:49 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:55 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:63 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 msgctxt "@action:inmenu" msgid "Visible Settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 msgctxt "@action:inmenu" msgid "Collapse All Categories" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 msgctxt "@action:inmenu" msgid "Manage Setting Visibility..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:13 +#: resources/qml/Menus/SettingsMenu.qml:34 +msgctxt "@title:menu" +msgid "&Material" +msgstr "" + +#: resources/qml/Menus/SettingsMenu.qml:49 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "" + +#: resources/qml/Menus/SettingsMenu.qml:55 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "" + +#: resources/qml/Menus/SettingsMenu.qml:63 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "" + +#: resources/qml/Menus/ViewMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:17 +#: resources/qml/Menus/ViewMenu.qml:17 msgctxt "@action:inmenu menubar:view" msgid "&Camera position" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:30 +#: resources/qml/Menus/ViewMenu.qml:30 msgctxt "@action:inmenu menubar:view" msgid "Camera view" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 +#: resources/qml/Menus/ViewMenu.qml:48 msgctxt "@action:inmenu menubar:view" msgid "Perspective" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +#: resources/qml/Menus/ViewMenu.qml:59 msgctxt "@action:inmenu menubar:view" msgid "Orthographic" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:115 +#: resources/qml/MonitorButton.qml:115 msgctxt "@label:MonitorStatus" msgid "Not connected to a printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 +#: resources/qml/MonitorButton.qml:119 msgctxt "@label:MonitorStatus" msgid "Printer does not accept commands" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:129 +#: resources/qml/MonitorButton.qml:129 msgctxt "@label:MonitorStatus" msgid "In maintenance. Please check the printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:140 +#: resources/qml/MonitorButton.qml:140 msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +#: resources/qml/MonitorButton.qml:142 msgctxt "@label:MonitorStatus" msgid "Printing..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +#: resources/qml/MonitorButton.qml:145 msgctxt "@label:MonitorStatus" msgid "Paused" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +#: resources/qml/MonitorButton.qml:148 msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +#: resources/qml/MonitorButton.qml:150 msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +#: resources/qml/MonitorButton.qml:318 msgctxt "@label" msgid "Abort Print" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:327 +#: resources/qml/MonitorButton.qml:327 msgctxt "@label" msgid "Are you sure you want to abort the print?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:109 +#: resources/qml/ObjectItemButton.qml:109 msgctxt "@label" msgid "Is printed as support." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:112 +#: resources/qml/ObjectItemButton.qml:112 msgctxt "@label" msgid "Other models overlapping with this model are modified." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:115 +#: resources/qml/ObjectItemButton.qml:115 msgctxt "@label" msgid "Infill overlapping with this model is modified." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:118 +#: resources/qml/ObjectItemButton.qml:118 msgctxt "@label" msgid "Overlaps with this model are not supported." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:125 +#: resources/qml/ObjectItemButton.qml:125 msgctxt "@label %1 is the number of settings it overrides." msgid "Overrides %1 setting." msgid_plural "Overrides %1 settings." msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 +#: resources/qml/ObjectSelector.qml:59 msgctxt "@label" msgid "Object list" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:131 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:24 +#: resources/qml/Preferences/GeneralPage.qml:134 +#: resources/qml/Preferences/SettingVisibilityPage.qml:24 msgctxt "@action:button" msgid "Defaults" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +#: resources/qml/Preferences/GeneralPage.qml:172 msgctxt "@label" msgid "Interface" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +#: resources/qml/Preferences/GeneralPage.qml:215 msgctxt "@heading" msgid "-- incomplete --" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +#: resources/qml/Preferences/GeneralPage.qml:261 msgctxt "@label" msgid "Currency:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:274 -msgctxt "" -"@label: Please keep the asterix, it's to indicate that a restart is needed." +#: resources/qml/Preferences/GeneralPage.qml:277 +msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." msgid "Theme*:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +#: resources/qml/Preferences/GeneralPage.qml:323 msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +#: resources/qml/Preferences/GeneralPage.qml:331 msgctxt "@option:check" msgid "Slice automatically" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:337 -msgctxt "@label" -msgid "" -"*You will need to restart the application for these changes to have effect." +#: resources/qml/Preferences/GeneralPage.qml:340 +msgctxt "@info:tooltip" +msgid "Show an icon and notifications in the system notification area." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +#: resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Add icon to system tray *" +msgstr "" + +#: resources/qml/Preferences/GeneralPage.qml:357 +msgctxt "@label" +msgid "*You will need to restart the application for these changes to have effect." +msgstr "" + +#: resources/qml/Preferences/GeneralPage.qml:373 msgctxt "@label" msgid "Viewport behavior" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +#: resources/qml/Preferences/GeneralPage.qml:381 msgctxt "@info:tooltip" -msgid "" -"Highlight unsupported areas of the model in red. Without support these areas " -"will not print properly." +msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:369 +#: resources/qml/Preferences/GeneralPage.qml:390 msgctxt "@option:check" msgid "Display overhang" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +#: resources/qml/Preferences/GeneralPage.qml:400 msgctxt "@info:tooltip" -msgid "" -"Highlight missing or extraneous surfaces of the model using warning signs. " -"The toolpaths will often be missing parts of the intended geometry." +msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:388 +#: resources/qml/Preferences/GeneralPage.qml:409 msgctxt "@option:check" msgid "Display model errors" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +#: resources/qml/Preferences/GeneralPage.qml:417 msgctxt "@info:tooltip" -msgid "" -"Moves the camera so the model is in the center of the view when a model is " -"selected" +msgid "Moves the camera so the model is in the center of the view when a model is selected" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:401 +#: resources/qml/Preferences/GeneralPage.qml:422 msgctxt "@action:button" msgid "Center camera when item is selected" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +#: resources/qml/Preferences/GeneralPage.qml:432 msgctxt "@info:tooltip" msgid "Should the default zoom behavior of cura be inverted?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:416 +#: resources/qml/Preferences/GeneralPage.qml:437 msgctxt "@action:button" msgid "Invert the direction of camera zoom." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Should zooming move in the direction of the mouse?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" -msgid "" -"Zooming towards the mouse is not supported in the orthographic perspective." +msgid "Zooming towards the mouse is not supported in the orthographic perspective." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:437 +#: resources/qml/Preferences/GeneralPage.qml:458 msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +#: resources/qml/Preferences/GeneralPage.qml:484 msgctxt "@info:tooltip" -msgid "" -"Should models on the platform be moved so that they no longer intersect?" +msgid "Should models on the platform be moved so that they no longer intersect?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:468 +#: resources/qml/Preferences/GeneralPage.qml:489 msgctxt "@option:check" msgid "Ensure models are kept apart" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +#: resources/qml/Preferences/GeneralPage.qml:498 msgctxt "@info:tooltip" msgid "Should models on the platform be moved down to touch the build plate?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:482 +#: resources/qml/Preferences/GeneralPage.qml:503 msgctxt "@option:check" msgid "Automatically drop models to the build plate" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +#: resources/qml/Preferences/GeneralPage.qml:515 msgctxt "@info:tooltip" msgid "Show caution message in g-code reader." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503 +#: resources/qml/Preferences/GeneralPage.qml:524 msgctxt "@option:check" msgid "Caution message in g-code reader" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +#: resources/qml/Preferences/GeneralPage.qml:532 msgctxt "@info:tooltip" msgid "Should layer be forced into compatibility mode?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +#: resources/qml/Preferences/GeneralPage.qml:537 msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +#: resources/qml/Preferences/GeneralPage.qml:547 msgctxt "@info:tooltip" msgid "Should Cura open at the location it was closed?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:531 +#: resources/qml/Preferences/GeneralPage.qml:552 msgctxt "@option:check" msgid "Restore window position on start" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +#: resources/qml/Preferences/GeneralPage.qml:562 msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +#: resources/qml/Preferences/GeneralPage.qml:569 msgctxt "@window:text" msgid "Camera rendering:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +#: resources/qml/Preferences/GeneralPage.qml:576 msgid "Perspective" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +#: resources/qml/Preferences/GeneralPage.qml:577 msgid "Orthographic" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +#: resources/qml/Preferences/GeneralPage.qml:617 msgctxt "@label" msgid "Opening and saving files" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +#: resources/qml/Preferences/GeneralPage.qml:624 msgctxt "@info:tooltip" -msgid "" -"Should opening files from the desktop or external applications open in the " -"same instance of Cura?" +msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:608 +#: resources/qml/Preferences/GeneralPage.qml:629 msgctxt "@option:check" msgid "Use a single instance of Cura" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +#: resources/qml/Preferences/GeneralPage.qml:640 msgctxt "@info:tooltip" -msgid "" -"Should the build plate be cleared before loading a new model in the single " -"instance of Cura?" +msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +#: resources/qml/Preferences/GeneralPage.qml:646 msgctxt "@option:check" msgid "Clear buildplate before loading model into the single instance" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 +#: resources/qml/Preferences/GeneralPage.qml:656 msgctxt "@info:tooltip" msgid "Should models be scaled to the build volume if they are too large?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +#: resources/qml/Preferences/GeneralPage.qml:661 msgctxt "@option:check" msgid "Scale large models" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +#: resources/qml/Preferences/GeneralPage.qml:671 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?" +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 "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:655 +#: resources/qml/Preferences/GeneralPage.qml:676 msgctxt "@option:check" msgid "Scale extremely small models" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +#: resources/qml/Preferences/GeneralPage.qml:686 msgctxt "@info:tooltip" msgid "Should models be selected after they are loaded?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: resources/qml/Preferences/GeneralPage.qml:691 msgctxt "@option:check" msgid "Select models when loaded" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +#: resources/qml/Preferences/GeneralPage.qml:701 msgctxt "@info:tooltip" -msgid "" -"Should a prefix based on the printer name be added to the print job name " -"automatically?" +msgid "Should a prefix based on the printer name be added to the print job name automatically?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:685 +#: resources/qml/Preferences/GeneralPage.qml:706 msgctxt "@option:check" msgid "Add machine prefix to job name" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +#: resources/qml/Preferences/GeneralPage.qml:716 msgctxt "@info:tooltip" msgid "Should a summary be shown when saving a project file?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: resources/qml/Preferences/GeneralPage.qml:720 msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +#: resources/qml/Preferences/GeneralPage.qml:730 msgctxt "@info:tooltip" msgid "Default behavior when opening a project file" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +#: resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@window:text" msgid "Default behavior when opening a project file: " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +#: resources/qml/Preferences/GeneralPage.qml:753 msgctxt "@option:openProject" msgid "Always ask me this" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: resources/qml/Preferences/GeneralPage.qml:754 msgctxt "@option:openProject" msgid "Always open as a project" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +#: resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:openProject" msgid "Always import models" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +#: resources/qml/Preferences/GeneralPage.qml:792 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." +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 "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:780 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:36 +#: resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46 msgctxt "@label" msgid "Profiles" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +#: resources/qml/Preferences/GeneralPage.qml:806 msgctxt "@window:text" -msgid "" -"Default behavior for changed setting values when switching to a different " -"profile: " +msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:800 +#: resources/qml/Preferences/GeneralPage.qml:821 msgctxt "@option:discardOrKeep" msgid "Always discard changed settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/Preferences/GeneralPage.qml:822 msgctxt "@option:discardOrKeep" msgid "Always transfer changed settings to new profile" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +#: resources/qml/Preferences/GeneralPage.qml:856 msgctxt "@label" msgid "Privacy" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +#: resources/qml/Preferences/GeneralPage.qml:862 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." +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 "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +#: resources/qml/Preferences/GeneralPage.qml:867 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +#: resources/qml/Preferences/GeneralPage.qml:897 msgctxt "@label" msgid "Updates" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +#: resources/qml/Preferences/GeneralPage.qml:904 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:888 +#: resources/qml/Preferences/GeneralPage.qml:909 msgctxt "@option:check" msgid "Check for updates on start" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +#: resources/qml/Preferences/GeneralPage.qml:925 msgctxt "@info:tooltip" msgid "When checking for updates, only check for stable releases." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:910 +#: resources/qml/Preferences/GeneralPage.qml:931 msgctxt "@option:radio" msgid "Stable releases only" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +#: resources/qml/Preferences/GeneralPage.qml:941 msgctxt "@info:tooltip" msgid "When checking for updates, check for both stable and for beta releases." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:926 +#: resources/qml/Preferences/GeneralPage.qml:947 msgctxt "@option:radio" msgid "Stable and Beta releases" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +#: resources/qml/Preferences/GeneralPage.qml:957 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!" +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 "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:941 +#: resources/qml/Preferences/GeneralPage.qml:962 msgctxt "@option:check" msgid "Get notifications for plugin updates" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:50 +#: resources/qml/Preferences/MachinesPage.qml:50 msgctxt "@action:button" msgid "Add New" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:134 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +#: resources/qml/Preferences/MachinesPage.qml:147 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:160 +#: resources/qml/Preferences/ProfilesPage.qml:294 msgctxt "@action:button" msgid "Activate" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:146 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:331 +#: resources/qml/Preferences/MachinesPage.qml:159 +#: resources/qml/Preferences/ProfilesPage.qml:331 msgctxt "@action:button" msgid "Rename" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:72 msgctxt "@label" msgid "Materials compatible with active printer:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:94 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:78 +#: resources/qml/Preferences/ProfilesPage.qml:94 msgctxt "@action:button" msgid "Create new" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:88 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:90 +#: resources/qml/Preferences/ProfilesPage.qml:88 msgctxt "@action:button" msgid "Import" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:101 msgctxt "@action:button" msgid "Sync with Printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:311 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:174 +#: resources/qml/Preferences/ProfilesPage.qml:311 msgctxt "@action:button" msgid "Duplicate" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:342 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:198 +#: resources/qml/Preferences/ProfilesPage.qml:342 msgctxt "@action:button" msgid "Export" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:392 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:212 +#: resources/qml/Preferences/ProfilesPage.qml:392 msgctxt "@title:window" msgid "Confirm Remove" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:393 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:215 +#: resources/qml/Preferences/ProfilesPage.qml:393 msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:228 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:238 msgctxt "@title:window" msgid "Import Material" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:242 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:245 msgctxt "@info:status Don't translate the XML tags or !" -msgid "" -"Could not import material %1: %2" +msgid "Could not import material %1: %2" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:267 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:256 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:267 msgctxt "@title:window" msgid "Export Material" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:272 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:272 msgctxt "@info:status Don't translate the XML tags and !" -msgid "" -"Failed to export material to %1: %2" +msgid "Failed to export material to %1: %2" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:275 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:275 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 msgctxt "@title:window" msgid "Sync materials with printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 msgctxt "@title:header" msgid "Sync materials with printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 msgctxt "@text" -msgid "" -"Following a few simple steps, you will be able to synchronize all your " -"material profiles with your printers." +msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 msgctxt "@button" msgid "Why do I need to sync material profiles?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 msgctxt "@button" msgid "Start" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144 msgctxt "@title:header" msgid "Sign in" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150 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." +msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:446 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:586 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602 msgctxt "@button" msgid "Sync materials with USB" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 msgctxt "@title:header" msgid "The following printers will receive the new material profiles:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:198 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 msgctxt "@title:header" msgid "Something went wrong when sending the materials to the printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:205 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221 msgctxt "@title:header" msgid "Material profiles successfully synced with the following printers:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:429 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445 msgctxt "@button" msgid "Troubleshooting" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422 msgctxt "@text Asking the user whether printers are missing in a list." msgid "Printers missing?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:408 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424 msgctxt "@text" -msgid "" -"Make sure all your printers are turned ON and connected to Digital Factory." +msgid "Make sure all your printers are turned ON and connected to Digital Factory." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:417 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433 msgctxt "@button" msgid "Refresh List" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473 msgctxt "@button" msgid "Try again" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:461 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Done" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:606 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622 msgctxt "@button" msgid "Sync" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535 msgctxt "@button" msgid "Syncing" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553 msgctxt "@title:header" msgid "No printers found" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574 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." +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 "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:569 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585 msgctxt "@button" msgid "Learn how to connect your printer to Digital Factory" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:597 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613 msgctxt "@button" msgid "Refresh" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642 msgctxt "@title:header" msgid "Sync material profiles via USB" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:632 -msgctxt "" -"@text In the UI this is followed by a list of steps the user needs to take." -msgid "" -"Follow the following steps to load the new material profiles to your printer." +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648 +msgctxt "@text In the UI this is followed by a list of steps the user needs to take." +msgid "Follow the following steps to load the new material profiles to your printer." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 msgctxt "@text" msgid "Click the export material archive button." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 msgctxt "@text" -msgid "" -"Insert the USB stick into your printer and launch the procedure to load new " -"material profiles." +msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:673 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689 msgctxt "@button" msgid "How to load new material profiles to my printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:687 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 msgctxt "@button" msgid "Back" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Export material archive" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747 msgctxt "@title:window" msgid "Export All Materials" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121 +#: resources/qml/Preferences/Materials/MaterialsView.qml:121 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122 +#: resources/qml/Preferences/Materials/MaterialsView.qml:122 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?" +msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152 +#: resources/qml/Preferences/Materials/MaterialsView.qml:152 msgctxt "@label" msgid "Display Name" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 +#: resources/qml/Preferences/Materials/MaterialsView.qml:171 msgctxt "@label" msgid "Brand" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190 +#: resources/qml/Preferences/Materials/MaterialsView.qml:190 msgctxt "@label" msgid "Material Type" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +#: resources/qml/Preferences/Materials/MaterialsView.qml:210 msgctxt "@label" msgid "Color" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:262 +#: resources/qml/Preferences/Materials/MaterialsView.qml:262 msgctxt "@title" msgid "Material color picker" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:275 +#: resources/qml/Preferences/Materials/MaterialsView.qml:275 msgctxt "@label" msgid "Properties" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +#: resources/qml/Preferences/Materials/MaterialsView.qml:286 msgctxt "@label" msgid "Density" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +#: resources/qml/Preferences/Materials/MaterialsView.qml:319 msgctxt "@label" msgid "Diameter" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:369 +#: resources/qml/Preferences/Materials/MaterialsView.qml:369 msgctxt "@label" msgid "Filament Cost" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:401 +#: resources/qml/Preferences/Materials/MaterialsView.qml:401 msgctxt "@label" msgid "Filament weight" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:433 +#: resources/qml/Preferences/Materials/MaterialsView.qml:433 msgctxt "@label" msgid "Filament length" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:451 +#: resources/qml/Preferences/Materials/MaterialsView.qml:451 msgctxt "@label" msgid "Cost per Meter" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:465 +#: resources/qml/Preferences/Materials/MaterialsView.qml:465 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:472 +#: resources/qml/Preferences/Materials/MaterialsView.qml:472 msgctxt "@label" msgid "Unlink Material" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +#: resources/qml/Preferences/Materials/MaterialsView.qml:485 msgctxt "@label" msgid "Description" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:503 +#: resources/qml/Preferences/Materials/MaterialsView.qml:503 msgctxt "@label" msgid "Adhesion Information" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642 +#: resources/qml/Preferences/Materials/MaterialsView.qml:642 msgctxt "@title" msgid "Information" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:647 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:82 +#: resources/qml/Preferences/Materials/MaterialsView.qml:647 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 msgctxt "@label" msgid "Print settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:59 +#: resources/qml/Preferences/ProfilesPage.qml:59 msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:98 +#: resources/qml/Preferences/ProfilesPage.qml:98 msgctxt "@action:tooltip" msgid "Create new profile from current settings/overrides" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:125 +#: resources/qml/Preferences/ProfilesPage.qml:125 msgctxt "@action:label" msgid "Some settings from current profile were overwritten." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:140 +#: resources/qml/Preferences/ProfilesPage.qml:140 msgctxt "@action:button" msgid "Update profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:143 +#: resources/qml/Preferences/ProfilesPage.qml:143 msgctxt "@action:tooltip" msgid "Update profile with current settings/overrides" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:148 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256 +#: resources/qml/Preferences/ProfilesPage.qml:148 msgctxt "@action:button" msgid "Discard current changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:158 +#: resources/qml/Preferences/ProfilesPage.qml:158 msgctxt "@action:label" -msgid "" -"This profile uses the defaults specified by the printer, so it has no " -"settings/overrides in the list below." +msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:165 +#: resources/qml/Preferences/ProfilesPage.qml:165 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +#: resources/qml/Preferences/ProfilesPage.qml:175 msgctxt "@title:tab" msgid "Global Settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: resources/qml/Preferences/ProfilesPage.qml:278 msgctxt "@title:window" msgid "Create Profile" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:280 +#: resources/qml/Preferences/ProfilesPage.qml:280 msgctxt "@info" msgid "Please provide a name for this profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:368 +#: resources/qml/Preferences/ProfilesPage.qml:352 +#: resources/qml/Preferences/ProfilesPage.qml:368 msgctxt "@title:window" msgid "Export Profile" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +#: resources/qml/Preferences/ProfilesPage.qml:382 msgctxt "@title:window" msgid "Duplicate Profile" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:409 +#: resources/qml/Preferences/ProfilesPage.qml:409 msgctxt "@title:window" msgid "Rename Profile" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:422 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:429 +#: resources/qml/Preferences/ProfilesPage.qml:422 +#: resources/qml/Preferences/ProfilesPage.qml:429 msgctxt "@title:window" msgid "Import Profile" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:22 -msgctxt "@title:window" -msgid "Rename" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:23 -msgctxt "@info" -msgid "Please provide a new name." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56 +#: resources/qml/Preferences/SettingVisibilityItem.qml:56 msgctxt "@item:tooltip" -msgid "" -"This setting has been hidden by the active machine and will not be visible." +msgid "This setting has been hidden by the active machine and will not be visible." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73 +#: resources/qml/Preferences/SettingVisibilityItem.qml:73 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." +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] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13 +#: resources/qml/Preferences/SettingVisibilityPage.qml:13 msgctxt "@title:tab" msgid "Setting Visibility" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 +#: resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" msgid "Check all" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 -msgctxt "@label" -msgid "Extruder" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70 -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." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263 -msgctxt "@button" -msgid "Pre-heat" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297 -msgctxt "@tooltip of pre-heat" -msgid "" -"Heat the hotend in advance before printing. You can continue adjusting your " -"print while it is heating, and you won't have to wait for the hotend to heat " -"up when you're ready to print." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -msgctxt "@label" -msgid "Build plate" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55 -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 "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286 -msgctxt "@tooltip of pre-heat" -msgid "" -"Heat the bed in advance before printing. You can continue adjusting your " -"print while it is heating, and you won't have to wait for the bed to heat up " -"when you're ready to print." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51 -msgctxt "@label" -msgid "Printer control" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66 -msgctxt "@label" -msgid "Jog Position" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82 -msgctxt "@label" -msgid "X/Y" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162 -msgctxt "@label" -msgid "Z" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217 -msgctxt "@label" -msgid "Jog Distance" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Send G-code" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319 -msgctxt "@tooltip of G-code command input" -msgid "" -"Send a custom G-code command to the connected printer. Press 'enter' to send " -"the command." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "" -"The cloud printer is offline. Please check if the printer is turned on and " -"connected to the internet." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "" -"This printer is not linked to your account. Please visit the Ultimaker " -"Digital Factory to establish a connection." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "" -"The cloud connection is currently unavailable. Please sign in to connect to " -"the cloud printer." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "" -"The cloud connection is currently unavailable. Please check your internet " -"connection." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:235 -msgctxt "@button" -msgid "Add printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Manage printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Active print" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Job Name" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +#: resources/qml/PrintMonitor.qml:172 msgctxt "@label" msgid "Printing Time" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +#: resources/qml/PrintMonitor.qml:180 msgctxt "@label" msgid "Estimated time left" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 msgctxt "@label" msgid "Profile" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136 msgctxt "@tooltip" msgid "" -"Some setting/override values are different from the values stored in the " -"profile.\n" +"Some setting/override values are different from the values stored in the profile.\n" "\n" "Click to open the profile manager." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 +#: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 msgctxt "@label:header" msgid "Custom profiles" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 msgctxt "@label shown when we load a Gcode file" msgid "Print setup disabled. G-code file can not be modified." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:179 msgctxt "@button" msgid "Recommended" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156 -msgctxt "@button" -msgid "Custom" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 msgctxt "@label:Should be short" msgid "On" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 msgctxt "@label:Should be short" msgid "Off" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is active and you overwrote some settings." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:54 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is overriding some settings." +msgstr "" + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92 +msgctxt "@info %1 is the name of a profile" +msgid "Recommended settings (for %1) were altered." +msgstr "" + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106 +msgctxt "@info %1 is the name of a profile" +msgid "Some setting-values defined in %1 were overridden." +msgstr "" + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137 msgctxt "@info" -msgid "custom profile is active and you overwrote some settings." +msgid "Reset to defaults." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178 msgctxt "@info" -msgid "custom profile is overriding some settings." +msgid "Compare and save." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 -msgctxt "@info" -msgid "Some settings were changed." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15 msgctxt "@label" msgid "Adhesion" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20 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." +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 "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:198 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102 msgctxt "@label" -msgid "Gradual infill" +msgid "Recommended print settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:236 -msgctxt "@label" -msgid "" -"Gradual infill will gradually increase the amount of infill towards the top." +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111 +msgctxt "@button" +msgid "Show Custom" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27 msgctxt "@label" msgid "Resolution" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16 +msgctxt "@label" +msgid "Strength" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20 +msgctxt "@label" +msgid "The following settings define the strength of your part." +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34 +msgctxt "infill_sparse_density description" +msgid "Infill Density" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35 +msgctxt "@label" +msgid "Adjusts the density of infill of the print." +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54 +msgctxt "@action:label" +msgid "Infill Pattern" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56 +msgctxt "@label" +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 "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67 +msgctxt "@action:label" +msgid "Shell Thickness" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68 +msgctxt "@label" +msgid "Defines the thickness of your part side walls, roof and floor." +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16 msgctxt "@label" msgid "Support" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21 msgctxt "@label" -msgid "" -"Generate structures to support parts of the model which have overhangs. " -"Without these structures, such parts would collapse during printing." +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40 +msgctxt "@action:label" +msgid "Support Type" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41 +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 "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53 +msgctxt "@action:label" +msgid "Print with" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54 +msgctxt "@label" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67 +msgctxt "@action:label" +msgid "Placement" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68 +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 "" + +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 msgctxt "@error" msgid "Configuration not supported" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." -msgid "" -"No profiles are available for the selected material/%1 configuration. Please " -"change your configuration." +msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 msgctxt "@button:label" msgid "Learn more" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +#: resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:70 +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." +msgstr "" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:105 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:182 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:271 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:259 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:274 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:263 +msgctxt "@button" +msgid "Pre-heat" +msgstr "" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:297 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:335 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:367 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:400 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:25 +msgctxt "@label" +msgid "Build plate" +msgstr "" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:55 +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 "" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:162 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:286 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:51 +msgctxt "@label" +msgid "Printer control" +msgstr "" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:66 +msgctxt "@label" +msgid "Jog Position" +msgstr "" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:82 +msgctxt "@label" +msgid "X/Y" +msgstr "" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:162 +msgctxt "@label" +msgid "Z" +msgstr "" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:217 +msgctxt "@label" +msgid "Jog Distance" +msgstr "" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Send G-code" +msgstr "" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:319 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "" + +#: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "" + +#: resources/qml/PrinterSelector/MachineListButton.qml:34 +msgctxt "@label" +msgid "Hide all connected printers" +msgstr "" + +#: resources/qml/PrinterSelector/MachineListButton.qml:47 +msgctxt "@label" +msgid "Show all connected printers" +msgstr "" + +#: resources/qml/PrinterSelector/MachineSelector.qml:64 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "" + +#: resources/qml/PrinterSelector/MachineSelector.qml:68 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "" + +#: resources/qml/PrinterSelector/MachineSelector.qml:73 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "" + +#: resources/qml/PrinterSelector/MachineSelector.qml:78 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "" + +#: resources/qml/PrinterSelector/MachineSelectorList.qml:30 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:32 +msgctxt "@label" +msgid "Other printers" +msgstr "" + +#: resources/qml/ProfileOverview.qml:36 msgctxt "@title:column" msgid "Setting" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +#: resources/qml/ProfileOverview.qml:37 msgctxt "@title:column" msgid "Profile" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +#: resources/qml/ProfileOverview.qml:38 msgctxt "@title:column" msgid "Current" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +#: resources/qml/ProfileOverview.qml:39 msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +#: resources/qml/SearchBar.qml:17 msgctxt "@placeholder" msgid "Search" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 +#: resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" -"Some hidden settings use values different from their normal calculated " -"value.\n" +"Some hidden settings use values different from their normal calculated value.\n" "\n" "Click to make these settings visible." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 +#: resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" -msgid "" -"This setting is not used because all the settings that it influences are " -"overridden." +msgid "This setting is not used because all the settings that it influences are overridden." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +#: resources/qml/Settings/SettingItem.qml:89 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +#: resources/qml/Settings/SettingItem.qml:94 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:190 +#: resources/qml/Settings/SettingItem.qml:196 msgctxt "@label" -msgid "" -"This setting is always shared between all extruders. Changing it here will " -"change the value for all extruders." +msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +#: resources/qml/Settings/SettingItem.qml:200 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +#: resources/qml/Settings/SettingItem.qml:240 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5992,956 +5919,978 @@ msgid "" "Click to restore the value of the profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:334 +#: resources/qml/Settings/SettingItem.qml:340 msgctxt "@label" msgid "" -"This setting is normally calculated, but it currently has an absolute value " -"set.\n" +"This setting is normally calculated, but it currently has an absolute value set.\n" "\n" "Click to restore the calculated value." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +#: resources/qml/Settings/SettingView.qml:48 msgctxt "@label:textbox" msgid "Search settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:395 +#: resources/qml/Settings/SettingView.qml:395 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:404 +#: resources/qml/Settings/SettingView.qml:404 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:440 +#: resources/qml/Settings/SettingView.qml:440 msgctxt "@action:menu" msgid "Hide this setting" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:453 +#: resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:457 +#: resources/qml/Settings/SettingView.qml:457 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +#: resources/qml/Toolbar.qml:142 +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" +msgstr[0] "" +msgstr[1] "" + +#: resources/qml/ViewOrientationControls.qml:25 msgctxt "@info:tooltip" msgid "3D View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +#: resources/qml/ViewOrientationControls.qml:38 msgctxt "@info:tooltip" msgid "Front View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +#: resources/qml/ViewOrientationControls.qml:51 msgctxt "@info:tooltip" msgid "Top View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +#: resources/qml/ViewOrientationControls.qml:64 msgctxt "@info:tooltip" msgid "Left View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +#: resources/qml/ViewOrientationControls.qml:77 msgctxt "@info:tooltip" msgid "Right View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: resources/qml/ViewsSelector.qml:50 msgctxt "@label" msgid "View type" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:47 msgctxt "@label" msgid "Add a Cloud printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:73 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:73 msgctxt "@label" msgid "Waiting for Cloud response" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:83 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:83 msgctxt "@label" msgid "No printers found in your account?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:117 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:117 msgctxt "@label" msgid "The following printers in your account have been added in Cura:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:186 msgctxt "@button" msgid "Add printer manually" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 msgctxt "@label" msgid "Manufacturer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Profile author" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 msgctxt "@label" msgid "Printer name" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 msgctxt "@text" msgid "Please name your printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:38 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:87 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 msgctxt "@label" msgid "There is no printer found over your network." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 msgctxt "@label" msgid "Refresh" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 msgctxt "@label" msgid "Add printer by IP" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205 msgctxt "@label" msgid "Troubleshooting" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 msgctxt "@label" msgid "Add printer by IP address" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 msgctxt "@text" msgid "Enter your printer's IP address." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 msgctxt "@button" msgid "Add" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 msgctxt "@label" msgid "Could not connect to device." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" +msgid "Can't connect to your UltiMaker printer?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 msgctxt "@label" msgid "The printer at this address has not responded yet." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 msgctxt "@label" -msgid "" -"This printer cannot be added because it's an unknown printer or it's not the " -"host of a group." +msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 msgctxt "@button" msgid "Connect" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102 +msgctxt "@button" +msgid "Add UltiMaker printer via Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "In order to start using Cura you will need to configure a printer." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36 +msgctxt "@label" +msgid "What printer would you like to setup?" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55 +msgctxt "@button" +msgid "UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64 +msgctxt "@button" +msgid "Non UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73 +msgctxt "@button" +msgid "Learn more about adding printers to Cura" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29 +msgctxt "@label" +msgid "Add printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33 +msgctxt "@label" +msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70 +msgctxt "@label" +msgid "If you are trying to add a new UltiMaker printer to Cura" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80 +msgctxt "@info" +msgid "Sign in into UltiMaker Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81 +msgctxt "@info" +msgid "Follow the procedure to add a new printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82 +msgctxt "@info" +msgid "Your new printer will automatically appear in Cura" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100 +msgctxt "@button" +msgid "Learn more" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121 +msgctxt "@button" +msgid "Add local printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129 +msgctxt "@button" +msgid "Sign in to Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133 +msgctxt "@button" +msgid "Waiting for new printers" +msgstr "" + +#: resources/qml/WelcomePages/ChangelogContent.qml:24 msgctxt "@label" msgid "Release Notes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:123 +#: resources/qml/WelcomePages/CloudContent.qml:123 msgctxt "@text" msgid "Add material settings and plugins from the Marketplace" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:149 +#: resources/qml/WelcomePages/CloudContent.qml:149 msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:175 +#: resources/qml/WelcomePages/CloudContent.qml:175 msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +#: resources/qml/WelcomePages/CloudContent.qml:189 msgctxt "@button" msgid "Skip" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +#: resources/qml/WelcomePages/CloudContent.qml:201 msgctxt "@text" -msgid "Create a free Ultimaker Account" +msgid "Create a free UltiMaker Account" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:56 -msgctxt "@text" -msgid "" -"Ultimaker Cura collects anonymous data to improve print quality and user " -"experience, including:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:68 -msgctxt "@text" -msgid "Machine types" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:74 -msgctxt "@text" -msgid "Material usage" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:80 -msgctxt "@text" -msgid "Number of slices" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:86 -msgctxt "@text" -msgid "Print settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:99 -msgctxt "@text" -msgid "" -"Data collected by Ultimaker Cura will not contain any personal information." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:100 -msgctxt "@text" -msgid "More information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +#: resources/qml/WelcomePages/DropDownWidget.qml:93 msgctxt "@label" msgid "Empty" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +#: resources/qml/WelcomePages/UserAgreementContent.qml:23 msgctxt "@label" msgid "User Agreement" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67 +#: resources/qml/WelcomePages/UserAgreementContent.qml:67 msgctxt "@button" msgid "Decline and close" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:67 -msgctxt "@text" -msgid "" -"Please follow these steps to set up Ultimaker Cura. This will only take a " -"few moments." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:82 -msgctxt "@button" -msgid "Get started" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: resources/qml/WelcomePages/WhatsNewContent.qml:28 msgctxt "@label" msgid "What's New" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: resources/qml/Widgets/ComboBox.qml:18 msgctxt "@label" msgid "No items to select from" msgstr "" - -#: ModelChecker/plugin.json -msgctxt "description" -msgid "" -"Checks models and print configuration for possible printing issues and give " -"suggestions." -msgstr "" - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "" - -#: 3MFReader/plugin.json +#: plugins/3MFReader/plugin.json msgctxt "description" msgid "Provides support for reading 3MF files." msgstr "" -#: 3MFReader/plugin.json +#: plugins/3MFReader/plugin.json msgctxt "name" msgid "3MF Reader" msgstr "" -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "" - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "" - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "" - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "" - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "" - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "" - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "" -"Connects to the Digital Library, allowing Cura to open files from and save " -"files to the Digital Library." -msgstr "" - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "" - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "" - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "" - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "" - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "" - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "" - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "" - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "" - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "" -"Provides a way to change machine settings (such as build volume, nozzle " -"size, etc.)." -msgstr "" - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "" - -#: Marketplace/plugin.json -msgctxt "description" -msgid "" -"Manages extensions to the application and allows browsing extensions from " -"the Ultimaker website." -msgstr "" - -#: Marketplace/plugin.json -msgctxt "name" -msgid "Marketplace" -msgstr "" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "" - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "" - -#: PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "" - -#: PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "" - -#: PostProcessingPlugin/plugin.json +#: plugins/PostProcessingPlugin/plugin.json msgctxt "description" msgid "Extension that allows for user created scripts for post processing" msgstr "" -#: PostProcessingPlugin/plugin.json +#: plugins/PostProcessingPlugin/plugin.json msgctxt "name" msgid "Post Processing" msgstr "" -#: PrepareStage/plugin.json +#: plugins/CuraDrive/plugin.json msgctxt "description" -msgid "Provides a prepare stage in Cura." +msgid "Backup and restore your configuration." msgstr "" -#: PrepareStage/plugin.json +#: plugins/CuraDrive/plugin.json msgctxt "name" -msgid "Prepare Stage" +msgid "Cura Backups" msgstr "" -#: PreviewStage/plugin.json +#: plugins/DigitalLibrary/plugin.json msgctxt "description" -msgid "Provides a preview stage in Cura." +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." msgstr "" -#: PreviewStage/plugin.json +#: plugins/DigitalLibrary/plugin.json msgctxt "name" -msgid "Preview Stage" +msgid "Ultimaker Digital Library" msgstr "" -#: RemovableDriveOutputDevice/plugin.json +#: plugins/FirmwareUpdateChecker/plugin.json msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." +msgid "Checks for firmware updates." msgstr "" -#: RemovableDriveOutputDevice/plugin.json +#: plugins/FirmwareUpdateChecker/plugin.json msgctxt "name" -msgid "Removable Drive Output Device Plugin" +msgid "Firmware Update Checker" msgstr "" -#: SentryLogger/plugin.json +#: plugins/MachineSettingsAction/plugin.json msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." msgstr "" -#: SentryLogger/plugin.json +#: plugins/MachineSettingsAction/plugin.json msgctxt "name" -msgid "Sentry Logger" +msgid "Machine Settings Action" msgstr "" -#: SimulationView/plugin.json +#: plugins/ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "" + +#: plugins/ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "" + +#: plugins/Marketplace/plugin.json +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "" + +#: plugins/Marketplace/plugin.json +msgctxt "name" +msgid "Marketplace" +msgstr "" + +#: plugins/SimulationView/plugin.json msgctxt "description" msgid "Provides the preview of sliced layerdata." msgstr "" -#: SimulationView/plugin.json +#: plugins/SimulationView/plugin.json msgctxt "name" msgid "Simulation View" msgstr "" -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "" - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "" - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "" - -#: SupportEraser/plugin.json -msgctxt "description" -msgid "" -"Creates an eraser mesh to block the printing of support in certain places" -msgstr "" - -#: SupportEraser/plugin.json -msgctxt "name" -msgid "Support Eraser" -msgstr "" - -#: TrimeshReader/plugin.json -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "" - -#: TrimeshReader/plugin.json -msgctxt "name" -msgid "Trimesh Reader" -msgstr "" - -#: UFPReader/plugin.json -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "" - -#: UFPReader/plugin.json -msgctxt "name" -msgid "UFP Reader" -msgstr "" - -#: UFPWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "" - -#: UFPWriter/plugin.json -msgctxt "name" -msgid "UFP Writer" -msgstr "" - -#: UltimakerMachineActions/plugin.json -msgctxt "description" -msgid "" -"Provides machine actions for Ultimaker machines (such as bed leveling " -"wizard, selecting upgrades, etc.)." -msgstr "" - -#: UltimakerMachineActions/plugin.json -msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "" - -#: UM3NetworkPrinting/plugin.json -msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "" - -#: UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "" - -#: USBPrinting/plugin.json -msgctxt "description" -msgid "" -"Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "" - -#: USBPrinting/plugin.json -msgctxt "name" -msgid "USB printing" -msgstr "" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "" - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "" - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "" - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "" - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "" - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "" - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "" - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "" - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "" - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "" - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "" - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "" - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "" - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "" - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "" - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "" - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "" - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "" - -#: XmlMaterialProfile/plugin.json +#: plugins/XmlMaterialProfile/plugin.json msgctxt "description" msgid "Provides capabilities to read and write XML-based material profiles." msgstr "" -#: XmlMaterialProfile/plugin.json +#: plugins/XmlMaterialProfile/plugin.json msgctxt "name" msgid "Material Profiles" msgstr "" -#: XRayView/plugin.json +#: plugins/FirmwareUpdater/plugin.json +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "name" +msgid "Firmware Updater" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "" + +#: plugins/X3DReader/plugin.json +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "" + +#: plugins/X3DReader/plugin.json +msgctxt "name" +msgid "X3D Reader" +msgstr "" + +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "" + +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "" + +#: plugins/MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "" + +#: plugins/MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "" + +#: plugins/SupportEraser/plugin.json +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "" + +#: plugins/SupportEraser/plugin.json +msgctxt "name" +msgid "Support Eraser" +msgstr "" + +#: plugins/PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "" + +#: plugins/PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "" + +#: plugins/GCodeReader/plugin.json +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "" + +#: plugins/GCodeReader/plugin.json +msgctxt "name" +msgid "G-code Reader" +msgstr "" + +#: plugins/3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "" + +#: plugins/3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "" + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "" + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "" + +#: plugins/GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "" + +#: plugins/GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "" + +#: plugins/UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "" + +#: plugins/UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "" + +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "" + +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "" + +#: plugins/SentryLogger/plugin.json +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "" + +#: plugins/SentryLogger/plugin.json +msgctxt "name" +msgid "Sentry Logger" +msgstr "" + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "" + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "" + +#: plugins/UFPWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "" + +#: plugins/UFPWriter/plugin.json +msgctxt "name" +msgid "UFP Writer" +msgstr "" + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "" + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "" + +#: plugins/AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "" + +#: plugins/AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "" + +#: plugins/USBPrinting/plugin.json +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "" + +#: plugins/USBPrinting/plugin.json +msgctxt "name" +msgid "USB printing" +msgstr "" + +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "" + +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "" + +#: plugins/ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "" + +#: plugins/ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "" + +#: plugins/SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "" + +#: plugins/SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "" + +#: plugins/TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "" + +#: plugins/TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "" + +#: plugins/PrepareStage/plugin.json +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "" + +#: plugins/PrepareStage/plugin.json +msgctxt "name" +msgid "Prepare Stage" +msgstr "" + +#: plugins/XRayView/plugin.json msgctxt "description" msgid "Provides the X-Ray view." msgstr "" -#: XRayView/plugin.json +#: plugins/XRayView/plugin.json msgctxt "name" msgid "X-Ray View" msgstr "" + diff --git a/resources/i18n/de_DE/cura.po b/resources/i18n/de_DE/cura.po index 1136320350..6f6c33f0fb 100644 --- a/resources/i18n/de_DE/cura.po +++ b/resources/i18n/de_DE/cura.po @@ -1,12 +1,14 @@ # Cura -# Copyright (C) 2022 Ultimaker B.V. +# Copyright (C) 2022 UltiMaker. # This file is distributed under the same license as the Cura package. +# UltiMaker , 2022. # +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0200\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-04-06 15:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,236 +18,114 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -msgctxt "@label" -msgid "Unknown" -msgstr "Unbekannt" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "Der/die nachfolgende(n) Drucker kann/können nicht verbunden werden, weil er/sie Teil einer Gruppe ist/sind" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Verfügbare vernetzte Drucker" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Nicht überschrieben" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Connected printers" -msgstr "Verbundene Drucker" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Preset printers" -msgstr "Voreingestellte Drucker" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:143 -#, 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 "Möchten Sie {0} wirklich entfernen? Der Vorgang kann nicht rückgängig gemacht werden!" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:61 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 -msgctxt "@label" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:65 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Visuell" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:66 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "Das visuelle Profil wurde für den Druck visueller Prototypen und Modellen entwickelt, bei denen das Ziel eine hohe visuelle Qualität und eine hohe Oberflächenqualität ist." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:70 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "Das Engineering-Profil ist für den Druck von Funktionsprototypen und Endnutzungsteilen gedacht, bei denen Präzision gefragt ist und engere Toleranzen gelten." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:75 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Entwurf" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:76 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "Das Entwurfsprofil wurde für erste Prototypen und die Konzeptvalidierung entwickelt, um einen deutlich schnelleren Druck zu ermöglichen." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:232 -msgctxt "@label" -msgid "Custom Material" -msgstr "Benutzerdefiniertes Material" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:233 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 -msgctxt "@label" -msgid "Custom" -msgstr "Benutzerdefiniert" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:391 -msgctxt "@label" -msgid "Custom profiles" -msgstr "Benutzerdefinierte Profile" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:426 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Alle unterstützten Typen ({0})" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Alle Dateien (*)" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Berechnet" - -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 +#: cura/API/Account.py:199 msgctxt "@info:title" msgid "Login failed" msgstr "Login fehlgeschlagen" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: cura/Arranging/ArrangeObjectsJob.py:25 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Neue Position für Objekte finden" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: cura/Arranging/ArrangeObjectsJob.py:29 msgctxt "@info:title" msgid "Finding Location" msgstr "Position finden" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Innerhalb der Druckabmessung für alle Objekte konnte keine Position gefunden werden" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: cura/Arranging/ArrangeObjectsJob.py:43 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Kann Position nicht finden" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:115 +#: cura/Backups/Backup.py:115 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Konnte kein Archiv von Benutzer-Datenverzeichnis {} erstellen" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:159 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +#: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159 +#: plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: plugins/CuraDrive/src/DrivePluginExtension.py:126 msgctxt "@info:title" msgid "Backup" msgstr "Backup" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:134 +#: cura/Backups/Backup.py:134 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." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:145 +#: cura/Backups/Backup.py:145 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that is higher than the current version." msgstr "Versucht, ein Cura-Backup wiederherzustellen, das eine höhere Version als die aktuelle hat." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:158 +#: cura/Backups/Backup.py:158 msgctxt "@info:backup_failed" msgid "The following error occurred while trying to restore a Cura backup:" msgstr "Beim Versuch, ein Backup von Cura wiederherzustellen, trat der folgende Fehler auf:" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: cura/BuildVolume.py:100 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." msgstr "Die Höhe der Druckabmessung wurde aufgrund des Wertes der Einstellung „Druckreihenfolge“ reduziert, um eine Kollision der Brücke mit den gedruckten Modellen zu verhindern." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 +#: cura/BuildVolume.py:103 msgctxt "@info:title" msgid "Build Volume" msgstr "Produktabmessungen" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura kann nicht starten" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" -"

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

    \n" +"

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

    Hoppla, bei Ultimaker Cura ist ein Problem aufgetreten.

    \n" +"

    Hoppla, bei UltiMaker Cura ist ein Problem aufgetreten.

    \n" "

    Beim Start ist ein nicht behebbarer Fehler aufgetreten. Er wurde möglicherweise durch einige falsche Konfigurationsdateien verursacht. Wir empfehlen ein Backup und Reset Ihrer Konfiguration.

    \n" "

    Backups sind im Konfigurationsordner abgelegt.

    \n" "

    Senden Sie uns diesen Absturzbericht bitte, um das Problem zu beheben.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: cura/CrashHandler.py:122 msgctxt "@action:button" -msgid "Send crash report to Ultimaker" -msgstr "Absturzbericht an Ultimaker senden" +msgid "Send crash report to UltiMaker" +msgstr "Absturzbericht an UltiMaker senden" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Detaillierten Absturzbericht anzeigen" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Konfigurationsordner anzeigen" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Backup und Reset der Konfiguration" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Crash-Bericht" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

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

    \n" @@ -256,573 +136,2241 @@ msgstr "" "

    Verwenden Sie bitte die Schaltfläche „Bericht senden“, um den Fehlerbericht automatisch an unsere Server zu senden

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Systeminformationen" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Unbekannt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura-Version" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Cura-Sprache" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Sprache des Betriebssystems" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Plattform" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qt Version" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQt Version" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized" -msgstr "" +msgstr "Noch nicht initialisiert" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL-Version: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL-Anbieter: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL-Renderer: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 +#: cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Fehler-Rückverfolgung" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 +#: cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Protokolle" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 +#: cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Bericht senden" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:531 +#: cura/CuraApplication.py:540 msgctxt "@info:progress" msgid "Loading machines..." msgstr "Geräte werden geladen..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +#: cura/CuraApplication.py:547 msgctxt "@info:progress" msgid "Setting up preferences..." msgstr "Erstellungen werden eingerichtet ..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +#: cura/CuraApplication.py:692 msgctxt "@info:progress" msgid "Initializing Active Machine..." msgstr "Aktives Gerät wird initialisiert ..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +#: cura/CuraApplication.py:839 msgctxt "@info:progress" msgid "Initializing machine manager..." msgstr "Gerätemanager wird initialisiert ..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +#: cura/CuraApplication.py:853 msgctxt "@info:progress" msgid "Initializing build volume..." msgstr "Bauraum wird initialisiert ..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +#: cura/CuraApplication.py:921 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "Die Szene wird eingerichtet..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +#: cura/CuraApplication.py:957 msgctxt "@info:progress" msgid "Loading interface..." msgstr "Die Benutzeroberfläche wird geladen..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +#: cura/CuraApplication.py:962 msgctxt "@info:progress" msgid "Initializing engine..." msgstr "Funktion wird initialisiert ..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#: cura/CuraApplication.py:1290 #, 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" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1798 +#: cura/CuraApplication.py:1816 #, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Es kann nur jeweils ein G-Code gleichzeitig geladen werden. Wichtige {0} werden übersprungen." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 +#: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 msgctxt "@info:title" msgid "Warning" msgstr "Warnhinweis" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#: cura/CuraApplication.py:1828 #, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "Wenn G-Code geladen wird, kann keine weitere Datei geöffnet werden. Wichtige {0} werden übersprungen." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1812 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156 +#: cura/Settings/CuraContainerRegistry.py:166 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 msgctxt "@info:title" msgid "Error" msgstr "Fehler" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 +#: cura/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Unbekannt" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "Der/die nachfolgende(n) Drucker kann/können nicht verbunden werden, weil er/sie Teil einer Gruppe ist/sind" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Verfügbare vernetzte Drucker" + +#: cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Nicht überschrieben" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:28 +msgctxt "@label" +msgid "Connected printers" +msgstr "Verbundene Drucker" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +msgctxt "@label" +msgid "Preset printers" +msgstr "Voreingestellte Drucker" + +#: cura/Machines/Models/GlobalStacksModel.py:165 +#, 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 "Möchten Sie {0} wirklich entfernen? Der Vorgang kann nicht rückgängig gemacht werden!" + +#: cura/Machines/Models/IntentCategoryModel.py:42 +#: cura/Machines/Models/IntentSelectionModel.py:61 +#: cura/Machines/Models/IntentTranslations.py:11 +#: cura/Machines/Models/QualityManagementModel.py:347 +msgctxt "@label" +msgid "Default" +msgstr "Default" + +#: cura/Machines/Models/IntentCategoryModel.py:45 +#: cura/Machines/Models/IntentSelectionModel.py:65 +#: cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "Visuell" + +#: cura/Machines/Models/IntentCategoryModel.py:46 +#: cura/Machines/Models/IntentSelectionModel.py:66 +#: cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "Das visuelle Profil wurde für den Druck visueller Prototypen und Modellen entwickelt, bei denen das Ziel eine hohe visuelle Qualität und eine hohe Oberflächenqualität ist." + +#: cura/Machines/Models/IntentCategoryModel.py:49 +#: cura/Machines/Models/IntentSelectionModel.py:70 +#: cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "Engineering" + +#: cura/Machines/Models/IntentCategoryModel.py:50 +#: cura/Machines/Models/IntentSelectionModel.py:71 +#: cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "Das Engineering-Profil ist für den Druck von Funktionsprototypen und Endnutzungsteilen gedacht, bei denen Präzision gefragt ist und engere Toleranzen gelten." + +#: cura/Machines/Models/IntentCategoryModel.py:53 +#: cura/Machines/Models/IntentSelectionModel.py:75 +#: cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "Entwurf" + +#: cura/Machines/Models/IntentCategoryModel.py:54 +#: cura/Machines/Models/IntentSelectionModel.py:76 +#: cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "Das Entwurfsprofil wurde für erste Prototypen und die Konzeptvalidierung entwickelt, um einen deutlich schnelleren Druck zu ermöglichen." + +#: cura/Machines/Models/MaterialManagementModel.py:232 +msgctxt "@label" +msgid "Custom Material" +msgstr "Benutzerdefiniertes Material" + +#: cura/Machines/Models/MaterialManagementModel.py:233 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 +msgctxt "@label" +msgid "Custom" +msgstr "Benutzerdefiniert" + +#: cura/Machines/Models/QualityManagementModel.py:400 +msgctxt "@label" +msgid "Custom profiles" +msgstr "Benutzerdefinierte Profile" + +#: cura/Machines/Models/QualityManagementModel.py:435 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Alle unterstützten Typen ({0})" + +#: cura/Machines/Models/QualityManagementModel.py:436 +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Alle Dateien (*)" + +#: cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Berechnet" + +#: cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Objekte vervielfältigen und platzieren" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 +#: cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "Objekte platzieren" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 +#: cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Objekt-Platzierung" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +#: cura/OAuth2/AuthorizationHelpers.py:89 msgctxt "@message" msgid "Could not read response." msgstr "Antwort konnte nicht gelesen werden." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +#: cura/OAuth2/AuthorizationRequestHandler.py:75 msgctxt "@message" msgid "The provided state is not correct." msgstr "Angegebener Status ist falsch." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +#: cura/OAuth2/AuthorizationRequestHandler.py:80 msgctxt "@message" msgid "Timeout when authenticating with the account server." msgstr "Zeitüberschreitung bei der Authentifizierung mit dem Kontoserver." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +#: cura/OAuth2/AuthorizationRequestHandler.py:97 msgctxt "@message" msgid "Please give the required permissions when authorizing this application." msgstr "Erteilen Sie bitte die erforderlichen Freigaben bei der Autorisierung dieser Anwendung." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +#: cura/OAuth2/AuthorizationRequestHandler.py:104 msgctxt "@message" msgid "Something unexpected happened when trying to log in, please try again." msgstr "Bei dem Versuch, sich anzumelden, trat ein unerwarteter Fehler auf. Bitte erneut versuchen." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:216 +#: cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Es kann kein neuer Anmeldevorgang gestartet werden. Bitte überprüfen Sie, ob noch ein weiterer Anmeldevorgang aktiv ist." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:277 +#: cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "Der Ultimaker-Konto-Server konnte nicht erreicht werden." +msgid "Unable to reach the UltiMaker account server." +msgstr "Der UltiMaker-Konto-Server konnte nicht erreicht werden." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 +#: cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" msgid "Log-in failed" msgstr "Anmeldung fehlgeschlagen" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +#: cura/PrinterOutput/UploadMaterialsJob.py:104 msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Die Erstellung eines Materialarchivs zur Synchronisierung mit Druckern ist fehlgeschlagen." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +#: cura/PrinterOutput/UploadMaterialsJob.py:111 +#: cura/PrinterOutput/UploadMaterialsJob.py:165 msgctxt "@text:error" msgid "Failed to load the archive of materials to sync it with printers." msgstr "Das Archiv der Materialien konnte nicht geladen werden, um es mit Druckern zu synchronisieren." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +#: cura/PrinterOutput/UploadMaterialsJob.py:143 msgctxt "@text:error" msgid "The response from Digital Factory appears to be corrupted." msgstr "Die Antwort von Digital Factory scheint beschädigt zu sein." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +#: cura/PrinterOutput/UploadMaterialsJob.py:147 +#: cura/PrinterOutput/UploadMaterialsJob.py:151 +#: cura/PrinterOutput/UploadMaterialsJob.py:155 msgctxt "@text:error" msgid "The response from Digital Factory is missing important information." msgstr "In der Antwort von Digital Factory fehlen wichtige Informationen." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +#: cura/PrinterOutput/UploadMaterialsJob.py:218 msgctxt "@text:error" msgid "Failed to connect to Digital Factory to sync materials with some of the printers." msgstr "Die Verbindung mit Digital Factory zum Synchronisieren von Materialien mit einigen Druckern ist fehlgeschlagen." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +#: cura/PrinterOutput/UploadMaterialsJob.py:232 msgctxt "@text:error" msgid "Failed to connect to Digital Factory." msgstr "Es konnte keine Verbindung zu Digital Factory hergestellt werden." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:207 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: cura/Settings/ActiveQuality.py:43 +msgctxt "@label" +msgid "Experimental" +msgstr "Experimentell" + +#: cura/Settings/ContainerManager.py:207 +#: cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "Datei bereits vorhanden" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: cura/Settings/ContainerManager.py:208 +#: cura/Settings/CuraContainerRegistry.py:141 #, 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 "Die Datei {0} ist bereits vorhanden. Soll die Datei wirklich überschrieben werden?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 +#: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "Ungültige Datei-URL:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Export des Profils nach {0} fehlgeschlagen: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Export des Profils nach {0} fehlgeschlagen: Fehlermeldung von Writer-Plugin." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profil wurde nach {0} exportiert" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Export erfolgreich ausgeführt" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Import des Profils aus Datei {0}: {1} fehlgeschlagen" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: cura/Settings/CuraContainerRegistry.py:209 #, 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 "Import des Profils aus Datei {0} kann erst durchgeführt werden, wenn ein Drucker hinzugefügt wurde." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Kein benutzerdefiniertes Profil für das Importieren in Datei {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Import des Profils aus Datei {0} fehlgeschlagen:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: cura/Settings/CuraContainerRegistry.py:252 +#: cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Dieses Profil {0} enthält falsche Daten, Importieren nicht möglich." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Import des Profils aus Datei {0} fehlgeschlagen:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Profil {0} erfolgreich importiert." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Datei {0} enthält kein gültiges Profil." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Profil {0} hat einen unbekannten Dateityp oder ist beschädigt." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Benutzerdefiniertes Profil" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Für das Profil fehlt eine Qualitätsangabe." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Es ist noch kein Drucker aktiv." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Das Profil kann nicht hinzugefügt werden." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "Der Qualitätstyp „{0}“ ist nicht mit der aktuell aktiven Maschinendefinition „{1}“ kompatibel." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: cura/Settings/CuraContainerRegistry.py:488 #, 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 "Warnung: Das Profil wird nicht angezeigt, weil sein Qualitätstyp „{0}“ für die aktuelle Konfiguration nicht verfügbar ist. Wechseln Sie zu einer Material-/Düsenkombination, die mit diesem Qualitätstyp kompatibel ist." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Nicht unterstützt" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:219 +#: cura/Settings/MachineManager.py:746 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:221 msgctxt "@label" msgid "Nozzle" msgstr "Düse" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +#: cura/Settings/MachineManager.py:890 msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Die Einstellungen wurden an die aktuell verfügbaren Extruder angepasst:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: cura/Settings/MachineManager.py:891 msgctxt "@info:title" msgid "Settings updated" msgstr "Einstellungen aktualisiert" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 +#: cura/Settings/MachineManager.py:1514 msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extruder deaktiviert" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 +#: cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Nicht unterstützt" + +#: cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Default" + +#: cura/UI/AddPrinterPagesModel.py:17 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" msgid "Add" msgstr "Hinzufügen" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:290 +#: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290 msgctxt "@action:button" msgid "Finish" msgstr "Beenden" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:508 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:323 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:291 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:74 +#: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386 +#: plugins/ImageReader/ConfigUI.qml:323 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 +#: resources/qml/ColorDialog.qml:143 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: resources/qml/Dialogs/RenameDialog.qml:103 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 msgctxt "@action:button" msgid "Cancel" msgstr "Abbrechen" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: cura/UI/ObjectsModel.py:69 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Gruppe #{group_nr}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 +#: cura/UI/PrintInformation.py:87 msgctxt "@tooltip" msgid "Outer Wall" msgstr "Außenwand" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +#: cura/UI/PrintInformation.py:88 msgctxt "@tooltip" msgid "Inner Walls" msgstr "Innenwände" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +#: cura/UI/PrintInformation.py:89 msgctxt "@tooltip" msgid "Skin" msgstr "Außenhaut" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +#: cura/UI/PrintInformation.py:90 msgctxt "@tooltip" msgid "Infill" msgstr "Füllung" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +#: cura/UI/PrintInformation.py:91 msgctxt "@tooltip" msgid "Support Infill" msgstr "Stützstruktur-Füllung" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +#: cura/UI/PrintInformation.py:92 msgctxt "@tooltip" msgid "Support Interface" msgstr "Stützstruktur-Schnittstelle" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +#: cura/UI/PrintInformation.py:93 msgctxt "@tooltip" msgid "Support" msgstr "Stützstruktur" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +#: cura/UI/PrintInformation.py:94 msgctxt "@tooltip" msgid "Skirt" msgstr "Skirt" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +#: cura/UI/PrintInformation.py:95 msgctxt "@tooltip" msgid "Prime Tower" msgstr "Einzugsturm" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +#: cura/UI/PrintInformation.py:96 msgctxt "@tooltip" msgid "Travel" msgstr "Bewegungen" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +#: cura/UI/PrintInformation.py:97 msgctxt "@tooltip" msgid "Retractions" msgstr "Einzüge" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +#: cura/UI/PrintInformation.py:98 msgctxt "@tooltip" msgid "Other" msgstr "Sonstige" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:63 +#: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63 msgctxt "@text:window" msgid "The release notes could not be opened." msgstr "Die Versionshinweise konnten nicht geöffnet werden." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:277 +#: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277 msgctxt "@action:button" msgid "Next" msgstr "Weiter" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68 msgctxt "@action:button" msgid "Skip" msgstr "Überspringen" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:443 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:186 +#: cura/UI/WhatsNewPagesModel.py:76 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444 +#: resources/qml/Dialogs/AboutDialog.qml:188 msgctxt "@action:button" msgid "Close" msgstr "Schließen" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: cura/UltimakerCloud/CloudMaterialSync.py:66 msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Bitte stimmen Sie die Materialprofile auf Ihre Drucker ab („synchronisieren“), bevor Sie mit dem Drucken beginnen." -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: cura/UltimakerCloud/CloudMaterialSync.py:67 msgctxt "@action:button" msgid "New materials installed" msgstr "Neue Materialien installiert" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: cura/UltimakerCloud/CloudMaterialSync.py:74 msgctxt "@action:button" msgid "Sync materials" msgstr "Materialien synchronisieren" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:397 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:80 +#: cura/UltimakerCloud/CloudMaterialSync.py:82 +#: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80 msgctxt "@action:button" msgid "Learn more" msgstr "Mehr erfahren" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +#: cura/UltimakerCloud/CloudMaterialSync.py:135 msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Materialarchiv konnte nicht in {} gespeichert werden:" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +#: cura/UltimakerCloud/CloudMaterialSync.py:136 msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Speichern des Materialarchivs fehlgeschlagen" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +#: cura/UltimakerCloud/CloudMaterialSync.py:188 msgctxt "@text" msgid "Unknown error." msgstr "Unbekannter Fehler." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:558 +#, 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 "Projektdatei {0} enthält einen unbekannten Maschinentyp {1}. Importieren der Maschine ist nicht möglich. Stattdessen werden die Modelle importiert." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:561 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "Projektdatei öffnen" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: plugins/3MFReader/WorkspaceDialog.qml:99 +#: plugins/3MFReader/WorkspaceDialog.qml:127 +#: plugins/3MFReader/WorkspaceDialog.qml:134 +msgctxt "@button" +msgid "Create new" +msgstr "Neu erstellen" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:692 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "Auf Projektdatei {0} kann plötzlich nicht mehr zugegriffen werden: {1}." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:720 +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "Projektdatei kann nicht geöffnet werden" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:700 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:718 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "Projektdatei {0} ist beschädigt: {1}." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:765 +#, 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 "Projektdatei {0} verwendet Profile, die nicht mit dieser UltiMaker Cura-Version kompatibel sind." + +#: plugins/3MFReader/WorkspaceDialog.py:233 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Empfohlen" + +#: plugins/3MFReader/WorkspaceDialog.py:235 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Benutzerdefiniert" + +#: plugins/3MFReader/WorkspaceDialog.py:411 +msgctxt "@info:status" +msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." +msgstr "Das in diesem Projekt verwendete Material basiert auf einigen Materialdefinitionen, die in Cura nicht verfügbar sind. Dies kann zu unerwünschten Druckergebnissen führen. Wir empfehlen dringend, das komplette Materialpaket aus dem Marketplace zu installieren." + +#: plugins/3MFReader/WorkspaceDialog.py:413 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "Materialprofile nicht installiert" + +#: plugins/3MFReader/WorkspaceDialog.py:426 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "Materialien installieren" + +#: plugins/3MFReader/WorkspaceDialog.qml:15 +msgctxt "@title:window" +msgid "Open Project" +msgstr "Projekt öffnen" + +#: plugins/3MFReader/WorkspaceDialog.qml:31 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61 +msgctxt "@action:title" +msgid "Summary - Cura Project" +msgstr "Zusammenfassung – Cura-Projekt" + +#: plugins/3MFReader/WorkspaceDialog.qml:65 +msgctxt "@action:ComboBox Update/override existing profile" +msgid "Update existing" +msgstr "Vorhandenes aktualisieren" + +#: plugins/3MFReader/WorkspaceDialog.qml:66 +msgctxt "@action:ComboBox Save settings in a new profile" +msgid "Create new" +msgstr "Neu erstellen" + +#: plugins/3MFReader/WorkspaceDialog.qml:83 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97 +msgctxt "@action:label" +msgid "Printer settings" +msgstr "Druckereinstellungen" + +#: plugins/3MFReader/WorkspaceDialog.qml:92 +#: plugins/3MFReader/WorkspaceRow.qml:23 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106 +msgctxt "@action:label" +msgid "Type" +msgstr "Typ" + +#: plugins/3MFReader/WorkspaceDialog.qml:98 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +msgctxt "@action:label" +msgid "Printer Group" +msgstr "Druckergruppe" + +#: plugins/3MFReader/WorkspaceDialog.qml:103 +msgctxt "@action:label" +msgid "Open With" +msgstr "Öffnen" + +#: plugins/3MFReader/WorkspaceDialog.qml:104 +msgctxt "@info:tooltip" +msgid "Printer settings will be updated to match the settings saved with the project." +msgstr "Die Druckereinstellungen werden aktualisiert, sodass sie mit den im Projekt gespeicherten Einstellungen übereinstimmen." + +#: plugins/3MFReader/WorkspaceDialog.qml:156 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222 +msgctxt "@action:label" +msgid "Profile settings" +msgstr "Profileinstellungen" + +#: plugins/3MFReader/WorkspaceDialog.qml:166 +#: plugins/3MFReader/WorkspaceDialog.qml:238 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246 +msgctxt "@action:label" +msgid "Name" +msgstr "Name" + +#: plugins/3MFReader/WorkspaceDialog.qml:172 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263 +msgctxt "@action:label" +msgid "Intent" +msgstr "Intent" + +#: plugins/3MFReader/WorkspaceDialog.qml:178 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230 +msgctxt "@action:label" +msgid "Not in profile" +msgstr "Nicht im Profil" + +#: plugins/3MFReader/WorkspaceDialog.qml:179 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235 +msgctxt "@action:label" +msgid "%1 override" +msgid_plural "%1 overrides" +msgstr[0] "%1 überschreiben" +msgstr[1] "%1 überschreibt" + +#: plugins/3MFReader/WorkspaceDialog.qml:185 +msgctxt "@action:label" +msgid "Derivative from" +msgstr "Ableitung von" + +#: plugins/3MFReader/WorkspaceDialog.qml:186 +msgctxt "@action:label" +msgid "%1, %2 override" +msgid_plural "%1, %2 overrides" +msgstr[0] "%1, %2 überschreiben" +msgstr[1] "%1, %2 überschreibt" + +#: plugins/3MFReader/WorkspaceDialog.qml:226 +msgctxt "@action:label" +msgid "Material settings" +msgstr "Materialeinstellungen" + +#: plugins/3MFReader/WorkspaceDialog.qml:280 +msgctxt "@action:label" +msgid "Setting visibility" +msgstr "Sichtbarkeit einstellen" + +#: plugins/3MFReader/WorkspaceDialog.qml:290 +msgctxt "@action:label" +msgid "Mode" +msgstr "Modus" + +#: plugins/3MFReader/WorkspaceDialog.qml:296 +msgctxt "@action:label" +msgid "%1 out of %2" +msgstr "%1 von %2" + +#: plugins/3MFReader/WorkspaceDialog.qml:321 +msgctxt "@action:warning" +msgid "Loading a project will clear all models on the build plate." +msgstr "Das Laden eines Projekts entfernt alle Modelle von der Druckplatte." + +#: plugins/3MFReader/WorkspaceDialog.qml:367 +msgctxt "@label" +msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." +msgstr "Das in diesem Projekt verwendete Material ist derzeit nicht in Cura installiert.
    Installieren Sie das Materialprofil und öffnen Sie das Projekt erneut." + +#: plugins/3MFReader/WorkspaceDialog.qml:392 +msgctxt "@action:button" +msgid "Open" +msgstr "Öffnen" + +#: plugins/3MFReader/WorkspaceDialog.qml:398 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "Projekt trotzdem öffnen" + +#: plugins/3MFReader/WorkspaceDialog.qml:407 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "Fehlendes Material installieren" + +#: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33 +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "3MF-Datei" + +#: plugins/3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF-Reader" + +#: plugins/3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Ermöglicht das Lesen von 3MF-Dateien." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "Das 3MF-Writer-Plugin ist beschädigt." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Es ist noch kein Workspace zum Speichern vorhanden. Bitte fügen Sie zuerst einen Drucker hinzu." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "Keine Erlaubnis zum Beschreiben dieses Arbeitsbereichs." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "Das Betriebssystem erlaubt es nicht, eine Projektdatei an diesem Speicherort oder mit diesem Dateinamen zu speichern." + +#: plugins/3MFWriter/ThreeMFWriter.py:240 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Fehler beim Schreiben von 3MF-Datei." + +#: plugins/3MFWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "3MF-Datei" + +#: plugins/3MFWriter/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Cura-Projekt 3MF-Datei" + +#: plugins/3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF-Writer" + +#: plugins/3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Bietet Unterstützung für das Schreiben von 3MF-Dateien." + +#: plugins/AMFReader/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "AMF-Datei" + +#: plugins/AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF-Reader" + +#: plugins/AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Ermöglicht das Lesen von AMF-Dateien." + +#: plugins/CuraDrive/plugin.json +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Sicherung und Wiederherstellen Ihrer Konfiguration." + +#: plugins/CuraDrive/plugin.json +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura-Backups" + +#: plugins/CuraDrive/src/CreateBackupJob.py:25 +msgctxt "@info:title" +msgid "Backups" +msgstr "Backups" + +#: plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Beim Versuch, Ihr Backup hochzuladen, trat ein Fehler auf." + +#: plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "Ihr Backup wird erstellt..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "Beim Erstellen Ihres Backups ist ein Fehler aufgetreten." + +#: plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Ihr Backup wird hochgeladen..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Ihr Backup wurde erfolgreich hochgeladen." + +#: plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "Das Backup überschreitet die maximale Dateigröße." + +#: plugins/CuraDrive/src/DriveApiService.py:86 +#: plugins/CuraDrive/src/RestoreBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Beim Versuch, Ihr Backup wiederherzustellen, trat ein Fehler auf." + +#: plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Backups verwalten" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "Möchten Sie mehr?" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Jetzt Backup durchführen" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Automatisches Backup" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "An jedem Tag, an dem Cura gestartet wird, ein automatisches Backup erstellen." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 +msgctxt "@button" +msgid "Restore" +msgstr "Wiederherstellen" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Backup löschen" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Soll dieses Backup wirklich gelöscht werden? Der Vorgang kann nicht rückgängig gemacht werden." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Backup wiederherstellen" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "Cura muss neu gestartet werden, um Ihre Datensicherung wiederherzustellen. Möchten Sie Cura jetzt schließen?" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Cura-Version" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Maschinen" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Materialien" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Profile" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Plugins" + +#: plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Cura-Backups" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "Meine Backups" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Sie verfügen derzeit über keine Backups. Verwenden Sie die Schaltfläche ‚Jetzt Backup erstellen‘, um ein Backup zu erstellen." + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "In der Vorschau-Phase sind Sie auf 5 sichtbare Backups beschränkt. Ein Backup entfernen, um ältere anzusehen." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Ihre Cura-Einstellungen sichern und synchronisieren." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 +#: plugins/Marketplace/resources/qml/Marketplace.qml:312 +#: resources/qml/Account/GeneralOperations.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180 +#: resources/qml/WelcomePages/CloudContent.qml:212 +msgctxt "@button" +msgid "Sign in" +msgstr "Anmelden" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "Fehler beim Slicing mit einem unerwarteten Fehler. Bitte denken Sie daran, Fehler in unserem Issue Tracker zu melden." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:163 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "Slicing fehlgeschlagen" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Einen Fehler melden" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:169 +msgctxt "@message:description" +msgid "Report a bug on UltiMaker Cura's issue tracker." +msgstr "Einen Fehler im Issue Tracker von UltiMaker Cura melden." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:416 +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "Slicing mit dem aktuellen Material nicht möglich, da es mit der gewählten Maschine oder Konfiguration nicht kompatibel ist." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:417 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:450 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:477 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:501 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:514 +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "Slicing nicht möglich" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:449 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "Die aktuellen Einstellungen lassen kein Schneiden (Slicing) zu. Die folgenden Einstellungen sind fehlerhaft:{0}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:476 +#, 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 "Aufgrund der Pro-Modell-Einstellungen ist kein Schneiden (Slicing) möglich. Die folgenden Einstellungen sind für ein oder mehrere Modelle fehlerhaft: {error_labels}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:488 +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "Schneiden (Slicing) ist nicht möglich, da der Einzugsturm oder die Einzugsposition(en) ungültig ist (sind)." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:500 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "Schneiden (Slicing) ist nicht möglich, da Objekte vorhanden sind, die mit dem deaktivierten Extruder %s verbunden sind." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:510 +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 "" +"Bitte überprüfen Sie die Einstellungen und prüfen Sie, ob Ihre Modelle:\n" +"- Mit der Druckraumgröße kompatibel sind\n" +"- Einem aktiven Extruder zugewiesen sind\n" +"- Nicht alle als Modifier Meshes eingerichtet sind" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Schichten werden verarbeitet" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Informationen" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine Backend" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her." + +#: plugins/CuraProfileReader/__init__.py:14 +#: plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Cura-Profil" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura-Profil-Reader" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Ermöglicht das Importieren von Cura-Profilen." + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura-Profil-Writer" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Ermöglicht das Exportieren von Cura-Profilen." + +#: plugins/DigitalLibrary/plugin.json +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." + +#: plugins/DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Digitale Bibliothek von UltiMaker" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 +msgctxt "@option" +msgid "Save Cura project and print file" +msgstr "Cura-Projekt speichern und Datei drucken" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Cura-Projekt speichern" + +#: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19 +msgctxt "@text Placeholder for the username if it has been deleted" +msgid "deleted user" +msgstr "gelöschter Benutzer" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Zugriff auf Update-Informationen nicht möglich." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, 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 "Es können neue Funktionen oder Bug-Fixes für Ihren {machine_name} verfügbar sein! Falls noch nicht geschehen, wird empfohlen, die Firmware auf Ihrem Drucker auf Version {latest_version} zu aktualisieren." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "Neue %s-stabile Firmware verfügbar" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Anleitung für die Aktualisierung" + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Nach Firmware-Updates suchen." + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Firmware-Update-Prüfer" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Firmware aktualisieren" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "Firmware aktualisieren" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 +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 "Die Firmware ist der Teil der Software, der direkt auf Ihrem 3D-Drucker läuft. Diese Firmware kontrolliert die Schrittmotoren, reguliert die Temperatur und sorgt letztlich dafür, dass Ihr Drucker funktioniert." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "Die mit neuen Druckern gelieferte Firmware funktioniert, allerdings enthalten neue Versionen üblicherweise mehr Funktionen und Verbesserungen." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Firmware automatisch aktualisieren" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Benutzerdefinierte Firmware hochladen" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "Firmware kann nicht aktualisiert werden, da keine Verbindung zum Drucker besteht." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 +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." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Benutzerdefinierte Firmware wählen" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Firmware-Aktualisierung" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 +msgctxt "@label" +msgid "Updating firmware." +msgstr "Die Firmware wird aktualisiert." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Firmware-Aktualisierung abgeschlossen." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "Die Firmware-Aktualisierung ist aufgrund eines unbekannten Fehlers fehlgeschlagen." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "Die Firmware-Aktualisierung ist aufgrund eines Kommunikationsfehlers fehlgeschlagen." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "Die Firmware-Aktualisierung ist aufgrund eines Eingabe-/Ausgabefehlers fehlgeschlagen." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "Die Firmware-Aktualisierung ist aufgrund von fehlender Firmware fehlgeschlagen." + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "name" +msgid "Firmware Updater" +msgstr "Firmware-Aktualisierungsfunktion" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Ermöglicht Gerätemaßnahmen für die Aktualisierung der Firmware." + +#: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "Komprimierte G-Code-Datei" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Reader für komprimierten G-Code" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Liest G-Code-Format aus einem komprimierten Archiv." + +#: plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "GCodeWriter unterstützt keinen Textmodus." + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Writer für komprimierten G-Code" + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "G-Code wird in ein komprimiertes Archiv geschrieben." + +#: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14 +#: plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "G-Code-Datei" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "G-Code-Profil-Reader" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Ermöglicht das Importieren von Profilen aus G-Code-Dateien." + +#: plugins/GCodeReader/FlavorParser.py:359 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "G-Code parsen" + +#: plugins/GCodeReader/FlavorParser.py:361 +#: plugins/GCodeReader/FlavorParser.py:515 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "G-Code-Details" + +#: plugins/GCodeReader/FlavorParser.py:513 +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 "Stellen Sie sicher, dass der G-Code für Ihren Drucker und Ihre Druckerkonfiguration geeignet ist, bevor Sie die Datei senden. Der Darstellung des G-Codes ist möglicherweise nicht korrekt." + +#: plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "G-Datei" + +#: plugins/GCodeReader/plugin.json +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Ermöglicht das Laden und Anzeigen von G-Code-Dateien." + +#: plugins/GCodeReader/plugin.json +msgctxt "name" +msgid "G-code Reader" +msgstr "G-Code-Reader" + +#: plugins/GCodeWriter/GCodeWriter.py:75 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "GCodeWriter unterstützt keinen Nicht-Textmodus." + +#: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Vor dem Exportieren bitte G-Code vorbereiten." + +#: plugins/GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "G-Code-Writer" + +#: plugins/GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Schreibt G-Code in eine Datei." + +#: plugins/ImageReader/ConfigUI.qml:14 +msgctxt "@title:window" +msgid "Convert Image" +msgstr "Bild konvertieren" + +#: plugins/ImageReader/ConfigUI.qml:33 +msgctxt "@action:label" +msgid "Height (mm)" +msgstr "Höhe (mm)" + +#: plugins/ImageReader/ConfigUI.qml:56 +msgctxt "@info:tooltip" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "Der Maximalabstand von jedem Pixel von der „Basis“." + +#: plugins/ImageReader/ConfigUI.qml:66 +msgctxt "@action:label" +msgid "Base (mm)" +msgstr "Basis (mm)" + +#: plugins/ImageReader/ConfigUI.qml:90 +msgctxt "@info:tooltip" +msgid "The base height from the build plate in millimeters." +msgstr "Die Basishöhe von der Druckplatte in Millimetern." + +#: plugins/ImageReader/ConfigUI.qml:100 +msgctxt "@action:label" +msgid "Width (mm)" +msgstr "Breite (mm)" + +#: plugins/ImageReader/ConfigUI.qml:124 +msgctxt "@info:tooltip" +msgid "The width in millimeters on the build plate" +msgstr "Die Breite der Druckplatte in Millimetern" + +#: plugins/ImageReader/ConfigUI.qml:134 +msgctxt "@action:label" +msgid "Depth (mm)" +msgstr "Tiefe (mm)" + +#: plugins/ImageReader/ConfigUI.qml:158 +msgctxt "@info:tooltip" +msgid "The depth in millimeters on the build plate" +msgstr "Die Tiefe der Druckplatte in Millimetern" + +#: plugins/ImageReader/ConfigUI.qml:187 +msgctxt "@item:inlistbox" +msgid "Darker is higher" +msgstr "Dunkler ist höher" + +#: plugins/ImageReader/ConfigUI.qml:188 +msgctxt "@item:inlistbox" +msgid "Lighter is higher" +msgstr "Heller ist höher" + +#: plugins/ImageReader/ConfigUI.qml:195 +msgctxt "@info:tooltip" +msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." +msgstr "Für Lithophanien sollten dunkle Pixel dickeren Positionen entsprechen, um mehr einfallendes Licht zu blockieren. Für Höhenkarten stellen hellere Pixel höheres Terrain dar, sodass hellere Pixel dickeren Positionen im generierten 3D-Modell entsprechen sollten." + +#: plugins/ImageReader/ConfigUI.qml:205 +msgctxt "@action:label" +msgid "Color Model" +msgstr "Farbmodell" + +#: plugins/ImageReader/ConfigUI.qml:224 +msgctxt "@item:inlistbox" +msgid "Linear" +msgstr "Linear" + +#: plugins/ImageReader/ConfigUI.qml:225 +msgctxt "@item:inlistbox" +msgid "Translucency" +msgstr "Transparenz" + +#: plugins/ImageReader/ConfigUI.qml:232 +msgctxt "@info:tooltip" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "Für Lithophanien ist ein einfaches logarithmisches Modell für Transparenz verfügbar. Bei Höhenprofilen entsprechen die Pixelwerte den Höhen linear." + +#: plugins/ImageReader/ConfigUI.qml:242 +msgctxt "@action:label" +msgid "1mm Transmittance (%)" +msgstr "1 mm Durchlässigkeit (%)" + +#: plugins/ImageReader/ConfigUI.qml:263 +msgctxt "@info:tooltip" +msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." +msgstr "Der Prozentsatz an Licht, der einen Druck von einer Dicke mit 1 Millimeter durchdringt. Senkt man diesen Wert, steigt der Kontrast in den dunkleren Bereichen, während der Kontrast in den helleren Bereichen des Bilds sinkt." + +#: plugins/ImageReader/ConfigUI.qml:274 +msgctxt "@action:label" +msgid "Smoothing" +msgstr "Glättung" + +#: plugins/ImageReader/ConfigUI.qml:298 +msgctxt "@info:tooltip" +msgid "The amount of smoothing to apply to the image." +msgstr "Die Stärke der Glättung, die für das Bild angewendet wird." + +#: plugins/ImageReader/ConfigUI.qml:329 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 +#: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25 +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + +#: plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "JPG-Bilddatei" + +#: plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "JPEG-Bilddatei" + +#: plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "PNG-Bilddatei" + +#: plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "BMP-Bilddatei" + +#: plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "GIF-Bilddatei" + +#: plugins/ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Ermöglicht Erstellung von druckbarer Geometrie aus einer 2D-Bilddatei." + +#: plugins/ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Bild-Reader" + +#: plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Cura 15.04-Profile" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Cura-Vorgängerprofil-Reader" + +#: plugins/LegacyProfileReader/plugin.json +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." + +#: plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Geräteeinstellungen" + +#: plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Drucker" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Düseneinstellungen" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Düsengröße" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Kompatibler Materialdurchmesser" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "X-Versatz Düse" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Y-Versatz Düse" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Kühllüfter-Nr" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "G-Code Extruder-Start" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "G-Code Extruder-Ende" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Druckereinstellungen" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (Breite)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Tiefe)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Höhe)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Druckbettform" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 +msgctxt "@label" +msgid "Origin at center" +msgstr "Ausgang in Mitte" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 +msgctxt "@label" +msgid "Heated bed" +msgstr "Heizbares Bett" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Druckraum aufgeheizt" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 +msgctxt "@label" +msgid "G-code flavor" +msgstr "G-Code-Variante" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Druckkopfeinstellungen" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 +msgctxt "@label" +msgid "X min" +msgstr "X min" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 +msgctxt "@label" +msgid "Y min" +msgstr "Y min" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 +msgctxt "@label" +msgid "X max" +msgstr "X max" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 +msgctxt "@label" +msgid "Y max" +msgstr "Y max" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Brückenhöhe" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Anzahl Extruder" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:342 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Extruder-Versatzwerte auf GCode anwenden" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:390 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "Start G-Code" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:401 +msgctxt "@title:label" +msgid "End G-code" +msgstr "Ende G-Code" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Beschreibung Geräteeinstellungen" + +#: plugins/MachineSettingsAction/plugin.json +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.)" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "Möchten Sie Material- und Softwarepakete mit Ihrem Konto synchronisieren?" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:95 +msgctxt "@info:title" +msgid "Changes detected from your UltiMaker account" +msgstr "Von Ihrem UltiMaker-Konto erkannte Änderungen" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 +msgctxt "@action:button" +msgid "Sync" +msgstr "Synchronisieren" + +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "Synchronisierung läuft..." + +#: plugins/Marketplace/CloudSync/LicenseModel.py:12 +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:79 +msgctxt "@button" +msgid "Decline" +msgstr "Ablehnen" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:13 +#: resources/qml/WelcomePages/UserAgreementContent.qml:53 +msgctxt "@button" +msgid "Agree" +msgstr "Stimme zu" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:77 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Plugin für Lizenzvereinbarung" + +#: plugins/Marketplace/CloudSync/LicensePresenter.py:42 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Ablehnen und vom Konto entfernen" + +#: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "Sie müssen das Programm beenden und neu starten {}, bevor Änderungen wirksam werden." + +#: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "Sie müssen das Programm beenden und neu starten {}, bevor Änderungen wirksam werden." + +#: plugins/Marketplace/LocalPackageList.py:28 +msgctxt "@label" +msgid "Installed Plugins" +msgstr "Installierte Plugins" + +#: plugins/Marketplace/LocalPackageList.py:29 +msgctxt "@label" +msgid "Installed Materials" +msgstr "Installierte Materialien" + +#: plugins/Marketplace/LocalPackageList.py:33 +msgctxt "@label" +msgid "Bundled Plugins" +msgstr "Gebündelte Plugins" + +#: plugins/Marketplace/LocalPackageList.py:34 +msgctxt "@label" +msgid "Bundled Materials" +msgstr "Gebündelte Materialien" + +#: plugins/Marketplace/PackageModel.py:43 +msgctxt "@label:property" +msgid "Unknown Package" +msgstr "Unbekanntes Paket" + +#: plugins/Marketplace/PackageModel.py:66 +msgctxt "@label:property" +msgid "Unknown Author" +msgstr "Unbekannter Autor" + +#: plugins/Marketplace/PackageModel.py:95 +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 "Das mit dem Cura-Projekt verbundene Materialpaket konnte nicht auf dem UltiMaker Marketplace gefunden werden. Die Verwendung der in der Cura-Projektdatei gespeicherten Definition des Teilmaterialprofils erfolgt auf eigene Gefahr." + +#: plugins/Marketplace/RemotePackageList.py:117 +msgctxt "@info:error" +msgid "Could not interpret the server's response." +msgstr "Die Antwort vom Server konnte nicht interpretiert werden." + +#: plugins/Marketplace/RemotePackageList.py:148 +msgctxt "@info:error" +msgid "Could not reach Marketplace." +msgstr "Der Marktplatz konnte nicht erreicht werden." + +#: plugins/Marketplace/plugin.json +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." + +#: plugins/Marketplace/plugin.json +msgctxt "name" +msgid "Marketplace" +msgstr "Marktplatz" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 +msgctxt "@title" +msgid "Changes from your account" +msgstr "Änderungen in deinem Konto" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +msgctxt "@button" +msgid "Dismiss" +msgstr "Verwerfen" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +#: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 +#: resources/qml/WelcomePages/WhatsNewContent.qml:175 +msgctxt "@button" +msgid "Next" +msgstr "Weiter" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "Die folgenden Pakete werden hinzugefügt:" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "Die folgenden Pakete können nicht hinzugefügt werden, weil die Cura-Version nicht kompatibel ist:" + +#: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "Fehlende Materialien installieren" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "Plugin für Lizenzvereinbarung" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:47 +msgctxt "@text" +msgid "Please read and agree with the plugin licence." +msgstr "Bitte lesen und akzeptieren Sie die Plug-in-Lizenz." + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "Akzeptieren" + +#: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Pakete verwalten" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:12 +msgctxt "@header" +msgid "Manage packages" +msgstr "Pakete verwalten" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:16 +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." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" +msgid "Loading..." +msgstr "Lädt..." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "Plugins" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "Materialien" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "Suche im Browser" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:271 +msgctxt "@button" +msgid "In order to use the package you will need to restart Cura" +msgstr "Um das Paket nutzen zu können, müssen Sie Cura neu starten" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:279 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "%1 beenden" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:300 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" +msgstr "Bitte melden Sie sich an, um verifizierte Plugins und Materialien für UltiMaker Cura Enterprise zu erhalten" + +#: plugins/Marketplace/resources/qml/Materials.qml:8 +#: plugins/Marketplace/resources/qml/MissingPackages.qml:8 +msgctxt "@header" +msgid "Install Materials" +msgstr "Materialien installieren" + +#: plugins/Marketplace/resources/qml/Materials.qml:12 +msgctxt "@text" +msgid "Select and install material profiles optimised for your UltiMaker 3D printers." +msgstr "Wählen und installieren Sie Materialprofile, die für Ihre UltiMaker 3D-Drucker optimiert sind." + +#: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "Sie müssen die Lizenz akzeptieren, um das Paket zu installieren" + +#: plugins/Marketplace/resources/qml/OnboardBanner.qml:101 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205 +msgctxt "@button:label" +msgid "Learn More" +msgstr "Mehr Erfahren" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170 +msgctxt "@label Is followed by the name of an author" +msgid "By" +msgstr "Von" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Disable" +msgstr "Deaktivieren" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Enable" +msgstr "Aktivieren" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242 +msgctxt "@button" +msgid "Downgrading..." +msgstr "Downgrade läuft…" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243 +msgctxt "@button" +msgid "Downgrade" +msgstr "Downgraden" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247 +msgctxt "@button" +msgid "Installing..." +msgstr "Wird installiert…" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248 +msgctxt "@button" +msgid "Install" +msgstr "Installieren" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252 +msgctxt "@button" +msgid "Uninstall" +msgstr "Deinstallieren" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Update" +msgstr "Aktualisierung" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Updating..." +msgstr "Aktualisierung läuft…" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "Details zum Paket" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Hinten" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "Beschreibung" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "Kompatible Drucker" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "Keine Kompatibilitätsinformationen" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "Kompatible Stützmaterialien" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "Keine" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:193 +msgctxt "@header" +msgid "Compatible with Material Station" +msgstr "Kompatibel mit Material Station" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "No" +msgstr "Nein" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "Yes" +msgstr "Ja" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:219 +msgctxt "@header" +msgid "Optimized for Air Manager" +msgstr "Optimiert für Air Manager" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Visit plug-in website" +msgstr "Plug-in-Website besuchen" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Website" +msgstr "Website" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:252 +msgctxt "@button" +msgid "Buy spool" +msgstr "Spule kaufen" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:261 +msgctxt "@button" +msgid "Safety datasheet" +msgstr "Sicherheitsdatenblatt" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:270 +msgctxt "@button" +msgid "Technical datasheet" +msgstr "Technisches Datenblatt" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Failed to load packages:" +msgstr "Pakete konnten nicht geladen werden:" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Retry?" +msgstr "Erneut versuchen?" + +#: plugins/Marketplace/resources/qml/Packages.qml:167 +msgctxt "@button" +msgid "Loading" +msgstr "Wird geladen" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No more results to load" +msgstr "Keine weiteren Ergebnisse zum Laden" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No results found with current filter" +msgstr "Keine Ergebnisse mit dem aktuellen Filter gefunden" + +#: plugins/Marketplace/resources/qml/Packages.qml:226 +msgctxt "@button" +msgid "Load more" +msgstr "Weitere laden" + +#: plugins/Marketplace/resources/qml/Plugins.qml:8 +msgctxt "@header" +msgid "Install Plugins" +msgstr "Plug-ins installieren" + +#: plugins/Marketplace/resources/qml/Plugins.qml:12 +msgctxt "@text" +msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." +msgstr "Optimieren Sie Ihren Workflow und individualisieren Sie Ihr Erlebnis in UltiMaker Cura mit Plug-ins, die von der großartigen Community unserer Anwender bereitgestellt werden." + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 +msgctxt "@info" +msgid "UltiMaker Verified Plug-in" +msgstr "Durch UltiMaker verifiziertes Plug-in" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "UltiMaker Certified Material" +msgstr "Durch UltiMaker zertifiziertes Material" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 +msgctxt "@info" +msgid "UltiMaker Verified Package" +msgstr "Durch UltiMaker verifiziertes Paket" + +#: plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "3D-Modell-Assistent" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -836,823 +2384,1091 @@ msgstr "" "

    Erfahren Sie, wie Sie die bestmögliche Druckqualität und Zuverlässigkeit sicherstellen.

    \n" "

    Leitfaden zu Druckqualität anzeigen

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 -#, 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 "Projektdatei {0} enthält einen unbekannten Maschinentyp {1}. Importieren der Maschine ist nicht möglich. Stattdessen werden die Modelle importiert." +#: plugins/ModelChecker/plugin.json +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." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "Projektdatei öffnen" +#: plugins/ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Modell-Prüfer" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "Auf Projektdatei {0} kann plötzlich nicht mehr zugegriffen werden: {1}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:659 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "Projektdatei kann nicht geöffnet werden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:658 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "Projektdatei {0} ist beschädigt: {1}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:711 -#, 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 "Projektdatei {0} verwendet Profile, die nicht mit dieser Ultimaker Cura-Version kompatibel sind." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Empfohlen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:214 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Benutzerdefiniert" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:390 -msgctxt "@info:status" -msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 -msgctxt "@info:title" -msgid "Material profiles not installed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 -msgctxt "@action:button" -msgid "Install Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "3MF-Datei" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "Das 3MF-Writer-Plugin ist beschädigt." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "Es ist noch kein Workspace zum Speichern vorhanden. Bitte fügen Sie zuerst einen Drucker hinzu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "Keine Erlaubnis zum Beschreiben dieses Arbeitsbereichs." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "Das Betriebssystem erlaubt es nicht, eine Projektdatei an diesem Speicherort oder mit diesem Dateinamen zu speichern." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:238 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Fehler beim Schreiben von 3MF-Datei." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:282 -#, python-brace-format -msgctxt "@error:material" -msgid "It was not possible to store material package information in project file: {material}. This project may not open correctly on other systems." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 -msgctxt "@info:title" -msgid "Failed to save material package information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF-Datei" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura-Projekt 3MF-Datei" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF-Datei" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 -msgctxt "@info:title" -msgid "Backups" -msgstr "Backups" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Beim Versuch, Ihr Backup hochzuladen, trat ein Fehler auf." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Ihr Backup wird erstellt..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "Beim Erstellen Ihres Backups ist ein Fehler aufgetreten." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Ihr Backup wird hochgeladen..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Ihr Backup wurde erfolgreich hochgeladen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "Das Backup überschreitet die maximale Dateigröße." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Beim Versuch, Ihr Backup wiederherzustellen, trat ein Fehler auf." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Backups verwalten" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "Fehler beim Slicing mit einem unerwarteten Fehler. Bitte denken Sie daran, Fehler in unserem Issue Tracker zu melden." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "Slicing fehlgeschlagen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 -msgctxt "@message:button" -msgid "Report a bug" -msgstr "Einen Fehler melden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 -msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." -msgstr "Einen Fehler im Issue Tracker von Ultimaker Cura melden." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:400 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "Slicing mit dem aktuellen Material nicht möglich, da es mit der gewählten Maschine oder Konfiguration nicht kompatibel ist." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:401 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:434 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:461 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:473 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:485 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:498 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "Slicing nicht möglich" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:433 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "Die aktuellen Einstellungen lassen kein Schneiden (Slicing) zu. Die folgenden Einstellungen sind fehlerhaft:{0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:460 -#, 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 "Aufgrund der Pro-Modell-Einstellungen ist kein Schneiden (Slicing) möglich. Die folgenden Einstellungen sind für ein oder mehrere Modelle fehlerhaft: {error_labels}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:472 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "Schneiden (Slicing) ist nicht möglich, da der Einzugsturm oder die Einzugsposition(en) ungültig ist (sind)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:484 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "Schneiden (Slicing) ist nicht möglich, da Objekte vorhanden sind, die mit dem deaktivierten Extruder %s verbunden sind." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 -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 "" -"Bitte überprüfen Sie die Einstellungen und prüfen Sie, ob Ihre Modelle:\n" -"- Mit der Druckraumgröße kompatibel sind\n" -"- Einem aktiven Extruder zugewiesen sind\n" -"- Nicht alle als Modifier Meshes eingerichtet sind" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Schichten werden verarbeitet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 -msgctxt "@info:title" -msgid "Information" -msgstr "Informationen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura-Profil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" -msgid "Could not access update information." -msgstr "Zugriff auf Update-Informationen nicht möglich." +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 "" +"Stellen Sie sicher, dass der Drucker verbunden ist:\n" +"– Prüfen Sie, ob der Drucker eingeschaltet ist.– Prüfen Sie, ob der Drucker mit dem Netzwerk verbunden ist.\n" +"– Prüfen Sie, ob Sie angemeldet sind, falls Sie über die Cloud verbundene Drucker suchen möchten." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, 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 "Es können neue Funktionen oder Bug-Fixes für Ihren {machine_name} verfügbar sein! Falls noch nicht geschehen, wird empfohlen, die Firmware auf Ihrem Drucker auf Version {latest_version} zu aktualisieren." +#: plugins/MonitorStage/MonitorMain.qml:113 +msgctxt "@info" +msgid "Please connect your printer to the network." +msgstr "Verbinden Sie Ihren Drucker bitte mit dem Netzwerk." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s stable firmware available" -msgstr "Neue %s-stabile Firmware verfügbar" +#: plugins/MonitorStage/MonitorMain.qml:148 +msgctxt "@label link to technical assistance" +msgid "View user manuals online" +msgstr "Benutzerhandbücher online anzeigen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "Anleitung für die Aktualisierung" +#: plugins/MonitorStage/MonitorMain.qml:164 +msgctxt "@info" +msgid "In order to monitor your print from Cura, please connect the printer." +msgstr "Um Ihren Druck von Cura aus zu überwachen, schließen Sie bitte den Drucker an." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Firmware aktualisieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Komprimierte G-Code-Datei" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeWriter unterstützt keinen Textmodus." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "G-Code-Datei" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:350 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "G-Code parsen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:506 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-Code-Details" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 -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 "Stellen Sie sicher, dass der G-Code für Ihren Drucker und Ihre Druckerkonfiguration geeignet ist, bevor Sie die Datei senden. Der Darstellung des G-Codes ist möglicherweise nicht korrekt." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G-Datei" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter unterstützt keinen Nicht-Textmodus." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Vor dem Exportieren bitte G-Code vorbereiten." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG-Bilddatei" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG-Bilddatei" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG-Bilddatei" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP-Bilddatei" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF-Bilddatei" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04-Profile" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Geräteeinstellungen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Möchten Sie Material- und Softwarepakete mit Ihrem Konto synchronisieren?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Von Ihrem Ultimaker-Konto erkannte Änderungen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 -msgctxt "@action:button" -msgid "Sync" -msgstr "Synchronisieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Synchronisierung läuft..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:12 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:79 -msgctxt "@button" -msgid "Decline" -msgstr "Ablehnen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:13 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53 -msgctxt "@button" -msgid "Agree" -msgstr "Stimme zu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Plugin für Lizenzvereinbarung" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Ablehnen und vom Konto entfernen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "Sie müssen das Programm beenden und neu starten {}, bevor Änderungen wirksam werden." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "Sie müssen das Programm beenden und neu starten {}, bevor Änderungen wirksam werden." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:28 -msgctxt "@label" -msgid "Installed Plugins" -msgstr "Installierte Plugins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:29 -msgctxt "@label" -msgid "Installed Materials" -msgstr "Installierte Materialien" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:33 -msgctxt "@label" -msgid "Bundled Plugins" -msgstr "Gebündelte Plugins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:34 -msgctxt "@label" -msgid "Bundled Materials" -msgstr "Gebündelte Materialien" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:43 -msgctxt "@label:property" -msgid "Unknown Package" -msgstr "Unbekanntes Paket" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:66 -msgctxt "@label:property" -msgid "Unknown Author" -msgstr "Unbekannter Autor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:117 -msgctxt "@info:error" -msgid "Could not interpret the server's response." -msgstr "Die Antwort vom Server konnte nicht interpretiert werden." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:148 -msgctxt "@info:error" -msgid "Could not reach Marketplace." -msgstr "Der Marktplatz konnte nicht erreicht werden." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 +#: plugins/MonitorStage/__init__.py:14 msgctxt "@item:inmenu" msgid "Monitor" msgstr "Überwachen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: plugins/MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Überwachungsstufe" + +#: plugins/MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Bietet eine Überwachungsstufe in Cura." + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 +msgctxt "@label" +msgid "Mesh Type" +msgstr "Mesh-Typ" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 +msgctxt "@label" +msgid "Normal model" +msgstr "Normales Modell" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 +msgctxt "@label" +msgid "Print as support" +msgstr "Als Stützstruktur drucken" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Einstellungen für Überlappungen ändern" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "Überlappungen nicht unterstützen" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 +msgctxt "@item:inlistbox" +msgid "Infill mesh only" +msgstr "Nur Mesh-Füllung" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161 +msgctxt "@item:inlistbox" +msgid "Cutting mesh" +msgstr "Mesh beschneiden" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386 +msgctxt "@action:button" +msgid "Select settings" +msgstr "Einstellungen wählen" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Einstellungen für die benutzerdefinierte Anpassung dieses Modells wählen" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtern..." + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Alle anzeigen" + +#: plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" msgid "Per Model Settings" msgstr "Einstellungen pro Objekt" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +#: plugins/PerObjectSettingsTool/__init__.py:15 msgctxt "@info:tooltip" msgid "Configure Per Model Settings" msgstr "Pro Objekteinstellungen konfigurieren" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Werkzeug „Einstellungen pro Objekt“" + +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Ermöglicht die Einstellungen pro Objekt." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Nachbearbeitung" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "G-Code ändern" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Plugin Nachbearbeitung" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 +msgctxt "@label" +msgid "Post Processing Scripts" +msgstr "Skripts Nachbearbeitung" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "Ein Skript hinzufügen" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 +msgctxt "@label" +msgid "Settings" +msgstr "Einstellungen" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Aktive Nachbearbeitungsskripts ändern." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "Die folgenden Skript ist aktiv:" +msgstr[1] "Die folgenden Skripte sind aktiv:" + +#: plugins/PostProcessingPlugin/plugin.json +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" + +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Nachbearbeitung" + +#: plugins/PrepareStage/PrepareMenu.qml:74 +msgctxt "@button" +msgid "Add printer" +msgstr "Drucker hinzufügen" + +#: plugins/PrepareStage/PrepareMenu.qml:90 +msgctxt "@button" +msgid "Manage printers" +msgstr "Drucker verwalten" + +#: plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "Vorbereiten" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 +#: plugins/PrepareStage/plugin.json +msgctxt "name" +msgid "Prepare Stage" +msgstr "Vorbereitungsstufe" + +#: plugins/PrepareStage/plugin.json +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Bietet eine Vorbereitungsstufe in Cura." + +#: plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" msgid "Preview" msgstr "Vorschau" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +#: plugins/PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Vorschaustufe" + +#: plugins/PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Bietet eine Vorschaustufe in Cura." + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Speichern auf Wechseldatenträger" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Auf Wechseldatenträger speichern {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "Es sind keine Dateiformate zum Schreiben vorhanden!" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 #, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Wird auf Wechseldatenträger gespeichert {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 msgctxt "@info:title" msgid "Saving" msgstr "Wird gespeichert" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "Konnte nicht als {0} gespeichert werden: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 #, 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 "Bei dem Versuch, auf {device} zu schreiben, wurde ein Dateiname nicht gefunden." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 #, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Konnte nicht auf dem Wechseldatenträger gespeichert werden {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 #, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Auf Wechseldatenträger {0} gespeichert als {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 msgctxt "@info:title" msgid "File Saved" msgstr "Datei wurde gespeichert" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 msgctxt "@action:button" msgid "Eject" msgstr "Auswerfen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 #, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Wechseldatenträger auswerfen {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 #, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Ausgeworfen {0}. Sie können den Datenträger jetzt sicher entfernen." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 msgctxt "@info:title" msgid "Safely Remove Hardware" msgstr "Hardware sicher entfernen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 #, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Auswurf fehlgeschlagen {0}. Möglicherweise wird das Laufwerk von einem anderen Programm verwendet." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +#: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 msgctxt "@item:intext" msgid "Removable Drive" msgstr "Wechseldatenträger" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "Cura zeigt die Schichten nicht präzise an, wenn „Drucken mit Drahtstruktur“ aktiviert ist." +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Ermöglicht Hotplugging des Wechseldatenträgers und Beschreiben." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Simulationsansicht" +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Ausgabegerät-Plugin für Wechseldatenträger" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 +#: plugins/SentryLogger/plugin.json +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" + +#: plugins/SentryLogger/plugin.json +msgctxt "name" +msgid "Sentry Logger" +msgstr "Sentry-Protokolleinrichtung" + +#: plugins/SimulationView/SimulationView.py:129 msgctxt "@info:status" msgid "Nothing is shown because you need to slice first." msgstr "Es kann nichts angezeigt werden, weil Sie zuerst das Slicing vornehmen müssen." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 +#: plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "No layers to show" msgstr "Keine anzeigbaren Schichten vorhanden" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 +#: plugins/SimulationView/SimulationView.py:132 +#: plugins/SolidView/SolidView.py:74 msgctxt "@info:option_text" msgid "Do not show this message again" msgstr "Diese Meldung nicht mehr anzeigen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:18 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:47 +msgctxt "@label" +msgid "Color scheme" +msgstr "Farbschema" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Materialfarbe" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Linientyp" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:112 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Geschwindigkeit" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:116 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Schichtdicke" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:120 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Linienbreite" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:124 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Fluss" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:164 +msgctxt "@label" +msgid "Compatibility Mode" +msgstr "Kompatibilitätsmodus" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:231 +msgctxt "@label" +msgid "Travels" +msgstr "Bewegungen" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:237 +msgctxt "@label" +msgid "Helpers" +msgstr "Helfer" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:243 +msgctxt "@label" +msgid "Shell" +msgstr "Gehäuse" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:249 +msgctxt "@label" +msgid "Infill" +msgstr "Füllung" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:257 +msgctxt "@label" +msgid "Starts" +msgstr "Startet" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:304 +msgctxt "@label" +msgid "Only Show Top Layers" +msgstr "Nur obere Schichten anzeigen" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:313 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "5 detaillierte Schichten oben anzeigen" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:326 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Oben/Unten" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:330 +msgctxt "@label" +msgid "Inner Wall" +msgstr "Innenwand" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:397 +msgctxt "@label" +msgid "min" +msgstr "min" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:462 +msgctxt "@label" +msgid "max" +msgstr "max" + +#: plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Schichtenansicht" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +#: plugins/SimulationView/plugin.json +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Stellt eine Vorschau der Daten der Slice-Ebene bereit." + +#: plugins/SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "Simulationsansicht" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Weitere Informationen zur anonymen Datenerfassung" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 +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 erfasst anonyme Daten, um die Druckqualität und Benutzererfahrung zu steigern. Nachfolgend ist ein Beispiel aller Daten, die geteilt werden:" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Ich möchte keine anonymen Daten senden" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Senden von anonymen Daten erlauben" + +#: plugins/SliceInfoPlugin/SliceInfo.py:95 msgctxt "@text" msgid "Unable to read example data file." msgstr "Die Datei mit den Beispieldaten kann nicht gelesen werden." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Slice-Informationen" + +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Sendet anonymisierte Slice-Informationen. Kann in den Einstellungen deaktiviert werden." + +#: plugins/SolidView/SolidView.py:71 msgctxt "@info:status" msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." msgstr "Die hervorgehobenen Bereiche kennzeichnen fehlende oder überschüssige Oberflächen. Beheben Sie die Fehler am Modell und öffnen Sie es erneut in Cura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +#: plugins/SolidView/SolidView.py:73 msgctxt "@info:title" msgid "Model Errors" msgstr "Modellfehler" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +#: plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" msgstr "Solide Ansicht" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +#: plugins/SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Bietet eine normale, solide Netzansicht." + +#: plugins/SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Solide Ansicht" + +#: plugins/SupportEraser/__init__.py:12 msgctxt "@label" msgid "Support Blocker" msgstr "Stützstruktur-Blocker" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 +#: plugins/SupportEraser/__init__.py:13 msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "Erstellt ein Volumen, in dem keine Stützstrukturen gedruckt werden." -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 +#: plugins/SupportEraser/plugin.json +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" + +#: plugins/SupportEraser/plugin.json +msgctxt "name" +msgid "Support Eraser" +msgstr "Stützstruktur-Radierer" + +#: plugins/TrimeshReader/__init__.py:15 msgctxt "@item:inlistbox 'Open' is part of the name of this file format." msgid "Open Compressed Triangle Mesh" msgstr "Öffnen Sie das komprimierte Dreiecksnetz" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: plugins/TrimeshReader/__init__.py:19 msgctxt "@item:inlistbox" msgid "COLLADA Digital Asset Exchange" msgstr "COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: plugins/TrimeshReader/__init__.py:23 msgctxt "@item:inlistbox" msgid "glTF Binary" msgstr "glTF Binary" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: plugins/TrimeshReader/__init__.py:27 msgctxt "@item:inlistbox" msgid "glTF Embedded JSON" msgstr "glTF Embedded JSON" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: plugins/TrimeshReader/__init__.py:36 msgctxt "@item:inlistbox" msgid "Stanford Triangle Format" msgstr "Stanford Triangle Format" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: plugins/TrimeshReader/__init__.py:40 msgctxt "@item:inlistbox" msgid "Compressed COLLADA Digital Asset Exchange" msgstr "Compressed COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker Format Package" +#: plugins/TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Unterstützt das Lesen von Modelldateien." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 +#: plugins/TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh Reader" + +#: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "UltiMaker Format Package" +msgstr "UltiMaker Format Package" + +#: plugins/UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Bietet Unterstützung für das Lesen von Ultimaker Format Packages." + +#: plugins/UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP-Reader" + +#: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80 +#: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115 +#: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180 msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "Kann nicht in UFP-Datei schreiben:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Druckbett nivellieren" +#: plugins/UFPWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Bietet Unterstützung für das Schreiben von Ultimaker Format Packages." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Upgrades wählen" +#: plugins/UFPWriter/plugin.json +msgctxt "name" +msgid "UFP Writer" +msgstr "UFP-Writer" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Verwaltet Netzwerkverbindungen zu Ultimaker-Netzwerkdruckern." + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "UltiMaker-Netzwerkverbindung" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Anschluss an vernetzten Drucker" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Wählen Sie Ihren Drucker aus der folgenden Liste aus:" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +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 "Um direkt auf Ihrem Drucker über das Netzwerk zu drucken, muss der Drucker über ein Netzwerkkabel oder per WLAN mit dem Netzwerk verbunden sein. Wenn Sie Cura nicht mit Ihrem Drucker verbinden, können Sie G-Code-Dateien auf einen USB-Stick kopieren und diesen am Drucker anschließen." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 +msgctxt "@action:button" +msgid "Edit" +msgstr "Bearbeiten" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 +#: resources/qml/Preferences/MachinesPage.qml:153 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:186 +#: resources/qml/Preferences/ProfilesPage.qml:321 +msgctxt "@action:button" +msgid "Remove" +msgstr "Entfernen" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Aktualisieren" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 +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" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 +msgctxt "@label" +msgid "Type" +msgstr "Typ" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 +msgctxt "@label" +msgid "Firmware version" +msgstr "Firmware-Version" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 +msgctxt "@label" +msgid "Address" +msgstr "Adresse" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Dieser Drucker ist nicht eingerichtet um eine Gruppe von Druckern anzusteuern." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Dieser Drucker steuert eine Gruppe von %1 Druckern an." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "Der Drucker unter dieser Adresse hat nicht reagiert." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" +msgid "Connect" +msgstr "Verbinden" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Ungültige IP-Adresse" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Bitte eine gültige IP-Adresse eingeben." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Druckeradresse" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Geben Sie die IP-Adresse Ihres Druckers in das Netzwerk ein." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Konfigurationsänderungen" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 +msgctxt "@action:button" +msgid "Override" +msgstr "Überschreiben" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "Der zugewiesene Drucker %1 erfordert die folgende Konfigurationsänderung:" +msgstr[1] "Der zugewiesene Drucker %1 erfordert die folgenden Konfigurationsänderungen:" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "Der Drucker %1 wurde zugewiesen, allerdings enthält der Auftrag eine unbekannte Materialkonfiguration." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Material %1 von %2 auf %3 wechseln." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "%3 als Material %1 laden (Dies kann nicht übergangen werden)." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Print Core %1 von %2 auf %3 wechseln." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "Überschreiben verwendet die definierten Einstellungen mit der vorhandenen Druckerkonfiguration. Dies kann zu einem fehlgeschlagenen Druck führen." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@label" +msgid "Move to top" +msgstr "Vorziehen" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155 +msgctxt "@label" +msgid "Delete" +msgstr "Löschen" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186 +#: resources/qml/MonitorButton.qml:284 +msgctxt "@label" +msgid "Resume" +msgstr "Zurückkehren" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188 +msgctxt "@label" +msgid "Pausing..." +msgstr "Wird pausiert..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190 +msgctxt "@label" +msgid "Resuming..." +msgstr "Wird fortgesetzt..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192 +#: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288 +msgctxt "@label" +msgid "Pause" +msgstr "Pausieren" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Abort" +msgstr "Abbrechen" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Aborting..." +msgstr "Wird abgebrochen..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218 +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 "Soll dieser %1 wirklich an den Anfang der Warteschlange vorgezogen werden?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Druckauftrag vorziehen" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "Soll %1 wirklich gelöscht werden?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Druckauftrag löschen" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "Möchten Sie %1 wirklich abbrechen?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237 +#: resources/qml/MonitorButton.qml:326 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Drucken abbrechen" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Drucker nicht verfügbar" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 +msgctxt "@label" +msgid "First available" +msgstr "Zuerst verfügbar" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Damit Sie die Warteschlange aus der Ferne verwalten können, müssen Sie die Druckfirmware aktualisieren." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +msgctxt "@label:status" +msgid "Aborted" +msgstr "Abgebrochen" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 +msgctxt "@label:status" +msgid "Finished" +msgstr "Beendet" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Vorbereitung..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "Wird abgebrochen..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +msgctxt "@label:status" +msgid "Failed" +msgstr "Fehlgeschlagen" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Wird pausiert..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Paused" +msgstr "Pausiert" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Wird fortgesetzt..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Action required" +msgstr "Handlung erforderlich" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Fertigstellung %1 um %2" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Drucker verwalten" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280 +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 "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Lädt..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Nicht verfügbar" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Nicht erreichbar" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Idle" +msgstr "Leerlauf" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361 +msgctxt "@label:status" +msgid "Printing" +msgstr "Drucken" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402 +msgctxt "@label" +msgid "Untitled" +msgstr "Unbenannt" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417 +msgctxt "@label" +msgid "Anonymous" +msgstr "Anonym" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Erfordert Konfigurationsänderungen" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452 +msgctxt "@action:button" +msgid "Details" +msgstr "Details" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 +msgctxt "@label" +msgid "Queued" +msgstr "In Warteschlange" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Im Browser verwalten" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "Die Warteschlange enthält keine Druckaufträge. Slicen Sie einen Auftrag und schicken Sie ihn ab, um ihn zur Warteschlange hinzuzufügen." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "Print jobs" +msgstr "Druckaufträge" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108 +msgctxt "@label" +msgid "Total print time" +msgstr "Druckdauer insgesamt" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117 +msgctxt "@label" +msgid "Waiting for" +msgstr "Warten auf" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117 +msgctxt "@info" +msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" +msgstr "Überwachen Sie Ihre Drucker standortunabhängig mit Ultimaker Digital Factory." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129 +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Drucker in der Digital Factory anzeigen" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Drucken über Netzwerk" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 +msgctxt "@action:button" +msgid "Print" +msgstr "Drucken" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 +msgctxt "@label" +msgid "Printer selection" +msgstr "Druckerauswahl" + +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162 msgctxt "@action:button" msgid "Print via cloud" msgstr "Über Cloud drucken" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Über Cloud drucken" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Über Cloud verbunden" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276 msgctxt "@action:button" msgid "Monitor print" msgstr "Druck überwachen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278 msgctxt "@action:tooltip" msgid "Track the print in Ultimaker Digital Factory" msgstr "Verfolgen Sie den Druck in der Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Unbekannter Fehlercode beim Upload des Druckauftrags: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "Ihr Ultimaker-Konto hat einen neuen Drucker erkannt" -msgstr[1] "Ihr Ultimaker-Konto hat neue Drucker erkannt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:242 -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "Drucker {name} ({model}) aus Ihrem Konto wird hinzugefügt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:261 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "... und {0} weiterer" -msgstr[1] "... und {0} weitere" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:266 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "Drucker aus Digital Factory hinzugefügt:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:334 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "Für einen Drucker ist keine Cloud-Verbindung verfügbar" -msgstr[1] "Für mehrere Drucker ist keine Cloud-Verbindung verfügbar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:343 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "Dieser Drucker ist nicht mit der Digital Factory verbunden:" -msgstr[1] "Diese Drucker sind nicht mit der Digital Factory verbunden:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:348 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:440 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:352 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "Bitte besuchen Sie {website_link}, um eine Verbindung herzustellen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:356 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "Druckerkonfigurationen speichern" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "Drucker entfernen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:442 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425 #, 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} wird bis zur nächsten Synchronisierung entfernt." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:443 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426 #, 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 "Wenn Sie {printer_name} dauerhaft entfernen möchten, dann besuchen Sie bitte die {digital_factory_link}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:444 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427 #, 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 "Möchten Sie {printer_name} wirklich vorübergehend entfernen?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474 msgctxt "@title:window" msgid "Remove printers?" msgstr "Drucker entfernen?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477 #, python-brace-format msgctxt "@label" msgid "" @@ -1668,14 +3484,14 @@ msgstr[1] "" "Es werden gleich {0} Drucker aus Cura entfernt. Der Vorgang kann nicht rückgängig gemacht werden. \n" "Möchten Sie wirklich fortfahren." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be undone.\n" "Are you sure you want to continue?" msgstr "Es werden gleich alle Drucker aus Cura entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden.Möchten Sie wirklich fortfahren?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, python-brace-format msgctxt "@info:status" msgid "" @@ -1685,2492 +3501,1375 @@ msgstr "" "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" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 msgctxt "@info:title" msgid "Are you ready for cloud printing?" msgstr "Sind Sie bereit für den Cloud-Druck?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 msgctxt "@action" msgid "Get started" msgstr "Erste Schritte" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24 msgctxt "@action" msgid "Learn more" msgstr "Mehr erfahren" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 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." +msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Sie versuchen, sich mit einem Drucker zu verbinden, auf dem Ultimaker Connect nicht läuft. Bitte aktualisieren Sie die Firmware des Druckers." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 msgctxt "@info:title" msgid "Update your printer" msgstr "Drucker aktualisieren" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 #, 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 hat Materialprofile entdeckt, die auf dem Host-Drucker der Gruppe {0} noch nicht installiert wurden." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Material an Drucker senden" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "Ihr UltiMaker-Konto hat einen neuen Drucker erkannt" +msgstr[1] "Ihr UltiMaker-Konto hat neue Drucker erkannt" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29 +#, python-brace-format +msgctxt "info:status Filled in with printer name and printer model." +msgid "Adding printer {name} ({model}) from your account" +msgstr "Drucker {name} ({model}) aus Ihrem Konto wird hinzugefügt" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "... und {0} weiterer" +msgstr[1] "... und {0} weitere" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "Drucker aus Digital Factory hinzugefügt:" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 #, 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 "Sie versuchen, sich mit {0} zu verbinden, aber dieser Drucker ist nicht der Host, der die Gruppe verwaltet. Besuchen Sie die Website, um den Drucker als Host der Gruppe zu konfigurieren." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 msgctxt "@info:title" msgid "Not a group host" msgstr "Nicht Host-Drucker der Gruppe" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 msgctxt "@action" msgid "Configure group" msgstr "Gruppe konfigurieren" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18 +msgctxt "@info:status" +msgid "You will receive a confirmation via email when the print job is approved" +msgstr "Sie erhalten eine Bestätigung per E-Mail, wenn der Druckauftrag genehmigt wurde." + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19 +msgctxt "@info:title" +msgid "The print job was successfully submitted" +msgstr "Der Druckauftrag wurde erfolgreich übermittelt." + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22 +msgctxt "@action" +msgid "Manage print jobs" +msgstr "Druckaufträge verwalten" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 msgctxt "@info:status" msgid "Please wait until the current job has been sent." msgstr "Bitte warten Sie, bis der aktuelle Druckauftrag gesendet wurde." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 msgctxt "@info:title" msgid "Print error" msgstr "Druckfehler" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Daten konnten nicht in Drucker geladen werden." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 msgctxt "@info:title" msgid "Network error" msgstr "Netzwerkfehler" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 msgctxt "@info:status" msgid "Sending Print Job" msgstr "Druckauftrag senden" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 msgctxt "@info:status" msgid "Uploading print job to printer." msgstr "Druckauftrag wird vorbereitet." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 msgctxt "@info:status" msgid "Print job queue is full. The printer can't accept a new job." msgstr "Die Druckauftragswarteschlange ist voll. Der Drucker kann keinen neuen Auftrag annehmen." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 msgctxt "@info:title" msgid "Queue Full" msgstr "Warteschlange voll" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "Der Druckauftrag wurde erfolgreich an den Drucker gesendet." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 msgctxt "@info:title" msgid "Data Sent" msgstr "Daten gesendet" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "Dieser Drucker ist nicht mit der Digital Factory verbunden:" +msgstr[1] "Diese Drucker sind nicht mit der Digital Factory verbunden:" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "Bitte besuchen Sie {website_link}, um eine Verbindung herzustellen" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "Für einen Drucker ist keine Cloud-Verbindung verfügbar" +msgstr[1] "Für mehrere Drucker ist keine Cloud-Verbindung verfügbar" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "Druckerkonfigurationen speichern" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "Drucker entfernen" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "Drucken über Netzwerk" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "Drücken über Netzwerk" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64 msgctxt "@info:status" msgid "Connected over the network" msgstr "Über Netzwerk verbunden" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 msgctxt "@action" msgid "Connect via Network" msgstr "Anschluss über Netzwerk" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +#: plugins/UM3NetworkPrinting/src/Utils.py:27 msgctxt "@info:status" msgid "tomorrow" msgstr "morgen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +#: plugins/UM3NetworkPrinting/src/Utils.py:30 msgctxt "@info:status" msgid "today" msgstr "heute" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:42 msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB-Drucken" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:43 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print via USB" msgstr "Über USB drucken" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:44 msgctxt "@info:tooltip" msgid "Print via USB" msgstr "Über USB drucken" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:80 msgctxt "@info:status" msgid "Connected via USB" msgstr "Über USB verbunden" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:110 msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" msgstr "Ein USB-Druck wird ausgeführt. Das Schließen von Cura beendet diesen Druck. Sind Sie sicher?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:135 msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Druck wird bearbeitet. Cura kann keinen weiteren Druck via USB starten, bis der vorherige Druck abgeschlossen wurde." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:136 msgctxt "@message" msgid "Print in Progress" msgstr "Druck in Bearbeitung" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D-Datei" +#: plugins/USBPrinting/plugin.json +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." -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Röntgen-Ansicht" +#: plugins/USBPrinting/plugin.json +msgctxt "name" +msgid "USB printing" +msgstr "USB-Drucken" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 -msgctxt "@title:window" -msgid "Open Project" -msgstr "Projekt öffnen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "Vorhandenes aktualisieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "Neu erstellen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:59 -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "Zusammenfassung – Cura-Projekt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108 -msgctxt "@info:tooltip" -msgid "How should the conflict in the machine be resolved?" -msgstr "Wie soll der Konflikt im Gerät gelöst werden?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:95 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Druckereinstellungen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:104 -msgctxt "@action:label" -msgid "Type" -msgstr "Typ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:192 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -msgctxt "@action:label" -msgid "Printer Group" -msgstr "Druckergruppe" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:217 -msgctxt "@info:tooltip" -msgid "How should the conflict in the profile be resolved?" -msgstr "Wie soll der Konflikt im Profil gelöst werden?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:220 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Profileinstellungen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:250 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:375 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:244 -msgctxt "@action:label" -msgid "Name" -msgstr "Name" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:268 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:261 -msgctxt "@action:label" -msgid "Intent" -msgstr "Intent" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:286 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:228 -msgctxt "@action:label" -msgid "Not in profile" -msgstr "Nicht im Profil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:292 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:233 -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "%1 überschreiben" -msgstr[1] "%1 überschreibt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 -msgctxt "@action:label" -msgid "Derivative from" -msgstr "Ableitung von" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:311 -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "%1, %2 überschreiben" -msgstr[1] "%1, %2 überschreibt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:333 -msgctxt "@info:tooltip" -msgid "How should the conflict in the material be resolved?" -msgstr "Wie soll der Konflikt im Material gelöst werden?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:360 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Materialeinstellungen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:396 -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "Sichtbarkeit einstellen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 -msgctxt "@action:label" -msgid "Mode" -msgstr "Modus" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 -msgctxt "@action:label" -msgid "Visible settings:" -msgstr "Sichtbare Einstellungen:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "%1 von %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:447 -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "Das Laden eines Projekts entfernt alle Modelle von der Druckplatte." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 -msgctxt "@action:button" -msgid "Open" -msgstr "Öffnen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 -msgctxt "@action:button" -msgid "Open project anyway" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 -msgctxt "@action:button" -msgid "Install missing material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Möchten Sie mehr?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Jetzt Backup durchführen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Automatisches Backup" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "An jedem Tag, an dem Cura gestartet wird, ein automatisches Backup erstellen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 -msgctxt "@button" -msgid "Restore" -msgstr "Wiederherstellen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Backup löschen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Soll dieses Backup wirklich gelöscht werden? Der Vorgang kann nicht rückgängig gemacht werden." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Backup wiederherstellen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "Cura muss neu gestartet werden, um Ihre Datensicherung wiederherzustellen. Möchten Sie Cura jetzt schließen?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura-Version" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Maschinen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materialien" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profile" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Plugins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura-Backups" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Meine Backups" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Sie verfügen derzeit über keine Backups. Verwenden Sie die Schaltfläche ‚Jetzt Backup erstellen‘, um ein Backup zu erstellen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "In der Vorschau-Phase sind Sie auf 5 sichtbare Backups beschränkt. Ein Backup entfernen, um ältere anzusehen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Ihre Cura-Einstellungen sichern und synchronisieren." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:212 -msgctxt "@button" -msgid "Sign in" -msgstr "Anmelden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 -msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 -msgctxt "@option" -msgid "Save Cura project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Firmware aktualisieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 -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 "Die Firmware ist der Teil der Software, der direkt auf Ihrem 3D-Drucker läuft. Diese Firmware kontrolliert die Schrittmotoren, reguliert die Temperatur und sorgt letztlich dafür, dass Ihr Drucker funktioniert." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 -msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "Die mit neuen Druckern gelieferte Firmware funktioniert, allerdings enthalten neue Versionen üblicherweise mehr Funktionen und Verbesserungen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Firmware automatisch aktualisieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Benutzerdefinierte Firmware hochladen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "Firmware kann nicht aktualisiert werden, da keine Verbindung zum Drucker besteht." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 -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." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Benutzerdefinierte Firmware wählen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Firmware-Aktualisierung" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Die Firmware wird aktualisiert." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Firmware-Aktualisierung abgeschlossen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Die Firmware-Aktualisierung ist aufgrund eines unbekannten Fehlers fehlgeschlagen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Die Firmware-Aktualisierung ist aufgrund eines Kommunikationsfehlers fehlgeschlagen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Die Firmware-Aktualisierung ist aufgrund eines Eingabe-/Ausgabefehlers fehlgeschlagen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Die Firmware-Aktualisierung ist aufgrund von fehlender Firmware fehlgeschlagen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:14 -msgctxt "@title:window" -msgid "Convert Image" -msgstr "Bild konvertieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 -msgctxt "@action:label" -msgid "Height (mm)" -msgstr "Höhe (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "Der Maximalabstand von jedem Pixel von der „Basis“." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 -msgctxt "@action:label" -msgid "Base (mm)" -msgstr "Basis (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 -msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "Die Basishöhe von der Druckplatte in Millimetern." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 -msgctxt "@action:label" -msgid "Width (mm)" -msgstr "Breite (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 -msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate" -msgstr "Die Breite der Druckplatte in Millimetern" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 -msgctxt "@action:label" -msgid "Depth (mm)" -msgstr "Tiefe (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 -msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "Die Tiefe der Druckplatte in Millimetern" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 -msgctxt "@item:inlistbox" -msgid "Darker is higher" -msgstr "Dunkler ist höher" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -msgctxt "@item:inlistbox" -msgid "Lighter is higher" -msgstr "Heller ist höher" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 -msgctxt "@info:tooltip" -msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." -msgstr "Für Lithophanien sollten dunkle Pixel dickeren Positionen entsprechen, um mehr einfallendes Licht zu blockieren. Für Höhenkarten stellen hellere Pixel höheres Terrain dar, sodass hellere Pixel dickeren Positionen im generierten 3D-Modell entsprechen sollten." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:205 -msgctxt "@action:label" -msgid "Color Model" -msgstr "Farbmodell" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:224 -msgctxt "@item:inlistbox" -msgid "Linear" -msgstr "Linear" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 -msgctxt "@item:inlistbox" -msgid "Translucency" -msgstr "Transparenz" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 -msgctxt "@info:tooltip" -msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." -msgstr "Für Lithophanien ist ein einfaches logarithmisches Modell für Transparenz verfügbar. Bei Höhenprofilen entsprechen die Pixelwerte den Höhen linear." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 -msgctxt "@action:label" -msgid "1mm Transmittance (%)" -msgstr "1 mm Durchlässigkeit (%)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 -msgctxt "@info:tooltip" -msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." -msgstr "Der Prozentsatz an Licht, der einen Druck von einer Dicke mit 1 Millimeter durchdringt. Senkt man diesen Wert, steigt der Kontrast in den dunkleren Bereichen, während der Kontrast in den helleren Bereichen des Bilds sinkt." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 -msgctxt "@action:label" -msgid "Smoothing" -msgstr "Glättung" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:298 -msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "Die Stärke der Glättung, die für das Bild angewendet wird." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:143 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:80 -msgctxt "@action:button" -msgid "OK" -msgstr "OK" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Drucker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Düseneinstellungen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Düsengröße" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Kompatibler Materialdurchmesser" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "X-Versatz Düse" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Y-Versatz Düse" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Kühllüfter-Nr" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "G-Code Extruder-Start" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "G-Code Extruder-Ende" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Druckereinstellungen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (Breite)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Tiefe)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Höhe)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Druckbettform" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 -msgctxt "@label" -msgid "Origin at center" -msgstr "Ausgang in Mitte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 -msgctxt "@label" -msgid "Heated bed" -msgstr "Heizbares Bett" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Druckraum aufgeheizt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 -msgctxt "@label" -msgid "G-code flavor" -msgstr "G-Code-Variante" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Druckkopfeinstellungen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 -msgctxt "@label" -msgid "X min" -msgstr "X min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 -msgctxt "@label" -msgid "Y min" -msgstr "Y min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 -msgctxt "@label" -msgid "X max" -msgstr "X max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 -msgctxt "@label" -msgid "Y max" -msgstr "Y max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Brückenhöhe" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Anzahl Extruder" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Extruder-Versatzwerte auf GCode anwenden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "Start G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400 -msgctxt "@title:label" -msgid "End G-code" -msgstr "Ende G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 -msgctxt "@title" -msgid "Changes from your account" -msgstr "Änderungen in deinem Konto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -msgctxt "@button" -msgid "Dismiss" -msgstr "Verwerfen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:118 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:175 -msgctxt "@button" -msgid "Next" -msgstr "Weiter" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "Die folgenden Pakete werden hinzugefügt:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "Die folgenden Pakete können nicht hinzugefügt werden, weil die Cura-Version nicht kompatibel ist:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 -msgctxt "@title" -msgid "Install missing Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 -msgctxt "@button" -msgid "Plugin license agreement" -msgstr "Plugin für Lizenzvereinbarung" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47 -msgctxt "@text" -msgid "Please read and agree with the plugin licence." -msgstr "Bitte lesen und akzeptieren Sie die Plug-in-Lizenz." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 -msgctxt "@button" -msgid "Accept" -msgstr "Akzeptieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 -msgctxt "@header" -msgid "Manage packages" -msgstr "Pakete verwalten" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15 -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." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 -msgctxt "@info:tooltip" -msgid "Manage packages" -msgstr "Pakete verwalten" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 -msgctxt "@title" -msgid "Loading..." -msgstr "Lädt..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 -msgctxt "@button" -msgid "Plugins" -msgstr "Plugins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 -msgctxt "@button" -msgid "Materials" -msgstr "Materialien" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 -msgctxt "@info" -msgid "Search in the browser" -msgstr "Suche im Browser" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:271 -msgctxt "@button" -msgid "In order to use the package you will need to restart Cura" -msgstr "Um das Paket nutzen zu können, müssen Sie Cura neu starten" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:279 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "%1 beenden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:8 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MissingPackages.qml:8 -msgctxt "@header" -msgid "Install Materials" -msgstr "Materialien installieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 -msgctxt "@text" -msgid "Select and install material profiles optimised for your Ultimaker 3D printers." -msgstr "Wählen und installieren Sie Materialprofile, die für Ihre Ultimaker 3D-Drucker optimiert sind." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "Sie müssen die Lizenz akzeptieren, um das Paket zu installieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:101 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:207 -msgctxt "@button:label" -msgid "Learn More" -msgstr "Mehr Erfahren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:172 -msgctxt "@label Is followed by the name of an author" -msgid "By" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Enable" -msgstr "Aktivieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Disable" -msgstr "Deaktivieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 -msgctxt "@button" -msgid "Downgrading..." -msgstr "Downgrade läuft…" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 -msgctxt "@button" -msgid "Downgrade" -msgstr "Downgraden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 -msgctxt "@button" -msgid "Installing..." -msgstr "Wird installiert…" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 -msgctxt "@button" -msgid "Install" -msgstr "Installieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 -msgctxt "@button" -msgid "Uninstall" -msgstr "Deinstallieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Updating..." -msgstr "Aktualisierung läuft…" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Update" -msgstr "Aktualisierung" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 -msgctxt "@header" -msgid "Package details" -msgstr "Details zum Paket" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 -msgctxt "@button:tooltip" -msgid "Back" -msgstr "Hinten" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 -msgctxt "@header" -msgid "Description" -msgstr "Beschreibung" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 -msgctxt "@header" -msgid "Compatible printers" -msgstr "Kompatible Drucker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:134 -msgctxt "@info" -msgid "No compatibility information" -msgstr "Keine Kompatibilitätsinformationen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:152 -msgctxt "@header" -msgid "Compatible support materials" -msgstr "Kompatible Stützmaterialien" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176 -msgctxt "@info No materials" -msgid "None" -msgstr "Keine" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:193 -msgctxt "@header" -msgid "Compatible with Material Station" -msgstr "Kompatibel mit Material Station" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "Yes" -msgstr "Ja" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "No" -msgstr "Nein" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:219 -msgctxt "@header" -msgid "Optimized for Air Manager" -msgstr "Optimiert für Air Manager" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Visit plug-in website" -msgstr "Plug-in-Website besuchen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Website" -msgstr "Website" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:252 -msgctxt "@button" -msgid "Buy spool" -msgstr "Spule kaufen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:261 -msgctxt "@button" -msgid "Safety datasheet" -msgstr "Sicherheitsdatenblatt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:270 -msgctxt "@button" -msgid "Technical datasheet" -msgstr "Technisches Datenblatt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Failed to load packages:" -msgstr "Pakete konnten nicht geladen werden:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Retry?" -msgstr "Erneut versuchen?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:167 -msgctxt "@button" -msgid "Loading" -msgstr "Wird geladen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No more results to load" -msgstr "Keine weiteren Ergebnisse zum Laden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No results found with current filter" -msgstr "Keine Ergebnisse mit dem aktuellen Filter gefunden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:226 -msgctxt "@button" -msgid "Load more" -msgstr "Weitere laden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8 -msgctxt "@header" -msgid "Install Plugins" -msgstr "Plug-ins installieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12 -msgctxt "@text" -msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users." -msgstr "Optimieren Sie Ihren Workflow und individualisieren Sie Ihr Erlebnis in Ultimaker Cura mit Plug-ins, die von der großartigen Community unserer Anwender bereitgestellt werden." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 -msgctxt "@info" -msgid "Ultimaker Verified Plug-in" -msgstr "Durch Ultimaker verifiziertes Plug-in" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 -msgctxt "@info" -msgid "Ultimaker Certified Material" -msgstr "Durch Ultimaker zertifiziertes Material" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 -msgctxt "@info" -msgid "Ultimaker Verified Package" -msgstr "Durch Ultimaker verifiziertes Paket" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 -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 "" -"Stellen Sie sicher, dass der Drucker verbunden ist:\n" -"– Prüfen Sie, ob der Drucker eingeschaltet ist.– Prüfen Sie, ob der Drucker mit dem Netzwerk verbunden ist.\n" -"– Prüfen Sie, ob Sie angemeldet sind, falls Sie über die Cloud verbundene Drucker suchen möchten." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 -msgctxt "@info" -msgid "Please connect your printer to the network." -msgstr "Verbinden Sie Ihren Drucker bitte mit dem Netzwerk." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 -msgctxt "@label link to technical assistance" -msgid "View user manuals online" -msgstr "Benutzerhandbücher online anzeigen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:163 -msgctxt "@info" -msgid "In order to monitor your print from Cura, please connect the printer." -msgstr "Um Ihren Druck von Cura aus zu überwachen, schließen Sie bitte den Drucker an." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Mesh-Typ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 -msgctxt "@label" -msgid "Normal model" -msgstr "Normales Modell" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 -msgctxt "@label" -msgid "Print as support" -msgstr "Als Stützstruktur drucken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Einstellungen für Überlappungen ändern" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Überlappungen nicht unterstützen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Nur Mesh-Füllung" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Mesh beschneiden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Einstellungen wählen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Einstellungen für die benutzerdefinierte Anpassung dieses Modells wählen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtern..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Alle anzeigen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Plugin Nachbearbeitung" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Skripts Nachbearbeitung" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" -msgid "Add a script" -msgstr "Ein Skript hinzufügen" +msgid "Level build plate" +msgstr "Druckbett nivellieren" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 -msgctxt "@label" -msgid "Settings" -msgstr "Einstellungen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:459 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Aktive Nachbearbeitungsskripts ändern." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:463 -msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "Die folgenden Skript ist aktiv:" -msgstr[1] "Die folgenden Skripte sind aktiv:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:47 -msgctxt "@label" -msgid "Color scheme" -msgstr "Farbschema" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Materialfarbe" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Linientyp" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Geschwindigkeit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Schichtdicke" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Linienbreite" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Fluss" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Kompatibilitätsmodus" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 -msgctxt "@label" -msgid "Travels" -msgstr "Bewegungen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 -msgctxt "@label" -msgid "Helpers" -msgstr "Helfer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 -msgctxt "@label" -msgid "Shell" -msgstr "Gehäuse" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:64 -msgctxt "@label" -msgid "Infill" -msgstr "Füllung" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Starts" -msgstr "Startet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Nur obere Schichten anzeigen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "5 detaillierte Schichten oben anzeigen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Oben/Unten" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Innenwand" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 -msgctxt "@label" -msgid "min" -msgstr "min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 -msgctxt "@label" -msgid "max" -msgstr "max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Weitere Informationen zur anonymen Datenerfassung" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 -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 erfasst anonyme Daten, um die Druckqualität und Benutzererfahrung zu steigern. Nachfolgend ist ein Beispiel aller Daten, die geteilt werden:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Ich möchte keine anonymen Daten senden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Senden von anonymen Daten erlauben" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 msgctxt "@title" msgid "Build Plate Leveling" msgstr "Nivellierung der Druckplatte" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 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 "Um sicherzustellen, dass Ihre Drucke hervorragend werden, können Sie nun Ihre Druckplatte justieren. Wenn Sie auf „Gehe zur nächsten Position“ klicken, bewegt sich die Düse zu den verschiedenen Positionen, die justiert werden können." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 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 "Legen Sie für jede Position ein Blatt Papier unter die Düse und stellen Sie die Höhe der Druckplatte ein. Die Höhe der Druckplatte ist korrekt, wenn das Papier von der Spitze der Düse leicht berührt wird." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 msgctxt "@action:button" msgid "Start Build Plate Leveling" msgstr "Nivellierung der Druckplatte starten" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 msgctxt "@action:button" msgid "Move to Next Position" msgstr "Gehe zur nächsten Position" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Wählen Sie bitte alle Upgrades für dieses Ultimaker-Original" +#: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "Upgrades wählen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this UltiMaker Original" +msgstr "Wählen Sie bitte alle Upgrades für dieses UltiMaker-Original" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 msgctxt "@label" msgid "Heated Build Plate (official kit or self-built)" msgstr "Beheizte Druckplatte (offizielles Kit oder Eigenbau)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Anschluss an vernetzten Drucker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -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 "Um direkt auf Ihrem Drucker über das Netzwerk zu drucken, muss der Drucker über ein Netzwerkkabel oder per WLAN mit dem Netzwerk verbunden sein. Wenn Sie Cura nicht mit Ihrem Drucker verbinden, können Sie G-Code-Dateien auf einen USB-Stick kopieren und diesen am Drucker anschließen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Wählen Sie Ihren Drucker aus der folgenden Liste aus:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 -msgctxt "@action:button" -msgid "Edit" -msgstr "Bearbeiten" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:140 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:321 -msgctxt "@action:button" -msgid "Remove" -msgstr "Entfernen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Aktualisieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 -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" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 -msgctxt "@label" -msgid "Type" -msgstr "Typ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 -msgctxt "@label" -msgid "Firmware version" -msgstr "Firmware-Version" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 -msgctxt "@label" -msgid "Address" -msgstr "Adresse" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Dieser Drucker ist nicht eingerichtet um eine Gruppe von Druckern anzusteuern." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Dieser Drucker steuert eine Gruppe von %1 Druckern an." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "Der Drucker unter dieser Adresse hat nicht reagiert." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 -msgctxt "@action:button" -msgid "Connect" -msgstr "Verbinden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Ungültige IP-Adresse" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Bitte eine gültige IP-Adresse eingeben." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Druckeradresse" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Geben Sie die IP-Adresse Ihres Druckers in das Netzwerk ein." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Konfigurationsänderungen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 -msgctxt "@action:button" -msgid "Override" -msgstr "Überschreiben" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "Der zugewiesene Drucker %1 erfordert die folgende Konfigurationsänderung:" -msgstr[1] "Der zugewiesene Drucker %1 erfordert die folgenden Konfigurationsänderungen:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "Der Drucker %1 wurde zugewiesen, allerdings enthält der Auftrag eine unbekannte Materialkonfiguration." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Material %1 von %2 auf %3 wechseln." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "%3 als Material %1 laden (Dies kann nicht übergangen werden)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Print Core %1 von %2 auf %3 wechseln." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Druckplatte auf %1 wechseln (Dies kann nicht übergangen werden)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "Überschreiben verwendet die definierten Einstellungen mit der vorhandenen Druckerkonfiguration. Dies kann zu einem fehlgeschlagenen Druck führen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:178 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:175 -msgctxt "@label" -msgid "Glass" -msgstr "Glas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154 -msgctxt "@label" -msgid "Aluminum" -msgstr "Aluminium" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Vorziehen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Löschen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:284 -msgctxt "@label" -msgid "Resume" -msgstr "Zurückkehren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Wird pausiert..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Wird fortgesetzt..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:288 -msgctxt "@label" -msgid "Pause" -msgstr "Pausieren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Wird abgebrochen..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Abbrechen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:142 -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 "Soll dieser %1 wirklich an den Anfang der Warteschlange vorgezogen werden?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Druckauftrag vorziehen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:151 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "Soll %1 wirklich gelöscht werden?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Druckauftrag löschen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:160 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "Möchten Sie %1 wirklich abbrechen?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Drucken abbrechen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Drucker verwalten" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:239 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Damit Sie die Warteschlange aus der Ferne verwalten können, müssen Sie die Druckfirmware aktualisieren." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:275 -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 "Webcam-Feeds für Cloud-Drucker können nicht in Ultimaker Cura angezeigt werden. Klicken Sie auf „Drucker verwalten“, um die Ultimaker Digital Factory zu besuchen und diese Webcam zu sehen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Lädt..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Nicht verfügbar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Nicht erreichbar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347 -msgctxt "@label:status" -msgid "Idle" -msgstr "Leerlauf" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Vorbereitung..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Printing" -msgstr "Drucken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397 -msgctxt "@label" -msgid "Untitled" -msgstr "Unbenannt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:412 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anonym" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:433 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Erfordert Konfigurationsänderungen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:447 -msgctxt "@action:button" -msgid "Details" -msgstr "Details" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Drucker nicht verfügbar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 -msgctxt "@label" -msgid "First available" -msgstr "Zuerst verfügbar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Abgebrochen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 -msgctxt "@label:status" -msgid "Finished" -msgstr "Beendet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Wird abgebrochen..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Failed" -msgstr "Fehlgeschlagen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Wird pausiert..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Paused" -msgstr "Pausiert" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Wird fortgesetzt..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Action required" -msgstr "Handlung erforderlich" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Fertigstellung %1 um %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 -msgctxt "@label" -msgid "Queued" -msgstr "In Warteschlange" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Im Browser verwalten" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:90 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "Die Warteschlange enthält keine Druckaufträge. Slicen Sie einen Auftrag und schicken Sie ihn ab, um ihn zur Warteschlange hinzuzufügen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:98 -msgctxt "@label" -msgid "Print jobs" -msgstr "Druckaufträge" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107 -msgctxt "@label" -msgid "Total print time" -msgstr "Druckdauer insgesamt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116 -msgctxt "@label" -msgid "Waiting for" -msgstr "Warten auf" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Drucken über Netzwerk" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 -msgctxt "@action:button" -msgid "Print" -msgstr "Drucken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 -msgctxt "@label" -msgid "Printer selection" -msgstr "Druckerauswahl" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 +#: plugins/UltimakerMachineActions/plugin.json +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.)" + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "UltiMaker-Maschinenabläufe" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Aktualisiert Konfigurationen von Cura 2.1 auf Cura 2.2." + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Upgrade von Version 2.1 auf 2.2" + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Aktualisiert Konfigurationen von Cura 2.2 auf Cura 2.4." + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Upgrade von Version 2.2 auf 2.4" + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Aktualisiert Konfigurationen von Cura 2.5 auf Cura 2.6." + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Upgrade von Version 2.5 auf 2.6" + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Aktualisiert Konfigurationen von Cura 2.6 auf Cura 2.7." + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Upgrade von Version 2.6 auf 2.7" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Aktualisiert Konfigurationen von Cura 2.7 auf Cura 3.0." + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Upgrade von Version 2.7 auf 3.0" + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Aktualisiert Konfigurationen von Cura 3.0 auf Cura 3.1." + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Upgrade von Version 3.0 auf 3.1" + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Aktualisiert Konfigurationen von Cura 3.2 auf Cura 3.3." + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Upgrade von Version 3.2 auf 3.3" + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Aktualisiert Konfigurationen von Cura 3.3 auf Cura 3.4." + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Upgrade von Version 3.3 auf 3.4" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Aktualisiert Konfigurationen von Cura 3.4 auf Cura 3.5." + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Upgrade von Version 3.4 auf 3.5" + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Aktualisiert Konfigurationen von Cura 3.5 auf Cura 4.0." + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Upgrade von Version 3.5 auf 4.0" + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Aktualisiert Konfigurationen von Cura 4.0 auf Cura 4.1." + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Upgrade von Version 4.0 auf 4.1" + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Upgrade von Version 4.11 auf 4.12" + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Aktualisiert Konfigurationen von Cura 4.13 auf Cura 5.0." + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Upgrade von Version 4.13 auf 5.0" + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Aktualisiert Konfigurationen von Cura 4.1 auf Cura 4.2." + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Upgrade von Version 4.1 auf 4.2" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Aktualisiert Konfigurationen von Cura 4.2 auf Cura 4.3." + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Upgrade von Version 4.2 auf 4.3" + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Aktualisiert Konfigurationen von Cura 4.3 auf Cura 4.4." + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Upgrade von Version 4.3 auf 4.4" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Upgrade von Version 4.4 auf 4.5" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Upgrade von Version 4.5 auf 4.6" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Upgrade von Version 4.6.0 auf 4.6.2" + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Upgrade von Version 4.6.2 auf 4.7" + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Upgrade von Version 4.7 auf 4.8" + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Upgrade von Version 4.8 auf 4.9" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Upgrade von Version 4.9 auf 4.10" + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Upgrade von Version 5.2 auf 5.3" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "" + +#: plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3D-Datei" + +#: plugins/X3DReader/plugin.json +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Bietet Unterstützung für das Lesen von X3D-Dateien." + +#: plugins/X3DReader/plugin.json +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D-Reader" + +#: plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Röntgen-Ansicht" + +#: plugins/XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Stellt die Röntgen-Ansicht bereit." + +#: plugins/XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Röntgen-Ansicht" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Materialprofile" + +#: plugins/XmlMaterialProfile/plugin.json +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." + +#: resources/qml/Account/AccountWidget.qml:24 msgctxt "@action:button" msgid "Sign in" msgstr "Anmelden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: resources/qml/Account/GeneralOperations.qml:19 +#: resources/qml/WelcomePages/CloudContent.qml:64 msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Bei der Ultimaker-Plattform anmelden" +msgid "Sign in to the UltiMaker platform" +msgstr "Bei der UltiMaker-Plattform anmelden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 +#: resources/qml/Account/GeneralOperations.qml:39 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" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" msgstr "" "- Materialprofile und Plug-ins aus dem Marketplace hinzufügen\n" "- Materialprofile und Plug-ins sichern und synchronisieren\n" -"- Ideenaustausch mit und Hilfe von mehr als 48.000 Benutzern in der Ultimaker Community" +"- Ideenaustausch mit und Hilfe von mehr als 48.000 Benutzern in der UltiMaker Community" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 +#: resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "Kostenloses Ultimaker-Konto erstellen" +msgid "Create a free UltiMaker account" +msgstr "Kostenloses UltiMaker-Konto erstellen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 +#: resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "Überprüfung läuft ..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 +#: resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "Konto wurde synchronisiert" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 +#: resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "Irgendetwas ist schief gelaufen ..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 +#: resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "Ausstehende Updates installieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 +#: resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "Nach Updates für das Konto suchen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +#: resources/qml/Account/UserOperations.qml:78 msgctxt "@label The argument is a timestamp" msgid "Last update: %1" msgstr "Letztes Update: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +#: resources/qml/Account/UserOperations.qml:107 msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimaker‑Konto" +msgid "UltiMaker Account" +msgstr "UltiMaker‑Konto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +#: resources/qml/Account/UserOperations.qml:126 msgctxt "@button" msgid "Sign Out" msgstr "Abmelden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" msgid "No time estimation available" msgstr "Keine Zeitschätzung verfügbar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:77 msgctxt "@label" msgid "No cost estimation available" msgstr "Keine Kostenschätzung verfügbar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:127 msgctxt "@button" msgid "Preview" msgstr "Vorschau" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" msgid "Time estimation" msgstr "Zeitschätzung" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 +#: resources/qml/ActionPanel/PrintJobInformation.qml:107 msgctxt "@label" msgid "Material estimation" msgstr "Materialschätzung" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:156 +#: resources/qml/ActionPanel/PrintJobInformation.qml:156 msgctxt "@label m for meter" msgid "%1m" msgstr "%1 m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:157 +#: resources/qml/ActionPanel/PrintJobInformation.qml:157 msgctxt "@label g for grams" msgid "%1g" msgstr "%1 g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:54 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Das Slicing läuft..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:78 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:78 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "Slicing nicht möglich" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Processing" msgstr "Verarbeitung läuft" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Slice" msgstr "Slice" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:115 msgctxt "@label" msgid "Start the slicing process" msgstr "Slicing-Vorgang starten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:132 msgctxt "@button" msgid "Cancel" msgstr "Abbrechen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 +#: resources/qml/Actions.qml:81 msgctxt "@action:inmenu" msgid "Show Online Troubleshooting" msgstr "Online-Fehlerbehebung anzeigen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 +#: resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "Umschalten auf Vollbild-Modus" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 +#: resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "Vollbildmodus beenden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 +#: resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "&Rückgängig machen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 +#: resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "&Wiederholen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 +#: resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "&Beenden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 +#: resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "3D-Ansicht" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 +#: resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Vorderansicht" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 +#: resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "Draufsicht" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 +#: resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "Ansicht von unten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 +#: resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "Ansicht von links" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 +#: resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "Ansicht von rechts" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 +#: resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Cura konfigurieren..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 +#: resources/qml/Actions.qml:197 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "&Drucker hinzufügen..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 +#: resources/qml/Actions.qml:203 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "Dr&ucker verwalten..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 +#: resources/qml/Actions.qml:210 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Materialien werden verwaltet..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:216 -msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate." +#: resources/qml/Actions.qml:218 +msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." msgid "Add more materials from Marketplace" msgstr "Weiteres Material aus Marketplace hinzufügen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 +#: resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "&Profil mit aktuellen Einstellungen/Überschreibungen aktualisieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 +#: resources/qml/Actions.qml:233 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "&Aktuelle Änderungen verwerfen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 +#: resources/qml/Actions.qml:245 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "P&rofil von aktuellen Einstellungen/Überschreibungen erstellen..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 +#: resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "Profile verwalten..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 +#: resources/qml/Actions.qml:259 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Online-&Dokumentation anzeigen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 +#: resources/qml/Actions.qml:267 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "&Fehler melden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 +#: resources/qml/Actions.qml:275 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "Neuheiten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 +#: resources/qml/Actions.qml:289 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "Über..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 +#: resources/qml/Actions.qml:296 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "Ausgewählte löschen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 +#: resources/qml/Actions.qml:306 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "Ausgewählte zentrieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 +#: resources/qml/Actions.qml:315 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "Ausgewählte vervielfachen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 +#: resources/qml/Actions.qml:324 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Modell löschen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 +#: resources/qml/Actions.qml:332 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Modell auf Druckplatte ze&ntrieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 +#: resources/qml/Actions.qml:338 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "Modelle &gruppieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 +#: resources/qml/Actions.qml:358 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Gruppierung für Modelle aufheben" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 +#: resources/qml/Actions.qml:368 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "Modelle &zusammenführen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 +#: resources/qml/Actions.qml:378 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "Modell &multiplizieren..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 +#: resources/qml/Actions.qml:385 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "Alle Modelle wählen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 +#: resources/qml/Actions.qml:395 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "Druckplatte reinigen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 +#: resources/qml/Actions.qml:405 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "Alle Modelle neu laden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 +#: resources/qml/Actions.qml:414 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Alle Modelle anordnen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 +#: resources/qml/Actions.qml:422 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Anordnung auswählen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 +#: resources/qml/Actions.qml:429 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Alle Modellpositionen zurücksetzen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 +#: resources/qml/Actions.qml:436 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "Alle Modelltransformationen zurücksetzen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 +#: resources/qml/Actions.qml:445 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Datei(en) öffnen..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 +#: resources/qml/Actions.qml:455 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Neues Projekt..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 +#: resources/qml/Actions.qml:462 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Konfigurationsordner anzeigen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 +#: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Sichtbarkeit einstellen wird konfiguriert..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 msgctxt "@label:button" msgid "My printers" msgstr "Meine Drucker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 msgctxt "@tooltip:button" msgid "Monitor printers in Ultimaker Digital Factory." msgstr "Überwachen Sie Drucker in der Ultimaker Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Erstellen Sie Druckprojekte in der digitalen Bibliothek." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 msgctxt "@label:button" msgid "Print jobs" msgstr "Druckaufträge" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 msgctxt "@tooltip:button" msgid "Monitor print jobs and reprint from your print history." msgstr "Überwachen Sie Druckaufträge und drucken Sie sie aus Ihrem Druckprotokoll nach." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." -msgstr "Erweitern Sie Ultimaker Cura durch Plugins und Materialprofile." +msgid "Extend UltiMaker Cura with plugins and material profiles." +msgstr "Erweitern Sie UltiMaker Cura durch Plugins und Materialprofile." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." -msgstr "Werden Sie ein 3D-Druck-Experte mittels des E-Learning von Ultimaker." +msgid "Become a 3D printing expert with UltiMaker e-learning." +msgstr "Werden Sie ein 3D-Druck-Experte mittels des E-Learning von UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Ultimaker Kundendienst" +msgid "UltiMaker support" +msgstr "UltiMaker Kundendienst" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." -msgstr "Erfahren Sie, wie Sie mit Ultimaker Cura Ihre Arbeit beginnen können." +msgid "Learn how to get started with UltiMaker Cura." +msgstr "Erfahren Sie, wie Sie mit UltiMaker Cura Ihre Arbeit beginnen können." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 msgctxt "@label:button" msgid "Ask a question" msgstr "Eine Frage stellen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Wenden Sie sich an die Ultimaker Community." +msgid "Consult the UltiMaker Community." +msgstr "Wenden Sie sich an die UltiMaker Community." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 msgctxt "@label:button" msgid "Report a bug" msgstr "Einen Fehler melden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Lassen Sie es die Entwickler wissen, falls etwas schief läuft." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Besuchen Sie die Ultimaker-Website." +msgid "Visit the UltiMaker website." +msgstr "Besuchen Sie die UltiMaker-Website." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 +#: resources/qml/ColorDialog.qml:110 msgctxt "@label" msgid "Hex" msgstr "Hexadezimal" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 +#: resources/qml/Cura.qml:256 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "Dieses Paket wird nach einem Neustart installiert." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +#: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14 msgctxt "@title:tab" msgid "General" msgstr "Allgemein" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +#: resources/qml/Cura.qml:470 msgctxt "@title:tab" msgid "Settings" msgstr "Einstellungen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:468 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:17 +#: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17 msgctxt "@title:tab" msgid "Printers" msgstr "Drucker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:470 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70 +#: resources/qml/Cura.qml:474 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:70 msgctxt "@title:tab" msgid "Materials" msgstr "Materialien" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:472 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:57 +#: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57 msgctxt "@title:tab" msgid "Profiles" msgstr "Profile" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +#: resources/qml/Cura.qml:581 msgctxt "@title:window %1 is the application name" msgid "Closing %1" msgstr "%1 wird geschlossen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:590 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:599 +#: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591 msgctxt "@label %1 is the application name" msgid "Are you sure you want to exit %1?" msgstr "Möchten Sie %1 wirklich beenden?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:637 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 +#: resources/qml/Cura.qml:629 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 msgctxt "@title:window" msgid "Open file(s)" msgstr "Datei(en) öffnen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +#: resources/qml/Cura.qml:734 msgctxt "@window:title" msgid "Install Package" msgstr "Paket installieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +#: resources/qml/Cura.qml:741 msgctxt "@title:window" msgid "Open File(s)" msgstr "Datei(en) öffnen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +#: resources/qml/Cura.qml:743 msgctxt "@text:window" msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." msgstr "Es wurden eine oder mehrere G-Code-Datei(en) innerhalb der von Ihnen gewählten Dateien gefunden. Sie können nur eine G-Code-Datei auf einmal öffnen. Wenn Sie eine G-Code-Datei öffnen möchten wählen Sie bitte nur eine Datei." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:831 +#: resources/qml/Cura.qml:828 msgctxt "@title:window" msgid "Add Printer" msgstr "Drucker hinzufügen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +#: resources/qml/Cura.qml:836 msgctxt "@title:window" msgid "What's New" msgstr "Neuheiten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: resources/qml/Cura.qml:890 +msgctxt "@title:window" +msgid "Save Custom Profile" +msgstr "Benutzerdefiniertes Profil" + +#: resources/qml/Cura.qml:891 +msgctxt "@textfield:placeholder" +msgid "New Custom Profile" +msgstr "Benutzerdefiniertes Profil" + +#: resources/qml/Cura.qml:892 +msgctxt "@info" +msgid "Custom profile name:" +msgstr "Benutzerdefiniertes Profil" + +#: resources/qml/Cura.qml:909 +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 "Nur vom Benutzer geänderte Einstellungen werden im benutzerdefinierten Profil gespeichert.
    Für Materialien, bei denen dies unterstützt ist, übernimmt das neue benutzerdefinierte Profil Eigenschaften von %1." + +#: resources/qml/Cura.qml:917 +msgctxt "@action:button" +msgid "Learn more about Cura print profiles" +msgstr "Mehr über Druckprofile von Cura erfahren" + +#: resources/qml/Cura.qml:926 +msgctxt "@button" +msgid "Save new profile" +msgstr "" + +#: resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "Über %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: resources/qml/Dialogs/AboutDialog.qml:59 msgctxt "@label" msgid "version: %1" msgstr "Version: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: resources/qml/Dialogs/AboutDialog.qml:74 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Komplettlösung für den 3D-Druck mit geschmolzenem Filament." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: resources/qml/Dialogs/AboutDialog.qml:87 msgctxt "@info:credit" msgid "" -"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura is developed by UltiMaker in cooperation with the community.\n" "Cura proudly uses the following open source projects:" msgstr "" -"Cura wurde von Ultimaker B.V. in Zusammenarbeit mit der Community entwickelt.\n" +"Cura wurde von UltiMaker in Zusammenarbeit mit der Community entwickelt.\n" "Cura verwendet mit Stolz die folgenden Open Source-Projekte:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label Description for application component" msgid "Graphical user interface" msgstr "Grafische Benutzerschnittstelle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label Description for application component" msgid "Application framework" msgstr "Anwendungsrahmenwerk" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label Description for application component" msgid "G-code generator" msgstr "G-Code-Generator" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label Description for application component" msgid "Interprocess communication library" msgstr "Bibliothek Interprozess-Kommunikation" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:142 +msgctxt "@label Description for application component" msgid "Python bindings for libnest2d" msgstr "Python-Bindungen für libnest2d" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label Description for application component" msgid "Polygon packing library, developed by Prusa Research" msgstr "Polygon-Packaging-Bibliothek, entwickelt von Prusa Research" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:144 +msgctxt "@label Description for application component" msgid "Support library for handling 3MF files" msgstr "Support-Bibliothek für die Handhabung von 3MF-Dateien" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:145 +msgctxt "@label Description for application component" msgid "Support library for file metadata and streaming" msgstr "Support-Bibliothek für Datei-Metadaten und Streaming" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Programmiersprache" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label Description for application dependency" msgid "GUI framework" msgstr "GUI-Rahmenwerk" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label Description for application dependency" msgid "GUI framework bindings" msgstr "GUI-Rahmenwerk Einbindungen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label Description for application dependency" msgid "C/C++ Binding library" msgstr "C/C++ Einbindungsbibliothek" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:152 +msgctxt "@label Description for application dependency" msgid "Data interchange format" msgstr "Format Datenaustausch" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "Font" msgstr "Schriftart" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label Description for application dependency" msgid "Polygon clipping library" msgstr "Bibliothek für Polygon-Beschneidung" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label Description for application dependency" msgid "JSON parser" -msgstr "" +msgstr "JSON-Parser" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:158 +msgctxt "@label Description for application dependency" msgid "Utility functions, including an image loader" -msgstr "" +msgstr "Utility-Funktionen, einschließlich Bildlader" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:159 +msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" -msgstr "" +msgstr "Utility-Bibliothek, einschließlich Voronoi-Generierung" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:162 +#: resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label Description for application dependency" msgid "Root Certificates for validating SSL trustworthiness" -msgstr "" +msgstr "Root-Zertifikate zur Validierung der SSL-Vertrauenswürdigkeit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label Description for application dependency" msgid "Compatibility between Python 2 and 3" -msgstr "" +msgstr "Kompatibilität zwischen Python 2 und 3" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label Description for application dependency" msgid "Support library for system keyring access" msgstr "Unterstützungsbibliothek für den Zugriff auf den Systemschlüsselbund" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label Description for application dependency" msgid "Support library for faster math" msgstr "Support-Bibliothek für schnelleres Rechnen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label Description for application dependency" msgid "Support library for handling STL files" msgstr "Support-Bibliothek für die Handhabung von STL-Dateien" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label Description for application dependency" msgid "Python bindings for Clipper" msgstr "Python-Anbindungen für Clipper" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Bibliothek für serielle Kommunikation" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label Description for application dependency" msgid "Support library for scientific computing" msgstr "Support-Bibliothek für wissenschaftliche Berechnung" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 -msgctxt "@Label" +#: resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@Label Description for application dependency" msgid "Python Error tracking library" msgstr "Python-Fehlerverfolgungs-Bibliothek" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:172 +msgctxt "@label Description for application dependency" msgid "Support library for handling triangular meshes" msgstr "Support-Bibliothek für die Handhabung von dreieckigen Netzen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:173 +msgctxt "@label Description for application dependency" msgid "ZeroConf discovery library" msgstr "Bibliothek für ZeroConf-Erkennung" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label Description for development tool" msgid "Universal build system configuration" -msgstr "" +msgstr "Universelle Build-Systemkonfiguration" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label Description for development tool" msgid "Dependency and package manager" -msgstr "" +msgstr "Abhängigkeits- und Paketmanager" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label Description for development tool" msgid "Packaging Python-applications" -msgstr "" +msgstr "Verpacken von Python-Anwendungen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:179 +msgctxt "@label Description for development tool" msgid "Linux cross-distribution application deployment" msgstr "Distributionsunabhängiges Format für Linux-Anwendungen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:180 +msgctxt "@label Description for development tool" msgid "Generating Windows installers" -msgstr "" +msgstr "Generieren von Windows-Installern" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 msgctxt "@title:window" msgid "Open project file" msgstr "Projektdatei öffnen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84 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 "Dies ist eine Cura-Projektdatei. Möchten Sie diese als Projekt öffnen oder die Modelle hieraus importieren?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:90 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91 msgctxt "@text:window" msgid "Remember my choice" msgstr "Meine Auswahl merken" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105 msgctxt "@action:button" msgid "Open as project" msgstr "Als Projekt öffnen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110 msgctxt "@action:button" msgid "Import models" msgstr "Modelle importieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:17 +msgctxt "@title:window" +msgid "Select Printer" +msgstr "Drucker auswählen" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:54 +msgctxt "@title:label" +msgid "Compatible Printers" +msgstr "Kompatible Drucker" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:110 +msgctxt "@description" +msgid "No compatible printers, that are currently online, were found." +msgstr "Es wurden keine kompatiblen Drucker gefunden, die derzeit online sind." + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Änderungen verwerfen oder übernehmen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:49 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64 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 "" @@ -4178,1433 +4877,1292 @@ msgstr "" "Möchten Sie diese geänderten Einstellungen nach einem Profilwechsel beibehalten?\n" "Sie können die Änderungen auch verwerfen, um die Standardeinstellungen von '%1' zu laden." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90 msgctxt "@title:column" msgid "Profile settings" msgstr "Profileinstellungen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92 msgctxt "@title:column" msgid "Current changes" msgstr "Aktuelle Änderungen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:799 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123 +#: resources/qml/Preferences/GeneralPage.qml:820 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Stets nachfragen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Verwerfen und zukünftig nicht mehr nachfragen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Übernehmen und zukünftig nicht mehr nachfragen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157 msgctxt "@action:button" msgid "Discard changes" msgstr "Änderungen verwerfen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164 msgctxt "@action:button" msgid "Keep changes" msgstr "Änderungen speichern" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171 +msgctxt "@action:button" +msgid "Save as new custom profile" +msgstr "Benutzerdefiniertes Profil" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178 +msgctxt "@action:button" +msgid "Save changes" +msgstr "Änderungen behalten" + +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 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 "Es wurden eine oder mehrere Projektdatei(en) innerhalb der von Ihnen gewählten Dateien gefunden. Sie können nur eine Projektdatei auf einmal öffnen. Es wird empfohlen, nur Modelle aus diesen Dateien zu importieren. Möchten Sie fortfahren?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 msgctxt "@action:button" msgid "Import all as models" msgstr "Alle als Modelle importieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 +#: resources/qml/Dialogs/RenameDialog.qml:23 +msgctxt "@title:window" +msgid "Rename" +msgstr "Umbenennen" + +#: resources/qml/Dialogs/RenameDialog.qml:24 +msgctxt "@info" +msgid "Please provide a new name." +msgstr "Bitte geben Sie einen neuen Namen ein." + +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 msgctxt "@title:window" msgid "Save Project" msgstr "Projekt speichern" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177 msgctxt "@action:label" msgid "Extruder %1" msgstr "Extruder %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & Material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195 msgctxt "@action:label" msgid "Material" msgstr "Material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "Projektzusammenfassung beim Speichern nicht erneut anzeigen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298 msgctxt "@action:button" msgid "Save" msgstr "Speichern" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -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" -msgstr[0] "Ausgewähltes Modell drucken mit %1" -msgstr[1] "Ausgewählte Modelle drucken mit %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:93 +#: resources/qml/JobSpecs.qml:93 msgctxt "@text Print job name" msgid "Untitled" msgstr "Unbenannt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 +#: resources/qml/MainWindow/ApplicationMenu.qml:63 +#: resources/qml/Menus/SettingsMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&Einstellungen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 +#: resources/qml/MainWindow/ApplicationMenu.qml:87 msgctxt "@title:window" msgid "New project" msgstr "Neues Projekt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88 +#: resources/qml/MainWindow/ApplicationMenu.qml:88 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 "Möchten Sie wirklich ein neues Projekt beginnen? Damit werden das Druckbett und alle nicht gespeicherten Einstellungen gelöscht." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135 +#: resources/qml/MainWindow/MainWindowHeader.qml:135 msgctxt "@action:button" msgid "Marketplace" msgstr "Marktplatz" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +#: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 msgctxt "@header" msgid "Configurations" msgstr "Konfigurationen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Diese Konfigurationen sind nicht verfügbar, weil %1 nicht erkannt wird. Besuchen Sie bitte %2 für das Herunterladen des korrekten Materialprofils." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 msgctxt "@label" msgid "Marketplace" msgstr "Marktplatz" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 msgctxt "@label" msgid "Loading available configurations from the printer..." msgstr "Verfügbare Konfigurationen werden von diesem Drucker geladen..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 msgctxt "@label" msgid "The configurations are not available because the printer is disconnected." msgstr "Die Konfigurationen sind nicht verfügbar, da der Drucker getrennt ist." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 msgctxt "@tooltip" msgid "The configuration of this extruder is not allowed, and prohibits slicing." msgstr "Die Konfiguration dieses Extruders ist nicht zulässig und verhindert das Slicing." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 msgctxt "@tooltip" msgid "There are no profiles matching the configuration of this extruder." msgstr "Es gibt keine Profile, die mit der Konfiguration dieses Extruders übereinstimmen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 msgctxt "@label" msgid "Select configuration" msgstr "Konfiguration wählen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 msgctxt "@label" msgid "Configurations" msgstr "Konfigurationen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 msgctxt "@header" msgid "Custom" msgstr "Benutzerdefiniert" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:62 -msgctxt "@label" -msgid "Printer" -msgstr "Drucker" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:217 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173 msgctxt "@label" msgid "Enabled" msgstr "Aktiviert" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222 msgctxt "@label" msgid "Material" msgstr "Material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348 msgctxt "@label" msgid "Use glue for better adhesion with this material combination." msgstr "Für diese Materialkombination Kleber für eine bessere Haftung verwenden." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:29 +#: resources/qml/Menus/ContextMenu.qml:29 msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "Ausgewähltes Modell drucken mit:" msgstr[1] "Ausgewählte Modelle drucken mit:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:92 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Ausgewähltes Modell multiplizieren" msgstr[1] "Ausgewählte Modelle multiplizieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:123 msgctxt "@label" msgid "Number of Copies" msgstr "Anzahl Kopien" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/EditMenu.qml:12 +#: resources/qml/Menus/EditMenu.qml:12 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "&Bearbeiten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ExtensionMenu.qml:13 +#: resources/qml/Menus/ExtensionMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "Er&weiterungen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 +#: resources/qml/Menus/FileMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "&Datei" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:45 +#: resources/qml/Menus/FileMenu.qml:45 msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Projekt speichern ..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:78 +#: resources/qml/Menus/FileMenu.qml:78 msgctxt "@title:menu menubar:file" msgid "&Export..." msgstr "&Exportieren..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:89 +#: resources/qml/Menus/FileMenu.qml:89 msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Auswahl exportieren..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/HelpMenu.qml:14 +#: resources/qml/Menus/HelpMenu.qml:14 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "&Hilfe" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +#: resources/qml/Menus/MaterialMenu.qml:13 msgctxt "@label:category menu label" msgid "Material" msgstr "Material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:53 +#: resources/qml/Menus/MaterialMenu.qml:53 msgctxt "@label:category menu label" msgid "Favorites" msgstr "Favoriten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:78 +#: resources/qml/Menus/MaterialMenu.qml:78 msgctxt "@label:category menu label" msgid "Generic" msgstr "Generisch" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +#: resources/qml/Menus/OpenFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open File(s)..." msgstr "Datei(en) öffnen..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PreferencesMenu.qml:21 +#: resources/qml/Menus/PreferencesMenu.qml:21 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "&Konfiguration" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:13 +#: resources/qml/Menus/PrinterMenu.qml:13 msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "Dr&ucker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:17 +#: resources/qml/Menus/PrinterMenu.qml:17 msgctxt "@label:category menu label" msgid "Network enabled printers" msgstr "Netzwerkfähige Drucker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:50 +#: resources/qml/Menus/PrinterMenu.qml:50 msgctxt "@label:category menu label" msgid "Local printers" msgstr "Lokale Drucker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +#: resources/qml/Menus/RecentFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open &Recent" msgstr "&Zuletzt geöffnet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +#: resources/qml/Menus/SaveProjectMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Save Project..." msgstr "Projekt speichern..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:34 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:49 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Als aktiven Extruder festlegen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:55 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Extruder aktivieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:63 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Extruder deaktivieren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 msgctxt "@action:inmenu" msgid "Visible Settings" msgstr "Sichtbare Einstellungen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 msgctxt "@action:inmenu" msgid "Collapse All Categories" msgstr "Alle Kategorien schließen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 msgctxt "@action:inmenu" msgid "Manage Setting Visibility..." msgstr "Sichtbarkeit einstellen verwalten..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:13 +#: resources/qml/Menus/SettingsMenu.qml:34 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Material" + +#: resources/qml/Menus/SettingsMenu.qml:49 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Als aktiven Extruder festlegen" + +#: resources/qml/Menus/SettingsMenu.qml:55 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Extruder aktivieren" + +#: resources/qml/Menus/SettingsMenu.qml:63 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Extruder deaktivieren" + +#: resources/qml/Menus/ViewMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&View" msgstr "&Ansicht" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:17 +#: resources/qml/Menus/ViewMenu.qml:17 msgctxt "@action:inmenu menubar:view" msgid "&Camera position" msgstr "&Kameraposition" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:30 +#: resources/qml/Menus/ViewMenu.qml:30 msgctxt "@action:inmenu menubar:view" msgid "Camera view" msgstr "Kameraansicht" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 +#: resources/qml/Menus/ViewMenu.qml:48 msgctxt "@action:inmenu menubar:view" msgid "Perspective" msgstr "Ansicht" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +#: resources/qml/Menus/ViewMenu.qml:59 msgctxt "@action:inmenu menubar:view" msgid "Orthographic" msgstr "Orthogonal" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:115 +#: resources/qml/MonitorButton.qml:115 msgctxt "@label:MonitorStatus" msgid "Not connected to a printer" msgstr "Nicht mit einem Drucker verbunden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 +#: resources/qml/MonitorButton.qml:119 msgctxt "@label:MonitorStatus" msgid "Printer does not accept commands" msgstr "Drucker nimmt keine Befehle an" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:129 +#: resources/qml/MonitorButton.qml:129 msgctxt "@label:MonitorStatus" msgid "In maintenance. Please check the printer" msgstr "In Wartung. Den Drucker überprüfen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:140 +#: resources/qml/MonitorButton.qml:140 msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Verbindung zum Drucker wurde unterbrochen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +#: resources/qml/MonitorButton.qml:142 msgctxt "@label:MonitorStatus" msgid "Printing..." msgstr "Es wird gedruckt..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +#: resources/qml/MonitorButton.qml:145 msgctxt "@label:MonitorStatus" msgid "Paused" msgstr "Pausiert" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +#: resources/qml/MonitorButton.qml:148 msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Vorbereitung läuft..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +#: resources/qml/MonitorButton.qml:150 msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Bitte den Ausdruck entfernen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +#: resources/qml/MonitorButton.qml:318 msgctxt "@label" msgid "Abort Print" msgstr "Drucken abbrechen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:327 +#: resources/qml/MonitorButton.qml:327 msgctxt "@label" msgid "Are you sure you want to abort the print?" msgstr "Soll das Drucken wirklich abgebrochen werden?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:109 +#: resources/qml/ObjectItemButton.qml:109 msgctxt "@label" msgid "Is printed as support." msgstr "Wird als Stückstruktur gedruckt." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:112 +#: resources/qml/ObjectItemButton.qml:112 msgctxt "@label" msgid "Other models overlapping with this model are modified." msgstr "Andere Modelle, die sich mit diesem Modell überschneiden, werden angepasst." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:115 +#: resources/qml/ObjectItemButton.qml:115 msgctxt "@label" msgid "Infill overlapping with this model is modified." msgstr "Überlappende Füllung wird bei diesem Modell angepasst." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:118 +#: resources/qml/ObjectItemButton.qml:118 msgctxt "@label" msgid "Overlaps with this model are not supported." msgstr "Überlappungen mit diesem Modell werden nicht unterstützt." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:125 +#: resources/qml/ObjectItemButton.qml:125 msgctxt "@label %1 is the number of settings it overrides." msgid "Overrides %1 setting." msgid_plural "Overrides %1 settings." msgstr[0] "Überschreibt %1-Einstellung." msgstr[1] "Überschreibt %1-Einstellungen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 +#: resources/qml/ObjectSelector.qml:59 msgctxt "@label" msgid "Object list" msgstr "Objektliste" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:131 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:24 +#: resources/qml/Preferences/GeneralPage.qml:134 +#: resources/qml/Preferences/SettingVisibilityPage.qml:24 msgctxt "@action:button" msgid "Defaults" msgstr "Standardeinstellungen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +#: resources/qml/Preferences/GeneralPage.qml:172 msgctxt "@label" msgid "Interface" msgstr "Schnittstelle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +#: resources/qml/Preferences/GeneralPage.qml:215 msgctxt "@heading" msgid "-- incomplete --" msgstr "-- unvollständig --" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +#: resources/qml/Preferences/GeneralPage.qml:261 msgctxt "@label" msgid "Currency:" msgstr "Währung:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:274 +#: resources/qml/Preferences/GeneralPage.qml:277 msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." msgid "Theme*:" msgstr "Thema*:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +#: resources/qml/Preferences/GeneralPage.qml:323 msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Bei Änderung der Einstellungen automatisch schneiden." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +#: resources/qml/Preferences/GeneralPage.qml:331 msgctxt "@option:check" msgid "Slice automatically" msgstr "Automatisch schneiden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:337 +#: resources/qml/Preferences/GeneralPage.qml:340 +msgctxt "@info:tooltip" +msgid "Show an icon and notifications in the system notification area." +msgstr "Symbol und Benachrichtigungen im Infobereich des Systems anzeigen." + +#: resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Add icon to system tray *" +msgstr "Symbol zur Taskleiste hinzufügen*" + +#: resources/qml/Preferences/GeneralPage.qml:357 msgctxt "@label" msgid "*You will need to restart the application for these changes to have effect." msgstr "*Die Anwendung muss neu gestartet werden, damit die Änderungen in Kraft treten." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +#: resources/qml/Preferences/GeneralPage.qml:373 msgctxt "@label" msgid "Viewport behavior" msgstr "Viewport-Verhalten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +#: resources/qml/Preferences/GeneralPage.qml:381 msgctxt "@info:tooltip" msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." msgstr "Nicht gestützte Bereiche des Modells in rot hervorheben. Ohne Support werden diese Bereiche nicht korrekt gedruckt." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:369 +#: resources/qml/Preferences/GeneralPage.qml:390 msgctxt "@option:check" msgid "Display overhang" msgstr "Überhang anzeigen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +#: resources/qml/Preferences/GeneralPage.qml:400 msgctxt "@info:tooltip" msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." msgstr "Heben Sie fehlende oder fehlerhafte Flächen des Modells mithilfe von Warnhinweisen hervor. In den Werkzeugpfaden fehlen oft Teile der beabsichtigten Geometrie." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:388 +#: resources/qml/Preferences/GeneralPage.qml:409 msgctxt "@option:check" msgid "Display model errors" msgstr "Modellfehler anzeigen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +#: resources/qml/Preferences/GeneralPage.qml:417 msgctxt "@info:tooltip" msgid "Moves the camera so the model is in the center of the view when a model is selected" msgstr "Bewegt die Kamera, bis sich das Modell im Mittelpunkt der Ansicht befindet, wenn ein Modell ausgewählt wurde" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:401 +#: resources/qml/Preferences/GeneralPage.qml:422 msgctxt "@action:button" msgid "Center camera when item is selected" msgstr "Zentrieren Sie die Kamera, wenn das Element ausgewählt wurde" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +#: resources/qml/Preferences/GeneralPage.qml:432 msgctxt "@info:tooltip" msgid "Should the default zoom behavior of cura be inverted?" msgstr "Soll das standardmäßige Zoom-Verhalten von Cura umgekehrt werden?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:416 +#: resources/qml/Preferences/GeneralPage.qml:437 msgctxt "@action:button" msgid "Invert the direction of camera zoom." msgstr "Kehren Sie die Richtung des Kamera-Zooms um." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Should zooming move in the direction of the mouse?" msgstr "Soll das Zoomen in Richtung der Maus erfolgen?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Zooming towards the mouse is not supported in the orthographic perspective." msgstr "Das Zoomen in Richtung der Maus wird in der orthografischen Perspektive nicht unterstützt." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:437 +#: resources/qml/Preferences/GeneralPage.qml:458 msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "In Mausrichtung zoomen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +#: resources/qml/Preferences/GeneralPage.qml:484 msgctxt "@info:tooltip" msgid "Should models on the platform be moved so that they no longer intersect?" msgstr "Sollen Modelle auf der Plattform so verschoben werden, dass sie sich nicht länger überschneiden?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:468 +#: resources/qml/Preferences/GeneralPage.qml:489 msgctxt "@option:check" msgid "Ensure models are kept apart" msgstr "Stellen Sie sicher, dass die Modelle getrennt gehalten werden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +#: resources/qml/Preferences/GeneralPage.qml:498 msgctxt "@info:tooltip" msgid "Should models on the platform be moved down to touch the build plate?" msgstr "Sollen Modelle auf der Plattform so nach unten verschoben werden, dass sie die Druckplatte berühren?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:482 +#: resources/qml/Preferences/GeneralPage.qml:503 msgctxt "@option:check" msgid "Automatically drop models to the build plate" msgstr "Setzt Modelle automatisch auf der Druckplatte ab" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +#: resources/qml/Preferences/GeneralPage.qml:515 msgctxt "@info:tooltip" msgid "Show caution message in g-code reader." msgstr "Warnmeldung im G-Code-Reader anzeigen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503 +#: resources/qml/Preferences/GeneralPage.qml:524 msgctxt "@option:check" msgid "Caution message in g-code reader" msgstr "Warnmeldung in G-Code-Reader" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +#: resources/qml/Preferences/GeneralPage.qml:532 msgctxt "@info:tooltip" msgid "Should layer be forced into compatibility mode?" msgstr "Soll die Schicht in den Kompatibilitätsmodus gezwungen werden?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +#: resources/qml/Preferences/GeneralPage.qml:537 msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Schichtenansicht Kompatibilitätsmodus erzwingen (Neustart erforderlich)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +#: resources/qml/Preferences/GeneralPage.qml:547 msgctxt "@info:tooltip" msgid "Should Cura open at the location it was closed?" msgstr "Sollte Cura sich an der Stelle öffnen, an der das Programm geschlossen wurde?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:531 +#: resources/qml/Preferences/GeneralPage.qml:552 msgctxt "@option:check" msgid "Restore window position on start" msgstr "Fensterposition beim Start wiederherstellen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +#: resources/qml/Preferences/GeneralPage.qml:562 msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Welches Kamera-Rendering sollte verwendet werden?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +#: resources/qml/Preferences/GeneralPage.qml:569 msgctxt "@window:text" msgid "Camera rendering:" msgstr "Kamera-Rendering:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +#: resources/qml/Preferences/GeneralPage.qml:576 msgid "Perspective" msgstr "Ansicht" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +#: resources/qml/Preferences/GeneralPage.qml:577 msgid "Orthographic" msgstr "Orthogonal" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +#: resources/qml/Preferences/GeneralPage.qml:617 msgctxt "@label" msgid "Opening and saving files" msgstr "Dateien öffnen und speichern" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +#: resources/qml/Preferences/GeneralPage.qml:624 msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "Sollten Dateien vom Desktop oder von externen Anwendungen in derselben Instanz von Cura geöffnet werden?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:608 +#: resources/qml/Preferences/GeneralPage.qml:629 msgctxt "@option:check" msgid "Use a single instance of Cura" msgstr "Eine einzelne Instanz von Cura verwenden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +#: resources/qml/Preferences/GeneralPage.qml:640 msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Soll das Druckbett jeweils vor dem Laden eines neuen Modells in einer einzelnen Instanz von Cura gelöscht werden?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +#: resources/qml/Preferences/GeneralPage.qml:646 msgctxt "@option:check" msgid "Clear buildplate before loading model into the single instance" msgstr "Druckbett vor dem Laden des Modells in die Einzelinstanz löschen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 +#: resources/qml/Preferences/GeneralPage.qml:656 msgctxt "@info:tooltip" msgid "Should models be scaled to the build volume if they are too large?" msgstr "Sollen Modelle an das Erstellungsvolumen angepasst werden, wenn sie zu groß sind?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +#: resources/qml/Preferences/GeneralPage.qml:661 msgctxt "@option:check" msgid "Scale large models" msgstr "Große Modelle anpassen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +#: resources/qml/Preferences/GeneralPage.qml:671 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 "Ein Modell kann extrem klein erscheinen, wenn seine Maßeinheit z. B. in Metern anstelle von Millimetern angegeben ist. Sollen diese Modelle hoch skaliert werden?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:655 +#: resources/qml/Preferences/GeneralPage.qml:676 msgctxt "@option:check" msgid "Scale extremely small models" msgstr "Extrem kleine Modelle skalieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +#: resources/qml/Preferences/GeneralPage.qml:686 msgctxt "@info:tooltip" msgid "Should models be selected after they are loaded?" msgstr "Sollten Modelle gewählt werden, nachdem sie geladen wurden?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: resources/qml/Preferences/GeneralPage.qml:691 msgctxt "@option:check" msgid "Select models when loaded" msgstr "Modelle wählen, nachdem sie geladen wurden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +#: resources/qml/Preferences/GeneralPage.qml:701 msgctxt "@info:tooltip" msgid "Should a prefix based on the printer name be added to the print job name automatically?" msgstr "Soll ein Präfix anhand des Druckernamens automatisch zum Namen des Druckauftrags hinzugefügt werden?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:685 +#: resources/qml/Preferences/GeneralPage.qml:706 msgctxt "@option:check" msgid "Add machine prefix to job name" msgstr "Geräte-Präfix zu Auftragsnamen hinzufügen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +#: resources/qml/Preferences/GeneralPage.qml:716 msgctxt "@info:tooltip" msgid "Should a summary be shown when saving a project file?" msgstr "Soll beim Speichern einer Projektdatei eine Zusammenfassung angezeigt werden?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: resources/qml/Preferences/GeneralPage.qml:720 msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Dialog Zusammenfassung beim Speichern eines Projekts anzeigen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +#: resources/qml/Preferences/GeneralPage.qml:730 msgctxt "@info:tooltip" msgid "Default behavior when opening a project file" msgstr "Standardverhalten beim Öffnen einer Projektdatei" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +#: resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@window:text" msgid "Default behavior when opening a project file: " msgstr "Standardverhalten beim Öffnen einer Projektdatei: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +#: resources/qml/Preferences/GeneralPage.qml:753 msgctxt "@option:openProject" msgid "Always ask me this" msgstr "Stets nachfragen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: resources/qml/Preferences/GeneralPage.qml:754 msgctxt "@option:openProject" msgid "Always open as a project" msgstr "Immer als Projekt öffnen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +#: resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:openProject" msgid "Always import models" msgstr "Modelle immer importieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +#: resources/qml/Preferences/GeneralPage.qml:792 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 "Wenn Sie Änderungen für ein Profil vorgenommen haben und zu einem anderen Profil gewechselt sind, wird ein Dialog angezeigt, der hinterfragt, ob Sie Ihre Änderungen beibehalten möchten oder nicht; optional können Sie ein Standardverhalten wählen, sodass dieser Dialog nicht erneut angezeigt wird." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:780 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:36 +#: resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46 msgctxt "@label" msgid "Profiles" msgstr "Profile" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +#: resources/qml/Preferences/GeneralPage.qml:806 msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Standardverhalten für geänderte Einstellungswerte beim Wechsel zu einem anderen Profil: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:800 +#: resources/qml/Preferences/GeneralPage.qml:821 msgctxt "@option:discardOrKeep" msgid "Always discard changed settings" msgstr "Geänderte Einstellungen immer verwerfen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/Preferences/GeneralPage.qml:822 msgctxt "@option:discardOrKeep" msgid "Always transfer changed settings to new profile" msgstr "Geänderte Einstellungen immer auf neues Profil übertragen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +#: resources/qml/Preferences/GeneralPage.qml:856 msgctxt "@label" msgid "Privacy" msgstr "Privatsphäre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +#: resources/qml/Preferences/GeneralPage.qml:862 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 "Sollen anonyme Daten über Ihren Druck an Ultimaker gesendet werden? Beachten Sie, dass keine Modelle, IP-Adressen oder andere personenbezogene Daten gesendet oder gespeichert werden." +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 "Sollen anonyme Daten über Ihren Druck an UltiMaker gesendet werden? Beachten Sie, dass keine Modelle, IP-Adressen oder andere personenbezogene Daten gesendet oder gespeichert werden." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +#: resources/qml/Preferences/GeneralPage.qml:867 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "(Anonyme) Druckinformationen senden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +#: resources/qml/Preferences/GeneralPage.qml:897 msgctxt "@label" msgid "Updates" -msgstr "Updates" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +#: resources/qml/Preferences/GeneralPage.qml:904 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "Soll Cura bei Programmstart nach Updates suchen?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:888 +#: resources/qml/Preferences/GeneralPage.qml:909 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Bei Start nach Updates suchen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +#: resources/qml/Preferences/GeneralPage.qml:925 msgctxt "@info:tooltip" msgid "When checking for updates, only check for stable releases." msgstr "Wählen Sie bei der Suche nach Updates nur stabile Versionen aus." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:910 +#: resources/qml/Preferences/GeneralPage.qml:931 msgctxt "@option:radio" msgid "Stable releases only" msgstr "Nur stabile Versionen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +#: resources/qml/Preferences/GeneralPage.qml:941 msgctxt "@info:tooltip" msgid "When checking for updates, check for both stable and for beta releases." msgstr "Wählen Sie bei der Suche nach Updates sowohl stabile als auch Beta-Versionen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:926 +#: resources/qml/Preferences/GeneralPage.qml:947 msgctxt "@option:radio" msgid "Stable and Beta releases" msgstr "Stabile und Beta-Versionen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +#: resources/qml/Preferences/GeneralPage.qml:957 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 "Sollte jedes Mal, wenn Cura gestartet wird, eine automatische Überprüfung auf neue Plug-ins durchgeführt werden? Es wird dringend empfohlen, diese Funktion nicht zu deaktivieren!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:941 +#: resources/qml/Preferences/GeneralPage.qml:962 msgctxt "@option:check" msgid "Get notifications for plugin updates" msgstr "Benachrichtigungen über Plug-in-Updates erhalten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:50 +#: resources/qml/Preferences/MachinesPage.qml:50 msgctxt "@action:button" msgid "Add New" msgstr "Neue hinzufügen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:134 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +#: resources/qml/Preferences/MachinesPage.qml:147 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:160 +#: resources/qml/Preferences/ProfilesPage.qml:294 msgctxt "@action:button" msgid "Activate" msgstr "Aktivieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:146 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:331 +#: resources/qml/Preferences/MachinesPage.qml:159 +#: resources/qml/Preferences/ProfilesPage.qml:331 msgctxt "@action:button" msgid "Rename" msgstr "Umbenennen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:72 msgctxt "@label" msgid "Materials compatible with active printer:" msgstr "Mit aktivem Drucker kompatible Materialien:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:94 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:78 +#: resources/qml/Preferences/ProfilesPage.qml:94 msgctxt "@action:button" msgid "Create new" msgstr "Neu erstellen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:88 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:90 +#: resources/qml/Preferences/ProfilesPage.qml:88 msgctxt "@action:button" msgid "Import" -msgstr "Import" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:101 msgctxt "@action:button" msgid "Sync with Printers" msgstr "Mit Druckern synchronisieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:311 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:174 +#: resources/qml/Preferences/ProfilesPage.qml:311 msgctxt "@action:button" msgid "Duplicate" msgstr "Duplizieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:342 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:198 +#: resources/qml/Preferences/ProfilesPage.qml:342 msgctxt "@action:button" msgid "Export" -msgstr "Export" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:392 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:212 +#: resources/qml/Preferences/ProfilesPage.qml:392 msgctxt "@title:window" msgid "Confirm Remove" msgstr "Entfernen bestätigen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:393 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:215 +#: resources/qml/Preferences/ProfilesPage.qml:393 msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "Möchten Sie %1 wirklich entfernen? Dies kann nicht rückgängig gemacht werden!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:228 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:238 msgctxt "@title:window" msgid "Import Material" msgstr "Material importieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:242 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Material wurde erfolgreich importiert %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:245 msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not import material %1: %2" msgstr "Material konnte nicht importiert werden %1: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:267 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:256 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:267 msgctxt "@title:window" msgid "Export Material" msgstr "Material exportieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:272 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:272 msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Exportieren des Materials nach %1: %2 schlug fehl" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:275 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:275 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Material erfolgreich nach %1 exportiert" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 msgctxt "@title:window" msgid "Sync materials with printers" msgstr "Materialien mit Druckern synchronisieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 msgctxt "@title:header" msgid "Sync materials with printers" msgstr "Materialien mit Druckern synchronisieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 msgctxt "@text" msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "Mit ein paar einfachen Schritten können Sie alle Ihre Materialprofile mit Ihren Druckern synchronisieren." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 msgctxt "@button" msgid "Why do I need to sync material profiles?" msgstr "Warum muss ich Materialprofile synchronisieren?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 msgctxt "@button" msgid "Start" -msgstr "Start" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144 msgctxt "@title:header" msgid "Sign in" msgstr "Anmelden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150 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 "Um die Materialprofile automatisch mit all Ihren mit Digital Factory verbundenen Druckern zu synchronisieren, müssen Sie in Cura angemeldet sein." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:446 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:586 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602 msgctxt "@button" msgid "Sync materials with USB" msgstr "Materialien über USB snchronisieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 msgctxt "@title:header" msgid "The following printers will receive the new material profiles:" msgstr "Die folgenden Drucker erhalten die neuen Materialprofile:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:198 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 msgctxt "@title:header" msgid "Something went wrong when sending the materials to the printers." msgstr "Beim Senden der Materialien an die Drucker ist ein Fehler aufgetreten." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:205 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221 msgctxt "@title:header" msgid "Material profiles successfully synced with the following printers:" msgstr "Materialprofile wurden erfolgreich mit den folgenden Druckern synchronisiert:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:429 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445 msgctxt "@button" msgid "Troubleshooting" msgstr "Störungen beheben" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422 msgctxt "@text Asking the user whether printers are missing in a list." msgid "Printers missing?" msgstr "Fehlen Drucker?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:408 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424 msgctxt "@text" msgid "Make sure all your printers are turned ON and connected to Digital Factory." msgstr "Vergewissern Sie sich, dass alle Ihre Drucker eingeschaltet und mit Digital Factory verbunden sind." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:417 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433 msgctxt "@button" msgid "Refresh List" msgstr "Liste aktualisieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473 msgctxt "@button" msgid "Try again" msgstr "Erneut versuchen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:461 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Done" msgstr "Fertig" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:606 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622 msgctxt "@button" msgid "Sync" msgstr "Synchronisieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535 msgctxt "@button" msgid "Syncing" msgstr "Synchronisierung" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553 msgctxt "@title:header" msgid "No printers found" msgstr "Keine Drucker gefunden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574 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 "Es scheint, als ob Sie keine kompatiblen Drucker mit Digital Factory verbunden haben. Stellen Sie sicher, dass Ihr Drucker verbunden ist und die neueste Firmware ausgeführt wird." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:569 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585 msgctxt "@button" msgid "Learn how to connect your printer to Digital Factory" msgstr "Erfahren Sie, wie Sie Ihren Drucker mit Digital Factory verbinden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:597 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613 msgctxt "@button" msgid "Refresh" msgstr "Aktualisieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642 msgctxt "@title:header" msgid "Sync material profiles via USB" msgstr "Synchronisieren von Materialprofilen über USB" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:632 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648 msgctxt "@text In the UI this is followed by a list of steps the user needs to take." msgid "Follow the following steps to load the new material profiles to your printer." msgstr "Führen Sie die folgenden Schritte aus, um die neuen Materialprofile in Ihren Drucker zu laden." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 msgctxt "@text" msgid "Click the export material archive button." msgstr "Klicken Sie auf die Schaltfläche Materialarchiv exportieren." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 msgctxt "@text" msgid "Save the .umm file on a USB stick." -msgstr "Save the .umm file on a USB stick." +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 msgctxt "@text" msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." msgstr "Stecken Sie den USB-Stick in Ihren Drucker und starten Sie das Verfahren zum Laden neuer Materialprofile." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:673 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689 msgctxt "@button" msgid "How to load new material profiles to my printer" -msgstr "How to load new material profiles to my printer" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:687 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 msgctxt "@button" msgid "Back" msgstr "Zurück" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Export material archive" msgstr "Materialarchiv exportieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747 msgctxt "@title:window" msgid "Export All Materials" msgstr "Alle Materialien exportieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121 +#: resources/qml/Preferences/Materials/MaterialsView.qml:121 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Änderung Durchmesser bestätigen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122 +#: resources/qml/Preferences/Materials/MaterialsView.qml:122 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 "Der neue Filament-Durchmesser wurde auf %1 mm eingestellt, was nicht kompatibel mit dem aktuellen Extruder ist. Möchten Sie fortfahren?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152 +#: resources/qml/Preferences/Materials/MaterialsView.qml:152 msgctxt "@label" msgid "Display Name" msgstr "Namen anzeigen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 +#: resources/qml/Preferences/Materials/MaterialsView.qml:171 msgctxt "@label" msgid "Brand" msgstr "Marke" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190 +#: resources/qml/Preferences/Materials/MaterialsView.qml:190 msgctxt "@label" msgid "Material Type" msgstr "Materialtyp" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +#: resources/qml/Preferences/Materials/MaterialsView.qml:210 msgctxt "@label" msgid "Color" msgstr "Farbe" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:262 +#: resources/qml/Preferences/Materials/MaterialsView.qml:262 msgctxt "@title" msgid "Material color picker" msgstr "Material-Farbwähler" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:275 +#: resources/qml/Preferences/Materials/MaterialsView.qml:275 msgctxt "@label" msgid "Properties" msgstr "Eigenschaften" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +#: resources/qml/Preferences/Materials/MaterialsView.qml:286 msgctxt "@label" msgid "Density" msgstr "Dichte" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +#: resources/qml/Preferences/Materials/MaterialsView.qml:319 msgctxt "@label" msgid "Diameter" msgstr "Durchmesser" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:369 +#: resources/qml/Preferences/Materials/MaterialsView.qml:369 msgctxt "@label" msgid "Filament Cost" msgstr "Filamentkosten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:401 +#: resources/qml/Preferences/Materials/MaterialsView.qml:401 msgctxt "@label" msgid "Filament weight" msgstr "Filamentgewicht" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:433 +#: resources/qml/Preferences/Materials/MaterialsView.qml:433 msgctxt "@label" msgid "Filament length" msgstr "Filamentlänge" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:451 +#: resources/qml/Preferences/Materials/MaterialsView.qml:451 msgctxt "@label" msgid "Cost per Meter" msgstr "Kosten pro Meter" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:465 +#: resources/qml/Preferences/Materials/MaterialsView.qml:465 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "Dieses Material ist mit %1 verknüpft und teilt sich damit einige seiner Eigenschaften." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:472 +#: resources/qml/Preferences/Materials/MaterialsView.qml:472 msgctxt "@label" msgid "Unlink Material" msgstr "Material trennen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +#: resources/qml/Preferences/Materials/MaterialsView.qml:485 msgctxt "@label" msgid "Description" msgstr "Beschreibung" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:503 +#: resources/qml/Preferences/Materials/MaterialsView.qml:503 msgctxt "@label" msgid "Adhesion Information" msgstr "Haftungsinformationen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642 +#: resources/qml/Preferences/Materials/MaterialsView.qml:642 msgctxt "@title" msgid "Information" msgstr "Informationen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:647 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:82 +#: resources/qml/Preferences/Materials/MaterialsView.qml:647 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 msgctxt "@label" msgid "Print settings" msgstr "Druckeinstellungen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:59 +#: resources/qml/Preferences/ProfilesPage.qml:59 msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "Mit aktivem Drucker kompatible Profile:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:98 +#: resources/qml/Preferences/ProfilesPage.qml:98 msgctxt "@action:tooltip" msgid "Create new profile from current settings/overrides" msgstr "Neues Profil aus aktuellen Einstellungen/Überschreibungen erstellen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:125 +#: resources/qml/Preferences/ProfilesPage.qml:125 msgctxt "@action:label" msgid "Some settings from current profile were overwritten." msgstr "Einige Einstellungen des aktuellen Profils wurden überschrieben." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:140 +#: resources/qml/Preferences/ProfilesPage.qml:140 msgctxt "@action:button" msgid "Update profile." msgstr "Profil aktualisieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:143 +#: resources/qml/Preferences/ProfilesPage.qml:143 msgctxt "@action:tooltip" msgid "Update profile with current settings/overrides" msgstr "Profil mit aktuellen Einstellungen/Überschreibungen aktualisieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:148 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256 +#: resources/qml/Preferences/ProfilesPage.qml:148 msgctxt "@action:button" msgid "Discard current changes" msgstr "Aktuelle Änderungen verwerfen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:158 +#: resources/qml/Preferences/ProfilesPage.qml:158 msgctxt "@action:label" msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." msgstr "Dieses Profil verwendet die vom Drucker festgelegten Standardeinstellungen, deshalb sind in der folgenden Liste keine Einstellungen/Überschreibungen enthalten." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:165 +#: resources/qml/Preferences/ProfilesPage.qml:165 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "Ihre aktuellen Einstellungen stimmen mit dem gewählten Profil überein." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +#: resources/qml/Preferences/ProfilesPage.qml:175 msgctxt "@title:tab" msgid "Global Settings" msgstr "Globale Einstellungen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: resources/qml/Preferences/ProfilesPage.qml:278 msgctxt "@title:window" msgid "Create Profile" msgstr "Profil erstellen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:280 +#: resources/qml/Preferences/ProfilesPage.qml:280 msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Geben Sie bitte einen Namen für dieses Profil an." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:368 +#: resources/qml/Preferences/ProfilesPage.qml:352 +#: resources/qml/Preferences/ProfilesPage.qml:368 msgctxt "@title:window" msgid "Export Profile" msgstr "Profil exportieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +#: resources/qml/Preferences/ProfilesPage.qml:382 msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Profil duplizieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:409 +#: resources/qml/Preferences/ProfilesPage.qml:409 msgctxt "@title:window" msgid "Rename Profile" msgstr "Profil umbenennen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:422 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:429 +#: resources/qml/Preferences/ProfilesPage.qml:422 +#: resources/qml/Preferences/ProfilesPage.qml:429 msgctxt "@title:window" msgid "Import Profile" msgstr "Profil importieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:22 -msgctxt "@title:window" -msgid "Rename" -msgstr "Umbenennen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:23 -msgctxt "@info" -msgid "Please provide a new name." -msgstr "Bitte geben Sie einen neuen Namen ein." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56 +#: resources/qml/Preferences/SettingVisibilityItem.qml:56 msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." msgstr "Diese Einstellung wurde durch das aktive Gerät ausgeblendet und ist nicht sichtbar." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73 +#: resources/qml/Preferences/SettingVisibilityItem.qml:73 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] "Diese Einstellung wurde durch den Wert von %1 ausgeblendet. Ändern Sie den Wert dieser Einstellung, um diese Einstellung sichtbar zu machen." msgstr[1] "Diese Einstellung wurde durch die Werte von %1 ausgeblendet. Ändern Sie die Werte dieser Einstellung, um diese Einstellung sichtbar zu machen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13 +#: resources/qml/Preferences/SettingVisibilityPage.qml:13 msgctxt "@title:tab" msgid "Setting Visibility" msgstr "Sichtbarkeit einstellen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 +#: resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" msgid "Check all" msgstr "Alle prüfen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 -msgctxt "@label" -msgid "Extruder" -msgstr "Extruder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70 -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." -msgstr "Die Zieltemperatur des Hotend. Das Hotend wird auf diese Temperatur aufgeheizt oder abgekühlt. Wenn der Wert 0 beträgt, wird die Hotend-Heizung ausgeschaltet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Die aktuelle Temperatur dieses Hotends." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "Die Temperatur, auf die das Hotend vorgeheizt wird." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Abbrechen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Vorheizen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Heizen Sie das Hotend vor Druckbeginn auf. Sie können Ihren Druck während des Aufheizens weiter anpassen und müssen nicht warten, bis das Hotend aufgeheizt ist, wenn Sie druckbereit sind." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Die Farbe des Materials in diesem Extruder." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Das Material in diesem Extruder." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Die in diesem Extruder eingesetzte Düse." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -msgctxt "@label" -msgid "Build plate" -msgstr "Druckbett" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55 -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 "Die Zieltemperatur des heizbaren Betts. Das Bett wird auf diese Temperatur aufgeheizt oder abgekühlt. Wenn der Wert 0 beträgt, wird die Bettheizung ausgeschaltet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "Die aktuelle Temperatur des beheizten Betts." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "Die Temperatur, auf die das Bett vorgeheizt wird." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Heizen Sie das Bett vor Druckbeginn auf. Sie können Ihren Druck während des Aufheizens weiter anpassen und müssen nicht warten, bis das Bett aufgeheizt ist, wenn Sie druckbereit sind." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51 -msgctxt "@label" -msgid "Printer control" -msgstr "Druckersteuerung" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66 -msgctxt "@label" -msgid "Jog Position" -msgstr "Tippposition" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Tippdistanz" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Send G-code" -msgstr "G-Code senden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Einen benutzerdefinierten G-Code-Befehl an den verbundenen Drucker senden. „Eingabe“ drücken, um den Befehl zu senden." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "Der Drucker ist nicht verbunden." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "Der Cloud-Drucker ist offline. Bitte prüfen Sie, ob der Drucker eingeschaltet und mit dem Internet verbunden ist." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Der Drucker ist nicht mit Ihrem Konto verbunden. Bitte besuchen Sie die Ultimaker Digital Factory, um eine Verbindung herzustellen." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "Die Cloud-Verbindung ist aktuell nicht verfügbar. Bitte melden Sie sich an, um sich mit dem Cloud-Drucker zu verbinden." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "Die Cloud-Verbindung ist aktuell nicht verfügbar. Bitte überprüfen Sie ihre Internetverbindung." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:235 -msgctxt "@button" -msgid "Add printer" -msgstr "Drucker hinzufügen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Manage printers" -msgstr "Drucker verwalten" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Active print" msgstr "Aktiver Druck" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Job Name" msgstr "Name des Auftrags" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +#: resources/qml/PrintMonitor.qml:172 msgctxt "@label" msgid "Printing Time" msgstr "Druckzeit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +#: resources/qml/PrintMonitor.qml:180 msgctxt "@label" msgid "Estimated time left" msgstr "Geschätzte verbleibende Zeit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 msgctxt "@label" msgid "Profile" msgstr "Profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5615,132 +6173,379 @@ msgstr "" "\n" "Klicken Sie, um den Profilmanager zu öffnen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 +#: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 msgctxt "@label:header" msgid "Custom profiles" msgstr "Benutzerdefinierte Profile" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 msgctxt "@label shown when we load a Gcode file" msgid "Print setup disabled. G-code file can not be modified." msgstr "Druckeinrichtung ist deaktiviert. G-Code-Datei kann nicht geändert werden." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:179 msgctxt "@button" msgid "Recommended" msgstr "Empfohlen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156 -msgctxt "@button" -msgid "Custom" -msgstr "Benutzerdefiniert" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 msgctxt "@label:Should be short" msgid "On" msgstr "Ein" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 msgctxt "@label:Should be short" msgid "Off" msgstr "Aus" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "Experimentell" +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is active and you overwrote some settings." +msgstr "Benutzerdefiniertes Profil für %1 ist aktiv und einige Einstellungen wurden überschrieben." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:54 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is overriding some settings." +msgstr "Benutzerdefiniertes Profil von %1 überschreibt einige Einstellungen." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92 +msgctxt "@info %1 is the name of a profile" +msgid "Recommended settings (for %1) were altered." +msgstr "Empfohlene Einstellungen (für %1) wurden geändert." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106 +msgctxt "@info %1 is the name of a profile" +msgid "Some setting-values defined in %1 were overridden." +msgstr "Einige Einstellungen des aktuellen Profils wurden überschrieben." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137 msgctxt "@info" -msgid "custom profile is active and you overwrote some settings." -msgstr "" +msgid "Reset to defaults." +msgstr "Auf Standardeinstellung zurücksetzen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178 msgctxt "@info" -msgid "custom profile is overriding some settings." -msgstr "" +msgid "Compare and save." +msgstr "Vergleichen und speichern." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 -msgctxt "@info" -msgid "Some settings were changed." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15 msgctxt "@label" msgid "Adhesion" msgstr "Haftung" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20 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 "Drucken eines Brim- oder Raft-Elements aktivieren. Es wird ein flacher Bereich rund um oder unter Ihrem Objekt hinzugefügt, das im Anschluss leicht abgeschnitten werden kann." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:198 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102 msgctxt "@label" -msgid "Gradual infill" -msgstr "Stufenweise Füllung" +msgid "Recommended print settings" +msgstr "Druckeinstellungen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:236 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "Die graduelle Füllung steigert die Menge der Füllung nach oben hin schrittweise." +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111 +msgctxt "@button" +msgid "Show Custom" +msgstr "Benutzerdefinierte Anzeige" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27 msgctxt "@label" msgid "Resolution" -msgstr "" +msgstr "Auflösung" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16 +msgctxt "@label" +msgid "Strength" +msgstr "Festigkeit" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20 +msgctxt "@label" +msgid "The following settings define the strength of your part." +msgstr "Die folgenden Einstellungen definieren die Festigkeit Ihres Teils." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34 +msgctxt "infill_sparse_density description" +msgid "Infill Density" +msgstr "Nur Mesh-Füllung" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35 +msgctxt "@label" +msgid "Adjusts the density of infill of the print." +msgstr "Passt die Fülldichte des Drucks an." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54 +msgctxt "@action:label" +msgid "Infill Pattern" +msgstr "Füllmuster" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56 +msgctxt "@label" +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 "" +"Das Muster des Füllmaterials des Drucks:\n" +"\n" +"Für schnelle Drucke von nicht funktionalen Modellen wählen Sie die Linien-, Zickzack- oder Blitz-Füllung.\n" +"\n" +"Für funktionale Teile, die keiner großen Belastung ausgesetzt sind, empfehlen wir ein Raster-, Dreieck- oder Tri-Hexagon-Muster.\n" +"\n" +"Für funktionale 3D-Drucke, die eine hohe Festigkeit in mehreren Richtungen erfordern, verwenden Sie am besten die Würfel-, Würfel-Unterbereich-, Viertelwürfel-, Octahedral- und Gyroid-Füllungen." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67 +msgctxt "@action:label" +msgid "Shell Thickness" +msgstr "Schichtdicke" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68 +msgctxt "@label" +msgid "Defines the thickness of your part side walls, roof and floor." +msgstr "Definiert die Dicke der Seitenwände, des Dachs und des Bodens Ihres Teils." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16 msgctxt "@label" msgid "Support" msgstr "Stützstruktur" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21 msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these 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." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40 +msgctxt "@action:label" +msgid "Support Type" +msgstr "Stützstruktur" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41 +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." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53 +msgctxt "@action:label" +msgid "Print with" +msgstr "Drucken" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54 +msgctxt "@label" +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." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67 +msgctxt "@action:label" +msgid "Placement" +msgstr "Platzierung" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68 +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." + +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 msgctxt "@error" msgid "Configuration not supported" -msgstr "" +msgstr "Konfiguration wird nicht unterstützt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." -msgstr "" +msgstr "Für die ausgewählte Material-/%1-Konfiguration sind keine Profile verfügbar. Bitte ändern Sie Ihre Konfiguration." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 msgctxt "@button:label" msgid "Learn more" -msgstr "" +msgstr "Mehr erfahren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +#: resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "Extruder" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:70 +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." +msgstr "Die Zieltemperatur des Hotend. Das Hotend wird auf diese Temperatur aufgeheizt oder abgekühlt. Wenn der Wert 0 beträgt, wird die Hotend-Heizung ausgeschaltet." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:105 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "Die aktuelle Temperatur dieses Hotends." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:182 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "Die Temperatur, auf die das Hotend vorgeheizt wird." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:271 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:259 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Abbrechen" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:274 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:263 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Vorheizen" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:297 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Heizen Sie das Hotend vor Druckbeginn auf. Sie können Ihren Druck während des Aufheizens weiter anpassen und müssen nicht warten, bis das Hotend aufgeheizt ist, wenn Sie druckbereit sind." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:335 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "Die Farbe des Materials in diesem Extruder." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:367 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "Das Material in diesem Extruder." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:400 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "Die in diesem Extruder eingesetzte Düse." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:25 +msgctxt "@label" +msgid "Build plate" +msgstr "Druckbett" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:55 +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 "Die Zieltemperatur des heizbaren Betts. Das Bett wird auf diese Temperatur aufgeheizt oder abgekühlt. Wenn der Wert 0 beträgt, wird die Bettheizung ausgeschaltet." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "Die aktuelle Temperatur des beheizten Betts." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:162 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "Die Temperatur, auf die das Bett vorgeheizt wird." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:286 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Heizen Sie das Bett vor Druckbeginn auf. Sie können Ihren Druck während des Aufheizens weiter anpassen und müssen nicht warten, bis das Bett aufgeheizt ist, wenn Sie druckbereit sind." + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:51 +msgctxt "@label" +msgid "Printer control" +msgstr "Druckersteuerung" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:66 +msgctxt "@label" +msgid "Jog Position" +msgstr "Tippposition" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:82 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:162 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:217 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Tippdistanz" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Send G-code" +msgstr "G-Code senden" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:319 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Einen benutzerdefinierten G-Code-Befehl an den verbundenen Drucker senden. „Eingabe“ drücken, um den Befehl zu senden." + +#: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "Der Drucker ist nicht verbunden." + +#: resources/qml/PrinterSelector/MachineListButton.qml:34 +msgctxt "@label" +msgid "Hide all connected printers" +msgstr "Alle verbundenen Drucker ausblenden" + +#: resources/qml/PrinterSelector/MachineListButton.qml:47 +msgctxt "@label" +msgid "Show all connected printers" +msgstr "Alle verbundenen Drucker anzeigen" + +#: resources/qml/PrinterSelector/MachineSelector.qml:64 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "Der Cloud-Drucker ist offline. Bitte prüfen Sie, ob der Drucker eingeschaltet und mit dem Internet verbunden ist." + +#: resources/qml/PrinterSelector/MachineSelector.qml:68 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Der Drucker ist nicht mit Ihrem Konto verbunden. Bitte besuchen Sie die Ultimaker Digital Factory, um eine Verbindung herzustellen." + +#: resources/qml/PrinterSelector/MachineSelector.qml:73 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "Die Cloud-Verbindung ist aktuell nicht verfügbar. Bitte melden Sie sich an, um sich mit dem Cloud-Drucker zu verbinden." + +#: resources/qml/PrinterSelector/MachineSelector.qml:78 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "Die Cloud-Verbindung ist aktuell nicht verfügbar. Bitte überprüfen Sie ihre Internetverbindung." + +#: resources/qml/PrinterSelector/MachineSelectorList.qml:30 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:32 +msgctxt "@label" +msgid "Other printers" +msgstr "Andere Drucker" + +#: resources/qml/ProfileOverview.qml:36 msgctxt "@title:column" msgid "Setting" msgstr "Einstellung" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +#: resources/qml/ProfileOverview.qml:37 msgctxt "@title:column" msgid "Profile" msgstr "Profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +#: resources/qml/ProfileOverview.qml:38 msgctxt "@title:column" msgid "Current" msgstr "Aktuell" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +#: resources/qml/ProfileOverview.qml:39 msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Einheit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +#: resources/qml/SearchBar.qml:17 msgctxt "@placeholder" msgid "Search" msgstr "Suche" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 +#: resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5751,32 +6556,32 @@ msgstr "" "\n" "Klicken Sie, um diese Einstellungen sichtbar zu machen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 +#: resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "Diese Einstellung wird nicht verwendet, weil alle hierdurch beeinflussten Einstellungen aufgehoben werden." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +#: resources/qml/Settings/SettingItem.qml:89 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Hat Einfluss auf" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +#: resources/qml/Settings/SettingItem.qml:94 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "Wird beeinflusst von" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:190 +#: resources/qml/Settings/SettingItem.qml:196 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "Diese Einstellung wird stets zwischen allen Extrudern geteilt. Eine Änderung ändert den Wert für alle Extruder." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +#: resources/qml/Settings/SettingItem.qml:200 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Diese Einstellung wird durch gegensätzliche, extruderspezifische Werte gelöst:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +#: resources/qml/Settings/SettingItem.qml:240 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5787,7 +6592,7 @@ msgstr "" "\n" "Klicken Sie, um den Wert des Profils wiederherzustellen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:334 +#: resources/qml/Settings/SettingItem.qml:340 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5798,4682 +6603,332 @@ msgstr "" "\n" "Klicken Sie, um den berechneten Wert wiederherzustellen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +#: resources/qml/Settings/SettingView.qml:48 msgctxt "@label:textbox" msgid "Search settings" msgstr "Einstellungen durchsuchen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:395 +#: resources/qml/Settings/SettingView.qml:395 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Werte für alle Extruder kopieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:404 +#: resources/qml/Settings/SettingView.qml:404 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Alle geänderten Werte für alle Extruder kopieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:440 +#: resources/qml/Settings/SettingView.qml:440 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Diese Einstellung ausblenden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:453 +#: resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Diese Einstellung ausblenden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:457 +#: resources/qml/Settings/SettingView.qml:457 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Diese Einstellung weiterhin anzeigen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +#: resources/qml/Toolbar.qml:142 +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" +msgstr[0] "Ausgewähltes Modell drucken mit %1" +msgstr[1] "Ausgewählte Modelle drucken mit %1" + +#: resources/qml/ViewOrientationControls.qml:25 msgctxt "@info:tooltip" msgid "3D View" msgstr "3D-Ansicht" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +#: resources/qml/ViewOrientationControls.qml:38 msgctxt "@info:tooltip" msgid "Front View" msgstr "Vorderansicht" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +#: resources/qml/ViewOrientationControls.qml:51 msgctxt "@info:tooltip" msgid "Top View" msgstr "Draufsicht" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +#: resources/qml/ViewOrientationControls.qml:64 msgctxt "@info:tooltip" msgid "Left View" msgstr "Ansicht von links" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +#: resources/qml/ViewOrientationControls.qml:77 msgctxt "@info:tooltip" msgid "Right View" msgstr "Ansicht von rechts" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: resources/qml/ViewsSelector.qml:50 msgctxt "@label" msgid "View type" msgstr "Typ anzeigen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:47 msgctxt "@label" msgid "Add a Cloud printer" msgstr "Einen Cloud-Drucker hinzufügen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:73 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:73 msgctxt "@label" msgid "Waiting for Cloud response" msgstr "Auf eine Antwort von der Cloud warten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:83 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:83 msgctxt "@label" msgid "No printers found in your account?" msgstr "Keine Drucker in Ihrem Konto gefunden?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:117 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:117 msgctxt "@label" msgid "The following printers in your account have been added in Cura:" msgstr "Folgende Drucker in Ihrem Konto wurden zu Cura hinzugefügt:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:186 msgctxt "@button" msgid "Add printer manually" msgstr "Drucker manuell hinzufügen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 msgctxt "@label" msgid "Manufacturer" msgstr "Hersteller" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Profile author" msgstr "Autor des Profils" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 msgctxt "@label" msgid "Printer name" msgstr "Druckername" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 msgctxt "@text" msgid "Please name your printer" msgstr "Bitte weisen Sie Ihrem Drucker einen Namen zu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "Einen Drucker hinzufügen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:38 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Einen vernetzten Drucker hinzufügen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:87 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Einen unvernetzten Drucker hinzufügen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 msgctxt "@label" msgid "There is no printer found over your network." msgstr "Kein Drucker in Ihrem Netzwerk gefunden." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 msgctxt "@label" msgid "Refresh" msgstr "Aktualisieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 msgctxt "@label" msgid "Add printer by IP" msgstr "Drucker nach IP hinzufügen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Ein Cloud-Drucker hinzufügen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205 msgctxt "@label" msgid "Troubleshooting" msgstr "Störungen beheben" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 msgctxt "@label" msgid "Add printer by IP address" msgstr "Drucker nach IP-Adresse hinzufügen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Geben Sie die IP-Adresse Ihres Druckers ein." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 msgctxt "@button" msgid "Add" msgstr "Hinzufügen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 msgctxt "@label" msgid "Could not connect to device." msgstr "Verbindung mit Drucker nicht möglich." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Sie können keine Verbindung zu Ihrem Ultimaker-Drucker herstellen?" +msgid "Can't connect to your UltiMaker printer?" +msgstr "Sie können keine Verbindung zu Ihrem UltiMaker-Drucker herstellen?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 msgctxt "@label" msgid "The printer at this address has not responded yet." msgstr "Der Drucker unter dieser Adresse hat noch nicht reagiert." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 msgctxt "@label" msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." msgstr "Dieser Drucker kann nicht hinzugefügt werden, weil es sich um einen unbekannten Drucker handelt oder er nicht im Host einer Gruppe enthalten ist." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 msgctxt "@button" msgid "Connect" msgstr "Verbinden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Einen vernetzten Drucker hinzufügen" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Einen unvernetzten Drucker hinzufügen" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102 +msgctxt "@button" +msgid "Add UltiMaker printer via Digital Factory" +msgstr "Drucker in der Digital Factory anzeigen" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "In order to start using Cura you will need to configure a printer." +msgstr "Um das Paket nutzen zu können, müssen Sie Cura neu starten" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36 +msgctxt "@label" +msgid "What printer would you like to setup?" +msgstr "Welchen Drucker möchten Sie einrichten?" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55 +msgctxt "@button" +msgid "UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64 +msgctxt "@button" +msgid "Non UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73 +msgctxt "@button" +msgid "Learn more about adding printers to Cura" +msgstr "Weitere Informationen zum Hinzufügen von Druckern zu Cura" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29 +msgctxt "@label" +msgid "Add printer" +msgstr "Drucker hinzufügen" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33 +msgctxt "@label" +msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70 +msgctxt "@label" +msgid "If you are trying to add a new UltiMaker printer to Cura" +msgstr "Wenn Sie einen neuen UltiMaker-Drucker zu Cura hinzufügen möchten" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80 +msgctxt "@info" +msgid "Sign in into UltiMaker Digital Factory" +msgstr "Melden Sie sich bei UltiMaker Digital Factory an." + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81 +msgctxt "@info" +msgid "Follow the procedure to add a new printer" +msgstr "Befolgen Sie die Anweisungen zum Hinzufügen eines neuen Druckers." + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82 +msgctxt "@info" +msgid "Your new printer will automatically appear in Cura" +msgstr "Ihr neuer Drucker wird automatisch in Cura angezeigt." + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100 +msgctxt "@button" +msgid "Learn more" +msgstr "Mehr erfahren" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121 +msgctxt "@button" +msgid "Add local printer" +msgstr "Einen Drucker hinzufügen" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129 +msgctxt "@button" +msgid "Sign in to Digital Factory" +msgstr "Drucker in der Digital Factory anzeigen" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133 +msgctxt "@button" +msgid "Waiting for new printers" +msgstr "Drucker verwalten" + +#: resources/qml/WelcomePages/ChangelogContent.qml:24 msgctxt "@label" msgid "Release Notes" msgstr "Versionshinweise" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:123 +#: resources/qml/WelcomePages/CloudContent.qml:123 msgctxt "@text" msgid "Add material settings and plugins from the Marketplace" msgstr "Materialeinstellungen und Plug-ins aus dem Marketplace hinzufügen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:149 +#: resources/qml/WelcomePages/CloudContent.qml:149 msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Materialeinstellungen und Plug-ins sichern und synchronisieren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:175 +#: resources/qml/WelcomePages/CloudContent.qml:175 msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Ideenaustausch mit und Hilfe von mehr als 48.000 Benutzern in der Ultimaker Community" +msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" +msgstr "Ideenaustausch mit und Hilfe von mehr als 48.000 Benutzern in der UltiMaker Community" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +#: resources/qml/WelcomePages/CloudContent.qml:189 msgctxt "@button" msgid "Skip" msgstr "Überspringen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +#: resources/qml/WelcomePages/CloudContent.qml:201 msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Kostenloses Ultimaker-Konto erstellen" +msgid "Create a free UltiMaker Account" +msgstr "Kostenloses UltiMaker-Konto erstellen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Helfen Sie uns, Ultimaker Cura zu verbessern" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:56 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura erfasst anonyme Daten, um die Druckqualität und Benutzererfahrung zu steigern. Dazu gehören:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:68 -msgctxt "@text" -msgid "Machine types" -msgstr "Gerätetypen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:74 -msgctxt "@text" -msgid "Material usage" -msgstr "Materialverbrauch" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:80 -msgctxt "@text" -msgid "Number of slices" -msgstr "Anzahl der Slices" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:86 -msgctxt "@text" -msgid "Print settings" -msgstr "Druckeinstellungen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:99 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Die von Ultimaker Cura erfassten Daten enthalten keine personenbezogenen Daten." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:100 -msgctxt "@text" -msgid "More information" -msgstr "Mehr Informationen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +#: resources/qml/WelcomePages/DropDownWidget.qml:93 msgctxt "@label" msgid "Empty" msgstr "Leer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +#: resources/qml/WelcomePages/UserAgreementContent.qml:23 msgctxt "@label" msgid "User Agreement" msgstr "Benutzervereinbarung" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67 +#: resources/qml/WelcomePages/UserAgreementContent.qml:67 msgctxt "@button" msgid "Decline and close" msgstr "Ablehnen und schließen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Willkommen bei Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:67 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "" -"Befolgen Sie bitte diese Schritte für das Einrichten von\n" -"Ultimaker Cura. Dies dauert nur wenige Sekunden." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:82 -msgctxt "@button" -msgid "Get started" -msgstr "Erste Schritte" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: resources/qml/WelcomePages/WhatsNewContent.qml:28 msgctxt "@label" msgid "What's New" msgstr "Neuheiten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: resources/qml/Widgets/ComboBox.qml:18 msgctxt "@label" msgid "No items to select from" msgstr "Keine auswählbaren Einträge" -#: ModelChecker/plugin.json -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." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "Modell-Prüfer" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Ermöglicht das Lesen von 3MF-Dateien." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF-Reader" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Bietet Unterstützung für das Schreiben von 3MF-Dateien." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF-Writer" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Ermöglicht das Lesen von AMF-Dateien." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF-Reader" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Sicherung und Wiederherstellen Ihrer Konfiguration." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura-Backups" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine Backend" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Ermöglicht das Importieren von Cura-Profilen." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura-Profil-Reader" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Ermöglicht das Exportieren von Cura-Profilen." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura-Profil-Writer" - -#: DigitalLibrary/plugin.json -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." - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Digitale Bibliothek von Ultimaker" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Nach Firmware-Updates suchen." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Firmware-Update-Prüfer" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Ermöglicht Gerätemaßnahmen für die Aktualisierung der Firmware." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Firmware-Aktualisierungsfunktion" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Liest G-Code-Format aus einem komprimierten Archiv." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Reader für komprimierten G-Code" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "G-Code wird in ein komprimiertes Archiv geschrieben." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Writer für komprimierten G-Code" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Ermöglicht das Importieren von Profilen aus G-Code-Dateien." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-Code-Profil-Reader" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Ermöglicht das Laden und Anzeigen von G-Code-Dateien." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "G-Code-Reader" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Schreibt G-Code in eine Datei." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "G-Code-Writer" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Ermöglicht Erstellung von druckbarer Geometrie aus einer 2D-Bilddatei." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Bild-Reader" - -#: LegacyProfileReader/plugin.json -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." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Cura-Vorgängerprofil-Reader" - -#: MachineSettingsAction/plugin.json -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.)" - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Beschreibung Geräteeinstellungen" - -#: Marketplace/plugin.json -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." - -#: Marketplace/plugin.json -msgctxt "name" -msgid "Marketplace" -msgstr "Marktplatz" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Bietet eine Überwachungsstufe in Cura." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Überwachungsstufe" - -#: PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Ermöglicht die Einstellungen pro Objekt." - -#: PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Werkzeug „Einstellungen pro Objekt“" - -#: PostProcessingPlugin/plugin.json -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" - -#: PostProcessingPlugin/plugin.json -msgctxt "name" -msgid "Post Processing" -msgstr "Nachbearbeitung" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Bietet eine Vorbereitungsstufe in Cura." - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "Vorbereitungsstufe" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Bietet eine Vorschaustufe in Cura." - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "Vorschaustufe" - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Ermöglicht Hotplugging des Wechseldatenträgers und Beschreiben." - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Ausgabegerät-Plugin für Wechseldatenträger" - -#: SentryLogger/plugin.json -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" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentry-Protokolleinrichtung" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Stellt eine Vorschau der Daten der Slice-Ebene bereit." - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "Simulationsansicht" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Sendet anonymisierte Slice-Informationen. Kann in den Einstellungen deaktiviert werden." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Slice-Informationen" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Bietet eine normale, solide Netzansicht." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Solide Ansicht" - -#: SupportEraser/plugin.json -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" - -#: SupportEraser/plugin.json -msgctxt "name" -msgid "Support Eraser" -msgstr "Stützstruktur-Radierer" - -#: TrimeshReader/plugin.json -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Unterstützt das Lesen von Modelldateien." - -#: TrimeshReader/plugin.json -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh Reader" - -#: UFPReader/plugin.json -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Bietet Unterstützung für das Lesen von Ultimaker Format Packages." - -#: UFPReader/plugin.json -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP-Reader" - -#: UFPWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Bietet Unterstützung für das Schreiben von Ultimaker Format Packages." - -#: UFPWriter/plugin.json -msgctxt "name" -msgid "UFP Writer" -msgstr "UFP-Writer" - -#: UltimakerMachineActions/plugin.json -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.)" - -#: UltimakerMachineActions/plugin.json -msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Ultimaker-Maschinenabläufe" - -#: UM3NetworkPrinting/plugin.json -msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Verwaltet Netzwerkverbindungen zu Ultimaker-Netzwerkdruckern." - -#: UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Ultimaker-Netzwerkverbindung" - -#: USBPrinting/plugin.json -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." - -#: USBPrinting/plugin.json -msgctxt "name" -msgid "USB printing" -msgstr "USB-Drucken" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Aktualisiert Konfigurationen von Cura 2.1 auf Cura 2.2." - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Upgrade von Version 2.1 auf 2.2" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Aktualisiert Konfigurationen von Cura 2.2 auf Cura 2.4." - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Upgrade von Version 2.2 auf 2.4" - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Aktualisiert Konfigurationen von Cura 2.5 auf Cura 2.6." - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Upgrade von Version 2.5 auf 2.6" - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Aktualisiert Konfigurationen von Cura 2.6 auf Cura 2.7." - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Upgrade von Version 2.6 auf 2.7" - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Aktualisiert Konfigurationen von Cura 2.7 auf Cura 3.0." - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Upgrade von Version 2.7 auf 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Aktualisiert Konfigurationen von Cura 3.0 auf Cura 3.1." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Upgrade von Version 3.0 auf 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Aktualisiert Konfigurationen von Cura 3.2 auf Cura 3.3." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Upgrade von Version 3.2 auf 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Aktualisiert Konfigurationen von Cura 3.3 auf Cura 3.4." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Upgrade von Version 3.3 auf 3.4" - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Aktualisiert Konfigurationen von Cura 3.4 auf Cura 3.5." - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Upgrade von Version 3.4 auf 3.5" - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Aktualisiert Konfigurationen von Cura 3.5 auf Cura 4.0." - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Upgrade von Version 3.5 auf 4.0" - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Aktualisiert Konfigurationen von Cura 4.0 auf Cura 4.1." - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Upgrade von Version 4.0 auf 4.1" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Upgrade von Version 4.11 auf 4.12" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Aktualisiert Konfigurationen von Cura 4.13 auf Cura 5.0." - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Upgrade von Version 4.13 auf 5.0" - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Aktualisiert Konfigurationen von Cura 4.1 auf Cura 4.2." - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Upgrade von Version 4.1 auf 4.2" - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Aktualisiert Konfigurationen von Cura 4.2 auf Cura 4.3." - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Upgrade von Version 4.2 auf 4.3" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Aktualisiert Konfigurationen von Cura 4.3 auf Cura 4.4." - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Upgrade von Version 4.3 auf 4.4" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Upgrade von Version 4.4 auf 4.5" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Upgrade von Version 4.5 auf 4.6" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Upgrade von Version 4.6.0 auf 4.6.2" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Upgrade von Version 4.6.2 auf 4.7" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Upgrade von Version 4.7 auf 4.8" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Upgrade von Version 4.8 auf 4.9" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Upgrade von Version 4.9 auf 4.10" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Bietet Unterstützung für das Lesen von X3D-Dateien." - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D-Reader" - -#: XmlMaterialProfile/plugin.json -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." - -#: XmlMaterialProfile/plugin.json -msgctxt "name" -msgid "Material Profiles" -msgstr "Materialprofile" - -#: XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Stellt die Röntgen-Ansicht bereit." - -#: XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "Röntgen-Ansicht" - -#~ msgctxt "@label" -#~ msgid "Not yet initialized
    " -#~ msgstr "Noch nicht initialisiert
    " - -#~ msgctxt "@label" -#~ msgid "By" -#~ msgstr "Von" - -#~ msgctxt "@Label" -#~ msgid "Static type checker for Python" -#~ msgstr "Statischer Prüfer für Python" - -#~ msgctxt "@Label" -#~ msgid "Root Certificates for validating SSL trustworthiness" -#~ msgstr "Root-Zertifikate zur Validierung der SSL-Vertrauenswürdigkeit" - -#~ msgctxt "@label" -#~ msgid "Python extensions for Microsoft Windows" -#~ msgstr "Python-Erweiterungen für Microsoft Windows" - -#~ msgctxt "@label" -#~ msgid "SVG icons" -#~ msgstr "SVG-Symbole" - -#~ msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" -#~ msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" -#~ msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" -#~ msgstr[0] "Es gibt kein %1-Profil für die Konfiguration in der Extruder %2. Es wird stattdessen der Standard verwendet" -#~ msgstr[1] "Es gibt kein %1-Profil für die Konfigurationen in den Extrudern %2. Es wird stattdessen der Standard verwendet" - -#~ msgctxt "@tooltip" -#~ msgid "You have modified some profile settings. If you want to change these go to custom mode." -#~ msgstr "Sie haben einige Profileinstellungen geändert. Wenn Sie diese ändern möchten, wechseln Sie in den Modus „Benutzerdefiniert“." - -#~ msgctxt "@action:button" -#~ msgid "Sync materials with printers" -#~ msgstr "Materialien synchronisieren" - -#~ msgctxt "@title:window" -#~ msgid "Convert Image..." -#~ msgstr "Bild konvertieren..." - -#~ msgctxt "@info:tooltip" -#~ msgid "The width in millimeters on the build plate." -#~ msgstr "Die Breite der Druckplatte in Millimetern." - -#~ msgctxt "@title" -#~ msgid "Marketplace" -#~ msgstr "Marktplatz" - -#~ msgctxt "@info" -#~ msgid "You will need to restart Cura before changes in packages have effect." -#~ msgstr "Cura muss neu gestartet werden, um die Änderungen der Pakete zu übernehmen." - -#~ msgctxt "@action:button" -#~ msgid "Install" -#~ msgstr "Installieren" - -#~ msgctxt "@action:button" -#~ msgid "Installed" -#~ msgstr "Installiert" - -#~ msgctxt "@label" -#~ msgid "Premium" -#~ msgstr "Premium" - -#~ msgctxt "@info:tooltip" -#~ msgid "Go to Web Marketplace" -#~ msgstr "Zum Web Marketplace gehen" - -#~ msgctxt "@label" -#~ msgid "Search materials" -#~ msgstr "Materialien suchen" - -#~ msgctxt "@label" -#~ msgid "Compatibility" -#~ msgstr "Kompatibilität" - -#~ msgctxt "@label:table_header" -#~ msgid "Machine" -#~ msgstr "Gerät" - -#~ msgctxt "@label:table_header" -#~ msgid "Build Plate" -#~ msgstr "Druckbett" - -#~ msgctxt "@label:table_header" -#~ msgid "Support" -#~ msgstr "Support" - -#~ msgctxt "@label:table_header" -#~ msgid "Quality" -#~ msgstr "Qualität" - -#~ msgctxt "@action:label" -#~ msgid "Technical Data Sheet" -#~ msgstr "Technisches Datenblatt" - -#~ msgctxt "@action:label" -#~ msgid "Safety Data Sheet" -#~ msgstr "Sicherheitsdatenblatt" - -#~ msgctxt "@action:label" -#~ msgid "Printing Guidelines" -#~ msgstr "Druckrichtlinien" - -#~ msgctxt "@action:label" -#~ msgid "Website" -#~ msgstr "Website" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to install or update" -#~ msgstr "Anmeldung für Installation oder Update erforderlich" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Buy material spools" -#~ msgstr "Materialspulen kaufen" - -#~ msgctxt "@action:button" -#~ msgid "Update" -#~ msgstr "Aktualisierung" - -#~ msgctxt "@action:button" -#~ msgid "Updating" -#~ msgstr "Aktualisierung wird durchgeführt" - -#~ msgctxt "@action:button" -#~ msgid "Updated" -#~ msgstr "Aktualisiert" - -#~ msgctxt "@action:button" -#~ msgid "Back" -#~ msgstr "Zurück" - -#~ msgctxt "@title:tab" -#~ msgid "Plugins" -#~ msgstr "Plugins" - -#~ msgctxt "@title:tab" -#~ msgid "Installed" -#~ msgstr "Installiert" - -#~ msgctxt "@label" -#~ msgid "Will install upon restarting" -#~ msgstr "Installiert nach Neustart" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to update" -#~ msgstr "Anmeldung für Update erforderlich" - -#~ msgctxt "@action:button" -#~ msgid "Downgrade" -#~ msgstr "Downgraden" - -#~ msgctxt "@action:button" -#~ msgid "Uninstall" -#~ msgstr "Deinstallieren" - -#~ msgctxt "@label" -#~ msgid "Community Contributions" -#~ msgstr "Community-Beiträge" - -#~ msgctxt "@label" -#~ msgid "Community Plugins" -#~ msgstr "Community-Plugins" - -#~ msgctxt "@label" -#~ msgid "Generic Materials" -#~ msgstr "Generische Materialien" - -#~ msgctxt "@info" -#~ msgid "Fetching packages..." -#~ msgstr "Pakete werden abgeholt..." - -#~ msgctxt "@label" -#~ msgid "Website" -#~ msgstr "Website" - -#~ msgctxt "@label" -#~ msgid "Email" -#~ msgstr "E-Mail" +#~ msgctxt "@info:status" +#~ msgid "Cura does not accurately display layers when Wire Printing is enabled." +#~ msgstr "Cura zeigt die Schichten nicht präzise an, wenn „Drucken mit Drahtstruktur“ aktiviert ist." #~ msgctxt "@description" #~ msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" #~ msgstr "Bitte melden Sie sich an, um verifizierte Plugins und Materialien für Ultimaker Cura Enterprise zu erhalten" -#~ msgctxt "@label" -#~ msgid "Version" -#~ msgstr "Version" - -#~ msgctxt "@label" -#~ msgid "Last updated" -#~ msgstr "Zuletzt aktualisiert" - -#~ msgctxt "@label" -#~ msgid "Downloads" -#~ msgstr "Downloads" - -#~ msgctxt "@title:tab" -#~ msgid "Installed plugins" -#~ msgstr "Installierte Plugins" - -#~ msgctxt "@info" -#~ msgid "No plugin has been installed." -#~ msgstr "Es wurde kein Plugin installiert." - -#~ msgctxt "@title:tab" -#~ msgid "Installed materials" -#~ msgstr "Installierte Materialien" - -#~ msgctxt "@info" -#~ msgid "No material has been installed." -#~ msgstr "Es wurde kein Material installiert." - -#~ msgctxt "@title:tab" -#~ msgid "Bundled plugins" -#~ msgstr "Gebündelte Plugins" - -#~ msgctxt "@title:tab" -#~ msgid "Bundled materials" -#~ msgstr "Gebündelte Materialien" - -#~ msgctxt "@info" -#~ msgid "Could not connect to the Cura Package database. Please check your connection." -#~ msgstr "Verbindung zur Cura Paket-Datenbank konnte nicht hergestellt werden. Bitte überprüfen Sie Ihre Verbindung." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall" -#~ msgstr "Deinstallieren bestätigen" - -#~ msgctxt "@text:window" -#~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -#~ msgstr "Sie sind dabei, Materialien und/oder Profile zu deinstallieren, die noch verwendet werden. Durch Bestätigen werden die folgenden Materialien/Profile auf ihre Standardeinstellungen zurückgesetzt." - -#~ msgctxt "@text:window" -#~ msgid "Materials" -#~ msgstr "Materialien" - -#~ msgctxt "@text:window" -#~ msgid "Profiles" -#~ msgstr "Profile" - -#~ msgctxt "@action:button" -#~ msgid "Confirm" -#~ msgstr "Bestätigen" - -#~ msgctxt "@info:tooltip" -#~ msgid "Some things could be problematic in this print. Click to see tips for adjustment." -#~ msgstr "Einige Punkte bei diesem Druck könnten problematisch sein. Klicken Sie, um Tipps für die Anpassung zu erhalten." - -#~ msgctxt "@label" -#~ msgid "Support library for handling planar objects" -#~ msgstr "Support-Bibliothek für die Handhabung von ebenen Objekten" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "Sie haben einige Profileinstellungen personalisiert.\n" -#~ "Möchten Sie diese geänderten Einstellungen nach einem Profilwechsel beibehalten?\n" -#~ "Sie können die Änderungen auch verwerfen, um die Standardeinstellungen von '%1' zu laden." - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Build plate" -#~ msgstr "&Druckplatte" - -#~ msgctxt "@label" -#~ msgid "Create" -#~ msgstr "Erstellen" - -#~ msgctxt "@label" -#~ msgid "Duplicate" -#~ msgstr "Duplizieren" - -#~ msgctxt "@label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "Drucker: %1" - -#~ msgctxt "@action:button" -#~ msgid "Update profile with current settings/overrides" -#~ msgstr "Profil mit aktuellen Einstellungen/Überschreibungen aktualisieren" - -#~ msgctxt "@label" -#~ msgid "Theme:" -#~ msgstr "Thema:" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for these changes to have effect." -#~ msgstr "Die Anwendung muss neu gestartet werden, um die Änderungen zu übernehmen." - -#~ msgctxt "@action:button" -#~ msgid "More information" -#~ msgstr "Mehr Informationen" - -#~ msgctxt "@action:button" -#~ msgid "Create" -#~ msgstr "Erstellen" - -#~ msgctxt "@action:button Sending materials to printers" -#~ msgid "Sync with Printers" -#~ msgstr "Mit Druckern synchronisieren" - -#~ msgctxt "@action:label" -#~ msgid "Printer" -#~ msgstr "Drucker" - -#~ msgctxt "@title:column" -#~ msgid "Unit" -#~ msgstr "Einheit" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting Guide" -#~ msgstr "Online-Fehlerbehebung anzeigen" - -#~ msgctxt "@action:inmenu" -#~ msgid "Add more materials from Marketplace" -#~ msgstr "Weiteres Material aus Marketplace hinzufügen" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange All Models To All Build Plates" -#~ msgstr "Alle Modelle an allen Druckplatten anordnen" - -#~ msgctxt "@action:menu" -#~ msgid "&Marketplace" -#~ msgstr "&Marktplatz" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new Cura packages." -#~ msgstr "Neue Cura Pakete finden, verwalten und installieren." - -#~ msgctxt "name" -#~ msgid "Toolbox" -#~ msgstr "Toolbox" - -#~ msgctxt "description" -#~ msgid "Provides the Simulation view." -#~ msgstr "Ermöglicht die Simulationsansicht." - -#~ msgctxt "@info:status" -#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Druckaufträge mithilfe Ihres Ultimaker-Kontos von einem anderen Ort aus senden und überwachen." - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Digital Factory" -#~ msgstr "Mit der Ultimaker Digital Factory verbinden" - -#~ msgctxt "@info" -#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." -#~ msgstr "Webcam-Feeds für Cloud-Drucker können nicht in Ultimaker Cura angezeigt werden." - -#~ 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 not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -#~ msgstr "Für Ihren {machine_name} sind eventuell neue Funktionen oder Fehlerbereinigungen verfügbar! Falls Sie nicht bereits die aktuellste Version verwenden, empfehlen wir Ihnen, ein Firmware-Update Ihres Druckers auf Version {latest_version} auszuführen." - -#~ msgctxt "@info:title The %s gets replaced with the printer name." -#~ msgid "New %s firmware available" -#~ msgstr "Neue Firmware für %s verfügbar" - -#~ msgctxt "@info:status" -#~ msgid "Global stack is missing." -#~ msgstr "Globaler Stack fehlt." - -#~ msgctxt "@info:status" -#~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces." -#~ msgstr "Ihrem Modell fehlen Schichten. Die fehlenden oder fehlerhaften Bereiche sind hervorgehoben." - #~ msgctxt "@info:title" -#~ msgid "Model errors" -#~ msgstr "Modellfehler" - -#~ msgctxt "@label:listbox" -#~ msgid "Layer thickness" -#~ msgstr "Schichtdicke" - -#~ msgctxt "@label" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "Ihr Schlüssel zu vernetztem 3D-Druck" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Customize your experience with more print profiles and plugins\n" -#~ "- Stay flexible by syncing your setup and loading it anywhere\n" -#~ "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "" -#~ "- Personalisieren Sie Ihre Druckerfahrung mit weiteren Druckprofilen und Plugins\n" -#~ "- Bleiben Sie flexibel, indem Sie Ihre Einstellungen synchronisieren und überall laden können\n" -#~ "- Steigern Sie Ihre Effizienz mit einem Remote-Workflow für Ultimaker-Drucker" - -#~ msgctxt "@button" -#~ msgid "Create account" -#~ msgstr "Konto erstellen" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete Selected Model" -#~ msgid_plural "Delete Selected Models" -#~ msgstr[0] "Ausgewähltes Modell löschen" -#~ msgstr[1] "Ausgewählte Modelle löschen" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Center Selected Model" -#~ msgid_plural "Center Selected Models" -#~ msgstr[0] "Ausgewähltes Modell zentrieren" -#~ msgstr[1] "Ausgewählte Modelle zentrieren" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Multiply Selected Model" -#~ msgid_plural "Multiply Selected Models" -#~ msgstr[0] "Ausgewähltes Modell multiplizieren" -#~ msgstr[1] "Ausgewählte Modelle multiplizieren" - -#~ msgctxt "@button" -#~ msgid "Finish" -#~ msgstr "Beenden" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Account" -#~ msgstr "Ultimaker‑Konto" - -#~ msgctxt "@text" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "Ihr Schlüssel zu vernetztem 3D-Druck" - -#~ msgctxt "@text" -#~ msgid "- Customize your experience with more print profiles and plugins" -#~ msgstr "- Personalisieren Sie Ihre Druckerfahrung mit weiteren Druckprofile und Plugins" - -#~ msgctxt "@text" -#~ msgid "- Stay flexible by syncing your setup and loading it anywhere" -#~ msgstr "- Bleiben Sie flexibel, indem Sie Ihre Einstellungen synchronisieren und überall laden können" - -#~ msgctxt "@text" -#~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "- Steigern Sie Ihre Effizienz mit einem Remote-Workflow für Ultimaker-Drucker" - -#~ msgctxt "@text" -#~ msgid "" -#~ "Please follow these steps to set up\n" -#~ "Ultimaker Cura. This will only take a few moments." -#~ msgstr "" -#~ "Befolgen Sie bitte diese Schritte für das Einrichten von\n" -#~ "Ultimaker Cura. Dies dauert nur wenige Sekunden." - -#~ msgctxt "@label" -#~ msgid "What's new in Ultimaker Cura" -#~ msgstr "Neuheiten bei Ultimaker Cura" - -#~ msgctxt "@label ({} is object name)" -#~ msgid "Are you sure you wish to remove {}? This cannot be undone!" -#~ msgstr "Möchten Sie {} wirklich entfernen? Der Vorgang kann nicht rückgängig gemacht werden!" - -#~ msgctxt "@info:status" -#~ msgid "The selected model was too small to load." -#~ msgstr "Das gewählte Modell war zu klein zum Laden." - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profile {0}" -#~ msgstr "Profil erfolgreich importiert {0}" - -#~ msgctxt "@info:status" -#~ msgid "Could not find a quality type {0} for the current configuration." -#~ msgstr "Es konnte keine Qualitätsangabe {0} für die vorliegende Konfiguration gefunden werden." - -#~ msgctxt "info:status" -#~ msgid "Adding printer {} ({}) from your account" -#~ msgstr "Drucker {} ({}) aus Ihrem Konto wird hinzugefügt" - -#~ msgctxt "info:hidden list items" -#~ msgid "
  • ... and {} others
  • " -#~ msgstr "
  • ... und {} weitere
  • " - -#~ msgctxt "info:status" -#~ msgid "Printers added from Digital Factory:
      {}
    " -#~ msgstr "Drucker aus Digital Factory hinzugefügt
      :{}
    " - -#~ msgctxt "info:status" -#~ msgid "
      {}
    To establish a connection, please visit the Ultimaker Digital Factory." -#~ msgstr "
      {}
    Bitte besuchen Sie die Ultimaker Digital Factory, um eine Verbindung herzustellen." - -#~ msgctxt "@label ({} is printer name)" -#~ msgid "{} will be removed until the next account sync.
    To remove {} permanently, visit Ultimaker Digital Factory.

    Are you sure you want to remove {} temporarily?" -#~ msgstr "{} wird bis zur nächsten Synchronisierung des Kontos entfernt.
    Wenn Sie {} dauerhaft entfernen möchten, dann besuchen Sie bitte die Ultimaker Digital Factory.

    Möchten Sie {} wirklich vorübergehend entfernen?" - -#~ msgctxt "@label" -#~ msgid "" -#~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n" -#~ "Are you sure you want to continue?" -#~ msgstr "" -#~ "Es werden gleich {} Drucker aus Cura entfernt. Der Vorgang kann nicht rückgängig gemacht werden. \n" -#~ "Möchten Sie wirklich fortfahren?" - -#~ msgctxt "@label" -#~ msgid "" -#~ "You are about to remove all printers from Cura. This action cannot be undone. \n" -#~ "Are you sure you want to continue?" -#~ msgstr "" -#~ "Es werden gleich alle Drucker aus Cura entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden. \n" -#~ "Möchten Sie wirklich fortfahren?" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update" -#~ msgstr "Aktualisierung" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Create new" -#~ msgstr "Neu erstellen" - -#~ msgctxt "@label" -#~ msgid "Shared Heater" -#~ msgstr "Gemeinsames Heizelement" - -#~ msgctxt "@info" -#~ msgid "The webcam is not available because you are monitoring a cloud printer." -#~ msgstr "Die Webcam ist nicht verfügbar, weil Sie einen Cloud-Drucker überwachen." - -#~ msgctxt "@button" -#~ msgid "Ultimaker Digital Factory" -#~ msgstr "Ultimaker Digital Factory" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can Discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "Sie haben einige Profileinstellungen personalisiert.\n" -#~ "Möchten Sie diese geänderten Einstellungen nach einem Profilwechsel beibehalten?\n" -#~ "Sie können die Änderungen auch verwerfen, um die Standardeinstellungen von '%1' zu laden." - -#~ msgctxt "@label" -#~ msgid "Overrides %1 setting." -#~ msgid_plural "Overrides %1 settings." -#~ msgstr[0] "Überschreibt %1 Einstellung." -#~ msgstr[1] "Überschreibt %1 Einstellungen." - -#~ msgctxt "@text" -#~ msgid "Please give your printer a name" -#~ msgstr "Weisen Sie Ihrem Drucker bitte einen Namen zu" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." -#~ msgstr "Für Ihren {machine_name} sind neue Funktionen verfügbar! Es wird empfohlen, ein Firmware-Update für Ihren Drucker auszuführen." - -#~ msgctxt "@action:button" -#~ msgid "Print via Cloud" -#~ msgstr "Über Cloud drucken" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print via Cloud" -#~ msgstr "Über Cloud drucken" - -#~ msgctxt "@info:status" -#~ msgid "Connected via Cloud" -#~ msgstr "Über Cloud verbunden" - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Verbinden mit Ultimaker Cloud" - -#~ msgctxt "@label" -#~ msgid "You need to login first before you can rate" -#~ msgstr "Vor der Bewertung müssen Sie sich anmelden" - -#~ msgctxt "@label" -#~ msgid "You need to install the package before you can rate" -#~ msgstr "Vor der Bewertung müssen Sie das Paket installierten" - -#~ msgctxt "@label" -#~ msgid "ratings" -#~ msgstr "Bewertungen" - -#~ msgctxt "@label" -#~ msgid "Featured" -#~ msgstr "Unterstützter" - -#~ msgctxt "@label" -#~ msgid "Your rating" -#~ msgstr "Ihre Bewertung" - -#~ msgctxt "@label" -#~ msgid "Author" -#~ msgstr "Autor" - -#~ msgctxt "@description" -#~ msgid "Get plugins and materials verified by Ultimaker" -#~ msgstr "Holen Sie sich Plugins und von Ultimaker getestete Materialien" - -#~ msgctxt "@label The argument is a username." -#~ msgid "Hi %1" -#~ msgstr "Hallo %1" - -#~ msgctxt "@button" -#~ msgid "Ultimaker account" -#~ msgstr "Ultimaker‑Konto" - -#~ msgctxt "@button" -#~ msgid "Sign out" -#~ msgstr "Abmelden" - -#~ msgctxt "@label" -#~ msgid "Support library for analysis of complex networks" -#~ msgstr "Support-Bibliothek für die Analyse von komplexen Netzwerken" - -#~ msgctxt "@Label" -#~ msgid "Python HTTP library" -#~ msgstr "Bibliothek für Python HTTP" - -#~ msgctxt "@text:window" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to keep or discard those settings?" -#~ msgstr "" -#~ "Sie haben einige Profileinstellungen angepasst.\n" -#~ "Möchten Sie diese Einstellungen übernehmen oder verwerfen?" - -#~ msgctxt "@title:column" -#~ msgid "Default" -#~ msgstr "Standard" - -#~ msgctxt "@title:column" -#~ msgid "Customized" -#~ msgstr "Angepasst" - -#~ msgctxt "@action:button" -#~ msgid "Discard" -#~ msgstr "Verwerfen" - -#~ msgctxt "@action:button" -#~ msgid "Keep" -#~ msgstr "Übernehmen" - -#~ msgctxt "@action:button" -#~ msgid "Create New Profile" -#~ msgstr "Neues Profil erstellen" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "&Save..." -#~ msgstr "&Speichern..." - -#~ msgctxt "@text" -#~ msgid "Place enter your printer's IP address." -#~ msgstr "Bitte geben Sie die IP-Adresse Ihres Druckers ein." - -#~ msgctxt "@button" -#~ msgid "Create an account" -#~ msgstr "Ein Konto erstellen" - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder." -#~ msgstr "Es ist kein Objekt zum Schneiden vorhanden, da keines der Modelle den Druckabmessungen entspricht oder weil sie einem deaktivierten Extruder zugewiesen wurden. Bitte die Modelle passend skalieren oder drehen." - -#~ msgctxt "@info:backup_status" -#~ msgid "There was an error listing your backups." -#~ msgstr "Beim Versuch, Ihre Backups aufzulisten, trat ein Fehler auf." - -#~ msgctxt "@title:groupbox" -#~ msgid "User description (Note: Developers may not speak your language, please use English if possible)" -#~ msgstr "Benutzerbeschreibung (Hinweis: Bitte schreiben Sie auf Englisch, da die Entwickler Ihre Sprache möglicherweise nicht beherrschen.)" - -#~ msgctxt "@title:window" -#~ msgid "Closing Cura" -#~ msgstr "Cura wird geschlossen" - -#~ msgctxt "@label" -#~ msgid "Are you sure you want to exit Cura?" -#~ msgstr "Möchten Sie Cura wirklich beenden?" - -#~ msgctxt "@label" -#~ msgid "Language:" -#~ msgstr "Sprache:" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud" - -#~ msgctxt "@text" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "Der 3D-Druckablauf der nächsten Generation" - -#~ msgctxt "@text" -#~ msgid "- Send print jobs to Ultimaker printers outside your local network" -#~ msgstr "- Aufträge an Ultimaker-Drucker außerhalb Ihres lokalen Netzwerks senden" - -#~ msgctxt "@text" -#~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere" -#~ msgstr "- Ihre Ultimaker Cura-Einstellungen für die Verwendung andernorts an die Cloud senden" - -#~ msgctxt "@text" -#~ msgid "- Get exclusive access to print profiles from leading brands" -#~ msgstr "- Exklusiven Zugang zu Druckprofilen von führenden Marken erhalten" - -#~ msgctxt "@label" -#~ msgid "The value is resolved from per-extruder values " -#~ msgstr "Der Wert wird von Pro-Extruder-Werten gelöst " - -#~ msgctxt "@label" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "Der 3D-Druckablauf der nächsten Generation" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to print profiles from leading brands" -#~ msgstr "" -#~ "- Aufträge an Ultimaker-Drucker außerhalb Ihres lokalen Netzwerks senden\n" -#~ "- Ihre Ultimaker Cura-Einstellungen für die Verwendung andernorts an die Cloud senden\n" -#~ "- Exklusiven Zugang zu Druckprofilen von führenden Marken erhalten" - -#~ msgctxt "@title:window" -#~ msgid "About " -#~ msgstr "Über " - -#~ msgctxt "@info:button" -#~ msgid "Quit Cura" -#~ msgstr "Quit Cura" - -#~ msgctxt "@action:checkbox" -#~ msgid "Infill only" -#~ msgstr "Nur Füllungen" - -#~ msgctxt "@info:tooltip" -#~ msgid "Change active post-processing scripts" -#~ msgstr "Aktive Skripts Nachbearbeitung ändern" - -#~ msgctxt "@label:listbox" -#~ msgid "Feedrate" -#~ msgstr "Vorschub" - -#~ msgctxt "name" -#~ msgid "Machine Settings action" -#~ msgstr "Beschreibung Geräteeinstellungen" - -#~ msgctxt "@info:title" -#~ msgid "New cloud printers found" -#~ msgstr "Neue Cloud-Drucker gefunden" - -#~ msgctxt "@info:message" -#~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers." -#~ msgstr "Es wurden neue Drucker gefunden, die Sie zu Ihrem Konto hinzufügen können. Sie finden diese in der Liste gefundener Drucker." - -#~ msgctxt "@info:status" -#~ msgid "Cura does not accurately display layers when Wire Printing is enabled" -#~ msgstr "Cura zeigt die Schichten nicht akkurat an, wenn Wire Printing aktiviert ist" - -#~ msgctxt "@label" -#~ msgid "Pre-sliced file {0}" -#~ msgstr "Vorgeschnittene Datei {0}" - -#~ msgctxt "@label" -#~ msgid "" -#~ "This plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ "Dieses Plugin enthält eine Lizenz.\n" -#~ "Sie müssen diese Lizenz akzeptieren, um das Plugin zu installieren.\n" -#~ "Stimmen Sie den nachfolgenden Bedingungen zu?" - -#~ msgctxt "@action:button" -#~ msgid "Accept" -#~ msgstr "Akzeptieren" - -#~ msgctxt "@action:button" -#~ msgid "Decline" -#~ msgstr "Ablehnen" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show All Settings" -#~ msgstr "Alle Einstellungen anzeigen" - -#~ msgctxt "@title:window" -#~ msgid "Ultimaker Cura" -#~ msgstr "Ultimaker Cura" - -#~ msgctxt "@title:window" -#~ msgid "About Cura" -#~ msgstr "Über Cura" - -#~ msgctxt "@item:inmenu" -#~ msgid "Flatten active settings" -#~ msgstr "Einstellungen Glätten aktiv" - -#~ msgctxt "@info:status" -#~ msgid "Profile has been flattened & activated." -#~ msgstr "Das Profil wurde geglättet und aktiviert." - -#~ msgctxt "X3g Writer Plugin Description" -#~ msgid "Writes X3g to files" -#~ msgstr "Schreibt X3g in Dateien" - -#~ msgctxt "X3g Writer File Description" -#~ msgid "X3g File" -#~ msgstr "X3g-Datei" - -#~ msgctxt "X3G Writer File Description" -#~ msgid "X3G File" -#~ msgstr "X3G-Datei" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Open Compressed Triangle Mesh" -#~ msgstr "Öffnen Sie das komprimierte Dreiecksnetz" - -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "Profilassistent" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "Profilassistent" - -#~ msgctxt "@action:button" -#~ msgid "Retry" -#~ msgstr "Erneut versuchen" - -#~ msgctxt "@label:table_header" -#~ msgid "Print Core" -#~ msgstr "Print Core" - -#~ msgctxt "@label" -#~ msgid "Don't support overlap with other models" -#~ msgstr "Keine Überlappung mit anderen Modellen unterstützen" - -#~ msgctxt "@label" -#~ msgid "Modify settings for overlap with other models" -#~ msgstr "Einstellungen für Überlappung mit anderen Modellen bearbeiten" - -#~ msgctxt "@label" -#~ msgid "Modify settings for infill of other models" -#~ msgstr "Einstellungen für Füllung von anderen Modellen bearbeiten" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update existing" -#~ msgstr "Vorhandenes aktualisieren" - -#~ msgctxt "@label" -#~ msgid "Not supported" -#~ msgstr "Nicht unterstützt" - -#~ msgctxt "@action:button" -#~ msgid "Previous" -#~ msgstr "Zurück" - -#~ msgctxt "@label" -#~ msgid "Tip" -#~ msgstr "Tipp" - -#~ msgctxt "@label" -#~ msgid "Print experiment" -#~ msgstr "Druckexperiment" - -#~ msgctxt "@label" -#~ msgid "Checklist" -#~ msgstr "Checkliste" - -#~ msgctxt "@label" -#~ msgid "Please select any upgrades made to this Ultimaker 2." -#~ msgstr "Wählen Sie bitte alle durchgeführten Upgrades für diesen Ultimaker 2." - -#~ msgctxt "@label" -#~ msgid "Olsson Block" -#~ msgstr "Olsson-Block" - -#~ msgctxt "@window:text" -#~ msgid "Camera rendering: " -#~ msgstr "Kamera-Rendering: " - -#~ msgctxt "@info:tooltip" -#~ msgid "Use multi build plate functionality" -#~ msgstr "Mehrfach-Druckplattenfunktion verwenden" - -#~ msgctxt "@option:check" -#~ msgid "Use multi build plate functionality (restart required)" -#~ msgstr "Mehrfach-Druckplattenfunktion verwenden (Neustart erforderlich)" - -#~ msgctxt "@label" -#~ msgid "Default profiles" -#~ msgstr "Standardprofile" - -#~ msgctxt "@label:textbox" -#~ msgid "search settings" -#~ msgstr "Einstellungen durchsuchen" - -#~ msgctxt "@label" -#~ msgid "Layer Height" -#~ msgstr "Schichtdicke" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile." -#~ msgstr "Dieses Qualitätsprofil ist für Ihr aktuelles Material und Ihre derzeitige Düsenkonfiguration nicht verfügbar. Bitte ändern Sie diese, um das Qualitätsprofil zu aktivieren." - -#~ msgctxt "@tooltip" -#~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" -#~ msgstr "Ein benutzerdefiniertes Profil ist derzeit aktiv. Wählen Sie ein voreingestelltes Qualitätsprofil aus der Registerkarte „Benutzerdefiniert“, um den Schieberegler für Qualität zu aktivieren" - -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "&Druckplatte" - -#~ msgctxt "@title:settings" -#~ msgid "&Profile" -#~ msgstr "&Profil" - -#~ msgctxt "@action:label" -#~ msgid "Build plate" -#~ msgstr "Druckplatte" - -#~ msgctxt "description" -#~ msgid "Dump the contents of all settings to a HTML file." -#~ msgstr "Die Inhalte aller Einstellungen in eine HTML-Datei ausgeben." - -#~ msgctxt "name" -#~ msgid "God Mode" -#~ msgstr "Gott-Modus" - -#~ msgctxt "description" -#~ msgid "Create a flattened quality changes profile." -#~ msgstr "Erstellt eine geglättete Qualität, verändert das Profil." - -#~ msgctxt "name" -#~ msgid "Profile Flattener" -#~ msgstr "Profilglättfunktion" - -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "Ermöglichen Sie Materialherstellern die Erstellung neuer Material- und Qualitätsprofile, indem Sie eine Drop-In-Benutzerschnittstelle verwenden." - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "Druckprofil-Assistent" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network." -#~ msgstr "Über Netzwerk verbunden." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. Please approve the access request on the printer." -#~ msgstr "Über Netzwerk verbunden. Geben Sie die Zugriffsanforderung für den Drucker frei." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. No access to control the printer." -#~ msgstr "Über Netzwerk verbunden. Kein Zugriff auf die Druckerverwaltung." - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer requested. Please approve the request on the printer" -#~ msgstr "Zugriff auf Drucker erforderlich. Bestätigen Sie den Zugriff auf den Drucker" - -#~ msgctxt "@info:title" -#~ msgid "Authentication status" -#~ msgstr "Authentifizierungsstatus" - -#~ msgctxt "@info:title" -#~ msgid "Authentication Status" -#~ msgstr "Authentifizierungsstatus" - -#~ msgctxt "@info:tooltip" -#~ msgid "Re-send the access request" -#~ msgstr "Zugriffanforderung erneut senden" - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer accepted" -#~ msgstr "Zugriff auf den Drucker genehmigt" - -#~ msgctxt "@info:status" -#~ msgid "No access to print with this printer. Unable to send print job." -#~ msgstr "Kein Zugriff auf das Drucken mit diesem Drucker. Druckauftrag kann nicht gesendet werden." - -#~ msgctxt "@action:button" -#~ msgid "Request Access" -#~ msgstr "Zugriff anfordern" - -#~ msgctxt "@info:tooltip" -#~ msgid "Send access request to the printer" -#~ msgstr "Zugriffsanforderung für den Drucker senden" - -#~ msgctxt "@label" -#~ msgid "Unable to start a new print job." -#~ msgstr "Es kann kein neuer Druckauftrag gestartet werden." - -#~ msgctxt "@label" -#~ msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." -#~ msgstr "Es liegt ein Problem mit der Konfiguration Ihres Ultimaker vor, das den Druckstart verhindert. Lösen Sie dieses Problem bitte, bevor Sie fortfahren." - -#~ msgctxt "@window:title" -#~ msgid "Mismatched configuration" -#~ msgstr "Konfiguration nicht übereinstimmend" - -#~ msgctxt "@label" -#~ msgid "Are you sure you wish to print with the selected configuration?" -#~ msgstr "Möchten Sie wirklich mit der gewählten Konfiguration drucken?" - -#~ msgctxt "@label" -#~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "Anforderungen zwischen der Druckerkonfiguration oder -kalibrierung und Cura stimmen nicht überein. Für optimale Ergebnisse schneiden Sie stets für die PrintCores und Materialien, die in Ihren Drucker eingelegt wurden." - -#~ msgctxt "@info:status" -#~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." -#~ msgstr "Das Senden neuer Aufträge ist (vorübergehend) blockiert; der vorherige Druckauftrag wird noch gesendet." - -#~ msgctxt "@info:status" -#~ msgid "Sending data to printer" -#~ msgstr "Daten werden zum Drucker gesendet" - -#~ msgctxt "@info:title" -#~ msgid "Sending Data" -#~ msgstr "Daten werden gesendet" - -#~ msgctxt "@info:status" -#~ msgid "No Printcore loaded in slot {slot_number}" -#~ msgstr "Kein PrintCore geladen in Steckplatz {slot_number}" - -#~ msgctxt "@info:status" -#~ msgid "No material loaded in slot {slot_number}" -#~ msgstr "Kein Material geladen in Steckplatz {slot_number}" - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" -#~ msgstr "Abweichender PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) für Extruder gewählt {extruder_id}" - -#~ msgctxt "@label" -#~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Abweichendes Material (Cura: {0}, Drucker: {1}) für Extruder {2} gewählt" - -#~ msgctxt "@window:title" -#~ msgid "Sync with your printer" -#~ msgstr "Synchronisieren Ihres Druckers" - -#~ msgctxt "@label" -#~ msgid "Would you like to use your current printer configuration in Cura?" -#~ msgstr "Möchten Sie Ihre aktuelle Druckerkonfiguration in Cura verwenden?" - -#~ msgctxt "@label" -#~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "Die PrintCores und/oder Materialien auf Ihrem Drucker unterscheiden sich von denen Ihres aktuellen Projekts. Für optimale Ergebnisse schneiden Sie stets für die PrintCores und Materialien, die in Ihren Drucker eingelegt wurden." - -#~ msgctxt "@action:button" -#~ msgid "View in Monitor" -#~ msgstr "In Monitor überwachen" - -#~ msgctxt "@info:status" -#~ msgid "Printer '{printer_name}' has finished printing '{job_name}'." -#~ msgstr "Drucker '{printer_name}' hat '{job_name}' vollständig gedrückt." - -#~ msgctxt "@info:status" -#~ msgid "The print job '{job_name}' was finished." -#~ msgstr "Der Druckauftrag '{job_name}' wurde ausgeführt." - -#~ msgctxt "@info:status" -#~ msgid "Print finished" -#~ msgstr "Druck vollendet" - -#~ msgctxt "@label:material" -#~ msgid "Empty" -#~ msgstr "Leer" - -#~ msgctxt "@label:material" -#~ msgid "Unknown" -#~ msgstr "Unbekannt" - -#~ msgctxt "@info:title" -#~ msgid "Cloud error" -#~ msgstr "Cloudfehler" - -#~ msgctxt "@info:status" -#~ msgid "Could not export print job." -#~ msgstr "Druckauftrag konnte nicht exportiert werden." - -#~ msgctxt "@info:description" -#~ msgid "There was an error connecting to the cloud." -#~ msgstr "Es liegt ein Fehler beim Verbinden mit der Cloud vor." - -#~ msgctxt "@info:status" -#~ msgid "Uploading via Ultimaker Cloud" -#~ msgstr "Über Ultimaker Cloud hochladen" - -#~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Verbinden mit Ultimaker Cloud" - -#~ msgctxt "@action" -#~ msgid "Don't ask me again for this printer." -#~ msgstr "Nicht mehr für diesen Drucker nachfragen." - -#~ msgctxt "@info:status" -#~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Sie können jetzt Druckaufträge mithilfe Ihres Ultimaker-Kontos von einem anderen Ort aus senden und überwachen." - -#~ msgctxt "@info:status" -#~ msgid "Connected!" -#~ msgstr "Verbunden!" - -#~ msgctxt "@action" -#~ msgid "Review your connection" -#~ msgstr "Ihre Verbindung überprüfen" - -#~ msgctxt "@info:status Don't translate the XML tags !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "Die Maschine, die im Profil {0} ({1}) definiert wurde, entspricht nicht Ihrer derzeitigen Maschine ({2}). Importieren nicht möglich." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}:" -#~ msgstr "Import des Profils aus Datei {0} fehlgeschlagen:" - -#~ msgctxt "@window:title" -#~ msgid "Existing Connection" -#~ msgstr "Vorhandene Verbindung" - -#~ msgctxt "@message:text" -#~ msgid "This printer/group is already added to Cura. Please select another printer/group." -#~ msgstr "Diese/r Drucker/Gruppe wurde bereits zu Cura hinzugefügt. Wählen Sie bitte eine/n andere/n Drucker/Gruppe." - -#~ msgctxt "@label" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "Geben Sie die IP-Adresse oder den Hostnamen Ihres Druckers auf dem Netzwerk ein." - -#~ msgctxt "@info:tooltip" -#~ msgid "Connect to a printer" -#~ msgstr "Mit einem Drucker verbinden" - -#~ msgctxt "@title" -#~ msgid "Cura Settings Guide" -#~ msgstr "Anleitung für Cura-Einstellungen" - -#~ msgctxt "@info:tooltip" -#~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective." -#~ msgstr "Das Zoomen in Mausrichtung wird in der Orthogonalansicht nicht unterstützt." - -#~ msgid "Orthogonal" -#~ msgstr "Orthogonal" - -#~ msgctxt "description" -#~ msgid "Manages network connections to Ultimaker 3 printers." -#~ msgstr "Verwaltet Netzwerkverbindungen zu Ultimaker 3-Druckern." - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection" -#~ msgstr "UM3-Netzwerkverbindung" - -#~ msgctxt "description" -#~ msgid "Provides extra information and explanations about settings in Cura, with images and animations." -#~ msgstr "Bietet zusätzliche Informationen und Erklärungen zu den Einstellungen in Cura mit Abbildungen und Animationen." - -#~ msgctxt "name" -#~ msgid "Settings Guide" -#~ msgstr "Anleitung für Einstellungen" - -#~ msgctxt "@item:inmenu" -#~ msgid "Cura Settings Guide" -#~ msgstr "Anleitung für Cura-Einstellungen" - -#~ msgctxt "@info:generic" -#~ msgid "Settings have been changed to match the current availability of extruders: [%s]" -#~ msgstr "Die Einstellungen wurden passend für die aktuelle Verfügbarkeit der Extruder geändert: [%s]" - -#~ msgctxt "@title:groupbox" -#~ msgid "User description" -#~ msgstr "Benutzerbeschreibung" - -#~ msgctxt "@info" -#~ msgid "These options are not available because you are monitoring a cloud printer." -#~ msgstr "Diese Optionen sind nicht verfügbar, weil Sie einen Cloud-Drucker überwachen." - -#~ msgctxt "@label link to connect manager" -#~ msgid "Go to Cura Connect" -#~ msgstr "Gehe zu Cura Connect" - -#~ msgctxt "@info" -#~ msgid "All jobs are printed." -#~ msgstr "Alle Aufträge wurden gedruckt." - -#~ msgctxt "@label link to connect manager" -#~ msgid "View print history" -#~ msgstr "Druckauftragshistorie anzeigen" - -#~ 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.\n" -#~ "\n" -#~ "Select your printer from the list below:" -#~ msgstr "" -#~ "Um über das Netzwerk direkt auf Ihrem Drucker zu drucken, stellen Sie bitte sicher, dass der Drucker mit dem Netzwerkkabel verbunden ist oder verbinden Sie Ihren Drucker mit Ihrem WLAN-Netzwerk. Wenn Sie Cura nicht mit Ihrem Drucker verbinden, können Sie dennoch ein USB-Laufwerk für die Übertragung von G-Code-Dateien auf Ihren Drucker verwenden.\n" -#~ "\n" -#~ "Wählen Sie Ihren Drucker aus der folgenden Liste:" - -#~ 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." -#~ msgstr "" -#~ "Stellen Sie bitte sicher, dass Ihr Drucker verbunden ist:\n" -#~ "- Prüfen Sie, ob Ihr Drucker eingeschaltet ist.\n" -#~ "- Prüfen Sie, ob der Drucker mit dem Netzwerk verbunden ist." - -#~ msgctxt "@option:check" -#~ msgid "See only current build plate" -#~ msgstr "Nur aktuelle Druckplatte anzeigen" - -#~ msgctxt "@action:button" -#~ msgid "Arrange to all build plates" -#~ msgstr "An allen Druckplatten ausrichten" - -#~ msgctxt "@action:button" -#~ msgid "Arrange current build plate" -#~ msgstr "An aktueller Druckplatte ausrichten" - -#~ msgctxt "description" -#~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)." -#~ msgstr "Ermöglicht das Speichern des resultierenden Slices als X3G-Datei, um Drucker zu unterstützen, die dieses Format lesen (Malyan, Makerbot und andere Sailfish-basierte Drucker)." - -#~ msgctxt "name" -#~ msgid "X3GWriter" -#~ msgstr "X3G-Writer" - -#~ msgctxt "description" -#~ msgid "Reads SVG files as toolpaths, for debugging printer movements." -#~ msgstr "Liest SVG-Dateien als Werkzeugwege für die Fehlersuche bei Druckerbewegungen." - -#~ msgctxt "name" -#~ msgid "SVG Toolpath Reader" -#~ msgstr "SVG-Werkzeugweg-Reader" - -#~ msgctxt "@item:inmenu" -#~ msgid "Changelog" -#~ msgstr "Änderungsprotokoll" - -#~ msgctxt "@item:inmenu" -#~ msgid "Show Changelog" -#~ msgstr "Änderungsprotokoll anzeigen" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to remote cluster" -#~ msgstr "Daten werden zu Remote-Cluster gesendet" - -#~ msgctxt "@info:status" -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Verbinden mit Ultimaker Cloud" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymized usage statistics." -#~ msgstr "Cura erfasst anonymisierte Nutzungsstatistiken." - -#~ msgctxt "@info:title" -#~ msgid "Collecting Data" -#~ msgstr "Daten werden erfasst" - -#~ msgctxt "@action:button" -#~ msgid "More info" -#~ msgstr "Mehr Infos" - -#~ msgctxt "@action:tooltip" -#~ msgid "See more information on what data Cura sends." -#~ msgstr "Siehe mehr Informationen dazu, was Cura sendet." - -#~ msgctxt "@action:button" -#~ msgid "Allow" -#~ msgstr "Zulassen" - -#~ msgctxt "@action:tooltip" -#~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." -#~ msgstr "Damit lassen Sie zu, dass Cura anonymisierte Nutzungsstatistiken sendet, um zukünftige Verbesserungen für Cura zu definieren. Einige Ihrer Präferenzen und Einstellungen, die Cura-Version und ein Hash der Modelle, die Sie slicen, werden gesendet." - -#~ msgctxt "@item:inmenu" -#~ msgid "Evaluation" -#~ msgstr "Bewertung" - -#~ msgctxt "@info:title" -#~ msgid "Network enabled printers" -#~ msgstr "Netzwerkfähige Drucker" - -#~ msgctxt "@info:title" -#~ msgid "Local printers" -#~ msgstr "Lokale Drucker" - -#~ msgctxt "@info:backup_failed" -#~ msgid "Tried to restore a Cura backup that does not match your current version." -#~ msgstr "Versucht, ein Cura-Backup zu erstellen, das nicht Ihrer aktuellen Version entspricht." - -#~ msgctxt "@title" -#~ msgid "Machine Settings" -#~ msgstr "Geräteeinstellungen" - -#~ msgctxt "@label" -#~ msgid "Printer Settings" -#~ msgstr "Druckereinstellungen" - -#~ msgctxt "@option:check" -#~ msgid "Origin at center" -#~ msgstr "Ausgang in Mitte" - -#~ msgctxt "@option:check" -#~ msgid "Heated bed" -#~ msgstr "Heizbares Bett" - -#~ msgctxt "@label" -#~ msgid "Printhead Settings" -#~ msgstr "Druckkopfeinstellungen" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Abstand von der linken Seite des Druckkopfes zur Düsenmitte. Wird verwendet, um Kollisionen zwischen vorherigen Drucken und dem Druckkopf während des Druckmodus „Nacheinander“ zu vermeiden." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Abstand von der Vorderseite des Druckkopfes zur Düsenmitte. Wird verwendet, um Kollisionen zwischen vorherigen Drucken und dem Druckkopf während des Druckmodus „Nacheinander“ zu vermeiden." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Abstand von der rechten Seite des Druckkopfes zur Düsenmitte. Wird verwendet, um Kollisionen zwischen vorherigen Drucken und dem Druckkopf während des Druckmodus „Nacheinander“ zu vermeiden." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Abstand von der Rückseite des Druckkopfes zur Düsenmitte. Wird verwendet, um Kollisionen zwischen vorherigen Drucken und dem Druckkopf während des Druckmodus „Nacheinander“ zu vermeiden." - -#~ msgctxt "@label" -#~ msgid "Gantry height" -#~ msgstr "Brückenhöhe" - -#~ msgctxt "@tooltip" -#~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." -#~ msgstr "Der Höhenunterschied zwischen der Düsenspitze und dem Brückensystem (X- und Y-Achsen). Wird verwendet, um Kollisionen zwischen vorherigen Drucken und der Brücke zu verhindern, wenn im Modus „Nacheinander“ gedruckt wird." - -#~ msgctxt "@label" -#~ msgid "Start G-code" -#~ msgstr "Start G-code" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very start." -#~ msgstr "G-Code-Befehle, die zum Start ausgeführt werden sollen." - -#~ msgctxt "@label" -#~ msgid "End G-code" -#~ msgstr "Ende G-code" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very end." -#~ msgstr "G-Code-Befehle, die am Ende ausgeführt werden sollen." - -#~ msgctxt "@label" -#~ msgid "Nozzle Settings" -#~ msgstr "Düseneinstellungen" - -#~ msgctxt "@tooltip" -#~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." -#~ msgstr "Der Nenndurchmesser des durch den Drucker unterstützten Filaments. Der exakte Durchmesser wird durch das Material und/oder das Profil überschrieben." - -#~ msgctxt "@label" -#~ msgid "Extruder Start G-code" -#~ msgstr "G-Code Extruder-Start" - -#~ msgctxt "@label" -#~ msgid "Extruder End G-code" -#~ msgstr "G-Code Extruder-Ende" - -#~ msgctxt "@label" -#~ msgid "Changelog" -#~ msgstr "Änderungsprotokoll" - -#~ msgctxt "@title:window" -#~ msgid "User Agreement" -#~ msgstr "Benutzervereinbarung" - -#~ msgctxt "@alabel" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "Geben Sie die IP-Adresse oder den Hostnamen Ihres Druckers auf dem Netzwerk ein." - -#~ msgctxt "@info" -#~ msgid "Please select a network connected printer to monitor." -#~ msgstr "Bitte einen mit dem Netzwerk verbunden Drucker für die Überwachung wählen." - -#~ msgctxt "@info" -#~ msgid "Please connect your Ultimaker printer to your local network." -#~ msgstr "Verbinden Sie Ihren Ultimaker-Drucker bitte mit Ihrem lokalen Netzwerk." - -#~ msgctxt "@text:window" -#~ msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent." -#~ msgstr "Cura sendet anonyme Daten an Ultimaker, um die Druckqualität und Benutzererfahrung zu steigern. Nachfolgend ist ein Beispiel aller Daten, die gesendet werden." - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send this data" -#~ msgstr "Ich möchte diese Daten nicht senden" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending this data to Ultimaker and help us improve Cura" -#~ msgstr "Ich erlaube das Senden der Daten an Ultimaker, um Cura zu verbessern" - -#~ msgctxt "@label" -#~ msgid "No print selected" -#~ msgstr "Kein Druck ausgewählt" - -#~ msgctxt "@info:tooltip" -#~ 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 "Standardmäßig repräsentieren weiße Pixel hohe Punkte im Netz und schwarze Pixel repräsentieren niedrige Punkte im Netz. Ändern Sie diese Option um das Verhalten so umzukehren, dass schwarze Pixel hohe Punkte im Netz darstellen und weiße Pixel niedrige Punkte im Netz." - -#~ msgctxt "@title" -#~ msgid "Select Printer Upgrades" -#~ msgstr "Drucker-Upgrades wählen" - -#~ msgctxt "@label" -#~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "Wählen Sie, welcher Extruder für die Unterstützung verwendet wird. Dient zum Konstruieren von Stützstrukturen unter dem Modell, damit dieses nicht absinkt oder frei schwebend gedruckt wird." - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "Dieses Qualitätsprofil ist für Ihr aktuelles Material und Ihre derzeitige Düsenkonfiguration nicht verfügbar. Bitte ändern Sie diese, um das Qualitätsprofil zu aktivieren." - -#~ msgctxt "@label shown when we load a Gcode file" -#~ msgid "Print setup disabled. G code file can not be modified." -#~ msgstr "Druckeinrichtung ist deaktiviert. G-Code kann nicht geändert werden." - -#~ msgctxt "@label" -#~ msgid "See the material compatibility chart" -#~ msgstr "Siehe Materialkompatibilitätstabelle" - -#~ msgctxt "@label" -#~ msgid "View types" -#~ msgstr "Typen anzeigen" - -#~ msgctxt "@label" -#~ msgid "Hi " -#~ msgstr "Hallo " - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to material profiles from leading brands" -#~ msgstr "" -#~ "- Aufträge an Ultimaker-Drucker außerhalb Ihres lokalen Netzwerks senden\n" -#~ "- Ihre Ultimaker Cura-Einstellungen für die Verwendung andernorts an die Cloud senden\n" -#~ "- Exklusiven Zugang zu Materialprofilen von führenden Marken erhalten" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Unable to Slice" -#~ msgstr "Slicing nicht möglich" - -#~ msgctxt "@label" -#~ msgid "Time specification" -#~ msgstr "Zeitangabe" - -#~ msgctxt "@label" -#~ msgid "Material specification" -#~ msgstr "Materialangabe" - -#~ msgctxt "@title:tab" -#~ msgid "Add a printer to Cura" -#~ msgstr "Fügen Sie einen Drucker zu Cura hinzu" - -#~ msgctxt "@title:tab" -#~ msgid "" -#~ "Select the printer you want to use from the list below.\n" -#~ "\n" -#~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog." -#~ msgstr "" -#~ "Wählen Sie den zu verwendenden Drucker aus der nachfolgenden Liste.\n" -#~ "\n" -#~ "Wenn Ihr Drucker nicht in der Liste aufgeführt ist, verwenden Sie „Benutzerdefinierter FFF-Drucker“ aus der Kategorie „Benutzerdefiniert“ und passen Sie die Einstellungen im folgenden Dialog passend für Ihren Drucker an." - -#~ msgctxt "@label" -#~ msgid "Printer Name" -#~ msgstr "Druckername" - -#~ msgctxt "@action:button" -#~ msgid "Add Printer" -#~ msgstr "Drucker hinzufügen" - -#~ msgid "Modify G-Code" -#~ msgstr "G-Code ändern" - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." -#~ msgstr "Es ist kein Objekt zum Schneiden vorhanden, da keines der Modelle der Druckabmessung entspricht. Bitte die Modelle passend skalieren oder drehen." - -#~ msgctxt "@info:status" -#~ msgid "The selected material is incompatible with the selected machine or configuration." -#~ msgstr "Das gewählte Material ist mit der gewählten Maschine oder Konfiguration nicht kompatibel." - -#~ msgctxt "@info:title" -#~ msgid "Incompatible Material" -#~ msgstr "Material nicht kompatibel" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "Import des Profils aus Datei {0} fehlgeschlagen: {1}" - -#~ msgctxt "@title" -#~ msgid "Toolbox" -#~ msgstr "Toolbox" - -#~ msgctxt "@label" -#~ msgid "Not available" -#~ msgstr "Nicht verfügbar" - -#~ msgctxt "@label" -#~ msgid "Unreachable" -#~ msgstr "Nicht erreichbar" - -#~ msgctxt "@label" -#~ msgid "Available" -#~ msgstr "Verfügbar" - -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "Vorbereitung" - -#~ msgctxt "@label:status" -#~ msgid "Pausing" -#~ msgstr "Wird pausiert" - -#~ msgctxt "@label:status" -#~ msgid "Resuming" -#~ msgstr "Wird fortgesetzt" - -#~ msgctxt "@label" -#~ msgid "Waiting for: Unavailable printer" -#~ msgstr "Warten auf: Drucker nicht verfügbar" - -#~ msgctxt "@label" -#~ msgid "Waiting for: First available" -#~ msgstr "Warten auf: Ersten verfügbaren" - -#~ msgctxt "@label" -#~ msgid "Waiting for: " -#~ msgstr "Warten auf: " - -#~ msgctxt "@label" -#~ msgid "Configuration change" -#~ msgstr "Konfigurationsänderung" - -#~ msgctxt "@label" -#~ msgid "The assigned printer, %1, requires the following configuration change(s):" -#~ msgstr "Der zugewiesene Drucker %1 erfordert die folgende(n) Konfigurationsänderung(en):" - -#~ msgctxt "@label" -#~ msgid "Override" -#~ msgstr "Überschreiben" - -#~ msgctxt "@label" -#~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?" -#~ msgstr "Das Starten eines Druckauftrags mit einer inkompatiblen Konfiguration kann Ihren 3D-Drucker beschädigen. Möchten Sie die Konfiguration wirklich überschreiben und %1 drucken?" - -#~ msgctxt "@window:title" -#~ msgid "Override configuration configuration and start print" -#~ msgstr "Konfiguration überschreiben und Druck starten" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage queue" -#~ msgstr "Warteschlange verwalten" - -#~ msgctxt "@label" -#~ msgid "Printing" -#~ msgstr "Drucken" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage printers" -#~ msgstr "Drucker verwalten" - -#~ msgctxt "@action:button" -#~ msgid "Activate Configuration" -#~ msgstr "Konfiguration aktivieren" - -#~ msgctxt "@info:tooltip" -#~ msgid "Load the configuration of the printer into Cura" -#~ msgstr "Die Druckerkonfiguration in Cura laden" - -#~ msgctxt "@label" -#~ msgid "Show Travels" -#~ msgstr "Bewegungen anzeigen" - -#~ msgctxt "@label" -#~ msgid "Show Helpers" -#~ msgstr "Helfer anzeigen" - -#~ msgctxt "@label" -#~ msgid "Show Shell" -#~ msgstr "Gehäuse anzeigen" - -#~ msgctxt "@label" -#~ msgid "Show Infill" -#~ msgstr "Füllung anzeigen" - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send these data" -#~ msgstr "Ich möchte diese Daten nicht senden" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending these data to Ultimaker and help us improve Cura" -#~ msgstr "Ich erlaube das Senden dieser Daten an Ultimaker, um Cura zu verbessern" - -#~ msgctxt "@label" -#~ msgid "Printer type:" -#~ msgstr "Druckertyp:" - -#~ msgctxt "@label" -#~ msgid "Connection:" -#~ msgstr "Verbindung:" - -#~ msgctxt "@label" -#~ msgid "State:" -#~ msgstr "Status:" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for a printjob" -#~ msgstr "Warten auf einen Druckauftrag" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for someone to clear the build plate" -#~ msgstr "Warten auf Räumen des Druckbeets" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Aborting print..." -#~ msgstr "Drucken wird abgebrochen..." - -#~ msgctxt "@label" -#~ msgid "Protected profiles" -#~ msgstr "Geschützte Profile" - -#~ msgctxt "@label" -#~ msgid "Printer Name:" -#~ msgstr "Druckername:" - -#~ msgctxt "@label" -#~ msgid "Profile:" -#~ msgstr "Profil:" - -#~ msgctxt "@label:textbox" -#~ msgid "Search..." -#~ msgstr "Suchen..." - -#~ msgctxt "@action:inmenu" -#~ msgid "Collapse All" -#~ msgstr "Alle verkleinern" - -#~ msgctxt "@action:inmenu" -#~ msgid "Expand All" -#~ msgstr "Alle vergrößern" - -#~ msgctxt "@label:header configurations" -#~ msgid "Available configurations" -#~ msgstr "Verfügbare Konfigurationen" - -#~ msgctxt "@label:extruder label" -#~ msgid "Extruder" -#~ msgstr "Extruder" - -#~ msgctxt "@label:extruder label" -#~ msgid "Yes" -#~ msgstr "Ja" - -#~ msgctxt "@label:extruder label" -#~ msgid "No" -#~ msgstr "Nein" - -#~ msgctxt "@label:listbox" -#~ msgid "Print Setup" -#~ msgstr "Druckeinrichtung" - -#~ msgctxt "@label:listbox" -#~ msgid "" -#~ "Print Setup disabled\n" -#~ "G-code files cannot be modified" -#~ msgstr "" -#~ "Druckeinrichtung deaktiviert\n" -#~ "G-Code-Dateien können nicht geändert werden" - -#~ msgctxt "@label Hours and minutes" -#~ msgid "00h 00min" -#~ msgstr "00 Stunden 00 Minuten" - -#~ msgctxt "@tooltip" -#~ msgid "Time specification" -#~ msgstr "Zeitangabe" - -#~ msgctxt "@label" -#~ msgid "Cost specification" -#~ msgstr "Kostenangabe" - -#~ msgctxt "@label" -#~ msgid "Total:" -#~ msgstr "Insgesamt:" - -#~ msgctxt "@tooltip" -#~ msgid "Recommended Print Setup

    Print with the recommended settings for the selected printer, material and quality." -#~ msgstr "Empfohlene Druckeinrichtung

    Drucken mit den empfohlenen Einstellungen für den gewählten Drucker, das gewählte Material und die gewählte Qualität." - -#~ msgctxt "@tooltip" -#~ msgid "Custom Print Setup

    Print with finegrained control over every last bit of the slicing process." -#~ msgstr "Benutzerdefinierte Druckeinrichtung

    Druck mit Feineinstellung über jedem einzelnen Bereich des Schneidvorgangs." - -#~ msgctxt "@action:inmenu menubar:help" -#~ msgid "Show Engine &Log..." -#~ msgstr "Engine-&Protokoll anzeigen..." - -#~ msgctxt "@action:menu" -#~ msgid "Browse packages..." -#~ msgstr "Pakete durchsuchen..." - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "Expand/Collapse Sidebar" -#~ msgstr "Seitenleiste vergrößern/verkleinern" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3D model" -#~ msgstr "Bitte laden Sie ein 3D-Modell" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Ready to slice" -#~ msgstr "Bereit zum Slicen (Schneiden)" - -#~ msgctxt "@label:PrintjobStatus %1 is target operation" -#~ msgid "Ready to %1" -#~ msgstr "Bereit zum %1" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Slicing unavailable" -#~ msgstr "Slicing ist nicht verfügbar" - -#~ msgctxt "@info:tooltip" -#~ msgid "Slice current printjob" -#~ msgstr "Aktuellen Druckauftrag slicen" - -#~ msgctxt "@info:tooltip" -#~ msgid "Cancel slicing process" -#~ msgstr "Slicing-Vorgang abbrechen" - -#~ msgctxt "@label:Printjob" -#~ msgid "Prepare" -#~ msgstr "Vorbereiten" - -#~ msgctxt "@label:Printjob" -#~ msgid "Cancel" -#~ msgstr "Abbrechen" - -#~ msgctxt "@info:tooltip" -#~ msgid "Select the active output device" -#~ msgstr "Wählen Sie das aktive Ausgabegerät" - -#~ msgctxt "@title:menu" -#~ msgid "&View" -#~ msgstr "&Ansicht" - -#~ msgctxt "@title:menu" -#~ msgid "&Settings" -#~ msgstr "&Konfiguration" - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "&Toolbox" -#~ msgstr "&Toolbox" - -#~ msgctxt "@action:button" -#~ msgid "Open File" -#~ msgstr "Datei öffnen" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "Dieses Qualitätsprofil ist für Ihr aktuelles Material und Ihre derzeitige Düsenkonfiguration nicht verfügbar. Bitte ändern Sie diese, um dieses Qualitätsprofil zu aktivieren" - -#~ msgctxt "@label" -#~ msgid "Print Speed" -#~ msgstr "Druckgeschwindigkeit" - -#~ msgctxt "@label" -#~ msgid "Slower" -#~ msgstr "Langsamer" - -#~ msgctxt "@label" -#~ msgid "Faster" -#~ msgstr "Schneller" - -#~ msgctxt "@label" -#~ msgid "Enable gradual" -#~ msgstr "Graduell aktivieren" - -#~ msgctxt "@label" -#~ msgid "Generate Support" -#~ msgstr "Stützstruktur generieren" - -#~ msgctxt "@label" -#~ msgid "Build Plate Adhesion" -#~ msgstr "Druckplattenhaftung" - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints?
    Read the Ultimaker Troubleshooting Guides" -#~ msgstr "Sie benötigen Hilfe für Ihre Drucke?
    Lesen Sie die Ultimaker Anleitungen für Fehlerbehebung>" - -#~ msgctxt "@title:window" -#~ msgid "Engine Log" -#~ msgstr "Engine-Protokoll" - -#~ msgctxt "@label" -#~ msgid "Printer type" -#~ msgstr "Druckertyp" - -#~ msgctxt "@label" -#~ msgid "Use glue with this material combination" -#~ msgstr "Für diese Materialkombination Kleber verwenden" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "Kompatibilität prüfen" - -#~ msgctxt "@tooltip" -#~ msgid "Click to check the material compatibility on Ultimaker.com." -#~ msgstr "Klicken Sie, um die Materialkompatibilität auf Ultimaker.com zu prüfen." - -#~ msgctxt "description" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "Zeigt die Änderungen seit der letzten geprüften Version an." - -#~ msgctxt "name" -#~ msgid "Changelog" -#~ msgstr "Änderungsprotokoll" - -#~ msgctxt "description" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "Erstellt eine geglättete Qualität, verändert das Profil." - -#~ msgctxt "name" -#~ msgid "Profile flatener" -#~ msgstr "Profilglättfunktion" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license." -#~ msgstr "Den Benutzer einmalig fragen, ob er unsere Lizenz akzeptiert." - -#~ msgctxt "name" -#~ msgid "UserAgreement" -#~ msgstr "UserAgreement" - -#~ msgctxt "@warning:status" -#~ msgid "Please generate G-code before saving." -#~ msgstr "Generieren Sie vor dem Speichern bitte einen G-Code." - -#~ msgctxt "@action" -#~ msgid "Upgrade Firmware" -#~ msgstr "Firmware aktualisieren" - -#~ msgctxt "@label unknown material" -#~ msgid "Unknown" -#~ msgstr "Unbekannt" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "No custom profile to import in file {0}" -#~ msgstr "Kein benutzerdefiniertes Profil für das Importieren in Datei {0}" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "This profile {0} contains incorrect data, could not import it." -#~ msgstr "Dieses Profil {0} enthält falsche Daten, Importieren nicht möglich." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "Die Maschine, die im Profil {0} ({1}) definiert wurde, entspricht nicht Ihrer derzeitigen Maschine ({2}). Importieren nicht möglich." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall " -#~ msgstr "Deinstallieren bestätigen " - -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - -#~ msgctxt "@title" -#~ msgid "Upgrade Firmware" -#~ msgstr "Firmware aktualisieren" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Mit Doodle3D WLAN-Box drucken" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Mit Doodle3D WLAN-Box drucken" - -#~ msgctxt "@info:status" -#~ msgid "Connecting to Doodle3D Connect" -#~ msgstr "Zu Doodle3D Connect verbinden" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to Doodle3D Connect" -#~ msgstr "Daten werden zu Doodle3D Connect gesendet" - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -#~ msgstr "Daten können nicht zu Doodle3D Connect gesendet werden. Ist noch ein weiterer Auftrag in Bearbeitung?" - -#~ msgctxt "@info:status" -#~ msgid "Storing data on Doodle3D Connect" -#~ msgstr "Daten werden auf Doodle3D Connect gespeichert" - -#~ msgctxt "@info:status" -#~ msgid "File sent to Doodle3D Connect" -#~ msgstr "Datei wurde zu Doodle3D Connect gesendet" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect..." -#~ msgstr "Connect wird geöffnet ..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Open the Doodle3D Connect web interface" -#~ msgstr "Doodle3D Connect Web-Schnittstelle öffnen" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Blender file" -#~ msgstr "Blender-Datei" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Could not export using \"{}\" quality!\n" -#~ "Felt back to \"{}\"." -#~ msgstr "" -#~ "Exportieren in \"{}\" Qualität nicht möglich!\n" -#~ "Zurückgeschaltet auf \"{}\"." - -#~ msgctxt "@label" -#~ msgid "Contact" -#~ msgstr "Kontakt" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." -#~ msgstr "Dieser Drucker ist nicht eingerichtet um eine Gruppe von Ultimaker 3 Druckern anzusteuern." - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -#~ msgstr "Dieser Drucker steuert eine Gruppe von %1 Ultimaker 3 Druckern an." - -#~ msgctxt "@label: arg 1 is group name" -#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "%1 ist nicht für das Hosten einer Gruppe verbundener Ultimaker 3-Drucker eingerichtet" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Add/Remove printers" -#~ msgstr "Drucker hinzufügen/entfernen" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "Öffnet die Seite für Druckaufträge mit Ihrem Standard-Webbrowser." - -#~ msgctxt "@action:button" -#~ msgid "View print jobs" -#~ msgstr "Druckaufträge anzeigen" - -#~ msgctxt "@label:status" -#~ msgid "Preparing to print" -#~ msgstr "Vorb. für den Druck" - -#~ msgctxt "@label:status" -#~ msgid "Available" -#~ msgstr "Verfügbar" - -#~ msgctxt "@label:status" -#~ msgid "Lost connection with the printer" -#~ msgstr "Verbindung zum Drucker wurde unterbrochen" - -#~ msgctxt "@label:status" -#~ msgid "Unknown" -#~ msgstr "Unbekannt" - -#~ msgctxt "@label:status" -#~ msgid "Disabled" -#~ msgstr "Deaktiviert" - -#~ msgctxt "@label:status" -#~ msgid "Reserved" -#~ msgstr "Reserviert" - -#~ msgctxt "@label" -#~ msgid "Preparing to print" -#~ msgstr "Vorbereitung für den Druck" - -#~ msgctxt "@label:status" -#~ msgid "Print aborted" -#~ msgstr "Drucken wurde abgebrochen" - -#~ msgctxt "@label" -#~ msgid "Not accepting print jobs" -#~ msgstr "Akzeptiert keine Druckaufträge" - -#~ msgctxt "@label" -#~ msgid "Finishes at: " -#~ msgstr "Endet um: " - -#~ msgctxt "@label" -#~ msgid "Clear build plate" -#~ msgstr "Druckplatte räumen" - -#~ msgctxt "@label" -#~ msgid "Waiting for configuration change" -#~ msgstr "Warten auf eine Konfigurationsänderung" - -#~ msgctxt "@title" -#~ msgid "Print jobs" -#~ msgstr "Druckaufträge" - -#~ msgctxt "@label:title" -#~ msgid "Printers" -#~ msgstr "Drucker" - -#~ msgctxt "@action:button" -#~ msgid "View printers" -#~ msgstr "Drucker anzeigen" - -#~ msgctxt "@label:" -#~ msgid "Pause" -#~ msgstr "Pausieren" - -#~ msgctxt "@label:" -#~ msgid "Resume" -#~ msgstr "Zurückkehren" - -#~ msgctxt "@label:" -#~ msgid "Abort Print" -#~ msgstr "Drucken abbrechen" - -#~ msgctxt "@option:openProject" -#~ msgid "Always ask" -#~ msgstr "Immer nachfragen" - -#~ msgctxt "@label" -#~ msgid "Override Profile" -#~ msgstr "Profil überschreiben" - -#~ msgctxt "@info:tooltip" -#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -#~ msgstr "Sollen neu geladene Modelle auf der Druckplatte angeordnet werden? In Verbindung mit Mehrfach-Druckplatte verwenden (EXPERIMENTELL)" - -#~ msgctxt "@option:check" -#~ msgid "Do not arrange objects on load" -#~ msgstr "Keine Objekte beim Laden anordnen" - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Save Selection to File" -#~ msgstr "Auswahl als Datei &speichern" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &As..." -#~ msgstr "Speichern &Als" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &Project..." -#~ msgstr "&Projekt speichern..." - -# Added after the string freeze. -#~ msgctxt "@label" -#~ msgid "Use adhesion sheet or glue with this material combination" -#~ msgstr "Verwenden Sie eiene Klebefolie oder Klebstoff mit dieser Materialcombination" - -#~ msgctxt "description" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "Akzeptiert den G-Code und sendet diesen über WLAN an eine Doodle3D WLAN-Box." - -#~ msgctxt "name" -#~ msgid "Doodle3D WiFi-Box" -#~ msgstr "Doodle3D WLAN-Box" - -#~ msgctxt "description" -#~ msgid "Provides an edit window for direct script editing." -#~ msgstr "Bietet ein Bearbeitungsfenster für direkte Skriptbearbeitung." - -#~ msgctxt "name" -#~ msgid "Live scripting tool" -#~ msgstr "Live-Scripting-Tool" - -#~ msgctxt "description" -#~ msgid "Helps to open Blender files directly in Cura." -#~ msgstr "Unterstützt das Öffnen der Blender-Dateien direkt in Cura." - -#~ msgctxt "name" -#~ msgid "Blender Integration (experimental)" -#~ msgstr "Blender-Integration (experimentell)" - -#~ msgctxt "@info:title" -#~ msgid "Model Checker Warning" -#~ msgstr "Warnhinweis Modell-Prüfer" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n" -#~ "Tips that may be useful to improve the print quality:\n" -#~ "1) Use rounded corners.\n" -#~ "2) Turn the fan off (only if there are no tiny details on the model).\n" -#~ "3) Use a different material." -#~ msgstr "" -#~ "Einige Modelle können aufgrund der Objektgröße und des gewählten Materials für Modelle möglicherweise nicht optimal gedruckt werden: {model_names}.\n" -#~ "Tipps, die für eine bessere Druckqualität hilfreich sein können:\n" -#~ "1) Verwenden Sie abgerundete Ecken.\n" -#~ "2) Schalten Sie den Lüfter aus (nur wenn keine sehr kleinen Details am Modell vorhanden sind).\n" -#~ "3) Verwenden Sie ein anderes Material." - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "SolidWorks hat beim Öffnen Ihrer Datei Fehler gemeldet. Wir empfehlen, diese Probleme direkt in SolidWorks zu lösen." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ "Thanks!" -#~ msgstr "" -#~ "Keine Modelle in Ihrer Zeichnung gefunden. Bitte überprüfen Sie den Inhalt erneut und stellen Sie sicher, dass ein Teil oder eine Baugruppe enthalten ist.\n" -#~ "\n" -#~ "Danke!" - -#~ 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" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "Es wurde mehr als ein Teil oder eine Baugruppe in Ihrer Zeichnung gefunden. Wir unterstützen derzeit nur Zeichnungen mit exakt einem Teil oder einer Baugruppe.\n" -#~ "\n" -#~ "Es tut uns leid!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks part file" -#~ msgstr "SolidWorks Teiledatei" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks assembly file" -#~ msgstr "SolidWorks Einbaudatei" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks drawing file" -#~ msgstr "SolidWorks Zeichnungsdatei" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "Sehr geehrter Kunde,\n" -#~ "wir konnten keine gültige Installation von SolidWorks auf Ihrem System finden. Das bedeutet, dass SolidWorks entweder nicht installiert ist oder sie keine gültige Lizenz besitzen. Stellen Sie bitte sicher, dass SolidWorks problemlos läuft und/oder wenden Sie sich an Ihre ICT-Abteilung.\n" -#~ "\n" -#~ "Mit freundlichen Grüßen\n" -#~ " - Thomas Karl Pietrowski" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "Sehr geehrter Kunde,\n" -#~ "Sie verwenden dieses Plugin derzeit auf einem anderen Betriebssystem als Windows. Dieses Plugin funktioniert nur auf Windows mit installiertem SolidWorks und einer gültigen Lizenz. Installieren Sie dieses Plugin bitte auf einem Windows-Rechner mit installiertem SolidWorks.\n" -#~ "\n" -#~ "Mit freundlichen Grüßen\n" -#~ " - Thomas Karl Pietrowski" - -#~ msgid "Configure" -#~ msgstr "Konfigurieren" - -#~ msgid "Installation guide for SolidWorks macro" -#~ msgstr "Installationsanleitung für SolidWorks Makro" - -#~ msgctxt "@action:button" -#~ msgid "Disable" -#~ msgstr "Deaktivieren" - -#~ msgctxt "@action:tooltip" -#~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences." -#~ msgstr "Damit wird Cura die Erlaubnis zum Senden von anonymisierten Nutzungsstatistiken entzogen. Sie können die Erlaubnis in den Einstellungen erneut aktivieren." - -#~ msgid "Install" -#~ msgstr "Installieren" - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory." -#~ msgstr "Siemens NX Plugin-Dateien konnten nicht kopiert werden. Überprüfen Sie Ihr UGII_USER_DIR. Sie ist keinem Verzeichnis zugeordnet." - -#~ msgid "Successfully installed Siemens NX Cura plugin." -#~ msgstr "Siemens NX Cura Plugin wurde erfolgreich installiert." - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR." -#~ msgstr "Siemens NX Plugin-Dateien konnten nicht kopiert werden. Überprüfen Sie Ihr UGII_USER_DIR." - -#~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX." -#~ msgstr "Siemens NX Plugin konnte nicht installiert werden. Umgebungsvariable UGII_USER_DIR für Siemens NX konnte nicht zugewiesen werden." - -#~ msgctxt "@info:status" -#~ msgid "Failed to get plugin ID from {0}" -#~ msgstr "Plugin-ID von {0} wurde nicht erhalten" - -#~ msgctxt "@info:tile" -#~ msgid "Warning" -#~ msgstr "Warnhinweis" - -#~ msgctxt "@window:title" -#~ msgid "Plugin browser" -#~ msgstr "Plugin-Browser" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks: Export wizard" -#~ msgstr "SolidWorks: Exportassistent" - -#~ msgctxt "@action:label" -#~ msgid "Quality:" -#~ msgstr "Qualität:" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (3D-printing)" -#~ msgstr "Fein (3D-Druck)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (3D-printing)" -#~ msgstr "Grob (3D-Druck)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (SolidWorks)" -#~ msgstr "Fein (SolidWorks)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (SolidWorks)" -#~ msgstr "Grob (SolidWorks)" - -#~ msgctxt "@text:window" -#~ msgid "Show this dialog again" -#~ msgstr "Diesen Dialog erneut anzeigen" - -#~ msgctxt "@action:button" -#~ msgid "Continue" -#~ msgstr "Weiter" - -#~ msgctxt "@action:button" -#~ msgid "Abort" -#~ msgstr "Abbrechen" - -#~ msgctxt "@title:window" -#~ msgid "How to install Cura SolidWorks macro" -#~ msgstr "Installieren von Cura SolidWorks Makro" - -#~ msgctxt "@description:label" -#~ msgid "Steps:" -#~ msgstr "Schritte:" - -#~ msgctxt "@action:button" -#~ msgid "" -#~ "Open the directory\n" -#~ "with macro and icon" -#~ msgstr "" -#~ "Verzeichnis\n" -#~ "mit Makro und Symbol öffnen" - -#~ msgctxt "@description:label" -#~ msgid "Instructions:" -#~ msgstr "Anweisungen:" - -#~ msgctxt "@action:playpause" -#~ msgid "Play" -#~ msgstr "Wiedergeben" - -#~ msgctxt "@action:playpause" -#~ msgid "Pause" -#~ msgstr "Pausieren" - -#~ msgctxt "@action:button" -#~ msgid "Previous Step" -#~ msgstr "Vorheriger Schritt" - -#~ msgctxt "@action:button" -#~ msgid "Done" -#~ msgstr "Fertig" - -#~ msgctxt "@action:button" -#~ msgid "Next Step" -#~ msgstr "Nächster Schritt" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks plugin: Configuration" -#~ msgstr "SolidWorks Plugin: Konfiguration" - -#~ msgctxt "@title:tab" -#~ msgid "Conversion settings" -#~ msgstr "Konvertierungseinstellungen" - -#~ msgctxt "@label" -#~ msgid "First choice:" -#~ msgstr "Erste Wahl:" - -#~ msgctxt "@text:menu" -#~ msgid "Latest installed version (Recommended)" -#~ msgstr "Aktuelle installierte Version (Empfohlen)" - -#~ msgctxt "@text:menu" -#~ msgid "Default version" -#~ msgstr "Standardversion" - -#~ msgctxt "@label" -#~ msgid "Show wizard before opening SolidWorks files" -#~ msgstr "Assistent vor dem Öffnen von SolidWorks-Dateien anzeigen" - -#~ msgctxt "@label" -#~ msgid "Automatically rotate opened file into normed orientation" -#~ msgstr "Geöffnete Datei automatisch in normale Ausrichtung drehen" - -#~ msgctxt "@title:tab" -#~ msgid "Installation(s)" -#~ msgstr "Installation(en)" - -#~ msgctxt "@label" -#~ msgid "COM service found" -#~ msgstr "COM-Service gefunden" - -#~ msgctxt "@label" -#~ msgid "Executable found" -#~ msgstr "Ausführbare Datei gefunden" - -#~ msgctxt "@label" -#~ msgid "COM starting" -#~ msgstr "COM wird gestartet" - -#~ msgctxt "@label" -#~ msgid "Revision number" -#~ msgstr "Revisionsnummer" - -#~ msgctxt "@label" -#~ msgid "Functions available" -#~ msgstr "Verfügbare Funktionen" - -#~ msgctxt "@label (%1 is object name)" -#~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?" -#~ msgstr "Der neue Materialdurchmesser wurde auf %1 mm eingestellt, was nicht kompatibel mit dem aktuellen Gerät ist. Möchten Sie fortfahren?" - -#~ msgctxt "@action:menu" -#~ msgid "Browse plugins..." -#~ msgstr "Plugins durchsuchen..." - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "P&lugins" -#~ msgstr "&Plugins" - -#~ msgctxt "@window:title" -#~ msgid "Install Plugin" -#~ msgstr "Plugin installieren" - -#~ 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 "Manages network connections to Ultimaker 3 printers" -#~ msgstr "Verwaltet Netzwerkverbindungen zu Ultimaker 3-Druckern" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations." -#~ msgstr "Bietet Ihnen die Möglichkeit, bestimmte Dateien über SolidWorks selbst zu öffnen. Die Konvertierung erfolgt über dieses Plugin und zusätzliche Optimierungen." - -#~ msgctxt "name" -#~ msgid "SolidWorks Integration" -#~ msgstr "SolidWorks Integration" - -#~ msgctxt "description" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "Speichert automatisch Einstellungen, Geräte und Profile nach Änderungen." - -#~ msgctxt "name" -#~ msgid "Auto Save" -#~ msgstr "Automatisches Speichern" - -#~ msgctxt "description" -#~ msgid "Helps you to install an 'export to Cura' button in Siemens NX." -#~ msgstr "Unterstützt die Installation der Schaltfläche „Zu Cura exportieren“ in Siemens NX." - -#~ msgctxt "name" -#~ msgid "Siemens NX Integration" -#~ msgstr "Siemens NX Integration" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new plugins." -#~ msgstr "Neue Plugins finden, verwalten und installieren." - -#~ msgctxt "name" -#~ msgid "Plugin Browser" -#~ msgstr "Plugin-Browser" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license" -#~ msgstr "Den Benutzer einmalig fragen, ob er unsere Lizenz akzeptiert." - -#~ 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 "@item:inlistbox" -#~ msgid "GCode File" -#~ msgstr "G-Code-Datei" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer is busy or not connected." -#~ msgstr "Es kann kein neuer Auftrag gestartet werden, da der Drucker beschäftigt oder nicht angeschlossen ist." - -#~ msgctxt "@info:title" -#~ msgid "Printer Unavailable" -#~ msgstr "Drucker nicht verfügbar" - -#~ msgctxt "@info:status" -#~ msgid "This printer does not support USB printing because it uses UltiGCode flavor." -#~ msgstr "Der Drucker unterstützt keinen USB-Druck, da er UltiGCode verwendet." - -#~ msgctxt "@info:title" -#~ msgid "USB Printing" -#~ msgstr "USB-Drucken" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer does not support usb printing." -#~ msgstr "Es kann kein neuer Auftrag gestartet werden, da der Drucker keinen Druck über USB unterstützt." - -#~ msgctxt "@info" -#~ msgid "Unable to update firmware because there are no printers connected." -#~ msgstr "Die Firmware kann nicht aktualisiert werden, da keine Drucker angeschlossen sind." - -#~ msgctxt "@info" -#~ msgid "Could not find firmware required for the printer at %s." -#~ msgstr "Die für den Drucker unter %s erforderliche Firmware wurde nicht gefunden." - -#~ msgctxt "@info:title" -#~ msgid "Printer Firmware" -#~ msgstr "Drucker-Firmware" - -#~ msgctxt "@info:title" -#~ msgid "Connection status" -#~ msgstr "Verbindungsstatus" - -#~ msgctxt "@info:title" -#~ msgid "Connection Status" -#~ msgstr "Verbindungsstatus" - -#~ msgctxt "@info:status" -#~ msgid "Access request was denied on the printer." -#~ msgstr "Zugriffsanforderung auf den Drucker wurde abgelehnt." - -#~ msgctxt "@info:status" -#~ msgid "Access request failed due to a timeout." -#~ msgstr "Zugriffsanforderungen aufgrund von Zeitüberschreitung fehlgeschlagen." - -#~ msgctxt "@info:status" -#~ msgid "The connection with the network was lost." -#~ msgstr "Die Verbindung zum Netzwerk ist verlorengegangen." - -#~ msgctxt "@info:status" -#~ msgid "The connection with the printer was lost. Check your printer to see if it is connected." -#~ msgstr "Die Verbindung zum Drucker ist verlorengegangen. Überprüfen Sie Ihren Drucker, um festzustellen, ob er verbunden ist." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s." -#~ msgstr "Es kann kein neuer Druckauftrag gestartet werden, da der Drucker beschäftigt ist. Der aktuelle Druckerstatus lautet %s." - -#~ msgctxt "@info:title" -#~ msgid "Printer Status" -#~ msgstr "Druckerstatus" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}" -#~ msgstr "Es kann kein neuer Druckauftrag gestartet werden. Kein PrintCore in Steckplatz {0} geladen." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No material loaded in slot {0}" -#~ msgstr "Es kann kein neuer Druckauftrag gestartet werden. Kein Material in Steckplatz {0} geladen." - -#~ msgctxt "@label" -#~ msgid "Not enough material for spool {0}." -#~ msgstr "Material für Spule {0} unzureichend." - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Abweichender PrintCore (Cura: {0}, Drucker: {1}) für Extruder {2} gewählt" - -#~ msgctxt "@label" -#~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "PrintCore {0} ist nicht korrekt kalibriert. XY-Kalibrierung muss auf dem Drucker ausgeführt werden." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to printer. Is another job still active?" -#~ msgstr "Daten können nicht zum Drucker gesendet werden. Ist noch ein weiterer Auftrag in Bearbeitung?" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Print aborted. Please check the printer" -#~ msgstr "Drucken wurde abgebrochen. Den Drucker überprüfen" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Pausing print..." -#~ msgstr "Drucken wird pausiert..." - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Resuming print..." -#~ msgstr "Drucken wird fortgesetzt..." - -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "Dieser Drucker ist nicht für das Hosten einer Gruppe verbundener Ultimaker 3-Drucker eingerichtet." - -#~ msgctxt "Count is number of printers." -#~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers." -#~ msgstr "Dieser Drucker ist der Host für eine Gruppe von {count} verbundenen Ultimaker 3-Druckern." - -#~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate." -#~ msgstr "{printer_name} hat den Druck von '{job_name}‘ beendet. Bitte holen Sie den Druck ab und bestätigen Sie das Räumen des Druckbetts." - -#~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing." -#~ msgstr "{printer_name} ist für das Drucken von '{job_name}‘ reserviert. Bitte ändern Sie die Druckerkonfiguration passend für den Auftrag, um mit dem Drucken zu beginnen." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "Es kann kein neuer Druckauftrag gesendet werden: Dieser 3D-Drucker ist (noch) nicht für das Hosten einer Gruppe verbundener Ultimaker 3-Drucker eingerichtet." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send print job to group {cluster_name}." -#~ msgstr "Es können keine Druckaufträge an die Gruppe {cluster_name} gesendet werden." - -#~ msgctxt "@info:status" -#~ msgid "Sent {file_name} to group {cluster_name}." -#~ msgstr "{file_name} wurde an Gruppe {cluster_name} gesendet." - -#~ msgctxt "@action:button" -#~ msgid "Show print jobs" -#~ msgstr "Druckaufträge anzeigen" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs interface in your browser." -#~ msgstr "Öffnet die Schaltfläche für Druckaufträge in Ihrem Browser." - -#~ msgctxt "@label Printer name" -#~ msgid "Unknown" -#~ msgstr "Unbekannt" - -#~ msgctxt "@info:progress" -#~ msgid "Sending {file_name} to group {cluster_name}" -#~ msgstr "{file_name} wird an Gruppe {cluster_name} gesendet" - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "SolidWorks hat beim Öffnen Ihrer Datei Fehler gemeldet. Wir empfehlen, diese Probleme direkt in SolidWorks zu lösen." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ " Thanks!." -#~ msgstr "" -#~ "Keine Modelle in Ihrer Zeichnung gefunden. Bitte überprüfen Sie den Inhalt erneut und stellen Sie sicher, dass ein Teil oder eine Baugruppe enthalten ist.\n" -#~ "\n" -#~ " Danke!" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "Es wurde mehr als ein Teil oder eine Baugruppe in Ihrer Zeichnung gefunden. Wir unterstützen derzeit nur Zeichnungen mit exakt einem Teil oder einer Baugruppe.\n" -#~ "\n" -#~ "Es tut uns leid!" - -#~ msgctxt "@item:material" -#~ msgid "No material loaded" -#~ msgstr "Kein Material geladen" - -#~ msgctxt "@item:material" -#~ msgid "Unknown material" -#~ msgstr "Unbekanntes Material" - -#~ msgctxt "@info:status Has a cancel button next to it." -#~ msgid "The selected material diameter causes the material to become incompatible with the current printer." -#~ msgstr "Durch den ausgewählten Materialdurchmesser wird das Material mit dem aktuellen Drucker inkompatibel." - -#~ msgctxt "@action:button" -#~ msgid "Undo" -#~ msgstr "Rückgängig machen" - -#~ msgctxt "@action" -#~ msgid "Undo changing the material diameter." -#~ msgstr "Änderung des Materialdurchmessers rückgängig machen" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} doesn't match with your current machine, could not import it." -#~ msgstr "Die Maschine, die im Profil {0} definiert wurde, entspricht nicht Ihrer derzeitigen Maschine. Importieren nicht möglich." - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal error has occurred. 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 "" -#~ "

    Ein schwerer Fehler ist aufgetreten. Senden Sie uns diesen Absturzbericht, um das Problem zu beheben

    \n" -#~ "

    Verwenden Sie bitte die Schaltfläche „Bericht senden“, um den Fehlerbericht automatisch an unsere Server zu senden

    \n" -#~ " " - -#~ msgctxt "@label" -#~ msgid "not yet initialised
    " -#~ msgstr "noch nicht initialisiert
    " - -#~ msgctxt "@label" -#~ msgid "Gcode flavor" -#~ msgstr "G-Code-Variante" - -#~ msgctxt "@label" -#~ msgid "Start Gcode" -#~ msgstr "G-Code starten" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very start." -#~ msgstr "G-Code-Befehle, die zum Start ausgeführt werden sollen." - -#~ msgctxt "@label" -#~ msgid "End Gcode" -#~ msgstr "G-Code beenden" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very end." -#~ msgstr "G-Code-Befehle, die am Ende ausgeführt werden sollen." - -#~ msgctxt "@label" -#~ msgid "Extruder Start Gcode" -#~ msgstr "G-Code Extruder-Start" - -#~ msgctxt "@label" -#~ msgid "Extruder End Gcode" -#~ msgstr "G-Code Extruder-Ende" - -#~ msgctxt "@label" -#~ msgid "Starting firmware update, this may take a while." -#~ msgstr "Das Firmware-Aktualisierung wird gestartet. Dies kann eine Weile dauern." - -#~ msgctxt "@label" -#~ msgid "Unknown error code: %1" -#~ msgstr "Unbekannter Fehlercode: %1" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@label Printer status" -#~ msgid "Unknown" -#~ msgstr "Unbekannt" - -#~ msgctxt "@title:window" -#~ msgid "Find & Update plugins" -#~ msgstr "Plugins finden und aktualisieren" - -#~ msgctxt "@label" -#~ msgid "Here you can find a list of Third Party plugins." -#~ msgstr "Hier finden Sie eine Liste mit Plugins von Fremdanbietern." - -#~ msgctxt "@action:button" -#~ msgid "Upgrade" -#~ msgstr "Aktualisierung" - -#~ msgctxt "@action:button" -#~ msgid "Download" -#~ msgstr "Download" - -#~ msgctxt "@info:tooltip" -#~ msgid "Show caution message in gcode reader." -#~ msgstr "Warnmeldung im G-Code-Reader anzeigen." - -#~ msgctxt "@option:check" -#~ msgid "Caution message in gcode reader" -#~ msgstr "Warnmeldung in G-Code-Reader" - -#~ msgctxt "@window:title" -#~ msgid "Import Profile" -#~ msgstr "Profil importieren" - -#~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name" -#~ msgid "Printer: %1, %2: %3" -#~ msgstr "Drucker: %1, %2: %3" - -#~ msgctxt "@action:label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "Drucker: %1" - -#~ msgctxt "@label" -#~ msgid "GCode generator" -#~ msgstr "G-Code-Generator" - -#~ msgctxt "@action:menu" -#~ msgid "Configure setting visiblity..." -#~ msgstr "Sichtbarkeit der Einstellung wird konfiguriert..." - -#~ msgctxt "@title:menuitem %1 is the automatically selected material" -#~ msgid "Automatic: %1" -#~ msgstr "Automatisch: %1" - -#~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer" -#~ msgid "Automatic: %1" -#~ msgstr "Automatisch: %1" - -#~ msgctxt "@info:status" -#~ msgid "No printer connected" -#~ msgstr "Es ist kein Drucker verbunden" - -#~ msgctxt "@tooltip" -#~ msgid "The current temperature of this extruder." -#~ msgstr "Die aktuelle Temperatur dieses Extruders." - -#~ msgctxt "@action:menu" -#~ msgid "Installed plugins..." -#~ msgstr "Installierte plugins..." - -#~ msgctxt "@label" -#~ msgid "Support Extruder" -#~ msgstr "Extruder für Stützstruktur" - -#~ msgctxt "description" -#~ msgid "Writes GCode to a file." -#~ msgstr "Schreibt G-Code in eine Datei." - -#~ msgctxt "name" -#~ msgid "GCode Writer" -#~ msgstr "G-Code-Writer" - -#~ msgctxt "name" -#~ msgid "GCode Profile Reader" -#~ msgstr "G-Code-Profil-Reader" - -#~ msgctxt "@info:status" -#~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" -#~ msgstr "Beim Öffnen Ihrer SolidWorks Datei trat ein Fehler auf! Überprüfen Sie bitte, ob sich Ihre Datei in SolidWorks ohne Probleme öffnen lässt!" - -#~ msgctxt "@info:status" -#~ msgid "Error while starting %s!" -#~ msgstr "Fehler beim Starten %s!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Simulation view" +#~ msgid "Simulation View" #~ msgstr "Simulationsansicht" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences." -#~ msgstr "Cura erfasst anonymisierte Slice-Informationen. Sie können dies in den Einstellungen deaktivieren." - -#~ msgctxt "@menuitem" -#~ msgid "Global" -#~ msgstr "Global" - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal exception has occurred. 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 "" -#~ "

    Ein schwerer Ausnahmefehler ist aufgetreten. Senden Sie uns diesen Absturzbericht, um das Problem zu beheben

    \n" -#~ "

    Verwenden Sie bitte die Schaltfläche „Bericht senden“, um den Fehlerbericht automatisch an unsere Server zu senden

    \n" -#~ " " - -#~ msgctxt "@label Cura version" -#~ msgid "Cura version: {version}
    " -#~ msgstr "Cura-Version: {version}
    " - -#~ msgctxt "@label Platform" -#~ msgid "Platform: {platform}
    " -#~ msgstr "Plattform: {platform}
    " - -#~ msgctxt "@label Qt version" -#~ msgid "Qt version: {qt}
    " -#~ msgstr "Qt-Version: {qt}
    " - -#~ msgctxt "@label PyQt version" -#~ msgid "PyQt version: {pyqt}
    " -#~ msgstr "PyQt-Version: {pyqt}
    " - -#~ msgctxt "@label OpenGL" -#~ msgid "OpenGL: {opengl}
    " -#~ msgstr "OpenGL: {opengl}
    " - -#~ msgctxt "@title:groupbox" -#~ msgid "Exception traceback" -#~ msgstr "Ausnahme-Rückverfolgung" - -#~ msgctxt "@label" -#~ msgid "Material diameter" -#~ msgstr "Materialdurchmesser" - -#~ msgctxt "@title:window" -#~ msgid "Cura SolidWorks Plugin Configuration" -#~ msgstr "Cura SolidWorks Plugin-Konfiguration" - -#~ msgctxt "@action:label" -#~ msgid "Default quality of the exported STL:" -#~ msgstr "Standardqualität des exportierten STL:" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always ask" -#~ msgstr "Immer nachfragen" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Fine quality" -#~ msgstr "Immer Qualität „Fein“ verwenden" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Coarse quality" -#~ msgstr "Immer Qualität „Grob“ verwenden" - -#~ msgctxt "@title:window" -#~ msgid "Import SolidWorks File as STL..." -#~ msgstr "SolidWorks-Datei importieren als STL ..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Quality of the Exported STL" -#~ msgstr "Qualität des exportierten STL" - -#~ msgctxt "@action:label" -#~ msgid "Quality" -#~ msgstr "Qualität" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse" -#~ msgstr "Grob" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine" -#~ msgstr "Fein" - -#~ msgctxt "@" -#~ msgid "No Profile Available" -#~ msgstr "Kein Profil verfügbar" - -#~ msgctxt "@label" -#~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders" -#~ msgstr "Diese Einstellung wird stets zwischen allen Extrudern geteilt. Eine Änderung ändert den Wert für alle Extruder" - -#~ msgctxt "@tooltip" -#~ msgid "Time specification
    " -#~ msgstr "Zeitangabe
    " - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Reset camera position" -#~ msgstr "&Kameraposition zurücksetzen" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save project" -#~ msgstr "Projekt speichern" - -#~ msgctxt "@title:tab" -#~ msgid "Prepare" -#~ msgstr "Vorbereiten" - -#~ msgctxt "@title:tab" -#~ msgid "Monitor" -#~ msgstr "Überwachen" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "Kompatibilität prüfen" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura" -#~ msgstr "Bietet Ihnen die Möglichkeit, bestimmte Dateien über SolidWorks selbst zu öffnen. Diese werden anschließend konvertiert und in Cura geladen." - -#~ msgctxt "@label:status" -#~ msgid "Blocked" -#~ msgstr "Blockiert" - -#~ msgctxt "@label:status" -#~ msgid "Can't start print" -#~ msgstr "Druck startet nicht" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect.." -#~ msgstr "Connect wird geöffnet ..." - -#~ msgctxt "@info:title" -#~ msgid "Print Details" -#~ msgstr "Druckdetails" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB." -#~ msgstr "Um sicherzustellen, dass Ihr {machine_name} mit den neuesten Funktionen ausgestattet ist, wird empfohlen, die Firmware regelmäßig zu aktualisieren Dies kann auf dem {machine_name} (bei Anschluss an ein Netzwerk) oder über USB erfolgen." - -#~ msgctxt "@info:title" -#~ msgid "Layer View" -#~ msgstr "Schichtenansicht" - -#~ msgctxt "@menuitem" -#~ msgid "Browse plugins" -#~ msgstr "Plugins durchsuchen" - -#~ msgctxt "@info:title" -#~ msgid "Export Details" -#~ msgstr "Exportdetails" - -#~ msgctxt "@label" -#~ msgid "" -#~ "

    A fatal exception has occurred that we could not recover from!

    \n" -#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " -#~ msgstr "" -#~ "

    Ein schwerer Ausnahmezustand ist aufgetreten, den wir nicht beseitigen konnten!

    \n" -#~ "

    Bitte senden Sie einen Fehlerbericht an folgende URL http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " - -#~ msgctxt "@action:button" -#~ msgid "Open Web Page" -#~ msgstr "Webseite öffnen" - -#~ msgctxt "@action:button" -#~ msgid "Ok" -#~ msgstr "Ok" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "Dieser Drucker ist nicht für das Hosten einer Gruppe verbundener Ultimaker 3-Drucker eingerichtet" - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" -#~ msgstr "Dieser Drucker ist der Host für eine Gruppe von %1 verbundenen Ultimaker 3-Druckern" - -#~ msgctxt "@label" -#~ msgid "Completed on: " -#~ msgstr "Fertiggestellt am: " - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "Öffnet die Seite für Druckaufträge mit Ihrem Standard-Webbrowser." - -#~ msgctxt "@label" -#~ msgid "PRINTER GROUP" -#~ msgstr "DRUCKERGRUPPE" - -#~ msgctxt "@action:warning" -#~ msgid "Loading a project will clear all models on the buildplate" -#~ msgstr "Das Laden eines Projekts entfernt alle Modelle von der Druckplatte" - -#~ msgctxt "@label" -#~ msgid "" -#~ " plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ " Das Plugin enthält eine Lizenz.\n" -#~ "Sie müssen diese Lizenz akzeptieren, um das Plugin zu installieren.\n" -#~ "Stimmen Sie den nachfolgenden Bedingungen zu?" - -#~ msgctxt "@label" -#~ msgid "00h 00min" -#~ msgstr "00 St. 00 M." - -#~ msgctxt "@tooltip" -#~ msgid "Time information" -#~ msgstr "Zeitangaben" - -#~ msgctxt "@description" -#~ msgid "Print time" -#~ msgstr "Druckzeit" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - -#~ msgctxt "@title:window" -#~ msgid "Cura" -#~ msgstr "Cura" - -#~ msgctxt "@label" -#~ msgid "Check material compatibility" -#~ msgstr "Materialkompatibilität prüfen" - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection (Cluster)" -#~ msgstr "UM3-Netzwerkverbindung (Cluster)" - -#~ msgctxt "description" -#~ msgid "Provides the Layer view." -#~ msgstr "Bietet eine Schichtenansicht." - -#~ msgctxt "name" -#~ msgid "Layer View" -#~ msgstr "Schichtenansicht" - -#~ msgctxt "@item:inlistbox" -#~ msgid "X-Ray" -#~ msgstr "Röntgen" - -#~ msgctxt "@label" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "Akzeptiert den G-Code und sendet diesen über WiFi an eine Doodle3D WiFi-Box." - -#~ msgctxt "@item:inmenu" -#~ msgid "Doodle3D printing" -#~ msgstr "Doodle3D-Drucken" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D" -#~ msgstr "Mit Doodle3D drucken" - -#~ msgctxt "@info:tooltip" -#~ msgid "Print with " -#~ msgstr "Drucken mit" - -#~ msgctxt "@title:menu" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Enable Scan devices..." -#~ msgstr "Scan-Geräte aktivieren..." - -#~ msgctxt "@info:progress" -#~ msgid "Saving to Removable Drive {0}" -#~ msgstr "Wird auf Datenträger gespeichert {0}" - -#~ msgctxt "@info:status" -#~ msgid "Could not save to {0}: {1}" -#~ msgstr "Konnte nicht als {0} gespeichert werden: {1}" - -#~ msgctxt "@info:status" -#~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!" -#~ msgstr "Beachten Sie bitte, dass Sie Ihre SolidWorks Datei manuell erneut öffnen müssen! Das erneute Laden des Modells funktioniert nicht!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Layers" -#~ msgstr "Schichten" - -#~ msgid "Browse plugins" -#~ msgstr "Plugins durchsuchen" - -#~ msgctxt "@item:inmenu" -#~ msgid "Solid" -#~ msgstr "Solide" - -#~ msgctxt "@label" -#~ msgid "The file {0} already exists. Are you sure you want to overwrite it?" -#~ msgstr "Die Datei {0} ist bereits vorhanden. Soll die Datei wirklich überschrieben werden?" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export profile to {0}: {1}" -#~ msgstr "Export des Profils nach {0} fehlgeschlagen: {1}" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export profile to {0}: Writer plugin reported failure." -#~ msgstr "Export des Profils nach {0} fehlgeschlagen: Fehlermeldung von Writer-Plugin" - -#~ msgctxt "@info:status" -#~ msgid "Exported profile to {0}" -#~ msgstr "Profil wurde nach {0} exportiert" - -#~ msgctxt "@info:status" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "Import des Profils aus Datei {0} fehlgeschlagen: {1}" - -#~ msgctxt "@title:window" -#~ msgid "Doodle3D Settings" -#~ msgstr "Doodle3D-Einstellungen" - -#~ msgctxt "@title:window" -#~ msgid "Print to: %1" -#~ msgstr "Drucken auf: %1" - -#~ msgctxt "@label" -#~ msgid "Extruder Temperature: %1/%2°C" -#~ msgstr "Extruder-Temperatur %1/%2 °C" - -#~ msgctxt "@label" -#~ msgid "Bed Temperature: %1/%2°C" -#~ msgstr "Bett-Temperatur %1/%2 °C" - -#~ msgctxt "@label" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@label" -#~ msgid "View Mode: Layers" -#~ msgstr "Ansichtsmodus: Schichten" - -#~ msgctxt "@info:status" -#~ msgid "Could not import material %1: %2" -#~ msgstr "Material konnte nicht importiert werden %1: %2" - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported material %1" -#~ msgstr "Material wurde erfolgreich importiert %1" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export material to %1: %2" -#~ msgstr "Exportieren des Materials nach %1: %2 schlug fehl" - -#~ msgctxt "@info:status" -#~ msgid "Successfully exported material to %1" -#~ msgstr "Material erfolgreich nach %1 exportiert" - -#~ msgctxt "@label" -#~ msgid "%1 m / ~ %2 g / ~ %4 %3" -#~ msgstr "%1 m / ~ %2 g / ~ %4 %3" - -#~ msgctxt "@label" -#~ msgid "%1 m / ~ %2 g" -#~ msgstr "%1 m / ~ %2 g" - -#~ msgctxt "@label" -#~ msgid "Hotend" -#~ msgstr "Heißes Ende" - -#~ msgctxt "@action:button" -#~ msgid "View Mode" -#~ msgstr "Ansichtsmodus" - -#~ msgctxt "@title:tab" -#~ msgid "Print" -#~ msgstr "Drucken" - -#~ msgctxt "@label" -#~ msgid "0%" -#~ msgstr "0 %" - -#~ msgctxt "@label" -#~ msgid "Empty infill will leave your model hollow with low strength." -#~ msgstr "Bei fehlender Füllung bleibt Ihr Modell hohl, mit einer geringen Festigkeit." - -#~ msgctxt "@label" -#~ msgid "20%" -#~ msgstr "20 %" - -#~ msgctxt "@label" -#~ msgid "Light (20%) infill will give your model an average strength." -#~ msgstr "Eine dünne (20 %) Füllung gibt Ihrem Modell eine durchschnittliche Festigkeit." - -#~ msgctxt "@label" -#~ msgid "50%" -#~ msgstr "50 %" - -#~ msgctxt "@label" -#~ msgid "Dense (50%) infill will give your model an above average strength." -#~ msgstr "Eine dichte (50 %) Füllung gibt Ihrem Modell eine überdurchschnittliche Festigkeit" - -#~ msgctxt "@label" -#~ msgid "100%" -#~ msgstr "100 %" - -#~ msgctxt "@label" -#~ msgid "Solid (100%) infill will make your model completely solid." -#~ msgstr "Eine solide (100 %) Füllung macht Ihr Modell vollständig massiv." - -#~ msgctxt "@label" -#~ msgid "Gradual" -#~ msgstr "Graduell" - -#~ msgctxt "description" -#~ msgid "Provides support for writing X3G files" -#~ msgstr "Bietet Unterstützung für das Schreiben von X3G-Dateien" - -#~ msgctxt "name" -#~ msgid "X3G Writer" -#~ msgstr "X3G-Writer" - -#~ msgctxt "@label" -#~ msgid "Machine Settings action" -#~ msgstr "Beschreibung Geräteeinstellungen" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "X-Ray View" -#~ msgstr "Röntgen-Ansicht" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the X-Ray view." -#~ msgstr "Stellt die Röntgen-Ansicht bereit." - -#~ msgctxt "@label" -#~ msgid "X3D Reader" -#~ msgstr "X3D-Reader" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for reading X3D files." -#~ msgstr "Bietet Unterstützung für das Lesen von X3D-Dateien." - -#~ msgctxt "@label" -#~ msgid "GCode Writer" -#~ msgstr "G-Code-Writer" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Writes GCode to a file." -#~ msgstr "Schreibt G-Code in eine Datei." - -#~ msgctxt "@action:button Preceded by 'Ready to'." -#~ msgid "Print with Doodle3D" -#~ msgstr "Mit Doodle3D drucken" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "Zeigt die Änderungen seit der letzten geprüften Version an." - -#~ msgctxt "@label" -#~ msgid "Profile flatener" -#~ msgstr "Profilglättfunktion" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "Erstellt eine geglättete Qualität, verändert das Profil." - -#~ msgctxt "@label" -#~ msgid "USB printing" -#~ msgstr "USB-Drucken" - -#~ msgctxt "@info:whatsthis" -#~ 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 "X3G Writer Plugin Description" -#~ msgid "Writes X3G to a file" -#~ msgstr "Schreibt X3G in eine Datei" - -#~ msgctxt "@label" -#~ msgid "Removable Drive Output Device Plugin" -#~ msgstr "Ausgabegerät-Plugin für Datenträger" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides removable drive hotplugging and writing support." -#~ msgstr "Ermöglicht Hotplugging des Datenträgers und Beschreiben." - -#~ msgctxt "@info:whatsthis" -#~ msgid "Manages network connections to Ultimaker 3 printers" -#~ msgstr "Verwaltet Netzwerkverbindungen zu Ultimaker 3 Druckern" - -#~ msgctxt "@label" -#~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Abweichender Druckkopf (Cura: {0}, Drucker: {1}) für Extruder {2} gewählt" - -#~ msgctxt "@label" -#~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "Druckkern {0} ist nicht korrekt kalibriert. XY-Kalibrierung muss auf dem Drucker ausgeführt werden." - -#~ msgctxt "@label" -#~ msgid "The print cores and/or materials on your printer differ from those within your current project. For the best result, always slice for the print cores and materials that are inserted in your printer." -#~ msgstr "Die PrintCores und/oder Materialien auf Ihrem Drucker unterscheiden sich von denen Ihres aktuellen Projekts. Für optimale Ergebnisse schneiden Sie stets für die PrintCores und Materialien, die in Ihren Drucker eingelegt wurden." - -#~ msgctxt "@label" -#~ msgid "Post Processing" -#~ msgstr "Nachbearbeitung" - -#~ msgctxt "Description of plugin" -#~ 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 "Auto Save" -#~ msgstr "Automatisches Speichern" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "Speichert automatisch Einstellungen, Geräte und Profile nach Änderungen." - -#~ msgctxt "@label" -#~ msgid "Slice info" -#~ msgstr "Slice-Informationen" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Submits anonymous slice info. Can be disabled through preferences." -#~ msgstr "Sendet anonymisierte Slice-Informationen. Kann in den Einstellungen deaktiviert werden." - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences" -#~ msgstr "Cura erfasst automatisch anonymisierte Slice-Informationen. Sie können dies in den Einstellungen deaktivieren." - -#~ msgctxt "@label" -#~ msgid "Material Profiles" -#~ msgstr "Materialprofile" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "Legacy Cura Profile Reader" -#~ msgstr "Cura-Vorgängerprofil-Reader" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "GCode Profile Reader" -#~ msgstr "G-Code-Writer" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing profiles from g-code files." -#~ msgstr "Ermöglicht das Importieren von Profilen aus G-Code-Dateien." - -#~ msgctxt "@label" -#~ msgid "Layer View" -#~ msgstr "Schichtenansicht" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the Layer view." -#~ msgstr "Bietet eine Schichtenansicht." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.5 to 2.6" -#~ msgstr "Upgrade von Version 2.5 auf 2.6" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -#~ msgstr "Aktualisiert Konfigurationen von Cura 2.5 auf Cura 2.6." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.1 to 2.2" -#~ msgstr "Upgrade von Version 2.1 auf 2.2" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -#~ msgstr "Aktualisiert Konfigurationen von Cura 2.1 auf Cura 2.2." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.2 to 2.4" -#~ msgstr "Upgrade von Version 2.2 auf 2.4" - -#~ msgctxt "@info:whatsthis" -#~ 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 "Image Reader" -#~ msgstr "Bild-Reader" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Enables ability to generate printable geometry from 2D image files." -#~ msgstr "Ermöglicht Erstellung von druckbarer Geometrie aus einer 2D-Bilddatei." - -#~ msgctxt "@label" -#~ msgid "CuraEngine Backend" -#~ msgstr "CuraEngine Backend" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the link to the CuraEngine slicing backend." -#~ msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her." - -#~ msgctxt "@label" -#~ msgid "Per Model Settings Tool" -#~ msgstr "Werkzeug „Einstellungen pro Objekt“" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the Per Model Settings." -#~ msgstr "Ermöglicht die Einstellungen pro Objekt." - -#~ msgctxt "@label" -#~ msgid "3MF Reader" -#~ msgstr "3MF-Reader" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for reading 3MF files." -#~ msgstr "Ermöglicht das Lesen von 3MF-Dateien." - -#~ msgctxt "@label" -#~ msgid "Solid View" -#~ msgstr "Solide Ansicht" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides a normal solid mesh view." -#~ msgstr "Bietet eine normale, solide Netzansicht." - -#~ msgctxt "@label" -#~ msgid "G-code Reader" -#~ msgstr "G-Code-Reader" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Allows loading and displaying G-code files." -#~ msgstr "Ermöglicht das Laden und Anzeigen von G-Code-Dateien." - -#~ msgctxt "@label" -#~ msgid "Cura Profile Writer" -#~ msgstr "Cura-Profil-Writer" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for exporting Cura profiles." -#~ msgstr "Ermöglicht das Exportieren von Cura-Profilen." - -#~ msgctxt "@label" -#~ msgid "3MF Writer" -#~ msgstr "3MF-Writer" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for writing 3MF files." -#~ msgstr "Bietet Unterstützung für das Schreiben von 3MF-Dateien." - -#~ msgctxt "@label" -#~ msgid "Ultimaker machine actions" -#~ msgstr "Ultimaker Maschinenabläufe" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "Cura Profile Reader" -#~ msgstr "Cura-Profil-Reader" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing Cura profiles." -#~ msgstr "Ermöglicht das Importieren von Cura-Profilen." - -#~ msgctxt "@info" -#~ msgid "%(width).1f x %(depth).1f x %(height).1f mm" -#~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#~ msgctxt "@label" -#~ msgid "Build Plate Shape" -#~ msgstr "Druckbettform" - -#~ msgctxt "@option:check" -#~ msgid "Machine Center is Zero" -#~ msgstr "Maschinenmitte ist Null" - -#~ msgctxt "@option:check" -#~ msgid "Heated Bed" -#~ msgstr "Heizbares Bett" - -#~ msgctxt "@label" -#~ msgid "GCode Flavor" -#~ msgstr "G-Code-Variante" - -#~ msgctxt "@label" -#~ msgid "Material Diameter" -#~ msgstr "Materialdurchmesser" - -#~ 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 "@item:inlistbox" -#~ msgid "Ultimaker" -#~ msgstr "Ultimaker" - -#~ msgctxt "@label" -#~ msgid "Support library for scientific computing " -#~ msgstr "Support-Bibliothek für wissenschaftliche Berechnung " - -#~ msgctxt "@tooltip" -#~ msgid "Print Setup

    Edit or review the settings for the active print job." -#~ msgstr "Druckeinrichtung

    Bearbeiten oder Überprüfen der Einstellungen für den aktiven Druckauftrag." - -#~ msgctxt "@tooltip" -#~ msgid "Print Monitor

    Monitor the state of the connected printer and the print job in progress." -#~ msgstr "Drucküberwachung

    Statusüberwachung des verbundenen Druckers und des Druckauftrags, der ausgeführt wird." - -#~ msgctxt "@title:menuitem %1 is the value from the printer" -#~ msgid "Automatic: %1" -#~ msgstr "Automatisch: %1" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3d model" -#~ msgstr "Bitte laden Sie ein 3D-Modell" - -#~ msgctxt "@label" -#~ msgid "Print Selected Model with %1" -#~ msgid_plural "Print Selected Models With %1" -#~ msgstr[0] "Ausgewähltes Modell drucken mit %1" -#~ msgstr[1] "Ausgewählte Modelle drucken mit %1" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}" -#~ msgstr "Es kann kein neuer Druckauftrag gestartet werden. Kein PrinterCore in Steckplatz {0} geladen." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.4 to 2.5" -#~ msgstr "Upgrade von Version 2.4 auf 2.5" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5." -#~ msgstr "Aktualisiert Konfigurationen von Cura 2.4 auf Cura 2.5." - -#~ msgctxt "@info:status" -#~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead." -#~ msgstr "Für diese Kombination konnte kein Qualitätsprofil gefunden werden. Daher werden die Standardeinstellungen verwendet." - -#~ msgctxt "@title:window" -#~ msgid "Oops!" -#~ msgstr "Hoppla!" - -#~ msgctxt "@label" -#~ msgid "" -#~ "

    A fatal exception has occurred that we could not recover from!

    \n" -#~ "

    We hope this picture of a kitten helps you recover from the shock.

    \n" -#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " -#~ msgstr "" -#~ "

    Ein schwerer Ausnahmezustand ist aufgetreten, den wir nicht beseitigen konnten!

    \n" -#~ "

    Wir hoffen, dass dieses Bild eines Kätzchens Ihren Schock etwas abschwächt.

    \n" -#~ "

    Verwenden Sie bitte die nachstehenden Informationen, um einen Fehlerbericht an folgende URL zu senden: http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " - -#~ msgctxt "@label" -#~ msgid "Please enter the correct settings for your printer below:" -#~ msgstr "Geben Sie nachfolgend bitte die korrekten Einstellungen für Ihren Drucker an:" - -#~ msgctxt "@label" -#~ msgid "Extruder %1" -#~ msgstr "Extruder %1" - -#~ msgctxt "@label Followed by extruder selection drop-down." -#~ msgid "Print model with" -#~ msgstr "Modell drucken mit" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for language changes to have effect." -#~ msgstr "Die Anwendung muss neu gestartet werden, um die Spracheinstellungen zu übernehmen." - -#~ msgctxt "@info:tooltip" -#~ msgid "Moves the camera so the model is in the center of the view when an model is selected" -#~ msgstr "Bewegen Sie die Kamera bis sich das Modell im Mittelpunkt der Ansicht befindet, wenn ein Modell ausgewählt ist" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete &Selection" -#~ msgstr "&Auswahl löschen" - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Open File..." -#~ msgstr "&Datei öffnen..." - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Open Project..." -#~ msgstr "&Projekt öffnen..." - -#~ msgctxt "@title:window" -#~ msgid "Multiply Model" -#~ msgstr "Modell multiplizieren" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &All" -#~ msgstr "&Alles speichern" - -#~ msgctxt "@title:window" -#~ msgid "Open file" -#~ msgstr "Datei öffnen" - -#~ msgctxt "@title:window" -#~ msgid "Open workspace" -#~ msgstr "Arbeitsbereich öffnen" - -#~ msgctxt "@label" -#~ msgid "Hollow" -#~ msgstr "Hohl" - -#~ msgctxt "@label" -#~ msgid "No (0%) infill will leave your model hollow at the cost of low strength" -#~ msgstr "Bei keiner (0 %) Füllung bleibt Ihr Modell hohl, was allerdings eine niedrige Festigkeit zur Folge hat" - -#~ msgctxt "@label" -#~ msgid "Light" -#~ msgstr "Dünn" - -#~ msgctxt "@label" -#~ msgid "Light (20%) infill will give your model an average strength" -#~ msgstr "Eine dünne (20 %) Füllung gibt Ihrem Modell eine durchschnittliche Festigkeit" - -#~ msgctxt "@label" -#~ msgid "Dense" -#~ msgstr "Dicht" - -#~ msgctxt "@label" -#~ msgid "Dense (50%) infill will give your model an above average strength" -#~ msgstr "Eine dichte (50 %) Füllung gibt Ihrem Modell eine überdurchschnittliche Festigkeit" - -#~ msgctxt "@label" -#~ msgid "Solid" -#~ msgstr "Solide" - -#~ msgctxt "@label" -#~ msgid "Solid (100%) infill will make your model completely solid" -#~ msgstr "Eine solide (100 %) Füllung macht Ihr Modell vollständig massiv" - -#~ msgctxt "@label" -#~ msgid "Enable Support" -#~ msgstr "Stützstruktur aktivieren" - -#~ msgctxt "@label" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Aktivierung von Stützstrukturen. Diese Strukturen stützen Teile des Modells mit großen Überhängen." - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints? Read the Ultimaker Troubleshooting Guides" -#~ msgstr "Sie benötigen Hilfe für Ihre Drucke? Lesen Sie die Ultimaker Anleitung für Fehlerbehebung" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}. Please approve the access request on the printer." -#~ msgstr "Über Netzwerk verbunden mit {0}. Geben Sie die Zugriffsanforderung für den Drucker frei." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}." -#~ msgstr "Über Netzwerk verbunden mit {0}." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}. No access to control the printer." -#~ msgstr "Über Netzwerk verbunden mit {0}. Kein Zugriff auf die Druckerverwaltung." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job because the printer is busy. Please check the printer." -#~ msgstr "Es kann kein neuer Druckauftrag gestartet werden, da der Drucker beschäftigt ist. Überprüfen Sie den Drucker." - -#~ msgctxt "@label" -#~ msgid "You made changes to the following setting(s)/override(s):" -#~ msgstr "Sie haben an der/den folgenden Einstellung(en)/Überschreibung(en) Änderungen vorgenommen:" - -#~ msgctxt "@window:title" -#~ msgid "Switched profiles" -#~ msgstr "Getauschte Profile" - -#~ msgctxt "@label" -#~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?" -#~ msgstr "Möchten Sie Ihre %d geänderte(n) Einstellung(en)/Überschreibung(en) auf dieses Profil übertragen?" - -#~ msgctxt "@label" -#~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost." -#~ msgstr "Wenn Sie Ihre Einstellungen übertragen, werden die Profileinstellungen damit überschrieben. Wenn Sie diese Einstellungen nicht übertragen, gehen sie verloren." - -#~ msgctxt "@label" -#~ msgid "Cost per Meter (Approx.)" -#~ msgstr "Kosten pro Meter (circa)" - -#~ msgctxt "@label" -#~ msgid "%1/m" -#~ msgstr "%1/m" - -#~ msgctxt "@info:tooltip" -#~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information." -#~ msgstr "5 oberste Schichten in der Schichtenansicht oder nur die oberste Schicht anzeigen. Das Rendern von 5 Schichten dauert länger, zeigt jedoch mehr Informationen an." - -#~ msgctxt "@action:button" -#~ msgid "Display five top layers in layer view" -#~ msgstr "Die fünf obersten Schichten in der Schichtenansicht anzeigen" - -#~ msgctxt "@info:tooltip" -#~ msgid "Should only the top layers be displayed in layerview?" -#~ msgstr "Sollen nur die obersten Schichten in der Schichtenansicht angezeigt werden?" - -#~ msgctxt "@option:check" -#~ msgid "Only display top layer(s) in layer view" -#~ msgstr "Nur die oberste(n) Schicht(en) in der Schichtenansicht anzeigen" - -#~ msgctxt "@label" -#~ msgid "Opening files" -#~ msgstr "Dateien werden geöffnet" - -#~ msgctxt "@label" -#~ msgid "Printer Monitor" -#~ msgstr "Druckerbildschirm" - -#~ msgctxt "@label" -#~ msgid "Temperatures" -#~ msgstr "Temperaturen" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Preparing to slice..." -#~ msgstr "Slicing vorbereiten..." - -#~ msgctxt "@window:title" -#~ msgid "Changes on the Printer" -#~ msgstr "Änderungen auf dem Drucker" - -#~ msgctxt "@action:inmenu" -#~ msgid "&Duplicate Model" -#~ msgstr "Modell &duplizieren" - -#~ msgctxt "@label" -#~ msgid "Helper Parts:" -#~ msgstr "Helferteile:" - -#~ msgctxt "@label" -#~ msgid "Enable printing support structures. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "Drucken einer Stützstruktur aktivieren. Dient zum Konstruieren von Stützstrukturen unter dem Modell, damit dieses nicht absinkt oder frei schwebend gedruckt wird." - -#~ msgctxt "@label" -#~ msgid "Don't print support" -#~ msgstr "Stütze nicht drucken" - -#~ msgctxt "@label" -#~ msgid "Print support using %1" -#~ msgstr "Stütze mit %1 drucken" - -#~ msgctxt "@label:listbox" -#~ msgid "Printer:" -#~ msgstr "Drucker:" - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profiles {0}" -#~ msgstr "Profile erfolgreich importiert {0}" - -#~ msgctxt "@label" -#~ msgid "Scripts" -#~ msgstr "Skripte" - -#~ msgctxt "@label" -#~ msgid "Active Scripts" -#~ msgstr "Aktive Skripte" - -#~ msgctxt "@label" -#~ msgid "Done" -#~ msgstr "Fertig" - -#~ msgctxt "@item:inlistbox" -#~ msgid "English" -#~ msgstr "Englisch" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Finnish" -#~ msgstr "Finnisch" - -#~ msgctxt "@item:inlistbox" -#~ msgid "French" -#~ msgstr "Französisch" - -#~ msgctxt "@item:inlistbox" -#~ msgid "German" -#~ msgstr "Deutsch" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Italian" -#~ msgstr "Italienisch" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Dutch" -#~ msgstr "Niederländisch" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Spanish" -#~ msgstr "Spanisch" - -#~ msgctxt "@label" -#~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?" -#~ msgstr "Möchten Sie die PrintCores und Materialien in Cura passend für Ihren Drucker ändern?" - -#~ msgctxt "@label:" -#~ msgid "Print Again" -#~ msgstr "Erneut drucken" diff --git a/resources/i18n/de_DE/fdmextruder.def.json.po b/resources/i18n/de_DE/fdmextruder.def.json.po index e0722f2cf0..2eb1b87291 100644 --- a/resources/i18n/de_DE/fdmextruder.def.json.po +++ b/resources/i18n/de_DE/fdmextruder.def.json.po @@ -1,12 +1,9 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-08 09:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -15,6 +12,96 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: fdmextruder.def.json +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Haftung" + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Druckplattenhaftung" + +#: fdmextruder.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Durchmesser" + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "Extruder" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code label" +msgid "Extruder End G-Code" +msgstr "G-Code Extruder-Ende" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_abs label" +msgid "Extruder End Position Absolute" +msgstr "Absolute Extruder-Endposition" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x label" +msgid "Extruder End Position X" +msgstr "Extruder-Endposition X" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y label" +msgid "Extruder End Position Y" +msgstr "Extruder-Endposition Y" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "X-Position Extruder-Einzug" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Y-Position Extruder-Einzug" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z-Position Extruder-Einzug" + +#: fdmextruder.def.json +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Drucklüfter Extruder" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_code label" +msgid "Extruder Start G-Code" +msgstr "G-Code Extruder-Start" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_abs label" +msgid "Extruder Start Position Absolute" +msgstr "Absolute Startposition des Extruders" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "X-Position Extruder-Start" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "Y-Position Extruder-Start" + #: fdmextruder.def.json msgctxt "machine_settings label" msgid "Machine" @@ -26,69 +113,9 @@ msgid "Machine specific settings" msgstr "Gerätespezifische Einstellungen" #: fdmextruder.def.json -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "Extruder" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Düsen-ID" - -#: fdmextruder.def.json -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“." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Düsendurchmesser" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x label" -msgid "Nozzle X Offset" -msgstr "X-Versatz Düse" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "Die X-Koordinate des Düsenversatzes." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "Y-Versatz Düse" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "Die Y-Koordinate des Düsenversatzes." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code label" -msgid "Extruder Start G-Code" -msgstr "G-Code Extruder-Start" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_abs label" -msgid "Extruder Start Position Absolute" -msgstr "Absolute Startposition des Extruders" +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." #: fdmextruder.def.json msgctxt "machine_extruder_start_pos_abs description" @@ -96,114 +123,9 @@ msgid "Make the extruder starting position absolute rather than relative to the msgstr "Bevorzugen Sie eine absolute Startposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition." #: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "X-Position Extruder-Start" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "Y-Position Extruder-Start" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code label" -msgid "Extruder End G-Code" -msgstr "G-Code Extruder-Ende" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_abs label" -msgid "Extruder End Position Absolute" -msgstr "Absolute Extruder-Endposition" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x label" -msgid "Extruder End Position X" -msgstr "Extruder-Endposition X" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y label" -msgid "Extruder End Position Y" -msgstr "Extruder-Endposition Y" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z-Position Extruder-Einzug" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Drucklüfter Extruder" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Druckplattenhaftung" - -#: fdmextruder.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Haftung" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "X-Position Extruder-Einzug" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Y-Position Extruder-Einzug" - -#: fdmextruder.def.json -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 "material description" +msgid "Material" +msgstr "Material" #: fdmextruder.def.json msgctxt "material label" @@ -211,24 +133,91 @@ msgid "Material" msgstr "Material" #: fdmextruder.def.json -msgctxt "material description" -msgid "Material" -msgstr "Material" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Düsendurchmesser" #: fdmextruder.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Durchmesser" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Düsen-ID" #: fdmextruder.def.json -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 "machine_nozzle_offset_x label" +msgid "Nozzle X Offset" +msgstr "X-Versatz Düse" -#~ msgctxt "machine_extruder_start_code description" -#~ msgid "Start g-code to execute whenever turning the extruder on." -#~ msgstr "Starten Sie den G-Code jedes Mal, wenn Sie den Extruder einschalten." +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "Y-Versatz Düse" -#~ msgctxt "machine_extruder_end_code description" -#~ msgid "End g-code to execute whenever turning the extruder off." -#~ msgstr "Beenden Sie den G-Code jedes Mal, wenn Sie den Extruder ausschalten." +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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“." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "Die X-Koordinate des Düsenversatzes." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "Die Y-Koordinate des Düsenversatzes." + +#: fdmextruder.def.json +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." diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index 707866adb5..45ce84ebd1 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -1,12 +1,9 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-28 11:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -16,1497 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: fdmprinter.def.json -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Gerät" +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." #: fdmprinter.def.json -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Gerätespezifische Einstellungen" +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." #: fdmprinter.def.json -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Gerät" - -#: fdmprinter.def.json -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Die Bezeichnung Ihres 3D-Druckermodells." - -#: fdmprinter.def.json -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Anzeige der Gerätevarianten" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "Start G-Code" - -#: fdmprinter.def.json -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 \n" -"." - -#: fdmprinter.def.json -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "Ende G-Code" - -#: fdmprinter.def.json -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 \n" -"." - -#: fdmprinter.def.json -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "Material-GUID" - -#: fdmprinter.def.json -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID des Materials. Dies wird automatisch eingestellt." - -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Durchmesser" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Warten auf Aufheizen der Druckplatte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Warten auf Aufheizen der Düse" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Materialtemperaturen einfügen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Temperaturprüfung der Druckplatte einfügen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Gerätebreite" - -#: fdmprinter.def.json -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "Die Breite (X-Richtung) des druckbaren Bereichs." - -#: fdmprinter.def.json -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Gerätetiefe" - -#: fdmprinter.def.json -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "Die Tiefe (Y-Richtung) des druckbaren Bereichs." - -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Gerätehöhe" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Die Höhe (Z-Richtung) des druckbaren Bereichs." - -#: fdmprinter.def.json -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Druckbettform" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Rechteckig" - -#: fdmprinter.def.json -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Elliptisch" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Druckplattenmaterial" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Das Material der im Drucker eingebauten Druckplatte." - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Glas" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Aluminium" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Mit beheizter Druckplatte" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Option für vorhandene beheizte Druckplatte." - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Verfügt über Temperaturstabilisierung für den Druckraum" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "Immer aktives Tools schreiben" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Is-Center-Ursprung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Anzahl Extruder" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Anzahl der aktivierten Extruder" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Düsendurchmesser außen" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Der Außendurchmesser der Düsenspitze." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Düsenlänge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Düsenwinkel" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Heizzonenlänge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Temperatursteuerung der Düse aktivieren" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Aufheizgeschwindigkeit" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Abkühlgeschwindigkeit" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Mindestzeit Standby-Temperatur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "G-Code-Variante" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Der Typ des zu generierenden G-Codes." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumetrisch)" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits von Bytes" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -#: fdmprinter.def.json -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Firmware-Einzug" - -#: fdmprinter.def.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 "Definiert, ob Firmware-Einzugsbefehle (G10/G11) anstelle der E-Eigenschaft in G1-Befehlen verwendet wird, um das Material einzuziehen." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Extruder teilen sich Heizelement" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Extruder teilen sich eine Düse" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Rückzugstellung der gemeinsam genutzten Düse" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Unzulässige Bereiche" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Unzulässige Bereiche für die Düse" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Gerätekopf und Lüfter Polygon" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Brückenhöhe" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Düsen-ID" - -#: fdmprinter.def.json -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“." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Düsendurchmesser" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Versatz mit Extruder" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z-Position Extruder-Einzug" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Extruder absolute Einzugsposition" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Maximaldrehzahl X" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Maximaldrehzahl Y" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Maximaldrehzahl Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Maximum Speed E" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "Die Maximalgeschwindigkeit des Filaments." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Maximale Beschleunigung X" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Maximale Beschleunigung Y" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Maximale Beschleunigung Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Maximale Beschleunigung Filament" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Voreingestellte Beschleunigung" - -#: fdmprinter.def.json -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "Die voreingestellte Beschleunigung der Druckkopfbewegung." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Voreingestellter X-Y-Ruck" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Voreingestellter Z-Ruck" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Voreingestellter Filament-Ruck" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Voreingestellter Ruck für den Motor des Filaments." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Schritte pro Millimeter (X)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Schritte pro Millimeter (Y)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Schritte pro Millimeter (Z)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Schritte pro Millimeter (E)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "X-Endanschlag in positiver Richtung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Y-Endanschlag in positiver Richtung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Z-Endanschlag in positiver Richtung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Mindest-Vorschub" - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Die Mindestgeschwindigkeit für die Bewegung des Druckkopfes." - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Feeder-Raddurchmesser" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Skalierung der Lüftergeschwindigkeit auf 0–1" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "resolution label" -msgid "Quality" -msgstr "Qualität" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Schichtdicke" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Dicke der ersten Schicht" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "line_width label" -msgid "Line Width" -msgstr "Linienbreite" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Breite der Wandlinien" - -#: fdmprinter.def.json -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Die Breite einer einzelnen Wandlinie." - -#: fdmprinter.def.json -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Breite der äußeren Wandlinien" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Breite der inneren Wandlinien" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Breite der oberen/unteren Linie" - -#: fdmprinter.def.json -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Die Breite einer einzelnen oberen/unteren Linie." - -#: fdmprinter.def.json -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Breite der Fülllinien" - -#: fdmprinter.def.json -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Die Breite einer einzelnen Fülllinie." - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Skirt-/Brim-Linienbreite" - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Die Breite einer einzelnen Skirt- oder Brim-Linie." - -#: fdmprinter.def.json -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Breite der Stützstrukturlinien" - -#: fdmprinter.def.json -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Die Breite einer einzelnen Stützstrukturlinie." - -#: fdmprinter.def.json -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Stützstruktur Schnittstelle Linienbreite" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Breite der Stützdachlinie" - -#: fdmprinter.def.json -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Die Breite einer einzelnen Stützdachlinie." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Stützstruktur Boden Linienbreite" - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Die Breite einer Linienbreite eines einzelnen Bodens." - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Linienbreite Einzugsturm" - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Die Linienbreite eines einzelnen Einzugsturms." - -#: fdmprinter.def.json -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Linienbreite der ersten Schicht" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "shell label" -msgid "Walls" -msgstr "Wände" - -#: fdmprinter.def.json -msgctxt "shell description" -msgid "Shell" -msgstr "Gehäuse" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Extruder für Wand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extruder Außenwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extruder Innenwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Wanddicke" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Anzahl der Wandlinien" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Wandübergangslänge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Anzahl verteilter Wände" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Schwellenwinkel für Wandübergang" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Wandübergangsfilter Abstand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Wandübergangsfilter Rand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Wipe-Abstand der Außenwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Einfügung Außenwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Reihenfolge des Wanddrucks optimieren" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Wandreihenfolge" - -#: fdmprinter.def.json -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." -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." - -#: fdmprinter.def.json -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "Von innen nach außen" - -#: fdmprinter.def.json -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "Von außen nach innen" - -#: fdmprinter.def.json -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Abwechselnde Zusatzwände" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Mindestlinienstärke der Wand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Minimale Wandlinienstärke (geradzahlig)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold label" -msgid "Split Middle Line Threshold" -msgstr "Schwellenwert für das Teilen der Mittellinie" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "Die kleinste Linienstärke, als Faktor der normalen Linienstärke, über der die mittlere Linie (sofern vorhanden) in zwei unterteilt wird. Verringern Sie diese Einstellung, um mehr, aber dünnere Linien zu verwenden. Erhöhen Sie sie, um weniger, aber stärkere Linien zu verwenden. Beachten Sie, dass dies in der Weise gilt, als ob die gesamte Form mit der Wand gefüllt werden sollte, so dass sich die Mitte hier auf die Mitte des Objekts zwischen zwei äußeren Kanten der Form bezieht, auch wenn sich anstelle der Wand tatsächlich Füllung oder (weitere) Oberflächen im Druck befinden." - -#: fdmprinter.def.json -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Minimale Wandlinienstärke (ungeradzahlig)" - -#: fdmprinter.def.json -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 Wandlinienstärke (geradzahlig)," - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold label" -msgid "Add Middle Line Threshold" -msgstr "Schwellenwert für das Hinzufügen einer Mittellinie" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "Die kleinste Linienstärke als Faktor der normalen Linienstärke, ab der eine Mittellinie (falls noch nicht vorhanden) eingefügt wird. Verringern Sie diese Einstellung, um mehr, aber dünnere Linien zu verwenden. Erhöhen Sie sie, um weniger, aber stärkere Linien zu verwenden. Beachten Sie, dass dies in der Weise gilt, als ob die gesamte Form mit der Wand gefüllt werden sollte, so dass sich die Mitte hier auf die Mitte des Objekts zwischen zwei äußeren Kanten der Form bezieht, auch wenn sich anstelle der Wand tatsächlich Füllung oder (weitere) Oberflächen im Druck befinden." - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Drucken von dünnen Wänden" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Mindestgröße des Merkmals" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Minimale Wandlinienstärke (dünn)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Horizontale Erweiterung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Horizontale Erweiterung erste Schicht" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Horizontalloch-Erweiterung" - -#: fdmprinter.def.json -msgctxt "hole_xy_offset description" -msgid "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." -msgstr "Versatz, der auf die Löcher in jeder Schicht angewandt wird. Bei positiven Werten werden die Löcher vergrößert; bei negativen Werten werden die Löcher verkleinert." - -#: fdmprinter.def.json -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Justierung der Z-Naht" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Benutzerdefiniert" - -#: fdmprinter.def.json -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Kürzester" - -#: fdmprinter.def.json -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Zufall" - -#: fdmprinter.def.json -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Schärfste Kante" - -#: fdmprinter.def.json -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Position der Z-Naht" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Hinten links" - -#: fdmprinter.def.json -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Hinten" - -#: fdmprinter.def.json -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Hinten rechts" - -#: fdmprinter.def.json -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Rechts" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Vorne rechts" - -#: fdmprinter.def.json -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Vorne" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Vorne links" - -#: fdmprinter.def.json -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Links" - -#: fdmprinter.def.json -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z-Naht X" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z-Naht Y" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Präferenz Nahtkante" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Keine" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Naht verbergen" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Naht offenlegen" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Naht verbergen oder offenlegen" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Intelligent verbergen" - -#: fdmprinter.def.json -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Realitvwert der Z-Naht" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Oben/Unten" - -#: fdmprinter.def.json -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Oben/Unten" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Oberfläche Außenhaut Extruder" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Oberfläche Außenhaut Schichten" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extruder Oben/Unten" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Obere/untere Dicke" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Obere Dicke" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Obere Schichten" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Untere Dicke" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Untere Schichten" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Erste untere Schichten" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Unteres/oberes Muster" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Das Muster der oberen/unteren Schichten." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Linien" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Unteres Muster für erste Schicht" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Linien" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Konzentrisch" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" - -#: fdmprinter.def.json -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Polygone oben/unten verbinden" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Gleichmäßige Reihenfolge oben/unten" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Richtungen der oberen/unteren Linie" +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." #: fdmprinter.def.json msgctxt "skin_angles description" @@ -1514,379 +33,24 @@ msgid "A list of integer line directions to use when the top/bottom layers use t 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." #: fdmprinter.def.json -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Keine Außenhaut in Z-Lücken" +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." #: fdmprinter.def.json -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 "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." #: fdmprinter.def.json -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Linienanzahl der zusätzlichen Außenhaut" +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." #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Glätten aktivieren" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Nur oberste Schicht glätten" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Glättungsmuster" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" - -#: fdmprinter.def.json -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" - -#: fdmprinter.def.json -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Gleichmäßige Reihenfolge hin/her" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Glättungslinienabstand" - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "Der Abstand zwischen den Glättungslinien." - -#: fdmprinter.def.json -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Glättungsfluss" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Glättungseinsatz" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Glättungsgeschwindigkeit" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Beschleunigung Glättung" - -#: fdmprinter.def.json -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "Die Beschleunigung, mit der das Glätten erfolgt." - -#: fdmprinter.def.json -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Ruckfunktion glätten" - -#: fdmprinter.def.json -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung während des Glättens." - -#: fdmprinter.def.json -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Prozentsatz Außenhaut überlappen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Außenhaut überlappen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Breite für das Entfernen der Außenhaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Breite für das Entfernen der Außenhaut oben" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Breite für das Entfernen der Außenhaut unten" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Expansionsdistanz Außenhaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Expansionsdistanz Außenhaut oben" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Expansionsdistanz Außenhaut unten" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Maximaler Winkel Außenhaut für Expansion" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Mindestbreite Außenhaut für Expansion" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill label" -msgid "Infill" -msgstr "Füllung" - -#: fdmprinter.def.json -msgctxt "infill description" -msgid "Infill" -msgstr "Füllung" - -#: fdmprinter.def.json -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Extruder für Füllung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Fülldichte" - -#: fdmprinter.def.json -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Passt die Fülldichte des Drucks an." - -#: fdmprinter.def.json -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Linienabstand Füllung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Füllmuster" - -#: fdmprinter.def.json -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 "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." - -#: fdmprinter.def.json -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Gitter" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Linien" - -#: fdmprinter.def.json -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Dreiecke" - -#: fdmprinter.def.json -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Tri-Hexagon" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Würfel" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Würfel-Unterbereich" - -#: fdmprinter.def.json -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octet" - -#: fdmprinter.def.json -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Viertelwürfel" - -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" - -#: fdmprinter.def.json -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Kreuz" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "3D-Kreuz" - -#: fdmprinter.def.json -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Blitz" - -#: fdmprinter.def.json -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Füllungslinien verbinden" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Füllungspolygone verbinden" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "infill_angles description" @@ -1894,49 +58,44 @@ msgid "A list of integer line directions to use. Elements from the list are used 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." #: fdmprinter.def.json -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." #: fdmprinter.def.json -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." #: fdmprinter.def.json -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Y-Versatz Füllung" +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "Ist ein Teil vollständig von einem anderen Teil eingeschlossen, wird bei diesem möglicherweise ein äußeres Brim-Element erzeugt, das die Innenseite des anderen Teils berührt. Hiermit wird der Teil des Brim-Elements entfernt, der sich innerhalb dieses Abstands zu inneren Löchern befindet." #: fdmprinter.def.json -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" #: fdmprinter.def.json -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" #: fdmprinter.def.json -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" #: fdmprinter.def.json -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" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "infill_wall_line_count description" @@ -1948,284 +107,9 @@ msgstr "" " 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." #: fdmprinter.def.json -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Gehäuse Würfel-Unterbereich" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Prozentsatz Füllung überlappen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Füllung überlappen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Wipe-Abstand der Füllung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Füllschichtdicke" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Stufenweise Füllungsschritte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Höhe stufenweise Füllungsschritte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Füllung vor Wänden" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Mindestbereich Füllung" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Füllstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Füllung für Überhänge Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Stützenstärke für Außenhautkanten" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Unterstützungsebenen für Außenhautkanten" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Stützwinkel der Blitz-Füllung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Überstandswinkel der Blitz-Füllung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Beschnittwinkel der Blitz-Füllung" - -#: fdmprinter.def.json -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 "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." - -#: fdmprinter.def.json -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Begradigungswinkel der Blitz-Füllung" - -#: fdmprinter.def.json -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 "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." - -#: fdmprinter.def.json -msgctxt "material label" -msgid "Material" -msgstr "Material" - -#: fdmprinter.def.json -msgctxt "material description" -msgid "Material" -msgstr "Material" - -#: fdmprinter.def.json -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Voreingestellte Drucktemperatur" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatur Druckabmessung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Drucktemperatur" - -#: fdmprinter.def.json -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Die Temperatur, die für das Drucken verwendet wird." - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Drucktemperatur erste Schicht" - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Die Temperatur, die für das Drucken der ersten Schicht verwendet wird. Wählen Sie hier 0, um eine spezielle Behandlung der ersten Schicht zu deaktivieren." - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Anfängliche Drucktemperatur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Endgültige Drucktemperatur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Geschwindigkeitsregulierer für Abkühlung bei Extrusion" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Standardtemperatur Druckplatte" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Temperatur Druckplatte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Temperatur der Druckplatte für die erste Schicht" - -#: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" @@ -2233,1924 +117,19 @@ msgid "Adhesion Tendency" msgstr "Haftungstendenz" #: fdmprinter.def.json -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." #: fdmprinter.def.json -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." #: fdmprinter.def.json -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Oberflächenenergie." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Kompensation der Schrumpfung des Skalierungsfaktors" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Schrumpfungskompensation für horizontalen Skalierungsfaktor" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Schrumpfungskompensation für vertikalen Skalierungsfaktor" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Kristallines Material" - -#: fdmprinter.def.json -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)?" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Einzugsmaß für Sickerschutz" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Einzugsgeschwindigkeit für Sickerschutz" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Einzugsmaß für Bruchvorbereitung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Einzugsgeschwindigkeit für Bruchvorbereitung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatur für Bruchvorbereitung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Einzugsmaß für das Brechen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Einzugsgeschwindigkeit für das Brechen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Bruchtemperatur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Ausspülgeschwindigkeit" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Ausspüldauer" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Ausspülgeschwindigkeit am Ende des Filaments" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Ausspüldauer am Ende des Filaments" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Maximale Parkdauer" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Faktor für Bewegung ohne Ladung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flow label" -msgid "Flow" -msgstr "Fluss" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Wandfluss" - -#: fdmprinter.def.json -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Durchflusskompensation an Wandlinien." - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Wandfluss außen" - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Durchflusskompensation an der äußeren Wandlinie." - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Wandfluss innen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Fluss oben/unten" - -#: fdmprinter.def.json -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Durchflusskompensation an oberen/unteren Linien." - -#: fdmprinter.def.json -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Fluss Oberfläche Außenhaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Fluss der Füllung" - -#: fdmprinter.def.json -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Durchflusskompensation an Füllungslinien." - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Skirt/Brim-Fluss" - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Durchflusskompensation an Skirt- oder Brim-Linien." - -#: fdmprinter.def.json -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Stützstruktur-Fluss" - -#: fdmprinter.def.json -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Durchflusskompensation an Stützstrukturlinien." - -#: fdmprinter.def.json -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Fluss Stützstruktur-Schnittstelle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Stützdachfluss" - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Durchflusskompensation an Stützdachlinien." - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Stützbodenfluss" - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Durchflusskompensation an Stützbodenlinien." - -#: fdmprinter.def.json -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Fluss Einzugsturm" - -#: fdmprinter.def.json -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Durchflusskompensation an Einzugsturmlinien." - -#: fdmprinter.def.json -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Fluss der ersten Schicht" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Standby-Temperatur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed label" -msgid "Speed" -msgstr "Geschwindigkeit" - -#: fdmprinter.def.json -msgctxt "speed description" -msgid "Speed" -msgstr "Geschwindigkeit" - -#: fdmprinter.def.json -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Druckgeschwindigkeit" - -#: fdmprinter.def.json -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Die Geschwindigkeit, mit der gedruckt wird." - -#: fdmprinter.def.json -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Füllgeschwindigkeit" - -#: fdmprinter.def.json -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Die Geschwindigkeit, mit der die Füllung gedruckt wird." - -#: fdmprinter.def.json -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Wandgeschwindigkeit" - -#: fdmprinter.def.json -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Die Geschwindigkeit, mit der die Wände gedruckt werden." - -#: fdmprinter.def.json -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Geschwindigkeit Außenwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Geschwindigkeit Innenwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Oberfläche Außenhaut Geschwindigkeit" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Geschwindigkeit obere/untere Schicht" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Stützstrukturgeschwindigkeit" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Stützstruktur-Füllungsgeschwindigkeit" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Stützstruktur-Schnittstellengeschwindigkeit" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Stützdachgeschwindigkeit" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Geschwindigkeit Bodenstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Geschwindigkeit Einzugsturm" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Bewegungsgeschwindigkeit" - -#: fdmprinter.def.json -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Die Geschwindigkeit, mit der Bewegungen durchgeführt werden." - -#: fdmprinter.def.json -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Geschwindigkeit der ersten Schicht" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Druckgeschwindigkeit für die erste Schicht" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Bewegungsgeschwindigkeit für die erste Schicht" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Geschwindigkeit Skirt/Brim" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Sprunghöhe Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Anzahl der langsamen Schichten" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Verhältnis für Durchflussausgleich" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Beschleunigungssteuerung aktivieren" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Beschleunigung Druck" - -#: fdmprinter.def.json -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Die Beschleunigung, mit der das Drucken erfolgt." - -#: fdmprinter.def.json -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Beschleunigung Füllung" - -#: fdmprinter.def.json -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "Die Beschleunigung, mit der die Füllung gedruckt wird." - -#: fdmprinter.def.json -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Beschleunigung Wand" - -#: fdmprinter.def.json -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Die Beschleunigung, mit der die Wände gedruckt werden." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Beschleunigung Außenwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Beschleunigung Innenwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Beschleunigung Oberfläche Außenhaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Beschleunigung Oben/Unten" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Beschleunigung Stützstruktur" - -#: fdmprinter.def.json -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Die Beschleunigung, mit der die Stützstruktur gedruckt wird." - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Beschleunigung Stützstrukturfüllung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Beschleunigung Stützstrukturschnittstelle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Beschleunigung Dachstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Beschleunigung Bodenstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Beschleunigung Einzugsturm" - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "Die Beschleunigung, mit der der Einzugsturm gedruckt wird." - -#: fdmprinter.def.json -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Beschleunigung Bewegung" - -#: fdmprinter.def.json -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Die Beschleunigung, mit der Bewegungen durchgeführt werden." - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Beschleunigung erste Schicht" - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Die Beschleunigung für die erste Schicht." - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Druckbeschleunigung für die erste Schicht" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Geschwindigkeit der Bewegung für die erste Schicht" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Beschleunigung Skirt/Brim" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Rucksteuerung aktivieren" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Ruckfunktion Drucken" - -#: fdmprinter.def.json -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung des Druckkopfes." - -#: fdmprinter.def.json -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Ruckfunktion Füllung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Ruckfunktion Wand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Ruckfunktion Außenwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Ruckfunktion Innenwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Justierung der Oberfläche Außenhaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Ruckfunktion obere/untere Schicht" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Ruckfunktion Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Ruckfunktion Stützstruktur-Füllung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Ruckfunktion Stützstruktur-Schnittstelle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Ruckfunktion für Dachstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Ruckfunktion für Bodenstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Ruckfunktion Einzugsturm" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Ruckfunktion Bewegung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Ruckfunktion der ersten Schicht" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Ruckfunktion Druck für die erste Schicht" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Ruckfunktion Bewegung für die erste Schicht" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Ruckfunktion Skirt/Brim" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel label" -msgid "Travel" -msgstr "Bewegungen" - -#: fdmprinter.def.json -msgctxt "travel description" -msgid "travel" -msgstr "Bewegungen" - -#: fdmprinter.def.json -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Einzug aktivieren" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Einziehen bei Schichtänderung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Einzugsabstand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Einzugsgeschwindigkeit" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Einzugsgeschwindigkeit (Einzug)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Einzugsgeschwindigkeit (Zurückschieben)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Zusätzliche Zurückschiebemenge nach Einzug" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Mindestbewegung für Einzug" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Maximale Anzahl von Einzügen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Fenster „Minimaler Extrusionsabstand“" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "limit_support_retractions label" -msgid "Limit Support Retractions" -msgstr "Stützstruktur-Einzüge einschränken" - -#: fdmprinter.def.json -msgctxt "limit_support_retractions description" -msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -msgstr "Lassen Sie den Einzug beim Vorgehen von Stützstruktur zu Stützstruktur in einer geraden Linie aus. Die Aktivierung dieser Einstellung spart Druckzeit, kann jedoch zu übermäßigem Fadenziehen innerhalb der Stützstruktur führen." - -#: fdmprinter.def.json -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Combing-Modus" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Aus" - -#: fdmprinter.def.json -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Alle" - -#: fdmprinter.def.json -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Nicht auf der Außenfläche" - -#: fdmprinter.def.json -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Nicht in Außenhaut" - -#: fdmprinter.def.json -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Innerhalb der Füllung" - -#: fdmprinter.def.json -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Max. Combing Entfernung ohne Einziehen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Vor Außenwand zurückziehen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Gedruckte Teile bei Bewegung umgehen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Stützstrukturen bei Bewegung umgehen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Umgehungsabstand Bewegung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "Schichtstart X" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Schichtstart Y" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Z-Sprung beim Einziehen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Z-Sprung nur über gedruckten Teilen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Z-Sprung Höhe" - -#: fdmprinter.def.json -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Z-Sprung nach Extruder-Wechsel" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Z-Sprung Höhe nach Extruder-Wechsel" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cooling label" -msgid "Cooling" -msgstr "Kühlung" - -#: fdmprinter.def.json -msgctxt "cooling description" -msgid "Cooling" -msgstr "Kühlung" - -#: fdmprinter.def.json -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Kühlung für Drucken aktivieren" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Lüfterdrehzahl" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "Die Drehzahl, mit der die Druckerlüfter laufen." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Normaldrehzahl des Lüfters" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Maximaldrehzahl des Lüfters" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Grenzwert für Normaldrehzahl/Maximaldrehzahl des Lüfters" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Anfängliche Lüfterdrehzahl" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Normaldrehzahl des Lüfters bei Höhe" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Normaldrehzahl des Lüfters bei Schicht" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Mindestzeit für Schicht" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Mindestgeschwindigkeit" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Druckkopf anheben" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support label" -msgid "Support" -msgstr "Stützstruktur" - -#: fdmprinter.def.json -msgctxt "support description" -msgid "Support" -msgstr "Stützstruktur" - -#: fdmprinter.def.json -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Stützstruktur generieren" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extruder für Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extruder für Füllung Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extruder für erste Schicht der Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extruder für Stützstruktur-Schnittstelle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extruder für Dachstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extruder für Bodenstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" - -#: fdmprinter.def.json -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Tree" - -#: fdmprinter.def.json -msgctxt "support_tree_angle label" -msgid "Tree Support Branch Angle" -msgstr "Astwinkel der Baumstützstruktur" - -#: fdmprinter.def.json -msgctxt "support_tree_angle description" -msgid "The angle of the branches. 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 Winkel der Äste. Verwenden Sie einen geringeren Winkel, um sie vertikaler und stabiler zu gestalten. Verwenden Sie einen stärkeren Winkel, um mehr Reichweite zu erhalten." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance label" -msgid "Tree Support Branch Distance" -msgstr "Astabstand der Baumstützstruktur" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance description" -msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -msgstr "Dies beschreibt, wie weit die Äste weg sein müssen, wenn sie das Modell berühren. Eine geringe Entfernung lässt die Baumstützstruktur das Modell an mehreren Punkten berühren, und führt zu einem besseren Überhang, allerdings lässt sich die Stützstruktur auch schwieriger entfernen." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter label" -msgid "Tree Support Branch Diameter" -msgstr "Astdurchmesser der Baumstützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter_angle label" -msgid "Tree Support Branch Diameter Angle" -msgstr "Winkel Astdurchmesser der Baumstützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution label" -msgid "Tree Support Collision Resolution" -msgstr "Kollisionsauflösung der Baumstützstruktur" - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution description" -msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -msgstr "Dies ist die Auflösung für die Berechnung von Kollisionen, um ein Anschlagen des Modells zu verhindern. Eine niedrigere Einstellung sorgt für akkuratere Bäume, die weniger häufig fehlschlagen, erhöht jedoch die Slicing-Zeit erheblich." - -#: fdmprinter.def.json -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Platzierung Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Druckbett berühren" - -#: fdmprinter.def.json -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Überall" - -#: fdmprinter.def.json -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Winkel für Überhänge Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Muster der Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Linien" - -#: fdmprinter.def.json -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Gitter" - -#: fdmprinter.def.json -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Dreiecke" - -#: fdmprinter.def.json -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" - -#: fdmprinter.def.json -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" - -#: fdmprinter.def.json -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Quer" - -#: fdmprinter.def.json -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" - -#: fdmprinter.def.json -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Anzahl der Wandlinien der Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Stützlinien verbinden" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Zickzack-Elemente Stützstruktur verbinden" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Dichte der Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Linienabstand der Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Linienabstand der ursprünglichen Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Unterstützung Linienrichtung Füllung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Stütz-Brim aktivieren" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Breite der Brim-Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Anzahl der Brim-Stützstrukturlinien" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Z-Abstand der Stützstruktur" - -#: fdmprinter.def.json -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. This value is rounded up to a multiple of the layer height." -msgstr "Der Abstand der Ober-/Unterseite der Stützstruktur vom Druck. So wird ein Zwischenraum geschaffen, der die Entfernung der Stützstrukturen nach dem Drucken des Modells ermöglicht. Dieser Wert wird auf ein Vielfaches der Schichtdicke aufgerundet." - -#: fdmprinter.def.json -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Oberer Abstand der Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Unterer Abstand der Stützstruktur" - -#: fdmprinter.def.json -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Der Abstand vom gedruckten Objekt bis zur Unterseite der Stützstruktur." - -#: fdmprinter.def.json -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "X/Y-Abstand der Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Abstandspriorität der Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y hebt Z auf" - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z hebt X/Y auf" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "X/Y-Mindestabstand der Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Stufenhöhe der Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Max. Stufenhöhe der Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Stützstufe minimaler Neigungswinkel" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Abstand für Zusammenführung der Stützstrukturen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Horizontale Erweiterung der Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Stützstruktur Füllschichtdicke" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Stufenweise Füllungsschritte Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Höhe stufenweiser Füllungsschritt Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Mindestbereich Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Stützstruktur-Schnittstelle aktivieren" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Stützdach aktivieren" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Stützboden aktivieren" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Dicke der Stützstrukturschnittstelle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Dicke des Stützdachs" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Dicke der Bodenstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Auflösung Stützstrukturschnittstelle" - -#: fdmprinter.def.json -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 "Bei der Überprüfung, wo sich das Modell über und unter der Stützstruktur befindet, verwenden Sie Schritte der entsprechenden Höhe. Niedrigere Werte schneiden langsamer, während höhere Werte dazu führen können, dass die normale Stützstruktur an einigen Stellen gedruckt wird, wo sie als Stützstrukturschnittstelle gedruckt werden sollte." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "support_interface_density description" @@ -4158,898 +137,19 @@ msgid "Adjusts the density of the roofs and floors of the support structure. A h 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." #: fdmprinter.def.json -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Dichte der Dachstruktur" +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." #: fdmprinter.def.json -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 "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." #: fdmprinter.def.json -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Linienabstand der Dachstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Dichte der Bodenstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Linienabstand der Bodenstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Muster Stützstrukturschnittstelle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Linien" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Gitter" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Dreiecke" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Muster des Stützdachs" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Linien" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Gitter" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Dreiecke" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Muster der Bodenstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Linien" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Gitter" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Dreiecke" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" - -#: fdmprinter.def.json -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Mindestbereich Stützstruktur-Schnittstelle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Mindestbereich Stützstrukturdach" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Mindestbereich Stützstrukturboden" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Horizontale Erweiterung Stützstruktur-Schnittstelle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Horizontale Erweiterung Stützstrukturdach" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Horizontale Erweiterung Stützstrukturboden" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Richtungen der Verbindungslinien unterstützen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Richtungen der Dachlinien unterstützen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Richtungen der Bodenlinien unterstützen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Lüfterdrehzahl überschreiben" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Unterstützte Lüfterdrehzahl für Außenhaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Verwendung von Pfeilern" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Pfeilerdurchmesser" - -#: fdmprinter.def.json -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "Der Durchmesser eines speziellen Pfeilers." - -#: fdmprinter.def.json -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Maximaler Durchmesser für Stützpfeiler" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Winkel des Pfeilerdachs" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Stütznetz ablegen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "Szene verfügt über Stütznetze" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Druckplattenhaftung" - -#: fdmprinter.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Haftung" - -#: fdmprinter.def.json -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Einzugstropfen aktivieren" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "X-Position Extruder-Einzug" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Y-Position Extruder-Einzug" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Druckplattenhaftungstyp" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Skirt" - -#: fdmprinter.def.json -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Brim" - -#: fdmprinter.def.json -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" - -#: fdmprinter.def.json -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Keine" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Druckplattenhaftung für Extruder" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Skirt/Brim-Extruder" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Raft-Basis-Extruder" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Extruder für die Raft-Mitte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Extruder für die Raft-Oberseite" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Anzahl der Skirt-Linien" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Skirt-Abstand" - -#: fdmprinter.def.json -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 "" -"Der horizontale Abstand zwischen dem Skirt und der ersten Schicht des Drucks.\n" -"Es handelt sich dabei um den Mindestabstand. Ab diesem Abstand werden mehrere Skirt-Linien in äußerer Richtung angebracht." - -#: fdmprinter.def.json -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Mindestlänge für Skirt/Brim" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Breite des Brim-Elements" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Anzahl der Brim-Linien" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Abstand zum Brim-Element" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Brim ersetzt die Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Brim nur an Außenseite" - -#: fdmprinter.def.json -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 "Brim nur an der Außenseite des Modells drucken. Damit reduziert sich die Anzahl der Brims, die Sie später entfernen müssen, während die Druckbetthaftung nicht signifikant eingeschränkt wird." - -#: fdmprinter.def.json -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Zusätzlicher Abstand für Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Raft-Glättung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Luftspalt für Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Z Überlappung der ersten Schicht" - -#: fdmprinter.def.json -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 "Die erste und die zweite Schicht des Modells sollen sich in der Z-Richtung überlappen, um das verlorene Filament in dem Luftspalt zu kompensieren. Alle Modelle über der ersten Modellschicht verschieben sich um diesen Wert nach unten." - -#: fdmprinter.def.json -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Obere Raft-Schichten" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Dicke der oberen Raft-Schichten" - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Die Schichtdicke der oberen Raft-Schichten." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Linienbreite der Raft-Oberfläche" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Linienabstand der Raft-Oberfläche" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Mittlere Ebenen des Rafts" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Dicke der Raft-Mittelbereichs" - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Die Schichtdicke des Raft-Mittelbereichs." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Linienbreite des Raft-Mittelbereichs" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Linienabstand im Raft-Mittelbereich" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Dicke der Raft-Basis" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Linienbreite der Raft-Basis" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Linienabstand der Raft-Basis" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Raft-Druckgeschwindigkeit" - -#: fdmprinter.def.json -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "Die Geschwindigkeit, mit der das Raft gedruckt wird." - -#: fdmprinter.def.json -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Druckgeschwindigkeit Raft Oben" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Druckgeschwindigkeit Raft Mitte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Druckgeschwindigkeit für Raft-Basis" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Druckbeschleunigung Raft" - -#: fdmprinter.def.json -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "Die Beschleunigung, mit der das Raft gedruckt wird." - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Druckbeschleunigung Raft Oben" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Druckbeschleunigung Raft Mitte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Druckbeschleunigung Raft Unten" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Ruckfunktion Raft-Druck" - -#: fdmprinter.def.json -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "Die Ruckfunktion, mit der das Raft gedruckt wird." - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Ruckfunktion Drucken Raft Oben" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Ruckfunktion Drucken Raft Mitte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Ruckfunktion Drucken Raft-Basis" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Lüfterdrehzahl für Raft" - -#: fdmprinter.def.json -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Die Drehzahl des Lüfters für das Raft." - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Lüfterdrehzahl Raft Oben" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Lüfterdrehzahl Raft Mitte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Lüfterdrehzahl für Raft-Basis" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Duale Extrusion" - -#: fdmprinter.def.json -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Verwendete Einstellungen für das Drucken mit mehreren Extrudern." - -#: fdmprinter.def.json -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Einzugsturm aktivieren" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Größe Einzugsturm" - -#: fdmprinter.def.json -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "Die Breite des Einzugsturms." - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Mindestvolumen Einzugsturm" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "X-Position des Einzugsturm" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Y-Position des Einzugsturms" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "prime_tower_wipe_enabled description" @@ -5057,244 +157,14 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "Nach dem Drucken des Einzugsturms mit einer Düse wird das ausgetretene Material von der anderen Düse am Einzugsturm abgewischt." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Brim Einzugsturm" +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." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Einzugstürme benötigen möglicherweise zusätzliche Haftung in Form eines Brims, auch wenn das Modell selbst dies nicht benötigt. Kann derzeit nicht mit dem „Raft“-Haftungstyp verwendet werden." - -#: fdmprinter.def.json -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Sickerschutz aktivieren" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Winkel für Sickerschutz" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Abstand für Sickerschutz" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Düsenwechsel Einzugsabstand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Düsenwechsel Rückzugsgeschwindigkeit" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Düsenwechsel Rückzuggeschwindigkeit" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Düsenwechsel Einzugsgeschwindigkeit (Zurückschieben)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Zusätzliche Einzugsmenge bei Düsenwechsel" - -#: fdmprinter.def.json -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Nach einem Düsenwechsel zusätzlich bereitzustellendes Material." - -#: fdmprinter.def.json -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Netzreparaturen" - -#: fdmprinter.def.json -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Passe die Gitter besser an den 3D-Druck an." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Überlappende Volumen vereinen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Alle Löcher entfernen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Extensives Stitching" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Unterbrochene Flächen beibehalten" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Überlappung zusammengeführte Netze" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Netzüberschneidung entfernen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Wechselndes Entfernen des Netzes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Leere erste Schichten entfernen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Maximale Auflösung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Maximale Bewegungsauflösung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Maximale Abweichung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Maximale Abweichung der Extrusionsfläche" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Sonderfunktionen" - -#: fdmprinter.def.json -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Nicht-traditionelle Möglichkeiten, Ihre Modelle zu drucken." - -#: fdmprinter.def.json -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Druckreihenfolge" - -#: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "print_sequence option all_at_once" @@ -5302,1273 +172,19 @@ msgid "All at Once" msgstr "Alle gleichzeitig" #: fdmprinter.def.json -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Nacheinander" +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)." #: fdmprinter.def.json -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Mesh-Füllung" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Abwechselnde Zusatzwände" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Rang der Netzverarbeitung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Mesh beschneiden" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Form" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Mindestbreite der Form" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Dachhöhe der Form" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Formwinkel" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Stütznetz" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Anti-Überhang-Netz" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Oberflächenmodus" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Oberfläche" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Beides" - -#: fdmprinter.def.json -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Spiralisieren der äußeren Konturen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Glätten der spiralisierten Kontur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Relative Extrusion" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "experimental label" -msgid "Experimental" -msgstr "Experimentell" - -#: fdmprinter.def.json -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Merkmale, die noch nicht vollständig ausgearbeitet wurden." - -#: fdmprinter.def.json -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Slicing-Toleranz" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Mitte" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exklusiv" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inklusiv" - -#: fdmprinter.def.json -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Oberfläche Außenhaut Linienbreite" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Oberfläche Außenhaut Muster" - -#: fdmprinter.def.json -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "Das Muster der obersten Schichten." - -#: fdmprinter.def.json -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Linien" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" - -#: fdmprinter.def.json -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Gleichmäßige Reihenfolge oben" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Linienrichtungen der Oberfläche Außenhaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Bewegungsoptimierung Füllung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature label" -msgid "Auto Temperature" -msgstr "Automatische Temperatur" - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature description" -msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -msgstr "Die Temperatur wird für jede Schicht automatisch anhand der durchschnittlichen Fließgeschwindigkeit dieser Schicht geändert." - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Fließtemperaturgraf" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Mindestumfang Polygon" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Stützstruktur in Blöcke aufteilen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Blockgröße für Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Anzahl der Stützstruktur-Blocklinien" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Windschutz aktivieren" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "X/Y-Abstand des Windschutzes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Begrenzung des Windschutzes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Voll" - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Begrenzt" - -#: fdmprinter.def.json -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Höhe des Windschutzes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Überhänge druckbar machen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Maximaler Winkel des Modells" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Maximaler Lochflächen-Überstand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Coasting aktivieren" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Coasting-Volumen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Mindestvolumen vor Coasting" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Coasting-Geschwindigkeit" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Größe 3D-Quertasche" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Querfülldichte Bild" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Querfülldichte Bild für Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Konische Stützstruktur aktivieren" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Winkel konische Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Mindestbreite konische Stützstruktur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Ungleichmäßige Außenhaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Nur ungleichmäßige Außenhaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Dicke der ungleichmäßigen Außenhaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Dichte der ungleichmäßigen Außenhaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Punktabstand der ungleichmäßigen Außenhaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Ausgleich Durchflussrate max. Extrusionswirkung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Ausgleichsfaktor Durchflussrate" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wireframe_enabled label" -msgid "Wire Printing" -msgstr "Drucken mit Drahtstruktur" - -#: fdmprinter.def.json -msgctxt "wireframe_enabled description" -msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -msgstr "Es wird „schwebend“ nur die äußere Oberfläche mit einer dünnen Netzstruktur gedruckt. Dazu werden die Konturen des Modells horizontal gemäß den gegebenen Z-Intervallen gedruckt, welche durch aufwärts und diagonal abwärts verlaufende Linien verbunden werden." - -#: fdmprinter.def.json -msgctxt "wireframe_height label" -msgid "WP Connection Height" -msgstr "Verbindungshöhe bei Drucken mit Drahtstruktur" - -#: fdmprinter.def.json -msgctxt "wireframe_height description" -msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -msgstr "Die Höhe der Aufwärtslinien und diagonalen Abwärtslinien zwischen zwei horizontalen Teilen. Dies legt die Gesamtdichte der Netzstruktur fest. Dies gilt nur für das Drucken mit Drahtstruktur." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset label" -msgid "WP Roof Inset Distance" -msgstr "Einfügeabstand für Dach bei Drucken mit Drahtstruktur" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset description" -msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -msgstr "Der abgedeckte Abstand beim Herstellen einer Verbindung vom Dachumriss nach innen. Dies gilt nur für das Drucken mit Drahtstruktur." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed label" -msgid "WP Speed" -msgstr "Geschwindigkeit beim Drucken mit Drahtstruktur" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed description" -msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -msgstr "Die Geschwindigkeit, mit der sich die Düse bei der Materialextrusion bewegt. Dies gilt nur für das Drucken mit Drahtstruktur." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom label" -msgid "WP Bottom Printing Speed" -msgstr "Geschwindigkeit beim Drucken der Unterseite mit Drahtstruktur" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom description" -msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -msgstr "Die Geschwindigkeit beim drucken der ersten Schicht, also der einzigen Schicht, welche das Druckbett berührt. Dies gilt nur für das Drucken mit Drahtstruktur." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up label" -msgid "WP Upward Printing Speed" -msgstr "Geschwindigkeit beim Drucken in Aufwärtsrichtung mit Drahtstruktur" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up description" -msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -msgstr "Die Geschwindigkeit beim Drucken einer „schwebenden“ Linie in Aufwärtsrichtung. Dies gilt nur für das Drucken mit Drahtstruktur." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down label" -msgid "WP Downward Printing Speed" -msgstr "Geschwindigkeit beim Drucken in Abwärtsrichtung mit Drahtstruktur" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down description" -msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -msgstr "Die Geschwindigkeit beim Drucken einer Linie in diagonaler Abwärtsrichtung. Dies gilt nur für das Drucken mit Drahtstruktur." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat label" -msgid "WP Horizontal Printing Speed" -msgstr "Geschwindigkeit beim Drucken in horizontaler Richtung mit Drahtstruktur" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat description" -msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -msgstr "Die Geschwindigkeit beim Drucken der horizontalen Konturen des Modells. Dies gilt nur für das Drucken mit Drahtstruktur." - -#: fdmprinter.def.json -msgctxt "wireframe_flow label" -msgid "WP Flow" -msgstr "Fluss für Drucken mit Drahtstruktur" - -#: fdmprinter.def.json -msgctxt "wireframe_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -msgstr "Flusskompensation: Die extrudierte Materialmenge wird mit diesem Wert multipliziert. Dies gilt nur für das Drucken mit Drahtstruktur." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection label" -msgid "WP Connection Flow" -msgstr "Fluss für Drucken von Verbindungen mit Drahtstruktur" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection description" -msgid "Flow compensation when going up or down. Only applies to Wire Printing." -msgstr "Flusskompensation bei der Aufwärts- und Abwärtsbewegung. Dies gilt nur für das Drucken mit Drahtstruktur." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat label" -msgid "WP Flat Flow" -msgstr "Fluss für Drucken von flachen Linien mit Drahtstruktur" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat description" -msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -msgstr "Flusskompensation beim Drucken flacher Linien. Dies gilt nur für das Drucken mit Drahtstruktur." - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay label" -msgid "WP Top Delay" -msgstr "Aufwärtsverzögerung beim Drucken mit Drahtstruktur" - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay description" -msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -msgstr "Die Verzögerungszeit nach einer Aufwärtsbewegung, damit die Aufwärtslinie härten kann. Dies gilt nur für das Drucken mit Drahtstruktur." - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay label" -msgid "WP Bottom Delay" -msgstr "Abwärtsverzögerung beim Drucken mit Drahtstruktur" - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay description" -msgid "Delay time after a downward move. Only applies to Wire Printing." -msgstr "Die Verzögerungszeit nach einer Abwärtsbewegung. Dies gilt nur für das Drucken mit Drahtstruktur." - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay label" -msgid "WP Flat Delay" -msgstr "Horizontale Verzögerung beim Drucken mit Drahtstruktur" - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay description" -msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -msgstr "Die Verzögerungszeit zwischen zwei horizontalen Segmenten. Durch eine solche Verzögerung kann eine bessere Haftung an den Verbindungspunkten zu vorherigen Schichten erreicht werden; bei einer zu langen Verzögerungszeit kann es allerdings zum Herabsinken von Bestandteilen kommen. Dies gilt nur für das Drucken mit Drahtstruktur." - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed label" -msgid "WP Ease Upward" -msgstr "Langsame Aufwärtsbewegung bei Drucken mit Drahtstruktur" - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed description" -msgid "" -"Distance of an upward move which is extruded with half speed.\n" -"This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "" -"Die Strecke einer Aufwärtsbewegung, die mit halber Geschwindigkeit extrudiert wird.\n" -"Dies kann zu einer besseren Haftung an vorhergehenden Schichten führen, während gleichzeitig ein Überhitzen des Materials in diesen Schichten vermieden wird. Dies gilt nur für das Drucken mit Drahtstruktur." - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump label" -msgid "WP Knot Size" -msgstr "Knotengröße für Drucken mit Drahtstruktur" - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump description" -msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -msgstr "Es wird ein kleiner Knoten oben auf einer Aufwärtslinie hergestellt, damit die nächste horizontale Schicht eine bessere Verbindung mit dieser herstellen kann. Dies gilt nur für das Drucken mit Drahtstruktur." - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down label" -msgid "WP Fall Down" -msgstr "Herunterfallen bei Drucken mit Drahtstruktur" - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down description" -msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "Die Strecke, die das Material nach einer Aufwärts-Extrusion herunterfällt. Diese Strecke wird kompensiert. Dies gilt nur für das Drucken mit Drahtstruktur." - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along label" -msgid "WP Drag Along" -msgstr "Nachziehen bei Drucken mit Drahtstruktur" - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along description" -msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "Die Strecke, die das Material bei einer Aufwärts-Extrusion mit der diagonalen Abwärts-Extrusion nach unten gezogen wird. Diese Strecke wird kompensiert. Dies gilt nur für das Drucken mit Drahtstruktur." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy label" -msgid "WP Strategy" -msgstr "Strategie für Drucken mit Drahtstruktur" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy description" -msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -msgstr "Eine Strategie, um sicherzustellen, dass an jedem Verbindungspunkt zwei Schichten miteinander verbunden werden. Durch den Einzug härten die Aufwärtslinien in der richtigen Position, allerdings kann es dabei zum Schleifen des Filaments kommen. Am Ende jeder Aufwärtslinie kann ein Knoten gemacht werden, um die Chance einer erfolgreichen Verbindung zu erhöhen und die Linie abkühlen zu lassen; allerdings ist dafür möglicherweise eine niedrige Druckgeschwindigkeit erforderlich. Eine andere Strategie ist die es an der Oberseite einer Aufwärtslinie das Herabsinken zu kompensieren; allerdings sinken nicht alle Linien immer genauso ab, wie dies erwartet wird." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option compensate" -msgid "Compensate" -msgstr "Kompensieren" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option knot" -msgid "Knot" -msgstr "Knoten" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option retract" -msgid "Retract" -msgstr "Einziehen" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down label" -msgid "WP Straighten Downward Lines" -msgstr "Abwärtslinien beim Drucken mit Drahtstruktur geraderichten" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down description" -msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -msgstr "Der Prozentsatz einer diagonalen Abwärtslinie, die von einem horizontalen Linienteil bedeckt wird. Dies kann das Herabsinken des höchsten Punktes einer Aufwärtslinie verhindern. Dies gilt nur für das Drucken mit Drahtstruktur." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down label" -msgid "WP Roof Fall Down" -msgstr "Herunterfallen des Dachs bei Drucken mit Drahtstruktur" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down description" -msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -msgstr "Die Strecke, um die horizontale Dachlinien, die „schwebend“ gedruckt werden, beim Druck herunterfallen. Diese Strecke wird kompensiert. Dies gilt nur für das Drucken mit Drahtstruktur." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along label" -msgid "WP Roof Drag Along" -msgstr "Nachziehen für Dach bei Drucken mit Drahtstruktur" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along description" -msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -msgstr "Die Strecke des Endstücks einer nach innen verlaufenden Linie, um die diese bei der Rückkehr zur äußeren Umfangslinie des Dachs nachgezogen wird. Diese Strecke wird kompensiert. Dies gilt nur für das Drucken mit Drahtstruktur." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay label" -msgid "WP Roof Outer Delay" -msgstr "Verzögerung für Dachumfänge bei Drucken mit Drahtstruktur" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay description" -msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -msgstr "Die Zeit, die für die äußeren Umfänge eines Lochs aufgewendet wird, das später zu einem Dach werden soll. Durch längere Zeiten kann die Verbindung besser werden. Dies gilt nur für das Drucken mit Drahtstruktur." - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance label" -msgid "WP Nozzle Clearance" -msgstr "Düsenabstand bei Drucken mit Drahtstruktur" - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance description" -msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -msgstr "Der Abstand zwischen der Düse und den horizontalen Abwärtslinien. Bei einem größeren Abstand haben die diagonalen Abwärtslinien einen weniger spitzen Winkel, was wiederum weniger Aufwärtsverbindungen zur nächsten Schicht zur Folge hat. Dies gilt nur für das Drucken mit Drahtstruktur." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Anpassschichten verwenden" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Maximale Abweichung für Anpassschichten" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Abweichung Schrittgröße für Anpassschichten" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Topographische Größe der Anpassschichten" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Winkel für überhängende Wände" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Geschwindigkeit für überhängende Wände" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Brückeneinstellungen aktivieren" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Mindestlänge Brückenwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Schwellenwert Stützstruktur Brücken-Außenhaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Maximale Dichte der Materialsparfüllung der Brücke" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Coasting Brückenwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Brückenwandgeschwindigkeit" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Brückenwandfluss" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Brücken-Außenhautgeschwindigkeit" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Brücken-Außenhautfluss" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Dichte der Brücken-Außenhaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Lüfterdrehzahl Brücke" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Brücke hat mehrere Schichten" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Geschwindigkeit Brücke, zweite Außenhaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Fluss Brücke, zweite Außenhaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Dichte Brücke, zweite Außenhaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Lüfterdrehzahl Brücke, zweite Außenhaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Geschwindigkeit Brücke, dritte Außenhaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Fluss Brücke, dritte Außenhaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Dichte Brücke, dritte Außenhaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Lüfterdrehzahl Brücke, dritte Außenhaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Düse zwischen den Schichten abwischen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Materialmenge zwischen den Wischvorgängen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Abwischen bei Einzug aktivieren" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Einzugsabstand für Abwischen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Zusätzliche Zurückschiebemenge nach Einzug für Abwischen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Einzugsgeschwindigkeit für Abwischen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Einzugsgeschwindigkeit (Einzug) für Abwischen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Vorbereitungszeit für Abwischen beim Einzug" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Abwischen pausieren" - -#: fdmprinter.def.json -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pausieren nach Aufhebung des Einzugs." - -#: fdmprinter.def.json -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Z-Sprung beim Abwischen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Z-Sprung Höhe - Abwischen" - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs." - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Sprunghöhe - Abwischen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "X-Position für Bürste - Abwischen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Wiederholungszähler - Abwischen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Abstand Wischbewegung" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Max. Lochdurchmesser" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Max. Detaillänge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Detailgeschwindigkeit" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Geschwindigkeit der ersten Schicht von Details" - -#: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "material_alternate_walls label" @@ -6581,34 +197,349 @@ msgid "Alternate wall directions every other layer and inset. Useful for materia msgstr "Abwechselnde Wandrichtungen für jede weitere Schicht und jeden Einsatz. Nützlich für Materialien, die Spannungen aufbauen können, wie beim Metalldruck." #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Innenecken des Rafts entfernen" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Aluminium" #: fdmprinter.def.json -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 "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "Immer aktives Tools schreiben" #: fdmprinter.def.json -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Wandanzahl des Raft-Bodens" +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." #: fdmprinter.def.json -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 "hole_xy_offset description" +msgid "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." +msgstr "Versatz, der auf die Löcher in jeder Schicht angewandt wird. Bei positiven Werten werden die Löcher vergrößert; bei negativen Werten werden die Löcher verkleinert." #: fdmprinter.def.json -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Einstellungen Befehlszeile" +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." #: fdmprinter.def.json -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 "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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Anti-Überhang-Netz" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Einzugsmaß für Sickerschutz" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Einzugsgeschwindigkeit für Sickerschutz" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Gedruckte Teile bei Bewegung umgehen" + +#: fdmprinter.def.json +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Stützstrukturen bei Bewegung umgehen" + +#: fdmprinter.def.json +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Hinten" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Hinten links" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Hinten rechts" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits von Bytes" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Beides" + +#: fdmprinter.def.json +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Untere Schichten" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Unteres Muster für erste Schicht" + +#: fdmprinter.def.json +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Expansionsdistanz Außenhaut unten" + +#: fdmprinter.def.json +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Breite für das Entfernen der Außenhaut unten" + +#: fdmprinter.def.json +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Untere Dicke" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Einzugsmaß für Bruchvorbereitung" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Einzugsgeschwindigkeit für Bruchvorbereitung" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatur für Bruchvorbereitung" + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Einzugsmaß für das Brechen" + +#: fdmprinter.def.json +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Einzugsgeschwindigkeit für das Brechen" + +#: fdmprinter.def.json +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Bruchtemperatur" + +#: fdmprinter.def.json +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Stützstruktur in Blöcke aufteilen" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Lüfterdrehzahl Brücke" + +#: fdmprinter.def.json +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Brücke hat mehrere Schichten" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Dichte Brücke, zweite Außenhaut" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Lüfterdrehzahl Brücke, zweite Außenhaut" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Fluss Brücke, zweite Außenhaut" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Geschwindigkeit Brücke, zweite Außenhaut" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Dichte der Brücken-Außenhaut" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Brücken-Außenhautfluss" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Brücken-Außenhautgeschwindigkeit" + +#: fdmprinter.def.json +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Schwellenwert Stützstruktur Brücken-Außenhaut" + +#: fdmprinter.def.json +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Maximale Dichte der Materialsparfüllung der Brücke" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Dichte Brücke, dritte Außenhaut" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Lüfterdrehzahl Brücke, dritte Außenhaut" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Fluss Brücke, dritte Außenhaut" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Geschwindigkeit Brücke, dritte Außenhaut" + +#: fdmprinter.def.json +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Coasting Brückenwand" + +#: fdmprinter.def.json +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Brückenwandfluss" + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Brückenwandgeschwindigkeit" + +#: fdmprinter.def.json +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Brim" + +#: fdmprinter.def.json +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Abstand zum Brim-Element" + +#: fdmprinter.def.json +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "Abstand zur Vermeidung des inneren Brim-Elements" + +#: fdmprinter.def.json +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Anzahl der Brim-Linien" + +#: fdmprinter.def.json +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Brim nur an Außenseite" + +#: fdmprinter.def.json +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Brim ersetzt die Stützstruktur" + +#: fdmprinter.def.json +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Breite des Brim-Elements" + +#: fdmprinter.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Druckplattenhaftung" + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Druckplattenhaftung für Extruder" + +#: fdmprinter.def.json +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Druckplattenhaftungstyp" + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Druckplattenmaterial" + +#: fdmprinter.def.json +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Druckbettform" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Temperatur Druckplatte" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Temperatur der Druckplatte für die erste Schicht" + +#: fdmprinter.def.json +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatur Druckabmessung" #: fdmprinter.def.json msgctxt "center_object label" @@ -6616,1066 +547,6211 @@ msgid "Center Object" msgstr "Objekt zentrieren" #: fdmprinter.def.json -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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Coasting-Geschwindigkeit" + +#: fdmprinter.def.json +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Coasting-Volumen" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Combing-Modus" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Einstellungen Befehlszeile" + +#: fdmprinter.def.json +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" + +#: fdmprinter.def.json +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Konzentrisch" + +#: fdmprinter.def.json +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Winkel konische Stützstruktur" + +#: fdmprinter.def.json +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Mindestbreite konische Stützstruktur" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Füllungslinien verbinden" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Füllungspolygone verbinden" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Stützlinien verbinden" + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Zickzack-Elemente Stützstruktur verbinden" + +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Polygone oben/unten verbinden" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Abkühlgeschwindigkeit" + +#: fdmprinter.def.json +msgctxt "cooling description" +msgid "Cooling" +msgstr "Kühlung" + +#: fdmprinter.def.json +msgctxt "cooling label" +msgid "Cooling" +msgstr "Kühlung" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Kreuz" + +#: fdmprinter.def.json +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Quer" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "3D-Kreuz" + +#: fdmprinter.def.json +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Größe 3D-Quertasche" + +#: fdmprinter.def.json +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Querfülldichte Bild für Stützstruktur" + +#: fdmprinter.def.json +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Querfülldichte Bild" + +#: fdmprinter.def.json +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Kristallines Material" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Würfel" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Würfel-Unterbereich" + +#: fdmprinter.def.json +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Gehäuse Würfel-Unterbereich" + +#: fdmprinter.def.json +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Mesh beschneiden" + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Voreingestellte Beschleunigung" + +#: fdmprinter.def.json +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Standardtemperatur Druckplatte" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Voreingestellter Filament-Ruck" + +#: fdmprinter.def.json +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Voreingestellte Drucktemperatur" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Voreingestellter X-Y-Ruck" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Voreingestellter Z-Ruck" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Voreingestellter Ruck für den Motor des Filaments." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Durchmesser" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Unzulässige Bereiche" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support." +msgstr "Der Abstand vom gedruckten Objekt bis zur Unterseite der Stützstruktur." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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. This value is rounded up to a multiple of the layer height." +msgstr "Der Abstand der Ober-/Unterseite der Stützstruktur vom Druck. So wird ein Zwischenraum geschaffen, der die Entfernung der Stützstrukturen nach dem Drucken des Modells ermöglicht. Dieser Wert wird auf ein Vielfaches der Schichtdicke aufgerundet." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Höhe des Windschutzes" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Begrenzung des Windschutzes" + +#: fdmprinter.def.json +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "X/Y-Abstand des Windschutzes" + +#: fdmprinter.def.json +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Stütznetz ablegen" + +#: fdmprinter.def.json +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Duale Extrusion" + +#: fdmprinter.def.json +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Elliptisch" + +#: fdmprinter.def.json +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Beschleunigungssteuerung aktivieren" + +#: fdmprinter.def.json +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Brückeneinstellungen aktivieren" + +#: fdmprinter.def.json +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Coasting aktivieren" + +#: fdmprinter.def.json +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Konische Stützstruktur aktivieren" + +#: fdmprinter.def.json +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Windschutz aktivieren" + +#: fdmprinter.def.json +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Glätten aktivieren" + +#: fdmprinter.def.json +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Rucksteuerung aktivieren" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Temperatursteuerung der Düse aktivieren" + +#: fdmprinter.def.json +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Sickerschutz aktivieren" + +#: fdmprinter.def.json +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Einzugstropfen aktivieren" + +#: fdmprinter.def.json +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Einzugsturm aktivieren" + +#: fdmprinter.def.json +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Kühlung für Drucken aktivieren" + +#: fdmprinter.def.json +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Einzug aktivieren" + +#: fdmprinter.def.json +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Stütz-Brim aktivieren" + +#: fdmprinter.def.json +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Stützboden aktivieren" + +#: fdmprinter.def.json +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Stützstruktur-Schnittstelle aktivieren" + +#: fdmprinter.def.json +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Stützdach aktivieren" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Beschleunigung für Bewegungen aktivieren" + +#: fdmprinter.def.json +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Ruckfunktion für Bewegungen aktivieren" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "Ende G-Code" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Ausspüldauer am Ende des Filaments" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Ausspülgeschwindigkeit am Ende des Filaments" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Überall" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exklusiv" + +#: fdmprinter.def.json +msgctxt "experimental label" +msgid "Experimental" +msgstr "Experimentell" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Naht offenlegen" + +#: fdmprinter.def.json +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Extensives Stitching" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Zusätzliche Füllung Wandlinien" + +#: fdmprinter.def.json +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Linienanzahl der zusätzlichen Außenhaut" + +#: fdmprinter.def.json +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Nach einem Düsenwechsel zusätzlich bereitzustellendes Material." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "X-Position Extruder-Einzug" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Y-Position Extruder-Einzug" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z-Position Extruder-Einzug" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Extruder teilen sich Heizelement" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Extruder teilen sich eine Düse" + +#: fdmprinter.def.json +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Geschwindigkeitsregulierer für Abkühlung bei Extrusion" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Lüfterdrehzahl" + +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Lüfterdrehzahl überschreiben" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Merkmale, die noch nicht vollständig ausgearbeitet wurden." + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Feeder-Raddurchmesser" + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Endgültige Drucktemperatur" + +#: fdmprinter.def.json +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Firmware-Einzug" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extruder für erste Schicht der Stützstruktur" + +#: fdmprinter.def.json +msgctxt "material_flow label" +msgid "Flow" +msgstr "Fluss" + +#: fdmprinter.def.json +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Verhältnis für Durchflussausgleich" + +#: fdmprinter.def.json +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Ausgleichsfaktor Durchflussrate" + +#: fdmprinter.def.json +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Ausgleich Durchflussrate max. Extrusionswirkung" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Fließtemperaturgraf" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Durchflusskompensation an Füllungslinien." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Durchflusskompensation an Einzugsturmlinien." + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Durchflusskompensation an Skirt- oder Brim-Linien." + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Durchflusskompensation an Stützbodenlinien." + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Durchflusskompensation an Stützdachlinien." + +#: fdmprinter.def.json +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Durchflusskompensation an Stützstrukturlinien." + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Durchflusskompensation an der äußeren Wandlinie." + +#: fdmprinter.def.json +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Durchflusskompensation an oberen/unteren Linien." + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Durchflusskompensation an Wandlinien." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Ausspüldauer" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Ausspülgeschwindigkeit" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Vorne" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Vorne links" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Vorne rechts" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Voll" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Ungleichmäßige Außenhaut" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Dichte der ungleichmäßigen Außenhaut" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Nur ungleichmäßige Außenhaut" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Punktabstand der ungleichmäßigen Außenhaut" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Dicke der ungleichmäßigen Außenhaut" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "G-Code-Variante" + +#: fdmprinter.def.json +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 \n" +"." + +#: fdmprinter.def.json +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 \n" +"." + +#: fdmprinter.def.json +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID des Materials. Dies wird automatisch eingestellt." + +#: fdmprinter.def.json +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Brückenhöhe" + +#: fdmprinter.def.json +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Ineinandergreifende Struktur generieren" + +#: fdmprinter.def.json +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Stützstruktur generieren" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Glas" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Höhe stufenweise Füllungsschritte" + +#: fdmprinter.def.json +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Stufenweise Füllungsschritte" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Höhe stufenweiser Füllungsschritt Stützstruktur" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Stufenweise Füllungsschritte Stützstruktur" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Gitter" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Gitter" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Gitter" + +#: fdmprinter.def.json +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Gitter" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Gitter" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +#: fdmprinter.def.json +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" + +#: fdmprinter.def.json +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Verfügt über Temperaturstabilisierung für den Druckraum" + +#: fdmprinter.def.json +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Mit beheizter Druckplatte" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Aufheizgeschwindigkeit" + +#: fdmprinter.def.json +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Heizzonenlänge" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Naht verbergen" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Naht verbergen oder offenlegen" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Horizontalloch-Erweiterung" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Horizontale Erweiterung" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Schrumpfungskompensation für horizontalen Skalierungsfaktor" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance description" +msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." +msgstr "Dies beschreibt, wie weit die Äste weg sein müssen, wenn sie das Modell berühren. Eine geringe Entfernung lässt die Baumstützstruktur das Modell an mehreren Punkten berühren, und führt zu einem besseren Überhang, allerdings lässt sich die Stützstruktur auch schwieriger entfernen." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Temperaturprüfung der Druckplatte einfügen" + +#: fdmprinter.def.json +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Materialtemperaturen einfügen" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inklusiv" + +#: fdmprinter.def.json +msgctxt "infill description" +msgid "Infill" +msgstr "Füllung" + +#: fdmprinter.def.json +msgctxt "infill label" +msgid "Infill" +msgstr "Füllung" + +#: fdmprinter.def.json +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Beschleunigung Füllung" + +#: fdmprinter.def.json +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Füllung vor Wänden" + +#: fdmprinter.def.json +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Fülldichte" + +#: fdmprinter.def.json +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Extruder für Füllung" + +#: fdmprinter.def.json +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Fluss der Füllung" + +#: fdmprinter.def.json +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Ruckfunktion Füllung" + +#: fdmprinter.def.json +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Füllschichtdicke" + +#: fdmprinter.def.json +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Linienrichtungen Füllung" + +#: fdmprinter.def.json +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Linienabstand Füllung" + +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Fülllinie multiplizieren" + +#: fdmprinter.def.json +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Breite der Fülllinien" + +#: fdmprinter.def.json +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Mesh-Füllung" + +#: fdmprinter.def.json +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Füllung für Überhänge Stützstruktur" + +#: fdmprinter.def.json +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Füllung überlappen" + +#: fdmprinter.def.json +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Prozentsatz Füllung überlappen" + +#: fdmprinter.def.json +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Füllmuster" + +#: fdmprinter.def.json +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Füllgeschwindigkeit" + +#: fdmprinter.def.json +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Füllstruktur" + +#: fdmprinter.def.json +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Bewegungsoptimierung Füllung" + +#: fdmprinter.def.json +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Wipe-Abstand der Füllung" + +#: fdmprinter.def.json +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "X-Versatz Füllung" + +#: fdmprinter.def.json +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Y-Versatz Füllung" + +#: fdmprinter.def.json +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Erste untere Schichten" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Anfängliche Lüfterdrehzahl" + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Beschleunigung erste Schicht" + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Unterer Fluss der ersten Schicht" + +#: fdmprinter.def.json +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Fluss der ersten Schicht" + +#: fdmprinter.def.json +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Dicke der ersten Schicht" + +#: fdmprinter.def.json +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Horizontale Erweiterung erste Schicht" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Innenwandfluss der ersten Schicht" + +#: fdmprinter.def.json +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Ruckfunktion der ersten Schicht" + +#: fdmprinter.def.json +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Linienbreite der ersten Schicht" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Außenwandfluss der ersten Schicht" + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Druckbeschleunigung für die erste Schicht" + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Ruckfunktion Druck für die erste Schicht" + +#: fdmprinter.def.json +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Druckgeschwindigkeit für die erste Schicht" + +#: fdmprinter.def.json +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Geschwindigkeit der ersten Schicht" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Linienabstand der ursprünglichen Stützstruktur" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Geschwindigkeit der Bewegung für die erste Schicht" + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Ruckfunktion Bewegung für die erste Schicht" + +#: fdmprinter.def.json +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Bewegungsgeschwindigkeit für die erste Schicht" + +#: fdmprinter.def.json +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Z Überlappung der ersten Schicht" + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Anfängliche Drucktemperatur" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Beschleunigung Innenwand" + +#: fdmprinter.def.json +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extruder Innenwand" + +#: fdmprinter.def.json +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Ruckfunktion Innenwand" + +#: fdmprinter.def.json +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Geschwindigkeit Innenwand" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Wandfluss innen" + +#: fdmprinter.def.json +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Breite der inneren Wandlinien" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "Von innen nach außen" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Anzahl der Schichten ineinandergreifender Balken" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Breite der ineinandergreifenden Balken" + +#: fdmprinter.def.json +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Abstand zu Begrenzungen ineinandergreifender Strukturen" + +#: fdmprinter.def.json +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Tiefe der ineinandergreifenden Struktur" + +#: fdmprinter.def.json +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Ausrichtung der ineinandergreifenden Struktur" + +#: fdmprinter.def.json +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Nur oberste Schicht glätten" + +#: fdmprinter.def.json +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Beschleunigung Glättung" + +#: fdmprinter.def.json +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Glättungsfluss" + +#: fdmprinter.def.json +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Glättungseinsatz" + +#: fdmprinter.def.json +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Ruckfunktion glätten" + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Glättungslinienabstand" + +#: fdmprinter.def.json +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Glättungsmuster" + +#: fdmprinter.def.json +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Glättungsgeschwindigkeit" + +#: fdmprinter.def.json +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Is-Center-Ursprung" + +#: fdmprinter.def.json +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)?" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Unterbrochene Flächen beibehalten" + +#: fdmprinter.def.json +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Schichtdicke" + +#: fdmprinter.def.json +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "Schichtstart X" + +#: fdmprinter.def.json +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Schichtstart Y" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Die Schichtdicke des Raft-Mittelbereichs." + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Die Schichtdicke der oberen Raft-Schichten." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Links" + +#: fdmprinter.def.json +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Druckkopf anheben" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Blitz" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Überstandswinkel der Blitz-Füllung" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Beschnittwinkel der Blitz-Füllung" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Begradigungswinkel der Blitz-Füllung" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Stützwinkel der Blitz-Füllung" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Begrenzt" + +#: fdmprinter.def.json +msgctxt "line_width label" +msgid "Line Width" +msgstr "Linienbreite" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Linien" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Linien" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Linien" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Linien" + +#: fdmprinter.def.json +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Linien" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Linien" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Linien" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Linien" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +#: fdmprinter.def.json +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Gerät" + +#: fdmprinter.def.json +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Gerätetiefe" + +#: fdmprinter.def.json +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Gerätekopf und Lüfter Polygon" + +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Gerätehöhe" + +#: fdmprinter.def.json +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Gerät" + +#: fdmprinter.def.json +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Gerätebreite" + +#: fdmprinter.def.json +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Gerätespezifische Einstellungen" + +#: fdmprinter.def.json +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Überhänge druckbar machen" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Die erste und die zweite Schicht des Modells sollen sich in der Z-Richtung überlappen, um das verlorene Filament in dem Luftspalt zu kompensieren. Alle Modelle über der ersten Modellschicht verschieben sich um diesen Wert nach unten." + +#: fdmprinter.def.json +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Passe die Gitter besser an den 3D-Druck an." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumetrisch)" + +#: fdmprinter.def.json +msgctxt "material description" +msgid "Material" +msgstr "Material" + +#: fdmprinter.def.json +msgctxt "material label" +msgid "Material" +msgstr "Material" + +#: fdmprinter.def.json +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "Material-GUID" + +#: fdmprinter.def.json +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Materialmenge zwischen den Wischvorgängen" + +#: fdmprinter.def.json +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Max. Combing Entfernung ohne Einziehen" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Maximale Beschleunigung X" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Maximale Beschleunigung Y" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Maximale Beschleunigung Z" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Maximale Abweichung" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Maximale Abweichung der Extrusionsfläche" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Maximaldrehzahl des Lüfters" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Maximale Beschleunigung Filament" + +#: fdmprinter.def.json +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Maximaler Winkel des Modells" + +#: fdmprinter.def.json +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Maximaler Lochflächen-Überstand" + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Maximale Parkdauer" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Maximale Auflösung" + +#: fdmprinter.def.json +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Maximale Anzahl von Einzügen" + +#: fdmprinter.def.json +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Maximaler Winkel Außenhaut für Expansion" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Maximaldrehzahl E" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Maximaldrehzahl X" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Maximaldrehzahl Y" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Maximaldrehzahl Z" + +#: fdmprinter.def.json +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Maximaler Durchmesser für Stützpfeiler" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Maximale Bewegungsauflösung" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Überlappung zusammengeführte Netze" + +#: fdmprinter.def.json +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Netzreparaturen" #: fdmprinter.def.json msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "Netzposition X" -#: fdmprinter.def.json -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." - #: fdmprinter.def.json msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "Netzposition Y" -#: fdmprinter.def.json -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." - #: fdmprinter.def.json msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "Netzposition Z" #: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "Matrix Netzdrehung" +#: fdmprinter.def.json +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Mitte" + +#: fdmprinter.def.json +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Mindestbreite der Form" + +#: fdmprinter.def.json +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Mindestzeit Standby-Temperatur" + +#: fdmprinter.def.json +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Mindestlänge Brückenwand" + +#: fdmprinter.def.json +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Minimale Wandlinienstärke (geradzahlig)" + +#: fdmprinter.def.json +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Fenster „Minimaler Extrusionsabstand“" + +#: fdmprinter.def.json +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Mindestgröße des Merkmals" + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Mindest-Vorschub" + +#: fdmprinter.def.json +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Mindestbereich Füllung" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Mindestzeit für Schicht" + +#: fdmprinter.def.json +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Minimale Wandlinienstärke (ungeradzahlig)" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Mindestumfang Polygon" + +#: fdmprinter.def.json +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Mindestbreite Außenhaut für Expansion" + +#: fdmprinter.def.json +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Mindestgeschwindigkeit" + +#: fdmprinter.def.json +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Mindestbereich Stützstruktur" + +#: fdmprinter.def.json +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Mindestbereich Stützstrukturboden" + +#: fdmprinter.def.json +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Mindestbereich Stützstruktur-Schnittstelle" + +#: fdmprinter.def.json +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Mindestbereich Stützstrukturdach" + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "X/Y-Mindestabstand der Stützstruktur" + +#: fdmprinter.def.json +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Minimale Wandlinienstärke (dünn)" + +#: fdmprinter.def.json +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Mindestvolumen vor Coasting" + +#: fdmprinter.def.json +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Mindestlinienstärke der Wand" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Form" + +#: fdmprinter.def.json +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Formwinkel" + +#: fdmprinter.def.json +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Dachhöhe der Form" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Gleichmäßige Reihenfolge hin/her" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Gleichmäßige Reihenfolge oben" + +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Gleichmäßige Reihenfolge oben/unten" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Faktor für Bewegung ohne Ladung" + +#: fdmprinter.def.json +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Keine Außenhaut in Z-Lücken" + +#: fdmprinter.def.json +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Nicht-traditionelle Möglichkeiten, Ihre Modelle zu drucken." + +#: fdmprinter.def.json +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Keine" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Keine" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normal" + +#: fdmprinter.def.json +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normal" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Nicht in Außenhaut" + +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Nicht auf der Außenfläche" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Düsenwinkel" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Düsendurchmesser" + +#: fdmprinter.def.json +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Unzulässige Bereiche für die Düse" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Düsen-ID" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Düsenlänge" + +#: fdmprinter.def.json +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Zusätzliche Einzugsmenge bei Düsenwechsel" + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Düsenwechsel Einzugsgeschwindigkeit (Zurückschieben)" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Düsenwechsel Rückzuggeschwindigkeit" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Düsenwechsel Einzugsabstand" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Düsenwechsel Rückzugsgeschwindigkeit" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Anzahl Extruder" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Anzahl der aktivierten Extruder" + +#: fdmprinter.def.json +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Anzahl der langsamen Schichten" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octet" + +#: fdmprinter.def.json +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Aus" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Versatz mit Extruder" + +#: fdmprinter.def.json +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Nacheinander" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Brim nur an der Außenseite des Modells drucken. Damit reduziert sich die Anzahl der Brims, die Sie später entfernen müssen, während die Druckbetthaftung nicht signifikant eingeschränkt wird." + +#: fdmprinter.def.json +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Winkel für Sickerschutz" + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Abstand für Sickerschutz" + +#: fdmprinter.def.json +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Reihenfolge des Wanddrucks optimieren" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Düsendurchmesser außen" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Beschleunigung Außenwand" + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extruder Außenwand" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Wandfluss außen" + +#: fdmprinter.def.json +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Einfügung Außenwand" + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Ruckfunktion Außenwand" + +#: fdmprinter.def.json +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Breite der äußeren Wandlinien" + +#: fdmprinter.def.json +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Geschwindigkeit Außenwand" + +#: fdmprinter.def.json +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Wipe-Abstand der Außenwand" + +#: fdmprinter.def.json +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "Von außen nach innen" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Winkel für überhängende Wände" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Geschwindigkeit für überhängende Wände" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pausieren nach Aufhebung des Einzugs." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Beschleunigung Einzugsturm" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Brim" +msgstr "Brim Einzugsturm" + +#: fdmprinter.def.json +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Fluss Einzugsturm" + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Ruckfunktion Einzugsturm" + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Linienbreite Einzugsturm" + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Mindestvolumen Einzugsturm" + +#: fdmprinter.def.json +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Größe Einzugsturm" + +#: fdmprinter.def.json +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Geschwindigkeit Einzugsturm" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "X-Position des Einzugsturm" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Y-Position des Einzugsturms" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +msgstr "Einzugstürme benötigen möglicherweise zusätzliche Haftung in Form eines Brims, auch wenn das Modell selbst dies nicht benötigt. Kann derzeit nicht mit dem „Raft“-Haftungstyp verwendet werden." + +#: fdmprinter.def.json +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Beschleunigung Druck" + +#: fdmprinter.def.json +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Ruckfunktion Drucken" + +#: fdmprinter.def.json +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Druckreihenfolge" + +#: fdmprinter.def.json +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Druckgeschwindigkeit" + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Drucken von dünnen Wänden" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Drucktemperatur" + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Drucktemperatur erste Schicht" + +#: fdmprinter.def.json +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "resolution label" +msgid "Quality" +msgstr "Qualität" + +#: fdmprinter.def.json +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Viertelwürfel" + +#: fdmprinter.def.json +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" + +#: fdmprinter.def.json +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Luftspalt für Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Raft-Basis-Extruder" + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Lüfterdrehzahl für Raft-Basis" + +#: fdmprinter.def.json +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Linienabstand der Raft-Basis" + +#: fdmprinter.def.json +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Linienbreite der Raft-Basis" + +#: fdmprinter.def.json +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Druckbeschleunigung Raft Unten" + +#: fdmprinter.def.json +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Ruckfunktion Drucken Raft-Basis" + +#: fdmprinter.def.json +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Druckgeschwindigkeit für Raft-Basis" + +#: fdmprinter.def.json +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Dicke der Raft-Basis" + +#: fdmprinter.def.json +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Wandanzahl des Raft-Bodens" + +#: fdmprinter.def.json +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Zusätzlicher Abstand für Raft" + +#: fdmprinter.def.json +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Lüfterdrehzahl für Raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Extruder für die Raft-Mitte" + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Lüfterdrehzahl Raft Mitte" + +#: fdmprinter.def.json +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Mittlere Ebenen des Rafts" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Linienbreite des Raft-Mittelbereichs" + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Druckbeschleunigung Raft Mitte" + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Ruckfunktion Drucken Raft Mitte" + +#: fdmprinter.def.json +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Druckgeschwindigkeit Raft Mitte" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Linienabstand im Raft-Mittelbereich" + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Dicke der Raft-Mittelbereichs" + +#: fdmprinter.def.json +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Druckbeschleunigung Raft" + +#: fdmprinter.def.json +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Ruckfunktion Raft-Druck" + +#: fdmprinter.def.json +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Raft-Druckgeschwindigkeit" + +#: fdmprinter.def.json +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Raft-Glättung" + +#: fdmprinter.def.json +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Extruder für die Raft-Oberseite" + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Lüfterdrehzahl Raft Oben" + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Dicke der oberen Raft-Schichten" + +#: fdmprinter.def.json +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Obere Raft-Schichten" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Linienbreite der Raft-Oberfläche" + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Druckbeschleunigung Raft Oben" + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Ruckfunktion Drucken Raft Oben" + +#: fdmprinter.def.json +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Druckgeschwindigkeit Raft Oben" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Linienabstand der Raft-Oberfläche" + +#: fdmprinter.def.json +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Zufall" + +#: fdmprinter.def.json +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Füllstart randomisieren" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Rechteckig" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Normaldrehzahl des Lüfters" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Normaldrehzahl des Lüfters bei Höhe" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Normaldrehzahl des Lüfters bei Schicht" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Grenzwert für Normaldrehzahl/Maximaldrehzahl des Lüfters" + +#: fdmprinter.def.json +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Alle Löcher entfernen" + +#: fdmprinter.def.json +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Leere erste Schichten entfernen" + +#: fdmprinter.def.json +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Netzüberschneidung entfernen" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Innenecken des Rafts entfernen" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution description" +msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." +msgstr "Dies ist die Auflösung für die Berechnung von Kollisionen, um ein Anschlagen des Modells zu verhindern. Eine niedrigere Einstellung sorgt für akkuratere Bäume, die weniger häufig fehlschlagen, erhöht jedoch die Slicing-Zeit erheblich." + +#: fdmprinter.def.json +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Vor Außenwand zurückziehen" + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Einziehen bei Schichtänderung" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Einzugsabstand" + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Zusätzliche Zurückschiebemenge nach Einzug" + +#: fdmprinter.def.json +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Mindestbewegung für Einzug" + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Einzugsgeschwindigkeit (Zurückschieben)" + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Einzugsgeschwindigkeit (Einzug)" + +#: fdmprinter.def.json +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Einzugsgeschwindigkeit" + +#: fdmprinter.def.json +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Rechts" + +#: fdmprinter.def.json +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Skalierung der Lüftergeschwindigkeit auf 0–1" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Kompensation der Schrumpfung des Skalierungsfaktors" + +#: fdmprinter.def.json +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "Szene verfügt über Stütznetze" + +#: fdmprinter.def.json +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Präferenz Nahtkante" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Verwendete Einstellungen für das Drucken mit mehreren Extrudern." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Rückzugstellung der gemeinsam genutzten Düse" + +#: fdmprinter.def.json +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Schärfste Kante" + +#: fdmprinter.def.json +msgctxt "shell description" +msgid "Shell" +msgstr "Gehäuse" + +#: fdmprinter.def.json +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Kürzester" + +#: fdmprinter.def.json +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Anzeige der Gerätevarianten" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Unterstützungsebenen für Außenhautkanten" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Stützenstärke für Außenhautkanten" + +#: fdmprinter.def.json +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Expansionsdistanz Außenhaut" + +#: fdmprinter.def.json +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Außenhaut überlappen" + +#: fdmprinter.def.json +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Prozentsatz Außenhaut überlappen" + +#: fdmprinter.def.json +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Breite für das Entfernen der Außenhaut" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Skirt" + +#: fdmprinter.def.json +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Skirt-Abstand" + +#: fdmprinter.def.json +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Anzahl der Skirt-Linien" + +#: fdmprinter.def.json +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Beschleunigung Skirt/Brim" + +#: fdmprinter.def.json +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Skirt/Brim-Extruder" + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Skirt/Brim-Fluss" + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Ruckfunktion Skirt/Brim" + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Skirt-/Brim-Linienbreite" + +#: fdmprinter.def.json +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Mindestlänge für Skirt/Brim" + +#: fdmprinter.def.json +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Geschwindigkeit Skirt/Brim" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Slicing-Toleranz" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Geschwindigkeit der ersten Schicht von Details" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Max. Detaillänge" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Detailgeschwindigkeit" + +#: fdmprinter.def.json +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Max. Lochdurchmesser" + +#: fdmprinter.def.json +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Drucktemperatur für kleine Schichten" + +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Intelligent verbergen" + +#: fdmprinter.def.json +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Glätten der spiralisierten Kontur" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Sonderfunktionen" + +#: fdmprinter.def.json +msgctxt "speed description" +msgid "Speed" +msgstr "Geschwindigkeit" + +#: fdmprinter.def.json +msgctxt "speed label" +msgid "Speed" +msgstr "Geschwindigkeit" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Spiralisieren der äußeren Konturen" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Standby-Temperatur" + +#: fdmprinter.def.json +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "Start G-Code" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Schritte pro Millimeter (E)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Schritte pro Millimeter (X)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Schritte pro Millimeter (Y)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Schritte pro Millimeter (Z)" + +#: fdmprinter.def.json +msgctxt "support description" +msgid "Support" +msgstr "Stützstruktur" + +#: fdmprinter.def.json +msgctxt "support label" +msgid "Support" +msgstr "Stützstruktur" + +#: fdmprinter.def.json +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Beschleunigung Stützstruktur" + +#: fdmprinter.def.json +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Unterer Abstand der Stützstruktur" + +#: fdmprinter.def.json +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Anzahl der unteren Wandlinien der Stützstruktur" + +#: fdmprinter.def.json +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Anzahl der Brim-Stützstrukturlinien" + +#: fdmprinter.def.json +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Breite der Brim-Stützstruktur" + +#: fdmprinter.def.json +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Anzahl der Stützstruktur-Blocklinien" + +#: fdmprinter.def.json +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Blockgröße für Stützstruktur" + +#: fdmprinter.def.json +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Dichte der Stützstruktur" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Abstandspriorität der Stützstruktur" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extruder für Stützstruktur" + +#: fdmprinter.def.json +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Beschleunigung Bodenstruktur" + +#: fdmprinter.def.json +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Dichte der Bodenstruktur" + +#: fdmprinter.def.json +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extruder für Bodenstruktur" + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Stützbodenfluss" + +#: fdmprinter.def.json +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Horizontale Erweiterung Stützstrukturboden" + +#: fdmprinter.def.json +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Ruckfunktion für Bodenstruktur" + +#: fdmprinter.def.json +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Richtungen der Bodenlinien unterstützen" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Linienabstand der Bodenstruktur" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Stützstruktur Boden Linienbreite" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Muster der Bodenstruktur" + +#: fdmprinter.def.json +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Geschwindigkeit Bodenstruktur" + +#: fdmprinter.def.json +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Dicke der Bodenstruktur" + +#: fdmprinter.def.json +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Stützstruktur-Fluss" + +#: fdmprinter.def.json +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Horizontale Erweiterung der Stützstruktur" + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Beschleunigung Stützstrukturfüllung" + +#: fdmprinter.def.json +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extruder für Füllung Stützstruktur" + +#: fdmprinter.def.json +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Ruckfunktion Stützstruktur-Füllung" + +#: fdmprinter.def.json +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Stützstruktur Füllschichtdicke" + +#: fdmprinter.def.json +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Unterstützung Linienrichtung Füllung" + +#: fdmprinter.def.json +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Stützstruktur-Füllungsgeschwindigkeit" + +#: fdmprinter.def.json +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Beschleunigung Stützstrukturschnittstelle" + +#: fdmprinter.def.json +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Dichte Stützstrukturschnittstelle" + +#: fdmprinter.def.json +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extruder für Stützstruktur-Schnittstelle" + +#: fdmprinter.def.json +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Fluss Stützstruktur-Schnittstelle" + +#: fdmprinter.def.json +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Horizontale Erweiterung Stützstruktur-Schnittstelle" + +#: fdmprinter.def.json +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Ruckfunktion Stützstruktur-Schnittstelle" + +#: fdmprinter.def.json +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Richtungen der Verbindungslinien unterstützen" + +#: fdmprinter.def.json +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Stützstruktur Schnittstelle Linienbreite" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Muster Stützstrukturschnittstelle" + +#: fdmprinter.def.json +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Auflösung Stützstrukturschnittstelle" + +#: fdmprinter.def.json +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Stützstruktur-Schnittstellengeschwindigkeit" + +#: fdmprinter.def.json +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Dicke der Stützstrukturschnittstelle" + +#: fdmprinter.def.json +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Anzahl der Wandlinien der Stützstruktur-Schnittstelle" + +#: fdmprinter.def.json +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Ruckfunktion Stützstruktur" + +#: fdmprinter.def.json +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Abstand für Zusammenführung der Stützstrukturen" + +#: fdmprinter.def.json +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Linienabstand der Stützstruktur" + +#: fdmprinter.def.json +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Breite der Stützstrukturlinien" + +#: fdmprinter.def.json +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Stütznetz" + +#: fdmprinter.def.json +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Winkel für Überhänge Stützstruktur" + +#: fdmprinter.def.json +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Muster der Stützstruktur" + +#: fdmprinter.def.json +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Platzierung Stützstruktur" + +#: fdmprinter.def.json +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Beschleunigung Dachstruktur" + +#: fdmprinter.def.json +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Dichte der Dachstruktur" + +#: fdmprinter.def.json +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extruder für Dachstruktur" + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Stützdachfluss" + +#: fdmprinter.def.json +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Horizontale Erweiterung Stützstrukturdach" + +#: fdmprinter.def.json +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Ruckfunktion für Dachstruktur" + +#: fdmprinter.def.json +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Richtungen der Dachlinien unterstützen" + +#: fdmprinter.def.json +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Linienabstand der Dachstruktur" + +#: fdmprinter.def.json +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Breite der Stützdachlinie" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Muster des Stützdachs" + +#: fdmprinter.def.json +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Stützdachgeschwindigkeit" + +#: fdmprinter.def.json +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Dicke des Stützdachs" + +#: fdmprinter.def.json +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Anzahl der Wandlinien des Stützdachs" + +#: fdmprinter.def.json +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Stützstrukturgeschwindigkeit" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Stufenhöhe der Stützstruktur" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Max. Stufenhöhe der Stützstruktur" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Stützstufe minimaler Neigungswinkel" + +#: fdmprinter.def.json +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Stützstruktur" + +#: fdmprinter.def.json +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Oberer Abstand der Stützstruktur" + +#: fdmprinter.def.json +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Anzahl der Wandlinien der Stützstruktur" + +#: fdmprinter.def.json +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "X/Y-Abstand der Stützstruktur" + +#: fdmprinter.def.json +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Z-Abstand der Stützstruktur" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Unterstützte Lüfterdrehzahl für Außenhaut" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Oberfläche" + +#: fdmprinter.def.json +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Oberflächenenergie" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Oberflächenmodus" + +#: fdmprinter.def.json +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Oberflächenhaftungstendenz." + +#: fdmprinter.def.json +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Oberflächenenergie." + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Die Beschleunigung für die erste Schicht." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "Die Beschleunigung, mit der die Füllung gedruckt wird." + +#: fdmprinter.def.json +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "Die Beschleunigung, mit der das Glätten erfolgt." + +#: fdmprinter.def.json +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Die Beschleunigung, mit der das Drucken erfolgt." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "Die Beschleunigung, mit der der Einzugsturm gedruckt wird." + +#: fdmprinter.def.json +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "Die Beschleunigung, mit der das Raft gedruckt wird." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Die Beschleunigung, mit der die Stützstruktur gedruckt wird." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Die Beschleunigung, mit der die Wände gedruckt werden." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Die Beschleunigung, mit der Bewegungen durchgeführt werden." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_tree_angle description" +msgid "The angle of the branches. 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 Winkel der Äste. Verwenden Sie einen geringeren Winkel, um sie vertikaler und stabiler zu gestalten. Verwenden Sie einen stärkeren Winkel, um mehr Reichweite zu erhalten." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "Die voreingestellte Beschleunigung der Druckkopfbewegung." + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "Die Tiefe (Y-Richtung) des druckbaren Bereichs." + +#: fdmprinter.def.json +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "Der Durchmesser eines speziellen Pfeilers." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "Der Abstand zwischen den Glättungslinien." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Die Drehzahl des Lüfters für das Raft." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Die Höhe (Z-Richtung) des druckbaren Bereichs." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs." + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" +"Der horizontale Abstand zwischen dem Skirt und der ersten Schicht des Drucks.\n" +"Es handelt sich dabei um den Mindestabstand. Ab diesem Abstand werden mehrere Skirt-Linien in äußerer Richtung angebracht." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "Die Ruckfunktion, mit der das Raft gedruckt wird." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Das Material der im Drucker eingebauten Druckplatte." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung des Druckkopfes." + +#: fdmprinter.def.json +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung während des Glättens." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "Die Maximalgeschwindigkeit des Filaments." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Die Mindestgeschwindigkeit für die Bewegung des Druckkopfes." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Die Bezeichnung Ihres 3D-Druckermodells." + +#: fdmprinter.def.json +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“." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Der Außendurchmesser der Düsenspitze." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "Das Muster der obersten Schichten." + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Das Muster der oberen/unteren Schichten." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Die Geschwindigkeit, mit der die Füllung gedruckt wird." + +#: fdmprinter.def.json +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Die Geschwindigkeit, mit der gedruckt wird." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "Die Drehzahl, mit der die Druckerlüfter laufen." + +#: fdmprinter.def.json +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "Die Geschwindigkeit, mit der das Raft gedruckt wird." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Die Geschwindigkeit, mit der die Wände gedruckt werden." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Die Geschwindigkeit, mit der Bewegungen durchgeführt werden." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +msgstr "Die Temperatur, die für das Drucken der ersten Schicht verwendet wird. Wählen Sie hier 0, um eine spezielle Behandlung der ersten Schicht zu deaktivieren." + +#: fdmprinter.def.json +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Die Temperatur, die für das Drucken verwendet wird." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Der Typ des zu generierenden G-Codes." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "Die Breite (X-Richtung) des druckbaren Bereichs." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "Die Breite der Balken in der ineinandergreifenden Struktur." + +#: fdmprinter.def.json +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "Die Breite des Einzugsturms." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Obere Schichten" + +#: fdmprinter.def.json +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Expansionsdistanz Außenhaut oben" + +#: fdmprinter.def.json +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Breite für das Entfernen der Außenhaut oben" + +#: fdmprinter.def.json +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Beschleunigung Oberfläche Außenhaut" + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Oberfläche Außenhaut Extruder" + +#: fdmprinter.def.json +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Fluss Oberfläche Außenhaut" + +#: fdmprinter.def.json +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Justierung der Oberfläche Außenhaut" + +#: fdmprinter.def.json +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Oberfläche Außenhaut Schichten" + +#: fdmprinter.def.json +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Linienrichtungen der Oberfläche Außenhaut" + +#: fdmprinter.def.json +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Oberfläche Außenhaut Linienbreite" + +#: fdmprinter.def.json +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Oberfläche Außenhaut Muster" + +#: fdmprinter.def.json +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Oberfläche Außenhaut Geschwindigkeit" + +#: fdmprinter.def.json +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Obere Dicke" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Oben/Unten" + +#: fdmprinter.def.json +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Oben/Unten" + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Beschleunigung Oben/Unten" + +#: fdmprinter.def.json +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extruder Oben/Unten" + +#: fdmprinter.def.json +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Fluss oben/unten" + +#: fdmprinter.def.json +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Ruckfunktion obere/untere Schicht" + +#: fdmprinter.def.json +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Richtungen der oberen/unteren Linie" + +#: fdmprinter.def.json +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Breite der oberen/unteren Linie" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Unteres/oberes Muster" + +#: fdmprinter.def.json +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Geschwindigkeit obere/untere Schicht" + +#: fdmprinter.def.json +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Obere/untere Dicke" + +#: fdmprinter.def.json +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Druckbett berühren" + +#: fdmprinter.def.json +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Pfeilerdurchmesser" + +#: fdmprinter.def.json +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Winkel des Pfeilerdachs" + #: fdmprinter.def.json 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 "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "Eine 2D-Shilhouette des Druckkopfes (mit Lüfterkappen)." - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Außenwände vor Innenwänden" - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Druckt Wände bei Aktivierung von außen nach innen. Dies kann die Maßgenauigkeit in X und Y erhöhen, wenn hochviskose Kunststoffe wie ABS verwendet werden; allerdings kann es die Druckqualität der Außenfläche vermindern, insbesondere bei Überhängen." - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Wandüberlappungen ausgleichen" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Der Fluss für Teile einer Wand wird ausgeglichen, die dort gedruckt werden, wo sich bereits eine Wand befindet." - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Außenwandüberlappungen ausgleichen" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Der Fluss für Teile einer Außenwand wird ausgeglichen, die dort gedruckt werden, wo sich bereits eine Wand befindet." - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Innenwandüberlappungen ausgleichen" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Der Fluss für Teile einer Innenwand wird ausgeglichen, die dort gedruckt werden, wo sich bereits eine Wand befindet." - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Mindestwandfluss" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "Minimal zulässiger Fluss als Prozentwert für eine Wandlinie. Die Wand-Überlappungskompensation reduziert den Fluss einer Wand, wenn sie nah an einer vorhandenen Wand liegt. Wände, deren Fluss unter diesem Wert liegt, werden durch eine Fahrbewegung ersetzt. Bei Verwendung dieser Einstellung müssen Sie die Wand-Überlappungskompensation aktivieren und die Außenwand vor den Innenwänden drucken." - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Einziehen bevorzugt" - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Bei Aktivierung wird der Einzug anstelle des Combings für zurückzulegende Wege verwendet, die Wände ersetzen, deren Fluss unter der mindestens erforderlichen Flussschwelle liegt." - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Lücken zwischen Wänden füllen" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Füllt die Lücken zwischen den Wänden, wo keine Wand passt." - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Nirgends" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Überall" - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "Kleine Lücken ausfiltern" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "Kleine Lücken ausfiltern, um Tropfen an der Außenseite des Modells zu reduzieren." - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Ausgleich des Filamentflusses" - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Drucken Sie dünnere Linien schneller als normale Linien, so dass die Menge des extrudierten Materials pro Sekunde gleich bleibt. Dünne Teile in Ihrem Modell erfordern möglicherweise einen Liniendruck mit geringerer Linienbreite als in den Einstellungen vorgesehen. Diese Einstellung steuert die Geschwindigkeitsänderungen für diese Linien." - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Maximale Geschwindigkeit für Flussausgleich" - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "Maximale Druckgeschwindigkeit bei der Justierung der Druckgeschwindigkeit zum Ausgleich des Flusses." - -#~ 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 \\n." - -#~ 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 \\n." - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Maximaler Vorschub" - -#~ 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 (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ msgstr "Das Muster des Füllmaterials des Drucks. Die Linien- und Zickzackfüllmethode wechseln nach jeder Schicht die Richtung, um Materialkosten zu reduzieren. Die Gitter-, Dreieck- Tri-Hexagon-, Würfel-, Octahedral-, Viertelwürfel-, Kreuz- und konzentrischen Muster werden in jeder Schicht vollständig gedruckt. Gyroid-, Würfel-, Viertelwürfel- und achtflächige Füllungen wechseln mit jeder Schicht, um eine gleichmäßigere Verteilung der Stärke in allen Richtungen zu erzielen. Die Einstellung Blitz versucht, die Füllung zu minimieren, indem nur die (internen) Dächer des Objekts gestützt werden. Der ‚gültige‘ Prozentsatz der Füllung bezieht sich daher nur auf die jeweilige Ebene unter dem zu stützenden Bereich des Modells." - -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "Der Unterschied, den eine Blitz-Füllschicht zu der unmittelbar darüber liegenden Schicht haben kann, wenn es um den Beschnitt der äußeren Enden von Bäumen geht. Gemessen in dem Winkel, den die Schichtstärke vorgibt." - -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ msgstr "Die veränderte Position, die eine Schicht der Blitz-Füllung zu der unmittelbar darüber liegenden Schicht haben kann, wenn es um das Ausrunden der äußeren Enden von Bäumen geht. Gemessen als Winkel der Zweige." - -#~ 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." -#~ msgstr "Das Muster des Füllmaterials des Drucks. Die Linien- und Zickzackfüllmethode wechseln nach jeder Schicht die Richtung, um Materialkosten zu reduzieren. Die Gitter-, Dreieck- Tri-Hexagon-, Würfel-, Octahedral-, Viertelwürfel-, Kreuz- und konzentrischen Muster werden in jeder Schicht vollständig gedruckt. Gyroid-, Würfel-, Viertelwürfel- und Octahedral-Füllungen wechseln mit jeder Schicht, um eine gleichmäßigere Verteilung der Stärke in allen Richtungen zu erzielen." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside 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_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Extrusion führen." - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "Bei Nicht-Null verwenden die Combing-Fahrbewegungen, die länger als die Distanz sind, die Einziehfunktion." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Verwenden Sie den Extruder-Versatz für das Koordinatensystem." - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Gehäuse" - -#~ 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, while an angle of 90° is vertical." -#~ msgstr "Obere und/oder untere Flächen Ihres Objekts mit einem Winkel, der diese Einstellung übersteigt, werden ohne Expansion der oberen/unteren Außenhaut ausgeführt. Damit wird vermieden, dass enge Außenhautbereiche expandiert werden, die entstehen, wenn die Modellfläche eine nahezu vertikale Neigung aufweist. Ein Winkel von 0 Grad ist horizontal, während ein Winkel von 90 Grad vertikal ist." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "Die Geschwindigkeit für die erste Schicht. Ein niedrigerer Wert wird empfohlen, um die Haftung an der Druckplatte zu verbessern." - -#~ 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 lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Legt fest, welche Priorität 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 niedrigsten Rang. Wird eine Mesh-Füllung höher gerankt, führt dies zu einer Modifizierung der Füllungen oder Mesh-Füllungen, deren Priorität niedriger oder normal ist." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "Die Temperatur, die für die erhitzte Druckplatte verwendet wird. Wenn dieser Wert 0 beträgt, wird die Betttemperatur nicht angepasst." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "Die Temperatur, die für die erhitzte Druckplatte an der ersten Schicht verwendet wird." - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Schrumpfungsverhältnis" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "Schrumpfungsverhältnis in Prozent." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Legt fest, welche Priorität dieses Netz (Mesh) bei überlappenden Volumen hat. Bereiche mit einem niedrigeren Netzrang haben Priorität vor Bereichen, in denen es mehrere Netze gibt. Wird eine Mesh-Füllung höher gerankt, führt dies zu einer Modifizierung der Füllungen oder Mesh-Füllungen, deren Priorität niedriger oder normal ist." - -#~ 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 "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Reihenfolge für Mesh-Füllung" - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Hier wird festgelegt, welche Mesh-Füllung in der Füllung einer anderen Mesh-Füllung ist. Eine Mesh-Füllung mit einer höheren Reihenfolge ändert die Füllung der Mesh-Füllungen mit niedrigerer Reihenfolge und normalen Meshes." - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Baumstützstruktur" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Erstellen Sie eine baumähnliche Stützstruktur mit Ästen, die Ihren Druck stützen. Das reduziert möglicherweise den Materialverbrauch und die Druckdauer, erhöht jedoch die Slicing-Dauer erheblich." - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "Slicen von Schichten mit diagonalen Flächen. Die Bereiche einer Schicht können anhand der Position generiert werden, an der die Mitte einer Schicht die Oberfläche kreuzt (Mitte). Optional kann jede Schicht die Bereiche enthalten, die in das Volumen entlang der Höhe der Schicht (Exklusiv) fallen oder eine Schicht enthält die Bereiche, die irgendwo innerhalb der Schicht positioniert sind (Inklusiv). Exklusiv bewahrt die meisten Details, Inklusiv ermöglicht die beste Passform und Mitte erfordert die kürzeste Bearbeitungszeit." - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Spaghetti-Füllung" - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Drucken Sie die Füllung hier und da, sodass sich das Filament innerhalb des Objekts „chaotisch“ ringelt. Das reduziert die Druckdauer, allerdings ist das Verhalten eher unabsehbar." - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Spaghetti-Füllung Schrittfunktion" - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Definiert, ob die Spaghetti-Füllung in Schritten gedruckt oder alle Filamente für die Füllung am Ende des Druckes gedruckt werden." - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Maximaler Spaghetti-Füllungswinkel" - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "Der maximale Winkel bezüglich der Z-Achse im Druckinnenbereich für Bereiche, die anschließend mit Spaghetti-Füllung zu füllen sind. Die Reduzierung dieses Wertes für dazu, dass stärker gewinkelte Teile in Ihrem Modell in jeder Schicht gefüllt werden." - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Maximale Höhe der Spaghetti-Füllung" - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "Die maximale Höhe des Innenraums, die kombiniert und von oben gefüllt werden kann." - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Spaghetti-Einfügung" - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "Der Versatz von den Wänden, von denen aus die Spaghetti-Füllung gedruckt wird." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Spaghetti-Durchfluss" - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Justiert die Dichte der Spathetti-Füllung. Beachten Sie, dass die Fülldichte nur die Linienabstände des Füllmusters steuert und nicht die Menge der Extrusion für die Spaghetti-Füllung." - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Spaghetti-Füllung extra Volumen" - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Ein Korrekturbegriff für die Anpassung des Gesamtvolumens, das jedes Mal bei der Spaghetti-Füllung extrudiert wird." - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "GUID des Materials. Dies wird automatisch eingestellt. " - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Parkdistanz Filament" - -#~ msgctxt "machine_filament_park_distance description" -#~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used." -#~ msgstr "Die Distanz von der Düsenspitze, wo das Filament geparkt wird, wenn ein Extruder nicht mehr verwendet wird." - -#~ msgctxt "material_flush_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Interner Wert für Material Station" - -#~ msgctxt "material_flush_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Interner Wert für Material Station" - -#~ 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 "Material Station internal value" -#~ msgstr "Interner Wert für Material Station" - -#~ 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 "Material Station internal value" -#~ msgstr "Interner Wert für Material Station" - -#~ msgctxt "material_maximum_park_duration description" -#~ msgid "Material Station internal value" -#~ msgstr "Interner Wert für Material Station" - -#~ msgctxt "material_no_load_move_factor description" -#~ msgid "Material Station internal value" -#~ msgstr "Interner Wert für Material Station" - -#~ 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 "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 "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "category_fixes" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "category_blackmagic" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "experimentell!" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "Gerätekopf Polygon" - -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "Eine 2D-Shilhouette des Druckkopfes (ohne Lüfterkappen)." - -#~ 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 only possible if 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 alle Modelle einer Schicht zur gleichen Zeit gedruckt werden sollen oder ob zuerst ein Modell fertig gedruckt wird, bevor der Druck von einem weiteren begonnen wird. Der „Nacheinandermodus“ ist nur möglich, wenn alle Modelle voneinander getrennt sind, sodass sich der gesamte Druckkopf zwischen allen Modellen bewegen kann und alle Modelle niedriger als der Abstand zwischen der Düse und den X/Y-Achsen ist." - -#~ msgctxt "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "Wanddicke der Baumstützstruktur" - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "Das ist die Dicke der Astwände der Baumstützstruktur. Dickere Wände benötigen eine längere Druckdauer, fallen jedoch nicht so leicht um." - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "Anzahl der Wandlinien der Baumstützstruktur" - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "Das ist die Anzahl der Astwände der Baumstützstruktur. Dickere Wände benötigen eine längere Druckdauer, fallen jedoch nicht so leicht um." - -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. 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. 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 Wischen aktiv wird." - -#~ msgctxt "max_extrusion_before_wipe description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "Die maximale Materialmenge, die extrudiert werden kann, bevor die Düse ein weiteres Mal abgewischt wird." - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "Einzugsgeschwindigkeit (Einzug)" - -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "Z-Sprung beim Einziehen - Abwischen" - -#~ msgctxt "wipe_hop_enable 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 "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Mindestflächenbreite für Stützstruktur-Schnittstellen-Polygone. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden nicht generiert." - -#~ 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 not be generated." -#~ msgstr "Mindestflächenbreite für die Dächer der Stützstruktur. 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 not be generated." -#~ msgstr "Mindestflächenbreite für die Böden der Stützstruktur. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden nicht generiert." - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "Wechselnde Rotation der Außenhaut" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "Die Richtung, in welcher die oberen/unteren Schichten gedruckt werden, wird abgewechselt. Normalerweise werden diese nur diagonal gedruckt. Diese Einstellung fügt die Nur-X- und Nur-Y-Richtung zu." - -#~ 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 compensate." -#~ msgstr "Die maximale Distanz in mm für den Ausgleich." - -#~ msgctxt "flow_rate_extrusion_offset_factor label" -#~ msgid "Flow rate compensation factor" -#~ msgstr "Ausgleichsfaktor Durchflussrate" - -#~ msgctxt "flow_rate_extrusion_offset_factor description" -#~ msgid "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "Der Multiplikationsfaktor für die Übersetzung Durchflussrate -> Distanz." - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "Schwellenwert Anpassschichten" - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ msgstr "Das ist der Schwellenwert, der definiert, ob eine kleinere Schicht verwendet wird oder nicht. Dieser Wert wird mit dem der stärksten Neigung in einer Schicht verglichen." - -#~ 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." -#~ 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." - -#~ 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 adhestion and accuracy." -#~ msgstr "Bei kleinen Details wird die Geschwindigkeit auf diesen Prozentsatz der normalen Druckgeschwindigkeit gesetzt. Durch eine niedrigere Druckgeschwindigkeit kann die Haftung und die Genauigkeit verbessert werden." - -#~ msgctxt "small_feature_speed_factor_0 label" -#~ msgid "First Layer Speed" -#~ msgstr "Geschwindigkeit für erste Schicht" - -#~ 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 adhestion and accuracy." -#~ msgstr "Bei kleinen Details wird die Geschwindigkeit bei der ersten Schicht auf diesen Prozentsatz der normalen Druckgeschwindigkeit gesetzt. Durch eine niedrigere Druckgeschwindigkeit kann die Haftung und die Genauigkeit verbessert werden." - -#~ msgctxt "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "Gehen Sie ein weiteres Mal über die Oberfläche, jedoch ohne Extrusionsmaterial. Damit wird der Kunststoff auf der Oberfläche weiter geschmolzen, was zu einer glatteren Oberfläche führt." - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "Startet Schichten mit demselben Teil" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "Beginnen Sie in jeder Schicht mit dem Drucken des Objekts in der Nähe desselben Punkts, sodass keine neue Schicht begonnen wird, wenn das Teil gedruckt wird, mit dem die letzte Schicht geendet hat. Damit lassen sich Überhänge und kleine Teile besser herstellen, allerdings verlängert sich die Druckzeit." - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ msgstr "Ausrichtung des Füllmusters für Unterstützung. Das Füllmuster für Unterstützung wird in der horizontalen Planfläche gedreht." - -#~ 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." -#~ msgstr "Die maximal zulässige Abweichung bei Reduzierung der Auflösung für die Einstellung der maximalen Auflösung. Wenn Sie diesen Wert erhöhen, wird der Druck ungenauer, der G-Code wird jedoch kleiner." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "G-Code-Variante" - -#~ 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." -#~ 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." - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "Schmale Z-Lücken ignorieren" - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "Wenn das Modell schmale vertikale Lücken hat, kann etwa 5 % zusätzliche Rechenzeit aufgewendet werden, um eine obere und untere Außenhaut in diesen engen Räumen zu generieren. In diesem Fall deaktivieren Sie die Einstellung." - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "Die für die Druckabmessung verwendete Temperatur. Wenn dieser Wert 0 beträgt, wird die Temperatur der Druckabmessung nicht angepasst." - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." -#~ msgstr "Lassen Sie den Einzug beim Vorgehen von Stützstruktur zu Stützstruktur in einer geraden Linie aus. Die Aktivierung dieser Einstellung spart Druckzeit, kann jedoch zu übermäßigem Fadenziehen innerhalb der Stützstruktur führen." - -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "Maximale Z-Geschwindigkeit" - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "Die maximale Geschwindigkeit, mit der die Druckplatte bewegt wird. Eine Einstellung auf Null veranlasst die Verwendung der Firmware-Grundeinstellungen für die maximale Z-Geschwindigkeit." - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate 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 sich einzelne Strukturen näher aneinander befinden, als dieser Wert, werden diese Strukturen in eine einzige Struktur zusammengefügt." - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "Mindestdurchmesser" - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum 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 "prime_tower_circular label" -#~ msgid "Circular Prime Tower" -#~ msgstr "Einzugsturm kreisförmig" - -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "Macht den Einzugsturm zu einer Kreisform." - -#~ msgctxt "prime_tower_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 "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 auf dem Druck kaum sichtbar sein, ist jedoch in der Schichtenansicht erkennbar). Beachten Sie, dass das Glätten dazu neigt, feine Oberflächendetails zu verwischen." - -#~ msgctxt "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "Experimentelle Funktion: Macht die Bereiche der Stützstruktur am Boden kleiner als beim Überhang." - -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "Anzahl der aktivierten Extruder" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "Düsendurchmesser außen" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "Düsenlänge" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "Düsenwinkel" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "Heizzonenlänge" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "Aufheizgeschwindigkeit" - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "Abkühlgeschwindigkeit" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "G-Code-Variante" - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "Unzulässige Bereiche" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "Gerätekopf Polygon" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "Gerätekopf und Lüfter Polygon" - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "Brückenhöhe" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "Versatz mit Extruder" - -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "Anpassschichten verwenden" - -#~ msgctxt "adaptive_layer_height_variation label" -#~ msgid "Adaptive layers maximum variation" -#~ msgstr "Maximale Abweichung für Anpassschichten" - -#~ msgctxt "adaptive_layer_height_variation_step label" -#~ msgid "Adaptive layers variation step size" -#~ msgstr "Abweichung Schrittgröße für Anpassschichten" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "Schwellenwert Anpassschichten" - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "Das Ausmaß des Überlappens zwischen der Außenhaut und den Wänden als Prozentwert der Außenhaut-Linienbreite. Ein leichtes Überlappen ermöglicht es den Wänden, eine solide Verbindung mit der Außenhaut herzustellen. Dies ist ein Prozentwert der durchschnittlichen Linienbreiten der Außenhautlinien und der innersten Wand." - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Das Ausmaß des Überlappens zwischen der Außenhaut und den Wänden. Ein leichtes Überlappen ermöglicht es den Wänden, eine solide Verbindung mit der Außenhaut herzustellen." - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 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: 0 einstellen, um keinen Einzug zu erhalten. Dies sollte generell mit der Länge der Heizzone übereinstimmen." - -#~ 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 and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." -#~ 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, indem nur die Füllung berücksichtigt wird. Die Option „Innerhalb der Füllung“ verhält sich genauso wie die Option „Nicht in Außenhaut“ in früheren Cura Versionen." - -#~ 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 happend 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 "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. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Das Muster des Füllmaterials des Drucks. Die Linien- und Zickzackfüllmethode wechseln nach jeder Schicht die Richtung, um Materialkosten zu reduzieren. Die Gitter-, Dreieck- Tri-Hexagon-, Würfel-, Octahedral-, Viertelwürfel-, Kreuz- und konzentrischen Muster werden in jeder Schicht vollständig gedruckt. Würfel-, Viertelwürfel- und Octahedral-Füllungen wechseln mit jeder Schicht, um eine gleichmäßigere Verteilung der Stärke in allen Richtungen zu erzielen." - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Konzentrisch 3D" - -#~ 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 by combing within the infill only." -#~ 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, indem nur die Füllung berücksichtigt wird." - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Konzentrisch 3D" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Konzentrisch 3D" - -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Konzentrisch 3D" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Konzentrisch 3D" - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "Raft-Linienabstand" - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "Dicke Einzugsturm" - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "Die Dicke des Hohleinzugsturms. Eine Dicke, die mehr als die Hälfte des Mindestvolumens für den Einzugsturm beträgt, führt zu einem dichten Einzugsturm." - -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "Düse nach dem Schalten abwischen" - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "Wischt nach dem Schalten des Extruders ausgetretenes Material am ersten Druckelement an der Düse ab. Hierdurch wird eine sichere, langsame Wischbewegung an einer Position ausgeführt, an der das ausgetretene Material am wenigsten Schaden an der Oberflächenqualität Ihres Drucks verursacht." - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "Einzugsturm Spülvolumen" - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "Menge des zu spülenden Filaments beim Wischen des Spülturms. Spülen ist hilfreich, um dem Filament-Verlust durch Aussickern während der Inaktivität der Düse zu kompensieren." - -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "Max. Überhang Brückenwand" - -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ msgstr "Die maximal zulässige Breite des Luftbereichs unter einer Wandlinie vor dem Druck der Wand mithilfe der Brückeneinstellungen, ausgedrückt als Prozentwert der Wandliniendicke. Wenn der Luftspalt breiter als dieser Wert ist, wird die Wandlinie mithilfe der Brückeneinstellungen gedruckt. Ansonsten wird die Wandlinie mit den normalen Einstellungen gedruckt. Je niedriger der Wert, desto wahrscheinlicher ist es, dass Überhang-Wandlinien mithilfe der Brückeneinstellungen gedruckt werden." - -#~ 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." -#~ 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." - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "Keine Außenhaut" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "3D-Kreuztaschen abwechseln" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "Wenden Sie Taschen nur in der Hälfte der Überkreuzungen im 3D-Kreuzmuster an und wechseln Sie die Position der Taschen zwischen den Höhen ab, in denen sich das Muster selbst berührt." - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "Objekte aushöhlen" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "Entfernt die Füllung vollständig und berechtigt den Innenbereich des Objekts für eine Stützstruktur." - -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "Das ist die maximal zulässige Höhendifferenz von der Basisschichthöhe in mm." - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ msgstr "Objekt zentrieren" - -#~ msgctxt "mesh_position_x label" -#~ msgid "Mesh position x" -#~ msgstr "Netzposition X" - -#~ msgctxt "mesh_position_y label" -#~ msgid "Mesh position y" -#~ msgstr "Netzposition Y" - -#~ msgctxt "mesh_position_z label" -#~ msgid "Mesh position z" -#~ msgstr "-Netzposition Z" - -#~ msgctxt "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "GCode starten" - -#~ msgctxt "machine_start_gcode description" +#: fdmprinter.def.json +msgctxt "travel label" +msgid "Travel" +msgstr "Bewegungen" + +#: fdmprinter.def.json +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Beschleunigung Bewegung" + +#: fdmprinter.def.json +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Umgehungsabstand Bewegung" + +#: fdmprinter.def.json +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Ruckfunktion Bewegung" + +#: fdmprinter.def.json +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Bewegungsgeschwindigkeit" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Tree" + +#: fdmprinter.def.json +msgctxt "support_tree_angle label" +msgid "Tree Support Branch Angle" +msgstr "Astwinkel der Baumstützstruktur" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter label" +msgid "Tree Support Branch Diameter" +msgstr "Astdurchmesser der Baumstützstruktur" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter_angle label" +msgid "Tree Support Branch Diameter Angle" +msgstr "Winkel Astdurchmesser der Baumstützstruktur" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance label" +msgid "Tree Support Branch Distance" +msgstr "Astabstand der Baumstützstruktur" + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution label" +msgid "Tree Support Collision Resolution" +msgstr "Kollisionsauflösung der Baumstützstruktur" + +#: fdmprinter.def.json +msgctxt "support_tree_max_diameter label" +msgid "Tree Support Trunk Diameter" +msgstr "Stammdurchmesser der Baumstützstruktur" + +#: fdmprinter.def.json +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Tri-Hexagon" + +#: fdmprinter.def.json +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Dreiecke" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Dreiecke" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Dreiecke" + +#: fdmprinter.def.json +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Dreiecke" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Dreiecke" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Überlappende Volumen vereinen" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Anpassschichten verwenden" + +#: fdmprinter.def.json +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Verwendung von Pfeilern" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Benutzerdefiniert" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Schrumpfungskompensation für vertikalen Skalierungsfaktor" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Warten auf Aufheizen der Druckplatte" + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Warten auf Aufheizen der Düse" + +#: fdmprinter.def.json +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Beschleunigung Wand" + +#: fdmprinter.def.json +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Anzahl verteilter Wände" + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Extruder für Wand" + +#: fdmprinter.def.json +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Wandfluss" + +#: fdmprinter.def.json +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Ruckfunktion Wand" + +#: fdmprinter.def.json +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Anzahl der Wandlinien" + +#: fdmprinter.def.json +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Breite der Wandlinien" + +#: fdmprinter.def.json +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Wandreihenfolge" + +#: fdmprinter.def.json +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Wandgeschwindigkeit" + +#: fdmprinter.def.json +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Wanddicke" + +#: fdmprinter.def.json +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Wandübergangslänge" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Wandübergangsfilter Abstand" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Wandübergangsfilter Rand" + +#: fdmprinter.def.json +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Schwellenwinkel für Wandübergang" + +#: fdmprinter.def.json +msgctxt "shell label" +msgid "Walls" +msgstr "Wände" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Bei der Überprüfung, wo sich das Modell über und unter der Stützstruktur befindet, verwenden Sie Schritte der entsprechenden Höhe. Niedrigere Werte schneiden langsamer, während höhere Werte dazu führen können, dass die normale Stützstruktur an einigen Stellen gedruckt wird, wo sie als Stützstrukturschnittstelle gedruckt werden sollte." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Option für vorhandene beheizte Druckplatte." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.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 "Definiert, ob Firmware-Einzugsbefehle (G10/G11) anstelle der E-Eigenschaft in G1-Befehlen verwendet wird, um das Material einzuziehen." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Die Breite einer einzelnen Fülllinie." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Die Linienbreite eines einzelnen Einzugsturms." + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Die Breite einer einzelnen Skirt- oder Brim-Linie." + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Die Breite einer Linienbreite eines einzelnen Bodens." + +#: fdmprinter.def.json +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Die Breite einer einzelnen Stützdachlinie." + +#: fdmprinter.def.json +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Die Breite einer einzelnen Stützstrukturlinie." + +#: fdmprinter.def.json +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Die Breite einer einzelnen oberen/unteren Linie." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Die Breite einer einzelnen Wandlinie." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "X-Position für Bürste - Abwischen" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Sprunghöhe - Abwischen" + +#: fdmprinter.def.json +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Wipe-Düse am Einzugsturm inaktiv" + +#: fdmprinter.def.json +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Abstand Wischbewegung" + +#: fdmprinter.def.json +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Düse zwischen den Schichten abwischen" + +#: fdmprinter.def.json +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Abwischen pausieren" + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Wiederholungszähler - Abwischen" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Einzugsabstand für Abwischen" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Abwischen bei Einzug aktivieren" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Zusätzliche Zurückschiebemenge nach Einzug für Abwischen" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Vorbereitungszeit für Abwischen beim Einzug" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Einzugsgeschwindigkeit (Einzug) für Abwischen" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Einzugsgeschwindigkeit für Abwischen" + +#: fdmprinter.def.json +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Z-Sprung beim Abwischen" + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Z-Sprung Höhe - Abwischen" + +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Innerhalb der Füllung" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "X-Endanschlag in positiver Richtung" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y hebt Z auf" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Y-Endanschlag in positiver Richtung" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Z-Endanschlag in positiver Richtung" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Z-Sprung nach Extruder-Wechsel" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Z-Sprung Höhe nach Extruder-Wechsel" + +#: fdmprinter.def.json +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Z-Sprung Höhe" + +#: fdmprinter.def.json +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Z-Sprung nur über gedruckten Teilen" + +#: fdmprinter.def.json +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Sprunghöhe Z" + +#: fdmprinter.def.json +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Z-Sprung beim Einziehen" + +#: fdmprinter.def.json +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Justierung der Z-Naht" + +#: fdmprinter.def.json +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Position der Z-Naht" + +#: fdmprinter.def.json +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Realitvwert der Z-Naht" + +#: fdmprinter.def.json +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z-Naht X" + +#: fdmprinter.def.json +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z-Naht Y" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z hebt X/Y auf" + +#: fdmprinter.def.json +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" + +#: fdmprinter.def.json +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" + +#: fdmprinter.def.json +msgctxt "travel description" +msgid "travel" +msgstr "Bewegungen" + +#~ msgctxt "wireframe_strategy option compensate" +#~ msgid "Compensate" +#~ msgstr "Kompensieren" + +#~ msgctxt "wireframe_top_jump description" +#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." +#~ msgstr "Es wird ein kleiner Knoten oben auf einer Aufwärtslinie hergestellt, damit die nächste horizontale Schicht eine bessere Verbindung mit dieser herstellen kann. Dies gilt nur für das Drucken mit Drahtstruktur." + +#~ msgctxt "wireframe_bottom_delay description" +#~ msgid "Delay time after a downward move. Only applies to Wire Printing." +#~ msgstr "Die Verzögerungszeit nach einer Abwärtsbewegung. Dies gilt nur für das Drucken mit Drahtstruktur." + +#~ msgctxt "wireframe_top_delay description" +#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." +#~ msgstr "Die Verzögerungszeit nach einer Aufwärtsbewegung, damit die Aufwärtslinie härten kann. Dies gilt nur für das Drucken mit Drahtstruktur." + +#~ msgctxt "wireframe_flat_delay description" +#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." +#~ msgstr "Die Verzögerungszeit zwischen zwei horizontalen Segmenten. Durch eine solche Verzögerung kann eine bessere Haftung an den Verbindungspunkten zu vorherigen Schichten erreicht werden; bei einer zu langen Verzögerungszeit kann es allerdings zum Herabsinken von Bestandteilen kommen. Dies gilt nur für das Drucken mit Drahtstruktur." + +#~ msgctxt "wireframe_nozzle_clearance description" +#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." +#~ msgstr "Der Abstand zwischen der Düse und den horizontalen Abwärtslinien. Bei einem größeren Abstand haben die diagonalen Abwärtslinien einen weniger spitzen Winkel, was wiederum weniger Aufwärtsverbindungen zur nächsten Schicht zur Folge hat. Dies gilt nur für das Drucken mit Drahtstruktur." + +#~ msgctxt "wireframe_up_half_speed description" #~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." +#~ "Distance of an upward move which is extruded with half speed.\n" +#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." #~ msgstr "" -#~ "Gcode-Befehle, die zu Beginn ausgeführt werden sollen – getrennt durch \n" -#~ "." - -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "GCode beenden" - -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "Gcode-Befehle, die Am Ende ausgeführt werden sollen – getrennt durch \n" -#~ "." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "G-Code-Variante" - -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "Der Typ des zu generierenden Gcodes." - -#~ 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 GCode." -#~ 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 ansonsten nicht möglich ist, einen korrekten G-Code zu berechnen." - -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. 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 Gcode 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 "infill_offset_x description" -#~ msgid "The infill pattern is offset this distance along the X axis." -#~ msgstr "Das Füllmuster wird um diese Distanz entlang der X-Achse versetzt." - -#~ msgctxt "infill_offset_y description" -#~ msgid "The infill pattern is offset this distance along the Y axis." -#~ msgstr "Das Füllmuster wird um diese Distanz entlang der Y-Achse versetzt." - -#~ msgctxt "infill_overlap 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 "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "Das Ausmaß des Überlappens zwischen der Außenhaut und den Wänden als Prozentwert der Linienbreite. Ein leichtes Überlappen ermöglicht es den Wänden, eine solide Verbindung mit der Außenhaut herzustellen. Dies ist ein Prozentwert der durchschnittlichen Linienbreiten der Außenhautlinien und der innersten Wand." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "Die Temperatur, die für die erhitzte Druckplatte verwendet wird. Wenn dieser Wert 0 beträgt, wird das Bett für diesen Druck nicht erhitzt." - -#~ msgctxt "wall_x_extruder_nr label" -#~ msgid "Inner Walls Extruder" -#~ msgstr "Extruder Innenwände" - -#~ 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, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Das Muster des Füllmaterials des Drucks. Die Linien- und Zickzackfüllmethode wechseln nach jeder Schicht die Richtung, um Materialkosten zu reduzieren. Die Gitter-, Dreieck- Würfel-, Viertelwürfel-, Octahedral- und konzentrischen Muster werden in jeder Schicht vollständig gedruckt. Würfel-, Viertelwürfel- und Octahedral-Füllungen wechseln mit jeder Schicht, um eine gleichmäßigere Verteilung der Stärke in allen Richtungen zu erzielen." - -#~ msgctxt "zig_zaggify_infill description" -#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on 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 von Linien, die der Form der Innenwand folgen. 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 "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 "" -#~ "Der horizontale Abstand zwischen dem Skirt und der ersten Schicht des Drucks.\n" -#~ "Es handelt sich dabei um den Mindestabstand. Ab diesem Abstand werden Skirt-Linien in äußerer Richtung angebracht." - -#~ msgctxt "z_offset_layer_0 label" -#~ msgid "Initial Layer Z Offset" -#~ msgstr "Z-Versatz der ersten Schicht" - -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "Der Extruder wird um diesen Wert von der normalen Höhe der ersten Schicht versetzt. Das kann positiv (erhöht) oder negativ (abgesenkt) erfolgen. Einige Filamenttypen haften besser am Druckbett, wenn der Extruder leicht erhöht ist." - -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Z-Versatz Kegelschichten" - -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "Bei Nicht-Null wird der Z-Versatz auf 0 über den zahlreichen Schichten reduziert. Ein Wert von 0 bedeutet, dass der Z-Versatz über alle Schichten des Drucks hinweg konstant bleibt." - -#~ msgctxt "raft_smoothing description" -#~ msgid "This setting control 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 definiert, 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 "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, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Das Muster des Füllmaterials des Drucks. Die Linien- und Zickzackfüllmethode wechseln nach jeder Schicht die Richtung, um Materialkosten zu reduzieren. Die Gitter-, Dreieck- Würfel-, Tetrahedral- und konzentrischen Muster werden in jeder Schicht vollständig gedruckt. Würfel- und Tetrahedral-Füllungen wechseln mit jeder Schicht, um eine gleichmäßigere Verteilung der Stärke in allen Richtungen zu erzielen." - -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "Tetrahedral" - -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "Außenhaut in Füllung expandieren" - -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "Expandieren Sie Außenhautbereiche der oberen und/oder unteren Außenhaut auf flache Flächen. Standardmäßig endet die Außenhaut unter den Wandlinien, die die Füllung umgeben, allerdings kann dies bei einer geringen Dichte der Füllung zu Lochbildung führen. Diese Einstellung erstreckt die Außenhaut über die Wandlinien hinaus, sodass die Füllung auf der nächsten Schicht auf der Außenhaut verbleibt." - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ msgstr "Außenhaut oben in Füllung expandieren" - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "Expandiert die oberen Außenhautbereiche (Bereiche mit Luft darüber), sodass sie die Füllung darüber stützen." +#~ "Die Strecke einer Aufwärtsbewegung, die mit halber Geschwindigkeit extrudiert wird.\n" +#~ "Dies kann zu einer besseren Haftung an vorhergehenden Schichten führen, während gleichzeitig ein Überhitzen des Materials in diesen Schichten vermieden wird. Dies gilt nur für das Drucken mit Drahtstruktur." -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "Außenhaut unten in Füllung expandieren" +#~ msgctxt "wireframe_fall_down description" +#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Die Strecke, die das Material nach einer Aufwärts-Extrusion herunterfällt. Diese Strecke wird kompensiert. Dies gilt nur für das Drucken mit Drahtstruktur." -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Expandiert die Außenhautbodenbereiche (Bereiche mit Luft darunter), sodass sie durch die Füllungsschichten darüber und darunter verankert werden." +#~ msgctxt "wireframe_drag_along description" +#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Die Strecke, die das Material bei einer Aufwärts-Extrusion mit der diagonalen Abwärts-Extrusion nach unten gezogen wird. Diese Strecke wird kompensiert. Dies gilt nur für das Drucken mit Drahtstruktur." -#~ msgctxt "expand_skins_expand_distance description" -#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." -#~ msgstr "Bezeichnet die Distanz der Expansion der Außenhaut in die Füllung. Die Standarddistanz ist ausreichend, um den Spalt zwischen den Füllungslinien zu füllen und verhindert, dass Löcher in der Außenhaut auftreten, wo sie auf die Wand trifft, wenn die Dichte der Füllung gering ist. Eine kleinere Distanz ist oftmals ausreichend." +#~ msgctxt "wireframe_flow_connection description" +#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." +#~ msgstr "Flusskompensation bei der Aufwärts- und Abwärtsbewegung. Dies gilt nur für das Drucken mit Drahtstruktur." -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "Einige Zickzack-Verbindungen überspringen" +#~ msgctxt "wireframe_flow_flat description" +#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." +#~ msgstr "Flusskompensation beim Drucken flacher Linien. Dies gilt nur für das Drucken mit Drahtstruktur." -#~ msgctxt "support_skip_some_zags description" -#~ msgid "Skip some ZigZags connections to make the support structure easier to break." -#~ msgstr "Überspringen Sie einige Zickzack-Verbindungen, um das Brechen der Stützstruktur einfacher zu machen." +#~ msgctxt "wireframe_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." +#~ msgstr "Flusskompensation: Die extrudierte Materialmenge wird mit diesem Wert multipliziert. Dies gilt nur für das Drucken mit Drahtstruktur." -#~ msgctxt "support_zag_skip_count label" -#~ msgid "ZigZag Connection Skip Count" -#~ msgstr "Zickzack-Verbindung Zähler überspringen" +#~ msgctxt "wireframe_strategy option knot" +#~ msgid "Knot" +#~ msgstr "Knoten" -#~ msgctxt "support_zag_skip_count description" -#~ msgid "Skip one in every N connection lines to make the support structure easier to break." -#~ msgstr "Überspringen Sie eine in jeder N-Verbindungslinie, um das Brechen der Stützstruktur einfacher zu machen." +#~ msgctxt "wireframe_straight_before_down description" +#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." +#~ msgstr "Der Prozentsatz einer diagonalen Abwärtslinie, die von einem horizontalen Linienteil bedeckt wird. Dies kann das Herabsinken des höchsten Punktes einer Aufwärtslinie verhindern. Dies gilt nur für das Drucken mit Drahtstruktur." -#~ msgctxt "machine_show_variants label" -#~ msgid "Show machine variants" -#~ msgstr "Anzeige der Gerätevarianten" +#~ msgctxt "wireframe_enabled description" +#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." +#~ msgstr "Es wird „schwebend“ nur die äußere Oberfläche mit einer dünnen Netzstruktur gedruckt. Dazu werden die Konturen des Modells horizontal gemäß den gegebenen Z-Intervallen gedruckt, welche durch aufwärts und diagonal abwärts verlaufende Linien verbunden werden." -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Wait for build plate heatup" -#~ msgstr "Warten auf Aufheizen der Druckplatte" +#~ msgctxt "wireframe_strategy option retract" +#~ msgid "Retract" +#~ msgstr "Einziehen" -#~ msgctxt "material_print_temp_wait label" -#~ msgid "Wait for nozzle heatup" -#~ msgstr "Warten auf Aufheizen der Düse" +#~ msgctxt "wireframe_printspeed description" +#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." +#~ msgstr "Die Geschwindigkeit, mit der sich die Düse bei der Materialextrusion bewegt. Dies gilt nur für das Drucken mit Drahtstruktur." -#~ msgctxt "material_print_temp_prepend label" -#~ msgid "Include material temperatures" -#~ msgstr "Materialtemperaturen einfügen" +#~ msgctxt "wireframe_printspeed_down description" +#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." +#~ msgstr "Die Geschwindigkeit beim Drucken einer Linie in diagonaler Abwärtsrichtung. Dies gilt nur für das Drucken mit Drahtstruktur." -#~ msgctxt "material_bed_temp_prepend label" -#~ msgid "Include build plate temperature" -#~ msgstr "Temperaturprüfung der Druckplatte einfügen" +#~ msgctxt "wireframe_printspeed_up description" +#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." +#~ msgstr "Die Geschwindigkeit beim Drucken einer „schwebenden“ Linie in Aufwärtsrichtung. Dies gilt nur für das Drucken mit Drahtstruktur." -#~ msgctxt "machine_width label" -#~ msgid "Machine width" -#~ msgstr "Gerätebreite" +#~ msgctxt "wireframe_printspeed_bottom description" +#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." +#~ msgstr "Die Geschwindigkeit beim drucken der ersten Schicht, also der einzigen Schicht, welche das Druckbett berührt. Dies gilt nur für das Drucken mit Drahtstruktur." -#~ msgctxt "machine_depth label" -#~ msgid "Machine depth" -#~ msgstr "Gerätetiefe" +#~ msgctxt "wireframe_printspeed_flat description" +#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." +#~ msgstr "Die Geschwindigkeit beim Drucken der horizontalen Konturen des Modells. Dies gilt nur für das Drucken mit Drahtstruktur." -#~ msgctxt "machine_shape label" -#~ msgid "Build plate shape" -#~ msgstr "Druckbettform" +#~ msgctxt "wireframe_strategy description" +#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." +#~ msgstr "Eine Strategie, um sicherzustellen, dass an jedem Verbindungspunkt zwei Schichten miteinander verbunden werden. Durch den Einzug härten die Aufwärtslinien in der richtigen Position, allerdings kann es dabei zum Schleifen des Filaments kommen. Am Ende jeder Aufwärtslinie kann ein Knoten gemacht werden, um die Chance einer erfolgreichen Verbindung zu erhöhen und die Linie abkühlen zu lassen; allerdings ist dafür möglicherweise eine niedrige Druckgeschwindigkeit erforderlich. Eine andere Strategie ist die es an der Oberseite einer Aufwärtslinie das Herabsinken zu kompensieren; allerdings sinken nicht alle Linien immer genauso ab, wie dies erwartet wird." -#~ msgctxt "machine_height label" -#~ msgid "Machine height" -#~ msgstr "Gerätehöhe" +#~ msgctxt "wireframe_roof_inset description" +#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." +#~ msgstr "Der abgedeckte Abstand beim Herstellen einer Verbindung vom Dachumriss nach innen. Dies gilt nur für das Drucken mit Drahtstruktur." -#~ msgctxt "machine_heated_bed label" -#~ msgid "Has heated build plate" -#~ msgstr "Mit beheizter Druckplatte" +#~ msgctxt "wireframe_roof_drag_along description" +#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Die Strecke des Endstücks einer nach innen verlaufenden Linie, um die diese bei der Rückkehr zur äußeren Umfangslinie des Dachs nachgezogen wird. Diese Strecke wird kompensiert. Dies gilt nur für das Drucken mit Drahtstruktur." -#~ msgctxt "machine_center_is_zero label" -#~ msgid "Is center origin" -#~ msgstr "Is-Center-Ursprung" +#~ msgctxt "wireframe_roof_fall_down description" +#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Die Strecke, um die horizontale Dachlinien, die „schwebend“ gedruckt werden, beim Druck herunterfallen. Diese Strecke wird kompensiert. Dies gilt nur für das Drucken mit Drahtstruktur." -#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -#~ msgid "RepRap (Marlin/Sprinter)" -#~ msgstr "RepRap (Marlin/Sprinter)" +#~ msgctxt "wireframe_height description" +#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." +#~ msgstr "Die Höhe der Aufwärtslinien und diagonalen Abwärtslinien zwischen zwei horizontalen Teilen. Dies legt die Gesamtdichte der Netzstruktur fest. Dies gilt nur für das Drucken mit Drahtstruktur." -#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" -#~ msgid "RepRap (Volumetric)" -#~ msgstr "RepRap (Volumetrisch)" +#~ msgctxt "wireframe_roof_outer_delay description" +#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." +#~ msgstr "Die Zeit, die für die äußeren Umfänge eines Lochs aufgewendet wird, das später zu einem Dach werden soll. Durch längere Zeiten kann die Verbindung besser werden. Dies gilt nur für das Drucken mit Drahtstruktur." -#~ msgctxt "wall_thickness description" -#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -#~ msgstr "Die Dicke der Außenwände in horizontaler Richtung. Dieser Wert geteilt durch die Wandliniendicke bestimmt die Anzahl der Wände." +#~ msgctxt "wireframe_bottom_delay label" +#~ msgid "WP Bottom Delay" +#~ msgstr "Abwärtsverzögerung beim Drucken mit Drahtstruktur" -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Das Ausmaß des Überlappens zwischen der Außenhaut und den Wänden. Ein leichtes Überlappen ermöglicht es den Wänden, eine solide Verbindung mit der Außenhaut herzustellen." +#~ msgctxt "wireframe_printspeed_bottom label" +#~ msgid "WP Bottom Printing Speed" +#~ msgstr "Geschwindigkeit beim Drucken der Unterseite mit Drahtstruktur" -#~ msgctxt "support_interface_line_width description" -#~ msgid "Width of a single support interface line." -#~ msgstr "Die Breite einer Linienbreite einer einzelnen Stützstruktur-Schnittstelle." +#~ msgctxt "wireframe_flow_connection label" +#~ msgid "WP Connection Flow" +#~ msgstr "Fluss für Drucken von Verbindungen mit Drahtstruktur" -#~ msgctxt "sub_div_rad_mult label" -#~ msgid "Cubic Subdivision Radius" -#~ msgstr "Radius Würfel-Unterbereich" +#~ msgctxt "wireframe_height label" +#~ msgid "WP Connection Height" +#~ msgstr "Verbindungshöhe bei Drucken mit Drahtstruktur" -#~ msgctxt "sub_div_rad_mult description" -#~ msgid "A multiplier on 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 more subdivisions, i.e. more small cubes." -#~ msgstr "Ein Multiplikator des 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 mehr Unterbereichen, d. h. mehr kleinen Würfeln." +#~ msgctxt "wireframe_printspeed_down label" +#~ msgid "WP Downward Printing Speed" +#~ msgstr "Geschwindigkeit beim Drucken in Abwärtsrichtung mit Drahtstruktur" -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Upper Skins" -#~ msgstr "Obere Außenhaut expandieren" +#~ msgctxt "wireframe_drag_along label" +#~ msgid "WP Drag Along" +#~ msgstr "Nachziehen bei Drucken mit Drahtstruktur" -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." -#~ msgstr "Expandiert die oberen Außenhautbereiche (Bereiche mit Luft darüber), sodass sie die Füllung darüber stützen." +#~ msgctxt "wireframe_up_half_speed label" +#~ msgid "WP Ease Upward" +#~ msgstr "Langsame Aufwärtsbewegung bei Drucken mit Drahtstruktur" -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Lower Skins" -#~ msgstr "Untere Außenhaut expandieren" +#~ msgctxt "wireframe_fall_down label" +#~ msgid "WP Fall Down" +#~ msgstr "Herunterfallen bei Drucken mit Drahtstruktur" -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Expandiert die unteren Außenhautbereiche (Bereiche mit Luft darunter), sodass sie durch die Füllungsschichten darüber und darunter verankert werden." +#~ msgctxt "wireframe_flat_delay label" +#~ msgid "WP Flat Delay" +#~ msgstr "Horizontale Verzögerung beim Drucken mit Drahtstruktur" -#~ msgctxt "speed_support_interface description" -#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality." -#~ msgstr "Die Geschwindigkeit, mit der die Dächer und Böden der Stützstruktur gedruckt wird. Durch das Drucken bei einer geringeren Geschwindigkeit, kann die Qualität der Überhänge verbessert werden." +#~ msgctxt "wireframe_flow_flat label" +#~ msgid "WP Flat Flow" +#~ msgstr "Fluss für Drucken von flachen Linien mit Drahtstruktur" -#~ msgctxt "acceleration_support_interface description" -#~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality." -#~ msgstr "Die Beschleunigung, mit der die Dächer und Böden der Stützstruktur gedruckt wird. Durch das Drucken bei einer geringeren Geschwindigkeit kann die Qualität der Überhänge verbessert werden." +#~ msgctxt "wireframe_flow label" +#~ msgid "WP Flow" +#~ msgstr "Fluss für Drucken mit Drahtstruktur" -#~ msgctxt "jerk_support_interface description" -#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." -#~ msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Dächer und Böden der Stützstruktur gedruckt werden." +#~ msgctxt "wireframe_printspeed_flat label" +#~ msgid "WP Horizontal Printing Speed" +#~ msgstr "Geschwindigkeit beim Drucken in horizontaler Richtung mit Drahtstruktur" -#~ msgctxt "support_enable label" -#~ msgid "Enable Support" -#~ msgstr "Stützstruktur aktivieren" +#~ msgctxt "wireframe_top_jump label" +#~ msgid "WP Knot Size" +#~ msgstr "Knotengröße für Drucken mit Drahtstruktur" -#~ msgctxt "support_enable description" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Es werden Stützstrukturen aktiviert. Diese Strukturen stützen Teile des Modells mit großen Überhängen." +#~ msgctxt "wireframe_nozzle_clearance label" +#~ msgid "WP Nozzle Clearance" +#~ msgstr "Düsenabstand bei Drucken mit Drahtstruktur" -#~ msgctxt "support_interface_extruder_nr description" -#~ msgid "The extruder train to use for printing the roofs and bottoms 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. Diese wird für die Mehrfach-Extrusion benutzt." +#~ msgctxt "wireframe_roof_drag_along label" +#~ msgid "WP Roof Drag Along" +#~ msgstr "Nachziehen für Dach bei Drucken mit Drahtstruktur" -#~ 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." -#~ 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." +#~ msgctxt "wireframe_roof_fall_down label" +#~ msgid "WP Roof Fall Down" +#~ msgstr "Herunterfallen des Dachs bei Drucken mit Drahtstruktur" -#~ msgctxt "support_bottom_height label" -#~ msgid "Support Bottom Thickness" -#~ msgstr "Dicke des Stützbodens" +#~ msgctxt "wireframe_roof_inset label" +#~ msgid "WP Roof Inset Distance" +#~ msgstr "Einfügeabstand für Dach bei Drucken mit Drahtstruktur" -#~ msgctxt "support_bottom_height description" -#~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests." -#~ msgstr "Die Dicke des Stützbodens. Dies steuert die Anzahl der dichten Schichten, die oben an einem Modell gedruckt werden, auf dem die Stützstruktur aufsitzt." +#~ msgctxt "wireframe_roof_outer_delay label" +#~ msgid "WP Roof Outer Delay" +#~ msgstr "Verzögerung für Dachumfänge bei Drucken mit Drahtstruktur" -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above 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 "Bei der Überprüfung, wo sich das Modell über der Stützstruktur befindet, verwenden Sie Schritte der entsprechenden Höhe. Niedrigere Werte schneiden langsamer, während höhere Werte dazu führen können, dass die normale Stützstruktur an einigen Stellen gedruckt wird, wo sie als Stützstrukturschnittstelle gedruckt werden sollte." +#~ msgctxt "wireframe_printspeed label" +#~ msgid "WP Speed" +#~ msgstr "Geschwindigkeit beim Drucken mit Drahtstruktur" -#~ msgctxt "support_interface_density description" -#~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -#~ msgstr "Die Dichte des Stützstrukturdachs und -bodens wird eingestellt. Ein höherer Wert führt zu besseren Überhängen, aber die Stützstrukturen sind schwieriger zu entfernen." +#~ msgctxt "wireframe_straight_before_down label" +#~ msgid "WP Straighten Downward Lines" +#~ msgstr "Abwärtslinien beim Drucken mit Drahtstruktur geraderichten" -#~ msgctxt "support_interface_line_distance label" -#~ msgid "Support Interface Line Distance" -#~ msgstr "Stützstrukturschnittstelle Linienlänge" +#~ msgctxt "wireframe_strategy label" +#~ msgid "WP Strategy" +#~ msgstr "Strategie für Drucken mit Drahtstruktur" -#~ msgctxt "support_interface_line_distance description" -#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." -#~ msgstr "Der Abstand zwischen den gedruckten Stützstrukturschnittstellenlinien. Diese Einstellung wird anhand der Dichte der Stützstrukturschnittstelle berechnet, kann aber auch separat eingestellt werden." +#~ msgctxt "wireframe_top_delay label" +#~ msgid "WP Top Delay" +#~ msgstr "Aufwärtsverzögerung beim Drucken mit Drahtstruktur" -#~ 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 used to be called Joris in older versions." -#~ 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 wurde bei den Vorversionen „Joris“ genannt." +#~ msgctxt "wireframe_printspeed_up label" +#~ msgid "WP Upward Printing Speed" +#~ msgstr "Geschwindigkeit beim Drucken in Aufwärtsrichtung mit Drahtstruktur" -#~ msgctxt "material_print_temperature description" -#~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." -#~ msgstr "Die Temperatur, die für das Drucken verwendet wird. Wählen Sie hier 0, um das Vorheizen manuell durchzuführen." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually." -#~ msgstr "Die Temperatur, die für das Erhitzen des Druckbetts verwendet wird. Wählen Sie hier 0, um das Vorheizen des Druckers manuell durchzuführen." - -#~ 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. This value is rounded down to a multiple of the layer height." -#~ msgstr "Der Abstand der Ober-/Unterseite der Stützstruktur vom Druck. So wird ein Zwischenraum geschaffen, der die Entfernung der Stützstrukturen nach dem Drucken des Modells ermöglicht. Dieser Wert wird auf ein Vielfaches der Schichtdicke abgerundet." - -#~ msgctxt "z_seam_type option back" -#~ msgid "Back" -#~ msgstr "Rückseite" - -#~ msgctxt "multiple_mesh_overlap label" -#~ msgid "Dual Extrusion Overlap" -#~ msgstr "Überlappung duale Extrusion" +#~ msgctxt "wireframe_enabled label" +#~ msgid "Wire Printing" +#~ msgstr "Drucken mit Drahtstruktur" diff --git a/resources/i18n/es_ES/cura.po b/resources/i18n/es_ES/cura.po index d0e5377405..11f7334971 100644 --- a/resources/i18n/es_ES/cura.po +++ b/resources/i18n/es_ES/cura.po @@ -1,12 +1,13 @@ # Cura -# Copyright (C) 2022 Ultimaker B.V. +# Copyright (C) 2023 UltiMaker. # This file is distributed under the same license as the Cura package. +# UltiMaker , 2023. # msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0200\n" +"Project-Id-Version: Cura 5.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-04-06 15:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,236 +17,114 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -msgctxt "@label" -msgid "Unknown" -msgstr "Desconocido" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "Las siguientes impresoras no pueden conectarse porque forman parte de un grupo" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Impresoras en red disponibles" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "No reemplazado" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Connected printers" -msgstr "Impresoras conectadas" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Preset printers" -msgstr "Impresoras preconfiguradas" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:143 -#, 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 "¿Seguro que desea eliminar {0}? ¡Esta acción no se puede deshacer!" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:61 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 -msgctxt "@label" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:65 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Visual" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:66 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "El perfil visual está diseñado para imprimir prototipos y modelos visuales con la intención de obtener una alta calidad visual y de superficies." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:70 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "El perfil de ingeniería ha sido diseñado para imprimir prototipos funcionales y piezas de uso final con la intención de obtener una mayor precisión y tolerancias más precisas." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:75 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Boceto" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:76 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "El perfil del boceto ha sido diseñado para imprimir los prototipos iniciales y la validación del concepto con la intención de reducir el tiempo de impresión de manera considerable." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:232 -msgctxt "@label" -msgid "Custom Material" -msgstr "Material personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:233 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 -msgctxt "@label" -msgid "Custom" -msgstr "Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:391 -msgctxt "@label" -msgid "Custom profiles" -msgstr "Perfiles personalizados" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:426 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Todos los tipos compatibles ({0})" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Todos los archivos (*)" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Calculado" - -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 +#: cura/API/Account.py:199 msgctxt "@info:title" msgid "Login failed" msgstr "Fallo de inicio de sesión" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: cura/Arranging/ArrangeObjectsJob.py:25 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Buscando nueva ubicación para los objetos" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: cura/Arranging/ArrangeObjectsJob.py:29 msgctxt "@info:title" msgid "Finding Location" msgstr "Buscando ubicación" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "No se puede encontrar una ubicación dentro del volumen de impresión para todos los objetos" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: cura/Arranging/ArrangeObjectsJob.py:43 msgctxt "@info:title" msgid "Can't Find Location" msgstr "No se puede encontrar la ubicación" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:115 +#: cura/Backups/Backup.py:115 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "No se ha podido crear el archivo desde el directorio de datos de usuario: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:159 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +#: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159 +#: plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: plugins/CuraDrive/src/DrivePluginExtension.py:126 msgctxt "@info:title" msgid "Backup" msgstr "Copia de seguridad" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:134 +#: cura/Backups/Backup.py:134 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." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:145 +#: cura/Backups/Backup.py:145 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that is higher than the current version." msgstr "Se ha intentado restaurar una copia de seguridad de Cura superior a la versión actual." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:158 +#: cura/Backups/Backup.py:158 msgctxt "@info:backup_failed" msgid "The following error occurred while trying to restore a Cura backup:" msgstr "Se ha producido el siguiente error al intentar restaurar una copia de seguridad de Cura:" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: cura/BuildVolume.py:100 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." msgstr "La altura del volumen de impresión se ha reducido debido al valor del ajuste «Secuencia de impresión» para evitar que el caballete colisione con los modelos impresos." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 +#: cura/BuildVolume.py:103 msgctxt "@info:title" msgid "Build Volume" msgstr "Volumen de impresión" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura no puede iniciarse" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" -"

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

    \n" +"

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

    ¡Vaya! Ultimaker Cura ha encontrado un error.

    \n" +"

    ¡Vaya! UltiMaker Cura ha encontrado un error.

    \n" "

    Hemos detectado un error irreversible durante el inicio, posiblemente como consecuencia de varios archivos de configuración erróneos. Le recomendamos que realice una copia de seguridad y que restablezca los ajustes.

    \n" "

    Las copias de seguridad se encuentran en la carpeta de configuración.

    \n" "

    Envíenos el informe de errores para que podamos solucionar el problema.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: cura/CrashHandler.py:122 msgctxt "@action:button" -msgid "Send crash report to Ultimaker" -msgstr "Enviar informe de errores a Ultimaker" +msgid "Send crash report to UltiMaker" +msgstr "Enviar informe de errores a UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Mostrar informe de errores detallado" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Mostrar carpeta de configuración" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Realizar copia de seguridad y restablecer configuración" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Informe del accidente" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

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

    \n" @@ -256,573 +135,2241 @@ msgstr "" "

    Utilice el botón "Enviar informe" para publicar automáticamente el informe de errores en nuestros servidores.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Información del sistema" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Desconocido" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Versión de Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Idioma de Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Idioma del sistema operativo" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Plataforma" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Versión Qt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Versión PyQt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized" -msgstr "" +msgstr "Aún no inicializado" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Versión de OpenGL: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • Proveedor de OpenGL: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • Representador de OpenGL: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 +#: cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Rastreabilidad de errores" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 +#: cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Registros" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 +#: cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Enviar informe" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:531 +#: cura/CuraApplication.py:540 msgctxt "@info:progress" msgid "Loading machines..." msgstr "Cargando máquinas..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +#: cura/CuraApplication.py:547 msgctxt "@info:progress" msgid "Setting up preferences..." msgstr "Configurando preferencias...." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +#: cura/CuraApplication.py:692 msgctxt "@info:progress" msgid "Initializing Active Machine..." msgstr "Iniciando la máquina activa..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +#: cura/CuraApplication.py:839 msgctxt "@info:progress" msgid "Initializing machine manager..." msgstr "Iniciando el administrador de la máquina..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +#: cura/CuraApplication.py:853 msgctxt "@info:progress" msgid "Initializing build volume..." msgstr "Iniciando el volumen de impresión..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +#: cura/CuraApplication.py:921 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "Configurando escena..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +#: cura/CuraApplication.py:957 msgctxt "@info:progress" msgid "Loading interface..." msgstr "Cargando interfaz..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +#: cura/CuraApplication.py:962 msgctxt "@info:progress" msgid "Initializing engine..." msgstr "Iniciando el motor..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#: cura/CuraApplication.py:1290 #, 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" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1798 +#: cura/CuraApplication.py:1816 #, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Solo se puede cargar un archivo GCode a la vez. Se omitió la importación de {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 +#: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 msgctxt "@info:title" msgid "Warning" msgstr "Advertencia" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#: cura/CuraApplication.py:1828 #, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "No se puede abrir ningún archivo si se está cargando un archivo GCode. Se omitió la importación de {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1812 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156 +#: cura/Settings/CuraContainerRegistry.py:166 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 msgctxt "@info:title" msgid "Error" msgstr "Error" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 +#: cura/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Desconocido" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "Las siguientes impresoras no pueden conectarse porque forman parte de un grupo" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Impresoras en red disponibles" + +#: cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "No reemplazado" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:28 +msgctxt "@label" +msgid "Connected printers" +msgstr "Impresoras conectadas" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +msgctxt "@label" +msgid "Preset printers" +msgstr "Impresoras preconfiguradas" + +#: cura/Machines/Models/GlobalStacksModel.py:165 +#, 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 "¿Seguro que desea eliminar {0}? ¡Esta acción no se puede deshacer!" + +#: cura/Machines/Models/IntentCategoryModel.py:42 +#: cura/Machines/Models/IntentSelectionModel.py:61 +#: cura/Machines/Models/IntentTranslations.py:11 +#: cura/Machines/Models/QualityManagementModel.py:347 +msgctxt "@label" +msgid "Default" +msgstr "Default" + +#: cura/Machines/Models/IntentCategoryModel.py:45 +#: cura/Machines/Models/IntentSelectionModel.py:65 +#: cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "Visual" + +#: cura/Machines/Models/IntentCategoryModel.py:46 +#: cura/Machines/Models/IntentSelectionModel.py:66 +#: cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "El perfil visual está diseñado para imprimir prototipos y modelos visuales con la intención de obtener una alta calidad visual y de superficies." + +#: cura/Machines/Models/IntentCategoryModel.py:49 +#: cura/Machines/Models/IntentSelectionModel.py:70 +#: cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "Engineering" + +#: cura/Machines/Models/IntentCategoryModel.py:50 +#: cura/Machines/Models/IntentSelectionModel.py:71 +#: cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "El perfil de ingeniería ha sido diseñado para imprimir prototipos funcionales y piezas de uso final con la intención de obtener una mayor precisión y tolerancias más precisas." + +#: cura/Machines/Models/IntentCategoryModel.py:53 +#: cura/Machines/Models/IntentSelectionModel.py:75 +#: cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "Boceto" + +#: cura/Machines/Models/IntentCategoryModel.py:54 +#: cura/Machines/Models/IntentSelectionModel.py:76 +#: cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "El perfil del boceto ha sido diseñado para imprimir los prototipos iniciales y la validación del concepto con la intención de reducir el tiempo de impresión de manera considerable." + +#: cura/Machines/Models/MaterialManagementModel.py:232 +msgctxt "@label" +msgid "Custom Material" +msgstr "Material personalizado" + +#: cura/Machines/Models/MaterialManagementModel.py:233 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 +msgctxt "@label" +msgid "Custom" +msgstr "Personalizado" + +#: cura/Machines/Models/QualityManagementModel.py:400 +msgctxt "@label" +msgid "Custom profiles" +msgstr "Perfiles personalizados" + +#: cura/Machines/Models/QualityManagementModel.py:435 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Todos los tipos compatibles ({0})" + +#: cura/Machines/Models/QualityManagementModel.py:436 +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Todos los archivos (*)" + +#: cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Calculado" + +#: cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Multiplicar y colocar objetos" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 +#: cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "Colocando objetos" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 +#: cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Colocando objeto" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +#: cura/OAuth2/AuthorizationHelpers.py:89 msgctxt "@message" msgid "Could not read response." msgstr "No se ha podido leer la respuesta." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +#: cura/OAuth2/AuthorizationRequestHandler.py:75 msgctxt "@message" msgid "The provided state is not correct." msgstr "El estado indicado no es correcto." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +#: cura/OAuth2/AuthorizationRequestHandler.py:80 msgctxt "@message" msgid "Timeout when authenticating with the account server." msgstr "Se agotó el tiempo de autenticación con el servidor de la cuenta." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +#: cura/OAuth2/AuthorizationRequestHandler.py:97 msgctxt "@message" msgid "Please give the required permissions when authorizing this application." msgstr "Conceda los permisos necesarios al autorizar esta aplicación." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +#: cura/OAuth2/AuthorizationRequestHandler.py:104 msgctxt "@message" msgid "Something unexpected happened when trying to log in, please try again." msgstr "Se ha producido un problema al intentar iniciar sesión, vuelva a intentarlo." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:216 +#: cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "No se puede iniciar un nuevo proceso de inicio de sesión. Compruebe si todavía está activo otro intento de inicio de sesión." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:277 +#: cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "No se puede acceder al servidor de cuentas de Ultimaker." +msgid "Unable to reach the UltiMaker account server." +msgstr "No se puede acceder al servidor de cuentas de UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 +#: cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" msgid "Log-in failed" msgstr "Error de inicio de sesión" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +#: cura/PrinterOutput/UploadMaterialsJob.py:104 msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Error al crear un archivo de materiales para sincronizarlo con las impresoras." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +#: cura/PrinterOutput/UploadMaterialsJob.py:111 +#: cura/PrinterOutput/UploadMaterialsJob.py:165 msgctxt "@text:error" msgid "Failed to load the archive of materials to sync it with printers." msgstr "Error al cargar el archivo de materiales para sincronizarlo con las impresoras." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +#: cura/PrinterOutput/UploadMaterialsJob.py:143 msgctxt "@text:error" msgid "The response from Digital Factory appears to be corrupted." msgstr "La respuesta de Digital Factory parece estar dañada." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +#: cura/PrinterOutput/UploadMaterialsJob.py:147 +#: cura/PrinterOutput/UploadMaterialsJob.py:151 +#: cura/PrinterOutput/UploadMaterialsJob.py:155 msgctxt "@text:error" msgid "The response from Digital Factory is missing important information." msgstr "A la respuesta de Digital Factory le falta información importante." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +#: cura/PrinterOutput/UploadMaterialsJob.py:218 msgctxt "@text:error" msgid "Failed to connect to Digital Factory to sync materials with some of the printers." msgstr "Error al conectarse con Digital Factory para sincronizar los materiales con algunas de las impresoras." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +#: cura/PrinterOutput/UploadMaterialsJob.py:232 msgctxt "@text:error" msgid "Failed to connect to Digital Factory." msgstr "Error al conectarse con Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:207 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: cura/Settings/ActiveQuality.py:43 +msgctxt "@label" +msgid "Experimental" +msgstr "Experimental" + +#: cura/Settings/ContainerManager.py:207 +#: cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "El archivo ya existe" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: cura/Settings/ContainerManager.py:208 +#: cura/Settings/CuraContainerRegistry.py:141 #, 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 "El archivo {0} ya existe. ¿Está seguro de que desea sobrescribirlo?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 +#: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "URL del archivo no válida:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Error al exportar el perfil a {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Error al exportar el perfil a {0}: Error en el complemento de escritura." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Perfil exportado a {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Exportación correcta" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Error al importar el perfil de {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: cura/Settings/CuraContainerRegistry.py:209 #, 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 "No se puede importar el perfil de {0} antes de añadir una impresora." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "No hay ningún perfil personalizado para importar en el archivo {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Error al importar el perfil de {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: cura/Settings/CuraContainerRegistry.py:252 +#: cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Este perfil {0} contiene datos incorrectos, no se han podido importar." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Error al importar el perfil de {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Perfil {0} importado correctamente." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "El archivo {0} no contiene ningún perfil válido." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "El perfil {0} tiene un tipo de archivo desconocido o está corrupto." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Perfil personalizado" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Al perfil le falta un tipo de calidad." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Todavía no hay ninguna impresora activa." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "No se puede añadir el perfil." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "El tipo de calidad '{0}' no es compatible con la definición actual de máquina activa '{1}'." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: cura/Settings/CuraContainerRegistry.py:488 #, 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 "Advertencia: el perfil no es visible porque su tipo de calidad '{0}' no está disponible para la configuración actual. Cambie a una combinación de material/tobera que pueda utilizar este tipo de calidad." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "No compatible" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:219 +#: cura/Settings/MachineManager.py:746 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:221 msgctxt "@label" msgid "Nozzle" msgstr "Tobera" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +#: cura/Settings/MachineManager.py:890 msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "La configuración se ha cambiado para que coincida con los extrusores disponibles en este momento:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: cura/Settings/MachineManager.py:891 msgctxt "@info:title" msgid "Settings updated" msgstr "Ajustes actualizados" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 +#: cura/Settings/MachineManager.py:1514 msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extrusores deshabilitados" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 +#: cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "No compatible" + +#: cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Default" + +#: cura/UI/AddPrinterPagesModel.py:17 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" msgid "Add" msgstr "Agregar" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:290 +#: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290 msgctxt "@action:button" msgid "Finish" msgstr "Finalizar" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:508 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:323 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:291 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:74 +#: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386 +#: plugins/ImageReader/ConfigUI.qml:323 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 +#: resources/qml/ColorDialog.qml:143 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: resources/qml/Dialogs/RenameDialog.qml:103 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 msgctxt "@action:button" msgid "Cancel" msgstr "Cancelar" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: cura/UI/ObjectsModel.py:69 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "N.º de grupo {group_nr}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 +#: cura/UI/PrintInformation.py:87 msgctxt "@tooltip" msgid "Outer Wall" msgstr "Pared exterior" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +#: cura/UI/PrintInformation.py:88 msgctxt "@tooltip" msgid "Inner Walls" msgstr "Paredes interiores" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +#: cura/UI/PrintInformation.py:89 msgctxt "@tooltip" msgid "Skin" msgstr "Forro" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +#: cura/UI/PrintInformation.py:90 msgctxt "@tooltip" msgid "Infill" msgstr "Relleno" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +#: cura/UI/PrintInformation.py:91 msgctxt "@tooltip" msgid "Support Infill" msgstr "Relleno de soporte" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +#: cura/UI/PrintInformation.py:92 msgctxt "@tooltip" msgid "Support Interface" msgstr "Interfaz de soporte" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +#: cura/UI/PrintInformation.py:93 msgctxt "@tooltip" msgid "Support" msgstr "Soporte" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +#: cura/UI/PrintInformation.py:94 msgctxt "@tooltip" msgid "Skirt" msgstr "Falda" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +#: cura/UI/PrintInformation.py:95 msgctxt "@tooltip" msgid "Prime Tower" msgstr "Torre auxiliar" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +#: cura/UI/PrintInformation.py:96 msgctxt "@tooltip" msgid "Travel" msgstr "Desplazamiento" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +#: cura/UI/PrintInformation.py:97 msgctxt "@tooltip" msgid "Retractions" msgstr "Retracciones" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +#: cura/UI/PrintInformation.py:98 msgctxt "@tooltip" msgid "Other" msgstr "Otro" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:63 +#: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63 msgctxt "@text:window" msgid "The release notes could not be opened." msgstr "No se han podido abrir las notas de la versión." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:277 +#: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277 msgctxt "@action:button" msgid "Next" msgstr "Siguiente" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68 msgctxt "@action:button" msgid "Skip" msgstr "Omitir" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:443 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:186 +#: cura/UI/WhatsNewPagesModel.py:76 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444 +#: resources/qml/Dialogs/AboutDialog.qml:188 msgctxt "@action:button" msgid "Close" msgstr "Cerrar" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: cura/UltimakerCloud/CloudMaterialSync.py:66 msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Sincronice los perfiles de material con sus impresoras antes de comenzar a imprimir." -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: cura/UltimakerCloud/CloudMaterialSync.py:67 msgctxt "@action:button" msgid "New materials installed" msgstr "Nuevos materiales instalados" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: cura/UltimakerCloud/CloudMaterialSync.py:74 msgctxt "@action:button" msgid "Sync materials" msgstr "Sincronizar materiales" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:397 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:80 +#: cura/UltimakerCloud/CloudMaterialSync.py:82 +#: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80 msgctxt "@action:button" msgid "Learn more" msgstr "Más información" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +#: cura/UltimakerCloud/CloudMaterialSync.py:135 msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "No se pudo guardar el archivo de material en {}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +#: cura/UltimakerCloud/CloudMaterialSync.py:136 msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Se ha producido un error al guardar el archivo de material" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +#: cura/UltimakerCloud/CloudMaterialSync.py:188 msgctxt "@text" msgid "Unknown error." msgstr "Error desconocido." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:558 +#, 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 "El archivo del proyecto {0} contiene un tipo de máquina desconocida {1}. No se puede importar la máquina, en su lugar, se importarán los modelos." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:561 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "Abrir archivo de proyecto" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: plugins/3MFReader/WorkspaceDialog.qml:99 +#: plugins/3MFReader/WorkspaceDialog.qml:127 +#: plugins/3MFReader/WorkspaceDialog.qml:134 +msgctxt "@button" +msgid "Create new" +msgstr "Crear nuevo" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:692 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "El archivo de proyecto {0} está repentinamente inaccesible: {1}." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:720 +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "No se puede abrir el archivo de proyecto" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:700 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:718 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "El archivo de proyecto {0} está dañado: {1}." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:765 +#, 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 "El archivo de proyecto {0} se ha creado con perfiles desconocidos para esta versión de Ultimaker Cura." + +#: plugins/3MFReader/WorkspaceDialog.py:233 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Recomendado" + +#: plugins/3MFReader/WorkspaceDialog.py:235 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Personalizado" + +#: plugins/3MFReader/WorkspaceDialog.py:411 +msgctxt "@info:status" +msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." +msgstr "El material utilizado en este proyecto se basa en algunas definiciones de materiales que no están disponibles en Cura, lo que podría producir resultados de impresión no deseados. Recomendamos encarecidamente instalar el paquete completo de materiales desde el Marketplace." + +#: plugins/3MFReader/WorkspaceDialog.py:413 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "Perfiles de materiales no instalados" + +#: plugins/3MFReader/WorkspaceDialog.py:426 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "Instalar materiales" + +#: plugins/3MFReader/WorkspaceDialog.qml:15 +msgctxt "@title:window" +msgid "Open Project" +msgstr "Abrir proyecto" + +#: plugins/3MFReader/WorkspaceDialog.qml:31 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61 +msgctxt "@action:title" +msgid "Summary - Cura Project" +msgstr "Resumen: proyecto de Cura" + +#: plugins/3MFReader/WorkspaceDialog.qml:65 +msgctxt "@action:ComboBox Update/override existing profile" +msgid "Update existing" +msgstr "Actualizar existente" + +#: plugins/3MFReader/WorkspaceDialog.qml:66 +msgctxt "@action:ComboBox Save settings in a new profile" +msgid "Create new" +msgstr "Crear nuevo" + +#: plugins/3MFReader/WorkspaceDialog.qml:83 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97 +msgctxt "@action:label" +msgid "Printer settings" +msgstr "Ajustes de la impresora" + +#: plugins/3MFReader/WorkspaceDialog.qml:92 +#: plugins/3MFReader/WorkspaceRow.qml:23 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106 +msgctxt "@action:label" +msgid "Type" +msgstr "Tipo" + +#: plugins/3MFReader/WorkspaceDialog.qml:98 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +msgctxt "@action:label" +msgid "Printer Group" +msgstr "Grupo de impresoras" + +#: plugins/3MFReader/WorkspaceDialog.qml:103 +msgctxt "@action:label" +msgid "Open With" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:104 +msgctxt "@info:tooltip" +msgid "Printer settings will be updated to match the settings saved with the project." +msgstr "La configuración de la impresora se actualizar para que coincida con la configuración guardada con el proyecto." + +#: plugins/3MFReader/WorkspaceDialog.qml:156 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222 +msgctxt "@action:label" +msgid "Profile settings" +msgstr "Ajustes del perfil" + +#: plugins/3MFReader/WorkspaceDialog.qml:166 +#: plugins/3MFReader/WorkspaceDialog.qml:238 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246 +msgctxt "@action:label" +msgid "Name" +msgstr "Nombre" + +#: plugins/3MFReader/WorkspaceDialog.qml:172 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263 +msgctxt "@action:label" +msgid "Intent" +msgstr "Intent" + +#: plugins/3MFReader/WorkspaceDialog.qml:178 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230 +msgctxt "@action:label" +msgid "Not in profile" +msgstr "No está en el perfil" + +#: plugins/3MFReader/WorkspaceDialog.qml:179 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235 +msgctxt "@action:label" +msgid "%1 override" +msgid_plural "%1 overrides" +msgstr[0] "%1 sobrescrito" +msgstr[1] "%1 sobrescritos" + +#: plugins/3MFReader/WorkspaceDialog.qml:185 +msgctxt "@action:label" +msgid "Derivative from" +msgstr "Derivado de" + +#: plugins/3MFReader/WorkspaceDialog.qml:186 +msgctxt "@action:label" +msgid "%1, %2 override" +msgid_plural "%1, %2 overrides" +msgstr[0] "%1, %2 sobrescrito" +msgstr[1] "%1, %2 sobrescritos" + +#: plugins/3MFReader/WorkspaceDialog.qml:226 +msgctxt "@action:label" +msgid "Material settings" +msgstr "Ajustes del material" + +#: plugins/3MFReader/WorkspaceDialog.qml:280 +msgctxt "@action:label" +msgid "Setting visibility" +msgstr "Visibilidad de los ajustes" + +#: plugins/3MFReader/WorkspaceDialog.qml:290 +msgctxt "@action:label" +msgid "Mode" +msgstr "Modo" + +#: plugins/3MFReader/WorkspaceDialog.qml:296 +msgctxt "@action:label" +msgid "%1 out of %2" +msgstr "%1 de un total de %2" + +#: plugins/3MFReader/WorkspaceDialog.qml:321 +msgctxt "@action:warning" +msgid "Loading a project will clear all models on the build plate." +msgstr "Si carga un proyecto, se borrarán todos los modelos de la placa de impresión." + +#: plugins/3MFReader/WorkspaceDialog.qml:367 +msgctxt "@label" +msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." +msgstr "El material utilizado en este proyecto no está instalado actualmente en Cura.
    Instale el perfil del material y vuelva a abrir el proyecto." + +#: plugins/3MFReader/WorkspaceDialog.qml:392 +msgctxt "@action:button" +msgid "Open" +msgstr "Abrir" + +#: plugins/3MFReader/WorkspaceDialog.qml:398 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "Abrir el proyecto de todos modos" + +#: plugins/3MFReader/WorkspaceDialog.qml:407 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "Instalar material no instalado" + +#: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33 +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "Archivo 3MF" + +#: plugins/3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "Lector de 3MF" + +#: plugins/3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Proporciona asistencia para leer archivos 3MF." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "El complemento del Escritor de 3MF está dañado." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Aún no hay espacio de trabajo en el que escribir. Añada una impresora primero." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "No tiene permiso para escribir el espacio de trabajo aquí." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "El sistema operativo no permite guardar un archivo de proyecto en esta ubicación ni con este nombre de archivo." + +#: plugins/3MFWriter/ThreeMFWriter.py:240 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Error al escribir el archivo 3MF." + +#: plugins/3MFWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "Archivo 3MF" + +#: plugins/3MFWriter/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Archivo 3MF del proyecto de Cura" + +#: plugins/3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "Escritor de 3MF" + +#: plugins/3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Proporciona asistencia para escribir archivos 3MF." + +#: plugins/AMFReader/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "Archivo AMF" + +#: plugins/AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "Lector de AMF" + +#: plugins/AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Proporciona asistencia para leer archivos AMF." + +#: plugins/CuraDrive/plugin.json +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Realice una copia de seguridad de su configuración y restáurela." + +#: plugins/CuraDrive/plugin.json +msgctxt "name" +msgid "Cura Backups" +msgstr "Copias de seguridad de Cura" + +#: plugins/CuraDrive/src/CreateBackupJob.py:25 +msgctxt "@info:title" +msgid "Backups" +msgstr "Copias de seguridad" + +#: plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Se ha producido un error al cargar su copia de seguridad." + +#: plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "Creando copia de seguridad..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "Se ha producido un error al crear la copia de seguridad." + +#: plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Cargando su copia de seguridad..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Su copia de seguridad ha terminado de cargarse." + +#: plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "La copia de seguridad excede el tamaño máximo de archivo." + +#: plugins/CuraDrive/src/DriveApiService.py:86 +#: plugins/CuraDrive/src/RestoreBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Se ha producido un error al intentar restaurar su copia de seguridad." + +#: plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Administrar copias de seguridad" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "¿Desea obtener más información?" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Realizar copia de seguridad ahora" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Copia de seguridad automática" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Crea una copia de seguridad de forma automática cada día que inicia Cura." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 +msgctxt "@button" +msgid "Restore" +msgstr "Restaurar" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Eliminar copia de seguridad" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "¿Seguro que desea eliminar esta copia de seguridad? Esta acción no se puede deshacer." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Restaurar copia de seguridad" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "Deberá reiniciar Cura para restaurar su copia de seguridad. ¿Desea cerrar Cura ahora?" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Versión de Cura" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Máquinas" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Materiales" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Perfiles" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Complementos" + +#: plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Copias de seguridad de Cura" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "Mis copias de seguridad" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Actualmente no posee ninguna copia de seguridad. Utilice el botón de Realizar copia de seguridad ahora para crear una." + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Durante la fase de vista previa, solo se mostrarán 5 copias de seguridad. Elimine una copia de seguridad para ver copias de seguridad antiguas." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Realice una copia de seguridad y sincronice sus ajustes de Cura." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 +#: plugins/Marketplace/resources/qml/Marketplace.qml:312 +#: resources/qml/Account/GeneralOperations.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180 +#: resources/qml/WelcomePages/CloudContent.qml:212 +msgctxt "@button" +msgid "Sign in" +msgstr "Iniciar sesión" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "Se ha producido un error inesperado al realizar el corte o slicing. Le rogamos que informe sobre este error en nuestro rastreador de problemas." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:163 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "Error en el corte" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Informar del error" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:169 +msgctxt "@message:description" +msgid "Report a bug on UltiMaker Cura's issue tracker." +msgstr "Informar de un error en el rastreador de problemas de UltiMaker Cura." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:416 +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "No se puede segmentar con el material actual, ya que es incompatible con el dispositivo o la configuración seleccionados." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:417 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:450 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:477 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:501 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:514 +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "No se puede segmentar" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:449 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "Los ajustes actuales no permiten la segmentación. Los siguientes ajustes contienen errores: {0}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:476 +#, 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 "Los ajustes de algunos modelos no permiten la segmentación. Los siguientes ajustes contienen errores en uno o más modelos: {error_labels}." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:488 +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "No se puede segmentar porque la torre auxiliar o la posición o posiciones de preparación no son válidas." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:500 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "No se puede segmentar porque hay objetos asociados al extrusor %s que está deshabilitado." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:510 +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 "" +"Revise la configuración y compruebe si sus modelos:\n" +"- Se integran en el volumen de impresión\n" +"- Están asignados a un extrusor activado\n" +"- No están todos definidos como mallas modificadoras" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Procesando capas" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Información" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Backend de CuraEngine" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine." + +#: plugins/CuraProfileReader/__init__.py:14 +#: plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Perfil de cura" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Lector de perfiles de Cura" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Proporciona asistencia para la importación de perfiles de Cura." + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Escritor de perfiles de Cura" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Proporciona asistencia para exportar perfiles de Cura." + +#: plugins/DigitalLibrary/plugin.json +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." + +#: plugins/DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 +msgctxt "@option" +msgid "Save Cura project and print file" +msgstr "Guardar el proyecto de Cura e imprimir archivo" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Guardar el proyecto de Cura" + +#: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19 +msgctxt "@text Placeholder for the username if it has been deleted" +msgid "deleted user" +msgstr "usuario borrado" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "No se pudo acceder a la información actualizada." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, 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 "Puede que haya nuevas funciones o correcciones de errores disponibles para {machine_name}. Si no dispone de la última versión disponible, se recomienda actualizar el firmware de la impresora a la versión {latest_version}." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "Nuevo firmware de %s estable disponible" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Cómo actualizar" + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Busca actualizaciones de firmware." + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Buscador de actualizaciones de firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Actualizar firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "Actualizar firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 +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 "El firmware es la parte del software que se ejecuta directamente en la impresora 3D. Este firmware controla los motores de pasos, regula la temperatura y, finalmente, hace que funcione la impresora." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "El firmware que se envía con las nuevas impresoras funciona, pero las nuevas versiones suelen tener más funciones y mejoras." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Actualización de firmware automática" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Cargar firmware personalizado" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "No se puede actualizar el firmware porque no hay conexión con la impresora." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 +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." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Seleccionar firmware personalizado" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Actualización del firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 +msgctxt "@label" +msgid "Updating firmware." +msgstr "Actualización del firmware." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Actualización del firmware completada." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "Se ha producido un error al actualizar el firmware debido a un error desconocido." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "Se ha producido un error al actualizar el firmware debido a un error de comunicación." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "Se ha producido un error al actualizar el firmware debido a un error de entrada/salida." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "Se ha producido un error al actualizar el firmware porque falta el firmware." + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "name" +msgid "Firmware Updater" +msgstr "Actualizador de firmware" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Proporciona opciones a la máquina para actualizar el firmware." + +#: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "Archivo GCode comprimido" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lector de GCode comprimido" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lee GCode de un archivo comprimido." + +#: plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "GCodeGzWriter no es compatible con el modo texto." + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Escritor de GCode comprimido" + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Escribe GCode en un archivo comprimido." + +#: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14 +#: plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "Archivo GCode" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Lector de perfiles GCode" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode." + +#: plugins/GCodeReader/FlavorParser.py:359 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "Analizar GCode" + +#: plugins/GCodeReader/FlavorParser.py:361 +#: plugins/GCodeReader/FlavorParser.py:515 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "Datos de GCode" + +#: plugins/GCodeReader/FlavorParser.py:513 +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 "Asegúrese de que el GCode es adecuado para la impresora y para su configuración antes de enviar el archivo a la misma. Es posible que la representación del GCode no sea precisa." + +#: plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "Archivo G" + +#: plugins/GCodeReader/plugin.json +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Permite cargar y visualizar archivos GCode." + +#: plugins/GCodeReader/plugin.json +msgctxt "name" +msgid "G-code Reader" +msgstr "Lector de GCode" + +#: plugins/GCodeWriter/GCodeWriter.py:75 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "GCodeWriter no es compatible con el modo sin texto." + +#: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Prepare el Gcode antes de la exportación." + +#: plugins/GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "Escritor de GCode" + +#: plugins/GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Escribe GCode en un archivo." + +#: plugins/ImageReader/ConfigUI.qml:14 +msgctxt "@title:window" +msgid "Convert Image" +msgstr "Convertir imagen" + +#: plugins/ImageReader/ConfigUI.qml:33 +msgctxt "@action:label" +msgid "Height (mm)" +msgstr "Altura (mm)" + +#: plugins/ImageReader/ConfigUI.qml:56 +msgctxt "@info:tooltip" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "La distancia máxima de cada píxel desde la \"Base\"." + +#: plugins/ImageReader/ConfigUI.qml:66 +msgctxt "@action:label" +msgid "Base (mm)" +msgstr "Base (mm)" + +#: plugins/ImageReader/ConfigUI.qml:90 +msgctxt "@info:tooltip" +msgid "The base height from the build plate in millimeters." +msgstr "La altura de la base desde la placa de impresión en milímetros." + +#: plugins/ImageReader/ConfigUI.qml:100 +msgctxt "@action:label" +msgid "Width (mm)" +msgstr "Anchura (mm)" + +#: plugins/ImageReader/ConfigUI.qml:124 +msgctxt "@info:tooltip" +msgid "The width in millimeters on the build plate" +msgstr "La anchura en milímetros en la placa de impresión" + +#: plugins/ImageReader/ConfigUI.qml:134 +msgctxt "@action:label" +msgid "Depth (mm)" +msgstr "Profundidad (mm)" + +#: plugins/ImageReader/ConfigUI.qml:158 +msgctxt "@info:tooltip" +msgid "The depth in millimeters on the build plate" +msgstr "La profundidad en milímetros en la placa de impresión" + +#: plugins/ImageReader/ConfigUI.qml:187 +msgctxt "@item:inlistbox" +msgid "Darker is higher" +msgstr "Cuanto más oscuro más alto" + +#: plugins/ImageReader/ConfigUI.qml:188 +msgctxt "@item:inlistbox" +msgid "Lighter is higher" +msgstr "Cuanto más claro más alto" + +#: plugins/ImageReader/ConfigUI.qml:195 +msgctxt "@info:tooltip" +msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." +msgstr "Para las litofanías, los píxeles oscuros deben coincidir con ubicaciones más gruesas para bloquear la entrada de más luz. En los mapas de altura, los píxeles más claros se corresponden con un terreno más alto, por lo que dichos píxeles deben coincidir con ubicaciones más gruesas en el modelo 3D generado." + +#: plugins/ImageReader/ConfigUI.qml:205 +msgctxt "@action:label" +msgid "Color Model" +msgstr "Modelo de color" + +#: plugins/ImageReader/ConfigUI.qml:224 +msgctxt "@item:inlistbox" +msgid "Linear" +msgstr "Lineal" + +#: plugins/ImageReader/ConfigUI.qml:225 +msgctxt "@item:inlistbox" +msgid "Translucency" +msgstr "Translucidez" + +#: plugins/ImageReader/ConfigUI.qml:232 +msgctxt "@info:tooltip" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "Para las litofanías hay disponible un modelo logarítmico simple para la translucidez. En los mapas de altura, los valores de los píxeles corresponden a las alturas linealmente." + +#: plugins/ImageReader/ConfigUI.qml:242 +msgctxt "@action:label" +msgid "1mm Transmittance (%)" +msgstr "Transmitancia de 1 mm (%)" + +#: plugins/ImageReader/ConfigUI.qml:263 +msgctxt "@info:tooltip" +msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." +msgstr "El porcentaje de luz que penetra en una impresión con un grosor de 1 milímetro. Bajar este valor aumenta el contraste en las regiones oscuras y disminuye el contraste en las regiones claras de la imagen." + +#: plugins/ImageReader/ConfigUI.qml:274 +msgctxt "@action:label" +msgid "Smoothing" +msgstr "Suavizado" + +#: plugins/ImageReader/ConfigUI.qml:298 +msgctxt "@info:tooltip" +msgid "The amount of smoothing to apply to the image." +msgstr "La cantidad de suavizado que se aplica a la imagen." + +#: plugins/ImageReader/ConfigUI.qml:329 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 +#: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25 +msgctxt "@action:button" +msgid "OK" +msgstr "Aceptar" + +#: plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "Imagen JPG" + +#: plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "Imagen JPEG" + +#: plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "Imagen PNG" + +#: plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "Imagen BMP" + +#: plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "Imagen GIF" + +#: plugins/ImageReader/plugin.json +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." + +#: plugins/ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Lector de imágenes" + +#: plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Perfiles de Cura 15.04" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Lector de perfiles antiguos de Cura" + +#: plugins/LegacyProfileReader/plugin.json +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." + +#: plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Ajustes de la máquina" + +#: plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Impresora" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Ajustes de la tobera" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Tamaño de la tobera" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Diámetro del material compatible" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Desplazamiento de la tobera sobre el eje X" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Desplazamiento de la tobera sobre el eje Y" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Número de ventilador de enfriamiento" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "GCode inicial del extrusor" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "GCode final del extrusor" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Ajustes de la impresora" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (anchura)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (profundidad)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (altura)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Forma de la placa de impresión" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 +msgctxt "@label" +msgid "Origin at center" +msgstr "Origen en el centro" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 +msgctxt "@label" +msgid "Heated bed" +msgstr "Plataforma calentada" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Volumen de impresión calentado" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 +msgctxt "@label" +msgid "G-code flavor" +msgstr "Tipo de GCode" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Ajustes del cabezal de impresión" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 +msgctxt "@label" +msgid "X min" +msgstr "X mín" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 +msgctxt "@label" +msgid "Y min" +msgstr "Y mín" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 +msgctxt "@label" +msgid "X max" +msgstr "X máx" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 +msgctxt "@label" +msgid "Y max" +msgstr "Y máx" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Altura del puente" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Número de extrusores" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:342 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Aplicar compensaciones del extrusor a GCode" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:390 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "Iniciar GCode" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:401 +msgctxt "@title:label" +msgid "End G-code" +msgstr "Finalizar GCode" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Acción Ajustes de la máquina" + +#: plugins/MachineSettingsAction/plugin.json +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.)." + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "¿Desea sincronizar el material y los paquetes de software con su cuenta?" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:95 +msgctxt "@info:title" +msgid "Changes detected from your UltiMaker account" +msgstr "Se han detectado cambios desde su cuenta de UltiMaker" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 +msgctxt "@action:button" +msgid "Sync" +msgstr "Sincronizar" + +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "Sincronizando..." + +#: plugins/Marketplace/CloudSync/LicenseModel.py:12 +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:79 +msgctxt "@button" +msgid "Decline" +msgstr "Rechazar" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:13 +#: resources/qml/WelcomePages/UserAgreementContent.qml:53 +msgctxt "@button" +msgid "Agree" +msgstr "Estoy de acuerdo" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:77 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Acuerdo de licencia de complemento" + +#: plugins/Marketplace/CloudSync/LicensePresenter.py:42 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Rechazar y eliminar de la cuenta" + +#: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "Tiene que salir y reiniciar {} para que los cambios surtan efecto." + +#: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "Error al descargar los complementos {}" + +#: plugins/Marketplace/LocalPackageList.py:28 +msgctxt "@label" +msgid "Installed Plugins" +msgstr "Complementos instalados" + +#: plugins/Marketplace/LocalPackageList.py:29 +msgctxt "@label" +msgid "Installed Materials" +msgstr "Materiales instalados" + +#: plugins/Marketplace/LocalPackageList.py:33 +msgctxt "@label" +msgid "Bundled Plugins" +msgstr "Complementos agrupados" + +#: plugins/Marketplace/LocalPackageList.py:34 +msgctxt "@label" +msgid "Bundled Materials" +msgstr "Materiales agrupados" + +#: plugins/Marketplace/PackageModel.py:43 +msgctxt "@label:property" +msgid "Unknown Package" +msgstr "Paquete desconocido" + +#: plugins/Marketplace/PackageModel.py:66 +msgctxt "@label:property" +msgid "Unknown Author" +msgstr "Autor desconocido" + +#: plugins/Marketplace/PackageModel.py:95 +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 "No se ha podido encontrar el paquete de materiales asociado con el proyecto de Cura en Ultimaker Marketplace. Utilice la definicin parcial del perfil del material que aparece en el archivo del proyecto de Cura bajo su propia responsabilidad." + +#: plugins/Marketplace/RemotePackageList.py:117 +msgctxt "@info:error" +msgid "Could not interpret the server's response." +msgstr "Imposible interpretar la respuesta del servidor." + +#: plugins/Marketplace/RemotePackageList.py:148 +msgctxt "@info:error" +msgid "Could not reach Marketplace." +msgstr "Imposible acceder a Marketplace." + +#: plugins/Marketplace/plugin.json +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." + +#: plugins/Marketplace/plugin.json +msgctxt "name" +msgid "Marketplace" +msgstr "Marketplace" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 +msgctxt "@title" +msgid "Changes from your account" +msgstr "Cambios desde su cuenta" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +msgctxt "@button" +msgid "Dismiss" +msgstr "Descartar" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +#: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 +#: resources/qml/WelcomePages/WhatsNewContent.qml:175 +msgctxt "@button" +msgid "Next" +msgstr "Siguiente" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "Se añadirán los siguientes paquetes:" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "Los siguientes paquetes no se pueden instalar debido a una versión no compatible de Cura:" + +#: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "Instalar los materiales que faltan" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "Acuerdo de licencia de complemento" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:47 +msgctxt "@text" +msgid "Please read and agree with the plugin licence." +msgstr "Lea y acepte la licencia del complemento." + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "Aceptar" + +#: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Gestionar paquetes" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:12 +msgctxt "@header" +msgid "Manage packages" +msgstr "Gestionar paquetes" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:16 +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." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" +msgid "Loading..." +msgstr "Cargando..." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "Complementos" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "Materiales" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "Buscar en el navegador" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:271 +msgctxt "@button" +msgid "In order to use the package you will need to restart Cura" +msgstr "Para utilizar el paquete, deberá reiniciar Cura" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:279 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "Salir de %1" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:300 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" +msgstr "Inicie sesión para obtener complementos y materiales verificados para UltiMaker Cura Enterprise" + +#: plugins/Marketplace/resources/qml/Materials.qml:8 +#: plugins/Marketplace/resources/qml/MissingPackages.qml:8 +msgctxt "@header" +msgid "Install Materials" +msgstr "Instalar materiales" + +#: plugins/Marketplace/resources/qml/Materials.qml:12 +msgctxt "@text" +msgid "Select and install material profiles optimised for your UltiMaker 3D printers." +msgstr "Seleccione e instale perfiles de material optimizados para sus impresoras 3D UltiMaker." + +#: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "Tiene que aceptar la licencia para instalar el paquete" + +#: plugins/Marketplace/resources/qml/OnboardBanner.qml:101 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205 +msgctxt "@button:label" +msgid "Learn More" +msgstr "Más Información" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170 +msgctxt "@label Is followed by the name of an author" +msgid "By" +msgstr "Por" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Disable" +msgstr "Deshabilitar" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Enable" +msgstr "Habilitar" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242 +msgctxt "@button" +msgid "Downgrading..." +msgstr "Degradando..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243 +msgctxt "@button" +msgid "Downgrade" +msgstr "Degradar" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247 +msgctxt "@button" +msgid "Installing..." +msgstr "Instalando..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248 +msgctxt "@button" +msgid "Install" +msgstr "Instalar" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252 +msgctxt "@button" +msgid "Uninstall" +msgstr "Desinstalar" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Update" +msgstr "Actualizar" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Updating..." +msgstr "Actualizando..." + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "Detalles del paquete" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Atrás" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "Descripción" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "Impresoras compatibles" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "No hay información sobre la compatibilidad" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "Materiales de soporte compatibles" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "Ninguno" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:193 +msgctxt "@header" +msgid "Compatible with Material Station" +msgstr "Compatible con Material Station" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "No" +msgstr "No" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "Yes" +msgstr "Sí" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:219 +msgctxt "@header" +msgid "Optimized for Air Manager" +msgstr "Optimizado para Air Manager" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Visit plug-in website" +msgstr "Visite el sitio web de complementos" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Website" +msgstr "Sitio web" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:252 +msgctxt "@button" +msgid "Buy spool" +msgstr "Comprar bobina" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:261 +msgctxt "@button" +msgid "Safety datasheet" +msgstr "Hoja de datos de seguridad" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:270 +msgctxt "@button" +msgid "Technical datasheet" +msgstr "Ficha técnica" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Failed to load packages:" +msgstr "Error al cargar los paquetes:" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Retry?" +msgstr "¿Desea volver a intentarlo?" + +#: plugins/Marketplace/resources/qml/Packages.qml:167 +msgctxt "@button" +msgid "Loading" +msgstr "Cargando" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No more results to load" +msgstr "No hay más resultados para cargar" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No results found with current filter" +msgstr "No se han encontrado resultados con el filtro actual" + +#: plugins/Marketplace/resources/qml/Packages.qml:226 +msgctxt "@button" +msgid "Load more" +msgstr "Cargar más" + +#: plugins/Marketplace/resources/qml/Plugins.qml:8 +msgctxt "@header" +msgid "Install Plugins" +msgstr "Instalar complementos" + +#: plugins/Marketplace/resources/qml/Plugins.qml:12 +msgctxt "@text" +msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." +msgstr "Optimice su flujo de trabajo y personalice su experiencia de UltiMaker Cura con complementos proporcionados por nuestra increíble comunidad de usuarios." + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 +msgctxt "@info" +msgid "UltiMaker Verified Plug-in" +msgstr "Complemento verificado por UltiMaker" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "UltiMaker Certified Material" +msgstr "Material certificado por UltiMaker" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 +msgctxt "@info" +msgid "UltiMaker Verified Package" +msgstr "Paquete verificado por UltiMaker" + +#: plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "Asistente del modelo 3D" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -836,823 +2383,1092 @@ msgstr "" "

    Obtenga más información sobre cómo garantizar la mejor calidad y fiabilidad de impresión posible.

    \n" "

    Ver guía de impresión de calidad

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 -#, 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 "El archivo del proyecto {0} contiene un tipo de máquina desconocida {1}. No se puede importar la máquina, en su lugar, se importarán los modelos." +#: plugins/ModelChecker/plugin.json +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." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "Abrir archivo de proyecto" +#: plugins/ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Comprobador de modelos" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "El archivo de proyecto {0} está repentinamente inaccesible: {1}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:659 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "No se puede abrir el archivo de proyecto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:658 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "El archivo de proyecto {0} está dañado: {1}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:711 -#, 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 "El archivo de proyecto {0} se ha creado con perfiles desconocidos para esta versión de Ultimaker Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Recomendado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:214 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:390 -msgctxt "@info:status" -msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 -msgctxt "@info:title" -msgid "Material profiles not installed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 -msgctxt "@action:button" -msgid "Install Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "Archivo 3MF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "El complemento del Escritor de 3MF está dañado." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "Aún no hay espacio de trabajo en el que escribir. Añada una impresora primero." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "No tiene permiso para escribir el espacio de trabajo aquí." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "El sistema operativo no permite guardar un archivo de proyecto en esta ubicación ni con este nombre de archivo." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:238 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Error al escribir el archivo 3MF." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:282 -#, python-brace-format -msgctxt "@error:material" -msgid "It was not possible to store material package information in project file: {material}. This project may not open correctly on other systems." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 -msgctxt "@info:title" -msgid "Failed to save material package information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "Archivo 3MF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Archivo 3MF del proyecto de Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Archivo AMF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 -msgctxt "@info:title" -msgid "Backups" -msgstr "Copias de seguridad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Se ha producido un error al cargar su copia de seguridad." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Creando copia de seguridad..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "Se ha producido un error al crear la copia de seguridad." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Cargando su copia de seguridad..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Su copia de seguridad ha terminado de cargarse." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "La copia de seguridad excede el tamaño máximo de archivo." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Se ha producido un error al intentar restaurar su copia de seguridad." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Administrar copias de seguridad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "Se ha producido un error inesperado al realizar el corte o slicing. Le rogamos que informe sobre este error en nuestro rastreador de problemas." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "Error en el corte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 -msgctxt "@message:button" -msgid "Report a bug" -msgstr "Informar del error" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 -msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." -msgstr "Informar de un error en el rastreador de problemas de Ultimaker Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:400 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "No se puede segmentar con el material actual, ya que es incompatible con el dispositivo o la configuración seleccionados." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:401 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:434 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:461 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:473 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:485 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:498 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "No se puede segmentar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:433 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "Los ajustes actuales no permiten la segmentación. Los siguientes ajustes contienen errores: {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:460 -#, 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 "Los ajustes de algunos modelos no permiten la segmentación. Los siguientes ajustes contienen errores en uno o más modelos: {error_labels}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:472 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "No se puede segmentar porque la torre auxiliar o la posición o posiciones de preparación no son válidas." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:484 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "No se puede segmentar porque hay objetos asociados al extrusor %s que está deshabilitado." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 -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 "" -"Revise la configuración y compruebe si sus modelos:\n" -" - Se integran en el volumen de impresión\n" -"- Están asignados a un extrusor activado\n" -" - No están todos definidos como mallas modificadoras" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Procesando capas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 -msgctxt "@info:title" -msgid "Information" -msgstr "Información" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Perfil de cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" -msgid "Could not access update information." -msgstr "No se pudo acceder a la información actualizada." +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 "" +"Asegúrese de que la impresora está conectada:\n" +"- Compruebe que la impresora está encendida.\n" +"- Compruebe que la impresora está conectada a la red.\n" +"- Compruebe que ha iniciado sesión para ver impresoras conectadas a la nube." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, 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 "Puede que haya nuevas funciones o correcciones de errores disponibles para {machine_name}. Si no dispone de la última versión disponible, se recomienda actualizar el firmware de la impresora a la versión {latest_version}." +#: plugins/MonitorStage/MonitorMain.qml:113 +msgctxt "@info" +msgid "Please connect your printer to the network." +msgstr "Conecte su impresora a la red." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s stable firmware available" -msgstr "Nuevo firmware de %s estable disponible" +#: plugins/MonitorStage/MonitorMain.qml:148 +msgctxt "@label link to technical assistance" +msgid "View user manuals online" +msgstr "Ver manuales de usuario en línea" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "Cómo actualizar" +#: plugins/MonitorStage/MonitorMain.qml:164 +msgctxt "@info" +msgid "In order to monitor your print from Cura, please connect the printer." +msgstr "Para supervisar la copia impresa desde Cura, conecte la impresora." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Actualizar firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Archivo GCode comprimido" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter no es compatible con el modo texto." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Archivo GCode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:350 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Analizar GCode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:506 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "Datos de GCode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 -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 "Asegúrese de que el GCode es adecuado para la impresora y para su configuración antes de enviar el archivo a la misma. Es posible que la representación del GCode no sea precisa." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Archivo G" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter no es compatible con el modo sin texto." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Prepare el Gcode antes de la exportación." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Imagen JPG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Imagen JPEG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Imagen PNG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Imagen BMP" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Imagen GIF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Perfiles de Cura 15.04" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Ajustes de la máquina" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "¿Desea sincronizar el material y los paquetes de software con su cuenta?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Se han detectado cambios desde su cuenta de Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 -msgctxt "@action:button" -msgid "Sync" -msgstr "Sincronizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Sincronizando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:12 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:79 -msgctxt "@button" -msgid "Decline" -msgstr "Rechazar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:13 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53 -msgctxt "@button" -msgid "Agree" -msgstr "Estoy de acuerdo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Acuerdo de licencia de complemento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Rechazar y eliminar de la cuenta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "Tiene que salir y reiniciar {} para que los cambios surtan efecto." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "Error al descargar los complementos {}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:28 -msgctxt "@label" -msgid "Installed Plugins" -msgstr "Complementos instalados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:29 -msgctxt "@label" -msgid "Installed Materials" -msgstr "Materiales instalados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:33 -msgctxt "@label" -msgid "Bundled Plugins" -msgstr "Complementos agrupados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:34 -msgctxt "@label" -msgid "Bundled Materials" -msgstr "Materiales agrupados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:43 -msgctxt "@label:property" -msgid "Unknown Package" -msgstr "Paquete desconocido" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:66 -msgctxt "@label:property" -msgid "Unknown Author" -msgstr "Autor desconocido" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:117 -msgctxt "@info:error" -msgid "Could not interpret the server's response." -msgstr "Imposible interpretar la respuesta del servidor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:148 -msgctxt "@info:error" -msgid "Could not reach Marketplace." -msgstr "Imposible acceder a Marketplace." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 +#: plugins/MonitorStage/__init__.py:14 msgctxt "@item:inmenu" msgid "Monitor" msgstr "Supervisar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: plugins/MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Fase de supervisión" + +#: plugins/MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Proporciona una fase de supervisión en Cura." + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 +msgctxt "@label" +msgid "Mesh Type" +msgstr "Tipo de malla" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 +msgctxt "@label" +msgid "Normal model" +msgstr "Modelo normal" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 +msgctxt "@label" +msgid "Print as support" +msgstr "Imprimir como soporte" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Modificar los ajustes de las superposiciones" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "No es compatible con superposiciones" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 +msgctxt "@item:inlistbox" +msgid "Infill mesh only" +msgstr "Solo malla de relleno" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161 +msgctxt "@item:inlistbox" +msgid "Cutting mesh" +msgstr "Cortar malla" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386 +msgctxt "@action:button" +msgid "Select settings" +msgstr "Seleccionar ajustes" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Seleccionar ajustes o personalizar este modelo" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtrar..." + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Mostrar todo" + +#: plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" msgid "Per Model Settings" msgstr "Ajustes por modelo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +#: plugins/PerObjectSettingsTool/__init__.py:15 msgctxt "@info:tooltip" msgid "Configure Per Model Settings" msgstr "Configurar ajustes por modelo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Herramienta de ajustes por modelo" + +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Proporciona los ajustes por modelo." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Posprocesamiento" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "Modificar GCode" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Complemento de posprocesamiento" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 +msgctxt "@label" +msgid "Post Processing Scripts" +msgstr "Secuencias de comandos de posprocesamiento" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "Añadir secuencia de comando" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 +msgctxt "@label" +msgid "Settings" +msgstr "Ajustes" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Cambiar las secuencias de comandos de posprocesamiento." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "La siguiente secuencia de comandos está activa:" +msgstr[1] "Las siguientes secuencias de comandos están activas:" + +#: plugins/PostProcessingPlugin/plugin.json +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" + +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Posprocesamiento" + +#: plugins/PrepareStage/PrepareMenu.qml:74 +msgctxt "@button" +msgid "Add printer" +msgstr "Agregar impresora" + +#: plugins/PrepareStage/PrepareMenu.qml:90 +msgctxt "@button" +msgid "Manage printers" +msgstr "Administrar impresoras" + +#: plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "Preparar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 +#: plugins/PrepareStage/plugin.json +msgctxt "name" +msgid "Prepare Stage" +msgstr "Fase de preparación" + +#: plugins/PrepareStage/plugin.json +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Proporciona una fase de preparación en Cura." + +#: plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" msgid "Preview" msgstr "Vista previa" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +#: plugins/PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Fase de vista previa" + +#: plugins/PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Proporciona una fase de vista previa en Cura." + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Guardar en unidad extraíble" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Guardar en unidad extraíble {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "¡No hay formatos de archivo disponibles con los que escribir!" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 #, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Guardando en unidad extraíble {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 msgctxt "@info:title" msgid "Saving" msgstr "Guardando" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "No se pudo guardar en {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 #, 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 "No se pudo encontrar un nombre de archivo al tratar de escribir en {device}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 #, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "No se pudo guardar en unidad extraíble {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 #, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Guardado en unidad extraíble {0} como {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 msgctxt "@info:title" msgid "File Saved" msgstr "Archivo guardado" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 msgctxt "@action:button" msgid "Eject" msgstr "Expulsar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 #, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Expulsar dispositivo extraíble {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 #, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Expulsado {0}. Ahora puede retirar de forma segura la unidad." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 msgctxt "@info:title" msgid "Safely Remove Hardware" msgstr "Retirar de forma segura el hardware" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 #, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Error al expulsar {0}. Es posible que otro programa esté utilizando la unidad." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +#: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 msgctxt "@item:intext" msgid "Removable Drive" msgstr "Unidad extraíble" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "Cura no muestra correctamente las capas si la impresión de alambre está habilitada." +#: plugins/RemovableDriveOutputDevice/plugin.json +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." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Vista de simulación" +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Complemento de dispositivo de salida de unidad extraíble" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 +#: plugins/SentryLogger/plugin.json +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" + +#: plugins/SentryLogger/plugin.json +msgctxt "name" +msgid "Sentry Logger" +msgstr "Registro de Sentry" + +#: plugins/SimulationView/SimulationView.py:129 msgctxt "@info:status" msgid "Nothing is shown because you need to slice first." msgstr "No se muestra nada porque primero hay que cortar." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 +#: plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "No layers to show" msgstr "No hay capas para mostrar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 +#: plugins/SimulationView/SimulationView.py:132 +#: plugins/SolidView/SolidView.py:74 msgctxt "@info:option_text" msgid "Do not show this message again" msgstr "No volver a mostrar este mensaje" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:18 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:47 +msgctxt "@label" +msgid "Color scheme" +msgstr "Combinación de colores" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Color del material" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Tipo de línea" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:112 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Velocidad" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:116 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Grosor de la capa" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:120 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Ancho de línea" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:124 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Flujo" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:164 +msgctxt "@label" +msgid "Compatibility Mode" +msgstr "Modo de compatibilidad" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:231 +msgctxt "@label" +msgid "Travels" +msgstr "Desplazamientos" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:237 +msgctxt "@label" +msgid "Helpers" +msgstr "Asistentes" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:243 +msgctxt "@label" +msgid "Shell" +msgstr "Perímetro" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:249 +msgctxt "@label" +msgid "Infill" +msgstr "Relleno" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:257 +msgctxt "@label" +msgid "Starts" +msgstr "Inicios" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:304 +msgctxt "@label" +msgid "Only Show Top Layers" +msgstr "Mostrar solo capas superiores" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:313 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "Mostrar cinco capas detalladas en la parte superior" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:326 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Superior o inferior" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:330 +msgctxt "@label" +msgid "Inner Wall" +msgstr "Pared interior" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:397 +msgctxt "@label" +msgid "min" +msgstr "mín" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:462 +msgctxt "@label" +msgid "max" +msgstr "máx" + +#: plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Vista de capas" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +#: plugins/SimulationView/plugin.json +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Proporciona la vista previa de los datos de las capas cortadas." + +#: plugins/SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "Vista de simulación" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Más información sobre la recopilación de datos anónimos" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 +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 recopila datos anónimos para mejorar la calidad de impresión y la experiencia de usuario. A continuación, hay un ejemplo de todos los datos que se comparten:" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "No deseo enviar datos anónimos" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Permitir el envío de datos anónimos" + +#: plugins/SliceInfoPlugin/SliceInfo.py:95 msgctxt "@text" msgid "Unable to read example data file." msgstr "No se puede leer el archivo de datos de ejemplo." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Info de la segmentación" + +#: plugins/SliceInfoPlugin/plugin.json +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." + +#: plugins/SolidView/SolidView.py:71 msgctxt "@info:status" msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." msgstr "Las áreas resaltadas indican que faltan superficies o son inusuales. Corrija los errores en el modelo y vuelva a abrirlo en Cura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +#: plugins/SolidView/SolidView.py:73 msgctxt "@info:title" msgid "Model Errors" msgstr "Errores de modelo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +#: plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" msgstr "Vista de sólidos" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +#: plugins/SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Proporciona una vista de malla sólida normal." + +#: plugins/SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Vista de sólidos" + +#: plugins/SupportEraser/__init__.py:12 msgctxt "@label" msgid "Support Blocker" msgstr "Bloqueador de soporte" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 +#: plugins/SupportEraser/__init__.py:13 msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "Cree un volumen que no imprima los soportes." -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 +#: plugins/SupportEraser/plugin.json +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" + +#: plugins/SupportEraser/plugin.json +msgctxt "name" +msgid "Support Eraser" +msgstr "Borrador de soporte" + +#: plugins/TrimeshReader/__init__.py:15 msgctxt "@item:inlistbox 'Open' is part of the name of this file format." msgid "Open Compressed Triangle Mesh" msgstr "Open Compressed Triangle Mesh" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: plugins/TrimeshReader/__init__.py:19 msgctxt "@item:inlistbox" msgid "COLLADA Digital Asset Exchange" msgstr "COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: plugins/TrimeshReader/__init__.py:23 msgctxt "@item:inlistbox" msgid "glTF Binary" msgstr "glTF binario" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: plugins/TrimeshReader/__init__.py:27 msgctxt "@item:inlistbox" msgid "glTF Embedded JSON" msgstr "glTF incrustado JSON" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: plugins/TrimeshReader/__init__.py:36 msgctxt "@item:inlistbox" msgid "Stanford Triangle Format" msgstr "Stanford Triangle Format" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: plugins/TrimeshReader/__init__.py:40 msgctxt "@item:inlistbox" msgid "Compressed COLLADA Digital Asset Exchange" msgstr "COLLADA Digital Asset Exchange comprimido" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Paquete de formato Ultimaker" +#: plugins/TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Proporciona asistencia para leer archivos 3D." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 +#: plugins/TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Lector Trimesh" + +#: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "UltiMaker Format Package" +msgstr "Paquete de formato UltiMaker" + +#: plugins/UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Proporciona soporte para la lectura de paquetes de formato Ultimaker." + +#: plugins/UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "Lector de UFP" + +#: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80 +#: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115 +#: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180 msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "No se puede escribir en el archivo UFP:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Nivelar placa de impresión" +#: plugins/UFPWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Permite la escritura de paquetes de formato Ultimaker." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Seleccionar actualizaciones" +#: plugins/UFPWriter/plugin.json +msgctxt "name" +msgid "UFP Writer" +msgstr "Escritor de UFP" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Gestiona las conexiones de red de las impresoras UltiMaker conectadas." + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Conexión en red de UltiMaker" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Conectar con la impresora en red" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Seleccione la impresora en la lista siguiente:" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +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 "Para imprimir directamente a través de la red, asegúrese de que la impresora está conectada a la red mediante un cable de red o conéctela a la red wifi. Si no conecta Cura con la impresora, también puede utilizar una unidad USB para transferir archivos GCode a la impresora." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 +msgctxt "@action:button" +msgid "Edit" +msgstr "Editar" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 +#: resources/qml/Preferences/MachinesPage.qml:153 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:186 +#: resources/qml/Preferences/ProfilesPage.qml:321 +msgctxt "@action:button" +msgid "Remove" +msgstr "Eliminar" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Actualizar" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 +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" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 +msgctxt "@label" +msgid "Type" +msgstr "Tipo" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 +msgctxt "@label" +msgid "Firmware version" +msgstr "Versión de firmware" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 +msgctxt "@label" +msgid "Address" +msgstr "Dirección" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Esta impresora no está configurada para alojar un grupo de impresoras." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Esta impresora aloja un grupo de %1 impresoras." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "La impresora todavía no ha respondido en esta dirección." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" +msgid "Connect" +msgstr "Conectar" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Dirección IP no válida" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Introduzca una dirección IP válida." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Dirección de la impresora" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Introduzca la dirección IP de la impresora en la red." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Cambios de configuración" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 +msgctxt "@action:button" +msgid "Override" +msgstr "Anular" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "Es necesario realizar el siguiente cambio de configuración en la impresora asignada %1:" +msgstr[1] "Es necesario realizar los siguientes cambios de configuración en la impresora asignada %1:" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "Se ha asignado la impresora %1, pero el trabajo tiene una configuración de material desconocido." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Cambiar material %1, de %2 a %3." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "Cargar %3 como material %1 (no se puede anular)." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Cambiar print core %1, de %2 a %3." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "Al sobrescribir la configuración se usarán los ajustes especificados con la configuración de impresora existente. Esto podría provocar un fallo en la impresión." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@label" +msgid "Move to top" +msgstr "Mover al principio" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155 +msgctxt "@label" +msgid "Delete" +msgstr "Borrar" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186 +#: resources/qml/MonitorButton.qml:284 +msgctxt "@label" +msgid "Resume" +msgstr "Reanudar" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188 +msgctxt "@label" +msgid "Pausing..." +msgstr "Pausando..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190 +msgctxt "@label" +msgid "Resuming..." +msgstr "Reanudando..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192 +#: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288 +msgctxt "@label" +msgid "Pause" +msgstr "Pausar" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Abort" +msgstr "Cancelar" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Aborting..." +msgstr "Cancelando..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218 +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 "¿Seguro que desea mover %1 al principio de la cola?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Mover trabajo de impresión al principio" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "¿Seguro que desea borrar %1?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Borrar trabajo de impresión" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "¿Seguro que desea cancelar %1?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237 +#: resources/qml/MonitorButton.qml:326 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Cancela la impresión" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Impresora no disponible" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 +msgctxt "@label" +msgid "First available" +msgstr "Primera disponible" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Actualice el firmware de la impresora para gestionar la cola de forma remota." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +msgctxt "@label:status" +msgid "Aborted" +msgstr "Cancelado" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 +msgctxt "@label:status" +msgid "Finished" +msgstr "Terminado" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Preparando..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "Cancelando..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +msgctxt "@label:status" +msgid "Failed" +msgstr "Error" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Pausando..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Paused" +msgstr "En pausa" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Reanudando..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Action required" +msgstr "Acción requerida" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Termina el %1 a las %2" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Administrar impresora" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280 +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 "Las transmisiones de la cámara web para impresoras en la nube no se pueden ver en UltiMaker Cura. Haga clic en \"Administrar impresora\" para ir a Ultimaker Digital Factory y ver esta cámara web." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Cargando..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "No disponible" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "No se puede conectar" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Idle" +msgstr "Sin actividad" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361 +msgctxt "@label:status" +msgid "Printing" +msgstr "Imprimiendo" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402 +msgctxt "@label" +msgid "Untitled" +msgstr "Sin título" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417 +msgctxt "@label" +msgid "Anonymous" +msgstr "Anónimo" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Debe cambiar la configuración" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452 +msgctxt "@action:button" +msgid "Details" +msgstr "Detalles" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 +msgctxt "@label" +msgid "Queued" +msgstr "En cola" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Gestionar en el navegador" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "No hay trabajos de impresión en la cola. Segmentar y enviar un trabajo para añadir uno." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "Print jobs" +msgstr "Trabajos de impresión" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108 +msgctxt "@label" +msgid "Total print time" +msgstr "Tiempo de impresión total" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117 +msgctxt "@label" +msgid "Waiting for" +msgstr "Esperando" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117 +msgctxt "@info" +msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" +msgstr "Supervise sus impresoras desde cualquier lugar con Ultimaker Digital Factory" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129 +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Ver impresoras en Digital Factory" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Imprimir a través de la red" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 +msgctxt "@action:button" +msgid "Print" +msgstr "Imprimir" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 +msgctxt "@label" +msgid "Printer selection" +msgstr "Selección de la impresora" + +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162 msgctxt "@action:button" msgid "Print via cloud" msgstr "Imprimir mediante cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Imprimir mediante cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Conectado mediante cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276 msgctxt "@action:button" msgid "Monitor print" msgstr "Supervisar la impresión" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278 msgctxt "@action:tooltip" msgid "Track the print in Ultimaker Digital Factory" msgstr "Haga un seguimiento de la impresión en Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Código de error desconocido al cargar el trabajo de impresión: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "Se ha detectado una nueva impresora en su cuenta de Ultimaker" -msgstr[1] "Se han detectado nuevas impresoras en su cuenta de Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:242 -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "Añadiendo la impresora {name} ({model}) de su cuenta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:261 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "... y {0} más" -msgstr[1] "... y {0} más" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:266 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "Impresoras añadidas desde Digital Factory:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:334 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "La conexión a la nube no está disponible para una impresora" -msgstr[1] "La conexión a la nube no está disponible para algunas impresoras" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:343 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "Esta impresora no está vinculada a Digital Factory:" -msgstr[1] "Estas impresoras no están vinculadas a Digital Factory:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:348 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:440 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:352 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "Para establecer una conexión, visite {website_link}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:356 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "Mantener las configuraciones de la impresora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "Eliminar impresoras" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:442 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425 #, 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} se eliminará hasta la próxima sincronización de la cuenta." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:443 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426 #, 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 "Para eliminar {printer_name} permanentemente, visite {digital_factory_link}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:444 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427 #, 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 "¿Seguro que desea eliminar {printer_name} temporalmente?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474 msgctxt "@title:window" msgid "Remove printers?" msgstr "¿Eliminar impresoras?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477 #, python-brace-format msgctxt "@label" msgid "" @@ -1668,14 +3484,14 @@ msgstr[1] "" "Está a punto de eliminar {0} impresoras de Cura. Esta acción no se puede deshacer.\n" "¿Seguro que desea continuar?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be undone.\n" "Are you sure you want to continue?" msgstr "Está a punto de eliminar todas las impresoras de Cura. Esta acción no se puede deshacer.¿Seguro que desea continuar?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, python-brace-format msgctxt "@info:status" msgid "" @@ -1685,2493 +3501,1375 @@ msgstr "" "Su impresora {printer_name} podría estar conectada a través de la nube.\n" " Administre su cola de impresión y supervise las impresiones desde cualquier lugar conectando su impresora a Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 msgctxt "@info:title" msgid "Are you ready for cloud printing?" msgstr "¿Está preparado para la impresión en la nube?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 msgctxt "@action" msgid "Get started" msgstr "Empezar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24 msgctxt "@action" msgid "Learn more" msgstr "Más información" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 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." +msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Está intentando conectarse a una impresora que no está ejecutando Ultimaker Connect. Actualice la impresora al firmware más reciente." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 msgctxt "@info:title" msgid "Update your printer" msgstr "Actualice su impresora" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 #, 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 ha detectado perfiles de material que aún no estaban instalados en la impresora host del grupo {0}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Enviando materiales a la impresora" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "Se ha detectado una nueva impresora en su cuenta de Ultimaker" +msgstr[1] "Se han detectado nuevas impresoras en su cuenta de Ultimaker" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29 +#, python-brace-format +msgctxt "info:status Filled in with printer name and printer model." +msgid "Adding printer {name} ({model}) from your account" +msgstr "Añadiendo la impresora {name} ({model}) de su cuenta" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "... y {0} más" +msgstr[1] "... y {0} más" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "Impresoras añadidas desde Digital Factory:" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 #, 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 "Está intentando conectarse a {0} pero ese no es el host de un grupo. Puede visitar la página web para configurarlo como host de grupo." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 msgctxt "@info:title" msgid "Not a group host" msgstr "No es un host de grupo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 msgctxt "@action" msgid "Configure group" msgstr "Configurar grupo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18 +msgctxt "@info:status" +msgid "You will receive a confirmation via email when the print job is approved" +msgstr "Recibirá una confirmación por correo electrónico cuando se apruebe el trabajo de impresión" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19 +msgctxt "@info:title" +msgid "The print job was successfully submitted" +msgstr "El trabajo de impresión se ha enviado correctamente" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22 +msgctxt "@action" +msgid "Manage print jobs" +msgstr "Administrar trabajos de impresión" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 msgctxt "@info:status" msgid "Please wait until the current job has been sent." msgstr "Espere hasta que se envíe el trabajo actual." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 msgctxt "@info:title" msgid "Print error" msgstr "Error de impresión" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "No se han podido cargar los datos en la impresora." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 msgctxt "@info:title" msgid "Network error" msgstr "Error de red" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 msgctxt "@info:status" msgid "Sending Print Job" msgstr "Enviando trabajo de impresión" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 msgctxt "@info:status" msgid "Uploading print job to printer." msgstr "Cargando el trabajo de impresión a la impresora." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 msgctxt "@info:status" msgid "Print job queue is full. The printer can't accept a new job." msgstr "La cola de trabajos de impresión está llena. La impresora no puede aceptar trabajos nuevos." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 msgctxt "@info:title" msgid "Queue Full" msgstr "Cola llena" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "El trabajo de impresión se ha enviado correctamente a la impresora." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 msgctxt "@info:title" msgid "Data Sent" msgstr "Fecha de envío" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "Esta impresora no está vinculada a Digital Factory:" +msgstr[1] "Estas impresoras no están vinculadas a Digital Factory:" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "Para establecer una conexión, visite {website_link}" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "La conexión a la nube no está disponible para una impresora" +msgstr[1] "La conexión a la nube no está disponible para algunas impresoras" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "Mantener las configuraciones de la impresora" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "Eliminar impresoras" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "Imprimir a través de la red" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "Imprime a través de la red" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64 msgctxt "@info:status" msgid "Connected over the network" msgstr "Conectado a través de la red" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 msgctxt "@action" msgid "Connect via Network" msgstr "Conectar a través de la red" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +#: plugins/UM3NetworkPrinting/src/Utils.py:27 msgctxt "@info:status" msgid "tomorrow" msgstr "mañana" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +#: plugins/UM3NetworkPrinting/src/Utils.py:30 msgctxt "@info:status" msgid "today" msgstr "hoy" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:42 msgctxt "@item:inmenu" msgid "USB printing" msgstr "Impresión USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:43 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print via USB" msgstr "Imprimir mediante USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:44 msgctxt "@info:tooltip" msgid "Print via USB" msgstr "Imprimir mediante USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:80 msgctxt "@info:status" msgid "Connected via USB" msgstr "Conectado mediante USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:110 msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" msgstr "Se está realizando una impresión con USB, si cierra Cura detendrá la impresión. ¿Desea continuar?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:135 msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Todavía hay una impresión en curso. Cura no puede iniciar otra impresión a través de USB hasta que se haya completado la impresión anterior." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:136 msgctxt "@message" msgid "Print in Progress" msgstr "Impresión en curso" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "Archivo X3D" +#: plugins/USBPrinting/plugin.json +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." -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Vista de rayos X" +#: plugins/USBPrinting/plugin.json +msgctxt "name" +msgid "USB printing" +msgstr "Impresión USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 -msgctxt "@title:window" -msgid "Open Project" -msgstr "Abrir proyecto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "Actualizar existente" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "Crear nuevo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:59 -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "Resumen: proyecto de Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108 -msgctxt "@info:tooltip" -msgid "How should the conflict in the machine be resolved?" -msgstr "¿Cómo debería solucionarse el conflicto en la máquina?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:95 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Ajustes de la impresora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:104 -msgctxt "@action:label" -msgid "Type" -msgstr "Tipo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:192 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -msgctxt "@action:label" -msgid "Printer Group" -msgstr "Grupo de impresoras" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:217 -msgctxt "@info:tooltip" -msgid "How should the conflict in the profile be resolved?" -msgstr "¿Cómo debería solucionarse el conflicto en el perfil?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:220 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Ajustes del perfil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:250 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:375 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:244 -msgctxt "@action:label" -msgid "Name" -msgstr "Nombre" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:268 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:261 -msgctxt "@action:label" -msgid "Intent" -msgstr "Intent" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:286 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:228 -msgctxt "@action:label" -msgid "Not in profile" -msgstr "No está en el perfil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:292 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:233 -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "%1 sobrescrito" -msgstr[1] "%1 sobrescritos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 -msgctxt "@action:label" -msgid "Derivative from" -msgstr "Derivado de" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:311 -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "%1, %2 sobrescrito" -msgstr[1] "%1, %2 sobrescritos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:333 -msgctxt "@info:tooltip" -msgid "How should the conflict in the material be resolved?" -msgstr "¿Cómo debería solucionarse el conflicto en el material?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:360 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Ajustes del material" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:396 -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "Visibilidad de los ajustes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 -msgctxt "@action:label" -msgid "Mode" -msgstr "Modo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 -msgctxt "@action:label" -msgid "Visible settings:" -msgstr "Ajustes visibles:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "%1 de un total de %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:447 -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "Si carga un proyecto, se borrarán todos los modelos de la placa de impresión." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 -msgctxt "@action:button" -msgid "Open" -msgstr "Abrir" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 -msgctxt "@action:button" -msgid "Open project anyway" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 -msgctxt "@action:button" -msgid "Install missing material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "¿Desea obtener más información?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Realizar copia de seguridad ahora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Copia de seguridad automática" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Crea una copia de seguridad de forma automática cada día que inicia Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 -msgctxt "@button" -msgid "Restore" -msgstr "Restaurar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Eliminar copia de seguridad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "¿Seguro que desea eliminar esta copia de seguridad? Esta acción no se puede deshacer." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Restaurar copia de seguridad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "Deberá reiniciar Cura para restaurar su copia de seguridad. ¿Desea cerrar Cura ahora?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Versión de Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Máquinas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materiales" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Perfiles" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Complementos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Copias de seguridad de Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Mis copias de seguridad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Actualmente no posee ninguna copia de seguridad. Utilice el botón de Realizar copia de seguridad ahora para crear una." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Durante la fase de vista previa, solo se mostrarán 5 copias de seguridad. Elimine una copia de seguridad para ver copias de seguridad antiguas." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Realice una copia de seguridad y sincronice sus ajustes de Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:212 -msgctxt "@button" -msgid "Sign in" -msgstr "Iniciar sesión" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 -msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 -msgctxt "@option" -msgid "Save Cura project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Actualizar firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 -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 "El firmware es la parte del software que se ejecuta directamente en la impresora 3D. Este firmware controla los motores de pasos, regula la temperatura y, finalmente, hace que funcione la impresora." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 -msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "El firmware que se envía con las nuevas impresoras funciona, pero las nuevas versiones suelen tener más funciones y mejoras." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Actualización de firmware automática" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Cargar firmware personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "No se puede actualizar el firmware porque no hay conexión con la impresora." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 -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." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Seleccionar firmware personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Actualización del firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Actualización del firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Actualización del firmware completada." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Se ha producido un error al actualizar el firmware debido a un error desconocido." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Se ha producido un error al actualizar el firmware debido a un error de comunicación." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Se ha producido un error al actualizar el firmware debido a un error de entrada/salida." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Se ha producido un error al actualizar el firmware porque falta el firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:14 -msgctxt "@title:window" -msgid "Convert Image" -msgstr "Convertir imagen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 -msgctxt "@action:label" -msgid "Height (mm)" -msgstr "Altura (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "La distancia máxima de cada píxel desde la \"Base\"." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 -msgctxt "@action:label" -msgid "Base (mm)" -msgstr "Base (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 -msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "La altura de la base desde la placa de impresión en milímetros." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 -msgctxt "@action:label" -msgid "Width (mm)" -msgstr "Anchura (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 -msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate" -msgstr "La anchura en milímetros en la placa de impresión" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 -msgctxt "@action:label" -msgid "Depth (mm)" -msgstr "Profundidad (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 -msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "La profundidad en milímetros en la placa de impresión" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 -msgctxt "@item:inlistbox" -msgid "Darker is higher" -msgstr "Cuanto más oscuro más alto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -msgctxt "@item:inlistbox" -msgid "Lighter is higher" -msgstr "Cuanto más claro más alto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 -msgctxt "@info:tooltip" -msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." -msgstr "Para las litofanías, los píxeles oscuros deben coincidir con ubicaciones más gruesas para bloquear la entrada de más luz. En los mapas de altura, los píxeles más claros se corresponden con un terreno más alto, por lo que dichos píxeles deben coincidir con ubicaciones más gruesas en el modelo 3D generado." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:205 -msgctxt "@action:label" -msgid "Color Model" -msgstr "Modelo de color" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:224 -msgctxt "@item:inlistbox" -msgid "Linear" -msgstr "Lineal" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 -msgctxt "@item:inlistbox" -msgid "Translucency" -msgstr "Translucidez" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 -msgctxt "@info:tooltip" -msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." -msgstr "Para las litofanías hay disponible un modelo logarítmico simple para la translucidez. En los mapas de altura, los valores de los píxeles corresponden a las alturas linealmente." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 -msgctxt "@action:label" -msgid "1mm Transmittance (%)" -msgstr "Transmitancia de 1 mm (%)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 -msgctxt "@info:tooltip" -msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." -msgstr "El porcentaje de luz que penetra en una impresión con un grosor de 1 milímetro. Bajar este valor aumenta el contraste en las regiones oscuras y disminuye el contraste en las regiones claras de la imagen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 -msgctxt "@action:label" -msgid "Smoothing" -msgstr "Suavizado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:298 -msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "La cantidad de suavizado que se aplica a la imagen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:143 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:80 -msgctxt "@action:button" -msgid "OK" -msgstr "Aceptar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Impresora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Ajustes de la tobera" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Tamaño de la tobera" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Diámetro del material compatible" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Desplazamiento de la tobera sobre el eje X" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Desplazamiento de la tobera sobre el eje Y" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Número de ventilador de enfriamiento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "GCode inicial del extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "GCode final del extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Ajustes de la impresora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (anchura)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (profundidad)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (altura)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Forma de la placa de impresión" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 -msgctxt "@label" -msgid "Origin at center" -msgstr "Origen en el centro" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 -msgctxt "@label" -msgid "Heated bed" -msgstr "Plataforma calentada" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Volumen de impresión calentado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 -msgctxt "@label" -msgid "G-code flavor" -msgstr "Tipo de GCode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Ajustes del cabezal de impresión" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 -msgctxt "@label" -msgid "X min" -msgstr "X mín" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 -msgctxt "@label" -msgid "Y min" -msgstr "Y mín" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 -msgctxt "@label" -msgid "X max" -msgstr "X máx" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 -msgctxt "@label" -msgid "Y max" -msgstr "Y máx" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Altura del puente" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Número de extrusores" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Aplicar compensaciones del extrusor a GCode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "Iniciar GCode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400 -msgctxt "@title:label" -msgid "End G-code" -msgstr "Finalizar GCode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 -msgctxt "@title" -msgid "Changes from your account" -msgstr "Cambios desde su cuenta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -msgctxt "@button" -msgid "Dismiss" -msgstr "Descartar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:118 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:175 -msgctxt "@button" -msgid "Next" -msgstr "Siguiente" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "Se añadirán los siguientes paquetes:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "Los siguientes paquetes no se pueden instalar debido a una versión no compatible de Cura:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 -msgctxt "@title" -msgid "Install missing Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 -msgctxt "@button" -msgid "Plugin license agreement" -msgstr "Acuerdo de licencia de complemento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47 -msgctxt "@text" -msgid "Please read and agree with the plugin licence." -msgstr "Lea y acepte la licencia del complemento." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 -msgctxt "@button" -msgid "Accept" -msgstr "Aceptar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 -msgctxt "@header" -msgid "Manage packages" -msgstr "Gestionar paquetes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15 -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." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 -msgctxt "@info:tooltip" -msgid "Manage packages" -msgstr "Gestionar paquetes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 -msgctxt "@title" -msgid "Loading..." -msgstr "Cargando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 -msgctxt "@button" -msgid "Plugins" -msgstr "Complementos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 -msgctxt "@button" -msgid "Materials" -msgstr "Materiales" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 -msgctxt "@info" -msgid "Search in the browser" -msgstr "Buscar en el navegador" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:271 -msgctxt "@button" -msgid "In order to use the package you will need to restart Cura" -msgstr "Para utilizar el paquete, deberá reiniciar Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:279 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Salir de %1" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:8 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MissingPackages.qml:8 -msgctxt "@header" -msgid "Install Materials" -msgstr "Instalar materiales" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 -msgctxt "@text" -msgid "Select and install material profiles optimised for your Ultimaker 3D printers." -msgstr "Seleccione e instale perfiles de material optimizados para sus impresoras 3D Ultimaker." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "Tiene que aceptar la licencia para instalar el paquete" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:101 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:207 -msgctxt "@button:label" -msgid "Learn More" -msgstr "Más Información" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:172 -msgctxt "@label Is followed by the name of an author" -msgid "By" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Enable" -msgstr "Habilitar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Disable" -msgstr "Deshabilitar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 -msgctxt "@button" -msgid "Downgrading..." -msgstr "Degradando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 -msgctxt "@button" -msgid "Downgrade" -msgstr "Degradar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 -msgctxt "@button" -msgid "Installing..." -msgstr "Instalando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 -msgctxt "@button" -msgid "Install" -msgstr "Instalar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 -msgctxt "@button" -msgid "Uninstall" -msgstr "Desinstalar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Updating..." -msgstr "Actualizando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Update" -msgstr "Actualizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 -msgctxt "@header" -msgid "Package details" -msgstr "Detalles del paquete" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 -msgctxt "@button:tooltip" -msgid "Back" -msgstr "Atrás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 -msgctxt "@header" -msgid "Description" -msgstr "Descripción" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 -msgctxt "@header" -msgid "Compatible printers" -msgstr "Impresoras compatibles" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:134 -msgctxt "@info" -msgid "No compatibility information" -msgstr "No hay información sobre la compatibilidad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:152 -msgctxt "@header" -msgid "Compatible support materials" -msgstr "Materiales de soporte compatibles" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176 -msgctxt "@info No materials" -msgid "None" -msgstr "Ninguno" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:193 -msgctxt "@header" -msgid "Compatible with Material Station" -msgstr "Compatible con Material Station" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "Yes" -msgstr "Sí" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "No" -msgstr "No" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:219 -msgctxt "@header" -msgid "Optimized for Air Manager" -msgstr "Optimizado para Air Manager" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Visit plug-in website" -msgstr "Visite el sitio web de complementos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Website" -msgstr "Sitio web" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:252 -msgctxt "@button" -msgid "Buy spool" -msgstr "Comprar bobina" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:261 -msgctxt "@button" -msgid "Safety datasheet" -msgstr "Hoja de datos de seguridad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:270 -msgctxt "@button" -msgid "Technical datasheet" -msgstr "Ficha técnica" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Failed to load packages:" -msgstr "Error al cargar los paquetes:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Retry?" -msgstr "¿Desea volver a intentarlo?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:167 -msgctxt "@button" -msgid "Loading" -msgstr "Cargando" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No more results to load" -msgstr "No hay más resultados para cargar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No results found with current filter" -msgstr "No se han encontrado resultados con el filtro actual" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:226 -msgctxt "@button" -msgid "Load more" -msgstr "Cargar más" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8 -msgctxt "@header" -msgid "Install Plugins" -msgstr "Instalar complementos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12 -msgctxt "@text" -msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users." -msgstr "Optimice su flujo de trabajo y personalice su experiencia de Ultimaker Cura con complementos proporcionados por nuestra increíble comunidad de usuarios." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 -msgctxt "@info" -msgid "Ultimaker Verified Plug-in" -msgstr "Complemento verificado por Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 -msgctxt "@info" -msgid "Ultimaker Certified Material" -msgstr "Material certificado por Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 -msgctxt "@info" -msgid "Ultimaker Verified Package" -msgstr "Paquete verificado por Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 -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 "" -"Asegúrese de que la impresora está conectada:\n" -"- Compruebe que la impresora está encendida.\n" -"- Compruebe que la impresora está conectada a la red.\n" -"- Compruebe que ha iniciado sesión para ver impresoras conectadas a la nube." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 -msgctxt "@info" -msgid "Please connect your printer to the network." -msgstr "Conecte su impresora a la red." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 -msgctxt "@label link to technical assistance" -msgid "View user manuals online" -msgstr "Ver manuales de usuario en línea" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:163 -msgctxt "@info" -msgid "In order to monitor your print from Cura, please connect the printer." -msgstr "Para supervisar la copia impresa desde Cura, conecte la impresora." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Tipo de malla" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 -msgctxt "@label" -msgid "Normal model" -msgstr "Modelo normal" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 -msgctxt "@label" -msgid "Print as support" -msgstr "Imprimir como soporte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Modificar los ajustes de las superposiciones" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "No es compatible con superposiciones" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Solo malla de relleno" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Cortar malla" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Seleccionar ajustes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Seleccionar ajustes o personalizar este modelo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtrar..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Mostrar todo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Complemento de posprocesamiento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Secuencias de comandos de posprocesamiento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" -msgid "Add a script" -msgstr "Añadir secuencia de comando" +msgid "Level build plate" +msgstr "Nivelar placa de impresión" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 -msgctxt "@label" -msgid "Settings" -msgstr "Ajustes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:459 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Cambiar las secuencias de comandos de posprocesamiento." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:463 -msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "La siguiente secuencia de comandos está activa:" -msgstr[1] "Las siguientes secuencias de comandos están activas:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:47 -msgctxt "@label" -msgid "Color scheme" -msgstr "Combinación de colores" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Color del material" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Tipo de línea" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Velocidad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Grosor de la capa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Ancho de línea" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Flujo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Modo de compatibilidad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 -msgctxt "@label" -msgid "Travels" -msgstr "Desplazamientos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 -msgctxt "@label" -msgid "Helpers" -msgstr "Asistentes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 -msgctxt "@label" -msgid "Shell" -msgstr "Perímetro" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:64 -msgctxt "@label" -msgid "Infill" -msgstr "Relleno" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Starts" -msgstr "Inicios" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Mostrar solo capas superiores" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Mostrar cinco capas detalladas en la parte superior" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Superior o inferior" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Pared interior" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 -msgctxt "@label" -msgid "min" -msgstr "mín" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 -msgctxt "@label" -msgid "max" -msgstr "máx" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Más información sobre la recopilación de datos anónimos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 -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 recopila datos anónimos para mejorar la calidad de impresión y la experiencia de usuario. A continuación, hay un ejemplo de todos los datos que se comparten:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "No deseo enviar datos anónimos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Permitir el envío de datos anónimos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 msgctxt "@title" msgid "Build Plate Leveling" msgstr "Nivelación de la placa de impresión" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 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 "Ahora puede ajustar la placa de impresión para asegurarse de que sus impresiones salgan muy bien. Al hacer clic en 'Mover a la siguiente posición', la tobera se trasladará a las diferentes posiciones que se pueden ajustar." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 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 posición: inserte una hoja de papel debajo de la tobera y ajuste la altura de la placa de impresión. La altura de la placa de impresión es correcta cuando el papel queda ligeramente sujeto por la punta de la tobera." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 msgctxt "@action:button" msgid "Start Build Plate Leveling" msgstr "Iniciar nivelación de la placa de impresión" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 msgctxt "@action:button" msgid "Move to Next Position" msgstr "Mover a la siguiente posición" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Seleccione cualquier actualización de Ultimaker Original" +#: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "Seleccionar actualizaciones" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this UltiMaker Original" +msgstr "Seleccione cualquier actualización de UltiMaker Original" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 msgctxt "@label" msgid "Heated Build Plate (official kit or self-built)" msgstr "Placa de impresión caliente (kit oficial o construida por usted mismo)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Conectar con la impresora en red" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -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 "Para imprimir directamente a través de la red, asegúrese de que la impresora está conectada a la red mediante un cable de red o conéctela a la red wifi. Si no conecta Cura con la impresora, también puede utilizar una unidad USB para transferir archivos GCode a la impresora." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Seleccione la impresora en la lista siguiente:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 -msgctxt "@action:button" -msgid "Edit" -msgstr "Editar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:140 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:321 -msgctxt "@action:button" -msgid "Remove" -msgstr "Eliminar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Actualizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 -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" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 -msgctxt "@label" -msgid "Type" -msgstr "Tipo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 -msgctxt "@label" -msgid "Firmware version" -msgstr "Versión de firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 -msgctxt "@label" -msgid "Address" -msgstr "Dirección" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Esta impresora no está configurada para alojar un grupo de impresoras." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Esta impresora aloja un grupo de %1 impresoras." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "La impresora todavía no ha respondido en esta dirección." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 -msgctxt "@action:button" -msgid "Connect" -msgstr "Conectar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Dirección IP no válida" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Introduzca una dirección IP válida." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Dirección de la impresora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Introduzca la dirección IP de la impresora en la red." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Cambios de configuración" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 -msgctxt "@action:button" -msgid "Override" -msgstr "Anular" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "Es necesario realizar el siguiente cambio de configuración en la impresora asignada %1:" -msgstr[1] "Es necesario realizar los siguientes cambios de configuración en la impresora asignada %1:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "Se ha asignado la impresora %1, pero el trabajo tiene una configuración de material desconocido." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Cambiar material %1, de %2 a %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Cargar %3 como material %1 (no se puede anular)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Cambiar print core %1, de %2 a %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Cambiar la placa de impresión a %1 (no se puede anular)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "Al sobrescribir la configuración se usarán los ajustes especificados con la configuración de impresora existente. Esto podría provocar un fallo en la impresión." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:178 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:175 -msgctxt "@label" -msgid "Glass" -msgstr "Vidrio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154 -msgctxt "@label" -msgid "Aluminum" -msgstr "Aluminio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Mover al principio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Borrar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:284 -msgctxt "@label" -msgid "Resume" -msgstr "Reanudar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Pausando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Reanudando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:288 -msgctxt "@label" -msgid "Pause" -msgstr "Pausar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Cancelando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Cancelar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:142 -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 "¿Seguro que desea mover %1 al principio de la cola?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Mover trabajo de impresión al principio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:151 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "¿Seguro que desea borrar %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Borrar trabajo de impresión" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:160 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "¿Seguro que desea cancelar %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Cancela la impresión" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Administrar impresora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:239 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Actualice el firmware de la impresora para gestionar la cola de forma remota." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:275 -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 "Las transmisiones de la cámara web para impresoras en la nube no se pueden ver en Ultimaker Cura. Haga clic en \"Administrar impresora\" para ir a Ultimaker Digital Factory y ver esta cámara web." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Cargando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "No disponible" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "No se puede conectar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347 -msgctxt "@label:status" -msgid "Idle" -msgstr "Sin actividad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Preparando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Printing" -msgstr "Imprimiendo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397 -msgctxt "@label" -msgid "Untitled" -msgstr "Sin título" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:412 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anónimo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:433 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Debe cambiar la configuración" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:447 -msgctxt "@action:button" -msgid "Details" -msgstr "Detalles" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Impresora no disponible" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 -msgctxt "@label" -msgid "First available" -msgstr "Primera disponible" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Cancelado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 -msgctxt "@label:status" -msgid "Finished" -msgstr "Terminado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Cancelando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Failed" -msgstr "Error" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Pausando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Paused" -msgstr "En pausa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Reanudando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Action required" -msgstr "Acción requerida" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Termina el %1 a las %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 -msgctxt "@label" -msgid "Queued" -msgstr "En cola" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Gestionar en el navegador" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:90 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "No hay trabajos de impresión en la cola. Segmentar y enviar un trabajo para añadir uno." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:98 -msgctxt "@label" -msgid "Print jobs" -msgstr "Trabajos de impresión" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107 -msgctxt "@label" -msgid "Total print time" -msgstr "Tiempo de impresión total" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116 -msgctxt "@label" -msgid "Waiting for" -msgstr "Esperando" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Imprimir a través de la red" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 -msgctxt "@action:button" -msgid "Print" -msgstr "Imprimir" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 -msgctxt "@label" -msgid "Printer selection" -msgstr "Selección de la impresora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 +#: plugins/UltimakerMachineActions/plugin.json +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.)." + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Acciones de la máquina UltiMaker" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Actualización de la versión 2.1 a la 2.2" + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Actualización de la versión 2.2 a la 2.4" + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Actualización de la versión 2.5 a la 2.6" + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Actualización de la versión 2.6 a la 2.7" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Actualización de la versión 2.7 a la 3.0" + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Actualización de la versión 3.0 a la 3.1" + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Actualización de la versión 3.2 a la 3.3" + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Actualización de la versión 3.3 a la 3.4" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Actualización de la versión 3.4 a la 3.5" + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Actualización de la versión 3.5 a la 4.0" + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Actualización de la versión 4.0 a la 4.1" + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Actualización de la versión 4.11 a 4.12" + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Actualización de la versión 4.3 a la 5.0" + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Actualización de la versión 4.1 a la 4.2" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Actualización de la versión 4.2 a la 4.3" + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Actualización de la versión 4.3 a la 4.4" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Actualización de la versión 4.4 a la 4.5" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Actualización de la versión 4.5 a la 4.6" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +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" + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +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" + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Actualización de la versión 4.7 a la 4.8" + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Actualización de la versión 4.8 a la 4.9" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Actualización de la versión 4.9 a la 4.10" + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Actualización de la versión 5.2 a la 5.3" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "" + +#: plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "Archivo X3D" + +#: plugins/X3DReader/plugin.json +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Proporciona asistencia para leer archivos X3D." + +#: plugins/X3DReader/plugin.json +msgctxt "name" +msgid "X3D Reader" +msgstr "Lector de X3D" + +#: plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Vista de rayos X" + +#: plugins/XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Proporciona la vista de rayos X." + +#: plugins/XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Vista de rayos X" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Perfiles de material" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Permite leer y escribir perfiles de material basados en XML." + +#: resources/qml/Account/AccountWidget.qml:24 msgctxt "@action:button" msgid "Sign in" msgstr "Iniciar sesión" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: resources/qml/Account/GeneralOperations.qml:19 +#: resources/qml/WelcomePages/CloudContent.qml:64 msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Inicie sesión en la plataforma Ultimaker" +msgid "Sign in to the UltiMaker platform" +msgstr "Inicie sesión en la plataforma UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 +#: resources/qml/Account/GeneralOperations.qml:39 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" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" msgstr "" "- Añada perfiles de materiales y complementos del Marketplace \n" "- Realice copias de seguridad y sincronice los perfiles y complementos de sus materiales \n" -"- Comparta ideas y obtenga ayuda de más de 48 000 usuarios de la comunidad Ultimaker" +"- Comparta ideas y obtenga ayuda de más de 48 000 usuarios de la comunidad UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 +#: resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "Cree una cuenta gratuita de Ultimaker" +msgid "Create a free UltiMaker account" +msgstr "Cree una cuenta gratuita de UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 +#: resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "Comprobando..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 +#: resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "Cuenta sincronizada" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 +#: resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "Se ha producido un error..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 +#: resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "Instalar actualizaciones pendientes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 +#: resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "Buscar actualizaciones de la cuenta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +#: resources/qml/Account/UserOperations.qml:78 msgctxt "@label The argument is a timestamp" msgid "Last update: %1" msgstr "Última actualización: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +#: resources/qml/Account/UserOperations.qml:107 msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Cuenta de Ultimaker" +msgid "UltiMaker Account" +msgstr "Cuenta de UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +#: resources/qml/Account/UserOperations.qml:126 msgctxt "@button" msgid "Sign Out" msgstr "Cerrar sesión" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" msgid "No time estimation available" msgstr "Ningún cálculo de tiempo disponible" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:77 msgctxt "@label" msgid "No cost estimation available" msgstr "Ningún cálculo de costes disponible" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:127 msgctxt "@button" msgid "Preview" msgstr "Vista previa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" msgid "Time estimation" msgstr "Estimación de tiempos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 +#: resources/qml/ActionPanel/PrintJobInformation.qml:107 msgctxt "@label" msgid "Material estimation" msgstr "Estimación de material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:156 +#: resources/qml/ActionPanel/PrintJobInformation.qml:156 msgctxt "@label m for meter" msgid "%1m" msgstr "%1 m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:157 +#: resources/qml/ActionPanel/PrintJobInformation.qml:157 msgctxt "@label g for grams" msgid "%1g" msgstr "%1 g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:54 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Segmentando..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:78 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:78 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "No se puede segmentar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Processing" msgstr "Procesando" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Slice" msgstr "Segmentación" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:115 msgctxt "@label" msgid "Start the slicing process" msgstr "Iniciar el proceso de segmentación" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:132 msgctxt "@button" msgid "Cancel" msgstr "Cancelar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 +#: resources/qml/Actions.qml:81 msgctxt "@action:inmenu" msgid "Show Online Troubleshooting" msgstr "Mostrar resolución de problemas online" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 +#: resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "Alternar pantalla completa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 +#: resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "Salir de modo de pantalla completa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 +#: resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "Des&hacer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 +#: resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "&Rehacer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 +#: resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "&Salir" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 +#: resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "Vista en 3D" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 +#: resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Vista frontal" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 +#: resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "Vista superior" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 +#: resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "Vista inferior" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 +#: resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "Vista del lado izquierdo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 +#: resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "Vista del lado derecho" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 +#: resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Configurar Cura..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 +#: resources/qml/Actions.qml:197 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "&Agregar impresora..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 +#: resources/qml/Actions.qml:203 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "Adm&inistrar impresoras ..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 +#: resources/qml/Actions.qml:210 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Administrar materiales..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:216 -msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate." +#: resources/qml/Actions.qml:218 +msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." msgid "Add more materials from Marketplace" msgstr "Añadir más materiales de Marketplace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 +#: resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "&Actualizar perfil con ajustes o sobrescrituras actuales" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 +#: resources/qml/Actions.qml:233 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "&Descartar cambios actuales" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 +#: resources/qml/Actions.qml:245 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "&Crear perfil a partir de ajustes o sobrescrituras actuales..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 +#: resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "Administrar perfiles..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 +#: resources/qml/Actions.qml:259 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Mostrar &documentación en línea" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 +#: resources/qml/Actions.qml:267 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "Informar de un &error" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 +#: resources/qml/Actions.qml:275 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "Novedades" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 +#: resources/qml/Actions.qml:289 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "Acerca de..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 +#: resources/qml/Actions.qml:296 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "Eliminar selección" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 +#: resources/qml/Actions.qml:306 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "Centrar selección" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 +#: resources/qml/Actions.qml:315 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "Multiplicar selección" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 +#: resources/qml/Actions.qml:324 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Eliminar modelo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 +#: resources/qml/Actions.qml:332 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Ce&ntrar modelo en plataforma" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 +#: resources/qml/Actions.qml:338 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "A&grupar modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 +#: resources/qml/Actions.qml:358 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Desagrupar modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 +#: resources/qml/Actions.qml:368 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "Co&mbinar modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 +#: resources/qml/Actions.qml:378 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&Multiplicar modelo..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 +#: resources/qml/Actions.qml:385 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "Seleccionar todos los modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 +#: resources/qml/Actions.qml:395 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "Borrar placa de impresión" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 +#: resources/qml/Actions.qml:405 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "Recargar todos los modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 +#: resources/qml/Actions.qml:414 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Organizar todos los modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 +#: resources/qml/Actions.qml:422 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Organizar selección" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 +#: resources/qml/Actions.qml:429 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Restablecer las posiciones de todos los modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 +#: resources/qml/Actions.qml:436 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "Restablecer las transformaciones de todos los modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 +#: resources/qml/Actions.qml:445 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Abrir archivo(s)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 +#: resources/qml/Actions.qml:455 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Nuevo proyecto..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 +#: resources/qml/Actions.qml:462 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Mostrar carpeta de configuración" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 +#: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Configurar visibilidad de los ajustes..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 msgctxt "@label:button" msgid "My printers" msgstr "Mis impresoras" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 msgctxt "@tooltip:button" msgid "Monitor printers in Ultimaker Digital Factory." msgstr "Supervise las impresoras de Ultimaker Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Cree proyectos de impresión en Digital Library." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 msgctxt "@label:button" msgid "Print jobs" msgstr "Trabajos de impresión" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 msgctxt "@tooltip:button" msgid "Monitor print jobs and reprint from your print history." msgstr "Supervise los trabajos de impresión y vuelva a imprimir desde su historial de impresión." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." -msgstr "Amplíe Ultimaker Cura con complementos y perfiles de materiales." +msgid "Extend UltiMaker Cura with plugins and material profiles." +msgstr "Amplíe UltiMaker Cura con complementos y perfiles de materiales." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." -msgstr "Conviértase en un experto en impresión 3D con el aprendizaje electrónico de Ultimaker." +msgid "Become a 3D printing expert with UltiMaker e-learning." +msgstr "Conviértase en un experto en impresión 3D con el aprendizaje electrónico de UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Soporte técnico de Ultimaker" +msgid "UltiMaker support" +msgstr "Soporte técnico de UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." -msgstr "Aprenda cómo empezar a utilizar Ultimaker Cura." +msgid "Learn how to get started with UltiMaker Cura." +msgstr "Aprenda cómo empezar a utilizar UltiMaker Cura." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 msgctxt "@label:button" msgid "Ask a question" msgstr "Haga una pregunta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Consulte en la Comunidad Ultimaker." +msgid "Consult the UltiMaker Community." +msgstr "Consulte en la Comunidad UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 msgctxt "@label:button" msgid "Report a bug" msgstr "Informar del error" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Informe a los desarrolladores de que algo no funciona bien." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Visite el sitio web de Ultimaker." +msgid "Visit the UltiMaker website." +msgstr "Visite el sitio web de UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 +#: resources/qml/ColorDialog.qml:110 msgctxt "@label" msgid "Hex" msgstr "Hex" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 +#: resources/qml/Cura.qml:256 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "Este paquete se instalará después de reiniciar." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +#: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14 msgctxt "@title:tab" msgid "General" msgstr "General" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +#: resources/qml/Cura.qml:470 msgctxt "@title:tab" msgid "Settings" msgstr "Ajustes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:468 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:17 +#: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17 msgctxt "@title:tab" msgid "Printers" msgstr "Impresoras" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:470 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70 +#: resources/qml/Cura.qml:474 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:70 msgctxt "@title:tab" msgid "Materials" msgstr "Materiales" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:472 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:57 +#: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57 msgctxt "@title:tab" msgid "Profiles" msgstr "Perfiles" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +#: resources/qml/Cura.qml:581 msgctxt "@title:window %1 is the application name" msgid "Closing %1" msgstr "Cerrando %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:590 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:599 +#: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591 msgctxt "@label %1 is the application name" msgid "Are you sure you want to exit %1?" msgstr "¿Seguro que desea salir de %1?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:637 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 +#: resources/qml/Cura.qml:629 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 msgctxt "@title:window" msgid "Open file(s)" msgstr "Abrir archivo(s)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +#: resources/qml/Cura.qml:734 msgctxt "@window:title" msgid "Install Package" msgstr "Instalar paquete" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +#: resources/qml/Cura.qml:741 msgctxt "@title:window" msgid "Open File(s)" msgstr "Abrir archivo(s)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +#: resources/qml/Cura.qml:743 msgctxt "@text:window" msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." msgstr "Hemos encontrado uno o más archivos de GCode entre los archivos que ha seleccionado. Solo puede abrir los archivos GCode de uno en uno. Si desea abrir un archivo GCode, seleccione solo uno." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:831 +#: resources/qml/Cura.qml:828 msgctxt "@title:window" msgid "Add Printer" msgstr "Agregar impresora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +#: resources/qml/Cura.qml:836 msgctxt "@title:window" msgid "What's New" msgstr "Novedades" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: resources/qml/Cura.qml:890 +msgctxt "@title:window" +msgid "Save Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:891 +msgctxt "@textfield:placeholder" +msgid "New Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:892 +msgctxt "@info" +msgid "Custom profile name:" +msgstr "" + +#: resources/qml/Cura.qml:909 +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 "Solo la configuración modificada por el usuario se guardar en el perfil personalizado.
    El nuevo perfil personalizado heredar las propiedades de %1 para los materiales compatibles." + +#: resources/qml/Cura.qml:917 +msgctxt "@action:button" +msgid "Learn more about Cura print profiles" +msgstr "Más información sobre los perfiles de impresión de Cura" + +#: resources/qml/Cura.qml:926 +msgctxt "@button" +msgid "Save new profile" +msgstr "" + +#: resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "Acerca de %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: resources/qml/Dialogs/AboutDialog.qml:59 msgctxt "@label" msgid "version: %1" msgstr "versión: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: resources/qml/Dialogs/AboutDialog.qml:74 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Solución completa para la impresión 3D de filamento fundido." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: resources/qml/Dialogs/AboutDialog.qml:87 msgctxt "@info:credit" msgid "" -"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura is developed by UltiMaker in cooperation with the community.\n" "Cura proudly uses the following open source projects:" msgstr "" -"Ultimaker B.V. ha desarrollado Cura en cooperación con la comunidad.\n" +"UltiMaker ha desarrollado Cura en cooperación con la comunidad.\n" "Cura se enorgullece de utilizar los siguientes proyectos de código abierto:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label Description for application component" msgid "Graphical user interface" msgstr "Interfaz gráfica de usuario (GUI)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label Description for application component" msgid "Application framework" msgstr "Entorno de la aplicación" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label Description for application component" msgid "G-code generator" msgstr "Generador de GCode" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label Description for application component" msgid "Interprocess communication library" msgstr "Biblioteca de comunicación entre procesos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:142 +msgctxt "@label Description for application component" msgid "Python bindings for libnest2d" msgstr "Enlaces de Python para libnest2d" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label Description for application component" msgid "Polygon packing library, developed by Prusa Research" msgstr "Biblioteca de empaquetado de polígonos, desarrollada por Prusa Research" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:144 +msgctxt "@label Description for application component" msgid "Support library for handling 3MF files" msgstr "Biblioteca de compatibilidad para trabajar con archivos 3MF" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:145 +msgctxt "@label Description for application component" msgid "Support library for file metadata and streaming" msgstr "Biblioteca de compatibilidad para metadatos y transmisión de archivos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Lenguaje de programación" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label Description for application dependency" msgid "GUI framework" msgstr "Entorno de la GUI" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label Description for application dependency" msgid "GUI framework bindings" msgstr "Enlaces del entorno de la GUI" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label Description for application dependency" msgid "C/C++ Binding library" msgstr "Biblioteca de enlaces C/C++" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:152 +msgctxt "@label Description for application dependency" msgid "Data interchange format" msgstr "Formato de intercambio de datos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "Font" msgstr "Fuente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label Description for application dependency" msgid "Polygon clipping library" msgstr "Biblioteca de recorte de polígonos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label Description for application dependency" msgid "JSON parser" -msgstr "" +msgstr "Parser JSON" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:158 +msgctxt "@label Description for application dependency" msgid "Utility functions, including an image loader" -msgstr "" +msgstr "Funciones de utilidades, incluido un cargador de imágenes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:159 +msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" -msgstr "" +msgstr "Biblioteca de utilidades, incluida la generación de Voronoi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:162 +#: resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label Description for application dependency" msgid "Root Certificates for validating SSL trustworthiness" -msgstr "" +msgstr "Certificados de raíz para validar la fiabilidad del SSL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label Description for application dependency" msgid "Compatibility between Python 2 and 3" -msgstr "" +msgstr "Compatibilidad entre Python 2 y 3" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label Description for application dependency" msgid "Support library for system keyring access" msgstr "Biblioteca de soporte para el acceso al llavero del sistema" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label Description for application dependency" msgid "Support library for faster math" msgstr "Biblioteca de apoyo para cálculos más rápidos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label Description for application dependency" msgid "Support library for handling STL files" msgstr "Biblioteca de apoyo para gestionar archivos STL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label Description for application dependency" msgid "Python bindings for Clipper" msgstr "Enlaces de Python para Clipper" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Biblioteca de comunicación en serie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label Description for application dependency" msgid "Support library for scientific computing" msgstr "Biblioteca de apoyo para cálculos científicos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 -msgctxt "@Label" +#: resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@Label Description for application dependency" msgid "Python Error tracking library" msgstr "Biblioteca de seguimiento de errores de Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:172 +msgctxt "@label Description for application dependency" msgid "Support library for handling triangular meshes" msgstr "Biblioteca de compatibilidad para trabajar con mallas triangulares" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:173 +msgctxt "@label Description for application dependency" msgid "ZeroConf discovery library" msgstr "Biblioteca de detección para Zeroconf" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label Description for development tool" msgid "Universal build system configuration" -msgstr "" +msgstr "Configuración del sistema de construcción universal" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label Description for development tool" msgid "Dependency and package manager" -msgstr "" +msgstr "Gestor de dependencias y paquetes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label Description for development tool" msgid "Packaging Python-applications" -msgstr "" +msgstr "Empaquetado de aplicaciones Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:179 +msgctxt "@label Description for development tool" msgid "Linux cross-distribution application deployment" msgstr "Implementación de la aplicación de distribución múltiple de Linux" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:180 +msgctxt "@label Description for development tool" msgid "Generating Windows installers" -msgstr "" +msgstr "Generación de instaladores de Windows" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 msgctxt "@title:window" msgid "Open project file" msgstr "Abrir archivo de proyecto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84 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 "Este es un archivo de proyecto Cura. ¿Le gustaría abrirlo como un proyecto o importar sus modelos?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:90 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91 msgctxt "@text:window" msgid "Remember my choice" msgstr "Recordar mi selección" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105 msgctxt "@action:button" msgid "Open as project" msgstr "Abrir como proyecto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110 msgctxt "@action:button" msgid "Import models" msgstr "Importar modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:17 +msgctxt "@title:window" +msgid "Select Printer" +msgstr "Seleccionar impresora" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:54 +msgctxt "@title:label" +msgid "Compatible Printers" +msgstr "Impresoras compatibles" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:110 +msgctxt "@description" +msgid "No compatible printers, that are currently online, were found." +msgstr "No se han encontrado impresoras compatibles que estén actualmente en línea." + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Descartar o guardar cambios" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:49 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64 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 "" @@ -4179,1433 +4877,1292 @@ msgstr "" "¿Le gustaría mantener estos ajustes cambiados después de cambiar de perfil?\n" "También puede descartar los cambios para cargar los valores predeterminados de'%1'." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90 msgctxt "@title:column" msgid "Profile settings" msgstr "Ajustes del perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92 msgctxt "@title:column" msgid "Current changes" msgstr "Cambios actuales" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:799 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123 +#: resources/qml/Preferences/GeneralPage.qml:820 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Preguntar siempre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Descartar y no volver a preguntar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Guardar y no volver a preguntar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157 msgctxt "@action:button" msgid "Discard changes" msgstr "Descartar los cambios" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164 msgctxt "@action:button" msgid "Keep changes" msgstr "Mantener los cambios" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171 +msgctxt "@action:button" +msgid "Save as new custom profile" +msgstr "" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178 +msgctxt "@action:button" +msgid "Save changes" +msgstr "" + +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 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 "Hemos encontrado uno o más archivos del proyecto entre los archivos que ha seleccionado. Solo puede abrir los archivos de proyecto de uno en uno. Le recomendamos que solo importe modelos de esos archivos. ¿Desea continuar?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 msgctxt "@action:button" msgid "Import all as models" msgstr "Importar todos como modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 +#: resources/qml/Dialogs/RenameDialog.qml:23 +msgctxt "@title:window" +msgid "Rename" +msgstr "Cambiar nombre" + +#: resources/qml/Dialogs/RenameDialog.qml:24 +msgctxt "@info" +msgid "Please provide a new name." +msgstr "Introduzca otro nombre." + +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 msgctxt "@title:window" msgid "Save Project" msgstr "Guardar proyecto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177 msgctxt "@action:label" msgid "Extruder %1" msgstr "Extrusor %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 y material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195 msgctxt "@action:label" msgid "Material" msgstr "Material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "No mostrar resumen de proyecto al guardar de nuevo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298 msgctxt "@action:button" msgid "Save" msgstr "Guardar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -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" -msgstr[0] "Imprimir modelo seleccionado con %1" -msgstr[1] "Imprimir modelos seleccionados con %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:93 +#: resources/qml/JobSpecs.qml:93 msgctxt "@text Print job name" msgid "Untitled" msgstr "Sin título" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 +#: resources/qml/MainWindow/ApplicationMenu.qml:63 +#: resources/qml/Menus/SettingsMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "A&justes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 +#: resources/qml/MainWindow/ApplicationMenu.qml:87 msgctxt "@title:window" msgid "New project" msgstr "Nuevo proyecto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88 +#: resources/qml/MainWindow/ApplicationMenu.qml:88 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 "¿Está seguro de que desea iniciar un nuevo proyecto? Esto borrará la placa de impresión y cualquier ajuste no guardado." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135 +#: resources/qml/MainWindow/MainWindowHeader.qml:135 msgctxt "@action:button" msgid "Marketplace" msgstr "Marketplace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +#: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 msgctxt "@header" msgid "Configurations" msgstr "Configuraciones" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Esta configuración no se encuentra disponible porque %1 es un perfil desconocido. Visite %2 para descargar el perfil de materiales correcto." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 msgctxt "@label" msgid "Marketplace" msgstr "Marketplace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 msgctxt "@label" msgid "Loading available configurations from the printer..." msgstr "Cargando configuraciones disponibles desde la impresora..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 msgctxt "@label" msgid "The configurations are not available because the printer is disconnected." msgstr "Las configuraciones no se encuentran disponibles porque la impresora no está conectada." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 msgctxt "@tooltip" msgid "The configuration of this extruder is not allowed, and prohibits slicing." msgstr "La configuración de este extrusor no está permitida y evita el corte." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 msgctxt "@tooltip" msgid "There are no profiles matching the configuration of this extruder." msgstr "No hay perfiles que coincidan con la configuración de este extrusor." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 msgctxt "@label" msgid "Select configuration" msgstr "Seleccionar configuración" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 msgctxt "@label" msgid "Configurations" msgstr "Configuraciones" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 msgctxt "@header" msgid "Custom" msgstr "Personalizado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:62 -msgctxt "@label" -msgid "Printer" -msgstr "Impresora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:217 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173 msgctxt "@label" msgid "Enabled" msgstr "Habilitado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222 msgctxt "@label" msgid "Material" msgstr "Material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348 msgctxt "@label" msgid "Use glue for better adhesion with this material combination." msgstr "Utilice pegamento con esta combinación de materiales para lograr una mejor adhesión." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:29 +#: resources/qml/Menus/ContextMenu.qml:29 msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "Imprimir modelo seleccionado con:" msgstr[1] "Imprimir modelos seleccionados con:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:92 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Multiplicar modelo seleccionado" msgstr[1] "Multiplicar modelos seleccionados" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:123 msgctxt "@label" msgid "Number of Copies" msgstr "Número de copias" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/EditMenu.qml:12 +#: resources/qml/Menus/EditMenu.qml:12 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "&Edición" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ExtensionMenu.qml:13 +#: resources/qml/Menus/ExtensionMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "E&xtensiones" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 +#: resources/qml/Menus/FileMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "&Archivo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:45 +#: resources/qml/Menus/FileMenu.qml:45 msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Guardar proyecto..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:78 +#: resources/qml/Menus/FileMenu.qml:78 msgctxt "@title:menu menubar:file" msgid "&Export..." msgstr "&Exportar..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:89 +#: resources/qml/Menus/FileMenu.qml:89 msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Exportar selección..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/HelpMenu.qml:14 +#: resources/qml/Menus/HelpMenu.qml:14 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "A&yuda" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +#: resources/qml/Menus/MaterialMenu.qml:13 msgctxt "@label:category menu label" msgid "Material" msgstr "Material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:53 +#: resources/qml/Menus/MaterialMenu.qml:53 msgctxt "@label:category menu label" msgid "Favorites" msgstr "Favoritos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:78 +#: resources/qml/Menus/MaterialMenu.qml:78 msgctxt "@label:category menu label" msgid "Generic" msgstr "Genérico" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +#: resources/qml/Menus/OpenFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open File(s)..." msgstr "Abrir archivo(s)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PreferencesMenu.qml:21 +#: resources/qml/Menus/PreferencesMenu.qml:21 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "Pre&ferencias" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:13 +#: resources/qml/Menus/PrinterMenu.qml:13 msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "&Impresora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:17 +#: resources/qml/Menus/PrinterMenu.qml:17 msgctxt "@label:category menu label" msgid "Network enabled printers" msgstr "Impresoras de red habilitadas" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:50 +#: resources/qml/Menus/PrinterMenu.qml:50 msgctxt "@label:category menu label" msgid "Local printers" msgstr "Impresoras locales" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +#: resources/qml/Menus/RecentFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open &Recent" msgstr "Abrir &reciente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +#: resources/qml/Menus/SaveProjectMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Save Project..." msgstr "Guardar proyecto..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:34 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:49 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Definir como extrusor activo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:55 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Habilitar extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:63 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Deshabilitar extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 msgctxt "@action:inmenu" msgid "Visible Settings" msgstr "Ajustes visibles" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 msgctxt "@action:inmenu" msgid "Collapse All Categories" msgstr "Contraer todas las categorías" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 msgctxt "@action:inmenu" msgid "Manage Setting Visibility..." msgstr "Gestionar visibilidad de los ajustes..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:13 +#: resources/qml/Menus/SettingsMenu.qml:34 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Material" + +#: resources/qml/Menus/SettingsMenu.qml:49 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Definir como extrusor activo" + +#: resources/qml/Menus/SettingsMenu.qml:55 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Habilitar extrusor" + +#: resources/qml/Menus/SettingsMenu.qml:63 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Deshabilitar extrusor" + +#: resources/qml/Menus/ViewMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&View" msgstr "&Ver" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:17 +#: resources/qml/Menus/ViewMenu.qml:17 msgctxt "@action:inmenu menubar:view" msgid "&Camera position" msgstr "&Posición de la cámara" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:30 +#: resources/qml/Menus/ViewMenu.qml:30 msgctxt "@action:inmenu menubar:view" msgid "Camera view" msgstr "Vista de cámara" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 +#: resources/qml/Menus/ViewMenu.qml:48 msgctxt "@action:inmenu menubar:view" msgid "Perspective" msgstr "Perspectiva" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +#: resources/qml/Menus/ViewMenu.qml:59 msgctxt "@action:inmenu menubar:view" msgid "Orthographic" msgstr "Ortográfica" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:115 +#: resources/qml/MonitorButton.qml:115 msgctxt "@label:MonitorStatus" msgid "Not connected to a printer" msgstr "No está conectado a ninguna impresora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 +#: resources/qml/MonitorButton.qml:119 msgctxt "@label:MonitorStatus" msgid "Printer does not accept commands" msgstr "La impresora no acepta comandos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:129 +#: resources/qml/MonitorButton.qml:129 msgctxt "@label:MonitorStatus" msgid "In maintenance. Please check the printer" msgstr "En mantenimiento. Compruebe la impresora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:140 +#: resources/qml/MonitorButton.qml:140 msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Se ha perdido la conexión con la impresora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +#: resources/qml/MonitorButton.qml:142 msgctxt "@label:MonitorStatus" msgid "Printing..." msgstr "Imprimiendo..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +#: resources/qml/MonitorButton.qml:145 msgctxt "@label:MonitorStatus" msgid "Paused" msgstr "En pausa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +#: resources/qml/MonitorButton.qml:148 msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Preparando..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +#: resources/qml/MonitorButton.qml:150 msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Retire la impresión" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +#: resources/qml/MonitorButton.qml:318 msgctxt "@label" msgid "Abort Print" msgstr "Cancelar impresión" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:327 +#: resources/qml/MonitorButton.qml:327 msgctxt "@label" msgid "Are you sure you want to abort the print?" msgstr "¿Está seguro de que desea cancelar la impresión?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:109 +#: resources/qml/ObjectItemButton.qml:109 msgctxt "@label" msgid "Is printed as support." msgstr "Se imprime como soporte." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:112 +#: resources/qml/ObjectItemButton.qml:112 msgctxt "@label" msgid "Other models overlapping with this model are modified." msgstr "Se han modificado otros modelos que se superponen con este modelo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:115 +#: resources/qml/ObjectItemButton.qml:115 msgctxt "@label" msgid "Infill overlapping with this model is modified." msgstr "Se ha modificado la superposición del relleno con este modelo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:118 +#: resources/qml/ObjectItemButton.qml:118 msgctxt "@label" msgid "Overlaps with this model are not supported." msgstr "No se admiten superposiciones con este modelo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:125 +#: resources/qml/ObjectItemButton.qml:125 msgctxt "@label %1 is the number of settings it overrides." msgid "Overrides %1 setting." msgid_plural "Overrides %1 settings." msgstr[0] "%1 sobrescrito." msgstr[1] "%1 sobrescritos." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 +#: resources/qml/ObjectSelector.qml:59 msgctxt "@label" msgid "Object list" msgstr "Lista de objetos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:131 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:24 +#: resources/qml/Preferences/GeneralPage.qml:134 +#: resources/qml/Preferences/SettingVisibilityPage.qml:24 msgctxt "@action:button" msgid "Defaults" msgstr "Valores predeterminados" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +#: resources/qml/Preferences/GeneralPage.qml:172 msgctxt "@label" msgid "Interface" msgstr "Interfaz" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +#: resources/qml/Preferences/GeneralPage.qml:215 msgctxt "@heading" msgid "-- incomplete --" msgstr "-- incompleto --" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +#: resources/qml/Preferences/GeneralPage.qml:261 msgctxt "@label" msgid "Currency:" msgstr "Moneda:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:274 +#: resources/qml/Preferences/GeneralPage.qml:277 msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." msgid "Theme*:" msgstr "Tema*:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +#: resources/qml/Preferences/GeneralPage.qml:323 msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Segmentar automáticamente al cambiar los ajustes." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +#: resources/qml/Preferences/GeneralPage.qml:331 msgctxt "@option:check" msgid "Slice automatically" msgstr "Segmentar automáticamente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:337 +#: resources/qml/Preferences/GeneralPage.qml:340 +msgctxt "@info:tooltip" +msgid "Show an icon and notifications in the system notification area." +msgstr "Mostrar un icono y notificaciones en el área de notificaciones del sistema." + +#: resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Add icon to system tray *" +msgstr "Añadir icono a la bandeja del sistema *" + +#: resources/qml/Preferences/GeneralPage.qml:357 msgctxt "@label" msgid "*You will need to restart the application for these changes to have effect." msgstr "*Tendrá que reiniciar la aplicación para que estos cambios tengan efecto." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +#: resources/qml/Preferences/GeneralPage.qml:373 msgctxt "@label" msgid "Viewport behavior" msgstr "Comportamiento de la ventanilla" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +#: resources/qml/Preferences/GeneralPage.qml:381 msgctxt "@info:tooltip" msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." msgstr "Resaltar en rojo las áreas del modelo sin soporte. Sin soporte, estas áreas no se imprimirán correctamente." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:369 +#: resources/qml/Preferences/GeneralPage.qml:390 msgctxt "@option:check" msgid "Display overhang" msgstr "Mostrar voladizos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +#: resources/qml/Preferences/GeneralPage.qml:400 msgctxt "@info:tooltip" msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." msgstr "Resalta las superficies que faltan o son extrañas del modelo usando señales de advertencia. A las trayectorias de herramientas les faltarán a menudo partes de la geometría prevista." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:388 +#: resources/qml/Preferences/GeneralPage.qml:409 msgctxt "@option:check" msgid "Display model errors" msgstr "Mostrar errores de modelo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +#: resources/qml/Preferences/GeneralPage.qml:417 msgctxt "@info:tooltip" msgid "Moves the camera so the model is in the center of the view when a model is selected" msgstr "Mueve la cámara de manera que el modelo se encuentre en el centro de la vista cuando se selecciona un modelo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:401 +#: resources/qml/Preferences/GeneralPage.qml:422 msgctxt "@action:button" msgid "Center camera when item is selected" msgstr "Centrar cámara cuando se selecciona elemento" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +#: resources/qml/Preferences/GeneralPage.qml:432 msgctxt "@info:tooltip" msgid "Should the default zoom behavior of cura be inverted?" msgstr "¿Se debería invertir el comportamiento predeterminado del zoom de cura?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:416 +#: resources/qml/Preferences/GeneralPage.qml:437 msgctxt "@action:button" msgid "Invert the direction of camera zoom." msgstr "Invertir la dirección del zoom de la cámara." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Should zooming move in the direction of the mouse?" msgstr "¿Debería moverse el zoom en la dirección del ratón?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Zooming towards the mouse is not supported in the orthographic perspective." msgstr "Hacer zoom en la dirección del ratón no es compatible con la perspectiva ortográfica." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:437 +#: resources/qml/Preferences/GeneralPage.qml:458 msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "Hacer zoom en la dirección del ratón" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +#: resources/qml/Preferences/GeneralPage.qml:484 msgctxt "@info:tooltip" msgid "Should models on the platform be moved so that they no longer intersect?" msgstr "¿Deben moverse los modelos en la plataforma de modo que no se crucen?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:468 +#: resources/qml/Preferences/GeneralPage.qml:489 msgctxt "@option:check" msgid "Ensure models are kept apart" msgstr "Asegúrese de que los modelos están separados" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +#: resources/qml/Preferences/GeneralPage.qml:498 msgctxt "@info:tooltip" msgid "Should models on the platform be moved down to touch the build plate?" msgstr "¿Deben moverse los modelos del área de impresión de modo que no toquen la placa de impresión?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:482 +#: resources/qml/Preferences/GeneralPage.qml:503 msgctxt "@option:check" msgid "Automatically drop models to the build plate" msgstr "Arrastrar modelos a la placa de impresión de forma automática" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +#: resources/qml/Preferences/GeneralPage.qml:515 msgctxt "@info:tooltip" msgid "Show caution message in g-code reader." msgstr "Se muestra el mensaje de advertencia en el lector de GCode." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503 +#: resources/qml/Preferences/GeneralPage.qml:524 msgctxt "@option:check" msgid "Caution message in g-code reader" msgstr "Mensaje de advertencia en el lector de GCode" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +#: resources/qml/Preferences/GeneralPage.qml:532 msgctxt "@info:tooltip" msgid "Should layer be forced into compatibility mode?" msgstr "¿Debe forzarse el modo de compatibilidad de la capa?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +#: resources/qml/Preferences/GeneralPage.qml:537 msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Forzar modo de compatibilidad de la vista de capas (necesario reiniciar)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +#: resources/qml/Preferences/GeneralPage.qml:547 msgctxt "@info:tooltip" msgid "Should Cura open at the location it was closed?" msgstr "¿Debería abrirse Cura en el lugar donde se cerró?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:531 +#: resources/qml/Preferences/GeneralPage.qml:552 msgctxt "@option:check" msgid "Restore window position on start" msgstr "Restaurar la posición de la ventana al inicio" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +#: resources/qml/Preferences/GeneralPage.qml:562 msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "¿Qué tipo de renderizado de cámara debería usarse?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +#: resources/qml/Preferences/GeneralPage.qml:569 msgctxt "@window:text" msgid "Camera rendering:" msgstr "Renderizado de cámara:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +#: resources/qml/Preferences/GeneralPage.qml:576 msgid "Perspective" msgstr "Perspectiva" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +#: resources/qml/Preferences/GeneralPage.qml:577 msgid "Orthographic" msgstr "Ortográfica" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +#: resources/qml/Preferences/GeneralPage.qml:617 msgctxt "@label" msgid "Opening and saving files" msgstr "Abrir y guardar archivos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +#: resources/qml/Preferences/GeneralPage.qml:624 msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "¿Debería abrir los archivos del escritorio o las aplicaciones externas en la misma instancia de Cura?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:608 +#: resources/qml/Preferences/GeneralPage.qml:629 msgctxt "@option:check" msgid "Use a single instance of Cura" msgstr "Utilizar una sola instancia de Cura" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +#: resources/qml/Preferences/GeneralPage.qml:640 msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "¿Se debe limpiar la placa de impresión antes de cargar un nuevo modelo en una única instancia de Cura?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +#: resources/qml/Preferences/GeneralPage.qml:646 msgctxt "@option:check" msgid "Clear buildplate before loading model into the single instance" msgstr "Limpiar la placa de impresión antes de cargar el modelo en la instancia única" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 +#: resources/qml/Preferences/GeneralPage.qml:656 msgctxt "@info:tooltip" msgid "Should models be scaled to the build volume if they are too large?" msgstr "¿Deben ajustarse los modelos al volumen de impresión si son demasiado grandes?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +#: resources/qml/Preferences/GeneralPage.qml:661 msgctxt "@option:check" msgid "Scale large models" msgstr "Escalar modelos de gran tamaño" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +#: resources/qml/Preferences/GeneralPage.qml:671 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 "Un modelo puede mostrarse demasiado pequeño si su unidad son metros en lugar de milímetros, por ejemplo. ¿Deben escalarse estos modelos?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:655 +#: resources/qml/Preferences/GeneralPage.qml:676 msgctxt "@option:check" msgid "Scale extremely small models" msgstr "Escalar modelos demasiado pequeños" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +#: resources/qml/Preferences/GeneralPage.qml:686 msgctxt "@info:tooltip" msgid "Should models be selected after they are loaded?" msgstr "¿Se deberían seleccionar los modelos después de haberse cargado?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: resources/qml/Preferences/GeneralPage.qml:691 msgctxt "@option:check" msgid "Select models when loaded" msgstr "Seleccionar modelos al abrirlos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +#: resources/qml/Preferences/GeneralPage.qml:701 msgctxt "@info:tooltip" msgid "Should a prefix based on the printer name be added to the print job name automatically?" msgstr "¿Debe añadirse automáticamente un prefijo basado en el nombre de la impresora al nombre del trabajo de impresión?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:685 +#: resources/qml/Preferences/GeneralPage.qml:706 msgctxt "@option:check" msgid "Add machine prefix to job name" msgstr "Agregar prefijo de la máquina al nombre del trabajo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +#: resources/qml/Preferences/GeneralPage.qml:716 msgctxt "@info:tooltip" msgid "Should a summary be shown when saving a project file?" msgstr "¿Mostrar un resumen al guardar un archivo de proyecto?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: resources/qml/Preferences/GeneralPage.qml:720 msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Mostrar un cuadro de diálogo de resumen al guardar el proyecto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +#: resources/qml/Preferences/GeneralPage.qml:730 msgctxt "@info:tooltip" msgid "Default behavior when opening a project file" msgstr "Comportamiento predeterminado al abrir un archivo del proyecto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +#: resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@window:text" msgid "Default behavior when opening a project file: " msgstr "Comportamiento predeterminado al abrir un archivo del proyecto: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +#: resources/qml/Preferences/GeneralPage.qml:753 msgctxt "@option:openProject" msgid "Always ask me this" msgstr "Preguntar siempre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: resources/qml/Preferences/GeneralPage.qml:754 msgctxt "@option:openProject" msgid "Always open as a project" msgstr "Abrir siempre como un proyecto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +#: resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:openProject" msgid "Always import models" msgstr "Importar modelos siempre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +#: resources/qml/Preferences/GeneralPage.qml:792 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 "Si ha realizado cambios en un perfil y, a continuación, ha cambiado a otro, aparecerá un cuadro de diálogo que le preguntará si desea guardar o descartar los cambios. También puede elegir el comportamiento predeterminado, así ese cuadro de diálogo no volverá a aparecer." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:780 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:36 +#: resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46 msgctxt "@label" msgid "Profiles" msgstr "Perfiles" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +#: resources/qml/Preferences/GeneralPage.qml:806 msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Comportamiento predeterminado para los valores modificados al cambiar a otro perfil: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:800 +#: resources/qml/Preferences/GeneralPage.qml:821 msgctxt "@option:discardOrKeep" msgid "Always discard changed settings" msgstr "Descartar siempre los ajustes modificados" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/Preferences/GeneralPage.qml:822 msgctxt "@option:discardOrKeep" msgid "Always transfer changed settings to new profile" msgstr "Transferir siempre los ajustes modificados al nuevo perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +#: resources/qml/Preferences/GeneralPage.qml:856 msgctxt "@label" msgid "Privacy" msgstr "Privacidad" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +#: resources/qml/Preferences/GeneralPage.qml:862 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 "¿Deben enviarse datos anónimos sobre la impresión a Ultimaker? Tenga en cuenta que no se envían ni almacenan modelos, direcciones IP ni otra información de identificación personal." +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 "¿Deben enviarse datos anónimos sobre la impresión a UltiMaker? Tenga en cuenta que no se envían ni almacenan modelos, direcciones IP ni otra información de identificación personal." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +#: resources/qml/Preferences/GeneralPage.qml:867 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "Enviar información (anónima) de impresión" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +#: resources/qml/Preferences/GeneralPage.qml:897 msgctxt "@label" msgid "Updates" msgstr "Actualizaciones" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +#: resources/qml/Preferences/GeneralPage.qml:904 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "¿Debe Cura buscar actualizaciones cuando se abre el programa?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:888 +#: resources/qml/Preferences/GeneralPage.qml:909 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Buscar actualizaciones al iniciar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +#: resources/qml/Preferences/GeneralPage.qml:925 msgctxt "@info:tooltip" msgid "When checking for updates, only check for stable releases." msgstr "Cuando busque actualizaciones, compruebe solo si hay versiones estables." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:910 +#: resources/qml/Preferences/GeneralPage.qml:931 msgctxt "@option:radio" msgid "Stable releases only" msgstr "Solo versiones estables" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +#: resources/qml/Preferences/GeneralPage.qml:941 msgctxt "@info:tooltip" msgid "When checking for updates, check for both stable and for beta releases." msgstr "Cuando busque actualizaciones, compruebe si hay versiones estables y versiones beta." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:926 +#: resources/qml/Preferences/GeneralPage.qml:947 msgctxt "@option:radio" msgid "Stable and Beta releases" msgstr "Versiones estables y beta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +#: resources/qml/Preferences/GeneralPage.qml:957 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 "¿Debería Cura buscar automáticamente nuevos complementos cada vez que se inicia? Le recomendamos encarecidamente que no desactive esta opción!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:941 +#: resources/qml/Preferences/GeneralPage.qml:962 msgctxt "@option:check" msgid "Get notifications for plugin updates" msgstr "Recibir notificaciones de actualizaciones de complementos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:50 +#: resources/qml/Preferences/MachinesPage.qml:50 msgctxt "@action:button" msgid "Add New" msgstr "Añadir nuevo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:134 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +#: resources/qml/Preferences/MachinesPage.qml:147 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:160 +#: resources/qml/Preferences/ProfilesPage.qml:294 msgctxt "@action:button" msgid "Activate" msgstr "Activar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:146 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:331 +#: resources/qml/Preferences/MachinesPage.qml:159 +#: resources/qml/Preferences/ProfilesPage.qml:331 msgctxt "@action:button" msgid "Rename" msgstr "Cambiar nombre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:72 msgctxt "@label" msgid "Materials compatible with active printer:" msgstr "Materiales compatibles con la impresora activa:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:94 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:78 +#: resources/qml/Preferences/ProfilesPage.qml:94 msgctxt "@action:button" msgid "Create new" msgstr "Crear nuevo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:88 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:90 +#: resources/qml/Preferences/ProfilesPage.qml:88 msgctxt "@action:button" msgid "Import" msgstr "Importar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:101 msgctxt "@action:button" msgid "Sync with Printers" msgstr "Sincronizar con las impresoras" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:311 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:174 +#: resources/qml/Preferences/ProfilesPage.qml:311 msgctxt "@action:button" msgid "Duplicate" msgstr "Duplicado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:342 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:198 +#: resources/qml/Preferences/ProfilesPage.qml:342 msgctxt "@action:button" msgid "Export" msgstr "Exportar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:392 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:212 +#: resources/qml/Preferences/ProfilesPage.qml:392 msgctxt "@title:window" msgid "Confirm Remove" msgstr "Confirmar eliminación" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:393 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:215 +#: resources/qml/Preferences/ProfilesPage.qml:393 msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "¿Seguro que desea eliminar %1? ¡Esta acción no se puede deshacer!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:228 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:238 msgctxt "@title:window" msgid "Import Material" msgstr "Importar material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:242 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "El material se ha importado correctamente en %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:245 msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not import material %1: %2" msgstr "No se pudo importar el material en %1: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:267 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:256 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:267 msgctxt "@title:window" msgid "Export Material" msgstr "Exportar material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:272 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:272 msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Se ha producido un error al exportar el material a %1: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:275 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:275 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "El material se ha exportado correctamente a %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 msgctxt "@title:window" msgid "Sync materials with printers" msgstr "Sincronizar materiales con impresoras" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 msgctxt "@title:header" msgid "Sync materials with printers" msgstr "Sincronizar materiales con impresoras" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 msgctxt "@text" msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "Con unos sencillos pasos puede sincronizar todos sus perfiles de material con sus impresoras." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 msgctxt "@button" msgid "Why do I need to sync material profiles?" msgstr "¿Por qué tengo que sincronizar los perfiles de materiales?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 msgctxt "@button" msgid "Start" msgstr "Iniciar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144 msgctxt "@title:header" msgid "Sign in" msgstr "Iniciar sesión" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150 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 "Para sincronizar automáticamente los perfiles de material con todas sus impresoras conectadas a Digital Factory debe iniciar sesión en Cura." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:446 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:586 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602 msgctxt "@button" msgid "Sync materials with USB" msgstr "Sincronización de materiales con USB" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 msgctxt "@title:header" msgid "The following printers will receive the new material profiles:" msgstr "Las siguientes impresoras recibirán los nuevos perfiles de material:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:198 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 msgctxt "@title:header" msgid "Something went wrong when sending the materials to the printers." msgstr "Hubo un error al enviar los materiales a las impresoras." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:205 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221 msgctxt "@title:header" msgid "Material profiles successfully synced with the following printers:" msgstr "Los perfiles de material se han sincronizado correctamente con las siguientes impresoras:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:429 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445 msgctxt "@button" msgid "Troubleshooting" msgstr "Solución de problemas" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422 msgctxt "@text Asking the user whether printers are missing in a list." msgid "Printers missing?" msgstr "¿Faltan impresoras?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:408 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424 msgctxt "@text" msgid "Make sure all your printers are turned ON and connected to Digital Factory." msgstr "Asegúrese de que todas las impresoras estén encendidas y conectadas a Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:417 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433 msgctxt "@button" msgid "Refresh List" msgstr "Actualizar la lista" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473 msgctxt "@button" msgid "Try again" msgstr "Inténtelo de nuevo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:461 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Done" msgstr "Realizado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:606 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622 msgctxt "@button" msgid "Sync" msgstr "Sincronizar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535 msgctxt "@button" msgid "Syncing" msgstr "Sincronizando" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553 msgctxt "@title:header" msgid "No printers found" msgstr "No se ha encontrado ninguna impresora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574 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 "Parece que no tiene ninguna impresora compatible conectada a Digital Factory. Asegúrese de que su impresora esté conectada y ejecutando el firmware más reciente." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:569 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585 msgctxt "@button" msgid "Learn how to connect your printer to Digital Factory" msgstr "Aprenda a conectar su impresora a Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:597 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613 msgctxt "@button" msgid "Refresh" msgstr "Actualizar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642 msgctxt "@title:header" msgid "Sync material profiles via USB" msgstr "Sincronización de perfiles de material a través USB" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:632 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648 msgctxt "@text In the UI this is followed by a list of steps the user needs to take." msgid "Follow the following steps to load the new material profiles to your printer." msgstr "Siga estos pasos para cargar los nuevos perfiles de material en la impresora." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 msgctxt "@text" msgid "Click the export material archive button." msgstr "Haga clic en el botón para exportar el archivo de material." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Guarde el archivo .umm en una memoria USB." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 msgctxt "@text" msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." msgstr "Inserte la memoria USB en la impresora e inicie el procedimiento para cargar nuevos perfiles de material." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:673 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689 msgctxt "@button" msgid "How to load new material profiles to my printer" msgstr "Cómo cargar nuevos perfiles de material en mi impresora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:687 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 msgctxt "@button" msgid "Back" msgstr "Atrás" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Export material archive" msgstr "Exportar archivo de material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747 msgctxt "@title:window" msgid "Export All Materials" msgstr "Exportar todos los materiales" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121 +#: resources/qml/Preferences/Materials/MaterialsView.qml:121 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Confirmar cambio de diámetro" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122 +#: resources/qml/Preferences/Materials/MaterialsView.qml:122 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 "El nuevo diámetro del filamento está ajustado en %1 mm y no es compatible con el extrusor actual. ¿Desea continuar?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152 +#: resources/qml/Preferences/Materials/MaterialsView.qml:152 msgctxt "@label" msgid "Display Name" msgstr "Mostrar nombre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 +#: resources/qml/Preferences/Materials/MaterialsView.qml:171 msgctxt "@label" msgid "Brand" msgstr "Marca" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190 +#: resources/qml/Preferences/Materials/MaterialsView.qml:190 msgctxt "@label" msgid "Material Type" msgstr "Tipo de material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +#: resources/qml/Preferences/Materials/MaterialsView.qml:210 msgctxt "@label" msgid "Color" msgstr "Color" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:262 +#: resources/qml/Preferences/Materials/MaterialsView.qml:262 msgctxt "@title" msgid "Material color picker" msgstr "Seleccionador de color del material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:275 +#: resources/qml/Preferences/Materials/MaterialsView.qml:275 msgctxt "@label" msgid "Properties" msgstr "Propiedades" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +#: resources/qml/Preferences/Materials/MaterialsView.qml:286 msgctxt "@label" msgid "Density" msgstr "Densidad" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +#: resources/qml/Preferences/Materials/MaterialsView.qml:319 msgctxt "@label" msgid "Diameter" msgstr "Diámetro" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:369 +#: resources/qml/Preferences/Materials/MaterialsView.qml:369 msgctxt "@label" msgid "Filament Cost" msgstr "Coste del filamento" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:401 +#: resources/qml/Preferences/Materials/MaterialsView.qml:401 msgctxt "@label" msgid "Filament weight" msgstr "Peso del filamento" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:433 +#: resources/qml/Preferences/Materials/MaterialsView.qml:433 msgctxt "@label" msgid "Filament length" msgstr "Longitud del filamento" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:451 +#: resources/qml/Preferences/Materials/MaterialsView.qml:451 msgctxt "@label" msgid "Cost per Meter" msgstr "Coste por metro" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:465 +#: resources/qml/Preferences/Materials/MaterialsView.qml:465 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "Este material está vinculado a %1 y comparte alguna de sus propiedades." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:472 +#: resources/qml/Preferences/Materials/MaterialsView.qml:472 msgctxt "@label" msgid "Unlink Material" msgstr "Desvincular material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +#: resources/qml/Preferences/Materials/MaterialsView.qml:485 msgctxt "@label" msgid "Description" msgstr "Descripción" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:503 +#: resources/qml/Preferences/Materials/MaterialsView.qml:503 msgctxt "@label" msgid "Adhesion Information" msgstr "Información sobre adherencia" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642 +#: resources/qml/Preferences/Materials/MaterialsView.qml:642 msgctxt "@title" msgid "Information" msgstr "Información" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:647 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:82 +#: resources/qml/Preferences/Materials/MaterialsView.qml:647 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 msgctxt "@label" msgid "Print settings" msgstr "Ajustes de impresión" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:59 +#: resources/qml/Preferences/ProfilesPage.qml:59 msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "Perfiles compatibles con la impresora activa:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:98 +#: resources/qml/Preferences/ProfilesPage.qml:98 msgctxt "@action:tooltip" msgid "Create new profile from current settings/overrides" msgstr "Crear nuevo perfil a partir de la configuración o anulaciones actuales" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:125 +#: resources/qml/Preferences/ProfilesPage.qml:125 msgctxt "@action:label" msgid "Some settings from current profile were overwritten." msgstr "Algunas configuraciones del perfil actual se han sobrescrito." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:140 +#: resources/qml/Preferences/ProfilesPage.qml:140 msgctxt "@action:button" msgid "Update profile." msgstr "Actualizar perfil." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:143 +#: resources/qml/Preferences/ProfilesPage.qml:143 msgctxt "@action:tooltip" msgid "Update profile with current settings/overrides" msgstr "Actualizar perfil con ajustes o sobrescrituras actuales" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:148 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256 +#: resources/qml/Preferences/ProfilesPage.qml:148 msgctxt "@action:button" msgid "Discard current changes" msgstr "Descartar cambios actuales" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:158 +#: resources/qml/Preferences/ProfilesPage.qml:158 msgctxt "@action:label" msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." msgstr "Este perfil utiliza los ajustes predeterminados especificados por la impresora, por eso no aparece ningún ajuste o sobrescritura en la lista que se ve a continuación." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:165 +#: resources/qml/Preferences/ProfilesPage.qml:165 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "Los ajustes actuales coinciden con el perfil seleccionado." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +#: resources/qml/Preferences/ProfilesPage.qml:175 msgctxt "@title:tab" msgid "Global Settings" msgstr "Ajustes globales" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: resources/qml/Preferences/ProfilesPage.qml:278 msgctxt "@title:window" msgid "Create Profile" msgstr "Crear perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:280 +#: resources/qml/Preferences/ProfilesPage.qml:280 msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Introduzca un nombre para este perfil." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:368 +#: resources/qml/Preferences/ProfilesPage.qml:352 +#: resources/qml/Preferences/ProfilesPage.qml:368 msgctxt "@title:window" msgid "Export Profile" msgstr "Exportar perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +#: resources/qml/Preferences/ProfilesPage.qml:382 msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Duplicar perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:409 +#: resources/qml/Preferences/ProfilesPage.qml:409 msgctxt "@title:window" msgid "Rename Profile" msgstr "Cambiar nombre de perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:422 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:429 +#: resources/qml/Preferences/ProfilesPage.qml:422 +#: resources/qml/Preferences/ProfilesPage.qml:429 msgctxt "@title:window" msgid "Import Profile" msgstr "Importar perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:22 -msgctxt "@title:window" -msgid "Rename" -msgstr "Cambiar nombre" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:23 -msgctxt "@info" -msgid "Please provide a new name." -msgstr "Introduzca otro nombre." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56 +#: resources/qml/Preferences/SettingVisibilityItem.qml:56 msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." msgstr "La máquina activa ha ocultado este ajuste y no se verá." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73 +#: resources/qml/Preferences/SettingVisibilityItem.qml:73 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] "El valor de %1 ha ocultado este ajuste. Cambie el valor para que se muestre el ajuste." msgstr[1] "Los valores de %1 han ocultado este ajuste. Cambie los valores para que muestre el ajuste." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13 +#: resources/qml/Preferences/SettingVisibilityPage.qml:13 msgctxt "@title:tab" msgid "Setting Visibility" msgstr "Visibilidad de los ajustes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 +#: resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" msgid "Check all" msgstr "Comprobar todo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 -msgctxt "@label" -msgid "Extruder" -msgstr "Extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70 -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." -msgstr "Temperatura objetivo del extremo caliente. El extremo caliente se calentará o enfriará en función de esta temperatura. Si el valor es 0, el calentamiento del extremo caliente se desactivará." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Temperatura actual de este extremo caliente." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "Temperatura a la que se va a precalentar el extremo caliente." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Cancelar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Precalentar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Caliente el extremo caliente antes de imprimir. Puede continuar ajustando la impresión durante el calentamiento, así no tendrá que esperar a que el extremo caliente se caliente para poder imprimir." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Color del material en este extrusor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Material en este extrusor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Tobera insertada en este extrusor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -msgctxt "@label" -msgid "Build plate" -msgstr "Placa de impresión" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55 -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 "Temperatura objetivo de la plataforma calentada. La plataforma se calentará o enfriará en función de esta temperatura. Si el valor es 0, el calentamiento de la plataforma se desactivará." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "Temperatura actual de la plataforma caliente." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "Temperatura a la que se va a precalentar la plataforma." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Caliente la plataforma antes de imprimir. Puede continuar ajustando la impresión durante el calentamiento, así no tendrá que esperar a que la plataforma se caliente para poder imprimir." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51 -msgctxt "@label" -msgid "Printer control" -msgstr "Control de impresoras" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66 -msgctxt "@label" -msgid "Jog Position" -msgstr "Posición de desplazamiento" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Distancia de desplazamiento" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Send G-code" -msgstr "Enviar GCode" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Envíe un comando de GCode personalizado a la impresora conectada. Pulse «Intro» para enviar el comando." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "La impresora no está conectada." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "La impresora de la nube está sin conexión. Compruebe si la impresora está encendida y conectada a Internet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Esta impresora no está vinculada a su cuenta. Vaya a Ultimaker Digital Factory para establecer una conexión." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "La conexión de la nube no está disponible actualmente. Inicie sesión para conectarse a la impresora de la nube." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "La conexión de la nube no está disponible actualmente. Compruebe la conexión a Internet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:235 -msgctxt "@button" -msgid "Add printer" -msgstr "Agregar impresora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Manage printers" -msgstr "Administrar impresoras" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Active print" msgstr "Activar impresión" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Job Name" msgstr "Nombre del trabajo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +#: resources/qml/PrintMonitor.qml:172 msgctxt "@label" msgid "Printing Time" msgstr "Tiempo de impresión" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +#: resources/qml/PrintMonitor.qml:180 msgctxt "@label" msgid "Estimated time left" msgstr "Tiempo restante estimado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 msgctxt "@label" msgid "Profile" msgstr "Perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5616,132 +6173,379 @@ msgstr "" "\n" "Haga clic para abrir el administrador de perfiles." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 +#: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 msgctxt "@label:header" msgid "Custom profiles" msgstr "Perfiles personalizados" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 msgctxt "@label shown when we load a Gcode file" msgid "Print setup disabled. G-code file can not be modified." msgstr "Configuración de impresión deshabilitada. No se puede modificar el archivo GCode." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:179 msgctxt "@button" msgid "Recommended" msgstr "Recomendado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156 -msgctxt "@button" -msgid "Custom" -msgstr "Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 msgctxt "@label:Should be short" msgid "On" msgstr "Encendido" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 msgctxt "@label:Should be short" msgid "Off" msgstr "Apagado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "Experimental" +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is active and you overwrote some settings." +msgstr "El perfil personalizado %1 está activo y ha sobrescrito algunos ajustes." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:54 -msgctxt "@info" -msgid "custom profile is active and you overwrote some settings." +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is overriding some settings." +msgstr "El perfil personalizado %1 anula algunos ajustes." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92 +msgctxt "@info %1 is the name of a profile" +msgid "Recommended settings (for %1) were altered." +msgstr "Se ha modificado la configuración recomendada (para %1)." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106 +msgctxt "@info %1 is the name of a profile" +msgid "Some setting-values defined in %1 were overridden." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137 msgctxt "@info" -msgid "custom profile is overriding some settings." -msgstr "" +msgid "Reset to defaults." +msgstr "Restablecer los valores por defecto." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178 msgctxt "@info" -msgid "Some settings were changed." -msgstr "" +msgid "Compare and save." +msgstr "Comparar y guardar." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15 msgctxt "@label" msgid "Adhesion" msgstr "Adherencia" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20 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 la impresión de un borde o una balsa. Esta opción agregará un área plana alrededor del objeto, que es fácil de cortar después." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:198 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102 msgctxt "@label" -msgid "Gradual infill" -msgstr "Relleno gradual" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:236 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "Un relleno gradual aumentará gradualmente la cantidad de relleno hacia arriba." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 -msgctxt "@label" -msgid "Resolution" +msgid "Recommended print settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111 +msgctxt "@button" +msgid "Show Custom" +msgstr "Mostrar personalización" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27 +msgctxt "@label" +msgid "Resolution" +msgstr "Resolución" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16 +msgctxt "@label" +msgid "Strength" +msgstr "Resistencia" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20 +msgctxt "@label" +msgid "The following settings define the strength of your part." +msgstr "Los siguientes ajustes definen la resistencia de la pieza." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34 +msgctxt "infill_sparse_density description" +msgid "Infill Density" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35 +msgctxt "@label" +msgid "Adjusts the density of infill of the print." +msgstr "Ajusta la densidad del relleno de la impresión." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54 +msgctxt "@action:label" +msgid "Infill Pattern" +msgstr "Patrón de relleno" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56 +msgctxt "@label" +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 "" +"Patrón del material de relleno de la impresión:\n" +"\n" +"Para impresiones rpidas de modelos no funcionales, elija lnea, zigzag o relleno ligero.\n" +"\n" +"Para una pieza funcional que no est sujeta a mucha tensin, recomendamos rejilla, tringulo o trihexgono.\n" +"\n" +"Para las impresiones 3D funcionales que requieran una alta resistencia en varias direcciones, utilice cbico, subdivisin cbica, cbico bitruncado, octeto o giroide." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67 +msgctxt "@action:label" +msgid "Shell Thickness" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68 +msgctxt "@label" +msgid "Defines the thickness of your part side walls, roof and floor." +msgstr "Define el grosor de las paredes laterales, el techo y la base de la pieza." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16 msgctxt "@label" msgid "Support" msgstr "Soporte" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21 msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these 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." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40 +msgctxt "@action:label" +msgid "Support Type" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41 +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." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53 +msgctxt "@action:label" +msgid "Print with" +msgstr "Imprimir con" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54 +msgctxt "@label" +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." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67 +msgctxt "@action:label" +msgid "Placement" +msgstr "Colocación" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68 +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." + +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 msgctxt "@error" msgid "Configuration not supported" -msgstr "" +msgstr "Configuración no admitida" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." -msgstr "" +msgstr "No hay perfiles disponibles para la configuración de material/%1 elegida. Modifique su configuración." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 msgctxt "@button:label" msgid "Learn more" -msgstr "" +msgstr "Más información" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +#: resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "Extrusor" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:70 +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." +msgstr "Temperatura objetivo del extremo caliente. El extremo caliente se calentará o enfriará en función de esta temperatura. Si el valor es 0, el calentamiento del extremo caliente se desactivará." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:105 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "Temperatura actual de este extremo caliente." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:182 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "Temperatura a la que se va a precalentar el extremo caliente." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:271 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:259 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Cancelar" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:274 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:263 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Precalentar" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:297 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Caliente el extremo caliente antes de imprimir. Puede continuar ajustando la impresión durante el calentamiento, así no tendrá que esperar a que el extremo caliente se caliente para poder imprimir." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:335 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "Color del material en este extrusor." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:367 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "Material en este extrusor." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:400 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "Tobera insertada en este extrusor." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:25 +msgctxt "@label" +msgid "Build plate" +msgstr "Placa de impresión" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:55 +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 "Temperatura objetivo de la plataforma calentada. La plataforma se calentará o enfriará en función de esta temperatura. Si el valor es 0, el calentamiento de la plataforma se desactivará." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "Temperatura actual de la plataforma caliente." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:162 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "Temperatura a la que se va a precalentar la plataforma." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:286 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Caliente la plataforma antes de imprimir. Puede continuar ajustando la impresión durante el calentamiento, así no tendrá que esperar a que la plataforma se caliente para poder imprimir." + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:51 +msgctxt "@label" +msgid "Printer control" +msgstr "Control de impresoras" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:66 +msgctxt "@label" +msgid "Jog Position" +msgstr "Posición de desplazamiento" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:82 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:162 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:217 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Distancia de desplazamiento" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Send G-code" +msgstr "Enviar GCode" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:319 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Envíe un comando de GCode personalizado a la impresora conectada. Pulse «Intro» para enviar el comando." + +#: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "La impresora no está conectada." + +#: resources/qml/PrinterSelector/MachineListButton.qml:34 +msgctxt "@label" +msgid "Hide all connected printers" +msgstr "Ocultar todas las impresoras conectadas" + +#: resources/qml/PrinterSelector/MachineListButton.qml:47 +msgctxt "@label" +msgid "Show all connected printers" +msgstr "Mostrar todas las impresoras conectadas" + +#: resources/qml/PrinterSelector/MachineSelector.qml:64 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "La impresora de la nube está sin conexión. Compruebe si la impresora está encendida y conectada a Internet." + +#: resources/qml/PrinterSelector/MachineSelector.qml:68 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Esta impresora no está vinculada a su cuenta. Vaya a Ultimaker Digital Factory para establecer una conexión." + +#: resources/qml/PrinterSelector/MachineSelector.qml:73 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "La conexión de la nube no está disponible actualmente. Inicie sesión para conectarse a la impresora de la nube." + +#: resources/qml/PrinterSelector/MachineSelector.qml:78 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "La conexión de la nube no está disponible actualmente. Compruebe la conexión a Internet." + +#: resources/qml/PrinterSelector/MachineSelectorList.qml:30 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:32 +msgctxt "@label" +msgid "Other printers" +msgstr "Otras impresoras" + +#: resources/qml/ProfileOverview.qml:36 msgctxt "@title:column" msgid "Setting" msgstr "Ajustes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +#: resources/qml/ProfileOverview.qml:37 msgctxt "@title:column" msgid "Profile" msgstr "Perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +#: resources/qml/ProfileOverview.qml:38 msgctxt "@title:column" msgid "Current" msgstr "Actual" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +#: resources/qml/ProfileOverview.qml:39 msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unidad" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +#: resources/qml/SearchBar.qml:17 msgctxt "@placeholder" msgid "Search" msgstr "Buscar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 +#: resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5752,32 +6556,32 @@ msgstr "" "\n" "Haga clic para mostrar estos ajustes." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 +#: resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "Este ajuste no se utiliza porque los ajustes a los que afecta están sobrescritos." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +#: resources/qml/Settings/SettingItem.qml:89 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Afecta a" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +#: resources/qml/Settings/SettingItem.qml:94 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "Afectado por" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:190 +#: resources/qml/Settings/SettingItem.qml:196 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "Este ajuste siempre se comparte entre extrusores. Si lo modifica, modificará el valor de todos los extrusores." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +#: resources/qml/Settings/SettingItem.qml:200 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Este valor se resuelve a partir de valores en conflicto específicos del extrusor:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +#: resources/qml/Settings/SettingItem.qml:240 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5788,7 +6592,7 @@ msgstr "" "\n" "Haga clic para restaurar el valor del perfil." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:334 +#: resources/qml/Settings/SettingItem.qml:340 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5799,4682 +6603,348 @@ msgstr "" "\n" "Haga clic para restaurar el valor calculado." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +#: resources/qml/Settings/SettingView.qml:48 msgctxt "@label:textbox" msgid "Search settings" msgstr "Buscar ajustes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:395 +#: resources/qml/Settings/SettingView.qml:395 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Copiar valor en todos los extrusores" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:404 +#: resources/qml/Settings/SettingView.qml:404 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Copiar todos los valores cambiados en todos los extrusores" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:440 +#: resources/qml/Settings/SettingView.qml:440 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Ocultar este ajuste" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:453 +#: resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "No mostrar este ajuste" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:457 +#: resources/qml/Settings/SettingView.qml:457 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Mostrar este ajuste" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +#: resources/qml/Toolbar.qml:142 +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" +msgstr[0] "Imprimir modelo seleccionado con %1" +msgstr[1] "Imprimir modelos seleccionados con %1" + +#: resources/qml/ViewOrientationControls.qml:25 msgctxt "@info:tooltip" msgid "3D View" msgstr "Vista en 3D" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +#: resources/qml/ViewOrientationControls.qml:38 msgctxt "@info:tooltip" msgid "Front View" msgstr "Vista frontal" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +#: resources/qml/ViewOrientationControls.qml:51 msgctxt "@info:tooltip" msgid "Top View" msgstr "Vista superior" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +#: resources/qml/ViewOrientationControls.qml:64 msgctxt "@info:tooltip" msgid "Left View" msgstr "Vista del lado izquierdo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +#: resources/qml/ViewOrientationControls.qml:77 msgctxt "@info:tooltip" msgid "Right View" msgstr "Vista del lado derecho" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: resources/qml/ViewsSelector.qml:50 msgctxt "@label" msgid "View type" msgstr "Ver tipo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:47 msgctxt "@label" msgid "Add a Cloud printer" msgstr "Añadir una impresora a la nube" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:73 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:73 msgctxt "@label" msgid "Waiting for Cloud response" msgstr "Esperando la respuesta de la nube" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:83 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:83 msgctxt "@label" msgid "No printers found in your account?" msgstr "¿No se han encontrado impresoras en su cuenta?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:117 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:117 msgctxt "@label" msgid "The following printers in your account have been added in Cura:" msgstr "Las siguientes impresoras de su cuenta se han añadido en Cura:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:186 msgctxt "@button" msgid "Add printer manually" msgstr "Añadir impresora manualmente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 msgctxt "@label" msgid "Manufacturer" msgstr "Fabricante" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Profile author" msgstr "Autor del perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 msgctxt "@label" msgid "Printer name" msgstr "Nombre de la impresora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 msgctxt "@text" msgid "Please name your printer" msgstr "Asigne un nombre a su impresora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "Agregar una impresora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:38 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Agregar una impresora en red" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:87 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Agregar una impresora fuera de red" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 msgctxt "@label" msgid "There is no printer found over your network." msgstr "No se ha encontrado ninguna impresora en su red." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 msgctxt "@label" msgid "Refresh" msgstr "Actualizar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 msgctxt "@label" msgid "Add printer by IP" msgstr "Agregar impresora por IP" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Añadir impresora a la nube" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205 msgctxt "@label" msgid "Troubleshooting" msgstr "Solución de problemas" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 msgctxt "@label" msgid "Add printer by IP address" msgstr "Agregar impresora por dirección IP" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Introduzca la dirección IP de su impresora." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 msgctxt "@button" msgid "Add" msgstr "Agregar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 msgctxt "@label" msgid "Could not connect to device." msgstr "No se ha podido conectar al dispositivo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "¿No puede conectarse a la impresora Ultimaker?" +msgid "Can't connect to your UltiMaker printer?" +msgstr "¿No puede conectarse a la impresora UltiMaker?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 msgctxt "@label" msgid "The printer at this address has not responded yet." msgstr "La impresora todavía no ha respondido en esta dirección." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 msgctxt "@label" msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." msgstr "No se puede agregar la impresora porque es desconocida o no aloja un grupo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 msgctxt "@button" msgid "Connect" msgstr "Conectar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Agregar una impresora en red" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Agregar una impresora fuera de red" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102 +msgctxt "@button" +msgid "Add UltiMaker printer via Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "In order to start using Cura you will need to configure a printer." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36 +msgctxt "@label" +msgid "What printer would you like to setup?" +msgstr "¿Qué impresora le gustaría configurar?" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55 +msgctxt "@button" +msgid "UltiMaker printer" +msgstr "Impresoras UltiMaker" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64 +msgctxt "@button" +msgid "Non UltiMaker printer" +msgstr "Impresoras no UltiMaker" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73 +msgctxt "@button" +msgid "Learn more about adding printers to Cura" +msgstr "Más información sobre cómo agregar impresoras a Cura" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29 +msgctxt "@label" +msgid "Add printer" +msgstr "Agregar impresora" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33 +msgctxt "@label" +msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70 +msgctxt "@label" +msgid "If you are trying to add a new UltiMaker printer to Cura" +msgstr "Si está intentando añadir una nueva impresora UltiMaker a Cura" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80 +msgctxt "@info" +msgid "Sign in into UltiMaker Digital Factory" +msgstr "Inicie sesión en UltiMaker Digital Factory" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81 +msgctxt "@info" +msgid "Follow the procedure to add a new printer" +msgstr "Siga el procedimiento para añadir una nueva impresora" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82 +msgctxt "@info" +msgid "Your new printer will automatically appear in Cura" +msgstr "Su nueva impresora aparecerá automáticamente en Cura" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100 +msgctxt "@button" +msgid "Learn more" +msgstr "Más Información" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121 +msgctxt "@button" +msgid "Add local printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129 +msgctxt "@button" +msgid "Sign in to Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133 +msgctxt "@button" +msgid "Waiting for new printers" +msgstr "" + +#: resources/qml/WelcomePages/ChangelogContent.qml:24 msgctxt "@label" msgid "Release Notes" msgstr "Notas de la versión" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:123 +#: resources/qml/WelcomePages/CloudContent.qml:123 msgctxt "@text" msgid "Add material settings and plugins from the Marketplace" msgstr "Añada ajustes de material y complementos desde Marketplace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:149 +#: resources/qml/WelcomePages/CloudContent.qml:149 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" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:175 +#: resources/qml/WelcomePages/CloudContent.qml:175 msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Comparta ideas y obtenga ayuda de más de 48 000 usuarios de la comunidad Ultimaker" +msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" +msgstr "Comparta ideas y obtenga ayuda de más de 48 000 usuarios de la comunidad UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +#: resources/qml/WelcomePages/CloudContent.qml:189 msgctxt "@button" msgid "Skip" msgstr "Omitir" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +#: resources/qml/WelcomePages/CloudContent.qml:201 msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Cree una cuenta gratuita de Ultimaker" +msgid "Create a free UltiMaker Account" +msgstr "Cree una cuenta gratuita de UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Ayúdenos a mejorar Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:56 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura recopila datos anónimos para mejorar la calidad de impresión y la experiencia de usuario, entre otros:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:68 -msgctxt "@text" -msgid "Machine types" -msgstr "Tipos de máquina" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:74 -msgctxt "@text" -msgid "Material usage" -msgstr "Uso de material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:80 -msgctxt "@text" -msgid "Number of slices" -msgstr "Número de segmentos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:86 -msgctxt "@text" -msgid "Print settings" -msgstr "Ajustes de impresión" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:99 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Los datos recopilados por Ultimaker Cura no contendrán información personal." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:100 -msgctxt "@text" -msgid "More information" -msgstr "Más información" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +#: resources/qml/WelcomePages/DropDownWidget.qml:93 msgctxt "@label" msgid "Empty" msgstr "Vacío" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +#: resources/qml/WelcomePages/UserAgreementContent.qml:23 msgctxt "@label" msgid "User Agreement" msgstr "Acuerdo de usuario" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67 +#: resources/qml/WelcomePages/UserAgreementContent.qml:67 msgctxt "@button" msgid "Decline and close" msgstr "Rechazar y cerrar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Le damos la bienvenida a Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:67 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "" -"Siga estos pasos para configurar\n" -"Ultimaker Cura. Solo le llevará unos minutos." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:82 -msgctxt "@button" -msgid "Get started" -msgstr "Empezar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: resources/qml/WelcomePages/WhatsNewContent.qml:28 msgctxt "@label" msgid "What's New" msgstr "Novedades" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: resources/qml/Widgets/ComboBox.qml:18 msgctxt "@label" msgid "No items to select from" msgstr "No hay elementos para seleccionar" -#: ModelChecker/plugin.json -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 "@info:status" +#~ msgid "Cura does not accurately display layers when Wire Printing is enabled." +#~ msgstr "Cura no muestra correctamente las capas si la impresión de alambre está habilitada." -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "Comprobador de modelos" +#~ 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." -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Proporciona asistencia para leer archivos 3MF." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "Lector de 3MF" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Proporciona asistencia para escribir archivos 3MF." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "Escritor de 3MF" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Proporciona asistencia para leer archivos AMF." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "Lector de AMF" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Realice una copia de seguridad de su configuración y restáurela." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Copias de seguridad de Cura" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Backend de CuraEngine" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Proporciona asistencia para la importación de perfiles de Cura." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Lector de perfiles de Cura" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Proporciona asistencia para exportar perfiles de Cura." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Escritor de perfiles de Cura" - -#: DigitalLibrary/plugin.json -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." - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Busca actualizaciones de firmware." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Buscador de actualizaciones de firmware" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Proporciona opciones a la máquina para actualizar el firmware." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Actualizador de firmware" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lee GCode de un archivo comprimido." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lector de GCode comprimido" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Escribe GCode en un archivo comprimido." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Escritor de GCode comprimido" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Lector de perfiles GCode" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permite cargar y visualizar archivos GCode." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "Lector de GCode" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Escribe GCode en un archivo." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "Escritor de GCode" - -#: ImageReader/plugin.json -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." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Lector de imágenes" - -#: LegacyProfileReader/plugin.json -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." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lector de perfiles antiguos de Cura" - -#: MachineSettingsAction/plugin.json -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.)." - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Acción Ajustes de la máquina" - -#: Marketplace/plugin.json -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." - -#: Marketplace/plugin.json -msgctxt "name" -msgid "Marketplace" -msgstr "Marketplace" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Proporciona una fase de supervisión en Cura." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Fase de supervisión" - -#: PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Proporciona los ajustes por modelo." - -#: PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Herramienta de ajustes por modelo" - -#: PostProcessingPlugin/plugin.json -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" - -#: PostProcessingPlugin/plugin.json -msgctxt "name" -msgid "Post Processing" -msgstr "Posprocesamiento" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Proporciona una fase de preparación en Cura." - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "Fase de preparación" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Proporciona una fase de vista previa en Cura." - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "Fase de vista previa" - -#: RemovableDriveOutputDevice/plugin.json -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." - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Complemento de dispositivo de salida de unidad extraíble" - -#: SentryLogger/plugin.json -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" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "Registro de Sentry" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Proporciona la vista previa de los datos de las capas cortadas." - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "Vista de simulación" - -#: SliceInfoPlugin/plugin.json -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." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Info de la segmentación" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Proporciona una vista de malla sólida normal." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Vista de sólidos" - -#: SupportEraser/plugin.json -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" - -#: SupportEraser/plugin.json -msgctxt "name" -msgid "Support Eraser" -msgstr "Borrador de soporte" - -#: TrimeshReader/plugin.json -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Proporciona asistencia para leer archivos 3D." - -#: TrimeshReader/plugin.json -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Lector Trimesh" - -#: UFPReader/plugin.json -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Proporciona soporte para la lectura de paquetes de formato Ultimaker." - -#: UFPReader/plugin.json -msgctxt "name" -msgid "UFP Reader" -msgstr "Lector de UFP" - -#: UFPWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Permite la escritura de paquetes de formato Ultimaker." - -#: UFPWriter/plugin.json -msgctxt "name" -msgid "UFP Writer" -msgstr "Escritor de UFP" - -#: UltimakerMachineActions/plugin.json -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.)." - -#: UltimakerMachineActions/plugin.json -msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Acciones de la máquina Ultimaker" - -#: UM3NetworkPrinting/plugin.json -msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Gestiona las conexiones de red de las impresoras Ultimaker conectadas." - -#: UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Conexión en red de Ultimaker" - -#: USBPrinting/plugin.json -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." - -#: USBPrinting/plugin.json -msgctxt "name" -msgid "USB printing" -msgstr "Impresión USB" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Actualización de la versión 2.1 a la 2.2" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Actualización de la versión 2.2 a la 2.4" - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Actualización de la versión 2.5 a la 2.6" - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Actualización de la versión 2.6 a la 2.7" - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Actualización de la versión 2.7 a la 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Actualización de la versión 3.0 a la 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Actualización de la versión 3.2 a la 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Actualización de la versión 3.3 a la 3.4" - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Actualización de la versión 3.4 a la 3.5" - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Actualización de la versión 3.5 a la 4.0" - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Actualización de la versión 4.0 a la 4.1" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Actualización de la versión 4.11 a 4.12" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Actualización de la versión 4.3 a la 5.0" - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Actualización de la versión 4.1 a la 4.2" - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Actualización de la versión 4.2 a la 4.3" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Actualización de la versión 4.3 a la 4.4" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Actualización de la versión 4.4 a la 4.5" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Actualización de la versión 4.5 a la 4.6" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -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" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -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" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Actualización de la versión 4.7 a la 4.8" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Actualización de la versión 4.8 a la 4.9" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Actualización de la versión 4.9 a la 4.10" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Proporciona asistencia para leer archivos X3D." - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "Lector de X3D" - -#: XmlMaterialProfile/plugin.json -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Permite leer y escribir perfiles de material basados en XML." - -#: XmlMaterialProfile/plugin.json -msgctxt "name" -msgid "Material Profiles" -msgstr "Perfiles de material" - -#: XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Proporciona la vista de rayos X." - -#: XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "Vista de rayos X" - -#~ msgctxt "@label" -#~ msgid "Not yet initialized
    " -#~ msgstr "Aún no se ha inicializado
    " - -#~ msgctxt "@label" -#~ msgid "By" -#~ msgstr "Por" - -#~ msgctxt "@Label" -#~ msgid "Static type checker for Python" -#~ msgstr "Comprobador de tipo estático para Python" - -#~ msgctxt "@Label" -#~ msgid "Root Certificates for validating SSL trustworthiness" -#~ msgstr "Certificados de raíz para validar la fiabilidad del SSL" - -#~ msgctxt "@label" -#~ msgid "Python extensions for Microsoft Windows" -#~ msgstr "Extensiones Python para Microsoft Windows" - -#~ msgctxt "@label" -#~ msgid "SVG icons" -#~ msgstr "Iconos SVG" - -#~ msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" -#~ msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" -#~ msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" -#~ msgstr[0] "No hay ningún perfil %1 para configuración en %2 extrusor. En su lugar se utilizará la opción predeterminada" -#~ msgstr[1] "No hay ningún perfil %1 para configuraciones en %2 extrusores. En su lugar se utilizará la opción predeterminada" - -#~ msgctxt "@tooltip" -#~ msgid "You have modified some profile settings. If you want to change these go to custom mode." -#~ msgstr "Ha modificado algunos ajustes del perfil. Si desea cambiarlos, hágalo en el modo personalizado." - -#~ msgctxt "@action:button" -#~ msgid "Sync materials with printers" -#~ msgstr "Sincronizar materiales" - -#~ msgctxt "@title:window" -#~ msgid "Convert Image..." -#~ msgstr "Convertir imagen..." - -#~ msgctxt "@info:tooltip" -#~ msgid "The width in millimeters on the build plate." -#~ msgstr "La anchura en milímetros en la placa de impresión." - -#~ msgctxt "@title" -#~ msgid "Marketplace" -#~ msgstr "Marketplace" - -#~ msgctxt "@info" -#~ msgid "You will need to restart Cura before changes in packages have effect." -#~ msgstr "Tendrá que reiniciar Cura para que los cambios de los paquetes surtan efecto." - -#~ msgctxt "@action:button" -#~ msgid "Install" -#~ msgstr "Instalar" - -#~ msgctxt "@action:button" -#~ msgid "Installed" -#~ msgstr "Instalado" - -#~ msgctxt "@label" -#~ msgid "Premium" -#~ msgstr "Prémium" - -#~ msgctxt "@info:tooltip" -#~ msgid "Go to Web Marketplace" -#~ msgstr "Ir a Web Marketplace" - -#~ msgctxt "@label" -#~ msgid "Search materials" -#~ msgstr "Buscar materiales" - -#~ msgctxt "@label" -#~ msgid "Compatibility" -#~ msgstr "Compatibilidad" - -#~ msgctxt "@label:table_header" -#~ msgid "Machine" -#~ msgstr "Máquina" - -#~ msgctxt "@label:table_header" -#~ msgid "Build Plate" -#~ msgstr "Placa de impresión" - -#~ msgctxt "@label:table_header" -#~ msgid "Support" -#~ msgstr "Soporte" - -#~ msgctxt "@label:table_header" -#~ msgid "Quality" -#~ msgstr "Calidad" - -#~ msgctxt "@action:label" -#~ msgid "Technical Data Sheet" -#~ msgstr "Especificaciones técnicas" - -#~ msgctxt "@action:label" -#~ msgid "Safety Data Sheet" -#~ msgstr "Especificaciones de seguridad" - -#~ msgctxt "@action:label" -#~ msgid "Printing Guidelines" -#~ msgstr "Directrices de impresión" - -#~ msgctxt "@action:label" -#~ msgid "Website" -#~ msgstr "Sitio web" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to install or update" -#~ msgstr "Inicie sesión para realizar la instalación o la actualización" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Buy material spools" -#~ msgstr "Comprar bobinas de material" - -#~ msgctxt "@action:button" -#~ msgid "Update" -#~ msgstr "Actualizar" - -#~ msgctxt "@action:button" -#~ msgid "Updating" -#~ msgstr "Actualizando" - -#~ msgctxt "@action:button" -#~ msgid "Updated" -#~ msgstr "Actualizado" - -#~ msgctxt "@action:button" -#~ msgid "Back" -#~ msgstr "Atrás" - -#~ msgctxt "@title:tab" -#~ msgid "Plugins" -#~ msgstr "Complementos" - -#~ msgctxt "@title:tab" -#~ msgid "Installed" -#~ msgstr "Instalado" - -#~ msgctxt "@label" -#~ msgid "Will install upon restarting" -#~ msgstr "Se instalará después de reiniciar" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to update" -#~ msgstr "Inicie sesión para realizar la actualización" - -#~ msgctxt "@action:button" -#~ msgid "Downgrade" -#~ msgstr "Degradar" - -#~ msgctxt "@action:button" -#~ msgid "Uninstall" -#~ msgstr "Desinstalar" - -#~ msgctxt "@label" -#~ msgid "Community Contributions" -#~ msgstr "Contribuciones de la comunidad" - -#~ msgctxt "@label" -#~ msgid "Community Plugins" -#~ msgstr "Complementos de la comunidad" - -#~ msgctxt "@label" -#~ msgid "Generic Materials" -#~ msgstr "Materiales genéricos" - -#~ msgctxt "@info" -#~ msgid "Fetching packages..." -#~ msgstr "Buscando paquetes..." - -#~ msgctxt "@label" -#~ msgid "Website" -#~ msgstr "Sitio web" - -#~ msgctxt "@label" -#~ msgid "Email" -#~ msgstr "Correo electrónico" +#~ msgctxt "description" +#~ msgid "Manages network connections to Ultimaker networked printers." +#~ msgstr "Gestiona las conexiones de red de las impresoras Ultimaker conectadas." #~ msgctxt "@description" #~ msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" #~ msgstr "Inicie sesión para obtener complementos y materiales verificados para Ultimaker Cura Enterprise" -#~ msgctxt "@label" -#~ msgid "Version" -#~ msgstr "Versión" - -#~ msgctxt "@label" -#~ msgid "Last updated" -#~ msgstr "Última actualización" - -#~ msgctxt "@label" -#~ msgid "Downloads" -#~ msgstr "Descargas" - -#~ msgctxt "@title:tab" -#~ msgid "Installed plugins" -#~ msgstr "Complementos instalados" - -#~ msgctxt "@info" -#~ msgid "No plugin has been installed." -#~ msgstr "No se ha instalado ningún complemento." - -#~ msgctxt "@title:tab" -#~ msgid "Installed materials" -#~ msgstr "Materiales instalados" - -#~ msgctxt "@info" -#~ msgid "No material has been installed." -#~ msgstr "No se ha instalado ningún material." - -#~ msgctxt "@title:tab" -#~ msgid "Bundled plugins" -#~ msgstr "Complementos agrupados" - -#~ msgctxt "@title:tab" -#~ msgid "Bundled materials" -#~ msgstr "Materiales agrupados" - -#~ msgctxt "@info" -#~ msgid "Could not connect to the Cura Package database. Please check your connection." -#~ msgstr "No se ha podido conectar con la base de datos del Paquete Cura. Compruebe la conexión." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall" -#~ msgstr "Confirmar desinstalación" - -#~ msgctxt "@text:window" -#~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -#~ msgstr "Va a desinstalar materiales o perfiles que todavía están en uso. Si confirma la desinstalación, los siguientes materiales o perfiles volverán a sus valores predeterminados." - -#~ msgctxt "@text:window" -#~ msgid "Materials" -#~ msgstr "Materiales" - -#~ msgctxt "@text:window" -#~ msgid "Profiles" -#~ msgstr "Perfiles" - -#~ msgctxt "@action:button" -#~ msgid "Confirm" -#~ msgstr "Confirmar" - -#~ msgctxt "@info:tooltip" -#~ msgid "Some things could be problematic in this print. Click to see tips for adjustment." -#~ msgstr "Algunos elementos pueden causar problemas durante la impresión. Haga clic para ver consejos sobre cómo ajustarlos." - -#~ msgctxt "@label" -#~ msgid "Support library for handling planar objects" -#~ msgstr "Biblioteca de compatibilidad para trabajar con objetos planos" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "Ha personalizado algunos ajustes del perfil.\n" -#~ "¿Le gustaría mantener estos ajustes cambiados después de cambiar de perfil?\n" -#~ "También puede descartar los cambios para cargar los valores predeterminados de'%1'." - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Build plate" -#~ msgstr "P&laca de impresión" - -#~ msgctxt "@label" -#~ msgid "Create" -#~ msgstr "Crear" - -#~ msgctxt "@label" -#~ msgid "Duplicate" -#~ msgstr "Duplicado" - -#~ msgctxt "@label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "Impresora: %1" - -#~ msgctxt "@action:button" -#~ msgid "Update profile with current settings/overrides" -#~ msgstr "Actualizar perfil con ajustes o sobrescrituras actuales" - -#~ msgctxt "@label" -#~ msgid "Theme:" -#~ msgstr "Tema:" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for these changes to have effect." -#~ msgstr "Tendrá que reiniciar la aplicación para que estos cambios tengan efecto." - -#~ msgctxt "@action:button" -#~ msgid "More information" -#~ msgstr "Más información" - -#~ msgctxt "@action:button" -#~ msgid "Create" -#~ msgstr "Crear" - -#~ msgctxt "@action:button Sending materials to printers" -#~ msgid "Sync with Printers" -#~ msgstr "Sincronizar con las impresoras" - -#~ msgctxt "@action:label" -#~ msgid "Printer" -#~ msgstr "Impresora" - -#~ msgctxt "@title:column" -#~ msgid "Unit" -#~ msgstr "Unidad" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting Guide" -#~ msgstr "Mostrar Guía de resolución de problemas en línea" - -#~ msgctxt "@action:inmenu" -#~ msgid "Add more materials from Marketplace" -#~ msgstr "Añadir más materiales de Marketplace" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange All Models To All Build Plates" -#~ msgstr "Organizar todos los modelos en todas las placas de impresión" - -#~ msgctxt "@action:menu" -#~ msgid "&Marketplace" -#~ msgstr "&Marketplace" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new Cura packages." -#~ msgstr "Buscar, administrar e instalar nuevos paquetes de Cura." - -#~ msgctxt "name" -#~ msgid "Toolbox" -#~ msgstr "Cuadro de herramientas" - -#~ msgctxt "description" -#~ msgid "Provides the Simulation view." -#~ msgstr "Abre la vista de simulación." - -#~ msgctxt "@info:status" -#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Envíe y supervise sus trabajos de impresión desde cualquier lugar a través de su cuenta de Ultimaker." - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Digital Factory" -#~ msgstr "Conectar con Ultimaker Digital Factory" - -#~ msgctxt "@info" -#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." -#~ msgstr "Las transmisiones de la cámara web para impresoras en la nube no se pueden ver en Ultimaker Cura." - -#~ 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 not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -#~ msgstr "Puede que haya nuevas funciones o correcciones de errores disponibles para {machine_name}. Si no tiene la última versión disponible, se recomienda actualizar el firmware de la impresora a la versión {latest_version}." - -#~ msgctxt "@info:title The %s gets replaced with the printer name." -#~ msgid "New %s firmware available" -#~ msgstr "Nuevo firmware de %s disponible" - -#~ msgctxt "@info:status" -#~ msgid "Global stack is missing." -#~ msgstr "Falta la pila global." - -#~ msgctxt "@info:status" -#~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces." -#~ msgstr "Su modelo no es funcional. Las áreas resaltadas indican que faltan superficies o son extrañas." - #~ msgctxt "@info:title" -#~ msgid "Model errors" -#~ msgstr "Errores de modelo" - -#~ msgctxt "@label:listbox" -#~ msgid "Layer thickness" -#~ msgstr "Grosor de la capa" - -#~ msgctxt "@label" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "Su clave para una impresión 3D conectada" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Customize your experience with more print profiles and plugins\n" -#~ "- Stay flexible by syncing your setup and loading it anywhere\n" -#~ "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "" -#~ "- Personalice su experiencia con más perfiles de impresión y complementos\n" -#~ "- Consiga más flexibilidad sincronizando su configuración y cargándola en cualquier lugar\n" -#~ "- Aumente la eficiencia con un flujo de trabajo remoto en las impresoras Ultimaker" - -#~ msgctxt "@button" -#~ msgid "Create account" -#~ msgstr "Crear cuenta" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete Selected Model" -#~ msgid_plural "Delete Selected Models" -#~ msgstr[0] "Eliminar modelo seleccionado" -#~ msgstr[1] "Eliminar modelos seleccionados" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Center Selected Model" -#~ msgid_plural "Center Selected Models" -#~ msgstr[0] "Centrar modelo seleccionado" -#~ msgstr[1] "Centrar modelos seleccionados" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Multiply Selected Model" -#~ msgid_plural "Multiply Selected Models" -#~ msgstr[0] "Multiplicar modelo seleccionado" -#~ msgstr[1] "Multiplicar modelos seleccionados" - -#~ msgctxt "@button" -#~ msgid "Finish" -#~ msgstr "Finalizar" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Account" -#~ msgstr "Cuenta de Ultimaker" - -#~ msgctxt "@text" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "Su clave para una impresión 3D conectada" - -#~ msgctxt "@text" -#~ msgid "- Customize your experience with more print profiles and plugins" -#~ msgstr "- Personalice su experiencia con más perfiles de impresión y complementos" - -#~ msgctxt "@text" -#~ msgid "- Stay flexible by syncing your setup and loading it anywhere" -#~ msgstr "- Consiga más flexibilidad sincronizando su configuración y cargándola en cualquier lugar" - -#~ msgctxt "@text" -#~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "- Aumente la eficiencia con un flujo de trabajo remoto en las impresoras Ultimaker" - -#~ msgctxt "@text" -#~ msgid "" -#~ "Please follow these steps to set up\n" -#~ "Ultimaker Cura. This will only take a few moments." -#~ msgstr "" -#~ "Siga estos pasos para configurar\n" -#~ "Ultimaker Cura. Solo le llevará unos minutos." - -#~ msgctxt "@label" -#~ msgid "What's new in Ultimaker Cura" -#~ msgstr "Novedades en Ultimaker Cura" - -#~ msgctxt "@label ({} is object name)" -#~ msgid "Are you sure you wish to remove {}? This cannot be undone!" -#~ msgstr "¿Seguro que desea eliminar {}? ¡Esta acción no se puede deshacer!" - -#~ msgctxt "@info:status" -#~ msgid "The selected model was too small to load." -#~ msgstr "No se puede cargar el modelo seleccionado, es demasiado pequeño." - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profile {0}" -#~ msgstr "Perfil {0} importado correctamente" - -#~ msgctxt "@info:status" -#~ msgid "Could not find a quality type {0} for the current configuration." -#~ msgstr "No se ha podido encontrar un tipo de calidad {0} para la configuración actual." - -#~ msgctxt "info:status" -#~ msgid "Adding printer {} ({}) from your account" -#~ msgstr "Añadiendo la impresora {} ({}) de su cuenta" - -#~ msgctxt "info:hidden list items" -#~ msgid "
  • ... and {} others
  • " -#~ msgstr "
  • ... y {} más
  • " - -#~ msgctxt "info:status" -#~ msgid "Printers added from Digital Factory:
      {}
    " -#~ msgstr "Impresoras añadidas desde Digital Factory:
      {}
    " - -#~ msgctxt "info:status" -#~ msgid "
      {}
    To establish a connection, please visit the Ultimaker Digital Factory." -#~ msgstr "
      {}
    Para establecer una conexión, visite Ultimaker Digital Factory." - -#~ msgctxt "@label ({} is printer name)" -#~ msgid "{} will be removed until the next account sync.
    To remove {} permanently, visit Ultimaker Digital Factory.

    Are you sure you want to remove {} temporarily?" -#~ msgstr "{} se eliminará hasta la próxima sincronización de la cuenta.
    Para eliminar {} permanentemente, visite Ultimaker Digital Factory.

    ¿Seguro que desea eliminar {} temporalmente?" - -#~ msgctxt "@label" -#~ msgid "" -#~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n" -#~ "Are you sure you want to continue?" -#~ msgstr "" -#~ "Está a punto de eliminar {} impresora(s) de Cura. Esta acción no se puede deshacer.\n" -#~ "¿Seguro que desea continuar?" - -#~ msgctxt "@label" -#~ msgid "" -#~ "You are about to remove all printers from Cura. This action cannot be undone. \n" -#~ "Are you sure you want to continue?" -#~ msgstr "" -#~ "Está a punto de eliminar todas las impresoras de Cura. Esta acción no se puede deshacer.\n" -#~ "¿Seguro que desea continuar?" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update" -#~ msgstr "Actualizar" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Create new" -#~ msgstr "Crear nuevo" - -#~ msgctxt "@label" -#~ msgid "Shared Heater" -#~ msgstr "Calentador compartido" - -#~ msgctxt "@info" -#~ msgid "The webcam is not available because you are monitoring a cloud printer." -#~ msgstr "La cámara web no se encuentra disponible porque está supervisando una impresora en la nube." - -#~ msgctxt "@button" -#~ msgid "Ultimaker Digital Factory" -#~ msgstr "Ultimaker Digital Factory" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can Discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "Ha personalizado algunos ajustes del perfil.\n" -#~ "¿Le gustaría mantener estos ajustes cambiados después de cambiar de perfil?\n" -#~ "También puede descartar los cambios para cargar los valores predeterminados de '%1'." - -#~ msgctxt "@label" -#~ msgid "Overrides %1 setting." -#~ msgid_plural "Overrides %1 settings." -#~ msgstr[0] "Anula el ajuste de %1." -#~ msgstr[1] "Anula los ajustes de %1." - -#~ msgctxt "@text" -#~ msgid "Please give your printer a name" -#~ msgstr "Indique un nombre para su impresora" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." -#~ msgstr "Hay nuevas funciones disponibles para {machine_name}. Se recomienda actualizar el firmware de la impresora." - -#~ msgctxt "@action:button" -#~ msgid "Print via Cloud" -#~ msgstr "Imprimir mediante Cloud" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print via Cloud" -#~ msgstr "Imprimir mediante Cloud" - -#~ msgctxt "@info:status" -#~ msgid "Connected via Cloud" -#~ msgstr "Conectado mediante Cloud" - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Conectar a Ultimaker Cloud" - -#~ msgctxt "@label" -#~ msgid "You need to login first before you can rate" -#~ msgstr "Debe iniciar sesión antes de enviar sus calificaciones" - -#~ msgctxt "@label" -#~ msgid "You need to install the package before you can rate" -#~ msgstr "Debe instalar el paquete antes de enviar sus calificaciones" - -#~ msgctxt "@label" -#~ msgid "ratings" -#~ msgstr "calificaciones" - -#~ msgctxt "@label" -#~ msgid "Featured" -#~ msgstr "Destacado" - -#~ msgctxt "@label" -#~ msgid "Your rating" -#~ msgstr "Su calificación" - -#~ msgctxt "@label" -#~ msgid "Author" -#~ msgstr "Autor" - -#~ msgctxt "@description" -#~ msgid "Get plugins and materials verified by Ultimaker" -#~ msgstr "Obtener complementos y materiales verificados por Ultimaker" - -#~ msgctxt "@label The argument is a username." -#~ msgid "Hi %1" -#~ msgstr "Hola, %1" - -#~ msgctxt "@button" -#~ msgid "Ultimaker account" -#~ msgstr "Cuenta de Ultimaker" - -#~ msgctxt "@button" -#~ msgid "Sign out" -#~ msgstr "Cerrar sesión" - -#~ msgctxt "@label" -#~ msgid "Support library for analysis of complex networks" -#~ msgstr "Biblioteca de compatibilidad para analizar redes complejas" - -#~ msgctxt "@Label" -#~ msgid "Python HTTP library" -#~ msgstr "Biblioteca HTTP de Python" - -#~ msgctxt "@text:window" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to keep or discard those settings?" -#~ msgstr "" -#~ "Ha personalizado parte de los ajustes del perfil.\n" -#~ "¿Desea descartar los cambios o guardarlos?" - -#~ msgctxt "@title:column" -#~ msgid "Default" -#~ msgstr "Valor predeterminado" - -#~ msgctxt "@title:column" -#~ msgid "Customized" -#~ msgstr "Valor personalizado" - -#~ msgctxt "@action:button" -#~ msgid "Discard" -#~ msgstr "Descartar" - -#~ msgctxt "@action:button" -#~ msgid "Keep" -#~ msgstr "Guardar" - -#~ msgctxt "@action:button" -#~ msgid "Create New Profile" -#~ msgstr "Crear nuevo perfil" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "&Save..." -#~ msgstr "&Guardar..." - -#~ msgctxt "@text" -#~ msgid "Place enter your printer's IP address." -#~ msgstr "Introduzca la dirección IP de su impresora." - -#~ msgctxt "@button" -#~ msgid "Create an account" -#~ msgstr "Crear una cuenta" - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder." -#~ msgstr "No hay nada que segmentar porque ninguno de los modelos se adapta al volumen de impresión o los modelos están asignados a un extrusor deshabilitado. Escale o rote los modelos para que se adapten o habilite un extrusor." - -#~ msgctxt "@info:backup_status" -#~ msgid "There was an error listing your backups." -#~ msgstr "Se ha producido un error al obtener sus copias de seguridad." - -#~ msgctxt "@title:groupbox" -#~ msgid "User description (Note: Developers may not speak your language, please use English if possible)" -#~ msgstr "Descripción del usuario (Nota: es posible que los desarrolladores no hablen su idioma; si es posible, utilice el inglés)" - -#~ msgctxt "@title:window" -#~ msgid "Closing Cura" -#~ msgstr "Cerrando Cura" - -#~ msgctxt "@label" -#~ msgid "Are you sure you want to exit Cura?" -#~ msgstr "¿Seguro que desea salir de Cura?" - -#~ msgctxt "@label" -#~ msgid "Language:" -#~ msgstr "Idioma:" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud" - -#~ msgctxt "@text" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "El flujo de trabajo de impresión 3D de próxima generación" - -#~ msgctxt "@text" -#~ msgid "- Send print jobs to Ultimaker printers outside your local network" -#~ msgstr "- Envíe trabajos de impresión a impresoras Ultimaker fuera de su red local" - -#~ msgctxt "@text" -#~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere" -#~ msgstr "- Guarde su configuración de Ultimaker Cura en la nube para poder usarla en cualquier lugar" - -#~ msgctxt "@text" -#~ msgid "- Get exclusive access to print profiles from leading brands" -#~ msgstr "- Disfrute de acceso exclusivo a perfiles de impresión de marcas líderes" - -#~ msgctxt "@label" -#~ msgid "The value is resolved from per-extruder values " -#~ msgstr "El valor se resuelve según los valores de los extrusores. " - -#~ msgctxt "@label" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "El flujo de trabajo de impresión 3D de próxima generación" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to print profiles from leading brands" -#~ msgstr "" -#~ "- Envíe trabajos de impresión a impresoras Ultimaker fuera de su red local\n" -#~ "- Guarde su configuración de Ultimaker Cura en la nube para poder usarla en cualquier lugar\n" -#~ "- Disfrute de acceso exclusivo a perfiles de impresión de marcas líderes" - -#~ msgctxt "@title:window" -#~ msgid "About " -#~ msgstr "Acerca de " - -#~ msgctxt "@info:button" -#~ msgid "Quit Cura" -#~ msgstr "Salir de Cura" - -#~ msgctxt "@action:checkbox" -#~ msgid "Infill only" -#~ msgstr "Solo relleno" - -#~ msgctxt "@info:tooltip" -#~ msgid "Change active post-processing scripts" -#~ msgstr "Cambia las secuencias de comandos de posprocesamiento" - -#~ msgctxt "@label:listbox" -#~ msgid "Feedrate" -#~ msgstr "Velocidad" - -#~ msgctxt "name" -#~ msgid "Machine Settings action" -#~ msgstr "Acción Ajustes de la máquina" - -#~ msgctxt "@info:title" -#~ msgid "New cloud printers found" -#~ msgstr "Se han encontrado nuevas impresoras en la nube" - -#~ msgctxt "@info:message" -#~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers." -#~ msgstr "Se han encontrado nuevas impresoras conectadas a tu cuenta; puedes verlas en la lista de impresoras descubiertas." - -#~ msgctxt "@info:status" -#~ msgid "Cura does not accurately display layers when Wire Printing is enabled" -#~ msgstr "Cura no muestra correctamente las capas si la impresión de alambre está habilitada" - -#~ msgctxt "@label" -#~ msgid "Pre-sliced file {0}" -#~ msgstr "Archivo {0} presegmentado" - -#~ msgctxt "@label" -#~ msgid "" -#~ "This plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ "Este complemento incluye una licencia.\n" -#~ "Debe aceptar dicha licencia para instalar el complemento.\n" -#~ "¿Acepta las condiciones que aparecen a continuación?" - -#~ msgctxt "@action:button" -#~ msgid "Accept" -#~ msgstr "Aceptar" - -#~ msgctxt "@action:button" -#~ msgid "Decline" -#~ msgstr "Rechazar" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show All Settings" -#~ msgstr "Mostrar todos los ajustes" - -#~ msgctxt "@title:window" -#~ msgid "Ultimaker Cura" -#~ msgstr "Ultimaker Cura" - -#~ msgctxt "@title:window" -#~ msgid "About Cura" -#~ msgstr "Acerca de Cura" - -#~ msgctxt "@item:inmenu" -#~ msgid "Flatten active settings" -#~ msgstr "Aplanar ajustes activos" - -#~ msgctxt "@info:status" -#~ msgid "Profile has been flattened & activated." -#~ msgstr "El perfil se ha aplanado y activado." - -#~ msgctxt "X3g Writer Plugin Description" -#~ msgid "Writes X3g to files" -#~ msgstr "Escribe X3g en archivos" - -#~ msgctxt "X3g Writer File Description" -#~ msgid "X3g File" -#~ msgstr "Archivo X3g" - -#~ msgctxt "X3G Writer File Description" -#~ msgid "X3G File" -#~ msgstr "Archivo X3G" - -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "Asistente del perfil" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "Asistente del perfil" - -#~ msgctxt "@action:button" -#~ msgid "Retry" -#~ msgstr "Volver a intentar" - -#~ msgctxt "@label:table_header" -#~ msgid "Print Core" -#~ msgstr "Print core" - -#~ msgctxt "@label" -#~ msgid "Don't support overlap with other models" -#~ msgstr "No crear soporte en otros modelos (por superposición)" - -#~ msgctxt "@label" -#~ msgid "Modify settings for overlap with other models" -#~ msgstr "Modificar ajustes de otros modelos (por superposición)" - -#~ msgctxt "@label" -#~ msgid "Modify settings for infill of other models" -#~ msgstr "Modificar ajustes del relleno de otros modelos" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update existing" -#~ msgstr "Actualizar existente" - -#~ msgctxt "@label" -#~ msgid "Not supported" -#~ msgstr "No compatible" - -#~ msgctxt "@action:button" -#~ msgid "Previous" -#~ msgstr "Anterior" - -#~ msgctxt "@label" -#~ msgid "Tip" -#~ msgstr "Consejo" - -#~ msgctxt "@label" -#~ msgid "Print experiment" -#~ msgstr "Ensayo de impresión" - -#~ msgctxt "@label" -#~ msgid "Checklist" -#~ msgstr "Lista de verificación" - -#~ msgctxt "@label" -#~ msgid "Please select any upgrades made to this Ultimaker 2." -#~ msgstr "Seleccione cualquier actualización de este Ultimaker 2." - -#~ msgctxt "@label" -#~ msgid "Olsson Block" -#~ msgstr "Bloque Olsson" - -#~ msgctxt "@window:text" -#~ msgid "Camera rendering: " -#~ msgstr "Renderizado de cámara: " - -#~ msgctxt "@info:tooltip" -#~ msgid "Use multi build plate functionality" -#~ msgstr "Utilizar funcionalidad de placa de impresión múltiple" - -#~ msgctxt "@option:check" -#~ msgid "Use multi build plate functionality (restart required)" -#~ msgstr "Utilizar funcionalidad de placa de impresión múltiple (reinicio requerido)" - -#~ msgctxt "@label" -#~ msgid "Default profiles" -#~ msgstr "Perfiles predeterminados" - -#~ msgctxt "@label:textbox" -#~ msgid "search settings" -#~ msgstr "buscar ajustes" - -#~ msgctxt "@label" -#~ msgid "Layer Height" -#~ msgstr "Altura de capa" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile." -#~ msgstr "Este perfil de calidad no se encuentra disponible para su configuración de material y tobera actual. Cámbielas para poder habilitar este perfil de calidad." - -#~ msgctxt "@tooltip" -#~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" -#~ msgstr "Hay un perfil personalizado activado en este momento. Para habilitar el control deslizante de calidad, seleccione un perfil de calidad predeterminado en la pestaña Personalizado" - -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "&Placa de impresión" - -#~ msgctxt "@title:settings" -#~ msgid "&Profile" -#~ msgstr "&Perfil" - -#~ msgctxt "@action:label" -#~ msgid "Build plate" -#~ msgstr "Placa de impresión" - -#~ msgctxt "description" -#~ msgid "Dump the contents of all settings to a HTML file." -#~ msgstr "Vuelva el contenido de todas las configuraciones en un archivo HTML." - -#~ msgctxt "name" -#~ msgid "God Mode" -#~ msgstr "God Mode" - -#~ msgctxt "description" -#~ msgid "Create a flattened quality changes profile." -#~ msgstr "Crear un perfil de cambios de calidad aplanado." - -#~ msgctxt "name" -#~ msgid "Profile Flattener" -#~ msgstr "Aplanador de perfil" - -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "Permite a los fabricantes de material crear nuevos perfiles de material y calidad mediante una IU integrada." - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "Imprimir asistente del perfil" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network." -#~ msgstr "Conectado a través de la red." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. Please approve the access request on the printer." -#~ msgstr "Conectado a través de la red. Apruebe la solicitud de acceso en la impresora." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. No access to control the printer." -#~ msgstr "Conectado a través de la red. No hay acceso para controlar la impresora." - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer requested. Please approve the request on the printer" -#~ msgstr "Acceso a la impresora solicitado. Apruebe la solicitud en la impresora" - -#~ msgctxt "@info:title" -#~ msgid "Authentication status" -#~ msgstr "Estado de la autenticación" - -#~ msgctxt "@info:title" -#~ msgid "Authentication Status" -#~ msgstr "Estado de la autenticación" - -#~ msgctxt "@info:tooltip" -#~ msgid "Re-send the access request" -#~ msgstr "Reenvía la solicitud de acceso" - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer accepted" -#~ msgstr "Acceso a la impresora aceptado" - -#~ msgctxt "@info:status" -#~ msgid "No access to print with this printer. Unable to send print job." -#~ msgstr "No hay acceso para imprimir con esta impresora. No se puede enviar el trabajo de impresión." - -#~ msgctxt "@action:button" -#~ msgid "Request Access" -#~ msgstr "Solicitar acceso" - -#~ msgctxt "@info:tooltip" -#~ msgid "Send access request to the printer" -#~ msgstr "Envía la solicitud de acceso a la impresora" - -#~ msgctxt "@label" -#~ msgid "Unable to start a new print job." -#~ msgstr "No se puede iniciar un nuevo trabajo de impresión." - -#~ msgctxt "@label" -#~ msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." -#~ msgstr "Un problema con la configuración de Ultimaker impide iniciar la impresión. Soluciónelo antes de continuar." - -#~ msgctxt "@window:title" -#~ msgid "Mismatched configuration" -#~ msgstr "Configuración desajustada" - -#~ msgctxt "@label" -#~ msgid "Are you sure you wish to print with the selected configuration?" -#~ msgstr "¿Seguro que desea imprimir con la configuración seleccionada?" - -#~ msgctxt "@label" -#~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "La configuración o calibración de la impresora y de Cura no coinciden. Para obtener el mejor resultado, segmente siempre los PrintCores y los materiales que se insertan en la impresora." - -#~ msgctxt "@info:status" -#~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." -#~ msgstr "Envío de nuevos trabajos (temporalmente) bloqueado; se sigue enviando el trabajo de impresión previo." - -#~ msgctxt "@info:status" -#~ msgid "Sending data to printer" -#~ msgstr "Enviando datos a la impresora" - -#~ msgctxt "@info:title" -#~ msgid "Sending Data" -#~ msgstr "Enviando datos" - -#~ msgctxt "@info:status" -#~ msgid "No Printcore loaded in slot {slot_number}" -#~ msgstr "No se ha cargado ningún PrintCore en la ranura {slot_number}." - -#~ msgctxt "@info:status" -#~ msgid "No material loaded in slot {slot_number}" -#~ msgstr "No se ha cargado ningún material en la ranura {slot_number}." - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" -#~ msgstr "PrintCore distinto (Cura: {cura_printcore_name}, impresora: {remote_printcore_name}) seleccionado para extrusor {extruder_id}" - -#~ msgctxt "@label" -#~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Material distinto (Cura: {0}, impresora: {1}) seleccionado para extrusor {2}" - -#~ msgctxt "@window:title" -#~ msgid "Sync with your printer" -#~ msgstr "Sincronizar con la impresora" - -#~ msgctxt "@label" -#~ msgid "Would you like to use your current printer configuration in Cura?" -#~ msgstr "¿Desea utilizar la configuración actual de su impresora en Cura?" - -#~ msgctxt "@label" -#~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "Los PrintCores o los materiales de la impresora difieren de los del proyecto actual. Para obtener el mejor resultado, segmente siempre los PrintCores y materiales que se hayan insertado en la impresora." - -#~ msgctxt "@action:button" -#~ msgid "View in Monitor" -#~ msgstr "Ver en pantalla" - -#~ msgctxt "@info:status" -#~ msgid "Printer '{printer_name}' has finished printing '{job_name}'." -#~ msgstr "{printer_name} ha terminado de imprimir «{job_name}»." - -#~ msgctxt "@info:status" -#~ msgid "The print job '{job_name}' was finished." -#~ msgstr "El trabajo de impresión '{job_name}' ha terminado." - -#~ msgctxt "@info:status" -#~ msgid "Print finished" -#~ msgstr "Impresión terminada" - -#~ msgctxt "@label:material" -#~ msgid "Empty" -#~ msgstr "Vacío" - -#~ msgctxt "@label:material" -#~ msgid "Unknown" -#~ msgstr "Desconocido" - -#~ msgctxt "@info:title" -#~ msgid "Cloud error" -#~ msgstr "Error de Cloud" - -#~ msgctxt "@info:status" -#~ msgid "Could not export print job." -#~ msgstr "No se ha podido exportar el trabajo de impresión." - -#~ msgctxt "@info:description" -#~ msgid "There was an error connecting to the cloud." -#~ msgstr "Se ha producido un error al conectarse a la nube." - -#~ msgctxt "@info:status" -#~ msgid "Uploading via Ultimaker Cloud" -#~ msgstr "Cargando a través de Ultimaker Cloud" - -#~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Conectar a Ultimaker Cloud" - -#~ msgctxt "@action" -#~ msgid "Don't ask me again for this printer." -#~ msgstr "No volver a preguntarme para esta impresora." - -#~ msgctxt "@info:status" -#~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Ahora ya puede enviar y supervisar sus trabajos de impresión desde cualquier lugar a través de su cuenta de Ultimaker." - -#~ msgctxt "@info:status" -#~ msgid "Connected!" -#~ msgstr "¡Conectado!" - -#~ msgctxt "@action" -#~ msgid "Review your connection" -#~ msgstr "Revise su conexión" - -#~ msgctxt "@info:status Don't translate the XML tags !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "El equipo definido en el perfil {0} ({1}) no coincide con el equipo actual ({2}), no se ha podido importar." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}:" -#~ msgstr "Error al importar el perfil de {0}:" - -#~ msgctxt "@window:title" -#~ msgid "Existing Connection" -#~ msgstr "Conexión existente" - -#~ msgctxt "@message:text" -#~ msgid "This printer/group is already added to Cura. Please select another printer/group." -#~ msgstr "Esta impresora o grupo de impresoras ya se ha añadido a Cura. Seleccione otra impresora o grupo de impresoras." - -#~ msgctxt "@label" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "Introduzca la dirección IP o el nombre de host de la impresora en la red." - -#~ msgctxt "@info:tooltip" -#~ msgid "Connect to a printer" -#~ msgstr "Conecta a una impresora" - -#~ msgctxt "@title" -#~ msgid "Cura Settings Guide" -#~ msgstr "Guía de ajustes de Cura" - -#~ msgctxt "@info:tooltip" -#~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective." -#~ msgstr "Hacer zoom en la dirección del ratón no es compatible con la perspectiva ortogonal." - -#~ msgid "Orthogonal" -#~ msgstr "Ortográfica" - -#~ msgctxt "description" -#~ msgid "Manages network connections to Ultimaker 3 printers." -#~ msgstr "Gestiona las conexiones de red a las impresoras Ultimaker 3." - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection" -#~ msgstr "Conexión de red UM3" - -#~ msgctxt "description" -#~ msgid "Provides extra information and explanations about settings in Cura, with images and animations." -#~ msgstr "Proporciona información y explicaciones adicionales sobre los ajustes de Cura con imágenes y animaciones." - -#~ msgctxt "name" -#~ msgid "Settings Guide" -#~ msgstr "Guía de ajustes" - -#~ msgctxt "@item:inmenu" -#~ msgid "Cura Settings Guide" -#~ msgstr "Guía de ajustes de Cura" - -#~ msgctxt "@info:generic" -#~ msgid "Settings have been changed to match the current availability of extruders: [%s]" -#~ msgstr "La configuración se ha cambiado para que coincida con los extrusores disponibles en este momento: [%s]." - -#~ msgctxt "@title:groupbox" -#~ msgid "User description" -#~ msgstr "Descripción del usuario" - -#~ msgctxt "@info" -#~ msgid "These options are not available because you are monitoring a cloud printer." -#~ msgstr "Estas opciones no se encuentran disponibles porque está supervisando una impresora en la nube." - -#~ msgctxt "@label link to connect manager" -#~ msgid "Go to Cura Connect" -#~ msgstr "Ir a Cura Connect" - -#~ msgctxt "@info" -#~ msgid "All jobs are printed." -#~ msgstr "Se han imprimido todos los trabajos." - -#~ msgctxt "@label link to connect manager" -#~ msgid "View print history" -#~ msgstr "Ver historial de impresión" - -#~ 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.\n" -#~ "\n" -#~ "Select your printer from the list below:" -#~ msgstr "" -#~ "Para imprimir directamente en la impresora a través de la red, asegúrese de que ésta está conectada a la red utilizando un cable de red o conéctela a la red wifi. Si no conecta Cura con la impresora, también puede utilizar una unidad USB para transferir archivos GCode a la impresora.\n" -#~ "\n" -#~ "Seleccione la impresora de la siguiente lista:" - -#~ 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." -#~ msgstr "" -#~ "Asegúrese de que su impresora está conectada:\n" -#~ "- Compruebe que la impresora está encendida.\n" -#~ "- Compruebe que la impresora está conectada a la red." - -#~ msgctxt "@option:check" -#~ msgid "See only current build plate" -#~ msgstr "Ver solo placa de impresión actual" - -#~ msgctxt "@action:button" -#~ msgid "Arrange to all build plates" -#~ msgstr "Organizar todas las placas de impresión" - -#~ msgctxt "@action:button" -#~ msgid "Arrange current build plate" -#~ msgstr "Organizar placa de impresión actual" - -#~ msgctxt "description" -#~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)." -#~ msgstr "Permite guardar el segmento resultante como un archivo X3G para dar compatibilidad a impresoras que leen este formato (Malyan, Makerbot y otras impresoras basadas en Sailfish)." - -#~ msgctxt "name" -#~ msgid "X3GWriter" -#~ msgstr "X3GWriter" - -#~ msgctxt "description" -#~ msgid "Reads SVG files as toolpaths, for debugging printer movements." -#~ msgstr "Lee archivos SVG como trayectorias de herramienta para solucionar errores en los movimientos de la impresora." - -#~ msgctxt "name" -#~ msgid "SVG Toolpath Reader" -#~ msgstr "Lector de trayectoria de herramienta de SVG" - -#~ msgctxt "@item:inmenu" -#~ msgid "Changelog" -#~ msgstr "Registro de cambios" - -#~ msgctxt "@item:inmenu" -#~ msgid "Show Changelog" -#~ msgstr "Mostrar registro de cambios" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to remote cluster" -#~ msgstr "Enviando datos al clúster remoto" - -#~ msgctxt "@info:status" -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Conectar a Ultimaker Cloud" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymized usage statistics." -#~ msgstr "Cura recopila estadísticas de uso de forma anónima." - -#~ msgctxt "@info:title" -#~ msgid "Collecting Data" -#~ msgstr "Recopilando datos" - -#~ msgctxt "@action:button" -#~ msgid "More info" -#~ msgstr "Más información" - -#~ msgctxt "@action:tooltip" -#~ msgid "See more information on what data Cura sends." -#~ msgstr "Obtenga más información sobre qué datos envía Cura." - -#~ msgctxt "@action:button" -#~ msgid "Allow" -#~ msgstr "Permitir" - -#~ msgctxt "@action:tooltip" -#~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." -#~ msgstr "Permitir a Cura enviar estadísticas de uso de forma anónima para ayudar a priorizar mejoras futuras para Cura. Se envían algunas de sus preferencias y ajustes, la versión de Cura y un resumen de los modelos que está fragmentando." - -#~ msgctxt "@item:inmenu" -#~ msgid "Evaluation" -#~ msgstr "Evaluación" - -#~ msgctxt "@info:title" -#~ msgid "Network enabled printers" -#~ msgstr "Impresoras de red habilitadas" - -#~ msgctxt "@info:title" -#~ msgid "Local printers" -#~ msgstr "Impresoras locales" - -#~ msgctxt "@info:backup_failed" -#~ msgid "Tried to restore a Cura backup that does not match your current version." -#~ msgstr "Se ha intentado restaurar una copia de seguridad de Cura que no coincide con la versión actual." - -#~ msgctxt "@title" -#~ msgid "Machine Settings" -#~ msgstr "Ajustes de la máquina" - -#~ msgctxt "@label" -#~ msgid "Printer Settings" -#~ msgstr "Ajustes de la impresora" - -#~ msgctxt "@option:check" -#~ msgid "Origin at center" -#~ msgstr "Origen en el centro" - -#~ msgctxt "@option:check" -#~ msgid "Heated bed" -#~ msgstr "Plataforma caliente" - -#~ msgctxt "@label" -#~ msgid "Printhead Settings" -#~ msgstr "Ajustes del cabezal de impresión" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Distancia desde la parte izquierda del cabezal de impresión hasta el centro de la tobera. Se usa para evitar que colisionen la impresión anterior con el cabezal de impresión al imprimir «de uno en uno»." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Distancia desde la parte frontal del cabezal de impresión hasta el centro de la tobera. Se usa para evitar que colisionen la impresión anterior con el cabezal de impresión al imprimir «de uno en uno»." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Distancia desde la parte derecha del cabezal de impresión hasta el centro de la tobera. Se usa para evitar que colisionen la impresión anterior con el cabezal de impresión al imprimir «de uno en uno»." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Distancia desde la parte trasera del cabezal de impresión hasta el centro de la tobera. Se usa para evitar que colisionen la impresión anterior con el cabezal de impresión al imprimir «de uno en uno»." - -#~ msgctxt "@label" -#~ msgid "Gantry height" -#~ msgstr "Altura del caballete" - -#~ msgctxt "@tooltip" -#~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." -#~ msgstr "Diferencia de altura entre la punta de la tobera y el sistema del puente (ejes X e Y). Se usa para evitar que colisionen la impresión anterior con el caballete al imprimir «de uno en uno»." - -#~ msgctxt "@label" -#~ msgid "Start G-code" -#~ msgstr "Iniciar GCode" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very start." -#~ msgstr "Los comandos de GCode que se ejecutarán justo al inicio." - -#~ msgctxt "@label" -#~ msgid "End G-code" -#~ msgstr "Finalizar GCode" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very end." -#~ msgstr "Los comandos de GCode que se ejecutarán justo al final." - -#~ msgctxt "@label" -#~ msgid "Nozzle Settings" -#~ msgstr "Ajustes de la tobera" - -#~ msgctxt "@tooltip" -#~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." -#~ msgstr "El diámetro nominal del filamento compatible con la impresora. El diámetro exacto se sobrescribirá según el material o el perfil." - -#~ msgctxt "@label" -#~ msgid "Extruder Start G-code" -#~ msgstr "GCode inicial del extrusor" - -#~ msgctxt "@label" -#~ msgid "Extruder End G-code" -#~ msgstr "GCode final del extrusor" - -#~ msgctxt "@label" -#~ msgid "Changelog" -#~ msgstr "Registro de cambios" - -#~ msgctxt "@title:window" -#~ msgid "User Agreement" -#~ msgstr "Acuerdo de usuario" - -#~ msgctxt "@alabel" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "Introduzca la dirección IP o el nombre de host de la impresora en red." - -#~ msgctxt "@info" -#~ msgid "Please select a network connected printer to monitor." -#~ msgstr "Seleccione la impresora conectada a la red que desee supervisar." - -#~ msgctxt "@info" -#~ msgid "Please connect your Ultimaker printer to your local network." -#~ msgstr "Conecte su impresora Ultimaker a su red local." - -#~ msgctxt "@text:window" -#~ msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent." -#~ msgstr "Cura envía datos anónimos a Ultimaker para mejorar la calidad de impresión y la experiencia de usuario. A continuación, hay un ejemplo de todos los datos que se han enviado." - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send this data" -#~ msgstr "No deseo enviar estos datos" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending this data to Ultimaker and help us improve Cura" -#~ msgstr "Permita que estos datos se envíen a Ultimaker y ayúdenos a mejorar Cura" - -#~ msgctxt "@label" -#~ msgid "No print selected" -#~ msgstr "No ha seleccionado ninguna impresora" - -#~ msgctxt "@info:tooltip" -#~ 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 "De manera predeterminada, los píxeles blancos representan los puntos altos de la malla y los píxeles negros representan los puntos bajos de la malla. Cambie esta opción para invertir el comportamiento de tal manera que los píxeles negros representen los puntos altos de la malla y los píxeles blancos representen los puntos bajos de la malla." - -#~ msgctxt "@title" -#~ msgid "Select Printer Upgrades" -#~ msgstr "Seleccionar actualizaciones de impresora" - -#~ msgctxt "@label" -#~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "Seleccione qué extrusor se utilizará como soporte. Esta opción formará estructuras de soporte por debajo del modelo para evitar que éste se combe o la impresión se haga en el aire." - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "Este perfil de calidad no se encuentra disponible para su configuración de material y tobera actual. Cámbiela para poder habilitar este perfil de calidad." - -#~ msgctxt "@label shown when we load a Gcode file" -#~ msgid "Print setup disabled. G code file can not be modified." -#~ msgstr "Configuración de impresión deshabilitada. No se puede modificar el GCode." - -#~ msgctxt "@label" -#~ msgid "See the material compatibility chart" -#~ msgstr "Ver el gráfico de compatibilidad de materiales" - -#~ msgctxt "@label" -#~ msgid "View types" -#~ msgstr "Ver tipos" - -#~ msgctxt "@label" -#~ msgid "Hi " -#~ msgstr "Hola " - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to material profiles from leading brands" -#~ msgstr "" -#~ "- Envíe trabajos de impresión a impresoras Ultimaker fuera de su red local\n" -#~ "- Guarde su configuración de Ultimaker Cura en la nube para poder usarla en cualquier lugar\n" -#~ "- Disfrute de acceso exclusivo a perfiles de materiales de marcas líderes" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Unable to Slice" -#~ msgstr "No se puede segmentar" - -#~ msgctxt "@label" -#~ msgid "Time specification" -#~ msgstr "Especificación de tiempos" - -#~ msgctxt "@label" -#~ msgid "Material specification" -#~ msgstr "Especificación de materiales" - -#~ msgctxt "@title:tab" -#~ msgid "Add a printer to Cura" -#~ msgstr "Añadir una impresora a Cura" - -#~ msgctxt "@title:tab" -#~ msgid "" -#~ "Select the printer you want to use from the list below.\n" -#~ "\n" -#~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog." -#~ msgstr "" -#~ "Seleccione la impresora que desee utilizar de la lista que se muestra a continuación.\n" -#~ "\n" -#~ "Si no encuentra su impresora en la lista, utilice la opción \"Custom FFF Printer\" (Impresora FFF personalizada) de la categoría Personalizado y configure los ajustes para adaptarlos a su impresora en el siguiente cuadro de diálogo." - -#~ msgctxt "@label" -#~ msgid "Printer Name" -#~ msgstr "Nombre de la impresora" - -#~ msgctxt "@action:button" -#~ msgid "Add Printer" -#~ msgstr "Agregar impresora" - -#~ msgid "Modify G-Code" -#~ msgstr "Modificar GCode" - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." -#~ msgstr "No hay nada que segmentar porque ninguno de los modelos se adapta al volumen de impresión. Escale o rote los modelos para que se adapten." - -#~ msgctxt "@info:status" -#~ msgid "The selected material is incompatible with the selected machine or configuration." -#~ msgstr "El material seleccionado no es compatible con la máquina o la configuración seleccionada." - -#~ msgctxt "@info:title" -#~ msgid "Incompatible Material" -#~ msgstr "Material incompatible" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "Error al importar el perfil de {0}: {1}" - -#~ msgctxt "@title" -#~ msgid "Toolbox" -#~ msgstr "Cuadro de herramientas" - -#~ msgctxt "@label" -#~ msgid "Not available" -#~ msgstr "No disponible" - -#~ msgctxt "@label" -#~ msgid "Unreachable" -#~ msgstr "No se puede conectar" - -#~ msgctxt "@label" -#~ msgid "Available" -#~ msgstr "Disponible" - -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "Preparando" - -#~ msgctxt "@label:status" -#~ msgid "Pausing" -#~ msgstr "Pausando" - -#~ msgctxt "@label:status" -#~ msgid "Resuming" -#~ msgstr "Reanudando" - -#~ msgctxt "@label" -#~ msgid "Waiting for: Unavailable printer" -#~ msgstr "Esperando: impresora no disponible" - -#~ msgctxt "@label" -#~ msgid "Waiting for: First available" -#~ msgstr "Esperando: primera disponible" - -#~ msgctxt "@label" -#~ msgid "Waiting for: " -#~ msgstr "Esperando: " - -#~ msgctxt "@label" -#~ msgid "Configuration change" -#~ msgstr "Cambio de configuración" - -#~ msgctxt "@label" -#~ msgid "The assigned printer, %1, requires the following configuration change(s):" -#~ msgstr "Es necesario modificar la siguiente configuración de la impresora asignada %1:" - -#~ msgctxt "@label" -#~ msgid "Override" -#~ msgstr "Anular" - -#~ msgctxt "@label" -#~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?" -#~ msgstr "Iniciar un trabajo de impresión con una configuración no compatible puede causar daños en su impresora 3D. ¿Seguro de que desea sobrescribir la configuración e imprimir %1?" - -#~ msgctxt "@window:title" -#~ msgid "Override configuration configuration and start print" -#~ msgstr "Sobrescribir la configuración e iniciar la impresión" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage queue" -#~ msgstr "Administrar cola" - -#~ msgctxt "@label" -#~ msgid "Printing" -#~ msgstr "Imprimiendo" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage printers" -#~ msgstr "Administrar impresoras" - -#~ msgctxt "@action:button" -#~ msgid "Activate Configuration" -#~ msgstr "Activar configuración" - -#~ msgctxt "@info:tooltip" -#~ msgid "Load the configuration of the printer into Cura" -#~ msgstr "Carga la configuración de la impresora en Cura" - -#~ msgctxt "@label" -#~ msgid "Show Travels" -#~ msgstr "Mostrar desplazamientos" - -#~ msgctxt "@label" -#~ msgid "Show Helpers" -#~ msgstr "Mostrar asistentes" - -#~ msgctxt "@label" -#~ msgid "Show Shell" -#~ msgstr "Mostrar perímetro" - -#~ msgctxt "@label" -#~ msgid "Show Infill" -#~ msgstr "Mostrar relleno" - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send these data" -#~ msgstr "No quiero enviar estos datos" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending these data to Ultimaker and help us improve Cura" -#~ msgstr "Permita enviar estos datos a Ultimaker y ayúdenos a mejorar Cura" - -#~ msgctxt "@label" -#~ msgid "Printer type:" -#~ msgstr "Tipo de impresora:" - -#~ msgctxt "@label" -#~ msgid "Connection:" -#~ msgstr "Conexión:" - -#~ msgctxt "@label" -#~ msgid "State:" -#~ msgstr "Estado:" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for a printjob" -#~ msgstr "Esperando un trabajo de impresión" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for someone to clear the build plate" -#~ msgstr "Esperando a que alguien limpie la placa de impresión" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Aborting print..." -#~ msgstr "Cancelando impresión..." - -#~ msgctxt "@label" -#~ msgid "Protected profiles" -#~ msgstr "Perfiles protegidos" - -#~ msgctxt "@label" -#~ msgid "Printer Name:" -#~ msgstr "Nombre de la impresora:" - -#~ msgctxt "@label" -#~ msgid "Profile:" -#~ msgstr "Perfil:" - -#~ msgctxt "@label:textbox" -#~ msgid "Search..." -#~ msgstr "Buscar..." - -#~ msgctxt "@action:inmenu" -#~ msgid "Collapse All" -#~ msgstr "Contraer todo" - -#~ msgctxt "@action:inmenu" -#~ msgid "Expand All" -#~ msgstr "Ampliar todo" - -#~ msgctxt "@label:header configurations" -#~ msgid "Available configurations" -#~ msgstr "Configuraciones disponibles" - -#~ msgctxt "@label:extruder label" -#~ msgid "Extruder" -#~ msgstr "Extrusor" - -#~ msgctxt "@label:extruder label" -#~ msgid "Yes" -#~ msgstr "Sí" - -#~ msgctxt "@label:extruder label" -#~ msgid "No" -#~ msgstr "No" - -#~ msgctxt "@label:listbox" -#~ msgid "Print Setup" -#~ msgstr "Configuración de impresión" - -#~ msgctxt "@label:listbox" -#~ msgid "" -#~ "Print Setup disabled\n" -#~ "G-code files cannot be modified" -#~ msgstr "" -#~ "Ajustes de impresión deshabilitados\n" -#~ "No se pueden modificar los archivos GCode" - -#~ msgctxt "@label Hours and minutes" -#~ msgid "00h 00min" -#~ msgstr "00 h 00 min" - -#~ msgctxt "@tooltip" -#~ msgid "Time specification" -#~ msgstr "Especificación de tiempos" - -#~ msgctxt "@label" -#~ msgid "Cost specification" -#~ msgstr "Especificación de costes" - -#~ msgctxt "@label" -#~ msgid "Total:" -#~ msgstr "Total:" - -#~ msgctxt "@tooltip" -#~ msgid "Recommended Print Setup

    Print with the recommended settings for the selected printer, material and quality." -#~ msgstr "Configuración de impresión recomendada

    Imprimir con los ajustes recomendados para la impresora, el material y la calidad seleccionados." - -#~ msgctxt "@tooltip" -#~ msgid "Custom Print Setup

    Print with finegrained control over every last bit of the slicing process." -#~ msgstr "Configuración de impresión personalizada

    Imprimir con un control muy detallado del proceso de segmentación." - -#~ msgctxt "@action:inmenu menubar:help" -#~ msgid "Show Engine &Log..." -#~ msgstr "&Mostrar registro del motor..." - -#~ msgctxt "@action:menu" -#~ msgid "Browse packages..." -#~ msgstr "Examinar paquetes..." - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "Expand/Collapse Sidebar" -#~ msgstr "Expandir/contraer barra lateral" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3D model" -#~ msgstr "Cargue un modelo en 3D" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Ready to slice" -#~ msgstr "Preparado para segmentar" - -#~ msgctxt "@label:PrintjobStatus %1 is target operation" -#~ msgid "Ready to %1" -#~ msgstr "Listo para %1" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Slicing unavailable" -#~ msgstr "No se puede segmentar" - -#~ msgctxt "@info:tooltip" -#~ msgid "Slice current printjob" -#~ msgstr "Fragmentar trabajo de impresión actual" - -#~ msgctxt "@info:tooltip" -#~ msgid "Cancel slicing process" -#~ msgstr "Cancelar proceso de fragmentación" - -#~ msgctxt "@label:Printjob" -#~ msgid "Prepare" -#~ msgstr "Preparar" - -#~ msgctxt "@label:Printjob" -#~ msgid "Cancel" -#~ msgstr "Cancelar" - -#~ msgctxt "@info:tooltip" -#~ msgid "Select the active output device" -#~ msgstr "Seleccione el dispositivo de salida activo" - -#~ msgctxt "@title:menu" -#~ msgid "&View" -#~ msgstr "&Ver" - -#~ msgctxt "@title:menu" -#~ msgid "&Settings" -#~ msgstr "A&justes" - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "&Toolbox" -#~ msgstr "&Cuadro de herramientas" - -#~ msgctxt "@action:button" -#~ msgid "Open File" -#~ msgstr "Abrir archivo" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "Este perfil de calidad no está disponible para la configuración de material y de tobera actual. Cámbiela para poder habilitar este perfil de calidad" - -#~ msgctxt "@label" -#~ msgid "Print Speed" -#~ msgstr "Velocidad de impresión" - -#~ msgctxt "@label" -#~ msgid "Slower" -#~ msgstr "Más lento" - -#~ msgctxt "@label" -#~ msgid "Faster" -#~ msgstr "Más rápido" - -#~ msgctxt "@label" -#~ msgid "Enable gradual" -#~ msgstr "Habilitar gradual" - -#~ msgctxt "@label" -#~ msgid "Generate Support" -#~ msgstr "Generar soporte" - -#~ msgctxt "@label" -#~ msgid "Build Plate Adhesion" -#~ msgstr "Adherencia de la placa de impresión" - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints?
    Read the Ultimaker Troubleshooting Guides" -#~ msgstr "¿Necesita ayuda para mejorar sus impresiones?
    Lea las Guías de solución de problemas de Ultimaker" - -#~ msgctxt "@title:window" -#~ msgid "Engine Log" -#~ msgstr "Registro del motor" - -#~ msgctxt "@label" -#~ msgid "Printer type" -#~ msgstr "Tipo de impresora" - -#~ msgctxt "@label" -#~ msgid "Use glue with this material combination" -#~ msgstr "Utilizar pegamento con esta combinación de materiales" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "Comprobar compatibilidad" - -#~ msgctxt "@tooltip" -#~ msgid "Click to check the material compatibility on Ultimaker.com." -#~ msgstr "Haga clic para comprobar la compatibilidad de los materiales en Utimaker.com." - -#~ msgctxt "description" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "Muestra los cambios desde la última versión comprobada." - -#~ msgctxt "name" -#~ msgid "Changelog" -#~ msgstr "Registro de cambios" - -#~ msgctxt "description" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "Crear un perfil de cambios de calidad aplanado." - -#~ msgctxt "name" -#~ msgid "Profile flatener" -#~ msgstr "Aplanador de perfil" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license." -#~ msgstr "Preguntar al usuario una vez si acepta la licencia." - -#~ msgctxt "name" -#~ msgid "UserAgreement" -#~ msgstr "UserAgreement" - -#~ msgctxt "@warning:status" -#~ msgid "Please generate G-code before saving." -#~ msgstr "Genere un G-code antes de guardar." - -#~ msgctxt "@action" -#~ msgid "Upgrade Firmware" -#~ msgstr "Actualizar firmware" - -#~ msgctxt "@label unknown material" -#~ msgid "Unknown" -#~ msgstr "Desconocido" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "No custom profile to import in file {0}" -#~ msgstr "No hay ningún perfil personalizado que importar en el archivo {0}" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "This profile {0} contains incorrect data, could not import it." -#~ msgstr "Este perfil {0} contiene datos incorrectos, no se han podido importar." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "El equipo definido en el perfil {0} ({1}) no coincide con el equipo actual ({2}), no se ha podido importar." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall " -#~ msgstr "Confirmar desinstalación " - -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1 m/~ %2 g/~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1 m/~ %2 g" - -#~ msgctxt "@title" -#~ msgid "Upgrade Firmware" -#~ msgstr "Actualización de firmware" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Imprimir con un enrutador Doodle3D" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Imprimir con un enrutador Doodle3D" - -#~ msgctxt "@info:status" -#~ msgid "Connecting to Doodle3D Connect" -#~ msgstr "Conectar con Doodle3D Connect" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to Doodle3D Connect" -#~ msgstr "Enviando datos a Doodle3D Connect" - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -#~ msgstr "No se pueden enviar datos a Doodle3D Connect. ¿Hay otro trabajo que todavía esté activo?" - -#~ msgctxt "@info:status" -#~ msgid "Storing data on Doodle3D Connect" -#~ msgstr "Guardando datos en Doodle3D Connect" - -#~ msgctxt "@info:status" -#~ msgid "File sent to Doodle3D Connect" -#~ msgstr "Archivo enviado a Doodle3D Connect" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect..." -#~ msgstr "Abrir Connect..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Open the Doodle3D Connect web interface" -#~ msgstr "Abrir la interfaz web de Doodle3D Connect" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Blender file" -#~ msgstr "Archivo Blender" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Could not export using \"{}\" quality!\n" -#~ "Felt back to \"{}\"." -#~ msgstr "" -#~ "No ha podido exportarse con la calidad \"{}\"\n" -#~ "Retroceder a \"{}\"." - -#~ msgctxt "@label" -#~ msgid "Contact" -#~ msgstr "Contacto" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." -#~ msgstr "La impresora no está configurada para alojar un grupo de impresoras Ultimaker 3." - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -#~ msgstr "La impresora aloja un grupo de %1 impresoras Ultimaker 3." - -#~ msgctxt "@label: arg 1 is group name" -#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "%1 no está configurada para alojar un grupo de impresoras conectadas de Ultimaker 3" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Add/Remove printers" -#~ msgstr "Agregar/eliminar impresoras" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "Abre la página de trabajos de impresión en su navegador web por defecto." - -#~ msgctxt "@action:button" -#~ msgid "View print jobs" -#~ msgstr "Ver trabajos de impresión" - -#~ msgctxt "@label:status" -#~ msgid "Preparing to print" -#~ msgstr "Preparando para impresión" - -#~ msgctxt "@label:status" -#~ msgid "Available" -#~ msgstr "Disponible" - -#~ msgctxt "@label:status" -#~ msgid "Lost connection with the printer" -#~ msgstr "Se ha perdido la conexión con la impresora." - -#~ msgctxt "@label:status" -#~ msgid "Unknown" -#~ msgstr "Desconocido" - -#~ msgctxt "@label:status" -#~ msgid "Disabled" -#~ msgstr "Deshabilitado" - -#~ msgctxt "@label:status" -#~ msgid "Reserved" -#~ msgstr "Reservado" - -#~ msgctxt "@label" -#~ msgid "Preparing to print" -#~ msgstr "Preparando para impresión" - -#~ msgctxt "@label:status" -#~ msgid "Print aborted" -#~ msgstr "Impresión cancelada" - -#~ msgctxt "@label" -#~ msgid "Not accepting print jobs" -#~ msgstr "No se aceptan trabajos de impresión" - -#~ msgctxt "@label" -#~ msgid "Finishes at: " -#~ msgstr "Termina a las: " - -#~ msgctxt "@label" -#~ msgid "Clear build plate" -#~ msgstr "Borrar placa de impresión" - -#~ msgctxt "@label" -#~ msgid "Waiting for configuration change" -#~ msgstr "Esperando a que se cambie la configuración" - -#~ msgctxt "@title" -#~ msgid "Print jobs" -#~ msgstr "Trabajos de impresión" - -#~ msgctxt "@label:title" -#~ msgid "Printers" -#~ msgstr "Impresoras" - -#~ msgctxt "@action:button" -#~ msgid "View printers" -#~ msgstr "Ver impresoras" - -#~ msgctxt "@label:" -#~ msgid "Pause" -#~ msgstr "Pausar" - -#~ msgctxt "@label:" -#~ msgid "Resume" -#~ msgstr "Reanudar" - -#~ msgctxt "@label:" -#~ msgid "Abort Print" -#~ msgstr "Cancelar impresión" - -#~ msgctxt "@option:openProject" -#~ msgid "Always ask" -#~ msgstr "Preguntar siempre" - -#~ msgctxt "@label" -#~ msgid "Override Profile" -#~ msgstr "Anular perfil" - -#~ msgctxt "@info:tooltip" -#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -#~ msgstr "¿Los modelos recién cargados se deben organizar en la placa de impresión? Se han usado junto con la placa de impresión múltiple (EXPERIMENTAL)" - -#~ msgctxt "@option:check" -#~ msgid "Do not arrange objects on load" -#~ msgstr "No organizar objetos al cargar" - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Save Selection to File" -#~ msgstr "&Guardar selección en archivo" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &As..." -#~ msgstr "Guardar &como..." - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &Project..." -#~ msgstr "Guardar &proyecto..." - -# Added after the string freeze. -#~ msgctxt "@label" -#~ msgid "Use adhesion sheet or glue with this material combination" -#~ msgstr "Use láminas de adherencia o pegamento con esta combinación de materiales" - -#~ msgctxt "description" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "Acepta códigos GCode y los envía a un enrutador Doodle3D por medio de wifi." - -#~ msgctxt "name" -#~ msgid "Doodle3D WiFi-Box" -#~ msgstr "Enrutador Doodle3D" - -#~ msgctxt "description" -#~ msgid "Provides an edit window for direct script editing." -#~ msgstr "Proporciona una ventana de edición para la edición directa de secuencias de comandos." - -#~ msgctxt "name" -#~ msgid "Live scripting tool" -#~ msgstr "Herramienta de secuencia de comandos en directo" - -#~ msgctxt "description" -#~ msgid "Helps to open Blender files directly in Cura." -#~ msgstr "Ayuda a abrir archivos de Blender directamente en Cura." - -#~ msgctxt "name" -#~ msgid "Blender Integration (experimental)" -#~ msgstr "Integración de Blender (experimental)" - -#~ msgctxt "@info:title" -#~ msgid "Model Checker Warning" -#~ msgstr "Advertencia del comprobador de modelos" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n" -#~ "Tips that may be useful to improve the print quality:\n" -#~ "1) Use rounded corners.\n" -#~ "2) Turn the fan off (only if there are no tiny details on the model).\n" -#~ "3) Use a different material." -#~ msgstr "" -#~ "Es posible que algunos modelos no se impriman correctamente debido al tamaño del objeto y al material elegido para los modelos: {model_names}.\n" -#~ "Consejos para mejorar la calidad de la impresión:\n" -#~ "1) Utilizar esquinas redondeadas.\n" -#~ "2) Apagar el ventilador (solo si el modelo no tiene detalles pequeños).\n" -#~ "3) Utilizar otro material." - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "SolidWorks ha informado de errores al abrir el archivo. Le recomendamos que solucione estos problemas dentro del propio SolidWorks." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ "Thanks!" -#~ msgstr "" -#~ "No se han encontrado modelos en el dibujo. ¿Puede comprobar el contenido de nuevo y asegurarse de que hay una parte o un ensamblado dentro?\n" -#~ "\n" -#~ "Gracias." - -#~ 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" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "Se ha encontrado más de una parte o ensamblado en el dibujo. Actualmente, únicamente son compatibles dibujos con una sola parte o ensamblado.\n" -#~ "\n" -#~ "Perdone las molestias." - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks part file" -#~ msgstr "Archivo de elementos de SolidWorks" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks assembly file" -#~ msgstr "Archivo de ensamblado de SolidWorks" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks drawing file" -#~ msgstr "Archivo de dibujo de SolidWorks" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "Estimado cliente:\n" -#~ "No hemos encontrado una instalación válida de SolidWorks en el sistema. Esto significa que SolidWorks no está instalado o que no dispone de una licencia válida. Asegúrese de que la ejecución del propio SolidWorks funciona sin problemas o póngase en contacto con su CDTI.\n" -#~ "\n" -#~ "Atentamente\n" -#~ " - Thomas Karl Pietrowski" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "Estimado cliente:\n" -#~ "Actualmente está ejecutando este complemento en un sistema operativo diferente a Windows. Este complemento solo funcionará en Windows con SolidWorks instalado, siempre que se disponga de una licencia válida. Instale este complemento en un equipo Windows con SolidWorks instalado.\n" -#~ "\n" -#~ "Atentamente\n" -#~ " - Thomas Karl Pietrowski" - -#~ msgid "Configure" -#~ msgstr "Configurar" - -#~ msgid "Installation guide for SolidWorks macro" -#~ msgstr "Guía de instalación para la macro de SolidWorks" - -#~ msgctxt "@action:button" -#~ msgid "Disable" -#~ msgstr "Deshabilitar" - -#~ msgctxt "@action:tooltip" -#~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences." -#~ msgstr "No permitir a Cura enviar estadísticas de uso de forma anónima. Puede habilitarlo de nuevo en las preferencias." - -#~ msgid "Install" -#~ msgstr "Instalar" - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory." -#~ msgstr "Se ha producido un error al copiar los archivos de complemento de Siemens NX. Compruebe la UGII_USER_DIR. No está asignada a ningún directorio." - -#~ msgid "Successfully installed Siemens NX Cura plugin." -#~ msgstr "El complemento Siemens NX Cura se ha instalado correctamente." - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR." -#~ msgstr "Se ha producido un error al copiar los archivos de complemento de Siemens NX. Compruebe la UGII_USER_DIR." - -#~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX." -#~ msgstr "Se ha producido un error al instalar el complemento de Siemens NX. No se pudo definir la variable de entorno UGII_USER_DIR de Siemens NX." - -#~ msgctxt "@info:status" -#~ msgid "Failed to get plugin ID from {0}" -#~ msgstr "No se pudo obtener la ID del complemento de {0}" - -#~ msgctxt "@info:tile" -#~ msgid "Warning" -#~ msgstr "Advertencia" - -#~ msgctxt "@window:title" -#~ msgid "Plugin browser" -#~ msgstr "Explorador de complementos" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks: Export wizard" -#~ msgstr "SolidWorks: exportar asistente" - -#~ msgctxt "@action:label" -#~ msgid "Quality:" -#~ msgstr "Calidad:" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (3D-printing)" -#~ msgstr "Fina (impresión en 3D)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (3D-printing)" -#~ msgstr "Gruesa (impresión en 3D)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (SolidWorks)" -#~ msgstr "Fina (SolidWorks)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (SolidWorks)" -#~ msgstr "Gruesa (SolidWorks)" - -#~ msgctxt "@text:window" -#~ msgid "Show this dialog again" -#~ msgstr "Mostrar este cuadro de diálogo de nuevo" - -#~ msgctxt "@action:button" -#~ msgid "Continue" -#~ msgstr "Continuar" - -#~ msgctxt "@action:button" -#~ msgid "Abort" -#~ msgstr "Cancelar" - -#~ msgctxt "@title:window" -#~ msgid "How to install Cura SolidWorks macro" -#~ msgstr "Cómo instalar la macro SolidWorks de Cura" - -#~ msgctxt "@description:label" -#~ msgid "Steps:" -#~ msgstr "Pasos:" - -#~ msgctxt "@action:button" -#~ msgid "" -#~ "Open the directory\n" -#~ "with macro and icon" -#~ msgstr "" -#~ "Abra el directorio\n" -#~ "con la macro y el icono" - -#~ msgctxt "@description:label" -#~ msgid "Instructions:" -#~ msgstr "Instrucciones:" - -#~ msgctxt "@action:playpause" -#~ msgid "Play" -#~ msgstr "Reproducir" - -#~ msgctxt "@action:playpause" -#~ msgid "Pause" -#~ msgstr "Pausar" - -#~ msgctxt "@action:button" -#~ msgid "Previous Step" -#~ msgstr "Paso anterior" - -#~ msgctxt "@action:button" -#~ msgid "Done" -#~ msgstr "Realizado" - -#~ msgctxt "@action:button" -#~ msgid "Next Step" -#~ msgstr "Paso siguiente" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks plugin: Configuration" -#~ msgstr "Complemento de SolidWorks: configuración" - -#~ msgctxt "@title:tab" -#~ msgid "Conversion settings" -#~ msgstr "Ajustes de la conversión" - -#~ msgctxt "@label" -#~ msgid "First choice:" -#~ msgstr "Primera opción:" - -#~ msgctxt "@text:menu" -#~ msgid "Latest installed version (Recommended)" -#~ msgstr "Última versión instalada (recomendada)" - -#~ msgctxt "@text:menu" -#~ msgid "Default version" -#~ msgstr "Versión predeterminada" - -#~ msgctxt "@label" -#~ msgid "Show wizard before opening SolidWorks files" -#~ msgstr "Mostrar asistente antes de abrir los archivos de SolidWorks" - -#~ msgctxt "@label" -#~ msgid "Automatically rotate opened file into normed orientation" -#~ msgstr "Girar automáticamente el archivo abierto a la orientación normal" - -#~ msgctxt "@title:tab" -#~ msgid "Installation(s)" -#~ msgstr "Instalación(es)" - -#~ msgctxt "@label" -#~ msgid "COM service found" -#~ msgstr "Servicio COM encontrado" - -#~ msgctxt "@label" -#~ msgid "Executable found" -#~ msgstr "Ejecutable encontrado" - -#~ msgctxt "@label" -#~ msgid "COM starting" -#~ msgstr "Iniciando COM" - -#~ msgctxt "@label" -#~ msgid "Revision number" -#~ msgstr "Número de revisión" - -#~ msgctxt "@label" -#~ msgid "Functions available" -#~ msgstr "Funciones disponibles" - -#~ msgctxt "@label (%1 is object name)" -#~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?" -#~ msgstr "El nuevo diámetro del material está ajustado en %1 mm y no es compatible con el equipo actual. ¿Desea continuar?" - -#~ msgctxt "@action:menu" -#~ msgid "Browse plugins..." -#~ msgstr "Examinar complementos..." - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "P&lugins" -#~ msgstr "&Complementos" - -#~ msgctxt "@window:title" -#~ msgid "Install Plugin" -#~ msgstr "Instalar complemento" - -#~ 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 "Manages network connections to Ultimaker 3 printers" -#~ msgstr "Gestiona las conexiones de red a las impresoras Ultimaker 3." - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations." -#~ msgstr "Permite abrir determinados archivos con el propio SolidWorks. La conversión se lleva a cabo mediante este complemento y optimizaciones adicionales." - -#~ msgctxt "name" -#~ msgid "SolidWorks Integration" -#~ msgstr "Integración con SolidWorks" - -#~ msgctxt "description" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "Guarda automáticamente preferencias, máquinas y perfiles después de los cambios." - -#~ msgctxt "name" -#~ msgid "Auto Save" -#~ msgstr "Guardado automático" - -#~ msgctxt "description" -#~ msgid "Helps you to install an 'export to Cura' button in Siemens NX." -#~ msgstr "Ayuda a instalar el botón para exportar a Cura en Siemens NX." - -#~ msgctxt "name" -#~ msgid "Siemens NX Integration" -#~ msgstr "Siemens NX Integration" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new plugins." -#~ msgstr "Busca, administra e instala nuevos complementos." - -#~ msgctxt "name" -#~ msgid "Plugin Browser" -#~ msgstr "Explorador de complementos" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license" -#~ msgstr "Preguntar al usuario una vez si acepta la licencia" - -#~ 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 "@item:inlistbox" -#~ msgid "GCode File" -#~ msgstr "Archivo GCode" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer is busy or not connected." -#~ msgstr "No se puede iniciar un trabajo nuevo porque la impresora está ocupada o no está conectada." - -#~ msgctxt "@info:title" -#~ msgid "Printer Unavailable" -#~ msgstr "Impresora no disponible" - -#~ msgctxt "@info:status" -#~ msgid "This printer does not support USB printing because it uses UltiGCode flavor." -#~ msgstr "Esta impresora no es compatible con la impresión USB porque utiliza el tipo UltiGCode." - -#~ msgctxt "@info:title" -#~ msgid "USB Printing" -#~ msgstr "Impresión USB" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer does not support usb printing." -#~ msgstr "No se puede iniciar un trabajo nuevo porque la impresora no es compatible con la impresión USB." - -#~ msgctxt "@info" -#~ msgid "Unable to update firmware because there are no printers connected." -#~ msgstr "No se puede actualizar el firmware porque no hay impresoras conectadas." - -#~ msgctxt "@info" -#~ msgid "Could not find firmware required for the printer at %s." -#~ msgstr "No se pudo encontrar el firmware necesario para la impresora en %s." - -#~ msgctxt "@info:title" -#~ msgid "Printer Firmware" -#~ msgstr "Firmware de la impresora" - -#~ msgctxt "@info:title" -#~ msgid "Connection status" -#~ msgstr "Estado de la conexión" - -#~ msgctxt "@info:title" -#~ msgid "Connection Status" -#~ msgstr "Estado de la conexión" - -#~ msgctxt "@info:status" -#~ msgid "Access request was denied on the printer." -#~ msgstr "Solicitud de acceso denegada en la impresora." - -#~ msgctxt "@info:status" -#~ msgid "Access request failed due to a timeout." -#~ msgstr "Se ha producido un error al solicitar acceso porque se ha agotado el tiempo de espera." - -#~ msgctxt "@info:status" -#~ msgid "The connection with the network was lost." -#~ msgstr "Se ha perdido la conexión de red." - -#~ msgctxt "@info:status" -#~ msgid "The connection with the printer was lost. Check your printer to see if it is connected." -#~ msgstr "Se ha perdido la conexión con la impresora. Compruebe que la impresora está conectada." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s." -#~ msgstr "No se puede iniciar un trabajo nuevo de impresión, la impresora está ocupada. El estado actual de la impresora es %s." - -#~ msgctxt "@info:title" -#~ msgid "Printer Status" -#~ msgstr "Estado de la impresora" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}" -#~ msgstr "No se puede iniciar un trabajo nuevo de impresión. No se ha cargado ningún PrintCore en la ranura {0}." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No material loaded in slot {0}" -#~ msgstr "No se puede iniciar un trabajo nuevo de impresión. No se ha cargado material en la ranura {0}." - -#~ msgctxt "@label" -#~ msgid "Not enough material for spool {0}." -#~ msgstr "No hay suficiente material para la bobina {0}." - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "PrintCore distinto (Cura: {0}, impresora: {1}) seleccionado para extrusor {2}" - -#~ msgctxt "@label" -#~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "El PrintCore {0} no está calibrado correctamente. Debe llevarse a cabo una calibración XY de la impresora." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to printer. Is another job still active?" -#~ msgstr "No se puede enviar datos a la impresora. ¿Hay otro trabajo que todavía esté activo?" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Print aborted. Please check the printer" -#~ msgstr "Impresión cancelada. Compruebe la impresora." - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Pausing print..." -#~ msgstr "Pausando impresión..." - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Resuming print..." -#~ msgstr "Reanudando impresión..." - -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "La impresora no está configurada para alojar un grupo de impresoras conectadas de Ultimaker 3." - -#~ msgctxt "Count is number of printers." -#~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers." -#~ msgstr "La impresora aloja un grupo de {count} impresoras conectadas de Ultimaker 3." - -#~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate." -#~ msgstr "{printer_name} ha terminado de imprimir «{job_name}». Recoja el impreso y confirme que ha borrado la placa de impresión." - -#~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing." -#~ msgstr "{printer_name} está reservada para imprimir «{job_name}». Modifique la configuración de la impresora de modo que se adapte al trabajo para comenzar la impresión." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "No se pudo enviar el nuevo trabajo de impresión: esta impresora 3D (todavía) no está configurada para alojar un grupo de impresoras de Ultimaker 3 conectadas." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send print job to group {cluster_name}." -#~ msgstr "No se puede enviar el trabajo de impresión al grupo {cluster_name}." - -#~ msgctxt "@info:status" -#~ msgid "Sent {file_name} to group {cluster_name}." -#~ msgstr "Enviar {file_name} al grupo {cluster_name}." - -#~ msgctxt "@action:button" -#~ msgid "Show print jobs" -#~ msgstr "Mostrar trabajos de impresión" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs interface in your browser." -#~ msgstr "Abre la interfaz de trabajos de impresión en el navegador." - -#~ msgctxt "@label Printer name" -#~ msgid "Unknown" -#~ msgstr "Desconocido" - -#~ msgctxt "@info:progress" -#~ msgid "Sending {file_name} to group {cluster_name}" -#~ msgstr "Enviando {file_name} al grupo {cluster_name}" - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "SolidWorks ha informado de errores al abrir el archivo. Le recomendamos que solucione estos problemas dentro del propio SolidWorks." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ " Thanks!." -#~ msgstr "" -#~ "No se han encontrado modelos en el dibujo. ¿Puede comprobar el contenido de nuevo y asegurarse de que hay una parte o un ensamblado dentro?\n" -#~ "\n" -#~ " Gracias." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "Se ha encontrado más de una parte o ensamblado en el dibujo. Actualmente únicamente son compatibles dibujos con una sola parte o ensamblado.\n" -#~ "\n" -#~ " Disculpe." - -#~ msgctxt "@item:material" -#~ msgid "No material loaded" -#~ msgstr "No se ha cargado material." - -#~ msgctxt "@item:material" -#~ msgid "Unknown material" -#~ msgstr "Material desconocido" - -#~ msgctxt "@info:status Has a cancel button next to it." -#~ msgid "The selected material diameter causes the material to become incompatible with the current printer." -#~ msgstr "El diámetro del material seleccionado hace que el material sea incompatible con la impresora actual." - -#~ msgctxt "@action:button" -#~ msgid "Undo" -#~ msgstr "Deshacer" - -#~ msgctxt "@action" -#~ msgid "Undo changing the material diameter." -#~ msgstr "Deshacer cambio del diámetro del material." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} doesn't match with your current machine, could not import it." -#~ msgstr "El equipo definido en el perfil {0} no coincide con su equipo actual, no se ha podido importar." - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal error has occurred. 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 "" -#~ "

    Se ha producido un error grave. Envíenos este informe de incidencias para que podamos solucionar el problema.

    \n" -#~ "

    Utilice el botón «Enviar informe» para publicar automáticamente un informe de errores en nuestros servidores.

    \n" -#~ " " - -#~ msgctxt "@label" -#~ msgid "not yet initialised
    " -#~ msgstr "aún no se ha inicializado
    " - -#~ msgctxt "@label" -#~ msgid "Gcode flavor" -#~ msgstr "Tipo de Gcode" - -#~ msgctxt "@label" -#~ msgid "Start Gcode" -#~ msgstr "Iniciar GCode" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very start." -#~ msgstr "Los comandos de Gcode que se ejecutarán justo al inicio." - -#~ msgctxt "@label" -#~ msgid "End Gcode" -#~ msgstr "Finalizar GCode" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very end." -#~ msgstr "Los comandos de Gcode que se ejecutarán justo al final." - -#~ msgctxt "@label" -#~ msgid "Extruder Start Gcode" -#~ msgstr "GCode inicial del extrusor" - -#~ msgctxt "@label" -#~ msgid "Extruder End Gcode" -#~ msgstr "GCode final del extrusor" - -#~ msgctxt "@label" -#~ msgid "Starting firmware update, this may take a while." -#~ msgstr "Comenzando la actualización del firmware, esto puede tardar algún tiempo." - -#~ msgctxt "@label" -#~ msgid "Unknown error code: %1" -#~ msgstr "Código de error desconocido: %1" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@label Printer status" -#~ msgid "Unknown" -#~ msgstr "Desconocido" - -#~ msgctxt "@title:window" -#~ msgid "Find & Update plugins" -#~ msgstr "Buscar y actualizar complementos" - -#~ msgctxt "@label" -#~ msgid "Here you can find a list of Third Party plugins." -#~ msgstr "Puede ver aquí una lista de complementos de terceros." - -#~ msgctxt "@action:button" -#~ msgid "Upgrade" -#~ msgstr "Actualización" - -#~ msgctxt "@action:button" -#~ msgid "Download" -#~ msgstr "Descargar" - -#~ msgctxt "@info:tooltip" -#~ msgid "Show caution message in gcode reader." -#~ msgstr "Mostrar mensaje de advertencia en el lector de GCode." - -#~ msgctxt "@option:check" -#~ msgid "Caution message in gcode reader" -#~ msgstr "Mensaje de advertencia en el lector de GCode" - -#~ msgctxt "@window:title" -#~ msgid "Import Profile" -#~ msgstr "Importar perfil" - -#~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name" -#~ msgid "Printer: %1, %2: %3" -#~ msgstr "Impresora: %1, %2: %3" - -#~ msgctxt "@action:label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "Impresora: %1" - -#~ msgctxt "@label" -#~ msgid "GCode generator" -#~ msgstr "Generador de GCode" - -#~ msgctxt "@action:menu" -#~ msgid "Configure setting visiblity..." -#~ msgstr "Configurar la visibilidad de los ajustes..." - -#~ msgctxt "@title:menuitem %1 is the automatically selected material" -#~ msgid "Automatic: %1" -#~ msgstr "Automático: %1" - -#~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer" -#~ msgid "Automatic: %1" -#~ msgstr "Automático: %1" - -#~ msgctxt "@info:status" -#~ msgid "No printer connected" -#~ msgstr "No hay ninguna impresora conectada" - -#~ msgctxt "@tooltip" -#~ msgid "The current temperature of this extruder." -#~ msgstr "Temperatura actual de este extrusor." - -#~ msgctxt "@action:menu" -#~ msgid "Installed plugins..." -#~ msgstr "Complementos instalados..." - -#~ msgctxt "@label" -#~ msgid "Support Extruder" -#~ msgstr "Extrusor del soporte" - -#~ msgctxt "description" -#~ msgid "Writes GCode to a file." -#~ msgstr "Escribe Gcode en un archivo." - -#~ msgctxt "name" -#~ msgid "GCode Writer" -#~ msgstr "Escritor de Gcode" - -#~ msgctxt "name" -#~ msgid "GCode Profile Reader" -#~ msgstr "Lector de perfiles Gcode" - -#~ msgctxt "@info:status" -#~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" -#~ msgstr "Se han producido varios errores al abrir el archivo de SolidWorks. Compruebe que el archivo se puede abrir correctamente en SolidWorks." - -#~ msgctxt "@info:status" -#~ msgid "Error while starting %s!" -#~ msgstr "Error al iniciar %s" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Simulation view" +#~ msgid "Simulation View" #~ msgstr "Vista de simulación" -#~ msgctxt "@info" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences." -#~ msgstr "Cura recopila de forma anónima información de la segmentación. Puede desactivar esta opción en las preferencias." - -#~ msgctxt "@action:button" -#~ msgid "Dismiss" -#~ msgstr "Descartar" - -#~ msgctxt "@menuitem" -#~ msgid "Global" -#~ msgstr "Global" - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal exception has occurred. 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 "" -#~ "

    Se ha producido una excepción fatal. Envíenos este informe de errores para que podamos solucionar el problema.

    \n" -#~ "

    Utilice el botón «Enviar informe» para publicar automáticamente un informe de errores en nuestros servidores.

    \n" -#~ " " - -#~ msgctxt "@label Cura version" -#~ msgid "Cura version: {version}
    " -#~ msgstr "Versión de Cura: {version}
    " - -#~ msgctxt "@label Platform" -#~ msgid "Platform: {platform}
    " -#~ msgstr "Platforma: {platform}
    " - -#~ msgctxt "@label Qt version" -#~ msgid "Qt version: {qt}
    " -#~ msgstr "Versión de Qt: {qt}
    " - -#~ msgctxt "@label PyQt version" -#~ msgid "PyQt version: {pyqt}
    " -#~ msgstr "Versión de PyQt: {pyqt}
    " - -#~ msgctxt "@label OpenGL" -#~ msgid "OpenGL: {opengl}
    " -#~ msgstr "OpenGL: {opengl}
    " - -#~ msgctxt "@title:groupbox" -#~ msgid "Exception traceback" -#~ msgstr "Rastreabilidad de excepciones" - -#~ msgctxt "@label" -#~ msgid "Material diameter" -#~ msgstr "Diámetro del material" - -#~ msgctxt "@title:window" -#~ msgid "Cura SolidWorks Plugin Configuration" -#~ msgstr "Configuración de complementos Cura SolidWorks" - -#~ msgctxt "@action:label" -#~ msgid "Default quality of the exported STL:" -#~ msgstr "Calidad predeterminada del STL exportado:" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always ask" -#~ msgstr "Preguntar siempre" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Fine quality" -#~ msgstr "Usar siempre calidad fina" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Coarse quality" -#~ msgstr "Usar siempre calidad gruesa" - -#~ msgctxt "@title:window" -#~ msgid "Import SolidWorks File as STL..." -#~ msgstr "Importar el archivo SolidWorks como STL..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Quality of the Exported STL" -#~ msgstr "Calidad del STL exportado" - -#~ msgctxt "@action:label" -#~ msgid "Quality" -#~ msgstr "Calidad" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse" -#~ msgstr "Gruesa" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine" -#~ msgstr "Fina" - -#~ msgctxt "@" -#~ msgid "No Profile Available" -#~ msgstr "No hay perfiles disponibles." - -#~ msgctxt "@label" -#~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders" -#~ msgstr "Este ajuste siempre se comparte entre extrusores. Si lo modifica, modificará el valor de todos los extrusores." - -#~ msgctxt "@tooltip" -#~ msgid "Time specification
    " -#~ msgstr "Especificación de tiempo
    " - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Reset camera position" -#~ msgstr "&Restablecer posición de la cámara" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save project" -#~ msgstr "Guardar proyecto" - -#~ msgctxt "@title:tab" -#~ msgid "Prepare" -#~ msgstr "Preparar" - -#~ msgctxt "@title:tab" -#~ msgid "Monitor" -#~ msgstr "Supervisar" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "Comprobar compatibilidad" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura" -#~ msgstr "Permite abrir ciertos archivos con el propio SolidWorks que, a continuación, puede convertirse y cargarse en Cura." - -#~ msgctxt "@label:status" -#~ msgid "Blocked" -#~ msgstr "Deshabilitada" - -#~ msgctxt "@label:status" -#~ msgid "Can't start print" -#~ msgstr "No se puede imprimir" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect.." -#~ msgstr "Abrir Connect" - -#~ msgctxt "@info:title" -#~ msgid "Print Details" -#~ msgstr "Datos de impresión" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB." -#~ msgstr "Para garantizar que su {machine_name} disponga de las prestaciones más recientes, se recomienda actualizar el firmware con regularidad. Esto se puede hacer en la {machine_name} (cuando esté conectada a la red) o vía USB." - -#~ msgctxt "@info:title" -#~ msgid "Layer View" -#~ msgstr "Vista de capas" - -#~ msgctxt "@menuitem" -#~ msgid "Browse plugins" -#~ msgstr "Examinar complementos" - -#~ msgctxt "@info:title" -#~ msgid "Export Details" -#~ msgstr "Datos de exportación" - -#~ msgctxt "@label" -#~ msgid "" -#~ "

    A fatal exception has occurred that we could not recover from!

    \n" -#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " -#~ msgstr "" -#~ "

    Se ha producido una excepción fatal de la que no podemos recuperarnos.

    \n" -#~ "

    Use la siguiente información para enviar un informe de error a http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " - -#~ msgctxt "@action:button" -#~ msgid "Open Web Page" -#~ msgstr "Abrir página web" - -#~ msgctxt "@action:button" -#~ msgid "Ok" -#~ msgstr "Aceptar" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "La impresora no está configurada para alojar un grupo de impresoras conectadas de Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" -#~ msgstr "La impresora aloja un grupo de %1 impresoras conectadas de Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "Completed on: " -#~ msgstr "Completado el: " - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "Abre la página de trabajos de impresión en su navegador web por defecto." - -#~ msgctxt "@label" -#~ msgid "PRINTER GROUP" -#~ msgstr "GRUPO DE IMPRESORAS" - -#~ msgctxt "@action:warning" -#~ msgid "Loading a project will clear all models on the buildplate" -#~ msgstr "Si carga un proyecto, se borrarán todos los modelos de la placa de impresión." - -#~ msgctxt "@label" -#~ msgid "" -#~ " plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ " El complemento incluye una licencia.\n" -#~ "Debe aceptar dicha licencia para instalar el complemento.\n" -#~ "¿Acepta las siguientes condiciones?" - -#~ msgctxt "@label" -#~ msgid "00h 00min" -#~ msgstr "00h 00min" - -#~ msgctxt "@tooltip" -#~ msgid "Time information" -#~ msgstr "Información sobre el tiempo" - -#~ msgctxt "@description" -#~ msgid "Print time" -#~ msgstr "Tiempo de impresión" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g/ ~ %4 %3" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - -#~ msgctxt "@title:window" -#~ msgid "Cura" -#~ msgstr "Cura" - -#~ msgctxt "@label" -#~ msgid "Check material compatibility" -#~ msgstr "Comprobar la compatibilidad de los materiales" +#~ msgctxt "name" +#~ msgid "Ultimaker Network Connection" +#~ msgstr "Conexión en red de Ultimaker" #~ msgctxt "name" -#~ msgid "UM3 Network Connection (Cluster)" -#~ msgstr "Conexión de red UM3 (grupo)" - -#~ msgctxt "description" -#~ msgid "Provides the Layer view." -#~ msgstr "Proporciona la vista de capas." - -#~ msgctxt "name" -#~ msgid "Layer View" -#~ msgstr "Vista de capas" - -#~ msgctxt "@item:inlistbox" -#~ msgid "X-Ray" -#~ msgstr "Rayos X" - -#~ msgctxt "@label" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "Acepta códigos GCode y los envía a un enrutador Doodle3D por medio de wifi." - -#~ msgctxt "@item:inmenu" -#~ msgid "Doodle3D printing" -#~ msgstr "Impresión Doodle3D" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D" -#~ msgstr "Imprimir con Doodle3D" - -#~ msgctxt "@info:tooltip" -#~ msgid "Print with " -#~ msgstr "Imprimir con" - -#~ msgctxt "@title:menu" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Enable Scan devices..." -#~ msgstr "Habilitar dispositivos de digitalización..." - -#~ msgctxt "@info:progress" -#~ msgid "Saving to Removable Drive {0}" -#~ msgstr "Guardando en unidad extraíble {0}" - -#~ msgctxt "@info:status" -#~ msgid "Could not save to {0}: {1}" -#~ msgstr "No se pudo guardar en {0}: {1}" - -#~ msgctxt "@info:status" -#~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!" -#~ msgstr "Tenga en cuenta que tiene que volver a abrir el archivo SolidWorks manualmente. Volver a cargar el modelo no funciona." - -#~ msgctxt "@item:inlistbox" -#~ msgid "Layers" -#~ msgstr "Capas" - -#~ msgid "Browse plugins" -#~ msgstr "Examinar complementos" - -#~ msgctxt "@item:inmenu" -#~ msgid "Solid" -#~ msgstr "Sólido" - -#~ msgctxt "@label" -#~ msgid "The file {0} already exists. Are you sure you want to overwrite it?" -#~ msgstr "El archivo {0} ya existe. ¿Está seguro de que desea sobrescribirlo?" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export profile to {0}: {1}" -#~ msgstr "Error al exportar el perfil a {0}: {1}" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export profile to {0}: Writer plugin reported failure." -#~ msgstr "Error al exportar el perfil a {0}: Error en el complemento de escritura." - -#~ msgctxt "@info:status" -#~ msgid "Exported profile to {0}" -#~ msgstr "Perfil exportado a {0}" - -#~ msgctxt "@info:status" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "Error al importar el perfil de {0}: {1}" - -#~ msgctxt "@title:window" -#~ msgid "Doodle3D Settings" -#~ msgstr "Ajustes de Doodle3D" - -#~ msgctxt "@title:window" -#~ msgid "Print to: %1" -#~ msgstr "Imprimir en: %1" - -#~ msgctxt "@label" -#~ msgid "Extruder Temperature: %1/%2°C" -#~ msgstr "Temperatura del extrusor: %1/%2 °C" - -#~ msgctxt "@label" -#~ msgid "Bed Temperature: %1/%2°C" -#~ msgstr "Temperatura de la plataforma: %1/%2 °C" - -#~ msgctxt "@label" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@label" -#~ msgid "View Mode: Layers" -#~ msgstr "Ver modo: Capas" - -#~ msgctxt "@info:status" -#~ msgid "Could not import material %1: %2" -#~ msgstr "No se pudo importar el material en %1: %2." - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported material %1" -#~ msgstr "El material se ha importado correctamente en %1." - -#~ msgctxt "@info:status" -#~ msgid "Failed to export material to %1: %2" -#~ msgstr "Se ha producido un error al exportar el material a %1: %2." - -#~ msgctxt "@info:status" -#~ msgid "Successfully exported material to %1" -#~ msgstr "El material se ha exportado correctamente a %1." - -#~ msgctxt "@label" -#~ msgid "%1 m / ~ %2 g / ~ %4 %3" -#~ msgstr "%1 m / ~ %2 g / ~ %4 %3" - -#~ msgctxt "@label" -#~ msgid "%1 m / ~ %2 g" -#~ msgstr "%1 m/~ %2 g" - -#~ msgctxt "@label" -#~ msgid "Hotend" -#~ msgstr "Extremo caliente" - -#~ msgctxt "@action:button" -#~ msgid "View Mode" -#~ msgstr "Ver modo" - -#~ msgctxt "@title:tab" -#~ msgid "Print" -#~ msgstr "Imprimir" - -#~ msgctxt "@label" -#~ msgid "0%" -#~ msgstr "0 %" - -#~ msgctxt "@label" -#~ msgid "Empty infill will leave your model hollow with low strength." -#~ msgstr "Un relleno vacío dejará hueco el modelo con baja resistencia." - -#~ msgctxt "@label" -#~ msgid "20%" -#~ msgstr "20 %" - -#~ msgctxt "@label" -#~ msgid "Light (20%) infill will give your model an average strength." -#~ msgstr "Un relleno ligero (20 %) dará al modelo una resistencia media." - -#~ msgctxt "@label" -#~ msgid "50%" -#~ msgstr "50 %" - -#~ msgctxt "@label" -#~ msgid "Dense (50%) infill will give your model an above average strength." -#~ msgstr "Un relleno denso (50 %) dará al modelo una resistencia por encima de la media." - -#~ msgctxt "@label" -#~ msgid "100%" -#~ msgstr "100 %" - -#~ msgctxt "@label" -#~ msgid "Solid (100%) infill will make your model completely solid." -#~ msgstr "Un relleno sólido (100 %) hará que el modelo sea completamente macizo." - -#~ msgctxt "@label" -#~ msgid "Gradual" -#~ msgstr "Gradual" - -#~ msgctxt "description" -#~ msgid "Provides support for writing X3G files" -#~ msgstr "Proporciona asistencia para escribir archivos X3G." - -#~ msgctxt "name" -#~ msgid "X3G Writer" -#~ msgstr "Escritor de X3G" - -#~ msgctxt "@label" -#~ msgid "Machine Settings action" -#~ msgstr "Acción Ajustes de la máquina" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "X-Ray View" -#~ msgstr "Vista de rayos X" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the X-Ray view." -#~ msgstr "Proporciona la vista de rayos X." - -#~ msgctxt "@label" -#~ msgid "X3D Reader" -#~ msgstr "Lector de X3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for reading X3D files." -#~ msgstr "Proporciona asistencia para leer archivos X3D." - -#~ msgctxt "@label" -#~ msgid "GCode Writer" -#~ msgstr "Escritor de GCode" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Writes GCode to a file." -#~ msgstr "Escribe GCode en un archivo." - -#~ msgctxt "@action:button Preceded by 'Ready to'." -#~ msgid "Print with Doodle3D" -#~ msgstr "Imprimir con Doodle3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "Muestra los cambios desde la última versión comprobada." - -#~ msgctxt "@label" -#~ msgid "Profile flatener" -#~ msgstr "Aplanador de perfil" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "Crear un perfil de cambios de calidad aplanado." - -#~ msgctxt "@label" -#~ msgid "USB printing" -#~ msgstr "Impresión USB" - -#~ msgctxt "@info:whatsthis" -#~ 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 "X3G Writer Plugin Description" -#~ msgid "Writes X3G to a file" -#~ msgstr "Escribe X3G en un archivo." - -#~ msgctxt "@label" -#~ msgid "Removable Drive Output Device Plugin" -#~ msgstr "Complemento de dispositivo de salida de unidad extraíble" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@info:whatsthis" -#~ msgid "Manages network connections to Ultimaker 3 printers" -#~ msgstr "Gestiona las conexiones de red a las impresoras Ultimaker 3." - -#~ msgctxt "@label" -#~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Print core distinto (Cura: {0}, impresora: {1}) seleccionado para extrusor {2}" - -#~ msgctxt "@label" -#~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "El PrintCore {0} no está calibrado correctamente. Debe llevarse a cabo una calibración XY de la impresora." - -#~ msgctxt "@label" -#~ msgid "The print cores and/or materials on your printer differ from those within your current project. For the best result, always slice for the print cores and materials that are inserted in your printer." -#~ msgstr "Los print cores o los materiales de la impresora difieren de los del proyecto actual. Para obtener el mejor resultado, segmente siempre los print cores y materiales que se hayan insertado en la impresora." - -#~ msgctxt "@label" -#~ msgid "Post Processing" -#~ msgstr "Posprocesamiento" - -#~ msgctxt "Description of plugin" -#~ 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 "Auto Save" -#~ msgstr "Guardado automático" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "Guarda automáticamente Preferencias, Máquinas y Perfiles después de los cambios." - -#~ msgctxt "@label" -#~ msgid "Slice info" -#~ msgstr "Info de la segmentación" - -#~ msgctxt "@info:whatsthis" -#~ 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" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences" -#~ msgstr "Cura recopila de forma anónima información de la segmentación. Puede desactivar esta opción en las preferencias." - -#~ msgctxt "@label" -#~ msgid "Material Profiles" -#~ msgstr "Perfiles de material" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides capabilities to read and write XML-based material profiles." -#~ msgstr "Permite leer y escribir perfiles de material basados en XML." - -#~ msgctxt "@label" -#~ msgid "Legacy Cura Profile Reader" -#~ msgstr "Lector de perfiles antiguos de Cura" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "GCode Profile Reader" -#~ msgstr "Lector de perfiles GCode" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing profiles from g-code files." -#~ msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode." - -#~ msgctxt "@label" -#~ msgid "Layer View" -#~ msgstr "Vista de capas" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the Layer view." -#~ msgstr "Proporciona la vista de capas." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.5 to 2.6" -#~ msgstr "Actualización de la versión 2.5 a la 2.6" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "Version Upgrade 2.1 to 2.2" -#~ msgstr "Actualización de la versión 2.1 a la 2.2" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -#~ msgstr "Actualiza las configuraciones de Cura 2.1 a Cura 2.2." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.2 to 2.4" -#~ msgstr "Actualización de la versión 2.2 a la 2.4" - -#~ msgctxt "@info:whatsthis" -#~ 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 "Image Reader" -#~ msgstr "Lector de imágenes" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "CuraEngine Backend" -#~ msgstr "Backend de CuraEngine" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the link to the CuraEngine slicing backend." -#~ msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine." - -#~ msgctxt "@label" -#~ msgid "Per Model Settings Tool" -#~ msgstr "Herramienta de ajustes por modelo" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the Per Model Settings." -#~ msgstr "Proporciona los ajustes por modelo." - -#~ msgctxt "@label" -#~ msgid "3MF Reader" -#~ msgstr "Lector de 3MF" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for reading 3MF files." -#~ msgstr "Proporciona asistencia para leer archivos 3MF." - -#~ msgctxt "@label" -#~ msgid "Solid View" -#~ msgstr "Vista de sólidos" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides a normal solid mesh view." -#~ msgstr "Proporciona una vista de malla sólida normal." - -#~ msgctxt "@label" -#~ msgid "G-code Reader" -#~ msgstr "Lector de GCode" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Allows loading and displaying G-code files." -#~ msgstr "Permite cargar y visualizar archivos GCode." - -#~ msgctxt "@label" -#~ msgid "Cura Profile Writer" -#~ msgstr "Escritor de perfiles de Cura" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for exporting Cura profiles." -#~ msgstr "Proporciona asistencia para exportar perfiles de Cura." - -#~ msgctxt "@label" -#~ msgid "3MF Writer" -#~ msgstr "Escritor de 3MF" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for writing 3MF files." -#~ msgstr "Proporciona asistencia para escribir archivos 3MF." - -#~ msgctxt "@label" #~ msgid "Ultimaker machine actions" #~ msgstr "Acciones de la máquina Ultimaker" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "Cura Profile Reader" -#~ msgstr "Lector de perfiles de Cura" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing Cura profiles." -#~ msgstr "Proporciona asistencia para la importación de perfiles de Cura." - -#~ msgctxt "@info" -#~ msgid "%(width).1f x %(depth).1f x %(height).1f mm" -#~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#~ msgctxt "@label" -#~ msgid "Build Plate Shape" -#~ msgstr "Forma de la placa de impresión" - -#~ msgctxt "@option:check" -#~ msgid "Machine Center is Zero" -#~ msgstr "El centro de la máquina es cero." - -#~ msgctxt "@option:check" -#~ msgid "Heated Bed" -#~ msgstr "Plataforma caliente" - -#~ msgctxt "@label" -#~ msgid "GCode Flavor" -#~ msgstr "Tipo de GCode" - -#~ msgctxt "@label" -#~ msgid "Material Diameter" -#~ msgstr "Diámetro del material" - -#~ 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 "@item:inlistbox" -#~ msgid "Ultimaker" -#~ msgstr "Ultimaker" - -#~ msgctxt "@label" -#~ msgid "Support library for scientific computing " -#~ msgstr "Biblioteca de apoyo para cálculos científicos " - -#~ msgctxt "@tooltip" -#~ msgid "Print Setup

    Edit or review the settings for the active print job." -#~ msgstr "Configuración de impresión

    Editar o revisar los ajustes del trabajo de impresión activo." - -#~ msgctxt "@tooltip" -#~ msgid "Print Monitor

    Monitor the state of the connected printer and the print job in progress." -#~ msgstr "Monitor de impresión

    Supervisar el estado de la impresora conectada y del trabajo de impresión en curso." - -#~ msgctxt "@title:menuitem %1 is the value from the printer" -#~ msgid "Automatic: %1" -#~ msgstr "Automático: %1" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3d model" -#~ msgstr "Cargue un modelo en 3D" - -#~ msgctxt "@label" -#~ msgid "Print Selected Model with %1" -#~ msgid_plural "Print Selected Models With %1" -#~ msgstr[0] "Imprimir modelo seleccionado con %1" -#~ msgstr[1] "Imprimir modelos seleccionados con %1" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}" -#~ msgstr "No se puede iniciar un trabajo nuevo de impresión. No se ha cargado ningún PrintCore en la ranura {0}." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.4 to 2.5" -#~ msgstr "Actualización de la versión 2.4 a la 2.5" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5." -#~ msgstr "Actualiza la configuración de Cura 2.4 a Cura 2.5." - -#~ msgctxt "@info:status" -#~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead." -#~ msgstr "No se puede encontrar el perfil de calidad de esta combinación. Se utilizarán los ajustes predeterminados." - -#~ msgctxt "@title:window" -#~ msgid "Oops!" -#~ msgstr "¡Vaya!" - -#~ msgctxt "@label" -#~ msgid "" -#~ "

    A fatal exception has occurred that we could not recover from!

    \n" -#~ "

    We hope this picture of a kitten helps you recover from the shock.

    \n" -#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " -#~ msgstr "" -#~ "

    Se ha producido una excepción fatal de la que no podemos recuperarnos.

    \n" -#~ "

    Esperamos que la imagen de este gatito le ayude a recuperarse del shock.

    \n" -#~ "

    Use la siguiente información para enviar un informe de error a http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " - -#~ msgctxt "@label" -#~ msgid "Please enter the correct settings for your printer below:" -#~ msgstr "Introduzca los ajustes correctos de la impresora a continuación:" - -#~ msgctxt "@label" -#~ msgid "Extruder %1" -#~ msgstr "Extrusor %1" - -#~ msgctxt "@label Followed by extruder selection drop-down." -#~ msgid "Print model with" -#~ msgstr "Imprimir modelo con" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for language changes to have effect." -#~ msgstr "Tendrá que reiniciar la aplicación para que tengan efecto los cambios del idioma." - -#~ msgctxt "@info:tooltip" -#~ msgid "Moves the camera so the model is in the center of the view when an model is selected" -#~ msgstr "Mueve la cámara de manera que el modelo se encuentre en el centro de la vista cuando se selecciona un modelo." - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete &Selection" -#~ msgstr "Eliminar &selección" - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Open File..." -#~ msgstr "&Abrir archivo..." - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Open Project..." -#~ msgstr "A&brir proyecto..." - -#~ msgctxt "@title:window" -#~ msgid "Multiply Model" -#~ msgstr "Multiplicar modelo" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &All" -#~ msgstr "Guardar &todo" - -#~ msgctxt "@title:window" -#~ msgid "Open file" -#~ msgstr "Abrir archivo" - -#~ msgctxt "@title:window" -#~ msgid "Open workspace" -#~ msgstr "Abrir área de trabajo" - -#~ msgctxt "@label" -#~ msgid "Hollow" -#~ msgstr "Hueco" - -#~ msgctxt "@label" -#~ msgid "No (0%) infill will leave your model hollow at the cost of low strength" -#~ msgstr "Ningún (0%) relleno, lo que dejará hueco el modelo a costa de baja resistencia" - -#~ msgctxt "@label" -#~ msgid "Light" -#~ msgstr "Ligero" - -#~ msgctxt "@label" -#~ msgid "Light (20%) infill will give your model an average strength" -#~ msgstr "Un relleno ligero (20%) dará al modelo de una resistencia media" - -#~ msgctxt "@label" -#~ msgid "Dense" -#~ msgstr "Denso" - -#~ msgctxt "@label" -#~ msgid "Dense (50%) infill will give your model an above average strength" -#~ msgstr "Un relleno denso (50%) dará al modelo de una resistencia por encima de la media" - -#~ msgctxt "@label" -#~ msgid "Solid" -#~ msgstr "Sólido" - -#~ msgctxt "@label" -#~ msgid "Solid (100%) infill will make your model completely solid" -#~ msgstr "Un relleno sólido (100%) hará que el modelo sea completamente macizo" - -#~ msgctxt "@label" -#~ msgid "Enable Support" -#~ msgstr "Habilitar el soporte" - -#~ msgctxt "@label" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Habilita las estructuras del soporte. Estas estructuras soportan partes del modelo con voladizos severos." - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints? Read the Ultimaker Troubleshooting Guides" -#~ msgstr "¿Necesita mejorar sus impresiones? Lea las Guías de solución de problemas de Ultimaker." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}. Please approve the access request on the printer." -#~ msgstr "Conectado a través de la red a {0}. Apruebe la solicitud de acceso en la impresora." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}." -#~ msgstr "Conectado a través de la red a {0}." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}. No access to control the printer." -#~ msgstr "Conectado a través de la red a {0}. No hay acceso para controlar la impresora." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job because the printer is busy. Please check the printer." -#~ msgstr "No se puede iniciar un trabajo nuevo de impresión porque la impresora está ocupada. Compruebe la impresora." - -#~ msgctxt "@label" -#~ msgid "You made changes to the following setting(s)/override(s):" -#~ msgstr "Ha realizado cambios en los siguientes ajustes o se ha sobrescrito:" - -#~ msgctxt "@window:title" -#~ msgid "Switched profiles" -#~ msgstr "Perfiles activados" - -#~ msgctxt "@label" -#~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?" -#~ msgstr "¿Desea transferir los %d ajustes o sobrescrituras modificados a este perfil?" - -#~ msgctxt "@label" -#~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost." -#~ msgstr "Si transfiere los ajustes, se sobrescribirán los del perfil. Si no los transfiere, se perderán." - -#~ msgctxt "@label" -#~ msgid "Cost per Meter (Approx.)" -#~ msgstr "Coste por metro (aprox.)" - -#~ msgctxt "@label" -#~ msgid "%1/m" -#~ msgstr "%1/m" - -#~ msgctxt "@info:tooltip" -#~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information." -#~ msgstr "Mostrar las cinco primeras capas en la vista de capas o solo la primera. Aunque para representar cinco capas se necesita más tiempo, puede mostrar más información." - -#~ msgctxt "@action:button" -#~ msgid "Display five top layers in layer view" -#~ msgstr "Mostrar las cinco primeras capas en la vista de capas" - -#~ msgctxt "@info:tooltip" -#~ msgid "Should only the top layers be displayed in layerview?" -#~ msgstr "¿Deben mostrarse solo las primeras capas en la vista de capas?" - -#~ msgctxt "@option:check" -#~ msgid "Only display top layer(s) in layer view" -#~ msgstr "Mostrar solo las primeras capas en la vista de capas" - -#~ msgctxt "@label" -#~ msgid "Opening files" -#~ msgstr "Abriendo archivos..." - -#~ msgctxt "@label" -#~ msgid "Printer Monitor" -#~ msgstr "Monitor de la impresora" - -#~ msgctxt "@label" -#~ msgid "Temperatures" -#~ msgstr "Temperaturas" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Preparing to slice..." -#~ msgstr "Preparando para segmentar..." - -#~ msgctxt "@window:title" -#~ msgid "Changes on the Printer" -#~ msgstr "Cambios en la impresora" - -#~ msgctxt "@action:inmenu" -#~ msgid "&Duplicate Model" -#~ msgstr "&Duplicar modelo" - -#~ msgctxt "@label" -#~ msgid "Helper Parts:" -#~ msgstr "Partes de los asistentes:" - -#~ msgctxt "@label" -#~ msgid "Enable printing support structures. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "Habilita estructuras de soporte de impresión. Esta opción formará estructuras de soporte por debajo del modelo para evitar que el modelo se combe o la impresión en el aire." - -#~ msgctxt "@label" -#~ msgid "Don't print support" -#~ msgstr "No utilizar soporte de impresión." - -#~ msgctxt "@label" -#~ msgid "Print support using %1" -#~ msgstr "Soporte de impresión con %1" - -#~ msgctxt "@label:listbox" -#~ msgid "Printer:" -#~ msgstr "Impresora:" - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profiles {0}" -#~ msgstr "Perfiles {0} importados correctamente" - -#~ msgctxt "@label" -#~ msgid "Scripts" -#~ msgstr "Secuencias de comandos" - -#~ msgctxt "@label" -#~ msgid "Active Scripts" -#~ msgstr "Secuencias de comandos activas" - -#~ msgctxt "@label" -#~ msgid "Done" -#~ msgstr "Realizada" - -#~ msgctxt "@item:inlistbox" -#~ msgid "English" -#~ msgstr "Inglés" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Finnish" -#~ msgstr "Finlandés" - -#~ msgctxt "@item:inlistbox" -#~ msgid "French" -#~ msgstr "Francés" - -#~ msgctxt "@item:inlistbox" -#~ msgid "German" -#~ msgstr "Alemán" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Italian" -#~ msgstr "Italiano" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Dutch" -#~ msgstr "Holandés" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Spanish" -#~ msgstr "Español" - -#~ msgctxt "@label" -#~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?" -#~ msgstr "¿Desea cambiar los PrintCores y materiales de Cura para que coincidan con la impresora?" - -#~ msgctxt "@label:" -#~ msgid "Print Again" -#~ msgstr "Volver a imprimir" diff --git a/resources/i18n/es_ES/fdmextruder.def.json.po b/resources/i18n/es_ES/fdmextruder.def.json.po index 65381a8f04..c825bd7faa 100644 --- a/resources/i18n/es_ES/fdmextruder.def.json.po +++ b/resources/i18n/es_ES/fdmextruder.def.json.po @@ -1,12 +1,9 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-08 09:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -15,6 +12,96 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: fdmextruder.def.json +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adherencia" + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adherencia de la placa de impresión" + +#: fdmextruder.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diámetro" + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "Extrusor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code label" +msgid "Extruder End G-Code" +msgstr "GCode final del extrusor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_abs label" +msgid "Extruder End Position Absolute" +msgstr "Posición final absoluta del extrusor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x label" +msgid "Extruder End Position X" +msgstr "Posición de fin del extrusor sobre el eje X" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y label" +msgid "Extruder End Position Y" +msgstr "Posición de fin del extrusor sobre el eje Y" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posición de preparación del extrusor sobre el eje X" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posición de preparación del extrusor sobre el eje Y" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posición de preparación del extrusor sobre el eje Z" + +#: fdmextruder.def.json +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Ventilador de refrigeración de impresión del extrusor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_code label" +msgid "Extruder Start G-Code" +msgstr "GCode inicial del extrusor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_abs label" +msgid "Extruder Start Position Absolute" +msgstr "Posición de inicio absoluta del extrusor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "Posición de inicio del extrusor sobre el eje X" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "Posición de inicio del extrusor sobre el eje Y" + #: fdmextruder.def.json msgctxt "machine_settings label" msgid "Machine" @@ -26,69 +113,9 @@ msgid "Machine specific settings" msgstr "Ajustes específicos de la máquina" #: fdmextruder.def.json -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "Extrusor" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Id. de la tobera" - -#: fdmextruder.def.json -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\"." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diámetro de la tobera" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x label" -msgid "Nozzle X Offset" -msgstr "Desplazamiento de la tobera sobre el eje X" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "Coordenada X del desplazamiento de la tobera." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "Desplazamiento de la tobera sobre el eje Y" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "Coordenada Y del desplazamiento de la tobera." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code label" -msgid "Extruder Start G-Code" -msgstr "GCode inicial del extrusor" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_abs label" -msgid "Extruder Start Position Absolute" -msgstr "Posición de inicio 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." #: fdmextruder.def.json msgctxt "machine_extruder_start_pos_abs description" @@ -96,114 +123,9 @@ msgid "Make the extruder starting position absolute rather than relative to the msgstr "El extrusor se coloca en la posición de inicio absoluta según la última ubicación conocida del cabezal." #: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "Posición de inicio del extrusor sobre el eje X" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "Posición de inicio del extrusor sobre el eje Y" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code label" -msgid "Extruder End G-Code" -msgstr "GCode final del extrusor" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_abs label" -msgid "Extruder End Position Absolute" -msgstr "Posición final absoluta del extrusor" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x label" -msgid "Extruder End Position X" -msgstr "Posición de fin del extrusor sobre el eje X" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y label" -msgid "Extruder End Position Y" -msgstr "Posición de fin del extrusor sobre el eje Y" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posición de preparación del extrusor sobre el eje Z" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Ventilador de refrigeración de impresión del extrusor" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adherencia de la placa de impresión" - -#: fdmextruder.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adherencia" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posición de preparación del extrusor sobre el eje X" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posición de preparación del extrusor sobre el eje Y" - -#: fdmextruder.def.json -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 "material description" +msgid "Material" +msgstr "Material" #: fdmextruder.def.json msgctxt "material label" @@ -211,24 +133,91 @@ msgid "Material" msgstr "Material" #: fdmextruder.def.json -msgctxt "material description" -msgid "Material" -msgstr "Material" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diámetro de la tobera" #: fdmextruder.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diámetro" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Id. de la tobera" #: fdmextruder.def.json -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 "machine_nozzle_offset_x label" +msgid "Nozzle X Offset" +msgstr "Desplazamiento de la tobera sobre el eje X" -#~ msgctxt "machine_extruder_start_code description" -#~ msgid "Start g-code to execute whenever turning the extruder on." -#~ msgstr "Gcode inicial que se ejecuta cada vez que se enciende el extrusor." +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "Desplazamiento de la tobera sobre el eje Y" -#~ msgctxt "machine_extruder_end_code description" -#~ msgid "End g-code to execute whenever turning the extruder off." -#~ msgstr "Gcode final que se ejecuta cada vez que se apaga el extrusor." +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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\"." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "Coordenada X del desplazamiento de la tobera." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "Coordenada Y del desplazamiento de la tobera." + +#: fdmextruder.def.json +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." diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index f1bd12cd34..f81b45e982 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -1,12 +1,9 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-28 11:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -16,1497 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: fdmprinter.def.json -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Máquina" +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." #: fdmprinter.def.json -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Ajustes específicos de la máquina" +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." #: fdmprinter.def.json -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Tipo de máquina" - -#: fdmprinter.def.json -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Nombre del modelo de la impresora 3D." - -#: fdmprinter.def.json -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Mostrar versiones de la máquina" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "Iniciar GCode" - -#: fdmprinter.def.json -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 - \n" -"." - -#: fdmprinter.def.json -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "Finalizar GCode" - -#: fdmprinter.def.json -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 -\n" -"." - -#: fdmprinter.def.json -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID del material" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diámetro" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Esperar a que la placa de impresión se caliente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Esperar a la que la tobera se caliente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Incluir temperaturas del material" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Incluir temperatura de la placa de impresión" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Ancho de la máquina" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Profundidad de la máquina" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Altura de la máquina" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Forma de la placa de impresión" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Rectangular" - -#: fdmprinter.def.json -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Elíptica" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Material de placa de impresión" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Vidrio" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Aluminio" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Tiene una placa de impresión caliente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Tiene estabilización de temperatura del volumen de impresión" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "Escriba siempre la herramienta activa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "El origen está centrado" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Número de extrusores" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Número de extrusores habilitados" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Diámetro exterior de la tobera" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Longitud de la tobera" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Ángulo de la tobera" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Longitud de la zona térmica" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Habilitar control de temperatura de la tobera" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Velocidad de calentamiento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Velocidad de enfriamiento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Temperatura mínima en modo de espera" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Tipo de GCode" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Tipo de GCode que se va a generar." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumetric)" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -#: fdmprinter.def.json -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Retracción de firmware" - -#: fdmprinter.def.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 "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." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Calentador compartido de extrusores" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Los extrusores comparten la tobera" - -#: fdmprinter.def.json -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\"." - -#: fdmprinter.def.json -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Retracción inicial de tobera compartida" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Áreas no permitidas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Áreas no permitidas para la tobera" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Polígono del cabezal de la máquina y del ventilador" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Altura del puente" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Id. de la tobera" - -#: fdmprinter.def.json -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\"." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diámetro de la tobera" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Desplazamiento con extrusor" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posición de preparación del extrusor sobre el eje Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Posición de preparación absoluta del extrusor" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Velocidad máxima sobre el eje X" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Velocidad máxima sobre el eje Y" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Velocidad máxima sobre el eje Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Velocidad máxima E" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "Velocidad máxima del filamento." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Aceleración máxima sobre el eje X" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Aceleración máxima de Y" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Aceleración máxima de Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Aceleración máxima del filamento" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Aceleración máxima del motor del filamento." - -#: fdmprinter.def.json -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Aceleración predeterminada" - -#: fdmprinter.def.json -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "Aceleración predeterminada del movimiento del cabezal de impresión." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Impulso X-Y predeterminado" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Impulso Z predeterminado" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Impulso de filamento predeterminado" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Impulso predeterminado del motor del filamento." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Pasos por milímetro (X)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Pasos por milímetro (Y)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Pasos por milímetro (Z)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Pasos por milímetro (E)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Tope de X en dirección positiva" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Tope de Y en dirección positiva" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Tope de Z en dirección positiva" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Velocidad de alimentación mínima" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diámetro de la rueda del alimentador" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "resolution label" -msgid "Quality" -msgstr "Calidad" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Altura de capa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Altura de capa inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "line_width label" -msgid "Line Width" -msgstr "Ancho de línea" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Ancho de línea de pared" - -#: fdmprinter.def.json -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Ancho de una sola línea de pared." - -#: fdmprinter.def.json -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Ancho de línea de la pared exterior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Ancho de línea de pared(es) interna(s)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Ancho de línea superior/inferior" - -#: fdmprinter.def.json -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Ancho de una sola línea superior/inferior." - -#: fdmprinter.def.json -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Ancho de línea de relleno" - -#: fdmprinter.def.json -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Ancho de una sola línea de relleno." - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Ancho de línea de falda/borde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Ancho de línea de soporte" - -#: fdmprinter.def.json -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Ancho de una sola línea de estructura de soporte." - -#: fdmprinter.def.json -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Ancho de línea de interfaz de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Ancho de línea del techo de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Ancho de línea del suelo de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Ancho de línea de la torre auxiliar" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Ancho de línea de la capa inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "shell label" -msgid "Walls" -msgstr "Paredes" - -#: fdmprinter.def.json -msgctxt "shell description" -msgid "Shell" -msgstr "Perímetro" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Extrusor de pared" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extrusor de pared exterior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extrusor de pared interior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Grosor de la pared" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Recuento de líneas de pared" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Longitud de transición de la pared" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Recuento de distribución de pared" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Ángulo de umbral de transición de pared" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Distancia del filtro de transición a la pared" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Margen del filtro de transición de pared" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Distancia de pasada de la pared exterior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Entrante en la pared exterior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Optimizar el orden de impresión de paredes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Orden de paredes" - -#: fdmprinter.def.json -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." -msgstr "Determina el orden de impresión de las paredes. La preimpresión de las paredes exteriores mejora la precisión dimensional ya que las fallas de las paredes internas no pueden propagarse hacia el exterior. Sin embargo, si imprime más tarde, podrá apilarlos mejor cuando se impriman los voladizos." - -#: fdmprinter.def.json -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "Del interior al exterior" - -#: fdmprinter.def.json -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "Del exterior al interior" - -#: fdmprinter.def.json -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Alternar pared adicional" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Ancho mínimo de la línea perimetral" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Ancho mínimo de la línea perimetral uniforme" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold label" -msgid "Split Middle Line Threshold" -msgstr "Dividir umbral de línea media" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "El ancho de línea más pequeño, como un factor del ancho de línea normal, por encima del cual la línea media (si existe) se dividirá en dos. Reduzca esta configuración para utilizar menos líneas más finas. Incremente para utilizar menos líneas más anchas. Tenga en cuenta que esto se mantiene, como si toda la forma necesitara ser rellenada con una pared. Por lo tanto, en este contexto, la línea intermedia se refiere a la línea intermedia del objeto entre dos bordes externos, incluso si en lugar de la pared, la impresión contiene un relleno u otro revestimiento externo" - -#: fdmprinter.def.json -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Ancho mínimo de la línea perimetral impar" - -#: fdmprinter.def.json -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 "El ancho de línea mínimo para paredes de polilínea de relleno de hueco de línea intermedia. Este parámetro determina a partir de qué grosor de modelo pasamos de imprimir dos líneas de paredes a imprimir dos paredes exteriores y una sola pared central en el medio. Un ancho mínimo más alto de la línea perimetral impar conduce a un ancho máximo más alto de la línea perimetral par. El ancho máximo de línea perimetral impar se calcula como 2 * ancho mínimo de línea perimetral par." - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold label" -msgid "Add Middle Line Threshold" -msgstr "Añadir umbral de línea media" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "El ancho de línea más pequeño, como un factor del ancho de línea normal, por encima del cual se agregará una línea intermedia (si aún no existe). Reduzca esta configuración para utilizar menos líneas más finas. Incremente para utilizar menos líneas más anchas. Tenga en cuenta que esto se mantiene, como si toda la forma necesitara ser rellenada con una pared. Por lo tanto, en este contexto, la línea intermedia se refiere a la línea intermedia del objeto entre dos bordes externos, incluso si en lugar de la pared, la impresión contiene un relleno u otro revestimiento externo." - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Imprimir paredes finas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Tamaño mínimo de la característica" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Ancho mínimo de la línea perimetral delgada" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Expansión horizontal" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Expansión horizontal de la capa inicial" - -#: fdmprinter.def.json -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»." - -#: fdmprinter.def.json -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Expansión horizontal de orificios" - -#: fdmprinter.def.json -msgctxt "hole_xy_offset description" -msgid "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." -msgstr "Cantidad de desplazamiento aplicado a todos los orificios en cada capa. Los valores positivos aumentan el tamaño de los orificios y los valores negativos reducen el tamaño de los mismos." - -#: fdmprinter.def.json -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Alineación de costuras en Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Especificada por el usuario" - -#: fdmprinter.def.json -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Más corta" - -#: fdmprinter.def.json -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Aleatoria" - -#: fdmprinter.def.json -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Esquina más pronunciada" - -#: fdmprinter.def.json -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Posición de costura en Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Posterior izquierda" - -#: fdmprinter.def.json -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Posterior" - -#: fdmprinter.def.json -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Posterior derecha" - -#: fdmprinter.def.json -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Derecha" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Delantera derecha" - -#: fdmprinter.def.json -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Delantera" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Delantera izquierda" - -#: fdmprinter.def.json -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Izquierda" - -#: fdmprinter.def.json -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "X de la costura Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Y de la costura Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Preferencia de esquina de costura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Ninguno" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Ocultar costura" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Mostrar costura" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Ocultar o mostrar costura" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Costura inteligente" - -#: fdmprinter.def.json -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Costuras relativas en Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Superior o inferior" - -#: fdmprinter.def.json -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Superior o inferior" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Extrusor de la superficie superior del forro" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Capas de la superficie superior del forro" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extrusor superior/inferior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Grosor superior/inferior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Grosor superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Capas superiores" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Grosor inferior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Capas inferiores" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Capas inferiores iniciales" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Patrón superior/inferior" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Patrón de las capas superiores/inferiores." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Líneas" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Patrón inferior de la capa inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Líneas" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concéntrico" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -#: fdmprinter.def.json -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Conectar polígonos superiores/inferiores" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Orden monotónica superior e inferior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Direcciones de línea superior/inferior" +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)." #: fdmprinter.def.json msgctxt "skin_angles description" @@ -1514,379 +33,24 @@ msgid "A list of integer line directions to use when the top/bottom layers use t 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)." #: fdmprinter.def.json -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Sin forro en huecos en Z" +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." #: fdmprinter.def.json -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 "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)." #: fdmprinter.def.json -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Recuento de paredes adicionales de forro" +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)." #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Habilitar alisado" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Planchar solo la capa superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Patrón de alisado" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" - -#: fdmprinter.def.json -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -#: fdmprinter.def.json -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Orden de planchado monotónico" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Espaciado de líneas del alisado" - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "Distancia entre las líneas del alisado." - -#: fdmprinter.def.json -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Flujo de alisado" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Inserción de alisado" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Velocidad de alisado" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Aceleración del alisado" - -#: fdmprinter.def.json -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "La aceleración a la que se produce el alisado." - -#: fdmprinter.def.json -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Impulso de alisado" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Porcentaje de superposición del forro" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Superposición del forro" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Anchura de retirada del forro" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Anchura de retirada del forro superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Anchura de retirada del forro inferior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Distancia de expansión del forro" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Distancia de expansión del forro superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Distancia de expansión del forro inferior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Ángulo máximo de expansión del forro" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Anchura de expansión mínima del forro" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill label" -msgid "Infill" -msgstr "Relleno" - -#: fdmprinter.def.json -msgctxt "infill description" -msgid "Infill" -msgstr "Relleno" - -#: fdmprinter.def.json -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Extrusor del relleno" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Densidad de relleno" - -#: fdmprinter.def.json -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Ajusta la densidad del relleno de la impresión." - -#: fdmprinter.def.json -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Distancia de línea de relleno" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Patrón de relleno" - -#: fdmprinter.def.json -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 iluminación intenta minimizar el relleno apoyando solo la parte superior del objeto." - -#: fdmprinter.def.json -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Rejilla" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Líneas" - -#: fdmprinter.def.json -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Triángulos" - -#: fdmprinter.def.json -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Trihexagonal" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Cúbico" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Subdivisión cúbica" - -#: fdmprinter.def.json -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octeto" - -#: fdmprinter.def.json -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Cúbico bitruncado" - -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" - -#: fdmprinter.def.json -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Cruz" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Cruz 3D" - -#: fdmprinter.def.json -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Giroide" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Iluminación" - -#: fdmprinter.def.json -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Conectar líneas de relleno" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Conectar polígonos de relleno" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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)." #: fdmprinter.def.json msgctxt "infill_angles description" @@ -1894,49 +58,44 @@ msgid "A list of integer line directions to use. Elements from the list are used 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)." #: fdmprinter.def.json -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." #: fdmprinter.def.json -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." #: fdmprinter.def.json -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Desplazamiento del relleno sobre el eje Y" +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "Una pieza completamente encerrada dentro de otra puede generar un borde exterior que toque el interior de la pieza exterior. Esto elimina cualquier borde dentro de esta distancia de los orificios internos." #: fdmprinter.def.json -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" #: fdmprinter.def.json -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" #: fdmprinter.def.json -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" #: fdmprinter.def.json -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" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "infill_wall_line_count description" @@ -1948,284 +107,9 @@ msgstr "" "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." #: fdmprinter.def.json -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Perímetro de la subdivisión cúbica" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Porcentaje de superposición del relleno" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Superposición del relleno" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Distancia de pasada de relleno" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Grosor de la capa de relleno" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Pasos de relleno necesarios" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Altura necesaria de los pasos de relleno" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Relleno antes que las paredes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Área de relleno mínima" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Soporte de relleno" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Ángulo de voladizo de relleno" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Espesor de soporte de los bordes del forro" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Capas de soporte de los bordes del forro" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Ángulo de sujeción de relleno de iluminación" - -#: fdmprinter.def.json -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 iluminación tiene que soportar algo por encima de ella. Medido en el ángulo dado el espesor de una capa." - -#: fdmprinter.def.json -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Ángulo del voladizo de relleno de iluminación" - -#: fdmprinter.def.json -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 iluminación tiene que soportar el modelo que está por encima. Medido en el ángulo dado el espesor." - -#: fdmprinter.def.json -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Ángulo de recorte de relleno de iluminación" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Ángulo de enderezamiento de iluminación" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material label" -msgid "Material" -msgstr "Material" - -#: fdmprinter.def.json -msgctxt "material description" -msgid "Material" -msgstr "Material" - -#: fdmprinter.def.json -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Temperatura de impresión predeterminada" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatura de volumen de impresión" - -#: fdmprinter.def.json -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á." - -#: fdmprinter.def.json -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Temperatura de impresión" - -#: fdmprinter.def.json -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Temperatura de la impresión." - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Temperatura de impresión de la capa inicial" - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Temperatura que se usa para imprimir la primera capa. Se ajusta a 0 para desactivar la manipulación especial de la capa inicial." - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Temperatura de impresión inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Temperatura de impresión final" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Modificador de la velocidad de enfriamiento de la extrusión" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Temperatura predeterminada de la placa de impresión" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Temperatura de la placa de impresión" - -#: fdmprinter.def.json -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á." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" @@ -2233,1924 +117,19 @@ msgid "Adhesion Tendency" msgstr "Tendencia de adherencia" #: fdmprinter.def.json -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." #: fdmprinter.def.json -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." #: fdmprinter.def.json -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Energía de la superficie." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Factor de escala para la compensación de la contracción" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Material cristalino" - -#: fdmprinter.def.json -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)?" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Velocidad de retracción antirrezumado" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Velocidad de retracción antirrezumado" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Posición retraída de preparación de rotura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Velocidad de retracción de preparación de rotura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatura de preparación de rotura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Posición retraída de rotura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Velocidad de retracción de rotura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Temperatura de rotura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Velocidad de purga de descarga" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Longitud de purga de descarga" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Velocidad de purga del extremo del filamento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Longitud de purga del extremo del filamento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Duración máxima de estacionamiento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Factor de desplazamiento sin carga" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flow label" -msgid "Flow" -msgstr "Flujo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Flujo de pared" - -#: fdmprinter.def.json -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Compensación de flujo en líneas de pared." - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Flujo de pared exterior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Flujo de pared o paredes interiores" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Flujo superior o inferior" - -#: fdmprinter.def.json -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Compensación de flujo en las líneas superiores o inferiores." - -#: fdmprinter.def.json -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Flujo de forro de superficie superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Flujo de relleno" - -#: fdmprinter.def.json -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Compensación de flujo en líneas de relleno." - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Flujo de falda/borde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Flujo de soporte" - -#: fdmprinter.def.json -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Compensación de flujo en líneas de estructura de soporte." - -#: fdmprinter.def.json -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Flujo de interfaz de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Flujo de techo de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Flujo de suelo de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Flujo de la torre auxiliar" - -#: fdmprinter.def.json -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Compensación de flujo en líneas de la torre auxiliar." - -#: fdmprinter.def.json -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Flujo de capa inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Temperatura en modo de espera" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed label" -msgid "Speed" -msgstr "Velocidad" - -#: fdmprinter.def.json -msgctxt "speed description" -msgid "Speed" -msgstr "Velocidad" - -#: fdmprinter.def.json -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Velocidad de impresión" - -#: fdmprinter.def.json -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Velocidad a la que se realiza la impresión." - -#: fdmprinter.def.json -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Velocidad de relleno" - -#: fdmprinter.def.json -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Velocidad a la que se imprime el relleno." - -#: fdmprinter.def.json -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Velocidad de pared" - -#: fdmprinter.def.json -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Velocidad a la que se imprimen las paredes." - -#: fdmprinter.def.json -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Velocidad de pared exterior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Velocidad de pared interior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Velocidad de la superficie superior del forro" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Velocidad superior/inferior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Velocidad de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Velocidad de relleno del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Velocidad de interfaz del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Velocidad del techo del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Velocidad del suelo del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Velocidad de la torre auxiliar" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Velocidad de desplazamiento" - -#: fdmprinter.def.json -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Velocidad a la que tienen lugar los movimientos de desplazamiento." - -#: fdmprinter.def.json -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Velocidad de capa inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Velocidad de impresión de la capa inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Velocidad de desplazamiento de la capa inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Velocidad de falda/borde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Velocidad del salto en Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Número de capas más lentas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Proporción de ecualización de flujo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Activar control de aceleración" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Aceleración de la impresión" - -#: fdmprinter.def.json -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Aceleración a la que se realiza la impresión." - -#: fdmprinter.def.json -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Aceleración del relleno" - -#: fdmprinter.def.json -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "Aceleración a la que se imprime el relleno." - -#: fdmprinter.def.json -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Aceleración de la pared" - -#: fdmprinter.def.json -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Aceleración a la que se imprimen las paredes." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Aceleración de pared exterior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Aceleración de pared interior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Aceleración de la superficie superior del forro" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Aceleración superior/inferior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Aceleración de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Aceleración de relleno de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Aceleración de interfaz de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Aceleración del techo del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Aceleración del suelo del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Aceleración de la torre auxiliar" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Aceleración de desplazamiento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Aceleración de la capa inicial" - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Aceleración de la capa inicial." - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Aceleración de impresión de la capa inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Aceleración de desplazamiento de la capa inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Aceleración de falda/borde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Activar control de impulso" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Impulso de impresión" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Impulso de relleno" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Impulso de pared" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Impulso de pared exterior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Impulso de pared interior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Impulso de la superficie superior del forro" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Impulso superior/inferior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Impulso de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Impulso de relleno de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Impulso de interfaz de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Impulso del techo del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Impulso del suelo del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Impulso de la torre auxiliar" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Impulso de desplazamiento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Impulso de capa inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Impulso de impresión de capa inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Impulso de desplazamiento de capa inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Impulso de falda/borde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel label" -msgid "Travel" -msgstr "Desplazamiento" - -#: fdmprinter.def.json -msgctxt "travel description" -msgid "travel" -msgstr "desplazamiento" - -#: fdmprinter.def.json -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Habilitar la retracción" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Retracción en el cambio de capa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Distancia de retracción" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Velocidad de retracción" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Velocidad de retracción" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Velocidad de cebado de retracción" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Cantidad de cebado adicional de retracción" - -#: fdmprinter.def.json -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í." - -#: fdmprinter.def.json -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Desplazamiento mínimo de retracción" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Recuento máximo de retracciones" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Ventana de distancia mínima de extrusión" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "limit_support_retractions label" -msgid "Limit Support Retractions" -msgstr "Limitar las retracciones de soporte" - -#: fdmprinter.def.json -msgctxt "limit_support_retractions description" -msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -msgstr "Omitir la retracción al moverse de soporte a soporte en línea recta. Habilitar este ajuste ahorra tiempo de impresión pero puede ocasionar un encordado excesivo en la estructura de soporte." - -#: fdmprinter.def.json -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Modo Peinada" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Apagado" - -#: fdmprinter.def.json -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Todo" - -#: fdmprinter.def.json -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "No en la superficie exterior" - -#: fdmprinter.def.json -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "No en el forro" - -#: fdmprinter.def.json -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Sobre el relleno" - -#: fdmprinter.def.json -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Distancia de peinada máxima sin retracción" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Retracción antes de la pared exterior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Evitar partes impresas al desplazarse" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Evitar soportes al desplazarse" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Distancia para evitar al desplazarse" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "X de inicio de capa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Y de inicio de capa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Salto en Z en la retracción" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Salto en Z solo en las partes impresas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Altura del salto en Z" - -#: fdmprinter.def.json -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Diferencia de altura cuando se realiza un salto en Z." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Salto en Z tras cambio de extrusor" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cooling label" -msgid "Cooling" -msgstr "Refrigeración" - -#: fdmprinter.def.json -msgctxt "cooling description" -msgid "Cooling" -msgstr "Refrigeración" - -#: fdmprinter.def.json -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Activar refrigeración de impresión" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Velocidad del ventilador" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Velocidad normal del ventilador" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Velocidad máxima del ventilador" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Umbral de velocidad normal/máxima del ventilador" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Velocidad inicial del ventilador" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Velocidad normal del ventilador a altura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Velocidad normal del ventilador por capa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Tiempo mínimo de capa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Velocidad mínima" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Levantar el cabezal" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support label" -msgid "Support" -msgstr "Soporte" - -#: fdmprinter.def.json -msgctxt "support description" -msgid "Support" -msgstr "Soporte" - -#: fdmprinter.def.json -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Generar soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extrusor del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extrusor del relleno de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extrusor del soporte de la primera capa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extrusor de la interfaz de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extrusor del techo del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extrusor del suelo del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Estructura de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" - -#: fdmprinter.def.json -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Árbol" - -#: fdmprinter.def.json -msgctxt "support_tree_angle label" -msgid "Tree Support Branch Angle" -msgstr "Ángulo de las ramas del soporte en árbol" - -#: fdmprinter.def.json -msgctxt "support_tree_angle description" -msgid "The angle of the branches. 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 de las ramas. Utilice un ángulo inferior para que sean más verticales y estables. Utilice un ángulo superior para poder tener más alcance." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance label" -msgid "Tree Support Branch Distance" -msgstr "Distancia de las ramas del soporte en árbol" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance description" -msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -msgstr "Qué separación deben tener las ramas cuando tocan el modelo. Reducir esta distancia ocasionará que el soporte en árbol toque el modelo en más puntos, produciendo mejor cobertura pero dificultando la tarea de retirar el soporte." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter label" -msgid "Tree Support Branch Diameter" -msgstr "Diámetro de las ramas del soporte en árbol" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter_angle label" -msgid "Tree Support Branch Diameter Angle" -msgstr "Ángulo de diámetro de las ramas del soporte en árbol" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution label" -msgid "Tree Support Collision Resolution" -msgstr "Resolución de colisión del soporte en árbol" - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution description" -msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -msgstr "Resolución para computar colisiones para evitar golpear el modelo. Establecer un ajuste bajo producirá árboles más precisos que producen fallos con menor frecuencia, pero aumenta significativamente el tiempo de fragmentación." - -#: fdmprinter.def.json -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Colocación del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Tocando la placa de impresión" - -#: fdmprinter.def.json -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "En todos sitios" - -#: fdmprinter.def.json -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Ángulo de voladizo del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Patrón del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Líneas" - -#: fdmprinter.def.json -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Rejilla" - -#: fdmprinter.def.json -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Triángulos" - -#: fdmprinter.def.json -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" - -#: fdmprinter.def.json -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -#: fdmprinter.def.json -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Cruz" - -#: fdmprinter.def.json -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Giroide" - -#: fdmprinter.def.json -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Recuento de líneas de pared del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Conectar líneas del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Conectar zigzags del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Densidad del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Distancia de línea del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Distancia de línea del soporte de la capa inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Dirección de línea de relleno de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Habilitar borde de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Ancho del borde de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Recuento de líneas del borde de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Distancia en Z del soporte" - -#: fdmprinter.def.json -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. This value is rounded up to a multiple of the layer height." -msgstr "Distancia desde la parte superior/inferior de la estructura de soporte a la impresión. Este hueco ofrece holgura para retirar los soportes tras imprimir el modelo. Este valor se redondea hacia el múltiplo de la altura de la capa." - -#: fdmprinter.def.json -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Distancia superior del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Distancia inferior del soporte" - -#: fdmprinter.def.json -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Distancia desde la parte inferior del soporte a la impresión." - -#: fdmprinter.def.json -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Distancia X/Y del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Prioridad de las distancias del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y sobre Z" - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z sobre X/Y" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Distancia X/Y mínima del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Altura del escalón de la escalera del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Distancia de unión del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Expansión horizontal del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Grosor de la capa de relleno de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Escalones de relleno de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Altura necesaria de los escalones de relleno de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Área del soporte mínima" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Habilitar interfaz del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Habilitar techo del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Habilitar suelo del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Grosor de la interfaz del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Grosor del techo del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Grosor del suelo del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Resolución de la interfaz de soporte" - -#: fdmprinter.def.json -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 "A la hora de comprobar si existe un modelo por encima y por debajo del soporte, tome las medidas de la altura determinada. Reducir los valores hará que se segmente más despacio, mientras que valores más altos pueden provocar que el soporte normal se imprima en lugares en los que debería haber una interfaz de soporte." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "support_interface_density description" @@ -4158,898 +137,19 @@ msgid "Adjusts the density of the roofs and floors of the support structure. A h 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." #: fdmprinter.def.json -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Densidad del techo 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." #: fdmprinter.def.json -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 "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." #: fdmprinter.def.json -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Distancia de línea del techo del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Densidad del suelo del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Distancia de línea del suelo de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Patrón de la interfaz de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Líneas" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Rejilla" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Triángulos" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Patrón del techo del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Líneas" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Rejilla" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Triángulos" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Patrón del suelo del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Líneas" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Rejilla" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Triángulos" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -#: fdmprinter.def.json -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Área de la interfaz de soporte mínima" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Área de los techos del soporte mínima" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Área de los suelos del soporte mínima" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Expansión horizontal de la interfaz de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Expansión horizontal de los techos del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Expansión horizontal de los suelos de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Direcciones de línea de interfaz de soporte" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Direcciones de línea del techo de soporte" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Direcciones de línea del suelo de soporte" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Alteración de velocidad del ventilador" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Velocidad del ventilador para forro con soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Usar torres" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Diámetro de la torre" - -#: fdmprinter.def.json -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "Diámetro de una torre especial." - -#: fdmprinter.def.json -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Diámetro máximo soportado por la torre" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Ángulo del techo de la torre" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Malla de soporte desplegable" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "La escena tiene mallas de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adherencia de la placa de impresión" - -#: fdmprinter.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adherencia" - -#: fdmprinter.def.json -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Activar gotas de cebado" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posición de preparación del extrusor sobre el eje X" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posición de preparación del extrusor sobre el eje Y" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Tipo adherencia de la placa de impresión" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Falda" - -#: fdmprinter.def.json -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Borde" - -#: fdmprinter.def.json -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Balsa" - -#: fdmprinter.def.json -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Ninguno" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Extrusor de adherencia de la placa de impresión" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Extrusor de falda o borde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Extrusor base de la balsa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Extrusor medio de la balsa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Extrusor superior de la balsa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Recuento de líneas de falda" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Distancia de falda" - -#: fdmprinter.def.json -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 "" -"La distancia horizontal entre la falda y la primera capa de la impresión.\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." - -#: fdmprinter.def.json -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Longitud mínima de falda/borde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Ancho del borde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Recuento de líneas de borde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Distancia del borde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Sustituir soporte por borde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Borde solo en el exterior" - -#: fdmprinter.def.json -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 solo el borde en el exterior del modelo. Esto reduce el número de bordes que deberá retirar después sin que la adherencia a la plataforma se vea muy afectada." - -#: fdmprinter.def.json -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Margen adicional de la balsa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Suavizado de la balsa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Cámara de aire de la balsa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Superposición de las capas iniciales en Z" - -#: fdmprinter.def.json -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 "La superposición entre la primera y segunda capa del modelo para compensar la pérdida de material en el hueco de aire. Todas las capas por encima de la primera capa se desplazan hacia abajo por esta cantidad." - -#: fdmprinter.def.json -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Capas superiores de la balsa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Grosor de las capas superiores de la balsa" - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Grosor de capa de las capas superiores de la balsa." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Ancho de las líneas superiores de la balsa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Espaciado superior de la balsa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Capas medias de la balsa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Grosor intermedio de la balsa" - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Grosor de la capa intermedia de la balsa." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Ancho de la línea intermedia de la balsa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Espaciado intermedio de la balsa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Grosor de la base de la balsa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Ancho de la línea base de la balsa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Espacio de la línea base de la balsa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Velocidad de impresión de la balsa" - -#: fdmprinter.def.json -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "Velocidad a la que se imprime la balsa." - -#: fdmprinter.def.json -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Velocidad de impresión de la balsa superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Velocidad de impresión de la balsa intermedia" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Velocidad de impresión de la base de la balsa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Aceleración de impresión de la balsa" - -#: fdmprinter.def.json -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "Aceleración a la que se imprime la balsa." - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Aceleración de la impresión de la balsa superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Aceleración de la impresión de la balsa intermedia" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Aceleración de la impresión de la base de la balsa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Impulso de impresión de la balsa" - -#: fdmprinter.def.json -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "Impulso con el que se imprime la balsa." - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Impulso de impresión de balsa superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Impulso de impresión de balsa intermedia" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Impulso de impresión de base de la balsa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Velocidad del ventilador de la balsa" - -#: fdmprinter.def.json -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Velocidad del ventilador para la balsa." - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Velocidad del ventilador de balsa superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Velocidad del ventilador de balsa intermedia" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Velocidad del ventilador de la base de la balsa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Extrusión doble" - -#: fdmprinter.def.json -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Ajustes utilizados en la impresión con varios extrusores." - -#: fdmprinter.def.json -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Activar la torre auxiliar" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Tamaño de la torre auxiliar" - -#: fdmprinter.def.json -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "Anchura de la torre auxiliar." - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Volumen mínimo de la torre auxiliar" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Posición de la torre auxiliar sobre el eje X" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Posición de la torre auxiliar sobre el eje Y" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "prime_tower_wipe_enabled description" @@ -5057,244 +157,14 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "Tras imprimir la torre auxiliar con una tobera, limpie el material rezumado de la otra tobera de la torre auxiliar." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Borde de la torre auxiliar" +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." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Puede que las torres auxiliares necesiten la adherencia adicional que proporciona un borde, aunque no sea requisito del modelo. Actualmente, no se puede usar con el tipo de adherencia «balsa»." - -#: fdmprinter.def.json -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Activar placa de rezumado" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Ángulo de la placa de rezumado" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Distancia de la placa de rezumado" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Distancia de retracción del cambio de tobera" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Velocidad de retracción del cambio de tobera" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Velocidad de retracción del cambio de tobera" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Velocidad de cebado del cambio de tobera" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Volumen de cebado adicional tras cambio de tobera" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Correcciones de malla" - -#: fdmprinter.def.json -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Consiga las mallas más adecuadas para la impresión 3D." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Volúmenes de superposiciones de uniones" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Eliminar todos los agujeros" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Cosido amplio" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Mantener caras desconectadas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Superponer mallas combinadas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Eliminar el cruce de mallas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Alternar la retirada de las mallas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Eliminar primeras capas vacías" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Resolución máxima" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Resolución de desplazamiento máximo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Desviación máxima" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Desviación máxima del área de extrusión" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Modos especiales" - -#: fdmprinter.def.json -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Formas no tradicionales de imprimir sus modelos." - -#: fdmprinter.def.json -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Secuencia de impresión" - -#: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "print_sequence option all_at_once" @@ -5302,1273 +172,19 @@ msgid "All at Once" msgstr "Todos a la vez" #: fdmprinter.def.json -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "De uno en uno" +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)." #: fdmprinter.def.json -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Malla de relleno" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Alternar pared adicional" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Rango de procesamiento de la malla" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Cortar malla" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Molde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Ancho de molde mínimo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Altura del techo del molde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Ángulo del molde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Malla de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Malla antivoladizo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Modo de superficie" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Superficie" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Ambos" - -#: fdmprinter.def.json -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Espiralizar el contorno exterior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Contornos espiralizados suaves" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Extrusión relativa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "experimental label" -msgid "Experimental" -msgstr "Experimental" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Tolerancia de segmentación" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Media" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exclusiva" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusiva" - -#: fdmprinter.def.json -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Ancho de línea de la superficie superior del forro" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Patrón de la superficie superior del forro" - -#: fdmprinter.def.json -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "El patrón de las capas de nivel superior." - -#: fdmprinter.def.json -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Líneas" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -#: fdmprinter.def.json -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Orden monotónica de la superficie superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Direcciones de línea de la superficie superior del forro" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Optimización del desplazamiento del relleno" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature label" -msgid "Auto Temperature" -msgstr "Temperatura automática" - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature description" -msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -msgstr "Cambia automáticamente la temperatura para cada capa con la velocidad media de flujo de esa capa." - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Gráfico de flujo y temperatura" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Circunferencia mínima de polígono" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Descomponer el soporte en pedazos" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Tamaño de los pedazos de soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Recuento de líneas de pedazos del soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Habilitar parabrisas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Distancia X/Y del parabrisas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Limitación del parabrisas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Completo" - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Limitado" - -#: fdmprinter.def.json -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Altura del parabrisas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Convertir voladizo en imprimible" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Ángulo máximo del modelo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Área máxima del agujero en voladizo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Habilitar depósito por inercia" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Volumen de depósito por inercia" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Volumen mínimo antes del depósito por inercia" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Velocidad de depósito por inercia" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Tamaño de las bolsas 3D en cruces" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Imagen de densidad de relleno cruzada" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Imagen de densidad de relleno cruzada para soporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Activar soporte cónico" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Ángulo del soporte cónico" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Anchura mínima del soporte cónico" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Forro difuso" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Forro difuso exterior únicamente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Grosor del forro difuso" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Densidad del forro difuso" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Distancia de punto del forro difuso" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Factor de compensación del caudal" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wireframe_enabled label" -msgid "Wire Printing" -msgstr "Impresión de alambre" - -#: fdmprinter.def.json -msgctxt "wireframe_enabled description" -msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -msgstr "Imprime solo la superficie exterior con una estructura reticulada poco densa, imprimiendo 'en el aire'. Esto se realiza mediante la impresión horizontal de los contornos del modelo a intervalos Z dados que están conectados a través de líneas ascendentes y descendentes en diagonal." - -#: fdmprinter.def.json -msgctxt "wireframe_height label" -msgid "WP Connection Height" -msgstr "Altura de conexión en IA" - -#: fdmprinter.def.json -msgctxt "wireframe_height description" -msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -msgstr "Altura de las líneas ascendentes y descendentes en diagonal entre dos partes horizontales. Esto determina la densidad global de la estructura reticulada. Solo se aplica a la Impresión de Alambre." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset label" -msgid "WP Roof Inset Distance" -msgstr "Distancia a la inserción del techo en IA" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset description" -msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -msgstr "Distancia cubierta al hacer una conexión desde un contorno del techo hacia el interior. Solo se aplica a la impresión de alambre." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed label" -msgid "WP Speed" -msgstr "Velocidad de IA" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed description" -msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -msgstr "Velocidad a la que la tobera se desplaza durante la extrusión de material. Solo se aplica a la impresión de alambre." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom label" -msgid "WP Bottom Printing Speed" -msgstr "Velocidad de impresión de la parte inferior en IA" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom description" -msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -msgstr "Velocidad de impresión de la primera capa, que es la única capa que toca la plataforma de impresión. Solo se aplica a la impresión de alambre." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up label" -msgid "WP Upward Printing Speed" -msgstr "Velocidad de impresión ascendente en IA" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up description" -msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -msgstr "Velocidad de impresión de una línea ascendente 'en el aire'. Solo se aplica a la impresión de alambre." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down label" -msgid "WP Downward Printing Speed" -msgstr "Velocidad de impresión descendente en IA" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down description" -msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -msgstr "Velocidad de impresión de una línea descendente en diagonal 'en el aire'. Solo se aplica a la impresión de alambre." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat label" -msgid "WP Horizontal Printing Speed" -msgstr "Velocidad de impresión horizontal en IA" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat description" -msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -msgstr "Velocidad de impresión de los contornos horizontales del modelo. Solo se aplica a la impresión de alambre." - -#: fdmprinter.def.json -msgctxt "wireframe_flow label" -msgid "WP Flow" -msgstr "Flujo en IA" - -#: fdmprinter.def.json -msgctxt "wireframe_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -msgstr "Compensación de flujo: la cantidad de material extruido se multiplica por este valor. Solo se aplica a la impresión de alambre." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection label" -msgid "WP Connection Flow" -msgstr "Flujo de conexión en IA" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection description" -msgid "Flow compensation when going up or down. Only applies to Wire Printing." -msgstr "Compensación de flujo cuando se va hacia arriba o hacia abajo. Solo se aplica a la impresión de alambre." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat label" -msgid "WP Flat Flow" -msgstr "Flujo plano en IA" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat description" -msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -msgstr "Compensación de flujo al imprimir líneas planas. Solo se aplica a la impresión de alambre." - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay label" -msgid "WP Top Delay" -msgstr "Retardo superior en IA" - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay description" -msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -msgstr "Tiempo de retardo después de un movimiento ascendente, para que la línea ascendente pueda endurecerse. Solo se aplica a la impresión de alambre." - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay label" -msgid "WP Bottom Delay" -msgstr "Retardo inferior en IA" - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay description" -msgid "Delay time after a downward move. Only applies to Wire Printing." -msgstr "Tiempo de retardo después de un movimiento descendente. Solo se aplica a la impresión de alambre." - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay label" -msgid "WP Flat Delay" -msgstr "Retardo plano en IA" - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay description" -msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -msgstr "Tiempo de retardo entre dos segmentos horizontales. La introducción de este retardo puede causar una mejor adherencia a las capas anteriores en los puntos de conexión, mientras que los retardos demasiado prolongados causan combados. Solo se aplica a la impresión de alambre." - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed label" -msgid "WP Ease Upward" -msgstr "Facilidad de ascenso en IA" - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed description" -msgid "" -"Distance of an upward move which is extruded with half speed.\n" -"This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "" -"Distancia de un movimiento ascendente que se extrude a media velocidad.\n" -"Esto puede causar una mejor adherencia a las capas anteriores, aunque no calienta demasiado el material en esas capas. Solo se aplica a la impresión de alambre." - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump label" -msgid "WP Knot Size" -msgstr "Tamaño de nudo de IA" - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump description" -msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -msgstr "Crea un pequeño nudo en la parte superior de una línea ascendente, de modo que la siguiente capa horizontal tendrá mayor probabilidad de conectarse a la misma. Solo se aplica a la impresión de alambre." - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down label" -msgid "WP Fall Down" -msgstr "Caída en IA" - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down description" -msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "Distancia a la que cae el material después de una extrusión ascendente. Esta distancia se compensa. Solo se aplica a la impresión de alambre." - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along label" -msgid "WP Drag Along" -msgstr "Arrastre en IA" - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along description" -msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "Distancia a la que el material de una extrusión ascendente se arrastra junto con la extrusión descendente en diagonal. Esta distancia se compensa. Solo se aplica a la impresión de alambre." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy label" -msgid "WP Strategy" -msgstr "Estrategia en IA" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy description" -msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -msgstr "Estrategia para asegurarse de que dos capas consecutivas conecten en cada punto de conexión. La retracción permite que las líneas ascendentes se endurezcan en la posición correcta, pero pueden hacer que filamento se desmenuce. Se puede realizar un nudo al final de una línea ascendente para aumentar la posibilidad de conexión a la misma y dejar que la línea se enfríe; sin embargo, esto puede requerir velocidades de impresión lentas. Otra estrategia consiste en compensar el combado de la parte superior de una línea ascendente; sin embargo, las líneas no siempre caen como se espera." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option compensate" -msgid "Compensate" -msgstr "Compensar" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option knot" -msgid "Knot" -msgstr "Nudo" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option retract" -msgid "Retract" -msgstr "Retraer" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down label" -msgid "WP Straighten Downward Lines" -msgstr "Enderezar líneas descendentes en IA" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down description" -msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -msgstr "Porcentaje de una línea descendente en diagonal que está cubierta por un trozo de línea horizontal. Esto puede evitar el combado del punto de nivel superior de las líneas ascendentes. Solo se aplica a la impresión de alambre." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down label" -msgid "WP Roof Fall Down" -msgstr "Caída del techo en IA" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down description" -msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -msgstr "Distancia a la que las líneas horizontales del techo impresas 'en el aire' caen mientras se imprime. Esta distancia se compensa. Solo se aplica a la impresión de alambre." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along label" -msgid "WP Roof Drag Along" -msgstr "Arrastre del techo en IA" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along description" -msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -msgstr "La distancia del trozo final de una línea entrante que se arrastra al volver al contorno exterior del techo. Esta distancia se compensa. Solo se aplica a la impresión de alambre." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay label" -msgid "WP Roof Outer Delay" -msgstr "Retardo exterior del techo en IA" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay description" -msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -msgstr "El tiempo empleado en los perímetros exteriores del agujero que se convertirá en un techo. Cuanto mayor sea el tiempo, mejor será la conexión. Solo se aplica a la impresión de alambre." - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance label" -msgid "WP Nozzle Clearance" -msgstr "Holgura de la tobera en IA" - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance description" -msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -msgstr "Distancia entre la tobera y líneas descendentes en horizontal. Cuanto mayor sea la holgura, menos pronunciado será el ángulo de las líneas descendentes en diagonal, lo que a su vez se traduce en menos conexiones ascendentes con la siguiente capa. Solo se aplica a la impresión de alambre." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Utilizar capas de adaptación" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Variación máxima de las capas de adaptación" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Tamaño de la topografía de las capas de adaptación" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Ángulo de voladizo de pared" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Velocidad de voladizo de pared" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Habilitar ajustes del puente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Longitud mínima de la pared del puente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Umbral del soporte del forro del puente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Densidad máxima de relleno de puente escaso" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Depósito por inercia de la pared del puente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Velocidad de pared del puente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Flujo de pared del puente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Velocidad de forro del puente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Flujo de forro del puente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Densidad de forro del puente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Velocidad del ventilador del puente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Puente con varias capas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Velocidad del segundo forro del puente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Flujo del segundo forro del puente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Densidad del segundo forro del puente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Velocidad del ventilador del segundo forro del puente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Velocidad del tercer forro del puente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Flujo del tercer forro del puente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Densidad del tercer forro del puente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Velocidad del ventilador del tercer forro del puente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Limpiar tobera entre capas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Volumen de material entre limpiezas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Habilitación de retracción de limpieza" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Distancia de retracción de limpieza" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Cantidad de cebado adicional de retracción de limpieza" - -#: fdmprinter.def.json -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í." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Velocidad de retracción de limpieza" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Velocidad de retracción en retracción de limpieza" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Velocidad de cebado de retracción de limpieza" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Pausar limpieza" - -#: fdmprinter.def.json -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pausa después de no haber retracción." - -#: fdmprinter.def.json -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Limpiar salto en Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Limpiar altura del salto en Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Limpiar velocidad de salto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Limpiar posición X de cepillo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Recuento de repeticiones de limpieza" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Distancia de movimiento de limpieza" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Tamaño máximo de agujero pequeño" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Longitud máxima de pequeñas partes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Velocidad de pequeñas partes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Velocidad de la capa inicial de partes pequeñas" - -#: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "material_alternate_walls label" @@ -6581,34 +197,349 @@ msgid "Alternate wall directions every other layer and inset. Useful for materia 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." #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Quitar las esquinas internas de la balsa" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Aluminio" #: fdmprinter.def.json -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 "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "Escriba siempre la herramienta activa" #: fdmprinter.def.json -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Recuento de paredes base de balsa" +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." #: fdmprinter.def.json -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 "hole_xy_offset description" +msgid "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." +msgstr "Cantidad de desplazamiento aplicado a todos los orificios en cada capa. Los valores positivos aumentan el tamaño de los orificios y los valores negativos reducen el tamaño de los mismos." #: fdmprinter.def.json -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Ajustes de la línea de comandos" +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." #: fdmprinter.def.json -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 "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»." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Malla antivoladizo" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Velocidad de retracción antirrezumado" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Velocidad de retracción antirrezumado" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Evitar partes impresas al desplazarse" + +#: fdmprinter.def.json +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Evitar soportes al desplazarse" + +#: fdmprinter.def.json +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Posterior" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Posterior izquierda" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Posterior derecha" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Ambos" + +#: fdmprinter.def.json +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Capas inferiores" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Patrón inferior de la capa inicial" + +#: fdmprinter.def.json +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Distancia de expansión del forro inferior" + +#: fdmprinter.def.json +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Anchura de retirada del forro inferior" + +#: fdmprinter.def.json +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Grosor inferior" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Posición retraída de preparación de rotura" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Velocidad de retracción de preparación de rotura" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatura de preparación de rotura" + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Posición retraída de rotura" + +#: fdmprinter.def.json +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Velocidad de retracción de rotura" + +#: fdmprinter.def.json +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Temperatura de rotura" + +#: fdmprinter.def.json +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Descomponer el soporte en pedazos" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Velocidad del ventilador del puente" + +#: fdmprinter.def.json +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Puente con varias capas" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Densidad del segundo forro del puente" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Velocidad del ventilador del segundo forro del puente" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Flujo del segundo forro del puente" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Velocidad del segundo forro del puente" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Densidad de forro del puente" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Flujo de forro del puente" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Velocidad de forro del puente" + +#: fdmprinter.def.json +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Umbral del soporte del forro del puente" + +#: fdmprinter.def.json +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Densidad máxima de relleno de puente escaso" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Densidad del tercer forro del puente" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Velocidad del ventilador del tercer forro del puente" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Flujo del tercer forro del puente" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Velocidad del tercer forro del puente" + +#: fdmprinter.def.json +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Depósito por inercia de la pared del puente" + +#: fdmprinter.def.json +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Flujo de pared del puente" + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Velocidad de pared del puente" + +#: fdmprinter.def.json +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Borde" + +#: fdmprinter.def.json +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Distancia del borde" + +#: fdmprinter.def.json +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "Margen de distancia del borde interior" + +#: fdmprinter.def.json +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Recuento de líneas de borde" + +#: fdmprinter.def.json +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Borde solo en el exterior" + +#: fdmprinter.def.json +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Sustituir soporte por borde" + +#: fdmprinter.def.json +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Ancho del borde" + +#: fdmprinter.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adherencia de la placa de impresión" + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Extrusor de adherencia de la placa de impresión" + +#: fdmprinter.def.json +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Tipo adherencia de la placa de impresión" + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Material de placa de impresión" + +#: fdmprinter.def.json +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Forma de la placa de impresión" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Temperatura de la placa de impresión" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatura de volumen de impresión" #: fdmprinter.def.json msgctxt "center_object label" @@ -6616,1066 +547,6211 @@ msgid "Center Object" msgstr "Centrar objeto" #: fdmprinter.def.json -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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Velocidad de depósito por inercia" + +#: fdmprinter.def.json +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Volumen de depósito por inercia" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Modo Peinada" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Ajustes de la línea de comandos" + +#: fdmprinter.def.json +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" + +#: fdmprinter.def.json +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concéntrico" + +#: fdmprinter.def.json +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Ángulo del soporte cónico" + +#: fdmprinter.def.json +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Anchura mínima del soporte cónico" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Conectar líneas de relleno" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Conectar polígonos de relleno" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Conectar líneas del soporte" + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Conectar zigzags del soporte" + +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Conectar polígonos superiores/inferiores" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Velocidad de enfriamiento" + +#: fdmprinter.def.json +msgctxt "cooling description" +msgid "Cooling" +msgstr "Refrigeración" + +#: fdmprinter.def.json +msgctxt "cooling label" +msgid "Cooling" +msgstr "Refrigeración" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Cruz" + +#: fdmprinter.def.json +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Cruz" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Cruz 3D" + +#: fdmprinter.def.json +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Tamaño de las bolsas 3D en cruces" + +#: fdmprinter.def.json +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Imagen de densidad de relleno cruzada para soporte" + +#: fdmprinter.def.json +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Imagen de densidad de relleno cruzada" + +#: fdmprinter.def.json +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Material cristalino" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Cúbico" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Subdivisión cúbica" + +#: fdmprinter.def.json +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Perímetro de la subdivisión cúbica" + +#: fdmprinter.def.json +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Cortar malla" + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Aceleración predeterminada" + +#: fdmprinter.def.json +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Temperatura predeterminada de la placa de impresión" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Impulso de filamento predeterminado" + +#: fdmprinter.def.json +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Temperatura de impresión predeterminada" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Impulso X-Y predeterminado" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Impulso Z predeterminado" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Impulso predeterminado del motor del filamento." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 iluminación tiene que soportar algo por encima de ella. Medido en el ángulo dado el espesor de una capa." + +#: fdmprinter.def.json +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 iluminación tiene que soportar el modelo que está por encima. Medido en el ángulo dado el espesor." + +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diámetro" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Áreas no permitidas" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support." +msgstr "Distancia desde la parte inferior del soporte a la impresión." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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. This value is rounded up to a multiple of the layer height." +msgstr "Distancia desde la parte superior/inferior de la estructura de soporte a la impresión. Este hueco ofrece holgura para retirar los soportes tras imprimir el modelo. Este valor se redondea hacia el múltiplo de la altura de la capa." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Altura del parabrisas" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Limitación del parabrisas" + +#: fdmprinter.def.json +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Distancia X/Y del parabrisas" + +#: fdmprinter.def.json +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Malla de soporte desplegable" + +#: fdmprinter.def.json +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Extrusión doble" + +#: fdmprinter.def.json +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Elíptica" + +#: fdmprinter.def.json +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Activar control de aceleración" + +#: fdmprinter.def.json +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Habilitar ajustes del puente" + +#: fdmprinter.def.json +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Habilitar depósito por inercia" + +#: fdmprinter.def.json +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Activar soporte cónico" + +#: fdmprinter.def.json +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Habilitar parabrisas" + +#: fdmprinter.def.json +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Habilitar alisado" + +#: fdmprinter.def.json +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Activar control de impulso" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Habilitar control de temperatura de la tobera" + +#: fdmprinter.def.json +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Activar placa de rezumado" + +#: fdmprinter.def.json +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Activar gotas de cebado" + +#: fdmprinter.def.json +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Activar la torre auxiliar" + +#: fdmprinter.def.json +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Activar refrigeración de impresión" + +#: fdmprinter.def.json +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Habilitar la retracción" + +#: fdmprinter.def.json +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Habilitar borde de soporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Habilitar suelo del soporte" + +#: fdmprinter.def.json +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Habilitar interfaz del soporte" + +#: fdmprinter.def.json +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Habilitar techo del soporte" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Habilitar aceleración de desplazamiento" + +#: fdmprinter.def.json +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Activar impulso de desplazamiento" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "Finalizar GCode" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Longitud de purga del extremo del filamento" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Velocidad de purga del extremo del filamento" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "En todos sitios" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exclusiva" + +#: fdmprinter.def.json +msgctxt "experimental label" +msgid "Experimental" +msgstr "Experimental" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Mostrar costura" + +#: fdmprinter.def.json +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Cosido amplio" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Recuento de líneas de pared adicional" + +#: fdmprinter.def.json +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Recuento de paredes adicionales de forro" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posición de preparación del extrusor sobre el eje X" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posición de preparación del extrusor sobre el eje Y" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posición de preparación del extrusor sobre el eje Z" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Calentador compartido de extrusores" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Los extrusores comparten la tobera" + +#: fdmprinter.def.json +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Modificador de la velocidad de enfriamiento de la extrusión" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Velocidad del ventilador" + +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Alteración de velocidad del ventilador" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diámetro de la rueda del alimentador" + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Temperatura de impresión final" + +#: fdmprinter.def.json +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Retracción de firmware" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extrusor del soporte de la primera capa" + +#: fdmprinter.def.json +msgctxt "material_flow label" +msgid "Flow" +msgstr "Flujo" + +#: fdmprinter.def.json +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Proporción de ecualización de flujo" + +#: fdmprinter.def.json +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Factor de compensación del caudal" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Gráfico de flujo y temperatura" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Compensación de flujo en líneas de relleno." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Compensación de flujo en líneas de la torre auxiliar." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Compensación de flujo en líneas de estructura de soporte." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Compensación de flujo en las líneas superiores o inferiores." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Compensación de flujo en líneas de pared." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Longitud de purga de descarga" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Velocidad de purga de descarga" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Delantera" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Delantera izquierda" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Delantera derecha" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Completo" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Forro difuso" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Densidad del forro difuso" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Forro difuso exterior únicamente" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Distancia de punto del forro difuso" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Grosor del forro difuso" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Tipo de GCode" + +#: fdmprinter.def.json +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 -\n" +"." + +#: fdmprinter.def.json +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 - \n" +"." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Altura del puente" + +#: fdmprinter.def.json +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Generar estructura entrelazada" + +#: fdmprinter.def.json +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Generar soporte" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Vidrio" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Altura necesaria de los pasos de relleno" + +#: fdmprinter.def.json +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Pasos de relleno necesarios" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Altura necesaria de los escalones de relleno de soporte" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Escalones de relleno de soporte" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Rejilla" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Rejilla" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Rejilla" + +#: fdmprinter.def.json +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Rejilla" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Rejilla" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +#: fdmprinter.def.json +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Giroide" + +#: fdmprinter.def.json +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Giroide" + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Tiene estabilización de temperatura del volumen de impresión" + +#: fdmprinter.def.json +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Tiene una placa de impresión caliente" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Velocidad de calentamiento" + +#: fdmprinter.def.json +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Longitud de la zona térmica" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Ocultar costura" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Ocultar o mostrar costura" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Expansión horizontal de orificios" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Expansión horizontal" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance description" +msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." +msgstr "Qué separación deben tener las ramas cuando tocan el modelo. Reducir esta distancia ocasionará que el soporte en árbol toque el modelo en más puntos, produciendo mejor cobertura pero dificultando la tarea de retirar el soporte." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Incluir temperatura de la placa de impresión" + +#: fdmprinter.def.json +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Incluir temperaturas del material" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusiva" + +#: fdmprinter.def.json +msgctxt "infill description" +msgid "Infill" +msgstr "Relleno" + +#: fdmprinter.def.json +msgctxt "infill label" +msgid "Infill" +msgstr "Relleno" + +#: fdmprinter.def.json +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Aceleración del relleno" + +#: fdmprinter.def.json +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Relleno antes que las paredes" + +#: fdmprinter.def.json +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Densidad de relleno" + +#: fdmprinter.def.json +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Extrusor del relleno" + +#: fdmprinter.def.json +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Flujo de relleno" + +#: fdmprinter.def.json +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Impulso de relleno" + +#: fdmprinter.def.json +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Grosor de la capa de relleno" + +#: fdmprinter.def.json +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Direcciones de línea de relleno" + +#: fdmprinter.def.json +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Distancia de línea de relleno" + +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Multiplicador de línea de relleno" + +#: fdmprinter.def.json +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Ancho de línea de relleno" + +#: fdmprinter.def.json +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Malla de relleno" + +#: fdmprinter.def.json +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Ángulo de voladizo de relleno" + +#: fdmprinter.def.json +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Superposición del relleno" + +#: fdmprinter.def.json +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Porcentaje de superposición del relleno" + +#: fdmprinter.def.json +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Patrón de relleno" + +#: fdmprinter.def.json +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Velocidad de relleno" + +#: fdmprinter.def.json +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Soporte de relleno" + +#: fdmprinter.def.json +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Optimización del desplazamiento del relleno" + +#: fdmprinter.def.json +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Distancia de pasada de relleno" + +#: fdmprinter.def.json +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Desplazamiento del relleno sobre el eje X" + +#: fdmprinter.def.json +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Desplazamiento del relleno sobre el eje Y" + +#: fdmprinter.def.json +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Capas inferiores iniciales" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Velocidad inicial del ventilador" + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Aceleración de la capa inicial" + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Flujo inferior de la capa inicial" + +#: fdmprinter.def.json +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Flujo de capa inicial" + +#: fdmprinter.def.json +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Altura de capa inicial" + +#: fdmprinter.def.json +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Expansión horizontal de la capa inicial" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Flujo de pared interior de la capa inicial" + +#: fdmprinter.def.json +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Impulso de capa inicial" + +#: fdmprinter.def.json +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Ancho de línea de la capa inicial" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Flujo de pared exterior de la capa inicial" + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Aceleración de impresión de la capa inicial" + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Impulso de impresión de capa inicial" + +#: fdmprinter.def.json +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Velocidad de impresión de la capa inicial" + +#: fdmprinter.def.json +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Velocidad de capa inicial" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Distancia de línea del soporte de la capa inicial" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Aceleración de desplazamiento de la capa inicial" + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Impulso de desplazamiento de capa inicial" + +#: fdmprinter.def.json +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Velocidad de desplazamiento de la capa inicial" + +#: fdmprinter.def.json +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Superposición de las capas iniciales en Z" + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Temperatura de impresión inicial" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Aceleración de pared interior" + +#: fdmprinter.def.json +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extrusor de pared interior" + +#: fdmprinter.def.json +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Impulso de pared interior" + +#: fdmprinter.def.json +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Velocidad de pared interior" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Flujo de pared o paredes interiores" + +#: fdmprinter.def.json +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Ancho de línea de pared(es) interna(s)" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "Del interior al exterior" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Recuento de capas de haz entrelazado" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Ancho del haz entrelazado" + +#: fdmprinter.def.json +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Distancia a los límites de entrelazado" + +#: fdmprinter.def.json +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Profundidad del entrelazado" + +#: fdmprinter.def.json +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Orientación de estructura entrelazada" + +#: fdmprinter.def.json +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Planchar solo la capa superior" + +#: fdmprinter.def.json +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Aceleración del alisado" + +#: fdmprinter.def.json +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Flujo de alisado" + +#: fdmprinter.def.json +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Inserción de alisado" + +#: fdmprinter.def.json +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Impulso de alisado" + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Espaciado de líneas del alisado" + +#: fdmprinter.def.json +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Patrón de alisado" + +#: fdmprinter.def.json +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Velocidad de alisado" + +#: fdmprinter.def.json +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "El origen está centrado" + +#: fdmprinter.def.json +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)?" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Mantener caras desconectadas" + +#: fdmprinter.def.json +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Altura de capa" + +#: fdmprinter.def.json +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "X de inicio de capa" + +#: fdmprinter.def.json +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Y de inicio de capa" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Grosor de la capa intermedia de la balsa." + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Grosor de capa de las capas superiores de la balsa." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Izquierda" + +#: fdmprinter.def.json +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Levantar el cabezal" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Iluminación" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Ángulo del voladizo de relleno de iluminación" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Ángulo de recorte de relleno de iluminación" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Ángulo de enderezamiento de iluminación" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Ángulo de sujeción de relleno de iluminación" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Limitado" + +#: fdmprinter.def.json +msgctxt "line_width label" +msgid "Line Width" +msgstr "Ancho de línea" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Líneas" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Líneas" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Líneas" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Líneas" + +#: fdmprinter.def.json +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Líneas" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Líneas" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Líneas" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Líneas" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +#: fdmprinter.def.json +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" + +#: fdmprinter.def.json +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Profundidad de la máquina" + +#: fdmprinter.def.json +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Polígono del cabezal de la máquina y del ventilador" + +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Altura de la máquina" + +#: fdmprinter.def.json +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Tipo de máquina" + +#: fdmprinter.def.json +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Ancho de la máquina" + +#: fdmprinter.def.json +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Ajustes específicos de la máquina" + +#: fdmprinter.def.json +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Convertir voladizo en imprimible" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "La superposición entre la primera y segunda capa del modelo para compensar la pérdida de material en el hueco de aire. Todas las capas por encima de la primera capa se desplazan hacia abajo por esta cantidad." + +#: fdmprinter.def.json +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Consiga las mallas más adecuadas para la impresión 3D." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumetric)" + +#: fdmprinter.def.json +msgctxt "material description" +msgid "Material" +msgstr "Material" + +#: fdmprinter.def.json +msgctxt "material label" +msgid "Material" +msgstr "Material" + +#: fdmprinter.def.json +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID del material" + +#: fdmprinter.def.json +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Volumen de material entre limpiezas" + +#: fdmprinter.def.json +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Distancia de peinada máxima sin retracción" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Aceleración máxima sobre el eje X" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Aceleración máxima de Y" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Aceleración máxima de Z" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Desviación máxima" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Desviación máxima del área de extrusión" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Velocidad máxima del ventilador" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Aceleración máxima del filamento" + +#: fdmprinter.def.json +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Ángulo máximo del modelo" + +#: fdmprinter.def.json +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Área máxima del agujero en voladizo" + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Duración máxima de estacionamiento" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Resolución máxima" + +#: fdmprinter.def.json +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Recuento máximo de retracciones" + +#: fdmprinter.def.json +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Ángulo máximo de expansión del forro" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Velocidad máxima E" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Velocidad máxima sobre el eje X" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Velocidad máxima sobre el eje Y" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Velocidad máxima sobre el eje Z" + +#: fdmprinter.def.json +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Diámetro máximo soportado por la torre" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Resolución de desplazamiento máximo" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Aceleración máxima del motor del filamento." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Superponer mallas combinadas" + +#: fdmprinter.def.json +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Correcciones de malla" #: fdmprinter.def.json msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "Posición X en la malla" -#: fdmprinter.def.json -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." - #: fdmprinter.def.json msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "Posición Y en la malla" -#: fdmprinter.def.json -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." - #: fdmprinter.def.json msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "Posición Z en la malla" #: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "Matriz de rotación de la malla" +#: fdmprinter.def.json +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Media" + +#: fdmprinter.def.json +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Ancho de molde mínimo" + +#: fdmprinter.def.json +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Temperatura mínima en modo de espera" + +#: fdmprinter.def.json +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Longitud mínima de la pared del puente" + +#: fdmprinter.def.json +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Ancho mínimo de la línea perimetral uniforme" + +#: fdmprinter.def.json +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Ventana de distancia mínima de extrusión" + +#: fdmprinter.def.json +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Tamaño mínimo de la característica" + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Velocidad de alimentación mínima" + +#: fdmprinter.def.json +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Área de relleno mínima" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Tiempo mínimo de capa" + +#: fdmprinter.def.json +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Ancho mínimo de la línea perimetral impar" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Circunferencia mínima de polígono" + +#: fdmprinter.def.json +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Anchura de expansión mínima del forro" + +#: fdmprinter.def.json +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Velocidad mínima" + +#: fdmprinter.def.json +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Área del soporte mínima" + +#: fdmprinter.def.json +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Área de los suelos del soporte mínima" + +#: fdmprinter.def.json +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Área de la interfaz de soporte mínima" + +#: fdmprinter.def.json +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Área de los techos del soporte mínima" + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Distancia X/Y mínima del soporte" + +#: fdmprinter.def.json +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Ancho mínimo de la línea perimetral delgada" + +#: fdmprinter.def.json +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Volumen mínimo antes del depósito por inercia" + +#: fdmprinter.def.json +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Ancho mínimo de la línea perimetral" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Molde" + +#: fdmprinter.def.json +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Ángulo del molde" + +#: fdmprinter.def.json +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Altura del techo del molde" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Orden de planchado monotónico" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Orden monotónica de la superficie superior" + +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Orden monotónica superior e inferior" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Factor de desplazamiento sin carga" + +#: fdmprinter.def.json +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Sin forro en huecos en Z" + +#: fdmprinter.def.json +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Formas no tradicionales de imprimir sus modelos." + +#: fdmprinter.def.json +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Ninguno" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Ninguno" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normal" + +#: fdmprinter.def.json +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normal" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "No en el forro" + +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "No en la superficie exterior" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Ángulo de la tobera" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diámetro de la tobera" + +#: fdmprinter.def.json +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Áreas no permitidas para la tobera" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Id. de la tobera" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Longitud de la tobera" + +#: fdmprinter.def.json +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Volumen de cebado adicional tras cambio de tobera" + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Velocidad de cebado del cambio de tobera" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Velocidad de retracción del cambio de tobera" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Distancia de retracción del cambio de tobera" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Velocidad de retracción del cambio de tobera" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Número de extrusores" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Número de extrusores habilitados" + +#: fdmprinter.def.json +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Número de capas más lentas" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octeto" + +#: fdmprinter.def.json +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Apagado" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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»." + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Desplazamiento con extrusor" + +#: fdmprinter.def.json +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "De uno en uno" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 solo el borde en el exterior del modelo. Esto reduce el número de bordes que deberá retirar después sin que la adherencia a la plataforma se vea muy afectada." + +#: fdmprinter.def.json +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Ángulo de la placa de rezumado" + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Distancia de la placa de rezumado" + +#: fdmprinter.def.json +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Optimizar el orden de impresión de paredes" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Diámetro exterior de la tobera" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Aceleración de pared exterior" + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extrusor de pared exterior" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Flujo de pared exterior" + +#: fdmprinter.def.json +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Entrante en la pared exterior" + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Impulso de pared exterior" + +#: fdmprinter.def.json +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Ancho de línea de la pared exterior" + +#: fdmprinter.def.json +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Velocidad de pared exterior" + +#: fdmprinter.def.json +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Distancia de pasada de la pared exterior" + +#: fdmprinter.def.json +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "Del exterior al interior" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Ángulo de voladizo de pared" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Velocidad de voladizo de pared" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pausa después de no haber retracción." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Aceleración de la torre auxiliar" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Brim" +msgstr "Borde de la torre auxiliar" + +#: fdmprinter.def.json +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Flujo de la torre auxiliar" + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Impulso de la torre auxiliar" + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Ancho de línea de la torre auxiliar" + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Volumen mínimo de la torre auxiliar" + +#: fdmprinter.def.json +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Tamaño de la torre auxiliar" + +#: fdmprinter.def.json +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Velocidad de la torre auxiliar" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Posición de la torre auxiliar sobre el eje X" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Posición de la torre auxiliar sobre el eje Y" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +msgstr "Puede que las torres auxiliares necesiten la adherencia adicional que proporciona un borde, aunque no sea requisito del modelo. Actualmente, no se puede usar con el tipo de adherencia «balsa»." + +#: fdmprinter.def.json +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Aceleración de la impresión" + +#: fdmprinter.def.json +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Impulso de impresión" + +#: fdmprinter.def.json +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Secuencia de impresión" + +#: fdmprinter.def.json +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Velocidad de impresión" + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Imprimir paredes finas" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Temperatura de impresión" + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Temperatura de impresión de la capa inicial" + +#: fdmprinter.def.json +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "resolution label" +msgid "Quality" +msgstr "Calidad" + +#: fdmprinter.def.json +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Cúbico bitruncado" + +#: fdmprinter.def.json +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Balsa" + +#: fdmprinter.def.json +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Cámara de aire de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Extrusor base de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Velocidad del ventilador de la base de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Espacio de la línea base de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Ancho de la línea base de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Aceleración de la impresión de la base de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Impulso de impresión de base de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Velocidad de impresión de la base de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Grosor de la base de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Recuento de paredes base de balsa" + +#: fdmprinter.def.json +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Margen adicional de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Velocidad del ventilador de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Extrusor medio de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Velocidad del ventilador de balsa intermedia" + +#: fdmprinter.def.json +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Capas medias de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Ancho de la línea intermedia de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Aceleración de la impresión de la balsa intermedia" + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Impulso de impresión de balsa intermedia" + +#: fdmprinter.def.json +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Velocidad de impresión de la balsa intermedia" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Espaciado intermedio de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Grosor intermedio de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Aceleración de impresión de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Impulso de impresión de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Velocidad de impresión de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Suavizado de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Extrusor superior de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Velocidad del ventilador de balsa superior" + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Grosor de las capas superiores de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Capas superiores de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Ancho de las líneas superiores de la balsa" + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Aceleración de la impresión de la balsa superior" + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Impulso de impresión de balsa superior" + +#: fdmprinter.def.json +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Velocidad de impresión de la balsa superior" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Espaciado superior de la balsa" + +#: fdmprinter.def.json +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Aleatoria" + +#: fdmprinter.def.json +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Comienzo de relleno aleatorio" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Rectangular" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Velocidad normal del ventilador" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Velocidad normal del ventilador a altura" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Velocidad normal del ventilador por capa" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Umbral de velocidad normal/máxima del ventilador" + +#: fdmprinter.def.json +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Extrusión relativa" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Eliminar todos los agujeros" + +#: fdmprinter.def.json +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Eliminar primeras capas vacías" + +#: fdmprinter.def.json +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Eliminar el cruce de mallas" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Quitar las esquinas internas de la balsa" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution description" +msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." +msgstr "Resolución para computar colisiones para evitar golpear el modelo. Establecer un ajuste bajo producirá árboles más precisos que producen fallos con menor frecuencia, pero aumenta significativamente el tiempo de fragmentación." + +#: fdmprinter.def.json +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Retracción antes de la pared exterior" + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Retracción en el cambio de capa" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Distancia de retracción" + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Cantidad de cebado adicional de retracción" + +#: fdmprinter.def.json +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Desplazamiento mínimo de retracción" + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Velocidad de cebado de retracción" + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Velocidad de retracción" + +#: fdmprinter.def.json +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Velocidad de retracción" + +#: fdmprinter.def.json +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Derecha" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Factor de escala para la compensación de la contracción" + +#: fdmprinter.def.json +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "La escena tiene mallas de soporte" + +#: fdmprinter.def.json +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Preferencia de esquina de costura" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Ajustes utilizados en la impresión con varios extrusores." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Retracción inicial de tobera compartida" + +#: fdmprinter.def.json +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Esquina más pronunciada" + +#: fdmprinter.def.json +msgctxt "shell description" +msgid "Shell" +msgstr "Perímetro" + +#: fdmprinter.def.json +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Más corta" + +#: fdmprinter.def.json +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Mostrar versiones de la máquina" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Capas de soporte de los bordes del forro" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Espesor de soporte de los bordes del forro" + +#: fdmprinter.def.json +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Distancia de expansión del forro" + +#: fdmprinter.def.json +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Superposición del forro" + +#: fdmprinter.def.json +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Porcentaje de superposición del forro" + +#: fdmprinter.def.json +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Anchura de retirada del forro" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Falda" + +#: fdmprinter.def.json +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Distancia de falda" + +#: fdmprinter.def.json +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Recuento de líneas de falda" + +#: fdmprinter.def.json +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Aceleración de falda/borde" + +#: fdmprinter.def.json +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Extrusor de falda o borde" + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Flujo de falda/borde" + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Impulso de falda/borde" + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Ancho de línea de falda/borde" + +#: fdmprinter.def.json +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Longitud mínima de falda/borde" + +#: fdmprinter.def.json +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Velocidad de falda/borde" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Tolerancia de segmentación" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Velocidad de la capa inicial de partes pequeñas" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Longitud máxima de pequeñas partes" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Velocidad de pequeñas partes" + +#: fdmprinter.def.json +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Tamaño máximo de agujero pequeño" + +#: fdmprinter.def.json +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Temperatura de impresión de capas pequeñas" + +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Costura inteligente" + +#: fdmprinter.def.json +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Contornos espiralizados suaves" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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í." + +#: fdmprinter.def.json +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í." + +#: fdmprinter.def.json +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Modos especiales" + +#: fdmprinter.def.json +msgctxt "speed description" +msgid "Speed" +msgstr "Velocidad" + +#: fdmprinter.def.json +msgctxt "speed label" +msgid "Speed" +msgstr "Velocidad" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Espiralizar el contorno exterior" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Temperatura en modo de espera" + +#: fdmprinter.def.json +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "Iniciar GCode" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Pasos por milímetro (E)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Pasos por milímetro (X)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Pasos por milímetro (Y)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Pasos por milímetro (Z)" + +#: fdmprinter.def.json +msgctxt "support description" +msgid "Support" +msgstr "Soporte" + +#: fdmprinter.def.json +msgctxt "support label" +msgid "Support" +msgstr "Soporte" + +#: fdmprinter.def.json +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Aceleración de soporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Distancia inferior del soporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Recuento de líneas de pared de la base de soporte" + +#: fdmprinter.def.json +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Recuento de líneas del borde de soporte" + +#: fdmprinter.def.json +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Ancho del borde de soporte" + +#: fdmprinter.def.json +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Recuento de líneas de pedazos del soporte" + +#: fdmprinter.def.json +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Tamaño de los pedazos de soporte" + +#: fdmprinter.def.json +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Densidad del soporte" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Prioridad de las distancias del soporte" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extrusor del soporte" + +#: fdmprinter.def.json +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Aceleración del suelo del soporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Densidad del suelo del soporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extrusor del suelo del soporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Flujo de suelo de soporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Expansión horizontal de los suelos de soporte" + +#: fdmprinter.def.json +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Impulso del suelo del soporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Direcciones de línea del suelo de soporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Distancia de línea del suelo de soporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Ancho de línea del suelo de soporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Patrón del suelo del soporte" + +#: fdmprinter.def.json +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Velocidad del suelo del soporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Grosor del suelo del soporte" + +#: fdmprinter.def.json +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Flujo de soporte" + +#: fdmprinter.def.json +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Expansión horizontal del soporte" + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Aceleración de relleno de soporte" + +#: fdmprinter.def.json +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extrusor del relleno de soporte" + +#: fdmprinter.def.json +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Impulso de relleno de soporte" + +#: fdmprinter.def.json +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Grosor de la capa de relleno de soporte" + +#: fdmprinter.def.json +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Dirección de línea de relleno de soporte" + +#: fdmprinter.def.json +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Velocidad de relleno del soporte" + +#: fdmprinter.def.json +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Aceleración de interfaz de soporte" + +#: fdmprinter.def.json +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Densidad de la interfaz de soporte" + +#: fdmprinter.def.json +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extrusor de la interfaz de soporte" + +#: fdmprinter.def.json +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Flujo de interfaz de soporte" + +#: fdmprinter.def.json +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Expansión horizontal de la interfaz de soporte" + +#: fdmprinter.def.json +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Impulso de interfaz de soporte" + +#: fdmprinter.def.json +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Direcciones de línea de interfaz de soporte" + +#: fdmprinter.def.json +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Ancho de línea de interfaz de soporte" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Patrón de la interfaz de soporte" + +#: fdmprinter.def.json +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Resolución de la interfaz de soporte" + +#: fdmprinter.def.json +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Velocidad de interfaz del soporte" + +#: fdmprinter.def.json +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Grosor de la interfaz del soporte" + +#: fdmprinter.def.json +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Recuento de líneas de pared de la interfaz de soporte" + +#: fdmprinter.def.json +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Impulso de soporte" + +#: fdmprinter.def.json +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Distancia de unión del soporte" + +#: fdmprinter.def.json +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Distancia de línea del soporte" + +#: fdmprinter.def.json +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Ancho de línea de soporte" + +#: fdmprinter.def.json +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Malla de soporte" + +#: fdmprinter.def.json +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Ángulo de voladizo del soporte" + +#: fdmprinter.def.json +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Patrón del soporte" + +#: fdmprinter.def.json +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Colocación del soporte" + +#: fdmprinter.def.json +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Aceleración del techo del soporte" + +#: fdmprinter.def.json +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Densidad del techo del soporte" + +#: fdmprinter.def.json +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extrusor del techo del soporte" + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Flujo de techo de soporte" + +#: fdmprinter.def.json +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Expansión horizontal de los techos del soporte" + +#: fdmprinter.def.json +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Impulso del techo del soporte" + +#: fdmprinter.def.json +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Direcciones de línea del techo de soporte" + +#: fdmprinter.def.json +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Distancia de línea del techo del soporte" + +#: fdmprinter.def.json +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Ancho de línea del techo de soporte" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Patrón del techo del soporte" + +#: fdmprinter.def.json +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Velocidad del techo del soporte" + +#: fdmprinter.def.json +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Grosor del techo del soporte" + +#: fdmprinter.def.json +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Recuento de líneas de pared del techo de soporte" + +#: fdmprinter.def.json +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Velocidad de soporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Altura del escalón de la escalera del soporte" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Estructura de soporte" + +#: fdmprinter.def.json +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Distancia superior del soporte" + +#: fdmprinter.def.json +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Recuento de líneas de pared del soporte" + +#: fdmprinter.def.json +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Distancia X/Y del soporte" + +#: fdmprinter.def.json +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Distancia en Z del soporte" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Velocidad del ventilador para forro con soporte" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Superficie" + +#: fdmprinter.def.json +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Energía de la superficie" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Modo de superficie" + +#: fdmprinter.def.json +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Tendencia de adherencia de la superficie." + +#: fdmprinter.def.json +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Energía de la superficie." + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Aceleración de la capa inicial." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "Aceleración a la que se imprime el relleno." + +#: fdmprinter.def.json +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "La aceleración a la que se produce el alisado." + +#: fdmprinter.def.json +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Aceleración a la que se realiza la impresión." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "Aceleración a la que se imprime la balsa." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Aceleración a la que se imprimen las paredes." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_tree_angle description" +msgid "The angle of the branches. 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 de las ramas. Utilice un ángulo inferior para que sean más verticales y estables. Utilice un ángulo superior para poder tener más alcance." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "Aceleración predeterminada del movimiento del cabezal de impresión." + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "Diámetro de una torre especial." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "Distancia entre las líneas del alisado." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Velocidad del ventilador para la balsa." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Diferencia de altura cuando se realiza un salto en Z." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" +"La distancia horizontal entre la falda y la primera capa de la impresión.\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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "Impulso con el que se imprime la balsa." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "Velocidad máxima del filamento." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Nombre del modelo de la impresora 3D." + +#: fdmprinter.def.json +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\"." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 iluminación intenta minimizar el relleno apoyando solo la parte superior del objeto." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "El patrón de las capas de nivel superior." + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Patrón de las capas superiores/inferiores." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Velocidad a la que se imprime el relleno." + +#: fdmprinter.def.json +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Velocidad a la que se realiza la impresión." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "Velocidad a la que se imprime la balsa." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Velocidad a la que se imprimen las paredes." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Velocidad a la que tienen lugar los movimientos de desplazamiento." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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á." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +msgstr "Temperatura que se usa para imprimir la primera capa. Se ajusta a 0 para desactivar la manipulación especial de la capa inicial." + +#: fdmprinter.def.json +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Temperatura de la impresión." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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á." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Tipo de GCode que se va a generar." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "El ancho de los haces de la estructura entrelazada." + +#: fdmprinter.def.json +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "Anchura de la torre auxiliar." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Capas superiores" + +#: fdmprinter.def.json +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Distancia de expansión del forro superior" + +#: fdmprinter.def.json +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Anchura de retirada del forro superior" + +#: fdmprinter.def.json +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Aceleración de la superficie superior del forro" + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Extrusor de la superficie superior del forro" + +#: fdmprinter.def.json +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Flujo de forro de superficie superior" + +#: fdmprinter.def.json +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Impulso de la superficie superior del forro" + +#: fdmprinter.def.json +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Capas de la superficie superior del forro" + +#: fdmprinter.def.json +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Direcciones de línea de la superficie superior del forro" + +#: fdmprinter.def.json +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Ancho de línea de la superficie superior del forro" + +#: fdmprinter.def.json +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Patrón de la superficie superior del forro" + +#: fdmprinter.def.json +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Velocidad de la superficie superior del forro" + +#: fdmprinter.def.json +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Grosor superior" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Superior o inferior" + +#: fdmprinter.def.json +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Superior o inferior" + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Aceleración superior/inferior" + +#: fdmprinter.def.json +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extrusor superior/inferior" + +#: fdmprinter.def.json +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Flujo superior o inferior" + +#: fdmprinter.def.json +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Impulso superior/inferior" + +#: fdmprinter.def.json +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Direcciones de línea superior/inferior" + +#: fdmprinter.def.json +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Ancho de línea superior/inferior" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Patrón superior/inferior" + +#: fdmprinter.def.json +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Velocidad superior/inferior" + +#: fdmprinter.def.json +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Grosor superior/inferior" + +#: fdmprinter.def.json +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Tocando la placa de impresión" + +#: fdmprinter.def.json +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Diámetro de la torre" + +#: fdmprinter.def.json +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Ángulo del techo de la torre" + #: fdmprinter.def.json 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 "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "Silueta 2D del cabezal de impresión (incluidas las tapas del ventilador)." - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Paredes exteriores antes que interiores" - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Cuando está activado, imprime las paredes de fuera hacia dentro. Este ajuste puede mejorar la precisión dimensional en las direcciones X e Y si se utiliza un plástico de alta viscosidad como el ABS. Sin embargo, puede reducir la calidad de impresión de la superficie exterior, especialmente en voladizos." - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Compensar superposiciones de pared" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Compensa el flujo en partes de una pared que se están imprimiendo dónde ya hay una pared." - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Compensar superposiciones de pared exterior" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Compensa el flujo en partes de una pared exterior que se están imprimiendo donde ya hay una pared." - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Compensar superposiciones de pared interior" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Compensa el flujo en partes de una pared interior que se están imprimiendo donde ya hay una pared." - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Flujo de pared mínimo" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "Porcentaje mínimo de flujo permitido en una línea de pared. La compensación de superposición reduce el flujo de pared cuando se coloca cerca de otra pared. Las paredes con flujos inferiores a este valor se sustituirán con un movimiento de desplazamiento. Al utilizar este ajuste debe habilitar la compensación de superposición de pared e imprimir la pared exterior antes que las interiores." - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Preferencia de retracción" - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Si se habilita esta opción, se utilizará retracción en lugar de peinada para los movimientos de desplazamiento que sustituyen las paredes cuyo flujo está por debajo de los límites mínimos de flujo." - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Rellenar espacios entre paredes" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Rellena espacios entre paredes en los que no encaja ninguna pared." - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "En ningún sitio" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "En todas partes" - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "Filtrar pequeños huecos" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "Filtrar pequeños huecos para reducir las gotas en la parte externa del modelo." - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Igualar flujo de filamentos" - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Imprimir las líneas finas más rápido que las normales de modo que la cantidad de material rezumado por segundo no varíe. Puede ser necesario que las partes finas del modelo se impriman con un ancho de línea más pequeño que el definido en los ajustes. Este ajuste controla los cambios de velocidad de dichas líneas." - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Velocidad máxima de igualación de flujo" - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "Velocidad de impresión máxima cuando se ajusta la velocidad de impresión para igualar el flujo." - -#~ 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 - \\n." - -#~ 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 - \\n." - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Velocidad de alimentación máxima" - -#~ 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 (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ msgstr "Patrón del material de relleno de la impresión. El relleno de línea y zigzag cambia de dirección en capas alternas, con lo que se reduce el coste de material. Los patrones de rejilla, triángulo, trihexágono, cubo, octeto, cubo bitruncado, transversal y concéntrico se imprimen en todas las capas por completo. El relleno giroide, cúbico, cúbico bitruncado y de octeto cambian en cada capa para proporcionar una distribución de fuerza equitativa en cada dirección. El relleno de iluminación intenta minimizar el relleno, apoyando únicamente las cubiertas (internas) del objeto. Como tal, el porcentaje de relleno solo es \"válido\" una capa por debajo de lo que necesite para soportar el modelo." - -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "La diferencia que puede tener una capa de relleno de iluminación con la inmediatamente superior como cuando se podan las puntas de los árboles. Medido en el ángulo dado el espesor." - -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ msgstr "La diferencia que puede tener una capa de relleno de iluminación con la inmediatamente superior como el suavizado de los árboles. Medido en el ángulo dado el espesor." - -#~ 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." -#~ msgstr "Patrón del material de relleno de la impresión. El relleno de línea y zigzag cambia de dirección en capas alternas, con lo que se reduce el coste de material. Los patrones de rejilla, triángulo, trihexágono, cubo, octeto, cubo bitruncado, transversal y concéntrico se imprimen en todas las capas por completo. El relleno giroide, cúbico, cúbico bitruncado y de octeto cambian en cada capa para proporcionar una distribución de fuerza equitativa en cada dirección." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside 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_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección E." - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "Si no es cero, los movimientos de desplazamiento de peinada que sean superiores a esta distancia utilizarán retracción." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Aplicar el desplazamiento del extrusor al sistema de coordenadas." - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Perímetro" - -#~ 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, while an angle of 90° is vertical." -#~ msgstr "Las superficies superiores e inferiores de un objeto con un ángulo mayor que este no expanden los forros superior e inferior. 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. Un ángulo de 0º es horizontal, mientras que uno de 90º es vertical." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "Velocidad de la capa inicial. Se recomienda un valor más bajo para mejorar la adherencia a la placa de impresión." - -#~ 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 lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order 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 bajo. Una malla de relleno con un orden superior modificará el relleno de las mallas de relleno con un orden inferior y las mallas normales." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "La temperatura utilizada para la placa de impresión caliente. Si el valor es 0, la temperatura de la plataforma no se ajustará." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "Temperatura de la placa de impresión una vez caliente en la primera capa." - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Índice de compresión" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "Índice de compresión en porcentaje." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina la prioridad de esta malla al tener en cuenta los volúmenes superpuestos. Las áreas con varias mallas se verán afectadas por la malla de menor rango. Una malla de relleno con un orden superior modificará el relleno de las mallas de relleno con un orden inferior y las mallas normales." - -#~ 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 "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Orden de las mallas de relleno" - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina qué malla de relleno está dentro del relleno de otra malla de relleno. Una malla de relleno de orden superior modificará el relleno de las mallas de relleno con un orden inferior y mallas normales." - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Soporte en árbol" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Generar un soporte en forma de árbol con ramas que apoyan la impresión. Esto puede reducir el uso de material y el tiempo de impresión, pero aumenta considerablemente el tiempo de fragmentación." - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "Cómo segmentar capas con superficies diagonales. Las áreas de una capa se pueden crear según el punto en el que el centro de esta intersecta con la superficie (Media). Las capas también pueden tener áreas comprendidas en el volumen a lo largo de la altura de la capa (Exclusiva) o una capa puede tener áreas comprendidas en cualquier lugar de la capa (Inclusiva). Las capas exclusivas tienen un mayor nivel de detalle, mientras que las inclusivas son las que mejor se ajustan y las medias las que tardan menos en procesarse." - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Relleno spaghetti" - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Imprima el relleno cada cierto tiempo para que el filamento se enrosque caóticamente dentro del objeto. Esto reduce el tiempo de impresión, pero el comportamiento es más bien impredecible." - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Relleno spaghetti en escalones" - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Puede elegir si imprimir el relleno spaghetti en escalones o extruir todos los filamentos del relleno al final de la impresión." - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Ángulo máximo de relleno spaghetti" - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "Ángulo máximo con respecto al eje Z de dentro de la impresora para áreas que se deben rellenar con relleno spaghetti más tarde. Reducir este valor produce que las piezas con más ángulos del modelo se rellenen en cada capa." - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Altura máxima de relleno spaghetti" - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "Altura máxima del espacio interior se puede combinar y rellenar desde arriba." - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Entrante spaghetti" - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "Desplazamiento de las paredes desde las que se va a imprimir el relleno spaghetti." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Flujo spaghetti" - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Ajusta la densidad del relleno spaghetti. Tenga en cuenta que la densidad de relleno solo controla el espaciado entre líneas del patrón de relleno, no la cantidad de extrusión del relleno spaghetti." - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Volumen adicional de relleno spaghetti" - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Término de corrección para ajustar el volumen total que se extruye cada vez que se usa el relleno spaghetti." - -#~ 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 "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Distancia a la cual se estaciona el filamento" - -#~ msgctxt "machine_filament_park_distance description" -#~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used." -#~ msgstr "Distancia desde la punta de la tobera a la cual se estaciona el filamento cuando un extrusor ya no se utiliza." - -#~ msgctxt "material_flush_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno de Material Station" - -#~ msgctxt "material_flush_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno de Material Station" - -#~ 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 "Material Station internal value" -#~ msgstr "Valor interno de Material Station" - -#~ 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 "Material Station internal value" -#~ msgstr "Valor interno de Material Station" - -#~ msgctxt "material_maximum_park_duration description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno de Material Station" - -#~ msgctxt "material_no_load_move_factor description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno de Material Station" - -#~ 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 "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 "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "category_fixes" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "category_blackmagic" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "¡Experimental!" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "Polígono del cabezal de la máquina" - -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "Silueta 2D del cabezal de impresión (sin incluir las tapas del ventilador)." - -#~ 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 only possible if 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 de una capa a la vez o esperar a terminar un modelo antes de pasar al siguiente. El modo de uno en uno solo es posible si se separan todos los modelos de tal manera que el cabezal de impresión completo pueda moverse entre los modelos y todos los modelos son menores que la distancia entre la tobera y los ejes X/Y." - -#~ msgctxt "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "Grosor de las paredes del soporte en árbol" - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "El grosor de las paredes de las ramas del soporte en árbol. Imprimir paredes más gruesas llevará más tiempo pero no se caerán tan fácilmente." - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "Recuento de líneas de pared del soporte en árbol" - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "El número de las paredes de las ramas del soporte en árbol. Imprimir paredes más gruesas llevará más tiempo pero no se caerán tan fácilmente." - -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. 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. 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 description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "Material máximo que puede extruirse antes de que se inicie otra limpieza de tobera." - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "Velocidad de cebado de retracción" - -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "Limpiar salto en Z en la retracción" - -#~ msgctxt "wipe_hop_enable 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 "minimum_interface_area description" -#~ msgid "Minimum area size for support interface 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 de la interfaz de soporte. No se generarán polígonos que posean un área de menor tamaño que este valor." - -#~ 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 not be generated." -#~ msgstr "Tamaño del área mínima para los techos 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 not be generated." -#~ msgstr "Tamaño del área mínima para los suelos del soporte. No se generarán polígonos que posean un área de menor tamaño que este valor." - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "Alternar la rotación del forro" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "Alterna la dirección en la que se imprimen las capas superiores/inferiores. Normalmente, se imprimen únicamente en diagonal. Este ajuste añade las direcciones solo X y solo Y." - -#~ 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 compensate." -#~ msgstr "Distancia máxima en mm que se va a compensar." - -#~ 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 "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "La multiplicación factor por caudal da como resultado la conversión de distancia." - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "Umbral de las capas de adaptación" - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ msgstr "Umbral para usar o no una capa más pequeña. Este número se compara con el curtido de la pendiente más empinada de una capa." - -#~ 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." -#~ 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." - -#~ 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 adhestion 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 "First Layer Speed" -#~ msgstr "Velocidad de primera capa" - -#~ 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 adhestion 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 "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "Pasar por la superficie superior una vez más, pero sin extruir material, para derretir la parte externa del plástico y crear una superficie más lisa." - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "Comenzar capas con la misma parte" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "En cada capa, comenzar imprimiendo el objeto cerca del mismo punto, de forma que no se comienza una capa imprimiendo la pieza en la que finalizó la capa anterior. Esto permite mejorar los voladizos y las partes pequeñas, a costa de un mayor tiempo de impresión." - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ msgstr "Orientación del patrón de relleno para soportes. El patrón de relleno de soporte se gira en el plano horizontal." - -#~ 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." -#~ msgstr "La desviación máxima permitida al reducir la resolución en el ajuste de resolución máxima. Si se aumenta el valor, la impresión será menos precisa pero el GCode será más pequeño." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "Tipo de GCode" - -#~ 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." -#~ 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 sea en una esquina exterior. «Ocultar o mostrar costura» significa que es probable que la costura se realice en una esquina interior o exterior." - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "Ignorar los pequeños huecos en Z" - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "Cuando el modelo tiene pequeños huecos verticales, el tiempo de cálculo puede aumentar alrededor de un 5 % para generar el forro superior e inferior en estos espacios estrechos. En tal caso, desactive este ajuste." - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "La temperatura utilizada para el volumen de impresión. Si el valor es 0, la temperatura de volumen de impresión no se ajustará." - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." -#~ msgstr "Omitir la retracción al moverse de soporte a soporte en línea recta. Habilitar este ajuste ahorra tiempo de impresión pero puede ocasionar un encordado excesivo en la estructura de soporte." - -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "Velocidad máxima de Z" - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "Velocidad máxima a la que se mueve la placa de impresión. Definir este valor en 0 hace que la impresión utilice los valores predeterminados de la velocidad máxima de Z." - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate 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 estructuras separadas están más cerca entre sí que de este valor, las estructuras se combinan en una." - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "Diámetro mínimo" - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "Diámetro mínimo en las direcciones X/Y de una pequeña área que soportará una torre de soporte especializada." - -#~ msgctxt "prime_tower_circular label" -#~ msgid "Circular Prime Tower" -#~ msgstr "Torre auxiliar circular" - -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "Hacer que la torre auxiliar sea circular." - -#~ msgctxt "prime_tower_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 "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 "Suavice 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 "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "Función experimental: hace áreas de soporte más pequeñas en la parte inferior que en el voladizo." - -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "Número de extrusores habilitados" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "Diámetro exterior de la tobera" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "Longitud de la tobera" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "Ángulo de la tobera" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "Longitud de la zona térmica" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "Velocidad de calentamiento" - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "Velocidad de enfriamiento" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "Tipo de GCode" - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "Áreas no permitidas" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "Polígono del cabezal 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 "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "Altura del puente" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "Desplazamiento con extrusor" - -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "Utilizar capas de adaptación" - -#~ 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_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_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "Umbral de las capas de adaptación" - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "La cantidad de superposición entre el forro y las paredes son un porcentaje del ancho de la línea de forro. Una ligera superposición permite que las paredes estén firmemente unidas al forro. Este es el porcentaje de la media de los anchos de las líneas del forro y la pared más profunda." - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Cantidad de superposición entre el forro y las paredes. Una ligera superposición permite que las paredes conecten firmemente con el forro." - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 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: utilice el valor cero para que no haya retracción. Por norma general, este valor debe ser igual a la longitud de la zona de calentamiento." - -#~ 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 and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." -#~ 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 y además peinar solo en el relleno. La opción de «Sobre el relleno» actúa exactamente igual que la «No está en el forro» de las versiones de Cura anteriores." - -#~ 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 happend midway over infill this feature can reduce the top surface quality." -#~ msgstr "Conectar 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 la bajaría la calidad de la superficie superior." - -#~ 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. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Patrón del material de relleno de la impresión. El relleno de línea y zigzag cambia de dirección en capas alternas, con lo que se reduce el coste del material. Los patrones de rejilla, triángulo, trihexagonal, cúbico, de octeto, cúbico bitruncado y transversal y concéntrico se imprimen en todas las capas por completo. El relleno cúbico, cúbico bitruncado y de octeto cambian en cada capa para proporcionar una distribución de fuerza equitativa en cada dirección." - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concéntrico 3D" - -#~ 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 by combing within the infill only." -#~ 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 peinando solo dentro del relleno." - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concéntrico 3D" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concéntrico 3D" - -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concéntrico 3D" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concéntrico 3D" - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "Espaciado de líneas de la balsa" - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "Grosor de la torre auxiliar" - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "El grosor de la torre auxiliar hueca. Un grosor mayor de la mitad del volumen mínimo de la torre auxiliar dará lugar a una torre auxiliar densa." - -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "Limpiar tobera después de cambiar" - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "Tras cambiar de extrusor, limpie el material que rezuma de la tobera en el primer objeto que imprima. Esto lleva a cabo un movimiento de limpieza lento y suave en un lugar en el que el material que rezuma produzca el menor daño posible a la calidad superficial de la impresión." - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "Volumen de purga de la torre auxiliar" - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "Cantidad de filamentos que purgar al limpiar la torre auxiliar. La purga sirve para compensar la pérdida de filamentos que se produce durante el rezumado cuando la tobera está inactiva." - -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "Voladizo máximo de pared del puente" - -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ msgstr "Ancho máximo permitido de la cámara de aire por debajo de una línea de pared antes imprimir la pared utilizando los ajustes de puente. Se expresa como porcentaje del ancho de la línea de la pared. Si la cámara de aire es mayor, la línea de la pared de imprime utilizando los ajustes de puente. De lo contrario, se imprimirá utilizando los ajustes habituales. Cuando menor sea el valor, más probable es que las líneas de pared del voladizo se impriman utilizando ajustes de puente." - -#~ 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." -#~ 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." - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "Sin forro" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "Alternar bolsas 3D en cruz" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "Solo se aplica a mitad de los cruces en patrones de cruz 3D y alterna la ubicación de las bolsas entre las alturas a las que el patrón coincide consigo mismo." - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "Vaciar objetos" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "Eliminar totalmente el relleno y hacer que el interior del objeto reúna los requisitos para tener una estructura de soporte." - -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "La diferencia de altura máxima permitida en comparación con la altura de la capa base en mm." - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ msgstr "Centrar objeto" - -#~ msgctxt "mesh_position_x label" -#~ msgid "Mesh position x" -#~ msgstr "Posición X en la malla" - -#~ msgctxt "mesh_position_y label" -#~ msgid "Mesh position y" -#~ msgstr "Posición Y en la malla" - -#~ msgctxt "mesh_position_z label" -#~ msgid "Mesh position z" -#~ msgstr "Posición Z en la malla" - -#~ msgctxt "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "Gcode inicial" - -#~ msgctxt "machine_start_gcode description" +#: fdmprinter.def.json +msgctxt "travel label" +msgid "Travel" +msgstr "Desplazamiento" + +#: fdmprinter.def.json +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Aceleración de desplazamiento" + +#: fdmprinter.def.json +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Distancia para evitar al desplazarse" + +#: fdmprinter.def.json +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Impulso de desplazamiento" + +#: fdmprinter.def.json +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Velocidad de desplazamiento" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Árbol" + +#: fdmprinter.def.json +msgctxt "support_tree_angle label" +msgid "Tree Support Branch Angle" +msgstr "Ángulo de las ramas del soporte en árbol" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter label" +msgid "Tree Support Branch Diameter" +msgstr "Diámetro de las ramas del soporte en árbol" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter_angle label" +msgid "Tree Support Branch Diameter Angle" +msgstr "Ángulo de diámetro de las ramas del soporte en árbol" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance label" +msgid "Tree Support Branch Distance" +msgstr "Distancia de las ramas del soporte en árbol" + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution label" +msgid "Tree Support Collision Resolution" +msgstr "Resolución de colisión del soporte en árbol" + +#: fdmprinter.def.json +msgctxt "support_tree_max_diameter label" +msgid "Tree Support Trunk Diameter" +msgstr "Diámetro del tronco del soporte en árbol" + +#: fdmprinter.def.json +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Trihexagonal" + +#: fdmprinter.def.json +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Triángulos" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Triángulos" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Triángulos" + +#: fdmprinter.def.json +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Triángulos" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Triángulos" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Volúmenes de superposiciones de uniones" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Utilizar capas de adaptación" + +#: fdmprinter.def.json +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Usar torres" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Especificada por el usuario" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Esperar a que la placa de impresión se caliente" + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Esperar a la que la tobera se caliente" + +#: fdmprinter.def.json +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Aceleración de la pared" + +#: fdmprinter.def.json +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Recuento de distribución de pared" + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Extrusor de pared" + +#: fdmprinter.def.json +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Flujo de pared" + +#: fdmprinter.def.json +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Impulso de pared" + +#: fdmprinter.def.json +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Recuento de líneas de pared" + +#: fdmprinter.def.json +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Ancho de línea de pared" + +#: fdmprinter.def.json +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Orden de paredes" + +#: fdmprinter.def.json +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Velocidad de pared" + +#: fdmprinter.def.json +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Grosor de la pared" + +#: fdmprinter.def.json +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Longitud de transición de la pared" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Distancia del filtro de transición a la pared" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Margen del filtro de transición de pared" + +#: fdmprinter.def.json +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Ángulo de umbral de transición de pared" + +#: fdmprinter.def.json +msgctxt "shell label" +msgid "Walls" +msgstr "Paredes" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "A la hora de comprobar si existe un modelo por encima y por debajo del soporte, tome las medidas de la altura determinada. Reducir los valores hará que se segmente más despacio, mientras que valores más altos pueden provocar que el soporte normal se imprima en lugares en los que debería haber una interfaz de soporte." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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\"." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.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 "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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Ancho de una sola línea de relleno." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Ancho de una sola línea de estructura de soporte." + +#: fdmprinter.def.json +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Ancho de una sola línea superior/inferior." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Ancho de una sola línea de pared." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Limpiar posición X de cepillo" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Limpiar velocidad de salto" + +#: fdmprinter.def.json +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Limpiar tobera inactiva de la torre auxiliar" + +#: fdmprinter.def.json +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Distancia de movimiento de limpieza" + +#: fdmprinter.def.json +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Limpiar tobera entre capas" + +#: fdmprinter.def.json +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Pausar limpieza" + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Recuento de repeticiones de limpieza" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Distancia de retracción de limpieza" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Habilitación de retracción de limpieza" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Cantidad de cebado adicional de retracción de limpieza" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Velocidad de cebado de retracción de limpieza" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Velocidad de retracción en retracción de limpieza" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Velocidad de retracción de limpieza" + +#: fdmprinter.def.json +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Limpiar salto en Z" + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Limpiar altura del salto en Z" + +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Sobre el relleno" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Tope de X en dirección positiva" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y sobre Z" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Tope de Y en dirección positiva" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Tope de Z en dirección positiva" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Salto en Z tras cambio de extrusor" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Altura del salto en Z" + +#: fdmprinter.def.json +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Salto en Z solo en las partes impresas" + +#: fdmprinter.def.json +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Velocidad del salto en Z" + +#: fdmprinter.def.json +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Salto en Z en la retracción" + +#: fdmprinter.def.json +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Alineación de costuras en Z" + +#: fdmprinter.def.json +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Posición de costura en Z" + +#: fdmprinter.def.json +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Costuras relativas en Z" + +#: fdmprinter.def.json +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "X de la costura Z" + +#: fdmprinter.def.json +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Y de la costura Z" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z sobre X/Y" + +#: fdmprinter.def.json +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +#: fdmprinter.def.json +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +#: fdmprinter.def.json +msgctxt "travel description" +msgid "travel" +msgstr "desplazamiento" + +#~ msgctxt "wireframe_strategy option compensate" +#~ msgid "Compensate" +#~ msgstr "Compensar" + +#~ msgctxt "wireframe_top_jump description" +#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." +#~ msgstr "Crea un pequeño nudo en la parte superior de una línea ascendente, de modo que la siguiente capa horizontal tendrá mayor probabilidad de conectarse a la misma. Solo se aplica a la impresión de alambre." + +#~ msgctxt "wireframe_bottom_delay description" +#~ msgid "Delay time after a downward move. Only applies to Wire Printing." +#~ msgstr "Tiempo de retardo después de un movimiento descendente. Solo se aplica a la impresión de alambre." + +#~ msgctxt "wireframe_top_delay description" +#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." +#~ msgstr "Tiempo de retardo después de un movimiento ascendente, para que la línea ascendente pueda endurecerse. Solo se aplica a la impresión de alambre." + +#~ msgctxt "wireframe_flat_delay description" +#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." +#~ msgstr "Tiempo de retardo entre dos segmentos horizontales. La introducción de este retardo puede causar una mejor adherencia a las capas anteriores en los puntos de conexión, mientras que los retardos demasiado prolongados causan combados. Solo se aplica a la impresión de alambre." + +#~ msgctxt "wireframe_nozzle_clearance description" +#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." +#~ msgstr "Distancia entre la tobera y líneas descendentes en horizontal. Cuanto mayor sea la holgura, menos pronunciado será el ángulo de las líneas descendentes en diagonal, lo que a su vez se traduce en menos conexiones ascendentes con la siguiente capa. Solo se aplica a la impresión de alambre." + +#~ msgctxt "wireframe_up_half_speed description" #~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." +#~ "Distance of an upward move which is extruded with half speed.\n" +#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." #~ msgstr "" -#~ "Los comandos de Gcode que se ejecutarán justo al inicio - separados por \n" -#~ "." - -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "Gcode final" - -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode 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 \n" -#~ "." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "Tipo de Gcode" - -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "Tipo de Gcode que se va a generar." - -#~ 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 GCode." -#~ 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 "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. 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 Gcode 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 "infill_offset_x description" -#~ msgid "The infill pattern is offset this distance along the X axis." -#~ msgstr "El patrón de relleno se desplaza esta distancia a lo largo del eje X." - -#~ msgctxt "infill_offset_y description" -#~ msgid "The infill pattern is offset this distance along the Y axis." -#~ msgstr "El patrón de relleno se desplaza esta distancia a lo largo del eje Y." - -#~ msgctxt "infill_overlap 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 "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "Cantidad de superposición entre el forro y las paredes como porcentaje del ancho de línea. Una ligera superposición permite que las paredes conecten firmemente con el forro. Este es el porcentaje de la media de los anchos de las líneas del forro y la pared más profunda." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "Temperatura de la placa de impresión una vez caliente. Si el valor es 0, la plataforma no se calentará en esta impresión." - -#~ msgctxt "wall_x_extruder_nr label" -#~ msgid "Inner Walls Extruder" -#~ msgstr "Extrusor de paredes interiores" - -#~ 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, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Patrón del material de relleno de la impresión. El relleno de línea y zigzag cambia de dirección en capas alternas, con lo que se reduce el coste del material. Los patrones de rejilla, triángulo, cúbico, de octeto, cúbico bitruncado y concéntrico se imprimen en todas las capas por completo. El relleno cúbico, cúbico bitruncado y de octeto cambian en cada capa para proporcionar una distribución de fuerza equitativa en cada dirección." - -#~ msgctxt "zig_zaggify_infill description" -#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on 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 reduce el efecto del relleno sobre la calidad de las superficies verticales. Deshabilitar este ajuste reduce la cantidad de material utilizado." - -#~ 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 "" -#~ "La distancia horizontal entre la falda y la primera capa de la impresión.\n" -#~ "Esta es la distancia mínima; múltiples líneas de falda se extenderán hacia el exterior a partir de esta distancia." - -#~ msgctxt "z_offset_layer_0 label" -#~ msgid "Initial Layer Z Offset" -#~ msgstr "Desplazamiento Z de la capa inicial" - -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "El extrusor se desplaza de la altura normal de la primera capa con este valor, el cual puede ser positivo (elevado) o negativo (bajo). Algunas clases de filamentos se adhieren mejor a la placa de impresión si se levanta ligeramente el extrusor." - -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Desplazamiento Z de capas en disminución" - -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "Si no es cero, el desplazamiento Z se reduce a cero en las capas. Un valor de cero implica que el desplazamiento Z se mantiene constante en todas las capas de impresión." - -#~ msgctxt "raft_smoothing description" -#~ msgid "This setting control 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 "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, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Patrón del material de relleno de la impresión. El relleno de línea y zigzag cambian de dirección en capas alternas, reduciendo así el coste del material. Los patrones de rejilla, triángulo, cúbico, tetraédrico y concéntrico se imprimen en todas las capas por completo. El relleno cúbico y el tetraédrico cambian en cada capa para proporcionar una distribución de fuerza equitativa en cada dirección." - -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "Tetraédrico" - -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "Expandir forros en el relleno" - -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "Expanda las áreas de forro del forro superior e inferior en superficies planas. De forma predeterminada, los forros se detienen por debajo de las líneas de pared que rodean el relleno, pero pueden aparecer agujeros si su densidad es muy baja. Esta configuración expande los forros más allá de las líneas de pared de modo que el relleno de la siguiente capa recae en el forro." - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ msgstr "Expandir forros superiores en el relleno" - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "Expanda las áreas del forro superior (áreas con aire por encima) para que soporten el relleno que tiene arriba." +#~ "Distancia de un movimiento ascendente que se extrude a media velocidad.\n" +#~ "Esto puede causar una mejor adherencia a las capas anteriores, aunque no calienta demasiado el material en esas capas. Solo se aplica a la impresión de alambre." -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "Expandir forros inferiores en el relleno" +#~ msgctxt "wireframe_fall_down description" +#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Distancia a la que cae el material después de una extrusión ascendente. Esta distancia se compensa. Solo se aplica a la impresión de alambre." -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Expanda las áreas del forro inferior (áreas con aire por debajo) para que queden sujetas por las capas de relleno superiores e inferiores." +#~ msgctxt "wireframe_drag_along description" +#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Distancia a la que el material de una extrusión ascendente se arrastra junto con la extrusión descendente en diagonal. Esta distancia se compensa. Solo se aplica a la impresión de alambre." -#~ msgctxt "expand_skins_expand_distance description" -#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." -#~ msgstr "Distancia de expansión de los forros en el relleno. La distancia predeterminada es suficiente para cubrir el hueco que existe entre las líneas de relleno y evitará que aparezcan agujeros en el forro en aquellas áreas en las que la densidad del relleno es baja. A menudo una distancia más pequeña es suficiente." +#~ msgctxt "wireframe_flow_connection description" +#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." +#~ msgstr "Compensación de flujo cuando se va hacia arriba o hacia abajo. Solo se aplica a la impresión de alambre." -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "Omitir algunas conexiones en zigzag" +#~ msgctxt "wireframe_flow_flat description" +#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." +#~ msgstr "Compensación de flujo al imprimir líneas planas. Solo se aplica a la impresión de alambre." -#~ msgctxt "support_skip_some_zags description" -#~ msgid "Skip some ZigZags connections to make the support structure easier to break." -#~ msgstr "Omite algunas conexiones en zigzag para que la estructura de soporte se rompa fácilmente." +#~ msgctxt "wireframe_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." +#~ msgstr "Compensación de flujo: la cantidad de material extruido se multiplica por este valor. Solo se aplica a la impresión de alambre." -#~ msgctxt "support_zag_skip_count label" -#~ msgid "ZigZag Connection Skip Count" -#~ msgstr "Omitir recuento de conexión en zigzag" +#~ msgctxt "wireframe_strategy option knot" +#~ msgid "Knot" +#~ msgstr "Nudo" -#~ msgctxt "support_zag_skip_count description" -#~ msgid "Skip one in every N connection lines to make the support structure easier to break." -#~ msgstr "Omite una de cada N líneas de conexión para que la estructura de soporte se rompa fácilmente." +#~ msgctxt "wireframe_straight_before_down description" +#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." +#~ msgstr "Porcentaje de una línea descendente en diagonal que está cubierta por un trozo de línea horizontal. Esto puede evitar el combado del punto de nivel superior de las líneas ascendentes. Solo se aplica a la impresión de alambre." -#~ msgctxt "machine_show_variants label" -#~ msgid "Show machine variants" -#~ msgstr "Mostrar versiones de la máquina" +#~ msgctxt "wireframe_enabled description" +#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." +#~ msgstr "Imprime solo la superficie exterior con una estructura reticulada poco densa, imprimiendo 'en el aire'. Esto se realiza mediante la impresión horizontal de los contornos del modelo a intervalos Z dados que están conectados a través de líneas ascendentes y descendentes en diagonal." -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Wait for build plate heatup" -#~ msgstr "Esperar a que la placa de impresión se caliente" +#~ msgctxt "wireframe_strategy option retract" +#~ msgid "Retract" +#~ msgstr "Retraer" -#~ msgctxt "material_print_temp_wait label" -#~ msgid "Wait for nozzle heatup" -#~ msgstr "Esperar a la que la tobera se caliente" +#~ msgctxt "wireframe_printspeed description" +#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." +#~ msgstr "Velocidad a la que la tobera se desplaza durante la extrusión de material. Solo se aplica a la impresión de alambre." -#~ msgctxt "material_print_temp_prepend label" -#~ msgid "Include material temperatures" -#~ msgstr "Incluir temperaturas del material" +#~ msgctxt "wireframe_printspeed_down description" +#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." +#~ msgstr "Velocidad de impresión de una línea descendente en diagonal 'en el aire'. Solo se aplica a la impresión de alambre." -#~ msgctxt "material_bed_temp_prepend label" -#~ msgid "Include build plate temperature" -#~ msgstr "Incluir temperatura de placa de impresión" +#~ msgctxt "wireframe_printspeed_up description" +#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." +#~ msgstr "Velocidad de impresión de una línea ascendente 'en el aire'. Solo se aplica a la impresión de alambre." -#~ msgctxt "machine_width label" -#~ msgid "Machine width" -#~ msgstr "Ancho de la máquina" +#~ msgctxt "wireframe_printspeed_bottom description" +#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." +#~ msgstr "Velocidad de impresión de la primera capa, que es la única capa que toca la plataforma de impresión. Solo se aplica a la impresión de alambre." -#~ msgctxt "machine_depth label" -#~ msgid "Machine depth" -#~ msgstr "Profundidad de la máquina" +#~ msgctxt "wireframe_printspeed_flat description" +#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." +#~ msgstr "Velocidad de impresión de los contornos horizontales del modelo. Solo se aplica a la impresión de alambre." -#~ msgctxt "machine_shape label" -#~ msgid "Build plate shape" -#~ msgstr "Forma de la placa de impresión" +#~ msgctxt "wireframe_strategy description" +#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." +#~ msgstr "Estrategia para asegurarse de que dos capas consecutivas conecten en cada punto de conexión. La retracción permite que las líneas ascendentes se endurezcan en la posición correcta, pero pueden hacer que filamento se desmenuce. Se puede realizar un nudo al final de una línea ascendente para aumentar la posibilidad de conexión a la misma y dejar que la línea se enfríe; sin embargo, esto puede requerir velocidades de impresión lentas. Otra estrategia consiste en compensar el combado de la parte superior de una línea ascendente; sin embargo, las líneas no siempre caen como se espera." -#~ msgctxt "machine_height label" -#~ msgid "Machine height" -#~ msgstr "Altura de la máquina" +#~ msgctxt "wireframe_roof_inset description" +#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." +#~ msgstr "Distancia cubierta al hacer una conexión desde un contorno del techo hacia el interior. Solo se aplica a la impresión de alambre." -#~ msgctxt "machine_heated_bed label" -#~ msgid "Has heated build plate" -#~ msgstr "Tiene una placa de impresión caliente" +#~ msgctxt "wireframe_roof_drag_along description" +#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "La distancia del trozo final de una línea entrante que se arrastra al volver al contorno exterior del techo. Esta distancia se compensa. Solo se aplica a la impresión de alambre." -#~ msgctxt "machine_center_is_zero label" -#~ msgid "Is center origin" -#~ msgstr "El origen está centrado" +#~ msgctxt "wireframe_roof_fall_down description" +#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Distancia a la que las líneas horizontales del techo impresas 'en el aire' caen mientras se imprime. Esta distancia se compensa. Solo se aplica a la impresión de alambre." -#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -#~ msgid "RepRap (Marlin/Sprinter)" -#~ msgstr "RepRap (Marlin/Sprinter)" +#~ msgctxt "wireframe_height description" +#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." +#~ msgstr "Altura de las líneas ascendentes y descendentes en diagonal entre dos partes horizontales. Esto determina la densidad global de la estructura reticulada. Solo se aplica a la Impresión de Alambre." -#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" -#~ msgid "RepRap (Volumetric)" -#~ msgstr "RepRap (Volumetric)" +#~ msgctxt "wireframe_roof_outer_delay description" +#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." +#~ msgstr "El tiempo empleado en los perímetros exteriores del agujero que se convertirá en un techo. Cuanto mayor sea el tiempo, mejor será la conexión. Solo se aplica a la impresión de alambre." -#~ msgctxt "wall_thickness description" -#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -#~ msgstr "Grosor de las paredes exteriores en dirección horizontal. Este valor dividido por el ancho de la línea de pared define el número de paredes." +#~ msgctxt "wireframe_bottom_delay label" +#~ msgid "WP Bottom Delay" +#~ msgstr "Retardo inferior en IA" -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Cantidad de superposición entre el forro y las paredes. Una ligera superposición permite que las paredes conecten firmemente con el forro." +#~ msgctxt "wireframe_printspeed_bottom label" +#~ msgid "WP Bottom Printing Speed" +#~ msgstr "Velocidad de impresión de la parte inferior en IA" -#~ msgctxt "support_interface_line_width description" -#~ msgid "Width of a single support interface line." -#~ msgstr "Ancho de una sola línea de la interfaz de soporte." +#~ msgctxt "wireframe_flow_connection label" +#~ msgid "WP Connection Flow" +#~ msgstr "Flujo de conexión en IA" -#~ msgctxt "sub_div_rad_mult label" -#~ msgid "Cubic Subdivision Radius" -#~ msgstr "Radio de la subdivisión cúbica" +#~ msgctxt "wireframe_height label" +#~ msgid "WP Connection Height" +#~ msgstr "Altura de conexión en IA" -#~ msgctxt "sub_div_rad_mult description" -#~ msgid "A multiplier on 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 more subdivisions, i.e. more small cubes." -#~ msgstr "Un multiplicador del 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 subdivisiones habrá, es decir, mayor cantidad de cubos pequeños." +#~ msgctxt "wireframe_printspeed_down label" +#~ msgid "WP Downward Printing Speed" +#~ msgstr "Velocidad de impresión descendente en IA" -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Upper Skins" -#~ msgstr "Expandir los forros superiores" +#~ msgctxt "wireframe_drag_along label" +#~ msgid "WP Drag Along" +#~ msgstr "Arrastre en IA" -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." -#~ msgstr "Expanda las áreas del forro superior (áreas con aire por encima) para que soporte el relleno que tiene arriba." +#~ msgctxt "wireframe_up_half_speed label" +#~ msgid "WP Ease Upward" +#~ msgstr "Facilidad de ascenso en IA" -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Lower Skins" -#~ msgstr "Expandir los forros inferiores" +#~ msgctxt "wireframe_fall_down label" +#~ msgid "WP Fall Down" +#~ msgstr "Caída en IA" -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Expanda las áreas del forro inferior (áreas con aire por debajo) para que queden sujetas por las capas de relleno superiores e inferiores." +#~ msgctxt "wireframe_flat_delay label" +#~ msgid "WP Flat Delay" +#~ msgstr "Retardo plano en IA" -#~ msgctxt "speed_support_interface description" -#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality." -#~ msgstr "Velocidad a la que se imprimen los techos y las partes inferiores del soporte. Imprimirlos a una velocidad inferior puede mejorar la calidad del voladizo." +#~ msgctxt "wireframe_flow_flat label" +#~ msgid "WP Flat Flow" +#~ msgstr "Flujo plano en IA" -#~ msgctxt "acceleration_support_interface description" -#~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality." -#~ msgstr "Aceleración a la que se imprimen los techos y las partes inferiores del soporte. Imprimirlos a aceleraciones inferiores puede mejorar la calidad del voladizo." +#~ msgctxt "wireframe_flow label" +#~ msgid "WP Flow" +#~ msgstr "Flujo en IA" -#~ msgctxt "jerk_support_interface description" -#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." -#~ msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los techos y las partes inferiores del soporte." +#~ msgctxt "wireframe_printspeed_flat label" +#~ msgid "WP Horizontal Printing Speed" +#~ msgstr "Velocidad de impresión horizontal en IA" -#~ msgctxt "support_enable label" -#~ msgid "Enable Support" -#~ msgstr "Habilitar el soporte" +#~ msgctxt "wireframe_top_jump label" +#~ msgid "WP Knot Size" +#~ msgstr "Tamaño de nudo de IA" -#~ msgctxt "support_enable description" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Habilita las estructuras del soporte. Estas estructuras soportan partes del modelo con voladizos severos." +#~ msgctxt "wireframe_nozzle_clearance label" +#~ msgid "WP Nozzle Clearance" +#~ msgstr "Holgura de la tobera en IA" -#~ msgctxt "support_interface_extruder_nr description" -#~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion." -#~ msgstr "El tren extrusor que se utiliza para imprimir los techos y partes inferiores del soporte. Se emplea en la extrusión múltiple." +#~ msgctxt "wireframe_roof_drag_along label" +#~ msgid "WP Roof Drag Along" +#~ msgstr "Arrastre del techo en IA" -#~ 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." -#~ 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." +#~ msgctxt "wireframe_roof_fall_down label" +#~ msgid "WP Roof Fall Down" +#~ msgstr "Caída del techo en IA" -#~ msgctxt "support_bottom_height label" -#~ msgid "Support Bottom Thickness" -#~ msgstr "Grosor inferior del soporte" +#~ msgctxt "wireframe_roof_inset label" +#~ msgid "WP Roof Inset Distance" +#~ msgstr "Distancia a la inserción del techo en IA" -#~ msgctxt "support_bottom_height description" -#~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests." -#~ msgstr "Grosor de las partes inferiores 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 "wireframe_roof_outer_delay label" +#~ msgid "WP Roof Outer Delay" +#~ msgstr "Retardo exterior del techo en IA" -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above 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 "A la hora de comprobar si existe un modelo por encima del soporte, tome las medidas de la altura determinada. Reducir los valores hará que se segmente más despacio, mientras que valores más altos pueden provocar que el soporte normal se imprima en lugares en los que debería haber una interfaz de soporte." +#~ msgctxt "wireframe_printspeed label" +#~ msgid "WP Speed" +#~ msgstr "Velocidad de IA" -#~ msgctxt "support_interface_density description" -#~ msgid "Adjusts the density of the roofs and bottoms 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 partes inferiores de la estructura de soporte. Un valor superior da como resultado mejores voladizos pero los soportes son más difíciles de retirar." +#~ msgctxt "wireframe_straight_before_down label" +#~ msgid "WP Straighten Downward Lines" +#~ msgstr "Enderezar líneas descendentes en IA" -#~ msgctxt "support_interface_line_distance label" -#~ msgid "Support Interface Line Distance" -#~ msgstr "Distancia de línea de la interfaz de soporte" +#~ msgctxt "wireframe_strategy label" +#~ msgid "WP Strategy" +#~ msgstr "Estrategia en IA" -#~ msgctxt "support_interface_line_distance description" -#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." -#~ msgstr "Distancia entre las líneas de la interfaz de soporte impresas. Este ajuste se calcula según la Densidad de la interfaz de soporte, pero se puede ajustar de forma independiente." +#~ msgctxt "wireframe_top_delay label" +#~ msgid "WP Top Delay" +#~ msgstr "Retardo superior en IA" -#~ 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 used to be called Joris in older versions." -#~ 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 se denominaba Joris en versiones anteriores." +#~ msgctxt "wireframe_printspeed_up label" +#~ msgid "WP Upward Printing Speed" +#~ msgstr "Velocidad de impresión ascendente en IA" -#~ msgctxt "material_print_temperature description" -#~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." -#~ msgstr "Temperatura que se usa para la impresión. Se ajusta a 0 para precalentar la impresora de forma manual." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually." -#~ msgstr "Temperatura de la placa de impresión una vez caliente. Utilice el valor cero para precalentar la impresora de forma manual." - -#~ 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. This value is rounded down to a multiple of the layer height." -#~ msgstr "Distancia desde la parte superior/inferior de la estructura de soporte a la impresión. Este hueco ofrece holgura para retirar los soportes tras imprimir el modelo. Esta valor se redondea hacia al múltiplo de la altura de la capa inferior más cercano." - -#~ msgctxt "z_seam_type option back" -#~ msgid "Back" -#~ msgstr "Parte posterior" - -#~ msgctxt "multiple_mesh_overlap label" -#~ msgid "Dual Extrusion Overlap" -#~ msgstr "Superposición de extrusión doble" +#~ msgctxt "wireframe_enabled label" +#~ msgid "Wire Printing" +#~ msgstr "Impresión de alambre" diff --git a/resources/i18n/fdmextruder.def.json.pot b/resources/i18n/fdmextruder.def.json.pot index 785c690810..70a4c75c37 100644 --- a/resources/i18n/fdmextruder.def.json.pot +++ b/resources/i18n/fdmextruder.def.json.pot @@ -1,9 +1,9 @@ -#, fuzzy +# msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-08 09:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -11,6 +11,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" + + + + + #: fdmextruder.def.json msgctxt "machine_settings label" msgid "Machine" @@ -32,87 +37,23 @@ msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "" #: fdmextruder.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" msgstr "" #: fdmextruder.def.json -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." msgstr "" #: fdmextruder.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" msgstr "" #: fdmextruder.def.json -msgctxt "machine_nozzle_size description" -msgid "" -"The inner diameter of the nozzle. Change this setting when using a non-" -"standard nozzle size." -msgstr "" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x label" -msgid "Nozzle X Offset" -msgstr "" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code label" -msgid "Extruder Start G-Code" -msgstr "" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_abs label" -msgid "Extruder Start Position Absolute" -msgstr "" - -#: fdmextruder.def.json -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 "" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." +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 "" #: fdmextruder.def.json @@ -132,9 +73,7 @@ msgstr "" #: fdmextruder.def.json 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." +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." msgstr "" #: fdmextruder.def.json @@ -158,62 +97,83 @@ msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "" #: fdmextruder.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" +msgctxt "machine_extruder_start_code label" +msgid "Extruder Start G-Code" msgstr "" #: fdmextruder.def.json -msgctxt "extruder_prime_pos_z description" -msgid "" -"The Z coordinate of the position where the nozzle primes at the start of " -"printing." +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." msgstr "" #: fdmextruder.def.json -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" +msgctxt "machine_extruder_start_pos_abs label" +msgid "Extruder Start Position Absolute" msgstr "" #: fdmextruder.def.json -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." +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 "" #: fdmextruder.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" msgstr "" #: fdmextruder.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." msgstr "" #: fdmextruder.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" msgstr "" #: fdmextruder.def.json -msgctxt "extruder_prime_pos_x description" -msgid "" -"The X coordinate of the position where the nozzle primes at the start of " -"printing." +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "" #: fdmextruder.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" msgstr "" #: fdmextruder.def.json -msgctxt "extruder_prime_pos_y description" -msgid "" -"The Y coordinate of the position where the nozzle primes at the start of " -"printing." +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "" + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_x label" +msgid "Nozzle X Offset" +msgstr "" + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "" + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "" + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "" + +#: fdmextruder.def.json +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "" + +#: fdmextruder.def.json +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "" #: fdmextruder.def.json @@ -233,7 +193,36 @@ msgstr "" #: fdmextruder.def.json msgctxt "material_diameter description" -msgid "" -"Adjusts the diameter of the filament used. Match this value with the " -"diameter of the used filament." +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." msgstr "" + +#: fdmextruder.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "" + +#: fdmextruder.def.json +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "" + diff --git a/resources/i18n/fdmprinter.def.json.pot b/resources/i18n/fdmprinter.def.json.pot index a3c8c46750..21ef88416d 100644 --- a/resources/i18n/fdmprinter.def.json.pot +++ b/resources/i18n/fdmprinter.def.json.pot @@ -1,9 +1,9 @@ -#, fuzzy +# msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-28 11:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -11,6 +11,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" + + + + + #: fdmprinter.def.json msgctxt "machine_settings label" msgid "Machine" @@ -38,9 +43,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "machine_show_variants description" -msgid "" -"Whether to show the different variants of this machine, which are described " -"in separate json files." +msgid "Whether to show the different variants of this machine, which are described in separate json files." msgstr "" #: fdmprinter.def.json @@ -50,9 +53,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." +msgid "G-code commands to be executed at the very start - separated by \n." msgstr "" #: fdmprinter.def.json @@ -62,9 +63,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." +msgid "G-code commands to be executed at the very end - separated by \n." msgstr "" #: fdmprinter.def.json @@ -84,9 +83,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "material_diameter description" -msgid "" -"Adjusts the diameter of the filament used. Match this value with the " -"diameter of the used filament." +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." msgstr "" #: fdmprinter.def.json @@ -96,9 +93,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "material_bed_temp_wait description" -msgid "" -"Whether to insert a command to wait until the build plate temperature is " -"reached at the start." +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." msgstr "" #: fdmprinter.def.json @@ -118,10 +113,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -131,10 +123,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -174,8 +163,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "machine_shape description" -msgid "" -"The shape of the build plate without taking unprintable areas into account." +msgid "The shape of the build plate without taking unprintable areas into account." msgstr "" #: fdmprinter.def.json @@ -235,10 +223,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -248,9 +233,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." msgstr "" #: fdmprinter.def.json @@ -260,9 +243,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "machine_extruder_count description" -msgid "" -"Number of extruder trains. An extruder train is the combination of a feeder, " -"bowden tube, and nozzle." +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." msgstr "" #: fdmprinter.def.json @@ -272,8 +253,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "extruders_enabled_count description" -msgid "" -"Number of extruder trains that are enabled; automatically set in software" +msgid "Number of extruder trains that are enabled; automatically set in software" msgstr "" #: fdmprinter.def.json @@ -293,9 +273,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "machine_nozzle_head_distance description" -msgid "" -"The height difference between the tip of the nozzle and the lowest part of " -"the print head." +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." msgstr "" #: fdmprinter.def.json @@ -305,9 +283,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "machine_nozzle_expansion_angle description" -msgid "" -"The angle between the horizontal plane and the conical part right above the " -"tip of the nozzle." +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." msgstr "" #: fdmprinter.def.json @@ -317,9 +293,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." msgstr "" #: fdmprinter.def.json @@ -329,9 +303,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "machine_nozzle_temp_enabled description" -msgid "" -"Whether to control temperature from Cura. Turn this off to control nozzle " -"temperature from outside of Cura." +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." msgstr "" #: fdmprinter.def.json @@ -341,9 +313,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." msgstr "" #: fdmprinter.def.json @@ -353,9 +323,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." msgstr "" #: fdmprinter.def.json @@ -365,10 +333,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -433,9 +398,7 @@ msgstr "" #: fdmprinter.def.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." +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." msgstr "" #: fdmprinter.def.json @@ -445,9 +408,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "machine_extruders_share_heater description" -msgid "" -"Whether the extruders share a single heater rather than each extruder having " -"its own heater." +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." msgstr "" #: fdmprinter.def.json @@ -457,14 +418,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -474,11 +428,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -508,10 +458,7 @@ msgstr "" #: fdmprinter.def.json 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 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 "" #: fdmprinter.def.json @@ -521,9 +468,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "gantry_height description" -msgid "" -"The height difference between the tip of the nozzle and the gantry system (X " -"and Y axes)." +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." msgstr "" #: fdmprinter.def.json @@ -543,9 +488,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "machine_nozzle_size description" -msgid "" -"The inner diameter of the nozzle. Change this setting when using a non-" -"standard nozzle size." +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "" #: fdmprinter.def.json @@ -555,8 +498,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "" -"Apply the extruder offset to the coordinate system. Affects all extruders." +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." msgstr "" #: fdmprinter.def.json @@ -566,9 +508,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "extruder_prime_pos_z description" -msgid "" -"The Z coordinate of the position where the nozzle primes at the start of " -"printing." +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." msgstr "" #: fdmprinter.def.json @@ -578,9 +518,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "extruder_prime_pos_abs description" -msgid "" -"Make the extruder prime position absolute rather than relative to the last-" -"known location of the head." +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." msgstr "" #: fdmprinter.def.json @@ -710,9 +648,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." msgstr "" #: fdmprinter.def.json @@ -722,9 +658,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." msgstr "" #: fdmprinter.def.json @@ -734,9 +668,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." msgstr "" #: fdmprinter.def.json @@ -746,9 +678,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." msgstr "" #: fdmprinter.def.json @@ -758,9 +688,7 @@ msgstr "" #: fdmprinter.def.json 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)." +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." msgstr "" #: fdmprinter.def.json @@ -770,9 +698,7 @@ msgstr "" #: fdmprinter.def.json 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)." +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." msgstr "" #: fdmprinter.def.json @@ -782,9 +708,7 @@ msgstr "" #: fdmprinter.def.json 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)." +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." msgstr "" #: fdmprinter.def.json @@ -824,9 +748,7 @@ msgstr "" #: fdmprinter.def.json 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)" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "" #: fdmprinter.def.json @@ -836,9 +758,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -848,9 +768,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." msgstr "" #: fdmprinter.def.json @@ -860,10 +778,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -883,9 +798,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "wall_line_width_0 description" -msgid "" -"Width of the outermost wall line. By lowering this value, higher levels of " -"detail can be printed." +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." msgstr "" #: fdmprinter.def.json @@ -895,8 +808,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "wall_line_width_x description" -msgid "" -"Width of a single wall line for all wall lines except the outermost one." +msgid "Width of a single wall line for all wall lines except the outermost one." msgstr "" #: fdmprinter.def.json @@ -986,9 +898,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "initial_layer_line_width_factor description" -msgid "" -"Multiplier of the line width on the first layer. Increasing this could " -"improve bed adhesion." +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." msgstr "" #: fdmprinter.def.json @@ -1008,9 +918,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "wall_extruder_nr description" -msgid "" -"The extruder train used for printing the walls. This is used in multi-" -"extrusion." +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." msgstr "" #: fdmprinter.def.json @@ -1020,9 +928,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "wall_0_extruder_nr description" -msgid "" -"The extruder train used for printing the outer wall. This is used in multi-" -"extrusion." +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." msgstr "" #: fdmprinter.def.json @@ -1032,9 +938,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "wall_x_extruder_nr description" -msgid "" -"The extruder train used for printing the inner walls. This is used in multi-" -"extrusion." +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." msgstr "" #: fdmprinter.def.json @@ -1044,9 +948,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." msgstr "" #: fdmprinter.def.json @@ -1056,9 +958,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "wall_line_count description" -msgid "" -"The number of walls. When calculated by the wall thickness, this value is " -"rounded to a whole number." +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." msgstr "" #: fdmprinter.def.json @@ -1068,10 +968,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1081,9 +978,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1093,12 +988,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1108,10 +998,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1121,13 +1008,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1137,9 +1018,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "wall_0_wipe_dist description" -msgid "" -"Distance of a travel move inserted after the outer wall, to hide the Z seam " -"better." +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." msgstr "" #: fdmprinter.def.json @@ -1149,11 +1028,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1163,12 +1038,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1178,11 +1048,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1202,9 +1068,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." msgstr "" #: fdmprinter.def.json @@ -1214,14 +1078,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1231,29 +1088,7 @@ msgstr "" #: fdmprinter.def.json 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 "" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold label" -msgid "Split Middle Line Threshold" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold description" -msgid "" -"The smallest line width, as a factor of the normal line width, above which " -"the middle line (if there is one) will be split into two. Reduce this " -"setting to use more, thinner lines. Increase to use fewer, wider lines. Note " -"that this applies -as if- the entire shape should be filled with wall, so " -"the middle here refers to the middle of the object between two outer edges " -"of the shape, even if there actually is fill or (other) skin in the print " -"instead of wall." +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 "" #: fdmprinter.def.json @@ -1263,30 +1098,7 @@ msgstr "" #: fdmprinter.def.json 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 "" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold label" -msgid "Add Middle Line Threshold" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold description" -msgid "" -"The smallest line width, as a factor of the normal line width, above which a " -"middle line (if there wasn't one already) will be added. Reduce this setting " -"to use more, thinner lines. Increase to use fewer, wider lines. Note that " -"this applies -as if- the entire shape should be filled with wall, so the " -"middle here refers to the middle of the object between two outer edges of " -"the shape, even if there actually is fill or (other) skin in the print " -"instead of wall." +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 "" #: fdmprinter.def.json @@ -1296,9 +1108,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "fill_outline_gaps description" -msgid "" -"Print pieces of the model which are horizontally thinner than the nozzle " -"size." +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "" #: fdmprinter.def.json @@ -1308,10 +1118,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1321,11 +1128,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1335,10 +1138,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1348,10 +1148,7 @@ msgstr "" #: fdmprinter.def.json 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\"." +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 "" #: fdmprinter.def.json @@ -1361,9 +1158,17 @@ msgstr "" #: fdmprinter.def.json msgctxt "hole_xy_offset description" -msgid "" -"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." +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "" + +#: fdmprinter.def.json +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 "" #: fdmprinter.def.json @@ -1373,12 +1178,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1458,9 +1258,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "z_seam_x description" -msgid "" -"The X coordinate of the position near where to start printing each part in a " -"layer." +msgid "The X coordinate of the position near where to start printing each part in a layer." msgstr "" #: fdmprinter.def.json @@ -1470,9 +1268,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "z_seam_y description" -msgid "" -"The Y coordinate of the position near where to start printing each part in a " -"layer." +msgid "The Y coordinate of the position near where to start printing each part in a layer." msgstr "" #: fdmprinter.def.json @@ -1482,14 +1278,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1524,10 +1313,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1547,9 +1333,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "roofing_extruder_nr description" -msgid "" -"The extruder train used for printing the top most skin. This is used in " -"multi-extrusion." +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." msgstr "" #: fdmprinter.def.json @@ -1559,9 +1343,62 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "" + +#: fdmprinter.def.json +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "" + +#: fdmprinter.def.json +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "" + +#: fdmprinter.def.json +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "" + +#: fdmprinter.def.json +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "" + +#: fdmprinter.def.json +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 "" #: fdmprinter.def.json @@ -1571,9 +1408,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "top_bottom_extruder_nr description" -msgid "" -"The extruder train used for printing the top and bottom skin. This is used " -"in multi-extrusion." +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." msgstr "" #: fdmprinter.def.json @@ -1583,9 +1418,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1595,9 +1428,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." msgstr "" #: fdmprinter.def.json @@ -1607,9 +1438,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "top_layers description" -msgid "" -"The number of top layers. When calculated by the top thickness, this value " -"is rounded to a whole number." +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." msgstr "" #: fdmprinter.def.json @@ -1619,9 +1448,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." msgstr "" #: fdmprinter.def.json @@ -1631,9 +1458,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "bottom_layers description" -msgid "" -"The number of bottom layers. When calculated by the bottom thickness, this " -"value is rounded to a whole number." +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." msgstr "" #: fdmprinter.def.json @@ -1643,9 +1468,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1705,11 +1528,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1719,10 +1538,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1732,13 +1548,17 @@ msgstr "" #: fdmprinter.def.json 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)." +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 "" + +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + +#: fdmprinter.def.json +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." msgstr "" #: fdmprinter.def.json @@ -1748,12 +1568,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1763,10 +1578,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1776,11 +1588,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1790,9 +1598,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1822,10 +1628,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1845,11 +1648,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1859,9 +1658,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1901,14 +1698,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1918,13 +1708,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1934,11 +1718,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1948,11 +1728,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1962,11 +1738,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1976,10 +1748,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -1989,11 +1758,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2003,11 +1768,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2017,13 +1778,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2033,10 +1788,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2056,8 +1808,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "infill_extruder_nr description" -msgid "" -"The extruder train used for printing infill. This is used in multi-extrusion." +msgid "The extruder train used for printing infill. This is used in multi-extrusion." msgstr "" #: fdmprinter.def.json @@ -2077,9 +1828,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." msgstr "" #: fdmprinter.def.json @@ -2089,14 +1838,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2176,12 +1918,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2191,10 +1928,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2204,13 +1938,7 @@ msgstr "" #: fdmprinter.def.json 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)." +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 "" #: fdmprinter.def.json @@ -2240,10 +1968,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2253,10 +1978,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2266,13 +1988,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2282,11 +1998,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2296,10 +2008,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2309,9 +2018,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." msgstr "" #: fdmprinter.def.json @@ -2321,10 +2028,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2334,9 +2038,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." msgstr "" #: fdmprinter.def.json @@ -2346,10 +2048,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2359,8 +2058,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "gradual_infill_step_height description" -msgid "" -"The height of infill of a given density before switching to half the density." +msgid "The height of infill of a given density before switching to half the density." msgstr "" #: fdmprinter.def.json @@ -2370,11 +2068,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2394,10 +2088,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2407,10 +2098,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2440,9 +2128,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." msgstr "" #: fdmprinter.def.json @@ -2452,9 +2138,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." msgstr "" #: fdmprinter.def.json @@ -2464,9 +2148,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2476,9 +2158,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2498,10 +2178,7 @@ msgstr "" #: fdmprinter.def.json 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" +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 "" #: fdmprinter.def.json @@ -2511,9 +2188,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." msgstr "" #: fdmprinter.def.json @@ -2533,9 +2208,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "material_print_temperature_layer_0 description" -msgid "" -"The temperature used for printing the first layer. Set at 0 to disable " -"special handling of the initial layer." +msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." msgstr "" #: fdmprinter.def.json @@ -2545,9 +2218,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "material_initial_print_temperature description" -msgid "" -"The minimal temperature while heating up to the Printing Temperature at " -"which printing can already start." +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." msgstr "" #: fdmprinter.def.json @@ -2557,9 +2228,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "material_final_print_temperature description" -msgid "" -"The temperature to which to already start cooling down just before the end " -"of printing." +msgid "The temperature to which to already start cooling down just before the end of printing." msgstr "" #: fdmprinter.def.json @@ -2569,9 +2238,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2581,10 +2248,7 @@ msgstr "" #: fdmprinter.def.json 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" +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 "" #: fdmprinter.def.json @@ -2594,9 +2258,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "material_bed_temperature description" -msgid "" -"The temperature used for the heated build plate. If this is 0, the build " -"plate is left unheated." +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." msgstr "" #: fdmprinter.def.json @@ -2606,9 +2268,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2638,9 +2298,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." msgstr "" #: fdmprinter.def.json @@ -2650,9 +2308,7 @@ msgstr "" #: fdmprinter.def.json 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)." +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 "" #: fdmprinter.def.json @@ -2662,9 +2318,7 @@ msgstr "" #: fdmprinter.def.json 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)." +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 "" #: fdmprinter.def.json @@ -2674,10 +2328,7 @@ msgstr "" #: fdmprinter.def.json 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)?" +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 "" #: fdmprinter.def.json @@ -2697,9 +2348,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "material_anti_ooze_retraction_speed description" -msgid "" -"How fast the material needs to be retracted during a filament switch to " -"prevent oozing." +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." msgstr "" #: fdmprinter.def.json @@ -2719,9 +2368,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "material_break_preparation_speed description" -msgid "" -"How fast the filament needs to be retracted just before breaking it off in a " -"retraction." +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." msgstr "" #: fdmprinter.def.json @@ -2731,9 +2378,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "material_break_preparation_temperature description" -msgid "" -"The temperature used to purge material, should be roughly equal to the " -"highest possible printing temperature." +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." msgstr "" #: fdmprinter.def.json @@ -2753,8 +2398,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "material_break_speed description" -msgid "" -"The speed at which to retract the filament in order to break it cleanly." +msgid "The speed at which to retract the filament in order to break it cleanly." msgstr "" #: fdmprinter.def.json @@ -2784,9 +2428,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2796,9 +2438,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." msgstr "" #: fdmprinter.def.json @@ -2808,10 +2448,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2831,10 +2468,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -2844,9 +2478,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "material_flow description" -msgid "" -"Flow compensation: the amount of material extruded is multiplied by this " -"value." +msgid "Flow compensation: the amount of material extruded is multiplied by this value." msgstr "" #: fdmprinter.def.json @@ -2876,8 +2508,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "wall_x_material_flow description" -msgid "" -"Flow compensation on wall lines for all wall lines except the outermost one." +msgid "Flow compensation on wall lines for all wall lines except the outermost one." msgstr "" #: fdmprinter.def.json @@ -2977,9 +2608,37 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "" + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" msgstr "" #: fdmprinter.def.json @@ -2989,9 +2648,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "material_standby_temperature description" -msgid "" -"The temperature of the nozzle when another nozzle is currently used for " -"printing." +msgid "The temperature of the nozzle when another nozzle is currently used for printing." msgstr "" #: fdmprinter.def.json @@ -3041,11 +2698,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -3055,10 +2708,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -3088,10 +2738,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -3101,9 +2748,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "speed_support_infill description" -msgid "" -"The speed at which the infill of support is printed. Printing the infill at " -"lower speeds improves stability." +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." msgstr "" #: fdmprinter.def.json @@ -3113,9 +2758,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." msgstr "" #: fdmprinter.def.json @@ -3125,9 +2768,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." msgstr "" #: fdmprinter.def.json @@ -3137,9 +2778,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -3149,10 +2788,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -3172,10 +2808,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -3185,9 +2818,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." msgstr "" #: fdmprinter.def.json @@ -3197,11 +2828,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -3211,10 +2838,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -3224,10 +2848,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -3237,10 +2858,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -3250,13 +2868,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -3266,9 +2878,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "acceleration_enabled description" -msgid "" -"Enables adjusting the print head acceleration. Increasing the accelerations " -"can reduce printing time at the cost of print quality." +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." msgstr "" #: fdmprinter.def.json @@ -3278,9 +2888,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -3380,9 +2988,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." msgstr "" #: fdmprinter.def.json @@ -3392,9 +2998,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." msgstr "" #: fdmprinter.def.json @@ -3404,9 +3008,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -3466,10 +3068,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -3479,10 +3078,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -3492,9 +3088,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -3524,8 +3118,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "jerk_wall description" -msgid "" -"The maximum instantaneous velocity change with which the walls are printed." +msgid "The maximum instantaneous velocity change with which the walls are printed." msgstr "" #: fdmprinter.def.json @@ -3535,9 +3128,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "jerk_wall_0 description" -msgid "" -"The maximum instantaneous velocity change with which the outermost walls are " -"printed." +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." msgstr "" #: fdmprinter.def.json @@ -3547,9 +3138,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "jerk_wall_x description" -msgid "" -"The maximum instantaneous velocity change with which all inner walls are " -"printed." +msgid "The maximum instantaneous velocity change with which all inner walls are printed." msgstr "" #: fdmprinter.def.json @@ -3559,9 +3148,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "jerk_roofing description" -msgid "" -"The maximum instantaneous velocity change with which top surface skin layers " -"are printed." +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." msgstr "" #: fdmprinter.def.json @@ -3571,9 +3158,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "jerk_topbottom description" -msgid "" -"The maximum instantaneous velocity change with which top/bottom layers are " -"printed." +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." msgstr "" #: fdmprinter.def.json @@ -3583,9 +3168,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "jerk_support description" -msgid "" -"The maximum instantaneous velocity change with which the support structure " -"is printed." +msgid "The maximum instantaneous velocity change with which the support structure is printed." msgstr "" #: fdmprinter.def.json @@ -3595,9 +3178,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "jerk_support_infill description" -msgid "" -"The maximum instantaneous velocity change with which the infill of support " -"is printed." +msgid "The maximum instantaneous velocity change with which the infill of support is printed." msgstr "" #: fdmprinter.def.json @@ -3607,9 +3188,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "jerk_support_interface description" -msgid "" -"The maximum instantaneous velocity change with which the roofs and floors of " -"support are printed." +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." msgstr "" #: fdmprinter.def.json @@ -3619,9 +3198,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "jerk_support_roof description" -msgid "" -"The maximum instantaneous velocity change with which the roofs of support " -"are printed." +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." msgstr "" #: fdmprinter.def.json @@ -3631,9 +3208,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "jerk_support_bottom description" -msgid "" -"The maximum instantaneous velocity change with which the floors of support " -"are printed." +msgid "The maximum instantaneous velocity change with which the floors of support are printed." msgstr "" #: fdmprinter.def.json @@ -3643,9 +3218,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "jerk_prime_tower description" -msgid "" -"The maximum instantaneous velocity change with which the prime tower is " -"printed." +msgid "The maximum instantaneous velocity change with which the prime tower is printed." msgstr "" #: fdmprinter.def.json @@ -3655,8 +3228,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "jerk_travel description" -msgid "" -"The maximum instantaneous velocity change with which travel moves are made." +msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "" #: fdmprinter.def.json @@ -3676,9 +3248,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "jerk_print_layer_0 description" -msgid "" -"The maximum instantaneous velocity change during the printing of the initial " -"layer." +msgid "The maximum instantaneous velocity change during the printing of the initial layer." msgstr "" #: fdmprinter.def.json @@ -3698,9 +3268,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "jerk_skirt_brim description" -msgid "" -"The maximum instantaneous velocity change with which the skirt and brim are " -"printed." +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." msgstr "" #: fdmprinter.def.json @@ -3750,9 +3318,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "retraction_speed description" -msgid "" -"The speed at which the filament is retracted and primed during a retraction " -"move." +msgid "The speed at which the filament is retracted and primed during a retraction move." msgstr "" #: fdmprinter.def.json @@ -3782,9 +3348,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "retraction_extra_prime_amount description" -msgid "" -"Some material can ooze away during a travel move, which can be compensated " -"for here." +msgid "Some material can ooze away during a travel move, which can be compensated for here." msgstr "" #: fdmprinter.def.json @@ -3794,9 +3358,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -3806,11 +3368,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -3820,24 +3378,7 @@ msgstr "" #: fdmprinter.def.json 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 "" - -#: fdmprinter.def.json -msgctxt "limit_support_retractions label" -msgid "Limit Support Retractions" -msgstr "" - -#: fdmprinter.def.json -msgctxt "limit_support_retractions description" -msgid "" -"Omit retraction when moving from support to support in a straight line. " -"Enabling this setting saves print time, but can lead to excessive stringing " -"within the support structure." +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 "" #: fdmprinter.def.json @@ -3847,12 +3388,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -3887,10 +3423,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -3910,9 +3443,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "travel_avoid_other_parts description" -msgid "" -"The nozzle avoids already printed parts when traveling. This option is only " -"available when combing is enabled." +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." msgstr "" #: fdmprinter.def.json @@ -3922,9 +3453,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "travel_avoid_supports description" -msgid "" -"The nozzle avoids already printed supports when traveling. This option is " -"only available when combing is enabled." +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." msgstr "" #: fdmprinter.def.json @@ -3934,9 +3463,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "travel_avoid_distance description" -msgid "" -"The distance between the nozzle and already printed parts when avoiding " -"during travel moves." +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." msgstr "" #: fdmprinter.def.json @@ -3946,9 +3473,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "layer_start_x description" -msgid "" -"The X coordinate of the position near where to find the part to start " -"printing each layer." +msgid "The X coordinate of the position near where to find the part to start printing each layer." msgstr "" #: fdmprinter.def.json @@ -3958,9 +3483,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "layer_start_y description" -msgid "" -"The Y coordinate of the position near where to find the part to start " -"printing each layer." +msgid "The Y coordinate of the position near where to find the part to start printing each layer." msgstr "" #: fdmprinter.def.json @@ -3970,11 +3493,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -3984,9 +3503,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4006,10 +3523,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4039,9 +3553,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." msgstr "" #: fdmprinter.def.json @@ -4061,10 +3573,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4074,10 +3583,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4087,11 +3593,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4101,10 +3603,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4114,10 +3613,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4127,9 +3623,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4139,12 +3633,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4154,10 +3643,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4167,10 +3653,17 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" + +#: fdmprinter.def.json +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "" + +#: fdmprinter.def.json +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." msgstr "" #: fdmprinter.def.json @@ -4190,9 +3683,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." msgstr "" #: fdmprinter.def.json @@ -4202,9 +3693,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "support_extruder_nr description" -msgid "" -"The extruder train to use for printing the support. This is used in multi-" -"extrusion." +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "" #: fdmprinter.def.json @@ -4214,9 +3703,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." msgstr "" #: fdmprinter.def.json @@ -4226,9 +3713,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." msgstr "" #: fdmprinter.def.json @@ -4238,9 +3723,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." msgstr "" #: fdmprinter.def.json @@ -4250,9 +3733,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." msgstr "" #: fdmprinter.def.json @@ -4262,9 +3743,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." msgstr "" #: fdmprinter.def.json @@ -4274,13 +3753,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4300,9 +3773,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "support_tree_angle description" -msgid "" -"The angle of the branches. Use a lower angle to make them more vertical and " -"more stable. Use a higher angle to be able to have more reach." +msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." msgstr "" #: fdmprinter.def.json @@ -4312,10 +3783,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "support_tree_branch_distance description" -msgid "" -"How far apart the branches need to be when they touch the model. Making this " -"distance small will cause the tree support to touch the model at more " -"points, causing better overhang but making support harder to remove." +msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." msgstr "" #: fdmprinter.def.json @@ -4325,9 +3793,17 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" + +#: fdmprinter.def.json +msgctxt "support_tree_max_diameter label" +msgid "Tree Support Trunk Diameter" +msgstr "" + +#: fdmprinter.def.json +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 "" #: fdmprinter.def.json @@ -4337,11 +3813,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4351,10 +3823,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "support_tree_collision_resolution description" -msgid "" -"Resolution to compute collisions with to avoid hitting the model. Setting " -"this lower will produce more accurate trees that fail less often, but " -"increases slicing time dramatically." +msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." msgstr "" #: fdmprinter.def.json @@ -4364,10 +3833,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4387,9 +3853,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4399,9 +3863,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." msgstr "" #: fdmprinter.def.json @@ -4446,10 +3908,37 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" + +#: fdmprinter.def.json +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "" + +#: fdmprinter.def.json +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 "" #: fdmprinter.def.json @@ -4459,10 +3948,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4472,9 +3958,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "support_connect_zigzags description" -msgid "" -"Connect the ZigZags. This will increase the strength of the zig zag support " -"structure." +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." msgstr "" #: fdmprinter.def.json @@ -4484,9 +3968,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." msgstr "" #: fdmprinter.def.json @@ -4496,9 +3978,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "support_line_distance description" -msgid "" -"Distance between the printed support structure lines. This setting is " -"calculated by the support density." +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." msgstr "" #: fdmprinter.def.json @@ -4508,9 +3988,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." msgstr "" #: fdmprinter.def.json @@ -4520,12 +3998,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4535,10 +4008,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4548,9 +4018,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4560,9 +4028,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4572,10 +4038,7 @@ msgstr "" #: fdmprinter.def.json 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. This " -"value is rounded up to a multiple of the layer height." +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. This value is rounded up to a multiple of the layer height." msgstr "" #: fdmprinter.def.json @@ -4615,11 +4078,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4639,8 +4098,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "support_xy_distance_overhang description" -msgid "" -"Distance of the support structure from the overhang in the X/Y directions." +msgid "Distance of the support structure from the overhang in the X/Y directions." msgstr "" #: fdmprinter.def.json @@ -4650,11 +4108,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4664,10 +4118,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4677,11 +4128,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4691,10 +4138,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4704,9 +4148,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4716,9 +4158,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4728,10 +4168,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4741,9 +4178,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "gradual_support_infill_step_height description" -msgid "" -"The height of support infill of a given density before switching to half the " -"density." +msgid "The height of support infill of a given density before switching to half the density." msgstr "" #: fdmprinter.def.json @@ -4753,9 +4188,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." msgstr "" #: fdmprinter.def.json @@ -4765,10 +4198,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4778,9 +4208,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4790,9 +4218,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4802,9 +4228,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." msgstr "" #: fdmprinter.def.json @@ -4814,9 +4238,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4826,9 +4248,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4838,11 +4258,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4852,10 +4268,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4865,9 +4278,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4877,9 +4288,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." msgstr "" #: fdmprinter.def.json @@ -4889,9 +4298,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -4901,9 +4308,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." msgstr "" #: fdmprinter.def.json @@ -4913,9 +4318,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "support_interface_pattern description" -msgid "" -"The pattern with which the interface of the support with the model is " -"printed." +msgid "The pattern with which the interface of the support with the model is printed." msgstr "" #: fdmprinter.def.json @@ -5020,9 +4423,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." msgstr "" #: fdmprinter.def.json @@ -5032,9 +4433,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5044,9 +4443,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5086,13 +4483,7 @@ msgstr "" #: fdmprinter.def.json 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)." +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 "" #: fdmprinter.def.json @@ -5102,13 +4493,7 @@ msgstr "" #: fdmprinter.def.json 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)." +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 "" #: fdmprinter.def.json @@ -5118,13 +4503,7 @@ msgstr "" #: fdmprinter.def.json 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)." +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 "" #: fdmprinter.def.json @@ -5134,9 +4513,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "support_fan_enable description" -msgid "" -"When enabled, the print cooling fan speed is altered for the skin regions " -"immediately above the support." +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." msgstr "" #: fdmprinter.def.json @@ -5146,9 +4523,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5158,10 +4533,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5181,9 +4553,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." msgstr "" #: fdmprinter.def.json @@ -5193,9 +4563,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5205,9 +4573,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "support_mesh_drop_down description" -msgid "" -"Make support everywhere below the support mesh, so that there's no overhang " -"in the support mesh." +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." msgstr "" #: fdmprinter.def.json @@ -5217,9 +4583,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "support_meshes_present description" -msgid "" -"There are support meshes present in the scene. This setting is controlled by " -"Cura." +msgid "There are support meshes present in the scene. This setting is controlled by Cura." msgstr "" #: fdmprinter.def.json @@ -5239,11 +4603,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5253,9 +4613,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "extruder_prime_pos_x description" -msgid "" -"The X coordinate of the position where the nozzle primes at the start of " -"printing." +msgid "The X coordinate of the position where the nozzle primes at the start of printing." msgstr "" #: fdmprinter.def.json @@ -5265,9 +4623,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "extruder_prime_pos_y description" -msgid "" -"The Y coordinate of the position where the nozzle primes at the start of " -"printing." +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." msgstr "" #: fdmprinter.def.json @@ -5277,12 +4633,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5312,9 +4663,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "adhesion_extruder_nr description" -msgid "" -"The extruder train to use for printing the skirt/brim/raft. This is used in " -"multi-extrusion." +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." msgstr "" #: fdmprinter.def.json @@ -5324,9 +4673,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "skirt_brim_extruder_nr description" -msgid "" -"The extruder train to use for printing the skirt or brim. This is used in " -"multi-extrusion." +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." msgstr "" #: fdmprinter.def.json @@ -5336,9 +4683,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." msgstr "" #: fdmprinter.def.json @@ -5348,9 +4693,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." msgstr "" #: fdmprinter.def.json @@ -5360,9 +4703,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." msgstr "" #: fdmprinter.def.json @@ -5372,9 +4713,17 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." msgstr "" #: fdmprinter.def.json @@ -5384,10 +4733,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5397,11 +4743,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5411,10 +4753,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5424,9 +4763,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5436,10 +4773,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5449,10 +4783,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5462,10 +4793,27 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" + +#: fdmprinter.def.json +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." msgstr "" #: fdmprinter.def.json @@ -5475,10 +4823,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5488,11 +4833,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5502,10 +4843,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5515,10 +4853,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5528,10 +4863,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5551,9 +4883,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5563,9 +4893,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5575,10 +4903,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5598,9 +4923,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5610,10 +4933,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5623,9 +4943,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." msgstr "" #: fdmprinter.def.json @@ -5635,9 +4953,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." msgstr "" #: fdmprinter.def.json @@ -5647,9 +4963,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5669,10 +4983,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5682,10 +4993,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5695,10 +5003,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5838,9 +5143,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "prime_tower_enable description" -msgid "" -"Print a tower next to the print which serves to prime the material after " -"each nozzle switch." +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "" #: fdmprinter.def.json @@ -5860,9 +5163,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "prime_tower_min_volume description" -msgid "" -"The minimum volume for each layer of the prime tower in order to purge " -"enough material." +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "" #: fdmprinter.def.json @@ -5892,9 +5193,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "" #: fdmprinter.def.json @@ -5904,9 +5203,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "prime_tower_brim_enable description" -msgid "" -"Prime-towers might need the extra adhesion afforded by a brim even if the " -"model doesn't. Presently can't be used with the 'Raft' adhesion-type." +msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." msgstr "" #: fdmprinter.def.json @@ -5916,10 +5213,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5929,10 +5223,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5952,10 +5243,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5965,9 +5253,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -5977,8 +5263,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "switch_extruder_retraction_speed description" -msgid "" -"The speed at which the filament is retracted during a nozzle switch retract." +msgid "The speed at which the filament is retracted during a nozzle switch retract." msgstr "" #: fdmprinter.def.json @@ -5988,9 +5273,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "switch_extruder_prime_speed description" -msgid "" -"The speed at which the filament is pushed back after a nozzle switch " -"retraction." +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." msgstr "" #: fdmprinter.def.json @@ -6020,10 +5303,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6033,10 +5313,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6046,10 +5323,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6059,11 +5333,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6073,9 +5343,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "multiple_mesh_overlap description" -msgid "" -"Make meshes which are touching each other overlap a bit. This makes them " -"bond together better." +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." msgstr "" #: fdmprinter.def.json @@ -6085,9 +5353,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6097,11 +5363,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6111,10 +5373,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6124,11 +5383,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6138,11 +5393,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6152,12 +5403,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6167,15 +5413,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6195,12 +5433,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6220,10 +5453,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6233,12 +5463,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6248,10 +5473,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6261,9 +5483,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6273,9 +5493,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "mold_width description" -msgid "" -"The minimal distance between the outside of the mold and the outside of the " -"model." +msgid "The minimal distance between the outside of the mold and the outside of the model." msgstr "" #: fdmprinter.def.json @@ -6295,10 +5513,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6308,9 +5523,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "support_mesh description" -msgid "" -"Use this mesh to specify support areas. This can be used to generate support " -"structure." +msgid "Use this mesh to specify support areas. This can be used to generate support structure." msgstr "" #: fdmprinter.def.json @@ -6320,9 +5533,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6332,12 +5543,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6362,11 +5568,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6376,10 +5578,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6389,13 +5588,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6415,14 +5608,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6440,70 +5626,6 @@ msgctxt "slicing_tolerance option inclusive" msgid "Inclusive" msgstr "" -#: fdmprinter.def.json -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "" - -#: fdmprinter.def.json -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "" - -#: fdmprinter.def.json -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "" - -#: fdmprinter.def.json -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "" - -#: fdmprinter.def.json -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "" - -#: fdmprinter.def.json -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 "" - #: fdmprinter.def.json msgctxt "infill_enable_travel_optimization label" msgid "Infill Travel Optimization" @@ -6511,24 +5633,7 @@ msgstr "" #: fdmprinter.def.json 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 "" - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature label" -msgid "Auto Temperature" -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature description" -msgid "" -"Change the temperature for each layer automatically with the average flow " -"speed of that layer." +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 "" #: fdmprinter.def.json @@ -6538,9 +5643,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "material_flow_temp_graph description" -msgid "" -"Data linking material flow (in mm3 per second) to temperature (degrees " -"Celsius)." +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." msgstr "" #: fdmprinter.def.json @@ -6550,11 +5653,67 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" + +#: fdmprinter.def.json +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "" + +#: fdmprinter.def.json +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "" + +#: fdmprinter.def.json +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 "" #: fdmprinter.def.json @@ -6564,9 +5723,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6576,9 +5733,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." msgstr "" #: fdmprinter.def.json @@ -6588,9 +5743,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "support_zag_skip_count description" -msgid "" -"Skip one in every N connection lines to make the support structure easier to " -"break away." +msgid "Skip one in every N connection lines to make the support structure easier to break away." msgstr "" #: fdmprinter.def.json @@ -6600,9 +5753,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6622,9 +5773,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6644,9 +5793,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "draft_shield_height description" -msgid "" -"Height limitation of the draft shield. Above this height no draft shield " -"will be printed." +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." msgstr "" #: fdmprinter.def.json @@ -6656,10 +5803,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6669,10 +5813,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6682,10 +5823,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6695,10 +5833,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6708,9 +5843,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "coasting_volume description" -msgid "" -"The volume otherwise oozed. This value should generally be close to the " -"nozzle diameter cubed." +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "" #: fdmprinter.def.json @@ -6720,11 +5853,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6734,10 +5863,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6747,9 +5873,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." msgstr "" #: fdmprinter.def.json @@ -6759,9 +5883,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6771,9 +5893,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." msgstr "" #: fdmprinter.def.json @@ -6793,11 +5913,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6807,9 +5923,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." msgstr "" #: fdmprinter.def.json @@ -6819,9 +5933,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_enabled description" -msgid "" -"Randomly jitter while printing the outer wall, so that the surface has a " -"rough and fuzzy look." +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." msgstr "" #: fdmprinter.def.json @@ -6841,9 +5953,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6853,10 +5963,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6866,11 +5973,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -6880,9 +5983,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "flow_rate_max_extrusion_offset description" -msgid "" -"The maximum distance in mm to move the filament to compensate for changes in " -"flow rate." +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." msgstr "" #: fdmprinter.def.json @@ -6892,323 +5993,7 @@ msgstr "" #: fdmprinter.def.json 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 "" - -#: fdmprinter.def.json -msgctxt "wireframe_enabled label" -msgid "Wire Printing" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_enabled description" -msgid "" -"Print only the outside surface with a sparse webbed structure, printing 'in " -"thin air'. This is realized by horizontally printing the contours of the " -"model at given Z intervals which are connected via upward and diagonally " -"downward lines." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_height label" -msgid "WP Connection Height" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_height description" -msgid "" -"The height of the upward and diagonally downward lines between two " -"horizontal parts. This determines the overall density of the net structure. " -"Only applies to Wire Printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset label" -msgid "WP Roof Inset Distance" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset description" -msgid "" -"The distance covered when making a connection from a roof outline inward. " -"Only applies to Wire Printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed label" -msgid "WP Speed" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed description" -msgid "" -"Speed at which the nozzle moves when extruding material. Only applies to " -"Wire Printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom label" -msgid "WP Bottom Printing Speed" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom description" -msgid "" -"Speed of printing the first layer, which is the only layer touching the " -"build platform. Only applies to Wire Printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up label" -msgid "WP Upward Printing Speed" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up description" -msgid "" -"Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down label" -msgid "WP Downward Printing Speed" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down description" -msgid "" -"Speed of printing a line diagonally downward. Only applies to Wire Printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat label" -msgid "WP Horizontal Printing Speed" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat description" -msgid "" -"Speed of printing the horizontal contours of the model. Only applies to Wire " -"Printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_flow label" -msgid "WP Flow" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_flow description" -msgid "" -"Flow compensation: the amount of material extruded is multiplied by this " -"value. Only applies to Wire Printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection label" -msgid "WP Connection Flow" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection description" -msgid "Flow compensation when going up or down. Only applies to Wire Printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat label" -msgid "WP Flat Flow" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat description" -msgid "" -"Flow compensation when printing flat lines. Only applies to Wire Printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay label" -msgid "WP Top Delay" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay description" -msgid "" -"Delay time after an upward move, so that the upward line can harden. Only " -"applies to Wire Printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay label" -msgid "WP Bottom Delay" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay description" -msgid "Delay time after a downward move. Only applies to Wire Printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay label" -msgid "WP Flat Delay" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay description" -msgid "" -"Delay time between two horizontal segments. Introducing such a delay can " -"cause better adhesion to previous layers at the connection points, while too " -"long delays cause sagging. Only applies to Wire Printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed label" -msgid "WP Ease Upward" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed description" -msgid "" -"Distance of an upward move which is extruded with half speed.\n" -"This can cause better adhesion to previous layers, while not heating the " -"material in those layers too much. Only applies to Wire Printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump label" -msgid "WP Knot Size" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump description" -msgid "" -"Creates a small knot at the top of an upward line, so that the consecutive " -"horizontal layer has a better chance to connect to it. Only applies to Wire " -"Printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down label" -msgid "WP Fall Down" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down description" -msgid "" -"Distance with which the material falls down after an upward extrusion. This " -"distance is compensated for. Only applies to Wire Printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along label" -msgid "WP Drag Along" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along description" -msgid "" -"Distance with which the material of an upward extrusion is dragged along " -"with the diagonally downward extrusion. This distance is compensated for. " -"Only applies to Wire Printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy label" -msgid "WP Strategy" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy description" -msgid "" -"Strategy for making sure two consecutive layers connect at each connection " -"point. Retraction lets the upward lines harden in the right position, but " -"may cause filament grinding. A knot can be made at the end of an upward line " -"to heighten the chance of connecting to it and to let the line cool; " -"however, it may require slow printing speeds. Another strategy is to " -"compensate for the sagging of the top of an upward line; however, the lines " -"won't always fall down as predicted." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option compensate" -msgid "Compensate" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option knot" -msgid "Knot" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option retract" -msgid "Retract" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down label" -msgid "WP Straighten Downward Lines" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down description" -msgid "" -"Percentage of a diagonally downward line which is covered by a horizontal " -"line piece. This can prevent sagging of the top most point of upward lines. " -"Only applies to Wire Printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down label" -msgid "WP Roof Fall Down" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down description" -msgid "" -"The distance which horizontal roof lines printed 'in thin air' fall down " -"when being printed. This distance is compensated for. Only applies to Wire " -"Printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along label" -msgid "WP Roof Drag Along" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along description" -msgid "" -"The distance of the end piece of an inward line which gets dragged along " -"when going back to the outer outline of the roof. This distance is " -"compensated for. Only applies to Wire Printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay label" -msgid "WP Roof Outer Delay" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay description" -msgid "" -"Time spent at the outer perimeters of hole which is to become a roof. Longer " -"times can ensure a better connection. Only applies to Wire Printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance label" -msgid "WP Nozzle Clearance" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance description" -msgid "" -"Distance between the nozzle and horizontally downward lines. Larger " -"clearance results in diagonally downward lines with a less steep angle, " -"which in turn results in less upward connections with the next layer. Only " -"applies to Wire Printing." +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 "" #: fdmprinter.def.json @@ -7218,9 +6003,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "adaptive_layer_height_enabled description" -msgid "" -"Adaptive layers computes the layer heights depending on the shape of the " -"model." +msgid "Adaptive layers computes the layer heights depending on the shape of the model." msgstr "" #: fdmprinter.def.json @@ -7240,9 +6023,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "adaptive_layer_height_variation_step description" -msgid "" -"The difference in height of the next layer height compared to the previous " -"one." +msgid "The difference in height of the next layer height compared to the previous one." msgstr "" #: fdmprinter.def.json @@ -7252,10 +6033,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -7265,11 +6043,7 @@ msgstr "" #: fdmprinter.def.json 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." msgstr "" #: fdmprinter.def.json @@ -7279,9 +6053,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "wall_overhang_speed_factor description" -msgid "" -"Overhanging walls will be printed at this percentage of their normal print " -"speed." +msgid "Overhanging walls will be printed at this percentage of their normal print speed." msgstr "" #: fdmprinter.def.json @@ -7291,9 +6063,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "bridge_settings_enabled description" -msgid "" -"Detect bridges and modify print speed, flow and fan settings while bridges " -"are printed." +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." msgstr "" #: fdmprinter.def.json @@ -7303,10 +6073,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -7316,10 +6083,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -7329,9 +6093,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -7341,10 +6103,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -7364,9 +6123,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "bridge_wall_material_flow description" -msgid "" -"When printing bridge walls, the amount of material extruded is multiplied by " -"this value." +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." msgstr "" #: fdmprinter.def.json @@ -7386,9 +6143,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "bridge_skin_material_flow description" -msgid "" -"When printing bridge skin regions, the amount of material extruded is " -"multiplied by this value." +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." msgstr "" #: fdmprinter.def.json @@ -7398,9 +6153,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." msgstr "" #: fdmprinter.def.json @@ -7420,10 +6173,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -7443,9 +6193,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." msgstr "" #: fdmprinter.def.json @@ -7455,9 +6203,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." msgstr "" #: fdmprinter.def.json @@ -7487,9 +6233,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." msgstr "" #: fdmprinter.def.json @@ -7499,9 +6243,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." msgstr "" #: fdmprinter.def.json @@ -7521,11 +6263,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -7535,11 +6273,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -7559,8 +6293,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "wipe_retraction_amount description" -msgid "" -"Amount to retract the filament so it does not ooze during the wipe sequence." +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." msgstr "" #: fdmprinter.def.json @@ -7570,9 +6303,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "wipe_retraction_extra_prime_amount description" -msgid "" -"Some material can ooze away during a wipe travel moves, which can be " -"compensated for here." +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." msgstr "" #: fdmprinter.def.json @@ -7582,9 +6313,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "wipe_retraction_speed description" -msgid "" -"The speed at which the filament is retracted and primed during a wipe " -"retraction move." +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." msgstr "" #: fdmprinter.def.json @@ -7594,8 +6323,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "wipe_retraction_retract_speed description" -msgid "" -"The speed at which the filament is retracted during a wipe retraction move." +msgid "The speed at which the filament is retracted during a wipe retraction move." msgstr "" #: fdmprinter.def.json @@ -7605,8 +6333,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "wipe_retraction_prime_speed description" -msgid "" -"The speed at which the filament is primed during a wipe retraction move." +msgid "The speed at which the filament is primed during a wipe retraction move." msgstr "" #: fdmprinter.def.json @@ -7626,10 +6353,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -7689,9 +6413,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "small_hole_max_size description" -msgid "" -"Holes and part outlines with a diameter smaller than this will be printed " -"using Small Feature Speed." +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." msgstr "" #: fdmprinter.def.json @@ -7701,9 +6423,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "small_feature_max_length description" -msgid "" -"Feature outlines that are shorter than this length will be printed using " -"Small Feature Speed." +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." msgstr "" #: fdmprinter.def.json @@ -7713,9 +6433,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "" #: fdmprinter.def.json @@ -7725,10 +6443,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -7738,9 +6453,7 @@ msgstr "" #: fdmprinter.def.json 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." +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "" #: fdmprinter.def.json @@ -7760,9 +6473,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "raft_base_wall_count description" -msgid "" -"The number of contours to print around the linear pattern in the base layer " -"of the raft." +msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "" #: fdmprinter.def.json @@ -7772,9 +6483,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "command_line_settings description" -msgid "" -"Settings which are only used if CuraEngine isn't called from the Cura " -"frontend." +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." msgstr "" #: fdmprinter.def.json @@ -7784,9 +6493,7 @@ msgstr "" #: fdmprinter.def.json 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." +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 "" #: fdmprinter.def.json @@ -7816,9 +6523,7 @@ msgstr "" #: fdmprinter.def.json 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'." +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." msgstr "" #: fdmprinter.def.json @@ -7828,6 +6533,6 @@ msgstr "" #: fdmprinter.def.json msgctxt "mesh_rotation_matrix description" -msgid "" -"Transformation matrix to be applied to the model when loading it from file." +msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "" + diff --git a/resources/i18n/fi_FI/cura.po b/resources/i18n/fi_FI/cura.po index cdf4e539d6..d3ee9c1988 100644 --- a/resources/i18n/fi_FI/cura.po +++ b/resources/i18n/fi_FI/cura.po @@ -1,245 +1,126 @@ # Cura -# Copyright (C) 2022 Ultimaker B.V. +# Copyright (C) 2022 UltiMaker. # This file is distributed under the same license as the Cura package. +# Ultimaker , 2022. # msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0200\n" -"PO-Revision-Date: 2017-09-27 12:27+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-04-06 15:55+0000\n" +"PO-Revision-Date: 2022-07-15 10:53+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" "Language: fi_FI\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.1.1\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -msgctxt "@label" -msgid "Unknown" -msgstr "Tuntematon" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Connected printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Preset printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:143 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:61 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 -msgctxt "@label" -msgid "Default" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:65 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:66 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:70 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:75 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:76 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:232 -msgctxt "@label" -msgid "Custom Material" -msgstr "Mukautettu materiaali" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:233 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 -msgctxt "@label" -msgid "Custom" -msgstr "Mukautettu" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:391 -msgctxt "@label" -msgid "Custom profiles" -msgstr "Mukautetut profiilit" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:426 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Laskettu" - -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 +#: cura/API/Account.py:199 msgctxt "@info:title" msgid "Login failed" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: cura/Arranging/ArrangeObjectsJob.py:25 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Uusien paikkojen etsiminen kappaleille" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: cura/Arranging/ArrangeObjectsJob.py:29 msgctxt "@info:title" msgid "Finding Location" msgstr "Etsitään paikkaa" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" -msgstr "Kaikille kappaleille ei löydy paikkaa tulostustilavuudessa." +msgstr "Kaikille kappaleille ei löydy paikkaa tulostustilavuudessa" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: cura/Arranging/ArrangeObjectsJob.py:43 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Paikkaa ei löydy" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:115 +#: cura/Backups/Backup.py:115 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:159 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +#: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159 +#: plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: plugins/CuraDrive/src/DrivePluginExtension.py:126 msgctxt "@info:title" msgid "Backup" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:134 +#: cura/Backups/Backup.py:134 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:145 +#: cura/Backups/Backup.py:145 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that is higher than the current version." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:158 +#: cura/Backups/Backup.py:158 msgctxt "@info:backup_failed" msgid "The following error occurred while trying to restore a Cura backup:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: cura/BuildVolume.py:100 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." msgstr "Tulostustilavuuden korkeutta on vähennetty tulostusjärjestysasetuksen vuoksi, jotta koroke ei osuisi tulostettuihin malleihin." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 +#: cura/BuildVolume.py:103 msgctxt "@info:title" msgid "Build Volume" msgstr "Tulostustilavuus" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" -"

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

    \n" +"

    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 "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: cura/CrashHandler.py:122 msgctxt "@action:button" -msgid "Send crash report to Ultimaker" +msgid "Send crash report to UltiMaker" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Kaatumisraportti" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

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

    \n" @@ -247,573 +128,2237 @@ msgid "" " " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 +#: cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 +#: cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 +#: cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:531 +#: cura/CuraApplication.py:540 msgctxt "@info:progress" msgid "Loading machines..." msgstr "Ladataan laitteita..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +#: cura/CuraApplication.py:547 msgctxt "@info:progress" msgid "Setting up preferences..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +#: cura/CuraApplication.py:692 msgctxt "@info:progress" msgid "Initializing Active Machine..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +#: cura/CuraApplication.py:839 msgctxt "@info:progress" msgid "Initializing machine manager..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +#: cura/CuraApplication.py:853 msgctxt "@info:progress" msgid "Initializing build volume..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +#: cura/CuraApplication.py:921 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "Asetetaan näkymää..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +#: cura/CuraApplication.py:957 msgctxt "@info:progress" msgid "Loading interface..." msgstr "Ladataan käyttöliittymää..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +#: cura/CuraApplication.py:962 msgctxt "@info:progress" msgid "Initializing engine..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#: cura/CuraApplication.py:1290 #, 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" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1798 +#: cura/CuraApplication.py:1816 #, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Vain yksi G-code-tiedosto voidaan ladata kerralla. Tiedoston {0} tuonti ohitettiin." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 +#: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 msgctxt "@info:title" msgid "Warning" msgstr "Varoitus" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#: cura/CuraApplication.py:1828 #, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "Muita tiedostoja ei voida ladata, kun G-code latautuu. Tiedoston {0} tuonti ohitettiin." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1812 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156 +#: cura/Settings/CuraContainerRegistry.py:166 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 msgctxt "@info:title" msgid "Error" msgstr "Virhe" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 +#: cura/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Tuntematon" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "" + +#: cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:28 +msgctxt "@label" +msgid "Connected printers" +msgstr "" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +msgctxt "@label" +msgid "Preset printers" +msgstr "" + +#: cura/Machines/Models/GlobalStacksModel.py:165 +#, 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 "" + +#: cura/Machines/Models/IntentCategoryModel.py:42 +#: cura/Machines/Models/IntentSelectionModel.py:61 +#: cura/Machines/Models/IntentTranslations.py:11 +#: cura/Machines/Models/QualityManagementModel.py:347 +msgctxt "@label" +msgid "Default" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:45 +#: cura/Machines/Models/IntentSelectionModel.py:65 +#: cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:46 +#: cura/Machines/Models/IntentSelectionModel.py:66 +#: cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:49 +#: cura/Machines/Models/IntentSelectionModel.py:70 +#: cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:50 +#: cura/Machines/Models/IntentSelectionModel.py:71 +#: cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:53 +#: cura/Machines/Models/IntentSelectionModel.py:75 +#: cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:54 +#: cura/Machines/Models/IntentSelectionModel.py:76 +#: cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "" + +#: cura/Machines/Models/MaterialManagementModel.py:232 +msgctxt "@label" +msgid "Custom Material" +msgstr "Mukautettu materiaali" + +#: cura/Machines/Models/MaterialManagementModel.py:233 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 +msgctxt "@label" +msgid "Custom" +msgstr "Mukautettu" + +#: cura/Machines/Models/QualityManagementModel.py:400 +msgctxt "@label" +msgid "Custom profiles" +msgstr "Mukautetut profiilit" + +#: cura/Machines/Models/QualityManagementModel.py:435 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "" + +#: cura/Machines/Models/QualityManagementModel.py:436 +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "" + +#: cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Laskettu" + +#: cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Kappaleiden kertominen ja sijoittelu" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 +#: cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 +#: cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Sijoitetaan kappaletta" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +#: cura/OAuth2/AuthorizationHelpers.py:89 msgctxt "@message" msgid "Could not read response." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +#: cura/OAuth2/AuthorizationRequestHandler.py:75 msgctxt "@message" msgid "The provided state is not correct." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +#: cura/OAuth2/AuthorizationRequestHandler.py:80 msgctxt "@message" msgid "Timeout when authenticating with the account server." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +#: cura/OAuth2/AuthorizationRequestHandler.py:97 msgctxt "@message" msgid "Please give the required permissions when authorizing this application." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +#: cura/OAuth2/AuthorizationRequestHandler.py:104 msgctxt "@message" msgid "Something unexpected happened when trying to log in, please try again." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:216 +#: cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:277 +#: cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." +msgid "Unable to reach the UltiMaker account server." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 +#: cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" msgid "Log-in failed" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +#: cura/PrinterOutput/UploadMaterialsJob.py:104 msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +#: cura/PrinterOutput/UploadMaterialsJob.py:111 +#: cura/PrinterOutput/UploadMaterialsJob.py:165 msgctxt "@text:error" msgid "Failed to load the archive of materials to sync it with printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +#: cura/PrinterOutput/UploadMaterialsJob.py:143 msgctxt "@text:error" msgid "The response from Digital Factory appears to be corrupted." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +#: cura/PrinterOutput/UploadMaterialsJob.py:147 +#: cura/PrinterOutput/UploadMaterialsJob.py:151 +#: cura/PrinterOutput/UploadMaterialsJob.py:155 msgctxt "@text:error" msgid "The response from Digital Factory is missing important information." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +#: cura/PrinterOutput/UploadMaterialsJob.py:218 msgctxt "@text:error" msgid "Failed to connect to Digital Factory to sync materials with some of the printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +#: cura/PrinterOutput/UploadMaterialsJob.py:232 msgctxt "@text:error" msgid "Failed to connect to Digital Factory." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:207 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: cura/Settings/ActiveQuality.py:43 +msgctxt "@label" +msgid "Experimental" +msgstr "" + +#: cura/Settings/ContainerManager.py:207 +#: cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "Tiedosto on jo olemassa" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: cura/Settings/ContainerManager.py:208 +#: cura/Settings/CuraContainerRegistry.py:141 #, 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 "Tiedosto {0} on jo olemassa. Haluatko varmasti kirjoittaa sen päälle?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 +#: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Profiilin vienti epäonnistui tiedostoon {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Profiilin vienti epäonnistui tiedostoon {0}: Kirjoitin-lisäosa ilmoitti virheestä." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profiili viety tiedostoon {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: cura/Settings/CuraContainerRegistry.py:209 #, 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 "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: cura/Settings/CuraContainerRegistry.py:252 +#: cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Profiililla {0} on tuntematon tiedostotyyppi tai se on vioittunut." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Mukautettu profiili" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Profiilista puuttuu laatutyyppi." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: cura/Settings/CuraContainerRegistry.py:488 #, 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 "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:219 +#: cura/Settings/MachineManager.py:746 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:221 msgctxt "@label" msgid "Nozzle" msgstr "Suutin" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +#: cura/Settings/MachineManager.py:890 msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: cura/Settings/MachineManager.py:891 msgctxt "@info:title" msgid "Settings updated" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 +#: cura/Settings/MachineManager.py:1514 msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 +#: cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "" + +#: cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "" + +#: cura/UI/AddPrinterPagesModel.py:17 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" msgid "Add" msgstr "Lisää" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:290 +#: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290 msgctxt "@action:button" msgid "Finish" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:508 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:323 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:291 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:74 +#: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386 +#: plugins/ImageReader/ConfigUI.qml:323 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 +#: resources/qml/ColorDialog.qml:143 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: resources/qml/Dialogs/RenameDialog.qml:103 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 msgctxt "@action:button" msgid "Cancel" msgstr "Peruuta" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: cura/UI/ObjectsModel.py:69 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 +#: cura/UI/PrintInformation.py:87 msgctxt "@tooltip" msgid "Outer Wall" msgstr "Ulkoseinämä" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +#: cura/UI/PrintInformation.py:88 msgctxt "@tooltip" msgid "Inner Walls" msgstr "Sisäseinämät" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +#: cura/UI/PrintInformation.py:89 msgctxt "@tooltip" msgid "Skin" msgstr "Pintakalvo" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +#: cura/UI/PrintInformation.py:90 msgctxt "@tooltip" msgid "Infill" msgstr "Täyttö" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +#: cura/UI/PrintInformation.py:91 msgctxt "@tooltip" msgid "Support Infill" msgstr "Tuen täyttö" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +#: cura/UI/PrintInformation.py:92 msgctxt "@tooltip" msgid "Support Interface" msgstr "Tukiliittymä" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +#: cura/UI/PrintInformation.py:93 msgctxt "@tooltip" msgid "Support" msgstr "Tuki" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +#: cura/UI/PrintInformation.py:94 msgctxt "@tooltip" msgid "Skirt" msgstr "Helma" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +#: cura/UI/PrintInformation.py:95 msgctxt "@tooltip" msgid "Prime Tower" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +#: cura/UI/PrintInformation.py:96 msgctxt "@tooltip" msgid "Travel" msgstr "Siirtoliike" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +#: cura/UI/PrintInformation.py:97 msgctxt "@tooltip" msgid "Retractions" msgstr "Takaisinvedot" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +#: cura/UI/PrintInformation.py:98 msgctxt "@tooltip" msgid "Other" msgstr "Muu" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:63 +#: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63 msgctxt "@text:window" msgid "The release notes could not be opened." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:277 +#: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277 msgctxt "@action:button" msgid "Next" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68 msgctxt "@action:button" msgid "Skip" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:443 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:186 +#: cura/UI/WhatsNewPagesModel.py:76 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444 +#: resources/qml/Dialogs/AboutDialog.qml:188 msgctxt "@action:button" msgid "Close" msgstr "Sulje" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: cura/UltimakerCloud/CloudMaterialSync.py:66 msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: cura/UltimakerCloud/CloudMaterialSync.py:67 msgctxt "@action:button" msgid "New materials installed" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: cura/UltimakerCloud/CloudMaterialSync.py:74 msgctxt "@action:button" msgid "Sync materials" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:397 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:80 +#: cura/UltimakerCloud/CloudMaterialSync.py:82 +#: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80 msgctxt "@action:button" msgid "Learn more" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +#: cura/UltimakerCloud/CloudMaterialSync.py:135 msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +#: cura/UltimakerCloud/CloudMaterialSync.py:136 msgctxt "@message:title" msgid "Failed to save material archive" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +#: cura/UltimakerCloud/CloudMaterialSync.py:188 msgctxt "@text" msgid "Unknown error." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:558 +#, 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 "" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:561 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: plugins/3MFReader/WorkspaceDialog.qml:99 +#: plugins/3MFReader/WorkspaceDialog.qml:127 +#: plugins/3MFReader/WorkspaceDialog.qml:134 +msgctxt "@button" +msgid "Create new" +msgstr "Luo uusi" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:692 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:720 +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:700 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:718 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:765 +#, 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 "" + +#: plugins/3MFReader/WorkspaceDialog.py:233 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Suositeltu" + +#: plugins/3MFReader/WorkspaceDialog.py:235 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Mukautettu" + +#: plugins/3MFReader/WorkspaceDialog.py:411 +msgctxt "@info:status" +msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.py:413 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.py:426 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:15 +msgctxt "@title:window" +msgid "Open Project" +msgstr "Avaa projekti" + +#: plugins/3MFReader/WorkspaceDialog.qml:31 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61 +msgctxt "@action:title" +msgid "Summary - Cura Project" +msgstr "Yhteenveto – Cura-projekti" + +#: plugins/3MFReader/WorkspaceDialog.qml:65 +msgctxt "@action:ComboBox Update/override existing profile" +msgid "Update existing" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:66 +msgctxt "@action:ComboBox Save settings in a new profile" +msgid "Create new" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:83 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97 +msgctxt "@action:label" +msgid "Printer settings" +msgstr "Tulostimen asetukset" + +#: plugins/3MFReader/WorkspaceDialog.qml:92 +#: plugins/3MFReader/WorkspaceRow.qml:23 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106 +msgctxt "@action:label" +msgid "Type" +msgstr "Tyyppi" + +#: plugins/3MFReader/WorkspaceDialog.qml:98 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +msgctxt "@action:label" +msgid "Printer Group" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:103 +msgctxt "@action:label" +msgid "Open With" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:104 +msgctxt "@info:tooltip" +msgid "Printer settings will be updated to match the settings saved with the project." +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:156 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222 +msgctxt "@action:label" +msgid "Profile settings" +msgstr "Profiilin asetukset" + +#: plugins/3MFReader/WorkspaceDialog.qml:166 +#: plugins/3MFReader/WorkspaceDialog.qml:238 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246 +msgctxt "@action:label" +msgid "Name" +msgstr "Nimi" + +#: plugins/3MFReader/WorkspaceDialog.qml:172 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263 +msgctxt "@action:label" +msgid "Intent" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:178 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230 +msgctxt "@action:label" +msgid "Not in profile" +msgstr "Ei profiilissa" + +#: plugins/3MFReader/WorkspaceDialog.qml:179 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235 +msgctxt "@action:label" +msgid "%1 override" +msgid_plural "%1 overrides" +msgstr[0] "%1 ohitus" +msgstr[1] "%1 ohitusta" + +#: plugins/3MFReader/WorkspaceDialog.qml:185 +msgctxt "@action:label" +msgid "Derivative from" +msgstr "Johdettu seuraavista" + +#: plugins/3MFReader/WorkspaceDialog.qml:186 +msgctxt "@action:label" +msgid "%1, %2 override" +msgid_plural "%1, %2 overrides" +msgstr[0] "%1, %2 ohitus" +msgstr[1] "%1, %2 ohitusta" + +#: plugins/3MFReader/WorkspaceDialog.qml:226 +msgctxt "@action:label" +msgid "Material settings" +msgstr "Materiaaliasetukset" + +#: plugins/3MFReader/WorkspaceDialog.qml:280 +msgctxt "@action:label" +msgid "Setting visibility" +msgstr "Asetusten näkyvyys" + +#: plugins/3MFReader/WorkspaceDialog.qml:290 +msgctxt "@action:label" +msgid "Mode" +msgstr "Tila" + +#: plugins/3MFReader/WorkspaceDialog.qml:296 +msgctxt "@action:label" +msgid "%1 out of %2" +msgstr "%1/%2" + +#: plugins/3MFReader/WorkspaceDialog.qml:321 +msgctxt "@action:warning" +msgid "Loading a project will clear all models on the build plate." +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:367 +msgctxt "@label" +msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:392 +msgctxt "@action:button" +msgid "Open" +msgstr "Avaa" + +#: plugins/3MFReader/WorkspaceDialog.qml:398 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:407 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "" + +#: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33 +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "3MF-tiedosto" + +#: plugins/3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF-lukija" + +#: plugins/3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Tukee 3MF-tiedostojen lukemista." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "" + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "" + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "" + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "" + +#: plugins/3MFWriter/ThreeMFWriter.py:240 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "" + +#: plugins/3MFWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "3MF-tiedosto" + +#: plugins/3MFWriter/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Cura-projektin 3MF-tiedosto" + +#: plugins/3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF-kirjoitin" + +#: plugins/3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Tukee 3MF-tiedostojen kirjoittamista." + +#: plugins/AMFReader/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "" + +#: plugins/AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "" + +#: plugins/AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "" + +#: plugins/CuraDrive/plugin.json +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "" + +#: plugins/CuraDrive/plugin.json +msgctxt "name" +msgid "Cura Backups" +msgstr "" + +#: plugins/CuraDrive/src/CreateBackupJob.py:25 +msgctxt "@info:title" +msgid "Backups" +msgstr "" + +#: plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "" + +#: plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "" + +#: plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "" + +#: plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "" + +#: plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "" + +#: plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "" + +#: plugins/CuraDrive/src/DriveApiService.py:86 +#: plugins/CuraDrive/src/RestoreBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "" + +#: plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 +msgctxt "@button" +msgid "Restore" +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "" + +#: plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "" + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "" + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 +#: plugins/Marketplace/resources/qml/Marketplace.qml:312 +#: resources/qml/Account/GeneralOperations.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180 +#: resources/qml/WelcomePages/CloudContent.qml:212 +msgctxt "@button" +msgid "Sign in" +msgstr "" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:163 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:169 +msgctxt "@message:description" +msgid "Report a bug on UltiMaker Cura's issue tracker." +msgstr "" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:416 +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "Viipalointi ei onnistu nykyisellä materiaalilla, sillä se ei sovellu käytettäväksi valitun laitteen tai kokoonpanon kanssa." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:417 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:450 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:477 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:501 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:514 +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "Viipalointi ei onnistu" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:449 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "Viipalointi ei onnistu nykyisten asetuksien ollessa voimassa. Seuraavissa asetuksissa on virheitä: {0}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:476 +#, 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 "" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:488 +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "Viipalointi ei onnistu, koska esitäyttötorni tai esitäytön sijainti tai sijainnit eivät kelpaa." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:500 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:510 +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 "" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Käsitellään kerroksia" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Tiedot" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine-taustaosa" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Linkki CuraEngine-viipalointiin taustalla." + +#: plugins/CuraProfileReader/__init__.py:14 +#: plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Cura-profiili" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura-profiilin lukija" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Tukee Cura-profiilien tuontia." + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura-profiilin kirjoitin" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Tukee Cura-profiilien vientiä." + +#: plugins/DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "" + +#: plugins/DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 +msgctxt "@option" +msgid "Save Cura project and print file" +msgstr "" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "" + +#: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19 +msgctxt "@text Placeholder for the username if it has been deleted" +msgid "deleted user" +msgstr "" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Päivitystietoja ei löytynyt." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, 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 "" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "" + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Tarkistaa laiteohjelmistopäivitykset." + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Laiteohjelmiston päivitysten tarkistus" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 +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 "Laiteohjelmisto on suoraan 3D-tulostimessa toimiva ohjelma. Laiteohjelmisto ohjaa askelmoottoreita, säätää lämpötilaa ja saa tulostimen toimimaan." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "Uusien tulostimien mukana toimitettava laiteohjelmisto toimii, mutta uusissa versioissa on yleensä enemmän toimintoja ja parannuksia." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Päivitä laiteohjelmisto automaattisesti" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Lataa mukautettu laiteohjelmisto" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Valitse mukautettu laiteohjelmisto" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Laiteohjelmiston päivitys" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 +msgctxt "@label" +msgid "Updating firmware." +msgstr "Päivitetään laiteohjelmistoa." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Laiteohjelmiston päivitys suoritettu." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "Laiteohjelmiston päivitys epäonnistui tuntemattoman virheen takia." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "Laiteohjelmiston päivitys epäonnistui tietoliikennevirheen takia." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "Laiteohjelmiston päivitys epäonnistui tiedoston lukemiseen tai kirjoittamiseen liittyvän virheen takia." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "Laiteohjelmiston päivitys epäonnistui puuttuvan laiteohjelmiston takia." + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "name" +msgid "Firmware Updater" +msgstr "" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "" + +#: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "" + +#: plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "" + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "" + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "" + +#: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14 +#: plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "GCode-tiedosto" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Tukee profiilien tuontia GCode-tiedostoista." + +#: plugins/GCodeReader/FlavorParser.py:359 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "G-coden jäsennys" + +#: plugins/GCodeReader/FlavorParser.py:361 +#: plugins/GCodeReader/FlavorParser.py:515 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "G-coden tiedot" + +#: plugins/GCodeReader/FlavorParser.py:513 +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 "Varmista, että G-code on tulostimelle ja sen tulostusasetuksille soveltuva, ennen kuin lähetät tiedoston siihen. G-coden esitys ei välttämättä ole tarkka." + +#: plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "G File -tiedosto" + +#: plugins/GCodeReader/plugin.json +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Mahdollistaa GCode-tiedostojen lataamisen ja näyttämisen." + +#: plugins/GCodeReader/plugin.json +msgctxt "name" +msgid "G-code Reader" +msgstr "GCode-lukija" + +#: plugins/GCodeWriter/GCodeWriter.py:75 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "" + +#: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "" + +#: plugins/GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "" + +#: plugins/GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:14 +msgctxt "@title:window" +msgid "Convert Image" +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:33 +msgctxt "@action:label" +msgid "Height (mm)" +msgstr "Korkeus (mm)" + +#: plugins/ImageReader/ConfigUI.qml:56 +msgctxt "@info:tooltip" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "Kunkin pikselin suurin etäisyys \"Pohja\"-arvosta." + +#: plugins/ImageReader/ConfigUI.qml:66 +msgctxt "@action:label" +msgid "Base (mm)" +msgstr "Pohja (mm)" + +#: plugins/ImageReader/ConfigUI.qml:90 +msgctxt "@info:tooltip" +msgid "The base height from the build plate in millimeters." +msgstr "Pohjan korkeus alustasta millimetreinä." + +#: plugins/ImageReader/ConfigUI.qml:100 +msgctxt "@action:label" +msgid "Width (mm)" +msgstr "Leveys (mm)" + +#: plugins/ImageReader/ConfigUI.qml:124 +msgctxt "@info:tooltip" +msgid "The width in millimeters on the build plate" +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:134 +msgctxt "@action:label" +msgid "Depth (mm)" +msgstr "Syvyys (mm)" + +#: plugins/ImageReader/ConfigUI.qml:158 +msgctxt "@info:tooltip" +msgid "The depth in millimeters on the build plate" +msgstr "Syvyys millimetreinä alustalla" + +#: plugins/ImageReader/ConfigUI.qml:187 +msgctxt "@item:inlistbox" +msgid "Darker is higher" +msgstr "Tummempi on korkeampi" + +#: plugins/ImageReader/ConfigUI.qml:188 +msgctxt "@item:inlistbox" +msgid "Lighter is higher" +msgstr "Vaaleampi on korkeampi" + +#: plugins/ImageReader/ConfigUI.qml:195 +msgctxt "@info:tooltip" +msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:205 +msgctxt "@action:label" +msgid "Color Model" +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:224 +msgctxt "@item:inlistbox" +msgid "Linear" +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:225 +msgctxt "@item:inlistbox" +msgid "Translucency" +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:232 +msgctxt "@info:tooltip" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:242 +msgctxt "@action:label" +msgid "1mm Transmittance (%)" +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:263 +msgctxt "@info:tooltip" +msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:274 +msgctxt "@action:label" +msgid "Smoothing" +msgstr "Tasoitus" + +#: plugins/ImageReader/ConfigUI.qml:298 +msgctxt "@info:tooltip" +msgid "The amount of smoothing to apply to the image." +msgstr "Kuvassa käytettävän tasoituksen määrä." + +#: plugins/ImageReader/ConfigUI.qml:329 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 +#: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25 +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + +#: plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "JPG-kuva" + +#: plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "JPEG-kuva" + +#: plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "PNG-kuva" + +#: plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "BMP-kuva" + +#: plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "GIF-kuva" + +#: plugins/ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Mahdollistaa tulostettavien geometrioiden luomisen 2D-kuvatiedostoista." + +#: plugins/ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Kuvanlukija" + +#: plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Cura 15.04 -profiilit" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Aikaisempien Cura-profiilien lukija" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Tukee profiilien tuontia aikaisemmista Cura-versioista." + +#: plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Laitteen asetukset" + +#: plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Tulostin" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Suuttimen koko" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Suuttimen X-siirtymä" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Suuttimen Y-siirtymä" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (leveys)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (syvyys)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (korkeus)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Alustan muoto" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 +msgctxt "@label" +msgid "Origin at center" +msgstr "" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 +msgctxt "@label" +msgid "Heated bed" +msgstr "" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 +msgctxt "@label" +msgid "Heated build volume" +msgstr "" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 +msgctxt "@label" +msgid "G-code flavor" +msgstr "" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 +msgctxt "@label" +msgid "X min" +msgstr "X väh" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 +msgctxt "@label" +msgid "Y min" +msgstr "Y väh" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 +msgctxt "@label" +msgid "X max" +msgstr "X enint" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 +msgctxt "@label" +msgid "Y max" +msgstr "Y enint" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 +msgctxt "@label" +msgid "Gantry Height" +msgstr "" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Suulakkeiden määrä" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:342 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:390 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:401 +msgctxt "@title:label" +msgid "End G-code" +msgstr "" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "name" +msgid "Machine Settings Action" +msgstr "" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:95 +msgctxt "@info:title" +msgid "Changes detected from your UltiMaker account" +msgstr "" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 +msgctxt "@action:button" +msgid "Sync" +msgstr "" + +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:12 +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:79 +msgctxt "@button" +msgid "Decline" +msgstr "" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:13 +#: resources/qml/WelcomePages/UserAgreementContent.qml:53 +msgctxt "@button" +msgid "Agree" +msgstr "" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:77 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Lisäosan lisenssisopimus" + +#: plugins/Marketplace/CloudSync/LicensePresenter.py:42 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "" + +#: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "" + +#: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "" + +#: plugins/Marketplace/LocalPackageList.py:28 +msgctxt "@label" +msgid "Installed Plugins" +msgstr "" + +#: plugins/Marketplace/LocalPackageList.py:29 +msgctxt "@label" +msgid "Installed Materials" +msgstr "" + +#: plugins/Marketplace/LocalPackageList.py:33 +msgctxt "@label" +msgid "Bundled Plugins" +msgstr "" + +#: plugins/Marketplace/LocalPackageList.py:34 +msgctxt "@label" +msgid "Bundled Materials" +msgstr "" + +#: plugins/Marketplace/PackageModel.py:43 +msgctxt "@label:property" +msgid "Unknown Package" +msgstr "" + +#: plugins/Marketplace/PackageModel.py:66 +msgctxt "@label:property" +msgid "Unknown Author" +msgstr "" + +#: plugins/Marketplace/PackageModel.py:95 +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 "" + +#: plugins/Marketplace/RemotePackageList.py:117 +msgctxt "@info:error" +msgid "Could not interpret the server's response." +msgstr "" + +#: plugins/Marketplace/RemotePackageList.py:148 +msgctxt "@info:error" +msgid "Could not reach Marketplace." +msgstr "" + +#: plugins/Marketplace/plugin.json +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "" + +#: plugins/Marketplace/plugin.json +msgctxt "name" +msgid "Marketplace" +msgstr "" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 +msgctxt "@title" +msgid "Changes from your account" +msgstr "" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +msgctxt "@button" +msgid "Dismiss" +msgstr "" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +#: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 +#: resources/qml/WelcomePages/WhatsNewContent.qml:175 +msgctxt "@button" +msgid "Next" +msgstr "" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "" + +#: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:47 +msgctxt "@text" +msgid "Please read and agree with the plugin licence." +msgstr "" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "" + +#: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:12 +msgctxt "@header" +msgid "Manage packages" +msgstr "" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:16 +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 "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" +msgid "Loading..." +msgstr "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:271 +msgctxt "@button" +msgid "In order to use the package you will need to restart Cura" +msgstr "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:279 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:300 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" +msgstr "" + +#: plugins/Marketplace/resources/qml/Materials.qml:8 +#: plugins/Marketplace/resources/qml/MissingPackages.qml:8 +msgctxt "@header" +msgid "Install Materials" +msgstr "" + +#: plugins/Marketplace/resources/qml/Materials.qml:12 +msgctxt "@text" +msgid "Select and install material profiles optimised for your UltiMaker 3D printers." +msgstr "" + +#: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "" + +#: plugins/Marketplace/resources/qml/OnboardBanner.qml:101 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205 +msgctxt "@button:label" +msgid "Learn More" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170 +msgctxt "@label Is followed by the name of an author" +msgid "By" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Disable" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Enable" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242 +msgctxt "@button" +msgid "Downgrading..." +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243 +msgctxt "@button" +msgid "Downgrade" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247 +msgctxt "@button" +msgid "Installing..." +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248 +msgctxt "@button" +msgid "Install" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252 +msgctxt "@button" +msgid "Uninstall" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Update" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Updating..." +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:193 +msgctxt "@header" +msgid "Compatible with Material Station" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "No" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "Yes" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:219 +msgctxt "@header" +msgid "Optimized for Air Manager" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Visit plug-in website" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Website" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:252 +msgctxt "@button" +msgid "Buy spool" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:261 +msgctxt "@button" +msgid "Safety datasheet" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:270 +msgctxt "@button" +msgid "Technical datasheet" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Failed to load packages:" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Retry?" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:167 +msgctxt "@button" +msgid "Loading" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No more results to load" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No results found with current filter" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:226 +msgctxt "@button" +msgid "Load more" +msgstr "" + +#: plugins/Marketplace/resources/qml/Plugins.qml:8 +msgctxt "@header" +msgid "Install Plugins" +msgstr "" + +#: plugins/Marketplace/resources/qml/Plugins.qml:12 +msgctxt "@text" +msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." +msgstr "" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 +msgctxt "@info" +msgid "UltiMaker Verified Plug-in" +msgstr "" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "UltiMaker Certified Material" +msgstr "" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 +msgctxt "@info" +msgid "UltiMaker Verified Package" +msgstr "" + +#: plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -823,819 +2368,1088 @@ msgid "" "

    View print quality guide

    " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 -#, 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." +#: plugins/ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 -msgctxt "@info:title" -msgid "Open Project File" +#: plugins/ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:659 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:658 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:711 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Suositeltu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:214 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Mukautettu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:390 -msgctxt "@info:status" -msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 -msgctxt "@info:title" -msgid "Material profiles not installed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 -msgctxt "@action:button" -msgid "Install Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "3MF-tiedosto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:238 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:282 -#, python-brace-format -msgctxt "@error:material" -msgid "It was not possible to store material package information in project file: {material}. This project may not open correctly on other systems." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 -msgctxt "@info:title" -msgid "Failed to save material package information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF-tiedosto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura-projektin 3MF-tiedosto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 -msgctxt "@info:title" -msgid "Backups" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 -msgctxt "@message:button" -msgid "Report a bug" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 -msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:400 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "Viipalointi ei onnistu nykyisellä materiaalilla, sillä se ei sovellu käytettäväksi valitun laitteen tai kokoonpanon kanssa." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:401 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:434 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:461 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:473 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:485 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:498 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "Viipalointi ei onnistu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:433 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "Viipalointi ei onnistu nykyisten asetuksien ollessa voimassa. Seuraavissa asetuksissa on virheitä: {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:460 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:472 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "Viipalointi ei onnistu, koska esitäyttötorni tai esitäytön sijainti tai sijainnit eivät kelpaa." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:484 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 -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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Käsitellään kerroksia" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 -msgctxt "@info:title" -msgid "Information" -msgstr "Tiedot" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura-profiili" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" -msgid "Could not access update information." -msgstr "Päivitystietoja ei löytynyt." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, 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}." +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 "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s stable firmware available" +#: plugins/MonitorStage/MonitorMain.qml:113 +msgctxt "@info" +msgid "Please connect your printer to the network." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" +#: plugins/MonitorStage/MonitorMain.qml:148 +msgctxt "@label link to technical assistance" +msgid "View user manuals online" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" +#: plugins/MonitorStage/MonitorMain.qml:164 +msgctxt "@info" +msgid "In order to monitor your print from Cura, please connect the printer." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "GCode-tiedosto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:350 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "G-coden jäsennys" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:506 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-coden tiedot" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 -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 "Varmista, että G-code on tulostimelle ja sen tulostusasetuksille soveltuva, ennen kuin lähetät tiedoston siihen. G-coden esitys ei välttämättä ole tarkka." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G File -tiedosto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG-kuva" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG-kuva" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG-kuva" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP-kuva" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF-kuva" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04 -profiilit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Laitteen asetukset" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 -msgctxt "@action:button" -msgid "Sync" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:12 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:79 -msgctxt "@button" -msgid "Decline" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:13 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53 -msgctxt "@button" -msgid "Agree" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Lisäosan lisenssisopimus" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:28 -msgctxt "@label" -msgid "Installed Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:29 -msgctxt "@label" -msgid "Installed Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:33 -msgctxt "@label" -msgid "Bundled Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:34 -msgctxt "@label" -msgid "Bundled Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:43 -msgctxt "@label:property" -msgid "Unknown Package" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:66 -msgctxt "@label:property" -msgid "Unknown Author" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:117 -msgctxt "@info:error" -msgid "Could not interpret the server's response." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:148 -msgctxt "@info:error" -msgid "Could not reach Marketplace." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 +#: plugins/MonitorStage/__init__.py:14 msgctxt "@item:inmenu" msgid "Monitor" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: plugins/MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "" + +#: plugins/MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 +msgctxt "@label" +msgid "Mesh Type" +msgstr "" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 +msgctxt "@label" +msgid "Normal model" +msgstr "" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 +msgctxt "@label" +msgid "Print as support" +msgstr "" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 +msgctxt "@item:inlistbox" +msgid "Infill mesh only" +msgstr "" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161 +msgctxt "@item:inlistbox" +msgid "Cutting mesh" +msgstr "" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386 +msgctxt "@action:button" +msgid "Select settings" +msgstr "Valitse asetukset" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Valitse tätä mallia varten mukautettavat asetukset" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Suodatin..." + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Näytä kaikki" + +#: plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" msgid "Per Model Settings" msgstr "Mallikohtaiset asetukset" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +#: plugins/PerObjectSettingsTool/__init__.py:15 msgctxt "@info:tooltip" msgid "Configure Per Model Settings" msgstr "Määritä mallikohtaiset asetukset" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Mallikohtaisten asetusten työkalu" + +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Mallikohtaisten asetusten muokkaus." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Jälkikäsittelylisäosa" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 +msgctxt "@label" +msgid "Post Processing Scripts" +msgstr "Jälkikäsittelykomentosarjat" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "Lisää komentosarja" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 +msgctxt "@label" +msgid "Settings" +msgstr "Asetukset" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "" +msgstr[1] "" + +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Lisäosa, jonka avulla käyttäjät voivat luoda komentosarjoja jälkikäsittelyä varten" + +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Jälkikäsittely" + +#: plugins/PrepareStage/PrepareMenu.qml:74 +msgctxt "@button" +msgid "Add printer" +msgstr "" + +#: plugins/PrepareStage/PrepareMenu.qml:90 +msgctxt "@button" +msgid "Manage printers" +msgstr "" + +#: plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 +#: plugins/PrepareStage/plugin.json +msgctxt "name" +msgid "Prepare Stage" +msgstr "" + +#: plugins/PrepareStage/plugin.json +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "" + +#: plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" msgid "Preview" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +#: plugins/PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "" + +#: plugins/PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Tallenna siirrettävälle asemalle" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Tallenna siirrettävälle asemalle {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 #, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Tallennetaan siirrettävälle asemalle {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 msgctxt "@info:title" msgid "Saving" msgstr "Tallennetaan" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "Ei voitu tallentaa tiedostoon {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 #, 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 "Ei löydetty tiedostonimeä yritettäessä kirjoittaa laitteeseen {device}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 #, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Ei voitu tallentaa siirrettävälle asemalle {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 #, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Tallennettu siirrettävälle asemalle {0} nimellä {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 msgctxt "@info:title" msgid "File Saved" msgstr "Tiedosto tallennettu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 msgctxt "@action:button" msgid "Eject" msgstr "Poista" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 #, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Poista siirrettävä asema {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 #, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Poistettu {0}. Voit nyt poistaa aseman turvallisesti." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 msgctxt "@info:title" msgid "Safely Remove Hardware" msgstr "Poista laite turvallisesti" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 #, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Kohteen {0} poistaminen epäonnistui. Asema saattaa olla toisen ohjelman käytössä." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +#: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 msgctxt "@item:intext" msgid "Removable Drive" msgstr "Siirrettävä asema" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Tukee irrotettavan aseman kytkemistä lennossa ja sille kirjoittamista." + +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Irrotettavan aseman tulostusvälineen laajennus" + +#: plugins/SentryLogger/plugin.json +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" +#: plugins/SentryLogger/plugin.json +msgctxt "name" +msgid "Sentry Logger" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 +#: plugins/SimulationView/SimulationView.py:129 msgctxt "@info:status" msgid "Nothing is shown because you need to slice first." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 +#: plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "No layers to show" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 +#: plugins/SimulationView/SimulationView.py:132 +#: plugins/SolidView/SolidView.py:74 msgctxt "@info:option_text" msgid "Do not show this message again" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:18 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:47 +msgctxt "@label" +msgid "Color scheme" +msgstr "Värimalli" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Materiaalin väri" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Linjojen tyyppi" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:112 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:116 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:120 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:124 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:164 +msgctxt "@label" +msgid "Compatibility Mode" +msgstr "Yhteensopivuustila" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:231 +msgctxt "@label" +msgid "Travels" +msgstr "" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:237 +msgctxt "@label" +msgid "Helpers" +msgstr "" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:243 +msgctxt "@label" +msgid "Shell" +msgstr "" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:249 +msgctxt "@label" +msgid "Infill" +msgstr "Täyttö" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:257 +msgctxt "@label" +msgid "Starts" +msgstr "" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:304 +msgctxt "@label" +msgid "Only Show Top Layers" +msgstr "Näytä vain yläkerrokset" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:313 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "Näytä 5 yksityiskohtaista kerrosta ylhäällä" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:326 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Yläosa/alaosa" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:330 +msgctxt "@label" +msgid "Inner Wall" +msgstr "Sisäseinämä" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:397 +msgctxt "@label" +msgid "min" +msgstr "" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:462 +msgctxt "@label" +msgid "max" +msgstr "" + +#: plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Kerrosnäkymä" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +#: plugins/SimulationView/plugin.json +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "" + +#: plugins/SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 +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 "" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "" + +#: plugins/SliceInfoPlugin/SliceInfo.py:95 msgctxt "@text" msgid "Unable to read example data file." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Viipalointitiedot" + +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Lähettää anonyymiä viipalointitietoa. Voidaan lisäasetuksista kytkeä pois käytöstä." + +#: plugins/SolidView/SolidView.py:71 msgctxt "@info:status" msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +#: plugins/SolidView/SolidView.py:73 msgctxt "@info:title" msgid "Model Errors" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +#: plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" msgstr "Kiinteä näkymä" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +#: plugins/SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Näyttää normaalin kiinteän verkkonäkymän." + +#: plugins/SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Kiinteä näkymä" + +#: plugins/SupportEraser/__init__.py:12 msgctxt "@label" msgid "Support Blocker" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 +#: plugins/SupportEraser/__init__.py:13 msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 +#: plugins/SupportEraser/plugin.json +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "" + +#: plugins/SupportEraser/plugin.json +msgctxt "name" +msgid "Support Eraser" +msgstr "" + +#: plugins/TrimeshReader/__init__.py:15 msgctxt "@item:inlistbox 'Open' is part of the name of this file format." msgid "Open Compressed Triangle Mesh" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: plugins/TrimeshReader/__init__.py:19 msgctxt "@item:inlistbox" msgid "COLLADA Digital Asset Exchange" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: plugins/TrimeshReader/__init__.py:23 msgctxt "@item:inlistbox" msgid "glTF Binary" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: plugins/TrimeshReader/__init__.py:27 msgctxt "@item:inlistbox" msgid "glTF Embedded JSON" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: plugins/TrimeshReader/__init__.py:36 msgctxt "@item:inlistbox" msgid "Stanford Triangle Format" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: plugins/TrimeshReader/__init__.py:40 msgctxt "@item:inlistbox" msgid "Compressed COLLADA Digital Asset Exchange" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" +#: plugins/TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 +#: plugins/TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "" + +#: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "UltiMaker Format Package" +msgstr "" + +#: plugins/UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "" + +#: plugins/UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "" + +#: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80 +#: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115 +#: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180 msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Tasaa alusta" +#: plugins/UFPWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Valitse päivitykset" +#: plugins/UFPWriter/plugin.json +msgctxt "name" +msgid "UFP Writer" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "" + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "UltiMaker-verkkoyhteys" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Yhdistä verkkotulostimeen" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +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 "" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 +msgctxt "@action:button" +msgid "Edit" +msgstr "Muokkaa" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 +#: resources/qml/Preferences/MachinesPage.qml:153 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:186 +#: resources/qml/Preferences/ProfilesPage.qml:321 +msgctxt "@action:button" +msgid "Remove" +msgstr "Poista" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Päivitä" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "Jos tulostinta ei ole luettelossa, lue verkkotulostuksen vianetsintäopas" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 +msgctxt "@label" +msgid "Type" +msgstr "Tyyppi" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 +msgctxt "@label" +msgid "Firmware version" +msgstr "Laiteohjelmistoversio" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 +msgctxt "@label" +msgid "Address" +msgstr "Osoite" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "Tämän osoitteen tulostin ei ole vielä vastannut." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" +msgid "Connect" +msgstr "Yhdistä" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Tulostimen osoite" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 +msgctxt "@action:button" +msgid "Override" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "" +msgstr[1] "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@label" +msgid "Move to top" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155 +msgctxt "@label" +msgid "Delete" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186 +#: resources/qml/MonitorButton.qml:284 +msgctxt "@label" +msgid "Resume" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188 +msgctxt "@label" +msgid "Pausing..." +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190 +msgctxt "@label" +msgid "Resuming..." +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192 +#: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288 +msgctxt "@label" +msgid "Pause" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Abort" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Aborting..." +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218 +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 "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237 +#: resources/qml/MonitorButton.qml:326 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Keskeytä tulostus" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 +msgctxt "@label" +msgid "First available" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +msgctxt "@label:status" +msgid "Aborted" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 +msgctxt "@label:status" +msgid "Finished" +msgstr "Valmis" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +msgctxt "@label:status" +msgid "Failed" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Paused" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Action required" +msgstr "Vaatii toimenpiteitä" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280 +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 "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340 +msgctxt "@label:status" +msgid "Loading..." +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Idle" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361 +msgctxt "@label:status" +msgid "Printing" +msgstr "Tulostetaan" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402 +msgctxt "@label" +msgid "Untitled" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417 +msgctxt "@label" +msgid "Anonymous" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452 +msgctxt "@action:button" +msgid "Details" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 +msgctxt "@label" +msgid "Queued" +msgstr "Jonossa" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "Print jobs" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108 +msgctxt "@label" +msgid "Total print time" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117 +msgctxt "@label" +msgid "Waiting for" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117 +msgctxt "@info" +msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129 +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Tulosta verkon kautta" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 +msgctxt "@action:button" +msgid "Print" +msgstr "Tulosta" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 +msgctxt "@label" +msgid "Printer selection" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162 msgctxt "@action:button" msgid "Print via cloud" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164 msgctxt "@info:status" msgid "Connected via cloud" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276 msgctxt "@action:button" msgid "Monitor print" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278 msgctxt "@action:tooltip" msgid "Track the print in Ultimaker Digital Factory" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:242 -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:261 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:266 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:334 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:343 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:348 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:440 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:352 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:356 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:442 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425 #, 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 "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:443 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426 #, 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 "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:444 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427 #, 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 "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474 msgctxt "@title:window" msgid "Remove printers?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477 #, python-brace-format msgctxt "@label" msgid "" @@ -1647,14 +3461,14 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be undone.\n" "Are you sure you want to continue?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, python-brace-format msgctxt "@info:status" msgid "" @@ -1662,3917 +3476,2662 @@ msgid "" " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 msgctxt "@info:title" msgid "Are you ready for cloud printing?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 msgctxt "@action" msgid "Get started" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24 msgctxt "@action" msgid "Learn more" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 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." +msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 msgctxt "@info:title" msgid "Update your printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 #, 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 "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 msgctxt "@info:title" msgid "Sending materials to printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "" +msgstr[1] "" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29 +#, python-brace-format +msgctxt "info:status Filled in with printer name and printer model." +msgid "Adding printer {name} ({model}) from your account" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "" +msgstr[1] "" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 #, 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 "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 msgctxt "@info:title" msgid "Not a group host" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 msgctxt "@action" msgid "Configure group" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18 +msgctxt "@info:status" +msgid "You will receive a confirmation via email when the print job is approved" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19 +msgctxt "@info:title" +msgid "The print job was successfully submitted" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22 +msgctxt "@action" +msgid "Manage print jobs" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 msgctxt "@info:status" msgid "Please wait until the current job has been sent." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 msgctxt "@info:title" msgid "Print error" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 msgctxt "@info:title" msgid "Network error" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 msgctxt "@info:status" msgid "Sending Print Job" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 msgctxt "@info:status" msgid "Uploading print job to printer." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 msgctxt "@info:status" msgid "Print job queue is full. The printer can't accept a new job." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 msgctxt "@info:title" msgid "Queue Full" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 msgctxt "@info:title" msgid "Data Sent" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "" +msgstr[1] "" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "" +msgstr[1] "" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "Tulosta verkon kautta" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "Tulosta verkon kautta" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64 msgctxt "@info:status" msgid "Connected over the network" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 msgctxt "@action" msgid "Connect via Network" msgstr "Yhdistä verkon kautta" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +#: plugins/UM3NetworkPrinting/src/Utils.py:27 msgctxt "@info:status" msgid "tomorrow" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +#: plugins/UM3NetworkPrinting/src/Utils.py:30 msgctxt "@info:status" msgid "today" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:42 msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB-tulostus" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:43 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print via USB" msgstr "Tulosta USB:n kautta" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:44 msgctxt "@info:tooltip" msgid "Print via USB" msgstr "Tulosta USB:n kautta" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:80 msgctxt "@info:status" msgid "Connected via USB" msgstr "Yhdistetty USB:n kautta" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:110 msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:135 msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:136 msgctxt "@message" msgid "Print in Progress" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D-tiedosto" +#: plugins/USBPrinting/plugin.json +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Hyväksyy GCode-määrittelyt ja lähettää ne tulostimeen. Lisäosa voi myös päivittää laiteohjelmiston." -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Kerrosnäkymä" +#: plugins/USBPrinting/plugin.json +msgctxt "name" +msgid "USB printing" +msgstr "USB-tulostus" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 -msgctxt "@title:window" -msgid "Open Project" -msgstr "Avaa projekti" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:59 -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "Yhteenveto – Cura-projekti" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108 -msgctxt "@info:tooltip" -msgid "How should the conflict in the machine be resolved?" -msgstr "Miten laitteen ristiriita pitäisi ratkaista?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:95 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Tulostimen asetukset" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:104 -msgctxt "@action:label" -msgid "Type" -msgstr "Tyyppi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:192 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -msgctxt "@action:label" -msgid "Printer Group" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:217 -msgctxt "@info:tooltip" -msgid "How should the conflict in the profile be resolved?" -msgstr "Miten profiilin ristiriita pitäisi ratkaista?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:220 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Profiilin asetukset" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:250 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:375 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:244 -msgctxt "@action:label" -msgid "Name" -msgstr "Nimi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:268 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:261 -msgctxt "@action:label" -msgid "Intent" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:286 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:228 -msgctxt "@action:label" -msgid "Not in profile" -msgstr "Ei profiilissa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:292 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:233 -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "%1 ohitus" -msgstr[1] "%1 ohitusta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 -msgctxt "@action:label" -msgid "Derivative from" -msgstr "Johdettu seuraavista" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:311 -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "%1, %2 ohitus" -msgstr[1] "%1, %2 ohitusta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:333 -msgctxt "@info:tooltip" -msgid "How should the conflict in the material be resolved?" -msgstr "Miten materiaalin ristiriita pitäisi ratkaista?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:360 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Materiaaliasetukset" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:396 -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "Asetusten näkyvyys" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 -msgctxt "@action:label" -msgid "Mode" -msgstr "Tila" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 -msgctxt "@action:label" -msgid "Visible settings:" -msgstr "Näkyvät asetukset:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "%1/%2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:447 -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 -msgctxt "@action:button" -msgid "Open" -msgstr "Avaa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 -msgctxt "@action:button" -msgid "Open project anyway" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 -msgctxt "@action:button" -msgid "Install missing material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 -msgctxt "@button" -msgid "Restore" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:212 -msgctxt "@button" -msgid "Sign in" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 -msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 -msgctxt "@option" -msgid "Save Cura project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 -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 "Laiteohjelmisto on suoraan 3D-tulostimessa toimiva ohjelma. Laiteohjelmisto ohjaa askelmoottoreita, säätää lämpötilaa ja saa tulostimen toimimaan." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 -msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "Uusien tulostimien mukana toimitettava laiteohjelmisto toimii, mutta uusissa versioissa on yleensä enemmän toimintoja ja parannuksia." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Päivitä laiteohjelmisto automaattisesti" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Lataa mukautettu laiteohjelmisto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Valitse mukautettu laiteohjelmisto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Laiteohjelmiston päivitys" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Päivitetään laiteohjelmistoa." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Laiteohjelmiston päivitys suoritettu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Laiteohjelmiston päivitys epäonnistui tuntemattoman virheen takia." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Laiteohjelmiston päivitys epäonnistui tietoliikennevirheen takia." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Laiteohjelmiston päivitys epäonnistui tiedoston lukemiseen tai kirjoittamiseen liittyvän virheen takia." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Laiteohjelmiston päivitys epäonnistui puuttuvan laiteohjelmiston takia." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:14 -msgctxt "@title:window" -msgid "Convert Image" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 -msgctxt "@action:label" -msgid "Height (mm)" -msgstr "Korkeus (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "Kunkin pikselin suurin etäisyys \"Pohja\"-arvosta." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 -msgctxt "@action:label" -msgid "Base (mm)" -msgstr "Pohja (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 -msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "Pohjan korkeus alustasta millimetreinä." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 -msgctxt "@action:label" -msgid "Width (mm)" -msgstr "Leveys (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 -msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 -msgctxt "@action:label" -msgid "Depth (mm)" -msgstr "Syvyys (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 -msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "Syvyys millimetreinä alustalla" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 -msgctxt "@item:inlistbox" -msgid "Darker is higher" -msgstr "Tummempi on korkeampi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -msgctxt "@item:inlistbox" -msgid "Lighter is higher" -msgstr "Vaaleampi on korkeampi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 -msgctxt "@info:tooltip" -msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:205 -msgctxt "@action:label" -msgid "Color Model" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:224 -msgctxt "@item:inlistbox" -msgid "Linear" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 -msgctxt "@item:inlistbox" -msgid "Translucency" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 -msgctxt "@info:tooltip" -msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 -msgctxt "@action:label" -msgid "1mm Transmittance (%)" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 -msgctxt "@info:tooltip" -msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 -msgctxt "@action:label" -msgid "Smoothing" -msgstr "Tasoitus" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:298 -msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "Kuvassa käytettävän tasoituksen määrä." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:143 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:80 -msgctxt "@action:button" -msgid "OK" -msgstr "OK" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Tulostin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Suuttimen koko" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Suuttimen X-siirtymä" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Suuttimen Y-siirtymä" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (leveys)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (syvyys)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (korkeus)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Alustan muoto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 -msgctxt "@label" -msgid "Origin at center" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 -msgctxt "@label" -msgid "Heated bed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 -msgctxt "@label" -msgid "Heated build volume" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 -msgctxt "@label" -msgid "G-code flavor" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 -msgctxt "@label" -msgid "X min" -msgstr "X väh." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 -msgctxt "@label" -msgid "Y min" -msgstr "Y väh." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 -msgctxt "@label" -msgid "X max" -msgstr "X enint." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 -msgctxt "@label" -msgid "Y max" -msgstr "Y enint." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 -msgctxt "@label" -msgid "Gantry Height" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Suulakkeiden määrä" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400 -msgctxt "@title:label" -msgid "End G-code" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 -msgctxt "@title" -msgid "Changes from your account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -msgctxt "@button" -msgid "Dismiss" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:118 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:175 -msgctxt "@button" -msgid "Next" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 -msgctxt "@title" -msgid "Install missing Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 -msgctxt "@button" -msgid "Plugin license agreement" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47 -msgctxt "@text" -msgid "Please read and agree with the plugin licence." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 -msgctxt "@button" -msgid "Accept" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 -msgctxt "@header" -msgid "Manage packages" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15 -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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 -msgctxt "@info:tooltip" -msgid "Manage packages" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 -msgctxt "@title" -msgid "Loading..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 -msgctxt "@button" -msgid "Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 -msgctxt "@button" -msgid "Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 -msgctxt "@info" -msgid "Search in the browser" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:271 -msgctxt "@button" -msgid "In order to use the package you will need to restart Cura" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:279 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:8 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MissingPackages.qml:8 -msgctxt "@header" -msgid "Install Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 -msgctxt "@text" -msgid "Select and install material profiles optimised for your Ultimaker 3D printers." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:101 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:207 -msgctxt "@button:label" -msgid "Learn More" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:172 -msgctxt "@label Is followed by the name of an author" -msgid "By" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Enable" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Disable" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 -msgctxt "@button" -msgid "Downgrading..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 -msgctxt "@button" -msgid "Downgrade" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 -msgctxt "@button" -msgid "Installing..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 -msgctxt "@button" -msgid "Install" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 -msgctxt "@button" -msgid "Uninstall" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Updating..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Update" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 -msgctxt "@header" -msgid "Package details" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 -msgctxt "@button:tooltip" -msgid "Back" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 -msgctxt "@header" -msgid "Description" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 -msgctxt "@header" -msgid "Compatible printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:134 -msgctxt "@info" -msgid "No compatibility information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:152 -msgctxt "@header" -msgid "Compatible support materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176 -msgctxt "@info No materials" -msgid "None" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:193 -msgctxt "@header" -msgid "Compatible with Material Station" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "Yes" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "No" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:219 -msgctxt "@header" -msgid "Optimized for Air Manager" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Visit plug-in website" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Website" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:252 -msgctxt "@button" -msgid "Buy spool" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:261 -msgctxt "@button" -msgid "Safety datasheet" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:270 -msgctxt "@button" -msgid "Technical datasheet" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Failed to load packages:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Retry?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:167 -msgctxt "@button" -msgid "Loading" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No more results to load" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No results found with current filter" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:226 -msgctxt "@button" -msgid "Load more" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8 -msgctxt "@header" -msgid "Install Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12 -msgctxt "@text" -msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 -msgctxt "@info" -msgid "Ultimaker Verified Plug-in" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 -msgctxt "@info" -msgid "Ultimaker Certified Material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 -msgctxt "@info" -msgid "Ultimaker Verified Package" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 -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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 -msgctxt "@info" -msgid "Please connect your printer to the network." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 -msgctxt "@label link to technical assistance" -msgid "View user manuals online" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:163 -msgctxt "@info" -msgid "In order to monitor your print from Cura, please connect the printer." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 -msgctxt "@label" -msgid "Mesh Type" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 -msgctxt "@label" -msgid "Normal model" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 -msgctxt "@label" -msgid "Print as support" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Valitse asetukset" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Valitse tätä mallia varten mukautettavat asetukset" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Suodatin..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Näytä kaikki" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Jälkikäsittelylisäosa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Jälkikäsittelykomentosarjat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" -msgid "Add a script" -msgstr "Lisää komentosarja" +msgid "Level build plate" +msgstr "Tasaa alusta" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 -msgctxt "@label" -msgid "Settings" -msgstr "Asetukset" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:459 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:463 -msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:47 -msgctxt "@label" -msgid "Color scheme" -msgstr "Värimalli" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Materiaalin väri" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Linjojen tyyppi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Yhteensopivuustila" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 -msgctxt "@label" -msgid "Travels" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 -msgctxt "@label" -msgid "Helpers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 -msgctxt "@label" -msgid "Shell" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:64 -msgctxt "@label" -msgid "Infill" -msgstr "Täyttö" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Starts" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Näytä vain yläkerrokset" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Näytä 5 yksityiskohtaista kerrosta ylhäällä" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Yläosa/alaosa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Sisäseinämä" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 -msgctxt "@label" -msgid "min" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 -msgctxt "@label" -msgid "max" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 -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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 msgctxt "@title" msgid "Build Plate Leveling" msgstr "Alustan tasaaminen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 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 "Voit säätää alustaa, jotta tulosteista tulisi hyviä. Kun napsautat \"Siirry seuraavaan positioon\", suutin siirtyy eri positioihin, joita voidaan säätää." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 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." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 msgctxt "@action:button" msgid "Start Build Plate Leveling" msgstr "Aloita alustan tasaaminen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 msgctxt "@action:button" msgid "Move to Next Position" msgstr "Siirry seuraavaan positioon" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Valitse tähän Ultimaker Original -laitteeseen tehdyt päivitykset" +#: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "Valitse päivitykset" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this UltiMaker Original" +msgstr "Valitse tähän UltiMaker Original -laitteeseen tehdyt päivitykset" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 msgctxt "@label" msgid "Heated Build Plate (official kit or self-built)" msgstr "Lämmitettävä alusta (virallinen sarja tai itse rakennettu)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Yhdistä verkkotulostimeen" +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "UltiMaker-laitteiden toimintojen käyttö (esim. pöydän tasaaminen, päivitysten valinta yms.)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -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." +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "UltiMaker machine actions" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -msgctxt "@label" -msgid "Select your printer from the list below:" +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Päivittää kokoonpanon versiosta Cura 2.1 versioon Cura 2.2." + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Päivitys versiosta 2.1 versioon 2.2" + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Päivittää kokoonpanon versiosta Cura 2.2 versioon Cura 2.4." + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Päivitys versiosta 2.2 versioon 2.4" + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Päivittää kokoonpanon versiosta Cura 2.5 versioon Cura 2.6." + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Päivitys versiosta 2.5 versioon 2.6" + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Päivittää kokoonpanon versiosta Cura 2.6 versioon Cura 2.7." + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Päivitys versiosta 2.6 versioon 2.7" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Päivittää kokoonpanon versiosta Cura 2.7 versioon Cura 3.0." + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Päivitys versiosta 2.7 versioon 3.0" + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Päivittää kokoonpanon versiosta Cura 3.0 versioon Cura 3.1." + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Päivitys versiosta 3.0 versioon 3.1" + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Päivittää kokoonpanon versiosta Cura 3.2 versioon Cura 3.3." + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Päivitys versiosta 3.2 versioon 3.3" + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Päivittää kokoonpanon versiosta Cura 3.3 versioon Cura 3.4." + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Päivitys versiosta 3.3 versioon 3.4" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Päivittää kokoonpanon versiosta Cura 3.4 versioon Cura 3.5." + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Päivitys versiosta 3.4 versioon 3.5" + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Päivittää kokoonpanon versiosta Cura 3.5 versioon Cura 4.0." + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Päivitys versiosta 3.5 versioon 4.0" + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Päivittää kokoonpanon versiosta Cura 4.0 versioon Cura 4.1." + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Päivitys versiosta 4.0 versioon 4.1" + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Päivittää kokoonpanon versiosta Cura 4.11 versioon Cura 4.12." + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Päivitys versiosta 4.11 versioon 4.12" + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Päivittää kokoonpanon versiosta Cura 4.13 versioon Cura 5.0." + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Päivitys versiosta 4.13 versioon 5.0" + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Päivittää kokoonpanon versiosta Cura 4.1 versioon Cura 4.2." + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Päivitys versiosta 4.1 versioon 4.2" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Päivittää kokoonpanon versiosta Cura 4.2 versioon Cura 4.3." + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Päivitys versiosta 4.2 versioon 4.3" + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Päivittää kokoonpanon versiosta Cura 4.3 versioon Cura 4.4." + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Päivitys versiosta 4.3 versioon 4.4" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Päivittää kokoonpanon versiosta Cura 4.4 versioon Cura 4.5." + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Päivitys versiosta 4.4 versioon 4.5" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Päivittää kokoonpanon versiosta Cura 4.5 versioon Cura 4.6." + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Päivitys versiosta 4.5 versioon 4.6" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Päivittää kokoonpanon versiosta Cura 4.6.0 versioon Cura 4.6.2." + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Päivitys versiosta 4.6.0 versioon 4.6.2" + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Päivittää kokoonpanon versiosta Cura 4.6.2 versioon Cura 4.7." + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Päivitys versiosta 4.6.2 versioon 4.7" + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Päivittää kokoonpanon versiosta Cura 4.7 versioon Cura 4.8." + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Päivitys versiosta 4.7 versioon 4.8" + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Päivittää kokoonpanon versiosta Cura 4.8 versioon Cura 4.9." + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Päivitys versiosta 4.8 versioon 4.9" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Päivittää kokoonpanon versiosta Cura 4.9 versioon Cura 4.10." + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Päivitys versiosta 4.9 versioon 4.10" + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Päivittää kokoonpanon versiosta Cura 5.2 versioon Cura 5.3." + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Päivitys versiosta 5.2 versioon 5.4" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 -msgctxt "@action:button" -msgid "Edit" -msgstr "Muokkaa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:140 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:321 -msgctxt "@action:button" -msgid "Remove" -msgstr "Poista" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Päivitä" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "Jos tulostinta ei ole luettelossa, lue verkkotulostuksen vianetsintäopas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 -msgctxt "@label" -msgid "Type" -msgstr "Tyyppi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 -msgctxt "@label" -msgid "Firmware version" -msgstr "Laiteohjelmistoversio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 -msgctxt "@label" -msgid "Address" -msgstr "Osoite" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "Tämän osoitteen tulostin ei ole vielä vastannut." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 -msgctxt "@action:button" -msgid "Connect" -msgstr "Yhdistä" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Tulostimen osoite" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 -msgctxt "@action:button" -msgid "Override" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:178 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:175 -msgctxt "@label" -msgid "Glass" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154 -msgctxt "@label" -msgid "Aluminum" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:284 -msgctxt "@label" -msgid "Resume" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:288 -msgctxt "@label" -msgid "Pause" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:142 -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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:151 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:160 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Keskeytä tulostus" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:239 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:275 -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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335 -msgctxt "@label:status" -msgid "Loading..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347 -msgctxt "@label:status" -msgid "Idle" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Printing" -msgstr "Tulostetaan" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397 -msgctxt "@label" -msgid "Untitled" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:412 -msgctxt "@label" -msgid "Anonymous" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:433 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:447 -msgctxt "@action:button" -msgid "Details" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 -msgctxt "@label" -msgid "First available" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborted" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 -msgctxt "@label:status" -msgid "Finished" -msgstr "Valmis" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Failed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Paused" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Action required" -msgstr "Vaatii toimenpiteitä" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 -msgctxt "@label" -msgid "Queued" -msgstr "Jonossa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:90 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:98 -msgctxt "@label" -msgid "Print jobs" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107 -msgctxt "@label" -msgid "Total print time" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116 -msgctxt "@label" -msgid "Waiting for" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Tulosta verkon kautta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 -msgctxt "@action:button" -msgid "Print" -msgstr "Tulosta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 -msgctxt "@label" -msgid "Printer selection" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 +#: plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3D-tiedosto" + +#: plugins/X3DReader/plugin.json +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Tukee X3D-tiedostojen lukemista." + +#: plugins/X3DReader/plugin.json +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D-lukija" + +#: plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Kerrosnäkymä" + +#: plugins/XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Näyttää kerrosnäkymän." + +#: plugins/XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Kerrosnäkymä" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Materiaaliprofiilit" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Mahdollistaa XML-pohjaisten materiaaliprofiilien lukemisen ja kirjoittamisen." + +#: resources/qml/Account/AccountWidget.qml:24 msgctxt "@action:button" msgid "Sign in" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: resources/qml/Account/GeneralOperations.qml:19 +#: resources/qml/WelcomePages/CloudContent.qml:64 msgctxt "@label" -msgid "Sign in to the Ultimaker platform" +msgid "Sign in to the UltiMaker platform" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 +#: resources/qml/Account/GeneralOperations.qml:39 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" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 +#: resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" -msgid "Create a free Ultimaker account" +msgid "Create a free UltiMaker account" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 +#: resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 +#: resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 +#: resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 +#: resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 +#: resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +#: resources/qml/Account/UserOperations.qml:78 msgctxt "@label The argument is a timestamp" msgid "Last update: %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +#: resources/qml/Account/UserOperations.qml:107 msgctxt "@button" -msgid "Ultimaker Account" +msgid "UltiMaker Account" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +#: resources/qml/Account/UserOperations.qml:126 msgctxt "@button" msgid "Sign Out" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" msgid "No time estimation available" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:77 msgctxt "@label" msgid "No cost estimation available" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:127 msgctxt "@button" msgid "Preview" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" msgid "Time estimation" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 +#: resources/qml/ActionPanel/PrintJobInformation.qml:107 msgctxt "@label" msgid "Material estimation" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:156 +#: resources/qml/ActionPanel/PrintJobInformation.qml:156 msgctxt "@label m for meter" msgid "%1m" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:157 +#: resources/qml/ActionPanel/PrintJobInformation.qml:157 msgctxt "@label g for grams" msgid "%1g" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:54 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Viipaloidaan..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:78 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:78 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Processing" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Slice" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:115 msgctxt "@label" msgid "Start the slicing process" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:132 msgctxt "@button" msgid "Cancel" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 +#: resources/qml/Actions.qml:81 msgctxt "@action:inmenu" msgid "Show Online Troubleshooting" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 +#: resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "Vaihda koko näyttöön" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 +#: resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 +#: resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "&Kumoa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 +#: resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "Tee &uudelleen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 +#: resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "&Lopeta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 +#: resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 +#: resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 +#: resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 +#: resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 +#: resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 +#: resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 +#: resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Määritä Curan asetukset..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 +#: resources/qml/Actions.qml:197 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "L&isää tulostin..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 +#: resources/qml/Actions.qml:203 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "Tulostinten &hallinta..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 +#: resources/qml/Actions.qml:210 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Hallitse materiaaleja..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:216 -msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate." +#: resources/qml/Actions.qml:218 +msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." msgid "Add more materials from Marketplace" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 +#: resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "&Päivitä nykyiset asetukset tai ohitukset profiiliin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 +#: resources/qml/Actions.qml:233 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "&Hylkää tehdyt muutokset" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 +#: resources/qml/Actions.qml:245 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "&Luo profiili nykyisten asetusten tai ohitusten perusteella..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 +#: resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "Profiilien hallinta..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 +#: resources/qml/Actions.qml:259 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Näytä sähköinen &dokumentaatio" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 +#: resources/qml/Actions.qml:267 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "Ilmoita &virheestä" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 +#: resources/qml/Actions.qml:275 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 +#: resources/qml/Actions.qml:289 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "Tietoja..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 +#: resources/qml/Actions.qml:296 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 +#: resources/qml/Actions.qml:306 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 +#: resources/qml/Actions.qml:315 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 +#: resources/qml/Actions.qml:324 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Poista malli" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 +#: resources/qml/Actions.qml:332 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Ke&skitä malli alustalle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 +#: resources/qml/Actions.qml:338 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "&Ryhmittele mallit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 +#: resources/qml/Actions.qml:358 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Poista mallien ryhmitys" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 +#: resources/qml/Actions.qml:368 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "&Yhdistä mallit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 +#: resources/qml/Actions.qml:378 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&Kerro malli..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 +#: resources/qml/Actions.qml:385 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "Valitse kaikki mallit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 +#: resources/qml/Actions.qml:395 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "Tyhjennä tulostusalusta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 +#: resources/qml/Actions.qml:405 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "Lataa kaikki mallit uudelleen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 +#: resources/qml/Actions.qml:414 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Järjestä kaikki mallit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 +#: resources/qml/Actions.qml:422 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Järjestä valinta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 +#: resources/qml/Actions.qml:429 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Määritä kaikkien mallien positiot uudelleen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 +#: resources/qml/Actions.qml:436 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "Määritä kaikkien mallien muutokset uudelleen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 +#: resources/qml/Actions.qml:445 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Avaa tiedosto(t)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 +#: resources/qml/Actions.qml:455 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Uusi projekti..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 +#: resources/qml/Actions.qml:462 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Näytä määrityskansio" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 +#: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Määritä asetusten näkyvyys..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 msgctxt "@label:button" msgid "My printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 msgctxt "@tooltip:button" msgid "Monitor printers in Ultimaker Digital Factory." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 msgctxt "@label:button" msgid "Print jobs" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 msgctxt "@tooltip:button" msgid "Monitor print jobs and reprint from your print history." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." +msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." +msgid "Become a 3D printing expert with UltiMaker e-learning." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 msgctxt "@label:button" -msgid "Ultimaker support" +msgid "UltiMaker support" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." +msgid "Learn how to get started with UltiMaker Cura." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 msgctxt "@label:button" msgid "Ask a question" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." +msgid "Consult the UltiMaker Community." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 msgctxt "@label:button" msgid "Report a bug" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." +msgid "Visit the UltiMaker website." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 +#: resources/qml/ColorDialog.qml:110 msgctxt "@label" msgid "Hex" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 +#: resources/qml/Cura.qml:256 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +#: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14 msgctxt "@title:tab" msgid "General" msgstr "Yleiset" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +#: resources/qml/Cura.qml:470 msgctxt "@title:tab" msgid "Settings" msgstr "Asetukset" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:468 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:17 +#: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17 msgctxt "@title:tab" msgid "Printers" msgstr "Tulostimet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:470 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70 +#: resources/qml/Cura.qml:474 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:70 msgctxt "@title:tab" msgid "Materials" msgstr "Materiaalit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:472 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:57 +#: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57 msgctxt "@title:tab" msgid "Profiles" msgstr "Profiilit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +#: resources/qml/Cura.qml:581 msgctxt "@title:window %1 is the application name" msgid "Closing %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:590 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:599 +#: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591 msgctxt "@label %1 is the application name" msgid "Are you sure you want to exit %1?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:637 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 +#: resources/qml/Cura.qml:629 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 msgctxt "@title:window" msgid "Open file(s)" msgstr "Avaa tiedosto(t)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +#: resources/qml/Cura.qml:734 msgctxt "@window:title" msgid "Install Package" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +#: resources/qml/Cura.qml:741 msgctxt "@title:window" msgid "Open File(s)" msgstr "Avaa tiedosto(t)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +#: resources/qml/Cura.qml:743 msgctxt "@text:window" msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." msgstr "Löysimme vähintään yhden Gcode-tiedoston valitsemiesi tiedostojen joukosta. Voit avata vain yhden Gcode-tiedoston kerrallaan. Jos haluat avata Gcode-tiedoston, valitse vain yksi." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:831 +#: resources/qml/Cura.qml:828 msgctxt "@title:window" msgid "Add Printer" msgstr "Lisää tulostin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +#: resources/qml/Cura.qml:836 msgctxt "@title:window" msgid "What's New" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: resources/qml/Cura.qml:890 +msgctxt "@title:window" +msgid "Save Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:891 +msgctxt "@textfield:placeholder" +msgid "New Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:892 +msgctxt "@info" +msgid "Custom profile name:" +msgstr "" + +#: resources/qml/Cura.qml:909 +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 "" + +#: resources/qml/Cura.qml:917 +msgctxt "@action:button" +msgid "Learn more about Cura print profiles" +msgstr "" + +#: resources/qml/Cura.qml:926 +msgctxt "@button" +msgid "Save new profile" +msgstr "" + +#: resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: resources/qml/Dialogs/AboutDialog.qml:59 msgctxt "@label" msgid "version: %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: resources/qml/Dialogs/AboutDialog.qml:74 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Kokonaisvaltainen sulatettavan tulostuslangan 3D-tulostusratkaisu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: resources/qml/Dialogs/AboutDialog.qml:87 msgctxt "@info:credit" msgid "" -"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura is developed by UltiMaker in cooperation with the community.\n" "Cura proudly uses the following open source projects:" msgstr "" "Cura-ohjelman on kehittänyt Ultimaker B.V. yhteistyössä käyttäjäyhteisön kanssa.\n" "Cura hyödyntää seuraavia avoimeen lähdekoodiin perustuvia projekteja:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label Description for application component" msgid "Graphical user interface" msgstr "Graafinen käyttöliittymä" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label Description for application component" msgid "Application framework" msgstr "Sovelluskehys" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label Description for application component" msgid "G-code generator" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label Description for application component" msgid "Interprocess communication library" msgstr "Prosessien välinen tietoliikennekirjasto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:142 +msgctxt "@label Description for application component" msgid "Python bindings for libnest2d" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label Description for application component" msgid "Polygon packing library, developed by Prusa Research" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:144 +msgctxt "@label Description for application component" msgid "Support library for handling 3MF files" msgstr "Tukikirjasto 3MF-tiedostojen käsittelyyn" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:145 +msgctxt "@label Description for application component" msgid "Support library for file metadata and streaming" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Ohjelmointikieli" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label Description for application dependency" msgid "GUI framework" msgstr "GUI-kehys" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label Description for application dependency" msgid "GUI framework bindings" msgstr "GUI-kehyksen sidonnat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label Description for application dependency" msgid "C/C++ Binding library" msgstr "C/C++ -sidontakirjasto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:152 +msgctxt "@label Description for application dependency" msgid "Data interchange format" msgstr "Data Interchange Format" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "Font" msgstr "Fontti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label Description for application dependency" msgid "Polygon clipping library" msgstr "Monikulmion leikkauskirjasto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label Description for application dependency" msgid "JSON parser" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:158 +msgctxt "@label Description for application dependency" msgid "Utility functions, including an image loader" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:159 +msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:162 +#: resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label Description for application dependency" msgid "Root Certificates for validating SSL trustworthiness" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label Description for application dependency" msgid "Compatibility between Python 2 and 3" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label Description for application dependency" msgid "Support library for system keyring access" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label Description for application dependency" msgid "Support library for faster math" msgstr "Nopeamman laskennan tukikirjasto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label Description for application dependency" msgid "Support library for handling STL files" msgstr "STL-tiedostojen käsittelyn tukikirjasto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label Description for application dependency" msgid "Python bindings for Clipper" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Sarjatietoliikennekirjasto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label Description for application dependency" msgid "Support library for scientific computing" msgstr "Tieteellisen laskennan tukikirjasto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 -msgctxt "@Label" +#: resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@Label Description for application dependency" msgid "Python Error tracking library" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:172 +msgctxt "@label Description for application dependency" msgid "Support library for handling triangular meshes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:173 +msgctxt "@label Description for application dependency" msgid "ZeroConf discovery library" msgstr "ZeroConf-etsintäkirjasto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label Description for development tool" msgid "Dependency and package manager" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label Description for development tool" msgid "Packaging Python-applications" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:179 +msgctxt "@label Description for development tool" msgid "Linux cross-distribution application deployment" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:180 +msgctxt "@label Description for development tool" msgid "Generating Windows installers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 msgctxt "@title:window" msgid "Open project file" msgstr "Avaa projektitiedosto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84 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 "Tämä on Cura-projektitiedosto. Haluatko avata sen projektina vai tuoda siinä olevat mallit?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:90 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91 msgctxt "@text:window" msgid "Remember my choice" msgstr "Muista valintani" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105 msgctxt "@action:button" msgid "Open as project" msgstr "Avaa projektina" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110 msgctxt "@action:button" msgid "Import models" msgstr "Tuo mallit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:17 +msgctxt "@title:window" +msgid "Select Printer" +msgstr "" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:54 +msgctxt "@title:label" +msgid "Compatible Printers" +msgstr "" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:110 +msgctxt "@description" +msgid "No compatible printers, that are currently online, were found." +msgstr "" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Hylkää tai säilytä muutokset" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:49 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64 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 "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90 msgctxt "@title:column" msgid "Profile settings" msgstr "Profiilin asetukset" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92 msgctxt "@title:column" msgid "Current changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:799 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123 +#: resources/qml/Preferences/GeneralPage.qml:820 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Kysy aina" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Hylkää äläkä kysy uudelleen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Säilytä äläkä kysy uudelleen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157 msgctxt "@action:button" msgid "Discard changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164 msgctxt "@action:button" msgid "Keep changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171 +msgctxt "@action:button" +msgid "Save as new custom profile" +msgstr "" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178 +msgctxt "@action:button" +msgid "Save changes" +msgstr "" + +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 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 "Löysimme vähintään yhden projektitiedoston valitsemiesi tiedostojen joukosta. Voit avata vain yhden projektitiedoston kerrallaan. Suosittelemme, että tuot vain malleja niistä tiedostoista. Haluatko jatkaa?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 msgctxt "@action:button" msgid "Import all as models" msgstr "Tuo kaikki malleina" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 +#: resources/qml/Dialogs/RenameDialog.qml:23 +msgctxt "@title:window" +msgid "Rename" +msgstr "" + +#: resources/qml/Dialogs/RenameDialog.qml:24 +msgctxt "@info" +msgid "Please provide a new name." +msgstr "" + +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 msgctxt "@title:window" msgid "Save Project" msgstr "Tallenna projekti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177 msgctxt "@action:label" msgid "Extruder %1" msgstr "Suulake %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & materiaali" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195 msgctxt "@action:label" msgid "Material" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "Älä näytä projektin yhteenvetoa tallennettaessa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298 msgctxt "@action:button" msgid "Save" msgstr "Tallenna" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -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" -msgstr[0] "Tulosta valittu malli asetuksella %1" -msgstr[1] "Tulosta valitut mallit asetuksella %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:93 +#: resources/qml/JobSpecs.qml:93 msgctxt "@text Print job name" msgid "Untitled" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 +#: resources/qml/MainWindow/ApplicationMenu.qml:63 +#: resources/qml/Menus/SettingsMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 +#: resources/qml/MainWindow/ApplicationMenu.qml:87 msgctxt "@title:window" msgid "New project" msgstr "Uusi projekti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88 +#: resources/qml/MainWindow/ApplicationMenu.qml:88 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 "Haluatko varmasti aloittaa uuden projektin? Se tyhjentää alustan ja kaikki tallentamattomat asetukset." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135 +#: resources/qml/MainWindow/MainWindowHeader.qml:135 msgctxt "@action:button" msgid "Marketplace" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +#: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 msgctxt "@header" msgid "Configurations" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 msgctxt "@label" msgid "Marketplace" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 msgctxt "@label" msgid "Loading available configurations from the printer..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 msgctxt "@label" msgid "The configurations are not available because the printer is disconnected." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 msgctxt "@tooltip" msgid "The configuration of this extruder is not allowed, and prohibits slicing." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 msgctxt "@tooltip" msgid "There are no profiles matching the configuration of this extruder." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 msgctxt "@label" msgid "Select configuration" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 msgctxt "@label" msgid "Configurations" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 msgctxt "@header" msgid "Custom" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:62 -msgctxt "@label" -msgid "Printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:217 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173 msgctxt "@label" msgid "Enabled" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222 msgctxt "@label" msgid "Material" msgstr "Materiaali" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348 msgctxt "@label" msgid "Use glue for better adhesion with this material combination." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:29 +#: resources/qml/Menus/ContextMenu.qml:29 msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "Tulosta valittu malli asetuksella:" msgstr[1] "Tulosta valitut mallit asetuksella:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:92 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Kerro valittu malli" msgstr[1] "Kerro valitut mallit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:123 msgctxt "@label" msgid "Number of Copies" msgstr "Kopioiden määrä" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/EditMenu.qml:12 +#: resources/qml/Menus/EditMenu.qml:12 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "&Muokkaa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ExtensionMenu.qml:13 +#: resources/qml/Menus/ExtensionMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "Laa&jennukset" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 +#: resources/qml/Menus/FileMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "Tie&dosto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:45 +#: resources/qml/Menus/FileMenu.qml:45 msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:78 +#: resources/qml/Menus/FileMenu.qml:78 msgctxt "@title:menu menubar:file" msgid "&Export..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:89 +#: resources/qml/Menus/FileMenu.qml:89 msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/HelpMenu.qml:14 +#: resources/qml/Menus/HelpMenu.qml:14 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "&Ohje" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +#: resources/qml/Menus/MaterialMenu.qml:13 msgctxt "@label:category menu label" msgid "Material" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:53 +#: resources/qml/Menus/MaterialMenu.qml:53 msgctxt "@label:category menu label" msgid "Favorites" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:78 +#: resources/qml/Menus/MaterialMenu.qml:78 msgctxt "@label:category menu label" msgid "Generic" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +#: resources/qml/Menus/OpenFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open File(s)..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PreferencesMenu.qml:21 +#: resources/qml/Menus/PreferencesMenu.qml:21 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "L&isäasetukset" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:13 +#: resources/qml/Menus/PrinterMenu.qml:13 msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "&Tulostin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:17 +#: resources/qml/Menus/PrinterMenu.qml:17 msgctxt "@label:category menu label" msgid "Network enabled printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:50 +#: resources/qml/Menus/PrinterMenu.qml:50 msgctxt "@label:category menu label" msgid "Local printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +#: resources/qml/Menus/RecentFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open &Recent" msgstr "Avaa &viimeisin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +#: resources/qml/Menus/SaveProjectMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Save Project..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:34 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Materiaali" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:49 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Aseta aktiiviseksi suulakepuristimeksi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:55 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:63 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 msgctxt "@action:inmenu" msgid "Visible Settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 msgctxt "@action:inmenu" msgid "Collapse All Categories" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 msgctxt "@action:inmenu" msgid "Manage Setting Visibility..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:13 +#: resources/qml/Menus/SettingsMenu.qml:34 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Materiaali" + +#: resources/qml/Menus/SettingsMenu.qml:49 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Aseta aktiiviseksi suulakepuristimeksi" + +#: resources/qml/Menus/SettingsMenu.qml:55 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "" + +#: resources/qml/Menus/SettingsMenu.qml:63 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "" + +#: resources/qml/Menus/ViewMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&View" msgstr "&Näytä" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:17 +#: resources/qml/Menus/ViewMenu.qml:17 msgctxt "@action:inmenu menubar:view" msgid "&Camera position" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:30 +#: resources/qml/Menus/ViewMenu.qml:30 msgctxt "@action:inmenu menubar:view" msgid "Camera view" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 +#: resources/qml/Menus/ViewMenu.qml:48 msgctxt "@action:inmenu menubar:view" msgid "Perspective" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +#: resources/qml/Menus/ViewMenu.qml:59 msgctxt "@action:inmenu menubar:view" msgid "Orthographic" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:115 +#: resources/qml/MonitorButton.qml:115 msgctxt "@label:MonitorStatus" msgid "Not connected to a printer" msgstr "Ei yhteyttä tulostimeen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 +#: resources/qml/MonitorButton.qml:119 msgctxt "@label:MonitorStatus" msgid "Printer does not accept commands" msgstr "Tulostin ei hyväksy komentoja" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:129 +#: resources/qml/MonitorButton.qml:129 msgctxt "@label:MonitorStatus" msgid "In maintenance. Please check the printer" msgstr "Huolletaan. Tarkista tulostin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:140 +#: resources/qml/MonitorButton.qml:140 msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Yhteys tulostimeen menetetty" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +#: resources/qml/MonitorButton.qml:142 msgctxt "@label:MonitorStatus" msgid "Printing..." msgstr "Tulostetaan..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +#: resources/qml/MonitorButton.qml:145 msgctxt "@label:MonitorStatus" msgid "Paused" msgstr "Keskeytetty" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +#: resources/qml/MonitorButton.qml:148 msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Valmistellaan..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +#: resources/qml/MonitorButton.qml:150 msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Poista tuloste" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +#: resources/qml/MonitorButton.qml:318 msgctxt "@label" msgid "Abort Print" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:327 +#: resources/qml/MonitorButton.qml:327 msgctxt "@label" msgid "Are you sure you want to abort the print?" msgstr "Haluatko varmasti keskeyttää tulostuksen?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:109 +#: resources/qml/ObjectItemButton.qml:109 msgctxt "@label" msgid "Is printed as support." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:112 +#: resources/qml/ObjectItemButton.qml:112 msgctxt "@label" msgid "Other models overlapping with this model are modified." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:115 +#: resources/qml/ObjectItemButton.qml:115 msgctxt "@label" msgid "Infill overlapping with this model is modified." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:118 +#: resources/qml/ObjectItemButton.qml:118 msgctxt "@label" msgid "Overlaps with this model are not supported." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:125 +#: resources/qml/ObjectItemButton.qml:125 msgctxt "@label %1 is the number of settings it overrides." msgid "Overrides %1 setting." msgid_plural "Overrides %1 settings." msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 +#: resources/qml/ObjectSelector.qml:59 msgctxt "@label" msgid "Object list" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:131 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:24 +#: resources/qml/Preferences/GeneralPage.qml:134 +#: resources/qml/Preferences/SettingVisibilityPage.qml:24 msgctxt "@action:button" msgid "Defaults" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +#: resources/qml/Preferences/GeneralPage.qml:172 msgctxt "@label" msgid "Interface" msgstr "Käyttöliittymä" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +#: resources/qml/Preferences/GeneralPage.qml:215 msgctxt "@heading" msgid "-- incomplete --" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +#: resources/qml/Preferences/GeneralPage.qml:261 msgctxt "@label" msgid "Currency:" msgstr "Valuutta:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:274 +#: resources/qml/Preferences/GeneralPage.qml:277 msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." msgid "Theme*:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +#: resources/qml/Preferences/GeneralPage.qml:323 msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Viipaloi automaattisesti, kun asetuksia muutetaan." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +#: resources/qml/Preferences/GeneralPage.qml:331 msgctxt "@option:check" msgid "Slice automatically" msgstr "Viipaloi automaattisesti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:337 +#: resources/qml/Preferences/GeneralPage.qml:340 +msgctxt "@info:tooltip" +msgid "Show an icon and notifications in the system notification area." +msgstr "" + +#: resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Add icon to system tray *" +msgstr "" + +#: resources/qml/Preferences/GeneralPage.qml:357 msgctxt "@label" msgid "*You will need to restart the application for these changes to have effect." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +#: resources/qml/Preferences/GeneralPage.qml:373 msgctxt "@label" msgid "Viewport behavior" msgstr "Näyttöikkunan käyttäytyminen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +#: resources/qml/Preferences/GeneralPage.qml:381 msgctxt "@info:tooltip" msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." msgstr "Korosta mallin vailla tukea olevat alueet punaisella. Ilman tukea nämä alueet eivät tulostu kunnolla." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:369 +#: resources/qml/Preferences/GeneralPage.qml:390 msgctxt "@option:check" msgid "Display overhang" msgstr "Näytä uloke" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +#: resources/qml/Preferences/GeneralPage.qml:400 msgctxt "@info:tooltip" msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:388 +#: resources/qml/Preferences/GeneralPage.qml:409 msgctxt "@option:check" msgid "Display model errors" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +#: resources/qml/Preferences/GeneralPage.qml:417 msgctxt "@info:tooltip" msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "Siirtää kameraa siten, että valittuna oleva malli on näkymän keskellä." +msgstr "Siirtää kameraa siten, että valittuna oleva malli on näkymän keskellä" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:401 +#: resources/qml/Preferences/GeneralPage.qml:422 msgctxt "@action:button" msgid "Center camera when item is selected" msgstr "Keskitä kamera kun kohde on valittu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +#: resources/qml/Preferences/GeneralPage.qml:432 msgctxt "@info:tooltip" msgid "Should the default zoom behavior of cura be inverted?" msgstr "Pitääkö Curan oletusarvoinen zoom-toimintatapa muuttaa päinvastaiseksi?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:416 +#: resources/qml/Preferences/GeneralPage.qml:437 msgctxt "@action:button" msgid "Invert the direction of camera zoom." msgstr "Käännä kameran zoomin suunta päinvastaiseksi." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Should zooming move in the direction of the mouse?" msgstr "Tuleeko zoomauksen siirtyä hiiren suuntaan?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Zooming towards the mouse is not supported in the orthographic perspective." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:437 +#: resources/qml/Preferences/GeneralPage.qml:458 msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "Zoomaa hiiren suuntaan" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +#: resources/qml/Preferences/GeneralPage.qml:484 msgctxt "@info:tooltip" msgid "Should models on the platform be moved so that they no longer intersect?" msgstr "Pitäisikö alustalla olevia malleja siirtää niin, etteivät ne enää leikkaa toisiaan?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:468 +#: resources/qml/Preferences/GeneralPage.qml:489 msgctxt "@option:check" msgid "Ensure models are kept apart" msgstr "Varmista, että mallit ovat erillään" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +#: resources/qml/Preferences/GeneralPage.qml:498 msgctxt "@info:tooltip" msgid "Should models on the platform be moved down to touch the build plate?" msgstr "Pitäisikö tulostusalueella olevia malleja siirtää alas niin, että ne koskettavat tulostusalustaa?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:482 +#: resources/qml/Preferences/GeneralPage.qml:503 msgctxt "@option:check" msgid "Automatically drop models to the build plate" msgstr "Pudota mallit automaattisesti alustalle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +#: resources/qml/Preferences/GeneralPage.qml:515 msgctxt "@info:tooltip" msgid "Show caution message in g-code reader." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503 +#: resources/qml/Preferences/GeneralPage.qml:524 msgctxt "@option:check" msgid "Caution message in g-code reader" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +#: resources/qml/Preferences/GeneralPage.qml:532 msgctxt "@info:tooltip" msgid "Should layer be forced into compatibility mode?" msgstr "Pakotetaanko kerros yhteensopivuustilaan?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +#: resources/qml/Preferences/GeneralPage.qml:537 msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Pakota kerrosnäkymän yhteensopivuustila (vaatii uudelleenkäynnistyksen)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +#: resources/qml/Preferences/GeneralPage.qml:547 msgctxt "@info:tooltip" msgid "Should Cura open at the location it was closed?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:531 +#: resources/qml/Preferences/GeneralPage.qml:552 msgctxt "@option:check" msgid "Restore window position on start" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +#: resources/qml/Preferences/GeneralPage.qml:562 msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +#: resources/qml/Preferences/GeneralPage.qml:569 msgctxt "@window:text" msgid "Camera rendering:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +#: resources/qml/Preferences/GeneralPage.qml:576 msgid "Perspective" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +#: resources/qml/Preferences/GeneralPage.qml:577 msgid "Orthographic" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +#: resources/qml/Preferences/GeneralPage.qml:617 msgctxt "@label" msgid "Opening and saving files" msgstr "Tiedostojen avaaminen ja tallentaminen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +#: resources/qml/Preferences/GeneralPage.qml:624 msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:608 +#: resources/qml/Preferences/GeneralPage.qml:629 msgctxt "@option:check" msgid "Use a single instance of Cura" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +#: resources/qml/Preferences/GeneralPage.qml:640 msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +#: resources/qml/Preferences/GeneralPage.qml:646 msgctxt "@option:check" msgid "Clear buildplate before loading model into the single instance" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 +#: resources/qml/Preferences/GeneralPage.qml:656 msgctxt "@info:tooltip" msgid "Should models be scaled to the build volume if they are too large?" msgstr "Pitäisikö mallit skaalata tulostustilavuuteen, jos ne ovat liian isoja?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +#: resources/qml/Preferences/GeneralPage.qml:661 msgctxt "@option:check" msgid "Scale large models" msgstr "Skaalaa suuret mallit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +#: resources/qml/Preferences/GeneralPage.qml:671 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 "Malli voi vaikuttaa erittäin pieneltä, jos sen koko on ilmoitettu esimerkiksi metreissä eikä millimetreissä. Pitäisikö nämä mallit suurentaa?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:655 +#: resources/qml/Preferences/GeneralPage.qml:676 msgctxt "@option:check" msgid "Scale extremely small models" msgstr "Skaalaa erittäin pienet mallit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +#: resources/qml/Preferences/GeneralPage.qml:686 msgctxt "@info:tooltip" msgid "Should models be selected after they are loaded?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: resources/qml/Preferences/GeneralPage.qml:691 msgctxt "@option:check" msgid "Select models when loaded" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +#: resources/qml/Preferences/GeneralPage.qml:701 msgctxt "@info:tooltip" msgid "Should a prefix based on the printer name be added to the print job name automatically?" msgstr "Pitäisikö tulostustyön nimeen lisätä automaattisesti tulostimen nimeen perustuva etuliite?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:685 +#: resources/qml/Preferences/GeneralPage.qml:706 msgctxt "@option:check" msgid "Add machine prefix to job name" msgstr "Lisää laitteen etuliite työn nimeen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +#: resources/qml/Preferences/GeneralPage.qml:716 msgctxt "@info:tooltip" msgid "Should a summary be shown when saving a project file?" msgstr "Näytetäänkö yhteenveto, kun projektitiedosto tallennetaan?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: resources/qml/Preferences/GeneralPage.qml:720 msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Näytä yhteenvetoikkuna, kun projekti tallennetaan" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +#: resources/qml/Preferences/GeneralPage.qml:730 msgctxt "@info:tooltip" msgid "Default behavior when opening a project file" msgstr "Projektitiedoston avaamisen oletustoimintatapa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +#: resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@window:text" msgid "Default behavior when opening a project file: " msgstr "Projektitiedoston avaamisen oletustoimintatapa: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +#: resources/qml/Preferences/GeneralPage.qml:753 msgctxt "@option:openProject" msgid "Always ask me this" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: resources/qml/Preferences/GeneralPage.qml:754 msgctxt "@option:openProject" msgid "Always open as a project" msgstr "Avaa aina projektina" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +#: resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:openProject" msgid "Always import models" msgstr "Tuo mallit aina" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +#: resources/qml/Preferences/GeneralPage.qml:792 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 "Kun olet tehnyt muutokset profiiliin ja vaihtanut toiseen, näytetään valintaikkuna, jossa kysytään, haluatko säilyttää vai hylätä muutokset. Tässä voit myös valita oletuskäytöksen, jolloin valintaikkunaa ei näytetä uudelleen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:780 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:36 +#: resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46 msgctxt "@label" msgid "Profiles" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +#: resources/qml/Preferences/GeneralPage.qml:806 msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:800 +#: resources/qml/Preferences/GeneralPage.qml:821 msgctxt "@option:discardOrKeep" msgid "Always discard changed settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/Preferences/GeneralPage.qml:822 msgctxt "@option:discardOrKeep" msgid "Always transfer changed settings to new profile" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +#: resources/qml/Preferences/GeneralPage.qml:856 msgctxt "@label" msgid "Privacy" msgstr "Tietosuoja" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +#: resources/qml/Preferences/GeneralPage.qml:862 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 "Pitäisikö anonyymejä tietoja tulosteesta lähettää Ultimakerille? Huomaa, että malleja, IP-osoitteita tai muita henkilökohtaisia tietoja ei lähetetä eikä tallenneta." +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 "Pitäisikö anonyymejä tietoja tulosteesta lähettää UltiMakerille? Huomaa, että malleja, IP-osoitteita tai muita henkilökohtaisia tietoja ei lähetetä eikä tallenneta." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +#: resources/qml/Preferences/GeneralPage.qml:867 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "Lähetä (anonyymit) tulostustiedot" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +#: resources/qml/Preferences/GeneralPage.qml:897 msgctxt "@label" msgid "Updates" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +#: resources/qml/Preferences/GeneralPage.qml:904 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "Pitäisikö Curan tarkistaa saatavilla olevat päivitykset, kun ohjelma käynnistetään?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:888 +#: resources/qml/Preferences/GeneralPage.qml:909 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Tarkista päivitykset käynnistettäessä" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +#: resources/qml/Preferences/GeneralPage.qml:925 msgctxt "@info:tooltip" msgid "When checking for updates, only check for stable releases." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:910 +#: resources/qml/Preferences/GeneralPage.qml:931 msgctxt "@option:radio" msgid "Stable releases only" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +#: resources/qml/Preferences/GeneralPage.qml:941 msgctxt "@info:tooltip" msgid "When checking for updates, check for both stable and for beta releases." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:926 +#: resources/qml/Preferences/GeneralPage.qml:947 msgctxt "@option:radio" msgid "Stable and Beta releases" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +#: resources/qml/Preferences/GeneralPage.qml:957 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 "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:941 +#: resources/qml/Preferences/GeneralPage.qml:962 msgctxt "@option:check" msgid "Get notifications for plugin updates" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:50 +#: resources/qml/Preferences/MachinesPage.qml:50 msgctxt "@action:button" msgid "Add New" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:134 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +#: resources/qml/Preferences/MachinesPage.qml:147 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:160 +#: resources/qml/Preferences/ProfilesPage.qml:294 msgctxt "@action:button" msgid "Activate" msgstr "Aktivoi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:146 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:331 +#: resources/qml/Preferences/MachinesPage.qml:159 +#: resources/qml/Preferences/ProfilesPage.qml:331 msgctxt "@action:button" msgid "Rename" msgstr "Nimeä uudelleen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:72 msgctxt "@label" msgid "Materials compatible with active printer:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:94 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:78 +#: resources/qml/Preferences/ProfilesPage.qml:94 msgctxt "@action:button" msgid "Create new" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:88 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:90 +#: resources/qml/Preferences/ProfilesPage.qml:88 msgctxt "@action:button" msgid "Import" msgstr "Tuo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:101 msgctxt "@action:button" msgid "Sync with Printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:311 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:174 +#: resources/qml/Preferences/ProfilesPage.qml:311 msgctxt "@action:button" msgid "Duplicate" msgstr "Jäljennös" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:342 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:198 +#: resources/qml/Preferences/ProfilesPage.qml:342 msgctxt "@action:button" msgid "Export" msgstr "Vie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:392 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:212 +#: resources/qml/Preferences/ProfilesPage.qml:392 msgctxt "@title:window" msgid "Confirm Remove" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:393 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:215 +#: resources/qml/Preferences/ProfilesPage.qml:393 msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:228 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:238 msgctxt "@title:window" msgid "Import Material" msgstr "Tuo materiaali" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:242 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Materiaalin tuominen onnistui: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:245 msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not import material %1: %2" msgstr "Materiaalin tuominen epäonnistui: %1: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:267 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:256 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:267 msgctxt "@title:window" msgid "Export Material" msgstr "Vie materiaali" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:272 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:272 msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Materiaalin vieminen epäonnistui kohteeseen %1: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:275 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:275 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Materiaalin vieminen onnistui kohteeseen %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 msgctxt "@title:window" msgid "Sync materials with printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 msgctxt "@title:header" msgid "Sync materials with printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 msgctxt "@text" msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 msgctxt "@button" msgid "Why do I need to sync material profiles?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 msgctxt "@button" msgid "Start" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144 msgctxt "@title:header" msgid "Sign in" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150 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 "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:446 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:586 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602 msgctxt "@button" msgid "Sync materials with USB" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 msgctxt "@title:header" msgid "The following printers will receive the new material profiles:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:198 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 msgctxt "@title:header" msgid "Something went wrong when sending the materials to the printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:205 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221 msgctxt "@title:header" msgid "Material profiles successfully synced with the following printers:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:429 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445 msgctxt "@button" msgid "Troubleshooting" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422 msgctxt "@text Asking the user whether printers are missing in a list." msgid "Printers missing?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:408 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424 msgctxt "@text" msgid "Make sure all your printers are turned ON and connected to Digital Factory." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:417 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433 msgctxt "@button" msgid "Refresh List" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473 msgctxt "@button" msgid "Try again" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:461 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Done" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:606 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622 msgctxt "@button" msgid "Sync" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535 msgctxt "@button" msgid "Syncing" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553 msgctxt "@title:header" msgid "No printers found" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574 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 "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:569 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585 msgctxt "@button" msgid "Learn how to connect your printer to Digital Factory" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:597 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613 msgctxt "@button" msgid "Refresh" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642 msgctxt "@title:header" msgid "Sync material profiles via USB" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:632 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648 msgctxt "@text In the UI this is followed by a list of steps the user needs to take." msgid "Follow the following steps to load the new material profiles to your printer." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 msgctxt "@text" msgid "Click the export material archive button." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 msgctxt "@text" msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:673 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689 msgctxt "@button" msgid "How to load new material profiles to my printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:687 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 msgctxt "@button" msgid "Back" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Export material archive" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747 msgctxt "@title:window" msgid "Export All Materials" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121 +#: resources/qml/Preferences/Materials/MaterialsView.qml:121 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122 +#: resources/qml/Preferences/Materials/MaterialsView.qml:122 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 "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152 +#: resources/qml/Preferences/Materials/MaterialsView.qml:152 msgctxt "@label" msgid "Display Name" msgstr "Näytä nimi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 +#: resources/qml/Preferences/Materials/MaterialsView.qml:171 msgctxt "@label" msgid "Brand" msgstr "Merkki" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190 +#: resources/qml/Preferences/Materials/MaterialsView.qml:190 msgctxt "@label" msgid "Material Type" msgstr "Materiaalin tyyppi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +#: resources/qml/Preferences/Materials/MaterialsView.qml:210 msgctxt "@label" msgid "Color" msgstr "Väri" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:262 +#: resources/qml/Preferences/Materials/MaterialsView.qml:262 msgctxt "@title" msgid "Material color picker" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:275 +#: resources/qml/Preferences/Materials/MaterialsView.qml:275 msgctxt "@label" msgid "Properties" msgstr "Ominaisuudet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +#: resources/qml/Preferences/Materials/MaterialsView.qml:286 msgctxt "@label" msgid "Density" msgstr "Tiheys" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +#: resources/qml/Preferences/Materials/MaterialsView.qml:319 msgctxt "@label" msgid "Diameter" msgstr "Läpimitta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:369 +#: resources/qml/Preferences/Materials/MaterialsView.qml:369 msgctxt "@label" msgid "Filament Cost" msgstr "Tulostuslangan hinta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:401 +#: resources/qml/Preferences/Materials/MaterialsView.qml:401 msgctxt "@label" msgid "Filament weight" msgstr "Tulostuslangan paino" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:433 +#: resources/qml/Preferences/Materials/MaterialsView.qml:433 msgctxt "@label" msgid "Filament length" msgstr "Tulostuslangan pituus" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:451 +#: resources/qml/Preferences/Materials/MaterialsView.qml:451 msgctxt "@label" msgid "Cost per Meter" msgstr "Hinta metriä kohden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:465 +#: resources/qml/Preferences/Materials/MaterialsView.qml:465 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "Materiaali on linkitetty kohteeseen %1 ja niillä on joitain samoja ominaisuuksia." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:472 +#: resources/qml/Preferences/Materials/MaterialsView.qml:472 msgctxt "@label" msgid "Unlink Material" msgstr "Poista materiaalin linkitys" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +#: resources/qml/Preferences/Materials/MaterialsView.qml:485 msgctxt "@label" msgid "Description" msgstr "Kuvaus" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:503 +#: resources/qml/Preferences/Materials/MaterialsView.qml:503 msgctxt "@label" msgid "Adhesion Information" msgstr "Tarttuvuustiedot" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642 +#: resources/qml/Preferences/Materials/MaterialsView.qml:642 msgctxt "@title" msgid "Information" msgstr "Tiedot" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:647 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:82 +#: resources/qml/Preferences/Materials/MaterialsView.qml:647 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 msgctxt "@label" msgid "Print settings" msgstr "Tulostusasetukset" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:59 +#: resources/qml/Preferences/ProfilesPage.qml:59 msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:98 +#: resources/qml/Preferences/ProfilesPage.qml:98 msgctxt "@action:tooltip" msgid "Create new profile from current settings/overrides" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:125 +#: resources/qml/Preferences/ProfilesPage.qml:125 msgctxt "@action:label" msgid "Some settings from current profile were overwritten." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:140 +#: resources/qml/Preferences/ProfilesPage.qml:140 msgctxt "@action:button" msgid "Update profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:143 +#: resources/qml/Preferences/ProfilesPage.qml:143 msgctxt "@action:tooltip" msgid "Update profile with current settings/overrides" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:148 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256 +#: resources/qml/Preferences/ProfilesPage.qml:148 msgctxt "@action:button" msgid "Discard current changes" msgstr "Hylkää tehdyt muutokset" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:158 +#: resources/qml/Preferences/ProfilesPage.qml:158 msgctxt "@action:label" msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." msgstr "Tässä profiilissa käytetään tulostimen oletusarvoja, joten siinä ei ole alla olevan listan asetuksia tai ohituksia." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:165 +#: resources/qml/Preferences/ProfilesPage.qml:165 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "Nykyiset asetukset vastaavat valittua profiilia." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +#: resources/qml/Preferences/ProfilesPage.qml:175 msgctxt "@title:tab" msgid "Global Settings" msgstr "Yleiset asetukset" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: resources/qml/Preferences/ProfilesPage.qml:278 msgctxt "@title:window" msgid "Create Profile" msgstr "Luo profiili" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:280 +#: resources/qml/Preferences/ProfilesPage.qml:280 msgctxt "@info" msgid "Please provide a name for this profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:368 +#: resources/qml/Preferences/ProfilesPage.qml:352 +#: resources/qml/Preferences/ProfilesPage.qml:368 msgctxt "@title:window" msgid "Export Profile" msgstr "Profiilin vienti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +#: resources/qml/Preferences/ProfilesPage.qml:382 msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Monista profiili" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:409 +#: resources/qml/Preferences/ProfilesPage.qml:409 msgctxt "@title:window" msgid "Rename Profile" msgstr "Nimeä profiili uudelleen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:422 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:429 +#: resources/qml/Preferences/ProfilesPage.qml:422 +#: resources/qml/Preferences/ProfilesPage.qml:429 msgctxt "@title:window" msgid "Import Profile" msgstr "Profiilin tuonti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:22 -msgctxt "@title:window" -msgid "Rename" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:23 -msgctxt "@info" -msgid "Please provide a new name." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56 +#: resources/qml/Preferences/SettingVisibilityItem.qml:56 msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73 +#: resources/qml/Preferences/SettingVisibilityItem.qml:73 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] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13 +#: resources/qml/Preferences/SettingVisibilityPage.qml:13 msgctxt "@title:tab" msgid "Setting Visibility" msgstr "Näkyvyyden asettaminen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 +#: resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" msgid "Check all" msgstr "Tarkista kaikki" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 -msgctxt "@label" -msgid "Extruder" -msgstr "Suulake" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70 -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." -msgstr "Kuuman pään kohdelämpötila. Kuuma pää lämpenee tai viilenee kohti tätä lämpötilaa. Jos asetus on 0, kuuman pään lämmitys sammutetaan." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Peruuta" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Esilämmitä" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Tämän suulakkeen materiaalin väri." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Tämän suulakkeen materiaali." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Tähän suulakkeeseen liitetty suutin." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -msgctxt "@label" -msgid "Build plate" -msgstr "Alusta" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55 -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 "Lämmitettävän pöydän kohdelämpötila. Pöytä lämpenee tai viilenee kohti tätä lämpötilaa. Jos asetus on 0, pöydän lämmitys sammutetaan." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "Lämmitettävän pöydän nykyinen lämpötila." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "Lämmitettävän pöydän esilämmityslämpötila." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Lämmitä pöytä ennen tulostusta. Voit edelleen säätää tulostinta sen lämmitessä, eikä sinun tarvitse odottaa pöydän lämpiämistä, kun olet valmis tulostamaan." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51 -msgctxt "@label" -msgid "Printer control" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66 -msgctxt "@label" -msgid "Jog Position" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82 -msgctxt "@label" -msgid "X/Y" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162 -msgctxt "@label" -msgid "Z" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217 -msgctxt "@label" -msgid "Jog Distance" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Send G-code" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "Tulostinta ei ole yhdistetty." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:235 -msgctxt "@button" -msgid "Add printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Manage printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Active print" msgstr "Aktiivinen tulostustyö" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Job Name" msgstr "Työn nimi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +#: resources/qml/PrintMonitor.qml:172 msgctxt "@label" msgid "Printing Time" msgstr "Tulostusaika" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +#: resources/qml/PrintMonitor.qml:180 msgctxt "@label" msgid "Estimated time left" msgstr "Aikaa jäljellä arviolta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 msgctxt "@label" msgid "Profile" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5583,132 +6142,372 @@ msgstr "" "\n" "Avaa profiilin hallinta napsauttamalla." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 +#: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 msgctxt "@label:header" msgid "Custom profiles" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 msgctxt "@label shown when we load a Gcode file" msgid "Print setup disabled. G-code file can not be modified." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:179 msgctxt "@button" msgid "Recommended" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156 -msgctxt "@button" -msgid "Custom" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 msgctxt "@label:Should be short" msgid "On" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 msgctxt "@label:Should be short" msgid "Off" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is active and you overwrote some settings." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:54 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is overriding some settings." +msgstr "" + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92 +msgctxt "@info %1 is the name of a profile" +msgid "Recommended settings (for %1) were altered." +msgstr "" + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106 +msgctxt "@info %1 is the name of a profile" +msgid "Some setting-values defined in %1 were overridden." +msgstr "" + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137 msgctxt "@info" -msgid "custom profile is active and you overwrote some settings." +msgid "Reset to defaults." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178 msgctxt "@info" -msgid "custom profile is overriding some settings." +msgid "Compare and save." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 -msgctxt "@info" -msgid "Some settings were changed." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15 msgctxt "@label" msgid "Adhesion" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20 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." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:198 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102 msgctxt "@label" -msgid "Gradual infill" +msgid "Recommended print settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:236 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "Asteittainen täyttö lisää täytön tiheyttä vähitellen yläosaa kohti." +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111 +msgctxt "@button" +msgid "Show Custom" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27 msgctxt "@label" msgid "Resolution" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16 +msgctxt "@label" +msgid "Strength" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20 +msgctxt "@label" +msgid "The following settings define the strength of your part." +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34 +msgctxt "infill_sparse_density description" +msgid "Infill Density" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35 +msgctxt "@label" +msgid "Adjusts the density of infill of the print." +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54 +msgctxt "@action:label" +msgid "Infill Pattern" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56 +msgctxt "@label" +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 "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67 +msgctxt "@action:label" +msgid "Shell Thickness" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68 +msgctxt "@label" +msgid "Defines the thickness of your part side walls, roof and floor." +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16 msgctxt "@label" msgid "Support" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21 msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +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." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40 +msgctxt "@action:label" +msgid "Support Type" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41 +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 "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53 +msgctxt "@action:label" +msgid "Print with" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54 +msgctxt "@label" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67 +msgctxt "@action:label" +msgid "Placement" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68 +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 "" + +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 msgctxt "@error" msgid "Configuration not supported" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 msgctxt "@button:label" msgid "Learn more" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +#: resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "Suulake" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:70 +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." +msgstr "Kuuman pään kohdelämpötila. Kuuma pää lämpenee tai viilenee kohti tätä lämpötilaa. Jos asetus on 0, kuuman pään lämmitys sammutetaan." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:105 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:182 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:271 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:259 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Peruuta" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:274 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:263 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Esilämmitä" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:297 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:335 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "Tämän suulakkeen materiaalin väri." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:367 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "Tämän suulakkeen materiaali." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:400 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "Tähän suulakkeeseen liitetty suutin." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:25 +msgctxt "@label" +msgid "Build plate" +msgstr "Alusta" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:55 +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 "Lämmitettävän pöydän kohdelämpötila. Pöytä lämpenee tai viilenee kohti tätä lämpötilaa. Jos asetus on 0, pöydän lämmitys sammutetaan." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "Lämmitettävän pöydän nykyinen lämpötila." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:162 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "Lämmitettävän pöydän esilämmityslämpötila." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:286 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Lämmitä pöytä ennen tulostusta. Voit edelleen säätää tulostinta sen lämmitessä, eikä sinun tarvitse odottaa pöydän lämpiämistä, kun olet valmis tulostamaan." + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:51 +msgctxt "@label" +msgid "Printer control" +msgstr "" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:66 +msgctxt "@label" +msgid "Jog Position" +msgstr "" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:82 +msgctxt "@label" +msgid "X/Y" +msgstr "" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:162 +msgctxt "@label" +msgid "Z" +msgstr "" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:217 +msgctxt "@label" +msgid "Jog Distance" +msgstr "" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Send G-code" +msgstr "" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:319 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "" + +#: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "Tulostinta ei ole yhdistetty." + +#: resources/qml/PrinterSelector/MachineListButton.qml:34 +msgctxt "@label" +msgid "Hide all connected printers" +msgstr "" + +#: resources/qml/PrinterSelector/MachineListButton.qml:47 +msgctxt "@label" +msgid "Show all connected printers" +msgstr "" + +#: resources/qml/PrinterSelector/MachineSelector.qml:64 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "" + +#: resources/qml/PrinterSelector/MachineSelector.qml:68 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "" + +#: resources/qml/PrinterSelector/MachineSelector.qml:73 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "" + +#: resources/qml/PrinterSelector/MachineSelector.qml:78 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "" + +#: resources/qml/PrinterSelector/MachineSelectorList.qml:30 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:32 +msgctxt "@label" +msgid "Other printers" +msgstr "" + +#: resources/qml/ProfileOverview.qml:36 msgctxt "@title:column" msgid "Setting" msgstr "Asetus" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +#: resources/qml/ProfileOverview.qml:37 msgctxt "@title:column" msgid "Profile" msgstr "Profiili" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +#: resources/qml/ProfileOverview.qml:38 msgctxt "@title:column" msgid "Current" msgstr "Nykyinen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +#: resources/qml/ProfileOverview.qml:39 msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +#: resources/qml/SearchBar.qml:17 msgctxt "@placeholder" msgid "Search" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 +#: resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5719,32 +6518,32 @@ msgstr "" "\n" "Tee asetuksista näkyviä napsauttamalla." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 +#: resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +#: resources/qml/Settings/SettingItem.qml:89 msgctxt "@label Header for list of settings." msgid "Affects" -msgstr "Koskee seuraavia:" +msgstr "Koskee seuraavia" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +#: resources/qml/Settings/SettingItem.qml:94 msgctxt "@label Header for list of settings." msgid "Affected By" -msgstr "Riippuu seuraavista:" +msgstr "Riippuu seuraavista" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:190 +#: resources/qml/Settings/SettingItem.qml:196 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +#: resources/qml/Settings/SettingItem.qml:200 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +#: resources/qml/Settings/SettingItem.qml:240 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5755,7 +6554,7 @@ msgstr "" "\n" "Palauta profiilin arvo napsauttamalla." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:334 +#: resources/qml/Settings/SettingItem.qml:340 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5766,2964 +6565,320 @@ msgstr "" "\n" "Palauta laskettu arvo napsauttamalla." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +#: resources/qml/Settings/SettingView.qml:48 msgctxt "@label:textbox" msgid "Search settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:395 +#: resources/qml/Settings/SettingView.qml:395 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Kopioi arvo kaikkiin suulakepuristimiin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:404 +#: resources/qml/Settings/SettingView.qml:404 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:440 +#: resources/qml/Settings/SettingView.qml:440 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Piilota tämä asetus" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:453 +#: resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Älä näytä tätä asetusta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:457 +#: resources/qml/Settings/SettingView.qml:457 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Pidä tämä asetus näkyvissä" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +#: resources/qml/Toolbar.qml:142 +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" +msgstr[0] "Tulosta valittu malli asetuksella %1" +msgstr[1] "Tulosta valitut mallit asetuksella %1" + +#: resources/qml/ViewOrientationControls.qml:25 msgctxt "@info:tooltip" msgid "3D View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +#: resources/qml/ViewOrientationControls.qml:38 msgctxt "@info:tooltip" msgid "Front View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +#: resources/qml/ViewOrientationControls.qml:51 msgctxt "@info:tooltip" msgid "Top View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +#: resources/qml/ViewOrientationControls.qml:64 msgctxt "@info:tooltip" msgid "Left View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +#: resources/qml/ViewOrientationControls.qml:77 msgctxt "@info:tooltip" msgid "Right View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: resources/qml/ViewsSelector.qml:50 msgctxt "@label" msgid "View type" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:47 msgctxt "@label" msgid "Add a Cloud printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:73 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:73 msgctxt "@label" msgid "Waiting for Cloud response" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:83 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:83 msgctxt "@label" msgid "No printers found in your account?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:117 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:117 msgctxt "@label" msgid "The following printers in your account have been added in Cura:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:186 msgctxt "@button" msgid "Add printer manually" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 msgctxt "@label" msgid "Manufacturer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Profile author" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 msgctxt "@label" msgid "Printer name" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 msgctxt "@text" msgid "Please name your printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:38 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:87 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 msgctxt "@label" msgid "There is no printer found over your network." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 msgctxt "@label" msgid "Refresh" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 msgctxt "@label" msgid "Add printer by IP" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205 msgctxt "@label" msgid "Troubleshooting" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 msgctxt "@label" msgid "Add printer by IP address" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 msgctxt "@text" msgid "Enter your printer's IP address." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 msgctxt "@button" msgid "Add" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 msgctxt "@label" msgid "Could not connect to device." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" +msgid "Can't connect to your UltiMaker printer?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 msgctxt "@label" msgid "The printer at this address has not responded yet." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 msgctxt "@label" msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 msgctxt "@button" msgid "Connect" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102 +msgctxt "@button" +msgid "Add UltiMaker printer via Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "In order to start using Cura you will need to configure a printer." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36 +msgctxt "@label" +msgid "What printer would you like to setup?" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55 +msgctxt "@button" +msgid "UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64 +msgctxt "@button" +msgid "Non UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73 +msgctxt "@button" +msgid "Learn more about adding printers to Cura" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29 +msgctxt "@label" +msgid "Add printer" +msgstr "Lisää tulostin" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33 +msgctxt "@label" +msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70 +msgctxt "@label" +msgid "If you are trying to add a new UltiMaker printer to Cura" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80 +msgctxt "@info" +msgid "Sign in into UltiMaker Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81 +msgctxt "@info" +msgid "Follow the procedure to add a new printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82 +msgctxt "@info" +msgid "Your new printer will automatically appear in Cura" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100 +msgctxt "@button" +msgid "Learn more" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121 +msgctxt "@button" +msgid "Add local printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129 +msgctxt "@button" +msgid "Sign in to Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133 +msgctxt "@button" +msgid "Waiting for new printers" +msgstr "" + +#: resources/qml/WelcomePages/ChangelogContent.qml:24 msgctxt "@label" msgid "Release Notes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:123 +#: resources/qml/WelcomePages/CloudContent.qml:123 msgctxt "@text" msgid "Add material settings and plugins from the Marketplace" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:149 +#: resources/qml/WelcomePages/CloudContent.qml:149 msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:175 +#: resources/qml/WelcomePages/CloudContent.qml:175 msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +#: resources/qml/WelcomePages/CloudContent.qml:189 msgctxt "@button" msgid "Skip" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +#: resources/qml/WelcomePages/CloudContent.qml:201 msgctxt "@text" -msgid "Create a free Ultimaker Account" +msgid "Create a free UltiMaker Account" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:56 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:68 -msgctxt "@text" -msgid "Machine types" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:74 -msgctxt "@text" -msgid "Material usage" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:80 -msgctxt "@text" -msgid "Number of slices" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:86 -msgctxt "@text" -msgid "Print settings" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:99 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:100 -msgctxt "@text" -msgid "More information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +#: resources/qml/WelcomePages/DropDownWidget.qml:93 msgctxt "@label" msgid "Empty" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +#: resources/qml/WelcomePages/UserAgreementContent.qml:23 msgctxt "@label" msgid "User Agreement" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67 +#: resources/qml/WelcomePages/UserAgreementContent.qml:67 msgctxt "@button" msgid "Decline and close" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:67 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:82 -msgctxt "@button" -msgid "Get started" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: resources/qml/WelcomePages/WhatsNewContent.qml:28 msgctxt "@label" msgid "What's New" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: resources/qml/Widgets/ComboBox.qml:18 msgctxt "@label" msgid "No items to select from" msgstr "" - -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "" - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Tukee 3MF-tiedostojen lukemista." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF-lukija" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Tukee 3MF-tiedostojen kirjoittamista." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF-kirjoitin" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "" - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "" - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Linkki CuraEngine-viipalointiin taustalla." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine-taustaosa" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Tukee Cura-profiilien tuontia." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura-profiilin lukija" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Tukee Cura-profiilien vientiä." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura-profiilin kirjoitin" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "" - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Tarkistaa laiteohjelmistopäivitykset." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Laiteohjelmiston päivitysten tarkistus" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "" - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "" - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "" - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Tukee profiilien tuontia GCode-tiedostoista." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Mahdollistaa GCode-tiedostojen lataamisen ja näyttämisen." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "GCode-lukija" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "" - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Mahdollistaa tulostettavien geometrioiden luomisen 2D-kuvatiedostoista." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Kuvanlukija" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Tukee profiilien tuontia aikaisemmista Cura-versioista." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Aikaisempien Cura-profiilien lukija" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "" - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "" - -#: Marketplace/plugin.json -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the Ultimaker website." -msgstr "" - -#: Marketplace/plugin.json -msgctxt "name" -msgid "Marketplace" -msgstr "" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "" - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "" - -#: PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Mallikohtaisten asetusten muokkaus." - -#: PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Mallikohtaisten asetusten työkalu" - -#: PostProcessingPlugin/plugin.json -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Lisäosa, jonka avulla käyttäjät voivat luoda komentosarjoja jälkikäsittelyä varten" - -#: PostProcessingPlugin/plugin.json -msgctxt "name" -msgid "Post Processing" -msgstr "Jälkikäsittely" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "" - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "" - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "" - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Tukee irrotettavan aseman kytkemistä lennossa ja sille kirjoittamista." - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Irrotettavan aseman tulostusvälineen laajennus" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "" - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Lähettää anonyymiä viipalointitietoa. Voidaan lisäasetuksista kytkeä pois käytöstä." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Viipalointitiedot" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Näyttää normaalin kiinteän verkkonäkymän." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Kiinteä näkymä" - -#: SupportEraser/plugin.json -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "" - -#: SupportEraser/plugin.json -msgctxt "name" -msgid "Support Eraser" -msgstr "" - -#: TrimeshReader/plugin.json -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "" - -#: TrimeshReader/plugin.json -msgctxt "name" -msgid "Trimesh Reader" -msgstr "" - -#: UFPReader/plugin.json -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "" - -#: UFPReader/plugin.json -msgctxt "name" -msgid "UFP Reader" -msgstr "" - -#: UFPWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "" - -#: UFPWriter/plugin.json -msgctxt "name" -msgid "UFP Writer" -msgstr "" - -#: UltimakerMachineActions/plugin.json -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "" - -#: UltimakerMachineActions/plugin.json -msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Ultimaker-laitteen toiminnot" - -#: UM3NetworkPrinting/plugin.json -msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "" - -#: UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "" - -#: USBPrinting/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Hyväksyy GCode-määrittelyt ja lähettää ne tulostimeen. Lisäosa voi myös päivittää laiteohjelmiston." - -#: USBPrinting/plugin.json -msgctxt "name" -msgid "USB printing" -msgstr "USB-tulostus" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Päivittää kokoonpanon versiosta Cura 2.1 versioon Cura 2.2." - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Päivitys versiosta 2.1 versioon 2.2" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Päivittää kokoonpanon versiosta Cura 2.2 versioon Cura 2.4." - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Päivitys versiosta 2.2 versioon 2.4" - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Päivittää kokoonpanon versiosta Cura 2.5 versioon Cura 2.6." - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Päivitys versiosta 2.5 versioon 2.6" - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Päivittää kokoonpanon versiosta Cura 2.6 versioon Cura 2.7." - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Päivitys versiosta 2.6 versioon 2.7" - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Päivittää kokoonpanon versiosta Cura 2.7 versioon Cura 3.0." - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Päivitys versiosta 2.7 versioon 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "" - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "" - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "" - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "" - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "" - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "" - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "" - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "" - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "" - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "" - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Tukee X3D-tiedostojen lukemista." - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D-lukija" - -#: XmlMaterialProfile/plugin.json -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Mahdollistaa XML-pohjaisten materiaaliprofiilien lukemisen ja kirjoittamisen." - -#: XmlMaterialProfile/plugin.json -msgctxt "name" -msgid "Material Profiles" -msgstr "Materiaaliprofiilit" - -#: XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Näyttää kerrosnäkymän." - -#: XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "Kerrosnäkymä" - -#~ msgctxt "@label" -#~ msgid "SVG icons" -#~ msgstr "SVG-kuvakkeet" - -#~ msgctxt "@title:window" -#~ msgid "Convert Image..." -#~ msgstr "Muunna kuva..." - -#~ msgctxt "@info:tooltip" -#~ msgid "The width in millimeters on the build plate." -#~ msgstr "Leveys millimetreinä alustalla." - -#~ msgctxt "@action:button" -#~ msgid "Installed" -#~ msgstr "Asennettu" - -#~ msgctxt "@label" -#~ msgid "Create" -#~ msgstr "Luo" - -#~ msgctxt "@label" -#~ msgid "Duplicate" -#~ msgstr "Jäljennös" - -#~ msgctxt "@label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "Tulostin: %1" - -#~ msgctxt "@action:button" -#~ msgid "Update profile with current settings/overrides" -#~ msgstr "Päivitä nykyiset asetukset tai ohitukset profiiliin" - -#~ msgctxt "@label" -#~ msgid "Theme:" -#~ msgstr "Teema:" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for these changes to have effect." -#~ msgstr "Sovellus on käynnistettävä uudelleen, jotta nämä muutokset tulevat voimaan." - -#~ msgctxt "@action:button" -#~ msgid "Create" -#~ msgstr "Luo" - -#~ msgctxt "@title:column" -#~ msgid "Unit" -#~ msgstr "Yksikkö" - -#~ msgctxt "@info:title The %s gets replaced with the printer name." -#~ msgid "New %s firmware available" -#~ msgstr "Uusi tulostimen %s laiteohjelmisto saatavilla" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete Selected Model" -#~ msgid_plural "Delete Selected Models" -#~ msgstr[0] "Poista valittu malli" -#~ msgstr[1] "Poista valitut mallit" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Center Selected Model" -#~ msgid_plural "Center Selected Models" -#~ msgstr[0] "Keskitä valittu malli" -#~ msgstr[1] "Keskitä valitut mallit" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Multiply Selected Model" -#~ msgid_plural "Multiply Selected Models" -#~ msgstr[0] "Kerro valittu malli" -#~ msgstr[1] "Kerro valitut mallit" - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profile {0}" -#~ msgstr "Onnistuneesti tuotu profiili {0}" - -#~ msgctxt "@info:status" -#~ msgid "Could not find a quality type {0} for the current configuration." -#~ msgstr "Laatutyyppiä {0} ei löydy nykyiselle kokoonpanolle." - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Create new" -#~ msgstr "Luo uusi" - -#~ msgctxt "@text:window" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to keep or discard those settings?" -#~ msgstr "" -#~ "Olet mukauttanut profiilin asetuksia.\n" -#~ "Haluatko säilyttää vai hylätä nämä asetukset?" - -#~ msgctxt "@title:column" -#~ msgid "Default" -#~ msgstr "Oletusarvo" - -#~ msgctxt "@title:column" -#~ msgid "Customized" -#~ msgstr "Mukautettu" - -#~ msgctxt "@action:button" -#~ msgid "Discard" -#~ msgstr "Hylkää" - -#~ msgctxt "@action:button" -#~ msgid "Keep" -#~ msgstr "Säilytä" - -#~ msgctxt "@action:button" -#~ msgid "Create New Profile" -#~ msgstr "Luo uusi profiili" - -#~ msgctxt "@label" -#~ msgid "Language:" -#~ msgstr "Kieli:" - -#~ msgctxt "@label" -#~ msgid "The value is resolved from per-extruder values " -#~ msgstr "Arvo perustuu suulakepuristimien arvoihin " - -#~ msgctxt "@info:tooltip" -#~ msgid "Change active post-processing scripts" -#~ msgstr "Muuta aktiivisia jälkikäsittelykomentosarjoja" - -#~ msgctxt "name" -#~ msgid "Machine Settings action" -#~ msgstr "Laitteen asetukset -toiminto" - -#~ msgctxt "@info:status" -#~ msgid "Cura does not accurately display layers when Wire Printing is enabled" -#~ msgstr "Cura ei näytä kerroksia täsmällisesti, kun rautalankatulostus on käytössä" - -#~ msgctxt "@label" -#~ msgid "Pre-sliced file {0}" -#~ msgstr "Esiviipaloitu tiedosto {0}" - -#~ msgctxt "@action:button" -#~ msgid "Accept" -#~ msgstr "Hyväksy" - -#~ msgctxt "@action:button" -#~ msgid "Decline" -#~ msgstr "Hylkää" - -#~ msgctxt "@title:window" -#~ msgid "About Cura" -#~ msgstr "Tietoja Curasta" - -#~ msgctxt "@item:inmenu" -#~ msgid "Flatten active settings" -#~ msgstr "Aktivoitujen asetusten tasoitus" - -#~ msgctxt "@info:status" -#~ msgid "Profile has been flattened & activated." -#~ msgstr "Profiili on tasoitettu ja aktivoitu." - -#~ msgctxt "X3G Writer File Description" -#~ msgid "X3G File" -#~ msgstr "X3G-tiedosto" - -#~ msgctxt "@action:button" -#~ msgid "Retry" -#~ msgstr "Yritä uudelleen" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update existing" -#~ msgstr "Päivitä nykyinen" - -#~ msgctxt "@label" -#~ msgid "Please select any upgrades made to this Ultimaker 2." -#~ msgstr "Valitse tähän Ultimaker 2 -laitteeseen tehdyt päivitykset." - -#~ msgctxt "@label" -#~ msgid "Olsson Block" -#~ msgstr "Olsson Block -lämmitysosa" - -#~ msgctxt "@label" -#~ msgid "Layer Height" -#~ msgstr "Kerroksen korkeus" - -#~ msgctxt "@title:settings" -#~ msgid "&Profile" -#~ msgstr "&Profiili" - -#~ msgctxt "description" -#~ msgid "Dump the contents of all settings to a HTML file." -#~ msgstr "Vedosta kaikkien asetusten sisällöt HTML-tiedostoon." - -#~ msgctxt "name" -#~ msgid "God Mode" -#~ msgstr "Jumala-tila" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network." -#~ msgstr "Yhdistetty verkon kautta tulostimeen." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. Please approve the access request on the printer." -#~ msgstr "Yhdistetty verkon kautta. Hyväksy tulostimen käyttöoikeuspyyntö." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. No access to control the printer." -#~ msgstr "Yhdistetty verkon kautta tulostimeen. Ei käyttöoikeutta tulostimen hallintaan." - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer requested. Please approve the request on the printer" -#~ msgstr "Tulostimen käyttöoikeutta pyydetty. Hyväksy tulostimen pyyntö" - -#~ msgctxt "@info:tooltip" -#~ msgid "Re-send the access request" -#~ msgstr "Lähetä käyttöoikeuspyyntö uudelleen" - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer accepted" -#~ msgstr "Tulostimen käyttöoikeus hyväksytty" - -#~ msgctxt "@info:status" -#~ msgid "No access to print with this printer. Unable to send print job." -#~ msgstr "Tällä tulostimella tulostukseen ei ole käyttöoikeutta. Tulostustyön lähetys ei onnistu." - -#~ msgctxt "@action:button" -#~ msgid "Request Access" -#~ msgstr "Pyydä käyttöoikeutta" - -#~ msgctxt "@info:tooltip" -#~ msgid "Send access request to the printer" -#~ msgstr "Lähetä tulostimen käyttöoikeuspyyntö" - -#~ msgctxt "@window:title" -#~ msgid "Mismatched configuration" -#~ msgstr "Ristiriitainen määritys" - -#~ msgctxt "@label" -#~ msgid "Are you sure you wish to print with the selected configuration?" -#~ msgstr "Haluatko varmasti tulostaa valitulla määrityksellä?" - -#~ msgctxt "@label" -#~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "Tulostimen ja Curan määrityksen tai kalibroinnin välillä on ristiriita. Parhaat tulokset saavutetaan viipaloimalla aina tulostimeen asetetuille PrintCoreille ja materiaaleille." - -#~ msgctxt "@info:status" -#~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." -#~ msgstr "Uusien töiden lähettäminen (tilapäisesti) estetty, edellistä tulostustyötä lähetetään vielä." - -#~ msgctxt "@info:status" -#~ msgid "Sending data to printer" -#~ msgstr "Lähetetään tietoja tulostimeen" - -#~ msgctxt "@info:title" -#~ msgid "Sending Data" -#~ msgstr "Lähetetään tietoja" - -#~ msgctxt "@label" -#~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Eri materiaali (Cura: {0}, tulostin: {1}) valittu suulakkeelle {2}" - -#~ msgctxt "@window:title" -#~ msgid "Sync with your printer" -#~ msgstr "Synkronoi tulostimen kanssa" - -#~ msgctxt "@label" -#~ msgid "Would you like to use your current printer configuration in Cura?" -#~ msgstr "Haluatko käyttää nykyistä tulostimen määritystä Curassa?" - -#~ msgctxt "@label" -#~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "Tulostimen PrintCoret tai materiaalit eivät vastaa tulostettavan projektin asetuksia. Parhaat tulokset saavutetaan viipaloimalla aina tulostimeen asetetuille PrintCoreille ja materiaaleille." - -#~ msgctxt "@info:status" -#~ msgid "Printer '{printer_name}' has finished printing '{job_name}'." -#~ msgstr "{printer_name} on tulostanut työn '{job_name}'." - -#~ msgctxt "@info:status" -#~ msgid "Print finished" -#~ msgstr "Tulosta valmis" - -#~ msgctxt "@info:tooltip" -#~ msgid "Connect to a printer" -#~ msgstr "Yhdistä tulostimeen" - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection" -#~ msgstr "UM3-verkkoyhteys" - -#~ 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.\n" -#~ "\n" -#~ "Select your printer from the list below:" -#~ msgstr "" -#~ "Tulosta suoraan tulostimeen verkon kautta yhdistämällä tulostin verkkoon verkkokaapelilla tai yhdistämällä tulostin Wi-Fi-verkkoon. Jos Curaa ei yhdistetä tulostimeen, GCode-tiedostot voidaan silti siirtää tulostimeen USB-aseman avulla.\n" -#~ "\n" -#~ "Valitse tulostin alla olevasta luettelosta:" - -#~ msgctxt "@item:inmenu" -#~ msgid "Show Changelog" -#~ msgstr "Näytä muutosloki" - -#~ msgctxt "@info:title" -#~ msgid "Collecting Data" -#~ msgstr "Kerätään tietoja" - -#~ msgctxt "@title" -#~ msgid "Machine Settings" -#~ msgstr "Laitteen asetukset" - -#~ msgctxt "@label" -#~ msgid "Printer Settings" -#~ msgstr "Tulostimen asetukset" - -#~ msgctxt "@option:check" -#~ msgid "Origin at center" -#~ msgstr "Alkukohta keskellä" - -#~ msgctxt "@option:check" -#~ msgid "Heated bed" -#~ msgstr "Lämmitettävä pöytä" - -#~ msgctxt "@label" -#~ msgid "Printhead Settings" -#~ msgstr "Tulostuspään asetukset" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Etäisyys tulostuspään vasemmalta puolelta suuttimen keskikohtaan. Käytetään estämään aiempien tulosteiden ja tulostuspään yhteentörmäyksiä, kun tulostetaan yksi kerrallaan." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Etäisyys tulostuspään etupuolelta suuttimen keskikohtaan. Käytetään estämään aiempien tulosteiden ja tulostuspään yhteentörmäyksiä, kun tulostetaan yksi kerrallaan." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Etäisyys tulostuspään oikealta puolelta suuttimen keskikohtaan. Käytetään estämään aiempien tulosteiden ja tulostuspään yhteentörmäyksiä, kun tulostetaan yksi kerrallaan." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Etäisyys tulostuspään takapuolelta suuttimen keskikohtaan. Käytetään estämään aiempien tulosteiden ja tulostuspään yhteentörmäyksiä, kun tulostetaan yksi kerrallaan." - -#~ msgctxt "@label" -#~ msgid "Gantry height" -#~ msgstr "Korokkeen korkeus" - -#~ msgctxt "@tooltip" -#~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." -#~ msgstr "Suuttimen kärjen ja korokejärjestelmän (X- ja Y-akselit) välinen korkeusero. Käytetään estämään aiempien tulosteiden ja korokkeen yhteentörmäyksiä, kun tulostetaan yksi kerrallaan." - -#~ msgctxt "@label" -#~ msgid "Nozzle Settings" -#~ msgstr "Suutinasetukset" - -#~ msgctxt "@tooltip" -#~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." -#~ msgstr "Tulostimen tukema tulostuslangan nimellinen halkaisija. Materiaali ja/tai profiili korvaa tarkan halkaisijan." - -#~ msgctxt "@label" -#~ msgid "Changelog" -#~ msgstr "Muutosloki" - -#~ msgctxt "@alabel" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "Anna verkon tulostimen IP-osoite tai isäntänimi." - -#~ msgctxt "@info:tooltip" -#~ 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 "Oletuksena valkoiset pikselit edustavat verkossa korkeita pisteitä ja mustat pikselit edustavat verkossa matalia pisteitä. Muuta asetus, jos haluat, että mustat pikselit edustavat verkossa korkeita pisteitä ja valkoiset pikselit edustavat verkossa matalia pisteitä." - -#~ msgctxt "@title" -#~ msgid "Select Printer Upgrades" -#~ msgstr "Valitse tulostimen päivitykset" - -#~ msgctxt "@label" -#~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "Valitse tukena käytettävä suulakepuristin. Näin mallin alle rakennetaan tukirakenteita estämään mallin painuminen tai tulostuminen ilmaan." - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Unable to Slice" -#~ msgstr "Viipalointi ei onnistu" - -#~ msgctxt "@action:button" -#~ msgid "Add Printer" -#~ msgstr "Lisää tulostin" - -#~ msgid "Modify G-Code" -#~ msgstr "Muokkaa GCode-arvoa" - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." -#~ msgstr "Ei viipaloitavaa, koska mikään malleista ei sovellu tulostustilavuuteen. Skaalaa tai pyöritä mallia, kunnes se on sopiva." - -#~ msgctxt "@info:status" -#~ msgid "The selected material is incompatible with the selected machine or configuration." -#~ msgstr "Valittu materiaali ei sovellu käytettäväksi valitun laitteen tai kokoonpanon kanssa." - -#~ msgctxt "@info:title" -#~ msgid "Incompatible Material" -#~ msgstr "Yhteensopimaton materiaali" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "Profiilin tuonti epäonnistui tiedostosta {0}: {1}" - -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "Valmistellaan" - -#~ msgctxt "@label" -#~ msgid "Printing" -#~ msgstr "Tulostetaan" - -#~ msgctxt "@action:button" -#~ msgid "Activate Configuration" -#~ msgstr "Aktivoi määritys" - -#~ msgctxt "@info:tooltip" -#~ msgid "Load the configuration of the printer into Cura" -#~ msgstr "Lataa tulostimen määritys Curaan" - -#~ msgctxt "@label" -#~ msgid "Show Travels" -#~ msgstr "Näytä siirtoliikkeet" - -#~ msgctxt "@label" -#~ msgid "Show Helpers" -#~ msgstr "Näytä avustimet" - -#~ msgctxt "@label" -#~ msgid "Show Shell" -#~ msgstr "Näytä kuori" - -#~ msgctxt "@label" -#~ msgid "Show Infill" -#~ msgstr "Näytä täyttö" - -#~ msgctxt "@label" -#~ msgid "Printer type:" -#~ msgstr "Tulostimen tyyppi:" - -#~ msgctxt "@label" -#~ msgid "Connection:" -#~ msgstr "Yhteys:" - -#~ msgctxt "@label" -#~ msgid "State:" -#~ msgstr "Tila:" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for a printjob" -#~ msgstr "Odotetaan tulostustyötä" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for someone to clear the build plate" -#~ msgstr "Odotetaan tulostusalustan tyhjennystä" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Aborting print..." -#~ msgstr "Keskeytetään tulostus..." - -#~ msgctxt "@label" -#~ msgid "Protected profiles" -#~ msgstr "Suojatut profiilit" - -#~ msgctxt "@label" -#~ msgid "Printer Name:" -#~ msgstr "Tulostimen nimi:" - -#~ msgctxt "@label" -#~ msgid "Profile:" -#~ msgstr "Profiili:" - -#~ msgctxt "@label:textbox" -#~ msgid "Search..." -#~ msgstr "Haku..." - -#~ msgctxt "@label:listbox" -#~ msgid "Print Setup" -#~ msgstr "Tulostuksen asennus" - -#~ msgctxt "@label:listbox" -#~ msgid "" -#~ "Print Setup disabled\n" -#~ "G-code files cannot be modified" -#~ msgstr "" -#~ "Tulostuksen asennus ei käytössä\n" -#~ "G-code-tiedostoja ei voida muokata" - -#~ msgctxt "@tooltip" -#~ msgid "Recommended Print Setup

    Print with the recommended settings for the selected printer, material and quality." -#~ msgstr "Suositeltu tulostuksen asennus

    Tulosta valitun tulostimen, materiaalin ja laadun suositelluilla asetuksilla." - -#~ msgctxt "@tooltip" -#~ msgid "Custom Print Setup

    Print with finegrained control over every last bit of the slicing process." -#~ msgstr "Mukautettu tulostuksen asennus

    Tulosta hallitsemalla täysin kaikkia viipalointiprosessin vaiheita." - -#~ msgctxt "@action:inmenu menubar:help" -#~ msgid "Show Engine &Log..." -#~ msgstr "Näytä moottorin l&oki" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3D model" -#~ msgstr "Lataa 3D-malli" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Ready to slice" -#~ msgstr "Valmiina viipaloimaan" - -#~ msgctxt "@label:PrintjobStatus %1 is target operation" -#~ msgid "Ready to %1" -#~ msgstr "Valmis: %1" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Slicing unavailable" -#~ msgstr "Viipalointi ei käytettävissä" - -#~ msgctxt "@label:Printjob" -#~ msgid "Prepare" -#~ msgstr "Valmistele" - -#~ msgctxt "@label:Printjob" -#~ msgid "Cancel" -#~ msgstr "Peruuta" - -#~ msgctxt "@info:tooltip" -#~ msgid "Select the active output device" -#~ msgstr "Valitse aktiivinen tulostusväline" - -#~ msgctxt "@title:menu" -#~ msgid "&View" -#~ msgstr "&Näytä" - -#~ msgctxt "@title:menu" -#~ msgid "&Settings" -#~ msgstr "&Asetukset" - -#~ msgctxt "@action:button" -#~ msgid "Open File" -#~ msgstr "Avaa tiedosto" - -#~ msgctxt "@label" -#~ msgid "Print Speed" -#~ msgstr "Tulostusnopeus" - -#~ msgctxt "@label" -#~ msgid "Slower" -#~ msgstr "Hitaammin" - -#~ msgctxt "@label" -#~ msgid "Faster" -#~ msgstr "Nopeammin" - -#~ msgctxt "@label" -#~ msgid "Enable gradual" -#~ msgstr "Ota asteittainen käyttöön" - -#~ msgctxt "@label" -#~ msgid "Generate Support" -#~ msgstr "Muodosta tuki" - -#~ msgctxt "@label" -#~ msgid "Build Plate Adhesion" -#~ msgstr "Alustan tarttuvuus" - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints?
    Read the Ultimaker Troubleshooting Guides" -#~ msgstr "Tarvitsetko apua tulosteiden parantamiseen?
    Lue Ultimakerin vianmääritysoppaat" - -#~ msgctxt "@title:window" -#~ msgid "Engine Log" -#~ msgstr "Moottorin loki" - -#~ msgctxt "@tooltip" -#~ msgid "Click to check the material compatibility on Ultimaker.com." -#~ msgstr "Napsauta ja tarkista materiaalin yhteensopivuus sivustolla Ultimaker.com." - -#~ msgctxt "description" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "Näyttää viimeisimmän tarkistetun version jälkeen tapahtuneet muutokset." - -#~ msgctxt "name" -#~ msgid "Changelog" -#~ msgstr "Muutosloki" - -#~ msgctxt "description" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "Luo tasoitettu laatumuutosten profiili." - -#~ msgctxt "name" -#~ msgid "Profile flatener" -#~ msgstr "Profiilin tasoitus" - -#~ msgctxt "@action" -#~ msgid "Upgrade Firmware" -#~ msgstr "Päivitä laiteohjelmisto" - -#~ msgctxt "@title" -#~ msgid "Upgrade Firmware" -#~ msgstr "Laiteohjelmiston päivitys" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Tulostus Doodle3D WiFi-Boxin avulla" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Tulostus Doodle3D WiFi-Boxin avulla" - -#~ msgctxt "@info:status" -#~ msgid "Connecting to Doodle3D Connect" -#~ msgstr "Yhteyden muodostaminen Doodle3D Connectiin" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to Doodle3D Connect" -#~ msgstr "Lähetetään tietoja Doodle3D Connectiin" - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -#~ msgstr "Tietojen lähetys Doodle3D Connectiin ei onnistu. Onko toinen työ yhä aktiivinen?" - -#~ msgctxt "@info:status" -#~ msgid "Storing data on Doodle3D Connect" -#~ msgstr "Tietoja tallennetaan Doodle3D Connectiin" - -#~ msgctxt "@info:status" -#~ msgid "File sent to Doodle3D Connect" -#~ msgstr "Tiedosto lähetetty Doodle3D Connectiin" - -#~ msgctxt "@info:tooltip" -#~ msgid "Open the Doodle3D Connect web interface" -#~ msgstr "Avaa Doodle3D Connect -verkkoliittymä" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." -#~ msgstr "Tätä tulostinta ei ole määritetty Ultimaker 3 -tulostinryhmän isännäksi." - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -#~ msgstr "Tämä tulostin on {count} tulostimen Ultimaker 3 -ryhmän isäntä." - -#~ msgctxt "@label: arg 1 is group name" -#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "%1 ei ole määritetty yhdistetyn Ultimaker 3 -tulostinryhmän isännäksi" - -#~ msgctxt "@action:button" -#~ msgid "View print jobs" -#~ msgstr "Näytä tulostustyöt" - -#~ msgctxt "@label:status" -#~ msgid "Available" -#~ msgstr "Saatavilla" - -#~ msgctxt "@label:status" -#~ msgid "Reserved" -#~ msgstr "Varattu" - -#~ msgctxt "@label" -#~ msgid "Preparing to print" -#~ msgstr "Valmistellaan tulostusta" - -#~ msgctxt "@label:status" -#~ msgid "Print aborted" -#~ msgstr "Tulostus keskeytetty" - -#~ msgctxt "@label" -#~ msgid "Not accepting print jobs" -#~ msgstr "Ei hyväksy tulostustöitä" - -#~ msgctxt "@label" -#~ msgid "Finishes at: " -#~ msgstr "Päättyy: " - -#~ msgctxt "@label" -#~ msgid "Clear build plate" -#~ msgstr "Tyhjennä alusta" - -#~ msgctxt "@label" -#~ msgid "Waiting for configuration change" -#~ msgstr "Odotetaan määrityksen muutosta" - -#~ msgctxt "@title" -#~ msgid "Print jobs" -#~ msgstr "Tulostustyöt" - -#~ msgctxt "@label:title" -#~ msgid "Printers" -#~ msgstr "Tulostimet" - -#~ msgctxt "@action:button" -#~ msgid "View printers" -#~ msgstr "Näytä tulostimet" - -#~ msgctxt "@label:" -#~ msgid "Pause" -#~ msgstr "Keskeytä" - -#~ msgctxt "@label:" -#~ msgid "Resume" -#~ msgstr "Jatka" - -#~ msgctxt "@label:" -#~ msgid "Abort Print" -#~ msgstr "Keskeytä tulostus" - -#~ msgctxt "@option:openProject" -#~ msgid "Always ask" -#~ msgstr "Kysy aina" - -#~ msgctxt "@label" -#~ msgid "Override Profile" -#~ msgstr "Kumoa profiili" - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Save Selection to File" -#~ msgstr "&Tallenna valinta tiedostoon" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &As..." -#~ msgstr "Tallenna &nimellä..." - -#~ msgctxt "description" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "Hyväksyy GCode-määrittelyt ja lähettää ne Wi-Fi-yhteyden kautta Doodle3D WiFi-Boxiin." - -#~ msgctxt "name" -#~ msgid "Doodle3D WiFi-Box" -#~ msgstr "Doodle3D WiFi-Box" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks part file" -#~ msgstr "SolidWorks-osatiedosto" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks assembly file" -#~ msgstr "SolidWorks-kokoonpanotiedosto" - -#~ msgid "Configure" -#~ msgstr "Määritä" - -#~ msgctxt "@info:status" -#~ msgid "Failed to get plugin ID from {0}" -#~ msgstr "Lisäosan tunnuksen hankkiminen epäonnistui tiedostosta {0}" - -#~ msgctxt "@info:tile" -#~ msgid "Warning" -#~ msgstr "Varoitus" - -#~ msgctxt "@window:title" -#~ msgid "Plugin browser" -#~ msgstr "Lisäosien selain" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@action:menu" -#~ msgid "Browse plugins..." -#~ msgstr "Selaa lisäosia..." - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "P&lugins" -#~ msgstr "&Lisäosat" - -#~ msgctxt "@window:title" -#~ msgid "Install Plugin" -#~ msgstr "Asenna laajennus" - -#~ msgctxt "description" -#~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)" -#~ msgstr "Toiminnon avulla voidaan vaihtaa laitteen asetuksia (esim. tulostustilavuus, suuttimen koko yms.)" - -#~ msgctxt "description" -#~ msgid "Manages network connections to Ultimaker 3 printers" -#~ msgstr "Ultimaker 3 -tulostimien verkkoyhteyksien hallinta" - -#~ msgctxt "name" -#~ msgid "SolidWorks Integration" -#~ msgstr "SolidWorks-integrointi" - -#~ msgctxt "description" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "Tallentaa automaattisesti lisäasetukset, koneet ja profiilit muutosten jälkeen." - -#~ msgctxt "name" -#~ msgid "Auto Save" -#~ msgstr "Automaattitallennus" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new plugins." -#~ msgstr "Etsi, hallinnoi ja asenna uusia laajennuksia." - -#~ msgctxt "name" -#~ msgid "Plugin Browser" -#~ msgstr "Lisäosien selain" - -#~ msgctxt "description" -#~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)" -#~ msgstr "Ultimaker-laitteiden toimintojen käyttö (esim. pöydän tasaaminen, päivitysten valinta yms.)" - -#~ msgctxt "@item:inlistbox" -#~ msgid "GCode File" -#~ msgstr "GCode-tiedosto" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer is busy or not connected." -#~ msgstr "Uuden työn aloittaminen ei onnistu, koska tulostin on varattu tai sitä ei ole yhdistetty." - -#~ msgctxt "@info:status" -#~ msgid "This printer does not support USB printing because it uses UltiGCode flavor." -#~ msgstr "Tämä tulostin ei tue USB-tulostusta, koska se käyttää UltiGCode-tyyppiä." - -#~ msgctxt "@info:title" -#~ msgid "USB Printing" -#~ msgstr "USB-tulostus" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer does not support usb printing." -#~ msgstr "Uuden työn aloittaminen ei onnistu, koska tulostin ei tue USB-tulostusta." - -#~ msgctxt "@info" -#~ msgid "Unable to update firmware because there are no printers connected." -#~ msgstr "Laiteohjelmistoa ei voida päivittää, koska yhtään tulostinta ei ole yhdistetty." - -#~ msgctxt "@info" -#~ msgid "Could not find firmware required for the printer at %s." -#~ msgstr "Tulostimelle ei löydetty laiteohjelmistoa (%s)." - -#~ msgctxt "@info:title" -#~ msgid "Printer Firmware" -#~ msgstr "Tulostimen laiteohjelmisto" - -#~ msgctxt "@info:title" -#~ msgid "Connection status" -#~ msgstr "Yhteyden tila" - -#~ msgctxt "@info:title" -#~ msgid "Connection Status" -#~ msgstr "Yhteyden tila" - -#~ msgctxt "@info:status" -#~ msgid "Access request was denied on the printer." -#~ msgstr "Tulostimen käyttöoikeuspyyntö hylättiin." - -#~ msgctxt "@info:status" -#~ msgid "Access request failed due to a timeout." -#~ msgstr "Käyttöoikeuspyyntö epäonnistui aikakatkaisun vuoksi." - -#~ msgctxt "@info:status" -#~ msgid "The connection with the network was lost." -#~ msgstr "Yhteys verkkoon menetettiin." - -#~ msgctxt "@info:status" -#~ msgid "The connection with the printer was lost. Check your printer to see if it is connected." -#~ msgstr "Yhteys tulostimeen menetettiin. Tarkista, onko tulostin yhdistetty." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s." -#~ msgstr "Uuden tulostustyön aloittaminen ei onnistu, koska tulostin on varattu. Nykyinen tulostimen tila on %s." - -#~ msgctxt "@info:title" -#~ msgid "Printer Status" -#~ msgstr "Tulostimen tila" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}" -#~ msgstr "Uuden tulostustyön aloittaminen ei onnistu. PrintCorea ei ole ladattu aukkoon {0}" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No material loaded in slot {0}" -#~ msgstr "Uuden tulostustyön aloittaminen ei onnistu. Materiaalia ei ole ladattu aukkoon {0}" - -#~ msgctxt "@label" -#~ msgid "Not enough material for spool {0}." -#~ msgstr "Kelalle {0} ei ole tarpeeksi materiaalia." - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Eri PrintCore (Cura: {0}, tulostin: {1}) valittu suulakkeelle {2}" - -#~ msgctxt "@label" -#~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "Print Core -tulostusydintä {0} ei ole kalibroitu oikein. Tulostimen XY-kalibrointi tulee suorittaa." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to printer. Is another job still active?" -#~ msgstr "Tietojen lähetys tulostimeen ei onnistu. Onko toinen työ yhä aktiivinen?" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Print aborted. Please check the printer" -#~ msgstr "Tulostus keskeytetty. Tarkista tulostin" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Pausing print..." -#~ msgstr "Tulostus pysäytetään..." - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Resuming print..." -#~ msgstr "Tulostusta jatketaan..." - -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "Tätä tulostinta ei ole määritetty yhdistetyn Ultimaker 3 -tulostinryhmän isännäksi." - -#~ msgctxt "Count is number of printers." -#~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers." -#~ msgstr "Tämä tulostin on {count} tulostimen yhdistetyn Ultimaker 3 -ryhmän isäntä." - -#~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate." -#~ msgstr "{printer_name} on tulostanut työn '{job_name}'. Nouda työ ja vahvista alustan tyhjennys." - -#~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing." -#~ msgstr "{printer_name} on varattu työn {job_name} tulostamiseen. Muuta tulostimen määritys vastaamaan työtä, jotta tulostus alkaa." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "Uuden tulostustyön lähetys ei onnistu: tätä 3D-tulostinta ei ole (vielä) määritetty yhdistetyn Ultimaker 3 -tulostinryhmän isännäksi." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send print job to group {cluster_name}." -#~ msgstr "Tulostustyön lähetys ryhmään {cluster_name} ei onnistu." - -#~ msgctxt "@info:status" -#~ msgid "Sent {file_name} to group {cluster_name}." -#~ msgstr "Lähetettiin {file_name} ryhmään {cluster_name}." - -#~ msgctxt "@action:button" -#~ msgid "Show print jobs" -#~ msgstr "Näytä tulostustyöt" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs interface in your browser." -#~ msgstr "Avaa tulostustöiden käyttöliittymän selaimessa." - -#~ msgctxt "@info:progress" -#~ msgid "Sending {file_name} to group {cluster_name}" -#~ msgstr "Lähetetään tiedostoa {file_name} ryhmään {cluster_name}" - -#~ msgctxt "@item:material" -#~ msgid "No material loaded" -#~ msgstr "Ei ladattua materiaalia" - -#~ msgctxt "@item:material" -#~ msgid "Unknown material" -#~ msgstr "Tuntematon materiaali" - -#~ msgctxt "@info:status Has a cancel button next to it." -#~ msgid "The selected material diameter causes the material to become incompatible with the current printer." -#~ msgstr "Valitun materiaalin halkaisijan vuoksi materiaali ei sovellu käytettäväksi nykyisen tulostimen kanssa." - -#~ msgctxt "@action:button" -#~ msgid "Undo" -#~ msgstr "Kumoa" - -#~ msgctxt "@action" -#~ msgid "Undo changing the material diameter." -#~ msgstr "Kumoa materiaalin halkaisijan muutokset." - -#~ msgctxt "@label" -#~ msgid "Gcode flavor" -#~ msgstr "GCode-tyyppi" - -#~ msgctxt "@label" -#~ msgid "Start Gcode" -#~ msgstr "Aloita GCode" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very start." -#~ msgstr "GCode-komennot, jotka suoritetaan aivan alussa." - -#~ msgctxt "@label" -#~ msgid "End Gcode" -#~ msgstr "Lopeta GCode" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very end." -#~ msgstr "GCode-komennot, jotka suoritetaan aivan lopussa." - -#~ msgctxt "@label" -#~ msgid "Extruder Start Gcode" -#~ msgstr "Suulake – aloita Gcode" - -#~ msgctxt "@label" -#~ msgid "Extruder End Gcode" -#~ msgstr "Suulake – lopeta Gcode" - -#~ msgctxt "@label" -#~ msgid "Starting firmware update, this may take a while." -#~ msgstr "Käynnistetään laiteohjelmiston päivitystä, mikä voi kestää hetken." - -#~ msgctxt "@label" -#~ msgid "Unknown error code: %1" -#~ msgstr "Tuntemattoman virheen koodi: %1" - -#~ msgctxt "@title:window" -#~ msgid "Find & Update plugins" -#~ msgstr "Etsi ja päivitä laajennuksia" - -#~ msgctxt "@label" -#~ msgid "Here you can find a list of Third Party plugins." -#~ msgstr "Tässä on luettelo muiden valmistajien laajennuksista." - -#~ msgctxt "@action:button" -#~ msgid "Upgrade" -#~ msgstr "Päivitä" - -#~ msgctxt "@action:button" -#~ msgid "Download" -#~ msgstr "Lataa" - -#~ msgctxt "@info:tooltip" -#~ msgid "Show caution message in gcode reader." -#~ msgstr "Näytä varoitusviesti gcode-lukijassa." - -#~ msgctxt "@option:check" -#~ msgid "Caution message in gcode reader" -#~ msgstr "Gcode-lukijan varoitusviesti" - -#~ msgctxt "@window:title" -#~ msgid "Import Profile" -#~ msgstr "Profiilin tuonti" - -#~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name" -#~ msgid "Printer: %1, %2: %3" -#~ msgstr "Tulostin: %1, %2: %3" - -#~ msgctxt "@action:label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "Tulostin: %1" - -#~ msgctxt "@label" -#~ msgid "GCode generator" -#~ msgstr "GCode-generaattori" - -#~ msgctxt "@action:menu" -#~ msgid "Configure setting visiblity..." -#~ msgstr "Määritä asetusten näkyvyys..." - -#~ msgctxt "@title:menuitem %1 is the automatically selected material" -#~ msgid "Automatic: %1" -#~ msgstr "Automaattinen: %1" - -#~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer" -#~ msgid "Automatic: %1" -#~ msgstr "Automaattinen: %1" - -#~ msgctxt "@info:status" -#~ msgid "No printer connected" -#~ msgstr "Ei tulostinta yhdistettynä" - -#~ msgctxt "@tooltip" -#~ msgid "The current temperature of this extruder." -#~ msgstr "Tämän suulakkeen nykyinen lämpötila." - -#~ msgctxt "@action:menu" -#~ msgid "Installed plugins..." -#~ msgstr "Asennetut lisäoset..." - -#~ msgctxt "@label" -#~ msgid "Support Extruder" -#~ msgstr "Tuen suulake" - -#~ msgctxt "description" -#~ msgid "Writes GCode to a file." -#~ msgstr "Kirjoittaa GCodea tiedostoon." - -#~ msgctxt "name" -#~ msgid "GCode Writer" -#~ msgstr "GCode-kirjoitin" - -#~ msgctxt "name" -#~ msgid "GCode Profile Reader" -#~ msgstr "GCode-profiilin lukija" - -#~ msgctxt "@info:status" -#~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" -#~ msgstr "SolidWorks-tiedostoa avattaessa ilmeni virheitä! Tarkista, voiko tiedoston avata SolidWorks-ohjelmistossa ilman ongelmia." - -#~ msgctxt "@info:status" -#~ msgid "Error while starting %s!" -#~ msgstr "%s:n käynnistyksen aikana ilmeni virhe!" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences." -#~ msgstr "Cura kerää anonyymejä viipalointiin liittyviä tilastotietoja. Tämän voi poistaa käytöstä asetuksien kautta." - -#~ msgctxt "@action:button" -#~ msgid "Dismiss" -#~ msgstr "Ohita" - -#~ msgctxt "@label" -#~ msgid "Material diameter" -#~ msgstr "Materiaalin halkaisija" - -#~ msgctxt "@title:window" -#~ msgid "Cura SolidWorks Plugin Configuration" -#~ msgstr "Cura SolidWorks -laajennuksen määritys" - -#~ msgctxt "@action:label" -#~ msgid "Default quality of the exported STL:" -#~ msgstr "Viedyn STL:n oletuslaatu:" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always ask" -#~ msgstr "Kysy aina" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Fine quality" -#~ msgstr "Käytä aina hienoa laatua" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Coarse quality" -#~ msgstr "Käytä aina karkeaa laatua" - -#~ msgctxt "@title:window" -#~ msgid "Import SolidWorks File as STL..." -#~ msgstr "Tuo SolidWorks-tiedosto STL-muodossa..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Quality of the Exported STL" -#~ msgstr "Viedyn STL:n laatu" - -#~ msgctxt "@action:label" -#~ msgid "Quality" -#~ msgstr "Laatu" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse" -#~ msgstr "Karkea" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine" -#~ msgstr "Hieno" - -#~ msgctxt "@label" -#~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders" -#~ msgstr "Tämä asetus koskee aina kaikkia suulakepuristimia. Jos se vaihdetaan tässä, kaikkien suulakepuristimien arvo muuttuu" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save project" -#~ msgstr "Tallenna projekti" - -#~ msgctxt "@title:tab" -#~ msgid "Prepare" -#~ msgstr "Valmistele" - -#~ msgctxt "@title:tab" -#~ msgid "Monitor" -#~ msgstr "Valvo" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura" -#~ msgstr "Mahdollistaa tiettyjen tiedostojen avaamisen SolidWorks-ohjelmiston kautta. Tämän jälkeen tiedostot muunnetaan ja ladataan Curaan." - -#~ msgctxt "@label:status" -#~ msgid "Blocked" -#~ msgstr "Tukossa" - -#~ msgctxt "@label:status" -#~ msgid "Can't start print" -#~ msgstr "Tulostus ei käynnisty" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect.." -#~ msgstr "Avaa Connect..." - -#~ msgctxt "@info:title" -#~ msgid "Print Details" -#~ msgstr "Tulostustiedot" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB." -#~ msgstr "On suositeltavaa päivittää laiteohjelmisto säännöllisesti, jotta voidaan varmistaa, että laitteessa {machine_name} on viimeisimmät ominaisuudet. Tämä voidaan tehdä laitteessa {machine_name} (verkkoon yhdistettynä) tai USB:n kautta." - -#~ msgctxt "@info:title" -#~ msgid "Layer View" -#~ msgstr "Kerrosnäkymä" - -#~ msgctxt "@menuitem" -#~ msgid "Browse plugins" -#~ msgstr "Selaa lisäosia" - -#~ msgctxt "@info:title" -#~ msgid "Export Details" -#~ msgstr "Viennin tiedot" - -#~ msgctxt "@label" -#~ msgid "" -#~ "

    A fatal exception has occurred that we could not recover from!

    \n" -#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " -#~ msgstr "" -#~ "

    Tapahtui vakava poikkeus, josta palautuminen ei onnistunut!

    \n" -#~ "

    Tee virheraportti alla olevien tietojen perusteella osoitteessa http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " - -#~ msgctxt "@action:button" -#~ msgid "Open Web Page" -#~ msgstr "Avaa verkkosivu" - -#~ msgctxt "@action:button" -#~ msgid "Ok" -#~ msgstr "OK" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "Tätä tulostinta ei ole määritetty yhdistetyn Ultimaker 3 -tulostinryhmän isännäksi" - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" -#~ msgstr "Tämä tulostin on %1 tulostimen yhdistetyn Ultimaker 3 -ryhmän isäntä" - -#~ msgctxt "@label" -#~ msgid "Completed on: " -#~ msgstr "Valmistunut: " - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "Avaa tulostöiden sivun oletusselaimessa." - -#~ msgctxt "@label" -#~ msgid "PRINTER GROUP" -#~ msgstr "TULOSTINRYHMÄ" - -#~ msgctxt "@action:warning" -#~ msgid "Loading a project will clear all models on the buildplate" -#~ msgstr "Projektin lataaminen poistaa kaikki alustalla olevat mallit" - -#~ msgctxt "@label" -#~ msgid "" -#~ " plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ " lisäosa sisältää lisenssin.\n" -#~ "Lisenssi on hyväksyttävä lisäosan asentamista varten.\n" -#~ "Hyväksytkö alla olevat ehdot?" - -#~ msgctxt "@label" -#~ msgid "00h 00min" -#~ msgstr "00 h 00 min" - -#~ msgctxt "@tooltip" -#~ msgid "Time information" -#~ msgstr "Aikatiedot" - -#~ msgctxt "@description" -#~ msgid "Print time" -#~ msgstr "Tulostusaika" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1 m / ~ %2 g / ~ %4 %3" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1 m / ~ %2 g" - -#~ msgctxt "@title:window" -#~ msgid "Cura" -#~ msgstr "Cura" - -#~ msgctxt "@label" -#~ msgid "Check material compatibility" -#~ msgstr "Tarkista materiaalin yhteensopivuus" - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection (Cluster)" -#~ msgstr "UM3-verkkoyhteys (klusteri)" - -#~ msgctxt "description" -#~ msgid "Provides the Layer view." -#~ msgstr "Näyttää kerrosnäkymän." - -#~ msgctxt "name" -#~ msgid "Layer View" -#~ msgstr "Kerrosnäkymä" - -#~ msgctxt "@item:inlistbox" -#~ msgid "X-Ray" -#~ msgstr "Kerros" - -#~ msgctxt "@label" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "Hyväksyy GCode-määrittelyt ja lähettää ne Wi-Fi-yhteyden kautta Doodle3D WiFi-Boxiin." - -#~ msgctxt "@item:inmenu" -#~ msgid "Doodle3D printing" -#~ msgstr "Doodle3D-tulostus" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D" -#~ msgstr "Tulostus Doodle3D:n avulla" - -#~ msgctxt "@info:tooltip" -#~ msgid "Print with " -#~ msgstr "Tulostus:" - -#~ msgctxt "@title:menu" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Enable Scan devices..." -#~ msgstr "Ota skannauslaitteet käyttöön..." - -#~ msgctxt "@info:progress" -#~ msgid "Saving to Removable Drive {0}" -#~ msgstr "Tallennetaan siirrettävälle asemalle {0}" - -#~ msgctxt "@info:status" -#~ msgid "Could not save to {0}: {1}" -#~ msgstr "Ei voitu tallentaa tiedostoon {0}: {1}" - -#~ msgctxt "@info:status" -#~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!" -#~ msgstr "Muista, että SolidWorks-tiedosto on avattava uudelleen manuaalisesti. Mallin lataaminen uudelleen ei toimi." - -#~ msgctxt "@item:inlistbox" -#~ msgid "Layers" -#~ msgstr "Kerrokset" - -#~ msgid "Browse plugins" -#~ msgstr "Selaa laajennuksia" - -#~ msgctxt "@item:inmenu" -#~ msgid "Solid" -#~ msgstr "Kiinteä" - -#~ msgctxt "@label" -#~ msgid "The file {0} already exists. Are you sure you want to overwrite it?" -#~ msgstr "Tiedosto {0} on jo olemassa. Haluatko varmasti kirjoittaa sen päälle?" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export profile to {0}: {1}" -#~ msgstr "Profiilin vienti epäonnistui tiedostoon {0}: {1}" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export profile to {0}: Writer plugin reported failure." -#~ msgstr "Profiilin vienti epäonnistui tiedostoon {0}: Kirjoitin-lisäosa ilmoitti virheestä." - -#~ msgctxt "@info:status" -#~ msgid "Exported profile to {0}" -#~ msgstr "Profiili viety tiedostoon {0}" - -#~ msgctxt "@info:status" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "Profiilin tuonti epäonnistui tiedostosta {0}: {1}" - -#~ msgctxt "@title:window" -#~ msgid "Doodle3D Settings" -#~ msgstr "Doodle3D-asetukset" - -#~ msgctxt "@title:window" -#~ msgid "Print to: %1" -#~ msgstr "Tulosta kohteeseen %1" - -#~ msgctxt "@label" -#~ msgid "Extruder Temperature: %1/%2°C" -#~ msgstr "Suulakkeen lämpötila: %1/%2 °C" - -#~ msgctxt "@label" -#~ msgid "Bed Temperature: %1/%2°C" -#~ msgstr "Pöydän lämpötila: %1/%2 °C" - -#~ msgctxt "@label" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@label" -#~ msgid "View Mode: Layers" -#~ msgstr "Näyttötapa: Kerrokset" - -#~ msgctxt "@info:status" -#~ msgid "Could not import material %1: %2" -#~ msgstr "Materiaalin tuominen epäonnistui: %1: %2" - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported material %1" -#~ msgstr "Materiaalin tuominen onnistui: %1" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export material to %1: %2" -#~ msgstr "Materiaalin vieminen epäonnistui kohteeseen %1: %2" - -#~ msgctxt "@info:status" -#~ msgid "Successfully exported material to %1" -#~ msgstr "Materiaalin vieminen onnistui kohteeseen %1" - -#~ msgctxt "@label" -#~ msgid "%1 m / ~ %2 g / ~ %4 %3" -#~ msgstr "%1 m / ~ %2 g / ~ %4 %3" - -#~ msgctxt "@label" -#~ msgid "%1 m / ~ %2 g" -#~ msgstr "%1 m / ~ %2 g" - -#~ msgctxt "@label" -#~ msgid "Hotend" -#~ msgstr "Kuuma pää" - -#~ msgctxt "@action:button" -#~ msgid "View Mode" -#~ msgstr "Näyttötapa" - -#~ msgctxt "@title:tab" -#~ msgid "Print" -#~ msgstr "Tulosta" - -#~ msgctxt "@label" -#~ msgid "0%" -#~ msgstr "0 %" - -#~ msgctxt "@label" -#~ msgid "Empty infill will leave your model hollow with low strength." -#~ msgstr "Ei täyttöä jättää mallin ontoksi ja lujuudeltaan alhaiseksi." - -#~ msgctxt "@label" -#~ msgid "20%" -#~ msgstr "20 %" - -#~ msgctxt "@label" -#~ msgid "Light (20%) infill will give your model an average strength." -#~ msgstr "Harva (20 %) täyttö antaa mallille keskimääräisen lujuuden." - -#~ msgctxt "@label" -#~ msgid "50%" -#~ msgstr "50 %" - -#~ msgctxt "@label" -#~ msgid "Dense (50%) infill will give your model an above average strength." -#~ msgstr "Tiheä (50 %) täyttö antaa mallille keskimääräistä paremman lujuuden." - -#~ msgctxt "@label" -#~ msgid "100%" -#~ msgstr "100 %" - -#~ msgctxt "@label" -#~ msgid "Solid (100%) infill will make your model completely solid." -#~ msgstr "Kiinteä (100 %) täyttö tekee mallista täysin umpinaisen." - -#~ msgctxt "@label" -#~ msgid "Gradual" -#~ msgstr "Asteittainen" - -#~ msgctxt "description" -#~ msgid "Provides support for writing X3G files" -#~ msgstr "Tukee X3G-tiedostojen kirjoittamista." - -#~ msgctxt "name" -#~ msgid "X3G Writer" -#~ msgstr "X3G-kirjoitin" - -#~ msgctxt "@label" -#~ msgid "Machine Settings action" -#~ msgstr "Toiminto Laitteen asetukset" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)" -#~ msgstr "Toiminnon avulla voidaan vaihtaa laitteen asetuksia (esim. tulostustilavuus, suuttimen koko yms.)" - -#~ msgctxt "@label" -#~ msgid "X-Ray View" -#~ msgstr "Kerrosnäkymä" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the X-Ray view." -#~ msgstr "Näyttää kerrosnäkymän." - -#~ msgctxt "@label" -#~ msgid "X3D Reader" -#~ msgstr "X3D-lukija" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for reading X3D files." -#~ msgstr "Tukee X3D-tiedostojen lukemista." - -#~ msgctxt "@label" -#~ msgid "GCode Writer" -#~ msgstr "GCode-kirjoitin" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Writes GCode to a file." -#~ msgstr "Kirjoittaa GCodea tiedostoon." - -#~ msgctxt "@action:button Preceded by 'Ready to'." -#~ msgid "Print with Doodle3D" -#~ msgstr "Tulostus Doodle3D:n avulla" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "Näyttää viimeisimmän tarkistetun version jälkeen tapahtuneet muutokset." - -#~ msgctxt "@label" -#~ msgid "Profile flatener" -#~ msgstr "Profiilin tasoitus" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "Luo tasoitettu laatumuutosten profiili." - -#~ msgctxt "@label" -#~ msgid "USB printing" -#~ msgstr "USB-tulostus" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -#~ msgstr "Hyväksyy GCode-määrittelyt ja lähettää ne tulostimeen. Lisäosa voi myös päivittää laiteohjelmiston." - -#~ msgctxt "X3G Writer Plugin Description" -#~ msgid "Writes X3G to a file" -#~ msgstr "Kirjoittaa X3G:n tiedostoon" - -#~ msgctxt "@label" -#~ msgid "Removable Drive Output Device Plugin" -#~ msgstr "Irrotettavan aseman tulostusvälineen lisäosa" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides removable drive hotplugging and writing support." -#~ msgstr "Tukee irrotettavan aseman kytkemistä lennossa ja sille kirjoittamista." - -#~ msgctxt "@info:whatsthis" -#~ msgid "Manages network connections to Ultimaker 3 printers" -#~ msgstr "Ultimaker 3 -tulostimien verkkoyhteyksien hallinta" - -#~ msgctxt "@label" -#~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Eri PrintCore-tulostusydin (Cura: {0}, tulostin: {1}) valittu suulakkeelle {2}" - -#~ msgctxt "@label" -#~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "Print Core -tulostusydintä {0} ei ole kalibroitu oikein. Tulostimen XY-kalibrointi tulee suorittaa." - -#~ msgctxt "@label" -#~ msgid "The print cores and/or materials on your printer differ from those within your current project. For the best result, always slice for the print cores and materials that are inserted in your printer." -#~ msgstr "Tulostimen PrintCoret tai materiaalit eivät vastaa tulostettavan projektin asetuksia. Parhaat tulokset saavutetaan viipaloimalla aina tulostimeen asetetuille PrintCoreille ja materiaaleille." - -#~ msgctxt "@label" -#~ msgid "Post Processing" -#~ msgstr "Jälkikäsittely" - -#~ msgctxt "Description of plugin" -#~ msgid "Extension that allows for user created scripts for post processing" -#~ msgstr "Lisäosa, jonka avulla käyttäjät voivat luoda komentosarjoja jälkikäsittelyä varten" - -#~ msgctxt "@label" -#~ msgid "Auto Save" -#~ msgstr "Automaattitallennus" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "Tallentaa automaattisesti lisäasetukset, koneet ja profiilit muutosten jälkeen." - -#~ msgctxt "@label" -#~ msgid "Slice info" -#~ msgstr "Viipalointitiedot" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Submits anonymous slice info. Can be disabled through preferences." -#~ msgstr "Lähettää anonyymiä viipalointitietoa. Voidaan lisäasetuksista kytkeä pois käytöstä." - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences" -#~ msgstr "Cura kerää anonyymejä viipalointiin liittyviä tilastotietoja. Tämän voi poistaa käytöstä asetuksien kautta" - -#~ msgctxt "@label" -#~ msgid "Material Profiles" -#~ msgstr "Materiaaliprofiilit" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides capabilities to read and write XML-based material profiles." -#~ msgstr "Mahdollistaa XML-pohjaisten materiaaliprofiilien lukemisen ja kirjoittamisen." - -#~ msgctxt "@label" -#~ msgid "Legacy Cura Profile Reader" -#~ msgstr "Aikaisempien Cura-profiilien lukija" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing profiles from legacy Cura versions." -#~ msgstr "Tukee profiilien tuontia aikaisemmista Cura-versioista." - -#~ msgctxt "@label" -#~ msgid "GCode Profile Reader" -#~ msgstr "GCode-profiilin lukija" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing profiles from g-code files." -#~ msgstr "Tukee profiilien tuontia GCode-tiedostoista." - -#~ msgctxt "@label" -#~ msgid "Layer View" -#~ msgstr "Kerrosnäkymä" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the Layer view." -#~ msgstr "Näyttää kerrosnäkymän." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.5 to 2.6" -#~ msgstr "Päivitys versiosta 2.5 versioon 2.6" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -#~ msgstr "Päivittää kokoonpanon versiosta Cura 2.5 versioon Cura 2.6." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.1 to 2.2" -#~ msgstr "Päivitys versiosta 2.1 versioon 2.2" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -#~ msgstr "Päivittää kokoonpanon versiosta Cura 2.1 versioon Cura 2.2." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.2 to 2.4" -#~ msgstr "Päivitys versiosta 2.2 versioon 2.4" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -#~ msgstr "Päivittää kokoonpanon versiosta Cura 2.2 versioon Cura 2.4." - -#~ msgctxt "@label" -#~ msgid "Image Reader" -#~ msgstr "Kuvanlukija" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Enables ability to generate printable geometry from 2D image files." -#~ msgstr "Mahdollistaa tulostettavien geometrioiden luomisen 2D-kuvatiedostoista." - -#~ msgctxt "@label" -#~ msgid "CuraEngine Backend" -#~ msgstr "CuraEngine-taustaosa" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the link to the CuraEngine slicing backend." -#~ msgstr "Linkki CuraEngine-viipalointiin taustalla." - -#~ msgctxt "@label" -#~ msgid "Per Model Settings Tool" -#~ msgstr "Mallikohtaisten asetusten työkalu" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the Per Model Settings." -#~ msgstr "Mallikohtaisten asetusten muokkaus." - -#~ msgctxt "@label" -#~ msgid "3MF Reader" -#~ msgstr "3MF-lukija" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for reading 3MF files." -#~ msgstr "Tukee 3MF-tiedostojen lukemista." - -#~ msgctxt "@label" -#~ msgid "Solid View" -#~ msgstr "Kiinteä näkymä" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides a normal solid mesh view." -#~ msgstr "Näyttää normaalin kiinteän verkkonäkymän." - -#~ msgctxt "@label" -#~ msgid "G-code Reader" -#~ msgstr "G-code-lukija" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Allows loading and displaying G-code files." -#~ msgstr "Mahdollistaa G-code-tiedostojen lukemisen ja näyttämisen." - -#~ msgctxt "@label" -#~ msgid "Cura Profile Writer" -#~ msgstr "Cura-profiilin kirjoitin" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for exporting Cura profiles." -#~ msgstr "Tukee Cura-profiilien vientiä." - -#~ msgctxt "@label" -#~ msgid "3MF Writer" -#~ msgstr "3MF-kirjoitin" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for writing 3MF files." -#~ msgstr "Tukee 3MF-tiedostojen kirjoittamista." - -#~ msgctxt "@label" -#~ msgid "Ultimaker machine actions" -#~ msgstr "Ultimaker-laitteen toiminnot" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)" -#~ msgstr "Ultimaker-laitteiden toimintojen käyttö (esim. pöydän tasaaminen, päivitysten valinta yms.)" - -#~ msgctxt "@label" -#~ msgid "Cura Profile Reader" -#~ msgstr "Cura-profiilin lukija" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing Cura profiles." -#~ msgstr "Tukee Cura-profiilien tuontia." - -#~ msgctxt "@info" -#~ msgid "%(width).1f x %(depth).1f x %(height).1f mm" -#~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#~ msgctxt "@label" -#~ msgid "Build Plate Shape" -#~ msgstr "Alustan muoto" - -#~ msgctxt "@option:check" -#~ msgid "Machine Center is Zero" -#~ msgstr "Laitteen keskus on nolla" - -#~ msgctxt "@option:check" -#~ msgid "Heated Bed" -#~ msgstr "Lämmitettävä pöytä" - -#~ msgctxt "@label" -#~ msgid "GCode Flavor" -#~ msgstr "GCode-tyyppi" - -#~ msgctxt "@label" -#~ msgid "Material Diameter" -#~ msgstr "Materiaalin halkaisija" - -#~ msgctxt "@label" -#~ msgid "If your printer is not listed, read the network-printing troubleshooting guide" -#~ msgstr "Jos tulostinta ei ole luettelossa, lue verkkotulostuksen vianetsintäopas" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Ultimaker" -#~ msgstr "Ultimaker" - -#~ msgctxt "@label" -#~ msgid "Support library for scientific computing " -#~ msgstr "Tieteellisen laskennan tukikirjasto " - -#~ msgctxt "@tooltip" -#~ msgid "Print Setup

    Edit or review the settings for the active print job." -#~ msgstr "Tulostuksen asennus

    Muokkaa tai tarkastele aktiivisen tulostustyön asetuksia." - -#~ msgctxt "@tooltip" -#~ msgid "Print Monitor

    Monitor the state of the connected printer and the print job in progress." -#~ msgstr "Tulostimen näyttölaite

    Seuraa yhdistetyn tulostimen ja käynnissä olevan tulostustyön tilaa." - -#~ msgctxt "@title:menuitem %1 is the value from the printer" -#~ msgid "Automatic: %1" -#~ msgstr "Automaattinen: %1" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3d model" -#~ msgstr "Ole hyvä ja lataa 3D-malli" - -#~ msgctxt "@label" -#~ msgid "Print Selected Model with %1" -#~ msgid_plural "Print Selected Models With %1" -#~ msgstr[0] "Tulosta valittu malli asetuksella %1" -#~ msgstr[1] "Tulosta valitut mallit asetuksella %1" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}" -#~ msgstr "Uuden tulostustyön aloittaminen ei onnistu. PrinterCorea ei ole ladattu aukkoon {0}" - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.4 to 2.5" -#~ msgstr "Päivitys versiosta 2.4 versioon 2.5" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5." -#~ msgstr "Päivittää kokoonpanon versiosta Cura 2.4 versioon Cura 2.5." - -#~ msgctxt "@info:status" -#~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead." -#~ msgstr "Tälle yhdistelmälle ei löytynyt laadukasta profiilia. Käytetään oletusasetuksia." - -#~ msgctxt "@title:window" -#~ msgid "Oops!" -#~ msgstr "Hups!" - -#~ msgctxt "@label" -#~ msgid "" -#~ "

    A fatal exception has occurred that we could not recover from!

    \n" -#~ "

    We hope this picture of a kitten helps you recover from the shock.

    \n" -#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " -#~ msgstr "" -#~ "

    Tapahtui vakava poikkeus, josta palautuminen ei onnistunut!

    \n" -#~ "

    Toivottavasti tämä kissanpentukuva lieventää hiukan järkytystä.

    \n" -#~ "

    Tee virheraportti alla olevien tietojen perusteella osoitteessa http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " - -#~ msgctxt "@label" -#~ msgid "Please enter the correct settings for your printer below:" -#~ msgstr "Anna tulostimen asetukset alla:" - -#~ msgctxt "@label" -#~ msgid "Extruder %1" -#~ msgstr "Suulake %1" - -#~ msgctxt "@label Followed by extruder selection drop-down." -#~ msgid "Print model with" -#~ msgstr "Tulosta malli seuraavalla:" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for language changes to have effect." -#~ msgstr "Sovellus on käynnistettävä uudelleen, jotta kielimuutokset tulevat voimaan." - -#~ msgctxt "@info:tooltip" -#~ msgid "Moves the camera so the model is in the center of the view when an model is selected" -#~ msgstr "Siirtää kameraa siten, että malli on näkymän keskellä, kun malli on valittu" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete &Selection" -#~ msgstr "&Poista valinta" - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Open File..." -#~ msgstr "&Avaa tiedosto..." - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Open Project..." -#~ msgstr "&Avaa projekti..." - -#~ msgctxt "@title:window" -#~ msgid "Multiply Model" -#~ msgstr "Monista malli" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &All" -#~ msgstr "Tallenna &kaikki" - -#~ msgctxt "@title:window" -#~ msgid "Open file" -#~ msgstr "Avaa tiedosto" - -#~ msgctxt "@title:window" -#~ msgid "Open workspace" -#~ msgstr "Avaa työtila" - -#~ msgctxt "@label" -#~ msgid "Hollow" -#~ msgstr "Ontto" - -#~ msgctxt "@label" -#~ msgid "No (0%) infill will leave your model hollow at the cost of low strength" -#~ msgstr "Ei (0 %) täyttöä jättää mallin ontoksi ja lujuudeltaan alhaiseksi" - -#~ msgctxt "@label" -#~ msgid "Light" -#~ msgstr "Harva" - -#~ msgctxt "@label" -#~ msgid "Light (20%) infill will give your model an average strength" -#~ msgstr "Harva (20 %) täyttö antaa mallille keskimääräisen lujuuden" - -#~ msgctxt "@label" -#~ msgid "Dense" -#~ msgstr "Tiheä" - -#~ msgctxt "@label" -#~ msgid "Dense (50%) infill will give your model an above average strength" -#~ msgstr "Tiheä (50 %) täyttö antaa mallille keskimääräistä paremman lujuuden" - -#~ msgctxt "@label" -#~ msgid "Solid" -#~ msgstr "Kiinteä" - -#~ msgctxt "@label" -#~ msgid "Solid (100%) infill will make your model completely solid" -#~ msgstr "Kiinteä (100 %) täyttö tekee mallista täysin umpinaisen" - -#~ msgctxt "@label" -#~ msgid "Enable Support" -#~ msgstr "Ota tuki käyttöön" - -#~ msgctxt "@label" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Ota tukirakenteet käyttöön. Nämä rakenteet tukevat mallin osia, joissa on merkittäviä ulokkeita." - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints? Read the Ultimaker Troubleshooting Guides" -#~ msgstr "Tarvitsetko apua tulosteiden parantamiseen? Lue Ultimakerin vianetsintäoppaat" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}. Please approve the access request on the printer." -#~ msgstr "Yhdistetty verkon kautta tulostimeen {0}. Hyväksy tulostimen käyttöoikeuspyyntö." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}." -#~ msgstr "Yhdistetty verkon kautta tulostimeen {0}." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}. No access to control the printer." -#~ msgstr "Yhdistetty verkon kautta tulostimeen {0}. Ei käyttöoikeutta tulostimen hallintaan." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job because the printer is busy. Please check the printer." -#~ msgstr "Uuden tulostustyön aloittaminen ei onnistu, koska tulostin on varattu. Tarkista tulostin." - -#~ msgctxt "@label" -#~ msgid "You made changes to the following setting(s)/override(s):" -#~ msgstr "Olet muuttanut seuraavia asetuksia tai ohituksia:" - -#~ msgctxt "@window:title" -#~ msgid "Switched profiles" -#~ msgstr "Vaihdetut profiilit" - -#~ msgctxt "@label" -#~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?" -#~ msgstr "Haluatko siirtää %d muokattua asetusta tai ohitusta tähän profiiliin?" - -#~ msgctxt "@label" -#~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost." -#~ msgstr "Jos siirrät asetukset, ne ohittavat profiilin asetukset. Jos et siirrä näitä asetuksia, niitä ei tallenneta." - -#~ msgctxt "@label" -#~ msgid "Cost per Meter (Approx.)" -#~ msgstr "Hinta metriä kohden (arvioitu)" - -#~ msgctxt "@label" -#~ msgid "%1/m" -#~ msgstr "%1 / m" - -#~ msgctxt "@info:tooltip" -#~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information." -#~ msgstr "Näytä kerrosnäkymässä viisi ylintä kerrosta tai vain ylin kerros. Viiden kerroksen näyttämiseen menee kauemmin, mutta se saattaa antaa enemmän tietoa." - -#~ msgctxt "@action:button" -#~ msgid "Display five top layers in layer view" -#~ msgstr "Näytä viisi ylintä kerrosta kerrosnäkymässä" - -#~ msgctxt "@info:tooltip" -#~ msgid "Should only the top layers be displayed in layerview?" -#~ msgstr "Pitäisikö kerrosnäkymässä näyttää vain ylimmät kerrokset?" - -#~ msgctxt "@option:check" -#~ msgid "Only display top layer(s) in layer view" -#~ msgstr "Näytä kerrosnäkymässä vain ylimmät kerrokset" - -#~ msgctxt "@label" -#~ msgid "Opening files" -#~ msgstr "Tiedostojen avaaminen" - -#~ msgctxt "@label" -#~ msgid "Printer Monitor" -#~ msgstr "Tulostimen näyttölaite" - -#~ msgctxt "@label" -#~ msgid "Temperatures" -#~ msgstr "Lämpötilat" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Preparing to slice..." -#~ msgstr "Valmistellaan viipalointia..." - -#~ msgctxt "@window:title" -#~ msgid "Changes on the Printer" -#~ msgstr "Tulostimen muutokset" - -#~ msgctxt "@action:inmenu" -#~ msgid "&Duplicate Model" -#~ msgstr "&Monista malli" - -#~ msgctxt "@label" -#~ msgid "Helper Parts:" -#~ msgstr "Tukiosat:" - -#~ msgctxt "@label" -#~ msgid "Enable printing support structures. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "Ottaa tukirakenteiden tulostuksen käyttöön. Siinä mallin alle rakennetaan tukirakenteita estämään mallin riippuminen tai suoraan ilmaan tulostaminen." - -#~ msgctxt "@label" -#~ msgid "Don't print support" -#~ msgstr "Älä tulosta tukea" - -#~ msgctxt "@label" -#~ msgid "Print support using %1" -#~ msgstr "Tulosta tuki käyttämällä kohdetta %1" - -#~ msgctxt "@label:listbox" -#~ msgid "Printer:" -#~ msgstr "Tulostin:" - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profiles {0}" -#~ msgstr "Profiilit {0} tuotu onnistuneesti" - -#~ msgctxt "@label" -#~ msgid "Scripts" -#~ msgstr "Komentosarjat" - -#~ msgctxt "@label" -#~ msgid "Active Scripts" -#~ msgstr "Aktiiviset komentosarjat" - -#~ msgctxt "@label" -#~ msgid "Done" -#~ msgstr "Valmis" - -#~ msgctxt "@item:inlistbox" -#~ msgid "English" -#~ msgstr "englanti" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Finnish" -#~ msgstr "suomi" - -#~ msgctxt "@item:inlistbox" -#~ msgid "French" -#~ msgstr "ranska" - -#~ msgctxt "@item:inlistbox" -#~ msgid "German" -#~ msgstr "saksa" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Italian" -#~ msgstr "Italia" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Dutch" -#~ msgstr "Hollanti" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Spanish" -#~ msgstr "Espanja" - -#~ msgctxt "@label" -#~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?" -#~ msgstr "Haluatko muuttaa Curan PrintCoret ja materiaalit vastaamaan tulostinta?" - -#~ msgctxt "@label:" -#~ msgid "Print Again" -#~ msgstr "Tulosta uudelleen" diff --git a/resources/i18n/fi_FI/fdmextruder.def.json.po b/resources/i18n/fi_FI/fdmextruder.def.json.po index dccea0303a..9606fe77a4 100644 --- a/resources/i18n/fi_FI/fdmextruder.def.json.po +++ b/resources/i18n/fi_FI/fdmextruder.def.json.po @@ -6,14 +6,105 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" -"PO-Revision-Date: 2017-08-11 14:31+0200\n" +"POT-Creation-Date: 2023-03-08 09:03+0000\n" +"PO-Revision-Date: 2022-07-15 11:17+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" "Language: fi_FI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 3.1.1\n" + +#: fdmextruder.def.json +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Tarttuvuus" + +#: fdmextruder.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "" + +#: fdmextruder.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Alustan tarttuvuus" + +#: fdmextruder.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "" + +#: fdmextruder.def.json +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "Suulake" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code label" +msgid "Extruder End G-Code" +msgstr "Suulakkeen lopetus-GCode" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_abs label" +msgid "Extruder End Position Absolute" +msgstr "Suulakkeen lopetussijainti absoluuttinen" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x label" +msgid "Extruder End Position X" +msgstr "Suulakkeen lopetussijainti X" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y label" +msgid "Extruder End Position Y" +msgstr "Suulakkeen lopetussijainti Y" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Suulakkeen esitäytön X-sijainti" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Suulakkeen esitäytön Y-sijainti" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Suulakkeen esitäytön Z-sijainti" + +#: fdmextruder.def.json +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_code label" +msgid "Extruder Start G-Code" +msgstr "Suulakkeen aloitus-GCode" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_abs label" +msgid "Extruder Start Position Absolute" +msgstr "Suulakkeen aloitussijainti absoluuttinen" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "Suulakkeen aloitussijainti X" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "Suulakkeen aloitussijainti Y" #: fdmextruder.def.json msgctxt "machine_settings label" @@ -26,69 +117,9 @@ msgid "Machine specific settings" msgstr "Laitekohtaiset asetukset" #: fdmextruder.def.json -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "Suulake" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Suuttimen tunnus" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Suulakeryhmän suulakkeen tunnus, kuten \"AA 0.4\" ja \"BB 0.8\"." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Suuttimen halkaisija" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x label" -msgid "Nozzle X Offset" -msgstr "Suuttimen X-siirtymä" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "Suuttimen siirtymän X-koordinaatti." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "Suuttimen Y-siirtymä" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "Suuttimen siirtymän Y-koordinaatti." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code label" -msgid "Extruder Start G-Code" -msgstr "Suulakkeen aloitus-GCode" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_abs label" -msgid "Extruder Start Position Absolute" -msgstr "Suulakkeen aloitussijainti absoluuttinen" +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 "Tekee suulakkeen lopetussijainnista absoluuttisen eikä suhteellisen viimeksi tunnettuun pään sijaintiin nähden." #: fdmextruder.def.json msgctxt "machine_extruder_start_pos_abs description" @@ -96,139 +127,109 @@ msgid "Make the extruder starting position absolute rather than relative to the msgstr "Tekee suulakkeen aloitussijainnista absoluuttisen eikä suhteellisen viimeksi tunnettuun pään sijaintiin nähden." #: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "Suulakkeen aloitussijainti X" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "Aloitussijainnin X-koordinaatti suulaketta käynnistettäessä." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "Suulakkeen aloitussijainti Y" - -#: fdmextruder.def.json -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ä." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code label" -msgid "Extruder End G-Code" -msgstr "Suulakkeen lopetus-GCode" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." +msgctxt "material description" +msgid "Material" msgstr "" -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_abs label" -msgid "Extruder End Position Absolute" -msgstr "Suulakkeen lopetussijainti absoluuttinen" - -#: fdmextruder.def.json -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 "Tekee suulakkeen lopetussijainnista absoluuttisen eikä suhteellisen viimeksi tunnettuun pään sijaintiin nähden." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x label" -msgid "Extruder End Position X" -msgstr "Suulakkeen lopetussijainti X" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "Lopetussijainnin X-koordinaatti, kun suulake poistetaan käytöstä." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y label" -msgid "Extruder End Position Y" -msgstr "Suulakkeen lopetussijainti Y" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "Lopetussijainnin Y-koordinaatti, kun suulake poistetaan käytöstä." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Suulakkeen esitäytön Z-sijainti" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Z-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa." - -#: fdmextruder.def.json -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "" - -#: fdmextruder.def.json -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 "" - -#: fdmextruder.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Alustan tarttuvuus" - -#: fdmextruder.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Tarttuvuus" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Suulakkeen esitäytön X-sijainti" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "X-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Suulakkeen esitäytön Y-sijainti" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Y-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa." - #: fdmextruder.def.json msgctxt "material label" msgid "Material" msgstr "" #: fdmextruder.def.json -msgctxt "material description" -msgid "Material" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Suuttimen halkaisija" + +#: fdmextruder.def.json +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Suuttimen tunnus" + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_x label" +msgid "Nozzle X Offset" +msgstr "Suuttimen X-siirtymä" + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "Suuttimen Y-siirtymä" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." msgstr "" #: fdmextruder.def.json -msgctxt "material_diameter label" -msgid "Diameter" +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "X-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa." + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Y-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa." + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Z-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Suulakeryhmän suulakkeen tunnus, kuten \"AA 0.4\" ja \"BB 0.8\"." + +#: fdmextruder.def.json +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 "" #: fdmextruder.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "" +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "Lopetussijainnin X-koordinaatti, kun suulake poistetaan käytöstä." -#~ msgctxt "machine_extruder_start_code description" -#~ msgid "Start g-code to execute whenever turning the extruder on." -#~ msgstr "Aloitus-GCode, joka suoritetaan suulakkeen käynnistyksen yhteydessä." +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "Suuttimen siirtymän X-koordinaatti." + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "Aloitussijainnin X-koordinaatti suulaketta käynnistettäessä." + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "Lopetussijainnin Y-koordinaatti, kun suulake poistetaan käytöstä." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "Suuttimen siirtymän Y-koordinaatti." + +#: fdmextruder.def.json +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_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ä." + +#~ msgctxt "machine_extruder_start_code description" +#~ msgid "Start g-code to execute whenever turning the extruder on." +#~ msgstr "Aloitus-GCode, joka suoritetaan suulakkeen käynnistyksen yhteydessä." diff --git a/resources/i18n/fi_FI/fdmprinter.def.json.po b/resources/i18n/fi_FI/fdmprinter.def.json.po index 6811f3b88a..5e73322fc4 100644 --- a/resources/i18n/fi_FI/fdmprinter.def.json.po +++ b/resources/i18n/fi_FI/fdmprinter.def.json.po @@ -6,83 +6,142 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" -"PO-Revision-Date: 2017-09-27 12:27+0200\n" +"POT-Creation-Date: 2023-03-28 11:57+0000\n" +"PO-Revision-Date: 2022-07-15 11:17+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" "Language: fi_FI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 3.1.1\n" #: fdmprinter.def.json -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Laite" +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 "Etäisyys mallin reunoihin. Silitys verkon reunoihin saakka voi johtaa rosoiseen reunaan tulosteessa." #: fdmprinter.def.json -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Laitekohtaiset asetukset" - -#: fdmprinter.def.json -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Laitteen tyyppi" - -#: fdmprinter.def.json -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "3D-tulostinmallin nimi." - -#: fdmprinter.def.json -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Näytä laitteen variantit" - -#: fdmprinter.def.json -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Näytetäänkö laitteen eri variantit, jotka kuvataan erillisissä json-tiedostoissa." - -#: fdmprinter.def.json -msgctxt "machine_start_gcode label" -msgid "Start G-code" +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 "" #: fdmprinter.def.json -msgctxt "machine_start_gcode description" +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)." + +#: fdmprinter.def.json +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 "Luettelo käytettävistä linjojen kokonaislukusuunnista, kun ylimmällä/alimmalla kerroksella 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)." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Luettelo käytettävistä linjojen kokonaislukusuunnista. 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 linja- ja siksak-kuvioille ja 45 astetta muille kuvioille)." + +#: fdmprinter.def.json +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "Monikulmioluettelo, jossa on alueet, joihin suutin ei saa siirtyä." + +#: fdmprinter.def.json +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Monikulmioluettelo, jossa on alueet, joihin tulostuspää ei saa siirtyä." + +#: fdmprinter.def.json +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Absoluuttinen suulakkeen esitäytön sijainti" + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "" + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "" + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "" + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count description" msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." +"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 "" #: fdmprinter.def.json -msgctxt "machine_end_gcode label" -msgid "End G-code" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Tarttuvuus" + +#: fdmprinter.def.json +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" msgstr "" #: fdmprinter.def.json -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." +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 "" #: fdmprinter.def.json -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "Materiaalin GUID" - -#: fdmprinter.def.json -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." +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 "" #: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Läpimitta" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Säätää tulostuksen täytön tiheyttä." + +#: fdmprinter.def.json +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 "Säätää tukirakenteen kattojen ja lattioiden tiheyttä. Korkeammat arvot tuottavat parempia ulokkeita, mutta tuet on vaikeampi poistaa." + +#: fdmprinter.def.json +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 "Säätää tukirakenteen tiheyttä. Korkeammat arvot tuottavat parempia ulokkeita, mutta tuet on vaikeampi poistaa." #: fdmprinter.def.json msgctxt "material_diameter description" @@ -90,108 +149,53 @@ msgid "Adjusts the diameter of the filament used. Match this value with the diam msgstr "Säätää käytetyn tulostuslangan halkaisijaa. Määritä tämä arvo vastaamaan käytetyn tulostuslangan halkaisijaa." #: fdmprinter.def.json -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Odota alustan lämpenemistä" +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 "Säädä tukirakenteiden sijoittelua. Sijoituspaikka voidaan asettaa alustaa koskettavaksi tai kaikkialle. Kaikkialla-asetuksella tukirakenteet tulostetaan myös malliin." #: fdmprinter.def.json -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 "Lisätäänkö komento, jolla odotetaan alustan lämpötilan saavuttamista alussa." +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 "Kun esitäyttötorni on tulostettu yhdellä suuttimella, pyyhi toisesta suuttimesta tihkunut materiaali pois esitäyttötornissa." #: fdmprinter.def.json -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Odota suuttimen lämpenemistä" +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 "Alustaa lasketaan koneen vaihdettua yhdestä suulakkeesta toiseen, jotta suuttimen ja tulosteen väliin jää tilaa. Tämä estää suutinta jättämästä tihkunutta ainetta tulosteen ulkopuolelle." #: fdmprinter.def.json -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Odotetaanko suuttimen lämpötilan saavuttamista alussa." +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Kaikki" #: fdmprinter.def.json -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Sisällytä materiaalilämpötilat" +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "Kaikki kerralla" #: fdmprinter.def.json -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 "Sisällytetäänkö suuttimen lämpötilakomennot GCoden alkuun. Kun start_gcode sisältää jo suuttimen lämpötilakomennot, Cura-edustaohjelma poistaa tämän asetuksen automaattisesti käytöstä." +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)." #: fdmprinter.def.json -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Sisällytä alustan lämpötila" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Vuoroittainen lisäseinämä" #: fdmprinter.def.json -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 "Sisällytetäänkö alustan lämpötilakomennot GCoden alkuun. Kun aloitus-GCode sisältää jo alustan lämpötilakomennot, Cura-edustaohjelma poistaa tämän asetuksen automaattisesti käytöstä." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Vuoroittainen verkon poisto" #: fdmprinter.def.json -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Laitteen leveys" - -#: fdmprinter.def.json -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "Tulostettavan alueen leveys (X-suunta)." - -#: fdmprinter.def.json -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Laitteen syvyys" - -#: fdmprinter.def.json -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "Tulostettavan alueen syvyys (Y-suunta)." - -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Laitteen korkeus" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Tulostettavan alueen korkeus (Z-suunta)." - -#: fdmprinter.def.json -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Alustan muoto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Suorakulmainen" - -#: fdmprinter.def.json -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Soikea" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" msgstr "" #: fdmprinter.def.json -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option glass" -msgid "Glass" +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 "" #: fdmprinter.def.json @@ -199,304 +203,74 @@ msgctxt "machine_buildplate_type option aluminum" msgid "Aluminum" msgstr "" -#: fdmprinter.def.json -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Sisältää lämmitettävän alustan" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Sisältääkö laite lämmitettävän alustan." - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "" - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "" - #: fdmprinter.def.json msgctxt "machine_always_write_active_tool label" msgid "Always Write Active Tool" msgstr "" #: fdmprinter.def.json -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." +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Vedä aina takaisin, kun siirrytään ulkoseinämän aloittamista varten." + +#: fdmprinter.def.json +msgctxt "hole_xy_offset description" +msgid "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." msgstr "" #: fdmprinter.def.json -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "On keskikohdassa" +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 "Kaikkia monikulmioita kussakin kerroksessa koskeva siirtymien määrä. Positiivisilla arvoilla kompensoidaan liian suuria aukkoja ja negatiivisilla arvoilla kompensoidaan liian pieniä aukkoja." #: fdmprinter.def.json -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 "Ovatko tulostimen nollasijainnin X-/Y-koordinaatit tulostettavan alueen keskellä." +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 "Kaikkia monikulmioita ensimmäisessä kerroksessa koskeva siirtymien määrä. Negatiivisella arvolla kompensoidaan ensimmäisen kerroksen litistymistä, joka tunnetaan \"elefantin jalkana\"." #: fdmprinter.def.json -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Suulakkeiden määrä" +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 "Kaikkia tukimonikulmioita kussakin kerroksessa koskeva siirtymien määrä. Positiivisilla arvoilla tasoitetaan tukialueita ja saadaan aikaan vankempi tuki." #: fdmprinter.def.json -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Suulakeryhmien määrä. Suulakeryhmä on syöttölaitteen, Bowden-putken ja suuttimen yhdistelmä." - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." msgstr "" #: fdmprinter.def.json -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." msgstr "" #: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." msgstr "" #: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Suuttimen kärjen ulkoläpimitta." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." msgstr "" #: fdmprinter.def.json -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 "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 "Lisäys säteeseen kunkin kuution keskipisteestä mallin rajojen tarkistamiseksi. Näin määritetään, tuleeko kuutioon tehdä alajako. Suuremmat arvot tuottavat paksumman kuoren pienempiin kuutioihin mallin rajojen lähellä." #: fdmprinter.def.json -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Verkko ulokkeiden estoon" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" msgstr "" #: fdmprinter.def.json -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 "Vaakatason ja suuttimen kärjen yllä olevan kartiomaisen osan välinen kulma." - -#: fdmprinter.def.json -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "" - -#: fdmprinter.def.json -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 "Suuttimen kärjestä mitattu etäisyys, jonka suuttimen lämpö siirtyy tulostuslankaan." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Ota suuttimen lämpötilan hallinta käyttöön" - -#: fdmprinter.def.json -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 "Lämpötilan hallinta Curan kautta. Kytke tämä pois, niin voit hallita suuttimen lämpötilaa Curan ulkopuolella." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "" - -#: fdmprinter.def.json -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 "Nopeus (°C/s), jolla suutin lämpenee, mitattuna keskiarvona normaaleista tulostuslämpötiloista ja valmiuslämpötilasta." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "" - -#: fdmprinter.def.json -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 "Nopeus (°C/s), jolla suutin jäähtyy, mitattuna keskiarvona normaaleista tulostuslämpötiloista ja valmiuslämpötilasta." - -#: fdmprinter.def.json -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Valmiuslämpötilan minimiaika" - -#: fdmprinter.def.json -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 "Minimiaika, jonka suulakkeen on oltava ei-aktiivinen, ennen kuin suutin jäähdytetään. Suulakkeen annetaan jäähtyä valmiustilaan vain, kun sitä ei käytetä tätä aikaa kauemmin." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (volymetrinen)" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -#: fdmprinter.def.json -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "" - -#: fdmprinter.def.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 "" - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "" - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "" - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "" - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Monikulmioluettelo, jossa on alueet, joihin tulostuspää ei saa siirtyä." - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Suuttimen kielletyt alueet" - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "Monikulmioluettelo, jossa on alueet, joihin suutin ei saa siirtyä." - -#: fdmprinter.def.json -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Suuttimen tunnus" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Suulakeryhmän suulakkeen tunnus, kuten \"AA 0.4\" ja \"BB 0.8\"." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Suuttimen läpimitta" - -#: fdmprinter.def.json -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äläpimitta. Muuta tätä asetusta, kun käytössä on muu kuin vakiokokoinen suutin." - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" msgstr "" #: fdmprinter.def.json @@ -505,728 +279,18 @@ msgid "Apply the extruder offset to the coordinate system. Affects all extruders msgstr "" #: fdmprinter.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Suulakkeen esitäytön Z-sijainti" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Z-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Absoluuttinen suulakkeen esitäytön sijainti" - -#: fdmprinter.def.json -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 "Tekee suulakkeen esitäyttösijainnista absoluuttisen eikä suhteellisen viimeksi tunnettuun pään sijaintiin nähden." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Maksiminopeus X" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "X-suunnan moottorin maksiminopeus." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Maksiminopeus Y" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Y-suunnan moottorin maksiminopeus." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Maksiminopeus Z" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Z-suunnan moottorin maksiminopeus." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" +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 "" #: fdmprinter.def.json -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "Tulostuslangan maksiminopeus." +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Vältä tulostettuja osia siirtoliikkeen yhteydessä" #: fdmprinter.def.json -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Maksimikiihtyvyys X" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "X-suunnan moottorin maksimikiihtyvyys." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Maksimikiihtyvyys Y" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Y-suunnan moottorin maksimikiihtyvyys." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Maksimikiihtyvyys Z" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Z-suunnan moottorin maksimikiihtyvyys." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Tulostuslangan maksimikiihtyvyys" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Tulostuslangan moottorin maksimikiihtyvyys." - -#: fdmprinter.def.json -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Oletuskiihtyvyys" - -#: fdmprinter.def.json -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "Tulostuspään liikkeen oletuskiihtyvyys." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Oletusarvoinen X-Y-nykäisy" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "Vaakatasoisen liikkeen oletusnykäisy." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Oletusarvoinen Z-nykäisy" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Z-suunnan moottorin oletusnykäisy." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Oletusarvoinen tulostuslangan nykäisy" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Tulostuslangan moottorin oletusnykäisy." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Minimisyöttönopeus" - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Tulostuspään liikkeen miniminopeus." - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "" - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "" - -#: fdmprinter.def.json -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "resolution label" -msgid "Quality" -msgstr "Laatu" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Kerroksen korkeus" - -#: fdmprinter.def.json -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 "Kunkin kerroksen korkeus milleinä. Korkeammat arvot tuottavat nopeampia tulosteita alhaisemmalla resoluutiolla, alemmat arvot tuottavat hitaampia tulosteita korkeammalla resoluutiolla." - -#: fdmprinter.def.json -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Alkukerroksen korkeus" - -#: fdmprinter.def.json -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 "Alkukerroksen korkeus milleinä. Paksumpi alkukerros helpottaa alustaan kiinnittymistä." - -#: fdmprinter.def.json -msgctxt "line_width label" -msgid "Line Width" -msgstr "Linjan leveys" - -#: fdmprinter.def.json -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 "Yhden linjan leveys. Yleensä kunkin linjan leveyden tulisi vastata suuttimen leveyttä. Pienentämällä tätä arvoa hiukan voidaan kuitenkin mahdollisesti tuottaa parempia tulosteita." - -#: fdmprinter.def.json -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Seinämälinjan leveys" - -#: fdmprinter.def.json -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Yhden seinämälinjan leveys." - -#: fdmprinter.def.json -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Ulkoseinämän linjaleveys" - -#: fdmprinter.def.json -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 "Ulommaisen seinämälinjan leveys. Tätä arvoa pienentämällä voidaan tulostaa tarkempia yksityiskohtia." - -#: fdmprinter.def.json -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Sisäseinämien linjaleveys" - -#: fdmprinter.def.json -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Yhden seinämälinjan leveys. Koskee kaikkia muita paitsi ulommaista seinämää." - -#: fdmprinter.def.json -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Ylä-/alalinjan leveys" - -#: fdmprinter.def.json -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Yhden ylä-/alalinjan leveys." - -#: fdmprinter.def.json -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Täyttölinjan leveys" - -#: fdmprinter.def.json -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Yhden täyttölinjan leveys." - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Helma-/reunuslinjan leveys" - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Yhden helma- tai reunuslinjan leveys." - -#: fdmprinter.def.json -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Tukilinjan leveys" - -#: fdmprinter.def.json -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Yhden tukirakenteen linjan leveys." - -#: fdmprinter.def.json -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Tukiliittymän linjan leveys" - -#: fdmprinter.def.json -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Tukikaton tai -lattian yhden linjan leveys." - -#: fdmprinter.def.json -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Tukikaton linjaleveys" - -#: fdmprinter.def.json -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Tukikaton yhden linjan leveys." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Tukilattian linjaleveys" - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Tukilattian yhden linjan leveys." - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Esitäyttötornin linjan leveys" - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Yhden esitäyttötornin linjan leveys." - -#: fdmprinter.def.json -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Alkukerroksen linjaleveys" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "shell label" -msgid "Walls" -msgstr "" - -#: fdmprinter.def.json -msgctxt "shell description" -msgid "Shell" -msgstr "Kuori" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Seinämien suulake" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "Seinämien tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Ulkoseinämän suulake" - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "Ulkoseinämän tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." - -#: fdmprinter.def.json -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Seinämän paksuus" - -#: fdmprinter.def.json -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 "Seinämien paksuus vaakatasossa. Tämä arvo jaettuna seinämälinjan leveysarvolla määrittää seinämien lukumäärän." - -#: fdmprinter.def.json -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Seinämälinjaluku" - -#: fdmprinter.def.json -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 "Seinämien lukumäärä. Kun se lasketaan seinämän paksuudesta, arvo pyöristetään kokonaislukuun." - -#: fdmprinter.def.json -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Ulkoseinämän täyttöliikkeen etäisyys" - -#: fdmprinter.def.json -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Siirtoliikkeen etäisyys ulkoseinämän jälkeen Z-sauman piilottamiseksi paremmin." - -#: fdmprinter.def.json -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Ulkoseinämän liitos" - -#: fdmprinter.def.json -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 "Ulkoseinämän reitille asetettu liitos. Jos ulkoseinämä on pienempi kuin suutin ja se tulostetaan sisäseinämien jälkeen, tällä siirtymällä saadaan suuttimen reikä limittymään sisäseinämiin mallin ulkopuolen sijaan." - -#: fdmprinter.def.json -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Optimoi seinämien tulostusjärjestys" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "" - -#: fdmprinter.def.json -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." -msgstr "" - -#: fdmprinter.def.json -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "" - -#: fdmprinter.def.json -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "" - -#: fdmprinter.def.json -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Vuoroittainen lisäseinämä" - -#: fdmprinter.def.json -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 "Tulostaa ylimääräisen seinämän joka toiseen kerrokseen. Näin täyttömateriaali jää kiinni näiden lisäseinämien väliin, mikä johtaa vahvempiin tulosteisiin." - -#: fdmprinter.def.json -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold label" -msgid "Split Middle Line Threshold" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "" - -#: fdmprinter.def.json -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold label" -msgid "Add Middle Line Threshold" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "" - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Tulosta ohuet seinämät" - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Tulostaa mallin kohtia, jotka ovat vaakasuunnassa suuttimen kokoa ohuempia." - -#: fdmprinter.def.json -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Vaakalaajennus" - -#: fdmprinter.def.json -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 "Kaikkia monikulmioita kussakin kerroksessa koskeva siirtymien määrä. Positiivisilla arvoilla kompensoidaan liian suuria aukkoja ja negatiivisilla arvoilla kompensoidaan liian pieniä aukkoja." - -#: fdmprinter.def.json -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Alkukerroksen vaakalaajennus" - -#: fdmprinter.def.json -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 "Kaikkia monikulmioita ensimmäisessä kerroksessa koskeva siirtymien määrä. Negatiivisella arvolla kompensoidaan ensimmäisen kerroksen litistymistä, joka tunnetaan \"elefantin jalkana\"." - -#: fdmprinter.def.json -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "" - -#: fdmprinter.def.json -msgctxt "hole_xy_offset description" -msgid "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." -msgstr "" - -#: fdmprinter.def.json -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Z-sauman kohdistus" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Käyttäjän määrittämä" - -#: fdmprinter.def.json -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Lyhin" - -#: fdmprinter.def.json -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Satunnainen" - -#: fdmprinter.def.json -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Terävin kulma" - -#: fdmprinter.def.json -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "" - -#: fdmprinter.def.json -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "" - -#: fdmprinter.def.json -msgctxt "z_seam_position option backleft" -msgid "Back Left" +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" msgstr "" #: fdmprinter.def.json @@ -1234,180 +298,25 @@ msgctxt "z_seam_position option back" msgid "Back" msgstr "" +#: fdmprinter.def.json +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "" + #: fdmprinter.def.json msgctxt "z_seam_position option backright" msgid "Back Right" msgstr "" #: fdmprinter.def.json -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "" +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" #: fdmprinter.def.json -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "" - -#: fdmprinter.def.json -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "" - -#: fdmprinter.def.json -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "" - -#: fdmprinter.def.json -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z-sauma X" - -#: fdmprinter.def.json -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "X-koordinaatti kohdalle, jonka läheltä aloitetaan kunkin kerroksen osuuden tulostus." - -#: fdmprinter.def.json -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z-sauma Y" - -#: fdmprinter.def.json -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "Y-koordinaatti kohdalle, jonka läheltä aloitetaan kunkin kerroksen osuuden tulostus." - -#: fdmprinter.def.json -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Saumakulmien asetus" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Ei mitään" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Piilota sauma" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Paljasta sauma" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Piilota tai paljasta sauma" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "" - -#: fdmprinter.def.json -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Z-sauma suhteellinen" - -#: fdmprinter.def.json -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 "Kun tämä on käytössä, Z-sauman koordinaatit ovat suhteessa kunkin osan keskikohtaan. Kun asetus on pois käytöstä, koordinaatit määrittävät absoluuttisen sijainnin alustalla." - -#: fdmprinter.def.json -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "" - -#: fdmprinter.def.json -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Yläpinnan pintakalvon suulake" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "Ylimmän pintakalvon tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." - -#: fdmprinter.def.json -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Yläpinnan pintakalvokerrokset" - -#: fdmprinter.def.json -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 "Ylimpien pintakalvokerrosten määrä. Yleensä vain yksi ylin kerros riittää tuottamaan korkeampilaatuisia yläpintoja." - -#: fdmprinter.def.json -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Ylä- ja alapuolen suulake" - -#: fdmprinter.def.json -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 "Ylä- ja alapuolen pintakalvon tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." - -#: fdmprinter.def.json -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Ylä-/alaosan paksuus" - -#: fdmprinter.def.json -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 "Ylä-/alakerrosten paksuus tulosteessa. Tämä arvo jaettuna kerroksen korkeusarvolla määrittää ylä-/alakerrosten lukumäärän." - -#: fdmprinter.def.json -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Yläosan paksuus" - -#: fdmprinter.def.json -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 "Yläkerrosten paksuus tulosteessa. Tämä arvo jaettuna kerroksen korkeusarvolla määrittää yläkerrosten lukumäärän." - -#: fdmprinter.def.json -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Yläkerrokset" - -#: fdmprinter.def.json -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 "Yläkerrosten lukumäärä. Kun se lasketaan yläosan paksuudesta, arvo pyöristetään kokonaislukuun." - -#: fdmprinter.def.json -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Alaosan paksuus" - -#: fdmprinter.def.json -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 "Alakerrosten paksuus tulosteessa. Tämä arvo jaettuna kerroksen korkeusarvolla määrittää alakerrosten lukumäärän." +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Molemmat" #: fdmprinter.def.json msgctxt "bottom_layers label" @@ -1415,398 +324,433 @@ msgid "Bottom Layers" msgstr "Alakerrokset" #: fdmprinter.def.json -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 "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Alaosan kuvio, alkukerros" #: fdmprinter.def.json -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Alapintakalvon laajennuksen etäisyys" + +#: fdmprinter.def.json +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Alapintakalvon poistoleveys" + +#: fdmprinter.def.json +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Alaosan paksuus" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" msgstr "" #: fdmprinter.def.json -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." +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" msgstr "" #: fdmprinter.def.json -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Ylä-/alaosan kuvio" +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "" #: fdmprinter.def.json -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Ylä-/alakerrosten kuvio." +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "" #: fdmprinter.def.json -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Linjat" +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Riko tuki lohkoihin" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "" + +#: fdmprinter.def.json +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "" + +#: fdmprinter.def.json +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Reunus" + +#: fdmprinter.def.json +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Reunuksen linjaluku" + +#: fdmprinter.def.json +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Reunus vain ulkopuolella" + +#: fdmprinter.def.json +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Reunuksen leveys" + +#: fdmprinter.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Alustan tarttuvuus" + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Alustan tarttuvuuden suulake" + +#: fdmprinter.def.json +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Alustan tarttuvuustyyppi" + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Alustan muoto" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Alustan lämpötila" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Alustan lämpötila (alkukerros)" + +#: fdmprinter.def.json +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "" + +#: fdmprinter.def.json +msgctxt "center_object label" +msgid "Center Object" +msgstr "" + +#: fdmprinter.def.json +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 "Muuttaa tulostettavan mallin geometriaa niin, että tarvitaan mahdollisimman vähän tukea. Jyrkistä ulokkeista tulee matalia ulokkeita. Ulokkeiset alueet putoavat alas, ja niistä tulee pystysuorempia." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Vapaaliukunopeus" + +#: fdmprinter.def.json +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Vapaaliu'un ainemäärä" + +#: fdmprinter.def.json +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 "Vapaaliu'ulla siirtoreitti korvaa pursotusreitin viimeisen osan. Tihkuvalla aineella tulostetaan pursotusreitin viimeinen osuus rihmoittumisen vähentämiseksi." + +#: fdmprinter.def.json +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Pyyhkäisytila" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Komentorivin asetukset" + +#: fdmprinter.def.json +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Samankeskinen" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Samankeskinen" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Samankeskinen" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Samankeskinen" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Samankeskinen" + +#: fdmprinter.def.json +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Samankeskinen" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Samankeskinen" #: fdmprinter.def.json msgctxt "top_bottom_pattern option concentric" msgid "Concentric" msgstr "Samankeskinen" -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Siksak" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Alaosan kuvio, alkukerros" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "Tulosteen alaosan kuvio ensimmäisellä kerroksella." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Linjat" - #: fdmprinter.def.json msgctxt "top_bottom_pattern_0 option concentric" msgid "Concentric" msgstr "Samankeskinen" #: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Siksak" +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Kartiomaisen tuen kulma" + +#: fdmprinter.def.json +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Kartioimaisen tuen minimileveys" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Yhdistä täyttölinjat" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Yhdistä tuki-siksakit" #: fdmprinter.def.json msgctxt "connect_skin_polygons label" msgid "Connect Top/Bottom Polygons" msgstr "" +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Yhdistä siksakit. Tämä lisää siksak-tukirakenteen lujuutta." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + #: fdmprinter.def.json 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 "" #: fdmprinter.def.json -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" +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 "" #: fdmprinter.def.json -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." +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 "" #: fdmprinter.def.json -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Yläosan/alaosan linjojen suunnat" - -#: fdmprinter.def.json -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 "Luettelo käytettävistä linjojen kokonaislukusuunnista, kun ylimmällä/alimmalla kerroksella 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)." - -#: fdmprinter.def.json -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" msgstr "" #: fdmprinter.def.json -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." +msgctxt "cooling description" +msgid "Cooling" +msgstr "Jäähdytys" + +#: fdmprinter.def.json +msgctxt "cooling label" +msgid "Cooling" +msgstr "Jäähdytys" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Risti" + +#: fdmprinter.def.json +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Risti" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Risti 3D" + +#: fdmprinter.def.json +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Risti 3D:n taskujen koko" + +#: fdmprinter.def.json +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" msgstr "" #: fdmprinter.def.json -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Pintakalvojen ulkopuolisten lisäseinämien määrä" - -#: fdmprinter.def.json -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 "Korvaa ylä-/alakuvion uloimman osan samankeskisillä linjoilla. Yhden tai kahden linjan käyttäminen parantaa kattoja, jotka alkavat täyttömateriaalin keskeltä." - -#: fdmprinter.def.json -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Ota silitys käyttöön" - -#: fdmprinter.def.json -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." +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" msgstr "" #: fdmprinter.def.json -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Silitä vain korkein kerros" - -#: fdmprinter.def.json -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 "Suorita silitys vain verkon viimeisessä kerroksessa. Tämä säästää aikaa, jos alemmat kerrokset eivät edellytä sileää pintaviimeistelyä." - -#: fdmprinter.def.json -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Silityskuvio" - -#: fdmprinter.def.json -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Yläpintojen silitykseen käytettävä kuvio." - -#: fdmprinter.def.json -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Samankeskinen" - -#: fdmprinter.def.json -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Siksak" - -#: fdmprinter.def.json -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Silityksen linjajako" - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "Silityslinjojen välinen etäisyys." - -#: fdmprinter.def.json -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Silitysvirtaus" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Silitysliitos" - -#: fdmprinter.def.json -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 "Etäisyys mallin reunoihin. Silitys verkon reunoihin saakka voi johtaa rosoiseen reunaan tulosteessa." - -#: fdmprinter.def.json -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Silitysnopeus" - -#: fdmprinter.def.json -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "Yläpinnan ylikulkuun käytettävä nopeus." - -#: fdmprinter.def.json -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Silityksen kiihtyvyys" - -#: fdmprinter.def.json -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "Kiihtyvyys, jolla silitys suoritetaan." - -#: fdmprinter.def.json -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Silityksen nykäisy" - -#: fdmprinter.def.json -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Silityksen aikainen nopeuden hetkellinen maksimimuutos." - -#: fdmprinter.def.json -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Pintakalvon limityksen prosentti" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Pintakalvon limitys" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Pintakalvon poistoleveys" - -#: fdmprinter.def.json -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 "Suurin poistettavien pintakalvoalueiden leveys. Kaikki tätä arvoa pienemmät pintakalvoalueet poistuvat. Tästä voi olla apua mallin kaltevien pintojen ylä-/alapintakalvon tulostukseen käytettävän ajan ja materiaalin rajoittamisessa." - -#: fdmprinter.def.json -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Yläpintakalvon poistoleveys" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Alapintakalvon poistoleveys" - -#: fdmprinter.def.json -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 "Suurin poistettavien alapintakalvoalueiden leveys. Kaikki tätä arvoa pienemmät pintakalvoalueet poistuvat. Tästä voi olla apua mallin kaltevien pintojen alapintakalvon tulostukseen käytettävän ajan ja materiaalin rajoittamisessa." - -#: fdmprinter.def.json -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Pintakalvon laajennuksen etäisyys" - -#: fdmprinter.def.json -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 "Etäisyys, jonka verran pintakalvot laajentuvat täyttöön. Suuremmat arvot saavat pintakalvon kiinnittymään paremmin täyttökuvioon ja viereisten kerrosten seinämät tarttumaan paremmin pintakalvoon. Pienemmät arvot vähentävät käytettävän materiaalin määrää." - -#: fdmprinter.def.json -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Yläpintakalvon laajennuksen etäisyys" - -#: fdmprinter.def.json -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 "Etäisyys, jonka verran yläpintakalvot laajentuvat täyttöön. Suuremmat arvot saavat pintakalvon kiinnittymään paremmin täyttökuvioon ja yllä olevan kerroksen seinämät tarttumaan paremmin pintakalvoon. Pienemmät arvot vähentävät käytettävän materiaalin määrää." - -#: fdmprinter.def.json -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Alapintakalvon laajennuksen etäisyys" - -#: fdmprinter.def.json -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 "Etäisyys, jonka verran alapintakalvot laajentuvat täyttöön. Suuremmat arvot saavat pintakalvon kiinnittymään paremmin täyttökuvioon ja tarttumaan paremmin alla olevan kerroksen seinämiin. Pienemmät arvot vähentävät käytettävän materiaalin määrää." - -#: fdmprinter.def.json -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Pintakalvon maksimikulma laajennuksessa" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Pintakalvon minimileveys laajennuksessa" - -#: fdmprinter.def.json -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 "Tätä kapeampia pintakalvoja ei laajenneta. Tällä vältetään laajentamasta kapeita pintakalvoja, jotka syntyvät, kun mallin pinnalla on rinne lähellä pystysuoraa osuutta." - -#: fdmprinter.def.json -msgctxt "infill label" -msgid "Infill" -msgstr "Täyttö" - -#: fdmprinter.def.json -msgctxt "infill description" -msgid "Infill" -msgstr "Täyttö" - -#: fdmprinter.def.json -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Täytön suulake" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Täytön tiheys" - -#: fdmprinter.def.json -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Säätää tulostuksen täytön tiheyttä." - -#: fdmprinter.def.json -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Täyttölinjan etäisyys" - -#: fdmprinter.def.json -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 "Etäisyys tulostettujen täyttölinjojen välillä. Tämä asetus lasketaan täytön tiheydestä ja täyttölinjan leveydestä." - -#: fdmprinter.def.json -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Täyttökuvio" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Ristikko" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Linjat" - -#: fdmprinter.def.json -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Kolmiot" - -#: fdmprinter.def.json -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" +msgctxt "material_crystallinity label" +msgid "Crystalline Material" msgstr "" #: fdmprinter.def.json @@ -1819,261 +763,79 @@ msgctxt "infill_pattern option cubicsubdiv" msgid "Cubic Subdivision" msgstr "Kuution alajako" -#: fdmprinter.def.json -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Oktetti" - -#: fdmprinter.def.json -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Neljänneskuutio" - -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Samankeskinen" - -#: fdmprinter.def.json -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Siksak" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Risti" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Risti 3D" - -#: fdmprinter.def.json -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "" - -#: fdmprinter.def.json -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Yhdistä täyttölinjat" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Täyttölinjojen suunnat" - -#: fdmprinter.def.json -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 "Luettelo käytettävistä linjojen kokonaislukusuunnista. 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 linja- ja siksak-kuvioille ja 45 astetta muille kuvioille)." - -#: fdmprinter.def.json -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "" - -#: fdmprinter.def.json -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "" - -#: fdmprinter.def.json -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "" - -#: fdmprinter.def.json -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "" - -#: fdmprinter.def.json -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "" - -#: fdmprinter.def.json -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 "" - #: fdmprinter.def.json msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" msgstr "Kuution alajakokuori" #: fdmprinter.def.json -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 "Lisäys säteeseen kunkin kuution keskipisteestä mallin rajojen tarkistamiseksi. Näin määritetään, tuleeko kuutioon tehdä alajako. Suuremmat arvot tuottavat paksumman kuoren pienempiin kuutioihin mallin rajojen lähellä." +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Leikkaava verkko" #: fdmprinter.def.json -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Täytön limityksen prosentti" +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Tiedot, jotka yhdistävät materiaalivirran (mm3 sekunnissa) lämpötilaan (celsiusastetta)." #: fdmprinter.def.json -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." +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Oletuskiihtyvyys" + +#: fdmprinter.def.json +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" msgstr "" #: fdmprinter.def.json -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Täytön limitys" +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Oletusarvoinen tulostuslangan nykäisy" #: fdmprinter.def.json -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." +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Oletustulostuslämpötila" #: fdmprinter.def.json -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Täyttöliikkeen etäisyys" +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Oletusarvoinen X-Y-nykäisy" #: fdmprinter.def.json -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 "Siirtoliikkeen pituus jokaisen täyttölinjan jälkeen, jotta täyttö tarttuu seinämiin paremmin. Tämä vaihtoehto on samanlainen kuin täytön limitys, mutta ilman pursotusta ja tapahtuu vain toisessa päässä täyttölinjaa." +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Oletusarvoinen Z-nykäisy" #: fdmprinter.def.json -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Täyttökerroksen paksuus" +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "Vaakatasoisen liikkeen oletusnykäisy." #: fdmprinter.def.json -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 "Täyttömateriaalin paksuus kerrosta kohti. Tämän arvon tulisi aina olla kerroksen korkeuden kerrannainen. Muissa tapauksissa se pyöristetään." +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Z-suunnan moottorin oletusnykäisy." #: fdmprinter.def.json -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Asteittainen täyttöarvo" +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Tulostuslangan moottorin oletusnykäisy." #: fdmprinter.def.json -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 "Määrä kertoja, joilla täytön tiheyttä vähennetään puolella kauemmaksi yläpintojen alle siirryttäessä. Yläpintoja lähempänä olevista alueista tulee tiheämpiä enintään täytön tiheyden arvoon asti." - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Asteittaisen täyttöarvon korkeus" - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "Tietyn tiheysarvon täytön korkeus ennen puoleen tiheyteen vaihtamista." - -#: fdmprinter.def.json -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Täyttö ennen seinämiä" - -#: fdmprinter.def.json -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 "Tulostetaan täyttö ennen seinien tulostamista. Seinien tulostaminen ensin saattaa johtaa tarkempiin seiniin, mutta ulokkeet tulostuvat huonommin. Täytön tulostaminen ensin johtaa tukevampiin seiniin, mutta täyttökuvio saattaa joskus näkyä pinnan läpi." - -#: fdmprinter.def.json -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Minimitäyttöalue" - -#: fdmprinter.def.json -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Älä muodosta tätä pienempiä täyttöalueita (käytä sen sijaan pintakalvoa)." - -#: fdmprinter.def.json -msgctxt "infill_support_enabled label" -msgid "Infill Support" +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." msgstr "" #: fdmprinter.def.json -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." +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 "" #: fdmprinter.def.json -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "" - -#: fdmprinter.def.json -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" +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 "" #: fdmprinter.def.json @@ -2081,314 +843,249 @@ 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 "" -#: fdmprinter.def.json -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "" - #: fdmprinter.def.json 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 "" #: fdmprinter.def.json -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Läpimitta" + +#: fdmprinter.def.json +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 "Erilaisia vaihtoehtoja, jotka auttavat pursotuksen esitäytössä ja mallin kiinnityksessä alustaan. Reunus lisää mallin pohjan ympärille yksittäisen tasaisen alueen, joka estää vääntymistä. Pohjaristikko lisää paksun, katolla varustetun ristikon mallin alle. Helma on mallin ympärille piirrettävä viiva, joka ei kosketa mallia." + +#: fdmprinter.def.json +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" msgstr "" #: fdmprinter.def.json -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." +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 "Etäisyys tulostettujen täyttölinjojen välillä. Tämä asetus lasketaan täytön tiheydestä ja täyttölinjan leveydestä." + +#: fdmprinter.def.json +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 "" #: fdmprinter.def.json -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" +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 "Tulostettujen tukilattialinjojen välinen etäisyys. Tämä asetus lasketaan tukilattian tiheysarvosta, mutta sitä voidaan säätää erikseen." + +#: fdmprinter.def.json +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 "Tulostettujen tukikattolinjojen välinen etäisyys. Tämä asetus lasketaan tukikaton tiheysarvosta, mutta sitä voidaan säätää erikseen." + +#: fdmprinter.def.json +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Tulostettujen tukirakenteiden linjojen välinen etäisyys. Tämä asetus lasketaan tuen tiheyden perusteella." + +#: fdmprinter.def.json +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support." +msgstr "Etäisyys tulosteesta tuen alaosaan." + +#: fdmprinter.def.json +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Etäisyys tuen yläosasta tulosteeseen." + +#: fdmprinter.def.json +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. This value is rounded up to a multiple of the layer height." +msgstr "Tukirakenteen etäisyys tulosteesta ylä-/alasuunnassa. Tämä rako sallii tukien poistamisen mallin tulostuksen jälkeen. Tämä arvo pyöristetään ylöspäin kerroksen korkeuden kerrannaiseksi." + +#: fdmprinter.def.json +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 "Siirtoliikkeen pituus jokaisen täyttölinjan jälkeen, jotta täyttö tarttuu seinämiin paremmin. Tämä vaihtoehto on samanlainen kuin täytön limitys, mutta ilman pursotusta ja tapahtuu vain toisessa päässä täyttölinjaa." + +#: fdmprinter.def.json +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Siirtoliikkeen etäisyys ulkoseinämän jälkeen Z-sauman piilottamiseksi paremmin." + +#: fdmprinter.def.json +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Vetosuojuksen etäisyys tulosteesta X-/Y-suunnissa." + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "Tihkusuojuksen etäisyys tulosteesta X-/Y-suunnissa." + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." msgstr "" #: fdmprinter.def.json -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." +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Tukirakenteen etäisyys tulosteesta X-/Y-suunnissa." + +#: fdmprinter.def.json +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Älä muodosta tätä pienempiä täyttöalueita (käytä sen sijaan pintakalvoa)." + +#: fdmprinter.def.json +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Vetosuojuksen korkeus" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Vetosuojuksen rajoitus" + +#: fdmprinter.def.json +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Vetosuojuksen X/Y-etäisyys" + +#: fdmprinter.def.json +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Tukiverkon pudottaminen alaspäin" + +#: fdmprinter.def.json +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Kaksoispursotus" + +#: fdmprinter.def.json +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Soikea" + +#: fdmprinter.def.json +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Ota kiihtyvyyden hallinta käyttöön" + +#: fdmprinter.def.json +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" msgstr "" #: fdmprinter.def.json -msgctxt "material label" -msgid "Material" -msgstr "Materiaali" +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Ota vapaaliuku käyttöön" #: fdmprinter.def.json -msgctxt "material description" -msgid "Material" -msgstr "Materiaali" +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Ota kartiomainen tuki käyttöön" #: fdmprinter.def.json -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Oletustulostuslämpötila" +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Ota vetosuojus käyttöön" #: fdmprinter.def.json -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 "Tulostuksessa käytettävä oletuslämpötila. Tämän tulee olla materiaalin ”pohjalämpötila”. Kaikkien muiden tulostuslämpötilojen tulee käyttää tähän arvoon perustuvia siirtymiä." +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Ota silitys käyttöön" #: fdmprinter.def.json -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Ota nykäisyn hallinta käyttöön" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Ota suuttimen lämpötilan hallinta käyttöön" + +#: fdmprinter.def.json +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Ota tihkusuojus käyttöön" + +#: fdmprinter.def.json +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Ota esitäyttöpisara käyttöön" + +#: fdmprinter.def.json +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Ota esitäyttötorni käyttöön" + +#: fdmprinter.def.json +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Ota tulostuksen jäähdytys käyttöön" + +#: fdmprinter.def.json +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Ota takaisinveto käyttöön" + +#: fdmprinter.def.json +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" msgstr "" #: fdmprinter.def.json -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." +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Ota tukilattia käyttöön" + +#: fdmprinter.def.json +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Ota tukiliittymä käyttöön" + +#: fdmprinter.def.json +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Ota tukikatto käyttöön" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" msgstr "" #: fdmprinter.def.json -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Tulostuslämpötila" - -#: fdmprinter.def.json -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Tulostukseen käytettävä lämpötila." - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Alkukerroksen tulostuslämpötila" - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Ensimmäisen kerroksen tulostuksessa käytettävä lämpötila. Aseta arvoon 0, jos et halua käyttää alkukerroksen erikoiskäsittelyä." - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Tulostuslämpötila alussa" - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "Minimilämpötila lämmitettäessä tulostuslämpötilaan, jossa tulostus voidaan aloittaa." - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Tulostuslämpötila lopussa" - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "Lämpötila, johon jäähdytetään jo ennen tulostuksen loppumista." - -#: fdmprinter.def.json -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Pursotuksen jäähtymisnopeuden lisämääre" - -#: fdmprinter.def.json -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 "Lisänopeus, jonka verran suutin jäähtyy pursotuksen aikana. Samaa arvoa käytetään merkitsemään menetettyä kuumentumisnopeutta pursotuksen aikaisen kuumennuksen aikana." - -#: fdmprinter.def.json -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" msgstr "" #: fdmprinter.def.json -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 "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." #: fdmprinter.def.json -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Alustan lämpötila" +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 "Ottaa tulostuspään nykäisyn säädön käyttöön X- tai Y-akselin nopeuden muuttuessa. Nykäisyn suurentaminen saattaa vähentää tulostusaikaa tulostuslaadun kustannuksella." #: fdmprinter.def.json -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 "" +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 "Ottaa tulostuspään kiihtyvyyden säädön käyttöön. Kiihtyvyyksien suurentaminen saattaa vähentää tulostusaikaa tulostuslaadun kustannuksella." #: fdmprinter.def.json -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Alustan lämpötila (alkukerros)" +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 "Ottaa tulostuksen jäähdytystuulettimet käyttöön tulostettaessa. Tuulettimet parantavat tulostuslaatua kerroksilla, joilla on lyhyet kerrosajat ja tukisiltoja/ulokkeita." #: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "" - -#: fdmprinter.def.json -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." +msgctxt "machine_end_gcode label" +msgid "End G-code" msgstr "" #: fdmprinter.def.json @@ -2397,2260 +1094,8 @@ msgid "End of Filament Purge Length" msgstr "" #: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_flow label" -msgid "Flow" -msgstr "Virtaus" - -#: fdmprinter.def.json -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Virtauksen kompensointi: pursotetun materiaalin määrä kerrotaan tällä arvolla." - -#: fdmprinter.def.json -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "" - -#: fdmprinter.def.json -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "" - -#: fdmprinter.def.json -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "" - -#: fdmprinter.def.json -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "" - -#: fdmprinter.def.json -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "" - -#: fdmprinter.def.json -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "" - -#: fdmprinter.def.json -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "" - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "" - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "" - -#: fdmprinter.def.json -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Esitäyttötornin virtaus" - -#: fdmprinter.def.json -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Valmiuslämpötila" - -#: fdmprinter.def.json -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "Suuttimen lämpötila, kun toista suutinta käytetään tulostukseen." - -#: fdmprinter.def.json -msgctxt "speed label" -msgid "Speed" -msgstr "Nopeus" - -#: fdmprinter.def.json -msgctxt "speed description" -msgid "Speed" -msgstr "Nopeus" - -#: fdmprinter.def.json -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Tulostusnopeus" - -#: fdmprinter.def.json -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Tulostamiseen käytettävä nopeus." - -#: fdmprinter.def.json -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Täyttönopeus" - -#: fdmprinter.def.json -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Täytön tulostamiseen käytettävä nopeus." - -#: fdmprinter.def.json -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Seinämänopeus" - -#: fdmprinter.def.json -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Seinämien tulostamiseen käytettävä nopeus." - -#: fdmprinter.def.json -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Ulkoseinämänopeus" - -#: fdmprinter.def.json -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 "Nopeus, jolla uloimmat seinämät tulostetaan. Ulkoseinämien tulostus hitaammalla nopeudella parantaa lopullisen pintakalvon laatua. Jos sisäseinämän ja ulkoseinämän nopeuden välillä on kuitenkin suuri ero, se vaikuttaa negatiivisesti laatuun." - -#: fdmprinter.def.json -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Sisäseinämänopeus" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Yläpinnan pintakalvonopeus" - -#: fdmprinter.def.json -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "Yläpinnan pintakalvokerrosten tulostamiseen käytettävä nopeus." - -#: fdmprinter.def.json -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Ylä-/alaosan nopeus" - -#: fdmprinter.def.json -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Ylä-/alakerrosten tulostamiseen käytettävä nopeus." - -#: fdmprinter.def.json -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Tukirakenteen nopeus" - -#: fdmprinter.def.json -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 "Nopeus, jolla tukirakenne tulostetaan. Tukirakenteiden tulostus korkeammilla nopeuksilla voi lyhentää tulostusaikaa merkittävästi. Tukirakenteen pinnan laadulla ei ole merkitystä, koska rakenne poistetaan tulostuksen jälkeen." - -#: fdmprinter.def.json -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Tuen täytön nopeus" - -#: fdmprinter.def.json -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 "Nopeus, jolla tuen täyttö tulostetaan. Täytön tulostus hitaammilla nopeuksilla parantaa vakautta." - -#: fdmprinter.def.json -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Tukiliittymän nopeus" - -#: fdmprinter.def.json -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 "Nopeus, jolla tuen katot ja lattiat tulostetaan. Niiden tulostus hitaammilla nopeuksilla voi parantaa ulokkeen laatua." - -#: fdmprinter.def.json -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Tukikaton nopeus" - -#: fdmprinter.def.json -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 "Nopeus, jolla tuen katot tulostetaan. Niiden tulostus hitaammilla nopeuksilla voi parantaa ulokkeen laatua." - -#: fdmprinter.def.json -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Tukilattian nopeus" - -#: fdmprinter.def.json -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 "Nopeus, jolla tuen lattiat tulostetaan. Niiden tulostus hitaammilla nopeuksilla voi parantaa mallin yläosan tuen kiinnittymistä." - -#: fdmprinter.def.json -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Esitäyttötornin nopeus" - -#: fdmprinter.def.json -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 "Nopeus, jolla esitäyttötorni tulostetaan. Esitäyttötornin tulostus hitaammin saattaa tehdä siitä vakaamman, jos eri tulostuslankojen tarttuvuus ei ole paras mahdollinen." - -#: fdmprinter.def.json -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Siirtoliikkeen nopeus" - -#: fdmprinter.def.json -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Nopeus, jolla siirtoliikkeet tehdään." - -#: fdmprinter.def.json -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Alkukerroksen nopeus" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Alkukerroksen tulostusnopeus" - -#: fdmprinter.def.json -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 "Alkukerroksen tulostusnopeus. Alhaisempi arvo on suositeltava, jotta tarttuvuus alustaan on parempi." - -#: fdmprinter.def.json -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Alkukerroksen siirtoliikkeen nopeus" - -#: fdmprinter.def.json -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 "Alkukerroksen siirtoliikkeiden nopeus. Alhaisempi arvo on suositeltava, jotta aikaisemmin tulostettuja osia ei vedetä pois alustasta. Tämän asetuksen arvo voidaan laskea automaattisesti siirtoliikkeen nopeuden ja tulostusnopeuden suhteen perusteella." - -#: fdmprinter.def.json -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Helman/reunuksen nopeus" - -#: fdmprinter.def.json -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 "Nopeus, jolla helma ja reunus tulostetaan. Yleensä se tehdään alkukerroksen nopeudella. Joskus helma tai reunus halutaan kuitenkin tulostaa eri nopeudella." - -#: fdmprinter.def.json -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Hitaampien kerrosten määrä" - -#: fdmprinter.def.json -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 "Muutama ensimmäinen kerros tulostetaan hitaammin kuin loput mallista, jolloin saadaan parempi tarttuvuus alustaan ja parannetaan tulosteiden yleistä onnistumista. Näiden kerrosten jälkeen nopeutta lisätään asteittain." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Ota kiihtyvyyden hallinta käyttöön" - -#: fdmprinter.def.json -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 "Ottaa tulostuspään kiihtyvyyden säädön käyttöön. Kiihtyvyyksien suurentaminen saattaa vähentää tulostusaikaa tulostuslaadun kustannuksella." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Tulostuksen kiihtyvyys" - -#: fdmprinter.def.json -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Kiihtyvyys, jolla tulostetaan." - -#: fdmprinter.def.json -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Täytön kiihtyvyys" - -#: fdmprinter.def.json -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "Kiihtyvyys, jolla täyttö tulostetaan." - -#: fdmprinter.def.json -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Seinämän kiihtyvyys" - -#: fdmprinter.def.json -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Kiihtyvyys, jolla seinämät tulostetaan." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Ulkoseinämän kiihtyvyys" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "Kiihtyvyys, jolla ulkoseinämät tulostetaan." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Sisäseinämän kiihtyvyys" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "Kiihtyvyys, jolla kaikki sisäseinämät tulostetaan." - -#: fdmprinter.def.json -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Yläpinnan pintakalvon kiihtyvyys" - -#: fdmprinter.def.json -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "Kiihtyvyys, jolla yläpinnan pintakalvokerrokset tulostetaan." - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Ylä-/alakerrosten kiihtyvyys" - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Kiihtyvyys, jolla ylä-/alakerrokset tulostetaan." - -#: fdmprinter.def.json -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Tuen kiihtyvyys" - -#: fdmprinter.def.json -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Kiihtyvyys, jolla tukirakenne tulostetaan." - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Tuen täytön kiihtyvyys" - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Kiihtyvyys, jolla tuen täyttö tulostetaan." - -#: fdmprinter.def.json -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Tukiliittymän kiihtyvyys" - -#: fdmprinter.def.json -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 "Kiihtyvyys, jolla tuen katot ja lattiat tulostetaan. Niiden tulostus hitaammalla kiihtyvyydellä voi parantaa ulokkeen laatua." - -#: fdmprinter.def.json -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Tukikaton kiihtyvyys" - -#: fdmprinter.def.json -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 "Kiihtyvyys, jolla tuen katot tulostetaan. Niiden tulostus hitaammalla kiihtyvyydellä voi parantaa ulokkeen laatua." - -#: fdmprinter.def.json -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Tukilattian kiihtyvyys" - -#: fdmprinter.def.json -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ä." - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Esitäyttötornin kiihtyvyys" - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "Kiihtyvyys, jolla esitäyttötorni tulostetaan." - -#: fdmprinter.def.json -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Siirtoliikkeen kiihtyvyys" - -#: fdmprinter.def.json -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Kiihtyvyys, jolla siirtoliikkeet tehdään." - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Alkukerroksen kiihtyvyys" - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Alkukerroksen kiihtyvyys." - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Alkukerroksen tulostuksen kiihtyvyys" - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "Alkukerroksen tulostuksen aikainen kiihtyvyys." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Alkukerroksen siirtoliikkeen kiihtyvyys" - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Alkukerroksen siirtoliikkeiden kiihtyvyys." - -#: fdmprinter.def.json -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Helman/reunuksen kiihtyvyys" - -#: fdmprinter.def.json -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 "Kiihtyvyys, jolla helma ja reunus tulostetaan. Yleensä se tehdään alkukerroksen kiihtyvyydellä. Joskus helma tai reunus halutaan kuitenkin tulostaa eri kiihtyvyydellä." - -#: fdmprinter.def.json -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Ota nykäisyn hallinta käyttöön" - -#: fdmprinter.def.json -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 "Ottaa tulostuspään nykäisyn säädön käyttöön X- tai Y-akselin nopeuden muuttuessa. Nykäisyn suurentaminen saattaa vähentää tulostusaikaa tulostuslaadun kustannuksella." - -#: fdmprinter.def.json -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Tulostuksen nykäisy" - -#: fdmprinter.def.json -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "Tulostuspään nopeuden hetkellinen maksimimuutos." - -#: fdmprinter.def.json -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Täytön nykäisy" - -#: fdmprinter.def.json -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "Täytön tulostuksen nopeuden hetkellinen maksimimuutos." - -#: fdmprinter.def.json -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Seinämän nykäisy" - -#: fdmprinter.def.json -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "Seinämien tulostuksen nopeuden hetkellinen maksimimuutos." - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Ulkoseinämän nykäisy" - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "Ulkoseinämien tulostuksen nopeuden hetkellinen maksimimuutos." - -#: fdmprinter.def.json -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Sisäseinämän nykäisy" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Yläpinnan pintakalvon nykäisy" - -#: fdmprinter.def.json -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "Yläpinnan pintakalvokerrosten tulostuksen nopeuden hetkellinen maksimimuutos." - -#: fdmprinter.def.json -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Ylä-/alaosan nykäisy" - -#: fdmprinter.def.json -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "Ylä-/alakerrosten tulostuksen nopeuden hetkellinen maksimimuutos." - -#: fdmprinter.def.json -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Tuen nykäisy" - -#: fdmprinter.def.json -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "Tukirakenteen tulostuksen nopeuden hetkellinen maksimimuutos." - -#: fdmprinter.def.json -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Tuen täytön nykäisy" - -#: fdmprinter.def.json -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "Tuen täytön tulostuksen nopeuden hetkellinen maksimimuutos." - -#: fdmprinter.def.json -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Tukiliittymän nykäisy" - -#: fdmprinter.def.json -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "Tuen kattojen ja lattioiden tulostuksen nopeuden hetkellinen maksimimuutos." - -#: fdmprinter.def.json -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Tukikaton nykäisy" - -#: fdmprinter.def.json -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "Tuen kattojen tulostuksen nopeuden hetkellinen maksimimuutos." - -#: fdmprinter.def.json -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Tukilattian nykäisy" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Esitäyttötornin nykäisy" - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "Esitäyttötornin tulostuksen nopeuden hetkellinen maksimimuutos." - -#: fdmprinter.def.json -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Siirtoliikkeen nykäisy" - -#: fdmprinter.def.json -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "Siirtoliikkeiden nopeuden hetkellinen maksimimuutos." - -#: fdmprinter.def.json -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Alkukerroksen nykäisy" - -#: fdmprinter.def.json -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "Alkukerroksen tulostuksen nopeuden hetkellinen maksimimuutos." - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Alkukerroksen tulostuksen nykäisy" - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "Alkukerroksen tulostuksen aikainen nopeuden hetkellinen maksimimuutos." - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Alkukerroksen siirtoliikkeen nykäisy" - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Alkukerroksen siirtoliikkeiden kiihtyvyys." - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Helman/reunuksen nykäisy" - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "Helman ja reunuksen tulostuksen nopeuden hetkellinen maksimimuutos." - -#: fdmprinter.def.json -msgctxt "travel label" -msgid "Travel" -msgstr "Siirtoliike" - -#: fdmprinter.def.json -msgctxt "travel description" -msgid "travel" -msgstr "siirtoliike" - -#: fdmprinter.def.json -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Ota takaisinveto käyttöön" - -#: fdmprinter.def.json -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "" - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Takaisinveto kerroksen muuttuessa" - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "Vedä tulostuslanka takaisin, kun suutin on siirtymässä seuraavaan kerrokseen. " - -#: fdmprinter.def.json -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Takaisinvetoetäisyys" - -#: fdmprinter.def.json -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "Takaisinvedon yhteydessä sisään vedettävän materiaalin pituus." - -#: fdmprinter.def.json -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Takaisinvetonopeus" - -#: fdmprinter.def.json -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "Nopeus, jolla tulostuslanka vedetään sisään ja esitäytetään takaisinvedon yhteydessä." - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Takaisinvedon vetonopeus" - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "Nopeus, jolla tulostuslanka vedetään sisään takaisinvedon yhteydessä." - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Takaisinvedon esitäyttönopeus" - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "Nopeus, jolla tulostuslanka esitäytetään takaisinvedon yhteydessä." - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Takaisinvedon esitäytön lisäys" - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Siirtoliikkeen yhteydessä materiaalia voi tihkua pois. Sitä voidaan kompensoida tässä." - -#: fdmprinter.def.json -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Takaisinvedon minimiliike" - -#: fdmprinter.def.json -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 "Tarvittavan siirtoliikkeen minimietäisyys, jotta takaisinveto yleensäkin tapahtuu. Tällä varmistetaan, ettei takaisinvetoja tapahdu runsaasti pienellä alueella." - -#: fdmprinter.def.json -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Takaisinvedon maksimiluku" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Pursotuksen minimietäisyyden ikkuna" - -#: fdmprinter.def.json -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 "Ikkuna, jossa takaisinvedon maksimiluku otetaan käyttöön. Tämän ikkunan tulisi olla suunnilleen takaisinvetoetäisyyden kokoinen, jotta saman kohdan sivuuttavien takaisinvetojen lukumäärää saadaan rajoitettua." - -#: fdmprinter.def.json -msgctxt "limit_support_retractions label" -msgid "Limit Support Retractions" -msgstr "" - -#: fdmprinter.def.json -msgctxt "limit_support_retractions description" -msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -msgstr "" - -#: fdmprinter.def.json -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Pyyhkäisytila" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Pois" - -#: fdmprinter.def.json -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Kaikki" - -#: fdmprinter.def.json -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "" - -#: fdmprinter.def.json -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "" - -#: fdmprinter.def.json -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "" - -#: fdmprinter.def.json -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Vedä takaisin ennen ulkoseinämää" - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Vedä aina takaisin, kun siirrytään ulkoseinämän aloittamista varten." - -#: fdmprinter.def.json -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Vältä tulostettuja osia siirtoliikkeen yhteydessä" - -#: fdmprinter.def.json -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 "Suutin välttää aiemmin tulostettuja osia siirtoliikkeiden yhteydessä. Tämä vaihtoehto on valittavissa vain, kun pyyhkäisy on käytössä." - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "" - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "" - -#: fdmprinter.def.json -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Siirtoliikkeen vältettävä etäisyys" - -#: fdmprinter.def.json -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ä." - -#: fdmprinter.def.json -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "Kerroksen X-aloitus" - -#: fdmprinter.def.json -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-koordinaatti kohdalle, jonka läheltä aloitetaan kunkin kerroksen tulostus." - -#: fdmprinter.def.json -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Kerroksen Y-aloitus" - -#: fdmprinter.def.json -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-koordinaatti kohdalle, jonka läheltä aloitetaan kunkin kerroksen tulostus." - -#: fdmprinter.def.json -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Z-hyppy takaisinvedon yhteydessä" - -#: fdmprinter.def.json -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 "Alustaa lasketaan aina kun takaisinveto tehdään, jotta suuttimen ja tulosteen väliin jää tilaa. Tämä estää suuttimen osumisen tulosteeseen siirtoliikkeen yhteydessä ja vähentää näin sen vaaraa, että tuloste työnnetään pois alustalta." - -#: fdmprinter.def.json -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Z-hyppy vain tulostettujen osien yli" - -#: fdmprinter.def.json -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ä”." - -#: fdmprinter.def.json -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Z-hypyn korkeus" - -#: fdmprinter.def.json -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Z-hypyn suorituksen korkeusero." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Z-hyppy suulakkeen vaihdon jälkeen" - -#: fdmprinter.def.json -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 "Alustaa lasketaan koneen vaihdettua yhdestä suulakkeesta toiseen, jotta suuttimen ja tulosteen väliin jää tilaa. Tämä estää suutinta jättämästä tihkunutta ainetta tulosteen ulkopuolelle." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "" - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "" - -#: fdmprinter.def.json -msgctxt "cooling label" -msgid "Cooling" -msgstr "Jäähdytys" - -#: fdmprinter.def.json -msgctxt "cooling description" -msgid "Cooling" -msgstr "Jäähdytys" - -#: fdmprinter.def.json -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Ota tulostuksen jäähdytys käyttöön" - -#: fdmprinter.def.json -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 "Ottaa tulostuksen jäähdytystuulettimet käyttöön tulostettaessa. Tuulettimet parantavat tulostuslaatua kerroksilla, joilla on lyhyet kerrosajat ja tukisiltoja/ulokkeita." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Tuulettimen nopeus" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "Tulostuksen jäähdytystuulettimien käyntinopeus." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Normaali tuulettimen nopeus" - -#: fdmprinter.def.json -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 "Nopeus, jolla tuuletin pyörii ennen raja-arvon tavoittamista. Jos kerros tulostuu nopeammin kuin raja-arvo, tulostimen nopeus nousee asteittain kohti tuulettimen maksiminopeutta." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Tuulettimen maksiminopeus" - -#: fdmprinter.def.json -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 "Nopeus, jolla tuuletin pyörii kerroksen minimiaikana. Tuulettimen nopeus kasvaa asteittain normaalin ja maksiminopeuden välillä, kun raja-arvo ohitetaan." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Tuulettimen normaali-/maksiminopeuden raja-arvo" - -#: fdmprinter.def.json -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 "Kerrosaika, joka määrittää tuulettimen normaalin nopeuden ja maksiminopeuden välisen raja-arvon. Kerrokset, jotka tulostuvat tätä hitaammin käyttävät normaalia tuulettimen nopeutta. Nopeammilla kerroksilla tuulettimen nopeus nousee asteittain kohti tuulettimen maksiminopeutta." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Tuulettimen nopeus alussa" - -#: fdmprinter.def.json -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 "Tuulettimien pyörimisnopeus tulostuksen alussa. Seuraavilla kerroksilla tuulettimen nopeus kasvaa asteittain, kunnes saavutetaan kerros, joka vastaa Normaali tuulettimen nopeus korkeudella -arvoa." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Normaali tuulettimen nopeus korkeudella" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Normaali tuulettimen nopeus kerroksessa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Kerroksen minimiaika" - -#: fdmprinter.def.json -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ä." - -#: fdmprinter.def.json -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Miniminopeus" - -#: fdmprinter.def.json -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 "Tulostuksen miniminopeus riippumatta kerroksen minimiajan aiheuttamasta hidastuksesta. Jos tulostin hidastaisi liikaa, paine suuttimessa olisi liian alhainen ja tulostuksen laatu kärsisi." - -#: fdmprinter.def.json -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Tulostuspään nosto" - -#: fdmprinter.def.json -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 "Kun miniminopeuteen päädytään kerroksen minimiajan johdosta, nosta pää pois tulosteesta ja odota, kunnes kerroksen minimiaika täyttyy." - -#: fdmprinter.def.json -msgctxt "support label" -msgid "Support" -msgstr "Tuki" - -#: fdmprinter.def.json -msgctxt "support description" -msgid "Support" -msgstr "Tuki" - -#: fdmprinter.def.json -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Muodosta tuki" - -#: fdmprinter.def.json -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 "Muodosta rakenteita, jotka tukevat mallin ulokkeita sisältäviä osia. Ilman tukirakenteita kyseiset osat luhistuvat tulostuksen aikana." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Tuen suulake" - -#: fdmprinter.def.json -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "Tuen tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." - -#: fdmprinter.def.json -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Tuen täytön suulake" - -#: fdmprinter.def.json -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 "Tuen täytön tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Tuen ensimmäisen kerroksen suulake" - -#: fdmprinter.def.json -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 "Tuen täytön ensimmäisen kerroksen tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." - -#: fdmprinter.def.json -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Tukiliittymän suulake" - -#: fdmprinter.def.json -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 "Tuen kattojen ja lattioiden tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." - -#: fdmprinter.def.json -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Tukikaton suulake" - -#: fdmprinter.def.json -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 "Tuen kattojen tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." - -#: fdmprinter.def.json -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Tukilattian suulake" - -#: fdmprinter.def.json -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 "Tuen lattioiden tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." - -#: fdmprinter.def.json -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_tree_angle label" -msgid "Tree Support Branch Angle" -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_tree_angle description" -msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance label" -msgid "Tree Support Branch Distance" -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance description" -msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter label" -msgid "Tree Support Branch Diameter" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter_angle label" -msgid "Tree Support Branch Diameter Angle" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution label" -msgid "Tree Support Collision Resolution" -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution description" -msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Tuen sijoittelu" - -#: fdmprinter.def.json -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 "Säädä tukirakenteiden sijoittelua. Sijoituspaikka voidaan asettaa alustaa koskettavaksi tai kaikkialle. Kaikkialla-asetuksella tukirakenteet tulostetaan myös malliin." - -#: fdmprinter.def.json -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Alustaa koskettava" - -#: fdmprinter.def.json -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Kaikkialla" - -#: fdmprinter.def.json -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Tuen ulokkeen kulma" - -#: fdmprinter.def.json -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 "Ulokkeen minimikulma, jonka jälkeen tuki lisätään. Arvolla 0 ° kaikki ulokkeet tuetaan, asetuksella 90 ° tukia ei tuoteta." - -#: fdmprinter.def.json -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Tukikuvio" - -#: fdmprinter.def.json -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 "Tukirakenteiden tulostuskuvio. Eri vaihtoehdot tuottavat jämäköitä tai helposti poistettavia tukia." - -#: fdmprinter.def.json -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Linjat" - -#: fdmprinter.def.json -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Ristikko" - -#: fdmprinter.def.json -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Kolmiot" - -#: fdmprinter.def.json -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Samankeskinen" - -#: fdmprinter.def.json -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Siksak" - -#: fdmprinter.def.json -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Risti" - -#: fdmprinter.def.json -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Yhdistä tuki-siksakit" - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Yhdistä siksakit. Tämä lisää siksak-tukirakenteen lujuutta." - -#: fdmprinter.def.json -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Tuen tiheys" - -#: fdmprinter.def.json -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 "Säätää tukirakenteen tiheyttä. Korkeammat arvot tuottavat parempia ulokkeita, mutta tuet on vaikeampi poistaa." - -#: fdmprinter.def.json -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Tukilinjojen etäisyys" - -#: fdmprinter.def.json -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Tulostettujen tukirakenteiden linjojen välinen etäisyys. Tämä asetus lasketaan tuen tiheyden perusteella." - -#: fdmprinter.def.json -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Tuen Z-etäisyys" - -#: fdmprinter.def.json -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. This value is rounded up to a multiple of the layer height." -msgstr "Tukirakenteen etäisyys tulosteesta ylä-/alasuunnassa. Tämä rako sallii tukien poistamisen mallin tulostuksen jälkeen. Tämä arvo pyöristetään ylöspäin kerroksen korkeuden kerrannaiseksi." - -#: fdmprinter.def.json -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Tuen yläosan etäisyys" - -#: fdmprinter.def.json -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Etäisyys tuen yläosasta tulosteeseen." - -#: fdmprinter.def.json -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Tuen alaosan etäisyys" - -#: fdmprinter.def.json -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Etäisyys tulosteesta tuen alaosaan." - -#: fdmprinter.def.json -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Tuen X-/Y-etäisyys" - -#: fdmprinter.def.json -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Tukirakenteen etäisyys tulosteesta X-/Y-suunnissa." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Tuen etäisyyden prioriteetti" - -#: fdmprinter.def.json -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 "Kumoaako tuen X-/Y-etäisyys tuen Z-etäisyyden vai päinvastoin. Kun X/Y kumoaa Z:n, X-/Y-etäisyys saattaa työntää tuen pois mallista, mikä vaikuttaa todelliseen Z-etäisyyteen ulokkeeseen. Tämä voidaan estää poistamalla X-/Y-etäisyyden käyttö ulokkeiden lähellä." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y kumoaa Z:n" - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z kumoaa X/Y:n" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Tuen X-/Y-minimietäisyys" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Tuen porrasnousun korkeus" - -#: fdmprinter.def.json -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 "Mallin päällä olevan porrasmaisen tuen pohjan portaiden korkeus. Matala arvo tekee tuesta vaikeamman poistaa, mutta liian korkeat arvot voivat johtaa epävakaisiin tukirakenteisiin. Poista porrasmainen ominaisuus käytöstä valitsemalla asetukseksi nolla." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Tukiportaiden askelman enimmäisleveys" - -#: fdmprinter.def.json -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 "Mallin päällä olevan porrasmaisen tuen pohjan portaiden enimmäisleveys. Matala arvo tekee tuesta vaikeamman poistaa, mutta liian korkeat arvot voivat johtaa epävakaisiin tukirakenteisiin." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Tuen liitosetäisyys" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Tuen vaakalaajennus" - -#: fdmprinter.def.json -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 "Kaikkia tukimonikulmioita kussakin kerroksessa koskeva siirtymien määrä. Positiivisilla arvoilla tasoitetaan tukialueita ja saadaan aikaan vankempi tuki." - -#: fdmprinter.def.json -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Tuen täyttökerroksen paksuus" - -#: fdmprinter.def.json -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 "Tuen täyttömateriaalin paksuus kerrosta kohti. Tämän arvon tulee aina olla kerroksen korkeuden kerrannainen. Muissa tapauksissa se pyöristetään." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Asteittainen tuen täyttöarvo" - -#: fdmprinter.def.json -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 "Määrä kertoja, joilla tuen täytön tiheyttä vähennetään puolella kauemmaksi yläpintojen alle siirryttäessä. Yläpintoja lähempänä olevista alueista tulee tiheämpiä enintään tuen täytön tiheyden arvoon asti." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Asteittaisen tuen täyttöarvon korkeus" - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "Tietyn tiheysarvon tuen täytön korkeus ennen puoleen tiheyteen vaihtamista." - -#: fdmprinter.def.json -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Ota tukiliittymä käyttöön" - -#: fdmprinter.def.json -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 "Muodostaa tiheän liittymän mallin ja tuen väliin. Tällä luodaan pintakalvo tulostettavan mallin tuen yläosaan ja alaosaan, jossa se lepää mallin päällä." - -#: fdmprinter.def.json -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Ota tukikatto käyttöön" - -#: fdmprinter.def.json -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 "Muodosta tiheä materiaalilaatta tuen yläosan ja mallin välille. Se luo pintakalvon mallin ja tuen välille." - -#: fdmprinter.def.json -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Ota tukilattia käyttöön" - -#: fdmprinter.def.json -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 "Muodosta tiheä materiaalilaatta tuen alaosan ja mallin välille. Se luo pintakalvon mallin ja tuen välille." - -#: fdmprinter.def.json -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Tukiliittymän paksuus" - -#: fdmprinter.def.json -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 "Tukiliittymän paksuus kohdassa, jossa se koskettaa mallia ylä- tai alaosassa." - -#: fdmprinter.def.json -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Tukikaton paksuus" - -#: fdmprinter.def.json -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 "Tukikattojen paksuus. Tällä hallitaan tiheiden kerrosten määrää sen tuen päällä, jolla malli lepää." - -#: fdmprinter.def.json -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Tukilattian paksuus" - -#: fdmprinter.def.json -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 "Tuen lattioiden paksuus. Tällä hallitaan sellaisten tiheiden kerrosten määrää, jotka tulostetaan mallin tukea kannattelevien kohtien päälle." - -#: fdmprinter.def.json -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Tukiliittymän resoluutio" - -#: fdmprinter.def.json -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ä." - -#: fdmprinter.def.json -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Tukiliittymän tiheys" - -#: fdmprinter.def.json -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 "Säätää tukirakenteen kattojen ja lattioiden tiheyttä. Korkeammat arvot tuottavat parempia ulokkeita, mutta tuet on vaikeampi poistaa." - -#: fdmprinter.def.json -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Tukikaton tiheys" - -#: fdmprinter.def.json -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 "Tukirakenteen lattian tiheys. Korkeammat arvot tuottavat parempia ulokkeita, mutta tuet on vaikeampi poistaa." - -#: fdmprinter.def.json -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Tukikaton linjaetäisyys" - -#: fdmprinter.def.json -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 "Tulostettujen tukikattolinjojen välinen etäisyys. Tämä asetus lasketaan tukikaton tiheysarvosta, mutta sitä voidaan säätää erikseen." - -#: fdmprinter.def.json -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Tukilattian tiheys" - -#: fdmprinter.def.json -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 "Tukirakenteen lattioiden tiheys. Korkeammalla arvolla mallin yläosan tuki kiinnittyy paremmin." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Tukilattian linjaetäisyys" - -#: fdmprinter.def.json -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 "Tulostettujen tukilattialinjojen välinen etäisyys. Tämä asetus lasketaan tukilattian tiheysarvosta, mutta sitä voidaan säätää erikseen." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Tukiliittymän kuvio" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Kuvio, jolla tuen ja mallin liittymä tulostetaan." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Linjat" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Ristikko" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Kolmiot" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Samankeskinen" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Siksak" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Tukikaton kuvio" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "Tuen kattojen tulostuskuvio." - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Linjat" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Ristikko" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Kolmiot" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Samankeskinen" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Siksak" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Tukilattian kuvio" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "Tuen lattioiden tulostuskuvio." - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Linjat" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Ristikko" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Kolmiot" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Samankeskinen" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Siksak" - -#: fdmprinter.def.json -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Käytä torneja" - -#: fdmprinter.def.json -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 "Pieniä ulokealueita tuetaan erityisillä torneilla. Näiden tornien läpimitta on niiden tukemaa aluetta suurempi. Ulokkeen lähellä tornien läpimitta pienenee muodostaen katon." - -#: fdmprinter.def.json -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Tornin läpimitta" - -#: fdmprinter.def.json -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "Erityistornin läpimitta." - -#: fdmprinter.def.json -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Tornin kattokulma" - -#: fdmprinter.def.json -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 "Tornin katon kulma. Korkeampi arvo johtaa teräväkärkisiin tornien kattoihin, matalampi arvo litteämpiin tornien kattoihin." - -#: fdmprinter.def.json -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Tukiverkon pudottaminen alaspäin" - -#: fdmprinter.def.json -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 "Muodosta tukea kaikkialle tukiverkon alla, niin ettei tukiverkossa ole ulokkeita." - -#: fdmprinter.def.json -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "" - -#: fdmprinter.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Alustan tarttuvuus" - -#: fdmprinter.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Tarttuvuus" - -#: fdmprinter.def.json -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Ota esitäyttöpisara käyttöön" - -#: fdmprinter.def.json -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 "Tulostuslangan esitäyttö materiaalipisaralla ennen tulostusta. Tämän asetuksen käyttöönotolla varmistat, että suulakkeen suuttimessa on materiaalia valmiina ennen tulostusta. Myös helman tai reunuksen tulostaminen voi toimia esitäyttönä, jolloin tämän asetuksen käytöstä poisto säästää hieman aikaa." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Suulakkeen esitäytön X-sijainti" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "X-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Suulakkeen esitäytön Y-sijainti" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Y-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa." - -#: fdmprinter.def.json -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Alustan tarttuvuustyyppi" - -#: fdmprinter.def.json -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 "Erilaisia vaihtoehtoja, jotka auttavat pursotuksen esitäytössä ja mallin kiinnityksessä alustaan. Reunus lisää mallin pohjan ympärille yksittäisen tasaisen alueen, joka estää vääntymistä. Pohjaristikko lisää paksun, katolla varustetun ristikon mallin alle. Helma on mallin ympärille piirrettävä viiva, joka ei kosketa mallia." - -#: fdmprinter.def.json -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Helma" - -#: fdmprinter.def.json -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Reunus" - -#: fdmprinter.def.json -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Pohjaristikko" - -#: fdmprinter.def.json -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Ei mikään" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Alustan tarttuvuuden suulake" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "Helman/reunuksen/pohjaristikon tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." - -#: fdmprinter.def.json -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Helman linjaluku" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Helman etäisyys" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Helman/reunuksen minimipituus" - -#: fdmprinter.def.json -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 "Helman tai reunuksen minimipituus. Jos kaikki helma- tai reunuslinjat yhdessä eivät saavuta tätä minimipituutta, lisätään useampia helma- tai reunuslinjoja, jotta tähän minimipituuteen päästään. Huomaa: jos linjalukuna on 0, tämä jätetään huomiotta." - -#: fdmprinter.def.json -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Reunuksen leveys" - -#: fdmprinter.def.json -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 "Etäisyys mallista ulommaiseen reunuslinjaan. Suurempi reunus parantaa kiinnitystä alustaan, mutta rajoittaa tehokasta tulostusaluetta." - -#: fdmprinter.def.json -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Reunuksen linjaluku" - -#: fdmprinter.def.json -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 "Reunukseen käytettävien linjojen lukumäärä. Useampi reunuslinja parantaa kiinnitystä alustaan, mutta rajoittaa tehokasta tulostusaluetta." - -#: fdmprinter.def.json -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" msgstr "" #: fdmprinter.def.json @@ -4659,514 +1104,24 @@ msgid "Enforce brim to be printed around the model even if that space would othe msgstr "" #: fdmprinter.def.json -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Reunus vain ulkopuolella" +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Kaikkialla" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Pohjaristikon lisämarginaali" - -#: fdmprinter.def.json -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 "Jos pohjaristikko on otettu käyttöön, tämä on ylimääräinen ristikkoalue malli ympärillä, jolle myös annetaan pohjaristikko. Tämän marginaalin kasvattaminen vahvistaa pohjaristikkoa, jolloin käytetään enemmän materiaalia ja tulosteelle jää vähemmän tilaa." - -#: fdmprinter.def.json -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Pohjaristikon tasoitus" - -#: fdmprinter.def.json -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." +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" msgstr "" #: fdmprinter.def.json -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Pohjaristikon ilmarako" +msgctxt "experimental label" +msgid "Experimental" +msgstr "Kokeellinen" #: fdmprinter.def.json -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 "Rako pohjaristikon viimeisen kerroksen ja mallin ensimmäisen kerroksen välillä. Vain ensimmäistä kerrosta nostetaan tällä määrällä pohjaristikkokerroksen ja mallin välisen sidoksen vähentämiseksi. Se helpottaa pohjaristikon irti kuorimista." - -#: fdmprinter.def.json -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Z Päällekkäisyys Alkukerroksen" - -#: fdmprinter.def.json -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 "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." - -#: fdmprinter.def.json -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Pohjaristikon pintakerrokset" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Pohjaristikon pintakerroksen paksuus" - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Pohjaristikon pintakerrosten kerrospaksuus." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Pohjaristikon pinnan linjaleveys" - -#: fdmprinter.def.json -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 "Pohjaristikon pintakerrosten linjojen leveys. Näiden tulisi olla ohuita linjoja, jotta pohjaristikon yläosasta tulee sileä." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Pohjaristikon pinnan linjajako" - -#: fdmprinter.def.json -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 "Pohjaristikon pintakerrosten linjojen välinen etäisyys. Linjajaon tulisi olla sama kuin linjaleveys, jotta pinta on kiinteä." - -#: fdmprinter.def.json -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Pohjaristikon keskikerroksen paksuus" - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Pohjaristikon keskikerroksen kerrospaksuus." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Pohjaristikon keskikerroksen linjaleveys" - -#: fdmprinter.def.json -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 "Pohjaristikon keskikerroksen linjojen leveys. Pursottamalla toiseen kerrokseen enemmän saa linjat tarttumaan alustaan." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Pohjaristikon keskikerroksen linjajako" - -#: fdmprinter.def.json -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 "Pohjaristikon keskikerroksen linjojen välinen etäisyys. Keskikerroksen linjajaon tulisi olla melko leveä ja samalla riittävän tiheä, jotta se tukee pohjaristikon pintakerroksia." - -#: fdmprinter.def.json -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Pohjaristikon pohjan paksuus" - -#: fdmprinter.def.json -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 "Pohjaristikon pohjakerroksen kerrospaksuus. Tämän tulisi olla paksu kerros, joka tarttuu lujasti tulostimen alustaan." - -#: fdmprinter.def.json -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Pohjaristikon pohjan linjaleveys" - -#: fdmprinter.def.json -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 "Pohjaristikon pohjakerroksen linjojen leveys. Näiden tulisi olla paksuja linjoja auttamassa tarttuvuutta alustaan." - -#: fdmprinter.def.json -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "" - -#: fdmprinter.def.json -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 "Pohjaristikon pohjakerroksen linjojen välinen etäisyys. Leveä linjajako helpottaa pohjaristikon poistoa alustalta." - -#: fdmprinter.def.json -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Pohjaristikon tulostusnopeus" - -#: fdmprinter.def.json -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "Nopeus, jolla pohjaristikko tulostetaan." - -#: fdmprinter.def.json -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Pohjaristikon pinnan tulostusnopeus" - -#: fdmprinter.def.json -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 "Nopeus, jolla pohjaristikon pintakerrokset tulostetaan. Nämä tulisi tulostaa hieman hitaammin, jotta suutin voi hitaasti tasoittaa vierekkäisiä pintalinjoja." - -#: fdmprinter.def.json -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Pohjaristikon keskikerroksen tulostusnopeus" - -#: fdmprinter.def.json -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 "Nopeus, jolla pohjaristikon keskikerros tulostetaan. Tämä tulisi tulostaa melko hitaasti, sillä suuttimesta tulevan materiaalin määrä on varsin suuri." - -#: fdmprinter.def.json -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Pohjaristikon pohjan tulostusnopeus" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Pohjaristikon tulostuksen kiihtyvyys" - -#: fdmprinter.def.json -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "Kiihtyvyys, jolla pohjaristikko tulostetaan." - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Pohjaristikon pinnan tulostuksen kiihtyvyys" - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Kiihtyvyys, jolla pohjaristikon pintakerrokset tulostetaan." - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Pohjaristikon keskikerroksen tulostuksen kiihtyvyys" - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "Kiihtyvyys, jolla pohjaristikon keskikerros tulostetaan." - -#: fdmprinter.def.json -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Pohjaristikon pohjan tulostuksen kiihtyvyys" - -#: fdmprinter.def.json -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "Kiihtyvyys, jolla pohjaristikon pohjakerros tulostetaan." - -#: fdmprinter.def.json -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Pohjaristikon tulostuksen nykäisy" - -#: fdmprinter.def.json -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "Nykäisy, jolla pohjaristikko tulostetaan." - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Pohjaristikon pinnan tulostuksen nykäisy" - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Nykäisy, jolla pohjaristikon pintakerrokset tulostetaan." - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Pohjaristikon keskikerroksen tulostuksen nykäisy" - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "Nykäisy, jolla pohjaristikon keskikerros tulostetaan." - -#: fdmprinter.def.json -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Pohjaristikon pohjan tulostuksen nykäisy" - -#: fdmprinter.def.json -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Nykäisy, jolla pohjaristikon pohjakerros tulostetaan." - -#: fdmprinter.def.json -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Pohjaristikon tuulettimen nopeus" - -#: fdmprinter.def.json -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Pohjaristikon tuulettimen nopeus." - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Pohjaristikon pinnan tuulettimen nopeus" - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Tuulettimen nopeus pohjaristikon pintakerroksia varten." - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Pohjaristikon keskikerroksen tuulettimen nopeus" - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "Tuulettimen nopeus pohjaristikon keskikerrosta varten." - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Pohjaristikon pohjan tuulettimen nopeus" - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Tuulettimen nopeus pohjaristikon pohjakerrosta varten." - -#: fdmprinter.def.json -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Kaksoispursotus" - -#: fdmprinter.def.json -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Asetukset, joita käytetään monilla suulakkeilla tulostukseen." - -#: fdmprinter.def.json -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Ota esitäyttötorni käyttöön" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Esitäyttötornin koko" - -#: fdmprinter.def.json -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "Esitäyttötornin leveys." - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Esitäyttötornin minimiainemäärä" - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "Esitäyttötornin kunkin kerroksen minimitilavuus, jotta voidaan poistaa riittävästi materiaalia." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Esitäyttötornin X-sijainti" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "Esitäyttötornin sijainnin X-koordinaatti." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Esitäyttötornin Y-sijainti" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "Esitäyttötornin sijainnin Y-koordinaatti." - -#: fdmprinter.def.json -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Pyyhi esitäyttötornin ei-aktiivinen suutin" - -#: fdmprinter.def.json -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 "Kun esitäyttötorni on tulostettu yhdellä suuttimella, pyyhi toisesta suuttimesta tihkunut materiaali pois esitäyttötornissa." - -#: fdmprinter.def.json -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "" - -#: fdmprinter.def.json -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "" - -#: fdmprinter.def.json -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Ota tihkusuojus käyttöön" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Tihkusuojuksen kulma" - -#: fdmprinter.def.json -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 "Tihkusuojuksen osan maksimikulma. 0 astetta tarkoittaa pystysuuntaa ja 90 astetta vaakasuuntaa. Pienempi kulma vähentää tihkusuojusten epäonnistumisia mutta lisää materiaalia." - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Tihkusuojuksen etäisyys" - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "Tihkusuojuksen etäisyys tulosteesta X-/Y-suunnissa." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Suuttimen vaihdon takaisinvetoetäisyys" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Suuttimen vaihdon takaisinvetonopeus" - -#: fdmprinter.def.json -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 "Nopeus, jolla tulostuslanka vedetään sisään. Suurempi takaisinvetonopeus toimii paremmin, mutta erittäin suuri takaisinvetonopeus saattaa hiertää tulostuslankaa." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Suuttimen vaihdon takaisinvetonopeus" - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "Nopeus, jolla tulostuslanka vedetään sisään suuttimen vaihdon takaisinvedon yhteydessä." - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Suuttimen vaihdon esitäyttönopeus" - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "Nopeus, jolla tulostuslanka työnnetään takaisin suuttimen vaihdon takaisinvedon jälkeen." - -#: fdmprinter.def.json -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "" - -#: fdmprinter.def.json -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "" - -#: fdmprinter.def.json -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Verkkokorjaukset" - -#: fdmprinter.def.json -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Yhdistä limittyvät ainemäärät" - -#: fdmprinter.def.json -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 "Jätetään limittyvistä ainemääristä koostuva verkon sisäinen geometria huomiotta ja tulostetaan ainemäärät yhtenä. Tämä saattaa poistaa tahattomia sisäisiä onkaloita." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Poista kaikki reiät" - -#: fdmprinter.def.json -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 "Poistaa kaikki reiät kustakin kerroksesta ja pitää vain ulkopuolisen muodon. Tällä jätetään näkymätön sisäinen geometria huomiotta. Se kuitenkin jättää huomiotta myös kerrosten reiät, jotka voidaan nähdä ylä- tai alapuolelta." +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Paljasta sauma" #: fdmprinter.def.json msgctxt "meshfix_extensive_stitching label" @@ -5179,668 +1134,103 @@ msgid "Extensive stitching tries to stitch up open holes in the mesh by closing msgstr "Laaja silmukointi yrittää peittää avonaisia reikiä verkosta sulkemalla reiän toisiaan koskettavilla monikulmioilla. Tämä vaihtoehto voi kuluttaa paljon prosessointiaikaa." #: fdmprinter.def.json -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Pidä erilliset pinnat" - -#: fdmprinter.def.json -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." +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" msgstr "" #: fdmprinter.def.json -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Yhdistettyjen verkkojen limitys" +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Pintakalvojen ulkopuolisten lisäseinämien määrä" #: fdmprinter.def.json -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Toisiinsa kosketuksissa olevat verkot limittyvät hieman. Tämä sitoo ne paremmin yhteen." - -#: fdmprinter.def.json -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Poista verkon leikkauspiste" - -#: fdmprinter.def.json -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 "Poistaa alueet, joissa useat verkot ovat limittäin toistensa kanssa. Tätä voidaan käyttää, jos yhdistetyt kaksoismateriaalikappaleet ovat limittäin toistensa kanssa." - -#: fdmprinter.def.json -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Vuoroittainen verkon poisto" - -#: fdmprinter.def.json -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 "Määrittää, mitkä verkon leikkaustilavuudet kuuluvat jokaiseen kerrokseen, jotta limittäiset verkot yhdistetään. Jos tämä asetus poistetaan käytöstä, yksi verkoista saa kaiken tilavuuden limityksessä, ja verkko poistetaan muista verkoista." - -#: fdmprinter.def.json -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." msgstr "" #: fdmprinter.def.json -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." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Suulakkeen esitäytön X-sijainti" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Suulakkeen esitäytön Y-sijainti" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Suulakkeen esitäytön Z-sijainti" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" msgstr "" #: fdmprinter.def.json -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" msgstr "" #: fdmprinter.def.json -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." +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Pursotuksen jäähtymisnopeuden lisämääre" + +#: fdmprinter.def.json +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 "" #: fdmprinter.def.json -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Tuulettimen nopeus" + +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" msgstr "" #: fdmprinter.def.json -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." +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." msgstr "" -#: fdmprinter.def.json -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Erikoistilat" - -#: fdmprinter.def.json -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "" - -#: fdmprinter.def.json -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Tulostusjärjestys" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "Kaikki kerralla" - -#: fdmprinter.def.json -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Yksi kerrallaan" - -#: fdmprinter.def.json -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Täyttöverkko" - -#: fdmprinter.def.json -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 "Tällä verkolla muokataan sen kanssa limittyvien toisten verkkojen täyttöä. Asetuksella korvataan toisten verkkojen täyttöalueet tämän verkon alueilla. Tälle verkolle on suositeltavaa tulostaa vain yksi seinämä ja ei ylä-/alapintakalvoa." - -#: fdmprinter.def.json -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Leikkaava verkko" - -#: fdmprinter.def.json -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 "Rajoita tämän verkon laajuus muiden verkkojen alueelle. Tällä voit määrittää tietyt yhden verkon alueet tulostumaan eri asetuksilla ja täysin eri suulakkeella." - -#: fdmprinter.def.json -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Muotti" - -#: fdmprinter.def.json -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 "Tulosta malleja muotteina, jotka voidaan valaa niin, että saadaan alustalla olevia malleja muistuttava malli." - -#: fdmprinter.def.json -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Muotin vähimmäisleveys" - -#: fdmprinter.def.json -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "" - -#: fdmprinter.def.json -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Muotin katon korkeus" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Muotin kulma" - -#: fdmprinter.def.json -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 "Muottia varten luotujen ulkoseinämien ulokkeiden kulma. 0° tekee muotin ulkokuoresta pystysuoran ja 90° saa muotin ulkopuolen seuraamaan mallin muotoja." - -#: fdmprinter.def.json -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Tukiverkko" - -#: fdmprinter.def.json -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Käytä tätä verkkoa tukialueiden valintaan. Sen avulla voidaan luoda tukirakenne." - -#: fdmprinter.def.json -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Verkko ulokkeiden estoon" - -#: fdmprinter.def.json -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 "Käytä tätä verkkoa määrittääksesi, missä mitään mallin osaa ei tule tunnistaa ulokkeeksi. Tätä toimintoa voidaan käyttää ei-toivotun tukirakenteen poistamiseksi." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Pintatila" - -#: fdmprinter.def.json -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 "Käsittelee mallia vain pintana, ainemääränä tai löysillä pinnoilla varustettuina ainemäärinä. Normaali tulostustila tulostaa vain suljetut ainemäärät. Pinta-tila tulostaa yhden verkkopintaa seuraavan seinämän ilman täyttöä ja ilman ylä-/alapintakalvoa. Molemmat-tila tulostaa suljetut ainemäärät normaalisti ja jäljellä olevat monikulmiot pintoina." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normaali" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Pinta" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Molemmat" - -#: fdmprinter.def.json -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Kierukoi ulompi ääriviiva" - -#: fdmprinter.def.json -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 "Kierukointi pehmentää ulkoreunan Z-liikettä. Se muodostaa tasaisen Z-lisän koko tulosteelle. Tämä toiminto muuttaa umpinaisen mallin yksiseinäiseksi tulosteeksi, jossa on umpinainen pohja. Tämä toiminto kannattaa ottaa käyttöön vain, jos jokaisessa kerroksessa on vain yksi osa." - -#: fdmprinter.def.json -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Kierukoitujen ääriviivojen tasoittaminen" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Suhteellinen pursotus" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "experimental label" -msgid "Experimental" -msgstr "Kokeellinen" - #: fdmprinter.def.json msgctxt "experimental description" msgid "Features that haven't completely been fleshed out yet." msgstr "" #: fdmprinter.def.json -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" msgstr "" #: fdmprinter.def.json -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." +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Tulostuslämpötila lopussa" + +#: fdmprinter.def.json +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" msgstr "" #: fdmprinter.def.json -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "" +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Tuen ensimmäisen kerroksen suulake" #: fdmprinter.def.json -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "" +msgctxt "material_flow label" +msgid "Flow" +msgstr "Virtaus" #: fdmprinter.def.json -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "" - -#: fdmprinter.def.json -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Yläpinnan pintakalvon linjan leveys" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Yläpinnan pintakalvokuvio" - -#: fdmprinter.def.json -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "Ylimpien kerrosten kuvio." - -#: fdmprinter.def.json -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Linjat" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Samankeskinen" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Siksak" - -#: fdmprinter.def.json -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Yläpinnan pintakalvon linjojen suunnat" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature label" -msgid "Auto Temperature" -msgstr "Automaattinen lämpötila" - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature description" -msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -msgstr "Muuta kunkin kerroksen lämpötilaa automaattisesti kyseisen kerroksen keskimääräisen virtausnopeuden mukaan." - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Virtauksen lämpötilakaavio" - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Tiedot, jotka yhdistävät materiaalivirran (mm3 sekunnissa) lämpötilaan (celsiusastetta)." - -#: fdmprinter.def.json -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Riko tuki lohkoihin" - -#: fdmprinter.def.json -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 "Ohita jotkin tukilinjojen yhdistämiset, jotta tukirakenne on helpompi rikkoa. Tämä asetus soveltuu siksak-tukitäyttökuvioon." - -#: fdmprinter.def.json -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Tukilohkon koko" - -#: fdmprinter.def.json -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 "Jätä tukilinjojen välinen yhdistäminen pois joka N. millimetri, jotta tukirakenne on helpompi rikkoa." - -#: fdmprinter.def.json -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Tukilohkolinjaluku" - -#: fdmprinter.def.json -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Ohita joka N. yhdistämislinja, jotta tukirakenne on helpompi rikkoa." - -#: fdmprinter.def.json -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Ota vetosuojus käyttöön" - -#: fdmprinter.def.json -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 "Tämä luo mallin ympärille seinämän, joka pidättää (kuumaa) ilmaa ja suojaa ulkoiselta ilmavirtaukselta. Erityisen käyttökelpoinen materiaaleilla, jotka vääntyvät helposti." - -#: fdmprinter.def.json -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Vetosuojuksen X/Y-etäisyys" - -#: fdmprinter.def.json -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Vetosuojuksen etäisyys tulosteesta X-/Y-suunnissa." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Vetosuojuksen rajoitus" - -#: fdmprinter.def.json -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 "Aseta vetosuojuksen korkeus. Valitse, tulostetaanko vetosuojus koko mallin korkuisena vai rajoitetun korkuisena." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Täysi" - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Rajoitettu" - -#: fdmprinter.def.json -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Vetosuojuksen korkeus" - -#: fdmprinter.def.json -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Vetosuojuksen korkeusrajoitus. Tämän korkeuden ylittävälle osalle ei tulosteta vetosuojusta." - -#: fdmprinter.def.json -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Tee ulokkeesta tulostettava" - -#: fdmprinter.def.json -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 "Muuttaa tulostettavan mallin geometriaa niin, että tarvitaan mahdollisimman vähän tukea. Jyrkistä ulokkeista tulee matalia ulokkeita. Ulokkeiset alueet putoavat alas, ja niistä tulee pystysuorempia." - -#: fdmprinter.def.json -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Mallin maksimikulma" - -#: fdmprinter.def.json -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 "Ulokkeiden maksimikulma, kun niistä on tehty tulostettavia. 0 asteessa kaikki ulokkeet korvataan mallikappaleella, joka on yhdistetty alustaan. 90 asteessa mallia ei muuteta millään tavalla." - -#: fdmprinter.def.json -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Ota vapaaliuku käyttöön" - -#: fdmprinter.def.json -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 "Vapaaliu'ulla siirtoreitti korvaa pursotusreitin viimeisen osan. Tihkuvalla aineella tulostetaan pursotusreitin viimeinen osuus rihmoittumisen vähentämiseksi." - -#: fdmprinter.def.json -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Vapaaliu'un ainemäärä" - -#: fdmprinter.def.json -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Aineen määrä, joka muutoin on tihkunut. Tämän arvon tulisi yleensä olla lähellä suuttimen läpimittaa korotettuna kuutioon." - -#: fdmprinter.def.json -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Vähimmäisainemäärä ennen vapaaliukua" - -#: fdmprinter.def.json -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 "Pienin ainemäärä, joka pursotusreitillä tulisi olla ennen kuin vapaaliuku sallitaan. Lyhyemmillä pursotusreiteillä Bowden-putkeen on muodostunut vähemmän painetta, joten vapaaliu'un ainemäärää skaalataan lineaarisesti. Tämän arvon on aina oltava suurempi kuin vapaaliu'un ainemäärä." - -#: fdmprinter.def.json -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Vapaaliukunopeus" - -#: fdmprinter.def.json -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 "Nopeus, jolla siirrytään vapaaliu'un aikana, suhteessa pursotusreitin nopeuteen. Arvoksi suositellaan hieman alle 100 %, sillä vapaaliukusiirron aikana paine Bowden-putkessa laskee." - -#: fdmprinter.def.json -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Risti 3D:n taskujen koko" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Ota kartiomainen tuki käyttöön" - -#: fdmprinter.def.json -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Kartiomaisen tuen kulma" - -#: fdmprinter.def.json -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 "Kartiomaisen tuen kallistuskulma. 0 astetta on pystysuora ja 90 astetta on vaakasuora. Pienemmillä kulmilla tuki on tukevampi, mutta siihen käytetään enemmän materiaalia. Negatiivisilla kulmilla tuen perusta on leveämpi kuin yläosa." - -#: fdmprinter.def.json -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Kartioimaisen tuen minimileveys" - -#: fdmprinter.def.json -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 "Minimileveys, johon kartiomaisen tukialueen perusta pienennetään. Pienet leveydet voivat johtaa epävakaisiin tukirakenteisiin." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Karhea pintakalvo" - -#: fdmprinter.def.json -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 "Satunnainen värinä tulostettaessa ulkoseinämää, jotta pinta näyttää viimeistelemättömältä ja karhealta." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Karhean pintakalvon paksuus" - -#: fdmprinter.def.json -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 "Leveys, jolla värinä tapahtuu. Tämä suositellaan pidettäväksi ulkoseinämän leveyttä pienempänä, koska sisäseinämiä ei muuteta." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Karhean pintakalvon tiheys" - -#: fdmprinter.def.json -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 "Kerroksen kuhunkin monikulmioon tehtävien pisteiden keskimääräinen tiheys. Huomaa, että monikulmion alkuperäiset pisteet poistetaan käytöstä, joten pieni tiheys alentaa resoluutiota." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Karhean pintakalvon piste-etäisyys" - -#: fdmprinter.def.json -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 "Keskimääräinen etäisyys kunkin linjasegmentin satunnaisten pisteiden välillä. Huomaa, että alkuperäiset monikulmion pisteet poistetaan käytöstä, joten korkea sileysarvo alentaa resoluutiota. Tämän arvon täytyy olla suurempi kuin puolet karhean pintakalvon paksuudesta." - -#: fdmprinter.def.json -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "" - -#: fdmprinter.def.json -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" msgstr "" #: fdmprinter.def.json @@ -5848,308 +1238,1678 @@ msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "" +#: fdmprinter.def.json +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Virtauksen lämpötilakaavio" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "" + +#: fdmprinter.def.json +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "" + +#: fdmprinter.def.json +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "" + +#: fdmprinter.def.json +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Virtauksen kompensointi: pursotetun materiaalin määrä kerrotaan tällä arvolla." + +#: fdmprinter.def.json +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Täysi" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Karhea pintakalvo" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Karhean pintakalvon tiheys" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Karhean pintakalvon piste-etäisyys" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Karhean pintakalvon paksuus" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "" + +#: fdmprinter.def.json +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "" + +#: fdmprinter.def.json +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Muodosta tuki" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Muodostaa tiheän liittymän mallin ja tuen väliin. Tällä luodaan pintakalvo tulostettavan mallin tuen yläosaan ja alaosaan, jossa se lepää mallin päällä." + +#: fdmprinter.def.json +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 "Muodosta tiheä materiaalilaatta tuen alaosan ja mallin välille. Se luo pintakalvon mallin ja tuen välille." + +#: fdmprinter.def.json +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 "Muodosta tiheä materiaalilaatta tuen yläosan ja mallin välille. Se luo pintakalvon mallin ja tuen välille." + +#: fdmprinter.def.json +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 "Muodosta rakenteita, jotka tukevat mallin ulokkeita sisältäviä osia. Ilman tukirakenteita kyseiset osat luhistuvat tulostuksen aikana." + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Asteittaisen täyttöarvon korkeus" + +#: fdmprinter.def.json +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Asteittainen täyttöarvo" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Asteittaisen tuen täyttöarvon korkeus" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Asteittainen tuen täyttöarvo" + +#: fdmprinter.def.json +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Ristikko" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Ristikko" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Ristikko" + +#: fdmprinter.def.json +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Ristikko" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Ristikko" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +#: fdmprinter.def.json +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Sisältää lämmitettävän alustan" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "" + +#: fdmprinter.def.json +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Vetosuojuksen korkeusrajoitus. Tämän korkeuden ylittävälle osalle ei tulosteta vetosuojusta." + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Piilota sauma" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Piilota tai paljasta sauma" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Vaakalaajennus" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance description" +msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "" + #: fdmprinter.def.json 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 "" #: fdmprinter.def.json -msgctxt "wireframe_enabled label" -msgid "Wire Printing" -msgstr "Rautalankatulostus" - -#: fdmprinter.def.json -msgctxt "wireframe_enabled description" -msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -msgstr "Tulostetaan vain ulkopinta harvalla verkkorakenteella eli tulostetaan \"suoraan ilmaan\". Tämä toteutetaan tulostamalla mallin ääriviivat vaakasuoraan tietyin Z-välein, jotka yhdistetään ylöspäin menevillä linjoilla ja alaspäin menevillä diagonaalilinjoilla." - -#: fdmprinter.def.json -msgctxt "wireframe_height label" -msgid "WP Connection Height" -msgstr "Rautalankatulostuksen liitoskorkeus" - -#: fdmprinter.def.json -msgctxt "wireframe_height description" -msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -msgstr "Kahden vaakaosan välisen nousulinjan ja laskevan diagonaalilinjan korkeus. Tämä määrää verkkorakenteen kokonaistiheyden. Koskee vain rautalankamallin tulostusta." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset label" -msgid "WP Roof Inset Distance" -msgstr "Rautalankatulostuksen katon liitosetäisyys" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset description" -msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -msgstr "Etäisyys, jolla tehdään liitos katon ääriviivalta sisäänpäin. Koskee vain rautalankamallin tulostusta." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed label" -msgid "WP Speed" -msgstr "Rautalankatulostuksen nopeus" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed description" -msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -msgstr "Nopeus, jolla suutin liikkuu materiaalia pursottaessaan. Koskee vain rautalankamallin tulostusta." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom label" -msgid "WP Bottom Printing Speed" -msgstr "Rautalankapohjan tulostusnopeus" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom description" -msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -msgstr "Nopeus, jolla tulostetaan ensimmäinen kerros, joka on ainoa alustaa koskettava kerros. Koskee vain rautalankamallin tulostusta." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up label" -msgid "WP Upward Printing Speed" -msgstr "Rautalangan tulostusnopeus ylöspäin" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up description" -msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -msgstr "Nopeus, jolla tulostetaan linja ylöspäin \"suoraan ilmaan\". Koskee vain rautalankamallin tulostusta." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down label" -msgid "WP Downward Printing Speed" -msgstr "Rautalangan tulostusnopeus alaspäin" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down description" -msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -msgstr "Nopeus, jolla tulostetaan linja diagonaalisesti alaspäin. Koskee vain rautalankamallin tulostusta." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat label" -msgid "WP Horizontal Printing Speed" -msgstr "Rautalangan tulostusnopeus vaakasuoraan" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat description" -msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -msgstr "Nopeus, jolla tulostetaan mallin vaakasuorat ääriviivat. Koskee vain rautalankamallin tulostusta." - -#: fdmprinter.def.json -msgctxt "wireframe_flow label" -msgid "WP Flow" -msgstr "Rautalankatulostuksen virtaus" - -#: fdmprinter.def.json -msgctxt "wireframe_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -msgstr "Virtauksen kompensointi: Pursotetun materiaalin määrä kerrotaan tällä arvolla. Koskee vain rautalankamallin tulostusta." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection label" -msgid "WP Connection Flow" -msgstr "Rautalankatulostuksen liitosvirtaus" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection description" -msgid "Flow compensation when going up or down. Only applies to Wire Printing." -msgstr "Virtauksen kompensointi ylös tai alas mentäessä. Koskee vain rautalankamallin tulostusta." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat label" -msgid "WP Flat Flow" -msgstr "Rautalangan lattea virtaus" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat description" -msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -msgstr "Virtauksen kompensointi tulostettaessa latteita linjoja. Koskee vain rautalankamallin tulostusta." - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay label" -msgid "WP Top Delay" -msgstr "Rautalankatulostuksen viive ylhäällä" - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay description" -msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -msgstr "Viive nousuliikkeen jälkeen, jotta linja voi kovettua. Koskee vain rautalankamallin tulostusta." - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay label" -msgid "WP Bottom Delay" -msgstr "Rautalankatulostuksen viive alhaalla" - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay description" -msgid "Delay time after a downward move. Only applies to Wire Printing." -msgstr "Viive laskuliikkeen jälkeen. Koskee vain rautalankamallin tulostusta." - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay label" -msgid "WP Flat Delay" -msgstr "Rautalankatulostuksen lattea viive" - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay description" -msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -msgstr "Viive kahden vaakasuoran segmentin välillä. Tämän viiveen käyttöönotto voi parantaa tarttuvuutta edellisiin kerroksiin liitoskohdissa, mutta liian suuret viiveet aiheuttavat riippumista. Koskee vain rautalankamallin tulostusta." - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed label" -msgid "WP Ease Upward" -msgstr "Rautalankatulostuksen hidas liike ylöspäin" - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed description" -msgid "" -"Distance of an upward move which is extruded with half speed.\n" -"This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "" -"Puolella nopeudella pursotetun nousuliikkeen etäisyys.\n" -"Se voi parantaa tarttuvuutta edellisiin kerroksiin kuumentamatta materiaalia liikaa kyseisissä kerroksissa. Koskee vain rautalankamallin tulostusta." - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump label" -msgid "WP Knot Size" -msgstr "Rautalankatulostuksen solmukoko" - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump description" -msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -msgstr "Tekee pienen solmun nousulinjan yläpäähän, jotta seuraava vaakasuora kerros pystyy paremmin liittymään siihen. Koskee vain rautalankamallin tulostusta." - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down label" -msgid "WP Fall Down" -msgstr "Rautalankatulostuksen pudotus" - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down description" -msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "Etäisyys, jonka materiaali putoaa ylöspäin menevän pursotuksen jälkeen. Tämä etäisyys kompensoidaan. Koskee vain rautalankamallin tulostusta." - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along label" -msgid "WP Drag Along" -msgstr "Rautalankatulostuksen laahaus" - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along description" -msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "Etäisyys, jonka ylöspäin pursotettu materiaali laahautuu diagonaalisen laskevan pursotuksen mukana. Tämä etäisyys kompensoidaan. Koskee vain rautalankamallin tulostusta." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy label" -msgid "WP Strategy" -msgstr "Rautalankatulostuksen strategia" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy description" -msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -msgstr "Strategia, jolla varmistetaan, että kaksi peräkkäistä kerrosta liittyy toisiinsa kussakin liitoskohdassa. Takaisinveto antaa nousulinjojen kovettua oikeaan asentoon, mutta voi aiheuttaa tulostuslangan hiertymistä. Solmu voidaan tehdä nousulinjan päähän, jolloin siihen liittyminen helpottuu ja linja jäähtyy, mutta se voi vaatia hitaampia tulostusnopeuksia. Toisena strategiana on kompensoida nousulinjan yläpään riippumista, mutta linjat eivät aina putoa ennustettavalla tavalla." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option compensate" -msgid "Compensate" -msgstr "Kompensoi" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option knot" -msgid "Knot" -msgstr "Solmu" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option retract" -msgid "Retract" -msgstr "Takaisinveto" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down label" -msgid "WP Straighten Downward Lines" -msgstr "Rautalankatulostuksen laskulinjojen suoristus" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down description" -msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -msgstr "Prosenttiluku diagonaalisesti laskevasta linjasta, jota peittää vaakalinjan pätkä. Tämä voi estää nousulinjojen ylimmän kohdan riippumista. Koskee vain rautalankamallin tulostusta." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down label" -msgid "WP Roof Fall Down" -msgstr "Rautalankatulostuksen katon pudotus" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down description" -msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -msgstr "Etäisyys, jonka \"suoraan ilmaan\" tulostetut vaakasuorat kattolinjat roikkuvat tulostettaessa. Tämä etäisyys kompensoidaan. Koskee vain rautalankamallin tulostusta." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along label" -msgid "WP Roof Drag Along" -msgstr "Rautalankatulostuksen katon laahaus" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along description" -msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -msgstr "Sisäpuolisen linjan päätyosan etäisyys ko. linjan laahautuessa mukana, kun mennään takaisin katon ulommalle ulkolinjalle. Tämä etäisyys kompensoidaan. Koskee vain rautalankamallin tulostusta." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay label" -msgid "WP Roof Outer Delay" -msgstr "Rautalankatulostuksen katon ulompi viive" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay description" -msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -msgstr "Katoksi tulevan aukon ulkoreunoihin käytetty aika. Pitemmät ajat varmistavat paremman liitoksen. Koskee vain rautalankamallin tulostusta." - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance label" -msgid "WP Nozzle Clearance" -msgstr "Rautalankatulostuksen suutinväli" - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance description" -msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -msgstr "Suuttimen ja vaakasuoraan laskevien linjojen välinen etäisyys. Suurempi väli aiheuttaa vähemmän jyrkän kulman diagonaalisesti laskeviin linjoihin, mikä puolestaan johtaa harvempiin yläliitoksiin seuraavan kerroksen kanssa. Koskee vain rautalankamallin tulostusta." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." msgstr "" #: fdmprinter.def.json -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." msgstr "" #: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." msgstr "" #: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." +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 "" #: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." msgstr "" #: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." msgstr "" #: fdmprinter.def.json -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" +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 "" #: fdmprinter.def.json -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." +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Jos pohjaristikko on otettu käyttöön, tämä on ylimääräinen ristikkoalue malli ympärillä, jolle myös annetaan pohjaristikko. Tämän marginaalin kasvattaminen vahvistaa pohjaristikkoa, jolloin käytetään enemmän materiaalia ja tulosteelle jää vähemmän tilaa." + +#: fdmprinter.def.json +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 "Jätetään limittyvistä ainemääristä koostuva verkon sisäinen geometria huomiotta ja tulostetaan ainemäärät yhtenä. Tämä saattaa poistaa tahattomia sisäisiä onkaloita." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Sisällytä alustan lämpötila" + +#: fdmprinter.def.json +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Sisällytä materiaalilämpötilat" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill description" +msgid "Infill" +msgstr "Täyttö" + +#: fdmprinter.def.json +msgctxt "infill label" +msgid "Infill" +msgstr "Täyttö" + +#: fdmprinter.def.json +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Täytön kiihtyvyys" + +#: fdmprinter.def.json +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Täyttö ennen seinämiä" + +#: fdmprinter.def.json +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Täytön tiheys" + +#: fdmprinter.def.json +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Täytön suulake" + +#: fdmprinter.def.json +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Täytön nykäisy" + +#: fdmprinter.def.json +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Täyttökerroksen paksuus" + +#: fdmprinter.def.json +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Täyttölinjojen suunnat" + +#: fdmprinter.def.json +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Täyttölinjan etäisyys" + +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Täyttölinjan leveys" + +#: fdmprinter.def.json +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Täyttöverkko" + +#: fdmprinter.def.json +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Täytön limitys" + +#: fdmprinter.def.json +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Täytön limityksen prosentti" + +#: fdmprinter.def.json +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Täyttökuvio" + +#: fdmprinter.def.json +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Täyttönopeus" + +#: fdmprinter.def.json +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Täyttöliikkeen etäisyys" + +#: fdmprinter.def.json +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "" + +#: fdmprinter.def.json +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Tuulettimen nopeus alussa" + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Alkukerroksen kiihtyvyys" + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Alkukerroksen korkeus" + +#: fdmprinter.def.json +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Alkukerroksen vaakalaajennus" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Alkukerroksen nykäisy" + +#: fdmprinter.def.json +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Alkukerroksen linjaleveys" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Alkukerroksen tulostuksen kiihtyvyys" + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Alkukerroksen tulostuksen nykäisy" + +#: fdmprinter.def.json +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Alkukerroksen tulostusnopeus" + +#: fdmprinter.def.json +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Alkukerroksen nopeus" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Alkukerroksen siirtoliikkeen kiihtyvyys" + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Alkukerroksen siirtoliikkeen nykäisy" + +#: fdmprinter.def.json +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Alkukerroksen siirtoliikkeen nopeus" + +#: fdmprinter.def.json +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Z Päällekkäisyys Alkukerroksen" + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Tulostuslämpötila alussa" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Sisäseinämän kiihtyvyys" + +#: fdmprinter.def.json +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "" + +#: fdmprinter.def.json +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Sisäseinämän nykäisy" + +#: fdmprinter.def.json +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Sisäseinämänopeus" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Sisäseinämien linjaleveys" + +#: fdmprinter.def.json +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 "Ulkoseinämän reitille asetettu liitos. Jos ulkoseinämä on pienempi kuin suutin ja se tulostetaan sisäseinämien jälkeen, tällä siirtymällä saadaan suuttimen reikä limittymään sisäseinämiin mallin ulkopuolen sijaan." + +#: fdmprinter.def.json +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "" + +#: fdmprinter.def.json +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "" + +#: fdmprinter.def.json +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "" + +#: fdmprinter.def.json +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Silitä vain korkein kerros" + +#: fdmprinter.def.json +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Silityksen kiihtyvyys" + +#: fdmprinter.def.json +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Silitysvirtaus" + +#: fdmprinter.def.json +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Silitysliitos" + +#: fdmprinter.def.json +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Silityksen nykäisy" + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Silityksen linjajako" + +#: fdmprinter.def.json +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Silityskuvio" + +#: fdmprinter.def.json +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Silitysnopeus" + +#: fdmprinter.def.json +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "On keskikohdassa" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "" + +#: fdmprinter.def.json +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Pidä erilliset pinnat" + +#: fdmprinter.def.json +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Kerroksen korkeus" + +#: fdmprinter.def.json +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "Kerroksen X-aloitus" + +#: fdmprinter.def.json +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Kerroksen Y-aloitus" + +#: fdmprinter.def.json +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 "Pohjaristikon pohjakerroksen kerrospaksuus. Tämän tulisi olla paksu kerros, joka tarttuu lujasti tulostimen alustaan." + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Pohjaristikon keskikerroksen kerrospaksuus." + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Pohjaristikon pintakerrosten kerrospaksuus." + +#: fdmprinter.def.json +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 "Jätä tukilinjojen välinen yhdistäminen pois joka N. millimetri, jotta tukirakenne on helpompi rikkoa." + +#: fdmprinter.def.json +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "" + +#: fdmprinter.def.json +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Tulostuspään nosto" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "" + +#: fdmprinter.def.json +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 "Rajoita tämän verkon laajuus muiden verkkojen alueelle. Tällä voit määrittää tietyt yhden verkon alueet tulostumaan eri asetuksilla ja täysin eri suulakkeella." + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Rajoitettu" + +#: fdmprinter.def.json +msgctxt "line_width label" +msgid "Line Width" +msgstr "Linjan leveys" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Linjat" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Linjat" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Linjat" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Linjat" + +#: fdmprinter.def.json +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Linjat" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Linjat" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Linjat" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Linjat" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +#: fdmprinter.def.json +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Laite" + +#: fdmprinter.def.json +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Laitteen syvyys" + +#: fdmprinter.def.json +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Laitteen korkeus" + +#: fdmprinter.def.json +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Laitteen tyyppi" + +#: fdmprinter.def.json +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Laitteen leveys" + +#: fdmprinter.def.json +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Laitekohtaiset asetukset" + +#: fdmprinter.def.json +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Tee ulokkeesta tulostettava" + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Toisiinsa kosketuksissa olevat verkot limittyvät hieman. Tämä sitoo ne paremmin yhteen." + +#: fdmprinter.def.json +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "" + +#: fdmprinter.def.json +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 "Muodosta tukea kaikkialle tukiverkon alla, niin ettei tukiverkossa ole ulokkeita." + +#: fdmprinter.def.json +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 "Tekee suulakkeen esitäyttösijainnista absoluuttisen eikä suhteellisen viimeksi tunnettuun pään sijaintiin nähden." + +#: fdmprinter.def.json +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 "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." + +#: fdmprinter.def.json +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (volymetrinen)" + +#: fdmprinter.def.json +msgctxt "material description" +msgid "Material" +msgstr "Materiaali" + +#: fdmprinter.def.json +msgctxt "material label" +msgid "Material" +msgstr "Materiaali" + +#: fdmprinter.def.json +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "Materiaalin GUID" + +#: fdmprinter.def.json +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "" + +#: fdmprinter.def.json +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Maksimikiihtyvyys X" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Maksimikiihtyvyys Y" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Maksimikiihtyvyys Z" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Tuulettimen maksiminopeus" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Tulostuslangan maksimikiihtyvyys" + +#: fdmprinter.def.json +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Mallin maksimikulma" + +#: fdmprinter.def.json +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "" + +#: fdmprinter.def.json +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Takaisinvedon maksimiluku" + +#: fdmprinter.def.json +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Pintakalvon maksimikulma laajennuksessa" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Maksiminopeus X" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Maksiminopeus Y" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Maksiminopeus Z" + +#: fdmprinter.def.json +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "X-suunnan moottorin maksimikiihtyvyys" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Y-suunnan moottorin maksimikiihtyvyys." + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Z-suunnan moottorin maksimikiihtyvyys." + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Tulostuslangan moottorin maksimikiihtyvyys." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Yhdistettyjen verkkojen limitys" + +#: fdmprinter.def.json +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Verkkokorjaukset" + +#: fdmprinter.def.json +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "" + +#: fdmprinter.def.json +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "" + +#: fdmprinter.def.json +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "" + +#: fdmprinter.def.json +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "Verkon pyöritysmatriisi" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Muotin vähimmäisleveys" + +#: fdmprinter.def.json +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Valmiuslämpötilan minimiaika" + +#: fdmprinter.def.json +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "" + +#: fdmprinter.def.json +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "" + +#: fdmprinter.def.json +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Pursotuksen minimietäisyyden ikkuna" + +#: fdmprinter.def.json +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Minimisyöttönopeus" + +#: fdmprinter.def.json +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Minimitäyttöalue" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Kerroksen minimiaika" + +#: fdmprinter.def.json +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "" + +#: fdmprinter.def.json +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Pintakalvon minimileveys laajennuksessa" + +#: fdmprinter.def.json +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Miniminopeus" + +#: fdmprinter.def.json +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "" + +#: fdmprinter.def.json +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "" + +#: fdmprinter.def.json +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "" + +#: fdmprinter.def.json +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Tuen X-/Y-minimietäisyys" + +#: fdmprinter.def.json +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "" + +#: fdmprinter.def.json +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Vähimmäisainemäärä ennen vapaaliukua" + +#: fdmprinter.def.json +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Minimileveys, johon kartiomaisen tukialueen perusta pienennetään. Pienet leveydet voivat johtaa epävakaisiin tukirakenteisiin." + +#: fdmprinter.def.json +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Muotti" + +#: fdmprinter.def.json +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Muotin kulma" + +#: fdmprinter.def.json +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Muotin katon korkeus" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "" + +#: fdmprinter.def.json +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "" + +#: fdmprinter.def.json +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Ei mikään" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Ei mitään" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normaali" + +#: fdmprinter.def.json +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "" + +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Suuttimen läpimitta" + +#: fdmprinter.def.json +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Suuttimen kielletyt alueet" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Suuttimen tunnus" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "" + +#: fdmprinter.def.json +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "" + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Suuttimen vaihdon esitäyttönopeus" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Suuttimen vaihdon takaisinvetonopeus" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Suuttimen vaihdon takaisinvetoetäisyys" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Suuttimen vaihdon takaisinvetonopeus" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Suulakkeiden määrä" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "" + +#: fdmprinter.def.json +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Hitaampien kerrosten määrä" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Suulakeryhmien määrä. Suulakeryhmä on syöttölaitteen, Bowden-putken ja suuttimen yhdistelmä." + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "" + +#: fdmprinter.def.json +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 "Määrä kertoja, joilla täytön tiheyttä vähennetään puolella kauemmaksi yläpintojen alle siirryttäessä. Yläpintoja lähempänä olevista alueista tulee tiheämpiä enintään täytön tiheyden arvoon asti." + +#: fdmprinter.def.json +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 "Määrä kertoja, joilla tuen täytön tiheyttä vähennetään puolella kauemmaksi yläpintojen alle siirryttäessä. Yläpintoja lähempänä olevista alueista tulee tiheämpiä enintään tuen täytön tiheyden arvoon asti." + +#: fdmprinter.def.json +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Oktetti" + +#: fdmprinter.def.json +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Pois" + +#: fdmprinter.def.json +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Siirtymää sovelletaan kohteeseen X-suunnassa." + +#: fdmprinter.def.json +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Siirtymää sovelletaan kohteeseen Y-suunnassa." + +#: fdmprinter.def.json +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 "Kappaleessa käytetty siirtymä z-suunnassa. Tällä toiminnolla voit suorittaa aiemmin ”kappaleen upotukseksi” kutsutun toiminnon." + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "" + +#: fdmprinter.def.json +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Yksi kerrallaan" + +#: fdmprinter.def.json +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ä”." + +#: fdmprinter.def.json +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 "Suorita silitys vain verkon viimeisessä kerroksessa. Tämä säästää aikaa, jos alemmat kerrokset eivät edellytä sileää pintaviimeistelyä." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Tihkusuojuksen kulma" + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Tihkusuojuksen etäisyys" + +#: fdmprinter.def.json +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Optimoi seinämien tulostusjärjestys" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Ulkoseinämän kiihtyvyys" + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Ulkoseinämän suulake" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Ulkoseinämän liitos" + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Ulkoseinämän nykäisy" + +#: fdmprinter.def.json +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Ulkoseinämän linjaleveys" + +#: fdmprinter.def.json +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Ulkoseinämänopeus" + +#: fdmprinter.def.json +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Ulkoseinämän täyttöliikkeen etäisyys" + +#: fdmprinter.def.json +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" msgstr "" #: fdmprinter.def.json @@ -6157,11 +2917,6 @@ msgctxt "wall_overhang_angle label" msgid "Overhanging Wall Angle" msgstr "" -#: fdmprinter.def.json -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 "" - #: fdmprinter.def.json msgctxt "wall_overhang_speed_factor label" msgid "Overhanging Wall Speed" @@ -6173,108 +2928,8 @@ msgid "Overhanging walls will be printed at this percentage of their normal prin msgstr "" #: fdmprinter.def.json -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "" - -#: fdmprinter.def.json -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "" - -#: fdmprinter.def.json -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "" - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "" - -#: fdmprinter.def.json -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "" - -#: fdmprinter.def.json -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "" - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "" - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "" - -#: fdmprinter.def.json -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" +msgctxt "wipe_pause description" +msgid "Pause after the unretract." msgstr "" #: fdmprinter.def.json @@ -6282,89 +2937,14 @@ msgctxt "bridge_fan_speed description" msgid "Percentage fan speed to use when printing bridge walls and skin." msgstr "" -#: fdmprinter.def.json -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "" - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "" - #: fdmprinter.def.json msgctxt "bridge_fan_speed_2 description" msgid "Percentage fan speed to use when printing the second bridge skin layer." msgstr "" #: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "" - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" +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 "" #: fdmprinter.def.json @@ -6373,229 +2953,554 @@ msgid "Percentage fan speed to use when printing the third bridge skin layer." msgstr "" #: fdmprinter.def.json -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" +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 "" #: fdmprinter.def.json -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." +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 "" #: fdmprinter.def.json -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Esitäyttötornin kiihtyvyys" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Brim" msgstr "" #: fdmprinter.def.json -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." +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Esitäyttötornin virtaus" + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Esitäyttötornin nykäisy" + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Esitäyttötornin linjan leveys" + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Esitäyttötornin minimiainemäärä" + +#: fdmprinter.def.json +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Esitäyttötornin koko" + +#: fdmprinter.def.json +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Esitäyttötornin nopeus" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Esitäyttötornin X-sijainti" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Esitäyttötornin Y-sijainti" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." msgstr "" #: fdmprinter.def.json -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Tulostuksen kiihtyvyys" + +#: fdmprinter.def.json +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Tulostuksen nykäisy" + +#: fdmprinter.def.json +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Tulostusjärjestys" + +#: fdmprinter.def.json +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Tulostusnopeus" + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Tulosta ohuet seinämät" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" #: fdmprinter.def.json -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." +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 "" #: fdmprinter.def.json -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" +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 "Tulosta malleja muotteina, jotka voidaan valaa niin, että saadaan alustalla olevia malleja muistuttava malli." + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Tulostaa mallin kohtia, jotka ovat vaakasuunnassa suuttimen kokoa ohuempia." + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." msgstr "" #: fdmprinter.def.json -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." msgstr "" #: fdmprinter.def.json -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" +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 "Tulostetaan täyttö ennen seinien tulostamista. Seinien tulostaminen ensin saattaa johtaa tarkempiin seiniin, mutta ulokkeet tulostuvat huonommin. Täytön tulostaminen ensin johtaa tukevampiin seiniin, mutta täyttökuvio saattaa joskus näkyä pinnan läpi." + +#: fdmprinter.def.json +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 "" #: fdmprinter.def.json -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +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 "" #: fdmprinter.def.json -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Tulostuslämpötila" + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Alkukerroksen tulostuslämpötila" + +#: fdmprinter.def.json +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." msgstr "" #: fdmprinter.def.json -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +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 "Tulostaa ylimääräisen seinämän joka toiseen kerrokseen. Näin täyttömateriaali jää kiinni näiden lisäseinämien väliin, mikä johtaa vahvempiin tulosteisiin." + +#: fdmprinter.def.json +msgctxt "resolution label" +msgid "Quality" +msgstr "Laatu" + +#: fdmprinter.def.json +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Neljänneskuutio" + +#: fdmprinter.def.json +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Pohjaristikko" + +#: fdmprinter.def.json +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Pohjaristikon ilmarako" + +#: fdmprinter.def.json +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" msgstr "" #: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Pohjaristikon pohjan tuulettimen nopeus" + +#: fdmprinter.def.json +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" msgstr "" #: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Pohjaristikon pohjan linjaleveys" + +#: fdmprinter.def.json +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Pohjaristikon pohjan tulostuksen kiihtyvyys" + +#: fdmprinter.def.json +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Pohjaristikon pohjan tulostuksen nykäisy" + +#: fdmprinter.def.json +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Pohjaristikon pohjan tulostusnopeus" + +#: fdmprinter.def.json +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Pohjaristikon pohjan paksuus" + +#: fdmprinter.def.json +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" msgstr "" #: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Pohjaristikon lisämarginaali" + +#: fdmprinter.def.json +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Pohjaristikon tuulettimen nopeus" + +#: fdmprinter.def.json +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" msgstr "" #: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Pohjaristikon keskikerroksen tuulettimen nopeus" + +#: fdmprinter.def.json +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" msgstr "" #: fdmprinter.def.json -msgctxt "wipe_pause label" -msgid "Wipe Pause" +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Pohjaristikon keskikerroksen linjaleveys" + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Pohjaristikon keskikerroksen tulostuksen kiihtyvyys" + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Pohjaristikon keskikerroksen tulostuksen nykäisy" + +#: fdmprinter.def.json +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Pohjaristikon keskikerroksen tulostusnopeus" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Pohjaristikon keskikerroksen linjajako" + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Pohjaristikon keskikerroksen paksuus" + +#: fdmprinter.def.json +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Pohjaristikon tulostuksen kiihtyvyys" + +#: fdmprinter.def.json +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Pohjaristikon tulostuksen nykäisy" + +#: fdmprinter.def.json +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Pohjaristikon tulostusnopeus" + +#: fdmprinter.def.json +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Pohjaristikon tasoitus" + +#: fdmprinter.def.json +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" msgstr "" #: fdmprinter.def.json -msgctxt "wipe_pause description" -msgid "Pause after the unretract." +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Pohjaristikon pinnan tuulettimen nopeus" + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Pohjaristikon pintakerroksen paksuus" + +#: fdmprinter.def.json +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Pohjaristikon pintakerrokset" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Pohjaristikon pinnan linjaleveys" + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Pohjaristikon pinnan tulostuksen kiihtyvyys" + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Pohjaristikon pinnan tulostuksen nykäisy" + +#: fdmprinter.def.json +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Pohjaristikon pinnan tulostusnopeus" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Pohjaristikon pinnan linjajako" + +#: fdmprinter.def.json +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Satunnainen" + +#: fdmprinter.def.json +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" msgstr "" #: fdmprinter.def.json -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" +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 "" #: fdmprinter.def.json -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." +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 "Satunnainen värinä tulostettaessa ulkoseinämää, jotta pinta näyttää viimeistelemättömältä ja karhealta." + +#: fdmprinter.def.json +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Suorakulmainen" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Normaali tuulettimen nopeus" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Normaali tuulettimen nopeus korkeudella" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Normaali tuulettimen nopeus kerroksessa" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Tuulettimen normaali-/maksiminopeuden raja-arvo" + +#: fdmprinter.def.json +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Suhteellinen pursotus" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Poista kaikki reiät" + +#: fdmprinter.def.json +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" msgstr "" #: fdmprinter.def.json -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "" - -#: fdmprinter.def.json -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "" - -#: fdmprinter.def.json -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "" - -#: fdmprinter.def.json -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "" - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "" - -#: fdmprinter.def.json -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 "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Poista verkon leikkauspiste" #: fdmprinter.def.json msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "" +#: fdmprinter.def.json +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 "Poistaa alueet, joissa useat verkot ovat limittäin toistensa kanssa. Tätä voidaan käyttää, jos yhdistetyt kaksoismateriaalikappaleet ovat limittäin toistensa kanssa." + +#: fdmprinter.def.json +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 "" + #: fdmprinter.def.json msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "" #: fdmprinter.def.json -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" +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 "Poistaa kaikki reiät kustakin kerroksesta ja pitää vain ulkopuolisen muodon. Tällä jätetään näkymätön sisäinen geometria huomiotta. Se kuitenkin jättää huomiotta myös kerrosten reiät, jotka voidaan nähdä ylä- tai alapuolelta." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +#: fdmprinter.def.json +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 "Korvaa ylä-/alakuvion uloimman osan samankeskisillä linjoilla. Yhden tai kahden linjan käyttäminen parantaa kattoja, jotka alkavat täyttömateriaalin keskeltä." + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution description" +msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." msgstr "" #: fdmprinter.def.json -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Vedä takaisin ennen ulkoseinämää" + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Takaisinveto kerroksen muuttuessa" + +#: fdmprinter.def.json +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." msgstr "" #: fdmprinter.def.json -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Komentorivin asetukset" +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "" + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "Vedä tulostuslanka takaisin, kun suutin on siirtymässä seuraavaan kerrokseen." + +#: fdmprinter.def.json +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Takaisinvetoetäisyys" + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Takaisinvedon esitäytön lisäys" + +#: fdmprinter.def.json +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Takaisinvedon minimiliike" + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Takaisinvedon esitäyttönopeus" + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Takaisinvedon vetonopeus" + +#: fdmprinter.def.json +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Takaisinvetonopeus" + +#: fdmprinter.def.json +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Saumakulmien asetus" + +#: fdmprinter.def.json +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 "Aseta vetosuojuksen korkeus. Valitse, tulostetaanko vetosuojus koko mallin korkuisena vai rajoitetun korkuisena." + +#: fdmprinter.def.json +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Asetukset, joita käytetään monilla suulakkeilla tulostukseen." #: fdmprinter.def.json msgctxt "command_line_settings description" @@ -6603,8 +3508,2686 @@ msgid "Settings which are only used if CuraEngine isn't called from the Cura fro msgstr "Asetukset, joita käytetään vain jos CuraEnginea ei kutsuta Cura-edustaohjelmasta." #: fdmprinter.def.json -msgctxt "center_object label" -msgid "Center Object" +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Terävin kulma" + +#: fdmprinter.def.json +msgctxt "shell description" +msgid "Shell" +msgstr "Kuori" + +#: fdmprinter.def.json +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Lyhin" + +#: fdmprinter.def.json +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Näytä laitteen variantit" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "" + +#: fdmprinter.def.json +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Pintakalvon laajennuksen etäisyys" + +#: fdmprinter.def.json +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Pintakalvon limitys" + +#: fdmprinter.def.json +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Pintakalvon limityksen prosentti" + +#: fdmprinter.def.json +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Pintakalvon poistoleveys" + +#: fdmprinter.def.json +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 "Tätä kapeampia pintakalvoja ei laajenneta. Tällä vältetään laajentamasta kapeita pintakalvoja, jotka syntyvät, kun mallin pinnalla on rinne lähellä pystysuoraa osuutta." + +#: fdmprinter.def.json +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Ohita joka N. yhdistämislinja, jotta tukirakenne on helpompi rikkoa." + +#: fdmprinter.def.json +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 "Ohita jotkin tukilinjojen yhdistämiset, jotta tukirakenne on helpompi rikkoa. Tämä asetus soveltuu siksak-tukitäyttökuvioon." + +#: fdmprinter.def.json +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Helma" + +#: fdmprinter.def.json +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Helman etäisyys" + +#: fdmprinter.def.json +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Helman linjaluku" + +#: fdmprinter.def.json +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Helman/reunuksen kiihtyvyys" + +#: fdmprinter.def.json +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Helman/reunuksen nykäisy" + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Helma-/reunuslinjan leveys" + +#: fdmprinter.def.json +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Helman/reunuksen minimipituus" + +#: fdmprinter.def.json +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Helman/reunuksen nopeus" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "" + +#: fdmprinter.def.json +#, fuzzy +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Tulostuslämpötila lopussa" + +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "" + +#: fdmprinter.def.json +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Kierukoitujen ääriviivojen tasoittaminen" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Siirtoliikkeen yhteydessä materiaalia voi tihkua pois. Sitä voidaan kompensoida tässä." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Erikoistilat" + +#: fdmprinter.def.json +msgctxt "speed description" +msgid "Speed" +msgstr "Nopeus" + +#: fdmprinter.def.json +msgctxt "speed label" +msgid "Speed" +msgstr "Nopeus" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "" + +#: fdmprinter.def.json +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Kierukoi ulompi ääriviiva" + +#: fdmprinter.def.json +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 "Kierukointi pehmentää ulkoreunan Z-liikettä. Se muodostaa tasaisen Z-lisän koko tulosteelle. Tämä toiminto muuttaa umpinaisen mallin yksiseinäiseksi tulosteeksi, jossa on umpinainen pohja. Tämä toiminto kannattaa ottaa käyttöön vain, jos jokaisessa kerroksessa on vain yksi osa." + +#: fdmprinter.def.json +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Valmiuslämpötila" + +#: fdmprinter.def.json +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support description" +msgid "Support" +msgstr "Tuki" + +#: fdmprinter.def.json +msgctxt "support label" +msgid "Support" +msgstr "Tuki" + +#: fdmprinter.def.json +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Tuen kiihtyvyys" + +#: fdmprinter.def.json +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Tuen alaosan etäisyys" + +#: fdmprinter.def.json +#, fuzzy +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Tukilohkolinjaluku" + +#: fdmprinter.def.json +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Tukilohkolinjaluku" + +#: fdmprinter.def.json +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Tukilohkon koko" + +#: fdmprinter.def.json +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Tuen tiheys" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Tuen etäisyyden prioriteetti" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Tuen suulake" + +#: fdmprinter.def.json +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Tukilattian kiihtyvyys" + +#: fdmprinter.def.json +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Tukilattian tiheys" + +#: fdmprinter.def.json +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Tukilattian suulake" + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "" + +#: fdmprinter.def.json +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Tukilattian nykäisy" + +#: fdmprinter.def.json +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Tukilattian linjaetäisyys" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Tukilattian linjaleveys" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Tukilattian kuvio" + +#: fdmprinter.def.json +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Tukilattian nopeus" + +#: fdmprinter.def.json +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Tukilattian paksuus" + +#: fdmprinter.def.json +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Tuen vaakalaajennus" + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Tuen täytön kiihtyvyys" + +#: fdmprinter.def.json +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Tuen täytön suulake" + +#: fdmprinter.def.json +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Tuen täytön nykäisy" + +#: fdmprinter.def.json +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Tuen täyttökerroksen paksuus" + +#: fdmprinter.def.json +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "" + +#: fdmprinter.def.json +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Tuen täytön nopeus" + +#: fdmprinter.def.json +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Tukiliittymän kiihtyvyys" + +#: fdmprinter.def.json +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Tukiliittymän tiheys" + +#: fdmprinter.def.json +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Tukiliittymän suulake" + +#: fdmprinter.def.json +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "" + +#: fdmprinter.def.json +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Tukiliittymän nykäisy" + +#: fdmprinter.def.json +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Tukiliittymän linjan leveys" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Tukiliittymän kuvio" + +#: fdmprinter.def.json +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Tukiliittymän resoluutio" + +#: fdmprinter.def.json +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Tukiliittymän nopeus" + +#: fdmprinter.def.json +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Tukiliittymän paksuus" + +#: fdmprinter.def.json +#, fuzzy +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Tukiliittymän linjan leveys" + +#: fdmprinter.def.json +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Tuen nykäisy" + +#: fdmprinter.def.json +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Tuen liitosetäisyys" + +#: fdmprinter.def.json +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Tukilinjojen etäisyys" + +#: fdmprinter.def.json +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Tukilinjan leveys" + +#: fdmprinter.def.json +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Tukiverkko" + +#: fdmprinter.def.json +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Tuen ulokkeen kulma" + +#: fdmprinter.def.json +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Tukikuvio" + +#: fdmprinter.def.json +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Tuen sijoittelu" + +#: fdmprinter.def.json +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Tukikaton kiihtyvyys" + +#: fdmprinter.def.json +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Tukikaton tiheys" + +#: fdmprinter.def.json +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Tukikaton suulake" + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "" + +#: fdmprinter.def.json +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Tukikaton nykäisy" + +#: fdmprinter.def.json +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Tukikaton linjaetäisyys" + +#: fdmprinter.def.json +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Tukikaton linjaleveys" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Tukikaton kuvio" + +#: fdmprinter.def.json +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Tukikaton nopeus" + +#: fdmprinter.def.json +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Tukikaton paksuus" + +#: fdmprinter.def.json +#, fuzzy +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Tukikaton linjaleveys" + +#: fdmprinter.def.json +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Tukirakenteen nopeus" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Tuen porrasnousun korkeus" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Tukiportaiden askelman enimmäisleveys" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Tuen yläosan etäisyys" + +#: fdmprinter.def.json +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Tuen X-/Y-etäisyys" + +#: fdmprinter.def.json +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Tuen Z-etäisyys" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Pinta" + +#: fdmprinter.def.json +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Pintatila" + +#: fdmprinter.def.json +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + +#: fdmprinter.def.json +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 "Määrittää, mitkä verkon leikkaustilavuudet kuuluvat jokaiseen kerrokseen, jotta limittäiset verkot yhdistetään. Jos tämä asetus poistetaan käytöstä, yksi verkoista saa kaiken tilavuuden limityksessä, ja verkko poistetaan muista verkoista." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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-koordinaatti kohdalle, jonka läheltä aloitetaan kunkin kerroksen tulostus." + +#: fdmprinter.def.json +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "X-koordinaatti kohdalle, jonka läheltä aloitetaan kunkin kerroksen osuuden tulostus." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "X-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa." + +#: fdmprinter.def.json +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-koordinaatti kohdalle, jonka läheltä aloitetaan kunkin kerroksen tulostus." + +#: fdmprinter.def.json +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "Y-koordinaatti kohdalle, jonka läheltä aloitetaan kunkin kerroksen osuuden tulostus." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Y-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Z-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa." + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "Alkukerroksen tulostuksen aikainen kiihtyvyys." + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Alkukerroksen kiihtyvyys." + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Alkukerroksen siirtoliikkeiden kiihtyvyys." + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Alkukerroksen siirtoliikkeiden kiihtyvyys." + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "Kiihtyvyys, jolla kaikki sisäseinämät tulostetaan." + +#: fdmprinter.def.json +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "Kiihtyvyys, jolla täyttö tulostetaan." + +#: fdmprinter.def.json +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "Kiihtyvyys, jolla silitys suoritetaan." + +#: fdmprinter.def.json +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Kiihtyvyys, jolla tulostetaan." + +#: fdmprinter.def.json +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "Kiihtyvyys, jolla pohjaristikon pohjakerros tulostetaan." + +#: fdmprinter.def.json +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ä." + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Kiihtyvyys, jolla tuen täyttö tulostetaan." + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "Kiihtyvyys, jolla pohjaristikon keskikerros tulostetaan." + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "Kiihtyvyys, jolla ulkoseinämät tulostetaan." + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "Kiihtyvyys, jolla esitäyttötorni tulostetaan." + +#: fdmprinter.def.json +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "Kiihtyvyys, jolla pohjaristikko tulostetaan." + +#: fdmprinter.def.json +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 "Kiihtyvyys, jolla tuen katot ja lattiat tulostetaan. Niiden tulostus hitaammalla kiihtyvyydellä voi parantaa ulokkeen laatua." + +#: fdmprinter.def.json +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 "Kiihtyvyys, jolla tuen katot tulostetaan. Niiden tulostus hitaammalla kiihtyvyydellä voi parantaa ulokkeen laatua." + +#: fdmprinter.def.json +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 "Kiihtyvyys, jolla helma ja reunus tulostetaan. Yleensä se tehdään alkukerroksen kiihtyvyydellä. Joskus helma tai reunus halutaan kuitenkin tulostaa eri kiihtyvyydellä." + +#: fdmprinter.def.json +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Kiihtyvyys, jolla tukirakenne tulostetaan." + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Kiihtyvyys, jolla pohjaristikon pintakerrokset tulostetaan." + +#: fdmprinter.def.json +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Kiihtyvyys, jolla seinämät tulostetaan." + +#: fdmprinter.def.json +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "Kiihtyvyys, jolla yläpinnan pintakalvokerrokset tulostetaan." + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Kiihtyvyys, jolla ylä-/alakerrokset tulostetaan." + +#: fdmprinter.def.json +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Kiihtyvyys, jolla siirtoliikkeet tehdään." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Vaakatason ja suuttimen kärjen yllä olevan kartiomaisen osan välinen kulma." + +#: fdmprinter.def.json +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 "Tornin katon kulma. Korkeampi arvo johtaa teräväkärkisiin tornien kattoihin, matalampi arvo litteämpiin tornien kattoihin." + +#: fdmprinter.def.json +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 "Muottia varten luotujen ulkoseinämien ulokkeiden kulma. 0° tekee muotin ulkokuoresta pystysuoran ja 90° saa muotin ulkopuolen seuraamaan mallin muotoja." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "support_tree_angle description" +msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "" + +#: fdmprinter.def.json +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 "Kartiomaisen tuen kallistuskulma. 0 astetta on pystysuora ja 90 astetta on vaakasuora. Pienemmillä kulmilla tuki on tukevampi, mutta siihen käytetään enemmän materiaalia. Negatiivisilla kulmilla tuen perusta on leveämpi kuin yläosa." + +#: fdmprinter.def.json +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 "Kerroksen kuhunkin monikulmioon tehtävien pisteiden keskimääräinen tiheys. Huomaa, että monikulmion alkuperäiset pisteet poistetaan käytöstä, joten pieni tiheys alentaa resoluutiota." + +#: fdmprinter.def.json +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 "Keskimääräinen etäisyys kunkin linjasegmentin satunnaisten pisteiden välillä. Huomaa, että alkuperäiset monikulmion pisteet poistetaan käytöstä, joten korkea sileysarvo alentaa resoluutiota. Tämän arvon täytyy olla suurempi kuin puolet karhean pintakalvon paksuudesta." + +#: fdmprinter.def.json +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "Tulostuspään liikkeen oletuskiihtyvyys." + +#: fdmprinter.def.json +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 "Tulostuksessa käytettävä oletuslämpötila. Tämän tulee olla materiaalin ”pohjalämpötila”. Kaikkien muiden tulostuslämpötilojen tulee käyttää tähän arvoon perustuvia siirtymiä" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Tukirakenteen lattioiden tiheys. Korkeammalla arvolla mallin yläosan tuki kiinnittyy paremmin." + +#: fdmprinter.def.json +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 "Tukirakenteen lattian tiheys. Korkeammat arvot tuottavat parempia ulokkeita, mutta tuet on vaikeampi poistaa." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "Tulostettavan alueen syvyys (Y-suunta)." + +#: fdmprinter.def.json +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "Erityistornin läpimitta." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "" + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "Silityslinjojen välinen etäisyys." + +#: fdmprinter.def.json +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ä." + +#: fdmprinter.def.json +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 "Pohjaristikon pohjakerroksen linjojen välinen etäisyys. Leveä linjajako helpottaa pohjaristikon poistoa alustalta." + +#: fdmprinter.def.json +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 "Pohjaristikon keskikerroksen linjojen välinen etäisyys. Keskikerroksen linjajaon tulisi olla melko leveä ja samalla riittävän tiheä, jotta se tukee pohjaristikon pintakerroksia." + +#: fdmprinter.def.json +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 "Pohjaristikon pintakerrosten linjojen välinen etäisyys. Linjajaon tulisi olla sama kuin linjaleveys, jotta pinta on kiinteä." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Etäisyys mallista ulommaiseen reunuslinjaan. Suurempi reunus parantaa kiinnitystä alustaan, mutta rajoittaa tehokasta tulostusaluetta." + +#: fdmprinter.def.json +#, 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 "Suuttimen kärjestä mitattu etäisyys, jonka päähän tulostuslanka asetetaan säilytykseen, kun suulaketta ei enää käytetä." + +#: fdmprinter.def.json +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 "Suuttimen kärjestä mitattu etäisyys, jonka suuttimen lämpö siirtyy tulostuslankaan." + +#: fdmprinter.def.json +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 "Etäisyys, jonka verran alapintakalvot laajentuvat täyttöön. Suuremmat arvot saavat pintakalvon kiinnittymään paremmin täyttökuvioon ja tarttumaan paremmin alla olevan kerroksen seinämiin. Pienemmät arvot vähentävät käytettävän materiaalin määrää." + +#: fdmprinter.def.json +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 "Etäisyys, jonka verran pintakalvot laajentuvat täyttöön. Suuremmat arvot saavat pintakalvon kiinnittymään paremmin täyttökuvioon ja viereisten kerrosten seinämät tarttumaan paremmin pintakalvoon. Pienemmät arvot vähentävät käytettävän materiaalin määrää." + +#: fdmprinter.def.json +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 "Etäisyys, jonka verran yläpintakalvot laajentuvat täyttöön. Suuremmat arvot saavat pintakalvon kiinnittymään paremmin täyttökuvioon ja yllä olevan kerroksen seinämät tarttumaan paremmin pintakalvoon. Pienemmät arvot vähentävät käytettävän materiaalin määrää." + +#: fdmprinter.def.json +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Lisänopeus, jonka verran suutin jäähtyy pursotuksen aikana. Samaa arvoa käytetään merkitsemään menetettyä kuumentumisnopeutta pursotuksen aikaisen kuumennuksen aikana." + +#: fdmprinter.def.json +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 "Tuen täytön ensimmäisen kerroksen tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Tuen lattioiden tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." + +#: fdmprinter.def.json +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 "Tuen täytön tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Tuen kattojen ja lattioiden tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." + +#: fdmprinter.def.json +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 "Tuen kattojen tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "Helman/reunuksen/pohjaristikon tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." + +#: fdmprinter.def.json +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "Tuen tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "Ulkoseinämän tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." + +#: fdmprinter.def.json +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 "Ylä- ja alapuolen pintakalvon tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "Ylimmän pintakalvon tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "Seinämien tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Tuulettimen nopeus pohjaristikon pohjakerrosta varten." + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "Tuulettimen nopeus pohjaristikon keskikerrosta varten." + +#: fdmprinter.def.json +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Pohjaristikon tuulettimen nopeus." + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Tuulettimen nopeus pohjaristikon pintakerroksia varten." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Muutama ensimmäinen kerros tulostetaan hitaammin kuin loput mallista, jolloin saadaan parempi tarttuvuus alustaan ja parannetaan tulosteiden yleistä onnistumista. Näiden kerrosten jälkeen nopeutta lisätään asteittain." + +#: fdmprinter.def.json +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 "Rako pohjaristikon viimeisen kerroksen ja mallin ensimmäisen kerroksen välillä. Vain ensimmäistä kerrosta nostetaan tällä määrällä pohjaristikkokerroksen ja mallin välisen sidoksen vähentämiseksi. Se helpottaa pohjaristikon irti kuorimista." + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Tulostettavan alueen korkeus (Z-suunta)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "" + +#: fdmprinter.def.json +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Z-hypyn suorituksen korkeusero." + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "" + +#: fdmprinter.def.json +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 "Kunkin kerroksen korkeus milleinä. Korkeammat arvot tuottavat nopeampia tulosteita alhaisemmalla resoluutiolla, alemmat arvot tuottavat hitaampia tulosteita korkeammalla resoluutiolla." + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "Tietyn tiheysarvon täytön korkeus ennen puoleen tiheyteen vaihtamista." + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "Tietyn tiheysarvon tuen täytön korkeus ennen puoleen tiheyteen vaihtamista." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Alkukerroksen korkeus milleinä. Paksumpi alkukerros helpottaa alustaan kiinnittymistä." + +#: fdmprinter.def.json +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 "Mallin päällä olevan porrasmaisen tuen pohjan portaiden korkeus. Matala arvo tekee tuesta vaikeamman poistaa, mutta liian korkeat arvot voivat johtaa epävakaisiin tukirakenteisiin. Poista porrasmainen ominaisuus käytöstä valitsemalla asetukseksi nolla." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "" + +#: fdmprinter.def.json +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äläpimitta. Muuta tätä asetusta, kun käytössä on muu kuin vakiokokoinen suutin." + +#: fdmprinter.def.json +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Nykäisy, jolla pohjaristikon pohjakerros tulostetaan." + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "Nykäisy, jolla pohjaristikon keskikerros tulostetaan." + +#: fdmprinter.def.json +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "Nykäisy, jolla pohjaristikko tulostetaan." + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Nykäisy, jolla pohjaristikon pintakerrokset tulostetaan." + +#: fdmprinter.def.json +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 "Suurin poistettavien alapintakalvoalueiden leveys. Kaikki tätä arvoa pienemmät pintakalvoalueet poistuvat. Tästä voi olla apua mallin kaltevien pintojen alapintakalvon tulostukseen käytettävän ajan ja materiaalin rajoittamisessa." + +#: fdmprinter.def.json +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 "Suurin poistettavien pintakalvoalueiden leveys. Kaikki tätä arvoa pienemmät pintakalvoalueet poistuvat. Tästä voi olla apua mallin kaltevien pintojen ylä-/alapintakalvon tulostukseen käytettävän ajan ja materiaalin rajoittamisessa." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Kerrosaika, joka määrittää tuulettimen normaalin nopeuden ja maksiminopeuden välisen raja-arvon. Kerrokset, jotka tulostuvat tätä hitaammin käyttävät normaalia tuulettimen nopeutta. Nopeammilla kerroksilla tuulettimen nopeus nousee asteittain kohti tuulettimen maksiminopeutta." + +#: fdmprinter.def.json +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "Takaisinvedon yhteydessä sisään vedettävän materiaalin pituus." + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "" + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "" + +#: fdmprinter.def.json +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 "Tihkusuojuksen osan maksimikulma. 0 astetta tarkoittaa pystysuuntaa ja 90 astetta vaakasuuntaa. Pienempi kulma vähentää tihkusuojusten epäonnistumisia mutta lisää materiaalia." + +#: fdmprinter.def.json +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 "Ulokkeiden maksimikulma, kun niistä on tehty tulostettavia. 0 asteessa kaikki ulokkeet korvataan mallikappaleella, joka on yhdistetty alustaan. 90 asteessa mallia ei muuteta millään tavalla." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "Alkukerroksen tulostuksen aikainen nopeuden hetkellinen maksimimuutos." + +#: fdmprinter.def.json +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "Tulostuspään nopeuden hetkellinen maksimimuutos." + +#: fdmprinter.def.json +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Silityksen aikainen nopeuden hetkellinen maksimimuutos." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "Täytön tulostuksen nopeuden hetkellinen maksimimuutos." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "Tuen täytön tulostuksen nopeuden hetkellinen maksimimuutos." + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "Ulkoseinämien tulostuksen nopeuden hetkellinen maksimimuutos." + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "Esitäyttötornin tulostuksen nopeuden hetkellinen maksimimuutos." + +#: fdmprinter.def.json +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "Tuen kattojen ja lattioiden tulostuksen nopeuden hetkellinen maksimimuutos." + +#: fdmprinter.def.json +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "Tuen kattojen tulostuksen nopeuden hetkellinen maksimimuutos." + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "Helman ja reunuksen tulostuksen nopeuden hetkellinen maksimimuutos." + +#: fdmprinter.def.json +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "Tukirakenteen tulostuksen nopeuden hetkellinen maksimimuutos." + +#: fdmprinter.def.json +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "Seinämien tulostuksen nopeuden hetkellinen maksimimuutos." + +#: fdmprinter.def.json +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "Yläpinnan pintakalvokerrosten tulostuksen nopeuden hetkellinen maksimimuutos." + +#: fdmprinter.def.json +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "Ylä-/alakerrosten tulostuksen nopeuden hetkellinen maksimimuutos." + +#: fdmprinter.def.json +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "Siirtoliikkeiden nopeuden hetkellinen maksimimuutos." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "X-suunnan moottorin maksiminopeus." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Y-suunnan moottorin maksiminopeus." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Z-suunnan moottorin maksiminopeus." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "Tulostuslangan maksiminopeus." + +#: fdmprinter.def.json +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 "Mallin päällä olevan porrasmaisen tuen pohjan portaiden enimmäisleveys. Matala arvo tekee tuesta vaikeamman poistaa, mutta liian korkeat arvot voivat johtaa epävakaisiin tukirakenteisiin." + +#: fdmprinter.def.json +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Tulostuspään liikkeen miniminopeus." + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "Minimilämpötila lämmitettäessä tulostuslämpötilaan, jossa tulostus voidaan aloittaa." + +#: fdmprinter.def.json +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 "Minimiaika, jonka suulakkeen on oltava ei-aktiivinen, ennen kuin suutin jäähdytetään. Suulakkeen annetaan jäähtyä valmiustilaan vain, kun sitä ei käytetä tätä aikaa kauemmin." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Ulokkeen minimikulma, jonka jälkeen tuki lisätään. Arvolla 0 ° kaikki ulokkeet tuetaan, asetuksella 90 ° tukia ei tuoteta." + +#: fdmprinter.def.json +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 "Tarvittavan siirtoliikkeen minimietäisyys, jotta takaisinveto yleensäkin tapahtuu. Tällä varmistetaan, ettei takaisinvetoja tapahdu runsaasti pienellä alueella." + +#: fdmprinter.def.json +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 "Helman tai reunuksen minimipituus. Jos kaikki helma- tai reunuslinjat yhdessä eivät saavuta tätä minimipituutta, lisätään useampia helma- tai reunuslinjoja, jotta tähän minimipituuteen päästään. Huomaa: jos linjalukuna on 0, tämä jätetään huomiotta." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Tulostuksen miniminopeus riippumatta kerroksen minimiajan aiheuttamasta hidastuksesta. Jos tulostin hidastaisi liikaa, paine suuttimessa olisi liian alhainen ja tulostuksen laatu kärsisi." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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ä." + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "Esitäyttötornin kunkin kerroksen minimitilavuus, jotta voidaan poistaa riittävästi materiaalia." + +#: fdmprinter.def.json +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "3D-tulostinmallin nimi." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Suulakeryhmän suulakkeen tunnus, kuten \"AA 0.4\" ja \"BB 0.8\"." + +#: fdmprinter.def.json +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 "Suutin välttää aiemmin tulostettuja osia siirtoliikkeiden yhteydessä. Tämä vaihtoehto on valittavissa vain, kun pyyhkäisy on käytössä." + +#: fdmprinter.def.json +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Reunukseen käytettävien linjojen lukumäärä. Useampi reunuslinja parantaa kiinnitystä alustaan, mutta rajoittaa tehokasta tulostusaluetta." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Yläkerrosten lukumäärä. Kun se lasketaan yläosan paksuudesta, arvo pyöristetään kokonaislukuun." + +#: fdmprinter.def.json +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 "Ylimpien pintakalvokerrosten määrä. Yleensä vain yksi ylin kerros riittää tuottamaan korkeampilaatuisia yläpintoja." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Seinämien lukumäärä. Kun se lasketaan seinämän paksuudesta, arvo pyöristetään kokonaislukuun." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Suuttimen kärjen ulkoläpimitta." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Tukirakenteiden tulostuskuvio. Eri vaihtoehdot tuottavat jämäköitä tai helposti poistettavia tukia." + +#: fdmprinter.def.json +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "Ylimpien kerrosten kuvio." + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Ylä-/alakerrosten kuvio." + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "Tulosteen alaosan kuvio ensimmäisellä kerroksella." + +#: fdmprinter.def.json +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Yläpintojen silitykseen käytettävä kuvio." + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "Tuen lattioiden tulostuskuvio." + +#: fdmprinter.def.json +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Kuvio, jolla tuen ja mallin liittymä tulostetaan." + +#: fdmprinter.def.json +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "Tuen kattojen tulostuskuvio." + +#: fdmprinter.def.json +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "" + +#: fdmprinter.def.json +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "Alkukerroksen tulostuksen nopeuden hetkellinen maksimimuutos." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Pienin ainemäärä, joka pursotusreitillä tulisi olla ennen kuin vapaaliuku sallitaan. Lyhyemmillä pursotusreiteillä Bowden-putkeen on muodostunut vähemmän painetta, joten vapaaliu'un ainemäärää skaalataan lineaarisesti. Tämän arvon on aina oltava suurempi kuin vapaaliu'un ainemäärä." + +#: fdmprinter.def.json +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 "Nopeus (°C/s), jolla suutin jäähtyy, mitattuna keskiarvona normaaleista tulostuslämpötiloista ja valmiuslämpötilasta." + +#: fdmprinter.def.json +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 "Nopeus (°C/s), jolla suutin lämpenee, mitattuna keskiarvona normaaleista tulostuslämpötiloista ja valmiuslämpötilasta." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "" + +#: fdmprinter.def.json +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Täytön tulostamiseen käytettävä nopeus." + +#: fdmprinter.def.json +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Tulostamiseen käytettävä nopeus." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "" + +#: fdmprinter.def.json +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 "Tuulettimien pyörimisnopeus tulostuksen alussa. Seuraavilla kerroksilla tuulettimen nopeus kasvaa asteittain, kunnes saavutetaan kerros, joka vastaa Normaali tuulettimen nopeus korkeudella -arvoa." + +#: fdmprinter.def.json +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 "Nopeus, jolla tuuletin pyörii ennen raja-arvon tavoittamista. Jos kerros tulostuu nopeammin kuin raja-arvo, tulostimen nopeus nousee asteittain kohti tuulettimen maksiminopeutta." + +#: fdmprinter.def.json +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 "Nopeus, jolla tuuletin pyörii kerroksen minimiaikana. Tuulettimen nopeus kasvaa asteittain normaalin ja maksiminopeuden välillä, kun raja-arvo ohitetaan." + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "Nopeus, jolla tulostuslanka esitäytetään takaisinvedon yhteydessä." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "" + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "Nopeus, jolla tulostuslanka työnnetään takaisin suuttimen vaihdon takaisinvedon jälkeen." + +#: fdmprinter.def.json +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "Nopeus, jolla tulostuslanka vedetään sisään ja esitäytetään takaisinvedon yhteydessä." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "Nopeus, jolla tulostuslanka vedetään sisään suuttimen vaihdon takaisinvedon yhteydessä." + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "Nopeus, jolla tulostuslanka vedetään sisään takaisinvedon yhteydessä." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "" + +#: fdmprinter.def.json +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 "Nopeus, jolla tulostuslanka vedetään sisään. Suurempi takaisinvetonopeus toimii paremmin, mutta erittäin suuri takaisinvetonopeus saattaa hiertää tulostuslankaa." + +#: fdmprinter.def.json +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 "Nopeus, jolla tuen lattiat tulostetaan. Niiden tulostus hitaammilla nopeuksilla voi parantaa mallin yläosan tuen kiinnittymistä." + +#: fdmprinter.def.json +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 "Nopeus, jolla tuen täyttö tulostetaan. Täytön tulostus hitaammilla nopeuksilla parantaa vakautta." + +#: fdmprinter.def.json +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 "Nopeus, jolla pohjaristikon keskikerros tulostetaan. Tämä tulisi tulostaa melko hitaasti, sillä suuttimesta tulevan materiaalin määrä on varsin suuri." + +#: fdmprinter.def.json +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 "Nopeus, jolla uloimmat seinämät tulostetaan. Ulkoseinämien tulostus hitaammalla nopeudella parantaa lopullisen pintakalvon laatua. Jos sisäseinämän ja ulkoseinämän nopeuden välillä on kuitenkin suuri ero, se vaikuttaa negatiivisesti laatuun." + +#: fdmprinter.def.json +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 "Nopeus, jolla esitäyttötorni tulostetaan. Esitäyttötornin tulostus hitaammin saattaa tehdä siitä vakaamman, jos eri tulostuslankojen tarttuvuus ei ole paras mahdollinen." + +#: fdmprinter.def.json +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "Tulostuksen jäähdytystuulettimien käyntinopeus." + +#: fdmprinter.def.json +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "Nopeus, jolla pohjaristikko tulostetaan." + +#: fdmprinter.def.json +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 "Nopeus, jolla tuen katot ja lattiat tulostetaan. Niiden tulostus hitaammilla nopeuksilla voi parantaa ulokkeen laatua." + +#: fdmprinter.def.json +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 "Nopeus, jolla tuen katot tulostetaan. Niiden tulostus hitaammilla nopeuksilla voi parantaa ulokkeen laatua." + +#: fdmprinter.def.json +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 "Nopeus, jolla helma ja reunus tulostetaan. Yleensä se tehdään alkukerroksen nopeudella. Joskus helma tai reunus halutaan kuitenkin tulostaa eri nopeudella." + +#: fdmprinter.def.json +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 "Nopeus, jolla tukirakenne tulostetaan. Tukirakenteiden tulostus korkeammilla nopeuksilla voi lyhentää tulostusaikaa merkittävästi. Tukirakenteen pinnan laadulla ei ole merkitystä, koska rakenne poistetaan tulostuksen jälkeen." + +#: fdmprinter.def.json +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 "Nopeus, jolla pohjaristikon pintakerrokset tulostetaan. Nämä tulisi tulostaa hieman hitaammin, jotta suutin voi hitaasti tasoittaa vierekkäisiä pintalinjoja." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Seinämien tulostamiseen käytettävä nopeus." + +#: fdmprinter.def.json +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "Yläpinnan ylikulkuun käytettävä nopeus." + +#: fdmprinter.def.json +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "" + +#: fdmprinter.def.json +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "Yläpinnan pintakalvokerrosten tulostamiseen käytettävä nopeus." + +#: fdmprinter.def.json +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Ylä-/alakerrosten tulostamiseen käytettävä nopeus." + +#: fdmprinter.def.json +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Nopeus, jolla siirtoliikkeet tehdään." + +#: fdmprinter.def.json +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 "Nopeus, jolla siirrytään vapaaliu'un aikana, suhteessa pursotusreitin nopeuteen. Arvoksi suositellaan hieman alle 100 %, sillä vapaaliukusiirron aikana paine Bowden-putkessa laskee." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Alkukerroksen tulostusnopeus. Alhaisempi arvo on suositeltava, jotta tarttuvuus alustaan on parempi." + +#: fdmprinter.def.json +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 "Alkukerroksen siirtoliikkeiden nopeus. Alhaisempi arvo on suositeltava, jotta aikaisemmin tulostettuja osia ei vedetä pois alustasta. Tämän asetuksen arvo voidaan laskea automaattisesti siirtoliikkeen nopeuden ja tulostusnopeuden suhteen perusteella." + +#: fdmprinter.def.json +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "Suuttimen lämpötila, kun toista suutinta käytetään tulostukseen." + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "Lämpötila, johon jäähdytetään jo ennen tulostuksen loppumista." + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +msgstr "Ensimmäisen kerroksen tulostuksessa käytettävä lämpötila. Aseta arvoon 0, jos et halua käyttää alkukerroksen erikoiskäsittelyä." + +#: fdmprinter.def.json +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Tulostukseen käytettävä lämpötila." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "" + +#: fdmprinter.def.json +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 "Alakerrosten paksuus tulosteessa. Tämä arvo jaettuna kerroksen korkeusarvolla määrittää alakerrosten lukumäärän." + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "" + +#: fdmprinter.def.json +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 "Tukiliittymän paksuus kohdassa, jossa se koskettaa mallia ylä- tai alaosassa." + +#: fdmprinter.def.json +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 "Tuen lattioiden paksuus. Tällä hallitaan sellaisten tiheiden kerrosten määrää, jotka tulostetaan mallin tukea kannattelevien kohtien päälle." + +#: fdmprinter.def.json +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 "Tukikattojen paksuus. Tällä hallitaan tiheiden kerrosten määrää sen tuen päällä, jolla malli lepää." + +#: fdmprinter.def.json +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 "Yläkerrosten paksuus tulosteessa. Tämä arvo jaettuna kerroksen korkeusarvolla määrittää yläkerrosten lukumäärän." + +#: fdmprinter.def.json +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 "Ylä-/alakerrosten paksuus tulosteessa. Tämä arvo jaettuna kerroksen korkeusarvolla määrittää ylä-/alakerrosten lukumäärän." + +#: fdmprinter.def.json +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 "Seinämien paksuus vaakatasossa. Tämä arvo jaettuna seinämälinjan leveysarvolla määrittää seinämien lukumäärän." + +#: fdmprinter.def.json +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 "Täyttömateriaalin paksuus kerrosta kohti. Tämän arvon tulisi aina olla kerroksen korkeuden kerrannainen. Muissa tapauksissa se pyöristetään." + +#: fdmprinter.def.json +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 "Tuen täyttömateriaalin paksuus kerrosta kohti. Tämän arvon tulee aina olla kerroksen korkeuden kerrannainen. Muissa tapauksissa se pyöristetään." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "" + +#: fdmprinter.def.json +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Aineen määrä, joka muutoin on tihkunut. Tämän arvon tulisi yleensä olla lähellä suuttimen läpimittaa korotettuna kuutioon." + +#: fdmprinter.def.json +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "Tulostettavan alueen leveys (X-suunta)." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +#, fuzzy +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "Esitäyttötornin leveys." + +#: fdmprinter.def.json +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "Esitäyttötornin leveys." + +#: fdmprinter.def.json +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 "Leveys, jolla värinä tapahtuu. Tämä suositellaan pidettäväksi ulkoseinämän leveyttä pienempänä, koska sisäseinämiä ei muuteta." + +#: fdmprinter.def.json +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 "Ikkuna, jossa takaisinvedon maksimiluku otetaan käyttöön. Tämän ikkunan tulisi olla suunnilleen takaisinvetoetäisyyden kokoinen, jotta saman kohdan sivuuttavien takaisinvetojen lukumäärää saadaan rajoitettua." + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "Esitäyttötornin sijainnin X-koordinaatti." + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "Esitäyttötornin sijainnin Y-koordinaatti." + +#: fdmprinter.def.json +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Tämä luo mallin ympärille seinämän, joka pidättää (kuumaa) ilmaa ja suojaa ulkoiselta ilmavirtaukselta. Erityisen käyttökelpoinen materiaaleilla, jotka vääntyvät helposti." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Yläkerrokset" + +#: fdmprinter.def.json +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Yläpintakalvon laajennuksen etäisyys" + +#: fdmprinter.def.json +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Yläpintakalvon poistoleveys" + +#: fdmprinter.def.json +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Yläpinnan pintakalvon kiihtyvyys" + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Yläpinnan pintakalvon suulake" + +#: fdmprinter.def.json +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Yläpinnan pintakalvon nykäisy" + +#: fdmprinter.def.json +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Yläpinnan pintakalvokerrokset" + +#: fdmprinter.def.json +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Yläpinnan pintakalvon linjojen suunnat" + +#: fdmprinter.def.json +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Yläpinnan pintakalvon linjan leveys" + +#: fdmprinter.def.json +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Yläpinnan pintakalvokuvio" + +#: fdmprinter.def.json +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Yläpinnan pintakalvonopeus" + +#: fdmprinter.def.json +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Yläosan paksuus" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "" + +#: fdmprinter.def.json +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "" + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Ylä-/alakerrosten kiihtyvyys" + +#: fdmprinter.def.json +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Ylä- ja alapuolen suulake" + +#: fdmprinter.def.json +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Ylä-/alaosan nykäisy" + +#: fdmprinter.def.json +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Yläosan/alaosan linjojen suunnat" + +#: fdmprinter.def.json +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Ylä-/alalinjan leveys" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Ylä-/alaosan kuvio" + +#: fdmprinter.def.json +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Ylä-/alaosan nopeus" + +#: fdmprinter.def.json +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Ylä-/alaosan paksuus" + +#: fdmprinter.def.json +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Alustaa koskettava" + +#: fdmprinter.def.json +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Tornin läpimitta" + +#: fdmprinter.def.json +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Tornin kattokulma" + +#: fdmprinter.def.json +msgctxt "mesh_rotation_matrix description" +msgid "Transformation matrix to be applied to the model when loading it from file." +msgstr "Mallissa käytettävä muunnosmatriisi, kun malli ladataan tiedostosta." + +#: fdmprinter.def.json +msgctxt "travel label" +msgid "Travel" +msgstr "Siirtoliike" + +#: fdmprinter.def.json +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Siirtoliikkeen kiihtyvyys" + +#: fdmprinter.def.json +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Siirtoliikkeen vältettävä etäisyys" + +#: fdmprinter.def.json +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Siirtoliikkeen nykäisy" + +#: fdmprinter.def.json +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Siirtoliikkeen nopeus" + +#: fdmprinter.def.json +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 "Käsittelee mallia vain pintana, ainemääränä tai löysillä pinnoilla varustettuina ainemäärinä. Normaali tulostustila tulostaa vain suljetut ainemäärät. Pinta-tila tulostaa yhden verkkopintaa seuraavan seinämän ilman täyttöä ja ilman ylä-/alapintakalvoa. Molemmat-tila tulostaa suljetut ainemäärät normaalisti ja jäljellä olevat monikulmiot pintoina." + +#: fdmprinter.def.json +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_tree_angle label" +msgid "Tree Support Branch Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter label" +msgid "Tree Support Branch Diameter" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter_angle label" +msgid "Tree Support Branch Diameter Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance label" +msgid "Tree Support Branch Distance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution label" +msgid "Tree Support Collision Resolution" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_tree_max_diameter label" +msgid "Tree Support Trunk Diameter" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Kolmiot" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Kolmiot" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Kolmiot" + +#: fdmprinter.def.json +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Kolmiot" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Kolmiot" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Yhdistä limittyvät ainemäärät" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Käytä torneja" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Pieniä ulokealueita tuetaan erityisillä torneilla. Näiden tornien läpimitta on niiden tukemaa aluetta suurempi. Ulokkeen lähellä tornien läpimitta pienenee muodostaen katon." + +#: fdmprinter.def.json +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 "Tällä verkolla muokataan sen kanssa limittyvien toisten verkkojen täyttöä. Asetuksella korvataan toisten verkkojen täyttöalueet tämän verkon alueilla. Tälle verkolle on suositeltavaa tulostaa vain yksi seinämä ja ei ylä-/alapintakalvoa." + +#: fdmprinter.def.json +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Käytä tätä verkkoa tukialueiden valintaan. Sen avulla voidaan luoda tukirakenne." + +#: fdmprinter.def.json +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 "Käytä tätä verkkoa määrittääksesi, missä mitään mallin osaa ei tule tunnistaa ulokkeeksi. Tätä toimintoa voidaan käyttää ei-toivotun tukirakenteen poistamiseksi." + +#: fdmprinter.def.json +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Käyttäjän määrittämä" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Odota alustan lämpenemistä" + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Odota suuttimen lämpenemistä" + +#: fdmprinter.def.json +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Seinämän kiihtyvyys" + +#: fdmprinter.def.json +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Seinämien suulake" + +#: fdmprinter.def.json +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Seinämän nykäisy" + +#: fdmprinter.def.json +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Seinämälinjaluku" + +#: fdmprinter.def.json +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Seinämälinjan leveys" + +#: fdmprinter.def.json +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "" + +#: fdmprinter.def.json +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Seinämänopeus" + +#: fdmprinter.def.json +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Seinämän paksuus" + +#: fdmprinter.def.json +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "shell label" +msgid "Walls" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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ä." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "" + +#: fdmprinter.def.json +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 "Kun tämä on käytössä, Z-sauman koordinaatit ovat suhteessa kunkin osan keskikohtaan. Kun asetus on pois käytöstä, koordinaatit määrittävät absoluuttisen sijainnin alustalla." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "" + +#: fdmprinter.def.json +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Kun miniminopeuteen päädytään kerroksen minimiajan johdosta, nosta pää pois tulosteesta ja odota, kunnes kerroksen minimiaika täyttyy." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Alustaa lasketaan aina kun takaisinveto tehdään, jotta suuttimen ja tulosteen väliin jää tilaa. Tämä estää suuttimen osumisen tulosteeseen siirtoliikkeen yhteydessä ja vähentää näin sen vaaraa, että tuloste työnnetään pois alustalta." + +#: fdmprinter.def.json +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 "Kumoaako tuen X-/Y-etäisyys tuen Z-etäisyyden vai päinvastoin. Kun X/Y kumoaa Z:n, X-/Y-etäisyys saattaa työntää tuen pois mallista, mikä vaikuttaa todelliseen Z-etäisyyteen ulokkeeseen. Tämä voidaan estää poistamalla X-/Y-etäisyyden käyttö ulokkeiden lähellä." + +#: fdmprinter.def.json +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 "Ovatko tulostimen nollasijainnin X-/Y-koordinaatit tulostettavan alueen keskellä." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Sisältääkö laite lämmitettävän alustan." + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." msgstr "" #: fdmprinter.def.json @@ -6613,244 +6196,391 @@ msgid "Whether to center the object on the middle of the build platform (0,0), i msgstr "Määrittää, keskitetäänkö kappale alustan keskelle (0,0) sen sijasta, että käytettäisiin koordinaattijärjestelmää, jolla kappale on tallennettu." #: fdmprinter.def.json -msgctxt "mesh_position_x label" -msgid "Mesh Position X" +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 "Lämpötilan hallinta Curan kautta. Kytke tämä pois, niin voit hallita suuttimen lämpötilaa Curan ulkopuolella." + +#: fdmprinter.def.json +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 "Sisällytetäänkö alustan lämpötilakomennot GCoden alkuun. Kun aloitus-GCode sisältää jo alustan lämpötilakomennot, Cura-edustaohjelma poistaa tämän asetuksen automaattisesti käytöstä." + +#: fdmprinter.def.json +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 "Sisällytetäänkö suuttimen lämpötilakomennot GCoden alkuun. Kun start_gcode sisältää jo suuttimen lämpötilakomennot, Cura-edustaohjelma poistaa tämän asetuksen automaattisesti käytöstä." + +#: fdmprinter.def.json +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 "" #: fdmprinter.def.json -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Siirtymää sovelletaan kohteeseen X-suunnassa." +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 "Lisätäänkö komento, jolla odotetaan alustan lämpötilan saavuttamista alussa." #: fdmprinter.def.json -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" +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 "Tulostuslangan esitäyttö materiaalipisaralla ennen tulostusta. Tämän asetuksen käyttöönotolla varmistat, että suulakkeen suuttimessa on materiaalia valmiina ennen tulostusta. Myös helman tai reunuksen tulostaminen voi toimia esitäyttönä, jolloin tämän asetuksen käytöstä poisto säästää hieman aikaa." + +#: fdmprinter.def.json +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 "" #: fdmprinter.def.json -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Siirtymää sovelletaan kohteeseen Y-suunnassa." +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Näytetäänkö laitteen eri variantit, jotka kuvataan erillisissä json-tiedostoissa." #: fdmprinter.def.json -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" +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 "" #: fdmprinter.def.json -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 "Kappaleessa käytetty siirtymä z-suunnassa. Tällä toiminnolla voit suorittaa aiemmin ”kappaleen upotukseksi” kutsutun toiminnon." +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Odotetaanko suuttimen lämpötilan saavuttamista alussa." #: fdmprinter.def.json -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "Verkon pyöritysmatriisi" +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Yhden täyttölinjan leveys." #: fdmprinter.def.json -msgctxt "mesh_rotation_matrix description" -msgid "Transformation matrix to be applied to the model when loading it from file." -msgstr "Mallissa käytettävä muunnosmatriisi, kun malli ladataan tiedostosta." +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 "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "2D-siluetti tulostuspäästä (tuulettimen päät mukaan lukien)" +#: fdmprinter.def.json +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." -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Ulkoseinämät ennen sisäseinämiä" +#: fdmprinter.def.json +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 "Yhden linjan leveys. Yleensä kunkin linjan leveyden tulisi vastata suuttimen leveyttä. Pienentämällä tätä arvoa hiukan voidaan kuitenkin mahdollisesti tuottaa parempia tulosteita." -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Seinämät tulostetaan ulkoa sisäänpäin, kun tämä on käytössä. Asetuksella voidaan auttaa parantamaan X:n ja Y:n dimensiotarkkuutta ABS:n kaltaista korkeaviskoosista muovia käytettäessä. Se voi kuitenkin heikentää ulkopinnan tulostuslaatua etenkin ulokkeissa." +#: fdmprinter.def.json +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Yhden esitäyttötornin linjan leveys." -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Kompensoi seinämän limityksiä" +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Yhden helma- tai reunuslinjan leveys." -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Kompensoi tulostettaessa virtausta niiden seinämien osien kohdalla, joissa on jo olemassa seinämä." +#: fdmprinter.def.json +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Tukilattian yhden linjan leveys." -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Kompensoi ulkoseinämän limityksiä" +#: fdmprinter.def.json +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Tukikaton yhden linjan leveys." -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Kompensoi tulostettaessa virtausta niiden ulkoseinämien osien kohdalla, joissa on jo olemassa seinämä." +#: fdmprinter.def.json +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Yhden tukirakenteen linjan leveys." -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Kompensoi sisäseinämän limityksiä" +#: fdmprinter.def.json +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Yhden ylä-/alalinjan leveys." -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Kompensoi tulostettaessa virtausta niiden sisäseinämien osien kohdalla, joissa on jo olemassa seinämä." +#: fdmprinter.def.json +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Yhden seinämälinjan leveys. Koskee kaikkia muita paitsi ulommaista seinämää." -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Täytä seinämien väliset raot" +#: fdmprinter.def.json +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Yhden seinämälinjan leveys." -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Täyttää raot seinämien välissä, kun seinämät eivät ole sopivia." +#: fdmprinter.def.json +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 "Pohjaristikon pohjakerroksen linjojen leveys. Näiden tulisi olla paksuja linjoja auttamassa tarttuvuutta alustaan." -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Ei missään" +#: fdmprinter.def.json +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 "Pohjaristikon keskikerroksen linjojen leveys. Pursottamalla toiseen kerrokseen enemmän saa linjat tarttumaan alustaan." -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Kaikkialla" +#: fdmprinter.def.json +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 "Pohjaristikon pintakerrosten linjojen leveys. Näiden tulisi olla ohuita linjoja, jotta pohjaristikon yläosasta tulee sileä." -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Yhdenmukaista tulostuslangan virtaus" +#: fdmprinter.def.json +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 "Ulommaisen seinämälinjan leveys. Tätä arvoa pienentämällä voidaan tulostaa tarkempia yksityiskohtia." -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Normaaleja ohuempien linjojen tulostus nopeammin niin, että pursotetun materiaalin määrä sekunnissa pysyy samana. Mallin ohuet kappaleet saattavat edellyttää asetuksia pienemmällä linjan leveydellä tulostettuja linjoja. Tällä asetuksella hallitaan tällaisten linjojen nopeuden muutoksia." +#: fdmprinter.def.json +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 "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Virtauksen yhdenmukaistamisen maksiminopeus" +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "" -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "Tulostuksen maksiminopeus, kun tulostusnopeutta säädetään virtauksen yhdenmukaistamista varten." +#: fdmprinter.def.json +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "" -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Maksimisyöttönopeus" +#: fdmprinter.def.json +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Pyyhi esitäyttötornin ei-aktiivinen suutin" -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "Muotin ulkoseinän ja mallin ulkoseinän välinen vähimmäisetäisyys." +#: fdmprinter.def.json +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "" -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Käytä suulakkeen siirtymää koordinaattijärjestelmään." +#: fdmprinter.def.json +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "" -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Kuori" +#: fdmprinter.def.json +msgctxt "wipe_pause label" +msgid "Wipe Pause" +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, while an angle of 90° is vertical." -#~ msgstr "Kappaleesi ylä- ja/tai alapinnan ylä- ja alapintakalvoja ei laajenneta, jos niiden kulma on suurempi kuin tämä asetus. Tällä vältetään laajentamasta kapeita pintakalvoja, jotka syntyvät, kun mallin pinnalla on lähes pystysuora rinne. 0 °:n kulma on vaakasuora ja 90 °:n kulma on pystysuora." +#: fdmprinter.def.json +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +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." -#~ msgstr "Alkukerroksen nopeus. Alhaisempi arvo on suositeltava, jotta tarttuvuus alustaan on parempi." +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "" -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "Lämmitettävän alustan lämpötila ensimmäistä kerrosta tulostettaessa." +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "" -#~ msgctxt "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Täyttöverkkojärjestys" +#: fdmprinter.def.json +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "" -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Määrittää, mikä täyttöverkko on toisen täyttöverkon täytön sisällä. Korkeamman järjestyksen täyttöverkko muokkaa pienemmän järjestyksen täyttöverkkojen ja normaalien verkkojen täyttöä." +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "" -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Spagettitäyttö" +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "" -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Tulostaa täytön silloin tällöin, niin että tulostuslanka kiertyy sattumanvaraisesti kappaleen sisälle. Tämä lyhentää tulostusaikaa, mutta toimintatapa on melko arvaamaton." +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "" -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Spagettitäyttö vaiheittain" +#: fdmprinter.def.json +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "" -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Spagettitäytön tulostus vaiheittain vai kaiken täyttötulostuslangan pursotus tulostuksen lopussa." +#: fdmprinter.def.json +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "" -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Spagettitäytön enimmäiskulma" +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "" -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "Tulosteen sisustan suurin mahdollinen kulma Z-akseliin nähden alueilla, jotka täytetään myöhemmin spagettitäytöllä. Tämän arvon alentaminen johtaa siihen, että useampia mallin vinottaisia osia täytetään jokaisessa kerroksessa." +#: fdmprinter.def.json +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 "" -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Spagettitäytön enimmäiskorkeus" +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "" -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "Yhdistettävän ja yläpuolelta täytettävän sisätilan enimmäiskorkeus." +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "" -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Spagettiliitos" +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y kumoaa Z:n" -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "Siirtymä seinämistä, joista spagettitäyttö tulostetaan." +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "" -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Spagettivirtaus" +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "" -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Säätää spagettitäytön tiheyttä. Huomaa, että täyttötiheys hallitsee vain täyttökuvion linjojen välien suuruutta, ei spagettitäytön pursotusmäärää." +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Z-hyppy suulakkeen vaihdon jälkeen" -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Spagettitäytön ylimääräinen ainemäärä" +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "" -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Korjausehto pursotettavan aineen kokonaismäärän säätöön jokaisen spagettitäytön aikana." +#: fdmprinter.def.json +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Z-hypyn korkeus" -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "Materiaalin GUID. Tämä määritetään automaattisesti. " +#: fdmprinter.def.json +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Z-hyppy vain tulostettujen osien yli" -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Tulostuslangan säilytysetäisyys" +#: fdmprinter.def.json +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "" -#~ msgctxt "machine_filament_park_distance description" -#~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used." -#~ msgstr "Suuttimen kärjestä mitattu etäisyys, jonka päähän tulostuslanka asetetaan säilytykseen, kun suulaketta ei enää käytetä." +#: fdmprinter.def.json +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Z-hyppy takaisinvedon yhteydessä" -#~ msgctxt "retraction_enable description" -#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " -#~ msgstr "Vedä tulostuslanka takaisin, kun suutin liikkuu sellaisen alueen yli, jota ei tulosteta. " +#: fdmprinter.def.json +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Z-sauman kohdistus" -#~ msgctxt "support_xy_distance_overhang description" -#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " -#~ msgstr "Tukirakenteen etäisyys ulokkeesta X-/Y-suunnissa. " +#: fdmprinter.def.json +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "" -#~ msgctxt "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "category_fixes" +#: fdmprinter.def.json +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Z-sauma suhteellinen" -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "category_blackmagic" +#: fdmprinter.def.json +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z-sauma X" -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "kokeellinen!" +#: fdmprinter.def.json +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z-sauma Y" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z kumoaa X/Y:n" + +#: fdmprinter.def.json +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Siksak" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Siksak" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Siksak" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Siksak" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Siksak" + +#: fdmprinter.def.json +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Siksak" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Siksak" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Siksak" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Siksak" + +#: fdmprinter.def.json +msgctxt "travel description" +msgid "travel" +msgstr "siirtoliike" #~ msgctxt "machine_head_polygon description" #~ msgid "A 2D silhouette of the print head (fan caps excluded)." #~ msgstr "2D-siluetti tulostuspäästä (tuulettimen kannattimet pois lukien)" -#~ 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 only possible if 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 "Tulostetaanko kaikki mallit kerros kerrallaan vai odotetaanko yhden mallin valmistumista ennen kuin siirrytään seuraavaan. Yksi kerrallaan -tila on mahdollinen vain silloin, jos kaikki mallit ovat erillään siten, että koko tulostuspää voi siirtyä niiden välillä ja kaikki mallit ovat suuttimen ja X-/Y-akselien välistä etäisyyttä alempana." +#~ msgctxt "machine_head_with_fans_polygon description" +#~ msgid "A 2D silhouette of the print head (fan caps included)." +#~ msgstr "2D-siluetti tulostuspäästä (tuulettimen päät mukaan lukien)" + +#~ msgctxt "spaghetti_infill_extra_volume description" +#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." +#~ msgstr "Korjausehto pursotettavan aineen kokonaismäärän säätöön jokaisen spagettitäytön aikana." + +#~ msgctxt "sub_div_rad_mult description" +#~ msgid "A multiplier on 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 more subdivisions, i.e. more small cubes." +#~ msgstr "Säteen kerroin kunkin kuution keskipisteestä mallin rajojen tarkistamiseksi. Näin määritetään, tuleeko kuutioon tehdä alajako. Suuremmat arvot tuottavat enemmän alajakoja eli enemmän pieniä kuutioita." + +#~ msgctxt "support_interface_density description" +#~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +#~ msgstr "Säätää tukirakenteen kattojen ja alaosien tiheyttä. Korkeammat arvot tuottavat parempia ulokkeita, mutta tuet on vaikeampi poistaa." + +#~ msgctxt "spaghetti_flow description" +#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." +#~ msgstr "Säätää spagettitäytön tiheyttä. Huomaa, että täyttötiheys hallitsee vain täyttökuvion linjojen välien suuruutta, ei spagettitäytön pursotusmäärää." + +#~ msgctxt "dual_pre_wipe description" +#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." +#~ msgstr "Pyyhi suuttimen vaihdon jälkeen tihkunut materiaali pois suuttimesta, kun ensimmäinen kappale on tulostettu. Näin saadaan aikaan turvallinen ja hidas pyyhkäisyliike kohdassa, jossa tihkunut materiaali vaurioittaa mahdollisimman vähän tulostuksen pinnan laatua." + +#~ msgctxt "cross_infill_apply_pockets_alternatingly label" +#~ msgid "Alternate Cross 3D Pockets" +#~ msgstr "Vuoroittaiset risti 3D -taskut" #~ msgctxt "skin_alternate_rotation label" #~ msgid "Alternate Skin Rotation" @@ -6860,131 +6590,67 @@ msgstr "Mallissa käytettävä muunnosmatriisi, kun malli ladataan tiedostosta." #~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." #~ msgstr "Muuttaa ylä-/alakerrosten tulostussuuntaa. Normaalisti ne tulostetaan vain vinottain. Tämä asetus lisää vain X- ja vain Y -suunnat." -#~ msgctxt "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "Yläpinnan läpikäynti yhden ylimääräisen kerran ilman materiaalin pursotusta. Tämän tarkoitus on sulattaa yläosan muovia enemmän, jolloin saadaan sileämpi pinta." +#~ msgctxt "prime_tower_purge_volume description" +#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." +#~ msgstr "Poistettavan tulostuslangan määrä esitäyttötornia pyyhittäessä. Poisto on hyödyllinen menetetyn tulostuslangan kompensointiin, silloin kun sitä tihkuu suuttimen ollessa ei-aktiivinen." -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "Aloita kerrokset samalla osalla" +#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" +#~ msgid "Apply the extruder offset to the coordinate system." +#~ msgstr "Käytä suulakkeen siirtymää koordinaattijärjestelmään." -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "Aloita tulostus jokaisessa kerroksessa tulostamalla kappale, joka on lähellä samaa pistettä, jotta uutta kerrosta ei aloiteta tulostamalla kappaletta, johon edellinen kerros päättyi. Näin saadaan aikaan paremmat ulokkeet ja pienet osat, mutta tulostus kestää kauemmin." +#~ msgctxt "material_flow_dependent_temperature label" +#~ msgid "Auto Temperature" +#~ msgstr "Automaattinen lämpötila" -#~ 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." -#~ msgstr "Määritä, vaikuttavatko mallin ulkolinjan kulmat sauman sijaintiin. Ei mitään tarkoittaa, että kulmilla ei ole vaikutusta sauman sijaintiin. Piilota sauma -valinnalla sauman sijainti sisäkulmassa on todennäköisempää. Paljasta sauma -valinnalla sauman sijainti ulkokulmassa on todennäköisempää. Piilota tai paljasta sauma -valinnalla sauman sijainti sisä- tai ulkokulmassa on todennäköisempää." +#~ msgctxt "z_seam_type option back" +#~ msgid "Back" +#~ msgstr "Taakse" -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "Ohita pienet Z-raot" +#~ msgctxt "machine_shape label" +#~ msgid "Build plate shape" +#~ msgstr "Alustan muoto" -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "Kun mallissa on pieniä pystyrakoja, ylä- ja alapuolen pintakalvon tekemiseen näihin kapeisiin paikkoihin voi kulua noin 5 % ylimääräistä laskenta-aikaa. Poista siinä tapauksessa tämä asetus käytöstä." +#~ msgctxt "center_object label" +#~ msgid "Center object" +#~ msgstr "Keskitä kappale" -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "Z:n maksiminopeus" - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "Maksiminopeus, jolla alustaa liikutetaan. Jos tämä määritetään nollaan, tulostuksessa käytetään laiteohjelmiston oletusasetuksia Z:n maksiminopeudelle." - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." -#~ msgstr "Tukirakenteiden maksimietäisyys toisistaan X-/Y-suunnissa. Kun erilliset rakenteet ovat tätä arvoa lähempänä toisiaan, rakenteet sulautuvat toisiinsa." - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "Minimiläpimitta" - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "Erityisellä tukitornilla tuettavan pienen alueen minimiläpimitta X- ja Y-suunnissa." - -#~ msgctxt "prime_tower_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." -#~ msgstr "Virtauksen kompensointi: pursotetun materiaalin määrä kerrotaan tällä arvolla." - -#~ 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 "Vähennä Z-sauman näkyvyyttä tasoittamalla kierukoidut ääriviivat (Z-sauman pitäisi olla lähes näkymätön tulosteessa, mutta kerrosnäkymässä sen voi edelleen havaita). Ota huomioon, että tasoittaminen usein sumentaa pinnan pieniä yksityiskohtia." - -#~ msgctxt "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "Kokeellinen ominaisuus: tekee tukialueet pienemmiksi alaosassa verrattuna ulokkeeseen." - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "Suuttimen ulkoläpimitta" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "Suuttimen pituus" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "Suuttimen kulma" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "Lämpöalueen pituus" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "Lämpenemisnopeus" - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "Jäähdytysnopeus" - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "Kielletyt alueet" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "Laiteen pään monikulmio" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "Laiteen pään ja tuulettimen monikulmio" - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "Korokkeen korkeus" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "Suulakkeen siirtymä" - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Limityksen määrä pintakalvon ja seinämien välillä. Pienellä limityksellä seinämät liittyvät tukevasti pintakalvoon." - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." -#~ msgstr "Takaisinvedon määrä: 0 tarkoittaa, että takaisinvetoa ei ole lainkaan. Tämän on yleensä oltava sama kuin lämpöalueen pituus." - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Samankeskinen 3D" +#~ msgctxt "material_flow_dependent_temperature description" +#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." +#~ msgstr "Muuta kunkin kerroksen lämpötilaa automaattisesti kyseisen kerroksen keskimääräisen virtausnopeuden mukaan." #~ 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 by combing within the infill only." #~ msgstr "Pyyhkäisy pitää suuttimen aiemmin tulostetuilla alueilla siirtoliikkeitä tehtäessä. Tämä johtaa hieman pidempiin siirtoliikkeisiin, mutta vähentää takaisinvedon tarvetta. Jos pyyhkäisy on poistettu käytöstä, materiaalille tehdään takaisinveto ja suutin liikkuu suoraan seuraavaan pisteeseen. On myös mahdollista välttää pyyhkäisy ylä- tai alapintakalvojen yli pyyhkäisemällä vain täytössä." -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Samankeskinen 3D" +#~ msgctxt "wireframe_strategy option compensate" +#~ msgid "Compensate" +#~ msgstr "Kompensoi" -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Samankeskinen 3D" +#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" +#~ msgid "Compensate Inner Wall Overlaps" +#~ msgstr "Kompensoi sisäseinämän limityksiä" -#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" +#~ msgid "Compensate Outer Wall Overlaps" +#~ msgstr "Kompensoi ulkoseinämän limityksiä" + +#~ msgctxt "travel_compensate_overlapping_walls_enabled label" +#~ msgid "Compensate Wall Overlaps" +#~ msgstr "Kompensoi seinämän limityksiä" + +#~ msgctxt "travel_compensate_overlapping_walls_enabled description" +#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." +#~ msgstr "Kompensoi tulostettaessa virtausta niiden seinämien osien kohdalla, joissa on jo olemassa seinämä." + +#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" +#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." +#~ msgstr "Kompensoi tulostettaessa virtausta niiden sisäseinämien osien kohdalla, joissa on jo olemassa seinämä." + +#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" +#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." +#~ msgstr "Kompensoi tulostettaessa virtausta niiden ulkoseinämien osien kohdalla, joissa on jo olemassa seinämä." + +#~ msgctxt "infill_pattern option concentric_3d" #~ msgid "Concentric 3D" #~ msgstr "Samankeskinen 3D" @@ -6992,61 +6658,305 @@ msgstr "Mallissa käytettävä muunnosmatriisi, kun malli ladataan tiedostosta." #~ msgid "Concentric 3D" #~ msgstr "Samankeskinen 3D" -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "Pohjaristikon linjajako" +#~ msgctxt "support_interface_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Samankeskinen 3D" -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "Esitäyttötornin paksuus" +#~ msgctxt "support_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Samankeskinen 3D" -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "Onton esitäyttötornin paksuus. Jos paksuus ylittää puolet esitäyttötornin minimitilavuudesta, tuloksena on tiheä esitäyttötorni." +#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Samankeskinen 3D" -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "Pyyhi suutin vaihdon jälkeen" +#~ msgctxt "zig_zaggify_infill description" +#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +#~ msgstr "Yhdistä päät, joissa täyttökuvio kohtaa sisäseinämän käyttämällä linjoja, jotka seuraavat sisäseinämän muotoa. Tämän asetuksen ottaminen käyttöön voi saada täytön tarttumaan seinämiin paremmin ja vähentää täytön vaikutusta pystypintojen laatuun. Tämän asetuksen poistaminen käytöstä vähentää käytettävän materiaalin määrää." -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "Pyyhi suuttimen vaihdon jälkeen tihkunut materiaali pois suuttimesta, kun ensimmäinen kappale on tulostettu. Näin saadaan aikaan turvallinen ja hidas pyyhkäisyliike kohdassa, jossa tihkunut materiaali vaurioittaa mahdollisimman vähän tulostuksen pinnan laatua." +#~ 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." +#~ msgstr "Määritä, vaikuttavatko mallin ulkolinjan kulmat sauman sijaintiin. Ei mitään tarkoittaa, että kulmilla ei ole vaikutusta sauman sijaintiin. Piilota sauma -valinnalla sauman sijainti sisäkulmassa on todennäköisempää. Paljasta sauma -valinnalla sauman sijainti ulkokulmassa on todennäköisempää. Piilota tai paljasta sauma -valinnalla sauman sijainti sisä- tai ulkokulmassa on todennäköisempää." -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "Esitäyttötornin poistoainemäärä" +#~ msgctxt "machine_nozzle_cool_down_speed label" +#~ msgid "Cool down speed" +#~ msgstr "Jäähdytysnopeus" -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "Poistettavan tulostuslangan määrä esitäyttötornia pyyhittäessä. Poisto on hyödyllinen menetetyn tulostuslangan kompensointiin, silloin kun sitä tihkuu suuttimen ollessa ei-aktiivinen." +#~ msgctxt "wireframe_top_jump description" +#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." +#~ msgstr "Tekee pienen solmun nousulinjan yläpäähän, jotta seuraava vaakasuora kerros pystyy paremmin liittymään siihen. Koskee vain rautalankamallin tulostusta." -#~ 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." -#~ msgstr "Optimoi seinämien tulostusjärjestys takaisinvetojen ja kuljetun etäisyyden vähentämiseksi. Useimmat osat hyötyvät tämän asetuksen käytöstä, mutta joissakin saattaa kestää kauemmin, joten vertaa tulostusajan arvioita optimointia käytettäessä ja ilman sitä." +#~ msgctxt "sub_div_rad_mult label" +#~ msgid "Cubic Subdivision Radius" +#~ msgstr "Kuution alajaon säde" -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "Ei pintakalvoa" +#~ msgctxt "wireframe_bottom_delay description" +#~ msgid "Delay time after a downward move. Only applies to Wire Printing." +#~ msgstr "Viive laskuliikkeen jälkeen. Koskee vain rautalankamallin tulostusta." -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "Vuoroittaiset risti 3D -taskut" +#~ msgctxt "wireframe_top_delay description" +#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." +#~ msgstr "Viive nousuliikkeen jälkeen, jotta linja voi kovettua. Koskee vain rautalankamallin tulostusta." -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "Käytä taskuja vain puolessa nelisuuntaisista risteyksistä risti 3D -kuviossa ja vuorottele taskujen sijainnit sellaisten korkeuksien välillä, joissa kuvio koskettaa itseään." +#~ msgctxt "wireframe_flat_delay description" +#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." +#~ msgstr "Viive kahden vaakasuoran segmentin välillä. Tämän viiveen käyttöönotto voi parantaa tarttuvuutta edellisiin kerroksiin liitoskohdissa, mutta liian suuret viiveet aiheuttavat riippumista. Koskee vain rautalankamallin tulostusta." + +#~ msgctxt "infill_mesh_order description" +#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "Määrittää, mikä täyttöverkko on toisen täyttöverkon täytön sisällä. Korkeamman järjestyksen täyttöverkko muokkaa pienemmän järjestyksen täyttöverkkojen ja normaalien verkkojen täyttöä." + +#~ msgctxt "machine_disallowed_areas label" +#~ msgid "Disallowed areas" +#~ msgstr "Kielletyt alueet" + +#~ msgctxt "wireframe_nozzle_clearance description" +#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." +#~ msgstr "Suuttimen ja vaakasuoraan laskevien linjojen välinen etäisyys. Suurempi väli aiheuttaa vähemmän jyrkän kulman diagonaalisesti laskeviin linjoihin, mikä puolestaan johtaa harvempiin yläliitoksiin seuraavan kerroksen kanssa. Koskee vain rautalankamallin tulostusta." + +#~ msgctxt "support_interface_line_distance description" +#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." +#~ msgstr "Tulostettujen tukiliittymän linjojen välinen etäisyys. Tämä asetus lasketaan tukiliittymän tiheysarvosta, mutta sitä voidaan säätää erikseen." + +#~ 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. This value is rounded down to a multiple of the layer height." +#~ msgstr "Tukirakenteen etäisyys tulosteesta ylä-/alasuunnassa. Tämä rako sallii tukien poistamisen mallin tulostuksen jälkeen. Tämä arvo pyöristetään alaspäin kerroksen korkeuden kerrannaiseksi." + +#~ msgctxt "wireframe_up_half_speed description" +#~ msgid "" +#~ "Distance of an upward move which is extruded with half speed.\n" +#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." +#~ msgstr "" +#~ "Puolella nopeudella pursotetun nousuliikkeen etäisyys.\n" +#~ "Se voi parantaa tarttuvuutta edellisiin kerroksiin kuumentamatta materiaalia liikaa kyseisissä kerroksissa. Koskee vain rautalankamallin tulostusta." + +#~ msgctxt "support_xy_distance_overhang description" +#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " +#~ msgstr "Tukirakenteen etäisyys ulokkeesta X-/Y-suunnissa. " + +#~ msgctxt "wireframe_fall_down description" +#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Etäisyys, jonka materiaali putoaa ylöspäin menevän pursotuksen jälkeen. Tämä etäisyys kompensoidaan. Koskee vain rautalankamallin tulostusta." + +#~ msgctxt "wireframe_drag_along description" +#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Etäisyys, jonka ylöspäin pursotettu materiaali laahautuu diagonaalisen laskevan pursotuksen mukana. Tämä etäisyys kompensoidaan. Koskee vain rautalankamallin tulostusta." + +#~ msgctxt "multiple_mesh_overlap label" +#~ msgid "Dual Extrusion Overlap" +#~ msgstr "Kaksoispursotuksen limitys" + +#~ msgctxt "support_enable label" +#~ msgid "Enable Support" +#~ msgstr "Ota tuki käyttöön" + +#~ msgctxt "support_enable description" +#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." +#~ msgstr "Ota tukirakenteet käyttöön. Nämä rakenteet tukevat mallin osia, joissa on merkittäviä ulokkeita." + +#~ msgctxt "machine_end_gcode label" +#~ msgid "End GCode" +#~ msgstr "Lopetus-GCode" + +#~ msgctxt "speed_equalize_flow_enabled label" +#~ msgid "Equalize Filament Flow" +#~ msgstr "Yhdenmukaista tulostuslangan virtaus" + +#~ msgctxt "fill_perimeter_gaps option everywhere" +#~ msgid "Everywhere" +#~ msgstr "Kaikkialla" + +#~ msgctxt "expand_lower_skins label" +#~ msgid "Expand Bottom Skins Into Infill" +#~ msgstr "Alimpien pintakalvojen laajennus täyttöalueelle" + +#~ msgctxt "expand_lower_skins label" +#~ msgid "Expand Lower Skins" +#~ msgstr "Laajenna alemmat pintakalvot" + +#~ msgctxt "expand_skins_into_infill label" +#~ msgid "Expand Skins Into Infill" +#~ msgstr "Laajenna pintakalvot täyttöalueelle" + +#~ msgctxt "expand_upper_skins label" +#~ msgid "Expand Top Skins Into Infill" +#~ msgstr "Ylimpien pintakalvojen laajennus täyttöalueelle" + +#~ msgctxt "expand_upper_skins label" +#~ msgid "Expand Upper Skins" +#~ msgstr "Laajenna ylemmät pintakalvot" + +#~ msgctxt "expand_lower_skins description" +#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." +#~ msgstr "Laajenna alemmat pintakalvot (alueet, joiden alapuolella on ilmaa) niin, että ylä- ja alapuoliset täyttökerrokset ankkuroivat ne." + +#~ msgctxt "expand_skins_into_infill description" +#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." +#~ msgstr "Laajenna tasaisten pintojen ylä- ja/tai alapuolen pintakalvot. Oletuksena pintakalvot päättyvät täyttöalueen ympäröivien seinämälinjojen alla, mutta tämä voi aiheuttaa reikiä, kun täyttöalueen tiheys on alhainen. Tämä asetus laajentaa pintakalvot seinämälinjoja pidemmälle niin, että seuraavan kerroksen täyttöalue lepää pintakalvon päällä." + +#~ msgctxt "expand_lower_skins description" +#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." +#~ msgstr "Laajenna alimmat pintakalvot (alueet, joiden alapuolella on ilmaa) niin, että ylä- ja alapuoliset täyttökerrokset ankkuroivat ne." + +#~ msgctxt "expand_upper_skins description" +#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." +#~ msgstr "Laajenna ylimmät pintakalvot (alueet, joiden yläpuolella on ilmaa) niin, että ne tukevat yläpuolista täyttöaluetta." + +#~ msgctxt "expand_upper_skins description" +#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." +#~ msgstr "Laajenna ylemmät pintakalvot (alueet, joiden yläpuolella on ilmaa) niin, että ne tukevat yläpuolista täyttöaluetta." + +#~ msgctxt "support_conical_enabled description" +#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." +#~ msgstr "Kokeellinen ominaisuus: tekee tukialueet pienemmiksi alaosassa verrattuna ulokkeeseen." + +#~ msgctxt "machine_filament_park_distance label" +#~ msgid "Filament Park Distance" +#~ msgstr "Tulostuslangan säilytysetäisyys" + +#~ msgctxt "fill_perimeter_gaps label" +#~ msgid "Fill Gaps Between Walls" +#~ msgstr "Täytä seinämien väliset raot" + +#~ msgctxt "fill_perimeter_gaps description" +#~ msgid "Fills the gaps between walls where no walls fit." +#~ msgstr "Täyttää raot seinämien välissä, kun seinämät eivät ole sopivia." + +#~ msgctxt "wireframe_flow_connection description" +#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." +#~ msgstr "Virtauksen kompensointi ylös tai alas mentäessä. Koskee vain rautalankamallin tulostusta." + +#~ msgctxt "wireframe_flow_flat description" +#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." +#~ msgstr "Virtauksen kompensointi tulostettaessa latteita linjoja. Koskee vain rautalankamallin tulostusta." + +#~ msgctxt "prime_tower_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." +#~ msgstr "Virtauksen kompensointi: pursotetun materiaalin määrä kerrotaan tällä arvolla." + +#~ msgctxt "wireframe_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." +#~ msgstr "Virtauksen kompensointi: Pursotetun materiaalin määrä kerrotaan tällä arvolla. Koskee vain rautalankamallin tulostusta." + +#~ msgctxt "material_guid description" +#~ msgid "GUID of the material. This is set automatically. " +#~ msgstr "Materiaalin GUID. Tämä määritetään automaattisesti. " + +#~ msgctxt "gantry_height label" +#~ msgid "Gantry height" +#~ msgstr "Korokkeen korkeus" + +#~ msgctxt "machine_end_gcode description" +#~ msgid "" +#~ "Gcode commands to be executed at the very end - separated by \n" +#~ "." +#~ msgstr "" +#~ "GCode-komennot, jotka suoritetaan aivan lopussa – eroteltuina merkillä \n" +#~ "." + +#~ msgctxt "machine_start_gcode description" +#~ msgid "" +#~ "Gcode commands to be executed at the very start - separated by \n" +#~ "." +#~ msgstr "" +#~ "GCode-komennot, jotka suoritetaan aivan alussa – eroteltuina merkillä \n" +#~ "." + +#~ msgctxt "machine_gcode_flavor label" +#~ msgid "Gcode flavour" +#~ msgstr "GCode-tyyppi" + +#~ msgctxt "ironing_enabled description" +#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." +#~ msgstr "Yläpinnan läpikäynti yhden ylimääräisen kerran ilman materiaalin pursotusta. Tämän tarkoitus on sulattaa yläosan muovia enemmän, jolloin saadaan sileämpi pinta." + +#~ msgctxt "machine_heated_bed label" +#~ msgid "Has heated build plate" +#~ msgstr "Sisältää lämmitettävän alustan" + +#~ msgctxt "machine_nozzle_heat_up_speed label" +#~ msgid "Heat up speed" +#~ msgstr "Lämpenemisnopeus" + +#~ msgctxt "machine_heat_zone_length label" +#~ msgid "Heat zone length" +#~ msgstr "Lämpöalueen pituus" #~ msgctxt "infill_hollow label" #~ msgid "Hollow Out Objects" #~ msgstr "Kappaleiden tekeminen ontoiksi" -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "Poistaa kaikki täytöt, jotta kappaletta voidaan käyttää tukena." +#~ msgctxt "skin_no_small_gaps_heuristic label" +#~ msgid "Ignore Small Z Gaps" +#~ msgstr "Ohita pienet Z-raot" -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ msgstr "Keskitä kappale" +#~ msgctxt "start_layers_at_same_position description" +#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." +#~ msgstr "Aloita tulostus jokaisessa kerroksessa tulostamalla kappale, joka on lähellä samaa pistettä, jotta uutta kerrosta ei aloiteta tulostamalla kappaletta, johon edellinen kerros päättyi. Näin saadaan aikaan paremmat ulokkeet ja pienet osat, mutta tulostus kestää kauemmin." + +#~ msgctxt "material_bed_temp_prepend label" +#~ msgid "Include build plate temperature" +#~ msgstr "Sisällytä alustan lämpötila" + +#~ msgctxt "material_print_temp_prepend label" +#~ msgid "Include material temperatures" +#~ msgstr "Sisällytä materiaalilämpötilat" + +#~ msgctxt "infill_mesh_order label" +#~ msgid "Infill Mesh Order" +#~ msgstr "Täyttöverkkojärjestys" + +#~ msgctxt "z_offset_layer_0 label" +#~ msgid "Initial Layer Z Offset" +#~ msgstr "Alkukerroksen Z-siirtymä" + +#~ msgctxt "wall_x_extruder_nr label" +#~ msgid "Inner Walls Extruder" +#~ msgstr "Sisäseinämien suulake" + +#~ msgctxt "machine_center_is_zero label" +#~ msgid "Is center origin" +#~ msgstr "On keskikohdassa" + +#~ msgctxt "wireframe_strategy option knot" +#~ msgid "Knot" +#~ msgstr "Solmu" + +#~ msgctxt "machine_depth label" +#~ msgid "Machine depth" +#~ msgstr "Laitteen syvyys" + +#~ msgctxt "machine_head_with_fans_polygon label" +#~ msgid "Machine head & Fan polygon" +#~ msgstr "Laiteen pään ja tuulettimen monikulmio" + +#~ msgctxt "machine_head_polygon label" +#~ msgid "Machine head polygon" +#~ msgstr "Laiteen pään monikulmio" + +#~ msgctxt "machine_height label" +#~ msgid "Machine height" +#~ msgstr "Laitteen korkeus" + +#~ msgctxt "machine_width label" +#~ msgid "Machine width" +#~ msgstr "Laitteen leveys" + +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "Maksimisyöttönopeus" + +#~ msgctxt "speed_equalize_flow_max label" +#~ msgid "Maximum Speed for Flow Equalization" +#~ msgstr "Virtauksen yhdenmukaistamisen maksiminopeus" + +#~ msgctxt "max_feedrate_z_override label" +#~ msgid "Maximum Z Speed" +#~ msgstr "Z:n maksiminopeus" + +#~ msgctxt "speed_equalize_flow_max description" +#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." +#~ msgstr "Tulostuksen maksiminopeus, kun tulostusnopeutta säädetään virtauksen yhdenmukaistamista varten." #~ msgctxt "mesh_position_x label" #~ msgid "Mesh position x" @@ -7060,193 +6970,89 @@ msgstr "Mallissa käytettävä muunnosmatriisi, kun malli ladataan tiedostosta." #~ msgid "Mesh position z" #~ msgstr "Verkon z-sijainti" -#~ msgctxt "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "Aloitus-GCode" +#~ msgctxt "support_minimal_diameter label" +#~ msgid "Minimum Diameter" +#~ msgstr "Minimiläpimitta" -#~ msgctxt "machine_start_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." -#~ msgstr "" -#~ "GCode-komennot, jotka suoritetaan aivan alussa – eroteltuina merkillä \n" -#~ "." +#~ msgctxt "support_minimal_diameter description" +#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +#~ msgstr "Erityisellä tukitornilla tuettavan pienen alueen minimiläpimitta X- ja Y-suunnissa." -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "Lopetus-GCode" - -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "GCode-komennot, jotka suoritetaan aivan lopussa – eroteltuina merkillä \n" -#~ "." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "GCode-tyyppi" - -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "Luotavan GCoden tyyppi." +#~ msgctxt "retraction_combing option noskin" +#~ msgid "No Skin" +#~ msgstr "Ei pintakalvoa" #~ 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 GCode." #~ msgstr "Normaalisti Cura yrittää silmukoida umpeen pieniä reikiä verkosta ja poistaa kerroksesta osat, joissa on isoja reikiä. Tämän vaihtoehdon käyttöönotto pitää ne osat, joita ei voida silmukoida. Tätä tulisi pitää viimeisenä vaihtoehtona, kun millään muulla ei saada aikaan kunnollista GCodea." -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. 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 Gcode script is output." -#~ msgstr "Käytä suhteellista pursotusta absoluuttisen pursotuksen sijaan. Suhteellisten E-askelten käyttö helpottaa Gcoden jälkikäsittelyä. Kaikki tulostimet eivät kuitenkaan tue sitä, ja se saattaa aiheuttaa hyvin vähäisiä poikkeamia materiaalin määrässä absoluuttisiin E-askeliin verrattuna. Tästä asetuksesta riippumatta pursotustila on aina absoluuttinen, ennen kuin mitään Gcode-komentosarjaa tuotetaan." +#~ msgctxt "fill_perimeter_gaps option nowhere" +#~ msgid "Nowhere" +#~ msgstr "Ei missään" -#~ msgctxt "infill_overlap 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." +#~ msgctxt "machine_nozzle_expansion_angle label" +#~ msgid "Nozzle angle" +#~ msgstr "Suuttimen kulma" -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "Limityksen määrä pintakalvon ja seinämien välillä linjaleveyden prosenttina. Pienellä limityksellä seinämät liittyvät tukevasti pintakalvoon. Tämä on pintakalvon linjojen ja sisimmän seinämän keskimääräisten linjaleveyksien prosenttiluku." +#~ msgctxt "machine_nozzle_head_distance label" +#~ msgid "Nozzle length" +#~ msgstr "Suuttimen pituus" -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "Lämmitettävän alustan lämpötila. Jos tämä on 0, pöytä ei lämpene tätä tulostusta varten." +#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" +#~ msgid "Offset With Extruder" +#~ msgstr "Suulakkeen siirtymä" -#~ msgctxt "wall_x_extruder_nr label" -#~ msgid "Inner Walls Extruder" -#~ msgstr "Sisäseinämien suulake" +#~ msgctxt "cross_infill_apply_pockets_alternatingly description" +#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." +#~ msgstr "Käytä taskuja vain puolessa nelisuuntaisista risteyksistä risti 3D -kuviossa ja vuorottele taskujen sijainnit sellaisten korkeuksien välillä, joissa kuvio koskettaa itseään." -#~ 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, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Tulostettava täyttömateriaalin kuvio. Linja- ja siksak-täytöt vaihtavat suuntaa kerrosten välillä, mikä vähentää materiaalikustannuksia. Ristikko-, kolmio-, kuutio-, oktetti-, neljänneskuutio- ja samankeskinen-kuviot tulostetaan kokonaisuudessaan kuhunkin kerrokseen. Kuutio-, neljänneskuutio- ja oktettitäytöt muuttuvat kerroksittain, jotta vahvuus jakautuu tasaisemmin kussakin suunnassa." +#~ 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." +#~ msgstr "Optimoi seinämien tulostusjärjestys takaisinvetojen ja kuljetun etäisyyden vähentämiseksi. Useimmat osat hyötyvät tämän asetuksen käytöstä, mutta joissakin saattaa kestää kauemmin, joten vertaa tulostusajan arvioita optimointia käytettäessä ja ilman sitä." -#~ msgctxt "zig_zaggify_infill description" -#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -#~ msgstr "Yhdistä päät, joissa täyttökuvio kohtaa sisäseinämän käyttämällä linjoja, jotka seuraavat sisäseinämän muotoa. Tämän asetuksen ottaminen käyttöön voi saada täytön tarttumaan seinämiin paremmin ja vähentää täytön vaikutusta pystypintojen laatuun. Tämän asetuksen poistaminen käytöstä vähentää käytettävän materiaalin määrää." +#~ msgctxt "outer_inset_first label" +#~ msgid "Outer Before Inner Walls" +#~ msgstr "Ulkoseinämät ennen sisäseinämiä" -#~ 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 "" -#~ "Vaakasuora etäisyys helman ja tulosteen ensimmäisen kerroksen välillä.\n" -#~ "Tämä on minimietäisyys; useampia helmalinjoja käytettäessä ne ulottuvat tämän etäisyyden ulkopuolelle." +#~ msgctxt "machine_nozzle_tip_outer_diameter label" +#~ msgid "Outer nozzle diameter" +#~ msgstr "Suuttimen ulkoläpimitta" -#~ msgctxt "z_offset_layer_0 label" -#~ msgid "Initial Layer Z Offset" -#~ msgstr "Alkukerroksen Z-siirtymä" +#~ msgctxt "wireframe_straight_before_down description" +#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." +#~ msgstr "Prosenttiluku diagonaalisesti laskevasta linjasta, jota peittää vaakalinjan pätkä. Tämä voi estää nousulinjojen ylimmän kohdan riippumista. Koskee vain rautalankamallin tulostusta." -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "Suulaketta siirretään ensimmäisen kerroksen normaalista korkeudesta tällä määrällä. Se voi olla positiivinen (nostettu) tai negatiivinen (laskettu). Jotkin tulostuslankatyypit tarttuvat alustaan paremmin, jos suulaketta nostetaan hieman." +#~ msgctxt "prime_tower_purge_volume label" +#~ msgid "Prime Tower Purge Volume" +#~ msgstr "Esitäyttötornin poistoainemäärä" -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Z-siirtymän kapenevat kerrokset" +#~ msgctxt "prime_tower_wall_thickness label" +#~ msgid "Prime Tower Thickness" +#~ msgstr "Esitäyttötornin paksuus" -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "Kun tämä ei ole nolla, Z-siirtymä pienenee nollaan niin monen kerroksen matkalla. Kun arvo on 0, Z-siirtymä pysyy vakiona kaikille tulostuksen kerroksille." +#~ msgctxt "wireframe_enabled description" +#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." +#~ msgstr "Tulostetaan vain ulkopinta harvalla verkkorakenteella eli tulostetaan \"suoraan ilmaan\". Tämä toteutetaan tulostamalla mallin ääriviivat vaakasuoraan tietyin Z-välein, jotka yhdistetään ylöspäin menevillä linjoilla ja alaspäin menevillä diagonaalilinjoilla." -#~ msgctxt "raft_smoothing description" -#~ msgid "This setting control 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 "Tällä asetuksella säädetään, kuinka paljon pohjaristikon ulkolinjan sisäkulmia pyöristetään. Sisäpuoliset kulmat pyöristetään puoliympyräksi, jonka säde on yhtä suuri kuin tässä annettu arvo. Asetuksella myös poistetaan pohjaristikon ulkolinjan reiät, jotka ovat pienempiä kuin tällainen ympyrä." +#~ msgctxt "spaghetti_infill_enabled description" +#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." +#~ msgstr "Tulostaa täytön silloin tällöin, niin että tulostuslanka kiertyy sattumanvaraisesti kappaleen sisälle. Tämä lyhentää tulostusaikaa, mutta toimintatapa on melko arvaamaton." -#~ 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, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Tulostettava täyttömateriaalin kuvio. Linja- ja siksak-täytöt vaihtavat suuntaa kerrosten välillä, mikä vähentää materiaalikustannuksia. Ristikko-, kolmio-, kuutio-, nelitaho- ja samankeskinen-kuviot tulostetaan kokonaisuudessaan kuhunkin kerrokseen. Kuutio- ja nelitaho-täytöt muuttuvat kerroksittain, jotta vahvuus jakautuu tasaisemmin kussakin suunnassa." +#~ msgctxt "speed_equalize_flow_enabled description" +#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." +#~ msgstr "Normaaleja ohuempien linjojen tulostus nopeammin niin, että pursotetun materiaalin määrä sekunnissa pysyy samana. Mallin ohuet kappaleet saattavat edellyttää asetuksia pienemmällä linjan leveydellä tulostettuja linjoja. Tällä asetuksella hallitaan tällaisten linjojen nopeuden muutoksia." -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "Nelitaho" +#~ msgctxt "outer_inset_first description" +#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." +#~ msgstr "Seinämät tulostetaan ulkoa sisäänpäin, kun tämä on käytössä. Asetuksella voidaan auttaa parantamaan X:n ja Y:n dimensiotarkkuutta ABS:n kaltaista korkeaviskoosista muovia käytettäessä. Se voi kuitenkin heikentää ulkopinnan tulostuslaatua etenkin ulokkeissa." -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "Laajenna pintakalvot täyttöalueelle" +#~ msgctxt "raft_base_line_spacing label" +#~ msgid "Raft Line Spacing" +#~ msgstr "Pohjaristikon linjajako" -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "Laajenna tasaisten pintojen ylä- ja/tai alapuolen pintakalvot. Oletuksena pintakalvot päättyvät täyttöalueen ympäröivien seinämälinjojen alla, mutta tämä voi aiheuttaa reikiä, kun täyttöalueen tiheys on alhainen. Tämä asetus laajentaa pintakalvot seinämälinjoja pidemmälle niin, että seuraavan kerroksen täyttöalue lepää pintakalvon päällä." - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ msgstr "Ylimpien pintakalvojen laajennus täyttöalueelle" - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "Laajenna ylimmät pintakalvot (alueet, joiden yläpuolella on ilmaa) niin, että ne tukevat yläpuolista täyttöaluetta." - -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "Alimpien pintakalvojen laajennus täyttöalueelle" - -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Laajenna alimmat pintakalvot (alueet, joiden alapuolella on ilmaa) niin, että ylä- ja alapuoliset täyttökerrokset ankkuroivat ne." - -#~ msgctxt "expand_skins_expand_distance description" -#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." -#~ msgstr "Pintakalvojen laajennusetäisyys täyttöalueelle. Oletusetäisyys riittää kuromaan umpeen täyttölinjojen väliset raot, ja se estää reikien ilmestymisen pintakalvoon seinämän liitoskohdassa, kun täytön tiheys on alhainen." - -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "Ohita jotkin siksakien yhdistämiset" - -#~ msgctxt "support_skip_some_zags description" -#~ msgid "Skip some ZigZags connections to make the support structure easier to break." -#~ msgstr "Ohita jotkin siksakien yhdistämiset, jotta tukirakenne on helpompi rikkoa." - -#~ msgctxt "support_zag_skip_count label" -#~ msgid "ZigZag Connection Skip Count" -#~ msgstr "Siksakien yhdistämisten ohitusten määrä" - -#~ msgctxt "support_zag_skip_count description" -#~ msgid "Skip one in every N connection lines to make the support structure easier to break." -#~ msgstr "Ohita yksi jokaisesta N-yhdistämislinjasta, jotta tukirakenne on helpompi rikkoa." - -#~ msgctxt "machine_show_variants label" -#~ msgid "Show machine variants" -#~ msgstr "Näytä laitteen variantit" - -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Wait for build plate heatup" -#~ msgstr "Odota alustan lämpenemistä" - -#~ msgctxt "material_print_temp_wait label" -#~ msgid "Wait for nozzle heatup" -#~ msgstr "Odota suuttimen lämpenemistä" - -#~ msgctxt "material_print_temp_prepend label" -#~ msgid "Include material temperatures" -#~ msgstr "Sisällytä materiaalilämpötilat" - -#~ msgctxt "material_bed_temp_prepend label" -#~ msgid "Include build plate temperature" -#~ msgstr "Sisällytä alustan lämpötila" - -#~ msgctxt "machine_width label" -#~ msgid "Machine width" -#~ msgstr "Laitteen leveys" - -#~ msgctxt "machine_depth label" -#~ msgid "Machine depth" -#~ msgstr "Laitteen syvyys" - -#~ msgctxt "machine_shape label" -#~ msgid "Build plate shape" -#~ msgstr "Alustan muoto" - -#~ msgctxt "machine_height label" -#~ msgid "Machine height" -#~ msgstr "Laitteen korkeus" - -#~ msgctxt "machine_heated_bed label" -#~ msgid "Has heated build plate" -#~ msgstr "Sisältää lämmitettävän alustan" - -#~ msgctxt "machine_center_is_zero label" -#~ msgid "Is center origin" -#~ msgstr "On keskikohdassa" +#~ msgctxt "infill_hollow description" +#~ msgid "Remove all infill and make the inside of the object eligible for support." +#~ msgstr "Poistaa kaikki täytöt, jotta kappaletta voidaan käyttää tukena." #~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" #~ msgid "RepRap (Marlin/Sprinter)" @@ -7256,61 +7062,157 @@ msgstr "Mallissa käytettävä muunnosmatriisi, kun malli ladataan tiedostosta." #~ msgid "RepRap (Volumetric)" #~ msgstr "RepRap (volymetrinen)" -#~ msgctxt "wall_thickness description" -#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -#~ msgstr "Ulkoseinämien paksuus vaakatasossa. Tämä arvo jaettuna seinämälinjan leveysarvolla määrittää seinämien lukumäärän." +#~ msgctxt "wireframe_strategy option retract" +#~ msgid "Retract" +#~ msgstr "Takaisinveto" -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Limityksen määrä pintakalvon ja seinämien välillä. Pienellä limityksellä seinämät liittyvät tukevasti pintakalvoon." +#~ msgctxt "retraction_enable description" +#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " +#~ msgstr "Vedä tulostuslanka takaisin, kun suutin liikkuu sellaisen alueen yli, jota ei tulosteta. " -#~ msgctxt "support_interface_line_width description" -#~ msgid "Width of a single support interface line." -#~ msgstr "Yhden tukiliittymän linjan leveys." +#~ msgctxt "shell label" +#~ msgid "Shell" +#~ msgstr "Kuori" -#~ msgctxt "sub_div_rad_mult label" -#~ msgid "Cubic Subdivision Radius" -#~ msgstr "Kuution alajaon säde" +#~ msgctxt "machine_show_variants label" +#~ msgid "Show machine variants" +#~ msgstr "Näytä laitteen variantit" -#~ msgctxt "sub_div_rad_mult description" -#~ msgid "A multiplier on 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 more subdivisions, i.e. more small cubes." -#~ msgstr "Säteen kerroin kunkin kuution keskipisteestä mallin rajojen tarkistamiseksi. Näin määritetään, tuleeko kuutioon tehdä alajako. Suuremmat arvot tuottavat enemmän alajakoja eli enemmän pieniä kuutioita." +#~ msgctxt "support_skip_some_zags label" +#~ msgid "Skip Some ZigZags Connections" +#~ msgstr "Ohita jotkin siksakien yhdistämiset" -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Upper Skins" -#~ msgstr "Laajenna ylemmät pintakalvot" +#~ msgctxt "support_zag_skip_count description" +#~ msgid "Skip one in every N connection lines to make the support structure easier to break." +#~ msgstr "Ohita yksi jokaisesta N-yhdistämislinjasta, jotta tukirakenne on helpompi rikkoa." -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." -#~ msgstr "Laajenna ylemmät pintakalvot (alueet, joiden yläpuolella on ilmaa) niin, että ne tukevat yläpuolista täyttöaluetta." +#~ msgctxt "support_skip_some_zags description" +#~ msgid "Skip some ZigZags connections to make the support structure easier to break." +#~ msgstr "Ohita jotkin siksakien yhdistämiset, jotta tukirakenne on helpompi rikkoa." -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Lower Skins" -#~ msgstr "Laajenna alemmat pintakalvot" +#~ 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 "Vähennä Z-sauman näkyvyyttä tasoittamalla kierukoidut ääriviivat (Z-sauman pitäisi olla lähes näkymätön tulosteessa, mutta kerrosnäkymässä sen voi edelleen havaita). Ota huomioon, että tasoittaminen usein sumentaa pinnan pieniä yksityiskohtia." -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Laajenna alemmat pintakalvot (alueet, joiden alapuolella on ilmaa) niin, että ylä- ja alapuoliset täyttökerrokset ankkuroivat ne." +#~ msgctxt "spaghetti_flow label" +#~ msgid "Spaghetti Flow" +#~ msgstr "Spagettivirtaus" -#~ msgctxt "speed_support_interface description" -#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality." -#~ msgstr "Nopeus, jolla tuen katot ja alaosat tulostetaan. Niiden tulostus hitaammilla nopeuksilla voi parantaa ulokkeen laatua." +#~ msgctxt "spaghetti_infill_enabled label" +#~ msgid "Spaghetti Infill" +#~ msgstr "Spagettitäyttö" + +#~ msgctxt "spaghetti_infill_extra_volume label" +#~ msgid "Spaghetti Infill Extra Volume" +#~ msgstr "Spagettitäytön ylimääräinen ainemäärä" + +#~ msgctxt "spaghetti_max_height label" +#~ msgid "Spaghetti Infill Maximum Height" +#~ msgstr "Spagettitäytön enimmäiskorkeus" + +#~ msgctxt "spaghetti_infill_stepped label" +#~ msgid "Spaghetti Infill Stepping" +#~ msgstr "Spagettitäyttö vaiheittain" + +#~ msgctxt "spaghetti_inset label" +#~ msgid "Spaghetti Inset" +#~ msgstr "Spagettiliitos" + +#~ msgctxt "spaghetti_max_infill_angle label" +#~ msgid "Spaghetti Maximum Infill Angle" +#~ msgstr "Spagettitäytön enimmäiskulma" + +#~ msgctxt "wireframe_printspeed description" +#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." +#~ msgstr "Nopeus, jolla suutin liikkuu materiaalia pursottaessaan. Koskee vain rautalankamallin tulostusta." + +#~ msgctxt "wireframe_printspeed_down description" +#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." +#~ msgstr "Nopeus, jolla tulostetaan linja diagonaalisesti alaspäin. Koskee vain rautalankamallin tulostusta." + +#~ msgctxt "wireframe_printspeed_up description" +#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." +#~ msgstr "Nopeus, jolla tulostetaan linja ylöspäin \"suoraan ilmaan\". Koskee vain rautalankamallin tulostusta." + +#~ msgctxt "wireframe_printspeed_bottom description" +#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." +#~ msgstr "Nopeus, jolla tulostetaan ensimmäinen kerros, joka on ainoa alustaa koskettava kerros. Koskee vain rautalankamallin tulostusta." + +#~ msgctxt "wireframe_printspeed_flat description" +#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." +#~ msgstr "Nopeus, jolla tulostetaan mallin vaakasuorat ääriviivat. Koskee vain rautalankamallin tulostusta." + +#~ 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 used to be called Joris in older versions." +#~ msgstr "Kierukointi pehmentää ulkoreunan Z-liikettä. Se muodostaa tasaisen Z-lisän koko tulosteelle. Tämä toiminto muuttaa umpinaisen mallin yksiseinäiseksi tulosteeksi, jossa on umpinainen pohja. Vanhemmissa versioissa tätä toimintoa kutsuttiin nimellä Joris." + +#~ msgctxt "machine_start_gcode label" +#~ msgid "Start GCode" +#~ msgstr "Aloitus-GCode" + +#~ msgctxt "start_layers_at_same_position label" +#~ msgid "Start Layers with the Same Part" +#~ msgstr "Aloita kerrokset samalla osalla" + +#~ msgctxt "wireframe_strategy description" +#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." +#~ msgstr "Strategia, jolla varmistetaan, että kaksi peräkkäistä kerrosta liittyy toisiinsa kussakin liitoskohdassa. Takaisinveto antaa nousulinjojen kovettua oikeaan asentoon, mutta voi aiheuttaa tulostuslangan hiertymistä. Solmu voidaan tehdä nousulinjan päähän, jolloin siihen liittyminen helpottuu ja linja jäähtyy, mutta se voi vaatia hitaampia tulostusnopeuksia. Toisena strategiana on kompensoida nousulinjan yläpään riippumista, mutta linjat eivät aina putoa ennustettavalla tavalla." + +#~ msgctxt "support_bottom_height label" +#~ msgid "Support Bottom Thickness" +#~ msgstr "Tuen alaosan paksuus" + +#~ msgctxt "support_interface_line_distance label" +#~ msgid "Support Interface Line Distance" +#~ msgstr "Tukiliittymän linjaetäisyys" + +#~ msgctxt "infill_pattern option tetrahedral" +#~ msgid "Tetrahedral" +#~ msgstr "Nelitaho" #~ msgctxt "acceleration_support_interface description" #~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality." #~ msgstr "Kiihtyvyys, jolla tuen katot ja alaosat tulostetaan. Niiden tulostus hitaammilla kiihtyvyyksillä voi parantaa ulokkeen laatua." -#~ msgctxt "jerk_support_interface description" -#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." -#~ msgstr "Tuen kattojen ja alaosien tulostuksen nopeuden hetkellinen maksimimuutos." +#~ msgctxt "infill_overlap 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." -#~ msgctxt "support_enable label" -#~ msgid "Enable Support" -#~ msgstr "Ota tuki käyttöön" +#~ msgctxt "skin_overlap description" +#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." +#~ msgstr "Limityksen määrä pintakalvon ja seinämien välillä linjaleveyden prosenttina. Pienellä limityksellä seinämät liittyvät tukevasti pintakalvoon. Tämä on pintakalvon linjojen ja sisimmän seinämän keskimääräisten linjaleveyksien prosenttiluku." -#~ msgctxt "support_enable description" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Ota tukirakenteet käyttöön. Nämä rakenteet tukevat mallin osia, joissa on merkittäviä ulokkeita." +#~ msgctxt "skin_overlap description" +#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." +#~ msgstr "Limityksen määrä pintakalvon ja seinämien välillä. Pienellä limityksellä seinämät liittyvät tukevasti pintakalvoon." + +#~ msgctxt "skin_overlap_mm description" +#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." +#~ msgstr "Limityksen määrä pintakalvon ja seinämien välillä. Pienellä limityksellä seinämät liittyvät tukevasti pintakalvoon." + +#~ msgctxt "switch_extruder_retraction_amount description" +#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." +#~ msgstr "Takaisinvedon määrä: 0 tarkoittaa, että takaisinvetoa ei ole lainkaan. Tämän on yleensä oltava sama kuin lämpöalueen pituus." + +#~ msgctxt "wireframe_roof_inset description" +#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." +#~ msgstr "Etäisyys, jolla tehdään liitos katon ääriviivalta sisäänpäin. Koskee vain rautalankamallin tulostusta." + +#~ msgctxt "wireframe_roof_drag_along description" +#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Sisäpuolisen linjan päätyosan etäisyys ko. linjan laahautuessa mukana, kun mennään takaisin katon ulommalle ulkolinjalle. Tämä etäisyys kompensoidaan. Koskee vain rautalankamallin tulostusta." + +#~ msgctxt "expand_skins_expand_distance description" +#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." +#~ msgstr "Pintakalvojen laajennusetäisyys täyttöalueelle. Oletusetäisyys riittää kuromaan umpeen täyttölinjojen väliset raot, ja se estää reikien ilmestymisen pintakalvoon seinämän liitoskohdassa, kun täytön tiheys on alhainen." + +#~ msgctxt "wireframe_roof_fall_down description" +#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Etäisyys, jonka \"suoraan ilmaan\" tulostetut vaakasuorat kattolinjat roikkuvat tulostettaessa. Tämä etäisyys kompensoidaan. Koskee vain rautalankamallin tulostusta." + +#~ msgctxt "z_offset_layer_0 description" +#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." +#~ msgstr "Suulaketta siirretään ensimmäisen kerroksen normaalista korkeudesta tällä määrällä. Se voi olla positiivinen (nostettu) tai negatiivinen (laskettu). Jotkin tulostuslankatyypit tarttuvat alustaan paremmin, jos suulaketta nostetaan hieman." #~ msgctxt "support_interface_extruder_nr description" #~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion." @@ -7320,50 +7222,258 @@ msgstr "Mallissa käytettävä muunnosmatriisi, kun malli ladataan tiedostosta." #~ 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." #~ msgstr "Mallin päällä olevan porrasmaisen tuen pohjan portaiden korkeus. Matala arvo tekee tuesta vaikeamman poistaa, mutta liian korkeat arvot voivat johtaa epävakaisiin tukirakenteisiin." -#~ msgctxt "support_bottom_height label" -#~ msgid "Support Bottom Thickness" -#~ msgstr "Tuen alaosan paksuus" +#~ msgctxt "wireframe_height description" +#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." +#~ msgstr "Kahden vaakaosan välisen nousulinjan ja laskevan diagonaalilinjan korkeus. Tämä määrää verkkorakenteen kokonaistiheyden. Koskee vain rautalankamallin tulostusta." -#~ msgctxt "support_bottom_height description" -#~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests." -#~ msgstr "Tuen alaosien paksuus. Tällä hallitaan sellaisten tiheiden kerrosten määrää, jotka tulostetaan mallin tukea kannattelevien kohtien päälle." +#~ 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 "" +#~ "Vaakasuora etäisyys helman ja tulosteen ensimmäisen kerroksen välillä.\n" +#~ "Tämä on minimietäisyys; useampia helmalinjoja käytettäessä ne ulottuvat tämän etäisyyden ulkopuolelle." -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above 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 mallia tuen päällä, toimi annetun korkeuden mukaisesti. Pienemmillä arvoilla viipalointi tapahtuu hitaammin, ja korkeammat arvot saattavat aiheuttaa normaalin tuen tulostumisen paikkoihin, joissa olisi pitänyt olla tukiliittymä." +#~ msgctxt "spaghetti_max_infill_angle description" +#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." +#~ msgstr "Tulosteen sisustan suurin mahdollinen kulma Z-akseliin nähden alueilla, jotka täytetään myöhemmin spagettitäytöllä. Tämän arvon alentaminen johtaa siihen, että useampia mallin vinottaisia osia täytetään jokaisessa kerroksessa." -#~ msgctxt "support_interface_density description" -#~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -#~ msgstr "Säätää tukirakenteen kattojen ja alaosien tiheyttä. Korkeammat arvot tuottavat parempia ulokkeita, mutta tuet on vaikeampi poistaa." +#~ msgctxt "support_join_distance description" +#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." +#~ msgstr "Tukirakenteiden maksimietäisyys toisistaan X-/Y-suunnissa. Kun erilliset rakenteet ovat tätä arvoa lähempänä toisiaan, rakenteet sulautuvat toisiinsa." -#~ msgctxt "support_interface_line_distance label" -#~ msgid "Support Interface Line Distance" -#~ msgstr "Tukiliittymän linjaetäisyys" +#~ msgctxt "spaghetti_max_height description" +#~ msgid "The maximum height of inside space which can be combined and filled from the top." +#~ msgstr "Yhdistettävän ja yläpuolelta täytettävän sisätilan enimmäiskorkeus." -#~ msgctxt "support_interface_line_distance description" -#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." -#~ msgstr "Tulostettujen tukiliittymän linjojen välinen etäisyys. Tämä asetus lasketaan tukiliittymän tiheysarvosta, mutta sitä voidaan säätää erikseen." +#~ msgctxt "jerk_support_interface description" +#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." +#~ msgstr "Tuen kattojen ja alaosien tulostuksen nopeuden hetkellinen maksimimuutos." -#~ 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 used to be called Joris in older versions." -#~ msgstr "Kierukointi pehmentää ulkoreunan Z-liikettä. Se muodostaa tasaisen Z-lisän koko tulosteelle. Tämä toiminto muuttaa umpinaisen mallin yksiseinäiseksi tulosteeksi, jossa on umpinainen pohja. Vanhemmissa versioissa tätä toimintoa kutsuttiin nimellä Joris." +#~ msgctxt "max_feedrate_z_override description" +#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." +#~ msgstr "Maksiminopeus, jolla alustaa liikutetaan. Jos tämä määritetään nollaan, tulostuksessa käytetään laiteohjelmiston oletusasetuksia Z:n maksiminopeudelle." + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "Muotin ulkoseinän ja mallin ulkoseinän välinen vähimmäisetäisyys." + +#~ msgctxt "spaghetti_inset description" +#~ msgid "The offset from the walls from where the spaghetti infill will be printed." +#~ msgstr "Siirtymä seinämistä, joista spagettitäyttö tulostetaan." + +#~ 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, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "Tulostettava täyttömateriaalin kuvio. Linja- ja siksak-täytöt vaihtavat suuntaa kerrosten välillä, mikä vähentää materiaalikustannuksia. Ristikko-, kolmio-, kuutio-, oktetti-, neljänneskuutio- ja samankeskinen-kuviot tulostetaan kokonaisuudessaan kuhunkin kerrokseen. Kuutio-, neljänneskuutio- ja oktettitäytöt muuttuvat kerroksittain, jotta vahvuus jakautuu tasaisemmin kussakin suunnassa." + +#~ 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, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "Tulostettava täyttömateriaalin kuvio. Linja- ja siksak-täytöt vaihtavat suuntaa kerrosten välillä, mikä vähentää materiaalikustannuksia. Ristikko-, kolmio-, kuutio-, nelitaho- ja samankeskinen-kuviot tulostetaan kokonaisuudessaan kuhunkin kerrokseen. Kuutio- ja nelitaho-täytöt muuttuvat kerroksittain, jotta vahvuus jakautuu tasaisemmin kussakin suunnassa." + +#~ msgctxt "speed_support_interface description" +#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality." +#~ msgstr "Nopeus, jolla tuen katot ja alaosat tulostetaan. Niiden tulostus hitaammilla nopeuksilla voi parantaa ulokkeen laatua." + +#~ msgctxt "speed_layer_0 description" +#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." +#~ msgstr "Alkukerroksen nopeus. Alhaisempi arvo on suositeltava, jotta tarttuvuus alustaan on parempi." #~ msgctxt "material_print_temperature description" #~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." #~ msgstr "Tulostuksessa käytettävä lämpötila. Aseta arvoon 0 esilämmittääksesi tulostimen manuaalisesti." +#~ msgctxt "material_bed_temperature_layer_0 description" +#~ msgid "The temperature used for the heated build plate at the first layer." +#~ msgstr "Lämmitettävän alustan lämpötila ensimmäistä kerrosta tulostettaessa." + +#~ msgctxt "material_bed_temperature description" +#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." +#~ msgstr "Lämmitettävän alustan lämpötila. Jos tämä on 0, pöytä ei lämpene tätä tulostusta varten." + #~ msgctxt "material_bed_temperature description" #~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually." #~ msgstr "Lämmitettävän alustan lämpötila. Aseta arvoon 0 esilämmittääksesi tulostimen manuaalisesti." -#~ 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. This value is rounded down to a multiple of the layer height." -#~ msgstr "Tukirakenteen etäisyys tulosteesta ylä-/alasuunnassa. Tämä rako sallii tukien poistamisen mallin tulostuksen jälkeen. Tämä arvo pyöristetään alaspäin kerroksen korkeuden kerrannaiseksi." +#~ msgctxt "prime_tower_wall_thickness description" +#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." +#~ msgstr "Onton esitäyttötornin paksuus. Jos paksuus ylittää puolet esitäyttötornin minimitilavuudesta, tuloksena on tiheä esitäyttötorni." -#~ msgctxt "z_seam_type option back" -#~ msgid "Back" -#~ msgstr "Taakse" +#~ msgctxt "wall_thickness description" +#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +#~ msgstr "Ulkoseinämien paksuus vaakatasossa. Tämä arvo jaettuna seinämälinjan leveysarvolla määrittää seinämien lukumäärän." -#~ msgctxt "multiple_mesh_overlap label" -#~ msgid "Dual Extrusion Overlap" -#~ msgstr "Kaksoispursotuksen limitys" +#~ msgctxt "support_bottom_height description" +#~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests." +#~ msgstr "Tuen alaosien paksuus. Tällä hallitaan sellaisten tiheiden kerrosten määrää, jotka tulostetaan mallin tukea kannattelevien kohtien päälle." + +#~ msgctxt "machine_gcode_flavor description" +#~ msgid "The type of gcode to be generated." +#~ msgstr "Luotavan GCoden tyyppi." + +#~ msgctxt "raft_smoothing description" +#~ msgid "This setting control 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 "Tällä asetuksella säädetään, kuinka paljon pohjaristikon ulkolinjan sisäkulmia pyöristetään. Sisäpuoliset kulmat pyöristetään puoliympyräksi, jonka säde on yhtä suuri kuin tässä annettu arvo. Asetuksella myös poistetaan pohjaristikon ulkolinjan reiät, jotka ovat pienempiä kuin tällainen ympyrä." + +#~ msgctxt "wireframe_roof_outer_delay description" +#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." +#~ msgstr "Katoksi tulevan aukon ulkoreunoihin käytetty aika. Pitemmät ajat varmistavat paremman liitoksen. Koskee vain rautalankamallin tulostusta." + +#~ 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, while an angle of 90° is vertical." +#~ msgstr "Kappaleesi ylä- ja/tai alapinnan ylä- ja alapintakalvoja ei laajenneta, jos niiden kulma on suurempi kuin tämä asetus. Tällä vältetään laajentamasta kapeita pintakalvoja, jotka syntyvät, kun mallin pinnalla on lähes pystysuora rinne. 0 °:n kulma on vaakasuora ja 90 °:n kulma on pystysuora." + +#~ msgctxt "relative_extrusion description" +#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. 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 Gcode script is output." +#~ msgstr "Käytä suhteellista pursotusta absoluuttisen pursotuksen sijaan. Suhteellisten E-askelten käyttö helpottaa Gcoden jälkikäsittelyä. Kaikki tulostimet eivät kuitenkaan tue sitä, ja se saattaa aiheuttaa hyvin vähäisiä poikkeamia materiaalin määrässä absoluuttisiin E-askeliin verrattuna. Tästä asetuksesta riippumatta pursotustila on aina absoluuttinen, ennen kuin mitään Gcode-komentosarjaa tuotetaan." + +#~ msgctxt "wireframe_bottom_delay label" +#~ msgid "WP Bottom Delay" +#~ msgstr "Rautalankatulostuksen viive alhaalla" + +#~ msgctxt "wireframe_printspeed_bottom label" +#~ msgid "WP Bottom Printing Speed" +#~ msgstr "Rautalankapohjan tulostusnopeus" + +#~ msgctxt "wireframe_flow_connection label" +#~ msgid "WP Connection Flow" +#~ msgstr "Rautalankatulostuksen liitosvirtaus" + +#~ msgctxt "wireframe_height label" +#~ msgid "WP Connection Height" +#~ msgstr "Rautalankatulostuksen liitoskorkeus" + +#~ msgctxt "wireframe_printspeed_down label" +#~ msgid "WP Downward Printing Speed" +#~ msgstr "Rautalangan tulostusnopeus alaspäin" + +#~ msgctxt "wireframe_drag_along label" +#~ msgid "WP Drag Along" +#~ msgstr "Rautalankatulostuksen laahaus" + +#~ msgctxt "wireframe_up_half_speed label" +#~ msgid "WP Ease Upward" +#~ msgstr "Rautalankatulostuksen hidas liike ylöspäin" + +#~ msgctxt "wireframe_fall_down label" +#~ msgid "WP Fall Down" +#~ msgstr "Rautalankatulostuksen pudotus" + +#~ msgctxt "wireframe_flat_delay label" +#~ msgid "WP Flat Delay" +#~ msgstr "Rautalankatulostuksen lattea viive" + +#~ msgctxt "wireframe_flow_flat label" +#~ msgid "WP Flat Flow" +#~ msgstr "Rautalangan lattea virtaus" + +#~ msgctxt "wireframe_flow label" +#~ msgid "WP Flow" +#~ msgstr "Rautalankatulostuksen virtaus" + +#~ msgctxt "wireframe_printspeed_flat label" +#~ msgid "WP Horizontal Printing Speed" +#~ msgstr "Rautalangan tulostusnopeus vaakasuoraan" + +#~ msgctxt "wireframe_top_jump label" +#~ msgid "WP Knot Size" +#~ msgstr "Rautalankatulostuksen solmukoko" + +#~ msgctxt "wireframe_nozzle_clearance label" +#~ msgid "WP Nozzle Clearance" +#~ msgstr "Rautalankatulostuksen suutinväli" + +#~ msgctxt "wireframe_roof_drag_along label" +#~ msgid "WP Roof Drag Along" +#~ msgstr "Rautalankatulostuksen katon laahaus" + +#~ msgctxt "wireframe_roof_fall_down label" +#~ msgid "WP Roof Fall Down" +#~ msgstr "Rautalankatulostuksen katon pudotus" + +#~ msgctxt "wireframe_roof_inset label" +#~ msgid "WP Roof Inset Distance" +#~ msgstr "Rautalankatulostuksen katon liitosetäisyys" + +#~ msgctxt "wireframe_roof_outer_delay label" +#~ msgid "WP Roof Outer Delay" +#~ msgstr "Rautalankatulostuksen katon ulompi viive" + +#~ msgctxt "wireframe_printspeed label" +#~ msgid "WP Speed" +#~ msgstr "Rautalankatulostuksen nopeus" + +#~ msgctxt "wireframe_straight_before_down label" +#~ msgid "WP Straighten Downward Lines" +#~ msgstr "Rautalankatulostuksen laskulinjojen suoristus" + +#~ msgctxt "wireframe_strategy label" +#~ msgid "WP Strategy" +#~ msgstr "Rautalankatulostuksen strategia" + +#~ msgctxt "wireframe_top_delay label" +#~ msgid "WP Top Delay" +#~ msgstr "Rautalankatulostuksen viive ylhäällä" + +#~ msgctxt "wireframe_printspeed_up label" +#~ msgid "WP Upward Printing Speed" +#~ msgstr "Rautalangan tulostusnopeus ylöspäin" + +#~ msgctxt "material_bed_temp_wait label" +#~ msgid "Wait for build plate heatup" +#~ msgstr "Odota alustan lämpenemistä" + +#~ msgctxt "material_print_temp_wait label" +#~ msgid "Wait for nozzle heatup" +#~ msgstr "Odota suuttimen lämpenemistä" + +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above 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 mallia tuen päällä, toimi annetun korkeuden mukaisesti. Pienemmillä arvoilla viipalointi tapahtuu hitaammin, ja korkeammat arvot saattavat aiheuttaa normaalin tuen tulostumisen paikkoihin, joissa olisi pitänyt olla tukiliittymä." + +#~ msgctxt "z_offset_taper_layers description" +#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." +#~ msgstr "Kun tämä ei ole nolla, Z-siirtymä pienenee nollaan niin monen kerroksen matkalla. Kun arvo on 0, Z-siirtymä pysyy vakiona kaikille tulostuksen kerroksille." + +#~ msgctxt "skin_no_small_gaps_heuristic description" +#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." +#~ msgstr "Kun mallissa on pieniä pystyrakoja, ylä- ja alapuolen pintakalvon tekemiseen näihin kapeisiin paikkoihin voi kulua noin 5 % ylimääräistä laskenta-aikaa. Poista siinä tapauksessa tämä asetus käytöstä." + +#~ 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 only possible if 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 "Tulostetaanko kaikki mallit kerros kerrallaan vai odotetaanko yhden mallin valmistumista ennen kuin siirrytään seuraavaan. Yksi kerrallaan -tila on mahdollinen vain silloin, jos kaikki mallit ovat erillään siten, että koko tulostuspää voi siirtyä niiden välillä ja kaikki mallit ovat suuttimen ja X-/Y-akselien välistä etäisyyttä alempana." + +#~ msgctxt "spaghetti_infill_stepped description" +#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." +#~ msgstr "Spagettitäytön tulostus vaiheittain vai kaiken täyttötulostuslangan pursotus tulostuksen lopussa." + +#~ msgctxt "support_interface_line_width description" +#~ msgid "Width of a single support interface line." +#~ msgstr "Yhden tukiliittymän linjan leveys." + +#~ msgctxt "dual_pre_wipe label" +#~ msgid "Wipe Nozzle After Switch" +#~ msgstr "Pyyhi suutin vaihdon jälkeen" + +#~ msgctxt "wireframe_enabled label" +#~ msgid "Wire Printing" +#~ msgstr "Rautalankatulostus" + +#~ msgctxt "z_offset_taper_layers label" +#~ msgid "Z Offset Taper Layers" +#~ msgstr "Z-siirtymän kapenevat kerrokset" + +#~ msgctxt "support_zag_skip_count label" +#~ msgid "ZigZag Connection Skip Count" +#~ msgstr "Siksakien yhdistämisten ohitusten määrä" + +#~ msgctxt "blackmagic description" +#~ msgid "category_blackmagic" +#~ msgstr "category_blackmagic" + +#~ msgctxt "meshfix description" +#~ msgid "category_fixes" +#~ msgstr "category_fixes" + +#~ msgctxt "experimental description" +#~ msgid "experimental!" +#~ msgstr "kokeellinen!" diff --git a/resources/i18n/fr_FR/cura.po b/resources/i18n/fr_FR/cura.po index abb74a1cd4..18527ea438 100644 --- a/resources/i18n/fr_FR/cura.po +++ b/resources/i18n/fr_FR/cura.po @@ -1,12 +1,14 @@ # Cura -# Copyright (C) 2022 Ultimaker B.V. +# Copyright (C) 2022 UltiMaker. # This file is distributed under the same license as the Cura package. +# Ultimaker , 2022. # +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0200\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-04-06 15:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,236 +18,114 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -msgctxt "@label" -msgid "Unknown" -msgstr "Inconnu" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "Les imprimantes ci-dessous ne peuvent pas être connectées car elles font partie d'un groupe" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Imprimantes en réseau disponibles" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Pas écrasé" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Connected printers" -msgstr "Imprimantes connectées" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Preset printers" -msgstr "Imprimantes préréglées" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:143 -#, 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 "Voulez-vous vraiment supprimer l'objet {0} ? Cette action est irréversible !" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:61 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 -msgctxt "@label" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:65 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Visuel" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:66 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "Le profil visuel est conçu pour imprimer des prototypes et des modèles visuels dans le but d'obtenir une qualité visuelle et de surface élevée." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:70 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "Le profil d'ingénierie est conçu pour imprimer des prototypes fonctionnels et des pièces finales dans le but d'obtenir une meilleure précision et des tolérances plus étroites." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:75 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Ébauche" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:76 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "L'ébauche du profil est conçue pour imprimer les prototypes initiaux et la validation du concept dans le but de réduire considérablement le temps d'impression." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:232 -msgctxt "@label" -msgid "Custom Material" -msgstr "Matériau personnalisé" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:233 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 -msgctxt "@label" -msgid "Custom" -msgstr "Personnalisé" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:391 -msgctxt "@label" -msgid "Custom profiles" -msgstr "Personnaliser les profils" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:426 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Tous les types supportés ({0})" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Tous les fichiers (*)" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Calculer" - -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 +#: cura/API/Account.py:199 msgctxt "@info:title" msgid "Login failed" msgstr "La connexion a échoué" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: cura/Arranging/ArrangeObjectsJob.py:25 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Recherche d'un nouvel emplacement pour les objets" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: cura/Arranging/ArrangeObjectsJob.py:29 msgctxt "@info:title" msgid "Finding Location" msgstr "Recherche d'emplacement" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Impossible de trouver un emplacement dans le volume d'impression pour tous les objets" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: cura/Arranging/ArrangeObjectsJob.py:43 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Impossible de trouver un emplacement" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:115 +#: cura/Backups/Backup.py:115 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" -msgstr "Impossible de créer une archive à partir du répertoire de données de l'utilisateur : {}" +msgstr "Impossible de créer une archive à partir du répertoire de données de l'utilisateur: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:159 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +#: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159 +#: plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: plugins/CuraDrive/src/DrivePluginExtension.py:126 msgctxt "@info:title" msgid "Backup" msgstr "Sauvegarde" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:134 +#: cura/Backups/Backup.py:134 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." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:145 +#: cura/Backups/Backup.py:145 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that is higher than the current version." msgstr "A essayé de restaurer une sauvegarde Cura supérieure à la version actuelle." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:158 +#: cura/Backups/Backup.py:158 msgctxt "@info:backup_failed" msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "L'erreur suivante s'est produite lors de la restauration d'une sauvegarde Cura :" +msgstr "L'erreur suivante s'est produite lors de la restauration d'une sauvegarde Cura:" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: cura/BuildVolume.py:100 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." msgstr "La hauteur du volume d'impression a été réduite en raison de la valeur du paramètre « Séquence d'impression » afin d'éviter que le portique ne heurte les modèles imprimés." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 +#: cura/BuildVolume.py:103 msgctxt "@info:title" msgid "Build Volume" msgstr "Volume d'impression" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Échec du démarrage de Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" -"

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

    \n" +"

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

    Oups, un problème est survenu dans Ultimaker Cura.

    \n" +"

    Oups, un problème est survenu dans UltiMaker Cura.

    \n" "

    Une erreur irrécupérable est survenue lors du démarrage. Elle peut avoir été causée par des fichiers de configuration incorrects. Nous vous suggérons de sauvegarder et de réinitialiser votre configuration.

    \n" "

    Les sauvegardes se trouvent dans le dossier de configuration.

    \n" "

    Veuillez nous envoyer ce rapport d'incident pour que nous puissions résoudre le problème.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: cura/CrashHandler.py:122 msgctxt "@action:button" -msgid "Send crash report to Ultimaker" -msgstr "Envoyer le rapport de d'incident à Ultimaker" +msgid "Send crash report to UltiMaker" +msgstr "Envoyer le rapport de d'incident à UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Afficher le rapport d'incident détaillé" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Afficher le dossier de configuration" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Sauvegarder et réinitialiser la configuration" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Rapport d'incident" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

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

    \n" @@ -256,573 +136,2241 @@ msgstr "" "

    Veuillez utiliser le bouton « Envoyer rapport » pour publier automatiquement un rapport d'erreur sur nos serveurs

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Informations système" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Inconnu" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Version Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Langue de Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Langue du SE" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Plate-forme" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Version Qt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Version PyQt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized" -msgstr "" +msgstr "Pas encore initialisé" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " -msgstr "
  • Version OpenGL : {version}
  • " +msgstr "
  • Version OpenGL: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " -msgstr "
  • Revendeur OpenGL : {vendor}
  • " +msgstr "
  • Revendeur OpenGL: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " -msgstr "
  • Moteur de rendu OpenGL : {renderer}
  • " +msgstr "
  • Moteur de rendu OpenGL: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 +#: cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Retraçage de l'erreur" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 +#: cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Journaux" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 +#: cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Envoyer rapport" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:531 +#: cura/CuraApplication.py:540 msgctxt "@info:progress" msgid "Loading machines..." msgstr "Chargement des machines..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +#: cura/CuraApplication.py:547 msgctxt "@info:progress" msgid "Setting up preferences..." msgstr "Configuration des préférences..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +#: cura/CuraApplication.py:692 msgctxt "@info:progress" msgid "Initializing Active Machine..." msgstr "Initialisation de la machine active..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +#: cura/CuraApplication.py:839 msgctxt "@info:progress" msgid "Initializing machine manager..." msgstr "Initialisation du gestionnaire de machine..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +#: cura/CuraApplication.py:853 msgctxt "@info:progress" msgid "Initializing build volume..." msgstr "Initialisation du volume de fabrication..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +#: cura/CuraApplication.py:921 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "Préparation de la scène..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +#: cura/CuraApplication.py:957 msgctxt "@info:progress" msgid "Loading interface..." msgstr "Chargement de l'interface..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +#: cura/CuraApplication.py:962 msgctxt "@info:progress" msgid "Initializing engine..." msgstr "Initialisation du moteur..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#: cura/CuraApplication.py:1290 #, 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" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1798 +#: cura/CuraApplication.py:1816 #, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Un seul fichier G-Code peut être chargé à la fois. Importation de {0} sautée" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 +#: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 msgctxt "@info:title" msgid "Warning" msgstr "Avertissement" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#: cura/CuraApplication.py:1828 #, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "Impossible d'ouvrir un autre fichier si le G-Code est en cours de chargement. Importation de {0} sautée" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1812 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156 +#: cura/Settings/CuraContainerRegistry.py:166 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 msgctxt "@info:title" msgid "Error" msgstr "Erreur" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 +#: cura/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Inconnu" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "Les imprimantes ci-dessous ne peuvent pas être connectées car elles font partie d'un groupe" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Imprimantes en réseau disponibles" + +#: cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Pas écrasé" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:28 +msgctxt "@label" +msgid "Connected printers" +msgstr "Imprimantes connectées" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +msgctxt "@label" +msgid "Preset printers" +msgstr "Imprimantes préréglées" + +#: cura/Machines/Models/GlobalStacksModel.py:165 +#, 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 "Voulez-vous vraiment supprimer l'objet {0}? Cette action est irréversible!" + +#: cura/Machines/Models/IntentCategoryModel.py:42 +#: cura/Machines/Models/IntentSelectionModel.py:61 +#: cura/Machines/Models/IntentTranslations.py:11 +#: cura/Machines/Models/QualityManagementModel.py:347 +msgctxt "@label" +msgid "Default" +msgstr "Défaut" + +#: cura/Machines/Models/IntentCategoryModel.py:45 +#: cura/Machines/Models/IntentSelectionModel.py:65 +#: cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "Visuel" + +#: cura/Machines/Models/IntentCategoryModel.py:46 +#: cura/Machines/Models/IntentSelectionModel.py:66 +#: cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "Le profil visuel est conçu pour imprimer des prototypes et des modèles visuels dans le but d'obtenir une qualité visuelle et de surface élevée." + +#: cura/Machines/Models/IntentCategoryModel.py:49 +#: cura/Machines/Models/IntentSelectionModel.py:70 +#: cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "Engineering" + +#: cura/Machines/Models/IntentCategoryModel.py:50 +#: cura/Machines/Models/IntentSelectionModel.py:71 +#: cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "Le profil d'ingénierie est conçu pour imprimer des prototypes fonctionnels et des pièces finales dans le but d'obtenir une meilleure précision et des tolérances plus étroites." + +#: cura/Machines/Models/IntentCategoryModel.py:53 +#: cura/Machines/Models/IntentSelectionModel.py:75 +#: cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "Ébauche" + +#: cura/Machines/Models/IntentCategoryModel.py:54 +#: cura/Machines/Models/IntentSelectionModel.py:76 +#: cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "L'ébauche du profil est conçue pour imprimer les prototypes initiaux et la validation du concept dans le but de réduire considérablement le temps d'impression." + +#: cura/Machines/Models/MaterialManagementModel.py:232 +msgctxt "@label" +msgid "Custom Material" +msgstr "Matériau personnalisé" + +#: cura/Machines/Models/MaterialManagementModel.py:233 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 +msgctxt "@label" +msgid "Custom" +msgstr "Personnalisé" + +#: cura/Machines/Models/QualityManagementModel.py:400 +msgctxt "@label" +msgid "Custom profiles" +msgstr "Personnaliser les profils" + +#: cura/Machines/Models/QualityManagementModel.py:435 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Tous les types supportés ({0})" + +#: cura/Machines/Models/QualityManagementModel.py:436 +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Tous les fichiers (*)" + +#: cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Calculer" + +#: cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Multiplication et placement d'objets" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 +#: cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "Placement des objets" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 +#: cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Placement de l'objet" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +#: cura/OAuth2/AuthorizationHelpers.py:89 msgctxt "@message" msgid "Could not read response." msgstr "Impossible de lire la réponse." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +#: cura/OAuth2/AuthorizationRequestHandler.py:75 msgctxt "@message" msgid "The provided state is not correct." msgstr "L'état fourni n'est pas correct." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +#: cura/OAuth2/AuthorizationRequestHandler.py:80 msgctxt "@message" msgid "Timeout when authenticating with the account server." msgstr "Délai d'expiration lors de l'authentification avec le serveur de compte." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +#: cura/OAuth2/AuthorizationRequestHandler.py:97 msgctxt "@message" msgid "Please give the required permissions when authorizing this application." msgstr "Veuillez donner les permissions requises lors de l'autorisation de cette application." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +#: cura/OAuth2/AuthorizationRequestHandler.py:104 msgctxt "@message" msgid "Something unexpected happened when trying to log in, please try again." msgstr "Une erreur s'est produite lors de la connexion, veuillez réessayer." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:216 +#: cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Impossible de lancer une nouvelle procédure de connexion. Vérifiez si une autre tentative de connexion est toujours active." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:277 +#: cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "Impossible d’atteindre le serveur du compte Ultimaker." +msgid "Unable to reach the UltiMaker account server." +msgstr "Impossible d’atteindre le serveur du compte UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 +#: cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" msgid "Log-in failed" msgstr "Échec de la connexion" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +#: cura/PrinterOutput/UploadMaterialsJob.py:104 msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Échec de la création de l'archive des matériaux à synchroniser avec les imprimantes." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +#: cura/PrinterOutput/UploadMaterialsJob.py:111 +#: cura/PrinterOutput/UploadMaterialsJob.py:165 msgctxt "@text:error" msgid "Failed to load the archive of materials to sync it with printers." msgstr "Impossible de charger l'archive des matériaux pour la synchroniser avec les imprimantes." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +#: cura/PrinterOutput/UploadMaterialsJob.py:143 msgctxt "@text:error" msgid "The response from Digital Factory appears to be corrupted." msgstr "La réponse de Digital Factory semble être corrompue." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +#: cura/PrinterOutput/UploadMaterialsJob.py:147 +#: cura/PrinterOutput/UploadMaterialsJob.py:151 +#: cura/PrinterOutput/UploadMaterialsJob.py:155 msgctxt "@text:error" msgid "The response from Digital Factory is missing important information." msgstr "Il manque des informations importantes dans la réponse de Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +#: cura/PrinterOutput/UploadMaterialsJob.py:218 msgctxt "@text:error" msgid "Failed to connect to Digital Factory to sync materials with some of the printers." msgstr "Échec de la connexion à Digital Factory pour synchroniser les matériaux avec certaines imprimantes." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +#: cura/PrinterOutput/UploadMaterialsJob.py:232 msgctxt "@text:error" msgid "Failed to connect to Digital Factory." msgstr "Échec de la connexion à Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:207 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: cura/Settings/ActiveQuality.py:43 +msgctxt "@label" +msgid "Experimental" +msgstr "Expérimental" + +#: cura/Settings/ContainerManager.py:207 +#: cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "Le fichier existe déjà" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: cura/Settings/ContainerManager.py:208 +#: cura/Settings/CuraContainerRegistry.py:141 #, 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 "Le fichier {0} existe déjà. Êtes-vous sûr de vouloir le remplacer ?" +msgstr "Le fichier {0} existe déjà. Êtes-vous sûr de vouloir le remplacer?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 +#: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" -msgstr "URL de fichier invalide :" +msgstr "URL de fichier invalide:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Échec de l'exportation du profil vers {0} : {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." -msgstr "Échec de l'exportation du profil vers {0} : le plug-in du générateur a rapporté une erreur." +msgstr "Échec de l'exportation du profil vers {0}: le plugin du générateur a rapporté une erreur." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profil exporté vers {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "L'exportation a réussi" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" -msgstr "Impossible d'importer le profil depuis {0} : {1}" +msgstr "Impossible d'importer le profil depuis {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: cura/Settings/CuraContainerRegistry.py:209 #, 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 "Impossible d'importer le profil depuis {0} avant l'ajout d'une imprimante." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Aucun profil personnalisé à importer dans le fichier {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" -msgstr "Échec de l'importation du profil depuis le fichier {0} :" +msgstr "Échec de l'importation du profil depuis le fichier {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: cura/Settings/CuraContainerRegistry.py:252 +#: cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Le profil {0} contient des données incorrectes ; échec de l'importation." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Échec de l'importation du profil depuis le fichier {0} :" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Importation du profil {0} réussie." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Le fichier {0} ne contient pas de profil valide." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Le profil {0} est un type de fichier inconnu ou est corrompu." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Personnaliser le profil" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Il manque un type de qualité au profil." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Aucune imprimante n'est active pour le moment." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Impossible d'ajouter le profil." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." -msgstr "Le type de qualité « {0} » n'est pas compatible avec la définition actuelle de la machine active « {1} »." +msgstr "Le type de qualité '{0}' n'est pas compatible avec la définition actuelle de la machine active '{1}'." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: cura/Settings/CuraContainerRegistry.py:488 #, 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 "Avertissement : le profil n'est pas visible car son type de qualité « {0} » n'est pas disponible pour la configuration actuelle. Passez à une combinaison matériau/buse qui peut utiliser ce type de qualité." +msgstr "Avertissement: le profil n'est pas visible car son type de qualité '{0}' n'est pas disponible pour la configuration actuelle. Passez à une combinaison matériau/buse qui peut utiliser ce type de qualité." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Non pris en charge" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:219 +#: cura/Settings/MachineManager.py:746 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:221 msgctxt "@label" msgid "Nozzle" msgstr "Buse" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +#: cura/Settings/MachineManager.py:890 msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" -msgstr "Les paramètres ont été modifiés pour correspondre aux extrudeuses actuellement disponibles :" +msgstr "Les paramètres ont été modifiés pour correspondre aux extrudeuses actuellement disponibles:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: cura/Settings/MachineManager.py:891 msgctxt "@info:title" msgid "Settings updated" msgstr "Paramètres mis à jour" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 +#: cura/Settings/MachineManager.py:1514 msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extrudeuse(s) désactivée(s)" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 +#: cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Non pris en charge" + +#: cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Défaut" + +#: cura/UI/AddPrinterPagesModel.py:17 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" msgid "Add" msgstr "Ajouter" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:290 +#: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290 msgctxt "@action:button" msgid "Finish" msgstr "Fin" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:508 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:323 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:291 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:74 +#: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386 +#: plugins/ImageReader/ConfigUI.qml:323 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 +#: resources/qml/ColorDialog.qml:143 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: resources/qml/Dialogs/RenameDialog.qml:103 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 msgctxt "@action:button" msgid "Cancel" msgstr "Annuler" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: cura/UI/ObjectsModel.py:69 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Groupe nº {group_nr}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 +#: cura/UI/PrintInformation.py:87 msgctxt "@tooltip" msgid "Outer Wall" msgstr "Paroi externe" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +#: cura/UI/PrintInformation.py:88 msgctxt "@tooltip" msgid "Inner Walls" msgstr "Parois internes" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +#: cura/UI/PrintInformation.py:89 msgctxt "@tooltip" msgid "Skin" msgstr "Couche extérieure" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +#: cura/UI/PrintInformation.py:90 msgctxt "@tooltip" msgid "Infill" msgstr "Remplissage" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +#: cura/UI/PrintInformation.py:91 msgctxt "@tooltip" msgid "Support Infill" msgstr "Remplissage du support" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +#: cura/UI/PrintInformation.py:92 msgctxt "@tooltip" msgid "Support Interface" msgstr "Interface du support" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +#: cura/UI/PrintInformation.py:93 msgctxt "@tooltip" msgid "Support" msgstr "Support" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +#: cura/UI/PrintInformation.py:94 msgctxt "@tooltip" msgid "Skirt" msgstr "Jupe" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +#: cura/UI/PrintInformation.py:95 msgctxt "@tooltip" msgid "Prime Tower" msgstr "Tour primaire" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +#: cura/UI/PrintInformation.py:96 msgctxt "@tooltip" msgid "Travel" msgstr "Déplacement" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +#: cura/UI/PrintInformation.py:97 msgctxt "@tooltip" msgid "Retractions" msgstr "Rétractions" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +#: cura/UI/PrintInformation.py:98 msgctxt "@tooltip" msgid "Other" msgstr "Autre" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:63 +#: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63 msgctxt "@text:window" msgid "The release notes could not be opened." msgstr "Les notes de version n'ont pas pu être ouvertes." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:277 +#: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277 msgctxt "@action:button" msgid "Next" msgstr "Suivant" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68 msgctxt "@action:button" msgid "Skip" msgstr "Passer" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:443 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:186 +#: cura/UI/WhatsNewPagesModel.py:76 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444 +#: resources/qml/Dialogs/AboutDialog.qml:188 msgctxt "@action:button" msgid "Close" msgstr "Fermer" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: cura/UltimakerCloud/CloudMaterialSync.py:66 msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Veuillez synchroniser les profils de matériaux avec vos imprimantes avant de commencer à imprimer." -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: cura/UltimakerCloud/CloudMaterialSync.py:67 msgctxt "@action:button" msgid "New materials installed" msgstr "Nouveaux matériaux installés" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: cura/UltimakerCloud/CloudMaterialSync.py:74 msgctxt "@action:button" msgid "Sync materials" msgstr "Synchroniser les matériaux" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:397 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:80 +#: cura/UltimakerCloud/CloudMaterialSync.py:82 +#: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80 msgctxt "@action:button" msgid "Learn more" msgstr "En savoir plus" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +#: cura/UltimakerCloud/CloudMaterialSync.py:135 msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Impossible d'enregistrer l'archive du matériau dans {} :" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +#: cura/UltimakerCloud/CloudMaterialSync.py:136 msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Échec de l'enregistrement de l'archive des matériaux" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +#: cura/UltimakerCloud/CloudMaterialSync.py:188 msgctxt "@text" msgid "Unknown error." msgstr "Erreur inconnue." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:558 +#, 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 "Le fichier projet {0} contient un type de machine inconnu {1}. Impossible d'importer la machine. Les modèles seront importés à la place." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:561 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "Ouvrir un fichier de projet" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: plugins/3MFReader/WorkspaceDialog.qml:99 +#: plugins/3MFReader/WorkspaceDialog.qml:127 +#: plugins/3MFReader/WorkspaceDialog.qml:134 +msgctxt "@button" +msgid "Create new" +msgstr "" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:692 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "Le fichier de projet {0} est soudainement inaccessible: {1}." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:720 +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "Impossible d'ouvrir le fichier de projet" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:700 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:718 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "Le fichier de projet {0} est corrompu: {1}." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:765 +#, 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 "Le fichier de projet {0} a été réalisé en utilisant des profils inconnus de cette version d'UltiMaker Cura." + +#: plugins/3MFReader/WorkspaceDialog.py:233 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Recommandé" + +#: plugins/3MFReader/WorkspaceDialog.py:235 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Personnalisé" + +#: plugins/3MFReader/WorkspaceDialog.py:411 +msgctxt "@info:status" +msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." +msgstr "Le matériau utilisé dans ce projet repose sur certaines définitions de matériaux non disponibles dans Cura, ce qui peut produire des résultats d’impression indésirables. Nous vous recommandons vivement d’installer l’ensemble complet des matériaux depuis le Marketplace." + +#: plugins/3MFReader/WorkspaceDialog.py:413 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "Profils des matériaux non installés" + +#: plugins/3MFReader/WorkspaceDialog.py:426 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "Installer les matériaux" + +#: plugins/3MFReader/WorkspaceDialog.qml:15 +msgctxt "@title:window" +msgid "Open Project" +msgstr "Ouvrir un projet" + +#: plugins/3MFReader/WorkspaceDialog.qml:31 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61 +msgctxt "@action:title" +msgid "Summary - Cura Project" +msgstr "Résumé - Projet Cura" + +#: plugins/3MFReader/WorkspaceDialog.qml:65 +msgctxt "@action:ComboBox Update/override existing profile" +msgid "Update existing" +msgstr "Mettre à jour l'existant" + +#: plugins/3MFReader/WorkspaceDialog.qml:66 +msgctxt "@action:ComboBox Save settings in a new profile" +msgid "Create new" +msgstr "Créer" + +#: plugins/3MFReader/WorkspaceDialog.qml:83 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97 +msgctxt "@action:label" +msgid "Printer settings" +msgstr "Paramètres de l'imprimante" + +#: plugins/3MFReader/WorkspaceDialog.qml:92 +#: plugins/3MFReader/WorkspaceRow.qml:23 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106 +msgctxt "@action:label" +msgid "Type" +msgstr "Type" + +#: plugins/3MFReader/WorkspaceDialog.qml:98 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +msgctxt "@action:label" +msgid "Printer Group" +msgstr "Groupe d'imprimantes" + +#: plugins/3MFReader/WorkspaceDialog.qml:103 +msgctxt "@action:label" +msgid "Open With" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:104 +msgctxt "@info:tooltip" +msgid "Printer settings will be updated to match the settings saved with the project." +msgstr "Les paramètres de l'imprimante seront mis à jour pour correspondre aux paramètres enregistrés pour le projet." + +#: plugins/3MFReader/WorkspaceDialog.qml:156 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222 +msgctxt "@action:label" +msgid "Profile settings" +msgstr "Paramètres de profil" + +#: plugins/3MFReader/WorkspaceDialog.qml:166 +#: plugins/3MFReader/WorkspaceDialog.qml:238 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246 +msgctxt "@action:label" +msgid "Name" +msgstr "Nom" + +#: plugins/3MFReader/WorkspaceDialog.qml:172 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263 +msgctxt "@action:label" +msgid "Intent" +msgstr "Intent" + +#: plugins/3MFReader/WorkspaceDialog.qml:178 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230 +msgctxt "@action:label" +msgid "Not in profile" +msgstr "Absent du profil" + +#: plugins/3MFReader/WorkspaceDialog.qml:179 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235 +msgctxt "@action:label" +msgid "%1 override" +msgid_plural "%1 overrides" +msgstr[0] "%1 écrasent" +msgstr[1] "%1 écrase" + +#: plugins/3MFReader/WorkspaceDialog.qml:185 +msgctxt "@action:label" +msgid "Derivative from" +msgstr "Dérivé de" + +#: plugins/3MFReader/WorkspaceDialog.qml:186 +msgctxt "@action:label" +msgid "%1, %2 override" +msgid_plural "%1, %2 overrides" +msgstr[0] "%1, %2 écrasent" +msgstr[1] "%1, %2 écrase" + +#: plugins/3MFReader/WorkspaceDialog.qml:226 +msgctxt "@action:label" +msgid "Material settings" +msgstr "Paramètres du matériau" + +#: plugins/3MFReader/WorkspaceDialog.qml:280 +msgctxt "@action:label" +msgid "Setting visibility" +msgstr "Visibilité des paramètres" + +#: plugins/3MFReader/WorkspaceDialog.qml:290 +msgctxt "@action:label" +msgid "Mode" +msgstr "Mode" + +#: plugins/3MFReader/WorkspaceDialog.qml:296 +msgctxt "@action:label" +msgid "%1 out of %2" +msgstr "%1 sur %2" + +#: plugins/3MFReader/WorkspaceDialog.qml:321 +msgctxt "@action:warning" +msgid "Loading a project will clear all models on the build plate." +msgstr "Le chargement d'un projet effacera tous les modèles sur le plateau." + +#: plugins/3MFReader/WorkspaceDialog.qml:367 +msgctxt "@label" +msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." +msgstr "Le matériau utilisé dans ce projet n'est actuellement pas installé dans Cura.
    Installer le profil de matériau et rouvrir le projet." + +#: plugins/3MFReader/WorkspaceDialog.qml:392 +msgctxt "@action:button" +msgid "Open" +msgstr "Ouvrir" + +#: plugins/3MFReader/WorkspaceDialog.qml:398 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "Ouvrir tout de même le projet" + +#: plugins/3MFReader/WorkspaceDialog.qml:407 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "Installer le matériel manquant" + +#: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33 +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "Fichier 3MF" + +#: plugins/3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "Lecteur 3MF" + +#: plugins/3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Fournit la prise en charge de la lecture de fichiers 3MF." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "Le plugin 3MF Writer est corrompu." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Il n'y a pas encore d'espace de travail à écrire. Veuillez d'abord ajouter une imprimante." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "Aucune autorisation d'écrire l'espace de travail ici." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "Le système d'exploitation ne permet pas d'enregistrer un fichier de projet à cet emplacement ou avec ce nom de fichier." + +#: plugins/3MFWriter/ThreeMFWriter.py:240 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Erreur d'écriture du fichier 3MF." + +#: plugins/3MFWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "Fichier 3MF" + +#: plugins/3MFWriter/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Projet Cura fichier 3MF" + +#: plugins/3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "Générateur 3MF" + +#: plugins/3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Permet l'écriture de fichiers 3MF." + +#: plugins/AMFReader/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "Fichier AMF" + +#: plugins/AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "Lecteur AMF" + +#: plugins/AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Fournit la prise en charge de la lecture de fichiers AMF." + +#: plugins/CuraDrive/plugin.json +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Sauvegardez et restaurez votre configuration." + +#: plugins/CuraDrive/plugin.json +msgctxt "name" +msgid "Cura Backups" +msgstr "Sauvegardes Cura" + +#: plugins/CuraDrive/src/CreateBackupJob.py:25 +msgctxt "@info:title" +msgid "Backups" +msgstr "Sauvegardes" + +#: plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Une erreur s’est produite lors du téléchargement de votre sauvegarde." + +#: plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "Création de votre sauvegarde..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "Une erreur s'est produite lors de la création de votre sauvegarde." + +#: plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Téléchargement de votre sauvegarde..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Le téléchargement de votre sauvegarde est terminé." + +#: plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "La sauvegarde dépasse la taille de fichier maximale." + +#: plugins/CuraDrive/src/DriveApiService.py:86 +#: plugins/CuraDrive/src/RestoreBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Une erreur s’est produite lors de la tentative de restauration de votre sauvegarde." + +#: plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Gérer les sauvegardes" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "Vous en voulez plus ?" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Sauvegarder maintenant" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Sauvegarde automatique" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Créez automatiquement une sauvegarde chaque jour où Cura est démarré." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 +msgctxt "@button" +msgid "Restore" +msgstr "Restaurer" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Supprimer la sauvegarde" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Êtes-vous sûr de vouloir supprimer cette sauvegarde ? Il est impossible d'annuler cette action." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Restaurer la sauvegarde" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "Vous devez redémarrer Cura avant que votre sauvegarde ne soit restaurée. Voulez-vous fermer Cura maintenant ?" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Version Cura" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Machines" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Matériaux" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Profils" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Plugins" + +#: plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Sauvegardes Cura" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "Mes sauvegardes" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Vous n'avez actuellement aucune sauvegarde. Utilisez le bouton « Sauvegarder maintenant » pour en créer une." + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Pendant la phase de prévisualisation, vous ne pourrez voir qu'un maximum de 5 sauvegardes. Supprimez une sauvegarde pour voir les plus anciennes." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Sauvegardez et synchronisez vos paramètres Cura." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 +#: plugins/Marketplace/resources/qml/Marketplace.qml:312 +#: resources/qml/Account/GeneralOperations.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180 +#: resources/qml/WelcomePages/CloudContent.qml:212 +msgctxt "@button" +msgid "Sign in" +msgstr "Se connecter" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "Échec de la découpe avec une erreur inattendue. Signalez un bug sur notre outil de suivi des problèmes." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:163 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "Échec de la découpe" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Notifier un bug" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:169 +msgctxt "@message:description" +msgid "Report a bug on UltiMaker Cura's issue tracker." +msgstr "Notifiez un bug sur l'outil de suivi des problèmes d'UltiMaker Cura." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:416 +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "Impossible de découper le matériau actuel, car celui-ci est incompatible avec la machine ou la configuration sélectionnée." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:417 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:450 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:477 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:501 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:514 +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "Impossible de découper" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:449 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "Impossible de couper avec les paramètres actuels. Les paramètres suivants contiennent des erreurs: {0}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:476 +#, 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 "Impossible de couper en raison de certains paramètres par modèle. Les paramètres suivants contiennent des erreurs sur un ou plusieurs modèles: {error_labels}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:488 +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "Impossible de couper car la tour primaire ou la (les) position(s) d'amorçage ne sont pas valides." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:500 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "Impossible de couper car il existe des objets associés à l'extrudeuse désactivée %s." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:510 +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:\n" +"- S'intègrent dans le volume de fabrication\n" +"- Sont affectés à un extrudeur activé\n" +"- N sont pas tous définis comme des mailles de modificateur" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Traitement des couches" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Informations" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Système CuraEngine" + +#: plugins/CuraEngineBackend/plugin.json +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." + +#: plugins/CuraProfileReader/__init__.py:14 +#: plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Profil Cura" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Lecteur de profil Cura" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Fournit la prise en charge de l'importation de profils Cura." + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Générateur de profil Cura" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Fournit la prise en charge de l'exportation de profils Cura." + +#: plugins/DigitalLibrary/plugin.json +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." + +#: plugins/DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 +msgctxt "@option" +msgid "Save Cura project and print file" +msgstr "Sauvegarder le projet Cura et imprimer le fichier" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Sauvegarder le projet Cura" + +#: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19 +msgctxt "@text Placeholder for the username if it has been deleted" +msgid "deleted user" +msgstr "utilisateur supprimé" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Impossible d'accéder aux informations de mise à jour." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, 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 "De nouvelles fonctionnalités ou des correctifs de bugs sont disponibles pour votre {machine_name} ! Si vous ne l'avez pas encore fait, il est recommandé de mettre à jour le micrologiciel de votre imprimante avec la version {latest_version}." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "Nouveau %s firmware stable disponible" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Comment effectuer la mise à jour" + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Vérifie les mises à jour du firmware." + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Vérificateur des mises à jour du firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Mettre à jour le firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "Mettre à jour le firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 +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 "Le firmware est le logiciel fonctionnant directement dans votre imprimante 3D. Ce firmware contrôle les moteurs pas à pas, régule la température et surtout, fait que votre machine fonctionne." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "Le firmware fourni avec les nouvelles imprimantes fonctionne, mais les nouvelles versions ont tendance à fournir davantage de fonctionnalités ainsi que des améliorations." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Mise à niveau automatique du firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Charger le firmware personnalisé" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "Impossible de se connecter à l'imprimante ; échec de la mise à jour du firmware." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 +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." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Sélectionner le firmware personnalisé" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Mise à jour du firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 +msgctxt "@label" +msgid "Updating firmware." +msgstr "Mise à jour du firmware en cours." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Mise à jour du firmware terminée." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "Échec de la mise à jour du firmware en raison d'une erreur inconnue." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "Échec de la mise à jour du firmware en raison d'une erreur de communication." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "Échec de la mise à jour du firmware en raison d'une erreur d'entrée/de sortie." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "Échec de la mise à jour du firmware en raison du firmware manquant." + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "name" +msgid "Firmware Updater" +msgstr "Programme de mise à jour du firmware" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Fournit à une machine des actions permettant la mise à jour du firmware." + +#: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "Fichier G-Code compressé" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lecteur G-Code compressé" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lit le G-Code à partir d'une archive compressée." + +#: plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "GCodeGzWriter ne prend pas en charge le mode texte." + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Générateur de G-Code compressé" + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Enregistre le G-Code dans une archive compressée." + +#: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14 +#: plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "Fichier GCode" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Lecteur de profil G-Code" + +#: plugins/GCodeProfileReader/plugin.json +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." + +#: plugins/GCodeReader/FlavorParser.py:359 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "Analyse du G-Code" + +#: plugins/GCodeReader/FlavorParser.py:361 +#: plugins/GCodeReader/FlavorParser.py:515 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "Détails G-Code" + +#: plugins/GCodeReader/FlavorParser.py:513 +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 "Assurez-vous que le g-code est adapté à votre imprimante et à la configuration de l'imprimante avant d'y envoyer le fichier. La représentation du g-code peut ne pas être exacte." + +#: plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "Fichier G" + +#: plugins/GCodeReader/plugin.json +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Permet le chargement et l'affichage de fichiers G-Code." + +#: plugins/GCodeReader/plugin.json +msgctxt "name" +msgid "G-code Reader" +msgstr "Lecteur G-Code" + +#: plugins/GCodeWriter/GCodeWriter.py:75 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "GCodeWriter ne prend pas en charge le mode non-texte." + +#: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Veuillez préparer le G-Code avant d'exporter." + +#: plugins/GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "Générateur de G-Code" + +#: plugins/GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Enregistre le G-Code dans un fichier." + +#: plugins/ImageReader/ConfigUI.qml:14 +msgctxt "@title:window" +msgid "Convert Image" +msgstr "Convertir l'image" + +#: plugins/ImageReader/ConfigUI.qml:33 +msgctxt "@action:label" +msgid "Height (mm)" +msgstr "Hauteur (mm)" + +#: plugins/ImageReader/ConfigUI.qml:56 +msgctxt "@info:tooltip" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "La distance maximale de chaque pixel à partir de la « Base »." + +#: plugins/ImageReader/ConfigUI.qml:66 +msgctxt "@action:label" +msgid "Base (mm)" +msgstr "Base (mm)" + +#: plugins/ImageReader/ConfigUI.qml:90 +msgctxt "@info:tooltip" +msgid "The base height from the build plate in millimeters." +msgstr "La hauteur de la base à partir du plateau en millimètres." + +#: plugins/ImageReader/ConfigUI.qml:100 +msgctxt "@action:label" +msgid "Width (mm)" +msgstr "Largeur (mm)" + +#: plugins/ImageReader/ConfigUI.qml:124 +msgctxt "@info:tooltip" +msgid "The width in millimeters on the build plate" +msgstr "La largeur en millimètres sur le plateau de fabrication" + +#: plugins/ImageReader/ConfigUI.qml:134 +msgctxt "@action:label" +msgid "Depth (mm)" +msgstr "Profondeur (mm)" + +#: plugins/ImageReader/ConfigUI.qml:158 +msgctxt "@info:tooltip" +msgid "The depth in millimeters on the build plate" +msgstr "La profondeur en millimètres sur le plateau" + +#: plugins/ImageReader/ConfigUI.qml:187 +msgctxt "@item:inlistbox" +msgid "Darker is higher" +msgstr "Le plus foncé est plus haut" + +#: plugins/ImageReader/ConfigUI.qml:188 +msgctxt "@item:inlistbox" +msgid "Lighter is higher" +msgstr "Le plus clair est plus haut" + +#: plugins/ImageReader/ConfigUI.qml:195 +msgctxt "@info:tooltip" +msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." +msgstr "Pour les lithophanies, les pixels foncés doivent correspondre à des emplacements plus épais afin d'empêcher la lumière de passer. Pour des cartes de hauteur, les pixels clairs signifient un terrain plus élevé, de sorte que les pixels clairs doivent correspondre à des emplacements plus épais dans le modèle 3D généré." + +#: plugins/ImageReader/ConfigUI.qml:205 +msgctxt "@action:label" +msgid "Color Model" +msgstr "Modèle de couleur" + +#: plugins/ImageReader/ConfigUI.qml:224 +msgctxt "@item:inlistbox" +msgid "Linear" +msgstr "Linéaire" + +#: plugins/ImageReader/ConfigUI.qml:225 +msgctxt "@item:inlistbox" +msgid "Translucency" +msgstr "Translucidité" + +#: plugins/ImageReader/ConfigUI.qml:232 +msgctxt "@info:tooltip" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "Pour les lithophanes, un modèle logarithmique simple de la translucidité est disponible. Pour les cartes de hauteur, les valeurs des pixels correspondent aux hauteurs de façon linéaire." + +#: plugins/ImageReader/ConfigUI.qml:242 +msgctxt "@action:label" +msgid "1mm Transmittance (%)" +msgstr "Transmission 1 mm (%)" + +#: plugins/ImageReader/ConfigUI.qml:263 +msgctxt "@info:tooltip" +msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." +msgstr "Le pourcentage de lumière pénétrant une impression avec une épaisseur de 1 millimètre. La diminution de cette valeur augmente le contraste dans les régions sombres et diminue le contraste dans les régions claires de l'image." + +#: plugins/ImageReader/ConfigUI.qml:274 +msgctxt "@action:label" +msgid "Smoothing" +msgstr "Lissage" + +#: plugins/ImageReader/ConfigUI.qml:298 +msgctxt "@info:tooltip" +msgid "The amount of smoothing to apply to the image." +msgstr "La quantité de lissage à appliquer à l'image." + +#: plugins/ImageReader/ConfigUI.qml:329 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 +#: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25 +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + +#: plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "Image JPG" + +#: plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "Image JPEG" + +#: plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "Image PNG" + +#: plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "Image BMP" + +#: plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "Image GIF" + +#: plugins/ImageReader/plugin.json +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." + +#: plugins/ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Lecteur d'images" + +#: plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Profils Cura 15.04" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Lecteur de profil Cura antérieur" + +#: plugins/LegacyProfileReader/plugin.json +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." + +#: plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Paramètres de la machine" + +#: plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Imprimante" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Paramètres de la buse" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Taille de la buse" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Diamètre du matériau compatible" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Décalage buse X" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Décalage buse Y" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Numéro du ventilateur de refroidissement" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "Extrudeuse G-Code de démarrage" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "Extrudeuse G-Code de fin" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Paramètres de l'imprimante" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (Largeur)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Profondeur)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Hauteur)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Forme du plateau" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 +msgctxt "@label" +msgid "Origin at center" +msgstr "Origine au centre" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 +msgctxt "@label" +msgid "Heated bed" +msgstr "Plateau chauffant" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Volume de fabrication chauffant" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 +msgctxt "@label" +msgid "G-code flavor" +msgstr "Parfum G-Code" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Paramètres de la tête d'impression" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 +msgctxt "@label" +msgid "X min" +msgstr "X min" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 +msgctxt "@label" +msgid "Y min" +msgstr "Y min" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 +msgctxt "@label" +msgid "X max" +msgstr "X max" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 +msgctxt "@label" +msgid "Y max" +msgstr "Y max" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Hauteur du portique" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Nombre d'extrudeuses" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:342 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Appliquer les décalages offset de l'extrudeuse au GCode" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:390 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "G-Code de démarrage" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:401 +msgctxt "@title:label" +msgid "End G-code" +msgstr "G-Code de fin" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Action Paramètres de la machine" + +#: plugins/MachineSettingsAction/plugin.json +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.)" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "Vous souhaitez synchroniser du matériel et des logiciels avec votre compte?" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:95 +msgctxt "@info:title" +msgid "Changes detected from your UltiMaker account" +msgstr "Changements détectés à partir de votre compte UltiMaker" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 +msgctxt "@action:button" +msgid "Sync" +msgstr "Synchroniser" + +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "Synchronisation..." + +#: plugins/Marketplace/CloudSync/LicenseModel.py:12 +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:79 +msgctxt "@button" +msgid "Decline" +msgstr "Refuser" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:13 +#: resources/qml/WelcomePages/UserAgreementContent.qml:53 +msgctxt "@button" +msgid "Agree" +msgstr "Accepter" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:77 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Plugin d'accord de licence" + +#: plugins/Marketplace/CloudSync/LicensePresenter.py:42 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Décliner et supprimer du compte" + +#: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "Vous devez quitter et redémarrer {} avant que les changements apportés ne prennent effet." + +#: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "Échec de téléchargement des plugins {}" + +#: plugins/Marketplace/LocalPackageList.py:28 +msgctxt "@label" +msgid "Installed Plugins" +msgstr "Plugins installés" + +#: plugins/Marketplace/LocalPackageList.py:29 +msgctxt "@label" +msgid "Installed Materials" +msgstr "Matériaux installés" + +#: plugins/Marketplace/LocalPackageList.py:33 +msgctxt "@label" +msgid "Bundled Plugins" +msgstr "Plugins groupés" + +#: plugins/Marketplace/LocalPackageList.py:34 +msgctxt "@label" +msgid "Bundled Materials" +msgstr "Matériaux groupés" + +#: plugins/Marketplace/PackageModel.py:43 +msgctxt "@label:property" +msgid "Unknown Package" +msgstr "Dossier inconnu" + +#: plugins/Marketplace/PackageModel.py:66 +msgctxt "@label:property" +msgid "Unknown Author" +msgstr "Auteur inconnu" + +#: plugins/Marketplace/PackageModel.py:95 +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 "Le pack de matériau associé au projet Cura est introuvable sur la Marketplace Ultimaker. Utilisez la description incomplète du profil de matériau stockée dans le fichier de projet Cura à vos risques et périls." + +#: plugins/Marketplace/RemotePackageList.py:117 +msgctxt "@info:error" +msgid "Could not interpret the server's response." +msgstr "Impossible d'interpréter la réponse du serveur." + +#: plugins/Marketplace/RemotePackageList.py:148 +msgctxt "@info:error" +msgid "Could not reach Marketplace." +msgstr "Impossible d'accéder à la Marketplace." + +#: plugins/Marketplace/plugin.json +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." + +#: plugins/Marketplace/plugin.json +msgctxt "name" +msgid "Marketplace" +msgstr "Marketplace" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 +msgctxt "@title" +msgid "Changes from your account" +msgstr "Changements à partir de votre compte" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +msgctxt "@button" +msgid "Dismiss" +msgstr "Ignorer" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +#: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 +#: resources/qml/WelcomePages/WhatsNewContent.qml:175 +msgctxt "@button" +msgid "Next" +msgstr "Suivant" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "Les packages suivants seront ajoutés:" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "Les packages suivants ne peuvent pas être installés en raison d'une version incompatible de Cura :" + +#: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "Installer les matériaux manquants" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "Contrat de licence du plugin" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:47 +msgctxt "@text" +msgid "Please read and agree with the plugin licence." +msgstr "Veuillez lire et accepter la licence du plugin." + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "Accepter" + +#: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Gérer les packages" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:12 +msgctxt "@header" +msgid "Manage packages" +msgstr "Gérer les packages" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:16 +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 "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" +msgid "Loading..." +msgstr "Chargement..." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "Plugins" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "Matériaux" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "Rechercher dans le navigateur" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:271 +msgctxt "@button" +msgid "In order to use the package you will need to restart Cura" +msgstr "Pour pouvoir utiliser le package, vous devrez redémarrer Cura" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:279 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "Quitter %1" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:300 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" +msgstr "Veuillez vous connecter pour obtenir les plug-ins et matériaux vérifiés pour UltiMaker Cura Enterprise" + +#: plugins/Marketplace/resources/qml/Materials.qml:8 +#: plugins/Marketplace/resources/qml/MissingPackages.qml:8 +msgctxt "@header" +msgid "Install Materials" +msgstr "Installer des matériaux" + +#: plugins/Marketplace/resources/qml/Materials.qml:12 +msgctxt "@text" +msgid "Select and install material profiles optimised for your UltiMaker 3D printers." +msgstr "Sélectionnez et installez des profils de matériaux optimisés pour vos imprimantes 3D UltiMaker." + +#: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "Vous devez accepter la licence pour installer le package" + +#: plugins/Marketplace/resources/qml/OnboardBanner.qml:101 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205 +msgctxt "@button:label" +msgid "Learn More" +msgstr "En Savoir Plus" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170 +msgctxt "@label Is followed by the name of an author" +msgid "By" +msgstr "Par" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Disable" +msgstr "Désactiver" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Enable" +msgstr "Activer" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242 +msgctxt "@button" +msgid "Downgrading..." +msgstr "Téléchargement..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243 +msgctxt "@button" +msgid "Downgrade" +msgstr "Revenir à une version précédente" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247 +msgctxt "@button" +msgid "Installing..." +msgstr "Installation..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248 +msgctxt "@button" +msgid "Install" +msgstr "Installer" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252 +msgctxt "@button" +msgid "Uninstall" +msgstr "Désinstaller" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Update" +msgstr "Mise à jour" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Updating..." +msgstr "Mise à jour..." + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "Détails sur le paquet" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Précédent" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "Imprimantes compatibles" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "Aucune information sur la compatibilité" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "Matériaux de support compatibles" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "Aucun" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:193 +msgctxt "@header" +msgid "Compatible with Material Station" +msgstr "Compatible avec la Material Station" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "No" +msgstr "Non" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "Yes" +msgstr "Oui" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:219 +msgctxt "@header" +msgid "Optimized for Air Manager" +msgstr "Optimisé pour Air Manager" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Visit plug-in website" +msgstr "Visitez le site Web du plugin" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Website" +msgstr "Site Internet" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:252 +msgctxt "@button" +msgid "Buy spool" +msgstr "Acheter une bobine" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:261 +msgctxt "@button" +msgid "Safety datasheet" +msgstr "Fiche technique sur la sécurité" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:270 +msgctxt "@button" +msgid "Technical datasheet" +msgstr "Fiche technique" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Failed to load packages:" +msgstr "Échec du chargement des packages :" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Retry?" +msgstr "Réessayer ?" + +#: plugins/Marketplace/resources/qml/Packages.qml:167 +msgctxt "@button" +msgid "Loading" +msgstr "Chargement" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No more results to load" +msgstr "Plus aucun résultat à charger" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No results found with current filter" +msgstr "Aucun résultat trouvé avec le filtre actuel" + +#: plugins/Marketplace/resources/qml/Packages.qml:226 +msgctxt "@button" +msgid "Load more" +msgstr "Charger plus" + +#: plugins/Marketplace/resources/qml/Plugins.qml:8 +msgctxt "@header" +msgid "Install Plugins" +msgstr "Installer les plugins" + +#: plugins/Marketplace/resources/qml/Plugins.qml:12 +msgctxt "@text" +msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." +msgstr "Simplifiez votre flux de travail et personnalisez votre expérience UltiMaker Cura avec des plugins fournis par notre incroyable communauté d'utilisateurs." + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 +msgctxt "@info" +msgid "UltiMaker Verified Plug-in" +msgstr "Plugin UltiMaker vérifié" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "UltiMaker Certified Material" +msgstr "Matériau UltiMaker certifié" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 +msgctxt "@info" +msgid "UltiMaker Verified Package" +msgstr "Package UltiMaker vérifié" + +#: plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "Assistant de modèle 3D" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -831,828 +2379,1097 @@ msgid "" "

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

    \n" "

    View print quality guide

    " msgstr "" -"

    Un ou plusieurs modèles 3D peuvent ne pas s'imprimer de manière optimale en raison de la taille du modèle et de la configuration matérielle :

    \n" +"

    Un ou plusieurs modèles 3D peuvent ne pas s'imprimer de manière optimale en raison de la taille du modèle et de la configuration matérielle:

    \n" "

    {model_names}

    \n" "

    Découvrez comment optimiser la qualité et la fiabilité de l'impression.

    \n" "

    Consultez le guide de qualité d'impression

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 -#, 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 "Le fichier projet {0} contient un type de machine inconnu {1}. Impossible d'importer la machine. Les modèles seront importés à la place." +#: plugins/ModelChecker/plugin.json +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." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "Ouvrir un fichier de projet" +#: plugins/ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Contrôleur de modèle" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "Le fichier de projet {0} est soudainement inaccessible : {1}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:659 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "Impossible d'ouvrir le fichier de projet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:658 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "Le fichier de projet {0} est corrompu : {1}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:711 -#, 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 "Le fichier de projet {0} a été réalisé en utilisant des profils inconnus de cette version d'Ultimaker Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Recommandé" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:214 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Personnalisé" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:390 -msgctxt "@info:status" -msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 -msgctxt "@info:title" -msgid "Material profiles not installed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 -msgctxt "@action:button" -msgid "Install Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "Fichier 3MF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "Le plug-in 3MF Writer est corrompu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "Il n'y a pas encore d'espace de travail à écrire. Veuillez d'abord ajouter une imprimante." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "Aucune autorisation d'écrire l'espace de travail ici." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "Le système d'exploitation ne permet pas d'enregistrer un fichier de projet à cet emplacement ou avec ce nom de fichier." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:238 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Erreur d'écriture du fichier 3MF." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:282 -#, python-brace-format -msgctxt "@error:material" -msgid "It was not possible to store material package information in project file: {material}. This project may not open correctly on other systems." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 -msgctxt "@info:title" -msgid "Failed to save material package information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "Fichier 3MF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Projet Cura fichier 3MF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Fichier AMF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 -msgctxt "@info:title" -msgid "Backups" -msgstr "Sauvegardes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Une erreur s’est produite lors du téléchargement de votre sauvegarde." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Création de votre sauvegarde..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "Une erreur s'est produite lors de la création de votre sauvegarde." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Téléchargement de votre sauvegarde..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Le téléchargement de votre sauvegarde est terminé." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "La sauvegarde dépasse la taille de fichier maximale." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Une erreur s’est produite lors de la tentative de restauration de votre sauvegarde." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Gérer les sauvegardes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "Échec de la découpe avec une erreur inattendue. Signalez un bug sur notre outil de suivi des problèmes." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "Échec de la découpe" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 -msgctxt "@message:button" -msgid "Report a bug" -msgstr "Notifier un bug" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 -msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." -msgstr "Notifiez un bug sur l'outil de suivi des problèmes d'Ultimaker Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:400 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "Impossible de découper le matériau actuel, car celui-ci est incompatible avec la machine ou la configuration sélectionnée." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:401 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:434 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:461 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:473 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:485 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:498 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "Impossible de découper" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:433 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "Impossible de couper avec les paramètres actuels. Les paramètres suivants contiennent des erreurs : {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:460 -#, 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 "Impossible de couper en raison de certains paramètres par modèle. Les paramètres suivants contiennent des erreurs sur un ou plusieurs modèles : {error_labels}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:472 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "Impossible de couper car la tour primaire ou la (les) position(s) d'amorçage ne sont pas valides." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:484 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "Impossible de couper car il existe des objets associés à l'extrudeuse désactivée %s." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 -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 :\n" -"- S'intègrent dans le volume de fabrication\n" -"- Sont affectés à un extrudeur activé\n" -"- N sont pas tous définis comme des mailles de modificateur" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Traitement des couches" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 -msgctxt "@info:title" -msgid "Information" -msgstr "Informations" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Profil Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" -msgid "Could not access update information." -msgstr "Impossible d'accéder aux informations de mise à jour." +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 "" +"Assurez-vous que votre imprimante est connectée:\n" +"- Vérifiez si l'imprimante est sous tension.\n" +"- Vérifiez si l'imprimante est connectée au réseau.\n" +"- Vérifiez si vous êtes connecté pour découvrir les imprimantes connectées au cloud." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, 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 "De nouvelles fonctionnalités ou des correctifs de bugs sont disponibles pour votre {machine_name} ! Si vous ne l'avez pas encore fait, il est recommandé de mettre à jour le micrologiciel de votre imprimante avec la version {latest_version}." +#: plugins/MonitorStage/MonitorMain.qml:113 +msgctxt "@info" +msgid "Please connect your printer to the network." +msgstr "Veuillez connecter votre imprimante au réseau." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s stable firmware available" -msgstr "Nouveau %s firmware stable disponible" +#: plugins/MonitorStage/MonitorMain.qml:148 +msgctxt "@label link to technical assistance" +msgid "View user manuals online" +msgstr "Voir les manuels d'utilisation en ligne" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "Comment effectuer la mise à jour" +#: plugins/MonitorStage/MonitorMain.qml:164 +msgctxt "@info" +msgid "In order to monitor your print from Cura, please connect the printer." +msgstr "Pour surveiller votre impression depuis Cura, veuillez connecter l'imprimante." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Mettre à jour le firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Fichier G-Code compressé" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter ne prend pas en charge le mode texte." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Fichier GCode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:350 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Analyse du G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:506 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "Détails G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 -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 "Assurez-vous que le g-code est adapté à votre imprimante et à la configuration de l'imprimante avant d'y envoyer le fichier. La représentation du g-code peut ne pas être exacte." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Fichier G" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter ne prend pas en charge le mode non-texte." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Veuillez préparer le G-Code avant d'exporter." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Image JPG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Image JPEG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Image PNG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Image BMP" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Image GIF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Profils Cura 15.04" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Paramètres de la machine" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Vous souhaitez synchroniser du matériel et des logiciels avec votre compte ?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Changements détectés à partir de votre compte Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 -msgctxt "@action:button" -msgid "Sync" -msgstr "Synchroniser" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Synchronisation..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:12 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:79 -msgctxt "@button" -msgid "Decline" -msgstr "Refuser" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:13 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53 -msgctxt "@button" -msgid "Agree" -msgstr "Accepter" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Plug-in d'accord de licence" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Décliner et supprimer du compte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "Vous devez quitter et redémarrer {} avant que les changements apportés ne prennent effet." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "Échec de téléchargement des plugins {}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:28 -msgctxt "@label" -msgid "Installed Plugins" -msgstr "Plug-ins installés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:29 -msgctxt "@label" -msgid "Installed Materials" -msgstr "Matériaux installés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:33 -msgctxt "@label" -msgid "Bundled Plugins" -msgstr "Plug-ins groupés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:34 -msgctxt "@label" -msgid "Bundled Materials" -msgstr "Matériaux groupés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:43 -msgctxt "@label:property" -msgid "Unknown Package" -msgstr "Dossier inconnu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:66 -msgctxt "@label:property" -msgid "Unknown Author" -msgstr "Auteur inconnu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:117 -msgctxt "@info:error" -msgid "Could not interpret the server's response." -msgstr "Impossible d'interpréter la réponse du serveur." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:148 -msgctxt "@info:error" -msgid "Could not reach Marketplace." -msgstr "Impossible d'accéder à la Marketplace." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 +#: plugins/MonitorStage/__init__.py:14 msgctxt "@item:inmenu" msgid "Monitor" msgstr "Surveiller" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: plugins/MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Étape de surveillance" + +#: plugins/MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Fournit une étape de surveillance dans Cura." + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 +msgctxt "@label" +msgid "Mesh Type" +msgstr "Type de maille" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 +msgctxt "@label" +msgid "Normal model" +msgstr "Modèle normal" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 +msgctxt "@label" +msgid "Print as support" +msgstr "Imprimer comme support" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Modifier les paramètres de chevauchement" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "Ne prend pas en charge le chevauchement" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 +msgctxt "@item:inlistbox" +msgid "Infill mesh only" +msgstr "Maille de remplissage uniquement" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161 +msgctxt "@item:inlistbox" +msgid "Cutting mesh" +msgstr "Maille de coupe" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386 +msgctxt "@action:button" +msgid "Select settings" +msgstr "Sélectionner les paramètres" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Sélectionner les paramètres pour personnaliser ce modèle" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtrer..." + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Afficher tout" + +#: plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" msgid "Per Model Settings" msgstr "Paramètres par modèle" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +#: plugins/PerObjectSettingsTool/__init__.py:15 msgctxt "@info:tooltip" msgid "Configure Per Model Settings" msgstr "Configurer les paramètres par modèle" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Outil de paramètres par modèle" + +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Fournit les paramètres par modèle." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Post-traitement" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "Modifier le G-Code" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Plugin de post-traitement" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 +msgctxt "@label" +msgid "Post Processing Scripts" +msgstr "Scripts de post-traitement" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "Ajouter un script" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 +msgctxt "@label" +msgid "Settings" +msgstr "Paramètres" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Modifiez les scripts de post-traitement actifs." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "Le script suivant est actif :" +msgstr[1] "Les scripts suivants sont actifs :" + +#: plugins/PostProcessingPlugin/plugin.json +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" + +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Post-traitement" + +#: plugins/PrepareStage/PrepareMenu.qml:74 +msgctxt "@button" +msgid "Add printer" +msgstr "Ajouter une imprimante" + +#: plugins/PrepareStage/PrepareMenu.qml:90 +msgctxt "@button" +msgid "Manage printers" +msgstr "Gérer les imprimantes" + +#: plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "Préparer" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 +#: plugins/PrepareStage/plugin.json +msgctxt "name" +msgid "Prepare Stage" +msgstr "Étape de préparation" + +#: plugins/PrepareStage/plugin.json +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Fournit une étape de préparation dans Cura." + +#: plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" msgid "Preview" msgstr "Aperçu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +#: plugins/PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Étape de prévisualisation" + +#: plugins/PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Fournit une étape de prévisualisation dans Cura." + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Enregistrer sur un lecteur amovible" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Enregistrer sur un lecteur amovible {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 msgctxt "@info:status" msgid "There are no file formats available to write with!" -msgstr "Aucun format de fichier n'est disponible pour écriture !" +msgstr "Aucun format de fichier n'est disponible pour écriture!" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 #, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Enregistrement sur le lecteur amovible {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 msgctxt "@info:title" msgid "Saving" msgstr "Enregistrement" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "Impossible d'enregistrer {0} : {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 #, 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 "Impossible de trouver un nom de fichier lors d'une tentative d'écriture sur {device}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 #, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Impossible d'enregistrer sur le lecteur {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 #, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Enregistré sur le lecteur amovible {0} sous {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 msgctxt "@info:title" msgid "File Saved" msgstr "Fichier enregistré" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 msgctxt "@action:button" msgid "Eject" msgstr "Ejecter" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 #, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Ejecter le lecteur amovible {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 #, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Lecteur {0} éjecté. Vous pouvez maintenant le retirer en tout sécurité." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 msgctxt "@info:title" msgid "Safely Remove Hardware" msgstr "Retirez le lecteur en toute sécurité" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 #, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Impossible d'éjecter {0}. Un autre programme utilise peut-être ce lecteur." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +#: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 msgctxt "@item:intext" msgid "Removable Drive" msgstr "Lecteur amovible" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "Cura n'affiche pas les couches avec précision lorsque l'impression filaire est activée." +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Vue simulation" +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Plugin de périphérique de sortie sur disque amovible" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 +#: plugins/SentryLogger/plugin.json +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" + +#: plugins/SentryLogger/plugin.json +msgctxt "name" +msgid "Sentry Logger" +msgstr "Journal d'événements dans Sentry" + +#: plugins/SimulationView/SimulationView.py:129 msgctxt "@info:status" msgid "Nothing is shown because you need to slice first." msgstr "Rien ne s'affiche car vous devez d'abord découper." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 +#: plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "No layers to show" msgstr "Pas de couches à afficher" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 +#: plugins/SimulationView/SimulationView.py:132 +#: plugins/SolidView/SolidView.py:74 msgctxt "@info:option_text" msgid "Do not show this message again" msgstr "Ne plus afficher ce message" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:18 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:47 +msgctxt "@label" +msgid "Color scheme" +msgstr "Modèle de couleurs" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Couleur du matériau" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Type de ligne" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:112 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Vitesse" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:116 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Épaisseur de la couche" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:120 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Largeur de ligne" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:124 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Débit" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:164 +msgctxt "@label" +msgid "Compatibility Mode" +msgstr "Mode de compatibilité" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:231 +msgctxt "@label" +msgid "Travels" +msgstr "Déplacements" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:237 +msgctxt "@label" +msgid "Helpers" +msgstr "Aides" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:243 +msgctxt "@label" +msgid "Shell" +msgstr "Coque" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:249 +msgctxt "@label" +msgid "Infill" +msgstr "Remplissage" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:257 +msgctxt "@label" +msgid "Starts" +msgstr "Démarre" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:304 +msgctxt "@label" +msgid "Only Show Top Layers" +msgstr "Afficher uniquement les couches supérieures" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:313 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "Afficher 5 niveaux détaillés en haut" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:326 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Haut / bas" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:330 +msgctxt "@label" +msgid "Inner Wall" +msgstr "Paroi interne" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:397 +msgctxt "@label" +msgid "min" +msgstr "min" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:462 +msgctxt "@label" +msgid "max" +msgstr "max" + +#: plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Vue en couches" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +#: plugins/SimulationView/plugin.json +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Fournit l'aperçu des données du slice." + +#: plugins/SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "Vue simulation" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Plus d'informations sur la collecte de données anonymes" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 +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 recueille des données anonymes afin d'améliorer la qualité d'impression et l'expérience utilisateur. Voici un exemple de toutes les données partagées :" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Je ne veux pas envoyer de données anonymes" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Autoriser l'envoi de données anonymes" + +#: plugins/SliceInfoPlugin/SliceInfo.py:95 msgctxt "@text" msgid "Unable to read example data file." msgstr "Impossible de lire le fichier de données d'exemple." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Information sur le découpage" + +#: plugins/SliceInfoPlugin/plugin.json +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." + +#: plugins/SolidView/SolidView.py:71 msgctxt "@info:status" msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." msgstr "Les zones surlignées indiquent que des surfaces manquent ou sont étrangères. Réparez votre modèle et ouvrez-le à nouveau dans Cura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +#: plugins/SolidView/SolidView.py:73 msgctxt "@info:title" msgid "Model Errors" msgstr "Erreurs du modèle" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +#: plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" msgstr "Vue solide" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +#: plugins/SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Affiche une vue en maille solide normale." + +#: plugins/SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Vue solide" + +#: plugins/SupportEraser/__init__.py:12 msgctxt "@label" msgid "Support Blocker" msgstr "Blocage des supports" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 +#: plugins/SupportEraser/__init__.py:13 msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "Créer un volume dans lequel les supports ne sont pas imprimés." -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 +#: plugins/SupportEraser/plugin.json +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" + +#: plugins/SupportEraser/plugin.json +msgctxt "name" +msgid "Support Eraser" +msgstr "Effaceur de support" + +#: plugins/TrimeshReader/__init__.py:15 msgctxt "@item:inlistbox 'Open' is part of the name of this file format." msgid "Open Compressed Triangle Mesh" msgstr "Ouvrir le maillage triangulaire compressé" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: plugins/TrimeshReader/__init__.py:19 msgctxt "@item:inlistbox" msgid "COLLADA Digital Asset Exchange" msgstr "COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: plugins/TrimeshReader/__init__.py:23 msgctxt "@item:inlistbox" msgid "glTF Binary" msgstr "glTF binaire" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: plugins/TrimeshReader/__init__.py:27 msgctxt "@item:inlistbox" msgid "glTF Embedded JSON" msgstr "glTF incorporé JSON" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: plugins/TrimeshReader/__init__.py:36 msgctxt "@item:inlistbox" msgid "Stanford Triangle Format" msgstr "Format Triangle de Stanford" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: plugins/TrimeshReader/__init__.py:40 msgctxt "@item:inlistbox" msgid "Compressed COLLADA Digital Asset Exchange" msgstr "COLLADA Digital Asset Exchange compressé" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker Format Package" +#: plugins/TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Fournit la prise en charge de la lecture de fichiers modèle 3D." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 +#: plugins/TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Lecteur de Trimesh" + +#: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "UltiMaker Format Package" +msgstr "UltiMaker Format Package" + +#: plugins/UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Fournit un support pour la lecture des paquets de format UltiMaker." + +#: plugins/UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "Lecteur UFP" + +#: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80 +#: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115 +#: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180 msgctxt "@info:error" msgid "Can't write to UFP file:" -msgstr "Impossible d'écrire dans le fichier UFP :" +msgstr "Impossible d'écrire dans le fichier UFP:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Nivellement du plateau" +#: plugins/UFPWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Permet l'écriture de fichiers UltiMaker Format Package." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Sélectionner les mises à niveau" +#: plugins/UFPWriter/plugin.json +msgctxt "name" +msgid "UFP Writer" +msgstr "Générateur UFP" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Gère les connexions réseau vers les imprimantes UltiMaker en réseau." + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Connexion réseau UltiMaker" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Connecter à l'imprimante en réseau" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Sélectionnez votre imprimante dans la liste ci-dessous :" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +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 "Pour imprimer directement sur votre imprimante via le réseau, assurez-vous que votre imprimante est connectée au réseau via un câble Ethernet ou en connectant votre imprimante à votre réseau Wi-Fi. Si vous ne connectez pas Cura avec votre imprimante, vous pouvez utiliser une clé USB pour transférer les fichiers g-code sur votre imprimante." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 +msgctxt "@action:button" +msgid "Edit" +msgstr "Modifier" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 +#: resources/qml/Preferences/MachinesPage.qml:153 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:186 +#: resources/qml/Preferences/ProfilesPage.qml:321 +msgctxt "@action:button" +msgid "Remove" +msgstr "Supprimer" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Rafraîchir" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 +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" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 +msgctxt "@label" +msgid "Type" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 +msgctxt "@label" +msgid "Firmware version" +msgstr "Version du firmware" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 +msgctxt "@label" +msgid "Address" +msgstr "Adresse" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Cette imprimante n'est pas configurée pour héberger un groupe d'imprimantes." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Cette imprimante est l'hôte d'un groupe d'imprimantes %1." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "L'imprimante à cette adresse n'a pas encore répondu." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" +msgid "Connect" +msgstr "Connecter" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Adresse IP non valide" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Veuillez saisir une adresse IP valide." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Adresse de l'imprimante" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Saisissez l'adresse IP de votre imprimante sur le réseau." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Modifications de configuration" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 +msgctxt "@action:button" +msgid "Override" +msgstr "Remplacer" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "L'imprimante assignée, %1, nécessite la modification de configuration suivante :" +msgstr[1] "L'imprimante assignée, %1, nécessite les modifications de configuration suivantes :" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "L'imprimante %1 est assignée, mais le projet contient une configuration matérielle inconnue." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Changer le matériau %1 de %2 à %3." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "Charger %3 comme matériau %1 (Ceci ne peut pas être remplacé)." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Changer le print core %1 de %2 à %3." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "Si vous sélectionnez « Remplacer », les paramètres de la configuration actuelle de l'imprimante seront utilisés. Cela peut entraîner l'échec de l'impression." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@label" +msgid "Move to top" +msgstr "Déplacer l'impression en haut" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155 +msgctxt "@label" +msgid "Delete" +msgstr "Effacer" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186 +#: resources/qml/MonitorButton.qml:284 +msgctxt "@label" +msgid "Resume" +msgstr "Reprendre" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188 +msgctxt "@label" +msgid "Pausing..." +msgstr "Mise en pause..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190 +msgctxt "@label" +msgid "Resuming..." +msgstr "Reprise..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192 +#: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288 +msgctxt "@label" +msgid "Pause" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Abort" +msgstr "Abandonner" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Aborting..." +msgstr "Abandon..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218 +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 "Êtes-vous sûr de vouloir déplacer %1 en haut de la file d'attente ?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Déplacer l'impression en haut de la file d'attente" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "Êtes-vous sûr de vouloir supprimer %1 ?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Supprimer l'impression" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "Êtes-vous sûr de vouloir annuler %1 ?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237 +#: resources/qml/MonitorButton.qml:326 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Abandonner l'impression" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Imprimante indisponible" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 +msgctxt "@label" +msgid "First available" +msgstr "Premier disponible" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Veuillez mettre à jour le Firmware de votre imprimante pour gérer la file d'attente à distance." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +msgctxt "@label:status" +msgid "Aborted" +msgstr "Abandonné" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 +msgctxt "@label:status" +msgid "Finished" +msgstr "Terminé" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Préparation..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "Abandon..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +msgctxt "@label:status" +msgid "Failed" +msgstr "Échec" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Mise en pause..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Paused" +msgstr "En pause" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Reprise..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Action required" +msgstr "Action requise" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Finit %1 à %2" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Gérer l'imprimante" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280 +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 "Les flux de webcam des imprimantes cloud ne peuvent pas être visualisés depuis UltiMaker Cura. Cliquez sur « Gérer l'imprimante » pour visiter Ultimaker Digital Factory et voir cette webcam." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Chargement..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Indisponible" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Injoignable" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Idle" +msgstr "Inactif" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361 +msgctxt "@label:status" +msgid "Printing" +msgstr "Impression" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402 +msgctxt "@label" +msgid "Untitled" +msgstr "Sans titre" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417 +msgctxt "@label" +msgid "Anonymous" +msgstr "Anonyme" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Nécessite des modifications de configuration" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452 +msgctxt "@action:button" +msgid "Details" +msgstr "Détails" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 +msgctxt "@label" +msgid "Queued" +msgstr "Mis en file d'attente" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Gérer dans le navigateur" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "Il n'y a pas de travaux d'impression dans la file d'attente. Découpez et envoyez une tache pour en ajouter une." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "Print jobs" +msgstr "Tâches d'impression" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108 +msgctxt "@label" +msgid "Total print time" +msgstr "Temps total d'impression" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117 +msgctxt "@label" +msgid "Waiting for" +msgstr "Attente de" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117 +msgctxt "@info" +msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" +msgstr "Surveillez vos imprimantes à distance avec Ultimaker Digital Factory" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129 +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Afficher les imprimantes dans Digital Factory" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Imprimer sur le réseau" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 +msgctxt "@action:button" +msgid "Print" +msgstr "Imprimer" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 +msgctxt "@label" +msgid "Printer selection" +msgstr "Sélection d'imprimantes" + +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162 msgctxt "@action:button" msgid "Print via cloud" msgstr "Imprimer via le cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Imprimer via le cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Connecté via le cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276 msgctxt "@action:button" msgid "Monitor print" msgstr "Surveiller l'impression" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278 msgctxt "@action:tooltip" msgid "Track the print in Ultimaker Digital Factory" msgstr "Suivre l'impression dans Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" -msgstr "Code d'erreur inconnu lors du téléchargement d'une tâche d'impression : {0}" +msgstr "Code d'erreur inconnu lors du téléchargement d'une tâche d'impression: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "Nouvelle imprimante détectée à partir de votre compte Ultimaker" -msgstr[1] "Nouvelles imprimantes détectées à partir de votre compte Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:242 -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "Ajout de l'imprimante {name} ({model}) à partir de votre compte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:261 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "... et {0} autre" -msgstr[1] "... et {0} autres" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:266 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "Imprimantes ajoutées à partir de Digital Factory :" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:334 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "Une connexion cloud n'est pas disponible pour une imprimante" -msgstr[1] "Une connexion cloud n'est pas disponible pour certaines imprimantes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:343 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "Cette imprimante n'est pas associée à Digital Factory :" -msgstr[1] "Ces imprimantes ne sont pas associées à Digital Factory :" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:348 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:440 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:352 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "Pour établir une connexion, veuillez visiter le site {website_link}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:356 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "Conserver les configurations d'imprimante" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "Supprimer des imprimantes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:442 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425 #, 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 "L'imprimante {printer_name} sera supprimée jusqu'à la prochaine synchronisation de compte." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:443 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426 #, 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 "Pour supprimer {printer_name} définitivement, visitez le site {digital_factory_link}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:444 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427 #, 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 "Voulez-vous vraiment supprimer {printer_name} temporairement ?" +msgstr "Voulez-vous vraiment supprimer {printer_name} temporairement?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474 msgctxt "@title:window" msgid "Remove printers?" -msgstr "Supprimer des imprimantes ?" +msgstr "Supprimer des imprimantes?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477 #, python-brace-format msgctxt "@label" msgid "" @@ -1663,21 +3480,21 @@ msgid_plural "" "Are you sure you want to continue?" msgstr[0] "" "Vous êtes sur le point de supprimer {0} imprimante de Cura. Cette action est irréversible.\n" -"Voulez-vous vraiment continuer ?" +"Voulez-vous vraiment continuer?" msgstr[1] "" "Vous êtes sur le point de supprimer {0} imprimantes de Cura. Cette action est irréversible.\n" -"Voulez-vous vraiment continuer ?" +"Voulez-vous vraiment continuer?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be undone.\n" "Are you sure you want to continue?" msgstr "" "Vous êtes sur le point de supprimer toutes les imprimantes de Cura. Cette action est irréversible.\n" -"Voulez-vous vraiment continuer ?" +"Voulez-vous vraiment continuer?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, python-brace-format msgctxt "@info:status" msgid "" @@ -1687,2492 +3504,1372 @@ msgstr "" "Votre imprimante {printer_name} pourrait être connectée via le cloud.\n" " Gérez votre file d'attente d'impression et surveillez vos impressions depuis n'importe où en connectant votre imprimante à Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 msgctxt "@info:title" msgid "Are you ready for cloud printing?" -msgstr "Êtes-vous prêt pour l'impression dans le cloud ?" +msgstr "Êtes-vous prêt pour l'impression dans le cloud?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 msgctxt "@action" msgid "Get started" msgstr "Prise en main" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24 msgctxt "@action" msgid "Learn more" msgstr "En savoir plus" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 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 "Vous tentez de vous connecter à une imprimante qui n'exécute pas Ultimaker Connect. Veuillez mettre à jour l'imprimante avec le dernier micrologiciel." +msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." +msgstr "Vous tentez de vous connecter à une imprimante qui n'exécute pas UltiMaker Connect. Veuillez mettre à jour l'imprimante avec le dernier micrologiciel." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 msgctxt "@info:title" msgid "Update your printer" msgstr "Mettre à jour votre imprimante" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 #, 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 a détecté des profils de matériau qui ne sont pas encore installés sur l'imprimante hôte du groupe {0}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Envoi de matériaux à l'imprimante" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "Nouvelle imprimante détectée à partir de votre compte UltiMaker" +msgstr[1] "Nouvelles imprimantes détectées à partir de votre compte UltiMaker" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29 +#, python-brace-format +msgctxt "info:status Filled in with printer name and printer model." +msgid "Adding printer {name} ({model}) from your account" +msgstr "Ajout de l'imprimante {name} ({model}) à partir de votre compte" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "... et {0} autre" +msgstr[1] "... et {0} autres" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "Imprimantes ajoutées à partir de Digital Factory:" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 #, 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 "Vous tentez de vous connecter à {0} mais ce n'est pas l'hôte de groupe. Vous pouvez visiter la page Web pour la configurer en tant qu'hôte de groupe." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 msgctxt "@info:title" msgid "Not a group host" msgstr "Pas un hôte de groupe" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 msgctxt "@action" msgid "Configure group" msgstr "Configurer le groupe" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18 +msgctxt "@info:status" +msgid "You will receive a confirmation via email when the print job is approved" +msgstr "Vous recevrez une confirmation par e-mail lorsque la tâche d'impression sera approuvée" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19 +msgctxt "@info:title" +msgid "The print job was successfully submitted" +msgstr "La tâche d'impression a bien été soumise" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22 +msgctxt "@action" +msgid "Manage print jobs" +msgstr "Gérer les tâches d'impression" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 msgctxt "@info:status" msgid "Please wait until the current job has been sent." msgstr "Veuillez patienter jusqu'à ce que la tâche en cours ait été envoyée." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 msgctxt "@info:title" msgid "Print error" msgstr "Erreur d'impression" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Impossible de transférer les données à l'imprimante." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 msgctxt "@info:title" msgid "Network error" msgstr "Erreur de réseau" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 msgctxt "@info:status" msgid "Sending Print Job" msgstr "Lancement d'une tâche d'impression" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 msgctxt "@info:status" msgid "Uploading print job to printer." msgstr "Téléchargement de la tâche d'impression sur l'imprimante." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 msgctxt "@info:status" msgid "Print job queue is full. The printer can't accept a new job." msgstr "La file d'attente pour les tâches d'impression est pleine. L'imprimante ne peut pas accepter une nouvelle tâche." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 msgctxt "@info:title" msgid "Queue Full" msgstr "La file d'attente est pleine" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "L'envoi de la tâche d'impression à l'imprimante a réussi." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 msgctxt "@info:title" msgid "Data Sent" msgstr "Données envoyées" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "Cette imprimante n'est pas associée à Digital Factory:" +msgstr[1] "Ces imprimantes ne sont pas associées à Digital Factory:" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "Pour établir une connexion, veuillez visiter le site {website_link}" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "Une connexion cloud n'est pas disponible pour une imprimante" +msgstr[1] "Une connexion cloud n'est pas disponible pour certaines imprimantes" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "Conserver les configurations d'imprimante" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "Supprimer des imprimantes" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "Imprimer sur le réseau" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "Imprimer sur le réseau" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64 msgctxt "@info:status" msgid "Connected over the network" msgstr "Connecté sur le réseau" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 msgctxt "@action" msgid "Connect via Network" msgstr "Connecter via le réseau" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +#: plugins/UM3NetworkPrinting/src/Utils.py:27 msgctxt "@info:status" msgid "tomorrow" msgstr "demain" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +#: plugins/UM3NetworkPrinting/src/Utils.py:30 msgctxt "@info:status" msgid "today" msgstr "aujourd'hui" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:42 msgctxt "@item:inmenu" msgid "USB printing" msgstr "Impression par USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:43 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print via USB" msgstr "Imprimer via USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:44 msgctxt "@info:tooltip" msgid "Print via USB" msgstr "Imprimer via USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:80 msgctxt "@info:status" msgid "Connected via USB" msgstr "Connecté via USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:110 msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "Une impression USB est en cours, la fermeture de Cura arrêtera cette impression. Êtes-vous sûr ?" +msgstr "Une impression USB est en cours, la fermeture de Cura arrêtera cette impression. Êtes-vous sûr?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:135 msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Une impression est encore en cours. Cura ne peut pas démarrer une autre impression via USB tant que l'impression précédente n'est pas terminée." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:136 msgctxt "@message" msgid "Print in Progress" msgstr "Impression en cours" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "Fichier X3D" +#: plugins/USBPrinting/plugin.json +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." -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Visualisation par rayons X" +#: plugins/USBPrinting/plugin.json +msgctxt "name" +msgid "USB printing" +msgstr "Impression par USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 -msgctxt "@title:window" -msgid "Open Project" -msgstr "Ouvrir un projet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "Mettre à jour l'existant" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "Créer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:59 -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "Résumé - Projet Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108 -msgctxt "@info:tooltip" -msgid "How should the conflict in the machine be resolved?" -msgstr "Comment le conflit de la machine doit-il être résolu ?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:95 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Paramètres de l'imprimante" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:104 -msgctxt "@action:label" -msgid "Type" -msgstr "Type" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:192 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -msgctxt "@action:label" -msgid "Printer Group" -msgstr "Groupe d'imprimantes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:217 -msgctxt "@info:tooltip" -msgid "How should the conflict in the profile be resolved?" -msgstr "Comment le conflit du profil doit-il être résolu ?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:220 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Paramètres de profil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:250 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:375 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:244 -msgctxt "@action:label" -msgid "Name" -msgstr "Nom" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:268 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:261 -msgctxt "@action:label" -msgid "Intent" -msgstr "Intent" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:286 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:228 -msgctxt "@action:label" -msgid "Not in profile" -msgstr "Absent du profil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:292 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:233 -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "%1 écrasent" -msgstr[1] "%1 écrase" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 -msgctxt "@action:label" -msgid "Derivative from" -msgstr "Dérivé de" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:311 -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "%1, %2 écrasent" -msgstr[1] "%1, %2 écrase" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:333 -msgctxt "@info:tooltip" -msgid "How should the conflict in the material be resolved?" -msgstr "Comment le conflit du matériau doit-il être résolu ?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:360 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Paramètres du matériau" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:396 -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "Visibilité des paramètres" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 -msgctxt "@action:label" -msgid "Mode" -msgstr "Mode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 -msgctxt "@action:label" -msgid "Visible settings:" -msgstr "Paramètres visibles :" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "%1 sur %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:447 -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "Le chargement d'un projet effacera tous les modèles sur le plateau." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 -msgctxt "@action:button" -msgid "Open" -msgstr "Ouvrir" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 -msgctxt "@action:button" -msgid "Open project anyway" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 -msgctxt "@action:button" -msgid "Install missing material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Vous en voulez plus ?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Sauvegarder maintenant" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Sauvegarde automatique" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Créez automatiquement une sauvegarde chaque jour où Cura est démarré." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 -msgctxt "@button" -msgid "Restore" -msgstr "Restaurer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Supprimer la sauvegarde" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Êtes-vous sûr de vouloir supprimer cette sauvegarde ? Il est impossible d'annuler cette action." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Restaurer la sauvegarde" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "Vous devez redémarrer Cura avant que votre sauvegarde ne soit restaurée. Voulez-vous fermer Cura maintenant ?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Version Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Machines" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Matériaux" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profils" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Plug-ins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Sauvegardes Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Mes sauvegardes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Vous n'avez actuellement aucune sauvegarde. Utilisez le bouton « Sauvegarder maintenant » pour en créer une." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Pendant la phase de prévisualisation, vous ne pourrez voir qu'un maximum de 5 sauvegardes. Supprimez une sauvegarde pour voir les plus anciennes." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Sauvegardez et synchronisez vos paramètres Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:212 -msgctxt "@button" -msgid "Sign in" -msgstr "Se connecter" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 -msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 -msgctxt "@option" -msgid "Save Cura project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Mettre à jour le firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 -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 "Le firmware est le logiciel fonctionnant directement dans votre imprimante 3D. Ce firmware contrôle les moteurs pas à pas, régule la température et surtout, fait que votre machine fonctionne." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 -msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "Le firmware fourni avec les nouvelles imprimantes fonctionne, mais les nouvelles versions ont tendance à fournir davantage de fonctionnalités ainsi que des améliorations." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Mise à niveau automatique du firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Charger le firmware personnalisé" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "Impossible de se connecter à l'imprimante ; échec de la mise à jour du firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 -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." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Sélectionner le firmware personnalisé" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Mise à jour du firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Mise à jour du firmware en cours." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Mise à jour du firmware terminée." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Échec de la mise à jour du firmware en raison d'une erreur inconnue." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Échec de la mise à jour du firmware en raison d'une erreur de communication." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Échec de la mise à jour du firmware en raison d'une erreur d'entrée/de sortie." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Échec de la mise à jour du firmware en raison du firmware manquant." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:14 -msgctxt "@title:window" -msgid "Convert Image" -msgstr "Convertir l'image" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 -msgctxt "@action:label" -msgid "Height (mm)" -msgstr "Hauteur (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "La distance maximale de chaque pixel à partir de la « Base »." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 -msgctxt "@action:label" -msgid "Base (mm)" -msgstr "Base (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 -msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "La hauteur de la base à partir du plateau en millimètres." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 -msgctxt "@action:label" -msgid "Width (mm)" -msgstr "Largeur (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 -msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate" -msgstr "La largeur en millimètres sur le plateau de fabrication" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 -msgctxt "@action:label" -msgid "Depth (mm)" -msgstr "Profondeur (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 -msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "La profondeur en millimètres sur le plateau" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 -msgctxt "@item:inlistbox" -msgid "Darker is higher" -msgstr "Le plus foncé est plus haut" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -msgctxt "@item:inlistbox" -msgid "Lighter is higher" -msgstr "Le plus clair est plus haut" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 -msgctxt "@info:tooltip" -msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." -msgstr "Pour les lithophanies, les pixels foncés doivent correspondre à des emplacements plus épais afin d'empêcher la lumière de passer. Pour des cartes de hauteur, les pixels clairs signifient un terrain plus élevé, de sorte que les pixels clairs doivent correspondre à des emplacements plus épais dans le modèle 3D généré." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:205 -msgctxt "@action:label" -msgid "Color Model" -msgstr "Modèle de couleur" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:224 -msgctxt "@item:inlistbox" -msgid "Linear" -msgstr "Linéaire" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 -msgctxt "@item:inlistbox" -msgid "Translucency" -msgstr "Translucidité" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 -msgctxt "@info:tooltip" -msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." -msgstr "Pour les lithophanes, un modèle logarithmique simple de la translucidité est disponible. Pour les cartes de hauteur, les valeurs des pixels correspondent aux hauteurs de façon linéaire." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 -msgctxt "@action:label" -msgid "1mm Transmittance (%)" -msgstr "Transmission 1 mm (%)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 -msgctxt "@info:tooltip" -msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." -msgstr "Le pourcentage de lumière pénétrant une impression avec une épaisseur de 1 millimètre. La diminution de cette valeur augmente le contraste dans les régions sombres et diminue le contraste dans les régions claires de l'image." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 -msgctxt "@action:label" -msgid "Smoothing" -msgstr "Lissage" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:298 -msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "La quantité de lissage à appliquer à l'image." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:143 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:80 -msgctxt "@action:button" -msgid "OK" -msgstr "OK" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Imprimante" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Paramètres de la buse" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Taille de la buse" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Diamètre du matériau compatible" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Décalage buse X" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Décalage buse Y" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Numéro du ventilateur de refroidissement" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Extrudeuse G-Code de démarrage" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Extrudeuse G-Code de fin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Paramètres de l'imprimante" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (Largeur)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Profondeur)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Hauteur)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Forme du plateau" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 -msgctxt "@label" -msgid "Origin at center" -msgstr "Origine au centre" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 -msgctxt "@label" -msgid "Heated bed" -msgstr "Plateau chauffant" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Volume de fabrication chauffant" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 -msgctxt "@label" -msgid "G-code flavor" -msgstr "Parfum G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Paramètres de la tête d'impression" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 -msgctxt "@label" -msgid "X min" -msgstr "X min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 -msgctxt "@label" -msgid "Y min" -msgstr "Y min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 -msgctxt "@label" -msgid "X max" -msgstr "X max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 -msgctxt "@label" -msgid "Y max" -msgstr "Y max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Hauteur du portique" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Nombre d'extrudeuses" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Appliquer les décalages offset de l'extrudeuse au GCode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "G-Code de démarrage" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400 -msgctxt "@title:label" -msgid "End G-code" -msgstr "G-Code de fin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 -msgctxt "@title" -msgid "Changes from your account" -msgstr "Changements à partir de votre compte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -msgctxt "@button" -msgid "Dismiss" -msgstr "Ignorer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:118 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:175 -msgctxt "@button" -msgid "Next" -msgstr "Suivant" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "Les packages suivants seront ajoutés:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "Les packages suivants ne peuvent pas être installés en raison d'une version incompatible de Cura :" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 -msgctxt "@title" -msgid "Install missing Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 -msgctxt "@button" -msgid "Plugin license agreement" -msgstr "Contrat de licence du plugin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47 -msgctxt "@text" -msgid "Please read and agree with the plugin licence." -msgstr "Veuillez lire et accepter la licence du plug-in." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 -msgctxt "@button" -msgid "Accept" -msgstr "Accepter" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 -msgctxt "@header" -msgid "Manage packages" -msgstr "Gérer les packages" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15 -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." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 -msgctxt "@info:tooltip" -msgid "Manage packages" -msgstr "Gérer les packages" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 -msgctxt "@title" -msgid "Loading..." -msgstr "Chargement..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 -msgctxt "@button" -msgid "Plugins" -msgstr "Plug-ins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 -msgctxt "@button" -msgid "Materials" -msgstr "Matériaux" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 -msgctxt "@info" -msgid "Search in the browser" -msgstr "Rechercher dans le navigateur" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:271 -msgctxt "@button" -msgid "In order to use the package you will need to restart Cura" -msgstr "Pour pouvoir utiliser le package, vous devrez redémarrer Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:279 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Quitter %1" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:8 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MissingPackages.qml:8 -msgctxt "@header" -msgid "Install Materials" -msgstr "Installer des matériaux" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 -msgctxt "@text" -msgid "Select and install material profiles optimised for your Ultimaker 3D printers." -msgstr "Sélectionnez et installez des profils de matériaux optimisés pour vos imprimantes 3D Ultimaker." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "Vous devez accepter la licence pour installer le package" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:101 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:207 -msgctxt "@button:label" -msgid "Learn More" -msgstr "En Savoir Plus" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:172 -msgctxt "@label Is followed by the name of an author" -msgid "By" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Enable" -msgstr "Activer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Disable" -msgstr "Désactiver" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 -msgctxt "@button" -msgid "Downgrading..." -msgstr "Téléchargement..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 -msgctxt "@button" -msgid "Downgrade" -msgstr "Revenir à une version précédente" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 -msgctxt "@button" -msgid "Installing..." -msgstr "Installation..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 -msgctxt "@button" -msgid "Install" -msgstr "Installer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 -msgctxt "@button" -msgid "Uninstall" -msgstr "Désinstaller" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Updating..." -msgstr "Mise à jour..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Update" -msgstr "Mise à jour" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 -msgctxt "@header" -msgid "Package details" -msgstr "Détails sur le paquet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 -msgctxt "@button:tooltip" -msgid "Back" -msgstr "Précédent" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 -msgctxt "@header" -msgid "Description" -msgstr "Description" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 -msgctxt "@header" -msgid "Compatible printers" -msgstr "Imprimantes compatibles" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:134 -msgctxt "@info" -msgid "No compatibility information" -msgstr "Aucune information sur la compatibilité" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:152 -msgctxt "@header" -msgid "Compatible support materials" -msgstr "Matériaux de support compatibles" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176 -msgctxt "@info No materials" -msgid "None" -msgstr "Aucun" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:193 -msgctxt "@header" -msgid "Compatible with Material Station" -msgstr "Compatible avec la Material Station" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "Yes" -msgstr "Oui" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "No" -msgstr "Non" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:219 -msgctxt "@header" -msgid "Optimized for Air Manager" -msgstr "Optimisé pour Air Manager" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Visit plug-in website" -msgstr "Visitez le site Web du plug-in" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Website" -msgstr "Site Internet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:252 -msgctxt "@button" -msgid "Buy spool" -msgstr "Acheter une bobine" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:261 -msgctxt "@button" -msgid "Safety datasheet" -msgstr "Fiche technique sur la sécurité" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:270 -msgctxt "@button" -msgid "Technical datasheet" -msgstr "Fiche technique" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Failed to load packages:" -msgstr "Échec du chargement des packages :" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Retry?" -msgstr "Réessayer ?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:167 -msgctxt "@button" -msgid "Loading" -msgstr "Chargement" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No more results to load" -msgstr "Plus aucun résultat à charger" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No results found with current filter" -msgstr "Aucun résultat trouvé avec le filtre actuel" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:226 -msgctxt "@button" -msgid "Load more" -msgstr "Charger plus" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8 -msgctxt "@header" -msgid "Install Plugins" -msgstr "Installer les plug-ins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12 -msgctxt "@text" -msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users." -msgstr "Simplifiez votre flux de travail et personnalisez votre expérience Ultimaker Cura avec des plug-ins fournis par notre incroyable communauté d'utilisateurs." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 -msgctxt "@info" -msgid "Ultimaker Verified Plug-in" -msgstr "Plug-in Ultimaker vérifié" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 -msgctxt "@info" -msgid "Ultimaker Certified Material" -msgstr "Matériau Ultimaker certifié" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 -msgctxt "@info" -msgid "Ultimaker Verified Package" -msgstr "Package Ultimaker vérifié" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 -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 "" -"Assurez-vous que votre imprimante est connectée :\n" -"- Vérifiez si l'imprimante est sous tension.\n" -"- Vérifiez si l'imprimante est connectée au réseau.- Vérifiez si vous êtes connecté pour découvrir les imprimantes connectées au cloud." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 -msgctxt "@info" -msgid "Please connect your printer to the network." -msgstr "Veuillez connecter votre imprimante au réseau." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 -msgctxt "@label link to technical assistance" -msgid "View user manuals online" -msgstr "Voir les manuels d'utilisation en ligne" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:163 -msgctxt "@info" -msgid "In order to monitor your print from Cura, please connect the printer." -msgstr "Pour surveiller votre impression depuis Cura, veuillez connecter l'imprimante." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Type de maille" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 -msgctxt "@label" -msgid "Normal model" -msgstr "Modèle normal" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 -msgctxt "@label" -msgid "Print as support" -msgstr "Imprimer comme support" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Modifier les paramètres de chevauchement" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Ne prend pas en charge le chevauchement" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Maille de remplissage uniquement" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Maille de coupe" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Sélectionner les paramètres" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Sélectionner les paramètres pour personnaliser ce modèle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtrer..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Afficher tout" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Plug-in de post-traitement" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Scripts de post-traitement" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" -msgid "Add a script" -msgstr "Ajouter un script" +msgid "Level build plate" +msgstr "Nivellement du plateau" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 -msgctxt "@label" -msgid "Settings" -msgstr "Paramètres" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:459 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Modifiez les scripts de post-traitement actifs." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:463 -msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "Le script suivant est actif :" -msgstr[1] "Les scripts suivants sont actifs :" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:47 -msgctxt "@label" -msgid "Color scheme" -msgstr "Modèle de couleurs" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Couleur du matériau" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Type de ligne" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Vitesse" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Épaisseur de la couche" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Largeur de ligne" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Débit" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Mode de compatibilité" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 -msgctxt "@label" -msgid "Travels" -msgstr "Déplacements" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 -msgctxt "@label" -msgid "Helpers" -msgstr "Aides" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 -msgctxt "@label" -msgid "Shell" -msgstr "Coque" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:64 -msgctxt "@label" -msgid "Infill" -msgstr "Remplissage" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Starts" -msgstr "Démarre" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Afficher uniquement les couches supérieures" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Afficher 5 niveaux détaillés en haut" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Haut / bas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Paroi interne" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 -msgctxt "@label" -msgid "min" -msgstr "min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 -msgctxt "@label" -msgid "max" -msgstr "max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Plus d'informations sur la collecte de données anonymes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 -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 recueille des données anonymes afin d'améliorer la qualité d'impression et l'expérience utilisateur. Voici un exemple de toutes les données partagées :" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Je ne veux pas envoyer de données anonymes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Autoriser l'envoi de données anonymes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 msgctxt "@title" msgid "Build Plate Leveling" msgstr "Nivellement du plateau" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 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 "Pour obtenir des résultats d'impression optimaux, vous pouvez maintenant régler votre plateau. Quand vous cliquez sur 'Aller à la position suivante', la buse se déplacera vers les différentes positions pouvant être réglées." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 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 "Pour chacune des positions ; glissez un bout de papier sous la buse et ajustez la hauteur du plateau. La hauteur du plateau est juste lorsque la pointe de la buse gratte légèrement le papier." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 msgctxt "@action:button" msgid "Start Build Plate Leveling" msgstr "Démarrer le nivellement du plateau" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 msgctxt "@action:button" msgid "Move to Next Position" msgstr "Aller à la position suivante" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Sélectionnez les mises à niveau disponibles pour cet Ultimaker Original" +#: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "Sélectionner les mises à niveau" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this UltiMaker Original" +msgstr "Sélectionnez les mises à niveau disponibles pour cet UltiMaker Original" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 msgctxt "@label" msgid "Heated Build Plate (official kit or self-built)" msgstr "Plateau chauffant (kit officiel ou fabriqué soi-même)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Connecter à l'imprimante en réseau" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -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 "Pour imprimer directement sur votre imprimante via le réseau, assurez-vous que votre imprimante est connectée au réseau via un câble Ethernet ou en connectant votre imprimante à votre réseau Wi-Fi. Si vous ne connectez pas Cura avec votre imprimante, vous pouvez utiliser une clé USB pour transférer les fichiers g-code sur votre imprimante." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Sélectionnez votre imprimante dans la liste ci-dessous :" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 -msgctxt "@action:button" -msgid "Edit" -msgstr "Modifier" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:140 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:321 -msgctxt "@action:button" -msgid "Remove" -msgstr "Supprimer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Rafraîchir" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 -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" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 -msgctxt "@label" -msgid "Type" -msgstr "Type" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 -msgctxt "@label" -msgid "Firmware version" -msgstr "Version du firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 -msgctxt "@label" -msgid "Address" -msgstr "Adresse" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Cette imprimante n'est pas configurée pour héberger un groupe d'imprimantes." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Cette imprimante est l'hôte d'un groupe d'imprimantes %1." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "L'imprimante à cette adresse n'a pas encore répondu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 -msgctxt "@action:button" -msgid "Connect" -msgstr "Connecter" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Adresse IP non valide" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Veuillez saisir une adresse IP valide." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Adresse de l'imprimante" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Saisissez l'adresse IP de votre imprimante sur le réseau." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Modifications de configuration" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 -msgctxt "@action:button" -msgid "Override" -msgstr "Remplacer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "L'imprimante assignée, %1, nécessite la modification de configuration suivante :" -msgstr[1] "L'imprimante assignée, %1, nécessite les modifications de configuration suivantes :" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "L'imprimante %1 est assignée, mais le projet contient une configuration matérielle inconnue." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Changer le matériau %1 de %2 à %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Charger %3 comme matériau %1 (Ceci ne peut pas être remplacé)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Changer le print core %1 de %2 à %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Changer le plateau en %1 (Ceci ne peut pas être remplacé)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "Si vous sélectionnez « Remplacer », les paramètres de la configuration actuelle de l'imprimante seront utilisés. Cela peut entraîner l'échec de l'impression." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:178 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:175 -msgctxt "@label" -msgid "Glass" -msgstr "Verre" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154 -msgctxt "@label" -msgid "Aluminum" -msgstr "Aluminium" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Déplacer l'impression en haut" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Effacer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:284 -msgctxt "@label" -msgid "Resume" -msgstr "Reprendre" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Mise en pause..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Reprise..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:288 -msgctxt "@label" -msgid "Pause" -msgstr "Pause" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Abandon..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Abandonner" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:142 -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 "Êtes-vous sûr de vouloir déplacer %1 en haut de la file d'attente ?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Déplacer l'impression en haut de la file d'attente" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:151 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "Êtes-vous sûr de vouloir supprimer %1 ?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Supprimer l'impression" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:160 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "Êtes-vous sûr de vouloir annuler %1 ?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Abandonner l'impression" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Gérer l'imprimante" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:239 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Veuillez mettre à jour le Firmware de votre imprimante pour gérer la file d'attente à distance." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:275 -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 "Les flux de webcam des imprimantes cloud ne peuvent pas être visualisés depuis Ultimaker Cura. Cliquez sur « Gérer l'imprimante » pour visiter Ultimaker Digital Factory et voir cette webcam." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Chargement..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Indisponible" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Injoignable" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347 -msgctxt "@label:status" -msgid "Idle" -msgstr "Inactif" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Préparation..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Printing" -msgstr "Impression" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397 -msgctxt "@label" -msgid "Untitled" -msgstr "Sans titre" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:412 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anonyme" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:433 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Nécessite des modifications de configuration" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:447 -msgctxt "@action:button" -msgid "Details" -msgstr "Détails" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Imprimante indisponible" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 -msgctxt "@label" -msgid "First available" -msgstr "Premier disponible" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Abandonné" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 -msgctxt "@label:status" -msgid "Finished" -msgstr "Terminé" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Abandon..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Failed" -msgstr "Échec" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Mise en pause..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Paused" -msgstr "En pause" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Reprise..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Action required" -msgstr "Action requise" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Finit %1 à %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 -msgctxt "@label" -msgid "Queued" -msgstr "Mis en file d'attente" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Gérer dans le navigateur" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:90 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "Il n'y a pas de travaux d'impression dans la file d'attente. Découpez et envoyez une tache pour en ajouter une." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:98 -msgctxt "@label" -msgid "Print jobs" -msgstr "Tâches d'impression" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107 -msgctxt "@label" -msgid "Total print time" -msgstr "Temps total d'impression" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116 -msgctxt "@label" -msgid "Waiting for" -msgstr "Attente de" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Imprimer sur le réseau" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 -msgctxt "@action:button" -msgid "Print" -msgstr "Imprimer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 -msgctxt "@label" -msgid "Printer selection" -msgstr "Sélection d'imprimantes" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 +#: plugins/UltimakerMachineActions/plugin.json +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.)" + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Actions de la machine UltiMaker" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Mise à niveau vers 2.1 vers 2.2" + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Mise à niveau de 2.2 vers 2.4" + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Mise à niveau de 2.5 vers 2.6" + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Mise à niveau de 2.6 vers 2.7" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Mise à niveau de version, de 2.7 vers 3.0" + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Mise à niveau de version, de 3.0 vers 3.1" + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Mise à niveau de 3.2 vers 3.3" + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Mise à niveau de 3.3 vers 3.4" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Mise à niveau de 3.4 vers 3.5" + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Mise à niveau de 3.5 vers 4.0" + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Mise à niveau de 4.0 vers 4.1" + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Mise à niveau de la version 4.11 vers la version 4.12" + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Mise à niveau de la version 4.13 vers la version 5.0" + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Mise à jour de 4.1 vers 4.2" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Mise à jour de 4.2 vers 4.3" + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Mise à niveau de 4.3 vers 4.4" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Mise à niveau de 4.4 vers 4.5" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Mise à niveau de 4.5 vers 4.6" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Mise à niveau de 4.6.0 vers 4.6.2" + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Mise à niveau de 4.6.2 vers 4.7" + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Mise à niveau de 4.7 vers 4.8" + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Mise à niveau de 4.8 vers 4.9" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Mise à niveau de 4.9 vers 4.10" + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Mise à niveau de 5.2 vers 5.3" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "" + +#: plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "Fichier X3D" + +#: plugins/X3DReader/plugin.json +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Fournit la prise en charge de la lecture de fichiers X3D." + +#: plugins/X3DReader/plugin.json +msgctxt "name" +msgid "X3D Reader" +msgstr "Lecteur X3D" + +#: plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Visualisation par rayons X" + +#: plugins/XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Permet la vue Rayon-X." + +#: plugins/XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Vue Rayon-X" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Profils matériels" + +#: plugins/XmlMaterialProfile/plugin.json +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." + +#: resources/qml/Account/AccountWidget.qml:24 msgctxt "@action:button" msgid "Sign in" msgstr "Se connecter" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: resources/qml/Account/GeneralOperations.qml:19 +#: resources/qml/WelcomePages/CloudContent.qml:64 msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Connectez-vous à la plateforme Ultimaker" +msgid "Sign in to the UltiMaker platform" +msgstr "Connectez-vous à la plateforme UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 +#: resources/qml/Account/GeneralOperations.qml:39 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 "" -"- Ajoutez des profils de matériaux et des plug-ins à partir de la Marketplace\n" -"- Sauvegardez et synchronisez vos profils de matériaux et vos plug-ins\n" -"- Partagez vos idées et obtenez l'aide de plus de 48 000 utilisateurs de la communauté Ultimaker" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "- Ajoutez des profils de matériaux et des plug-ins à partir de la Marketplace- Sauvegardez et synchronisez vos profils de matériaux et vos plug-ins- Partagez vos idées et obtenez l'aide de plus de 48 000 utilisateurs de la communauté Ultimaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 +#: resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "Créez gratuitement un compte Ultimaker" +msgid "Create a free UltiMaker account" +msgstr "Créez gratuitement un compte UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 +#: resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "Vérification en cours..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 +#: resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "Compte synchronisé" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 +#: resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "Un problème s'est produit..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 +#: resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "Installer les mises à jour en attente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 +#: resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "Rechercher des mises à jour de compte" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +#: resources/qml/Account/UserOperations.qml:78 msgctxt "@label The argument is a timestamp" msgid "Last update: %1" msgstr "Dernière mise à jour : %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +#: resources/qml/Account/UserOperations.qml:107 msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Compte Ultimaker" +msgid "UltiMaker Account" +msgstr "Compte UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +#: resources/qml/Account/UserOperations.qml:126 msgctxt "@button" msgid "Sign Out" msgstr "Déconnexion" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" msgid "No time estimation available" msgstr "Aucune estimation de la durée n'est disponible" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:77 msgctxt "@label" msgid "No cost estimation available" msgstr "Aucune estimation des coûts n'est disponible" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:127 msgctxt "@button" msgid "Preview" msgstr "Aperçu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" msgid "Time estimation" msgstr "Estimation de durée" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 +#: resources/qml/ActionPanel/PrintJobInformation.qml:107 msgctxt "@label" msgid "Material estimation" msgstr "Estimation du matériau" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:156 +#: resources/qml/ActionPanel/PrintJobInformation.qml:156 msgctxt "@label m for meter" msgid "%1m" msgstr "%1m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:157 +#: resources/qml/ActionPanel/PrintJobInformation.qml:157 msgctxt "@label g for grams" msgid "%1g" msgstr "%1g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:54 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Découpe en cours..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:78 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:78 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "Impossible de découper" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Processing" msgstr "Traitement" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Slice" msgstr "Découper" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:115 msgctxt "@label" msgid "Start the slicing process" msgstr "Démarrer le processus de découpe" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:132 msgctxt "@button" msgid "Cancel" msgstr "Annuler" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 +#: resources/qml/Actions.qml:81 msgctxt "@action:inmenu" msgid "Show Online Troubleshooting" msgstr "Afficher le dépannage en ligne" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 +#: resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "Passer en Plein écran" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 +#: resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "Quitter le mode plein écran" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 +#: resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "&Annuler" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 +#: resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "&Rétablir" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 +#: resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "&Quitter" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 +#: resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "Vue 3D" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 +#: resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Vue de face" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 +#: resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "Vue du dessus" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 +#: resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "Vue de dessous" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 +#: resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "Vue latérale gauche" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 +#: resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "Vue latérale droite" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 +#: resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Configurer Cura..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 +#: resources/qml/Actions.qml:197 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "&Ajouter une imprimante..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 +#: resources/qml/Actions.qml:203 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "Gérer les &imprimantes..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 +#: resources/qml/Actions.qml:210 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Gérer les matériaux..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:216 -msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate." +#: resources/qml/Actions.qml:218 +msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." msgid "Add more materials from Marketplace" msgstr "Ajouter d'autres matériaux depuis la Marketplace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 +#: resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "&Mettre à jour le profil à l'aide des paramètres / forçages actuels" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 +#: resources/qml/Actions.qml:233 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "&Ignorer les modifications actuelles" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 +#: resources/qml/Actions.qml:245 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "&Créer un profil à partir des paramètres / forçages actuels..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 +#: resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "Gérer les profils..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 +#: resources/qml/Actions.qml:259 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Afficher la &documentation en ligne" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 +#: resources/qml/Actions.qml:267 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "Notifier un &bug" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 +#: resources/qml/Actions.qml:275 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "Quoi de neuf" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 +#: resources/qml/Actions.qml:289 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "À propos de..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 +#: resources/qml/Actions.qml:296 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "Supprimer la sélection" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 +#: resources/qml/Actions.qml:306 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "Centrer la sélection" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 +#: resources/qml/Actions.qml:315 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "Multiplier la sélection" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 +#: resources/qml/Actions.qml:324 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Supprimer le modèle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 +#: resources/qml/Actions.qml:332 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Ce&ntrer le modèle sur le plateau" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 +#: resources/qml/Actions.qml:338 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "&Grouper les modèles" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 +#: resources/qml/Actions.qml:358 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Dégrouper les modèles" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 +#: resources/qml/Actions.qml:368 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "&Fusionner les modèles" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 +#: resources/qml/Actions.qml:378 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&Multiplier le modèle..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 +#: resources/qml/Actions.qml:385 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "Sélectionner tous les modèles" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 +#: resources/qml/Actions.qml:395 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" -msgstr "Supprimer les objets du plateau" +msgstr "Supprimer les modèles du plateau" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 +#: resources/qml/Actions.qml:405 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "Recharger tous les modèles" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 +#: resources/qml/Actions.qml:414 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Réorganiser tous les modèles" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 +#: resources/qml/Actions.qml:422 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Réorganiser la sélection" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 +#: resources/qml/Actions.qml:429 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Réinitialiser toutes les positions des modèles" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 +#: resources/qml/Actions.qml:436 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "Réinitialiser tous les modèles et transformations" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 +#: resources/qml/Actions.qml:445 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Ouvrir le(s) fichier(s)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 +#: resources/qml/Actions.qml:455 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Nouveau projet..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 +#: resources/qml/Actions.qml:462 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Afficher le dossier de configuration" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 +#: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Configurer la visibilité des paramètres..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 msgctxt "@label:button" msgid "My printers" msgstr "Mes imprimantes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 msgctxt "@tooltip:button" msgid "Monitor printers in Ultimaker Digital Factory." msgstr "Surveillez les imprimantes dans Ultimaker Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Créez des projets d'impression dans Digital Library." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 msgctxt "@label:button" msgid "Print jobs" msgstr "Tâches d'impression" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 msgctxt "@tooltip:button" msgid "Monitor print jobs and reprint from your print history." msgstr "Surveillez les tâches d'impression et réimprimez à partir de votre historique d'impression." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." -msgstr "Étendez Ultimaker Cura avec des plug-ins et des profils de matériaux." +msgid "Extend UltiMaker Cura with plugins and material profiles." +msgstr "Étendez UltiMaker Cura avec des plugins et des profils de matériaux." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." -msgstr "Devenez un expert de l'impression 3D avec les cours de formation en ligne Ultimaker." +msgid "Become a 3D printing expert with UltiMaker e-learning." +msgstr "Devenez un expert de l'impression 3D avec les cours de formation en ligne UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Assistance ultimaker" +msgid "UltiMaker support" +msgstr "Assistance UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." -msgstr "Découvrez comment utiliser Ultimaker Cura." +msgid "Learn how to get started with UltiMaker Cura." +msgstr "Découvrez comment utiliser UltiMaker Cura." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 msgctxt "@label:button" msgid "Ask a question" msgstr "Posez une question" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Consultez la communauté Ultimaker." +msgid "Consult the UltiMaker Community." +msgstr "Consultez la communauté UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 msgctxt "@label:button" msgid "Report a bug" msgstr "Notifier un bug" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Informez les développeurs en cas de problème." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Visitez le site web Ultimaker." +msgid "Visit the UltiMaker website." +msgstr "Visitez le site web UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 +#: resources/qml/ColorDialog.qml:110 msgctxt "@label" msgid "Hex" msgstr "Hex" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 +#: resources/qml/Cura.qml:256 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "Ce paquet sera installé après le redémarrage." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +#: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14 msgctxt "@title:tab" msgid "General" msgstr "Général" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +#: resources/qml/Cura.qml:470 msgctxt "@title:tab" msgid "Settings" msgstr "Paramètres" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:468 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:17 +#: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17 msgctxt "@title:tab" msgid "Printers" msgstr "Imprimantes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:470 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70 +#: resources/qml/Cura.qml:474 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:70 msgctxt "@title:tab" msgid "Materials" msgstr "Matériaux" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:472 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:57 +#: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57 msgctxt "@title:tab" msgid "Profiles" msgstr "Profils" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +#: resources/qml/Cura.qml:581 msgctxt "@title:window %1 is the application name" msgid "Closing %1" msgstr "Fermeture de %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:590 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:599 +#: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591 msgctxt "@label %1 is the application name" msgid "Are you sure you want to exit %1?" -msgstr "Voulez-vous vraiment quitter %1 ?" +msgstr "Voulez-vous vraiment quitter %1?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:637 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 +#: resources/qml/Cura.qml:629 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 msgctxt "@title:window" msgid "Open file(s)" msgstr "Ouvrir le(s) fichier(s)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +#: resources/qml/Cura.qml:734 msgctxt "@window:title" msgid "Install Package" msgstr "Installer le paquet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +#: resources/qml/Cura.qml:741 msgctxt "@title:window" msgid "Open File(s)" msgstr "Ouvrir le(s) fichier(s)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +#: resources/qml/Cura.qml:743 msgctxt "@text:window" msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." msgstr "Nous avons trouvé au moins un fichier G-Code parmi les fichiers que vous avez sélectionné. Vous ne pouvez ouvrir qu'un seul fichier G-Code à la fois. Si vous souhaitez ouvrir un fichier G-Code, veuillez ne sélectionner qu'un seul fichier de ce type." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:831 +#: resources/qml/Cura.qml:828 msgctxt "@title:window" msgid "Add Printer" msgstr "Ajouter une imprimante" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +#: resources/qml/Cura.qml:836 msgctxt "@title:window" msgid "What's New" msgstr "Quoi de neuf" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: resources/qml/Cura.qml:890 +msgctxt "@title:window" +msgid "Save Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:891 +msgctxt "@textfield:placeholder" +msgid "New Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:892 +msgctxt "@info" +msgid "Custom profile name:" +msgstr "" + +#: resources/qml/Cura.qml:909 +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 "Seuls les paramètres modifiés par l'utilisateur seront enregistrés dans le profil personnalisé.
    Pour les matériaux qui le permettent, le nouveau profil personnalisé héritera des propriétés de %1." + +#: resources/qml/Cura.qml:917 +msgctxt "@action:button" +msgid "Learn more about Cura print profiles" +msgstr "En savoir plus sur les profils d'impression Cura" + +#: resources/qml/Cura.qml:926 +msgctxt "@button" +msgid "Save new profile" +msgstr "" + +#: resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "À propos de %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: resources/qml/Dialogs/AboutDialog.qml:59 msgctxt "@label" msgid "version: %1" -msgstr "version : %1" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: resources/qml/Dialogs/AboutDialog.qml:74 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Solution complète pour l'impression 3D par dépôt de filament fondu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: resources/qml/Dialogs/AboutDialog.qml:87 msgctxt "@info:credit" msgid "" -"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura is developed by UltiMaker in cooperation with the community.\n" "Cura proudly uses the following open source projects:" msgstr "" "Cura a été développé par Ultimaker B.V. en coopération avec la communauté Ultimaker.\n" "Cura est fier d'utiliser les projets open source suivants :" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label Description for application component" msgid "Graphical user interface" msgstr "Interface utilisateur graphique" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label Description for application component" msgid "Application framework" msgstr "Cadre d'application" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label Description for application component" msgid "G-code generator" msgstr "Générateur G-Code" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label Description for application component" msgid "Interprocess communication library" msgstr "Bibliothèque de communication interprocess" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:142 +msgctxt "@label Description for application component" msgid "Python bindings for libnest2d" msgstr "Liens en python pour libnest2d" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label Description for application component" msgid "Polygon packing library, developed by Prusa Research" msgstr "Bibliothèque d'emballage de polygones, développée par Prusa Research" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:144 +msgctxt "@label Description for application component" msgid "Support library for handling 3MF files" msgstr "Prise en charge de la bibliothèque pour le traitement des fichiers 3MF" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:145 +msgctxt "@label Description for application component" msgid "Support library for file metadata and streaming" msgstr "Prise en charge de la bibliothèque pour les métadonnées et le streaming de fichiers" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Langage de programmation" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label Description for application dependency" msgid "GUI framework" msgstr "Cadre IUG" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label Description for application dependency" msgid "GUI framework bindings" msgstr "Liens cadre IUG" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label Description for application dependency" msgid "C/C++ Binding library" msgstr "Bibliothèque C/C++ Binding" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:152 +msgctxt "@label Description for application dependency" msgid "Data interchange format" msgstr "Format d'échange de données" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "Font" msgstr "Police" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label Description for application dependency" msgid "Polygon clipping library" msgstr "Bibliothèque de découpe polygone" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label Description for application dependency" msgid "JSON parser" -msgstr "" +msgstr "Analyseur JSON" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:158 +msgctxt "@label Description for application dependency" msgid "Utility functions, including an image loader" -msgstr "" +msgstr "Fonctions utilitaires, y compris un chargeur d'images" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:159 +msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" -msgstr "" +msgstr "Bibliothèque d'utilitaires, y compris la génération d'un diagramme Voronoï" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:162 +#: resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label Description for application dependency" msgid "Root Certificates for validating SSL trustworthiness" -msgstr "" +msgstr "Certificats racines pour valider la fiabilité SSL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label Description for application dependency" msgid "Compatibility between Python 2 and 3" -msgstr "" +msgstr "Compatibilité entre Python 2 et Python 3" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label Description for application dependency" msgid "Support library for system keyring access" msgstr "Bibliothèque de support pour l'accès au trousseau de clés du système" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label Description for application dependency" msgid "Support library for faster math" msgstr "Prise en charge de la bibliothèque pour des maths plus rapides" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label Description for application dependency" msgid "Support library for handling STL files" msgstr "Prise en charge de la bibliothèque pour le traitement des fichiers STL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label Description for application dependency" msgid "Python bindings for Clipper" msgstr "Connexions avec Python pour Clipper" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Bibliothèque de communication série" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label Description for application dependency" msgid "Support library for scientific computing" msgstr "Prise en charge de la bibliothèque pour le calcul scientifique" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 -msgctxt "@Label" +#: resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@Label Description for application dependency" msgid "Python Error tracking library" msgstr "Bibliothèque de suivi des erreurs Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:172 +msgctxt "@label Description for application dependency" msgid "Support library for handling triangular meshes" msgstr "Prise en charge de la bibliothèque pour le traitement des mailles triangulaires" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:173 +msgctxt "@label Description for application dependency" msgid "ZeroConf discovery library" msgstr "Bibliothèque de découverte ZeroConf" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label Description for development tool" msgid "Universal build system configuration" -msgstr "" +msgstr "Configuration du système de fabrication universel" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label Description for development tool" msgid "Dependency and package manager" -msgstr "" +msgstr "Gestionnaire des dépendances et des packages" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label Description for development tool" msgid "Packaging Python-applications" -msgstr "" +msgstr "Packaging d'applications Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:179 +msgctxt "@label Description for development tool" msgid "Linux cross-distribution application deployment" msgstr "Déploiement d'applications sur multiples distributions Linux" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:180 +msgctxt "@label Description for development tool" msgid "Generating Windows installers" -msgstr "" +msgstr "Génération de programmes d'installation Windows" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 msgctxt "@title:window" msgid "Open project file" msgstr "Ouvrir un fichier de projet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84 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 "Ceci est un fichier de projet Cura. Souhaitez-vous l'ouvrir comme projet ou en importer les modèles ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:90 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91 msgctxt "@text:window" msgid "Remember my choice" msgstr "Se souvenir de mon choix" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105 msgctxt "@action:button" msgid "Open as project" msgstr "Ouvrir comme projet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110 msgctxt "@action:button" msgid "Import models" msgstr "Importer les modèles" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:17 +msgctxt "@title:window" +msgid "Select Printer" +msgstr "Sélectionner une imprimante" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:54 +msgctxt "@title:label" +msgid "Compatible Printers" +msgstr "Imprimantes compatibles" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:110 +msgctxt "@description" +msgid "No compatible printers, that are currently online, were found." +msgstr "Aucune imprimante compatible actuellement en ligne n'a été trouvée." + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Annuler ou conserver les modifications" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:49 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64 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 "" @@ -4180,1433 +4877,1292 @@ msgstr "" "Souhaitez-vous conserver ces paramètres modifiés après avoir changé de profil ?\n" "Vous pouvez également annuler les modifications pour charger les valeurs par défaut de '%1'." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90 msgctxt "@title:column" msgid "Profile settings" msgstr "Paramètres du profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92 msgctxt "@title:column" msgid "Current changes" msgstr "Modifications actuelles" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:799 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123 +#: resources/qml/Preferences/GeneralPage.qml:820 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Toujours me demander" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Annuler et ne plus me demander" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Conserver et ne plus me demander" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157 msgctxt "@action:button" msgid "Discard changes" msgstr "Annuler les modifications" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164 msgctxt "@action:button" msgid "Keep changes" msgstr "Conserver les modifications" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171 +msgctxt "@action:button" +msgid "Save as new custom profile" +msgstr "" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178 +msgctxt "@action:button" +msgid "Save changes" +msgstr "" + +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 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 "Nous avons trouvé au moins un fichier de projet parmi les fichiers que vous avez sélectionnés. Vous ne pouvez ouvrir qu'un seul fichier de projet à la fois. Nous vous conseillons de n'importer que les modèles de ces fichiers. Souhaitez-vous continuer ?" +msgstr "Nous avons trouvé au moins un fichier de projet parmi les fichiers que vous avez sélectionnés. Vous ne pouvez ouvrir qu'un seul fichier de projet à la fois. Nous vous conseillons de n'importer que les modèles de ces fichiers. Souhaitez-vous continuer?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 msgctxt "@action:button" msgid "Import all as models" msgstr "Importer tout comme modèles" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 +#: resources/qml/Dialogs/RenameDialog.qml:23 +msgctxt "@title:window" +msgid "Rename" +msgstr "Renommer" + +#: resources/qml/Dialogs/RenameDialog.qml:24 +msgctxt "@info" +msgid "Please provide a new name." +msgstr "Veuillez indiquer un nouveau nom." + +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 msgctxt "@title:window" msgid "Save Project" msgstr "Enregistrer le projet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177 msgctxt "@action:label" msgid "Extruder %1" msgstr "Extrudeuse %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & matériau" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195 msgctxt "@action:label" msgid "Material" msgstr "Matériau" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "Ne pas afficher à nouveau le résumé du projet lors de l'enregistrement" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298 msgctxt "@action:button" msgid "Save" msgstr "Enregistrer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -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" -msgstr[0] "Imprimer le modèle sélectionné avec %1" -msgstr[1] "Imprimer les modèles sélectionnés avec %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:93 +#: resources/qml/JobSpecs.qml:93 msgctxt "@text Print job name" msgid "Untitled" msgstr "Sans titre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 +#: resources/qml/MainWindow/ApplicationMenu.qml:63 +#: resources/qml/Menus/SettingsMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&Paramètres" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 +#: resources/qml/MainWindow/ApplicationMenu.qml:87 msgctxt "@title:window" msgid "New project" msgstr "Nouveau projet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88 +#: resources/qml/MainWindow/ApplicationMenu.qml:88 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 "Êtes-vous sûr(e) de souhaiter lancer un nouveau projet ? Cela supprimera les objets du plateau ainsi que tous paramètres non enregistrés." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135 +#: resources/qml/MainWindow/MainWindowHeader.qml:135 msgctxt "@action:button" msgid "Marketplace" -msgstr "Marché en ligne" +msgstr "Marketplace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +#: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 msgctxt "@header" msgid "Configurations" -msgstr "Configurations" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Cette configuration n'est pas disponible car %1 n'est pas reconnu. Veuillez visiter %2 pour télécharger le profil matériel correct." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 msgctxt "@label" msgid "Marketplace" -msgstr "Marché en ligne" +msgstr "Marketplace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 msgctxt "@label" msgid "Loading available configurations from the printer..." msgstr "Chargement des configurations disponibles à partir de l'imprimante..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 msgctxt "@label" msgid "The configurations are not available because the printer is disconnected." msgstr "Les configurations ne sont pas disponibles car l'imprimante est déconnectée." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 msgctxt "@tooltip" msgid "The configuration of this extruder is not allowed, and prohibits slicing." msgstr "La configuration de cet extrudeur n'est pas autorisée et interdit la découpe." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 msgctxt "@tooltip" msgid "There are no profiles matching the configuration of this extruder." msgstr "Aucun profil ne correspond à la configuration de cet extrudeur." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 msgctxt "@label" msgid "Select configuration" msgstr "Sélectionner la configuration" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 msgctxt "@label" msgid "Configurations" -msgstr "Configurations" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 msgctxt "@header" msgid "Custom" msgstr "Personnalisé" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:62 -msgctxt "@label" -msgid "Printer" -msgstr "Imprimante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:217 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173 msgctxt "@label" msgid "Enabled" msgstr "Activé" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222 msgctxt "@label" msgid "Material" msgstr "Matériau" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348 msgctxt "@label" msgid "Use glue for better adhesion with this material combination." msgstr "Utiliser de la colle pour une meilleure adhérence avec cette combinaison de matériaux." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:29 +#: resources/qml/Menus/ContextMenu.qml:29 msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "Imprimer le modèle sélectionné avec :" msgstr[1] "Imprimer les modèles sélectionnés avec :" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:92 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Multiplier le modèle sélectionné" msgstr[1] "Multiplier les modèles sélectionnés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:123 msgctxt "@label" msgid "Number of Copies" msgstr "Nombre de copies" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/EditMenu.qml:12 +#: resources/qml/Menus/EditMenu.qml:12 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "&Modifier" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ExtensionMenu.qml:13 +#: resources/qml/Menus/ExtensionMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "E&xtensions" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 +#: resources/qml/Menus/FileMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "&Fichier" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:45 +#: resources/qml/Menus/FileMenu.qml:45 msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Enregistrer le projet..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:78 +#: resources/qml/Menus/FileMenu.qml:78 msgctxt "@title:menu menubar:file" msgid "&Export..." msgstr "E&xporter..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:89 +#: resources/qml/Menus/FileMenu.qml:89 msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Exporter la sélection..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/HelpMenu.qml:14 +#: resources/qml/Menus/HelpMenu.qml:14 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "&Aide" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +#: resources/qml/Menus/MaterialMenu.qml:13 msgctxt "@label:category menu label" msgid "Material" msgstr "Matériau" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:53 +#: resources/qml/Menus/MaterialMenu.qml:53 msgctxt "@label:category menu label" msgid "Favorites" msgstr "Favoris" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:78 +#: resources/qml/Menus/MaterialMenu.qml:78 msgctxt "@label:category menu label" msgid "Generic" msgstr "Générique" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +#: resources/qml/Menus/OpenFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open File(s)..." msgstr "Ouvrir le(s) fichier(s)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PreferencesMenu.qml:21 +#: resources/qml/Menus/PreferencesMenu.qml:21 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "P&références" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:13 +#: resources/qml/Menus/PrinterMenu.qml:13 msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "Im&primante" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:17 +#: resources/qml/Menus/PrinterMenu.qml:17 msgctxt "@label:category menu label" msgid "Network enabled printers" msgstr "Imprimantes réseau" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:50 +#: resources/qml/Menus/PrinterMenu.qml:50 msgctxt "@label:category menu label" msgid "Local printers" msgstr "Imprimantes locales" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +#: resources/qml/Menus/RecentFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open &Recent" msgstr "Ouvrir un fichier &récent" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +#: resources/qml/Menus/SaveProjectMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Save Project..." msgstr "Sauvegarder le projet..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:34 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Matériau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:49 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Définir comme extrudeur actif" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:55 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Activer l'extrudeuse" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:63 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Désactiver l'extrudeuse" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 msgctxt "@action:inmenu" msgid "Visible Settings" msgstr "Paramètres visibles" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 msgctxt "@action:inmenu" msgid "Collapse All Categories" msgstr "Réduire toutes les catégories" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 msgctxt "@action:inmenu" msgid "Manage Setting Visibility..." msgstr "Gérer la visibilité des paramètres..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:13 +#: resources/qml/Menus/SettingsMenu.qml:34 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Matériau" + +#: resources/qml/Menus/SettingsMenu.qml:49 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Définir comme extrudeur actif" + +#: resources/qml/Menus/SettingsMenu.qml:55 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Activer l'extrudeuse" + +#: resources/qml/Menus/SettingsMenu.qml:63 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Désactiver l'extrudeuse" + +#: resources/qml/Menus/ViewMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&View" msgstr "&Visualisation" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:17 +#: resources/qml/Menus/ViewMenu.qml:17 msgctxt "@action:inmenu menubar:view" msgid "&Camera position" msgstr "Position de la &caméra" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:30 +#: resources/qml/Menus/ViewMenu.qml:30 msgctxt "@action:inmenu menubar:view" msgid "Camera view" msgstr "Vue de la caméra" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 +#: resources/qml/Menus/ViewMenu.qml:48 msgctxt "@action:inmenu menubar:view" msgid "Perspective" -msgstr "Perspective" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +#: resources/qml/Menus/ViewMenu.qml:59 msgctxt "@action:inmenu menubar:view" msgid "Orthographic" msgstr "Orthographique" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:115 +#: resources/qml/MonitorButton.qml:115 msgctxt "@label:MonitorStatus" msgid "Not connected to a printer" msgstr "Non connecté à une imprimante" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 +#: resources/qml/MonitorButton.qml:119 msgctxt "@label:MonitorStatus" msgid "Printer does not accept commands" msgstr "L'imprimante n'accepte pas les commandes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:129 +#: resources/qml/MonitorButton.qml:129 msgctxt "@label:MonitorStatus" msgid "In maintenance. Please check the printer" msgstr "En maintenance. Vérifiez l'imprimante" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:140 +#: resources/qml/MonitorButton.qml:140 msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Connexion avec l'imprimante perdue" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +#: resources/qml/MonitorButton.qml:142 msgctxt "@label:MonitorStatus" msgid "Printing..." msgstr "Impression..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +#: resources/qml/MonitorButton.qml:145 msgctxt "@label:MonitorStatus" msgid "Paused" msgstr "En pause" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +#: resources/qml/MonitorButton.qml:148 msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Préparation..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +#: resources/qml/MonitorButton.qml:150 msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Supprimez l'imprimante" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +#: resources/qml/MonitorButton.qml:318 msgctxt "@label" msgid "Abort Print" msgstr "Abandonner l'impression" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:327 +#: resources/qml/MonitorButton.qml:327 msgctxt "@label" msgid "Are you sure you want to abort the print?" msgstr "Êtes-vous sûr(e) de vouloir abandonner l'impression ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:109 +#: resources/qml/ObjectItemButton.qml:109 msgctxt "@label" msgid "Is printed as support." msgstr "Est imprimé comme support." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:112 +#: resources/qml/ObjectItemButton.qml:112 msgctxt "@label" msgid "Other models overlapping with this model are modified." msgstr "D'autres modèles qui se chevauchent avec ce modèle ont été modifiés." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:115 +#: resources/qml/ObjectItemButton.qml:115 msgctxt "@label" msgid "Infill overlapping with this model is modified." msgstr "Le chevauchement de remplissage avec ce modèle a été modifié." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:118 +#: resources/qml/ObjectItemButton.qml:118 msgctxt "@label" msgid "Overlaps with this model are not supported." msgstr "Les chevauchements avec ce modèle ne sont pas pris en charge." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:125 +#: resources/qml/ObjectItemButton.qml:125 msgctxt "@label %1 is the number of settings it overrides." msgid "Overrides %1 setting." msgid_plural "Overrides %1 settings." msgstr[0] "Remplace le paramètre %1." msgstr[1] "Remplace les paramètres %1." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 +#: resources/qml/ObjectSelector.qml:59 msgctxt "@label" msgid "Object list" msgstr "Liste d'objets" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:131 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:24 +#: resources/qml/Preferences/GeneralPage.qml:134 +#: resources/qml/Preferences/SettingVisibilityPage.qml:24 msgctxt "@action:button" msgid "Defaults" msgstr "Rétablir les paramètres par défaut" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +#: resources/qml/Preferences/GeneralPage.qml:172 msgctxt "@label" msgid "Interface" -msgstr "Interface" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +#: resources/qml/Preferences/GeneralPage.qml:215 msgctxt "@heading" msgid "-- incomplete --" -msgstr "--complet --" +msgstr "-- incomplet —-" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +#: resources/qml/Preferences/GeneralPage.qml:261 msgctxt "@label" msgid "Currency:" -msgstr "Devise :" +msgstr "Devise:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:274 +#: resources/qml/Preferences/GeneralPage.qml:277 msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." msgid "Theme*:" msgstr "Thème* :" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +#: resources/qml/Preferences/GeneralPage.qml:323 msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Découper automatiquement si les paramètres sont modifiés." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +#: resources/qml/Preferences/GeneralPage.qml:331 msgctxt "@option:check" msgid "Slice automatically" msgstr "Découper automatiquement" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:337 +#: resources/qml/Preferences/GeneralPage.qml:340 +msgctxt "@info:tooltip" +msgid "Show an icon and notifications in the system notification area." +msgstr "Afficher une icône et des notifications dans la zone de notification du système." + +#: resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Add icon to system tray *" +msgstr "Ajouter une icône à la barre de notification *" + +#: resources/qml/Preferences/GeneralPage.qml:357 msgctxt "@label" msgid "*You will need to restart the application for these changes to have effect." msgstr "*Vous devez redémarrer l'application pour appliquer ces changements." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +#: resources/qml/Preferences/GeneralPage.qml:373 msgctxt "@label" msgid "Viewport behavior" msgstr "Comportement Viewport" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +#: resources/qml/Preferences/GeneralPage.qml:381 msgctxt "@info:tooltip" msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." msgstr "Surligne les parties non supportées du modèle en rouge. Sans ajouter de support, ces zones ne s'imprimeront pas correctement." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:369 +#: resources/qml/Preferences/GeneralPage.qml:390 msgctxt "@option:check" msgid "Display overhang" msgstr "Mettre en surbrillance les porte-à-faux" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +#: resources/qml/Preferences/GeneralPage.qml:400 msgctxt "@info:tooltip" msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." msgstr "Surlignez les surfaces du modèle manquantes ou étrangères en utilisant les signes d'avertissement. Les Toolpaths seront souvent les parties manquantes de la géométrie prévue." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:388 +#: resources/qml/Preferences/GeneralPage.qml:409 msgctxt "@option:check" msgid "Display model errors" msgstr "Afficher les erreurs du modèle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +#: resources/qml/Preferences/GeneralPage.qml:417 msgctxt "@info:tooltip" msgid "Moves the camera so the model is in the center of the view when a model is selected" msgstr "Déplace la caméra afin que le modèle sélectionné se trouve au centre de la vue" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:401 +#: resources/qml/Preferences/GeneralPage.qml:422 msgctxt "@action:button" msgid "Center camera when item is selected" msgstr "Centrer la caméra lorsqu'un élément est sélectionné" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +#: resources/qml/Preferences/GeneralPage.qml:432 msgctxt "@info:tooltip" msgid "Should the default zoom behavior of cura be inverted?" msgstr "Le comportement de zoom par défaut de Cura doit-il être inversé ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:416 +#: resources/qml/Preferences/GeneralPage.qml:437 msgctxt "@action:button" msgid "Invert the direction of camera zoom." msgstr "Inverser la direction du zoom de la caméra." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Should zooming move in the direction of the mouse?" msgstr "Le zoom doit-il se faire dans la direction de la souris ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Zooming towards the mouse is not supported in the orthographic perspective." msgstr "Le zoom vers la souris n'est pas pris en charge dans la perspective orthographique." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:437 +#: resources/qml/Preferences/GeneralPage.qml:458 msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "Zoomer vers la direction de la souris" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +#: resources/qml/Preferences/GeneralPage.qml:484 msgctxt "@info:tooltip" msgid "Should models on the platform be moved so that they no longer intersect?" msgstr "Les modèles dans la zone d'impression doivent-ils être déplacés afin de ne plus se croiser ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:468 +#: resources/qml/Preferences/GeneralPage.qml:489 msgctxt "@option:check" msgid "Ensure models are kept apart" msgstr "Veillez à ce que les modèles restent séparés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +#: resources/qml/Preferences/GeneralPage.qml:498 msgctxt "@info:tooltip" msgid "Should models on the platform be moved down to touch the build plate?" msgstr "Les modèles dans la zone d'impression doivent-ils être abaissés afin de toucher le plateau ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:482 +#: resources/qml/Preferences/GeneralPage.qml:503 msgctxt "@option:check" msgid "Automatically drop models to the build plate" msgstr "Abaisser automatiquement les modèles sur le plateau" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +#: resources/qml/Preferences/GeneralPage.qml:515 msgctxt "@info:tooltip" msgid "Show caution message in g-code reader." msgstr "Afficher le message d'avertissement dans le lecteur G-Code." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503 +#: resources/qml/Preferences/GeneralPage.qml:524 msgctxt "@option:check" msgid "Caution message in g-code reader" msgstr "Message d'avertissement dans le lecteur G-Code" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +#: resources/qml/Preferences/GeneralPage.qml:532 msgctxt "@info:tooltip" msgid "Should layer be forced into compatibility mode?" msgstr "La couche doit-elle être forcée en mode de compatibilité ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +#: resources/qml/Preferences/GeneralPage.qml:537 msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Forcer l'affichage de la couche en mode de compatibilité (redémarrage requis)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +#: resources/qml/Preferences/GeneralPage.qml:547 msgctxt "@info:tooltip" msgid "Should Cura open at the location it was closed?" msgstr "Est-ce que Cura devrait ouvrir à l'endroit où il a été fermé ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:531 +#: resources/qml/Preferences/GeneralPage.qml:552 msgctxt "@option:check" msgid "Restore window position on start" msgstr "Restaurer la position de la fenêtre au démarrage" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +#: resources/qml/Preferences/GeneralPage.qml:562 msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Quel type de rendu de la caméra doit-il être utilisé?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +#: resources/qml/Preferences/GeneralPage.qml:569 msgctxt "@window:text" msgid "Camera rendering:" -msgstr "Rendu caméra :" +msgstr "Rendu caméra:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +#: resources/qml/Preferences/GeneralPage.qml:576 msgid "Perspective" -msgstr "Perspective" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +#: resources/qml/Preferences/GeneralPage.qml:577 msgid "Orthographic" msgstr "Orthographique" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +#: resources/qml/Preferences/GeneralPage.qml:617 msgctxt "@label" msgid "Opening and saving files" msgstr "Ouvrir et enregistrer des fichiers" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +#: resources/qml/Preferences/GeneralPage.qml:624 msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "L'ouverture de fichiers à partir du bureau ou d'applications externes doit-elle se faire dans la même instance de Cura ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:608 +#: resources/qml/Preferences/GeneralPage.qml:629 msgctxt "@option:check" msgid "Use a single instance of Cura" msgstr "Utiliser une seule instance de Cura" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +#: resources/qml/Preferences/GeneralPage.qml:640 msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Les objets doivent-ils être supprimés du plateau de fabrication avant de charger un nouveau modèle dans l'instance unique de Cura ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +#: resources/qml/Preferences/GeneralPage.qml:646 msgctxt "@option:check" msgid "Clear buildplate before loading model into the single instance" msgstr "Supprimez les objets du plateau de fabrication avant de charger un modèle dans l'instance unique" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 +#: resources/qml/Preferences/GeneralPage.qml:656 msgctxt "@info:tooltip" msgid "Should models be scaled to the build volume if they are too large?" msgstr "Les modèles doivent-ils être mis à l'échelle du volume d'impression s'ils sont trop grands ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +#: resources/qml/Preferences/GeneralPage.qml:661 msgctxt "@option:check" msgid "Scale large models" msgstr "Réduire la taille des modèles trop grands" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +#: resources/qml/Preferences/GeneralPage.qml:671 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 "Un modèle peut apparaître en tout petit si son unité est par exemple en mètres plutôt qu'en millimètres. Ces modèles doivent-ils être agrandis ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:655 +#: resources/qml/Preferences/GeneralPage.qml:676 msgctxt "@option:check" msgid "Scale extremely small models" msgstr "Mettre à l'échelle les modèles extrêmement petits" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +#: resources/qml/Preferences/GeneralPage.qml:686 msgctxt "@info:tooltip" msgid "Should models be selected after they are loaded?" msgstr "Les modèles doivent-ils être sélectionnés après leur chargement ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: resources/qml/Preferences/GeneralPage.qml:691 msgctxt "@option:check" msgid "Select models when loaded" msgstr "Sélectionner les modèles lorsqu'ils sont chargés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +#: resources/qml/Preferences/GeneralPage.qml:701 msgctxt "@info:tooltip" msgid "Should a prefix based on the printer name be added to the print job name automatically?" msgstr "Un préfixe basé sur le nom de l'imprimante doit-il être automatiquement ajouté au nom de la tâche d'impression ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:685 +#: resources/qml/Preferences/GeneralPage.qml:706 msgctxt "@option:check" msgid "Add machine prefix to job name" msgstr "Ajouter le préfixe de la machine au nom de la tâche" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +#: resources/qml/Preferences/GeneralPage.qml:716 msgctxt "@info:tooltip" msgid "Should a summary be shown when saving a project file?" msgstr "Un résumé doit-il être affiché lors de l'enregistrement d'un fichier de projet ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: resources/qml/Preferences/GeneralPage.qml:720 msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Afficher la boîte de dialogue du résumé lors de l'enregistrement du projet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +#: resources/qml/Preferences/GeneralPage.qml:730 msgctxt "@info:tooltip" msgid "Default behavior when opening a project file" msgstr "Comportement par défaut lors de l'ouverture d'un fichier de projet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +#: resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@window:text" msgid "Default behavior when opening a project file: " msgstr "Comportement par défaut lors de l'ouverture d'un fichier de projet : " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +#: resources/qml/Preferences/GeneralPage.qml:753 msgctxt "@option:openProject" msgid "Always ask me this" msgstr "Toujours me demander" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: resources/qml/Preferences/GeneralPage.qml:754 msgctxt "@option:openProject" msgid "Always open as a project" msgstr "Toujours ouvrir comme projet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +#: resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:openProject" msgid "Always import models" msgstr "Toujours importer les modèles" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +#: resources/qml/Preferences/GeneralPage.qml:792 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 "Lorsque vous apportez des modifications à un profil puis passez à un autre profil, une boîte de dialogue apparaît, vous demandant si vous souhaitez conserver les modifications. Vous pouvez aussi choisir une option par défaut, et le dialogue ne s'affichera plus." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:780 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:36 +#: resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46 msgctxt "@label" msgid "Profiles" msgstr "Profils" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +#: resources/qml/Preferences/GeneralPage.qml:806 msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Comportement par défaut pour les valeurs de paramètres modifiées lors du passage à un profil différent : " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:800 +#: resources/qml/Preferences/GeneralPage.qml:821 msgctxt "@option:discardOrKeep" msgid "Always discard changed settings" msgstr "Toujours rejeter les paramètres modifiés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/Preferences/GeneralPage.qml:822 msgctxt "@option:discardOrKeep" msgid "Always transfer changed settings to new profile" msgstr "Toujours transférer les paramètres modifiés dans le nouveau profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +#: resources/qml/Preferences/GeneralPage.qml:856 msgctxt "@label" msgid "Privacy" msgstr "Confidentialité" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +#: resources/qml/Preferences/GeneralPage.qml:862 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 "Les données anonymes de votre impression doivent-elles être envoyées à Ultimaker ? Notez qu'aucun modèle, aucune adresse IP ni aucune autre information permettant de vous identifier personnellement ne seront envoyés ou stockés." +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 "Les données anonymes de votre impression doivent-elles être envoyées à Ultimaker ? Notez qu'aucun modèle, aucune adresse IP ni aucune autre information permettant de vous identifier personnellement ne seront envoyés ou stockés." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +#: resources/qml/Preferences/GeneralPage.qml:867 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "Envoyer des informations (anonymes) sur l'impression" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +#: resources/qml/Preferences/GeneralPage.qml:897 msgctxt "@label" msgid "Updates" msgstr "Mises à jour" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +#: resources/qml/Preferences/GeneralPage.qml:904 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "Cura doit-il vérifier les mises à jour au démarrage du programme ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:888 +#: resources/qml/Preferences/GeneralPage.qml:909 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Vérifier les mises à jour au démarrage" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +#: resources/qml/Preferences/GeneralPage.qml:925 msgctxt "@info:tooltip" msgid "When checking for updates, only check for stable releases." msgstr "Lorsque vous vérifiez les mises à jour, ne vérifiez que les versions stables." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:910 +#: resources/qml/Preferences/GeneralPage.qml:931 msgctxt "@option:radio" msgid "Stable releases only" msgstr "Uniquement les versions stables" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +#: resources/qml/Preferences/GeneralPage.qml:941 msgctxt "@info:tooltip" msgid "When checking for updates, check for both stable and for beta releases." msgstr "Lorsque vous recherchez des mises à jour, vérifiez à la fois les versions stables et les versions bêta." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:926 +#: resources/qml/Preferences/GeneralPage.qml:947 msgctxt "@option:radio" msgid "Stable and Beta releases" msgstr "Versions stables et bêta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +#: resources/qml/Preferences/GeneralPage.qml:957 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 "Une vérification automatique des nouveaux plugins doit-elle être effectuée à chaque fois que Cura est lancé ? Il est fortement recommandé de ne pas désactiver cette fonction !" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:941 +#: resources/qml/Preferences/GeneralPage.qml:962 msgctxt "@option:check" msgid "Get notifications for plugin updates" msgstr "Recevoir des notifications pour les mises à jour des plugins" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:50 +#: resources/qml/Preferences/MachinesPage.qml:50 msgctxt "@action:button" msgid "Add New" msgstr "Ajouter un nouveau" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:134 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +#: resources/qml/Preferences/MachinesPage.qml:147 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:160 +#: resources/qml/Preferences/ProfilesPage.qml:294 msgctxt "@action:button" msgid "Activate" msgstr "Activer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:146 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:331 +#: resources/qml/Preferences/MachinesPage.qml:159 +#: resources/qml/Preferences/ProfilesPage.qml:331 msgctxt "@action:button" msgid "Rename" msgstr "Renommer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:72 msgctxt "@label" msgid "Materials compatible with active printer:" msgstr "Matériaux compatibles avec l'imprimante active :" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:94 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:78 +#: resources/qml/Preferences/ProfilesPage.qml:94 msgctxt "@action:button" msgid "Create new" msgstr "Créer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:88 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:90 +#: resources/qml/Preferences/ProfilesPage.qml:88 msgctxt "@action:button" msgid "Import" msgstr "Importer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:101 msgctxt "@action:button" msgid "Sync with Printers" msgstr "Synchroniser les imprimantes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:311 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:174 +#: resources/qml/Preferences/ProfilesPage.qml:311 msgctxt "@action:button" msgid "Duplicate" msgstr "Dupliquer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:342 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:198 +#: resources/qml/Preferences/ProfilesPage.qml:342 msgctxt "@action:button" msgid "Export" msgstr "Exporter" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:392 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:212 +#: resources/qml/Preferences/ProfilesPage.qml:392 msgctxt "@title:window" msgid "Confirm Remove" msgstr "Confirmer la suppression" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:393 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:215 +#: resources/qml/Preferences/ProfilesPage.qml:393 msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "Êtes-vous sûr de vouloir supprimer l'objet %1 ? Vous ne pourrez pas revenir en arrière !" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:228 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:238 msgctxt "@title:window" msgid "Import Material" msgstr "Importer un matériau" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:242 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Matériau %1 importé avec succès" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:245 msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not import material %1: %2" msgstr "Impossible d'importer le matériau %1 : %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:267 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:256 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:267 msgctxt "@title:window" msgid "Export Material" msgstr "Exporter un matériau" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:272 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:272 msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Échec de l'exportation de matériau vers %1 : %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:275 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:275 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Matériau exporté avec succès vers %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 msgctxt "@title:window" msgid "Sync materials with printers" msgstr "Synchroniser les matériaux avec les imprimantes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 msgctxt "@title:header" msgid "Sync materials with printers" msgstr "Synchroniser les matériaux avec les imprimantes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 msgctxt "@text" msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "En suivant quelques étapes simples, vous serez en mesure de synchroniser tous vos profils de matériaux avec vos imprimantes." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 msgctxt "@button" msgid "Why do I need to sync material profiles?" msgstr "Pourquoi dois-je synchroniser les profils de matériaux ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 msgctxt "@button" msgid "Start" msgstr "Démarrer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144 msgctxt "@title:header" msgid "Sign in" msgstr "Se connecter" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150 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 "Pour synchroniser automatiquement les profils de matériaux avec toutes vos imprimantes connectées à Digital Factory, vous devez être connecté à Cura." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:446 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:586 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602 msgctxt "@button" msgid "Sync materials with USB" msgstr "Synchroniser les matériaux avec USB" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 msgctxt "@title:header" msgid "The following printers will receive the new material profiles:" msgstr "Les imprimantes suivantes recevront les nouveaux profils de matériaux :" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:198 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 msgctxt "@title:header" msgid "Something went wrong when sending the materials to the printers." msgstr "Un problème est survenu lors de l'envoi des matériaux aux imprimantes." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:205 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221 msgctxt "@title:header" msgid "Material profiles successfully synced with the following printers:" msgstr "Les profils de matériaux ont été synchronisés avec les imprimantes suivantes :" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:429 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445 msgctxt "@button" msgid "Troubleshooting" msgstr "Dépannage" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422 msgctxt "@text Asking the user whether printers are missing in a list." msgid "Printers missing?" msgstr "Imprimantes manquantes ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:408 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424 msgctxt "@text" msgid "Make sure all your printers are turned ON and connected to Digital Factory." msgstr "Assurez-vous que toutes vos imprimantes sont allumées et connectées à Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:417 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433 msgctxt "@button" msgid "Refresh List" msgstr "Actualiser la liste" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473 msgctxt "@button" msgid "Try again" msgstr "Réessayer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:461 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Done" msgstr "Terminé" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:606 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622 msgctxt "@button" msgid "Sync" msgstr "Synchroniser" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535 msgctxt "@button" msgid "Syncing" msgstr "Synchronisation" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553 msgctxt "@title:header" msgid "No printers found" msgstr "Aucune imprimante trouvée" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574 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 "Il semble que vous n'ayez aucune imprimante compatible connectée à Digital Factory. Assurez-vous que votre imprimante est connectée et qu'elle utilise le dernier micrologiciel." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:569 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585 msgctxt "@button" msgid "Learn how to connect your printer to Digital Factory" msgstr "Découvrez comment connecter votre imprimante à Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:597 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613 msgctxt "@button" msgid "Refresh" msgstr "Rafraîchir" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642 msgctxt "@title:header" msgid "Sync material profiles via USB" msgstr "Synchroniser les profils de matériaux via USB" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:632 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648 msgctxt "@text In the UI this is followed by a list of steps the user needs to take." msgid "Follow the following steps to load the new material profiles to your printer." msgstr "Suivez les étapes suivantes pour charger les nouveaux profils de matériaux dans votre imprimante." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 msgctxt "@text" msgid "Click the export material archive button." msgstr "Cliquez sur le bouton d'exportation des archives de matériaux." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Enregistrez le fichier .umm sur une clé USB." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 msgctxt "@text" msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." msgstr "Insérez la clé USB dans votre imprimante et lancez la procédure pour charger de nouveaux profils de matériaux." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:673 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689 msgctxt "@button" msgid "How to load new material profiles to my printer" msgstr "Comment charger de nouveaux profils de matériaux dans mon imprimante" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:687 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 msgctxt "@button" msgid "Back" msgstr "Précédent" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Export material archive" msgstr "Exporter l'archive des matériaux" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747 msgctxt "@title:window" msgid "Export All Materials" msgstr "Exporter tous les matériaux" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121 +#: resources/qml/Preferences/Materials/MaterialsView.qml:121 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Confirmer le changement de diamètre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122 +#: resources/qml/Preferences/Materials/MaterialsView.qml:122 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 "Le nouveau diamètre de filament est réglé sur %1 mm, ce qui n'est pas compatible avec l'extrudeuse actuelle. Souhaitez-vous poursuivre ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152 +#: resources/qml/Preferences/Materials/MaterialsView.qml:152 msgctxt "@label" msgid "Display Name" msgstr "Afficher le nom" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 +#: resources/qml/Preferences/Materials/MaterialsView.qml:171 msgctxt "@label" msgid "Brand" msgstr "Marque" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190 +#: resources/qml/Preferences/Materials/MaterialsView.qml:190 msgctxt "@label" msgid "Material Type" msgstr "Type de matériau" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +#: resources/qml/Preferences/Materials/MaterialsView.qml:210 msgctxt "@label" msgid "Color" msgstr "Couleur" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:262 +#: resources/qml/Preferences/Materials/MaterialsView.qml:262 msgctxt "@title" msgid "Material color picker" msgstr "Sélecteur de couleur de matériau" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:275 +#: resources/qml/Preferences/Materials/MaterialsView.qml:275 msgctxt "@label" msgid "Properties" msgstr "Propriétés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +#: resources/qml/Preferences/Materials/MaterialsView.qml:286 msgctxt "@label" msgid "Density" msgstr "Densité" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +#: resources/qml/Preferences/Materials/MaterialsView.qml:319 msgctxt "@label" msgid "Diameter" msgstr "Diamètre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:369 +#: resources/qml/Preferences/Materials/MaterialsView.qml:369 msgctxt "@label" msgid "Filament Cost" msgstr "Coût du filament" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:401 +#: resources/qml/Preferences/Materials/MaterialsView.qml:401 msgctxt "@label" msgid "Filament weight" msgstr "Poids du filament" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:433 +#: resources/qml/Preferences/Materials/MaterialsView.qml:433 msgctxt "@label" msgid "Filament length" msgstr "Longueur du filament" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:451 +#: resources/qml/Preferences/Materials/MaterialsView.qml:451 msgctxt "@label" msgid "Cost per Meter" msgstr "Coût au mètre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:465 +#: resources/qml/Preferences/Materials/MaterialsView.qml:465 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "Ce matériau est lié à %1 et partage certaines de ses propriétés." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:472 +#: resources/qml/Preferences/Materials/MaterialsView.qml:472 msgctxt "@label" msgid "Unlink Material" msgstr "Délier le matériau" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +#: resources/qml/Preferences/Materials/MaterialsView.qml:485 msgctxt "@label" msgid "Description" -msgstr "Description" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:503 +#: resources/qml/Preferences/Materials/MaterialsView.qml:503 msgctxt "@label" msgid "Adhesion Information" msgstr "Informations d'adhérence" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642 +#: resources/qml/Preferences/Materials/MaterialsView.qml:642 msgctxt "@title" msgid "Information" msgstr "Informations" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:647 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:82 +#: resources/qml/Preferences/Materials/MaterialsView.qml:647 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 msgctxt "@label" msgid "Print settings" msgstr "Paramètres d'impression" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:59 +#: resources/qml/Preferences/ProfilesPage.qml:59 msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "Profils compatibles avec l'imprimante active :" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:98 +#: resources/qml/Preferences/ProfilesPage.qml:98 msgctxt "@action:tooltip" msgid "Create new profile from current settings/overrides" msgstr "Créer un nouveau profil à partir des paramètres/remplacements actuels" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:125 +#: resources/qml/Preferences/ProfilesPage.qml:125 msgctxt "@action:label" msgid "Some settings from current profile were overwritten." msgstr "Certains paramètres du profil actuel ont été remplacés." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:140 +#: resources/qml/Preferences/ProfilesPage.qml:140 msgctxt "@action:button" msgid "Update profile." msgstr "Mettre à jour le profil." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:143 +#: resources/qml/Preferences/ProfilesPage.qml:143 msgctxt "@action:tooltip" msgid "Update profile with current settings/overrides" -msgstr "Mettre à jour le profil avec les paramètres actuels  / forcer " +msgstr "Mettre à jour le profil avec les paramètres actuels  / forcer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:148 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256 +#: resources/qml/Preferences/ProfilesPage.qml:148 msgctxt "@action:button" msgid "Discard current changes" msgstr "Ignorer les modifications actuelles" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:158 +#: resources/qml/Preferences/ProfilesPage.qml:158 msgctxt "@action:label" msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." msgstr "Ce profil utilise les paramètres par défaut spécifiés par l'imprimante, de sorte qu'aucun paramètre / forçage n'apparaît dans la liste ci-dessous." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:165 +#: resources/qml/Preferences/ProfilesPage.qml:165 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "Vos paramètres actuels correspondent au profil sélectionné." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +#: resources/qml/Preferences/ProfilesPage.qml:175 msgctxt "@title:tab" msgid "Global Settings" msgstr "Paramètres généraux" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: resources/qml/Preferences/ProfilesPage.qml:278 msgctxt "@title:window" msgid "Create Profile" msgstr "Créer un profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:280 +#: resources/qml/Preferences/ProfilesPage.qml:280 msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Veuillez fournir un nom pour ce profil." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:368 +#: resources/qml/Preferences/ProfilesPage.qml:352 +#: resources/qml/Preferences/ProfilesPage.qml:368 msgctxt "@title:window" msgid "Export Profile" msgstr "Exporter un profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +#: resources/qml/Preferences/ProfilesPage.qml:382 msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Dupliquer un profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:409 +#: resources/qml/Preferences/ProfilesPage.qml:409 msgctxt "@title:window" msgid "Rename Profile" msgstr "Renommer le profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:422 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:429 +#: resources/qml/Preferences/ProfilesPage.qml:422 +#: resources/qml/Preferences/ProfilesPage.qml:429 msgctxt "@title:window" msgid "Import Profile" msgstr "Importer un profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:22 -msgctxt "@title:window" -msgid "Rename" -msgstr "Renommer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:23 -msgctxt "@info" -msgid "Please provide a new name." -msgstr "Veuillez indiquer un nouveau nom." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56 +#: resources/qml/Preferences/SettingVisibilityItem.qml:56 msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." msgstr "Ce paramètre a été masqué par la machine active et ne sera pas visible." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73 +#: resources/qml/Preferences/SettingVisibilityItem.qml:73 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] "Ce paramètre a été masqué par la valeur de %1. Modifiez la valeur de ce paramètre pour le rendre visible." msgstr[1] "Ce paramètre a été masqué par les valeurs de %1. Modifiez les valeurs de ces paramètres pour les rendre visibles." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13 +#: resources/qml/Preferences/SettingVisibilityPage.qml:13 msgctxt "@title:tab" msgid "Setting Visibility" msgstr "Visibilité des paramètres" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 +#: resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" msgid "Check all" msgstr "Vérifier tout" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 -msgctxt "@label" -msgid "Extruder" -msgstr "Extrudeuse" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70 -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." -msgstr "Température cible de l'extrémité chauffante. L'extrémité chauffante sera chauffée ou refroidie pour tendre vers cette température. Si la valeur est 0, le chauffage de l'extrémité chauffante sera coupé." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Température actuelle de cette extrémité chauffante." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "Température jusqu'à laquelle préchauffer l'extrémité chauffante." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Annuler" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Préchauffer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Préchauffez l'extrémité chauffante avant l'impression. Vous pouvez continuer l'ajustement de votre impression pendant qu'elle chauffe, ce qui vous évitera un temps d'attente lorsque vous serez prêt à lancer l'impression." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Couleur du matériau dans cet extrudeur." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Matériau dans cet extrudeur." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Buse insérée dans cet extrudeur." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -msgctxt "@label" -msgid "Build plate" -msgstr "Plateau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55 -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 "Température cible du plateau chauffant. Le plateau sera chauffé ou refroidi pour tendre vers cette température. Si la valeur est 0, le chauffage du plateau sera éteint." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "Température actuelle du plateau chauffant." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "Température jusqu'à laquelle préchauffer le plateau." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Préchauffez le plateau avant l'impression. Vous pouvez continuer à ajuster votre impression pendant qu'il chauffe, et vous n'aurez pas à attendre que le plateau chauffe lorsque vous serez prêt à lancer l'impression." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51 -msgctxt "@label" -msgid "Printer control" -msgstr "Contrôle de l'imprimante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66 -msgctxt "@label" -msgid "Jog Position" -msgstr "Position de coupe" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Distance de coupe" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Send G-code" -msgstr "Envoyer G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Envoyer une commande G-Code personnalisée à l'imprimante connectée. Appuyez sur « Entrée » pour envoyer la commande." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "L'imprimante n'est pas connectée." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "L'imprimante cloud est hors ligne. Veuillez vérifier si l'imprimante est activée et connectée à Internet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Cette imprimante n'est pas associée à votre compte. Veuillez visiter l'Ultimaker Digital Factory pour établir une connexion." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "La connexion cloud est actuellement indisponible. Veuillez vous connecter pour connecter l'imprimante cloud." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "La connexion cloud est actuellement indisponible. Veuillez vérifier votre connexion Internet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:235 -msgctxt "@button" -msgid "Add printer" -msgstr "Ajouter une imprimante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Manage printers" -msgstr "Gérer les imprimantes" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Active print" msgstr "Activer l'impression" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Job Name" msgstr "Nom de la tâche" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +#: resources/qml/PrintMonitor.qml:172 msgctxt "@label" msgid "Printing Time" msgstr "Durée d'impression" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +#: resources/qml/PrintMonitor.qml:180 msgctxt "@label" msgid "Estimated time left" msgstr "Durée restante estimée" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 msgctxt "@label" msgid "Profile" msgstr "Profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5617,132 +6173,379 @@ msgstr "" "\n" "Cliquez pour ouvrir le gestionnaire de profils." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 +#: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 msgctxt "@label:header" msgid "Custom profiles" msgstr "Personnaliser les profils" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 msgctxt "@label shown when we load a Gcode file" msgid "Print setup disabled. G-code file can not be modified." msgstr "Configuration d'impression désactivée. Le fichier G-Code ne peut pas être modifié." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:179 msgctxt "@button" msgid "Recommended" msgstr "Recommandé" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156 -msgctxt "@button" -msgid "Custom" -msgstr "Personnalisé" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 msgctxt "@label:Should be short" msgid "On" -msgstr "On" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 msgctxt "@label:Should be short" msgid "Off" -msgstr "Off" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "Expérimental" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:54 -msgctxt "@info" -msgid "custom profile is active and you overwrote some settings." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 -msgctxt "@info" -msgid "custom profile is overriding some settings." +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is active and you overwrote some settings." +msgstr "Le profil personnalisé %1 est actif et vous avez remplacé certains paramètres." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is overriding some settings." +msgstr "Le profil personnalisé %1 remplace certains paramètres." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92 +msgctxt "@info %1 is the name of a profile" +msgid "Recommended settings (for %1) were altered." +msgstr "Les paramètres recommandés (pour %1) ont été modifiés." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106 +msgctxt "@info %1 is the name of a profile" +msgid "Some setting-values defined in %1 were overridden." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137 msgctxt "@info" -msgid "Some settings were changed." -msgstr "" +msgid "Reset to defaults." +msgstr "Réinitialiser les paramètres par défaut." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178 +msgctxt "@info" +msgid "Compare and save." +msgstr "Comparer et enregistrer." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15 msgctxt "@label" msgid "Adhesion" msgstr "Adhérence" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20 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 "Activez l'impression d'une bordure ou plaquette (Brim/Raft). Cela ajoutera une zone plate autour de ou sous votre objet qui est facile à découper par la suite." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:198 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102 msgctxt "@label" -msgid "Gradual infill" -msgstr "Remplissage graduel" +msgid "Recommended print settings" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:236 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "Un remplissage graduel augmentera la quantité de remplissage vers le haut." +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111 +msgctxt "@button" +msgid "Show Custom" +msgstr "Personnalisé" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27 msgctxt "@label" msgid "Resolution" +msgstr "Résolution" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16 +msgctxt "@label" +msgid "Strength" +msgstr "Résistance" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20 +msgctxt "@label" +msgid "The following settings define the strength of your part." +msgstr "Les paramètres suivants déterminent la résistance de votre pièce." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34 +msgctxt "infill_sparse_density description" +msgid "Infill Density" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35 +msgctxt "@label" +msgid "Adjusts the density of infill of the print." +msgstr "Adapte la densité du remplissage de l'impression." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54 +msgctxt "@action:label" +msgid "Infill Pattern" +msgstr "Motif de remplissage" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56 +msgctxt "@label" +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 "" +"Motif de remplissage de la pièce :\n" +"\n" +"Pour l'impression rapide de modèles 3D non fonctionnels, choisissez un remplissage de type ligne, zigzag ou éclair.\n" +"\n" +"Pour les parties fonctionnelles soumises à de faibles contraintes, nous recommandons un remplissage de type grille, triangle ou trihexagonal.\n" +"\n" +"Pour les impressions 3D fonctionnelles qui nécessitent une résistance élevée dans plusieurs directions, utilisez un remplissage de type cubique, subdivision cubique, quart cubique, octaédrique ou gyroïde." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67 +msgctxt "@action:label" +msgid "Shell Thickness" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68 +msgctxt "@label" +msgid "Defines the thickness of your part side walls, roof and floor." +msgstr "Définit l'épaisseur des parois et des surfaces supérieures et inférieures de votre pièce." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16 msgctxt "@label" msgid "Support" -msgstr "Support" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21 msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these 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." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40 +msgctxt "@action:label" +msgid "Support Type" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41 +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." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53 +msgctxt "@action:label" +msgid "Print with" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54 +msgctxt "@label" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "Le chemin d'extrusion à utiliser pour l'impression du support. Cela est utilisé en multi-extrusion." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67 +msgctxt "@action:label" +msgid "Placement" +msgstr "Positionnement" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68 +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." + +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 msgctxt "@error" msgid "Configuration not supported" -msgstr "" +msgstr "Configuration non supportée" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." -msgstr "" +msgstr "Nessun profilo disponibile per la configurazione del materiale /%1 selezionato/a. Modifica la configurazione." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 msgctxt "@button:label" msgid "Learn more" -msgstr "" +msgstr "En savoir plus" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +#: resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "Extrudeuse" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:70 +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." +msgstr "Température cible de l'extrémité chauffante. L'extrémité chauffante sera chauffée ou refroidie pour tendre vers cette température. Si la valeur est 0, le chauffage de l'extrémité chauffante sera coupé." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:105 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "Température actuelle de cette extrémité chauffante." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:182 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "Température jusqu'à laquelle préchauffer l'extrémité chauffante." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:271 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:259 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Annuler" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:274 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:263 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Préchauffer" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:297 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Préchauffez l'extrémité chauffante avant l'impression. Vous pouvez continuer l'ajustement de votre impression pendant qu'elle chauffe, ce qui vous évitera un temps d'attente lorsque vous serez prêt à lancer l'impression." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:335 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "Couleur du matériau dans cet extrudeur." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:367 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "Matériau dans cet extrudeur." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:400 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "Buse insérée dans cet extrudeur." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:25 +msgctxt "@label" +msgid "Build plate" +msgstr "Plateau" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:55 +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 "Température cible du plateau chauffant. Le plateau sera chauffé ou refroidi pour tendre vers cette température. Si la valeur est 0, le chauffage du plateau sera éteint." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "Température actuelle du plateau chauffant." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:162 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "Température jusqu'à laquelle préchauffer le plateau." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:286 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Préchauffez le plateau avant l'impression. Vous pouvez continuer à ajuster votre impression pendant qu'il chauffe, et vous n'aurez pas à attendre que le plateau chauffe lorsque vous serez prêt à lancer l'impression." + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:51 +msgctxt "@label" +msgid "Printer control" +msgstr "Contrôle de l'imprimante" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:66 +msgctxt "@label" +msgid "Jog Position" +msgstr "Position de coupe" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:82 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:162 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:217 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Distance de coupe" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Send G-code" +msgstr "Envoyer G-Code" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:319 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Envoyer une commande G-Code personnalisée à l'imprimante connectée. Appuyez sur « Entrée » pour envoyer la commande." + +#: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "L'imprimante n'est pas connectée." + +#: resources/qml/PrinterSelector/MachineListButton.qml:34 +msgctxt "@label" +msgid "Hide all connected printers" +msgstr "Masquer toutes les imprimantes connectées" + +#: resources/qml/PrinterSelector/MachineListButton.qml:47 +msgctxt "@label" +msgid "Show all connected printers" +msgstr "Afficher toutes les imprimantes connectées" + +#: resources/qml/PrinterSelector/MachineSelector.qml:64 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "L'imprimante cloud est hors ligne. Veuillez vérifier si l'imprimante est activée et connectée à Internet." + +#: resources/qml/PrinterSelector/MachineSelector.qml:68 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Cette imprimante n'est pas associée à votre compte. Veuillez visiter l'Ultimaker Digital Factory pour établir une connexion." + +#: resources/qml/PrinterSelector/MachineSelector.qml:73 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "La connexion cloud est actuellement indisponible. Veuillez vous connecter pour connecter l'imprimante cloud." + +#: resources/qml/PrinterSelector/MachineSelector.qml:78 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "La connexion cloud est actuellement indisponible. Veuillez vérifier votre connexion Internet." + +#: resources/qml/PrinterSelector/MachineSelectorList.qml:30 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:32 +msgctxt "@label" +msgid "Other printers" +msgstr "Autres imprimantes" + +#: resources/qml/ProfileOverview.qml:36 msgctxt "@title:column" msgid "Setting" msgstr "Paramètre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +#: resources/qml/ProfileOverview.qml:37 msgctxt "@title:column" msgid "Profile" msgstr "Profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +#: resources/qml/ProfileOverview.qml:38 msgctxt "@title:column" msgid "Current" msgstr "Actuel" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +#: resources/qml/ProfileOverview.qml:39 msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unité" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +#: resources/qml/SearchBar.qml:17 msgctxt "@placeholder" msgid "Search" msgstr "Rechercher" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 +#: resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5753,32 +6556,32 @@ msgstr "" "\n" "Cliquez pour rendre ces paramètres visibles." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 +#: resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "Ce paramètre n'est pas utilisé car tous les paramètres qu'il influence sont remplacés." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +#: resources/qml/Settings/SettingItem.qml:89 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Touche" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +#: resources/qml/Settings/SettingItem.qml:94 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "Touché par" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:190 +#: resources/qml/Settings/SettingItem.qml:196 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "Ce paramètre est toujours partagé par toutes les extrudeuses. Le modifier ici entraînera la modification de la valeur pour toutes les extrudeuses." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +#: resources/qml/Settings/SettingItem.qml:200 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'extrudeur :" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +#: resources/qml/Settings/SettingItem.qml:240 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5789,7 +6592,7 @@ msgstr "" "\n" "Cliquez pour restaurer la valeur du profil." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:334 +#: resources/qml/Settings/SettingItem.qml:340 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5800,4697 +6603,328 @@ msgstr "" "\n" "Cliquez pour restaurer la valeur calculée." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +#: resources/qml/Settings/SettingView.qml:48 msgctxt "@label:textbox" msgid "Search settings" msgstr "Paramètres de recherche" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:395 +#: resources/qml/Settings/SettingView.qml:395 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Copier la valeur vers tous les extrudeurs" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:404 +#: resources/qml/Settings/SettingView.qml:404 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Copier toutes les valeurs modifiées vers toutes les extrudeuses" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:440 +#: resources/qml/Settings/SettingView.qml:440 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Masquer ce paramètre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:453 +#: resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Masquer ce paramètre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:457 +#: resources/qml/Settings/SettingView.qml:457 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Afficher ce paramètre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +#: resources/qml/Toolbar.qml:142 +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" +msgstr[0] "Imprimer le modèle sélectionné avec %1" +msgstr[1] "Imprimer les modèles sélectionnés avec %1" + +#: resources/qml/ViewOrientationControls.qml:25 msgctxt "@info:tooltip" msgid "3D View" msgstr "Vue 3D" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +#: resources/qml/ViewOrientationControls.qml:38 msgctxt "@info:tooltip" msgid "Front View" msgstr "Vue de face" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +#: resources/qml/ViewOrientationControls.qml:51 msgctxt "@info:tooltip" msgid "Top View" msgstr "Vue du dessus" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +#: resources/qml/ViewOrientationControls.qml:64 msgctxt "@info:tooltip" msgid "Left View" msgstr "Vue gauche" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +#: resources/qml/ViewOrientationControls.qml:77 msgctxt "@info:tooltip" msgid "Right View" msgstr "Vue droite" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: resources/qml/ViewsSelector.qml:50 msgctxt "@label" msgid "View type" msgstr "Type d'affichage" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:47 msgctxt "@label" msgid "Add a Cloud printer" msgstr "Ajouter une imprimante cloud" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:73 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:73 msgctxt "@label" msgid "Waiting for Cloud response" msgstr "En attente d'une réponse cloud" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:83 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:83 msgctxt "@label" msgid "No printers found in your account?" msgstr "Aucune imprimante trouvée dans votre compte ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:117 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:117 msgctxt "@label" msgid "The following printers in your account have been added in Cura:" msgstr "Les imprimantes suivantes de votre compte ont été ajoutées à Cura :" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:186 msgctxt "@button" msgid "Add printer manually" msgstr "Ajouter l'imprimante manuellement" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 msgctxt "@label" msgid "Manufacturer" msgstr "Fabricant" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Profile author" msgstr "Auteur du profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 msgctxt "@label" msgid "Printer name" msgstr "Nom de l'imprimante" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 msgctxt "@text" msgid "Please name your printer" msgstr "Veuillez nommer votre imprimante" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "Ajouter une imprimante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:38 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Ajouter une imprimante en réseau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:87 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Ajouter une imprimante hors réseau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 msgctxt "@label" msgid "There is no printer found over your network." msgstr "Aucune imprimante n'a été trouvée sur votre réseau." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 msgctxt "@label" msgid "Refresh" msgstr "Rafraîchir" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 msgctxt "@label" msgid "Add printer by IP" msgstr "Ajouter une imprimante par IP" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Ajouter une imprimante cloud" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205 msgctxt "@label" msgid "Troubleshooting" msgstr "Dépannage" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 msgctxt "@label" msgid "Add printer by IP address" msgstr "Ajouter une imprimante par adresse IP" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Saisissez l'adresse IP de votre imprimante." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 msgctxt "@button" msgid "Add" msgstr "Ajouter" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 msgctxt "@label" msgid "Could not connect to device." msgstr "Impossible de se connecter à l'appareil." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Impossible de vous connecter à votre imprimante Ultimaker ?" +msgid "Can't connect to your UltiMaker printer?" +msgstr "Impossible de vous connecter à votre imprimante UltiMaker ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 msgctxt "@label" msgid "The printer at this address has not responded yet." msgstr "L'imprimante à cette adresse n'a pas encore répondu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 msgctxt "@label" msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." msgstr "Cette imprimante ne peut pas être ajoutée parce qu'il s'agit d'une imprimante inconnue ou de l'hôte d'un groupe." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 msgctxt "@button" msgid "Connect" msgstr "Se connecter" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Ajouter une imprimante en réseau" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Ajouter une imprimante hors réseau" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102 +msgctxt "@button" +msgid "Add UltiMaker printer via Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "In order to start using Cura you will need to configure a printer." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36 +msgctxt "@label" +msgid "What printer would you like to setup?" +msgstr "Quelle imprimante souhaitez-vous configurer?" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55 +msgctxt "@button" +msgid "UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64 +msgctxt "@button" +msgid "Non UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73 +msgctxt "@button" +msgid "Learn more about adding printers to Cura" +msgstr "En savoir plus sur l'ajout d'imprimantes à Cura" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29 +msgctxt "@label" +msgid "Add printer" +msgstr "Ajouter une imprimante" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33 +msgctxt "@label" +msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70 +msgctxt "@label" +msgid "If you are trying to add a new UltiMaker printer to Cura" +msgstr "Si vous essayez d'ajouter une nouvelle imprimante UltiMaker à Cura" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80 +msgctxt "@info" +msgid "Sign in into UltiMaker Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81 +msgctxt "@info" +msgid "Follow the procedure to add a new printer" +msgstr "Suivez la procédure pour ajouter une nouvelle imprimante" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82 +msgctxt "@info" +msgid "Your new printer will automatically appear in Cura" +msgstr "Votre nouvelle imprimante apparaîtra automatiquement dans Cura" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100 +msgctxt "@button" +msgid "Learn more" +msgstr "En savoir plus" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121 +msgctxt "@button" +msgid "Add local printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129 +msgctxt "@button" +msgid "Sign in to Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133 +msgctxt "@button" +msgid "Waiting for new printers" +msgstr "" + +#: resources/qml/WelcomePages/ChangelogContent.qml:24 msgctxt "@label" msgid "Release Notes" msgstr "Notes de version" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:123 +#: resources/qml/WelcomePages/CloudContent.qml:123 msgctxt "@text" msgid "Add material settings and plugins from the Marketplace" -msgstr "Ajoutez des paramètres de matériaux et des plug-ins depuis la Marketplace" +msgstr "Ajoutez des paramètres de matériaux et des plugins depuis la Marketplace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:149 +#: resources/qml/WelcomePages/CloudContent.qml:149 msgctxt "@text" msgid "Backup and sync your material settings and plugins" -msgstr "Sauvegardez et synchronisez vos paramètres de matériaux et vos plug-ins" +msgstr "Sauvegardez et synchronisez vos paramètres de matériaux et vos plugins" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:175 +#: resources/qml/WelcomePages/CloudContent.qml:175 msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Partagez vos idées et obtenez l'aide de plus de 48 000 utilisateurs de la communauté Ultimaker" +msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" +msgstr "Partagez vos idées et obtenez l'aide de plus de 48,000 utilisateurs de la communauté UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +#: resources/qml/WelcomePages/CloudContent.qml:189 msgctxt "@button" msgid "Skip" msgstr "Ignorer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +#: resources/qml/WelcomePages/CloudContent.qml:201 msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Créez gratuitement un compte Ultimaker" +msgid "Create a free UltiMaker Account" +msgstr "Créez gratuitement un compte UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Aidez-nous à améliorer Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:56 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura recueille des données anonymes pour améliorer la qualité d'impression et l'expérience utilisateur, notamment :" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:68 -msgctxt "@text" -msgid "Machine types" -msgstr "Types de machines" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:74 -msgctxt "@text" -msgid "Material usage" -msgstr "Utilisation du matériau" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:80 -msgctxt "@text" -msgid "Number of slices" -msgstr "Nombre de découpes" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:86 -msgctxt "@text" -msgid "Print settings" -msgstr "Paramètres d'impression" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:99 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Les données recueillies par Ultimaker Cura ne contiendront aucun renseignement personnel." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:100 -msgctxt "@text" -msgid "More information" -msgstr "Plus d'informations" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +#: resources/qml/WelcomePages/DropDownWidget.qml:93 msgctxt "@label" msgid "Empty" msgstr "Vide" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +#: resources/qml/WelcomePages/UserAgreementContent.qml:23 msgctxt "@label" msgid "User Agreement" msgstr "Accord utilisateur" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67 +#: resources/qml/WelcomePages/UserAgreementContent.qml:67 msgctxt "@button" msgid "Decline and close" msgstr "Décliner et fermer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Bienvenue dans Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:67 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "" -"Veuillez suivre ces étapes pour configurer\n" -"Ultimaker Cura. Cela ne prendra que quelques instants." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:82 -msgctxt "@button" -msgid "Get started" -msgstr "Prise en main" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: resources/qml/WelcomePages/WhatsNewContent.qml:28 msgctxt "@label" msgid "What's New" msgstr "Nouveautés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: resources/qml/Widgets/ComboBox.qml:18 msgctxt "@label" msgid "No items to select from" msgstr "Aucun élément à sélectionner" -#: ModelChecker/plugin.json -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." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "Contrôleur de modèle" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Fournit la prise en charge de la lecture de fichiers 3MF." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "Lecteur 3MF" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Permet l'écriture de fichiers 3MF." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "Générateur 3MF" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Fournit la prise en charge de la lecture de fichiers AMF." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "Lecteur AMF" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Sauvegardez et restaurez votre configuration." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Sauvegardes Cura" - -#: CuraEngineBackend/plugin.json -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." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Système CuraEngine" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Fournit la prise en charge de l'importation de profils Cura." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Lecteur de profil Cura" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Fournit la prise en charge de l'exportation de profils Cura." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Générateur de profil Cura" - -#: DigitalLibrary/plugin.json -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." - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Vérifie les mises à jour du firmware." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Vérificateur des mises à jour du firmware" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Fournit à une machine des actions permettant la mise à jour du firmware." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Programme de mise à jour du firmware" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lit le G-Code à partir d'une archive compressée." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lecteur G-Code compressé" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Enregistre le G-Code dans une archive compressée." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Générateur de G-Code compressé" - -#: GCodeProfileReader/plugin.json -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." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Lecteur de profil G-Code" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permet le chargement et l'affichage de fichiers G-Code." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "Lecteur G-Code" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Enregistre le G-Code dans un fichier." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "Générateur de G-Code" - -#: ImageReader/plugin.json -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." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Lecteur d'images" - -#: LegacyProfileReader/plugin.json -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." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lecteur de profil Cura antérieur" - -#: MachineSettingsAction/plugin.json -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.)" - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Action Paramètres de la machine" - -#: Marketplace/plugin.json -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." - -#: Marketplace/plugin.json -msgctxt "name" -msgid "Marketplace" -msgstr "Marketplace" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Fournit une étape de surveillance dans Cura." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Étape de surveillance" - -#: PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Fournit les paramètres par modèle." - -#: PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Outil de paramètres par modèle" - -#: PostProcessingPlugin/plugin.json -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" - -#: PostProcessingPlugin/plugin.json -msgctxt "name" -msgid "Post Processing" -msgstr "Post-traitement" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Fournit une étape de préparation dans Cura." - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "Étape de préparation" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Fournit une étape de prévisualisation dans Cura." - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "Étape de prévisualisation" - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible." - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Plugin de périphérique de sortie sur disque amovible" - -#: SentryLogger/plugin.json -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" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "Journal d'événements dans Sentry" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Fournit l'aperçu des données du slice." - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "Vue simulation" - -#: SliceInfoPlugin/plugin.json -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." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Information sur le découpage" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Affiche une vue en maille solide normale." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Vue solide" - -#: SupportEraser/plugin.json -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" - -#: SupportEraser/plugin.json -msgctxt "name" -msgid "Support Eraser" -msgstr "Effaceur de support" - -#: TrimeshReader/plugin.json -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Fournit la prise en charge de la lecture de fichiers modèle 3D." - -#: TrimeshReader/plugin.json -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Lecteur de Trimesh" - -#: UFPReader/plugin.json -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Fournit un support pour la lecture des paquets de format Ultimaker." - -#: UFPReader/plugin.json -msgctxt "name" -msgid "UFP Reader" -msgstr "Lecteur UFP" - -#: UFPWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Permet l'écriture de fichiers Ultimaker Format Package." - -#: UFPWriter/plugin.json -msgctxt "name" -msgid "UFP Writer" -msgstr "Générateur UFP" - -#: UltimakerMachineActions/plugin.json -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.)" - -#: UltimakerMachineActions/plugin.json -msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Actions de la machine Ultimaker" - -#: UM3NetworkPrinting/plugin.json -msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Gère les connexions réseau vers les imprimantes Ultimaker en réseau." - -#: UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Connexion réseau Ultimaker" - -#: USBPrinting/plugin.json -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." - -#: USBPrinting/plugin.json -msgctxt "name" -msgid "USB printing" -msgstr "Impression par USB" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Mise à niveau vers 2.1 vers 2.2" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Mise à niveau de 2.2 vers 2.4" - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Mise à niveau de 2.5 vers 2.6" - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Mise à niveau de 2.6 vers 2.7" - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Mise à niveau de version, de 2.7 vers 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Mise à niveau de version, de 3.0 vers 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Mise à niveau de 3.2 vers 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Mise à niveau de 3.3 vers 3.4" - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Mise à niveau de 3.4 vers 3.5" - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Mise à niveau de 3.5 vers 4.0" - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Mise à niveau de 4.0 vers 4.1" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Mise à niveau de la version 4.11 vers la version 4.12" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Mise à niveau de la version 4.13 vers la version 5.0" - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Mise à jour de 4.1 vers 4.2" - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Mise à jour de 4.2 vers 4.3" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Mise à niveau de 4.3 vers 4.4" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Mise à niveau de 4.4 vers 4.5" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Mise à niveau de 4.5 vers 4.6" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Mise à niveau de 4.6.0 vers 4.6.2" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Mise à niveau de 4.6.2 vers 4.7" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Mise à niveau de 4.7 vers 4.8" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Mise à niveau de 4.8 vers 4.9" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Mise à niveau de 4.9 vers 4.10" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Fournit la prise en charge de la lecture de fichiers X3D." - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "Lecteur X3D" - -#: XmlMaterialProfile/plugin.json -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." - -#: XmlMaterialProfile/plugin.json -msgctxt "name" -msgid "Material Profiles" -msgstr "Profils matériels" - -#: XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Permet la vue Rayon-X." - -#: XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "Vue Rayon-X" - -#~ msgctxt "@label" -#~ msgid "Not yet initialized
    " -#~ msgstr "Pas encore initialisé
    " - -#~ msgctxt "@label" -#~ msgid "By" -#~ msgstr "Par" - -#~ msgctxt "@Label" -#~ msgid "Static type checker for Python" -#~ msgstr "Vérificateur de type statique pour Python" - -#~ msgctxt "@Label" -#~ msgid "Root Certificates for validating SSL trustworthiness" -#~ msgstr "Certificats racines pour valider la fiabilité SSL" - -#~ msgctxt "@label" -#~ msgid "Python extensions for Microsoft Windows" -#~ msgstr "Extensions Python pour Microsoft Windows" - -#~ msgctxt "@label" -#~ msgid "SVG icons" -#~ msgstr "Icônes SVG" - -#~ msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" -#~ msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" -#~ msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" -#~ msgstr[0] "Il n'y a pas de profil %1 pour la configuration dans l'extrudeur %2. L'intention par défaut sera utilisée à la place" -#~ msgstr[1] "Il n'y a pas de profil %1 pour les configurations dans les extrudeurs %2. L'intention par défaut sera utilisée à la place" - -#~ msgctxt "@tooltip" -#~ msgid "You have modified some profile settings. If you want to change these go to custom mode." -#~ msgstr "Vous avez modifié certains paramètres du profil. Si vous souhaitez les modifier, allez dans le mode Personnaliser." - -#~ msgctxt "@action:button" -#~ msgid "Sync materials with printers" -#~ msgstr "Synchroniser les matériaux" - -#~ msgctxt "@title:window" -#~ msgid "Convert Image..." -#~ msgstr "Conversion de l'image..." - -#~ msgctxt "@info:tooltip" -#~ msgid "The width in millimeters on the build plate." -#~ msgstr "La largeur en millimètres sur le plateau." - -#~ msgctxt "@title" -#~ msgid "Marketplace" -#~ msgstr "Marché en ligne" - -#~ msgctxt "@info" -#~ msgid "You will need to restart Cura before changes in packages have effect." -#~ msgstr "Vous devez redémarrer Cura pour que les changements apportés aux paquets ne prennent effet." - -#~ msgctxt "@action:button" -#~ msgid "Install" -#~ msgstr "Installer" - -#~ msgctxt "@action:button" -#~ msgid "Installed" -#~ msgstr "Installé" - -#~ msgctxt "@label" -#~ msgid "Premium" -#~ msgstr "Premium" - -#~ msgctxt "@info:tooltip" -#~ msgid "Go to Web Marketplace" -#~ msgstr "Aller sur le Marché en ligne" - -#~ msgctxt "@label" -#~ msgid "Search materials" -#~ msgstr "Rechercher des matériaux" - -#~ msgctxt "@label" -#~ msgid "Compatibility" -#~ msgstr "Compatibilité" - -#~ msgctxt "@label:table_header" -#~ msgid "Machine" -#~ msgstr "Machine" - -#~ msgctxt "@label:table_header" -#~ msgid "Build Plate" -#~ msgstr "Plateau" - -#~ msgctxt "@label:table_header" -#~ msgid "Support" -#~ msgstr "Support" - -#~ msgctxt "@label:table_header" -#~ msgid "Quality" -#~ msgstr "Qualité" - -#~ msgctxt "@action:label" -#~ msgid "Technical Data Sheet" -#~ msgstr "Fiche technique" - -#~ msgctxt "@action:label" -#~ msgid "Safety Data Sheet" -#~ msgstr "Fiche de sécurité" - -#~ msgctxt "@action:label" -#~ msgid "Printing Guidelines" -#~ msgstr "Directives d'impression" - -#~ msgctxt "@action:label" -#~ msgid "Website" -#~ msgstr "Site Internet" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to install or update" -#~ msgstr "Connexion nécessaire pour l'installation ou la mise à jour" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Buy material spools" -#~ msgstr "Acheter des bobines de matériau" - -#~ msgctxt "@action:button" -#~ msgid "Update" -#~ msgstr "Mise à jour" - -#~ msgctxt "@action:button" -#~ msgid "Updating" -#~ msgstr "Mise à jour" - -#~ msgctxt "@action:button" -#~ msgid "Updated" -#~ msgstr "Mis à jour" - -#~ msgctxt "@action:button" -#~ msgid "Back" -#~ msgstr "Précédent" - -#~ msgctxt "@title:tab" -#~ msgid "Plugins" -#~ msgstr "Plug-ins" - -#~ msgctxt "@title:tab" -#~ msgid "Installed" -#~ msgstr "Installé" - -#~ msgctxt "@label" -#~ msgid "Will install upon restarting" -#~ msgstr "S'installera au redémarrage" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to update" -#~ msgstr "Connexion nécessaire pour effectuer la mise à jour" - -#~ msgctxt "@action:button" -#~ msgid "Downgrade" -#~ msgstr "Revenir à une version précédente" - -#~ msgctxt "@action:button" -#~ msgid "Uninstall" -#~ msgstr "Désinstaller" - -#~ msgctxt "@label" -#~ msgid "Community Contributions" -#~ msgstr "Contributions de la communauté" - -#~ msgctxt "@label" -#~ msgid "Community Plugins" -#~ msgstr "Plug-ins de la communauté" - -#~ msgctxt "@label" -#~ msgid "Generic Materials" -#~ msgstr "Matériaux génériques" - -#~ msgctxt "@info" -#~ msgid "Fetching packages..." -#~ msgstr "Récupération des paquets..." - -#~ msgctxt "@label" -#~ msgid "Website" -#~ msgstr "Site Internet" - -#~ msgctxt "@label" -#~ msgid "Email" -#~ msgstr "E-mail" - -#~ msgctxt "@description" -#~ msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -#~ msgstr "Veuillez vous connecter pour obtenir les plug-ins et matériaux vérifiés pour Ultimaker Cura Enterprise" - -#~ msgctxt "@label" -#~ msgid "Version" -#~ msgstr "Version" - -#~ msgctxt "@label" -#~ msgid "Last updated" -#~ msgstr "Dernière mise à jour" - -#~ msgctxt "@label" -#~ msgid "Downloads" -#~ msgstr "Téléchargements" - -#~ msgctxt "@title:tab" -#~ msgid "Installed plugins" -#~ msgstr "Plug-ins installés" - -#~ msgctxt "@info" -#~ msgid "No plugin has been installed." -#~ msgstr "Aucun plug-in n'a été installé." - -#~ msgctxt "@title:tab" -#~ msgid "Installed materials" -#~ msgstr "Matériaux installés" - -#~ msgctxt "@info" -#~ msgid "No material has been installed." -#~ msgstr "Aucun matériau n'a été installé." - -#~ msgctxt "@title:tab" -#~ msgid "Bundled plugins" -#~ msgstr "Plug-ins groupés" - -#~ msgctxt "@title:tab" -#~ msgid "Bundled materials" -#~ msgstr "Matériaux groupés" - -#~ msgctxt "@info" -#~ msgid "Could not connect to the Cura Package database. Please check your connection." -#~ msgstr "Impossible de se connecter à la base de données Cura Package. Veuillez vérifier votre connexion." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall" -#~ msgstr "Confirmer la désinstallation" - -#~ msgctxt "@text:window" -#~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -#~ msgstr "Vous désinstallez des matériaux et/ou des profils qui sont encore en cours d'utilisation. La confirmation réinitialisera les matériaux / profils suivants à leurs valeurs par défaut." - -#~ msgctxt "@text:window" -#~ msgid "Materials" -#~ msgstr "Matériaux" - -#~ msgctxt "@text:window" -#~ msgid "Profiles" -#~ msgstr "Profils" - -#~ msgctxt "@action:button" -#~ msgid "Confirm" -#~ msgstr "Confirmer" - -#~ msgctxt "@info:tooltip" -#~ msgid "Some things could be problematic in this print. Click to see tips for adjustment." -#~ msgstr "Certains éléments pourraient causer des problèmes à cette impression. Cliquez pour voir les conseils d'ajustement." - -#~ msgctxt "@label" -#~ msgid "Support library for handling planar objects" -#~ msgstr "Prise en charge de la bibliothèque pour le traitement des objets planaires" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "Vous avez personnalisé certains paramètres de profil.\n" -#~ "Souhaitez-vous conserver ces paramètres modifiés après avoir changé de profil ?\n" -#~ "Vous pouvez également annuler les modifications pour charger les valeurs par défaut de '%1'." - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Build plate" -#~ msgstr "&Plateau" - -#~ msgctxt "@label" -#~ msgid "Create" -#~ msgstr "Créer" - -#~ msgctxt "@label" -#~ msgid "Duplicate" -#~ msgstr "Dupliquer" - -#~ msgctxt "@label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "Imprimante : %1" - -#~ msgctxt "@action:button" -#~ msgid "Update profile with current settings/overrides" -#~ msgstr "Mettre à jour le profil à l'aide des paramètres / forçages actuels" - -#~ msgctxt "@label" -#~ msgid "Theme:" -#~ msgstr "Thème :" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for these changes to have effect." -#~ msgstr "Vous devez redémarrer l'application pour que ces changements prennent effet." - -#~ msgctxt "@action:button" -#~ msgid "More information" -#~ msgstr "Plus d'informations" - -#~ msgctxt "@action:button" -#~ msgid "Create" -#~ msgstr "Créer" - -#~ msgctxt "@action:button Sending materials to printers" -#~ msgid "Sync with Printers" -#~ msgstr "Synchroniser les imprimantes" - -#~ msgctxt "@action:label" -#~ msgid "Printer" -#~ msgstr "Imprimante" - -#~ msgctxt "@title:column" -#~ msgid "Unit" -#~ msgstr "Unité" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting Guide" -#~ msgstr "Afficher le guide de dépannage en ligne" - -#~ msgctxt "@action:inmenu" -#~ msgid "Add more materials from Marketplace" -#~ msgstr "Ajouter d'autres matériaux du Marketplace" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange All Models To All Build Plates" -#~ msgstr "Réorganiser tous les modèles sur tous les plateaux" - -#~ msgctxt "@action:menu" -#~ msgid "&Marketplace" -#~ msgstr "&Marché en ligne" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new Cura packages." -#~ msgstr "Rechercher, gérer et installer de nouveaux paquets Cura." - -#~ msgctxt "name" -#~ msgid "Toolbox" -#~ msgstr "Boîte à outils" - -#~ msgctxt "description" -#~ msgid "Provides the Simulation view." -#~ msgstr "Fournit la Vue simulation." - #~ msgctxt "@info:status" -#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Lancez et surveillez des impressions où que vous soyez avec votre compte Ultimaker." - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Digital Factory" -#~ msgstr "Se connecter à Ultimaker Digital Factory" - -#~ msgctxt "@info" -#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." -#~ msgstr "Les flux de webcam des imprimantes cloud ne peuvent pas être visualisés depuis Ultimaker Cura." - -#~ 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 not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -#~ msgstr "De nouvelles fonctionnalités ou des correctifs de bugs sont disponibles pour votre {machine_name} ! Si vous ne possédez pas la dernière version disponible, il est recommandé de mettre à jour le micrologiciel sur votre imprimante avec la version {latest_version}." - -#~ msgctxt "@info:title The %s gets replaced with the printer name." -#~ msgid "New %s firmware available" -#~ msgstr "Nouveau firmware %s disponible" - -#~ msgctxt "@info:status" -#~ msgid "Global stack is missing." -#~ msgstr "Il manque la pile globale." - -#~ msgctxt "@info:status" -#~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces." -#~ msgstr "Votre modèle n'est pas fonctionnel. Les zones surlignées indiquent que des surfaces manquent ou sont étrangères." +#~ msgid "Cura does not accurately display layers when Wire Printing is enabled." +#~ msgstr "Cura n'affiche pas les couches avec précision lorsque l'impression filaire est activée." #~ msgctxt "@info:title" -#~ msgid "Model errors" -#~ msgstr "Erreurs du modèle" - -#~ msgctxt "@label:listbox" -#~ msgid "Layer thickness" -#~ msgstr "Épaisseur de la couche" - -#~ msgctxt "@label" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "Votre clé pour une impression 3D connectée" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Customize your experience with more print profiles and plugins\n" -#~ "- Stay flexible by syncing your setup and loading it anywhere\n" -#~ "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "" -#~ "- Personnalisez votre expérience avec plus de profils d'impression et de plug-ins\n" -#~ "- Restez flexible en synchronisant votre configuration et en la chargeant n'importe où\n" -#~ "- Augmentez l'efficacité grâce à un flux de travail à distance sur les imprimantes Ultimaker" - -#~ msgctxt "@button" -#~ msgid "Create account" -#~ msgstr "Créer un compte" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete Selected Model" -#~ msgid_plural "Delete Selected Models" -#~ msgstr[0] "Supprimer le modèle sélectionné" -#~ msgstr[1] "Supprimer les modèles sélectionnés" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Center Selected Model" -#~ msgid_plural "Center Selected Models" -#~ msgstr[0] "Centrer le modèle sélectionné" -#~ msgstr[1] "Centrer les modèles sélectionnés" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Multiply Selected Model" -#~ msgid_plural "Multiply Selected Models" -#~ msgstr[0] "Multiplier le modèle sélectionné" -#~ msgstr[1] "Multiplier les modèles sélectionnés" - -#~ msgctxt "@button" -#~ msgid "Finish" -#~ msgstr "Fin" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Account" -#~ msgstr "Compte Ultimaker" - -#~ msgctxt "@text" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "Votre clé pour une impression 3D connectée" - -#~ msgctxt "@text" -#~ msgid "- Customize your experience with more print profiles and plugins" -#~ msgstr "- Personnalisez votre expérience avec plus de profils d'impression et de plug-ins" - -#~ msgctxt "@text" -#~ msgid "- Stay flexible by syncing your setup and loading it anywhere" -#~ msgstr "- Restez flexible en synchronisant votre configuration et en la chargeant n'importe où" - -#~ msgctxt "@text" -#~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "- Augmentez l'efficacité avec un flux de travail à distance sur les imprimantes Ultimaker" - -#~ msgctxt "@text" -#~ msgid "" -#~ "Please follow these steps to set up\n" -#~ "Ultimaker Cura. This will only take a few moments." -#~ msgstr "" -#~ "Veuillez suivre ces étapes pour configurer\n" -#~ "Ultimaker Cura. Cela ne prendra que quelques instants." - -#~ msgctxt "@label" -#~ msgid "What's new in Ultimaker Cura" -#~ msgstr "Quoi de neuf dans Ultimaker Cura" - -#~ msgctxt "@label ({} is object name)" -#~ msgid "Are you sure you wish to remove {}? This cannot be undone!" -#~ msgstr "Êtes-vous sûr de vouloir supprimer l'objet {} ? Cette action est irréversible !" - -#~ msgctxt "@info:status" -#~ msgid "The selected model was too small to load." -#~ msgstr "Le modèle sélectionné était trop petit pour être chargé." - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profile {0}" -#~ msgstr "Importation du profil {0} réussie" - -#~ msgctxt "@info:status" -#~ msgid "Could not find a quality type {0} for the current configuration." -#~ msgstr "Impossible de trouver un type de qualité {0} pour la configuration actuelle." - -#~ msgctxt "info:status" -#~ msgid "Adding printer {} ({}) from your account" -#~ msgstr "Ajout de l'imprimante {} ({}) à partir de votre compte" - -#~ msgctxt "info:hidden list items" -#~ msgid "
  • ... and {} others
  • " -#~ msgstr "
  • ... et {} autres
  • " - -#~ msgctxt "info:status" -#~ msgid "Printers added from Digital Factory:
      {}
    " -#~ msgstr "Imprimantes ajoutées à partir de Digital Factory :
      {}
    " - -#~ msgctxt "info:status" -#~ msgid "
      {}
    To establish a connection, please visit the Ultimaker Digital Factory." -#~ msgstr "
      {}
    Pour établir une connexion, veuillez visiter l'Ultimaker Digital Factory." - -#~ msgctxt "@label ({} is printer name)" -#~ msgid "{} will be removed until the next account sync.
    To remove {} permanently, visit Ultimaker Digital Factory.

    Are you sure you want to remove {} temporarily?" -#~ msgstr "{} sera supprimé(e) jusqu'à la prochaine synchronisation de compte.
    Pour supprimer {} définitivement, visitez l'Ultimaker Digital Factory.

    Voulez-vous vraiment supprimer {} temporairement ?" - -#~ msgctxt "@label" -#~ msgid "" -#~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n" -#~ "Are you sure you want to continue?" -#~ msgstr "" -#~ "Vous êtes sur le point de supprimer {} imprimante(s) de Cura. Cette action est irréversible. \n" -#~ "Voulez-vous vraiment continuer ?" - -#~ msgctxt "@label" -#~ msgid "" -#~ "You are about to remove all printers from Cura. This action cannot be undone. \n" -#~ "Are you sure you want to continue?" -#~ msgstr "" -#~ "Vous êtes sur le point de supprimer toutes les imprimantes de Cura. Cette action est irréversible. \n" -#~ "Voulez-vous vraiment continuer ?" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update" -#~ msgstr "Mise à jour" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Create new" -#~ msgstr "Créer" - -#~ msgctxt "@label" -#~ msgid "Shared Heater" -#~ msgstr "Chauffage partagé" - -#~ msgctxt "@info" -#~ msgid "The webcam is not available because you are monitoring a cloud printer." -#~ msgstr "La webcam n'est pas disponible car vous surveillez une imprimante cloud." - -#~ msgctxt "@button" -#~ msgid "Ultimaker Digital Factory" -#~ msgstr "Ultimaker Digital Factory" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can Discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "Vous avez personnalisé certains paramètres de votre profil.\n" -#~ "Souhaitez-vous conserver ces paramètres modifiés après avoir changé de profil ?\n" -#~ "Vous pouvez également annuler les modifications pour charger les valeurs par défaut de '%1'." - -#~ msgctxt "@label" -#~ msgid "Overrides %1 setting." -#~ msgid_plural "Overrides %1 settings." -#~ msgstr[0] "Remplace le paramètre %1." -#~ msgstr[1] "Remplace les paramètres %1." - -#~ msgctxt "@text" -#~ msgid "Please give your printer a name" -#~ msgstr "Veuillez donner un nom à votre imprimante" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." -#~ msgstr "De nouvelles fonctionnalités sont disponibles pour votre {machine_name} ! Il est recommandé de mettre à jour le firmware sur votre imprimante." - -#~ msgctxt "@action:button" -#~ msgid "Print via Cloud" -#~ msgstr "Imprimer via le cloud" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print via Cloud" -#~ msgstr "Imprimer via le cloud" - -#~ msgctxt "@info:status" -#~ msgid "Connected via Cloud" -#~ msgstr "Connecté via le cloud" - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Se connecter à Ultimaker Cloud" - -#~ msgctxt "@label" -#~ msgid "You need to login first before you can rate" -#~ msgstr "Vous devez être connecté avant de pouvoir effectuer une évaluation" - -#~ msgctxt "@label" -#~ msgid "You need to install the package before you can rate" -#~ msgstr "Vous devez installer le paquet avant de pouvoir effectuer une évaluation" - -#~ msgctxt "@label" -#~ msgid "ratings" -#~ msgstr "évaluations" - -#~ msgctxt "@label" -#~ msgid "Featured" -#~ msgstr "Fonctionnalités" - -#~ msgctxt "@label" -#~ msgid "Your rating" -#~ msgstr "Votre évaluation" - -#~ msgctxt "@label" -#~ msgid "Author" -#~ msgstr "Auteur" - -#~ msgctxt "@description" -#~ msgid "Get plugins and materials verified by Ultimaker" -#~ msgstr "Faire vérifier les plugins et matériaux par Ultimaker" - -#~ msgctxt "@label The argument is a username." -#~ msgid "Hi %1" -#~ msgstr "Bonjour %1" - -#~ msgctxt "@button" -#~ msgid "Ultimaker account" -#~ msgstr "Compte Ultimaker" - -#~ msgctxt "@button" -#~ msgid "Sign out" -#~ msgstr "Déconnexion" - -#~ msgctxt "@label" -#~ msgid "Support library for analysis of complex networks" -#~ msgstr "Prise en charge de la bibliothèque pour l'analyse de réseaux complexes" - -#~ msgctxt "@Label" -#~ msgid "Python HTTP library" -#~ msgstr "Bibliothèque Python HTTP" - -#~ msgctxt "@text:window" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to keep or discard those settings?" -#~ msgstr "" -#~ "Vous avez personnalisé certains paramètres du profil.\n" -#~ "Souhaitez-vous conserver ces changements, ou les annuler ?" - -#~ msgctxt "@title:column" -#~ msgid "Default" -#~ msgstr "Par défaut" - -#~ msgctxt "@title:column" -#~ msgid "Customized" -#~ msgstr "Personnalisé" - -#~ msgctxt "@action:button" -#~ msgid "Discard" -#~ msgstr "Annuler" - -#~ msgctxt "@action:button" -#~ msgid "Keep" -#~ msgstr "Conserver" - -#~ msgctxt "@action:button" -#~ msgid "Create New Profile" -#~ msgstr "Créer un nouveau profil" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "&Save..." -#~ msgstr "Enregi&strer..." - -#~ msgctxt "@text" -#~ msgid "Place enter your printer's IP address." -#~ msgstr "Saisissez l'adresse IP de votre imprimante." - -#~ msgctxt "@button" -#~ msgid "Create an account" -#~ msgstr "Créer un compte" - -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Do you want to sync material and software packages with your account?" -#~ msgstr "" -#~ "\n" -#~ "Vous souhaitez synchroniser du matériel et des logiciels avec votre compte ?" - -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Syncing..." -#~ msgstr "" -#~ "\n" -#~ "Synchronisation..." - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder." -#~ msgstr "Rien à découper car les modèles ne conviennent pas au volume d'impression ou sont assignés à une extrudeuse désactivée. Mettez les modèles à l'échelle ou faites-les pivoter pour les faire correspondre, ou activez une extrudeuse." - -#~ msgctxt "@info:backup_status" -#~ msgid "There was an error listing your backups." -#~ msgstr "Une erreur s’est produite lors du listage de vos sauvegardes." - -#~ msgctxt "@title:groupbox" -#~ msgid "User description (Note: Developers may not speak your language, please use English if possible)" -#~ msgstr "Description de l'utilisateur (Remarque : les développeurs peuvent ne pas partler votre langue. Veuillez utiliser l'anglais si possible)" - -#~ msgctxt "@title:window" -#~ msgid "Closing Cura" -#~ msgstr "Fermeture de Cura" - -#~ msgctxt "@label" -#~ msgid "Are you sure you want to exit Cura?" -#~ msgstr "Êtes-vous sûr de vouloir quitter Cura ?" - -#~ msgctxt "@label" -#~ msgid "Language:" -#~ msgstr "Langue :" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud" - -#~ msgctxt "@text" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "Le flux d'impression 3D de nouvelle génération" - -#~ msgctxt "@text" -#~ msgid "- Send print jobs to Ultimaker printers outside your local network" -#~ msgstr "- Envoyez des tâches d'impression à des imprimantes Ultimaker hors de votre réseau local" - -#~ msgctxt "@text" -#~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere" -#~ msgstr "- Stockez vos paramètres Ultimaker Cura dans le cloud pour les utiliser où que vous soyez" - -#~ msgctxt "@text" -#~ msgid "- Get exclusive access to print profiles from leading brands" -#~ msgstr "- Accédez en exclusivité aux profils d'impression des plus grandes marques" - -#~ msgctxt "@label" -#~ msgid "The value is resolved from per-extruder values " -#~ msgstr "La valeur est résolue à partir des valeurs par extrudeur " - -#~ msgctxt "@label" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "Le flux d'impression 3D de nouvelle génération" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to print profiles from leading brands" -#~ msgstr "" -#~ "- Envoyez des tâches d'impression à des imprimantes Ultimaker hors de votre réseau local\n" -#~ "- Stockez vos paramètres Ultimaker Cura dans le cloud pour les utiliser où que vous soyez\n" -#~ "- Obtenez un accès exclusif aux profils d'impression des principales marques" - -#~ msgctxt "@title:window" -#~ msgid "About " -#~ msgstr "À propos de... " - -#~ msgctxt "@info:button" -#~ msgid "Quit Cura" -#~ msgstr "Quitter Cura" - -#~ msgctxt "@action:checkbox" -#~ msgid "Infill only" -#~ msgstr "Remplissage uniquement" - -#~ msgctxt "@info:tooltip" -#~ msgid "Change active post-processing scripts" -#~ msgstr "Modifier les scripts de post-traitement actifs" - -#~ msgctxt "@label:listbox" -#~ msgid "Feedrate" -#~ msgstr "Taux d'alimentation" - -#~ msgctxt "name" -#~ msgid "Machine Settings action" -#~ msgstr "Action Paramètres de la machine" - -#~ msgctxt "@info:title" -#~ msgid "New cloud printers found" -#~ msgstr "Nouvelles imprimantes cloud trouvées" - -#~ msgctxt "@info:message" -#~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers." -#~ msgstr "De nouvelles imprimantes ont été trouvées connectées à votre compte. Vous pouvez les trouver dans votre liste d'imprimantes découvertes." - -#~ msgctxt "@info:status" -#~ msgid "Cura does not accurately display layers when Wire Printing is enabled" -#~ msgstr "Cura n'affiche pas les couches avec précision lorsque l'impression filaire est activée" - -#~ msgctxt "@label" -#~ msgid "Pre-sliced file {0}" -#~ msgstr "Fichier {0} prédécoupé" - -#~ msgctxt "@label" -#~ msgid "" -#~ "This plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ "Ce plug-in contient une licence.\n" -#~ "Vous devez approuver cette licence pour installer ce plug-in.\n" -#~ "Acceptez-vous les clauses ci-dessous ?" - -#~ msgctxt "@action:button" -#~ msgid "Accept" -#~ msgstr "Accepter" - -#~ msgctxt "@action:button" -#~ msgid "Decline" -#~ msgstr "Refuser" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show All Settings" -#~ msgstr "Afficher tous les paramètres" - -#~ msgctxt "@title:window" -#~ msgid "Ultimaker Cura" -#~ msgstr "Ultimaker Cura" - -#~ msgctxt "@title:window" -#~ msgid "About Cura" -#~ msgstr "À propos de Cura" - -#~ msgctxt "@item:inmenu" -#~ msgid "Flatten active settings" -#~ msgstr "Aplatir les paramètres actifs" - -#~ msgctxt "@info:status" -#~ msgid "Profile has been flattened & activated." -#~ msgstr "Le profil a été aplati et activé." - -#~ msgctxt "X3g Writer Plugin Description" -#~ msgid "Writes X3g to files" -#~ msgstr "Écrit X3G dans des fichiers" - -#~ msgctxt "X3g Writer File Description" -#~ msgid "X3g File" -#~ msgstr "Fichier X3G" - -#~ msgctxt "X3G Writer File Description" -#~ msgid "X3G File" -#~ msgstr "Fichier X3G" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Open Compressed Triangle Mesh" -#~ msgstr "Ouvrir le maillage triangulaire compressé" - -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "Assistant de profil" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "Assistant de profil" - -#~ msgctxt "@action:button" -#~ msgid "Retry" -#~ msgstr "Réessayer" - -#~ msgctxt "@label:table_header" -#~ msgid "Print Core" -#~ msgstr "Print Core" - -#~ msgctxt "@label" -#~ msgid "Don't support overlap with other models" -#~ msgstr "Ne pas prendre en charge le chevauchement avec d'autres modèles" - -#~ msgctxt "@label" -#~ msgid "Modify settings for overlap with other models" -#~ msgstr "Modifier les paramètres de chevauchement avec d'autres modèles" - -#~ msgctxt "@label" -#~ msgid "Modify settings for infill of other models" -#~ msgstr "Modifier les paramètres de remplissage d'autres modèles" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update existing" -#~ msgstr "Mettre à jour l'existant" - -#~ msgctxt "@label" -#~ msgid "Not supported" -#~ msgstr "Non pris en charge" - -#~ msgctxt "@action:button" -#~ msgid "Previous" -#~ msgstr "Précédent" - -#~ msgctxt "@label" -#~ msgid "Tip" -#~ msgstr "Astuce" - -#~ msgctxt "@label" -#~ msgid "Print experiment" -#~ msgstr "Test d'impression" - -#~ msgctxt "@label" -#~ msgid "Checklist" -#~ msgstr "Liste de contrôle" - -#~ msgctxt "@label" -#~ msgid "Please select any upgrades made to this Ultimaker 2." -#~ msgstr "Sélectionnez les mises à niveau disponibles pour cet Ultimaker 2." - -#~ msgctxt "@label" -#~ msgid "Olsson Block" -#~ msgstr "Blocage Olsson" - -#~ msgctxt "@window:text" -#~ msgid "Camera rendering: " -#~ msgstr "Rendu caméra : " - -#~ msgctxt "@info:tooltip" -#~ msgid "Use multi build plate functionality" -#~ msgstr "Utiliser la fonctionnalité multi-plateau" - -#~ msgctxt "@option:check" -#~ msgid "Use multi build plate functionality (restart required)" -#~ msgstr "Utiliser la fonctionnalité multi-plateau (redémarrage requis)" - -#~ msgctxt "@label" -#~ msgid "Default profiles" -#~ msgstr "Profils par défaut" - -#~ msgctxt "@label:textbox" -#~ msgid "search settings" -#~ msgstr "paramètres de recherche" - -#~ msgctxt "@label" -#~ msgid "Layer Height" -#~ msgstr "Hauteur de la couche" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile." -#~ msgstr "Ce profil de qualité n'est pas disponible pour votre matériau et configuration des buses actuels. Veuillez modifier ces derniers pour activer ce profil de qualité." - -#~ msgctxt "@tooltip" -#~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" -#~ msgstr "Un profil personnalisé est actuellement actif. Pour activer le curseur de qualité, choisissez un profil de qualité par défaut dans l'onglet Personnaliser" - -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "Plateau" - -#~ msgctxt "@title:settings" -#~ msgid "&Profile" -#~ msgstr "&Profil" - -#~ msgctxt "@action:label" -#~ msgid "Build plate" -#~ msgstr "Plateau" - -#~ msgctxt "description" -#~ msgid "Dump the contents of all settings to a HTML file." -#~ msgstr "Exporter les contenus de tous les paramètres vers un fichier HTML." - -#~ msgctxt "name" -#~ msgid "God Mode" -#~ msgstr "Mode God" - -#~ msgctxt "description" -#~ msgid "Create a flattened quality changes profile." -#~ msgstr "Créer un profil de changements de qualité aplati." - -#~ msgctxt "name" -#~ msgid "Profile Flattener" -#~ msgstr "Aplatisseur de profil" - -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "Permet aux fabricants de matériaux de créer de nouveaux matériaux et profils de qualité à l'aide d'une interface utilisateur ad hoc." - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "Assistant de profil d'impression" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network." -#~ msgstr "Connecté sur le réseau." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. Please approve the access request on the printer." -#~ msgstr "Connecté sur le réseau. Veuillez approuver la demande d'accès sur l'imprimante." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. No access to control the printer." -#~ msgstr "Connecté sur le réseau. Pas d'accès pour commander l'imprimante." - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer requested. Please approve the request on the printer" -#~ msgstr "Accès à l'imprimante demandé. Veuillez approuver la demande sur l'imprimante" - -#~ msgctxt "@info:title" -#~ msgid "Authentication status" -#~ msgstr "Statut d'authentification" - -#~ msgctxt "@info:title" -#~ msgid "Authentication Status" -#~ msgstr "Statut d'authentification" - -#~ msgctxt "@info:tooltip" -#~ msgid "Re-send the access request" -#~ msgstr "Renvoyer la demande d'accès" - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer accepted" -#~ msgstr "Accès à l'imprimante accepté" - -#~ msgctxt "@info:status" -#~ msgid "No access to print with this printer. Unable to send print job." -#~ msgstr "Aucun accès pour imprimer avec cette imprimante. Impossible d'envoyer la tâche d'impression." - -#~ msgctxt "@action:button" -#~ msgid "Request Access" -#~ msgstr "Demande d'accès" - -#~ msgctxt "@info:tooltip" -#~ msgid "Send access request to the printer" -#~ msgstr "Envoyer la demande d'accès à l'imprimante" - -#~ msgctxt "@label" -#~ msgid "Unable to start a new print job." -#~ msgstr "Impossible de démarrer une nouvelle tâche d'impression." - -#~ msgctxt "@label" -#~ msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." -#~ msgstr "Un problème avec la configuration de votre Ultimaker empêche le démarrage de l'impression. Veuillez résoudre ce problème avant de continuer." - -#~ msgctxt "@window:title" -#~ msgid "Mismatched configuration" -#~ msgstr "Configuration différente" - -#~ msgctxt "@label" -#~ msgid "Are you sure you wish to print with the selected configuration?" -#~ msgstr "Êtes-vous sûr(e) de vouloir imprimer avec la configuration sélectionnée ?" - -#~ msgctxt "@label" -#~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "Problème de compatibilité entre la configuration ou l'étalonnage de l'imprimante et Cura. Pour un résultat optimal, découpez toujours pour les PrintCores et matériaux insérés dans votre imprimante." - -#~ msgctxt "@info:status" -#~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." -#~ msgstr "Envoi de nouvelles tâches (temporairement) bloqué, envoi de la tâche d'impression précédente en cours." - -#~ msgctxt "@info:status" -#~ msgid "Sending data to printer" -#~ msgstr "Envoi des données à l'imprimante" - -#~ msgctxt "@info:title" -#~ msgid "Sending Data" -#~ msgstr "Envoi des données" - -#~ msgctxt "@info:status" -#~ msgid "No Printcore loaded in slot {slot_number}" -#~ msgstr "Pas de PrintCore inséré dans la fente {slot_number}" - -#~ msgctxt "@info:status" -#~ msgid "No material loaded in slot {slot_number}" -#~ msgstr "Aucun matériau inséré dans la fente {slot_number}" - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" -#~ msgstr "PrintCore différent (Cura : {cura_printcore_name}, Imprimante : {remote_printcore_name}) sélectionné pour l'extrudeuse {extruder_id}" - -#~ msgctxt "@label" -#~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Matériau différent (Cura : {0}, Imprimante : {1}) sélectionné pour l'extrudeuse {2}" - -#~ msgctxt "@window:title" -#~ msgid "Sync with your printer" -#~ msgstr "Synchroniser avec votre imprimante" - -#~ msgctxt "@label" -#~ msgid "Would you like to use your current printer configuration in Cura?" -#~ msgstr "Voulez-vous utiliser votre configuration d'imprimante actuelle dans Cura ?" - -#~ msgctxt "@label" -#~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "Les PrintCores et / ou matériaux sur votre imprimante diffèrent de ceux de votre projet actuel. Pour un résultat optimal, découpez toujours pour les PrintCores et matériaux insérés dans votre imprimante." - -#~ msgctxt "@action:button" -#~ msgid "View in Monitor" -#~ msgstr "Afficher sur le moniteur" - -#~ msgctxt "@info:status" -#~ msgid "Printer '{printer_name}' has finished printing '{job_name}'." -#~ msgstr "{printer_name} a terminé d'imprimer '{job_name}'." - -#~ msgctxt "@info:status" -#~ msgid "The print job '{job_name}' was finished." -#~ msgstr "La tâche d'impression '{job_name}' est terminée." - -#~ msgctxt "@info:status" -#~ msgid "Print finished" -#~ msgstr "Impression terminée" - -#~ msgctxt "@label:material" -#~ msgid "Empty" -#~ msgstr "Vide" - -#~ msgctxt "@label:material" -#~ msgid "Unknown" -#~ msgstr "Inconnu" - -#~ msgctxt "@info:title" -#~ msgid "Cloud error" -#~ msgstr "Erreur de cloud" - -#~ msgctxt "@info:status" -#~ msgid "Could not export print job." -#~ msgstr "Impossible d'exporter la tâche d'impression." - -#~ msgctxt "@info:description" -#~ msgid "There was an error connecting to the cloud." -#~ msgstr "Une erreur s'est produite lors de la connexion au cloud." - -#~ msgctxt "@info:status" -#~ msgid "Uploading via Ultimaker Cloud" -#~ msgstr "Téléchargement via Ultimaker Cloud" - -#~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Se connecter à Ultimaker Cloud" - -#~ msgctxt "@action" -#~ msgid "Don't ask me again for this printer." -#~ msgstr "Ne plus me demander pour cette imprimante." - -#~ msgctxt "@info:status" -#~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Vous pouvez maintenant lancer et surveiller des impressions où que vous soyez avec votre compte Ultimaker." - -#~ msgctxt "@info:status" -#~ msgid "Connected!" -#~ msgstr "Connecté !" - -#~ msgctxt "@action" -#~ msgid "Review your connection" -#~ msgstr "Consulter votre connexion" - -#~ msgctxt "@info:status Don't translate the XML tags !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "La machine définie dans le profil {0} ({1}) ne correspond pas à votre machine actuelle ({2}) ; échec de l'importation." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}:" -#~ msgstr "Échec de l'importation du profil depuis le fichier {0} :" - -#~ msgctxt "@window:title" -#~ msgid "Existing Connection" -#~ msgstr "Connexion existante" - -#~ msgctxt "@message:text" -#~ msgid "This printer/group is already added to Cura. Please select another printer/group." -#~ msgstr "Ce groupe / cette imprimante a déjà été ajouté à Cura. Veuillez sélectionner un autre groupe / imprimante." - -#~ msgctxt "@label" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "Saisissez l'adresse IP ou le nom d'hôte de votre imprimante sur le réseau." - -#~ msgctxt "@info:tooltip" -#~ msgid "Connect to a printer" -#~ msgstr "Connecter à une imprimante" - -#~ msgctxt "@title" -#~ msgid "Cura Settings Guide" -#~ msgstr "Guide des paramètres de Cura" - -#~ msgctxt "@info:tooltip" -#~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective." -#~ msgstr "Zoom vers la souris n'est pas pris en charge dans la perspective orthogonale." - -#~ msgid "Orthogonal" -#~ msgstr "Orthogonale" - -#~ msgctxt "description" -#~ msgid "Manages network connections to Ultimaker 3 printers." -#~ msgstr "Gère les connexions réseau vers les imprimantes Ultimaker 3." - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection" -#~ msgstr "Connexion au réseau UM3" - -#~ msgctxt "description" -#~ msgid "Provides extra information and explanations about settings in Cura, with images and animations." -#~ msgstr "Fournit des informations et explications supplémentaires sur les paramètres de Cura, avec des images et des animations." - -#~ msgctxt "name" -#~ msgid "Settings Guide" -#~ msgstr "Guide des paramètres" - -#~ msgctxt "@item:inmenu" -#~ msgid "Cura Settings Guide" -#~ msgstr "Guide des paramètres de Cura" - -#~ msgctxt "@info:generic" -#~ msgid "Settings have been changed to match the current availability of extruders: [%s]" -#~ msgstr "Les paramètres ont été modifiés pour correspondre aux extrudeuses actuellement disponibles : [%s]" - -#~ msgctxt "@title:groupbox" -#~ msgid "User description" -#~ msgstr "Description de l'utilisateur" - -#~ msgctxt "@info" -#~ msgid "These options are not available because you are monitoring a cloud printer." -#~ msgstr "Ces options ne sont pas disponibles car vous surveillez une imprimante cloud." - -#~ msgctxt "@label link to connect manager" -#~ msgid "Go to Cura Connect" -#~ msgstr "Aller à Cura Connect" - -#~ msgctxt "@info" -#~ msgid "All jobs are printed." -#~ msgstr "Toutes les tâches ont été imprimées." - -#~ msgctxt "@label link to connect manager" -#~ msgid "View print history" -#~ msgstr "Voir l'historique d'impression" - -#~ 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.\n" -#~ "\n" -#~ "Select your printer from the list below:" -#~ msgstr "" -#~ "Pour imprimer directement sur votre imprimante sur le réseau, assurez-vous que votre imprimante est connectée au réseau via un câble réseau ou en connectant votre imprimante à votre réseau Wi-Fi. Si vous ne connectez pas Cura avec votre imprimante, vous pouvez utiliser une clé USB pour transférer les fichiers g-code sur votre imprimante.\n" -#~ "\n" -#~ "Sélectionnez votre imprimante dans la liste ci-dessous :" - -#~ 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." -#~ msgstr "" -#~ "Assurez-vous que votre imprimante est connectée :\n" -#~ "- Vérifiez si l'imprimante est sous tension.\n" -#~ "- Vérifiez si l'imprimante est connectée au réseau." - -#~ msgctxt "@option:check" -#~ msgid "See only current build plate" -#~ msgstr "Afficher uniquement le plateau actuel" - -#~ msgctxt "@action:button" -#~ msgid "Arrange to all build plates" -#~ msgstr "Réorganiser sur tous les plateaux" - -#~ msgctxt "@action:button" -#~ msgid "Arrange current build plate" -#~ msgstr "Réorganiser le plateau actuel" - -#~ msgctxt "description" -#~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)." -#~ msgstr "Permet de sauvegarder la tranche résultante sous forme de fichier X3G, pour prendre en charge les imprimantes qui lisent ce format (Malyan, Makerbot et autres imprimantes basées sur Sailfish)." - -#~ msgctxt "name" -#~ msgid "X3GWriter" -#~ msgstr "X3GWriter" - -#~ msgctxt "description" -#~ msgid "Reads SVG files as toolpaths, for debugging printer movements." -#~ msgstr "Lit les fichiers SVG comme des Toolpaths, pour déboguer les mouvements de l'imprimante." - -#~ msgctxt "name" -#~ msgid "SVG Toolpath Reader" -#~ msgstr "Lecteur de Toolpaths SVG" - -#~ msgctxt "@item:inmenu" -#~ msgid "Changelog" -#~ msgstr "Récapitulatif des changements" - -#~ msgctxt "@item:inmenu" -#~ msgid "Show Changelog" -#~ msgstr "Afficher le récapitulatif des changements" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to remote cluster" -#~ msgstr "Envoi de données à un cluster distant" - -#~ msgctxt "@info:status" -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Se connecter à Ultimaker Cloud" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymized usage statistics." -#~ msgstr "Cura recueille des statistiques d'utilisation anonymes." - -#~ msgctxt "@info:title" -#~ msgid "Collecting Data" -#~ msgstr "Collecte des données" - -#~ msgctxt "@action:button" -#~ msgid "More info" -#~ msgstr "Plus d'informations" - -#~ msgctxt "@action:tooltip" -#~ msgid "See more information on what data Cura sends." -#~ msgstr "Voir plus d'informations sur les données envoyées par Cura." - -#~ msgctxt "@action:button" -#~ msgid "Allow" -#~ msgstr "Autoriser" - -#~ msgctxt "@action:tooltip" -#~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." -#~ msgstr "Autoriser Cura à envoyer des statistiques d'utilisation anonymes pour mieux prioriser les améliorations futures apportées à Cura. Certaines de vos préférences et paramètres sont envoyés, ainsi que la version du logiciel Cura et un hachage des modèles que vous découpez." - -#~ msgctxt "@item:inmenu" -#~ msgid "Evaluation" -#~ msgstr "Évaluation" - -#~ msgctxt "@info:title" -#~ msgid "Network enabled printers" -#~ msgstr "Imprimantes réseau" - -#~ msgctxt "@info:title" -#~ msgid "Local printers" -#~ msgstr "Imprimantes locales" - -#~ msgctxt "@info:backup_failed" -#~ msgid "Tried to restore a Cura backup that does not match your current version." -#~ msgstr "A essayé de restaurer une sauvegarde Cura qui ne correspond pas à votre version actuelle." - -#~ msgctxt "@title" -#~ msgid "Machine Settings" -#~ msgstr "Paramètres de la machine" - -#~ msgctxt "@label" -#~ msgid "Printer Settings" -#~ msgstr "Paramètres de l'imprimante" - -#~ msgctxt "@option:check" -#~ msgid "Origin at center" -#~ msgstr "Origine au centre" - -#~ msgctxt "@option:check" -#~ msgid "Heated bed" -#~ msgstr "Plateau chauffant" - -#~ msgctxt "@label" -#~ msgid "Printhead Settings" -#~ msgstr "Paramètres de la tête d'impression" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Distance entre la gauche de la tête d'impression et le centre de la buse. Permet d'empêcher les collisions entre les impressions précédentes et la tête d'impression lors d'une impression « Un à la fois »." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Distance entre le devant de la tête d'impression et le centre de la buse. Permet d'empêcher les collisions entre les impressions précédentes et la tête d'impression lors d'une impression « Un à la fois »." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Distance entre la droite de la tête d'impression et le centre de la buse. Permet d'empêcher les collisions entre les impressions précédentes et la tête d'impression lors d'une impression « Un à la fois »." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Distance entre le dos de la tête d'impression et le centre de la buse. Permet d'empêcher les collisions entre les impressions précédentes et la tête d'impression lors d'une impression « Un à la fois »." - -#~ msgctxt "@label" -#~ msgid "Gantry height" -#~ msgstr "Hauteur du portique" - -#~ msgctxt "@tooltip" -#~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." -#~ msgstr "La différence de hauteur entre la pointe de la buse et le système de portique (axes X et Y). Permet d'empêcher les collisions entre les impressions précédentes et le portique lors d'une impression « Un à la fois »." - -#~ msgctxt "@label" -#~ msgid "Start G-code" -#~ msgstr "G-Code de démarrage" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very start." -#~ msgstr "Commandes G-Code à exécuter au tout début." - -#~ msgctxt "@label" -#~ msgid "End G-code" -#~ msgstr "G-Code de fin" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very end." -#~ msgstr "Commandes G-Code à exécuter tout à la fin." - -#~ msgctxt "@label" -#~ msgid "Nozzle Settings" -#~ msgstr "Paramètres de la buse" - -#~ msgctxt "@tooltip" -#~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." -#~ msgstr "Le diamètre nominal de filament pris en charge par l'imprimante. Le diamètre exact sera remplacé par le matériau et / ou le profil." - -#~ msgctxt "@label" -#~ msgid "Extruder Start G-code" -#~ msgstr "Extrudeuse G-Code de démarrage" - -#~ msgctxt "@label" -#~ msgid "Extruder End G-code" -#~ msgstr "Extrudeuse G-Code de fin" - -#~ msgctxt "@label" -#~ msgid "Changelog" -#~ msgstr "Récapitulatif des changements" - -#~ msgctxt "@title:window" -#~ msgid "User Agreement" -#~ msgstr "Accord utilisateur" - -#~ msgctxt "@alabel" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "Saisissez l'adresse IP ou le nom d'hôte de votre imprimante sur le réseau." - -#~ msgctxt "@info" -#~ msgid "Please select a network connected printer to monitor." -#~ msgstr "Veuillez sélectionner une imprimante à surveiller qui est connectée au réseau." - -#~ msgctxt "@info" -#~ msgid "Please connect your Ultimaker printer to your local network." -#~ msgstr "Veuillez connecter votre imprimante Ultimaker à votre réseau local." - -#~ msgctxt "@text:window" -#~ msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent." -#~ msgstr "Cura envoie des données anonymes à Ultimaker afin d'améliorer la qualité d'impression et l'expérience utilisateur. Voici un exemple de toutes les données envoyées." - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send this data" -#~ msgstr "Je ne veux pas envoyer ces données" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending this data to Ultimaker and help us improve Cura" -#~ msgstr "Permettre l'envoi de ces données à Ultimaker et nous aider à améliorer Cura" - -#~ msgctxt "@label" -#~ msgid "No print selected" -#~ msgstr "Aucune impression sélectionnée" - -#~ msgctxt "@info:tooltip" -#~ 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 "Par défaut, les pixels blancs représentent les points hauts sur la maille tandis que les pixels noirs représentent les points bas sur la maille. Modifiez cette option pour inverser le comportement de manière à ce que les pixels noirs représentent les points hauts sur la maille et les pixels blancs les points bas." - -#~ msgctxt "@title" -#~ msgid "Select Printer Upgrades" -#~ msgstr "Sélectionner les mises à niveau de l'imprimante" - -#~ msgctxt "@label" -#~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "Sélectionnez l'extrudeur à utiliser comme support. Cela créera des structures de support sous le modèle afin de l'empêcher de s'affaisser ou de s'imprimer dans les airs." - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "Ce profil de qualité n'est pas disponible pour votre matériau et configuration des buses actuels. Veuillez modifier ces derniers pour activer ce profil de qualité." - -#~ msgctxt "@label shown when we load a Gcode file" -#~ msgid "Print setup disabled. G code file can not be modified." -#~ msgstr "Configuration d'impression désactivée. Le fichier G-Code ne peut pas être modifié." - -#~ msgctxt "@label" -#~ msgid "See the material compatibility chart" -#~ msgstr "Voir le tableau de compatibilité des matériaux" - -#~ msgctxt "@label" -#~ msgid "View types" -#~ msgstr "Types d'affichages" - -#~ msgctxt "@label" -#~ msgid "Hi " -#~ msgstr "Bonjour " - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to material profiles from leading brands" -#~ msgstr "" -#~ "- Envoyez des tâches d'impression à des imprimantes Ultimaker hors de votre réseau local\n" -#~ "- Stockez vos paramètres Ultimaker Cura dans le cloud pour les utiliser où que vous soyez\n" -#~ "- Obtenez un accès exclusif aux profils de matériaux des principales marques" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Unable to Slice" -#~ msgstr "Impossible de découper" - -#~ msgctxt "@label" -#~ msgid "Time specification" -#~ msgstr "Spécification de durée" - -#~ msgctxt "@label" -#~ msgid "Material specification" -#~ msgstr "Spécification des matériaux" - -#~ msgctxt "@title:tab" -#~ msgid "Add a printer to Cura" -#~ msgstr "Ajouter une imprimante à Cura" - -#~ msgctxt "@title:tab" -#~ msgid "" -#~ "Select the printer you want to use from the list below.\n" -#~ "\n" -#~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog." -#~ msgstr "" -#~ "Sélectionnez l'imprimante que vous voulez utiliser dans la liste ci-dessous.\n" -#~ "\n" -#~ "Si votre imprimante n'est pas dans la liste, utilisez l'imprimante « Imprimante FFF personnalisée » de la catégorie « Personnalisé » et ajustez les paramètres pour qu'ils correspondent à votre imprimante dans le dialogue suivant." - -#~ msgctxt "@label" -#~ msgid "Printer Name" -#~ msgstr "Nom de l'imprimante" - -#~ msgctxt "@action:button" -#~ msgid "Add Printer" -#~ msgstr "Ajouter une imprimante" - -#~ msgid "Modify G-Code" -#~ msgstr "Modifier le G-Code" - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." -#~ msgstr "Rien à couper car aucun des modèles ne convient au volume d'impression. Mettez à l'échelle ou faites pivoter les modèles pour les faire correspondre." - -#~ msgctxt "@info:status" -#~ msgid "The selected material is incompatible with the selected machine or configuration." -#~ msgstr "Le matériau sélectionné est incompatible avec la machine ou la configuration sélectionnée." - -#~ msgctxt "@info:title" -#~ msgid "Incompatible Material" -#~ msgstr "Matériau incompatible" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "Échec de l'importation du profil depuis le fichier {0} : {1}" - -#~ msgctxt "@title" -#~ msgid "Toolbox" -#~ msgstr "Boîte à outils" - -#~ msgctxt "@label" -#~ msgid "Not available" -#~ msgstr "Non disponible" - -#~ msgctxt "@label" -#~ msgid "Unreachable" -#~ msgstr "Injoignable" - -#~ msgctxt "@label" -#~ msgid "Available" -#~ msgstr "Disponible" - -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "Préparation" - -#~ msgctxt "@label:status" -#~ msgid "Pausing" -#~ msgstr "Mise en pause" - -#~ msgctxt "@label:status" -#~ msgid "Resuming" -#~ msgstr "Reprise" - -#~ msgctxt "@label" -#~ msgid "Waiting for: Unavailable printer" -#~ msgstr "En attente : imprimante non disponible" - -#~ msgctxt "@label" -#~ msgid "Waiting for: First available" -#~ msgstr "En attente : première imprimante disponible" - -#~ msgctxt "@label" -#~ msgid "Waiting for: " -#~ msgstr "En attente : " - -#~ msgctxt "@label" -#~ msgid "Configuration change" -#~ msgstr "Modification des configurations" - -#~ msgctxt "@label" -#~ msgid "The assigned printer, %1, requires the following configuration change(s):" -#~ msgstr "L'imprimante assignée, %1, nécessite d'apporter la ou les modifications suivantes à la configuration :" - -#~ msgctxt "@label" -#~ msgid "Override" -#~ msgstr "Remplacer" - -#~ msgctxt "@label" -#~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?" -#~ msgstr "Le fait de démarrer un travail d'impression avec une configuration incompatible peut endommager votre imprimante 3D. Êtes-vous sûr de vouloir remplacer la configuration et imprimer %1 ?" - -#~ msgctxt "@window:title" -#~ msgid "Override configuration configuration and start print" -#~ msgstr "Remplacer la configuration et lancer l'impression" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage queue" -#~ msgstr "Gérer la file d'attente" - -#~ msgctxt "@label" -#~ msgid "Printing" -#~ msgstr "Impression" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage printers" -#~ msgstr "Gérer les imprimantes" - -#~ msgctxt "@action:button" -#~ msgid "Activate Configuration" -#~ msgstr "Activer la configuration" - -#~ msgctxt "@info:tooltip" -#~ msgid "Load the configuration of the printer into Cura" -#~ msgstr "Charger la configuration de l'imprimante dans Cura" - -#~ msgctxt "@label" -#~ msgid "Show Travels" -#~ msgstr "Afficher les déplacements" - -#~ msgctxt "@label" -#~ msgid "Show Helpers" -#~ msgstr "Afficher les aides" - -#~ msgctxt "@label" -#~ msgid "Show Shell" -#~ msgstr "Afficher la coque" - -#~ msgctxt "@label" -#~ msgid "Show Infill" -#~ msgstr "Afficher le remplissage" - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send these data" -#~ msgstr "Je ne veux pas envoyer ces données" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending these data to Ultimaker and help us improve Cura" -#~ msgstr "Permettre l'envoi de ces données à Ultimaker et nous aider à améliorer Cura" - -#~ msgctxt "@label" -#~ msgid "Printer type:" -#~ msgstr "Type d'imprimante :" - -#~ msgctxt "@label" -#~ msgid "Connection:" -#~ msgstr "Connexion :" - -#~ msgctxt "@label" -#~ msgid "State:" -#~ msgstr "État :" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for a printjob" -#~ msgstr "En attente d'une tâche d'impression" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for someone to clear the build plate" -#~ msgstr "En attente du dégagement du plateau" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Aborting print..." -#~ msgstr "Abandon de l'impression..." - -#~ msgctxt "@label" -#~ msgid "Protected profiles" -#~ msgstr "Profils protégés" - -#~ msgctxt "@label" -#~ msgid "Printer Name:" -#~ msgstr "Nom de l'imprimante :" - -#~ msgctxt "@label" -#~ msgid "Profile:" -#~ msgstr "Profil :" - -#~ msgctxt "@label:textbox" -#~ msgid "Search..." -#~ msgstr "Rechercher..." - -#~ msgctxt "@action:inmenu" -#~ msgid "Collapse All" -#~ msgstr "Réduire tout" - -#~ msgctxt "@action:inmenu" -#~ msgid "Expand All" -#~ msgstr "Développer tout" - -#~ msgctxt "@label:header configurations" -#~ msgid "Available configurations" -#~ msgstr "Configurations disponibles" - -#~ msgctxt "@label:extruder label" -#~ msgid "Extruder" -#~ msgstr "Extrudeuse" - -#~ msgctxt "@label:extruder label" -#~ msgid "Yes" -#~ msgstr "Oui" - -#~ msgctxt "@label:extruder label" -#~ msgid "No" -#~ msgstr "Non" - -#~ msgctxt "@label:listbox" -#~ msgid "Print Setup" -#~ msgstr "Configuration de l'impression" - -#~ msgctxt "@label:listbox" -#~ msgid "" -#~ "Print Setup disabled\n" -#~ "G-code files cannot be modified" -#~ msgstr "" -#~ "Configuration de l'impression désactivée\n" -#~ "Les fichiers G-Code ne peuvent pas être modifiés" - -#~ msgctxt "@label Hours and minutes" -#~ msgid "00h 00min" -#~ msgstr "00h 00min" - -#~ msgctxt "@tooltip" -#~ msgid "Time specification" -#~ msgstr "Spécification de temps" - -#~ msgctxt "@label" -#~ msgid "Cost specification" -#~ msgstr "Spécification de coût" - -#~ msgctxt "@label" -#~ msgid "Total:" -#~ msgstr "Total :" - -#~ msgctxt "@tooltip" -#~ msgid "Recommended Print Setup

    Print with the recommended settings for the selected printer, material and quality." -#~ msgstr "Configuration de l'impression recommandée

    Imprimer avec les paramètres recommandés pour l'imprimante, le matériau et la qualité sélectionnés." - -#~ msgctxt "@tooltip" -#~ msgid "Custom Print Setup

    Print with finegrained control over every last bit of the slicing process." -#~ msgstr "Configuration de l'impression personnalisée

    Imprimer avec un contrôle fin de chaque élément du processus de découpe." - -#~ msgctxt "@action:inmenu menubar:help" -#~ msgid "Show Engine &Log..." -#~ msgstr "Afficher le &journal du moteur..." - -#~ msgctxt "@action:menu" -#~ msgid "Browse packages..." -#~ msgstr "Parcourir les paquets..." - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "Expand/Collapse Sidebar" -#~ msgstr "Déplier / replier la barre latérale" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3D model" -#~ msgstr "Veuillez charger un modèle 3D" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Ready to slice" -#~ msgstr "Prêt à découper" - -#~ msgctxt "@label:PrintjobStatus %1 is target operation" -#~ msgid "Ready to %1" -#~ msgstr "Prêt à %1" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Slicing unavailable" -#~ msgstr "Découpe indisponible" - -#~ msgctxt "@info:tooltip" -#~ msgid "Slice current printjob" -#~ msgstr "Découper la tâche d'impression en cours" - -#~ msgctxt "@info:tooltip" -#~ msgid "Cancel slicing process" -#~ msgstr "Annuler le processus de découpe" - -#~ msgctxt "@label:Printjob" -#~ msgid "Prepare" -#~ msgstr "Préparer" - -#~ msgctxt "@label:Printjob" -#~ msgid "Cancel" -#~ msgstr "Annuler" - -#~ msgctxt "@info:tooltip" -#~ msgid "Select the active output device" -#~ msgstr "Sélectionner le périphérique de sortie actif" - -#~ msgctxt "@title:menu" -#~ msgid "&View" -#~ msgstr "&Visualisation" - -#~ msgctxt "@title:menu" -#~ msgid "&Settings" -#~ msgstr "&Paramètres" - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "&Toolbox" -#~ msgstr "&Boîte à outils" - -#~ msgctxt "@action:button" -#~ msgid "Open File" -#~ msgstr "Ouvrir un fichier" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "Ce profil de qualité n'est pas disponible pour votre matériau et configuration des buses actuels. Veuillez modifier ces derniers pour activer ce profil de qualité" - -#~ msgctxt "@label" -#~ msgid "Print Speed" -#~ msgstr "Vitesse d’impression" - -#~ msgctxt "@label" -#~ msgid "Slower" -#~ msgstr "Ralentir" - -#~ msgctxt "@label" -#~ msgid "Faster" -#~ msgstr "Accélérer" - -#~ msgctxt "@label" -#~ msgid "Enable gradual" -#~ msgstr "Permettre le remplissage graduel" - -#~ msgctxt "@label" -#~ msgid "Generate Support" -#~ msgstr "Générer les supports" - -#~ msgctxt "@label" -#~ msgid "Build Plate Adhesion" -#~ msgstr "Adhérence au plateau" - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints?
    Read the Ultimaker Troubleshooting Guides" -#~ msgstr "Besoin d'aide pour améliorer vos impressions ?
    Lisez les Guides de dépannage Ultimaker" - -#~ msgctxt "@title:window" -#~ msgid "Engine Log" -#~ msgstr "Journal du moteur" - -#~ msgctxt "@label" -#~ msgid "Printer type" -#~ msgstr "Type d'imprimante" - -#~ msgctxt "@label" -#~ msgid "Use glue with this material combination" -#~ msgstr "Utiliser de la colle avec cette combinaison de matériaux" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "Vérifier la compatibilité" - -#~ msgctxt "@tooltip" -#~ msgid "Click to check the material compatibility on Ultimaker.com." -#~ msgstr "Cliquez ici pour vérifier la compatibilité des matériaux sur Ultimaker.com." - -#~ msgctxt "description" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "Affiche les changements depuis la dernière version." - -#~ msgctxt "name" -#~ msgid "Changelog" -#~ msgstr "Récapitulatif des changements" - -#~ msgctxt "description" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "Créer un profil de changements de qualité aplati." - -#~ msgctxt "name" -#~ msgid "Profile flatener" -#~ msgstr "Aplatisseur de profil" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license." -#~ msgstr "Demander à l'utilisateur une fois s'il appose son accord à notre licence." - -#~ msgctxt "name" -#~ msgid "UserAgreement" -#~ msgstr "UserAgreement" - -#~ msgctxt "@warning:status" -#~ msgid "Please generate G-code before saving." -#~ msgstr "Veuillez générer le G-Code avant d'enregistrer." - -#~ msgctxt "@action" -#~ msgid "Upgrade Firmware" -#~ msgstr "Mise à niveau du firmware" - -#~ msgctxt "@label unknown material" -#~ msgid "Unknown" -#~ msgstr "Inconnu" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "No custom profile to import in file {0}" -#~ msgstr "Aucun profil personnalisé à importer dans le fichier {0}" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "This profile {0} contains incorrect data, could not import it." -#~ msgstr "Le profil {0} contient des données incorrectes ; échec de l'importation." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "La machine définie dans le profil {0} ({1}) ne correspond pas à votre machine actuelle ({2}) ; échec de l'importation." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall " -#~ msgstr "Confirmer la désinstallation " - -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - -#~ msgctxt "@title" -#~ msgid "Upgrade Firmware" -#~ msgstr "Mise à niveau du firmware" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Imprimer avec Doodle3D WiFi-Box" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Imprimer avec Doodle3D WiFi-Box" - -#~ msgctxt "@info:status" -#~ msgid "Connecting to Doodle3D Connect" -#~ msgstr "Connexion avec Doodle3D Connecter..." - -#~ msgctxt "@info:status" -#~ msgid "Sending data to Doodle3D Connect" -#~ msgstr "Envoi de données vers Doodle3D Connecter..." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -#~ msgstr "Impossible d'envoyer les données à Doodle3D Connect. Une autre tâche est-elle toujours active ?" - -#~ msgctxt "@info:status" -#~ msgid "Storing data on Doodle3D Connect" -#~ msgstr "Enregistrement de données dans Doodle3D Connecter..." - -#~ msgctxt "@info:status" -#~ msgid "File sent to Doodle3D Connect" -#~ msgstr "Fichier envoyé vers Doodle3D Connecter" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect..." -#~ msgstr "Ouvrir Connect..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Open the Doodle3D Connect web interface" -#~ msgstr "Ouvrir l'interface web Doodle3D Connecter" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Blender file" -#~ msgstr "Fichier Blender" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Could not export using \"{}\" quality!\n" -#~ "Felt back to \"{}\"." -#~ msgstr "" -#~ "Impossible d'exporter avec la qualité \"{}\" !\n" -#~ "Qualité redéfinie sur \"{}\"." - -#~ msgctxt "@label" -#~ msgid "Contact" -#~ msgstr "Contact" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." -#~ msgstr "L'imprimante n'est pas configurée pour héberger un groupe d'imprimantes Ultimaker 3." - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -#~ msgstr "L'imprimante est le patron pour un groupe de %1 imprimantes Ultimaker 3." - -#~ msgctxt "@label: arg 1 is group name" -#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "%1 n'est pas configurée pour héberger un groupe d'imprimantes connectées Ultimaker 3." - -#~ msgctxt "@label link to connect manager" -#~ msgid "Add/Remove printers" -#~ msgstr "Ajouter / supprimer une imprimante" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "Ouvre la page des tâches d'impression avec votre navigateur web." - -#~ msgctxt "@action:button" -#~ msgid "View print jobs" -#~ msgstr "Afficher les tâches d'impression" - -#~ msgctxt "@label:status" -#~ msgid "Preparing to print" -#~ msgstr "Préparation..." - -#~ msgctxt "@label:status" -#~ msgid "Available" -#~ msgstr "Disponible" - -#~ msgctxt "@label:status" -#~ msgid "Lost connection with the printer" -#~ msgstr "Connexion avec l'imprimante perdue" - -#~ msgctxt "@label:status" -#~ msgid "Unknown" -#~ msgstr "Inconnu" - -#~ msgctxt "@label:status" -#~ msgid "Disabled" -#~ msgstr "Désactivé" - -#~ msgctxt "@label:status" -#~ msgid "Reserved" -#~ msgstr "Réservée" - -#~ msgctxt "@label" -#~ msgid "Preparing to print" -#~ msgstr "Préparation de l'impression..." - -#~ msgctxt "@label:status" -#~ msgid "Print aborted" -#~ msgstr "Abandon de l'impression" - -#~ msgctxt "@label" -#~ msgid "Not accepting print jobs" -#~ msgstr "Non acceptation des tâches d'impression" - -#~ msgctxt "@label" -#~ msgid "Finishes at: " -#~ msgstr "Complète a: " - -#~ msgctxt "@label" -#~ msgid "Clear build plate" -#~ msgstr "Enlever les objets du plateau" - -#~ msgctxt "@label" -#~ msgid "Waiting for configuration change" -#~ msgstr "En attente de modification de configuration" - -#~ msgctxt "@title" -#~ msgid "Print jobs" -#~ msgstr "Imprimer les tâches" - -#~ msgctxt "@label:title" -#~ msgid "Printers" -#~ msgstr "Imprimantes" - -#~ msgctxt "@action:button" -#~ msgid "View printers" -#~ msgstr "Afficher les imprimantes" - -#~ msgctxt "@label:" -#~ msgid "Pause" -#~ msgstr "Pause" - -#~ msgctxt "@label:" -#~ msgid "Resume" -#~ msgstr "Reprendre" - -#~ msgctxt "@label:" -#~ msgid "Abort Print" -#~ msgstr "Abandonner l'impression" - -#~ msgctxt "@option:openProject" -#~ msgid "Always ask" -#~ msgstr "Toujours demander" - -#~ msgctxt "@label" -#~ msgid "Override Profile" -#~ msgstr "Écraser le profil" - -#~ msgctxt "@info:tooltip" -#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -#~ msgstr "Les modèles nouvellement chargés doivent-ils être disposés sur le plateau ? Utilisé en conjonction avec le multi-plateau (EXPÉRIMENTAL)" - -#~ msgctxt "@option:check" -#~ msgid "Do not arrange objects on load" -#~ msgstr "Ne pas réorganiser les objets lors du chargement" - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Save Selection to File" -#~ msgstr "Enregi&strer la sélection dans un fichier" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &As..." -#~ msgstr "Enregistrer &sous..." - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &Project..." -#~ msgstr "Enregistrer le &projet..." - -# Added after the string freeze. -#~ msgctxt "@label" -#~ msgid "Use adhesion sheet or glue with this material combination" -#~ msgstr "Utilisez feuilles d'adhérence ou de la colle avec cette combinaison des matériaux" - -#~ msgctxt "description" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "Accepte les G-Code et les envoie par Wi-Fi à une box WiFi Doodle3D." - -#~ msgctxt "name" -#~ msgid "Doodle3D WiFi-Box" -#~ msgstr "Box WiFi Doodle3D" - -#~ msgctxt "description" -#~ msgid "Provides an edit window for direct script editing." -#~ msgstr "Fournit une fenêtre d'édition pour l'édition directe de script." - -#~ msgctxt "name" -#~ msgid "Live scripting tool" -#~ msgstr "Outil de scripting en direct" - -#~ msgctxt "description" -#~ msgid "Helps to open Blender files directly in Cura." -#~ msgstr "Aide à ouvrir les fichiers Blender directement dans Cura." - -#~ msgctxt "name" -#~ msgid "Blender Integration (experimental)" -#~ msgstr "Intégration Blender (expérimental)" - -#~ msgctxt "@info:title" -#~ msgid "Model Checker Warning" -#~ msgstr "Avertissement contrôleur de modèle" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n" -#~ "Tips that may be useful to improve the print quality:\n" -#~ "1) Use rounded corners.\n" -#~ "2) Turn the fan off (only if there are no tiny details on the model).\n" -#~ "3) Use a different material." -#~ msgstr "" -#~ "Certains modèles peuvent ne pas être imprimés de manière optimale en raison de la taille de l'objet et du matériau choisi pour les modèles : {model_names}.\n" -#~ "Conseils utiles pour améliorer la qualité d'impression :\n" -#~ "1) Utiliser des coins arrondis.\n" -#~ "2) Éteindre le ventilateur (seulement si le modèle ne contient pas de petits détails).\n" -#~ "3) Utiliser un matériau différent." - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "SolidWorks a signalé des erreurs lors de l'ouverture de votre fichier. Nous vous recommandons de résoudre ces problèmes dans SolidWorks lui-même." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ "Thanks!" -#~ msgstr "" -#~ "Aucun modèle n'a été trouvé à l'intérieur de votre dessin. Pouvez-vous vérifier son contenu de nouveau et vous assurer qu'une pièce ou un assemblage est présent ?\n" -#~ "\n" -#~ "Merci !" - -#~ 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" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "Plus d'une pièce ou d'un assemblage ont été trouvés dans votre dessin. Nous ne prenons actuellement en charge que les dessins comptant une seule pièce ou un seul assemblage.\n" -#~ "\n" -#~ "Désolé !" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks part file" -#~ msgstr "Fichier de composant SolidWorks" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks assembly file" -#~ msgstr "Fichier d'assemblage SolidWorks" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks drawing file" -#~ msgstr "Fichier de dessin SolidWorks" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "Cher client,\n" -#~ "Nous n'avons pas pu trouver une installation valide de SolidWorks sur votre système. Cela signifie soit que SolidWorks n'est pas installé, soit que vous ne possédez pas de licence valide. Veuillez vous assurer que l'exécution de SolidWorks lui-même fonctionne sans problèmes et / ou contactez votre service IT.\n" -#~ "\n" -#~ "Cordialement,\n" -#~ " - Thomas Karl Pietrowski" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "Cher client,\n" -#~ "Vous exécutez actuellement ce plug-in sur un système d'exploitation autre que Windows. Ce plug-in fonctionne uniquement sous Windows et lorsque SolidWorks est installé avec une licence valide. Veuillez installer ce plug-in sur un poste Windows où SolidWorks est installé.\n" -#~ "\n" -#~ "Cordialement,\n" -#~ " - Thomas Karl Pietrowski" - -#~ msgid "Configure" -#~ msgstr "Configurer" - -#~ msgid "Installation guide for SolidWorks macro" -#~ msgstr "Guide d'installation SolidWorks macro" - -#~ msgctxt "@action:button" -#~ msgid "Disable" -#~ msgstr "Désactiver" - -#~ msgctxt "@action:tooltip" -#~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences." -#~ msgstr "Ne pas autoriser Cura à envoyer des statistiques d'utilisation anonymes. Vous pouvez modifier ce paramètre dans les préférences." - -#~ msgid "Install" -#~ msgstr "Installer" - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory." -#~ msgstr "Échec de la copie des fichiers plug-ins Siemens NX. Veuillez vérifier votre UGII_USER_DIR. Il n'est pas défini sur un répertoire." - -#~ msgid "Successfully installed Siemens NX Cura plugin." -#~ msgstr "L'installation du plug-in Siemens NX Cura a réussie." - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR." -#~ msgstr "Échec de la copie des fichiers plug-ins Siemens NX. Veuillez vérifier votre UGII_USER_DIR." - -#~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX." -#~ msgstr "Échec de l'installation du plug-in Siemens NX. Impossible de définir la variable d'environnement UGII_USER_DIR pour Siemens NX." - -#~ msgctxt "@info:status" -#~ msgid "Failed to get plugin ID from {0}" -#~ msgstr "Échec de l'obtention de l'identifiant du plug-in au départ de {0}" - -#~ msgctxt "@info:tile" -#~ msgid "Warning" -#~ msgstr "Avertissement" - -#~ msgctxt "@window:title" -#~ msgid "Plugin browser" -#~ msgstr "Navigateur de plug-ins" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks: Export wizard" -#~ msgstr "SolidWorks : assistant d'exportation" - -#~ msgctxt "@action:label" -#~ msgid "Quality:" -#~ msgstr "Qualité :" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (3D-printing)" -#~ msgstr "Fine (impression 3D)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (3D-printing)" -#~ msgstr "Grossière (impression 3D)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (SolidWorks)" -#~ msgstr "Fine (SolidWorks)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (SolidWorks)" -#~ msgstr "Grossière (SolidWorks)" - -#~ msgctxt "@text:window" -#~ msgid "Show this dialog again" -#~ msgstr "Afficher de nouveau cette boîte de dialogue" - -#~ msgctxt "@action:button" -#~ msgid "Continue" -#~ msgstr "Continuer" - -#~ msgctxt "@action:button" -#~ msgid "Abort" -#~ msgstr "Abandonner" - -#~ msgctxt "@title:window" -#~ msgid "How to install Cura SolidWorks macro" -#~ msgstr "Modalités d’installation de Cura SolidWorks macro" - -#~ msgctxt "@description:label" -#~ msgid "Steps:" -#~ msgstr "Procédure :" - -#~ msgctxt "@action:button" -#~ msgid "" -#~ "Open the directory\n" -#~ "with macro and icon" -#~ msgstr "" -#~ "Ouvrez le répertoire\n" -#~ "contenant la macro et l'icône" - -#~ msgctxt "@description:label" -#~ msgid "Instructions:" -#~ msgstr "Instructions :" - -#~ msgctxt "@action:playpause" -#~ msgid "Play" -#~ msgstr "Jouer" - -#~ msgctxt "@action:playpause" -#~ msgid "Pause" -#~ msgstr "Pause" - -#~ msgctxt "@action:button" -#~ msgid "Previous Step" -#~ msgstr "Étape précédente" - -#~ msgctxt "@action:button" -#~ msgid "Done" -#~ msgstr "Terminé" - -#~ msgctxt "@action:button" -#~ msgid "Next Step" -#~ msgstr "Étape suivante" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks plugin: Configuration" -#~ msgstr "Plug-in SolidWorks : configuration" - -#~ msgctxt "@title:tab" -#~ msgid "Conversion settings" -#~ msgstr "Paramètres de conversion" - -#~ msgctxt "@label" -#~ msgid "First choice:" -#~ msgstr "Premier choix :" - -#~ msgctxt "@text:menu" -#~ msgid "Latest installed version (Recommended)" -#~ msgstr "Dernière version installée (recommandé)" - -#~ msgctxt "@text:menu" -#~ msgid "Default version" -#~ msgstr "Version par défaut" - -#~ msgctxt "@label" -#~ msgid "Show wizard before opening SolidWorks files" -#~ msgstr "Afficher l'Assistant avant d'ouvrir les fichiers SolidWorks" - -#~ msgctxt "@label" -#~ msgid "Automatically rotate opened file into normed orientation" -#~ msgstr "Rotation automatique du fichier ouvert en orientation normalisée" - -#~ msgctxt "@title:tab" -#~ msgid "Installation(s)" -#~ msgstr "Installation(s)" - -#~ msgctxt "@label" -#~ msgid "COM service found" -#~ msgstr "Service COM trouvé" - -#~ msgctxt "@label" -#~ msgid "Executable found" -#~ msgstr "Fichier exécutable trouvé" - -#~ msgctxt "@label" -#~ msgid "COM starting" -#~ msgstr "Lancement de COM" - -#~ msgctxt "@label" -#~ msgid "Revision number" -#~ msgstr "Numéro de révision" - -#~ msgctxt "@label" -#~ msgid "Functions available" -#~ msgstr "Fonctions disponibles" - -#~ msgctxt "@label (%1 is object name)" -#~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?" -#~ msgstr "Le nouveau diamètre du matériau est défini sur %1 mm, ce qui n'est pas compatible avec la machine actuelle. Souhaitez-vous continuer ?" - -#~ msgctxt "@action:menu" -#~ msgid "Browse plugins..." -#~ msgstr "Parcourir les plug-ins..." - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "P&lugins" -#~ msgstr "&Plug-ins" - -#~ msgctxt "@window:title" -#~ msgid "Install Plugin" -#~ msgstr "Installer plug-in" - -#~ 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 "Manages network connections to Ultimaker 3 printers" -#~ msgstr "Gère les connexions réseau vers les imprimantes Ultimaker 3" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations." -#~ msgstr "Donne la possibilité d'ouvrir certains fichiers via SolidWorks. La conversion est ensuite effectuée par ce plug-in et des optimisations supplémentaires." - -#~ msgctxt "name" -#~ msgid "SolidWorks Integration" -#~ msgstr "Intégration SolidWorks" - -#~ msgctxt "description" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "Enregistre automatiquement les Préférences, Machines et Profils après des modifications." - -#~ msgctxt "name" -#~ msgid "Auto Save" -#~ msgstr "Enregistrement auto" - -#~ msgctxt "description" -#~ msgid "Helps you to install an 'export to Cura' button in Siemens NX." -#~ msgstr "Vous aide à installer un bouton « exporter vers Cura » dans Siemens NX." - -#~ msgctxt "name" -#~ msgid "Siemens NX Integration" -#~ msgstr "Siemens NX Integration" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new plugins." -#~ msgstr "Rechercher, gérer et installer de nouveaux plug-ins." - -#~ msgctxt "name" -#~ msgid "Plugin Browser" -#~ msgstr "Navigateur de plug-ins" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license" -#~ msgstr "Demander à l'utilisateur une fois s'il appose son accord à notre licence" - -#~ 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 "@item:inlistbox" -#~ msgid "GCode File" -#~ msgstr "Fichier GCode" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer is busy or not connected." -#~ msgstr "Impossible de démarrer une nouvelle tâche car l'imprimante est occupée ou n'est pas connectée." - -#~ msgctxt "@info:title" -#~ msgid "Printer Unavailable" -#~ msgstr "Imprimante indisponible" - -#~ msgctxt "@info:status" -#~ msgid "This printer does not support USB printing because it uses UltiGCode flavor." -#~ msgstr "L'imprimante ne prend pas en charge l'impression par USB car elle utilise UltiGCode." - -#~ msgctxt "@info:title" -#~ msgid "USB Printing" -#~ msgstr "Impression par USB" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer does not support usb printing." -#~ msgstr "Impossible de démarrer une nouvelle tâche car l'imprimante ne prend pas en charge l'impression par USB." - -#~ msgctxt "@info" -#~ msgid "Unable to update firmware because there are no printers connected." -#~ msgstr "Impossible de mettre à jour le firmware car il n'y a aucune imprimante connectée." - -#~ msgctxt "@info" -#~ msgid "Could not find firmware required for the printer at %s." -#~ msgstr "Impossible de trouver le firmware requis pour l'imprimante sur %s." - -#~ msgctxt "@info:title" -#~ msgid "Printer Firmware" -#~ msgstr "Firmware de l'imprimante" - -#~ msgctxt "@info:title" -#~ msgid "Connection status" -#~ msgstr "Statut de la connexion" - -#~ msgctxt "@info:title" -#~ msgid "Connection Status" -#~ msgstr "Statut de la connexion" - -#~ msgctxt "@info:status" -#~ msgid "Access request was denied on the printer." -#~ msgstr "La demande d'accès à l'imprimante a été refusée." - -#~ msgctxt "@info:status" -#~ msgid "Access request failed due to a timeout." -#~ msgstr "Durée d'attente dépassée. Échec de la demande d'accès." - -#~ msgctxt "@info:status" -#~ msgid "The connection with the network was lost." -#~ msgstr "Interruption de connexion au le réseau." - -#~ msgctxt "@info:status" -#~ msgid "The connection with the printer was lost. Check your printer to see if it is connected." -#~ msgstr "La connexion avec l'imprimante est interrompue. Vérifiez que votre imprimante est connectée." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s." -#~ msgstr "Impossible de démarrer une nouvelle tâche d'impression car l'imprimante est occupée. L'état actuel de l'imprimante est %s." - -#~ msgctxt "@info:title" -#~ msgid "Printer Status" -#~ msgstr "Statut de l'imprimante" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}" -#~ msgstr "Impossible de démarrer une nouvelle tâche d'impression. Pas de PrintCore inséré dans la fente {0}." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No material loaded in slot {0}" -#~ msgstr "Impossible de démarrer une nouvelle tâche d'impression car l'imprimante est occupée. Pas de matériau chargé dans la fente {0}." - -#~ msgctxt "@label" -#~ msgid "Not enough material for spool {0}." -#~ msgstr "Pas suffisamment de matériau pour la bobine {0}." - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "PrintCore différent (Cura : {0}, Imprimante : {1}) sélectionné pour l'extrudeur {2}" - -#~ msgctxt "@label" -#~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "Le PrintCore {0} n'est pas correctement calibré. Le calibrage XY doit être effectué sur l'imprimante." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to printer. Is another job still active?" -#~ msgstr "Impossible d'envoyer les données à l'imprimante. Une autre tâche est-elle toujours active ?" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Print aborted. Please check the printer" -#~ msgstr "Abandon de l'impression. Vérifiez l'imprimante" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Pausing print..." -#~ msgstr "Mise en pause de l'impression..." - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Resuming print..." -#~ msgstr "Reprise de l'impression..." - -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "L'imprimante n'est pas configurée pour héberger un groupe d'imprimantes connectées Ultimaker 3." - -#~ msgctxt "Count is number of printers." -#~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers." -#~ msgstr "L'imprimante n'est pas configurée pour héberger un groupe de {count} imprimantes connectées Ultimaker 3." - -#~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate." -#~ msgstr "{printer_name} a terminé d'imprimer '{job_name}'. Veuillez enlever l'impression et confirmer avoir nettoyé le plateau." - -#~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing." -#~ msgstr "{printer_name} est réservé pour imprimer '{job_name}'. Veuillez modifier la configuration de l'imprimante pour qu'elle corresponde à la tâche et commence l'impression." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "Impossible d'envoyer une nouvelle tâche d'impression : cette imprimante 3D n'est pas (encore) configurée pour héberger un groupe d'imprimantes connectées Ultimaker 3." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send print job to group {cluster_name}." -#~ msgstr "Impossible d'envoyer la tâche d'impression vers le groupe {cluster_name}." - -#~ msgctxt "@info:status" -#~ msgid "Sent {file_name} to group {cluster_name}." -#~ msgstr "{file_name} envoyé vers le groupe {cluster_name}." - -#~ msgctxt "@action:button" -#~ msgid "Show print jobs" -#~ msgstr "Afficher les tâches d'impression" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs interface in your browser." -#~ msgstr "Ouvre l'interface d'impression des tâches dans votre navigateur." - -#~ msgctxt "@label Printer name" -#~ msgid "Unknown" -#~ msgstr "Inconnu" - -#~ msgctxt "@info:progress" -#~ msgid "Sending {file_name} to group {cluster_name}" -#~ msgstr "Envoi de {file_name} vers le groupe {cluster_name}..." - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "SolidWorks a signalé des erreurs lors de l'ouverture de votre fichier. Nous vous recommandons de résoudre ces problèmes dans SolidWorks lui-même." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ " Thanks!." -#~ msgstr "" -#~ "Aucun modèle n'a été trouvé à l'intérieur de votre dessin. Pouvez-vous vérifier son contenu de nouveau et vous assurer qu'une pièce ou un assemblage est présent ?\n" -#~ "\n" -#~ " Merci !" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "Plus d'une pièce ou d'un ensemble de pièces ont été trouvés dans votre dessin. Nous ne prenons actuellement en charge que les dessins comptant exactement une pièce ou un ensemble de pièces.\n" -#~ "\n" -#~ "Désolé !" - -#~ msgctxt "@item:material" -#~ msgid "No material loaded" -#~ msgstr "Pas de matériau chargé" - -#~ msgctxt "@item:material" -#~ msgid "Unknown material" -#~ msgstr "Matériau inconnu" - -#~ msgctxt "@info:status Has a cancel button next to it." -#~ msgid "The selected material diameter causes the material to become incompatible with the current printer." -#~ msgstr "Le diamètre du matériau sélectionné rend le matériau incompatible avec l'imprimante actuelle." - -#~ msgctxt "@action:button" -#~ msgid "Undo" -#~ msgstr "Annuler" - -#~ msgctxt "@action" -#~ msgid "Undo changing the material diameter." -#~ msgstr "Annuler la modification du diamètre du matériau." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} doesn't match with your current machine, could not import it." -#~ msgstr "La machine définie dans le profil {0} ne correspond pas à votre machine actuelle ; échec de l'importation." - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal error has occurred. 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 "" -#~ "

    Une erreur fatale s'est produite. Veuillez nous envoyer ce Rapport d'incident pour résoudre le problème

    \n" -#~ "

    Veuillez utiliser le bouton « Envoyer rapport » pour publier automatiquement un rapport d'erreur sur nos serveurs

    \n" -#~ " " - -#~ msgctxt "@label" -#~ msgid "not yet initialised
    " -#~ msgstr "pas encore initialisé
    " - -#~ msgctxt "@label" -#~ msgid "Gcode flavor" -#~ msgstr "GCode Parfum" - -#~ msgctxt "@label" -#~ msgid "Start Gcode" -#~ msgstr "Début Gcode" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very start." -#~ msgstr "Commandes Gcode à exécuter au tout début." - -#~ msgctxt "@label" -#~ msgid "End Gcode" -#~ msgstr "Fin Gcode" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very end." -#~ msgstr "Commandes Gcode à exécuter tout à la fin." - -#~ msgctxt "@label" -#~ msgid "Extruder Start Gcode" -#~ msgstr "Extrudeur Gcode de démarrage" - -#~ msgctxt "@label" -#~ msgid "Extruder End Gcode" -#~ msgstr "Extrudeur Gcode de fin" - -#~ msgctxt "@label" -#~ msgid "Starting firmware update, this may take a while." -#~ msgstr "Démarrage de la mise à jour du firmware, cela peut prendre un certain temps." - -#~ msgctxt "@label" -#~ msgid "Unknown error code: %1" -#~ msgstr "Code erreur inconnue : %1" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@label Printer status" -#~ msgid "Unknown" -#~ msgstr "Inconnu" - -#~ msgctxt "@title:window" -#~ msgid "Find & Update plugins" -#~ msgstr "Rechercher et mettre à jour les plug-ins" - -#~ msgctxt "@label" -#~ msgid "Here you can find a list of Third Party plugins." -#~ msgstr "Vous pouvez trouver ici une liste de plug-ins de sources tierces." - -#~ msgctxt "@action:button" -#~ msgid "Upgrade" -#~ msgstr "Mettre à niveau" - -#~ msgctxt "@action:button" -#~ msgid "Download" -#~ msgstr "Télécharger" - -#~ msgctxt "@info:tooltip" -#~ msgid "Show caution message in gcode reader." -#~ msgstr "Afficher le message d'avertissement dans le lecteur gcode." - -#~ msgctxt "@option:check" -#~ msgid "Caution message in gcode reader" -#~ msgstr "Message d'avertissement dans lecteur gcode." - -#~ msgctxt "@window:title" -#~ msgid "Import Profile" -#~ msgstr "Importer un profil" - -#~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name" -#~ msgid "Printer: %1, %2: %3" -#~ msgstr "Imprimante : %1, %2 : %3" - -#~ msgctxt "@action:label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "Imprimante : %1" - -#~ msgctxt "@label" -#~ msgid "GCode generator" -#~ msgstr "Générateur GCode" - -#~ msgctxt "@action:menu" -#~ msgid "Configure setting visiblity..." -#~ msgstr "Configurer la visibilité des paramètres..." - -#~ msgctxt "@title:menuitem %1 is the automatically selected material" -#~ msgid "Automatic: %1" -#~ msgstr "Automatique : %1" - -#~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer" -#~ msgid "Automatic: %1" -#~ msgstr "Automatique : %1" - -#~ msgctxt "@info:status" -#~ msgid "No printer connected" -#~ msgstr "Aucune imprimante n'est connectée" - -#~ msgctxt "@tooltip" -#~ msgid "The current temperature of this extruder." -#~ msgstr "Température actuelle de cet extrudeur." - -#~ msgctxt "@action:menu" -#~ msgid "Installed plugins..." -#~ msgstr "Plug-ins installés..." - -#~ msgctxt "@label" -#~ msgid "Support Extruder" -#~ msgstr "Extrudeur pour matériau support" - -#~ msgctxt "description" -#~ msgid "Writes GCode to a file." -#~ msgstr "Enregistre le GCode dans un fichier." - -#~ msgctxt "name" -#~ msgid "GCode Writer" -#~ msgstr "Générateur de GCode" - -#~ msgctxt "name" -#~ msgid "GCode Profile Reader" -#~ msgstr "Lecteur de profil GCode" - -#~ msgctxt "@info:status" -#~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" -#~ msgstr "Des erreurs sont apparues lors de l'ouverture de votre fichier SolidWorks ! Veuillez vérifier s'il est possible d'ouvrir votre fichier dans SolidWorks sans que cela ne cause de problèmes." - -#~ msgctxt "@info:status" -#~ msgid "Error while starting %s!" -#~ msgstr "Erreur lors du lancement de %s !" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Simulation view" +#~ msgid "Simulation View" #~ msgstr "Vue simulation" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences." -#~ msgstr "Cura collecte des statistiques anonymes sur le découpage. Vous pouvez désactiver cette fonctionnalité dans les préférences." - -#~ msgctxt "@menuitem" -#~ msgid "Global" -#~ msgstr "Global" - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal exception has occurred. 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 "" -#~ "

    Une exception fatale s'est produite. Veuillez nous envoyer ce Rapport d'incident pour résoudre le problème

    \n" -#~ "

    Veuillez utiliser le bouton « Envoyer rapport » pour publier automatiquement un rapport d'erreur sur nos serveurs

    \n" -#~ " " - -#~ msgctxt "@label Cura version" -#~ msgid "Cura version: {version}
    " -#~ msgstr "Version Cura : {version}
    " - -#~ msgctxt "@label Platform" -#~ msgid "Platform: {platform}
    " -#~ msgstr "Plateforme : {platform}
    " - -#~ msgctxt "@label Qt version" -#~ msgid "Qt version: {qt}
    " -#~ msgstr "Version Qt : {qt}
    " - -#~ msgctxt "@label PyQt version" -#~ msgid "PyQt version: {pyqt}
    " -#~ msgstr "Version PyQt : {pyqt}
    " - -#~ msgctxt "@label OpenGL" -#~ msgid "OpenGL: {opengl}
    " -#~ msgstr "OpenGL : {opengl}
    " - -#~ msgctxt "@title:groupbox" -#~ msgid "Exception traceback" -#~ msgstr "Retraçage de l'exception" - -#~ msgctxt "@label" -#~ msgid "Material diameter" -#~ msgstr "Diamètre du matériau" - -#~ msgctxt "@title:window" -#~ msgid "Cura SolidWorks Plugin Configuration" -#~ msgstr "Configuration du plug-in Cura SolidWorks" - -#~ msgctxt "@action:label" -#~ msgid "Default quality of the exported STL:" -#~ msgstr "Qualité par défaut du STL exporté :" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always ask" -#~ msgstr "Toujours demander" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Fine quality" -#~ msgstr "Toujours utiliser la qualité Fine" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Coarse quality" -#~ msgstr "Toujours utiliser la qualité grossière" - -#~ msgctxt "@title:window" -#~ msgid "Import SolidWorks File as STL..." -#~ msgstr "Importer le fichier SolidWorks comme STL..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Quality of the Exported STL" -#~ msgstr "Qualité du STL exporté" - -#~ msgctxt "@action:label" -#~ msgid "Quality" -#~ msgstr "Qualité" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse" -#~ msgstr "Grossière" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine" -#~ msgstr "Fine" - -#~ msgctxt "@" -#~ msgid "No Profile Available" -#~ msgstr "Aucun profil disponible" - -#~ msgctxt "@label" -#~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders" -#~ msgstr "Ce paramètre est toujours partagé par tous les extrudeurs. Le modifier ici entraînera la modification de la valeur pour tous les extrudeurs." - -#~ msgctxt "@tooltip" -#~ msgid "Time specification
    " -#~ msgstr "Spécification de temps
    " - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Reset camera position" -#~ msgstr "&Réinitialiser la position de la caméra" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save project" -#~ msgstr "Enregistrer le projet" - -#~ msgctxt "@title:tab" -#~ msgid "Prepare" -#~ msgstr "Préparer" - -#~ msgctxt "@title:tab" -#~ msgid "Monitor" -#~ msgstr "Surveiller" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "Vérifier la compatibilité" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura" -#~ msgstr "Donne la possibilité d'ouvrir certains fichiers via SolidWorks. Ces fichiers sont ensuite convertis et chargés dans Cura." - -#~ msgctxt "@label:status" -#~ msgid "Blocked" -#~ msgstr "Bloqué" - -#~ msgctxt "@label:status" -#~ msgid "Can't start print" -#~ msgstr "Ne peux pas imprimer" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect.." -#~ msgstr "Ouvrir Connect" - -#~ msgctxt "@info:title" -#~ msgid "Print Details" -#~ msgstr "Les détails d'impression" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB." -#~ msgstr "Pour s'assurer que votre {machine_name} est pourvue des dernières fonctionnalités, il est recommandé de mettre régulièrement à jour le firmware. Cela peut se faire sur la {machine_name} (lorsque connectée au réseau) ou via USB." - -#~ msgctxt "@info:title" -#~ msgid "Layer View" -#~ msgstr "Vue en couches" - -#~ msgctxt "@menuitem" -#~ msgid "Browse plugins" -#~ msgstr "Parcourir les plug-ins" - -#~ msgctxt "@info:title" -#~ msgid "Export Details" -#~ msgstr "Exporter les détails" - -#~ msgctxt "@label" -#~ msgid "" -#~ "

    A fatal exception has occurred that we could not recover from!

    \n" -#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " -#~ msgstr "" -#~ "

    Une erreur fatale que nous ne pouvons résoudre s'est produite !

    \n" -#~ "

    Veuillez utiliser les informations ci-dessous pour envoyer un rapport d'erreur à http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " - -#~ msgctxt "@action:button" -#~ msgid "Open Web Page" -#~ msgstr "Ouvrir la page Web" - -#~ msgctxt "@action:button" -#~ msgid "Ok" -#~ msgstr "Ok" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "Cette imprimante n'est pas configurée pour héberger un groupe d'imprimantes connectées Ultimaker 3." - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" -#~ msgstr "L'imprimante est configurée pour héberger un groupe de %1 imprimantes connectées Ultimaker 3." - -#~ msgctxt "@label" -#~ msgid "Completed on: " -#~ msgstr "Finalisé sur : " - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "Ouvre la page des tâches d'impression avec votre navigateur web." - -#~ msgctxt "@label" -#~ msgid "PRINTER GROUP" -#~ msgstr "GROUPE D'IMPRIMANTES" - -#~ msgctxt "@action:warning" -#~ msgid "Loading a project will clear all models on the buildplate" -#~ msgstr "Le chargement d'un projet effacera tous les modèles sur le plateau" - -#~ msgctxt "@label" -#~ msgid "" -#~ " plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ " le plug-in contient une licence.\n" -#~ "Vous devez approuver cette licence pour installer ce plug-in.\n" -#~ "Acceptez-vous les clauses ci-dessous ?" - -#~ msgctxt "@label" -#~ msgid "00h 00min" -#~ msgstr "00 h 00 min" - -#~ msgctxt "@tooltip" -#~ msgid "Time information" -#~ msgstr "Information horaire" - -#~ msgctxt "@description" -#~ msgid "Print time" -#~ msgstr "Imprimer l'heure" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - -#~ msgctxt "@title:window" -#~ msgid "Cura" -#~ msgstr "Cura" - -#~ msgctxt "@label" -#~ msgid "Check material compatibility" -#~ msgstr "Vérifier la compatibilité du matériau" - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection (Cluster)" -#~ msgstr "Connexion au réseau UM3 (Cluster)" - -#~ msgctxt "description" -#~ msgid "Provides the Layer view." -#~ msgstr "Permet la vue en couches." - -#~ msgctxt "name" -#~ msgid "Layer View" -#~ msgstr "Vue en couches" - -#~ msgctxt "@item:inlistbox" -#~ msgid "X-Ray" -#~ msgstr "Rayon-X" - -#~ msgctxt "@label" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "Accepte les G-Code et les envoie par Wi-Fi à une Doodle3D WiFi-Box." - -#~ msgctxt "@item:inmenu" -#~ msgid "Doodle3D printing" -#~ msgstr "Impression avec Doodle3D" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D" -#~ msgstr "Imprimer avec Doodle3D" - -#~ msgctxt "@info:tooltip" -#~ msgid "Print with " -#~ msgstr "Imprimer avec" - -#~ msgctxt "@title:menu" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Enable Scan devices..." -#~ msgstr "Activer les périphériques de numérisation..." - -#~ msgctxt "@info:progress" -#~ msgid "Saving to Removable Drive {0}" -#~ msgstr "Enregistrement sur le lecteur amovible {0}" - -#~ msgctxt "@info:status" -#~ msgid "Could not save to {0}: {1}" -#~ msgstr "Impossible d'enregistrer {0} : {1}" - -#~ msgctxt "@info:status" -#~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!" -#~ msgstr "Gardez à l'esprit que vous devez rouvrir votre fichier SolidWorks manuellement ! Le fait de recharger le modèle ne marchera pas." - -#~ msgctxt "@item:inlistbox" -#~ msgid "Layers" -#~ msgstr "Couches" - -#~ msgid "Browse plugins" -#~ msgstr "Parcourir les plug-ins" - -#~ msgctxt "@item:inmenu" -#~ msgid "Solid" -#~ msgstr "Solide" - -#~ msgctxt "@label" -#~ msgid "The file {0} already exists. Are you sure you want to overwrite it?" -#~ msgstr "Le fichier {0} existe déjà. Êtes vous sûr de vouloir le remplacer ?" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export profile to {0}: {1}" -#~ msgstr "Échec de l'exportation du profil vers {0} : {1}" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export profile to {0}: Writer plugin reported failure." -#~ msgstr "Échec de l'exportation du profil vers {0} : Le plug-in du générateur a rapporté une erreur." - -#~ msgctxt "@info:status" -#~ msgid "Exported profile to {0}" -#~ msgstr "Profil exporté vers {0}" - -#~ msgctxt "@info:status" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "Échec de l'importation du profil depuis le fichier {0} : {1}" - -#~ msgctxt "@title:window" -#~ msgid "Doodle3D Settings" -#~ msgstr "Paramètres Doodle3D" - -#~ msgctxt "@title:window" -#~ msgid "Print to: %1" -#~ msgstr "Imprimer sur : %1" - -#~ msgctxt "@label" -#~ msgid "Extruder Temperature: %1/%2°C" -#~ msgstr "Température de l'extrudeuse : %1/%2 °C" - -#~ msgctxt "@label" -#~ msgid "Bed Temperature: %1/%2°C" -#~ msgstr "Température du plateau : %1/%2 °C" - -#~ msgctxt "@label" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@label" -#~ msgid "View Mode: Layers" -#~ msgstr "Mode d’affichage : couches" - -#~ msgctxt "@info:status" -#~ msgid "Could not import material %1: %2" -#~ msgstr "Impossible d'importer le matériau %1 : %2" - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported material %1" -#~ msgstr "Matériau %1 importé avec succès" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export material to %1: %2" -#~ msgstr "Échec de l'export de matériau vers %1 : %2" - -#~ msgctxt "@info:status" -#~ msgid "Successfully exported material to %1" -#~ msgstr "Matériau exporté avec succès vers %1" - -#~ msgctxt "@label" -#~ msgid "%1 m / ~ %2 g / ~ %4 %3" -#~ msgstr "%1 m / ~ %2 g / ~ %4 %3" - -#~ msgctxt "@label" -#~ msgid "%1 m / ~ %2 g" -#~ msgstr "%1 m / ~ %2 g" - -#~ msgctxt "@label" -#~ msgid "Hotend" -#~ msgstr "Extrémité chaude" - -#~ msgctxt "@action:button" -#~ msgid "View Mode" -#~ msgstr "Mode d’affichage" - -#~ msgctxt "@title:tab" -#~ msgid "Print" -#~ msgstr "Imprimer" - -#~ msgctxt "@label" -#~ msgid "0%" -#~ msgstr "0 %" - -#~ msgctxt "@label" -#~ msgid "Empty infill will leave your model hollow with low strength." -#~ msgstr "Un remplissage vide laissera votre modèle creux pour une solidité faible." - -#~ msgctxt "@label" -#~ msgid "20%" -#~ msgstr "20 %" - -#~ msgctxt "@label" -#~ msgid "Light (20%) infill will give your model an average strength." -#~ msgstr "Un remplissage clairsemé (20 %) donnera à votre modèle une solidité moyenne." - -#~ msgctxt "@label" -#~ msgid "50%" -#~ msgstr "50 %" - -#~ msgctxt "@label" -#~ msgid "Dense (50%) infill will give your model an above average strength." -#~ msgstr "Un remplissage dense (50 %) donnera à votre modèle une solidité supérieure à la moyenne." - -#~ msgctxt "@label" -#~ msgid "100%" -#~ msgstr "100 %" - -#~ msgctxt "@label" -#~ msgid "Solid (100%) infill will make your model completely solid." -#~ msgstr "Un remplissage solide (100 %) rendra votre modèle vraiment résistant." - -#~ msgctxt "@label" -#~ msgid "Gradual" -#~ msgstr "Graduel" - -#~ msgctxt "description" -#~ msgid "Provides support for writing X3G files" -#~ msgstr "Permet l'écriture de fichiers X3G" - -#~ msgctxt "name" -#~ msgid "X3G Writer" -#~ msgstr "Générateur X3G" - -#~ msgctxt "@label" -#~ msgid "Machine Settings action" -#~ msgstr "Action Paramètres de la machine" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "X-Ray View" -#~ msgstr "Vue Rayon-X" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the X-Ray view." -#~ msgstr "Permet la vue Rayon-X." - -#~ msgctxt "@label" -#~ msgid "X3D Reader" -#~ msgstr "Lecteur X3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for reading X3D files." -#~ msgstr "Fournit la prise en charge de la lecture de fichiers X3D." - -#~ msgctxt "@label" -#~ msgid "GCode Writer" -#~ msgstr "Générateur de GCode" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Writes GCode to a file." -#~ msgstr "Enregistre le GCode dans un fichier." - -#~ msgctxt "@action:button Preceded by 'Ready to'." -#~ msgid "Print with Doodle3D" -#~ msgstr "Imprimer avec Doodle3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "Affiche les changements depuis la dernière version." - -#~ msgctxt "@label" -#~ msgid "Profile flatener" -#~ msgstr "Aplatisseur de profil" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "Créer un profil de changements de qualité aplati." - -#~ msgctxt "@label" -#~ msgid "USB printing" -#~ msgstr "Impression par USB" - -#~ msgctxt "@info:whatsthis" -#~ 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 "X3G Writer Plugin Description" -#~ msgid "Writes X3G to a file" -#~ msgstr "Enregistre le X3G dans un fichier" - -#~ msgctxt "@label" -#~ msgid "Removable Drive Output Device Plugin" -#~ msgstr "Plugin de périphérique de sortie sur disque amovible" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides removable drive hotplugging and writing support." -#~ msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible." - -#~ msgctxt "@info:whatsthis" -#~ msgid "Manages network connections to Ultimaker 3 printers" -#~ msgstr "Gère les connexions réseau vers les imprimantes Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "PrintCore différent (Cura : {0}, Imprimante : {1}) sélectionné pour l'extrudeuse {2}" - -#~ msgctxt "@label" -#~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "Le PrintCore {0} n'est pas correctement calibré. Le calibrage XY doit être effectué sur l'imprimante." - -#~ msgctxt "@label" -#~ msgid "The print cores and/or materials on your printer differ from those within your current project. For the best result, always slice for the print cores and materials that are inserted in your printer." -#~ msgstr "Les PrintCores et / ou matériaux sur votre imprimante diffèrent de ceux de votre projet actuel. Pour un résultat optimal, découpez toujours pour les PrintCores et matériaux insérés dans votre imprimante." - -#~ msgctxt "@label" -#~ msgid "Post Processing" -#~ msgstr "Post-traitement" - -#~ msgctxt "Description of plugin" -#~ 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 "Auto Save" -#~ msgstr "Enregistrement auto" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "Enregistre automatiquement les Préférences, Machines et Profils après des modifications." - -#~ msgctxt "@label" -#~ msgid "Slice info" -#~ msgstr "Information sur le découpage" - -#~ msgctxt "@info:whatsthis" -#~ 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" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences" -#~ msgstr "Cura collecte des statistiques anonymes sur le découpage. Vous pouvez désactiver cette fonctionnalité dans les préférences" - -#~ msgctxt "@label" -#~ msgid "Material Profiles" -#~ msgstr "Profils matériels" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "Legacy Cura Profile Reader" -#~ msgstr "Lecteur de profil Cura antérieur" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "GCode Profile Reader" -#~ msgstr "Lecteur de profil GCode" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "Layer View" -#~ msgstr "Vue en couches" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the Layer view." -#~ msgstr "Permet la vue en couches." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.5 to 2.6" -#~ msgstr "Mise à niveau de 2.5 vers 2.6" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "Version Upgrade 2.1 to 2.2" -#~ msgstr "Mise à niveau vers 2.1 vers 2.2" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "Version Upgrade 2.2 to 2.4" -#~ msgstr "Mise à niveau de 2.2 vers 2.4" - -#~ msgctxt "@info:whatsthis" -#~ 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 "Image Reader" -#~ msgstr "Lecteur d'images" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "CuraEngine Backend" -#~ msgstr "Système CuraEngine" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "Per Model Settings Tool" -#~ msgstr "Outil de paramètres par modèle" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the Per Model Settings." -#~ msgstr "Fournit les paramètres par modèle." - -#~ msgctxt "@label" -#~ msgid "3MF Reader" -#~ msgstr "Lecteur 3MF" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for reading 3MF files." -#~ msgstr "Fournit la prise en charge de la lecture de fichiers 3MF." - -#~ msgctxt "@label" -#~ msgid "Solid View" -#~ msgstr "Vue solide" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides a normal solid mesh view." -#~ msgstr "Affiche une vue en maille solide normale." - -#~ msgctxt "@label" -#~ msgid "G-code Reader" -#~ msgstr "Lecteur G-Code" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Allows loading and displaying G-code files." -#~ msgstr "Permet le chargement et l'affichage de fichiers G-Code." - -#~ msgctxt "@label" -#~ msgid "Cura Profile Writer" -#~ msgstr "Générateur de profil Cura" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for exporting Cura profiles." -#~ msgstr "Fournit la prise en charge de l'exportation de profils Cura." - -#~ msgctxt "@label" -#~ msgid "3MF Writer" -#~ msgstr "Générateur 3MF" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for writing 3MF files." -#~ msgstr "Permet l'écriture de fichiers 3MF" - -#~ msgctxt "@label" -#~ msgid "Ultimaker machine actions" -#~ msgstr "Actions de la machine Ultimaker" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "Cura Profile Reader" -#~ msgstr "Lecteur de profil Cura" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing Cura profiles." -#~ msgstr "Fournit la prise en charge de l'importation de profils Cura." - -#~ msgctxt "@info" -#~ msgid "%(width).1f x %(depth).1f x %(height).1f mm" -#~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#~ msgctxt "@label" -#~ msgid "Build Plate Shape" -#~ msgstr "Forme du plateau" - -#~ msgctxt "@option:check" -#~ msgid "Machine Center is Zero" -#~ msgstr "Le centre de la machine est zéro" - -#~ msgctxt "@option:check" -#~ msgid "Heated Bed" -#~ msgstr "Plateau chauffant" - -#~ msgctxt "@label" -#~ msgid "GCode Flavor" -#~ msgstr "GCode Parfum" - -#~ msgctxt "@label" -#~ msgid "Material Diameter" -#~ msgstr "Diamètre du matériau" - -#~ 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 "@item:inlistbox" -#~ msgid "Ultimaker" -#~ msgstr "Ultimaker" - -#~ msgctxt "@label" -#~ msgid "Support library for scientific computing " -#~ msgstr "Prise en charge de la bibliothèque pour le calcul scientifique " - -#~ msgctxt "@tooltip" -#~ msgid "Print Setup

    Edit or review the settings for the active print job." -#~ msgstr "Configuration de l'impression

    Modifier ou réviser les paramètres pour la tâche d'impression active." - -#~ msgctxt "@tooltip" -#~ msgid "Print Monitor

    Monitor the state of the connected printer and the print job in progress." -#~ msgstr "Moniteur de l'imprimante

    Surveiller l'état de l'imprimante connectée et la progression de la tâche d'impression." - -#~ msgctxt "@title:menuitem %1 is the value from the printer" -#~ msgid "Automatic: %1" -#~ msgstr "Automatique : %1" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3d model" -#~ msgstr "Veuillez charger un modèle 3D" - -#~ msgctxt "@label" -#~ msgid "Print Selected Model with %1" -#~ msgid_plural "Print Selected Models With %1" -#~ msgstr[0] "Imprimer le modèle sélectionné avec %1" -#~ msgstr[1] "Imprimer les modèles sélectionnés avec %1" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}" -#~ msgstr "Impossible de démarrer une nouvelle tâche d'impression car l'imprimante est occupée. Pas de PrinterCore inséré dans la fente {0}." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.4 to 2.5" -#~ msgstr "Mise à niveau de 2.4 vers 2.5" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5." -#~ msgstr "Configurations des mises à niveau de Cura 2.4 vers Cura 2.5." - -#~ msgctxt "@info:status" -#~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead." -#~ msgstr "Impossible de trouver un profil de qualité pour cette combinaison. Les paramètres par défaut seront utilisés à la place." - -#~ msgctxt "@title:window" -#~ msgid "Oops!" -#~ msgstr "Oups !" - -#~ msgctxt "@label" -#~ msgid "" -#~ "

    A fatal exception has occurred that we could not recover from!

    \n" -#~ "

    We hope this picture of a kitten helps you recover from the shock.

    \n" -#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " -#~ msgstr "" -#~ "

    Une erreur fatale que nous ne pouvons résoudre s'est produite !

    \n" -#~ "

    Nous espérons que cette image d'un chaton vous aidera à vous remettre du choc.

    \n" -#~ "

    Veuillez utiliser les informations ci-dessous pour envoyer un rapport d'erreur à http://github.com/Ultimaker/Cura/issues

    " - -#~ msgctxt "@label" -#~ msgid "Please enter the correct settings for your printer below:" -#~ msgstr "Indiquez les bons paramètres pour votre imprimante ci-dessous :" - -#~ msgctxt "@label" -#~ msgid "Extruder %1" -#~ msgstr "Extrudeur %1" - -#~ msgctxt "@label Followed by extruder selection drop-down." -#~ msgid "Print model with" -#~ msgstr "Imprimer le modèle avec" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for language changes to have effect." -#~ msgstr "Vous devez redémarrer l'application pour que les changements de langue prennent effet." - -#~ msgctxt "@info:tooltip" -#~ msgid "Moves the camera so the model is in the center of the view when an model is selected" -#~ msgstr "Bouge la caméra afin que le modèle sélectionné se trouve au centre de la vue." - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete &Selection" -#~ msgstr "&Supprimer la sélection" - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Open File..." -#~ msgstr "&Ouvrir un fichier..." - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Open Project..." -#~ msgstr "&Ouvrir un projet..." - -#~ msgctxt "@title:window" -#~ msgid "Multiply Model" -#~ msgstr "Multiplier le modèle" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &All" -#~ msgstr "Enregistrer &tout" - -#~ msgctxt "@title:window" -#~ msgid "Open file" -#~ msgstr "Ouvrir un fichier" - -#~ msgctxt "@title:window" -#~ msgid "Open workspace" -#~ msgstr "Ouvrir l'espace de travail" - -#~ msgctxt "@label" -#~ msgid "Hollow" -#~ msgstr "Creux" - -#~ msgctxt "@label" -#~ msgid "No (0%) infill will leave your model hollow at the cost of low strength" -#~ msgstr "L'absence de remplissage (0 %) laissera votre modèle creux pour une solidité faible" - -#~ msgctxt "@label" -#~ msgid "Light" -#~ msgstr "Clairsemé" - -#~ msgctxt "@label" -#~ msgid "Light (20%) infill will give your model an average strength" -#~ msgstr "Un remplissage clairsemé (20 %) donnera à votre modèle une solidité moyenne" - -#~ msgctxt "@label" -#~ msgid "Dense" -#~ msgstr "Dense" - -#~ msgctxt "@label" -#~ msgid "Dense (50%) infill will give your model an above average strength" -#~ msgstr "Un remplissage dense (50 %) donnera à votre modèle une solidité supérieure à la moyenne" - -#~ msgctxt "@label" -#~ msgid "Solid" -#~ msgstr "Solide" - -#~ msgctxt "@label" -#~ msgid "Solid (100%) infill will make your model completely solid" -#~ msgstr "Un remplissage solide (100 %) rendra votre modèle vraiment résistant" - -#~ msgctxt "@label" -#~ msgid "Enable Support" -#~ msgstr "Activer les supports" - -#~ msgctxt "@label" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Active les structures de support. Ces structures soutiennent les modèles présentant d'importants porte-à-faux." - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints? Read the Ultimaker Troubleshooting Guides" -#~ msgstr "Besoin d'aide pour améliorer vos impressions ? Lisez les Guides de dépannage Ultimaker" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}. Please approve the access request on the printer." -#~ msgstr "Connecté sur le réseau à {0}. Veuillez approuver la demande d'accès sur l'imprimante." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}." -#~ msgstr "Connecté sur le réseau à {0}." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}. No access to control the printer." -#~ msgstr "Connecté sur le réseau à {0}. Pas d'accès pour commander l'imprimante." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job because the printer is busy. Please check the printer." -#~ msgstr "Impossible de démarrer une nouvelle tâche d'impression car l'imprimante est occupée. Vérifiez l'imprimante." - -#~ msgctxt "@label" -#~ msgid "You made changes to the following setting(s)/override(s):" -#~ msgstr "Vous avez modifié le(s) paramètre(s) / forçage(s) suivant(s) :" - -#~ msgctxt "@window:title" -#~ msgid "Switched profiles" -#~ msgstr "Profils échangés" - -#~ msgctxt "@label" -#~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?" -#~ msgstr "Voulez-vous transférer le(s) %d paramètre(s) / forçage(s) modifié(s) sur ce profil ?" - -#~ msgctxt "@label" -#~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost." -#~ msgstr "Si vous transférez vos paramètres, ils écraseront les paramètres dans le profil. Si vous ne transférez pas ces paramètres, ils seront perdus." - -#~ msgctxt "@label" -#~ msgid "Cost per Meter (Approx.)" -#~ msgstr "Coût par mètre (env.)" - -#~ msgctxt "@label" -#~ msgid "%1/m" -#~ msgstr "%1/m" - -#~ msgctxt "@info:tooltip" -#~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information." -#~ msgstr "Afficher les 5 couches supérieures en vue en couches ou seulement la couche du dessus. Le rendu de 5 couches prend plus de temps mais peut fournir davantage d'informations." - -#~ msgctxt "@action:button" -#~ msgid "Display five top layers in layer view" -#~ msgstr "Afficher les cinq couches supérieures en vue en couches" - -#~ msgctxt "@info:tooltip" -#~ msgid "Should only the top layers be displayed in layerview?" -#~ msgstr "Seules les couches supérieures doivent-elles être affichées en vue en couches ?" - -#~ msgctxt "@option:check" -#~ msgid "Only display top layer(s) in layer view" -#~ msgstr "Afficher uniquement la (les) couche(s) supérieure(s) en vue en couches" - -#~ msgctxt "@label" -#~ msgid "Opening files" -#~ msgstr "Ouverture des fichiers" - -#~ msgctxt "@label" -#~ msgid "Printer Monitor" -#~ msgstr "Moniteur de l'imprimante" - -#~ msgctxt "@label" -#~ msgid "Temperatures" -#~ msgstr "Températures" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Preparing to slice..." -#~ msgstr "Préparation de la découpe..." - -#~ msgctxt "@window:title" -#~ msgid "Changes on the Printer" -#~ msgstr "Modifications sur l'imprimante" - -#~ msgctxt "@action:inmenu" -#~ msgid "&Duplicate Model" -#~ msgstr "&Dupliquer le modèle" - -#~ msgctxt "@label" -#~ msgid "Helper Parts:" -#~ msgstr "Pièces d'aide :" - -#~ msgctxt "@label" -#~ msgid "Enable printing support structures. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "Activez l'impression des structures de support. Cela créera des structures de support sous le modèle afin de l'empêcher de s'affaisser ou de s'imprimer dans les airs." - -#~ msgctxt "@label" -#~ msgid "Don't print support" -#~ msgstr "Ne pas imprimer le support" - -#~ msgctxt "@label" -#~ msgid "Print support using %1" -#~ msgstr "Imprimer le support à l'aide de %1" - -#~ msgctxt "@label:listbox" -#~ msgid "Printer:" -#~ msgstr "Imprimante :" - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profiles {0}" -#~ msgstr "Importation des profils {0} réussie" - -#~ msgctxt "@label" -#~ msgid "Scripts" -#~ msgstr "Scripts" - -#~ msgctxt "@label" -#~ msgid "Active Scripts" -#~ msgstr "Scripts actifs" - -#~ msgctxt "@label" -#~ msgid "Done" -#~ msgstr "Terminé" - -#~ msgctxt "@item:inlistbox" -#~ msgid "English" -#~ msgstr "Anglais" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Finnish" -#~ msgstr "Finnois" - -#~ msgctxt "@item:inlistbox" -#~ msgid "French" -#~ msgstr "Français" - -#~ msgctxt "@item:inlistbox" -#~ msgid "German" -#~ msgstr "Allemand" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Italian" -#~ msgstr "Italien" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Dutch" -#~ msgstr "Néerlandais" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Spanish" -#~ msgstr "Espagnol" - -#~ msgctxt "@label" -#~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?" -#~ msgstr "Voulez-vous modifier les PrintCores et matériaux dans Cura pour correspondre à votre imprimante ?" - -#~ msgctxt "@label:" -#~ msgid "Print Again" -#~ msgstr "Imprimer à nouveau" diff --git a/resources/i18n/fr_FR/fdmextruder.def.json.po b/resources/i18n/fr_FR/fdmextruder.def.json.po index 2d68ca8dba..b5bf75c6d9 100644 --- a/resources/i18n/fr_FR/fdmextruder.def.json.po +++ b/resources/i18n/fr_FR/fdmextruder.def.json.po @@ -1,12 +1,9 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-08 09:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -15,6 +12,96 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: fdmextruder.def.json +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adhérence" + +#: fdmextruder.def.json +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é." + +#: fdmextruder.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adhérence du plateau" + +#: fdmextruder.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diamètre" + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "Extrudeuse" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code label" +msgid "Extruder End G-Code" +msgstr "Extrudeuse G-Code de fin" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_abs label" +msgid "Extruder End Position Absolute" +msgstr "Extrudeuse Position de fin absolue" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x label" +msgid "Extruder End Position X" +msgstr "Extrudeuse Position de fin X" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y label" +msgid "Extruder End Position Y" +msgstr "Extrudeuse Position de fin Y" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Extrudeuse Position d'amorçage X" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Extrudeuse Position d'amorçage Y" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Extrudeuse Position d'amorçage Z" + +#: fdmextruder.def.json +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Ventilateur de refroidissement d'impression de l'extrudeuse" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_code label" +msgid "Extruder Start G-Code" +msgstr "Extrudeuse G-Code de démarrage" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_abs label" +msgid "Extruder Start Position Absolute" +msgstr "Extrudeuse Position de départ absolue" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "Extrudeuse Position de départ X" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "Extrudeuse Position de départ Y" + #: fdmextruder.def.json msgctxt "machine_settings label" msgid "Machine" @@ -26,69 +113,9 @@ msgid "Machine specific settings" msgstr "Paramètres spécifiques de la machine" #: fdmextruder.def.json -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "Extrudeuse" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID buse" - -#: fdmextruder.def.json -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 »." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diamètre de la buse" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x label" -msgid "Nozzle X Offset" -msgstr "Buse Décalage X" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "Buse Décalage Y" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code label" -msgid "Extruder Start G-Code" -msgstr "Extrudeuse G-Code de démarrage" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_abs label" -msgid "Extruder Start Position Absolute" -msgstr "Extrudeuse Position de départ 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." #: fdmextruder.def.json msgctxt "machine_extruder_start_pos_abs description" @@ -96,114 +123,9 @@ msgid "Make the extruder starting position absolute rather than relative to the msgstr "Rendre la position de départ de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête." #: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "Extrudeuse Position de départ X" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "Extrudeuse Position de départ Y" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code label" -msgid "Extruder End G-Code" -msgstr "Extrudeuse G-Code de fin" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_abs label" -msgid "Extruder End Position Absolute" -msgstr "Extrudeuse Position de fin absolue" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x label" -msgid "Extruder End Position X" -msgstr "Extrudeuse Position de fin X" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y label" -msgid "Extruder End Position Y" -msgstr "Extrudeuse Position de fin Y" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Extrudeuse Position d'amorçage Z" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Ventilateur de refroidissement d'impression de l'extrudeuse" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adhérence du plateau" - -#: fdmextruder.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adhérence" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Extrudeuse Position d'amorçage X" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Extrudeuse Position d'amorçage Y" - -#: fdmextruder.def.json -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 "material description" +msgid "Material" +msgstr "Matériau" #: fdmextruder.def.json msgctxt "material label" @@ -211,24 +133,91 @@ msgid "Material" msgstr "Matériau" #: fdmextruder.def.json -msgctxt "material description" -msgid "Material" -msgstr "Matériau" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diamètre de la buse" #: fdmextruder.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diamètre" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID buse" #: fdmextruder.def.json -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 "machine_nozzle_offset_x label" +msgid "Nozzle X Offset" +msgstr "Buse Décalage X" -#~ msgctxt "machine_extruder_start_code description" -#~ msgid "Start g-code to execute whenever turning the extruder on." -#~ msgstr "G-Code de démarrage à exécuter à chaque mise en marche de l'extrudeuse." +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "Buse Décalage Y" -#~ msgctxt "machine_extruder_end_code description" -#~ msgid "End g-code to execute whenever turning the extruder off." -#~ msgstr "G-Code de fin à exécuter à chaque arrêt de l'extrudeuse." +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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 »." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index 258b36bdc2..c81c03cd3d 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -1,12 +1,9 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-28 11:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -16,1497 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: fdmprinter.def.json -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Machine" +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." #: fdmprinter.def.json -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Paramètres spécifiques de la machine" +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." #: fdmprinter.def.json -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Type de machine" - -#: fdmprinter.def.json -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Le nom du modèle de votre imprimante 3D." - -#: fdmprinter.def.json -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Afficher les variantes de la machine" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "G-Code de démarrage" - -#: fdmprinter.def.json -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 \n" -"." - -#: fdmprinter.def.json -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "G-Code de fin" - -#: fdmprinter.def.json -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 \n" -"." - -#: fdmprinter.def.json -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID matériau" - -#: fdmprinter.def.json -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID du matériau. Cela est configuré automatiquement." - -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diamètre" - -#: fdmprinter.def.json -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é." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Attendre le chauffage du plateau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Attendre le chauffage de la buse" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Inclure les températures du matériau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Inclure la température du plateau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Largeur de la machine" - -#: fdmprinter.def.json -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "La largeur (sens X) de la zone imprimable." - -#: fdmprinter.def.json -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Profondeur de la machine" - -#: fdmprinter.def.json -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "La profondeur (sens Y) de la zone imprimable." - -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Hauteur de la machine" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "La hauteur (sens Z) de la zone imprimable." - -#: fdmprinter.def.json -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Forme du plateau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Rectangulaire" - -#: fdmprinter.def.json -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Elliptique" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Matériau du plateau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Verre" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Aluminium" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "A un plateau chauffé" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "Toujours écrire l'outil actif" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Est l'origine du centre" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Nombre d'extrudeuses" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Nombre d'extrudeuses activées" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Diamètre extérieur de la buse" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Longueur de la buse" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Angle de la buse" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Longueur de la zone chauffée" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Permettre le contrôle de la température de la buse" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Vitesse de chauffage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Vitesse de refroidissement" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Durée minimale température de veille" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Parfum G-Code" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Type de G-Code à générer." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumétrique)" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -#: fdmprinter.def.json -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Rétraction du firmware" - -#: fdmprinter.def.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 "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." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Les extrudeurs partagent le chauffage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Les extrudeuses partagent la buse" - -#: fdmprinter.def.json -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'." - -#: fdmprinter.def.json -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Rétraction initiale de la buse partagée" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Zones interdites" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Zones interdites au bec d'impression" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Polygone de la tête de la machine et du ventilateur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Hauteur du portique" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID buse" - -#: fdmprinter.def.json -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 »." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diamètre de la buse" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Décalage avec extrudeuse" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Extrudeuse Position d'amorçage Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Position d'amorçage absolue de l'extrudeuse" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Vitesse maximale X" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Vitesse maximale Y" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Vitesse maximale Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Vitesse maximale E" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "La vitesse maximale du filament." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Accélération maximale X" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Accélération maximale Y" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Accélération maximale Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Accélération maximale du filament" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Accélération par défaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Saccade X-Y par défaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Saccade Z par défaut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Saccade par défaut du filament" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Pas par millimètre (X)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Pas par millimètre (Y)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Pas par millimètre (Z)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Pas par millimètre (E)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Butée X en sens positif" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Butée Y en sens positif" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Butée Z en sens positif" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Taux d'alimentation minimal" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diamètre de roue du chargeur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "resolution label" -msgid "Quality" -msgstr "Qualité" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Hauteur de la couche" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Hauteur de la couche initiale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "line_width label" -msgid "Line Width" -msgstr "Largeur de ligne" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Largeur de ligne de la paroi" - -#: fdmprinter.def.json -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Largeur d'une seule ligne de la paroi." - -#: fdmprinter.def.json -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Largeur de ligne de la paroi externe" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Largeur de ligne de la (des) paroi(s) interne(s)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Largeur de la ligne du dessus/dessous" - -#: fdmprinter.def.json -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Largeur d'une seule ligne du dessus/dessous." - -#: fdmprinter.def.json -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Largeur de ligne de remplissage" - -#: fdmprinter.def.json -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Largeur d'une seule ligne de remplissage." - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Largeur des lignes de jupe/bordure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Largeur de ligne de support" - -#: fdmprinter.def.json -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Largeur d'une seule ligne de support." - -#: fdmprinter.def.json -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Largeur de ligne d'interface de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Largeur de ligne de plafond de support" - -#: fdmprinter.def.json -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Largeur d'une seule ligne de plafond de support." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Largeur de ligne de bas de support" - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Largeur d'une seule ligne de bas de support." - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Largeur de ligne de la tour d'amorçage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Largeur de ligne couche initiale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "shell label" -msgid "Walls" -msgstr "Parois" - -#: fdmprinter.def.json -msgctxt "shell description" -msgid "Shell" -msgstr "Coque" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Extrudeuse de paroi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extrudeuse de paroi externe" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extrudeuse de paroi interne" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Épaisseur de la paroi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Nombre de lignes de la paroi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Longueur de transition de la paroi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Nombre de distributions des parois" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Angle du seuil de transition de la paroi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Distance du filtre de transition des parois" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Marge du filtre de transition des parois" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Distance d'essuyage paroi extérieure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Insert de paroi externe" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Optimiser l'ordre d'impression des parois" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Ordre des parois" - -#: fdmprinter.def.json -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." -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." - -#: fdmprinter.def.json -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "De l'intérieur vers l'extérieur" - -#: fdmprinter.def.json -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "De l'extérieur vers l'intérieur" - -#: fdmprinter.def.json -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Alterner les parois supplémentaires" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Largeur minimale de la ligne de paroi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Largeur minimale de la ligne de paroi uniforme" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold label" -msgid "Split Middle Line Threshold" -msgstr "Seuil de ligne médiane fractionnée" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "La plus petite largeur de ligne, en tant que facteur de la largeur de ligne normale, au-dessus de laquelle la ligne centrale (s'il y en a une) sera divisée en deux. Réduisez ce paramètre pour utiliser des lignes plus nombreuses et plus fines. Augmentez pour utiliser des lignes moins nombreuses et plus larges. Notez que ceci s'applique -comme si- la forme entière devait être remplie avec la paroi, donc le milieu ici se réfère au milieu de l'objet entre deux bords extérieurs de la forme, même s'il y a réellement un remplissage ou une (autre) couche dans l'impression au lieu de la paroi." - -#: fdmprinter.def.json -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Largeur minimale de la ligne de paroi impaire" - -#: fdmprinter.def.json -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 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 uniforme plus élevée. La largeur maximale de la ligne de paroi impaire est calculée comme 2 * largeur minimale de la ligne de paroi paire," - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold label" -msgid "Add Middle Line Threshold" -msgstr "Ajouter un seuil de ligne médiane" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "La plus petite largeur de ligne, en tant que facteur de la largeur de ligne normale, au-dessus de laquelle une ligne centrale (s'il n'y en a pas déjà une) sera ajoutée. Réduisez ce paramètre pour utiliser des lignes plus nombreuses et plus fines. Augmentez pour utiliser des lignes moins nombreuses et plus larges. Notez que ceci s'applique -comme si- la forme entière devait être remplie avec la paroi, donc le milieu ici se réfère au milieu de l'objet entre deux bords extérieurs de la forme, même s'il y a réellement un remplissage ou une (autre) couche dans l'impression au lieu de la paroi." - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Imprimer parois fines" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Taille minimale des entités" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Largeur minimale de la ligne de paroi fine" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Expansion horizontale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Expansion horizontale de la couche initiale" - -#: fdmprinter.def.json -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 »." - -#: fdmprinter.def.json -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Expansion horizontale des trous" - -#: fdmprinter.def.json -msgctxt "hole_xy_offset description" -msgid "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." -msgstr "Le décalage appliqué à tous les trous dans chaque couche. Les valeurs positives augmentent la taille des trous ; les valeurs négatives réduisent la taille des trous." - -#: fdmprinter.def.json -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Alignement de la jointure en Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Utilisateur spécifié" - -#: fdmprinter.def.json -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Plus court" - -#: fdmprinter.def.json -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Aléatoire" - -#: fdmprinter.def.json -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Angle le plus aigu" - -#: fdmprinter.def.json -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Position de la jointure en Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Arrière gauche" - -#: fdmprinter.def.json -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Précédent" - -#: fdmprinter.def.json -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Arrière droit" - -#: fdmprinter.def.json -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Droite" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Avant droit" - -#: fdmprinter.def.json -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Avant" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Avant gauche" - -#: fdmprinter.def.json -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Gauche" - -#: fdmprinter.def.json -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "X Jointure en Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Y Jointure en Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Préférence de jointure d'angle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Aucun" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Masquer jointure" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Exposer jointure" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Masquer ou exposer jointure" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Masquage intelligent" - -#: fdmprinter.def.json -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Relatif à la jointure en Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Haut / bas" - -#: fdmprinter.def.json -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Haut / bas" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Extrudeuse de couche extérieure de la surface supérieure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Couches extérieures de la surface supérieure" - -#: fdmprinter.def.json -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é." - -#: fdmprinter.def.json -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extrudeuse du dessus/dessous" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Épaisseur du dessus/dessous" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Épaisseur du dessus" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Couches supérieures" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Épaisseur du dessous" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Couches inférieures" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Couches inférieures initiales" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Motif du dessus/dessous" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Le motif des couches du dessus/dessous." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Lignes" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Couche initiale du motif du dessous" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Lignes" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concentrique" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Relier les polygones supérieurs / inférieurs" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Ordre monotone dessus / dessous" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Sens de la ligne du dessus / dessous" +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)." #: fdmprinter.def.json msgctxt "skin_angles description" @@ -1514,379 +33,24 @@ msgid "A list of integer line directions to use when the top/bottom layers use t 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)." #: fdmprinter.def.json -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Aucune couche dans les trous en Z" +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é)." #: fdmprinter.def.json -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 "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)." #: fdmprinter.def.json -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Nombre supplémentaire de parois extérieures" +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)." #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Activer l'étirage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "N'étirer que la couche supérieure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Motif d'étirage" - -#: fdmprinter.def.json -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Le motif à utiliser pour étirer les surfaces supérieures." - -#: fdmprinter.def.json -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -#: fdmprinter.def.json -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Ordre d'étirage monotone" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Interligne de l'étirage" - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "La distance entre les lignes d'étirage." - -#: fdmprinter.def.json -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Flux d'étirage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Insert d'étirage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Vitesse d'étirage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Accélération d'étirage" - -#: fdmprinter.def.json -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "L'accélération selon laquelle l'étirage est effectué." - -#: fdmprinter.def.json -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Saccade d'étirage" - -#: fdmprinter.def.json -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Le changement instantané maximal de vitesse lors de l'étirage." - -#: fdmprinter.def.json -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Pourcentage de chevauchement de la couche extérieure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Chevauchement de la couche extérieure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Largeur de retrait de la couche extérieure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Largeur de retrait de la couche extérieure supérieure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Largeur de retrait de la couche extérieure inférieure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Distance d'expansion de la couche extérieure" - -#: fdmprinter.def.json -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é." - -#: fdmprinter.def.json -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Distance d'expansion de la couche extérieure supérieure" - -#: fdmprinter.def.json -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é." - -#: fdmprinter.def.json -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Distance d'expansion de la couche extérieure inférieure" - -#: fdmprinter.def.json -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é." - -#: fdmprinter.def.json -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Angle maximum de la couche extérieure pour l'expansion" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Largeur minimum de la couche extérieure pour l'expansion" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill label" -msgid "Infill" -msgstr "Remplissage" - -#: fdmprinter.def.json -msgctxt "infill description" -msgid "Infill" -msgstr "Remplissage" - -#: fdmprinter.def.json -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Extrudeuse de remplissage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Densité du remplissage" - -#: fdmprinter.def.json -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Adapte la densité de remplissage de l'impression." - -#: fdmprinter.def.json -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Distance d'écartement de ligne de remplissage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Motif de remplissage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Grille" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Lignes" - -#: fdmprinter.def.json -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Triangles" - -#: fdmprinter.def.json -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Trihexagonal" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Cubique" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Subdivision cubique" - -#: fdmprinter.def.json -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octaédrique" - -#: fdmprinter.def.json -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Quart cubique" - -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -#: fdmprinter.def.json -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Entrecroisé" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Entrecroisé 3D" - -#: fdmprinter.def.json -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroïde" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Éclair" - -#: fdmprinter.def.json -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Relier les lignes de remplissage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Relier les polygones de remplissage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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)." #: fdmprinter.def.json msgctxt "infill_angles description" @@ -1894,49 +58,44 @@ msgid "A list of integer line directions to use. Elements from the list are used 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)." #: fdmprinter.def.json -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." #: fdmprinter.def.json -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." #: fdmprinter.def.json -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Remplissage Décalage Y" +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "Une pièce entièrement contenue à l'intérieur d'une autre peut générer une bordure extérieure qui vient en contact avec l'intérieur de la pièce extérieure. Cette fonction supprime à cette distance toutes les bordures situées dans des vides intérieurs." #: fdmprinter.def.json -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" #: fdmprinter.def.json -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" #: fdmprinter.def.json -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" #: fdmprinter.def.json -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" #: fdmprinter.def.json -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é." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "infill_wall_line_count description" @@ -1948,284 +107,9 @@ msgstr "" "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." #: fdmprinter.def.json -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Coque de la subdivision cubique" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Pourcentage de chevauchement du remplissage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Chevauchement du remplissage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Distance de remplissage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Épaisseur de la couche de remplissage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Étapes de remplissage progressif" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Hauteur de l'étape de remplissage progressif" - -#: fdmprinter.def.json -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é." - -#: fdmprinter.def.json -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Imprimer le remplissage avant les parois" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Zone de remplissage minimum" - -#: fdmprinter.def.json -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)" - -#: fdmprinter.def.json -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Support de remplissage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Angle de porte-à-faux de remplissage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Épaisseur de soutien des bords de la couche" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Couches de soutien des bords de la couche extérieure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Angle de support du remplissage éclair" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Angle de saillie du remplissage éclair" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Angle d'élagage du remplissage éclair" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Angle de redressement du remplissage éclair" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material label" -msgid "Material" -msgstr "Matériau" - -#: fdmprinter.def.json -msgctxt "material description" -msgid "Material" -msgstr "Matériau" - -#: fdmprinter.def.json -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Température d’impression par défaut" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Température du volume d'impression" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Température d’impression" - -#: fdmprinter.def.json -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Température utilisée pour l'impression." - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Température d’impression couche initiale" - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Température utilisée pour l'impression de la première couche. Définissez-la sur 0 pour désactiver le traitement spécial de la couche initiale." - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Température d’impression initiale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Température d’impression finale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Modificateur de vitesse de refroidissement de l'extrusion" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Température du plateau par défaut" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Température du plateau" - -#: fdmprinter.def.json -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é." - -#: fdmprinter.def.json -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Température du plateau couche initiale" - -#: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" @@ -2233,1924 +117,19 @@ msgid "Adhesion Tendency" msgstr "Tendance à l'adhérence" #: fdmprinter.def.json -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." #: fdmprinter.def.json -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." #: fdmprinter.def.json -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Énergie de la surface." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Mise à l'échelle du facteur de compensation de contraction" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Compensation du rétrécissement du facteur d'échelle horizontale" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Compensation du rétrécissement du facteur d'échelle verticale" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Matériau cristallin" - -#: fdmprinter.def.json -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) ?" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Position anti-suintage rétractée" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Vitesse de rétraction de l'anti-suintage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Préparation de rupture Position rétractée" - -#: fdmprinter.def.json -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é." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Vitesse de rétraction de préparation de rupture" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Température de préparation de rupture" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Position rétractée de rupture" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Vitesse de rétraction de rupture" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Température de rupture" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Vitesse de purge d'insertion" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Longueur de la purge d'insertion" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Vitesse de purge de l'extrémité du filament" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Longueur de purge de l'extrémité du filament" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Durée maximum du stationnement" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Facteur de déplacement sans chargement" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flow label" -msgid "Flow" -msgstr "Débit" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Débit de paroi" - -#: fdmprinter.def.json -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Compensation de débit sur les lignes de la paroi." - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Débit de paroi externe" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Débit de paroi(s) interne(s)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Débit du dessus/dessous" - -#: fdmprinter.def.json -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Compensation de débit sur les lignes du dessus/dessous." - -#: fdmprinter.def.json -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Débit de la surface du dessus" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Débit de remplissage" - -#: fdmprinter.def.json -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Compensation de débit sur les lignes de remplissage." - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Débit de la jupe/bordure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Débit du support" - -#: fdmprinter.def.json -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Compensation de débit sur les lignes de support." - -#: fdmprinter.def.json -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Débit de l'interface de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Débit du plafond de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Débit du bas de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Débit de la tour d'amorçage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Débit de la couche initiale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Température de veille" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed label" -msgid "Speed" -msgstr "Vitesse" - -#: fdmprinter.def.json -msgctxt "speed description" -msgid "Speed" -msgstr "Vitesse" - -#: fdmprinter.def.json -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Vitesse d’impression" - -#: fdmprinter.def.json -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "La vitesse à laquelle l'impression s'effectue." - -#: fdmprinter.def.json -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Vitesse de remplissage" - -#: fdmprinter.def.json -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "La vitesse à laquelle le remplissage est imprimé." - -#: fdmprinter.def.json -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Vitesse d'impression de la paroi" - -#: fdmprinter.def.json -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "La vitesse à laquelle les parois sont imprimées." - -#: fdmprinter.def.json -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Vitesse d'impression de la paroi externe" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Vitesse d'impression de la paroi interne" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Vitesse de la couche extérieure de la surface supérieure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Vitesse d'impression du dessus/dessous" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Vitesse d'impression des supports" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Vitesse d'impression du remplissage de support" - -#: fdmprinter.def.json -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é." - -#: fdmprinter.def.json -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Vitesse d'impression de l'interface de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Vitesse d'impression des plafonds de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Vitesse d'impression des bas de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Vitesse de la tour d'amorçage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Vitesse de déplacement" - -#: fdmprinter.def.json -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "La vitesse à laquelle les déplacements s'effectuent." - -#: fdmprinter.def.json -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Vitesse de la couche initiale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Vitesse d’impression de la couche initiale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Vitesse de déplacement de la couche initiale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Vitesse d'impression de la jupe/bordure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Vitesse du décalage en Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Nombre de couches plus lentes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Rapport d'égalisation des débits" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Activer le contrôle d'accélération" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Accélération de l'impression" - -#: fdmprinter.def.json -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "L'accélération selon laquelle l'impression s'effectue." - -#: fdmprinter.def.json -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Accélération de remplissage" - -#: fdmprinter.def.json -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "L'accélération selon laquelle le remplissage est imprimé." - -#: fdmprinter.def.json -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Accélération de la paroi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Accélération de la paroi externe" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Accélération de la paroi intérieure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Accélération de couche extérieure de surface supérieure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Accélération du dessus/dessous" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Accélération du support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Accélération de remplissage du support" - -#: fdmprinter.def.json -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é." - -#: fdmprinter.def.json -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Accélération de l'interface du support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Accélération des plafonds de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Accélération des bas de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Accélération de la tour d'amorçage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Accélération de déplacement" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Accélération de la couche initiale" - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "L'accélération pour la couche initiale." - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Accélération de l'impression de la couche initiale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Accélération de déplacement de la couche initiale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Accélération de la jupe/bordure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Activer le contrôle de saccade" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Imprimer en saccade" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Saccade de remplissage" - -#: fdmprinter.def.json -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é." - -#: fdmprinter.def.json -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Saccade de paroi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Saccade de paroi externe" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Saccade de paroi intérieure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Saccade de couches extérieures de la surface supérieure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Saccade du dessus/dessous" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Saccade des supports" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Saccade de remplissage du support" - -#: fdmprinter.def.json -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é." - -#: fdmprinter.def.json -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Saccade de l'interface de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Saccade des plafonds de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Saccade des bas de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Saccade de la tour d'amorçage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Saccade de déplacement" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Saccade de la couche initiale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Saccade d’impression de la couche initiale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Saccade de déplacement de la couche initiale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Saccade de la jupe/bordure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel label" -msgid "Travel" -msgstr "Déplacement" - -#: fdmprinter.def.json -msgctxt "travel description" -msgid "travel" -msgstr "déplacement" - -#: fdmprinter.def.json -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Activer la rétraction" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Rétracter au changement de couche" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Distance de rétraction" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Vitesse de rétraction" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Vitesse de rétraction" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Vitesse de rétraction d'amorçage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Volume supplémentaire à l'amorçage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Déplacement minimal de rétraction" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Nombre maximal de rétractions" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Intervalle de distance minimale d'extrusion" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "limit_support_retractions label" -msgid "Limit Support Retractions" -msgstr "Limiter les rétractations du support" - -#: fdmprinter.def.json -msgctxt "limit_support_retractions description" -msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -msgstr "Omettre la rétraction lors du passage entre supports en ligne droite. L'activation de ce paramètre permet de gagner du temps lors de l'impression, mais peut conduire à un stringing excessif à l'intérieur de la structure de support." - -#: fdmprinter.def.json -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Mode de détours" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Désactivé" - -#: fdmprinter.def.json -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Tout" - -#: fdmprinter.def.json -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Pas sur la surface extérieure" - -#: fdmprinter.def.json -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Pas dans la couche extérieure" - -#: fdmprinter.def.json -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "À l'intérieur du remplissage" - -#: fdmprinter.def.json -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Distance de détour max. sans rétraction" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Rétracter avant la paroi externe" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Éviter les pièces imprimées lors du déplacement" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Éviter les supports lors du déplacement" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Distance d'évitement du déplacement" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "X début couche" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Y début couche" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Décalage en Z lors d’une rétraction" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Hauteur du décalage en Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Décalage en Z après changement d'extrudeuse" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cooling label" -msgid "Cooling" -msgstr "Refroidissement" - -#: fdmprinter.def.json -msgctxt "cooling description" -msgid "Cooling" -msgstr "Refroidissement" - -#: fdmprinter.def.json -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Activer le refroidissement de l'impression" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Vitesse du ventilateur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Vitesse régulière du ventilateur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Vitesse maximale du ventilateur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Vitesse des ventilateurs initiale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Vitesse régulière du ventilateur à la hauteur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Vitesse régulière du ventilateur à la couche" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Durée minimale d’une couche" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Vitesse minimale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Relever la tête" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support label" -msgid "Support" -msgstr "Supports" - -#: fdmprinter.def.json -msgctxt "support description" -msgid "Support" -msgstr "Supports" - -#: fdmprinter.def.json -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Générer les supports" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extrudeuse de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extrudeuse de remplissage du support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extrudeuse de support de la première couche" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extrudeuse de l'interface du support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extrudeuse des plafonds de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extrudeuse des bas de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Structure du support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" - -#: fdmprinter.def.json -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Arborescence" - -#: fdmprinter.def.json -msgctxt "support_tree_angle label" -msgid "Tree Support Branch Angle" -msgstr "Angle des branches de support arborescent" - -#: fdmprinter.def.json -msgctxt "support_tree_angle description" -msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "Angle des branches. Utilisez un angle plus faible pour les rendre plus verticales et plus stables ; utilisez un angle plus élevé pour avoir plus de portée." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance label" -msgid "Tree Support Branch Distance" -msgstr "Distance des branches de support arborescent" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance description" -msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -msgstr "Distance à laquelle doivent se trouver les branches lorsqu'elles touchent le modèle. Si vous réduisez cette distance, le support arborescent touchera le modèle à plus d'endroits, ce qui causera un meilleur porte-à-faux mais rendra le support plus difficile à enlever." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter label" -msgid "Tree Support Branch Diameter" -msgstr "Diamètre des branches de support arborescent" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter_angle label" -msgid "Tree Support Branch Diameter Angle" -msgstr "Angle de diamètre des branches de support arborescent" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution label" -msgid "Tree Support Collision Resolution" -msgstr "Résolution de collision du support arborescent" - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution description" -msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -msgstr "Résolution servant à calculer les collisions afin d'éviter de heurter le modèle. Plus ce paramètre est faible, plus les arborescences seront précises et stables, mais cela augmente considérablement le temps de découpage." - -#: fdmprinter.def.json -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Positionnement des supports" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "En contact avec le plateau" - -#: fdmprinter.def.json -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Partout" - -#: fdmprinter.def.json -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Angle de porte-à-faux de support" - -#: fdmprinter.def.json -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éé." - -#: fdmprinter.def.json -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Motif du support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Lignes" - -#: fdmprinter.def.json -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Grille" - -#: fdmprinter.def.json -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Triangles" - -#: fdmprinter.def.json -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -#: fdmprinter.def.json -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Entrecroisé" - -#: fdmprinter.def.json -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroïde" - -#: fdmprinter.def.json -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Nombre de lignes de la paroi du support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Relier les lignes de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Relier les zigzags de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Densité du support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Distance d'écartement de ligne du support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Direction de ligne de remplissage du support" - -#: fdmprinter.def.json -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é)." - -#: fdmprinter.def.json -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Activer la bordure du support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Largeur de la bordure du support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Nombre de lignes de la bordure du support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Distance Z des supports" - -#: fdmprinter.def.json -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. This value is rounded up to a multiple of the layer height." -msgstr "Distance entre le dessus/dessous du support et l'impression. Cet écart offre un espace permettant de retirer les supports une fois l'impression du modèle terminée. Cette valeur est arrondie au chiffre supérieur jusqu'à atteindre un multiple de la hauteur de la couche." - -#: fdmprinter.def.json -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Distance supérieure des supports" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Distance inférieure des supports" - -#: fdmprinter.def.json -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Distance entre l’impression et le bas des supports." - -#: fdmprinter.def.json -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Distance X/Y des supports" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Priorité de distance des supports" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y annule Z" - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z annule X/Y" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Distance X/Y minimale des supports" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Hauteur de la marche de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Largeur maximale de la marche de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Distance de jointement des supports" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Expansion horizontale des supports" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Épaisseur de la couche de remplissage de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Étapes de remplissage graduel du support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Hauteur d'étape de remplissage graduel du support" - -#: fdmprinter.def.json -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é." - -#: fdmprinter.def.json -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Surface minimale de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Activer l'interface de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Activer les plafonds de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Activer les bas de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Épaisseur de l'interface de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Épaisseur du plafond de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Épaisseur du bas de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Résolution de l'interface du support" - -#: fdmprinter.def.json -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 "Lors de la vérification de l'emplacement d'un modèle au-dessus et en-dessous du support, effectuer des étapes de la hauteur définie. Des valeurs plus faibles découperont plus lentement, tandis que des valeurs plus élevées peuvent causer l'impression d'un support normal à des endroits où il devrait y avoir une interface de support." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "support_interface_density description" @@ -4158,898 +137,19 @@ msgid "Adjusts the density of the roofs and floors of the support structure. A h 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." #: fdmprinter.def.json -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Densité du plafond de 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." #: fdmprinter.def.json -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 "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é." #: fdmprinter.def.json -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Distance d'écartement de ligne du plafond de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Densité du bas de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Distance d'écartement de ligne de bas de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Motif de l'interface de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Lignes" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Grille" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Triangles" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Motif du plafond de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Lignes" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Grille" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Triangles" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Motif du bas de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Lignes" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Grille" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Triangles" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Surface minimale de l'interface de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Surface minimale du plafond de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Surface minimale du bas de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Expansion horizontale de l'interface de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Expansion horizontale du plafond de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Expansion horizontale du bas de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Direction de ligne d'interface du support" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Direction de la ligne de plafond de support" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Direction de la ligne de bas de support" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Annulation de la vitesse du ventilateur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Vitesse du ventilateur de couche extérieure supportée" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Utilisation de tours" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Diamètre de la tour" - -#: fdmprinter.def.json -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "Le diamètre d’une tour spéciale." - -#: fdmprinter.def.json -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Diamètre maximal supporté par la tour" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Angle du toit de la tour" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Maillage de support descendant" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "La scène comporte un maillage de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adhérence du plateau" - -#: fdmprinter.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adhérence" - -#: fdmprinter.def.json -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Activer la goutte de préparation" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Extrudeuse Position d'amorçage X" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Extrudeuse Position d'amorçage Y" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Type d'adhérence du plateau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Jupe" - -#: fdmprinter.def.json -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Bordure" - -#: fdmprinter.def.json -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Radeau" - -#: fdmprinter.def.json -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Aucun" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Extrudeuse d'adhérence du plateau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Extrudeur de la jupe/bordure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Extrudeur de la base du raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Extrudeur du milieu du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Extrudeur du haut du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Nombre de lignes de la jupe" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Distance de la jupe" - -#: fdmprinter.def.json -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 "" -"La distance horizontale entre la jupe et la première couche de l’impression.\n" -"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." - -#: fdmprinter.def.json -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Longueur minimale de la jupe/bordure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Largeur de la bordure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Nombre de lignes de la bordure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Distance de la bordure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "La bordure remplace le support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Bordure uniquement sur l'extérieur" - -#: fdmprinter.def.json -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 "Imprimer uniquement la bordure sur l'extérieur du modèle. Cela réduit la quantité de bordure que vous devez retirer par la suite, sans toutefois véritablement réduire l'adhérence au plateau." - -#: fdmprinter.def.json -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Marge supplémentaire du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Lissage de radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Lame d'air du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Chevauchement Z de la couche initiale" - -#: fdmprinter.def.json -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 "La première et la deuxième couche du modèle se chevauchent dans la direction Z pour compenser le filament perdu dans l'entrefer. Toutes les couches au-dessus de la première couche du modèle seront décalées de ce montant." - -#: fdmprinter.def.json -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Couches supérieures du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Épaisseur de la couche supérieure du radeau" - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Épaisseur des couches supérieures du radeau." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Largeur de la ligne supérieure du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Interligne supérieur du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Couches du milieu du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Épaisseur intermédiaire du radeau" - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Épaisseur de la couche intermédiaire du radeau." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Largeur de la ligne intermédiaire du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Interligne intermédiaire du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Épaisseur de la base du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Largeur de la ligne de base du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Espacement des lignes de base du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Vitesse d’impression du radeau" - -#: fdmprinter.def.json -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "La vitesse à laquelle le radeau est imprimé." - -#: fdmprinter.def.json -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Vitesse d’impression du dessus du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Vitesse d’impression du milieu du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Vitesse d’impression de la base du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Accélération de l'impression du radeau" - -#: fdmprinter.def.json -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "L'accélération selon laquelle le radeau est imprimé." - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Accélération de l'impression du dessus du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Accélération de l'impression du milieu du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Accélération de l'impression de la base du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Saccade d’impression du radeau" - -#: fdmprinter.def.json -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "La saccade selon laquelle le radeau est imprimé." - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Saccade d’impression du dessus du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Saccade d’impression du milieu du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Saccade d’impression de la base du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Vitesse du ventilateur pendant le radeau" - -#: fdmprinter.def.json -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "La vitesse du ventilateur pour le radeau." - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Vitesse du ventilateur pour le dessus du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Vitesse du ventilateur pour le milieu du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Vitesse du ventilateur pour la base du radeau" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Double extrusion" - -#: fdmprinter.def.json -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Paramètres utilisés pour imprimer avec plusieurs extrudeuses." - -#: fdmprinter.def.json -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Activer la tour d'amorçage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Taille de la tour d'amorçage" - -#: fdmprinter.def.json -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "La largeur de la tour d'amorçage." - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Volume minimum de la tour d'amorçage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Position X de la tour d'amorçage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Position Y de la tour d'amorçage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "prime_tower_wipe_enabled description" @@ -5057,244 +157,14 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f 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." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Bordure 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." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Les tours d'amorçage peuvent avoir besoin de l'adhérence supplémentaire d'une bordure, même si le modèle n'en a pas besoin. Ne peut actuellement pas être utilisé avec le type d'adhérence « Raft » (radeau)." - -#: fdmprinter.def.json -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Activer le bouclier de suintage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Angle du bouclier de suintage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Distance du bouclier de suintage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Distance de rétraction de changement de buse" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Vitesse de rétraction de changement de buse" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Vitesse de rétraction de changement de buse" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Vitesse d'amorçage de changement de buse" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Corrections" - -#: fdmprinter.def.json -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Rendez les mailles plus adaptées à l'impression 3D." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Joindre les volumes se chevauchant" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Supprimer tous les trous" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Raccommodage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Conserver les faces disjointes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Chevauchement des mailles fusionnées" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Supprimer l'intersection des mailles" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Alterner le retrait des maillages" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Supprimer les premières couches vides" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Résolution maximum" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Résolution de déplacement maximum" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Écart maximum" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Écart maximal de la surface d'extrusion" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Modes spéciaux" - -#: fdmprinter.def.json -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Des moyens non traditionnels d'imprimer vos modèles." - -#: fdmprinter.def.json -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Séquence d'impression" - -#: fdmprinter.def.json -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 "retraction_combing option all" +msgid "All" +msgstr "Tout" #: fdmprinter.def.json msgctxt "print_sequence option all_at_once" @@ -5302,1273 +172,19 @@ msgid "All at Once" msgstr "Tout en même temps" #: fdmprinter.def.json -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Un à la fois" +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)." #: fdmprinter.def.json -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" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Rang de traitement du maillage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Maille de coupe" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Moule" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Largeur minimale de moule" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Hauteur du plafond de moule" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Angle du moule" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Maillage de support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Maillage anti-surplomb" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Mode de surface" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Surface" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Les deux" - -#: fdmprinter.def.json -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Spiraliser le contour extérieur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Lisser les contours spiralisés" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Extrusion relative" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "experimental label" -msgid "Experimental" -msgstr "Expérimental" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Tolérance à la découpe" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Milieu" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exclusif" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusif" - -#: fdmprinter.def.json -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Largeur de ligne de couche extérieure de la surface supérieure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Motif de couche extérieure de surface supérieure" - -#: fdmprinter.def.json -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "Le motif des couches supérieures." - -#: fdmprinter.def.json -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Lignes" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Ordre monotone de la surface supérieure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Sens de lignes de couche extérieure de surface supérieure" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Optimisation du déplacement de remplissage" - -#: fdmprinter.def.json -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é." - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature label" -msgid "Auto Temperature" -msgstr "Température auto" - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature description" -msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -msgstr "Modifie automatiquement la température pour chaque couche en fonction de la vitesse de flux moyenne pour cette couche." - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Graphique de la température du flux" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Circonférence minimale du polygone" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Démantèlement du support en morceaux" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Taille de morceaux du support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Comptage des lignes de morceaux du support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Activer le bouclier" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Distance X/Y du bouclier" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Limite du bouclier" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Pleine hauteur" - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Limitée" - -#: fdmprinter.def.json -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Hauteur du bouclier" - -#: fdmprinter.def.json -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é." - -#: fdmprinter.def.json -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Rendre le porte-à-faux imprimable" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Angle maximal du modèle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Surface maximale du trou en porte-à-faux" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Activer la roue libre" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Volume en roue libre" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Volume minimal avant roue libre" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Vitesse de roue libre" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Taille de poches entrecroisées 3D" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Image de densité du remplissage croisé" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Image de densité du remplissage croisé pour le support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Activer les supports coniques" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Angle des supports coniques" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Largeur minimale des supports coniques" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Surfaces floues" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Couche floue à l'extérieur uniquement" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Épaisseur de la couche floue" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Densité de la couche floue" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Distance entre les points de la couche floue" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Facteur de compensation du débit" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wireframe_enabled label" -msgid "Wire Printing" -msgstr "Impression filaire" - -#: fdmprinter.def.json -msgctxt "wireframe_enabled description" -msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -msgstr "Imprime uniquement la surface extérieure avec une structure grillagée et clairsemée. Cette impression est « dans les airs » et est réalisée en imprimant horizontalement les contours du modèle aux intervalles donnés de l’axe Z et en les connectant au moyen de lignes ascendantes et diagonalement descendantes." - -#: fdmprinter.def.json -msgctxt "wireframe_height label" -msgid "WP Connection Height" -msgstr "Hauteur de connexion pour l'impression filaire" - -#: fdmprinter.def.json -msgctxt "wireframe_height description" -msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -msgstr "La hauteur des lignes ascendantes et diagonalement descendantes entre deux pièces horizontales. Elle détermine la densité globale de la structure du filet. Uniquement applicable à l'impression filaire." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset label" -msgid "WP Roof Inset Distance" -msgstr "Distance d’insert de toit pour les impressions filaires" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset description" -msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -msgstr "La distance couverte lors de l'impression d'une connexion d'un contour de toit vers l’intérieur. Uniquement applicable à l'impression filaire." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed label" -msgid "WP Speed" -msgstr "Vitesse d’impression filaire" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed description" -msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -msgstr "Vitesse à laquelle la buse se déplace lorsqu’elle extrude du matériau. Uniquement applicable à l'impression filaire." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom label" -msgid "WP Bottom Printing Speed" -msgstr "Vitesse d’impression filaire du bas" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom description" -msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -msgstr "Vitesse d’impression de la première couche qui constitue la seule couche en contact avec le plateau d'impression. Uniquement applicable à l'impression filaire." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up label" -msgid "WP Upward Printing Speed" -msgstr "Vitesse d’impression filaire ascendante" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up description" -msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -msgstr "Vitesse d’impression d’une ligne ascendante « dans les airs ». Uniquement applicable à l'impression filaire." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down label" -msgid "WP Downward Printing Speed" -msgstr "Vitesse d’impression filaire descendante" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down description" -msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -msgstr "Vitesse d’impression d’une ligne diagonalement descendante. Uniquement applicable à l'impression filaire." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat label" -msgid "WP Horizontal Printing Speed" -msgstr "Vitesse d’impression filaire horizontale" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat description" -msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -msgstr "Vitesse d'impression du contour horizontal du modèle. Uniquement applicable à l'impression filaire." - -#: fdmprinter.def.json -msgctxt "wireframe_flow label" -msgid "WP Flow" -msgstr "Débit de l'impression filaire" - -#: fdmprinter.def.json -msgctxt "wireframe_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -msgstr "Compensation du débit : la quantité de matériau extrudée est multipliée par cette valeur. Uniquement applicable à l'impression filaire." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection label" -msgid "WP Connection Flow" -msgstr "Débit de connexion de l'impression filaire" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection description" -msgid "Flow compensation when going up or down. Only applies to Wire Printing." -msgstr "Compensation du débit lorsqu’il monte ou descend. Uniquement applicable à l'impression filaire." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat label" -msgid "WP Flat Flow" -msgstr "Débit des fils plats" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat description" -msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -msgstr "Compensation du débit lors de l’impression de lignes planes. Uniquement applicable à l'impression filaire." - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay label" -msgid "WP Top Delay" -msgstr "Attente pour le haut de l'impression filaire" - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay description" -msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -msgstr "Temps d’attente après un déplacement vers le haut, afin que la ligne ascendante puisse durcir. Uniquement applicable à l'impression filaire." - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay label" -msgid "WP Bottom Delay" -msgstr "Attente pour le bas de l'impression filaire" - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay description" -msgid "Delay time after a downward move. Only applies to Wire Printing." -msgstr "Temps d’attente après un déplacement vers le bas. Uniquement applicable à l'impression filaire." - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay label" -msgid "WP Flat Delay" -msgstr "Attente horizontale de l'impression filaire" - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay description" -msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -msgstr "Attente entre deux segments horizontaux. L’introduction d’un tel temps d’attente peut permettre une meilleure adhérence aux couches précédentes au niveau des points de connexion, tandis que des temps d’attente trop longs peuvent provoquer un affaissement. Uniquement applicable à l'impression filaire." - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed label" -msgid "WP Ease Upward" -msgstr "Écart ascendant de l'impression filaire" - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed description" -msgid "" -"Distance of an upward move which is extruded with half speed.\n" -"This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "" -"Distance d’un déplacement ascendant qui est extrudé à mi-vitesse.\n" -"Cela peut permettre une meilleure adhérence aux couches précédentes sans surchauffer le matériau dans ces couches. Uniquement applicable à l'impression filaire." - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump label" -msgid "WP Knot Size" -msgstr "Taille de nœud de l'impression filaire" - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump description" -msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -msgstr "Crée un petit nœud en haut d’une ligne ascendante pour que la couche horizontale suivante s’y accroche davantage. Uniquement applicable à l'impression filaire." - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down label" -msgid "WP Fall Down" -msgstr "Descente de l'impression filaire" - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down description" -msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "La distance de laquelle le matériau chute après avoir extrudé vers le haut. Cette distance est compensée. Uniquement applicable à l'impression filaire." - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along label" -msgid "WP Drag Along" -msgstr "Entraînement de l'impression filaire" - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along description" -msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "Distance sur laquelle le matériau d’une extrusion ascendante est entraîné par l’extrusion diagonalement descendante. La distance est compensée. Uniquement applicable à l'impression filaire." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy label" -msgid "WP Strategy" -msgstr "Stratégie de l'impression filaire" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy description" -msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -msgstr "Stratégie garantissant que deux couches consécutives se touchent à chaque point de connexion. La rétraction permet aux lignes ascendantes de durcir dans la bonne position, mais cela peut provoquer l’écrasement des filaments. Un nœud peut être fait à la fin d’une ligne ascendante pour augmenter les chances de raccorder cette ligne et la laisser refroidir. Toutefois, cela peut nécessiter de ralentir la vitesse d’impression. Une autre stratégie consiste à compenser l’affaissement du dessus d’une ligne ascendante, mais les lignes ne tombent pas toujours comme prévu." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option compensate" -msgid "Compensate" -msgstr "Compenser" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option knot" -msgid "Knot" -msgstr "Nœud" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option retract" -msgid "Retract" -msgstr "Rétraction" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down label" -msgid "WP Straighten Downward Lines" -msgstr "Redresser les lignes descendantes de l'impression filaire" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down description" -msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -msgstr "Pourcentage d’une ligne diagonalement descendante couvert par une pièce à lignes horizontales. Cela peut empêcher le fléchissement du point le plus haut des lignes ascendantes. Uniquement applicable à l'impression filaire." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down label" -msgid "WP Roof Fall Down" -msgstr "Affaissement du dessus de l'impression filaire" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down description" -msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -msgstr "La distance d’affaissement lors de l’impression des lignes horizontales du dessus d’une pièce qui sont imprimées « dans les airs ». Cet affaissement est compensé. Uniquement applicable à l'impression filaire." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along label" -msgid "WP Roof Drag Along" -msgstr "Entraînement du dessus de l'impression filaire" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along description" -msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -msgstr "La distance parcourue par la pièce finale d’une ligne intérieure qui est entraînée lorsqu’elle retourne sur le contour extérieur du dessus. Cette distance est compensée. Uniquement applicable à l'impression filaire." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay label" -msgid "WP Roof Outer Delay" -msgstr "Délai d'impression filaire de l'extérieur du dessus" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay description" -msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -msgstr "Temps passé sur le périmètre extérieur de l’orifice qui deviendra le dessus. Un temps plus long peut garantir une meilleure connexion. Uniquement applicable pour l'impression filaire." - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance label" -msgid "WP Nozzle Clearance" -msgstr "Ecartement de la buse de l'impression filaire" - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance description" -msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -msgstr "Distance entre la buse et les lignes descendantes horizontalement. Un espacement plus important génère des lignes diagonalement descendantes avec un angle moins abrupt, qui génère alors des connexions moins ascendantes avec la couche suivante. Uniquement applicable à l'impression filaire." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Utiliser des couches adaptatives" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Variation maximale des couches adaptatives" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Taille des étapes de variation des couches adaptatives" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Taille de la topographie des couches adaptatives" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Angle de parois en porte-à-faux" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Vitesse de paroi en porte-à-faux" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Activer les paramètres du pont" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Longueur minimale de la paroi du pont" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Limite de support de la couche extérieure du pont" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Densité maximale du remplissage mince du pont" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Roue libre pour paroi du pont" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Vitesse de paroi du pont" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Débit de paroi du pont" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Vitesse de la couche extérieure du pont" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Débit de la couche extérieure du pont" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Densité de la couche extérieure du pont" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Vitesse du ventilateur du pont" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Le pont possède plusieurs couches" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Vitesse de la deuxième couche extérieure du pont" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Débit de la deuxième couche extérieure du pont" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Densité de la deuxième couche extérieure du pont" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Vitesse de la troisième couche extérieure du pont" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Débit de la troisième couche extérieure du pont" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Densité de la troisième couche extérieure du pont" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Essuyer la buse entre les couches" - -#: fdmprinter.def.json -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é." - -#: fdmprinter.def.json -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Volume de matériau entre les essuyages" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Activation de la rétraction d'essuyage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Distance de rétraction d'essuyage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Vitesse de rétraction d'essuyage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Vitesse de rétraction d'essuyage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Vitesse primaire de rétraction d'essuyage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Pause d'essuyage" - -#: fdmprinter.def.json -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pause après l'irrétraction." - -#: fdmprinter.def.json -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Décalage en Z de l'essuyage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Hauteur du décalage en Z d'essuyage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Vitesse du décalage d'essuyage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Position X de la brosse d'essuyage" - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "Emplacement X où le script d'essuyage démarrera." - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Nombre de répétitions d'essuyage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Distance de déplacement d'essuyage" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Taille maximale des petits trous" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Longueur max de petite structure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Vitesse de petite structure" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Vitesse de la couche initiale de petite structure" - -#: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "material_alternate_walls label" @@ -6581,34 +197,349 @@ msgid "Alternate wall directions every other layer and inset. Useful for materia 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." #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Supprimer les coins intérieurs du radeau" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Aluminium" #: fdmprinter.def.json -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 "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "Toujours écrire l'outil actif" #: fdmprinter.def.json -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Nombre de parois à la base du radeau" +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." #: fdmprinter.def.json -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 "hole_xy_offset description" +msgid "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." +msgstr "Le décalage appliqué à tous les trous dans chaque couche. Les valeurs positives augmentent la taille des trous ; les valeurs négatives réduisent la taille des trous." #: fdmprinter.def.json -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Paramètres de ligne de commande" +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." #: fdmprinter.def.json -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 "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 »." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Maillage anti-surplomb" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Position anti-suintage rétractée" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Vitesse de rétraction de l'anti-suintage" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Éviter les pièces imprimées lors du déplacement" + +#: fdmprinter.def.json +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Éviter les supports lors du déplacement" + +#: fdmprinter.def.json +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Précédent" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Arrière gauche" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Arrière droit" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Les deux" + +#: fdmprinter.def.json +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Couches inférieures" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Couche initiale du motif du dessous" + +#: fdmprinter.def.json +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Distance d'expansion de la couche extérieure inférieure" + +#: fdmprinter.def.json +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Largeur de retrait de la couche extérieure inférieure" + +#: fdmprinter.def.json +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Épaisseur du dessous" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Préparation de rupture Position rétractée" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Vitesse de rétraction de préparation de rupture" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Température de préparation de rupture" + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Position rétractée de rupture" + +#: fdmprinter.def.json +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Vitesse de rétraction de rupture" + +#: fdmprinter.def.json +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Température de rupture" + +#: fdmprinter.def.json +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Démantèlement du support en morceaux" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Vitesse du ventilateur du pont" + +#: fdmprinter.def.json +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Le pont possède plusieurs couches" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Densité de la deuxième couche extérieure du pont" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Débit de la deuxième couche extérieure du pont" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Vitesse de la deuxième couche extérieure du pont" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Densité de la couche extérieure du pont" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Débit de la couche extérieure du pont" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Vitesse de la couche extérieure du pont" + +#: fdmprinter.def.json +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Limite de support de la couche extérieure du pont" + +#: fdmprinter.def.json +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Densité maximale du remplissage mince du pont" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Densité de la troisième couche extérieure du pont" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Débit de la troisième couche extérieure du pont" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Vitesse de la troisième couche extérieure du pont" + +#: fdmprinter.def.json +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Roue libre pour paroi du pont" + +#: fdmprinter.def.json +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Débit de paroi du pont" + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Vitesse de paroi du pont" + +#: fdmprinter.def.json +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Bordure" + +#: fdmprinter.def.json +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Distance de la bordure" + +#: fdmprinter.def.json +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "Marge d'évitement de la bordure intérieure" + +#: fdmprinter.def.json +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Nombre de lignes de la bordure" + +#: fdmprinter.def.json +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Bordure uniquement sur l'extérieur" + +#: fdmprinter.def.json +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "La bordure remplace le support" + +#: fdmprinter.def.json +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Largeur de la bordure" + +#: fdmprinter.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adhérence du plateau" + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Extrudeuse d'adhérence du plateau" + +#: fdmprinter.def.json +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Type d'adhérence du plateau" + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Matériau du plateau" + +#: fdmprinter.def.json +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Forme du plateau" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Température du plateau" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Température du plateau couche initiale" + +#: fdmprinter.def.json +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Température du volume d'impression" #: fdmprinter.def.json msgctxt "center_object label" @@ -6616,1066 +547,6211 @@ msgid "Center Object" msgstr "Centrer l'objet" #: fdmprinter.def.json -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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Vitesse de roue libre" + +#: fdmprinter.def.json +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Volume en roue libre" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Mode de détours" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Paramètres de ligne de commande" + +#: fdmprinter.def.json +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" + +#: fdmprinter.def.json +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concentrique" + +#: fdmprinter.def.json +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Angle des supports coniques" + +#: fdmprinter.def.json +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Largeur minimale des supports coniques" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Relier les lignes de remplissage" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Relier les polygones de remplissage" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Relier les lignes de support" + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Relier les zigzags de support" + +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Relier les polygones supérieurs / inférieurs" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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é." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Vitesse de refroidissement" + +#: fdmprinter.def.json +msgctxt "cooling description" +msgid "Cooling" +msgstr "Refroidissement" + +#: fdmprinter.def.json +msgctxt "cooling label" +msgid "Cooling" +msgstr "Refroidissement" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Entrecroisé" + +#: fdmprinter.def.json +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Entrecroisé" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Entrecroisé 3D" + +#: fdmprinter.def.json +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Taille de poches entrecroisées 3D" + +#: fdmprinter.def.json +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Image de densité du remplissage croisé pour le support" + +#: fdmprinter.def.json +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Image de densité du remplissage croisé" + +#: fdmprinter.def.json +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Matériau cristallin" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Cubique" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Subdivision cubique" + +#: fdmprinter.def.json +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Coque de la subdivision cubique" + +#: fdmprinter.def.json +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Maille de coupe" + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Accélération par défaut" + +#: fdmprinter.def.json +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Température du plateau par défaut" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Saccade par défaut du filament" + +#: fdmprinter.def.json +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Température d’impression par défaut" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Saccade X-Y par défaut" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Saccade Z par défaut" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diamètre" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Zones interdites" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support." +msgstr "Distance entre l’impression et le bas des supports." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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. This value is rounded up to a multiple of the layer height." +msgstr "Distance entre le dessus/dessous du support et l'impression. Cet écart offre un espace permettant de retirer les supports une fois l'impression du modèle terminée. Cette valeur est arrondie au chiffre supérieur jusqu'à atteindre un multiple de la hauteur de la couche." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)" + +#: fdmprinter.def.json +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Hauteur du bouclier" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Limite du bouclier" + +#: fdmprinter.def.json +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Distance X/Y du bouclier" + +#: fdmprinter.def.json +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Maillage de support descendant" + +#: fdmprinter.def.json +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Double extrusion" + +#: fdmprinter.def.json +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Elliptique" + +#: fdmprinter.def.json +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Activer le contrôle d'accélération" + +#: fdmprinter.def.json +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Activer les paramètres du pont" + +#: fdmprinter.def.json +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Activer la roue libre" + +#: fdmprinter.def.json +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Activer les supports coniques" + +#: fdmprinter.def.json +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Activer le bouclier" + +#: fdmprinter.def.json +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Activer l'étirage" + +#: fdmprinter.def.json +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Activer le contrôle de saccade" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Permettre le contrôle de la température de la buse" + +#: fdmprinter.def.json +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Activer le bouclier de suintage" + +#: fdmprinter.def.json +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Activer la goutte de préparation" + +#: fdmprinter.def.json +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Activer la tour d'amorçage" + +#: fdmprinter.def.json +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Activer le refroidissement de l'impression" + +#: fdmprinter.def.json +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Activer la rétraction" + +#: fdmprinter.def.json +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Activer la bordure du support" + +#: fdmprinter.def.json +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Activer les bas de support" + +#: fdmprinter.def.json +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Activer l'interface de support" + +#: fdmprinter.def.json +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Activer les plafonds de support" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Activer l'accélération des déplacements" + +#: fdmprinter.def.json +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Activer les saccades de déplacement" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "G-Code de fin" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Longueur de purge de l'extrémité du filament" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Vitesse de purge de l'extrémité du filament" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Partout" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exclusif" + +#: fdmprinter.def.json +msgctxt "experimental label" +msgid "Experimental" +msgstr "Expérimental" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Exposer jointure" + +#: fdmprinter.def.json +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Raccommodage" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Nombre de parois de remplissage supplémentaire" + +#: fdmprinter.def.json +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Nombre supplémentaire de parois extérieures" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Extrudeuse Position d'amorçage X" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Extrudeuse Position d'amorçage Y" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Extrudeuse Position d'amorçage Z" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Les extrudeurs partagent le chauffage" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Les extrudeuses partagent la buse" + +#: fdmprinter.def.json +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Modificateur de vitesse de refroidissement de l'extrusion" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Vitesse du ventilateur" + +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Annulation de la vitesse du ventilateur" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diamètre de roue du chargeur" + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Température d’impression finale" + +#: fdmprinter.def.json +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Rétraction du firmware" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extrudeuse de support de la première couche" + +#: fdmprinter.def.json +msgctxt "material_flow label" +msgid "Flow" +msgstr "Débit" + +#: fdmprinter.def.json +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Rapport d'égalisation des débits" + +#: fdmprinter.def.json +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Facteur de compensation du débit" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Graphique de la température du flux" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Compensation de débit sur les lignes de remplissage." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Compensation de débit sur les lignes de support." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Compensation de débit sur les lignes du dessus/dessous." + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Compensation de débit sur les lignes de la paroi." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Longueur de la purge d'insertion" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Vitesse de purge d'insertion" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Avant" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Avant gauche" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Avant droit" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Pleine hauteur" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Surfaces floues" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Densité de la couche floue" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Couche floue à l'extérieur uniquement" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Distance entre les points de la couche floue" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Épaisseur de la couche floue" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Parfum G-Code" + +#: fdmprinter.def.json +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 \n" +"." + +#: fdmprinter.def.json +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 \n" +"." + +#: fdmprinter.def.json +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID du matériau. Cela est configuré automatiquement." + +#: fdmprinter.def.json +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Hauteur du portique" + +#: fdmprinter.def.json +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Générer une structure de connexion" + +#: fdmprinter.def.json +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Générer les supports" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Verre" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Hauteur de l'étape de remplissage progressif" + +#: fdmprinter.def.json +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Étapes de remplissage progressif" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Hauteur d'étape de remplissage graduel du support" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Étapes de remplissage graduel du support" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Grille" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Grille" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Grille" + +#: fdmprinter.def.json +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Grille" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Grille" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +#: fdmprinter.def.json +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroïde" + +#: fdmprinter.def.json +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroïde" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "A un plateau chauffé" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Vitesse de chauffage" + +#: fdmprinter.def.json +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Longueur de la zone chauffée" + +#: fdmprinter.def.json +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é." + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Masquer jointure" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Masquer ou exposer jointure" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Expansion horizontale des trous" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Expansion horizontale" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Compensation du rétrécissement du facteur d'échelle horizontale" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance description" +msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." +msgstr "Distance à laquelle doivent se trouver les branches lorsqu'elles touchent le modèle. Si vous réduisez cette distance, le support arborescent touchera le modèle à plus d'endroits, ce qui causera un meilleur porte-à-faux mais rendra le support plus difficile à enlever." + +#: fdmprinter.def.json +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é." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Inclure la température du plateau" + +#: fdmprinter.def.json +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Inclure les températures du matériau" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusif" + +#: fdmprinter.def.json +msgctxt "infill description" +msgid "Infill" +msgstr "Remplissage" + +#: fdmprinter.def.json +msgctxt "infill label" +msgid "Infill" +msgstr "Remplissage" + +#: fdmprinter.def.json +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Accélération de remplissage" + +#: fdmprinter.def.json +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Imprimer le remplissage avant les parois" + +#: fdmprinter.def.json +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Densité du remplissage" + +#: fdmprinter.def.json +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Extrudeuse de remplissage" + +#: fdmprinter.def.json +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Débit de remplissage" + +#: fdmprinter.def.json +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Saccade de remplissage" + +#: fdmprinter.def.json +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Épaisseur de la couche de remplissage" + +#: fdmprinter.def.json +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Sens de ligne de remplissage" + +#: fdmprinter.def.json +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Distance d'écartement de ligne de remplissage" + +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Multiplicateur de ligne de remplissage" + +#: fdmprinter.def.json +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Largeur de ligne de remplissage" + +#: fdmprinter.def.json +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Maille de remplissage" + +#: fdmprinter.def.json +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Angle de porte-à-faux de remplissage" + +#: fdmprinter.def.json +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Chevauchement du remplissage" + +#: fdmprinter.def.json +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Pourcentage de chevauchement du remplissage" + +#: fdmprinter.def.json +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Motif de remplissage" + +#: fdmprinter.def.json +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Vitesse de remplissage" + +#: fdmprinter.def.json +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Support de remplissage" + +#: fdmprinter.def.json +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Optimisation du déplacement de remplissage" + +#: fdmprinter.def.json +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Distance de remplissage" + +#: fdmprinter.def.json +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Remplissage Décalage X" + +#: fdmprinter.def.json +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Remplissage Décalage Y" + +#: fdmprinter.def.json +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Couches inférieures initiales" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Vitesse des ventilateurs initiale" + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Accélération de la couche initiale" + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Débit inférieur de la couche initiale" + +#: fdmprinter.def.json +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Débit de la couche initiale" + +#: fdmprinter.def.json +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Hauteur de la couche initiale" + +#: fdmprinter.def.json +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Expansion horizontale de la couche initiale" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Saccade de la couche initiale" + +#: fdmprinter.def.json +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Largeur de ligne couche initiale" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Accélération de l'impression de la couche initiale" + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Saccade d’impression de la couche initiale" + +#: fdmprinter.def.json +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Vitesse d’impression de la couche initiale" + +#: fdmprinter.def.json +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Vitesse de la couche initiale" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Accélération de déplacement de la couche initiale" + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Saccade de déplacement de la couche initiale" + +#: fdmprinter.def.json +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Vitesse de déplacement de la couche initiale" + +#: fdmprinter.def.json +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Chevauchement Z de la couche initiale" + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Température d’impression initiale" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Accélération de la paroi intérieure" + +#: fdmprinter.def.json +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extrudeuse de paroi interne" + +#: fdmprinter.def.json +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Saccade de paroi intérieure" + +#: fdmprinter.def.json +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Vitesse d'impression de la paroi interne" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Débit de paroi(s) interne(s)" + +#: fdmprinter.def.json +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Largeur de ligne de la (des) paroi(s) interne(s)" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "De l'intérieur vers l'extérieur" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Nombre de couches des attaches de connexion" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Largeur des attaches de connexion" + +#: fdmprinter.def.json +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Distance limite de connexion" + +#: fdmprinter.def.json +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Profondeur de connexion" + +#: fdmprinter.def.json +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Orientation de la structure de connexion" + +#: fdmprinter.def.json +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "N'étirer que la couche supérieure" + +#: fdmprinter.def.json +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Accélération d'étirage" + +#: fdmprinter.def.json +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Flux d'étirage" + +#: fdmprinter.def.json +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Insert d'étirage" + +#: fdmprinter.def.json +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Saccade d'étirage" + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Interligne de l'étirage" + +#: fdmprinter.def.json +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Motif d'étirage" + +#: fdmprinter.def.json +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Vitesse d'étirage" + +#: fdmprinter.def.json +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Est l'origine du centre" + +#: fdmprinter.def.json +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) ?" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Conserver les faces disjointes" + +#: fdmprinter.def.json +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Hauteur de la couche" + +#: fdmprinter.def.json +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "X début couche" + +#: fdmprinter.def.json +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Y début couche" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Épaisseur de la couche intermédiaire du radeau." + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Épaisseur des couches supérieures du radeau." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Gauche" + +#: fdmprinter.def.json +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Relever la tête" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Éclair" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Angle de saillie du remplissage éclair" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Angle d'élagage du remplissage éclair" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Angle de redressement du remplissage éclair" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Angle de support du remplissage éclair" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Limitée" + +#: fdmprinter.def.json +msgctxt "line_width label" +msgid "Line Width" +msgstr "Largeur de ligne" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Lignes" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Lignes" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Lignes" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Lignes" + +#: fdmprinter.def.json +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Lignes" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Lignes" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Lignes" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Lignes" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +#: fdmprinter.def.json +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Machine" + +#: fdmprinter.def.json +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Profondeur de la machine" + +#: fdmprinter.def.json +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Polygone de la tête de la machine et du ventilateur" + +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Hauteur de la machine" + +#: fdmprinter.def.json +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Type de machine" + +#: fdmprinter.def.json +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Largeur de la machine" + +#: fdmprinter.def.json +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Paramètres spécifiques de la machine" + +#: fdmprinter.def.json +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Rendre le porte-à-faux imprimable" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "La première et la deuxième couche du modèle se chevauchent dans la direction Z pour compenser le filament perdu dans l'entrefer. Toutes les couches au-dessus de la première couche du modèle seront décalées de ce montant." + +#: fdmprinter.def.json +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Rendez les mailles plus adaptées à l'impression 3D." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumétrique)" + +#: fdmprinter.def.json +msgctxt "material description" +msgid "Material" +msgstr "Matériau" + +#: fdmprinter.def.json +msgctxt "material label" +msgid "Material" +msgstr "Matériau" + +#: fdmprinter.def.json +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID matériau" + +#: fdmprinter.def.json +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Volume de matériau entre les essuyages" + +#: fdmprinter.def.json +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Distance de détour max. sans rétraction" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Accélération maximale X" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Accélération maximale Y" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Accélération maximale Z" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Écart maximum" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Écart maximal de la surface d'extrusion" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Vitesse maximale du ventilateur" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Accélération maximale du filament" + +#: fdmprinter.def.json +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Angle maximal du modèle" + +#: fdmprinter.def.json +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Surface maximale du trou en porte-à-faux" + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Durée maximum du stationnement" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Résolution maximum" + +#: fdmprinter.def.json +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Nombre maximal de rétractions" + +#: fdmprinter.def.json +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Angle maximum de la couche extérieure pour l'expansion" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Vitesse maximale E" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Vitesse maximale X" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Vitesse maximale Y" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Vitesse maximale Z" + +#: fdmprinter.def.json +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Diamètre maximal supporté par la tour" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Résolution de déplacement maximum" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Chevauchement des mailles fusionnées" + +#: fdmprinter.def.json +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Corrections" #: fdmprinter.def.json msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "Position X de la maille" -#: fdmprinter.def.json -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Offset appliqué à l'objet dans la direction X." - #: fdmprinter.def.json msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "Position Y de la maille" -#: fdmprinter.def.json -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Offset appliqué à l'objet dans la direction Y." - #: fdmprinter.def.json msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "Position Z de la maille" #: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "Matrice de rotation de la maille" +#: fdmprinter.def.json +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Milieu" + +#: fdmprinter.def.json +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Largeur minimale de moule" + +#: fdmprinter.def.json +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Durée minimale température de veille" + +#: fdmprinter.def.json +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Longueur minimale de la paroi du pont" + +#: fdmprinter.def.json +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Largeur minimale de la ligne de paroi uniforme" + +#: fdmprinter.def.json +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Intervalle de distance minimale d'extrusion" + +#: fdmprinter.def.json +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Taille minimale des entités" + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Taux d'alimentation minimal" + +#: fdmprinter.def.json +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Zone de remplissage minimum" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Durée minimale d’une couche" + +#: fdmprinter.def.json +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Largeur minimale de la ligne de paroi impaire" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Circonférence minimale du polygone" + +#: fdmprinter.def.json +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Largeur minimum de la couche extérieure pour l'expansion" + +#: fdmprinter.def.json +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Vitesse minimale" + +#: fdmprinter.def.json +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Surface minimale de support" + +#: fdmprinter.def.json +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Surface minimale du bas de support" + +#: fdmprinter.def.json +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Surface minimale de l'interface de support" + +#: fdmprinter.def.json +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Surface minimale du plafond de support" + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Distance X/Y minimale des supports" + +#: fdmprinter.def.json +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Largeur minimale de la ligne de paroi fine" + +#: fdmprinter.def.json +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Volume minimal avant roue libre" + +#: fdmprinter.def.json +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Largeur minimale de la ligne de paroi" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Moule" + +#: fdmprinter.def.json +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Angle du moule" + +#: fdmprinter.def.json +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Hauteur du plafond de moule" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Ordre d'étirage monotone" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Ordre monotone de la surface supérieure" + +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Ordre monotone dessus / dessous" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Facteur de déplacement sans chargement" + +#: fdmprinter.def.json +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Aucune couche dans les trous en Z" + +#: fdmprinter.def.json +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Des moyens non traditionnels d'imprimer vos modèles." + +#: fdmprinter.def.json +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Aucun" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Aucun" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normal" + +#: fdmprinter.def.json +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normal" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Pas dans la couche extérieure" + +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Pas sur la surface extérieure" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Angle de la buse" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diamètre de la buse" + +#: fdmprinter.def.json +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Zones interdites au bec d'impression" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID buse" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Longueur de la buse" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Vitesse d'amorçage de changement de buse" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Vitesse de rétraction de changement de buse" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Distance de rétraction de changement de buse" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Vitesse de rétraction de changement de buse" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Nombre d'extrudeuses" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Nombre d'extrudeuses activées" + +#: fdmprinter.def.json +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Nombre de couches plus lentes" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octaédrique" + +#: fdmprinter.def.json +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Désactivé" + +#: fdmprinter.def.json +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Offset appliqué à l'objet dans la direction X." + +#: fdmprinter.def.json +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Offset appliqué à l'objet dans la direction Y." + +#: fdmprinter.def.json +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 »." + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Décalage avec extrudeuse" + +#: fdmprinter.def.json +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Un à la fois" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Imprimer uniquement la bordure sur l'extérieur du modèle. Cela réduit la quantité de bordure que vous devez retirer par la suite, sans toutefois véritablement réduire l'adhérence au plateau." + +#: fdmprinter.def.json +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Angle du bouclier de suintage" + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Distance du bouclier de suintage" + +#: fdmprinter.def.json +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Optimiser l'ordre d'impression des parois" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Diamètre extérieur de la buse" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Accélération de la paroi externe" + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extrudeuse de paroi externe" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Débit de paroi externe" + +#: fdmprinter.def.json +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Insert de paroi externe" + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Saccade de paroi externe" + +#: fdmprinter.def.json +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Largeur de ligne de la paroi externe" + +#: fdmprinter.def.json +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Vitesse d'impression de la paroi externe" + +#: fdmprinter.def.json +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Distance d'essuyage paroi extérieure" + +#: fdmprinter.def.json +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "De l'extérieur vers l'intérieur" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Angle de parois en porte-à-faux" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Vitesse de paroi en porte-à-faux" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pause après l'irrétraction." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Accélération de la tour d'amorçage" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Brim" +msgstr "Bordure de la tour d'amorçage" + +#: fdmprinter.def.json +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Débit de la tour d'amorçage" + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Saccade de la tour d'amorçage" + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Largeur de ligne de la tour d'amorçage" + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Volume minimum de la tour d'amorçage" + +#: fdmprinter.def.json +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Taille de la tour d'amorçage" + +#: fdmprinter.def.json +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Vitesse de la tour d'amorçage" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Position X de la tour d'amorçage" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Position Y de la tour d'amorçage" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +msgstr "Les tours d'amorçage peuvent avoir besoin de l'adhérence supplémentaire d'une bordure, même si le modèle n'en a pas besoin. Ne peut actuellement pas être utilisé avec le type d'adhérence « Raft » (radeau)." + +#: fdmprinter.def.json +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Accélération de l'impression" + +#: fdmprinter.def.json +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Imprimer en saccade" + +#: fdmprinter.def.json +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Séquence d'impression" + +#: fdmprinter.def.json +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Vitesse d’impression" + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Imprimer parois fines" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Température d’impression" + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Température d’impression couche initiale" + +#: fdmprinter.def.json +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "resolution label" +msgid "Quality" +msgstr "Qualité" + +#: fdmprinter.def.json +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Quart cubique" + +#: fdmprinter.def.json +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Radeau" + +#: fdmprinter.def.json +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Lame d'air du radeau" + +#: fdmprinter.def.json +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Extrudeur de la base du raft" + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Vitesse du ventilateur pour la base du radeau" + +#: fdmprinter.def.json +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Espacement des lignes de base du radeau" + +#: fdmprinter.def.json +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Largeur de la ligne de base du radeau" + +#: fdmprinter.def.json +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Accélération de l'impression de la base du radeau" + +#: fdmprinter.def.json +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Saccade d’impression de la base du radeau" + +#: fdmprinter.def.json +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Vitesse d’impression de la base du radeau" + +#: fdmprinter.def.json +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Épaisseur de la base du radeau" + +#: fdmprinter.def.json +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Nombre de parois à la base du radeau" + +#: fdmprinter.def.json +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Marge supplémentaire du radeau" + +#: fdmprinter.def.json +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Vitesse du ventilateur pendant le radeau" + +#: fdmprinter.def.json +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Extrudeur du milieu du radeau" + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Vitesse du ventilateur pour le milieu du radeau" + +#: fdmprinter.def.json +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Couches du milieu du radeau" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Largeur de la ligne intermédiaire du radeau" + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Accélération de l'impression du milieu du radeau" + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Saccade d’impression du milieu du radeau" + +#: fdmprinter.def.json +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Vitesse d’impression du milieu du radeau" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Interligne intermédiaire du radeau" + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Épaisseur intermédiaire du radeau" + +#: fdmprinter.def.json +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Accélération de l'impression du radeau" + +#: fdmprinter.def.json +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Saccade d’impression du radeau" + +#: fdmprinter.def.json +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Vitesse d’impression du radeau" + +#: fdmprinter.def.json +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Lissage de radeau" + +#: fdmprinter.def.json +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Extrudeur du haut du radeau" + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Vitesse du ventilateur pour le dessus du radeau" + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Épaisseur de la couche supérieure du radeau" + +#: fdmprinter.def.json +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Couches supérieures du radeau" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Largeur de la ligne supérieure du radeau" + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Accélération de l'impression du dessus du radeau" + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Saccade d’impression du dessus du radeau" + +#: fdmprinter.def.json +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Vitesse d’impression du dessus du radeau" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Interligne supérieur du radeau" + +#: fdmprinter.def.json +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Aléatoire" + +#: fdmprinter.def.json +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Randomiser le démarrage du remplissage" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Rectangulaire" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Vitesse régulière du ventilateur" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Vitesse régulière du ventilateur à la hauteur" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Vitesse régulière du ventilateur à la couche" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Extrusion relative" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Supprimer tous les trous" + +#: fdmprinter.def.json +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Supprimer les premières couches vides" + +#: fdmprinter.def.json +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Supprimer l'intersection des mailles" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Supprimer les coins intérieurs du radeau" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution description" +msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." +msgstr "Résolution servant à calculer les collisions afin d'éviter de heurter le modèle. Plus ce paramètre est faible, plus les arborescences seront précises et stables, mais cela augmente considérablement le temps de découpage." + +#: fdmprinter.def.json +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Rétracter avant la paroi externe" + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Rétracter au changement de couche" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Distance de rétraction" + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Volume supplémentaire à l'amorçage" + +#: fdmprinter.def.json +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Déplacement minimal de rétraction" + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Vitesse de rétraction d'amorçage" + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Vitesse de rétraction" + +#: fdmprinter.def.json +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Vitesse de rétraction" + +#: fdmprinter.def.json +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Droite" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Mise à l'échelle du facteur de compensation de contraction" + +#: fdmprinter.def.json +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "La scène comporte un maillage de support" + +#: fdmprinter.def.json +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Préférence de jointure d'angle" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Paramètres utilisés pour imprimer avec plusieurs extrudeuses." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Rétraction initiale de la buse partagée" + +#: fdmprinter.def.json +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Angle le plus aigu" + +#: fdmprinter.def.json +msgctxt "shell description" +msgid "Shell" +msgstr "Coque" + +#: fdmprinter.def.json +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Plus court" + +#: fdmprinter.def.json +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Afficher les variantes de la machine" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Couches de soutien des bords de la couche extérieure" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Épaisseur de soutien des bords de la couche" + +#: fdmprinter.def.json +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Distance d'expansion de la couche extérieure" + +#: fdmprinter.def.json +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Chevauchement de la couche extérieure" + +#: fdmprinter.def.json +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Pourcentage de chevauchement de la couche extérieure" + +#: fdmprinter.def.json +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Largeur de retrait de la couche extérieure" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Jupe" + +#: fdmprinter.def.json +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Distance de la jupe" + +#: fdmprinter.def.json +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Nombre de lignes de la jupe" + +#: fdmprinter.def.json +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Accélération de la jupe/bordure" + +#: fdmprinter.def.json +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Extrudeur de la jupe/bordure" + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Débit de la jupe/bordure" + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Saccade de la jupe/bordure" + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Largeur des lignes de jupe/bordure" + +#: fdmprinter.def.json +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Longueur minimale de la jupe/bordure" + +#: fdmprinter.def.json +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Vitesse d'impression de la jupe/bordure" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Tolérance à la découpe" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Vitesse de la couche initiale de petite structure" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Longueur max de petite structure" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Vitesse de petite structure" + +#: fdmprinter.def.json +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Taille maximale des petits trous" + +#: fdmprinter.def.json +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Température d'impression en cas de petite couche" + +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Masquage intelligent" + +#: fdmprinter.def.json +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Lisser les contours spiralisés" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Modes spéciaux" + +#: fdmprinter.def.json +msgctxt "speed description" +msgid "Speed" +msgstr "Vitesse" + +#: fdmprinter.def.json +msgctxt "speed label" +msgid "Speed" +msgstr "Vitesse" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Spiraliser le contour extérieur" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Température de veille" + +#: fdmprinter.def.json +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "G-Code de démarrage" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Pas par millimètre (E)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Pas par millimètre (X)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Pas par millimètre (Y)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Pas par millimètre (Z)" + +#: fdmprinter.def.json +msgctxt "support description" +msgid "Support" +msgstr "Supports" + +#: fdmprinter.def.json +msgctxt "support label" +msgid "Support" +msgstr "Supports" + +#: fdmprinter.def.json +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Accélération du support" + +#: fdmprinter.def.json +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Distance inférieure des supports" + +#: fdmprinter.def.json +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Nombre de lignes de parois inférieures du support" + +#: fdmprinter.def.json +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Nombre de lignes de la bordure du support" + +#: fdmprinter.def.json +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Largeur de la bordure du support" + +#: fdmprinter.def.json +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Comptage des lignes de morceaux du support" + +#: fdmprinter.def.json +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Taille de morceaux du support" + +#: fdmprinter.def.json +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Densité du support" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Priorité de distance des supports" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extrudeuse de support" + +#: fdmprinter.def.json +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Accélération des bas de support" + +#: fdmprinter.def.json +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Densité du bas de support" + +#: fdmprinter.def.json +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extrudeuse des bas de support" + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Débit du bas de support" + +#: fdmprinter.def.json +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Expansion horizontale du bas de support" + +#: fdmprinter.def.json +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Saccade des bas de support" + +#: fdmprinter.def.json +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Direction de la ligne de bas de support" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Distance d'écartement de ligne de bas de support" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Largeur de ligne de bas de support" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Motif du bas de support" + +#: fdmprinter.def.json +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Vitesse d'impression des bas de support" + +#: fdmprinter.def.json +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Épaisseur du bas de support" + +#: fdmprinter.def.json +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Débit du support" + +#: fdmprinter.def.json +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Expansion horizontale des supports" + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Accélération de remplissage du support" + +#: fdmprinter.def.json +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extrudeuse de remplissage du support" + +#: fdmprinter.def.json +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Saccade de remplissage du support" + +#: fdmprinter.def.json +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Épaisseur de la couche de remplissage de support" + +#: fdmprinter.def.json +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Direction de ligne de remplissage du support" + +#: fdmprinter.def.json +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Vitesse d'impression du remplissage de support" + +#: fdmprinter.def.json +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Accélération de l'interface du support" + +#: fdmprinter.def.json +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Densité de l'interface de support" + +#: fdmprinter.def.json +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extrudeuse de l'interface du support" + +#: fdmprinter.def.json +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Débit de l'interface de support" + +#: fdmprinter.def.json +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Expansion horizontale de l'interface de support" + +#: fdmprinter.def.json +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Saccade de l'interface de support" + +#: fdmprinter.def.json +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Direction de ligne d'interface du support" + +#: fdmprinter.def.json +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Largeur de ligne d'interface de support" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Motif de l'interface de support" + +#: fdmprinter.def.json +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Résolution de l'interface du support" + +#: fdmprinter.def.json +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Vitesse d'impression de l'interface de support" + +#: fdmprinter.def.json +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Épaisseur de l'interface de support" + +#: fdmprinter.def.json +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Nombre de lignes de parois de l'interface du support" + +#: fdmprinter.def.json +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Saccade des supports" + +#: fdmprinter.def.json +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Distance de jointement des supports" + +#: fdmprinter.def.json +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Distance d'écartement de ligne du support" + +#: fdmprinter.def.json +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Largeur de ligne de support" + +#: fdmprinter.def.json +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Maillage de support" + +#: fdmprinter.def.json +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Angle de porte-à-faux de support" + +#: fdmprinter.def.json +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Motif du support" + +#: fdmprinter.def.json +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Positionnement des supports" + +#: fdmprinter.def.json +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Accélération des plafonds de support" + +#: fdmprinter.def.json +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Densité du plafond de support" + +#: fdmprinter.def.json +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extrudeuse des plafonds de support" + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Débit du plafond de support" + +#: fdmprinter.def.json +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Expansion horizontale du plafond de support" + +#: fdmprinter.def.json +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Saccade des plafonds de support" + +#: fdmprinter.def.json +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Direction de la ligne de plafond de support" + +#: fdmprinter.def.json +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Distance d'écartement de ligne du plafond de support" + +#: fdmprinter.def.json +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Largeur de ligne de plafond de support" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Motif du plafond de support" + +#: fdmprinter.def.json +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Vitesse d'impression des plafonds de support" + +#: fdmprinter.def.json +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Épaisseur du plafond de support" + +#: fdmprinter.def.json +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Nombre de lignes de parois du toit du support" + +#: fdmprinter.def.json +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Vitesse d'impression des supports" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Hauteur de la marche de support" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Largeur maximale de la marche de support" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Structure du support" + +#: fdmprinter.def.json +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Distance supérieure des supports" + +#: fdmprinter.def.json +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Nombre de lignes de la paroi du support" + +#: fdmprinter.def.json +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Distance X/Y des supports" + +#: fdmprinter.def.json +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Distance Z des supports" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Vitesse du ventilateur de couche extérieure supportée" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Surface" + +#: fdmprinter.def.json +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Énergie de la surface" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Mode de surface" + +#: fdmprinter.def.json +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Tendance à l'adhérence de la surface." + +#: fdmprinter.def.json +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Énergie de la surface." + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "L'accélération pour la couche initiale." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "L'accélération selon laquelle le remplissage est imprimé." + +#: fdmprinter.def.json +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "L'accélération selon laquelle l'étirage est effectué." + +#: fdmprinter.def.json +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "L'accélération selon laquelle l'impression s'effectue." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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é." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "L'accélération selon laquelle le radeau est imprimé." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_tree_angle description" +msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "Angle des branches. Utilisez un angle plus faible pour les rendre plus verticales et plus stables ; utilisez un angle plus élevé pour avoir plus de portée." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "La profondeur (sens Y) de la zone imprimable." + +#: fdmprinter.def.json +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "Le diamètre d’une tour spéciale." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "La distance entre les lignes d'étirage." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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é." + +#: fdmprinter.def.json +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é." + +#: fdmprinter.def.json +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é." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "La vitesse du ventilateur pour le radeau." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "La hauteur (sens Z) de la zone imprimable." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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é." + +#: fdmprinter.def.json +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é." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" +"La distance horizontale entre la jupe et la première couche de l’impression.\n" +"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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "La saccade selon laquelle le radeau est imprimé." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Le changement instantané maximal de vitesse lors de l'étirage." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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é." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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é." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "La vitesse maximale du filament." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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éé." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Le nom du modèle de votre imprimante 3D." + +#: fdmprinter.def.json +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 »." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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é." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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é." + +#: fdmprinter.def.json +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é." + +#: fdmprinter.def.json +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é." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "Le motif des couches supérieures." + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Le motif des couches du dessus/dessous." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Le motif à utiliser pour étirer les surfaces supérieures." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "La vitesse à laquelle le remplissage est imprimé." + +#: fdmprinter.def.json +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "La vitesse à laquelle l'impression s'effectue." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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é." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "La vitesse à laquelle le radeau est imprimé." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "La vitesse à laquelle les parois sont imprimées." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "La vitesse à laquelle les déplacements s'effectuent." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +msgstr "Température utilisée pour l'impression de la première couche. Définissez-la sur 0 pour désactiver le traitement spécial de la couche initiale." + +#: fdmprinter.def.json +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Température utilisée pour l'impression." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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é." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Type de G-Code à générer." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "La largeur (sens X) de la zone imprimable." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "La largeur des attaches de la structure de connexion." + +#: fdmprinter.def.json +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "La largeur de la tour d'amorçage." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Couches supérieures" + +#: fdmprinter.def.json +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Distance d'expansion de la couche extérieure supérieure" + +#: fdmprinter.def.json +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Largeur de retrait de la couche extérieure supérieure" + +#: fdmprinter.def.json +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Accélération de couche extérieure de surface supérieure" + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Extrudeuse de couche extérieure de la surface supérieure" + +#: fdmprinter.def.json +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Débit de la surface du dessus" + +#: fdmprinter.def.json +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Saccade de couches extérieures de la surface supérieure" + +#: fdmprinter.def.json +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Couches extérieures de la surface supérieure" + +#: fdmprinter.def.json +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Sens de lignes de couche extérieure de surface supérieure" + +#: fdmprinter.def.json +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Largeur de ligne de couche extérieure de la surface supérieure" + +#: fdmprinter.def.json +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Motif de couche extérieure de surface supérieure" + +#: fdmprinter.def.json +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Vitesse de la couche extérieure de la surface supérieure" + +#: fdmprinter.def.json +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Épaisseur du dessus" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Haut / bas" + +#: fdmprinter.def.json +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Haut / bas" + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Accélération du dessus/dessous" + +#: fdmprinter.def.json +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extrudeuse du dessus/dessous" + +#: fdmprinter.def.json +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Débit du dessus/dessous" + +#: fdmprinter.def.json +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Saccade du dessus/dessous" + +#: fdmprinter.def.json +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Sens de la ligne du dessus / dessous" + +#: fdmprinter.def.json +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Largeur de la ligne du dessus/dessous" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Motif du dessus/dessous" + +#: fdmprinter.def.json +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Vitesse d'impression du dessus/dessous" + +#: fdmprinter.def.json +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Épaisseur du dessus/dessous" + +#: fdmprinter.def.json +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "En contact avec le plateau" + +#: fdmprinter.def.json +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Diamètre de la tour" + +#: fdmprinter.def.json +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Angle du toit de la tour" + #: fdmprinter.def.json 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 "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "Une silhouette 2D de la tête d'impression (avec les capuchons du ventilateur)." - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Extérieur avant les parois intérieures" - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Imprimer les parois de l'extérieur vers l'intérieur lorsque cette option est activée. Cela peut permettre d'améliorer la précision dimensionnelle en X et Y lors de l'utilisation de plastique haute viscosité comme l'ABS ; en revanche, cela peut réduire la qualité de l'impression de la surface extérieure, en particulier sur les porte-à-faux." - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Compenser les chevauchements de paroi" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Compense le débit pour les parties d'une paroi imprimées aux endroits où une paroi est déjà en place." - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Compenser les chevauchements de paroi externe" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Compenser le débit pour les parties d'une paroi externe imprimées aux endroits où une paroi est déjà en place." - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Compenser les chevauchements de paroi intérieure" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Compenser le débit pour les parties d'une paroi intérieure imprimées aux endroits où une paroi est déjà en place." - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Débit minimal de la paroi" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "Pourcentage de débit minimum autorisé pour une ligne de paroi. La compensation de chevauchement de paroi réduit le débit d'une paroi lorsqu'elle se trouve à proximité d'une paroi existante. Les parois dont le débit est inférieur à cette valeur seront remplacées par un déplacement. Lors de l'utilisation de ce paramètre, vous devez activer la compensation de chevauchement de paroi et imprimer la paroi externe avant les parois internes." - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Préférer la rétractation" - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Si cette option est activée, la rétraction est utilisée à la place des détours pour les déplacements qui remplacent les parois dont le débit est inférieur au seuil de débit minimal." - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Remplir les trous entre les parois" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Imprime les remplissages entre les parois lorsqu'aucune paroi ne convient." - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Nulle part" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Partout" - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "Filtrer les très petits trous" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "Filtrer les très petits trous pour réduire la présence de gouttes à l'extérieur du modèle." - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Égaliser le débit de filaments" - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Imprimer des lignes plus fines que la normale plus rapidement afin que la quantité de matériau extrudé par seconde reste la même. La présence de parties fines dans votre modèle peut nécessiter l'impression de lignes d'une largeur plus petite que prévue dans les paramètres. Ce paramètre contrôle les changements de vitesse pour de telles lignes." - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Vitesse maximale pour l'égalisation du débit" - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "Vitesse d’impression maximale lors du réglage de la vitesse d'impression afin d'égaliser le débit." - -#~ 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 \\n." - -#~ 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 \\n." - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Taux d'alimentation maximal" - -#~ 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 (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ 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 soutenant que les plafonds (internes) de l'objet. Ainsi, le pourcentage de remplissage n'est « valable » qu'une couche en dessous de ce qu'il doit soutenir dans le modèle." - -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "La différence qu'une couche de remplissage éclair peut avoir avec celle immédiatement au-dessus en ce qui concerne l'élagage des extrémités extérieures des arborescences. Mesuré dans l'angle au vu de l'épaisseur." - -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ msgstr "La différence qu'une couche de remplissage éclair peut avoir avec celle immédiatement au-dessus en ce qui concerne le lissage des arborescences. Mesuré dans l'angle au vu de l'épaisseur." - -#~ 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." -#~ msgstr "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, trihexagonaux, cubiques, octaédriques, quart cubiques et concentriques sont entièrement imprimés sur chaque couche. Les remplissages gyroïde, cubique, quart cubique et octaédrique changent à chaque couche afin d'offrir une répartition plus égale de la solidité dans chaque direction." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside 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_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "Nombre de pas du moteur pas à pas correspondant à une extrusion d'un millimètre." - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "Lorsque cette distance n'est pas nulle, les déplacements de détour qui sont plus longs que cette distance utiliseront la rétraction." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Appliquer le décalage de l'extrudeuse au système de coordonnées." - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Coque" - -#~ 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, while an angle of 90° is vertical." -#~ 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 un angle de 90° est vertical." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "La vitesse de la couche initiale. Une valeur plus faible est recommandée pour améliorer l'adhérence au plateau." - -#~ 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 lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order 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 bas. 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 "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "Température utilisée pour le plateau chauffant. Si elle est définie sur 0, la température du plateau ne sera pas ajustée." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "Température utilisée pour le plateau chauffant à la première couche." - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Taux de contraction" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "Taux de contraction en pourcentage." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Détermine la priorité de cette maille lorsque des volumes de chevauchement sont pris en considération. Les zones comportant plusieurs mailles seront atteintes par la maille de rang plus faible. 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 "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 "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Ordre de maille de remplissage" - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Détermine quelle maille de remplissage se trouve à l'intérieur du remplissage d'une autre maille de remplissage. 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 "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Support arborescent" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Générer un support arborescent avec des branches qui soutiennent votre impression. Cela peut réduire l'utilisation de matériau et le temps d'impression, mais augmente considérablement le temps de découpage." - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "Comment découper des couches avec des surfaces diagonales. Les zones d'une couche peuvent être générées en fonction de l'endroit où le milieu de la couche croise la surface (Milieu). Alternativement, chaque couche peut posséder des zones situées à l'intérieur du volume à travers toute la hauteur de la couche (Exclusif), ou une couche peut avoir des zones situées à l'intérieur à tout endroit dans la couche (Inclusif). L'option Exclusif permet de retenir le plus de détails, Inclusif permet d'obtenir une adaptation optimale et Milieu demande le moins de temps de traitement." - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Remplissage en spaghettis" - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Imprime régulièrement le remplissage afin que les filaments s'enroulent de manière chaotique à l'intérieur de l'objet. Cela permet de réduire le temps d'impression, mais le comportement sera assez imprévisible." - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Étapes de remplissage en spaghettis" - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Imprimer le remplissage en spaghettis étape par étape ou bien extruder tout le filament de remplissage à la fin de l'impression." - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Angle maximal de remplissage en spaghettis" - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "L'angle maximal pour l'axe Z de l'intérieur de l'impression pour les zones à remplir ensuite par remplissage en spaghettis. Le fait de réduire cette valeur entraînera le remplissage de plus de parties inclinées sur chaque couche dans votre modèle." - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Hauteur maximale du remplissage en spaghettis" - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "La hauteur maximale de l'espace intérieur qui peut être combiné et rempli depuis le haut." - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Insert en spaghettis" - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "Le décalage à partir des parois depuis lesquelles le remplissage en spaghettis sera imprimé." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Flux en spaghettis" - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Ajuste la densité du remplissage en spaghettis. Veuillez noter que la densité de remplissage ne contrôle que l'espacement de ligne du motif de remplissage, et non le montant d'extrusion du remplissage en spaghettis." - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Volume supplémentaire de remplissage en spaghettis" - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Terme de correction permettant d'ajuster le volume total extrudé à chaque fois lors du remplissage en spaghettis." - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "GUID du matériau. Cela est configuré automatiquement. " - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Distance de stationnement du filament" - -#~ msgctxt "machine_filament_park_distance description" -#~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used." -#~ msgstr "Distance depuis la pointe du bec sur laquelle stationner le filament lorsqu'une extrudeuse n'est plus utilisée." - -#~ msgctxt "material_flush_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Valeur interne de la Material Station" - -#~ msgctxt "material_flush_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Valeur interne de la Material Station" - -#~ 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 "Material Station internal value" -#~ msgstr "Valeur interne de la Material Station" - -#~ 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 "Material Station internal value" -#~ msgstr "Valeur interne de la Material Station" - -#~ msgctxt "material_maximum_park_duration description" -#~ msgid "Material Station internal value" -#~ msgstr "Valeur interne de la Material Station" - -#~ msgctxt "material_no_load_move_factor description" -#~ msgid "Material Station internal value" -#~ msgstr "Valeur interne de la Material Station" - -#~ 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 "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 "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "catégorie_corrections" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "catégorie_noirmagique" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "expérimental !" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "Polygone de la tête de machine" - -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "Une silhouette 2D de la tête d'impression (sans les capuchons du ventilateur)." - -#~ 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 only possible if 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 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 "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "Épaisseur de la paroi du support arborescent" - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "Épaisseur des parois des branches du support arborescent. Les parois plus épaisses prennent plus de temps à imprimer, mais ne tombent pas aussi facilement." - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "Nombre de lignes de la paroi du support arborescent" - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "Nombre de parois des branches du support arborescent. Les parois plus épaisses prennent plus de temps à imprimer, mais ne tombent pas aussi facilement." - -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. 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. 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 description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "Le volume maximum de matériau qui peut être extrudé avant qu'un autre essuyage de buse ne soit lancé." - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "Vitesse de rétraction primaire" - -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "Décalage en Z d'essuyage lors d’une rétraction" - -#~ msgctxt "wipe_hop_enable 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 "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ 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 générés." - -#~ 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 not be generated." -#~ msgstr "Taille minimale de la surface des plafonds du 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 not be generated." -#~ msgstr "Taille minimale de la surface des bas du support : les polygones dont la surface est inférieure à cette valeur ne seront pas générés." - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "Alterner la rotation dans les couches extérieures" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "Alterne le sens d'impression des couches du dessus/dessous. Elles sont généralement imprimées uniquement en diagonale. Ce paramètre ajoute les sens X uniquement et Y uniquement." - -#~ 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 compensate." -#~ msgstr "Distance de compensation maximum en mm." - -#~ 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 "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "Facteur de multiplication pour le débit -> translation de la distance." - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "Limite des couches adaptatives" - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ msgstr "Limite indiquant d'utiliser ou non une couche plus petite. Ce nombre est comparé à la tangente de la pente la plus raide d'une couche." - -#~ 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." -#~ 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." - -#~ 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 adhestion 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 "First Layer Speed" -#~ msgstr "Vitesse de la première couche" - -#~ 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 adhestion 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 "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "Aller au-dessus de la surface supérieure une fois supplémentaire, mais sans extruder de matériau. Cela signifie de faire fondre le plastique en haut un peu plus, pour créer une surface lisse." - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "Démarrer les couches avec la même partie" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "Dans chaque couche, démarre l'impression de l'objet à proximité du même point, de manière à ce que nous ne commencions pas une nouvelle couche en imprimant la pièce avec laquelle la couche précédente s'est terminée. Cela renforce les porte-à-faux et les petites pièces, mais augmente le temps d'impression." - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ msgstr "Orientation du motif de remplissage pour les supports. Le motif de remplissage du support pivote dans le plan horizontal." - -#~ 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." -#~ 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." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "Parfum G-Code" - -#~ 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." -#~ 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 jointure » génère généralement le positionnement de la jointure sur un angle intérieur. « Exposer jointure » génère généralement le positionnement de la jointure sur un angle extérieur. « Masquer ou exposer jointure » génère généralement le positionnement de la jointure sur un angle intérieur ou extérieur." - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "Ignorer les petits trous en Z" - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "Quand le modèle présente de petits trous verticaux, environ 5 % de temps de calcul supplémentaire peut être alloué à la génération de couches du dessus et du dessous dans ces espaces étroits. Dans ce cas, désactivez ce paramètre." - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "La température utilisée pour le volume d'impression. Si cette valeur est 0, la température du volume d'impression ne sera pas ajustée." - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." -#~ msgstr "Omettre la rétraction lors du passage entre supports en ligne droite. L'activation de ce paramètre permet de gagner du temps lors de l'impression, mais peut conduire à un cordage excessif à l'intérieur de la structure de support." - -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "Vitesse Z maximale" - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "La vitesse maximale à laquelle le plateau se déplace. Définir cette valeur sur zéro impose à l'impression d'utiliser les valeurs par défaut du firmware pour la vitesse z maximale." - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate 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 supports séparés sont plus rapprochés que cette valeur, ils fusionnent." - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "Diamètre minimal" - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "Le diamètre minimal sur les axes X/Y d’une petite zone qui doit être soutenue par une tour de soutien spéciale." - -#~ msgctxt "prime_tower_circular label" -#~ msgid "Circular Prime Tower" -#~ msgstr "Tour d'amorçage circulaire" - -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "Réaliser la tour d'amorçage en forme circulaire." - -#~ msgctxt "prime_tower_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 "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 fins de la surface." - -#~ msgctxt "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "Fonctionnalité expérimentale : rendre les aires de support plus petites en bas qu'au niveau du porte-à-faux à supporter." - -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "Nombre d'extrudeuses activées" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "Diamètre extérieur de la buse" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "Longueur de la buse" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "Angle de la buse" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "Longueur de la zone chauffée" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "Vitesse de chauffage" - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "Vitesse de refroidissement" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "Parfum G-Code" - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "Zones interdites" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "Polygone de la tête de machine" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "Tête de la machine et polygone du ventilateur" - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "Hauteur du portique" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "Décalage avec extrudeuse" - -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "Utiliser des couches adaptatives" - -#~ msgctxt "adaptive_layer_height_variation label" -#~ msgid "Adaptive layers maximum variation" -#~ msgstr "Variation maximale des couches adaptatives" - -#~ 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_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "Limite des couches adaptatives" - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "Le montant de chevauchement entre la couche extérieure et les parois en pourcentage de la largeur de ligne de couche extérieure. Un chevauchement faible permet aux parois de se connecter fermement à la couche extérieure. Ce montant est un pourcentage des largeurs moyennes des lignes de la couche extérieure et de la paroi la plus intérieure." - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Le degré de chevauchement entre la couche extérieure et les parois. Un léger chevauchement permet de lier fermement les parois à la couche externe." - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." -#~ msgstr "La quantité de rétraction : définir à 0 pour aucune rétraction. Cette valeur doit généralement être égale à la longueur de la zone chauffée." - -#~ 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 and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." -#~ 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 extérieure supérieure / inférieure et aussi de n'effectuer les détours que dans le remplissage. Notez que l'option « À l'intérieur du remplissage » se comporte exactement comme l'option « Pas dans la couche extérieure » dans les versions précédentes de Cura." - -#~ 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 happend 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 "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. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "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, trihexagonaux, cubiques, octaédriques, quart cubiques et concentriques sont entièrement imprimés sur chaque couche. Les remplissages cubique, quart cubique et octaédrique changent à chaque couche afin d'offrir une répartition plus égale de la solidité dans chaque direction." - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concentrique 3D" - -#~ 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 by combing within the infill only." -#~ msgstr "Les détours (le 'combing') maintiennent le bec 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 le bec 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 en effectuant les détours uniquement dans le remplissage." - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concentrique 3D" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concentrique 3D" - -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concentrique 3D" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concentrique 3D" - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "Interligne du radeau" - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "Épaisseur de la tour d'amorçage" - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "L'épaisseur de la tour d'amorçage creuse. Une épaisseur supérieure à la moitié du volume minimum de la tour d'amorçage résultera en une tour d'amorçage dense." - -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "Essuyer la buse après chaque changement" - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "Après un changement d'extrudeuse, essuie le matériau qui suinte de la buse sur la première chose imprimée. Cela exécute un mouvement de nettoyage lent et sûr à l'endroit auquel le matériau qui suinte cause le moins de dommages à la qualité de la surface de votre impression." - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "Volume de purge de la tour d'amorçage" - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "Quantité de filament à purger lors de l'essuyage de la tour d'amorçage. La purge est utile pour compenser le filament perdu par la suinte pendant l'inactivité de la buse." - -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "Porte-à-faux max. de la paroi du pont" - -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ msgstr "Largeur maximale autorisée de la zone d'air sous une ligne de paroi avant que la paroi ne soit imprimée selon les paramètres du pont. Exprimée en pourcentage de la largeur de la ligne de paroi. Si la zone d'air est plus large, la ligne de paroi sera imprimée selon les paramètres du pont. Sinon, la ligne de paroi sera imprimée selon les paramètres normaux. Plus la valeur est faible, plus il est probable que les lignes de paroi en surplomb seront imprimées selon les paramètres du pont." - -#~ 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." -#~ 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." - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "Pas de couche extérieure" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "Alterner les poches entrecroisées 3D" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "Ne réalise des poches que sur la moitié des croisements à quatre branches dans le motif entrecroisé 3D et alterne l'emplacement des poches entre les hauteurs où le motif se touche lui-même." - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "Évider les objets" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "Supprime tout le remplissage et rend l'intérieur de l'objet éligible au support." - -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "Hauteur maximale autorisée par rapport à la couche de base, en mm." - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ msgstr "Centrer l'objet" - -#~ msgctxt "mesh_position_x label" -#~ msgid "Mesh position x" -#~ msgstr "Position x de la maille" - -#~ msgctxt "mesh_position_y label" -#~ msgid "Mesh position y" -#~ msgstr "Position y de la maille" - -#~ msgctxt "mesh_position_z label" -#~ msgid "Mesh position z" -#~ msgstr "Position z de la maille" - -#~ msgctxt "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "GCode de démarrage" - -#~ msgctxt "machine_start_gcode description" +#: fdmprinter.def.json +msgctxt "travel label" +msgid "Travel" +msgstr "Déplacement" + +#: fdmprinter.def.json +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Accélération de déplacement" + +#: fdmprinter.def.json +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Distance d'évitement du déplacement" + +#: fdmprinter.def.json +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Saccade de déplacement" + +#: fdmprinter.def.json +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Vitesse de déplacement" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Arborescence" + +#: fdmprinter.def.json +msgctxt "support_tree_angle label" +msgid "Tree Support Branch Angle" +msgstr "Angle des branches de support arborescent" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter label" +msgid "Tree Support Branch Diameter" +msgstr "Diamètre des branches de support arborescent" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter_angle label" +msgid "Tree Support Branch Diameter Angle" +msgstr "Angle de diamètre des branches de support arborescent" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance label" +msgid "Tree Support Branch Distance" +msgstr "Distance des branches de support arborescent" + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution label" +msgid "Tree Support Collision Resolution" +msgstr "Résolution de collision du support arborescent" + +#: fdmprinter.def.json +msgctxt "support_tree_max_diameter label" +msgid "Tree Support Trunk Diameter" +msgstr "Diamètre du tronc du support arborescent" + +#: fdmprinter.def.json +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Trihexagonal" + +#: fdmprinter.def.json +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Triangles" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Triangles" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Triangles" + +#: fdmprinter.def.json +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Triangles" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Triangles" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Joindre les volumes se chevauchant" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Utiliser des couches adaptatives" + +#: fdmprinter.def.json +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Utilisation de tours" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Utilisateur spécifié" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Compensation du rétrécissement du facteur d'échelle verticale" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Attendre le chauffage du plateau" + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Attendre le chauffage de la buse" + +#: fdmprinter.def.json +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Accélération de la paroi" + +#: fdmprinter.def.json +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Nombre de distributions des parois" + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Extrudeuse de paroi" + +#: fdmprinter.def.json +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Débit de paroi" + +#: fdmprinter.def.json +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Saccade de paroi" + +#: fdmprinter.def.json +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Nombre de lignes de la paroi" + +#: fdmprinter.def.json +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Largeur de ligne de la paroi" + +#: fdmprinter.def.json +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Ordre des parois" + +#: fdmprinter.def.json +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Vitesse d'impression de la paroi" + +#: fdmprinter.def.json +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Épaisseur de la paroi" + +#: fdmprinter.def.json +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Longueur de transition de la paroi" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Distance du filtre de transition des parois" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Marge du filtre de transition des parois" + +#: fdmprinter.def.json +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Angle du seuil de transition de la paroi" + +#: fdmprinter.def.json +msgctxt "shell label" +msgid "Walls" +msgstr "Parois" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Lors de la vérification de l'emplacement d'un modèle au-dessus et en-dessous du support, effectuer des étapes de la hauteur définie. Des valeurs plus faibles découperont plus lentement, tandis que des valeurs plus élevées peuvent causer l'impression d'un support normal à des endroits où il devrait y avoir une interface de support." + +#: fdmprinter.def.json +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é." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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'." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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é." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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é." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.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 "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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Largeur d'une seule ligne de remplissage." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Largeur d'une seule ligne de bas de support." + +#: fdmprinter.def.json +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Largeur d'une seule ligne de plafond de support." + +#: fdmprinter.def.json +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Largeur d'une seule ligne de support." + +#: fdmprinter.def.json +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Largeur d'une seule ligne du dessus/dessous." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Largeur d'une seule ligne de la paroi." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Position X de la brosse d'essuyage" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Vitesse du décalage d'essuyage" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Distance de déplacement d'essuyage" + +#: fdmprinter.def.json +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Essuyer la buse entre les couches" + +#: fdmprinter.def.json +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Pause d'essuyage" + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Nombre de répétitions d'essuyage" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Distance de rétraction d'essuyage" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Activation de la rétraction d'essuyage" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Vitesse primaire de rétraction d'essuyage" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Vitesse de rétraction d'essuyage" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Vitesse de rétraction d'essuyage" + +#: fdmprinter.def.json +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Décalage en Z de l'essuyage" + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Hauteur du décalage en Z d'essuyage" + +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "À l'intérieur du remplissage" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Butée X en sens positif" + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "Emplacement X où le script d'essuyage démarrera." + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y annule Z" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Butée Y en sens positif" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Butée Z en sens positif" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Décalage en Z après changement d'extrudeuse" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Hauteur du décalage en Z" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Vitesse du décalage en Z" + +#: fdmprinter.def.json +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Décalage en Z lors d’une rétraction" + +#: fdmprinter.def.json +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Alignement de la jointure en Z" + +#: fdmprinter.def.json +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Position de la jointure en Z" + +#: fdmprinter.def.json +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Relatif à la jointure en Z" + +#: fdmprinter.def.json +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "X Jointure en Z" + +#: fdmprinter.def.json +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Y Jointure en Z" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z annule X/Y" + +#: fdmprinter.def.json +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "travel description" +msgid "travel" +msgstr "déplacement" + +#~ msgctxt "wireframe_strategy option compensate" +#~ msgid "Compensate" +#~ msgstr "Compenser" + +#~ msgctxt "wireframe_top_jump description" +#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." +#~ msgstr "Crée un petit nœud en haut d’une ligne ascendante pour que la couche horizontale suivante s’y accroche davantage. Uniquement applicable à l'impression filaire." + +#~ msgctxt "wireframe_bottom_delay description" +#~ msgid "Delay time after a downward move. Only applies to Wire Printing." +#~ msgstr "Temps d’attente après un déplacement vers le bas. Uniquement applicable à l'impression filaire." + +#~ msgctxt "wireframe_top_delay description" +#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." +#~ msgstr "Temps d’attente après un déplacement vers le haut, afin que la ligne ascendante puisse durcir. Uniquement applicable à l'impression filaire." + +#~ msgctxt "wireframe_flat_delay description" +#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." +#~ msgstr "Attente entre deux segments horizontaux. L’introduction d’un tel temps d’attente peut permettre une meilleure adhérence aux couches précédentes au niveau des points de connexion, tandis que des temps d’attente trop longs peuvent provoquer un affaissement. Uniquement applicable à l'impression filaire." + +#~ msgctxt "wireframe_nozzle_clearance description" +#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." +#~ msgstr "Distance entre la buse et les lignes descendantes horizontalement. Un espacement plus important génère des lignes diagonalement descendantes avec un angle moins abrupt, qui génère alors des connexions moins ascendantes avec la couche suivante. Uniquement applicable à l'impression filaire." + +#~ msgctxt "wireframe_up_half_speed description" #~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." +#~ "Distance of an upward move which is extruded with half speed.\n" +#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." #~ msgstr "" -#~ "Commandes Gcode à exécuter au tout début, séparées par \n" -#~ "." - -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "GCode de fin" - -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "Commandes Gcode à exécuter à la toute fin, séparées par \n" -#~ "." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "Gcode parfum" - -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "Le type de gcode à générer." - -#~ 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 GCode." -#~ 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 GCode correct." - -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. 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 Gcode 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, elle n'est pas supportée par toutes les imprimantes et peut occasionner de très légers écarts dans la quantité de matériau déposé, en comparaison avec 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 "infill_offset_x description" -#~ msgid "The infill pattern is offset 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 offset this distance along the Y axis." -#~ msgstr "Le motif de remplissage est décalé de cette distance sur l'axe Y." - -#~ msgctxt "infill_overlap 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 "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "Le montant de chevauchement entre la couche extérieure et les parois en pourcentage de la largeur de ligne. Un chevauchement faible permet aux parois de se connecter fermement à la couche extérieure. Ce montant est un pourcentage des largeurs moyennes des lignes de la couche extérieure et de la paroi la plus intérieure." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "Température utilisée pour le plateau chauffant. Si elle est définie sur 0, le plateau ne sera pas chauffé pour cette impression." - -#~ msgctxt "wall_x_extruder_nr label" -#~ msgid "Inner Walls Extruder" -#~ msgstr "Extrudeuse de parois internes" - -#~ 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, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ 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, octaédriques, quart cubiques et concentriques sont entièrement imprimés sur chaque couche. Le remplissage cubique, quart cubique et octaédrique change à chaque couche afin d'offrir une répartition plus égale de la solidité dans chaque direction." - -#~ msgctxt "zig_zaggify_infill description" -#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on 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 de lignes é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 "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 "" -#~ "La distance horizontale entre le contour et la première couche de l’impression.\n" -#~ "Il s’agit de la distance minimale séparant le contour de l’objet. Si le contour a d’autres lignes, celles-ci s’étendront vers l’extérieur." - -#~ msgctxt "z_offset_layer_0 label" -#~ msgid "Initial Layer Z Offset" -#~ msgstr "Décalage en Z de la couche initiale" - -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "L'extrudeuse est décalée de cette valeur à partir de la hauteur normale de la première couche. Elle peut être positive (relevée) ou négative (abaissée). Certains types de filament adhèrent mieux au plateau si l'extrudeuse est légèrement relevée." - -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Couches biseautées de décalage en Z" - -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "Si non nul, le décalage en Z est ramené à 0 sur un grand nombre de couches. Une valeur égale à 0 signifie que le décalage en Z reste constant pour toutes les couches de l'impression." - -#~ msgctxt "raft_smoothing description" -#~ msgid "This setting control 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 "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, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." -#~ 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, cubiques, tétraédriques et concentriques sont entièrement imprimés sur chaque couche. Le remplissage cubique et tétraédrique change à chaque couche afin d'offrir une répartition plus égale de la solidité dans chaque direction." - -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "Tétraédrique" - -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "Étendre les couches extérieures dans le remplissage" - -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "Étendre les zones de couche extérieure du haut et / ou du bas des surfaces planes. Par défaut, les couches extérieures s'arrêtent sous les lignes de paroi qui entourent le remplissage, mais cela peut entraîner l'apparition de trous si la densité de remplissage est faible. Ce paramètre permet d'étendre les couches extérieures au-delà des lignes de paroi de sorte que le remplissage sur les couches suivantes repose sur la couche extérieure." - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ msgstr "Étendre les couches extérieures supérieures dans le remplissage" - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "Étendre les zones de couches extérieures supérieures (zones ayant de l'air au-dessus d'elles) de sorte à ce que le remplissage au-dessus repose sur elles." +#~ "Distance d’un déplacement ascendant qui est extrudé à mi-vitesse.\n" +#~ "Cela peut permettre une meilleure adhérence aux couches précédentes sans surchauffer le matériau dans ces couches. Uniquement applicable à l'impression filaire." -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "Étendre les couches extérieures inférieures dans le remplissage" +#~ msgctxt "wireframe_fall_down description" +#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "La distance de laquelle le matériau chute après avoir extrudé vers le haut. Cette distance est compensée. Uniquement applicable à l'impression filaire." -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Étendre les zones de couches extérieures inférieures (zones ayant de l'air en-dessous d'elles) de sorte à ce qu'elles soient ancrées par les couches de remplissage au-dessus et en-dessous." +#~ msgctxt "wireframe_drag_along description" +#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Distance sur laquelle le matériau d’une extrusion ascendante est entraîné par l’extrusion diagonalement descendante. La distance est compensée. Uniquement applicable à l'impression filaire." -#~ msgctxt "expand_skins_expand_distance description" -#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." -#~ msgstr "La distance par laquelle les couches extérieures sont étendues dans le remplissage. La distance par défaut est suffisante pour combler l'espace entre les lignes de remplissage et remédiera aux trous qui apparaissent là où la couche extérieure rencontre la paroi lorsque la densité de remplissage est faible. Une distance moindre sera souvent suffisante." +#~ msgctxt "wireframe_flow_connection description" +#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." +#~ msgstr "Compensation du débit lorsqu’il monte ou descend. Uniquement applicable à l'impression filaire." -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "Ignorer certaines connexions ZigZag" +#~ msgctxt "wireframe_flow_flat description" +#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." +#~ msgstr "Compensation du débit lors de l’impression de lignes planes. Uniquement applicable à l'impression filaire." -#~ msgctxt "support_skip_some_zags description" -#~ msgid "Skip some ZigZags connections to make the support structure easier to break." -#~ msgstr "Ignorer certaines connexions ZigZag pour rendre la structure de support plus facile à casser." +#~ msgctxt "wireframe_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." +#~ msgstr "Compensation du débit : la quantité de matériau extrudée est multipliée par cette valeur. Uniquement applicable à l'impression filaire." -#~ msgctxt "support_zag_skip_count label" -#~ msgid "ZigZag Connection Skip Count" -#~ msgstr "Nombre d'omissions de connexion ZigZag" +#~ msgctxt "wireframe_strategy option knot" +#~ msgid "Knot" +#~ msgstr "Nœud" -#~ msgctxt "support_zag_skip_count description" -#~ msgid "Skip one in every N connection lines to make the support structure easier to break." -#~ msgstr "Ignorer une ligne de connexion sur N pour rendre la structure de support plus facile à casser." +#~ msgctxt "wireframe_straight_before_down description" +#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." +#~ msgstr "Pourcentage d’une ligne diagonalement descendante couvert par une pièce à lignes horizontales. Cela peut empêcher le fléchissement du point le plus haut des lignes ascendantes. Uniquement applicable à l'impression filaire." -#~ msgctxt "machine_show_variants label" -#~ msgid "Show machine variants" -#~ msgstr "Afficher les variantes de la machine" +#~ msgctxt "wireframe_enabled description" +#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." +#~ msgstr "Imprime uniquement la surface extérieure avec une structure grillagée et clairsemée. Cette impression est « dans les airs » et est réalisée en imprimant horizontalement les contours du modèle aux intervalles donnés de l’axe Z et en les connectant au moyen de lignes ascendantes et diagonalement descendantes." -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Wait for build plate heatup" -#~ msgstr "Attendre le chauffage du plateau" +#~ msgctxt "wireframe_strategy option retract" +#~ msgid "Retract" +#~ msgstr "Rétraction" -#~ msgctxt "material_print_temp_wait label" -#~ msgid "Wait for nozzle heatup" -#~ msgstr "Attendre le chauffage de la buse" +#~ msgctxt "wireframe_printspeed description" +#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." +#~ msgstr "Vitesse à laquelle la buse se déplace lorsqu’elle extrude du matériau. Uniquement applicable à l'impression filaire." -#~ msgctxt "material_print_temp_prepend label" -#~ msgid "Include material temperatures" -#~ msgstr "Inclure les températures du matériau" +#~ msgctxt "wireframe_printspeed_down description" +#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." +#~ msgstr "Vitesse d’impression d’une ligne diagonalement descendante. Uniquement applicable à l'impression filaire." -#~ msgctxt "material_bed_temp_prepend label" -#~ msgid "Include build plate temperature" -#~ msgstr "Inclure la température du plateau" +#~ msgctxt "wireframe_printspeed_up description" +#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." +#~ msgstr "Vitesse d’impression d’une ligne ascendante « dans les airs ». Uniquement applicable à l'impression filaire." -#~ msgctxt "machine_width label" -#~ msgid "Machine width" -#~ msgstr "Largeur de la machine" +#~ msgctxt "wireframe_printspeed_bottom description" +#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." +#~ msgstr "Vitesse d’impression de la première couche qui constitue la seule couche en contact avec le plateau d'impression. Uniquement applicable à l'impression filaire." -#~ msgctxt "machine_depth label" -#~ msgid "Machine depth" -#~ msgstr "Profondeur de la machine" +#~ msgctxt "wireframe_printspeed_flat description" +#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." +#~ msgstr "Vitesse d'impression du contour horizontal du modèle. Uniquement applicable à l'impression filaire." -#~ msgctxt "machine_shape label" -#~ msgid "Build plate shape" -#~ msgstr "Forme du plateau" +#~ msgctxt "wireframe_strategy description" +#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." +#~ msgstr "Stratégie garantissant que deux couches consécutives se touchent à chaque point de connexion. La rétraction permet aux lignes ascendantes de durcir dans la bonne position, mais cela peut provoquer l’écrasement des filaments. Un nœud peut être fait à la fin d’une ligne ascendante pour augmenter les chances de raccorder cette ligne et la laisser refroidir. Toutefois, cela peut nécessiter de ralentir la vitesse d’impression. Une autre stratégie consiste à compenser l’affaissement du dessus d’une ligne ascendante, mais les lignes ne tombent pas toujours comme prévu." -#~ msgctxt "machine_height label" -#~ msgid "Machine height" -#~ msgstr "Hauteur de la machine" +#~ msgctxt "wireframe_roof_inset description" +#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." +#~ msgstr "La distance couverte lors de l'impression d'une connexion d'un contour de toit vers l’intérieur. Uniquement applicable à l'impression filaire." -#~ msgctxt "machine_heated_bed label" -#~ msgid "Has heated build plate" -#~ msgstr "A un plateau chauffé" +#~ msgctxt "wireframe_roof_drag_along description" +#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "La distance parcourue par la pièce finale d’une ligne intérieure qui est entraînée lorsqu’elle retourne sur le contour extérieur du dessus. Cette distance est compensée. Uniquement applicable à l'impression filaire." -#~ msgctxt "machine_center_is_zero label" -#~ msgid "Is center origin" -#~ msgstr "Est l'origine du centre" +#~ msgctxt "wireframe_roof_fall_down description" +#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "La distance d’affaissement lors de l’impression des lignes horizontales du dessus d’une pièce qui sont imprimées « dans les airs ». Cet affaissement est compensé. Uniquement applicable à l'impression filaire." -#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -#~ msgid "RepRap (Marlin/Sprinter)" -#~ msgstr "RepRap (Marlin/Sprinter)" +#~ msgctxt "wireframe_height description" +#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." +#~ msgstr "La hauteur des lignes ascendantes et diagonalement descendantes entre deux pièces horizontales. Elle détermine la densité globale de la structure du filet. Uniquement applicable à l'impression filaire." -#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" -#~ msgid "RepRap (Volumetric)" -#~ msgstr "RepRap (Volumétrique)" +#~ msgctxt "wireframe_roof_outer_delay description" +#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." +#~ msgstr "Temps passé sur le périmètre extérieur de l’orifice qui deviendra le dessus. Un temps plus long peut garantir une meilleure connexion. Uniquement applicable pour l'impression filaire." -#~ msgctxt "wall_thickness description" -#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -#~ msgstr "L’épaisseur des parois extérieures dans le sens horizontal. Cette valeur divisée par la largeur de ligne de la paroi définit le nombre de parois." +#~ msgctxt "wireframe_bottom_delay label" +#~ msgid "WP Bottom Delay" +#~ msgstr "Attente pour le bas de l'impression filaire" -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Le degré de chevauchement entre la couche extérieure et les parois. Un léger chevauchement permet de lier fermement les parois à la couche externe." +#~ msgctxt "wireframe_printspeed_bottom label" +#~ msgid "WP Bottom Printing Speed" +#~ msgstr "Vitesse d’impression filaire du bas" -#~ msgctxt "support_interface_line_width description" -#~ msgid "Width of a single support interface line." -#~ msgstr "Largeur d'une seule ligne d'interface de support." +#~ msgctxt "wireframe_flow_connection label" +#~ msgid "WP Connection Flow" +#~ msgstr "Débit de connexion de l'impression filaire" -#~ msgctxt "sub_div_rad_mult label" -#~ msgid "Cubic Subdivision Radius" -#~ msgstr "Rayon de la subdivision cubique" +#~ msgctxt "wireframe_height label" +#~ msgid "WP Connection Height" +#~ msgstr "Hauteur de connexion pour l'impression filaire" -#~ msgctxt "sub_div_rad_mult description" -#~ msgid "A multiplier on 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 more subdivisions, i.e. more small cubes." -#~ msgstr "Un multiplicateur du 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 plus de subdivisions et donc des cubes plus petits." +#~ msgctxt "wireframe_printspeed_down label" +#~ msgid "WP Downward Printing Speed" +#~ msgstr "Vitesse d’impression filaire descendante" -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Upper Skins" -#~ msgstr "Étendre les couches extérieures supérieures" +#~ msgctxt "wireframe_drag_along label" +#~ msgid "WP Drag Along" +#~ msgstr "Entraînement de l'impression filaire" -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." -#~ msgstr "Étendre les zones de couches extérieures supérieures (zones ayant de l'air au-dessus d'elles) de sorte que le remplissage au-dessus repose sur elles." +#~ msgctxt "wireframe_up_half_speed label" +#~ msgid "WP Ease Upward" +#~ msgstr "Écart ascendant de l'impression filaire" -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Lower Skins" -#~ msgstr "Étendre les couches extérieures inférieures" +#~ msgctxt "wireframe_fall_down label" +#~ msgid "WP Fall Down" +#~ msgstr "Descente de l'impression filaire" -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Étendre les zones de couches extérieures inférieures (zones ayant de l'air en-dessous d'elles) de sorte à ce qu'elles soient ancrées par les couches de remplissage au-dessus et en-dessous." +#~ msgctxt "wireframe_flat_delay label" +#~ msgid "WP Flat Delay" +#~ msgstr "Attente horizontale de l'impression filaire" -#~ msgctxt "speed_support_interface description" -#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the 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 "wireframe_flow_flat label" +#~ msgid "WP Flat Flow" +#~ msgstr "Débit des fils plats" -#~ msgctxt "acceleration_support_interface description" -#~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality." -#~ msgstr "L'accélération selon laquelle les plafonds et bas de support sont imprimés. Les imprimer avec des accélérations plus faibles améliore la qualité des porte-à-faux." +#~ msgctxt "wireframe_flow label" +#~ msgid "WP Flow" +#~ msgstr "Débit de l'impression filaire" -#~ msgctxt "jerk_support_interface description" -#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." -#~ msgstr "Le changement instantané maximal de vitesse selon lequel les plafonds et bas sont imprimés." +#~ msgctxt "wireframe_printspeed_flat label" +#~ msgid "WP Horizontal Printing Speed" +#~ msgstr "Vitesse d’impression filaire horizontale" -#~ msgctxt "support_enable label" -#~ msgid "Enable Support" -#~ msgstr "Activer les supports" +#~ msgctxt "wireframe_top_jump label" +#~ msgid "WP Knot Size" +#~ msgstr "Taille de nœud de l'impression filaire" -#~ msgctxt "support_enable description" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Active les supports. Ces supports soutiennent les modèles présentant d'importants porte-à-faux." +#~ msgctxt "wireframe_nozzle_clearance label" +#~ msgid "WP Nozzle Clearance" +#~ msgstr "Ecartement de la buse de l'impression filaire" -#~ msgctxt "support_interface_extruder_nr description" -#~ msgid "The extruder train to use for printing the roofs and bottoms 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 "wireframe_roof_drag_along label" +#~ msgid "WP Roof Drag Along" +#~ msgstr "Entraînement du dessus de l'impression filaire" -#~ 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." -#~ 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." +#~ msgctxt "wireframe_roof_fall_down label" +#~ msgid "WP Roof Fall Down" +#~ msgstr "Affaissement du dessus de l'impression filaire" -#~ msgctxt "support_bottom_height label" -#~ msgid "Support Bottom Thickness" -#~ msgstr "Épaisseur du bas de support" +#~ msgctxt "wireframe_roof_inset label" +#~ msgid "WP Roof Inset Distance" +#~ msgstr "Distance d’insert de toit pour les impressions filaires" -#~ msgctxt "support_bottom_height description" -#~ msgid "The thickness of the support bottoms. This controls the number of dense layers 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 "wireframe_roof_outer_delay label" +#~ msgid "WP Roof Outer Delay" +#~ msgstr "Délai d'impression filaire de l'extérieur du dessus" -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above 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 "Lors de la vérification de l'emplacement d'un modèle au-dessus du support, effectue des étapes de la hauteur définie. Des valeurs plus faibles découperont plus lentement, tandis que des valeurs plus élevées peuvent causer l'impression d'un support normal à des endroits où il devrait y avoir une interface de support." +#~ msgctxt "wireframe_printspeed label" +#~ msgid "WP Speed" +#~ msgstr "Vitesse d’impression filaire" -#~ msgctxt "support_interface_density description" -#~ msgid "Adjusts the density of the roofs and bottoms 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 "wireframe_straight_before_down label" +#~ msgid "WP Straighten Downward Lines" +#~ msgstr "Redresser les lignes descendantes de l'impression filaire" -#~ msgctxt "support_interface_line_distance label" -#~ msgid "Support Interface Line Distance" -#~ msgstr "Distance d'écartement de ligne d'interface de support" +#~ msgctxt "wireframe_strategy label" +#~ msgid "WP Strategy" +#~ msgstr "Stratégie de l'impression filaire" -#~ msgctxt "support_interface_line_distance description" -#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." -#~ msgstr "Distance entre les lignes d'interface de support imprimées. Ce paramètre est calculé par la densité de l'interface de support mais peut également être défini séparément." +#~ msgctxt "wireframe_top_delay label" +#~ msgid "WP Top Delay" +#~ msgstr "Attente pour le haut de l'impression filaire" -#~ 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 used to be called Joris in older versions." -#~ 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. Dans les versions précédentes, cette fonction s’appelait « Joris »." +#~ msgctxt "wireframe_printspeed_up label" +#~ msgid "WP Upward Printing Speed" +#~ msgstr "Vitesse d’impression filaire ascendante" -#~ msgctxt "material_print_temperature description" -#~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." -#~ msgstr "La température utilisée pour l'impression. Définissez-la sur 0 pour préchauffer manuellement l'imprimante." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually." -#~ msgstr "La température utilisée pour le plateau chauffant. Définissez-la sur 0 pour préchauffer manuellement l'imprimante." - -#~ 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. This value is rounded down to a multiple of the layer height." -#~ msgstr "Distance entre le dessus/dessous du support et l'impression. Cet écart offre un espace permettant de retirer les supports une fois l'impression du modèle terminée. Cette valeur est arrondie au chiffre inférieur jusqu'à atteindre un multiple de la hauteur de la couche." - -#~ msgctxt "z_seam_type option back" -#~ msgid "Back" -#~ msgstr "A l'arrière" - -#~ msgctxt "multiple_mesh_overlap label" -#~ msgid "Dual Extrusion Overlap" -#~ msgstr "Chevauchement de double extrusion" +#~ msgctxt "wireframe_enabled label" +#~ msgid "Wire Printing" +#~ msgstr "Impression filaire" diff --git a/resources/i18n/hu_HU/cura.po b/resources/i18n/hu_HU/cura.po index 71ebc10ea9..1585bee5fb 100644 --- a/resources/i18n/hu_HU/cura.po +++ b/resources/i18n/hu_HU/cura.po @@ -1,12 +1,13 @@ # Cura -# Copyright (C) 2022 Ultimaker B.V. +# Copyright (C) 2022 UltiMaker. # This file is distributed under the same license as the Cura package. +# Ultimaker , 2022. # msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-04-06 15:55+0000\n" "PO-Revision-Date: 2020-03-24 09:36+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: ATI-SZOFT\n" @@ -17,199 +18,77 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 2.2.4\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -msgctxt "@label" -msgid "Unknown" -msgstr "Ismeretlen" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "Az alábbi nyomtató (k) nem csatlakoztathatók, mert egy csoporthoz tartoznak" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Elérhető hálózati nyomtatók" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Nincs felülírva" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Connected printers" -msgstr "Csatlakoztatott nyomtatók" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Preset printers" -msgstr "Előre beállított nyomtatók" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:143 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:61 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 -msgctxt "@label" -msgid "Default" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:65 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:66 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:70 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:75 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:76 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:232 -msgctxt "@label" -msgid "Custom Material" -msgstr "Egyedi anyag" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:233 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 -msgctxt "@label" -msgid "Custom" -msgstr "Egyedi" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:391 -msgctxt "@label" -msgid "Custom profiles" -msgstr "Egyéni profil" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:426 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Összes támasz típus ({0})" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Minden fájl (*)" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Számított" - -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 +#: cura/API/Account.py:199 msgctxt "@info:title" msgid "Login failed" msgstr "Sikertelen bejelentkezés" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: cura/Arranging/ArrangeObjectsJob.py:25 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Új hely keresése az objektumokhoz" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: cura/Arranging/ArrangeObjectsJob.py:29 msgctxt "@info:title" msgid "Finding Location" msgstr "Hely keresés" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Nincs elég hely az összes objektum építési térfogatához" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: cura/Arranging/ArrangeObjectsJob.py:43 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Nem találok helyet" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:115 +#: cura/Backups/Backup.py:115 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Nem sikerült archívumot létrehozni a felhasználói adatkönyvtárból: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:159 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +#: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159 +#: plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: plugins/CuraDrive/src/DrivePluginExtension.py:126 msgctxt "@info:title" msgid "Backup" msgstr "Biztonsági mentés" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:134 +#: cura/Backups/Backup.py:134 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Megpróbált visszaállítani egy Cura biztonsági másolatot anélkül, hogy megfelelő adatok vagy meta adatok lennének." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:145 +#: cura/Backups/Backup.py:145 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that is higher than the current version." msgstr "Egy olyan Cura biztonsági mentést próbált visszaállítani, amelyiknek a verziója magasabb a jelenlegitől." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:158 +#: cura/Backups/Backup.py:158 msgctxt "@info:backup_failed" msgid "The following error occurred while trying to restore a Cura backup:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: cura/BuildVolume.py:100 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." msgstr "Az nyomtatási szint csökken a \"Nyomtatási sorrend\" beállítása miatt, ez megakadályozza, hogy a mechanika beleütközzön a nyomtatott tárgyba." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 +#: cura/BuildVolume.py:103 msgctxt "@info:title" msgid "Build Volume" msgstr "Építési térfogat" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "A Cura nem tud elindulni" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" -"

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

    \n" +"

    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" @@ -221,32 +100,32 @@ msgstr "" "

    Kérjük, küldje el nekünk ezt a hibajelentést a probléma megoldásához.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: cura/CrashHandler.py:122 msgctxt "@action:button" -msgid "Send crash report to Ultimaker" -msgstr "Hibajelentés küldése az Ultimaker -nek" +msgid "Send crash report to UltiMaker" +msgstr "Hibajelentés küldése az UltiMaker -nek" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Hibajelentés részletei" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Konfigurációs mappa megnyitása" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Konfiguráció biztonsági mentés és visszaállítás" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Összeomlás jelentés" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

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

    \n" @@ -257,573 +136,2237 @@ msgstr "" "

    Kérjük használd a \"Jelentés küldés\" gombot a hibajelentés postázásához, így az automatikusan a szerverünkre kerül.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Rendszer információ" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Ismeretlen" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura verzió" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Felület" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qt verzió" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQt verzió" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL Verzió: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL terjesztő: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL Renderer: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 +#: cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Hibakövetés" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 +#: cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Naplók" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 +#: cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Jelentés küldés" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:531 +#: cura/CuraApplication.py:540 msgctxt "@info:progress" msgid "Loading machines..." msgstr "Gépek betöltése ..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +#: cura/CuraApplication.py:547 msgctxt "@info:progress" msgid "Setting up preferences..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +#: cura/CuraApplication.py:692 msgctxt "@info:progress" msgid "Initializing Active Machine..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +#: cura/CuraApplication.py:839 msgctxt "@info:progress" msgid "Initializing machine manager..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +#: cura/CuraApplication.py:853 msgctxt "@info:progress" msgid "Initializing build volume..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +#: cura/CuraApplication.py:921 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "Felület beállítása..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +#: cura/CuraApplication.py:957 msgctxt "@info:progress" msgid "Loading interface..." msgstr "Interfészek betöltése..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +#: cura/CuraApplication.py:962 msgctxt "@info:progress" msgid "Initializing engine..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#: cura/CuraApplication.py:1290 #, 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" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1798 +#: cura/CuraApplication.py:1816 #, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Egyszerre csak egy G-kód fájlt lehet betölteni. Az importálás kihagyva {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 +#: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 msgctxt "@info:title" msgid "Warning" msgstr "Figyelem" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#: cura/CuraApplication.py:1828 #, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "Nem nyitható meg más fájl, ha a G-kód betöltődik. Az importálás kihagyva {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1812 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156 +#: cura/Settings/CuraContainerRegistry.py:166 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 msgctxt "@info:title" msgid "Error" msgstr "Hiba" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 +#: cura/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Ismeretlen" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "Az alábbi nyomtató (k) nem csatlakoztathatók, mert egy csoporthoz tartoznak" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Elérhető hálózati nyomtatók" + +#: cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Nincs felülírva" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:28 +msgctxt "@label" +msgid "Connected printers" +msgstr "Csatlakoztatott nyomtatók" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +msgctxt "@label" +msgid "Preset printers" +msgstr "Előre beállított nyomtatók" + +#: cura/Machines/Models/GlobalStacksModel.py:165 +#, 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 "" + +#: cura/Machines/Models/IntentCategoryModel.py:42 +#: cura/Machines/Models/IntentSelectionModel.py:61 +#: cura/Machines/Models/IntentTranslations.py:11 +#: cura/Machines/Models/QualityManagementModel.py:347 +msgctxt "@label" +msgid "Default" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:45 +#: cura/Machines/Models/IntentSelectionModel.py:65 +#: cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:46 +#: cura/Machines/Models/IntentSelectionModel.py:66 +#: cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:49 +#: cura/Machines/Models/IntentSelectionModel.py:70 +#: cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:50 +#: cura/Machines/Models/IntentSelectionModel.py:71 +#: cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:53 +#: cura/Machines/Models/IntentSelectionModel.py:75 +#: cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:54 +#: cura/Machines/Models/IntentSelectionModel.py:76 +#: cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "" + +#: cura/Machines/Models/MaterialManagementModel.py:232 +msgctxt "@label" +msgid "Custom Material" +msgstr "Egyedi anyag" + +#: cura/Machines/Models/MaterialManagementModel.py:233 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 +msgctxt "@label" +msgid "Custom" +msgstr "Egyedi" + +#: cura/Machines/Models/QualityManagementModel.py:400 +msgctxt "@label" +msgid "Custom profiles" +msgstr "Egyéni profil" + +#: cura/Machines/Models/QualityManagementModel.py:435 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Összes támasz típus ({0})" + +#: cura/Machines/Models/QualityManagementModel.py:436 +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Minden fájl (*)" + +#: cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Számított" + +#: cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Tárgyak többszörözése és elhelyezése" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 +#: cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "Tárgyak elhelyezése" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 +#: cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Tárgy elhelyezése" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +#: cura/OAuth2/AuthorizationHelpers.py:89 msgctxt "@message" msgid "Could not read response." msgstr "Nincs olvasható válasz." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +#: cura/OAuth2/AuthorizationRequestHandler.py:75 msgctxt "@message" msgid "The provided state is not correct." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +#: cura/OAuth2/AuthorizationRequestHandler.py:80 msgctxt "@message" msgid "Timeout when authenticating with the account server." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +#: cura/OAuth2/AuthorizationRequestHandler.py:97 msgctxt "@message" msgid "Please give the required permissions when authorizing this application." msgstr "Kérjük, adja meg a szükséges jogosultságokat az alkalmazás engedélyezéséhez." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +#: cura/OAuth2/AuthorizationRequestHandler.py:104 msgctxt "@message" msgid "Something unexpected happened when trying to log in, please try again." msgstr "Valami váratlan esemény történt a bejelentkezéskor, próbálkozzon újra." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:216 +#: cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:277 +#: cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "Az Ultimaker fiókkiszolgáló elérhetetlen." +msgid "Unable to reach the UltiMaker account server." +msgstr "Az UltiMaker fiókkiszolgáló elérhetetlen." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 +#: cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" msgid "Log-in failed" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +#: cura/PrinterOutput/UploadMaterialsJob.py:104 msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +#: cura/PrinterOutput/UploadMaterialsJob.py:111 +#: cura/PrinterOutput/UploadMaterialsJob.py:165 msgctxt "@text:error" msgid "Failed to load the archive of materials to sync it with printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +#: cura/PrinterOutput/UploadMaterialsJob.py:143 msgctxt "@text:error" msgid "The response from Digital Factory appears to be corrupted." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +#: cura/PrinterOutput/UploadMaterialsJob.py:147 +#: cura/PrinterOutput/UploadMaterialsJob.py:151 +#: cura/PrinterOutput/UploadMaterialsJob.py:155 msgctxt "@text:error" msgid "The response from Digital Factory is missing important information." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +#: cura/PrinterOutput/UploadMaterialsJob.py:218 msgctxt "@text:error" msgid "Failed to connect to Digital Factory to sync materials with some of the printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +#: cura/PrinterOutput/UploadMaterialsJob.py:232 msgctxt "@text:error" msgid "Failed to connect to Digital Factory." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:207 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: cura/Settings/ActiveQuality.py:43 +msgctxt "@label" +msgid "Experimental" +msgstr "Tapasztalati" + +#: cura/Settings/ContainerManager.py:207 +#: cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "A fájl már létezik" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: cura/Settings/ContainerManager.py:208 +#: cura/Settings/CuraContainerRegistry.py:141 #, 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 "A {0} fájl már létezik. Biztosan szeretnéd, hogy felülírjuk?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 +#: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "Érvénytelen fájl URL:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "A profil exportálása nem sikerült {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "A profil exportálása nem sikerült {0}:Az író beépülő modul hibát jelez." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profil exportálva ide: {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Sikeres export" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Sikertelen profil importálás {0}: {1} -ból" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: cura/Settings/CuraContainerRegistry.py:209 #, 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 "Nem importálható a profil {0} -ból, mielőtt hozzá nem adunk egy nyomtatót." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Nincs egyéni profil a {0} fájlban, amelyet importálni lehetne" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "A profil importálása nem sikerült {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: cura/Settings/CuraContainerRegistry.py:252 +#: cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Ez a {0} profil helytelen adatokat tartamaz, ezért nem importálható." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Nem importálható a profil {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "A {0} fájl nem tartalmaz érvényes profilt." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "A(z) {0} profil ismeretlen fájltípusú vagy sérült." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Egyedi profil" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Hiányzik a profil minőségi típusa." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: cura/Settings/CuraContainerRegistry.py:488 #, 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 "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Nem támogatott" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:219 +#: cura/Settings/MachineManager.py:746 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:221 msgctxt "@label" msgid "Nozzle" msgstr "Fúvóka" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +#: cura/Settings/MachineManager.py:890 msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "A beállításokat megváltoztattuk, hogy azok megfeleljenek az jelenleg elérhető extrudereknek:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: cura/Settings/MachineManager.py:891 msgctxt "@info:title" msgid "Settings updated" msgstr "Beállítások frissítve" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 +#: cura/Settings/MachineManager.py:1514 msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extruder(ek) kikapcsolva" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 +#: cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Nem támogatott" + +#: cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "" + +#: cura/UI/AddPrinterPagesModel.py:17 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" msgid "Add" msgstr "Hozzáad" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:290 +#: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290 msgctxt "@action:button" msgid "Finish" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:508 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:323 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:291 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:74 +#: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386 +#: plugins/ImageReader/ConfigUI.qml:323 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 +#: resources/qml/ColorDialog.qml:143 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: resources/qml/Dialogs/RenameDialog.qml:103 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 msgctxt "@action:button" msgid "Cancel" msgstr "Elvet" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: cura/UI/ObjectsModel.py:69 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Csoport #{group_nr}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 +#: cura/UI/PrintInformation.py:87 msgctxt "@tooltip" msgid "Outer Wall" msgstr "Külső fal" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +#: cura/UI/PrintInformation.py:88 msgctxt "@tooltip" msgid "Inner Walls" msgstr "Belső falak" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +#: cura/UI/PrintInformation.py:89 msgctxt "@tooltip" msgid "Skin" msgstr "Héj" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +#: cura/UI/PrintInformation.py:90 msgctxt "@tooltip" msgid "Infill" msgstr "Kitöltés" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +#: cura/UI/PrintInformation.py:91 msgctxt "@tooltip" msgid "Support Infill" msgstr "Támasz kitöltés" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +#: cura/UI/PrintInformation.py:92 msgctxt "@tooltip" msgid "Support Interface" msgstr "Támasz interface" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +#: cura/UI/PrintInformation.py:93 msgctxt "@tooltip" msgid "Support" msgstr "Támasz" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +#: cura/UI/PrintInformation.py:94 msgctxt "@tooltip" msgid "Skirt" msgstr "Szoknya" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +#: cura/UI/PrintInformation.py:95 msgctxt "@tooltip" msgid "Prime Tower" msgstr "Elsődleges torony" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +#: cura/UI/PrintInformation.py:96 msgctxt "@tooltip" msgid "Travel" msgstr "Átmozgás" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +#: cura/UI/PrintInformation.py:97 msgctxt "@tooltip" msgid "Retractions" msgstr "Visszahúzás" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +#: cura/UI/PrintInformation.py:98 msgctxt "@tooltip" msgid "Other" msgstr "Egyéb" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:63 +#: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63 msgctxt "@text:window" msgid "The release notes could not be opened." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:277 +#: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277 msgctxt "@action:button" msgid "Next" msgstr "Következő" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68 msgctxt "@action:button" msgid "Skip" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:443 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:186 +#: cura/UI/WhatsNewPagesModel.py:76 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444 +#: resources/qml/Dialogs/AboutDialog.qml:188 msgctxt "@action:button" msgid "Close" msgstr "Bezár" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: cura/UltimakerCloud/CloudMaterialSync.py:66 msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: cura/UltimakerCloud/CloudMaterialSync.py:67 msgctxt "@action:button" msgid "New materials installed" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: cura/UltimakerCloud/CloudMaterialSync.py:74 msgctxt "@action:button" msgid "Sync materials" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:397 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:80 +#: cura/UltimakerCloud/CloudMaterialSync.py:82 +#: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80 msgctxt "@action:button" msgid "Learn more" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +#: cura/UltimakerCloud/CloudMaterialSync.py:135 msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +#: cura/UltimakerCloud/CloudMaterialSync.py:136 msgctxt "@message:title" msgid "Failed to save material archive" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +#: cura/UltimakerCloud/CloudMaterialSync.py:188 msgctxt "@text" msgid "Unknown error." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:558 +#, 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 "A projekt fájl {0} egy ismeretlen {1} géptípust tartalmaz.Gépet nem lehet importálni. Importálj helyette modelleket." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:561 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "Projekt fájl megnyitása" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: plugins/3MFReader/WorkspaceDialog.qml:99 +#: plugins/3MFReader/WorkspaceDialog.qml:127 +#: plugins/3MFReader/WorkspaceDialog.qml:134 +msgctxt "@button" +msgid "Create new" +msgstr "Új létrehozása" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:692 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:720 +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:700 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:718 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:765 +#, 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 "" + +#: plugins/3MFReader/WorkspaceDialog.py:233 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Ajánlott" + +#: plugins/3MFReader/WorkspaceDialog.py:235 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Egyedi" + +#: plugins/3MFReader/WorkspaceDialog.py:411 +msgctxt "@info:status" +msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.py:413 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.py:426 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:15 +msgctxt "@title:window" +msgid "Open Project" +msgstr "Projekt megnyitása" + +#: plugins/3MFReader/WorkspaceDialog.qml:31 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61 +msgctxt "@action:title" +msgid "Summary - Cura Project" +msgstr "Összegzés - Cura Project" + +#: plugins/3MFReader/WorkspaceDialog.qml:65 +msgctxt "@action:ComboBox Update/override existing profile" +msgid "Update existing" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:66 +msgctxt "@action:ComboBox Save settings in a new profile" +msgid "Create new" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:83 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97 +msgctxt "@action:label" +msgid "Printer settings" +msgstr "Nyomtató beállítások" + +#: plugins/3MFReader/WorkspaceDialog.qml:92 +#: plugins/3MFReader/WorkspaceRow.qml:23 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106 +msgctxt "@action:label" +msgid "Type" +msgstr "Típus" + +#: plugins/3MFReader/WorkspaceDialog.qml:98 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +msgctxt "@action:label" +msgid "Printer Group" +msgstr "Nyomtató csoport" + +#: plugins/3MFReader/WorkspaceDialog.qml:103 +msgctxt "@action:label" +msgid "Open With" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:104 +msgctxt "@info:tooltip" +msgid "Printer settings will be updated to match the settings saved with the project." +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:156 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222 +msgctxt "@action:label" +msgid "Profile settings" +msgstr "Profil beállítások" + +#: plugins/3MFReader/WorkspaceDialog.qml:166 +#: plugins/3MFReader/WorkspaceDialog.qml:238 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246 +msgctxt "@action:label" +msgid "Name" +msgstr "Név" + +#: plugins/3MFReader/WorkspaceDialog.qml:172 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263 +msgctxt "@action:label" +msgid "Intent" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:178 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230 +msgctxt "@action:label" +msgid "Not in profile" +msgstr "Nincs a profilban" + +#: plugins/3MFReader/WorkspaceDialog.qml:179 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235 +msgctxt "@action:label" +msgid "%1 override" +msgid_plural "%1 overrides" +msgstr[0] "%1 felülírás" +msgstr[1] "%1 felülírás" + +#: plugins/3MFReader/WorkspaceDialog.qml:185 +msgctxt "@action:label" +msgid "Derivative from" +msgstr "Származék" + +#: plugins/3MFReader/WorkspaceDialog.qml:186 +msgctxt "@action:label" +msgid "%1, %2 override" +msgid_plural "%1, %2 overrides" +msgstr[0] "%1, %2 felülírás" +msgstr[1] "%1, %2 felülírás" + +#: plugins/3MFReader/WorkspaceDialog.qml:226 +msgctxt "@action:label" +msgid "Material settings" +msgstr "Alapanyag beállítások" + +#: plugins/3MFReader/WorkspaceDialog.qml:280 +msgctxt "@action:label" +msgid "Setting visibility" +msgstr "Beállítások láthatósága" + +#: plugins/3MFReader/WorkspaceDialog.qml:290 +msgctxt "@action:label" +msgid "Mode" +msgstr "Mód" + +#: plugins/3MFReader/WorkspaceDialog.qml:296 +msgctxt "@action:label" +msgid "%1 out of %2" +msgstr "%1 %2 -ből" + +#: plugins/3MFReader/WorkspaceDialog.qml:321 +msgctxt "@action:warning" +msgid "Loading a project will clear all models on the build plate." +msgstr "A projekt betöltésekor minden modell törlődik a tárgyasztalról." + +#: plugins/3MFReader/WorkspaceDialog.qml:367 +msgctxt "@label" +msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:392 +msgctxt "@action:button" +msgid "Open" +msgstr "Megnyitás" + +#: plugins/3MFReader/WorkspaceDialog.qml:398 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:407 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "" + +#: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33 +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "3MF fájl" + +#: plugins/3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF olvasó" + +#: plugins/3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Támogatást nyújt a 3MF fájlok olvasásához." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "" + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "" + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "" + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "" + +#: plugins/3MFWriter/ThreeMFWriter.py:240 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Hiba a 3mf fájl írásakor." + +#: plugins/3MFWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "3MF fájl" + +#: plugins/3MFWriter/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Cura projekt 3MF fájl" + +#: plugins/3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF író" + +#: plugins/3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Támogatást nyújt a 3MF fájlok írásához." + +#: plugins/AMFReader/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "AMF fájl" + +#: plugins/AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF Olvasó" + +#: plugins/AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Támogatást nyújt az AMF fájlok olvasásához." + +#: plugins/CuraDrive/plugin.json +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Konfiguráció biztonsági másolat készítése és visszaállítása." + +#: plugins/CuraDrive/plugin.json +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura biztonsági mentések" + +#: plugins/CuraDrive/src/CreateBackupJob.py:25 +msgctxt "@info:title" +msgid "Backups" +msgstr "Biztonsági mentések" + +#: plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Hiba történt a biztonsági mentés feltöltése közben." + +#: plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "" + +#: plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "" + +#: plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "A biztonsági mentés feltöltése ..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "A biztonsági mentés feltöltése befejeződött." + +#: plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "" + +#: plugins/CuraDrive/src/DriveApiService.py:86 +#: plugins/CuraDrive/src/RestoreBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Hiba történt a biztonsági másolat visszaállításakor." + +#: plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Bitonsági mentések kezelése" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "Többet szeretnél?" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Biztonsági mentés most" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Automatikus biztonsági mentés" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Automatikusan létrehoz egy biztonsági mentést minden egyes nap, mikor a Cura indítva van." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 +msgctxt "@button" +msgid "Restore" +msgstr "Visszaállítás" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Biztonsági mentés törlés" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Biztosan szeretnéd törölni a biztonsági mentést? Ez nem vonható vissza." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Helyreállítás biztonsági mentésből" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "A biztonsági mentés helyreállítás előtt a Cura -t újra kell indítani.Bezárjuk most a Cura-t?" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Cura verzió" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Gépek" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Alapanyagok" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Profilok" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Beépülők" + +#: plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Cura biztonsági mentések" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "Biztonsági mentéseim" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Nincs egyetlen biztonsági mentésed sem. Használd a 'Biztonsági mentés' gombot, hogy létrehozz egyet." + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Az előnézeti szakaszban a látható biztonsági mentések száma 5 lehet.Ha szeretné látni a régebbieket, távolítson el egyet a láthatóak közül." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "A Cura beállítások biztonsági mentése és szinkronizálása." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 +#: plugins/Marketplace/resources/qml/Marketplace.qml:312 +#: resources/qml/Account/GeneralOperations.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180 +#: resources/qml/WelcomePages/CloudContent.qml:212 +msgctxt "@button" +msgid "Sign in" +msgstr "Bejelentkezés" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:163 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:169 +msgctxt "@message:description" +msgid "Report a bug on UltiMaker Cura's issue tracker." +msgstr "" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:416 +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "Nem lehet szeletelni a jelenlegi alapanyaggal, mert nem kompatibilis a kiválasztott nyomtatóval, vagy a beállításaival." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:417 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:450 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:477 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:501 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:514 +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "Nem lehet szeletelni" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:449 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "Nem lehet szeletelni ezekkel a beállításokkal. Ezek a beállítások okoznak hibát: {0}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:476 +#, 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 "Nem lehet szeletelni pár modell beállítás miatt. A következő beállításokokoznak hibát egy vagy több modellnél: {error_labels}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:488 +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "Nem lehet szeletelni, mert az elsődleges torony, vagy az elsődleges pozíció érvénytelen." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:500 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "Nem lehet szeletelni, mert vannak olyan objektumok, amelyek a letiltott Extruderhez vannak társítva.%s." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:510 +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 "" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Réteg feldolgozás" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Információ" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine motor" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Biztosítja a kapcsolatot a CuraEngine szeletelő motorhoz." + +#: plugins/CuraProfileReader/__init__.py:14 +#: plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Cura Profil" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura profil olvasó" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Támogatást nyújt a Cura profilok importálásához." + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura profil író" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Támogatást nyújt a Cura profilok exportálásához." + +#: plugins/DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "" + +#: plugins/DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 +msgctxt "@option" +msgid "Save Cura project and print file" +msgstr "" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "" + +#: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19 +msgctxt "@text Placeholder for the username if it has been deleted" +msgid "deleted user" +msgstr "" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Nem sikerült elérni a frissítési információkat." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, 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 "" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Hogyan frissíts" + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Ellenőrzi a firmware frissítéseket." + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Frimrware frissítés ellenőrző" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Firmware frissítés" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "Firmware frissítés" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 +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 "A firmware egy szoftver, ami közvetlenül a nyomtatón fut. Ez vezérli a léptető motorokat, szabályozza a hőmérsékleteket, és az egész nyomtató működését." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "A firmware a nyomtató része, így a használatba vételkor már a gépen található.Azonban készülnek belőle újabb verziók, amik esetleges hibákat szüntetnek meg, illetve egyéb új funkciókat biztosíthatnak." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Automatikus firmware frissítés" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Egyedi firmware feltöltése" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "A firmware feltöltés nem lehetséges, mert nincs a nyomtatóval kapcsolat." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "A firmware feltöltés nem lehetséges, mert ugyan a nyomtató kapcsolódik, de az nem támogatja a firmware frissítést." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Egyedi firmware kiválasztása" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Firmware frissítés" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 +msgctxt "@label" +msgid "Updating firmware." +msgstr "A firmware frissítése." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Firmware frissítés kész." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "A firmware frissítés meghiúsult ismeretlen hiba miatt." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "A firmware frissítés meghiúsult kommunikációs hiba miatt." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "A firmware frissítés meghiúsult input/output hiba miatt." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "A firmware frissítés meghiúsult, mert nem található a firmware." + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "name" +msgid "Firmware Updater" +msgstr "Firmware frissítő" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Gépi funkciókat biztosít a firmware frissítéséhez." + +#: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "Tömörített G-kód fájl" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Tömörített G-kód olvasó" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Olvassa be a g-kódot egy tömörített archívumból." + +#: plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "A GCodeGzWriter nem támogatja a nem szöveges módot." + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Tömörített G-kód író" + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "G-kódot ír egy tömörített archívumba." + +#: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14 +#: plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "G-code Fájl" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "G-kód profil olvasó" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Támogatást nyújt a profilok g-kód fájlokból történő importálásához." + +#: plugins/GCodeReader/FlavorParser.py:359 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "G-kód elemzés" + +#: plugins/GCodeReader/FlavorParser.py:361 +#: plugins/GCodeReader/FlavorParser.py:515 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "G-kód részletek" + +#: plugins/GCodeReader/FlavorParser.py:513 +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 "Győződj meg róla, hogy a G-kód igazodik a nyomtatódhoz és beállításaihoz, mielőtt elküldöd a fájlt. A G-kód ábrázolása nem biztos, hogy pontos." + +#: plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "G fájl" + +#: plugins/GCodeReader/plugin.json +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." + +#: plugins/GCodeReader/plugin.json +msgctxt "name" +msgid "G-code Reader" +msgstr "G-kód olvasó" + +#: plugins/GCodeWriter/GCodeWriter.py:75 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "A GCodeWriter nem támogatja a szöveges nélüli módot." + +#: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Készítse elő a G-kódot az exportálás előtt." + +#: plugins/GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "G-kódot író" + +#: plugins/GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "G-kódot ír fájlba." + +#: plugins/ImageReader/ConfigUI.qml:14 +msgctxt "@title:window" +msgid "Convert Image" +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:33 +msgctxt "@action:label" +msgid "Height (mm)" +msgstr "Magasság (mm)" + +#: plugins/ImageReader/ConfigUI.qml:56 +msgctxt "@info:tooltip" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "Az egyes pixelek legnagyobb távolsága \"Base.\"" + +#: plugins/ImageReader/ConfigUI.qml:66 +msgctxt "@action:label" +msgid "Base (mm)" +msgstr "Alap (mm)" + +#: plugins/ImageReader/ConfigUI.qml:90 +msgctxt "@info:tooltip" +msgid "The base height from the build plate in millimeters." +msgstr "Az alap magassága a tárgyasztaltól mm -ben." + +#: plugins/ImageReader/ConfigUI.qml:100 +msgctxt "@action:label" +msgid "Width (mm)" +msgstr "Szélesség (mm)" + +#: plugins/ImageReader/ConfigUI.qml:124 +msgctxt "@info:tooltip" +msgid "The width in millimeters on the build plate" +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:134 +msgctxt "@action:label" +msgid "Depth (mm)" +msgstr "Mélység (mm)" + +#: plugins/ImageReader/ConfigUI.qml:158 +msgctxt "@info:tooltip" +msgid "The depth in millimeters on the build plate" +msgstr "A mélység mm-ben a tárgyasztalon" + +#: plugins/ImageReader/ConfigUI.qml:187 +msgctxt "@item:inlistbox" +msgid "Darker is higher" +msgstr "A sötétebb a magasabb" + +#: plugins/ImageReader/ConfigUI.qml:188 +msgctxt "@item:inlistbox" +msgid "Lighter is higher" +msgstr "A világosabb a magasabb" + +#: plugins/ImageReader/ConfigUI.qml:195 +msgctxt "@info:tooltip" +msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." +msgstr "A litofánok esetében a sötét képpontoknak a vastagabb helyek felelnek meg.Ez azért van így, mert minél vastagabb a hely, annál kevesebb fényt enged át.A magassági térképeknél a világosabb képpontok magasabb szintnek felelnek meg, tehát a generált 3D modellnél ezeket figyelembe kell venni.Ez azt is jelenti, hogy általában a generált modell a tényleges kép negatívja kell, hogy legyen." + +#: plugins/ImageReader/ConfigUI.qml:205 +msgctxt "@action:label" +msgid "Color Model" +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:224 +msgctxt "@item:inlistbox" +msgid "Linear" +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:225 +msgctxt "@item:inlistbox" +msgid "Translucency" +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:232 +msgctxt "@info:tooltip" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:242 +msgctxt "@action:label" +msgid "1mm Transmittance (%)" +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:263 +msgctxt "@info:tooltip" +msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:274 +msgctxt "@action:label" +msgid "Smoothing" +msgstr "Simítás" + +#: plugins/ImageReader/ConfigUI.qml:298 +msgctxt "@info:tooltip" +msgid "The amount of smoothing to apply to the image." +msgstr "A kép simításának mértéke." + +#: plugins/ImageReader/ConfigUI.qml:329 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 +#: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25 +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + +#: plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "JPG kép" + +#: plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "JPEG kép" + +#: plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "PNG kép" + +#: plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "BMP kép" + +#: plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "GIF kép" + +#: plugins/ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Lehetővé teszi a nyomtatható geometria létrehozását 2D-képfájlokból." + +#: plugins/ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Kép olvasó" + +#: plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Cura 15.04 profil" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Örökölt Cura profil olvasó" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Támogatást nyújt a profilok importálásához a régi Cura verziókból." + +#: plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Gép beállítások" + +#: plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Nyomtató" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Fűvóka beállítások" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Fúvóka méret" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Nyomtatószál átmérő" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Fúvóka X eltolás" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Fúvóka Y eltolás" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Hűtőventilátorok száma" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "Extruder G-kód kezdés" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "Extruder G-kód zárás" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Nyomtató beállítás" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (Szélesség)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Mélység)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Magasság)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Tárgyasztal alakja" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 +msgctxt "@label" +msgid "Origin at center" +msgstr "Origó középen" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 +msgctxt "@label" +msgid "Heated bed" +msgstr "Fűtött asztal" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Fűtött nyomtatási tér" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 +msgctxt "@label" +msgid "G-code flavor" +msgstr "G-kód illesztés" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Nyomtatófej beállítások" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 +msgctxt "@label" +msgid "X min" +msgstr "X min" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 +msgctxt "@label" +msgid "Y min" +msgstr "Y min" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 +msgctxt "@label" +msgid "X max" +msgstr "X max" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 +msgctxt "@label" +msgid "Y max" +msgstr "Y max" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Szán magasság" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Extruderek száma" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:342 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:390 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "G-kód kezdés" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:401 +msgctxt "@title:label" +msgid "End G-code" +msgstr "G-kód zárás" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "name" +msgid "Machine Settings Action" +msgstr "" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "A géoi beállítások megváltoztatásának lehetőségét biztosítja.(például a építési méret, fúvóka méret, stb.)" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:95 +msgctxt "@info:title" +msgid "Changes detected from your UltiMaker account" +msgstr "" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 +msgctxt "@action:button" +msgid "Sync" +msgstr "" + +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:12 +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:79 +msgctxt "@button" +msgid "Decline" +msgstr "" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:13 +#: resources/qml/WelcomePages/UserAgreementContent.qml:53 +msgctxt "@button" +msgid "Agree" +msgstr "Elfogadás" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:77 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Kiegészítő licencszerződés" + +#: plugins/Marketplace/CloudSync/LicensePresenter.py:42 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "" + +#: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "" + +#: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "" + +#: plugins/Marketplace/LocalPackageList.py:28 +msgctxt "@label" +msgid "Installed Plugins" +msgstr "" + +#: plugins/Marketplace/LocalPackageList.py:29 +msgctxt "@label" +msgid "Installed Materials" +msgstr "" + +#: plugins/Marketplace/LocalPackageList.py:33 +msgctxt "@label" +msgid "Bundled Plugins" +msgstr "" + +#: plugins/Marketplace/LocalPackageList.py:34 +msgctxt "@label" +msgid "Bundled Materials" +msgstr "" + +#: plugins/Marketplace/PackageModel.py:43 +msgctxt "@label:property" +msgid "Unknown Package" +msgstr "" + +#: plugins/Marketplace/PackageModel.py:66 +msgctxt "@label:property" +msgid "Unknown Author" +msgstr "" + +#: plugins/Marketplace/PackageModel.py:95 +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 "" + +#: plugins/Marketplace/RemotePackageList.py:117 +msgctxt "@info:error" +msgid "Could not interpret the server's response." +msgstr "" + +#: plugins/Marketplace/RemotePackageList.py:148 +msgctxt "@info:error" +msgid "Could not reach Marketplace." +msgstr "" + +#: plugins/Marketplace/plugin.json +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "" + +#: plugins/Marketplace/plugin.json +msgctxt "name" +msgid "Marketplace" +msgstr "" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 +msgctxt "@title" +msgid "Changes from your account" +msgstr "" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +msgctxt "@button" +msgid "Dismiss" +msgstr "" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +#: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 +#: resources/qml/WelcomePages/WhatsNewContent.qml:175 +msgctxt "@button" +msgid "Next" +msgstr "Következő" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "" + +#: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:47 +msgctxt "@text" +msgid "Please read and agree with the plugin licence." +msgstr "" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "" + +#: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:12 +msgctxt "@header" +msgid "Manage packages" +msgstr "" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:16 +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 "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" +msgid "Loading..." +msgstr "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:271 +msgctxt "@button" +msgid "In order to use the package you will need to restart Cura" +msgstr "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:279 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:300 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" +msgstr "" + +#: plugins/Marketplace/resources/qml/Materials.qml:8 +#: plugins/Marketplace/resources/qml/MissingPackages.qml:8 +msgctxt "@header" +msgid "Install Materials" +msgstr "" + +#: plugins/Marketplace/resources/qml/Materials.qml:12 +msgctxt "@text" +msgid "Select and install material profiles optimised for your UltiMaker 3D printers." +msgstr "" + +#: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "" + +#: plugins/Marketplace/resources/qml/OnboardBanner.qml:101 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205 +msgctxt "@button:label" +msgid "Learn More" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170 +msgctxt "@label Is followed by the name of an author" +msgid "By" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Disable" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Enable" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242 +msgctxt "@button" +msgid "Downgrading..." +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243 +msgctxt "@button" +msgid "Downgrade" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247 +msgctxt "@button" +msgid "Installing..." +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248 +msgctxt "@button" +msgid "Install" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252 +msgctxt "@button" +msgid "Uninstall" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Update" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Updating..." +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:193 +msgctxt "@header" +msgid "Compatible with Material Station" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "No" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "Yes" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:219 +msgctxt "@header" +msgid "Optimized for Air Manager" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Visit plug-in website" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Website" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:252 +msgctxt "@button" +msgid "Buy spool" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:261 +msgctxt "@button" +msgid "Safety datasheet" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:270 +msgctxt "@button" +msgid "Technical datasheet" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Failed to load packages:" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Retry?" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:167 +msgctxt "@button" +msgid "Loading" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No more results to load" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No results found with current filter" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:226 +msgctxt "@button" +msgid "Load more" +msgstr "" + +#: plugins/Marketplace/resources/qml/Plugins.qml:8 +msgctxt "@header" +msgid "Install Plugins" +msgstr "" + +#: plugins/Marketplace/resources/qml/Plugins.qml:12 +msgctxt "@text" +msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." +msgstr "" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 +msgctxt "@info" +msgid "UltiMaker Verified Plug-in" +msgstr "" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "UltiMaker Certified Material" +msgstr "" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 +msgctxt "@info" +msgid "UltiMaker Verified Package" +msgstr "" + +#: plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "3D-s modellsegéd" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -837,1922 +2380,17 @@ msgstr "" "

    Itt Megtudhatja, hogyan lehet a lehető legjobb nyomtatási minőséget és megbízhatóságot biztosítani.

    \n" "

    View print quality guide

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 -#, 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 "A projekt fájl {0} egy ismeretlen {1} géptípust tartalmaz.Gépet nem lehet importálni. Importálj helyette modelleket." +#: plugins/ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Ellenőrzi a modelleket és a nyomtatási konfigurációt a lehetséges nyomtatási problémákra vonatkozóan, és javaslatokat ad." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "Projekt fájl megnyitása" +#: plugins/ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Modell-ellenőrző" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:659 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:658 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:711 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Ajánlott" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:214 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Egyedi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:390 -msgctxt "@info:status" -msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 -msgctxt "@info:title" -msgid "Material profiles not installed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 -msgctxt "@action:button" -msgid "Install Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "3MF fájl" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:238 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Hiba a 3mf fájl írásakor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:282 -#, python-brace-format -msgctxt "@error:material" -msgid "It was not possible to store material package information in project file: {material}. This project may not open correctly on other systems." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 -msgctxt "@info:title" -msgid "Failed to save material package information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF fájl" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura projekt 3MF fájl" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF fájl" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 -msgctxt "@info:title" -msgid "Backups" -msgstr "Biztonsági mentések" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Hiba történt a biztonsági mentés feltöltése közben." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "A biztonsági mentés feltöltése ..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "A biztonsági mentés feltöltése befejeződött." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Hiba történt a biztonsági másolat visszaállításakor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Bitonsági mentések kezelése" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 -msgctxt "@message:button" -msgid "Report a bug" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 -msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:400 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "Nem lehet szeletelni a jelenlegi alapanyaggal, mert nem kompatibilis a kiválasztott nyomtatóval, vagy a beállításaival." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:401 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:434 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:461 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:473 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:485 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:498 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "Nem lehet szeletelni" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:433 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "Nem lehet szeletelni ezekkel a beállításokkal. Ezek a beállítások okoznak hibát: {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:460 -#, 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 "Nem lehet szeletelni pár modell beállítás miatt. A következő beállításokokoznak hibát egy vagy több modellnél: {error_labels}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:472 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "Nem lehet szeletelni, mert az elsődleges torony, vagy az elsődleges pozíció érvénytelen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:484 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "Nem lehet szeletelni, mert vannak olyan objektumok, amelyek a letiltott Extruderhez vannak társítva.%s." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 -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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Réteg feldolgozás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 -msgctxt "@info:title" -msgid "Information" -msgstr "Információ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura Profil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "Nem sikerült elérni a frissítési információkat." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s stable firmware available" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "Hogyan frissíts" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Firmware frissítés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Tömörített G-kód fájl" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "A GCodeGzWriter nem támogatja a nem szöveges módot." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "G-code Fájl" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:350 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "G-kód elemzés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:506 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-kód részletek" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 -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 "Győződj meg róla, hogy a G-kód igazodik a nyomtatódhoz és beállításaihoz, mielőtt elküldöd a fájlt. A G-kód ábrázolása nem biztos, hogy pontos." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G fájl" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "A GCodeWriter nem támogatja a szöveges nélüli módot." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Készítse elő a G-kódot az exportálás előtt." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG kép" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG kép" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG kép" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP kép" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF kép" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04 profil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Gép beállítások" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 -msgctxt "@action:button" -msgid "Sync" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:12 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:79 -msgctxt "@button" -msgid "Decline" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:13 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53 -msgctxt "@button" -msgid "Agree" -msgstr "Elfogadás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Kiegészítő licencszerződés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:28 -msgctxt "@label" -msgid "Installed Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:29 -msgctxt "@label" -msgid "Installed Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:33 -msgctxt "@label" -msgid "Bundled Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:34 -msgctxt "@label" -msgid "Bundled Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:43 -msgctxt "@label:property" -msgid "Unknown Package" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:66 -msgctxt "@label:property" -msgid "Unknown Author" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:117 -msgctxt "@info:error" -msgid "Could not interpret the server's response." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:148 -msgctxt "@info:error" -msgid "Could not reach Marketplace." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Monitor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 -msgctxt "@label" -msgid "Per Model Settings" -msgstr "Modellenkénti beállítások" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Modellenkénti beállítások konfigurálása" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "Utólagos műveletek" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "G-kód módosítás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "Előkészítés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Előnézet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Mentés külső meghajtóra" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Mentés külső meghajtóra {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 -msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "Nincsenek elérhető fájlformátumok az íráshoz!" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "Mentés külső meghajóra {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 -msgctxt "@info:title" -msgid "Saving" -msgstr "Mentés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Sikertelen mentés {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 -#, 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 "Nem található a fájlnév {device} -on az írási művelethez." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "Sikertelen mentés a {0}: {1} meghajtóra." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Mentve a {0} meghajtóra, mint {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Fájl Mentve" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -msgctxt "@action:button" -msgid "Eject" -msgstr "Leválaszt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "{0} meghajtó leválasztása" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "{0} leválasztva. Eltávolíthatod az adathordozót." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Hardver biztonságos eltávolítása" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "{0} leválasztása sikertelen. A meghajtó használatban van." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Cserélhető meghajtó" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Szimuláció nézet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "Réteg nézet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 -msgctxt "@text" -msgid "Unable to read example data file." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Felület nézet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "Támasz blokkoló" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "Hozzon létre egy kötetet, amelyben a támaszok nem kerülnek nyomtatásra." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA digitális eszközcsere" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF Bináris" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF beágyazott JSON" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford háromszög formátum" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Tömörített COLLADA digitális eszközcsere" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker formátumcsomag" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Tárgyasztal szint" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Válassz frissítést" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 -msgctxt "@action:button" -msgid "Print via cloud" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 -msgctxt "@properties:tooltip" -msgid "Print via cloud" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 -msgctxt "@info:status" -msgid "Connected via cloud" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 -msgctxt "@action:button" -msgid "Monitor print" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 -msgctxt "@action:tooltip" -msgid "Track the print in Ultimaker Digital Factory" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 -#, python-brace-format -msgctxt "@error:send" -msgid "Unknown error code when uploading print job: {0}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:242 -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:261 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:266 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:334 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:343 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:348 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:440 -msgctxt "info:name" -msgid "Ultimaker Digital Factory" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:352 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:356 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:442 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:443 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:444 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 -msgctxt "@title:window" -msgid "Remove printers?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 -#, python-brace-format -msgctxt "@label" -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] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 -msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 -msgctxt "@info:title" -msgid "Are you ready for cloud printing?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 -msgctxt "@action" -msgid "Get started" -msgstr "Kezdjük el" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 -msgctxt "@action" -msgid "Learn more" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 -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 "Olyan nyomtatóval próbál csatlakozni, amelyen nem fut az Ultimaker Connect. Kérjük, frissítse a nyomtatón a firmware-t." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "Frissítse a nyomtatót" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 -#, 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 "A Cura olyan anyagprofilt észlel, amelyet még nem telepítettek a(z) {0} csoport gazdanyomtatójára." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Anyagok küldése a nyomtatóra" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 -#, 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 "Megpróbált csatlakozni a (z) {0} -hez, de a gép nem része a csoportnak.Látogasson el a weboldalra, és konfigurálhatja azt csoporttagnak." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Nem csoport" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 -msgctxt "@action" -msgid "Configure group" -msgstr "Csoport konfiguráció" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "Várja meg, amíg az aktuális feladat elküldésre kerül." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Nyomtatási hiba" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "Nem sikerült feltölteni az adatokat a nyomtatóra." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Hálózati hiba" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Nyomtatási feladat küldése" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "A nyomtatási feladat feltöltése a nyomtatóra." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "A nyomtatási feladat sikeresen elküldésre került a nyomtatóra." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Adatok elküldve" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Hálózati nyomtatás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Hálózati nyomtatás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Csatlakozva hálózaton keresztül" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "Hálózati csatlakozás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "holnap" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "ma" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "USB nyomtatás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Nyomtatás USB-ről" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Nyomtatás USB-ről" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 -msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Csatlakozás USB-n" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 -msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "USB nyomtatás folyamatban van, a Cura bezárása leállítja ezt a nyomtatást. Biztos vagy ebben?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "A nyomtatás még folyamatban van. A Cura nem indíthat új nyomtatást USB-n keresztül, amíg az előző nyomtatás be nem fejeződött." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Nyomtatás folyamatban" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D Fájl" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Röntgen nézet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 -msgctxt "@title:window" -msgid "Open Project" -msgstr "Projekt megnyitása" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:59 -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "Összegzés - Cura Project" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108 -msgctxt "@info:tooltip" -msgid "How should the conflict in the machine be resolved?" -msgstr "Hogyan lehet megoldani a gépet érintő konfliktust?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:95 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Nyomtató beállítások" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:104 -msgctxt "@action:label" -msgid "Type" -msgstr "Típus" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:192 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -msgctxt "@action:label" -msgid "Printer Group" -msgstr "Nyomtató csoport" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:217 -msgctxt "@info:tooltip" -msgid "How should the conflict in the profile be resolved?" -msgstr "Hogyan lehet megoldani a profilt érintő konfliktust?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:220 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Profil beállítások" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:250 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:375 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:244 -msgctxt "@action:label" -msgid "Name" -msgstr "Név" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:268 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:261 -msgctxt "@action:label" -msgid "Intent" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:286 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:228 -msgctxt "@action:label" -msgid "Not in profile" -msgstr "Nincs a profilban" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:292 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:233 -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "%1 felülírás" -msgstr[1] "%1 felülírás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 -msgctxt "@action:label" -msgid "Derivative from" -msgstr "Származék" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:311 -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "%1, %2 felülírás" -msgstr[1] "%1, %2 felülírás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:333 -msgctxt "@info:tooltip" -msgid "How should the conflict in the material be resolved?" -msgstr "Hogyan lehet megoldani az alapanyaggal kapcsolatos konfliktust?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:360 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Alapanyag beállítások" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:396 -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "Beállítások láthatósága" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 -msgctxt "@action:label" -msgid "Mode" -msgstr "Mód" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 -msgctxt "@action:label" -msgid "Visible settings:" -msgstr "Látható beállítások:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "%1 %2 -ből" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:447 -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "A projekt betöltésekor minden modell törlődik a tárgyasztalról." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 -msgctxt "@action:button" -msgid "Open" -msgstr "Megnyitás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 -msgctxt "@action:button" -msgid "Open project anyway" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 -msgctxt "@action:button" -msgid "Install missing material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Többet szeretnél?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Biztonsági mentés most" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Automatikus biztonsági mentés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Automatikusan létrehoz egy biztonsági mentést minden egyes nap, mikor a Cura indítva van." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 -msgctxt "@button" -msgid "Restore" -msgstr "Visszaállítás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Biztonsági mentés törlés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Biztosan szeretnéd törölni a biztonsági mentést? Ez nem vonható vissza." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Helyreállítás biztonsági mentésből" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "A biztonsági mentés helyreállítás előtt a Cura -t újra kell indítani.Bezárjuk most a Cura-t?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura verzió" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Gépek" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Alapanyagok" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profilok" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Beépülők" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura biztonsági mentések" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Biztonsági mentéseim" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Nincs egyetlen biztonsági mentésed sem. Használd a 'Biztonsági mentés' gombot, hogy létrehozz egyet." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Az előnézeti szakaszban a látható biztonsági mentések száma 5 lehet.Ha szeretné látni a régebbieket, távolítson el egyet a láthatóak közül." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "A Cura beállítások biztonsági mentése és szinkronizálása." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:212 -msgctxt "@button" -msgid "Sign in" -msgstr "Bejelentkezés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 -msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 -msgctxt "@option" -msgid "Save Cura project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Firmware frissítés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 -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 "A firmware egy szoftver, ami közvetlenül a nyomtatón fut. Ez vezérli a léptető motorokat, szabályozza a hőmérsékleteket, és az egész nyomtató működését." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 -msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "A firmware a nyomtató része, így a használatba vételkor már a gépen található.Azonban készülnek belőle újabb verziók, amik esetleges hibákat szüntetnek meg, illetve egyéb új funkciókat biztosíthatnak." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Automatikus firmware frissítés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Egyedi firmware feltöltése" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "A firmware feltöltés nem lehetséges, mert nincs a nyomtatóval kapcsolat." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "A firmware feltöltés nem lehetséges, mert ugyan a nyomtató kapcsolódik, de az nem támogatja a firmware frissítést." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Egyedi firmware kiválasztása" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Firmware frissítés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 -msgctxt "@label" -msgid "Updating firmware." -msgstr "A firmware frissítése." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Firmware frissítés kész." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "A firmware frissítés meghiúsult ismeretlen hiba miatt." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "A firmware frissítés meghiúsult kommunikációs hiba miatt." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "A firmware frissítés meghiúsult input/output hiba miatt." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "A firmware frissítés meghiúsult, mert nem található a firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:14 -msgctxt "@title:window" -msgid "Convert Image" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 -msgctxt "@action:label" -msgid "Height (mm)" -msgstr "Magasság (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "Az egyes pixelek legnagyobb távolsága \"Base.\"" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 -msgctxt "@action:label" -msgid "Base (mm)" -msgstr "Alap (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 -msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "Az alap magassága a tárgyasztaltól mm -ben." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 -msgctxt "@action:label" -msgid "Width (mm)" -msgstr "Szélesség (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 -msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 -msgctxt "@action:label" -msgid "Depth (mm)" -msgstr "Mélység (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 -msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "A mélység mm-ben a tárgyasztalon" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 -msgctxt "@item:inlistbox" -msgid "Darker is higher" -msgstr "A sötétebb a magasabb" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -msgctxt "@item:inlistbox" -msgid "Lighter is higher" -msgstr "A világosabb a magasabb" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 -msgctxt "@info:tooltip" -msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." -msgstr "A litofánok esetében a sötét képpontoknak a vastagabb helyek felelnek meg.Ez azért van így, mert minél vastagabb a hely, annál kevesebb fényt enged át.A magassági térképeknél a világosabb képpontok magasabb szintnek felelnek meg, tehát a generált 3D modellnél ezeket figyelembe kell venni.Ez azt is jelenti, hogy általában a generált modell a tényleges kép negatívja kell, hogy legyen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:205 -msgctxt "@action:label" -msgid "Color Model" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:224 -msgctxt "@item:inlistbox" -msgid "Linear" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 -msgctxt "@item:inlistbox" -msgid "Translucency" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 -msgctxt "@info:tooltip" -msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 -msgctxt "@action:label" -msgid "1mm Transmittance (%)" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 -msgctxt "@info:tooltip" -msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 -msgctxt "@action:label" -msgid "Smoothing" -msgstr "Simítás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:298 -msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "A kép simításának mértéke." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:143 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:80 -msgctxt "@action:button" -msgid "OK" -msgstr "OK" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Nyomtató" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Fűvóka beállítások" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Fúvóka méret" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Nyomtatószál átmérő" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Fúvóka X eltolás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Fúvóka Y eltolás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Hűtőventilátorok száma" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Extruder G-kód kezdés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Extruder G-kód zárás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Nyomtató beállítás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (Szélesség)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Mélység)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Magasság)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Tárgyasztal alakja" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 -msgctxt "@label" -msgid "Origin at center" -msgstr "Origó középen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 -msgctxt "@label" -msgid "Heated bed" -msgstr "Fűtött asztal" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Fűtött nyomtatási tér" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 -msgctxt "@label" -msgid "G-code flavor" -msgstr "G-kód illesztés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Nyomtatófej beállítások" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 -msgctxt "@label" -msgid "X min" -msgstr "X min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 -msgctxt "@label" -msgid "Y min" -msgstr "Y min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 -msgctxt "@label" -msgid "X max" -msgstr "X max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 -msgctxt "@label" -msgid "Y max" -msgstr "Y max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Szán magasság" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Extruderek száma" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "G-kód kezdés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400 -msgctxt "@title:label" -msgid "End G-code" -msgstr "G-kód zárás" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 -msgctxt "@title" -msgid "Changes from your account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -msgctxt "@button" -msgid "Dismiss" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:118 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:175 -msgctxt "@button" -msgid "Next" -msgstr "Következő" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 -msgctxt "@title" -msgid "Install missing Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 -msgctxt "@button" -msgid "Plugin license agreement" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47 -msgctxt "@text" -msgid "Please read and agree with the plugin licence." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 -msgctxt "@button" -msgid "Accept" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 -msgctxt "@header" -msgid "Manage packages" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15 -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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 -msgctxt "@info:tooltip" -msgid "Manage packages" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 -msgctxt "@title" -msgid "Loading..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 -msgctxt "@button" -msgid "Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 -msgctxt "@button" -msgid "Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 -msgctxt "@info" -msgid "Search in the browser" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:271 -msgctxt "@button" -msgid "In order to use the package you will need to restart Cura" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:279 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:8 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MissingPackages.qml:8 -msgctxt "@header" -msgid "Install Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 -msgctxt "@text" -msgid "Select and install material profiles optimised for your Ultimaker 3D printers." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:101 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:207 -msgctxt "@button:label" -msgid "Learn More" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:172 -msgctxt "@label Is followed by the name of an author" -msgid "By" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Enable" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Disable" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 -msgctxt "@button" -msgid "Downgrading..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 -msgctxt "@button" -msgid "Downgrade" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 -msgctxt "@button" -msgid "Installing..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 -msgctxt "@button" -msgid "Install" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 -msgctxt "@button" -msgid "Uninstall" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Updating..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Update" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 -msgctxt "@header" -msgid "Package details" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 -msgctxt "@button:tooltip" -msgid "Back" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 -msgctxt "@header" -msgid "Description" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 -msgctxt "@header" -msgid "Compatible printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:134 -msgctxt "@info" -msgid "No compatibility information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:152 -msgctxt "@header" -msgid "Compatible support materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176 -msgctxt "@info No materials" -msgid "None" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:193 -msgctxt "@header" -msgid "Compatible with Material Station" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "Yes" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "No" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:219 -msgctxt "@header" -msgid "Optimized for Air Manager" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Visit plug-in website" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Website" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:252 -msgctxt "@button" -msgid "Buy spool" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:261 -msgctxt "@button" -msgid "Safety datasheet" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:270 -msgctxt "@button" -msgid "Technical datasheet" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Failed to load packages:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Retry?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:167 -msgctxt "@button" -msgid "Loading" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No more results to load" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No results found with current filter" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:226 -msgctxt "@button" -msgid "Load more" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8 -msgctxt "@header" -msgid "Install Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12 -msgctxt "@text" -msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 -msgctxt "@info" -msgid "Ultimaker Verified Plug-in" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 -msgctxt "@info" -msgid "Ultimaker Certified Material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 -msgctxt "@info" -msgid "Ultimaker Verified Package" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -2765,2830 +2403,3749 @@ msgstr "" "- Ellenőrizd, hogy a nyomtató csatlakozik a hálózathoz\n" "- Ellenőrizd, hogy fel vagy-e jelentkezve a felhőbe." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 +#: plugins/MonitorStage/MonitorMain.qml:113 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "Csatlakoztasd a nyomtatót a hálózathoz." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 +#: plugins/MonitorStage/MonitorMain.qml:148 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "Nézd meg az online felhasználói kézikönyvet" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:163 +#: plugins/MonitorStage/MonitorMain.qml:164 msgctxt "@info" msgid "In order to monitor your print from Cura, please connect the printer." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 +#: plugins/MonitorStage/__init__.py:14 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "" + +#: plugins/MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Monitor nézet" + +#: plugins/MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Monitor nézetet biztosít a Cura -ban." + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 msgctxt "@label" msgid "Mesh Type" msgstr "Háló típus" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 msgctxt "@label" msgid "Normal model" msgstr "Normál mód" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 msgctxt "@label" msgid "Print as support" msgstr "Támaszként nyomtassa" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 msgctxt "@label" msgid "Modify settings for overlaps" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 msgctxt "@label" msgid "Don't support overlaps" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 msgctxt "@item:inlistbox" msgid "Infill mesh only" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161 msgctxt "@item:inlistbox" msgid "Cutting mesh" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386 msgctxt "@action:button" msgid "Select settings" msgstr "Beállítások kiválasztása" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 msgctxt "@title:window" msgid "Select Settings to Customize for this model" msgstr "A modellek egyéni beállításainak kiválasztása" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: resources/qml/Preferences/SettingVisibilityPage.qml:102 msgctxt "@label:textbox" msgid "Filter..." msgstr "Szűrés..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 msgctxt "@label:checkbox" msgid "Show all" msgstr "Mindent mutat" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +#: plugins/PerObjectSettingsTool/__init__.py:14 +msgctxt "@label" +msgid "Per Model Settings" +msgstr "Modellenkénti beállítások" + +#: plugins/PerObjectSettingsTool/__init__.py:15 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Modellenkénti beállítások konfigurálása" + +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Modellenkénti beállítás-eszköz" + +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Biztosítja a modellenkénti beállításokat." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +msgctxt "@item:inmenu" +msgid "Post Processing" +msgstr "Utólagos műveletek" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +msgctxt "@item:inmenu" +msgid "Modify G-Code" +msgstr "G-kód módosítás" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Utó művelet beépülő" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 msgctxt "@label" msgid "Post Processing Scripts" msgstr "Utó művelet szkript" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 msgctxt "@action" msgid "Add a script" msgstr "Adjon hozzá egy szkriptet" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 msgctxt "@label" msgid "Settings" msgstr "Beállítások" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:459 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460 msgctxt "@info:tooltip" msgid "Change active post-processing scripts." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:463 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 msgctxt "@info:tooltip" msgid "The following script is active:" msgid_plural "The following scripts are active:" msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:47 +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Bővítmény, amely lehetővé teszi a felhasználó által létrehozott szkriptek utófeldolgozást" + +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Utólagos feldolgozás" + +#: plugins/PrepareStage/PrepareMenu.qml:74 +msgctxt "@button" +msgid "Add printer" +msgstr "Nyomtató hozzáadása" + +#: plugins/PrepareStage/PrepareMenu.qml:90 +msgctxt "@button" +msgid "Manage printers" +msgstr "Nyomtatók kezelése" + +#: plugins/PrepareStage/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "Előkészítés" + +#: plugins/PrepareStage/plugin.json +msgctxt "name" +msgid "Prepare Stage" +msgstr "Előkészítés nézet" + +#: plugins/PrepareStage/plugin.json +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Biztosítja az előkészítés nézetet a Cura-ban." + +#: plugins/PreviewStage/__init__.py:13 +msgctxt "@item:inmenu" +msgid "Preview" +msgstr "Előnézet" + +#: plugins/PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Előnézet" + +#: plugins/PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Előnézet biztosítása a Cura -ban." + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "Mentés külső meghajtóra" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "Mentés külső meghajtóra {0}" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "Nincsenek elérhető fájlformátumok az íráshoz!" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "Mentés külső meghajóra {0}" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 +msgctxt "@info:title" +msgid "Saving" +msgstr "Mentés" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Sikertelen mentés {0}: {1}" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 +#, 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 "Nem található a fájlnév {device} -on az írási művelethez." + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 +#, python-brace-format +msgctxt "@info:status" +msgid "Could not save to removable drive {0}: {1}" +msgstr "Sikertelen mentés a {0}: {1} meghajtóra." + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "Mentve a {0} meghajtóra, mint {1}" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 +msgctxt "@info:title" +msgid "File Saved" +msgstr "Fájl Mentve" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +msgctxt "@action:button" +msgid "Eject" +msgstr "Leválaszt" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "{0} meghajtó leválasztása" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "{0} leválasztva. Eltávolíthatod az adathordozót." + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Hardver biztonságos eltávolítása" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "{0} leválasztása sikertelen. A meghajtó használatban van." + +#: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "Cserélhető meghajtó" + +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Támogatás a cserélhető meghajtók üzem közbeni cseréjét és írását." + +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Cserélhető meghajtók kimeneti beépülője" + +#: plugins/SentryLogger/plugin.json +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "" + +#: plugins/SentryLogger/plugin.json +msgctxt "name" +msgid "Sentry Logger" +msgstr "" + +#: plugins/SimulationView/SimulationView.py:129 +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "" + +#: plugins/SimulationView/SimulationView.py:130 +msgctxt "@info:title" +msgid "No layers to show" +msgstr "" + +#: plugins/SimulationView/SimulationView.py:132 +#: plugins/SolidView/SolidView.py:74 +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:18 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:47 msgctxt "@label" msgid "Color scheme" msgstr "Szín séma" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:104 msgctxt "@label:listbox" msgid "Material Color" msgstr "Alapanyag szín" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:108 msgctxt "@label:listbox" msgid "Line Type" msgstr "Vonal típus" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:112 msgctxt "@label:listbox" msgid "Speed" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:116 msgctxt "@label:listbox" msgid "Layer Thickness" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:120 msgctxt "@label:listbox" msgid "Line Width" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:124 msgctxt "@label:listbox" msgid "Flow" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:164 msgctxt "@label" msgid "Compatibility Mode" msgstr "Kompatibilis mód" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:231 msgctxt "@label" msgid "Travels" msgstr "Átmozgás" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:237 msgctxt "@label" msgid "Helpers" msgstr "Segítők" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:243 msgctxt "@label" msgid "Shell" msgstr "Héj" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:64 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:249 msgctxt "@label" msgid "Infill" msgstr "Kitöltés" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" msgid "Starts" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:304 msgctxt "@label" msgid "Only Show Top Layers" msgstr "Csak a felső rétegek megjelenítése" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:313 msgctxt "@label" msgid "Show 5 Detailed Layers On Top" msgstr "Mutasson 5 felső réteget részletesen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:326 msgctxt "@label" msgid "Top / Bottom" msgstr "Felső / Alsó" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:330 msgctxt "@label" msgid "Inner Wall" msgstr "Belső fal" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:397 msgctxt "@label" msgid "min" msgstr "min" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:462 msgctxt "@label" msgid "max" msgstr "max" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 +#: plugins/SimulationView/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "Réteg nézet" + +#: plugins/SimulationView/plugin.json +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "" + +#: plugins/SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "Szimulációs nézet" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 msgctxt "@title:window" msgid "More information on anonymous data collection" msgstr "További információ a névtelen adatgyűjtésről" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 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 "Az Ultimaker Cura névtelen adatokat gyűjt a nyomtatási minőség és a felhasználói élmény javítása érdekében. Az alábbiakban található egy példa az összes megosztott adatra:" +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 "Az UltiMaker Cura névtelen adatokat gyűjt a nyomtatási minőség és a felhasználói élmény javítása érdekében. Az alábbiakban található egy példa az összes megosztott adatra:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 msgctxt "@text:window" msgid "I don't want to send anonymous data" msgstr "Nem szeretnék részt venni az adatgyűjtésben" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Anonim adatok küldésének engedélyezése" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Tálca szintezés" +#: plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Szeletelési infó" + +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Névtelen szelet-információt nyújt be. A beállítások révén letiltható." + +#: plugins/SolidView/SolidView.py:71 +msgctxt "@info:status" +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "" + +#: plugins/SolidView/SolidView.py:73 +msgctxt "@info:title" +msgid "Model Errors" +msgstr "" + +#: plugins/SolidView/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "Felület nézet" + +#: plugins/SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Felületi háló nézetet biztosít." + +#: plugins/SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Felület nézet" + +#: plugins/SupportEraser/__init__.py:12 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 "Azért, hogy nyomtattandó testek megfelelően letapadjanak, lehetőség van beállítani a nyomtatótálcát. Ha rákattint a 'Mozgás a következő pozícióba' gombra, a fej átmozgatható a különböző beállítási helyzetekbe." +msgid "Support Blocker" +msgstr "Támasz blokkoló" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 -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." +#: plugins/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "Hozzon létre egy kötetet, amelyben a támaszok nem kerülnek nyomtatásra." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Tálca szintezés indítása" +#: plugins/SupportEraser/plugin.json +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Törlő hálót hoz létre, hogy bizonyos helyeken blokkolja a támasz nyomtatását" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Mozgás a következő pozícióba" +#: plugins/SupportEraser/plugin.json +msgctxt "name" +msgid "Support Eraser" +msgstr "Támasz törlő" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Kérjük, válassza ki az Ultimaker Original eredeti frissítéseit" +#: plugins/TrimeshReader/__init__.py:15 +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Fűthető tárgyasztal (eredeti vagy utólag épített)" +#: plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "COLLADA digitális eszközcsere" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 +#: plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "glTF Bináris" + +#: plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "glTF beágyazott JSON" + +#: plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Stanford háromszög formátum" + +#: plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "Tömörített COLLADA digitális eszközcsere" + +#: plugins/TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Támogatást nyújt a modellfájlok olvasásához." + +#: plugins/TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh olvasó" + +#: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "UltiMaker Format Package" +msgstr "UltiMaker formátumcsomag" + +#: plugins/UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "" + +#: plugins/UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP Olvasó" + +#: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80 +#: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115 +#: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180 +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "" + +#: plugins/UFPWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "" + +#: plugins/UFPWriter/plugin.json +msgctxt "name" +msgid "UFP Writer" +msgstr "UFP Író" + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Kezeli a hálózati csatlakozásokat az UltiMaker hálózati nyomtatókhoz." + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "UltiMaker hálózati kapcsolat" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 msgctxt "@title:window" msgid "Connect to Networked Printer" msgstr "Csatlakozás hálózati nyomtatóhoz" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -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 "Ha hálózaton keresztül szeretnél közvetlenül nyomtatni, akkor győződj meg arról, hogy a nyomtató csatlakozik vezetékes, vagy vezeték nélküli hálózathoz. Ha nincs elérhető hálózat, akkor közvetlenül USB kapcsolaton keresztül is tudsz nyomtatni." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 msgctxt "@label" msgid "Select your printer from the list below:" msgstr "Válaszd ki a nyomtatódat az alábbi listából:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +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 "Ha hálózaton keresztül szeretnél közvetlenül nyomtatni, akkor győződj meg arról, hogy a nyomtató csatlakozik vezetékes, vagy vezeték nélküli hálózathoz. Ha nincs elérhető hálózat, akkor közvetlenül USB kapcsolaton keresztül is tudsz nyomtatni." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 msgctxt "@action:button" msgid "Edit" msgstr "Szerkeszt" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:140 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:321 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 +#: resources/qml/Preferences/MachinesPage.qml:153 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:186 +#: resources/qml/Preferences/ProfilesPage.qml:321 msgctxt "@action:button" msgid "Remove" msgstr "Eltávolít" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 msgctxt "@action:button" msgid "Refresh" msgstr "Frissít" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Ha a nyomtatód nincs a listában, olvasd el a hálózati nyomtatás hibaelhárítási útmutatót" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 msgctxt "@label" msgid "Type" msgstr "Típus" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 msgctxt "@label" msgid "Firmware version" msgstr "Frimware verzió" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 msgctxt "@label" msgid "Address" msgstr "Cím" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 msgctxt "@label" msgid "This printer is not set up to host a group of printers." msgstr "Ez a nyomtató nem úgy van beállítva, hogy nyomtatócsoportot üzemeltessen." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Ez a nyomtató gazdagépe a %1 nyomtatócsoportnak." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 msgctxt "@label" msgid "The printer at this address has not yet responded." msgstr "A címen található nyomtató még nem válaszolt." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 msgctxt "@action:button" msgid "Connect" msgstr "Csatlakozás" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 msgctxt "@title:window" msgid "Invalid IP address" msgstr "Hibás IP cím" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 msgctxt "@text" msgid "Please enter a valid IP address." msgstr "Kérlek adj meg egy érvényes IP címet." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 msgctxt "@title:window" msgid "Printer Address" msgstr "Nyomtató cím" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 msgctxt "@label" msgid "Enter the IP address of your printer on the network." msgstr "Írd be a nyomtató hálózati IP címét." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 msgctxt "@title:window" msgid "Configuration Changes" msgstr "Konfiguráció változások" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 msgctxt "@action:button" msgid "Override" msgstr "Felülírás" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 msgctxt "@label" msgid "The assigned printer, %1, requires the following configuration change:" msgid_plural "The assigned printer, %1, requires the following configuration changes:" msgstr[0] "A hozzárendelt nyomtatóhoz, %1, a következő konfigurációs változtatás szükséges:" msgstr[1] "A hozzárendelt nyomtatóhoz, %1, a következő konfigurációs változtatások szükségesek:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 msgctxt "@label" msgid "The printer %1 is assigned, but the job contains an unknown material configuration." msgstr "A %1 nyomtató hozzá van rendelve a feladathoz, azonban az ismeretlen anyagot tartalmaz." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 msgctxt "@label" msgid "Change material %1 from %2 to %3." msgstr "Változtasd meg az %1 anyagot %2 -ről %3 -ra." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 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ó)." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 msgctxt "@label" msgid "Change print core %1 from %2 to %3." msgstr "Cseréld a nyomtató magot %1 -ről %2 -re, %3 -hoz." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Változtasd meg a tálcát %1 -re (Ez nem felülbírálható)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110 msgctxt "@label" msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." msgstr "A felülbírálás a megadott beállításokat fogja használni a meglévő nyomtató konfigurációval, azonban ez eredménytelen nyomtatáshoz vezethet." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:178 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:175 -msgctxt "@label" -msgid "Glass" -msgstr "Üveg" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154 -msgctxt "@label" -msgid "Aluminum" -msgstr "Alumínium" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 msgctxt "@label" msgid "Move to top" msgstr "Lépj a tetjére" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155 msgctxt "@label" msgid "Delete" msgstr "Törlés" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:284 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186 +#: resources/qml/MonitorButton.qml:284 msgctxt "@label" msgid "Resume" msgstr "Folytat" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188 msgctxt "@label" msgid "Pausing..." msgstr "Várakozás..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190 msgctxt "@label" msgid "Resuming..." msgstr "Folytatás..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:288 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192 +#: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288 msgctxt "@label" msgid "Pause" msgstr "Várakozás" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Megszakítás..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 msgctxt "@label" msgid "Abort" msgstr "Megszakít" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:142 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Aborting..." +msgstr "Megszakítás..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218 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 "Biztos, hogy a %1 a nyomtatási sor elejére akarod mozgatni?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219 msgctxt "@window:title" msgid "Move print job to top" msgstr "Tedd a nyomtatási sor elejére" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:151 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227 msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to delete %1?" msgstr "Biztos, hogy törölni szeretnéd %1?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228 msgctxt "@window:title" msgid "Delete print job" msgstr "Nyomtatási feladat törlés" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:160 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236 msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to abort %1?" msgstr "Biztosan meg akarod szakítani %1?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237 +#: resources/qml/MonitorButton.qml:326 msgctxt "@window:title" msgid "Abort print" msgstr "Nyomtatás megszakítás" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Nyomtató kezelés" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:239 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "A távoli nyomtatásisor kezeléshez kérjük frissítse a firmware-t." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:275 -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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Betöltés..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Elérhetetlen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Elérhetetlen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347 -msgctxt "@label:status" -msgid "Idle" -msgstr "Készenlét" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Előkészítés..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Printing" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397 -msgctxt "@label" -msgid "Untitled" -msgstr "Felirat nélküli" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:412 -msgctxt "@label" -msgid "Anonymous" -msgstr "Névtelen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:433 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "A konfiguráció változtatásokat igényel" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:447 -msgctxt "@action:button" -msgid "Details" -msgstr "Részletek" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 msgctxt "@label" msgid "Unavailable printer" msgstr "Elérhetetlen nyomtató" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 msgctxt "@label" msgid "First available" msgstr "Az első elérhető" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "A távoli nyomtatásisor kezeléshez kérjük frissítse a firmware-t." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 msgctxt "@label:status" msgid "Aborted" msgstr "Megszakítva" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 msgctxt "@label:status" msgid "Finished" msgstr "Befejezve" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Előkészítés..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 msgctxt "@label:status" msgid "Aborting..." msgstr "Megszakítás..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 msgctxt "@label:status" msgid "Failed" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 msgctxt "@label:status" msgid "Pausing..." msgstr "Várakozás..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 msgctxt "@label:status" msgid "Paused" msgstr "Várakozás" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 msgctxt "@label:status" msgid "Resuming..." msgstr "Folytatás..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 msgctxt "@label:status" msgid "Action required" msgstr "Beavatkozás szükséges" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 msgctxt "@label:status" msgid "Finishes %1 at %2" msgstr "Befejezve %1 a %2 -ből" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Nyomtató kezelés" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280 +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 "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Betöltés..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Elérhetetlen" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Elérhetetlen" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Idle" +msgstr "Készenlét" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361 +msgctxt "@label:status" +msgid "Printing" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402 +msgctxt "@label" +msgid "Untitled" +msgstr "Felirat nélküli" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417 +msgctxt "@label" +msgid "Anonymous" +msgstr "Névtelen" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "A konfiguráció változtatásokat igényel" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452 +msgctxt "@action:button" +msgid "Details" +msgstr "Részletek" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 msgctxt "@label" msgid "Queued" msgstr "Nyomtatási Sor" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64 msgctxt "@label link to connect manager" msgid "Manage in browser" msgstr "Kezelés a böngészőben" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91 msgctxt "@label" msgid "There are no print jobs in the queue. Slice and send a job to add one." msgstr "Nincs a sorban nyomtatási feladat. Szeletelj és adj hozzá egy feladatot." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:98 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 msgctxt "@label" msgid "Print jobs" msgstr "Nyomtatások" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108 msgctxt "@label" msgid "Total print time" msgstr "Teljes nyomtatási idő" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117 msgctxt "@label" msgid "Waiting for" msgstr "Várakozom" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117 +msgctxt "@info" +msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129 +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 msgctxt "@title:window" msgid "Print over network" msgstr "Nyomtatás hálózaton" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 msgctxt "@action:button" msgid "Print" msgstr "Nyomtatás" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 msgctxt "@label" msgid "Printer selection" msgstr "Nyomtató kiválasztás" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162 +msgctxt "@action:button" +msgid "Print via cloud" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163 +msgctxt "@properties:tooltip" +msgid "Print via cloud" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164 +msgctxt "@info:status" +msgid "Connected via cloud" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276 +msgctxt "@action:button" +msgid "Monitor print" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278 +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298 +#, python-brace-format +msgctxt "@error:send" +msgid "Unknown error code when uploading print job: {0}" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23 +msgctxt "info:name" +msgid "Ultimaker Digital Factory" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425 +#, 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 "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426 +#, 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 "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427 +#, 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 "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474 +msgctxt "@title:window" +msgid "Remove printers?" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477 +#, python-brace-format +msgctxt "@label" +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] "" +msgstr[1] "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +msgctxt "@label" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#, 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 "" + +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +msgctxt "@action" +msgid "Get started" +msgstr "Kezdjük el" + +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24 +msgctxt "@action" +msgid "Learn more" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +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 "Olyan nyomtatóval próbál csatlakozni, amelyen nem fut az UltiMaker Connect. Kérjük, frissítse a nyomtatón a firmware-t." + +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Frissítse a nyomtatót" + +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#, 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 "A Cura olyan anyagprofilt észlel, amelyet még nem telepítettek a(z) {0} csoport gazdanyomtatójára." + +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "Anyagok küldése a nyomtatóra" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "" +msgstr[1] "" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29 +#, python-brace-format +msgctxt "info:status Filled in with printer name and printer model." +msgid "Adding printer {name} ({model}) from your account" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "" +msgstr[1] "" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#, 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 "Megpróbált csatlakozni a (z) {0} -hez, de a gép nem része a csoportnak.Látogasson el a weboldalra, és konfigurálhatja azt csoporttagnak." + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "Nem csoport" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +msgctxt "@action" +msgid "Configure group" +msgstr "Csoport konfiguráció" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18 +msgctxt "@info:status" +msgid "You will receive a confirmation via email when the print job is approved" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19 +msgctxt "@info:title" +msgid "The print job was successfully submitted" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22 +msgctxt "@action" +msgid "Manage print jobs" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "Várja meg, amíg az aktuális feladat elküldésre kerül." + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +msgctxt "@info:title" +msgid "Print error" +msgstr "Nyomtatási hiba" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "Nem sikerült feltölteni az adatokat a nyomtatóra." + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +msgctxt "@info:title" +msgid "Network error" +msgstr "Hálózati hiba" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "Nyomtatási feladat küldése" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "A nyomtatási feladat feltöltése a nyomtatóra." + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "A nyomtatási feladat sikeresen elküldésre került a nyomtatóra." + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "Adatok elküldve" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "" +msgstr[1] "" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "" +msgstr[1] "" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "Hálózati nyomtatás" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Hálózati nyomtatás" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "Csatlakozva hálózaton keresztül" + +#: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +msgctxt "@action" +msgid "Connect via Network" +msgstr "Hálózati csatlakozás" + +#: plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "holnap" + +#: plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "ma" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "USB nyomtatás" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:43 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "Nyomtatás USB-ről" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:44 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Nyomtatás USB-ről" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:80 +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "Csatlakozás USB-n" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:110 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "USB nyomtatás folyamatban van, a Cura bezárása leállítja ezt a nyomtatást. Biztos vagy ebben?" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:135 +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "A nyomtatás még folyamatban van. A Cura nem indíthat új nyomtatást USB-n keresztül, amíg az előző nyomtatás be nem fejeződött." + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Nyomtatás folyamatban" + +#: plugins/USBPrinting/plugin.json +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Elfogadja a G-kódot és elküldi őket egy nyomtatóra. A plugin a firmware-t is frissítheti." + +#: plugins/USBPrinting/plugin.json +msgctxt "name" +msgid "USB printing" +msgstr "USB nyomtatás" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 +msgctxt "@action" +msgid "Level build plate" +msgstr "Tárgyasztal szint" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Tálca szintezés" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 +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 "Azért, hogy nyomtattandó testek megfelelően letapadjanak, lehetőség van beállítani a nyomtatótálcát. Ha rákattint a 'Mozgás a következő pozícióba' gombra, a fej átmozgatható a különböző beállítási helyzetekbe." + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 +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." + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Tálca szintezés indítása" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "Mozgás a következő pozícióba" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "Válassz frissítést" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this UltiMaker Original" +msgstr "Kérjük, válassza ki az UltiMaker Original eredeti frissítéseit" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "Fűthető tárgyasztal (eredeti vagy utólag épített)" + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Gépi funkciók biztosítása az UltiMaker nyomtatók számára.(pl.: ágyszintezés varázsló, frissítések kiválasztása.)" + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "A konfigurációk frissítése Cura 2.1-ről Cura 2.2-re." + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "A 2.1-es verzió frissítése 2.2-re" + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "A konfigurációk frissítése Cura 2.2-ről Cura 2.4-re." + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "A 2.2-es verzió frissítése 2.4-ig" + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Frissíti a konfigurációt Cura 2.5-ről Cura 2.6-ra." + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "A 2.5-es verzió frissítése 2.6-ra" + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "A konfigurációk frissítése Cura 2.6-ról Cura 2.7-re." + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "A 2.6-os verzió frissítése 2.7-re" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "A konfigurációk frissítése Cura 2.7-ről Cura 3.0-ra." + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "A 2.7-es verzió frissítése 3.0-ra" + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "A konfigurációk frissítése Cura 3.0-ról Cura 3.1-re." + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "A 3.0-s verzió frissítése 3.1-re" + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "A konfigurációk frissítése Cura 3.2-ről Cura 3.3-ra." + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "A 3.2-es verzió frissítése 3.3-ra" + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "A konfigurációk frissítése Cura 3.3-ról Cura 3.4-re." + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "A 3.3-as verzió frissítése 3.4-re" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "A konfigurációt Cura 3.4-ről Cura 3.5-re frissíti." + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "A 3.4-es verzió frissítése 3.5-re" + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "A konfigurációk frissítése Cura 3.5-ről Cura 4.0-ra." + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "A 3.5-es verzió frissítése 4.0-ra" + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "A konfigurációt Cura 4.0-ról Cura 4.1-re frissíti." + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "A 4.0-s verzió frissítése 4.1-re" + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "A konfigurációk frissítése Cura 4.11-ről Cura 4.12-re." + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "A 4.11-es verzió frissítése 4.12-re" + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "A konfigurációk frissítése Cura 4.13-ről Cura 5.0-ra." + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "A 4.13-as verzió frissítése 5.0-re" + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "A konfigurációk frissítése Cura 4.1-ről Cura 4.2-re." + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "A 4.1-es verzió frissítése 4.2-re" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "A konfigurációk frissítése Cura 4.2-ről Cura 4.3-ra." + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "A 4.2-es verzió frissítése 4.3-ra" + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "A konfigurációk frissítése Cura 4.3-ról Cura 4.4-re." + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "A 4.3-as verzió frissítése 4.4-re" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "A konfigurációk frissítése Cura 4.4-ről Cura 4.5-re." + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "A 4.4-es verzió frissítése 4.5-re" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "A konfigurációk frissítése Cura 4.5-ről Cura 4.6-ra." + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "A 4.5-ös verzió frissítése 4.6-ra" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "A konfigurációk frissítése Cura 4.6.0-ról Cura 4.6.2-re." + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "A 4.6.0-os verzió frissítése 4.6.2-re" + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "A konfigurációk frissítése Cura 4.6.2-ről Cura 4.7-re." + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "A 4.6.2-es verzió frissítése 4.7-re" + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "A konfigurációk frissítése Cura 4.7-ről Cura 4.8-ra." + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "A 4.7-es verzió frissítése 4.8-ra" + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "A konfigurációk frissítése Cura 4.8-ról Cura 4.9-re." + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "A 4.8-es verzió frissítése 4.9-ra" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "A konfigurációk frissítése Cura 4.9-ről Cura 4.10-re." + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "A 4.9-es verzió frissítése 4.10-ra" + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "A konfigurációk frissítése Cura 5.2-ről Cura 5.3-ra." + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "A 5.2-es verzió frissítése 5.3-ra" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "" + +#: plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3D Fájl" + +#: plugins/X3DReader/plugin.json +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Támogatást nyújt az X3D fájlok olvasásához." + +#: plugins/X3DReader/plugin.json +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D Olvasó" + +#: plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Röntgen nézet" + +#: plugins/XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Röntgen nézetet biztosít." + +#: plugins/XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Röntgen nézet" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Alapanyag profilok" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Lehetővé teszi az XML-alapú anyagprofilok olvasását és írását." + +#: resources/qml/Account/AccountWidget.qml:24 msgctxt "@action:button" msgid "Sign in" msgstr "Bejelentkezés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: resources/qml/Account/GeneralOperations.qml:19 +#: resources/qml/WelcomePages/CloudContent.qml:64 msgctxt "@label" -msgid "Sign in to the Ultimaker platform" +msgid "Sign in to the UltiMaker platform" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 +#: resources/qml/Account/GeneralOperations.qml:39 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" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 +#: resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" -msgid "Create a free Ultimaker account" +msgid "Create a free UltiMaker account" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 +#: resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 +#: resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 +#: resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 +#: resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 +#: resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +#: resources/qml/Account/UserOperations.qml:78 msgctxt "@label The argument is a timestamp" msgid "Last update: %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +#: resources/qml/Account/UserOperations.qml:107 msgctxt "@button" -msgid "Ultimaker Account" +msgid "UltiMaker Account" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +#: resources/qml/Account/UserOperations.qml:126 msgctxt "@button" msgid "Sign Out" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" msgid "No time estimation available" msgstr "Nincs időbecslés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:77 msgctxt "@label" msgid "No cost estimation available" msgstr "Nincs költségbecslés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:127 msgctxt "@button" msgid "Preview" msgstr "Előnézet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" msgid "Time estimation" msgstr "Időbecslés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 +#: resources/qml/ActionPanel/PrintJobInformation.qml:107 msgctxt "@label" msgid "Material estimation" msgstr "Anyag becslés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:156 +#: resources/qml/ActionPanel/PrintJobInformation.qml:156 msgctxt "@label m for meter" msgid "%1m" msgstr "%1m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:157 +#: resources/qml/ActionPanel/PrintJobInformation.qml:157 msgctxt "@label g for grams" msgid "%1g" msgstr "%1g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:54 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Szeletelés..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:78 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:78 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "Nem szeletelhető" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Processing" msgstr "Feldolgozás" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Slice" msgstr "Szeletelés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:115 msgctxt "@label" msgid "Start the slicing process" msgstr "Szeletelés indítása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:132 msgctxt "@button" msgid "Cancel" msgstr "Elvet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 +#: resources/qml/Actions.qml:81 msgctxt "@action:inmenu" msgid "Show Online Troubleshooting" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 +#: resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "Teljes képernyőre váltás" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 +#: resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "Kilépés a teljes képernyőn" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 +#: resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "&Visszavon" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 +#: resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "&Újra" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 +#: resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "Kilép" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 +#: resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "3D nézet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 +#: resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Előlnézet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 +#: resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "Felülnézet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 +#: resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 +#: resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "Bal oldalnézet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 +#: resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "Jobb oldalnézet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 +#: resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Cura beállítása..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 +#: resources/qml/Actions.qml:197 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "&Nyomtató hozzáadása..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 +#: resources/qml/Actions.qml:203 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "Nyomtatók kezelése..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 +#: resources/qml/Actions.qml:210 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Anyagok kezelése..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:216 -msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate." +#: resources/qml/Actions.qml:218 +msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." msgid "Add more materials from Marketplace" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 +#: resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "Profil &frissítése a jelenlegi beállításokkal/felülírásokkal" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 +#: resources/qml/Actions.qml:233 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "&Jelenlegi változtatások eldobása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 +#: resources/qml/Actions.qml:245 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "Profil &létrehozása a jelenlegi beállításokkal/felülírásokkal..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 +#: resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "Profilok kezelése..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 +#: resources/qml/Actions.qml:259 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Online &Dokumentumok megjelenítése" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 +#: resources/qml/Actions.qml:267 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "Hibajelentés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 +#: resources/qml/Actions.qml:275 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "Újdonságok" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 +#: resources/qml/Actions.qml:289 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "Rólunk..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 +#: resources/qml/Actions.qml:296 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 +#: resources/qml/Actions.qml:306 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 +#: resources/qml/Actions.qml:315 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 +#: resources/qml/Actions.qml:324 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Modell törlés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 +#: resources/qml/Actions.qml:332 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "&Középső modell a platformon" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 +#: resources/qml/Actions.qml:338 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "&Csoportosítás" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 +#: resources/qml/Actions.qml:358 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Csoport bontása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 +#: resources/qml/Actions.qml:368 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "&Modellek keverése" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 +#: resources/qml/Actions.qml:378 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&Modell többszörözés..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 +#: resources/qml/Actions.qml:385 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "Mindent kijelöl" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 +#: resources/qml/Actions.qml:395 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "Tárgyasztal törlése" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 +#: resources/qml/Actions.qml:405 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "Mindent újratölt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 +#: resources/qml/Actions.qml:414 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Minden modell rendezése" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 +#: resources/qml/Actions.qml:422 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Kijelöltek rendezése" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 +#: resources/qml/Actions.qml:429 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Minden modellpozíció visszaállítása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 +#: resources/qml/Actions.qml:436 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "Minden modelltranszformáció visszaállítása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 +#: resources/qml/Actions.qml:445 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "Fájl(ok) megnyitása..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 +#: resources/qml/Actions.qml:455 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "Új projekt..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 +#: resources/qml/Actions.qml:462 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Konfigurációs mappa megjelenítése" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 +#: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Beállítások láthatóságának beállítása..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 msgctxt "@label:button" msgid "My printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 msgctxt "@tooltip:button" msgid "Monitor printers in Ultimaker Digital Factory." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 msgctxt "@label:button" msgid "Print jobs" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 msgctxt "@tooltip:button" msgid "Monitor print jobs and reprint from your print history." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." +msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." +msgid "Become a 3D printing expert with UltiMaker e-learning." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 msgctxt "@label:button" -msgid "Ultimaker support" +msgid "UltiMaker support" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." +msgid "Learn how to get started with UltiMaker Cura." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 msgctxt "@label:button" msgid "Ask a question" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." +msgid "Consult the UltiMaker Community." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 msgctxt "@label:button" msgid "Report a bug" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." +msgid "Visit the UltiMaker website." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 +#: resources/qml/ColorDialog.qml:110 msgctxt "@label" msgid "Hex" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 +#: resources/qml/Cura.qml:256 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "Ez a csomag újraindítás után fog települni." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +#: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14 msgctxt "@title:tab" msgid "General" msgstr "Általános" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +#: resources/qml/Cura.qml:470 msgctxt "@title:tab" msgid "Settings" msgstr "Beállítások" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:468 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:17 +#: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17 msgctxt "@title:tab" msgid "Printers" msgstr "Nyomtatók" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:470 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70 +#: resources/qml/Cura.qml:474 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:70 msgctxt "@title:tab" msgid "Materials" msgstr "Alapanyagok" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:472 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:57 +#: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57 msgctxt "@title:tab" msgid "Profiles" msgstr "Profilok" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +#: resources/qml/Cura.qml:581 msgctxt "@title:window %1 is the application name" msgid "Closing %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:590 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:599 +#: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591 msgctxt "@label %1 is the application name" msgid "Are you sure you want to exit %1?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:637 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 +#: resources/qml/Cura.qml:629 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 msgctxt "@title:window" msgid "Open file(s)" msgstr "Fájl(ok) megnyitása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +#: resources/qml/Cura.qml:734 msgctxt "@window:title" msgid "Install Package" msgstr "Csomag telepítése" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +#: resources/qml/Cura.qml:741 msgctxt "@title:window" msgid "Open File(s)" msgstr "Fájl(ok) megnyitása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +#: resources/qml/Cura.qml:743 msgctxt "@text:window" msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." msgstr "A kiválasztott fájlok között több G-kód fájl is található.Egyszerre csak egy G-kód fájlt nyithat meg, ezért csak egy ilyen fájlt válasszon ki." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:831 +#: resources/qml/Cura.qml:828 msgctxt "@title:window" msgid "Add Printer" msgstr "Nyomtató hozzáadása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +#: resources/qml/Cura.qml:836 msgctxt "@title:window" msgid "What's New" msgstr "Újdonságok" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: resources/qml/Cura.qml:890 +msgctxt "@title:window" +msgid "Save Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:891 +msgctxt "@textfield:placeholder" +msgid "New Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:892 +msgctxt "@info" +msgid "Custom profile name:" +msgstr "" + +#: resources/qml/Cura.qml:909 +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 "" + +#: resources/qml/Cura.qml:917 +msgctxt "@action:button" +msgid "Learn more about Cura print profiles" +msgstr "" + +#: resources/qml/Cura.qml:926 +msgctxt "@button" +msgid "Save new profile" +msgstr "" + +#: resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: resources/qml/Dialogs/AboutDialog.qml:59 msgctxt "@label" msgid "version: %1" msgstr "verzió: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: resources/qml/Dialogs/AboutDialog.qml:74 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Teljes körű megoldás az olvadószálas 3D-s nyomtatáshoz." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: resources/qml/Dialogs/AboutDialog.qml:87 msgctxt "@info:credit" msgid "" -"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura is developed by UltiMaker in cooperation with the community.\n" "Cura proudly uses the following open source projects:" -msgstr "A Cura-t az Ultimaker B.V fejlesztette ki a közösséggel együttműködésben. A Cura büszkén használja a következő nyílt forráskódú projekteket:" +msgstr "A Cura-t az UltiMaker B.V fejlesztette ki a közösséggel együttműködésben. A Cura büszkén használja a következő nyílt forráskódú projekteket:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label Description for application component" msgid "Graphical user interface" msgstr "Grafikai felhasználói interfész" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label Description for application component" msgid "Application framework" msgstr "Alkalmazás keretrendszer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label Description for application component" msgid "G-code generator" msgstr "G-kód generátor" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label Description for application component" msgid "Interprocess communication library" msgstr "Folyamatközi kommunikációs könyvtár" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:142 +msgctxt "@label Description for application component" msgid "Python bindings for libnest2d" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label Description for application component" msgid "Polygon packing library, developed by Prusa Research" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:144 +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" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:145 +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" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Programozási nyelv" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label Description for application dependency" msgid "GUI framework" msgstr "GUI keretrendszer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label Description for application dependency" msgid "GUI framework bindings" msgstr "GUI keretrendszer függőségek" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label Description for application dependency" msgid "C/C++ Binding library" msgstr "C/C++ függőségek könyvtár" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:152 +msgctxt "@label Description for application dependency" msgid "Data interchange format" msgstr "Adat csere formátum" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "Font" msgstr "Betűtípus" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label Description for application dependency" msgid "Polygon clipping library" msgstr "Poligon daraboló könyvtár" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label Description for application dependency" msgid "JSON parser" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:158 +msgctxt "@label Description for application dependency" msgid "Utility functions, including an image loader" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:159 +msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:162 +#: resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label Description for application dependency" msgid "Root Certificates for validating SSL trustworthiness" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label Description for application dependency" msgid "Compatibility between Python 2 and 3" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label Description for application dependency" msgid "Support library for system keyring access" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label Description for application dependency" msgid "Support library for faster math" msgstr "Támogató könyvtár a gyorsabb matematikához" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:167 +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" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label Description for application dependency" msgid "Python bindings for Clipper" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Soros kommunikációs könyvtár" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:170 +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" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 -msgctxt "@Label" +#: resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@Label Description for application dependency" msgid "Python Error tracking library" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:172 +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" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:173 +msgctxt "@label Description for application dependency" msgid "ZeroConf discovery library" msgstr "ZeroConf felderítő könyvtár" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label Description for development tool" msgid "Dependency and package manager" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label Description for development tool" msgid "Packaging Python-applications" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:179 +msgctxt "@label Description for development tool" msgid "Linux cross-distribution application deployment" msgstr "Linux kereszt-disztribúciós alkalmazás telepítése" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:180 +msgctxt "@label Description for development tool" msgid "Generating Windows installers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 msgctxt "@title:window" msgid "Open project file" msgstr "Projekt fájl megnyitása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84 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 "Ez egy Cura projekt fájl. Szeretné projektként megnyitni, vagy importálni a modelleket?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:90 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91 msgctxt "@text:window" msgid "Remember my choice" msgstr "Emlékezzen a választásra" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105 msgctxt "@action:button" msgid "Open as project" msgstr "Megnyitás projektként" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110 msgctxt "@action:button" msgid "Import models" msgstr "Modellek importálása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:17 +msgctxt "@title:window" +msgid "Select Printer" +msgstr "" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:54 +msgctxt "@title:label" +msgid "Compatible Printers" +msgstr "" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:110 +msgctxt "@description" +msgid "No compatible printers, that are currently online, were found." +msgstr "" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Változtatások megtartása vagy eldobása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:49 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64 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 "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90 msgctxt "@title:column" msgid "Profile settings" msgstr "Profil beállítások" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92 msgctxt "@title:column" msgid "Current changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:799 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123 +#: resources/qml/Preferences/GeneralPage.qml:820 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Mindig kérdezz" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Eldobás és ne kérdezze újra" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Megtartás és ne kérdezze újra" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157 msgctxt "@action:button" msgid "Discard changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164 msgctxt "@action:button" msgid "Keep changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171 +msgctxt "@action:button" +msgid "Save as new custom profile" +msgstr "" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178 +msgctxt "@action:button" +msgid "Save changes" +msgstr "" + +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 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 "Egy vagy több projekt fájlt találtunk a kiválasztott fájlokban.Egyszerre csak egy projekt fájlt nyithat meg. Javasoljuk, hogy csak a modelleket importálja ezekből a fájlokból. Szeretné folytatni?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 msgctxt "@action:button" msgid "Import all as models" msgstr "Importáljunk mindent modellekként" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 +#: resources/qml/Dialogs/RenameDialog.qml:23 +msgctxt "@title:window" +msgid "Rename" +msgstr "" + +#: resources/qml/Dialogs/RenameDialog.qml:24 +msgctxt "@info" +msgid "Please provide a new name." +msgstr "" + +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 msgctxt "@title:window" msgid "Save Project" msgstr "Projekt mentése" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177 msgctxt "@action:label" msgid "Extruder %1" msgstr "Extruder %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & alapanyag" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195 msgctxt "@action:label" msgid "Material" msgstr "Alapanyag" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "Ne mutassa újra a projekt összegzését mentés közben" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298 msgctxt "@action:button" msgid "Save" msgstr "Mentés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -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" -msgstr[0] "Kiválasztott modell nyomtatása %1" -msgstr[1] "Kiválasztott modellek nyomtatása %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:93 +#: resources/qml/JobSpecs.qml:93 msgctxt "@text Print job name" msgid "Untitled" msgstr "Névtelen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 +#: resources/qml/MainWindow/ApplicationMenu.qml:63 +#: resources/qml/Menus/SettingsMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&Beállítások" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 +#: resources/qml/MainWindow/ApplicationMenu.qml:87 msgctxt "@title:window" msgid "New project" msgstr "Új projekt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88 +#: resources/qml/MainWindow/ApplicationMenu.qml:88 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 "Biztos benne, hogy új projektet akar kezdeni? Ez törli az alapsíkot és az összes nem mentett beállítást." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135 +#: resources/qml/MainWindow/MainWindowHeader.qml:135 msgctxt "@action:button" msgid "Marketplace" msgstr "Piactér" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +#: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 msgctxt "@header" msgid "Configurations" msgstr "Konfigurációk" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 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." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 msgctxt "@label" msgid "Marketplace" msgstr "Piactér" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 msgctxt "@label" msgid "Loading available configurations from the printer..." msgstr "Az elérhető konfigurációk betöltése a nyomtatóról..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 msgctxt "@label" msgid "The configurations are not available because the printer is disconnected." msgstr "A konfiguráció nem elérhető, mert nincs kapcsolat a a nyomtatóval." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 msgctxt "@tooltip" msgid "The configuration of this extruder is not allowed, and prohibits slicing." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 msgctxt "@tooltip" msgid "There are no profiles matching the configuration of this extruder." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 msgctxt "@label" msgid "Select configuration" msgstr "Konfiguráció kiválasztása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 msgctxt "@label" msgid "Configurations" msgstr "Konfigurációk" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 msgctxt "@header" msgid "Custom" msgstr "Egyéni" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:62 -msgctxt "@label" -msgid "Printer" -msgstr "Nyomtató" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:217 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173 msgctxt "@label" msgid "Enabled" msgstr "Bekapcsolt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222 msgctxt "@label" msgid "Material" msgstr "Alapanyag" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348 msgctxt "@label" msgid "Use glue for better adhesion with this material combination." msgstr "Használj ragasztót a jobb tapadás érdekében, ennél az alapanyag kombinációnál." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:29 +#: resources/qml/Menus/ContextMenu.qml:29 msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "Kiválasztott modell nyomtatása:" msgstr[1] "Kiválasztott modellek nyomtatása:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:92 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Kiválasztott modell sokszorozása" msgstr[1] "Kiválasztott modellek sokszorozása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:123 msgctxt "@label" msgid "Number of Copies" msgstr "Másolatok száma" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/EditMenu.qml:12 +#: resources/qml/Menus/EditMenu.qml:12 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "S&zerkesztés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ExtensionMenu.qml:13 +#: resources/qml/Menus/ExtensionMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "K&iterjesztések" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 +#: resources/qml/Menus/FileMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "&Fájl" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:45 +#: resources/qml/Menus/FileMenu.qml:45 msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:78 +#: resources/qml/Menus/FileMenu.qml:78 msgctxt "@title:menu menubar:file" msgid "&Export..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:89 +#: resources/qml/Menus/FileMenu.qml:89 msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Kiválasztás exportálása..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/HelpMenu.qml:14 +#: resources/qml/Menus/HelpMenu.qml:14 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "&Segítség" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +#: resources/qml/Menus/MaterialMenu.qml:13 msgctxt "@label:category menu label" msgid "Material" msgstr "Alapanyag" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:53 +#: resources/qml/Menus/MaterialMenu.qml:53 msgctxt "@label:category menu label" msgid "Favorites" msgstr "Kedvencek" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:78 +#: resources/qml/Menus/MaterialMenu.qml:78 msgctxt "@label:category menu label" msgid "Generic" msgstr "Generikus" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +#: resources/qml/Menus/OpenFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open File(s)..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PreferencesMenu.qml:21 +#: resources/qml/Menus/PreferencesMenu.qml:21 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "P&referenciák" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:13 +#: resources/qml/Menus/PrinterMenu.qml:13 msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "&Nyomtató" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:17 +#: resources/qml/Menus/PrinterMenu.qml:17 msgctxt "@label:category menu label" msgid "Network enabled printers" msgstr "Hálózati nyomtatók" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:50 +#: resources/qml/Menus/PrinterMenu.qml:50 msgctxt "@label:category menu label" msgid "Local printers" msgstr "Helyi nyomtatók" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +#: resources/qml/Menus/RecentFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open &Recent" msgstr "Legutóbbi fájlok" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +#: resources/qml/Menus/SaveProjectMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Save Project..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:34 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Alapanyag" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:49 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Beállítva aktív extruderként" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:55 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Extruder engedélyezése" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:63 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Extruder letiltása" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 msgctxt "@action:inmenu" msgid "Visible Settings" msgstr "Láthatósági beállítások" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 msgctxt "@action:inmenu" msgid "Collapse All Categories" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 msgctxt "@action:inmenu" msgid "Manage Setting Visibility..." msgstr "Beállítások láthatóságának kezelése..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:13 +#: resources/qml/Menus/SettingsMenu.qml:34 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Alapanyag" + +#: resources/qml/Menus/SettingsMenu.qml:49 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Beállítva aktív extruderként" + +#: resources/qml/Menus/SettingsMenu.qml:55 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Extruder engedélyezése" + +#: resources/qml/Menus/SettingsMenu.qml:63 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Extruder letiltása" + +#: resources/qml/Menus/ViewMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&View" msgstr "&Nézet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:17 +#: resources/qml/Menus/ViewMenu.qml:17 msgctxt "@action:inmenu menubar:view" msgid "&Camera position" msgstr "&Kamera helyzet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:30 +#: resources/qml/Menus/ViewMenu.qml:30 msgctxt "@action:inmenu menubar:view" msgid "Camera view" msgstr "Kamera nézet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 +#: resources/qml/Menus/ViewMenu.qml:48 msgctxt "@action:inmenu menubar:view" msgid "Perspective" msgstr "Perspektívikus" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +#: resources/qml/Menus/ViewMenu.qml:59 msgctxt "@action:inmenu menubar:view" msgid "Orthographic" msgstr "Merőleges" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:115 +#: resources/qml/MonitorButton.qml:115 msgctxt "@label:MonitorStatus" msgid "Not connected to a printer" msgstr "Nincs nyomtatóhoz csatlakoztatva" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 +#: resources/qml/MonitorButton.qml:119 msgctxt "@label:MonitorStatus" msgid "Printer does not accept commands" msgstr "A nyomtató nem fogadja a parancsokat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:129 +#: resources/qml/MonitorButton.qml:129 msgctxt "@label:MonitorStatus" msgid "In maintenance. Please check the printer" msgstr "Karbantartás alatt. Ellenőrizze a nyomtatót" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:140 +#: resources/qml/MonitorButton.qml:140 msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Elveszett a kapcsolat a nyomtatóval" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +#: resources/qml/MonitorButton.qml:142 msgctxt "@label:MonitorStatus" msgid "Printing..." msgstr "Nyomtatás..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +#: resources/qml/MonitorButton.qml:145 msgctxt "@label:MonitorStatus" msgid "Paused" msgstr "Felfüggsztve" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +#: resources/qml/MonitorButton.qml:148 msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Előkészítés..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +#: resources/qml/MonitorButton.qml:150 msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Távolítsa el a tárgyat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +#: resources/qml/MonitorButton.qml:318 msgctxt "@label" msgid "Abort Print" msgstr "Nyomtatás megszakítás" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:327 +#: resources/qml/MonitorButton.qml:327 msgctxt "@label" msgid "Are you sure you want to abort the print?" msgstr "Biztosan meg akarod szakítani a nyomtatást?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:109 +#: resources/qml/ObjectItemButton.qml:109 msgctxt "@label" msgid "Is printed as support." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:112 +#: resources/qml/ObjectItemButton.qml:112 msgctxt "@label" msgid "Other models overlapping with this model are modified." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:115 +#: resources/qml/ObjectItemButton.qml:115 msgctxt "@label" msgid "Infill overlapping with this model is modified." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:118 +#: resources/qml/ObjectItemButton.qml:118 msgctxt "@label" msgid "Overlaps with this model are not supported." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:125 +#: resources/qml/ObjectItemButton.qml:125 msgctxt "@label %1 is the number of settings it overrides." msgid "Overrides %1 setting." msgid_plural "Overrides %1 settings." msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 +#: resources/qml/ObjectSelector.qml:59 msgctxt "@label" msgid "Object list" msgstr "Objektum lista" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:131 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:24 +#: resources/qml/Preferences/GeneralPage.qml:134 +#: resources/qml/Preferences/SettingVisibilityPage.qml:24 msgctxt "@action:button" msgid "Defaults" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +#: resources/qml/Preferences/GeneralPage.qml:172 msgctxt "@label" msgid "Interface" msgstr "Interfész" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +#: resources/qml/Preferences/GeneralPage.qml:215 msgctxt "@heading" msgid "-- incomplete --" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +#: resources/qml/Preferences/GeneralPage.qml:261 msgctxt "@label" msgid "Currency:" msgstr "Pénznem:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:274 +#: resources/qml/Preferences/GeneralPage.qml:277 msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." msgid "Theme*:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +#: resources/qml/Preferences/GeneralPage.qml:323 msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Automatikus újraszeletelés, ha a beállítások megváltoznak." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +#: resources/qml/Preferences/GeneralPage.qml:331 msgctxt "@option:check" msgid "Slice automatically" msgstr "Automatikus szeletelés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:337 +#: resources/qml/Preferences/GeneralPage.qml:340 +msgctxt "@info:tooltip" +msgid "Show an icon and notifications in the system notification area." +msgstr "" + +#: resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Add icon to system tray *" +msgstr "" + +#: resources/qml/Preferences/GeneralPage.qml:357 msgctxt "@label" msgid "*You will need to restart the application for these changes to have effect." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +#: resources/qml/Preferences/GeneralPage.qml:373 msgctxt "@label" msgid "Viewport behavior" msgstr "A nézetablak viselkedése" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +#: resources/qml/Preferences/GeneralPage.qml:381 msgctxt "@info:tooltip" msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." msgstr "Jelölje meg pirossal azokat a területeket, amiket szükséges alátámasztani.Ha ezeket a részeket nem támasztjuk alá, a nyomtatás nem lesz hibátlan." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:369 +#: resources/qml/Preferences/GeneralPage.qml:390 msgctxt "@option:check" msgid "Display overhang" msgstr "Túlnyúlás kijelzése" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +#: resources/qml/Preferences/GeneralPage.qml:400 msgctxt "@info:tooltip" msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:388 +#: resources/qml/Preferences/GeneralPage.qml:409 msgctxt "@option:check" msgid "Display model errors" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +#: resources/qml/Preferences/GeneralPage.qml:417 msgctxt "@info:tooltip" msgid "Moves the camera so the model is in the center of the view when a model is selected" msgstr "A kamerát úgy mozgatja, hogy a modell kiválasztásakor, az a nézet középpontjában legyen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:401 +#: resources/qml/Preferences/GeneralPage.qml:422 msgctxt "@action:button" msgid "Center camera when item is selected" msgstr "Kamera középre, mikor az elem ki van választva" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +#: resources/qml/Preferences/GeneralPage.qml:432 msgctxt "@info:tooltip" msgid "Should the default zoom behavior of cura be inverted?" msgstr "Megfordítsuk-e az alapértelmezett Zoom viselkedését?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:416 +#: resources/qml/Preferences/GeneralPage.qml:437 msgctxt "@action:button" msgid "Invert the direction of camera zoom." msgstr "Fordítsa meg a kamera zoom irányát." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Should zooming move in the direction of the mouse?" msgstr "A nagyítás az egér mozgatásának irányában mozogjon?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Zooming towards the mouse is not supported in the orthographic perspective." msgstr "Az egér felé történő nagyítás ortográfiai szempontból nem támogatott." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:437 +#: resources/qml/Preferences/GeneralPage.qml:458 msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "Nagyítás az egér mozgás irányában" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +#: resources/qml/Preferences/GeneralPage.qml:484 msgctxt "@info:tooltip" msgid "Should models on the platform be moved so that they no longer intersect?" msgstr "Az alapsíkon lévő modelleket elmozgassuk úgy, hogy ne keresztezzék egymást?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:468 +#: resources/qml/Preferences/GeneralPage.qml:489 msgctxt "@option:check" msgid "Ensure models are kept apart" msgstr "A modellek egymástól való távtartásának biztosítása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +#: resources/qml/Preferences/GeneralPage.qml:498 msgctxt "@info:tooltip" msgid "Should models on the platform be moved down to touch the build plate?" msgstr "A modelleket mozgatni kell lefelé, hogy érintsék a tárgyasztalt?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:482 +#: resources/qml/Preferences/GeneralPage.qml:503 msgctxt "@option:check" msgid "Automatically drop models to the build plate" msgstr "Modellek automatikus tárgyasztalra illesztése" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +#: resources/qml/Preferences/GeneralPage.qml:515 msgctxt "@info:tooltip" msgid "Show caution message in g-code reader." msgstr "Figyelmeztető üzenet megjelenítése g-kód olvasóban." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503 +#: resources/qml/Preferences/GeneralPage.qml:524 msgctxt "@option:check" msgid "Caution message in g-code reader" msgstr "Figyelmeztető üzenet a g-code olvasóban" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +#: resources/qml/Preferences/GeneralPage.qml:532 msgctxt "@info:tooltip" msgid "Should layer be forced into compatibility mode?" msgstr "Kényszerítsük a réteget kompatibilitási módba ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +#: resources/qml/Preferences/GeneralPage.qml:537 msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "A rétegnézet kompatibilis módjának kényszerítése (újraindítás szükséges)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +#: resources/qml/Preferences/GeneralPage.qml:547 msgctxt "@info:tooltip" msgid "Should Cura open at the location it was closed?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:531 +#: resources/qml/Preferences/GeneralPage.qml:552 msgctxt "@option:check" msgid "Restore window position on start" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +#: resources/qml/Preferences/GeneralPage.qml:562 msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Milyen fípusú fényképezőgépet használunk?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +#: resources/qml/Preferences/GeneralPage.qml:569 msgctxt "@window:text" msgid "Camera rendering:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +#: resources/qml/Preferences/GeneralPage.qml:576 msgid "Perspective" msgstr "Perspetívikus" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +#: resources/qml/Preferences/GeneralPage.qml:577 msgid "Orthographic" msgstr "Merőleges" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +#: resources/qml/Preferences/GeneralPage.qml:617 msgctxt "@label" msgid "Opening and saving files" msgstr "Fájlok megnyitása és mentése" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +#: resources/qml/Preferences/GeneralPage.qml:624 msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:608 +#: resources/qml/Preferences/GeneralPage.qml:629 msgctxt "@option:check" msgid "Use a single instance of Cura" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +#: resources/qml/Preferences/GeneralPage.qml:640 msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +#: resources/qml/Preferences/GeneralPage.qml:646 msgctxt "@option:check" msgid "Clear buildplate before loading model into the single instance" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 +#: resources/qml/Preferences/GeneralPage.qml:656 msgctxt "@info:tooltip" msgid "Should models be scaled to the build volume if they are too large?" msgstr "A modelleket átméretezzük a maximális építési méretre, ha azok túl nagyok?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +#: resources/qml/Preferences/GeneralPage.qml:661 msgctxt "@option:check" msgid "Scale large models" msgstr "Nagy modellek átméretezése" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +#: resources/qml/Preferences/GeneralPage.qml:671 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 "Egy adott modell rendkívül kicsinek tűnhet, ha mértékegysége például méterben van, nem pedig milliméterben. Ezeket a modelleket átméretezzük?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:655 +#: resources/qml/Preferences/GeneralPage.qml:676 msgctxt "@option:check" msgid "Scale extremely small models" msgstr "Extrém kicsi modellek átméretezése" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +#: resources/qml/Preferences/GeneralPage.qml:686 msgctxt "@info:tooltip" msgid "Should models be selected after they are loaded?" msgstr "Betöltés után a modellek legyenek kiválasztva?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: resources/qml/Preferences/GeneralPage.qml:691 msgctxt "@option:check" msgid "Select models when loaded" msgstr "Modell kiválasztása betöltés után" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +#: resources/qml/Preferences/GeneralPage.qml:701 msgctxt "@info:tooltip" msgid "Should a prefix based on the printer name be added to the print job name automatically?" msgstr "A nyomtató nevét, mint előtagot, hozzáadjuk a nyomtatási feladat nevéhez?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:685 +#: resources/qml/Preferences/GeneralPage.qml:706 msgctxt "@option:check" msgid "Add machine prefix to job name" msgstr "Gépnév előtagként a feladatnévben" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +#: resources/qml/Preferences/GeneralPage.qml:716 msgctxt "@info:tooltip" msgid "Should a summary be shown when saving a project file?" msgstr "Mutassuk az összegzést a projekt mentésekor?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: resources/qml/Preferences/GeneralPage.qml:720 msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Összegzés megjelenítése projekt mentésekor" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +#: resources/qml/Preferences/GeneralPage.qml:730 msgctxt "@info:tooltip" msgid "Default behavior when opening a project file" msgstr "Alapértelmezett viselkedés a projektfájl megnyitásakor" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +#: resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@window:text" msgid "Default behavior when opening a project file: " msgstr "Alapértelmezett viselkedés a projektfájl megnyitásakor: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +#: resources/qml/Preferences/GeneralPage.qml:753 msgctxt "@option:openProject" msgid "Always ask me this" msgstr "Mindig kérdezz" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: resources/qml/Preferences/GeneralPage.qml:754 msgctxt "@option:openProject" msgid "Always open as a project" msgstr "Projektként való megnyitás" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +#: resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:openProject" msgid "Always import models" msgstr "Importálja a modelleket" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +#: resources/qml/Preferences/GeneralPage.qml:792 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 "Ha módosított egy profilt, és váltott egy másikra, akkor megjelenik egy párbeszédpanel, amelyben megkérdezi, hogy meg kívánja-e tartani a módosításokat, vagy nem. Vagy választhat egy alapértelmezett viselkedést, és soha többé nem jeleníti meg ezt a párbeszédablakot." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:780 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:36 +#: resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46 msgctxt "@label" msgid "Profiles" msgstr "Profilok" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +#: resources/qml/Preferences/GeneralPage.qml:806 msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Alapértelmezett viselkedés a megváltozott beállítási értékeknél, ha másik profilra vált: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:800 +#: resources/qml/Preferences/GeneralPage.qml:821 msgctxt "@option:discardOrKeep" msgid "Always discard changed settings" msgstr "Megváltozott beállítások elvetése" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/Preferences/GeneralPage.qml:822 msgctxt "@option:discardOrKeep" msgid "Always transfer changed settings to new profile" msgstr "Megváltozott beállítások alkalmazása az új profilba" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +#: resources/qml/Preferences/GeneralPage.qml:856 msgctxt "@label" msgid "Privacy" msgstr "Magán" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +#: resources/qml/Preferences/GeneralPage.qml:862 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 "Elküldjük a nyomtatott adatokat név nélkül az Ultimaker-nek?Semmilyen személyes infromáció, IP cím vagy azonosító nem kerül elküldésre." +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 "Elküldjük a nyomtatott adatokat név nélkül az UltiMaker-nek?Semmilyen személyes infromáció, IP cím vagy azonosító nem kerül elküldésre." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +#: resources/qml/Preferences/GeneralPage.qml:867 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "Név nélküli információ küldés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +#: resources/qml/Preferences/GeneralPage.qml:897 msgctxt "@label" msgid "Updates" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +#: resources/qml/Preferences/GeneralPage.qml:904 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "A Cura-nak ellenőriznie kell-e a frissítéseket a program indításakor?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:888 +#: resources/qml/Preferences/GeneralPage.qml:909 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Keressen frissítéseket az induláskor" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +#: resources/qml/Preferences/GeneralPage.qml:925 msgctxt "@info:tooltip" msgid "When checking for updates, only check for stable releases." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:910 +#: resources/qml/Preferences/GeneralPage.qml:931 msgctxt "@option:radio" msgid "Stable releases only" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +#: resources/qml/Preferences/GeneralPage.qml:941 msgctxt "@info:tooltip" msgid "When checking for updates, check for both stable and for beta releases." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:926 +#: resources/qml/Preferences/GeneralPage.qml:947 msgctxt "@option:radio" msgid "Stable and Beta releases" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +#: resources/qml/Preferences/GeneralPage.qml:957 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 "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:941 +#: resources/qml/Preferences/GeneralPage.qml:962 msgctxt "@option:check" msgid "Get notifications for plugin updates" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:50 +#: resources/qml/Preferences/MachinesPage.qml:50 msgctxt "@action:button" msgid "Add New" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:134 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +#: resources/qml/Preferences/MachinesPage.qml:147 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:160 +#: resources/qml/Preferences/ProfilesPage.qml:294 msgctxt "@action:button" msgid "Activate" msgstr "Aktivál" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:146 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:331 +#: resources/qml/Preferences/MachinesPage.qml:159 +#: resources/qml/Preferences/ProfilesPage.qml:331 msgctxt "@action:button" msgid "Rename" msgstr "Átnevezés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:72 msgctxt "@label" msgid "Materials compatible with active printer:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:94 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:78 +#: resources/qml/Preferences/ProfilesPage.qml:94 msgctxt "@action:button" msgid "Create new" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:88 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:90 +#: resources/qml/Preferences/ProfilesPage.qml:88 msgctxt "@action:button" msgid "Import" msgstr "Import" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:101 msgctxt "@action:button" msgid "Sync with Printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:311 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:174 +#: resources/qml/Preferences/ProfilesPage.qml:311 msgctxt "@action:button" msgid "Duplicate" msgstr "Másolat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:342 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:198 +#: resources/qml/Preferences/ProfilesPage.qml:342 msgctxt "@action:button" msgid "Export" msgstr "Export" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:392 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:212 +#: resources/qml/Preferences/ProfilesPage.qml:392 msgctxt "@title:window" msgid "Confirm Remove" msgstr "Eltávolítás megerősítése" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:393 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:215 +#: resources/qml/Preferences/ProfilesPage.qml:393 msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "Biztosan el akarod távolítani %1 -et? Ez nem vonható vissza!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:228 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:238 msgctxt "@title:window" msgid "Import Material" msgstr "Alapanyag importálás" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:242 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Sikeres alapanyag import %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:245 msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not import material %1: %2" msgstr "Nem sikerült importálni az alapanyagot %1: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:267 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:256 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:267 msgctxt "@title:window" msgid "Export Material" msgstr "Alapanyag export" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:272 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:272 msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Sikertelen alapanyag export %1: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:275 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:275 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Sikeres alapanyag export %1 -ba" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 msgctxt "@title:window" msgid "Sync materials with printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 msgctxt "@title:header" msgid "Sync materials with printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 msgctxt "@text" msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 msgctxt "@button" msgid "Why do I need to sync material profiles?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 msgctxt "@button" msgid "Start" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144 msgctxt "@title:header" msgid "Sign in" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150 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 "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:446 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:586 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602 msgctxt "@button" msgid "Sync materials with USB" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 msgctxt "@title:header" msgid "The following printers will receive the new material profiles:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:198 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 msgctxt "@title:header" msgid "Something went wrong when sending the materials to the printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:205 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221 msgctxt "@title:header" msgid "Material profiles successfully synced with the following printers:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:429 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445 msgctxt "@button" msgid "Troubleshooting" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422 msgctxt "@text Asking the user whether printers are missing in a list." msgid "Printers missing?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:408 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424 msgctxt "@text" msgid "Make sure all your printers are turned ON and connected to Digital Factory." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:417 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433 msgctxt "@button" msgid "Refresh List" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473 msgctxt "@button" msgid "Try again" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:461 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Done" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:606 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622 msgctxt "@button" msgid "Sync" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535 msgctxt "@button" msgid "Syncing" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553 msgctxt "@title:header" msgid "No printers found" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574 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 "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:569 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585 msgctxt "@button" msgid "Learn how to connect your printer to Digital Factory" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:597 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613 msgctxt "@button" msgid "Refresh" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642 msgctxt "@title:header" msgid "Sync material profiles via USB" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:632 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648 msgctxt "@text In the UI this is followed by a list of steps the user needs to take." msgid "Follow the following steps to load the new material profiles to your printer." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 msgctxt "@text" msgid "Click the export material archive button." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 msgctxt "@text" msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:673 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689 msgctxt "@button" msgid "How to load new material profiles to my printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:687 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 msgctxt "@button" msgid "Back" msgstr "Vissza" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Export material archive" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747 msgctxt "@title:window" msgid "Export All Materials" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121 +#: resources/qml/Preferences/Materials/MaterialsView.qml:121 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Új átmérő megerősítése" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122 +#: resources/qml/Preferences/Materials/MaterialsView.qml:122 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 "Az új nyomtatószál átmérő %1 mm -re lett beállítva. Ez nem kompatibilis a jelenlegi extruderrel. Biztos, hogy így folytatod?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152 +#: resources/qml/Preferences/Materials/MaterialsView.qml:152 msgctxt "@label" msgid "Display Name" msgstr "Megjelenítendő név" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 +#: resources/qml/Preferences/Materials/MaterialsView.qml:171 msgctxt "@label" msgid "Brand" msgstr "Márka" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190 +#: resources/qml/Preferences/Materials/MaterialsView.qml:190 msgctxt "@label" msgid "Material Type" msgstr "Alapanyag típus" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +#: resources/qml/Preferences/Materials/MaterialsView.qml:210 msgctxt "@label" msgid "Color" msgstr "Szín" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:262 +#: resources/qml/Preferences/Materials/MaterialsView.qml:262 msgctxt "@title" msgid "Material color picker" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:275 +#: resources/qml/Preferences/Materials/MaterialsView.qml:275 msgctxt "@label" msgid "Properties" msgstr "Tulajdonságok" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +#: resources/qml/Preferences/Materials/MaterialsView.qml:286 msgctxt "@label" msgid "Density" msgstr "Sűrűség" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +#: resources/qml/Preferences/Materials/MaterialsView.qml:319 msgctxt "@label" msgid "Diameter" msgstr "Átmérő" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:369 +#: resources/qml/Preferences/Materials/MaterialsView.qml:369 msgctxt "@label" msgid "Filament Cost" msgstr "Nyomtatószál költség" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:401 +#: resources/qml/Preferences/Materials/MaterialsView.qml:401 msgctxt "@label" msgid "Filament weight" msgstr "Nyomtatószál súly" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:433 +#: resources/qml/Preferences/Materials/MaterialsView.qml:433 msgctxt "@label" msgid "Filament length" msgstr "Nyomtatószál hossz" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:451 +#: resources/qml/Preferences/Materials/MaterialsView.qml:451 msgctxt "@label" msgid "Cost per Meter" msgstr "Költség / méter" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:465 +#: resources/qml/Preferences/Materials/MaterialsView.qml:465 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "Ez az anyag kapcsolódik% 1 -hez és osztja néhány tulajdonságát." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:472 +#: resources/qml/Preferences/Materials/MaterialsView.qml:472 msgctxt "@label" msgid "Unlink Material" msgstr "Alapanyag leválasztása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +#: resources/qml/Preferences/Materials/MaterialsView.qml:485 msgctxt "@label" msgid "Description" msgstr "Leírás" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:503 +#: resources/qml/Preferences/Materials/MaterialsView.qml:503 msgctxt "@label" msgid "Adhesion Information" msgstr "Tapadási információ" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642 +#: resources/qml/Preferences/Materials/MaterialsView.qml:642 msgctxt "@title" msgid "Information" msgstr "Információ" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:647 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:82 +#: resources/qml/Preferences/Materials/MaterialsView.qml:647 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 msgctxt "@label" msgid "Print settings" msgstr "Nyomtatási beállítások" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:59 +#: resources/qml/Preferences/ProfilesPage.qml:59 msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:98 +#: resources/qml/Preferences/ProfilesPage.qml:98 msgctxt "@action:tooltip" msgid "Create new profile from current settings/overrides" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:125 +#: resources/qml/Preferences/ProfilesPage.qml:125 msgctxt "@action:label" msgid "Some settings from current profile were overwritten." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:140 +#: resources/qml/Preferences/ProfilesPage.qml:140 msgctxt "@action:button" msgid "Update profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:143 +#: resources/qml/Preferences/ProfilesPage.qml:143 msgctxt "@action:tooltip" msgid "Update profile with current settings/overrides" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:148 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256 +#: resources/qml/Preferences/ProfilesPage.qml:148 msgctxt "@action:button" msgid "Discard current changes" msgstr "A jelenlegi változások elvetése" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:158 +#: resources/qml/Preferences/ProfilesPage.qml:158 msgctxt "@action:label" msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." msgstr "Ez a profil a nyomtató által megadott alapértelmezéseket használja, tehát az alábbi listában nincs egyetlen beállítás módosítás sem." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:165 +#: resources/qml/Preferences/ProfilesPage.qml:165 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "Az Ön aktuális beállításai megegyeznek a kiválasztott profillal." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +#: resources/qml/Preferences/ProfilesPage.qml:175 msgctxt "@title:tab" msgid "Global Settings" msgstr "Általános beállítások" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: resources/qml/Preferences/ProfilesPage.qml:278 msgctxt "@title:window" msgid "Create Profile" msgstr "Profil készítés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:280 +#: resources/qml/Preferences/ProfilesPage.qml:280 msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Adjon nevet ehhez a profilhoz." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:368 +#: resources/qml/Preferences/ProfilesPage.qml:352 +#: resources/qml/Preferences/ProfilesPage.qml:368 msgctxt "@title:window" msgid "Export Profile" msgstr "Profil exportálás" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +#: resources/qml/Preferences/ProfilesPage.qml:382 msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Profil másolása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:409 +#: resources/qml/Preferences/ProfilesPage.qml:409 msgctxt "@title:window" msgid "Rename Profile" msgstr "Profil átnevezés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:422 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:429 +#: resources/qml/Preferences/ProfilesPage.qml:422 +#: resources/qml/Preferences/ProfilesPage.qml:429 msgctxt "@title:window" msgid "Import Profile" msgstr "Profil importálás" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:22 -msgctxt "@title:window" -msgid "Rename" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:23 -msgctxt "@info" -msgid "Please provide a new name." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56 +#: resources/qml/Preferences/SettingVisibilityItem.qml:56 msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73 +#: resources/qml/Preferences/SettingVisibilityItem.qml:73 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] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13 +#: resources/qml/Preferences/SettingVisibilityPage.qml:13 msgctxt "@title:tab" msgid "Setting Visibility" msgstr "Láthatóság beállítása" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 +#: resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" msgid "Check all" msgstr "Mindent ellenőrizni" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 -msgctxt "@label" -msgid "Extruder" -msgstr "Extruder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70 -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." -msgstr "A nyomtatófej célhőmérséklete. A fűtőblokk hőmérséklete a beállított értékre fog melegedni, vagy éppen hűlni. Ha ez az érték 0, akkor a fejfűtés ki fog kapcsolni." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Ennek a fejnek a jelenlegi hőmérséklete." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "A nyomtatófej előmelegítési hőmérséklete." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Elvet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Előfűtés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "A nyomtatófejet a nyomtatás előtt előre felmelegíti. Ez alatt az idő alatt tudod folytatni a nyomtatás beállítását, esetleg a szeletelést, s mire ezekkel a műveletekkel elkészülsz, a nyomtató már készen fog állni a nyomtatásra.Így nem kell majd várnod a gép felmelegedésére." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Az alapanyag színe ennél az extrudernél." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Az alapanyag ebben az extruderben." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "A fúvóka be van építve az extruderbe." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -msgctxt "@label" -msgid "Build plate" -msgstr "Tárgyasztal" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55 -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 "A fűthető ágy beállítható célhőmérséklete. Ha beállítjuk ezt az értéket a tálca elkezd erre a hőmérsékletre melegedni, vagy éppen lehűlni. Ha az érték 0 a tálcafűtés kikapcsol." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "A fűthető ágy aktuális hőmérséklete." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "A tálca előmelegítési hőmérséklete." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "A fűthető tálcát, a nyomtatás előtt előre felmelegíti. Ez alatt az idő alatt tudod folytatni a nyomtatás beállítását, esetleg a szeletelést, s mire ezekkel a műveletekkel elkészülsz, a nyomtató már készen fog állni a nyomtatásra.Így nem kell majd várnod a gép felmelegedésére." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51 -msgctxt "@label" -msgid "Printer control" -msgstr "Nyomtató vezérlés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66 -msgctxt "@label" -msgid "Jog Position" -msgstr "Léptetőgomb pozíció" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Léptetőgomb távolság" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Send G-code" -msgstr "G-kód küldés" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Küldjön egy egyéni G-kód parancsot a csatlakoztatott nyomtatóra. A parancs elküldéséhez nyomja meg az 'enter' gombot." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "A nyomtató nincs csatlakoztatva." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:235 -msgctxt "@button" -msgid "Add printer" -msgstr "Nyomtató hozzáadása" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Manage printers" -msgstr "Nyomtatók kezelése" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Active print" msgstr "Aktív nyomtatás" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Job Name" msgstr "Feladat név" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +#: resources/qml/PrintMonitor.qml:172 msgctxt "@label" msgid "Printing Time" msgstr "Nyomtatási idő" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +#: resources/qml/PrintMonitor.qml:180 msgctxt "@label" msgid "Estimated time left" msgstr "Becsült hátralévő idő" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 msgctxt "@label" msgid "Profile" msgstr "Profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5599,132 +6156,372 @@ msgstr "" "\n" "Kattints, hogy megnyisd a profil menedzsert." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 +#: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 msgctxt "@label:header" msgid "Custom profiles" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 msgctxt "@label shown when we load a Gcode file" msgid "Print setup disabled. G-code file can not be modified." msgstr "A nyomtatás beállítása letiltva. A G-kód fájl nem módosítható." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:179 msgctxt "@button" msgid "Recommended" msgstr "Ajánlott" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156 -msgctxt "@button" -msgid "Custom" -msgstr "Egyéni" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 msgctxt "@label:Should be short" msgid "On" msgstr "Be" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 msgctxt "@label:Should be short" msgid "Off" msgstr "Ki" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "Tapasztalati" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:54 -msgctxt "@info" -msgid "custom profile is active and you overwrote some settings." +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is active and you overwrote some settings." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 -msgctxt "@info" -msgid "custom profile is overriding some settings." +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is overriding some settings." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 -msgctxt "@info" -msgid "Some settings were changed." +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92 +msgctxt "@info %1 is the name of a profile" +msgid "Recommended settings (for %1) were altered." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106 +msgctxt "@info %1 is the name of a profile" +msgid "Some setting-values defined in %1 were overridden." +msgstr "" + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137 +msgctxt "@info" +msgid "Reset to defaults." +msgstr "" + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178 +msgctxt "@info" +msgid "Compare and save." +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15 msgctxt "@label" msgid "Adhesion" msgstr "Letapadás" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20 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." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:198 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102 msgctxt "@label" -msgid "Gradual infill" -msgstr "Fokozatos kitöltés" +msgid "Recommended print settings" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:236 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "A fokozatos kitöltés folyamatosan növeli a kitöltés mennyiségét, ahogy közeledik a tárgy teteje felé." +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111 +msgctxt "@button" +msgid "Show Custom" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27 msgctxt "@label" msgid "Resolution" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16 +msgctxt "@label" +msgid "Strength" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20 +msgctxt "@label" +msgid "The following settings define the strength of your part." +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34 +msgctxt "infill_sparse_density description" +msgid "Infill Density" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35 +msgctxt "@label" +msgid "Adjusts the density of infill of the print." +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54 +msgctxt "@action:label" +msgid "Infill Pattern" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56 +msgctxt "@label" +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 "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67 +msgctxt "@action:label" +msgid "Shell Thickness" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68 +msgctxt "@label" +msgid "Defines the thickness of your part side walls, roof and floor." +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16 msgctxt "@label" msgid "Support" msgstr "Támasz" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21 msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +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." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40 +msgctxt "@action:label" +msgid "Support Type" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41 +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 "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53 +msgctxt "@action:label" +msgid "Print with" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54 +msgctxt "@label" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67 +msgctxt "@action:label" +msgid "Placement" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68 +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 "" + +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 msgctxt "@error" msgid "Configuration not supported" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 msgctxt "@button:label" msgid "Learn more" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +#: resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "Extruder" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:70 +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." +msgstr "A nyomtatófej célhőmérséklete. A fűtőblokk hőmérséklete a beállított értékre fog melegedni, vagy éppen hűlni. Ha ez az érték 0, akkor a fejfűtés ki fog kapcsolni." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:105 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "Ennek a fejnek a jelenlegi hőmérséklete." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:182 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "A nyomtatófej előmelegítési hőmérséklete." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:271 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:259 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Elvet" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:274 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:263 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Előfűtés" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:297 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "A nyomtatófejet a nyomtatás előtt előre felmelegíti. Ez alatt az idő alatt tudod folytatni a nyomtatás beállítását, esetleg a szeletelést, s mire ezekkel a műveletekkel elkészülsz, a nyomtató már készen fog állni a nyomtatásra.Így nem kell majd várnod a gép felmelegedésére." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:335 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "Az alapanyag színe ennél az extrudernél." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:367 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "Az alapanyag ebben az extruderben." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:400 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "A fúvóka be van építve az extruderbe." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:25 +msgctxt "@label" +msgid "Build plate" +msgstr "Tárgyasztal" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:55 +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 "A fűthető ágy beállítható célhőmérséklete. Ha beállítjuk ezt az értéket a tálca elkezd erre a hőmérsékletre melegedni, vagy éppen lehűlni. Ha az érték 0 a tálcafűtés kikapcsol." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "A fűthető ágy aktuális hőmérséklete." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:162 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "A tálca előmelegítési hőmérséklete." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:286 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "A fűthető tálcát, a nyomtatás előtt előre felmelegíti. Ez alatt az idő alatt tudod folytatni a nyomtatás beállítását, esetleg a szeletelést, s mire ezekkel a műveletekkel elkészülsz, a nyomtató már készen fog állni a nyomtatásra.Így nem kell majd várnod a gép felmelegedésére." + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:51 +msgctxt "@label" +msgid "Printer control" +msgstr "Nyomtató vezérlés" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:66 +msgctxt "@label" +msgid "Jog Position" +msgstr "Léptetőgomb pozíció" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:82 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:162 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:217 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Léptetőgomb távolság" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Send G-code" +msgstr "G-kód küldés" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:319 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Küldjön egy egyéni G-kód parancsot a csatlakoztatott nyomtatóra. A parancs elküldéséhez nyomja meg az 'enter' gombot." + +#: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "A nyomtató nincs csatlakoztatva." + +#: resources/qml/PrinterSelector/MachineListButton.qml:34 +msgctxt "@label" +msgid "Hide all connected printers" +msgstr "" + +#: resources/qml/PrinterSelector/MachineListButton.qml:47 +msgctxt "@label" +msgid "Show all connected printers" +msgstr "" + +#: resources/qml/PrinterSelector/MachineSelector.qml:64 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "" + +#: resources/qml/PrinterSelector/MachineSelector.qml:68 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "" + +#: resources/qml/PrinterSelector/MachineSelector.qml:73 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "" + +#: resources/qml/PrinterSelector/MachineSelector.qml:78 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "" + +#: resources/qml/PrinterSelector/MachineSelectorList.qml:30 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:32 +msgctxt "@label" +msgid "Other printers" +msgstr "" + +#: resources/qml/ProfileOverview.qml:36 msgctxt "@title:column" msgid "Setting" msgstr "Beállítás" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +#: resources/qml/ProfileOverview.qml:37 msgctxt "@title:column" msgid "Profile" msgstr "Profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +#: resources/qml/ProfileOverview.qml:38 msgctxt "@title:column" msgid "Current" msgstr "Jelenlegi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +#: resources/qml/ProfileOverview.qml:39 msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +#: resources/qml/SearchBar.qml:17 msgctxt "@placeholder" msgid "Search" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 +#: resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5735,32 +6532,32 @@ msgstr "" "\n" "Kattints, hogy ezek a beállítások láthatók legyenek." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 +#: resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "Ezt a beállítást nem használjuk, mert minden ezen beállítással befolyásolt egyéb beállítás értéke felül van bírálva." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +#: resources/qml/Settings/SettingItem.qml:89 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Befolyásolások" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +#: resources/qml/Settings/SettingItem.qml:94 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "Befolyásolja" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:190 +#: resources/qml/Settings/SettingItem.qml:196 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "Ezt a beállítást megoszta az összes extruder között. Az itt megváltoztatott értékek az összes extrudernél meg fognak változni." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +#: resources/qml/Settings/SettingItem.qml:200 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +#: resources/qml/Settings/SettingItem.qml:240 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5771,7 +6568,7 @@ msgstr "" "\n" "Kattintson a profil értékének visszaállításához." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:334 +#: resources/qml/Settings/SettingItem.qml:340 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5782,1637 +6579,324 @@ msgstr "" "\n" "Kattintson, hogy visszaállítsuk a kalkulált értéket." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +#: resources/qml/Settings/SettingView.qml:48 msgctxt "@label:textbox" msgid "Search settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:395 +#: resources/qml/Settings/SettingView.qml:395 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Értékek másolása minden extruderre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:404 +#: resources/qml/Settings/SettingView.qml:404 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Minden változott érték másolása minden extruderre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:440 +#: resources/qml/Settings/SettingView.qml:440 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Beállítás elrejtése" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:453 +#: resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Ne jelenítsd meg ezt a beállítást" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:457 +#: resources/qml/Settings/SettingView.qml:457 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Beállítás látható marad" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +#: resources/qml/Toolbar.qml:142 +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" +msgstr[0] "Kiválasztott modell nyomtatása %1" +msgstr[1] "Kiválasztott modellek nyomtatása %1" + +#: resources/qml/ViewOrientationControls.qml:25 msgctxt "@info:tooltip" msgid "3D View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +#: resources/qml/ViewOrientationControls.qml:38 msgctxt "@info:tooltip" msgid "Front View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +#: resources/qml/ViewOrientationControls.qml:51 msgctxt "@info:tooltip" msgid "Top View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +#: resources/qml/ViewOrientationControls.qml:64 msgctxt "@info:tooltip" msgid "Left View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +#: resources/qml/ViewOrientationControls.qml:77 msgctxt "@info:tooltip" msgid "Right View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: resources/qml/ViewsSelector.qml:50 msgctxt "@label" msgid "View type" msgstr "Nézet típus" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:47 msgctxt "@label" msgid "Add a Cloud printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:73 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:73 msgctxt "@label" msgid "Waiting for Cloud response" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:83 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:83 msgctxt "@label" msgid "No printers found in your account?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:117 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:117 msgctxt "@label" msgid "The following printers in your account have been added in Cura:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:186 msgctxt "@button" msgid "Add printer manually" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 msgctxt "@label" msgid "Manufacturer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Profile author" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 msgctxt "@label" msgid "Printer name" msgstr "Nyomtató név" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 msgctxt "@text" msgid "Please name your printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "Nyomtató hozzáadása" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:38 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Hálózati nyomtató hozzáadása" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:87 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Helyi nyomtató hozzáadása" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 msgctxt "@label" msgid "There is no printer found over your network." msgstr "A hálózaton nem található nyomtató." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 msgctxt "@label" msgid "Refresh" msgstr "Frissítés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 msgctxt "@label" msgid "Add printer by IP" msgstr "Nyomtató hozzáadása IP címmel" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205 msgctxt "@label" msgid "Troubleshooting" msgstr "Hibaelhárítás" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 msgctxt "@label" msgid "Add printer by IP address" msgstr "Nyomtató hozzáadása IP címmel" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 msgctxt "@text" msgid "Enter your printer's IP address." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 msgctxt "@button" msgid "Add" msgstr "Hozzáad" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 msgctxt "@label" msgid "Could not connect to device." msgstr "Nem sikerült csatlakozni az eszközhöz." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" +msgid "Can't connect to your UltiMaker printer?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 msgctxt "@label" msgid "The printer at this address has not responded yet." msgstr "Az ezen a címen található nyomtató még nem válaszolt." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 msgctxt "@label" msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." msgstr "Ezt a nyomtatót nem lehet hozzáadni, mert ismeretlen a nyomtató vagy nem egy csoport tagja." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 msgctxt "@button" msgid "Connect" msgstr "Csatlakozás" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Hálózati nyomtató hozzáadása" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Helyi nyomtató hozzáadása" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102 +msgctxt "@button" +msgid "Add UltiMaker printer via Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "In order to start using Cura you will need to configure a printer." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36 +msgctxt "@label" +msgid "What printer would you like to setup?" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55 +msgctxt "@button" +msgid "UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64 +msgctxt "@button" +msgid "Non UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73 +msgctxt "@button" +msgid "Learn more about adding printers to Cura" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29 +msgctxt "@label" +msgid "Add printer" +msgstr "Nyomtató hozzáadása" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33 +msgctxt "@label" +msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70 +msgctxt "@label" +msgid "If you are trying to add a new UltiMaker printer to Cura" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80 +msgctxt "@info" +msgid "Sign in into UltiMaker Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81 +msgctxt "@info" +msgid "Follow the procedure to add a new printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82 +msgctxt "@info" +msgid "Your new printer will automatically appear in Cura" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100 +msgctxt "@button" +msgid "Learn more" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121 +msgctxt "@button" +msgid "Add local printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129 +msgctxt "@button" +msgid "Sign in to Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133 +msgctxt "@button" +msgid "Waiting for new printers" +msgstr "" + +#: resources/qml/WelcomePages/ChangelogContent.qml:24 msgctxt "@label" msgid "Release Notes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:123 +#: resources/qml/WelcomePages/CloudContent.qml:123 msgctxt "@text" msgid "Add material settings and plugins from the Marketplace" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:149 +#: resources/qml/WelcomePages/CloudContent.qml:149 msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:175 +#: resources/qml/WelcomePages/CloudContent.qml:175 msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +#: resources/qml/WelcomePages/CloudContent.qml:189 msgctxt "@button" msgid "Skip" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +#: resources/qml/WelcomePages/CloudContent.qml:201 msgctxt "@text" -msgid "Create a free Ultimaker Account" +msgid "Create a free UltiMaker Account" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Segítsen nekünk az Ultimaker Cura fejlesztésében" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:56 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Az Ultimaker Cura névtelen adatokat gyűjt a nyomtatási minőség és a felhasználói élmény javításának érdekében, ideértve:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:68 -msgctxt "@text" -msgid "Machine types" -msgstr "Géptípusok" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:74 -msgctxt "@text" -msgid "Material usage" -msgstr "Anyagfelhasználás" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:80 -msgctxt "@text" -msgid "Number of slices" -msgstr "Szeletek száma" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:86 -msgctxt "@text" -msgid "Print settings" -msgstr "Nyomtatási beállítások" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:99 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Az Ultimaker Cura által gyűjtött adatok nem tartalmaznak személyes információt." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:100 -msgctxt "@text" -msgid "More information" -msgstr "Több információ" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +#: resources/qml/WelcomePages/DropDownWidget.qml:93 msgctxt "@label" msgid "Empty" msgstr "Üres" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +#: resources/qml/WelcomePages/UserAgreementContent.qml:23 msgctxt "@label" msgid "User Agreement" msgstr "Felhasználói Szerződés" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67 +#: resources/qml/WelcomePages/UserAgreementContent.qml:67 msgctxt "@button" msgid "Decline and close" msgstr "Elutasítás és bezárás" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Üdvözöljük az Ultimaker Cura-ban" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:67 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:82 -msgctxt "@button" -msgid "Get started" -msgstr "Kezdj hozzá" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: resources/qml/WelcomePages/WhatsNewContent.qml:28 msgctxt "@label" msgid "What's New" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: resources/qml/Widgets/ComboBox.qml:18 msgctxt "@label" msgid "No items to select from" msgstr "" -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Ellenőrzi a modelleket és a nyomtatási konfigurációt a lehetséges nyomtatási problémákra vonatkozóan, és javaslatokat ad." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "Modell-ellenőrző" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Támogatást nyújt a 3MF fájlok olvasásához." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF olvasó" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Támogatást nyújt a 3MF fájlok írásához." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF író" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Támogatást nyújt az AMF fájlok olvasásához." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF Olvasó" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Konfiguráció biztonsági másolat készítése és visszaállítása." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura biztonsági mentések" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Biztosítja a kapcsolatot a CuraEngine szeletelő motorhoz." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine motor" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Támogatást nyújt a Cura profilok importálásához." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura profil olvasó" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Támogatást nyújt a Cura profilok exportálásához." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura profil író" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "" - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Ellenőrzi a firmware frissítéseket." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Frimrware frissítés ellenőrző" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Gépi funkciókat biztosít a firmware frissítéséhez." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Firmware frissítő" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Olvassa be a g-kódot egy tömörített archívumból." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Tömörített G-kód olvasó" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "G-kódot ír egy tömörített archívumba." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Tömörített G-kód író" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Támogatást nyújt a profilok g-kód fájlokból történő importálásához." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-kód profil olvasó" - -#: GCodeReader/plugin.json -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." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "G-kód olvasó" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "G-kódot ír fájlba." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "G-kódot író" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Lehetővé teszi a nyomtatható geometria létrehozását 2D-képfájlokból." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Kép olvasó" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Támogatást nyújt a profilok importálásához a régi Cura verziókból." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Örökölt Cura profil olvasó" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "A géoi beállítások megváltoztatásának lehetőségét biztosítja.(például a építési méret, fúvóka méret, stb.)" - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "" - -#: Marketplace/plugin.json -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the Ultimaker website." -msgstr "" - -#: Marketplace/plugin.json -msgctxt "name" -msgid "Marketplace" -msgstr "" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Monitor nézetet biztosít a Cura -ban." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Monitor nézet" - -#: PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Biztosítja a modellenkénti beállításokat." - -#: PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Modellenkénti beállítás-eszköz" - -#: PostProcessingPlugin/plugin.json -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Bővítmény, amely lehetővé teszi a felhasználó által létrehozott szkriptek utófeldolgozást" - -#: PostProcessingPlugin/plugin.json -msgctxt "name" -msgid "Post Processing" -msgstr "Utólagos feldolgozás" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Biztosítja az előkészítés nézetet a Cura-ban." - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "Előkészítés nézet" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Előnézet biztosítása a Cura -ban." - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "Előnézet" - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Támogatás a cserélhető meghajtók üzem közbeni cseréjét és írását." - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Cserélhető meghajtók kimeneti beépülője" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "" - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "Szimulációs nézet" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Névtelen szelet-információt nyújt be. A beállítások révén letiltható." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Szeletelési infó" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Felületi háló nézetet biztosít." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Felület nézet" - -#: SupportEraser/plugin.json -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Törlő hálót hoz létre, hogy bizonyos helyeken blokkolja a támasz nyomtatását" - -#: SupportEraser/plugin.json -msgctxt "name" -msgid "Support Eraser" -msgstr "Támasz törlő" - -#: TrimeshReader/plugin.json -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Támogatást nyújt a modellfájlok olvasásához." - -#: TrimeshReader/plugin.json -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh olvasó" - -#: UFPReader/plugin.json -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Támogatást nyújt az Ultimaker formátumú csomagok olvasásához." - -#: UFPReader/plugin.json -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP Olvasó" - -#: UFPWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Támogatást nyújt az Ultimaker formátumú csomagok írásához." - -#: UFPWriter/plugin.json -msgctxt "name" -msgid "UFP Writer" -msgstr "UFP Író" - -#: UltimakerMachineActions/plugin.json -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Gépi funkciók biztosítása az Ultimaker nyomtatók számára.(pl.: ágyszintezés varázsló, frissítések kiválasztása.)" - -#: UltimakerMachineActions/plugin.json -msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Ultimaker gépi funkciók" - -#: UM3NetworkPrinting/plugin.json -msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Kezeli a hálózati csatlakozásokat az Ultimaker hálózati nyomtatókhoz." - -#: UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Ultimaker hálózati kapcsolat" - -#: USBPrinting/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Elfogadja a G-kódot és elküldi őket egy nyomtatóra. A plugin a firmware-t is frissítheti." - -#: USBPrinting/plugin.json -msgctxt "name" -msgid "USB printing" -msgstr "USB nyomtatás" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "A konfigurációk frissítése Cura 2.1-ről Cura 2.2-re." - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "A 2.1-es verzió frissítése 2.2-re" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "A konfigurációk frissítése Cura 2.2-ről Cura 2.4-re." - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "A 2.2-es verzió frissítése 2.4-ig" - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Frissíti a konfigurációt Cura 2.5-ről Cura 2.6-ra." - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "A 2.5-es verzió frissítése 2.6-ra" - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "A konfigurációk frissítése Cura 2.6-ról Cura 2.7-re." - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "A 2.6-os verzió frissítése 2.7-re" - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "A konfigurációk frissítése Cura 2.7-ről Cura 3.0-ra." - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "A 2.7-es verzió frissítése 3.0-ra" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "A konfigurációk frissítése Cura 3.0-ról Cura 3.1-re." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "A 3.0-s verzió frissítése 3.1-re" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "A konfigurációk frissítése Cura 3.2-ről Cura 3.3-ra." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "A 3.2-es verzió frissítése 3.3-ra" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "A konfigurációk frissítése Cura 3.3-ról Cura 3.4-re." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "A 3.3-as verzió frissítése 3.4-re" - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "A konfigurációt Cura 3.4-ről Cura 3.5-re frissíti." - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "A 3.4-es verzió frissítése 3.5-re" - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "A konfigurációk frissítése Cura 3.5-ről Cura 4.0-ra." - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "A 3.5-es verzió frissítése 4.0-ra" - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "A konfigurációt Cura 4.0-ról Cura 4.1-re frissíti." - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "A 4.0-s verzió frissítése 4.1-re" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "" - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "A konfigurációk frissítése Cura 4.1-ről Cura 4.2-re." - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "A 4.1-es verzió frissítése 4.2-re" - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "A konfigurációk frissítése Cura 4.2-ről Cura 4.3-ra." - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "A 4.2-es verzió frissítése 4.3-ra" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Támogatást nyújt az X3D fájlok olvasásához." - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D Olvasó" - -#: XmlMaterialProfile/plugin.json -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Lehetővé teszi az XML-alapú anyagprofilok olvasását és írását." - -#: XmlMaterialProfile/plugin.json -msgctxt "name" -msgid "Material Profiles" -msgstr "Alapanyag profilok" - -#: XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Röntgen nézetet biztosít." - -#: XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "Röntgen nézet" - -#~ msgctxt "@label" -#~ msgid "Not yet initialized
    " -#~ msgstr "Még nincs inicializálva
    " - -#~ msgctxt "@label" -#~ msgid "SVG icons" -#~ msgstr "SVG ikonok" - -#~ msgctxt "@tooltip" -#~ msgid "You have modified some profile settings. If you want to change these go to custom mode." -#~ msgstr "Megváltoztattál néhány profilbeállítást. Ha ezeket szeretnéd folyamatosan megtartani, akkor válaszd az 'Egyéni mód' -ot." - -#~ msgctxt "@title:window" -#~ msgid "Convert Image..." -#~ msgstr "Kép konvertálás..." - -#~ msgctxt "@info:tooltip" -#~ msgid "The width in millimeters on the build plate." -#~ msgstr "A szélesség mm -ben a tárgyasztalon." - -#~ msgctxt "@title" -#~ msgid "Marketplace" -#~ msgstr "Áruház" - -#~ msgctxt "@info" -#~ msgid "You will need to restart Cura before changes in packages have effect." -#~ msgstr "A csomagok változásainak érvénybe lépése előtt újra kell indítania a Cura-t." - -#~ msgctxt "@action:button" -#~ msgid "Install" -#~ msgstr "Telepítés" - -#~ msgctxt "@action:button" -#~ msgid "Installed" -#~ msgstr "Telepítve" - -#~ msgctxt "@label" -#~ msgid "Compatibility" -#~ msgstr "Kompatibilitás" - -#~ msgctxt "@label:table_header" -#~ msgid "Machine" -#~ msgstr "Gép" - -#~ msgctxt "@label:table_header" -#~ msgid "Build Plate" -#~ msgstr "Tárgyasztal" - -#~ msgctxt "@label:table_header" -#~ msgid "Support" -#~ msgstr "Támasz" - -#~ msgctxt "@label:table_header" -#~ msgid "Quality" -#~ msgstr "Minőség" - -#~ msgctxt "@action:label" -#~ msgid "Technical Data Sheet" -#~ msgstr "Technikai adatlap" - -#~ msgctxt "@action:label" -#~ msgid "Safety Data Sheet" -#~ msgstr "Biztonsági adatlap" - -#~ msgctxt "@action:label" -#~ msgid "Printing Guidelines" -#~ msgstr "Nyomtatási útmutató" - -#~ msgctxt "@action:label" -#~ msgid "Website" -#~ msgstr "Weboldal" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to install or update" -#~ msgstr "Bejelentkezés szükséges a telepítéshez vagy frissítéshez" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Buy material spools" -#~ msgstr "Anyagtekercsek vásárlása" - -#~ msgctxt "@action:button" -#~ msgid "Update" -#~ msgstr "Frissítés" - -#~ msgctxt "@action:button" -#~ msgid "Updating" -#~ msgstr "Frissítés" - -#~ msgctxt "@action:button" -#~ msgid "Updated" -#~ msgstr "Frissítve" - -#~ msgctxt "@action:button" -#~ msgid "Back" -#~ msgstr "Vissza" - -#~ msgctxt "@title:tab" -#~ msgid "Plugins" -#~ msgstr "Kiegészítők" - -#~ msgctxt "@title:tab" -#~ msgid "Installed" -#~ msgstr "Telepítve" - -#~ msgctxt "@label" -#~ msgid "Will install upon restarting" -#~ msgstr "Telepítés után újraindul" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to update" -#~ msgstr "Bejelentkezés szükséges a frissítéshez" - -#~ msgctxt "@action:button" -#~ msgid "Downgrade" -#~ msgstr "Leminősítés" - -#~ msgctxt "@action:button" -#~ msgid "Uninstall" -#~ msgstr "Eltávolítás" - -#~ msgctxt "@label" -#~ msgid "Community Contributions" -#~ msgstr "Közösségi hozzájárulások" - -#~ msgctxt "@label" -#~ msgid "Community Plugins" -#~ msgstr "Közösségi bővítmények" - -#~ msgctxt "@label" -#~ msgid "Generic Materials" -#~ msgstr "Általános anyagok" - -#~ msgctxt "@info" -#~ msgid "Fetching packages..." -#~ msgstr "Csomagok beolvasása..." - -#~ msgctxt "@label" -#~ msgid "Website" -#~ msgstr "Weboldal" - -#~ msgctxt "@label" -#~ msgid "Email" -#~ msgstr "Email" - -#~ msgctxt "@label" -#~ msgid "Version" -#~ msgstr "Verzió" - -#~ msgctxt "@label" -#~ msgid "Last updated" -#~ msgstr "Utosó frissítés" - -#~ msgctxt "@label" -#~ msgid "Downloads" -#~ msgstr "Letöltések" - -#~ msgctxt "@info" -#~ msgid "Could not connect to the Cura Package database. Please check your connection." -#~ msgstr "Nem sikerült csatlakozni a Cura Package adatbázishoz. Kérjük, ellenőrizze a kapcsolatot." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall" -#~ msgstr "Eltávolítás jóváhagyása" - -#~ msgctxt "@text:window" -#~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -#~ msgstr "Távolítsd el a még használatban lévő anyagokat és / vagy profilokat.A megerősítés visszaállítja az alapanyagokat / profilokat alapértelmezett értékükre." - -#~ msgctxt "@text:window" -#~ msgid "Materials" -#~ msgstr "Alapanyagok" - -#~ msgctxt "@text:window" -#~ msgid "Profiles" -#~ msgstr "Profilok" - -#~ msgctxt "@action:button" -#~ msgid "Confirm" -#~ msgstr "Jóváhagy" - -#~ msgctxt "@info:tooltip" -#~ msgid "Some things could be problematic in this print. Click to see tips for adjustment." -#~ msgstr "Néhány dolog problémát jelenthet ebben a nyomtatásban.Kattintson ide a beállítási tippek megtekintéséhez." - -#~ msgctxt "@label" -#~ msgid "Support library for handling planar objects" -#~ msgstr "Támogató könyvtár a sík objektumok kezeléséhez" - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Build plate" -#~ msgstr "&Tárgyasztal" - -#~ msgctxt "@label" -#~ msgid "Create" -#~ msgstr "Létrehozás" - -#~ msgctxt "@label" -#~ msgid "Duplicate" -#~ msgstr "Másolás" - -#~ msgctxt "@label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "Nyomtató: %1" - -#~ msgctxt "@action:button" -#~ msgid "Update profile with current settings/overrides" -#~ msgstr "Frissítse a profilt az aktuális beállításokkal/felülbírálásokkal" - -#~ msgctxt "@label" -#~ msgid "Theme:" -#~ msgstr "Téma:" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for these changes to have effect." -#~ msgstr "A módosítások érvénybe lépéséhez újra kell indítania az alkalmazást." - -#~ msgctxt "@action:button" -#~ msgid "More information" -#~ msgstr "Több információ" - -#~ msgctxt "@action:button" -#~ msgid "Create" -#~ msgstr "Létrehoz" - -#~ msgctxt "@action:label" -#~ msgid "Printer" -#~ msgstr "Nyomtató" - -#~ msgctxt "@title:column" -#~ msgid "Unit" -#~ msgstr "Egység" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting Guide" -#~ msgstr "Mutassa az online hibaelhárítási útmutatót" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange All Models To All Build Plates" -#~ msgstr "Minden modell elrendezése a tárgyasztalon" - -#~ msgctxt "@action:menu" -#~ msgid "&Marketplace" -#~ msgstr "&Piactér" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new Cura packages." -#~ msgstr "Keressen, kezeljen és telepítsen új Cura csomagokat." - -#~ msgctxt "name" -#~ msgid "Toolbox" -#~ msgstr "Eszköztár" - -#~ msgctxt "description" -#~ msgid "Provides the Simulation view." -#~ msgstr "Szimulációs nézetet biztosít." - -#~ msgctxt "@info:status" -#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Küldjön és felügyeljen nyomtatási feladatokat bárhonnan az Ultimaker fiókjával." - -#~ msgctxt "@info:title The %s gets replaced with the printer name." -#~ msgid "New %s firmware available" -#~ msgstr "Új %s firmware elérhető" - -#~ msgctxt "@label:listbox" -#~ msgid "Layer thickness" -#~ msgstr "Réteg vastagság" - -#~ msgctxt "@button" -#~ msgid "Create account" -#~ msgstr "Fiók létrehozása" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete Selected Model" -#~ msgid_plural "Delete Selected Models" -#~ msgstr[0] "Kiválasztott modell törlése" -#~ msgstr[1] "Kiválasztott modellek törlése" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Center Selected Model" -#~ msgid_plural "Center Selected Models" -#~ msgstr[0] "A kijelölt modellt középre" -#~ msgstr[1] "A kijelölt modelleket középre" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Multiply Selected Model" -#~ msgid_plural "Multiply Selected Models" -#~ msgstr[0] "A kijelölt modell többszörözése" -#~ msgstr[1] "A kijelölt modellek többszörözése" - -#~ msgctxt "@button" -#~ msgid "Finish" -#~ msgstr "Befejezés" - -#~ msgctxt "@text" -#~ msgid "" -#~ "Please follow these steps to set up\n" -#~ "Ultimaker Cura. This will only take a few moments." -#~ msgstr "" -#~ "Kéjük, kövesd a következő lépéseket\n" -#~ "az Ultimaker Cura beállításához. Pár pillanat az egész." - -#~ msgctxt "@label" -#~ msgid "What's new in Ultimaker Cura" -#~ msgstr "Újdonságok az Ultimaker Cura-ban" - -#~ msgctxt "@info:status" -#~ msgid "The selected model was too small to load." -#~ msgstr "A kiválasztott tárgy túl kicsi volt a betöltéshez." - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profile {0}" -#~ msgstr "Sikeres profil importálás {0}" - -#~ msgctxt "@info:status" -#~ msgid "Could not find a quality type {0} for the current configuration." -#~ msgstr "Nem található a (z) {0} minőségi típus az aktuális konfigurációhoz." - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update" -#~ msgstr "Frissítés" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Create new" -#~ msgstr "Új létrehozása" - -#~ msgctxt "@info" -#~ msgid "The webcam is not available because you are monitoring a cloud printer." -#~ msgstr "A webkamera nem érhető el, mert felhőben lévő nyomtatót szeretne figyelni." - -#~ msgctxt "@text" -#~ msgid "Please give your printer a name" -#~ msgstr "Adja meg a nyomtató nevét" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." -#~ msgstr "Új funkciók érhetők el a (z) {machine_name} készülékken! Javasoljuk, hogy frissítse a nyomtató firmware-jét." - -#~ msgctxt "@action:button" -#~ msgid "Print via Cloud" -#~ msgstr "Nyomtatás felhőn keresztül" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print via Cloud" -#~ msgstr "Nyomtatás felhőn keresztül" - -#~ msgctxt "@info:status" -#~ msgid "Connected via Cloud" -#~ msgstr "Csatlakozás felhőn keresztül" - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Csatlakozás az Ultimaker felhőhöz" - -#~ msgctxt "@label" -#~ msgid "You need to install the package before you can rate" -#~ msgstr "Mielőtt értékelni tudná, telepítenie kell a csomagot" - -#~ msgctxt "@label" -#~ msgid "ratings" -#~ msgstr "értékelés" - -#~ msgctxt "@label" -#~ msgid "Featured" -#~ msgstr "Kiemelt" - -#~ msgctxt "@label" -#~ msgid "Your rating" -#~ msgstr "Értékelésed" - -#~ msgctxt "@label" -#~ msgid "Author" -#~ msgstr "Szerző" - -#~ msgctxt "@label The argument is a username." -#~ msgid "Hi %1" -#~ msgstr "Szia %1" - -#~ msgctxt "@button" -#~ msgid "Ultimaker account" -#~ msgstr "Ultimaker fiók" - -#~ msgctxt "@button" -#~ msgid "Sign out" -#~ msgstr "Kijelentkezés" - -#~ msgctxt "@label" -#~ msgid "Support library for analysis of complex networks" -#~ msgstr "Támogató könyvtár a komplex hálózatok elemzéséhez" - -#~ msgctxt "@Label" -#~ msgid "Python HTTP library" -#~ msgstr "Python HTTP könyvtár" - -#~ msgctxt "@text:window" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to keep or discard those settings?" -#~ msgstr "" -#~ "Van néhány testreszabott beállításod a profilban. \n" -#~ "Szeretnéd ezeket megtartani, vagy eldobod őket?" - -#~ msgctxt "@title:column" -#~ msgid "Default" -#~ msgstr "Alapértelmezett" - -#~ msgctxt "@title:column" -#~ msgid "Customized" -#~ msgstr "Testreszabott" - -#~ msgctxt "@action:button" -#~ msgid "Discard" -#~ msgstr "Eldob" - -#~ msgctxt "@action:button" -#~ msgid "Keep" -#~ msgstr "Megtart" - -#~ msgctxt "@action:button" -#~ msgid "Create New Profile" -#~ msgstr "Új profil létrehozás" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "&Save..." -#~ msgstr "Mentés..." - -#~ msgctxt "@text" -#~ msgid "Place enter your printer's IP address." -#~ msgstr "Írja be a nyomtató IP címét." - -#~ msgctxt "@button" -#~ msgid "Create an account" -#~ msgstr "Fiók létrehozása" - -#~ msgctxt "@item:inmenu" -#~ msgid "Flatten active settings" -#~ msgstr "Aktív beállítások simítása" - -#~ msgctxt "@info:status" -#~ msgid "Profile has been flattened & activated." -#~ msgstr "A profil simítva és aktiválva." - -#~ msgctxt "X3g Writer Plugin Description" -#~ msgid "Writes X3g to files" -#~ msgstr "Írás X3g fájlba" - -#~ msgctxt "X3g Writer File Description" -#~ msgid "X3g File" -#~ msgstr "X3g fájl" - -#~ msgctxt "X3G Writer File Description" -#~ msgid "X3G File" -#~ msgstr "X3g fájl" - -#~ msgctxt "@info:status" -#~ msgid "Cura does not accurately display layers when Wire Printing is enabled" -#~ msgstr "A Cura nem jeleníti meg pontosan a rétegeket, ha a huzalnyomtatás engedélyezve van" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Open Compressed Triangle Mesh" -#~ msgstr "Tömörített háromszög háló megnyitása" - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder." -#~ msgstr "Nem lehet szeletelni, mert egyik modell sem érintkezik az alapsíkkal, vagy a modell letiltott extruderhez van hozzárendelve. Kérjük, méretezze vagy forgassa el a modelleket, hogy illeszkedjenek az alapsíkra, vagy engedélyezz egy extrudert." - -#~ msgctxt "@info:backup_status" -#~ msgid "There was an error listing your backups." -#~ msgstr "Hiba történt a biztonsági mentések listázásánál." - -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "Profil segéd" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "Profil segéd" - -#~ msgctxt "@label" -#~ msgid "Pre-sliced file {0}" -#~ msgstr "Elő szeletelt fájl {0}" - -#~ msgctxt "@action:button" -#~ msgid "Retry" -#~ msgstr "Újra" - -#~ msgctxt "@title:groupbox" -#~ msgid "User description (Note: Developers may not speak your language, please use English if possible)" -#~ msgstr "Felhasználói leírás (Megjegyzés: Lehet, hogy a fejlesztők nem beszélnek az Ön nyelvén,ezért kérjük, használja az Angol nyelvet, ha lehetséges.)" - -#~ msgctxt "@label" -#~ msgid "Confirm" -#~ msgstr "Jóváhagy" - -#~ msgctxt "@info:button" -#~ msgid "Quit Cura" -#~ msgstr "Kilépés a Cura-ból" - -#~ msgctxt "@label" -#~ msgid "" -#~ "This plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ "A bővítmény telepítéséhez el kell fogadnia ezt a licencet. \n" -#~ "Egyetért az alábbi feltételekkel?" - -#~ msgctxt "@action:button" -#~ msgid "Accept" -#~ msgstr "Elfogad" - -#~ msgctxt "@action:button" -#~ msgid "Decline" -#~ msgstr "Elutasít" - -#~ msgctxt "@label:table_header" -#~ msgid "Print Core" -#~ msgstr "Nyomtató motor" - -#~ msgctxt "@label:listbox" -#~ msgid "Feedrate" -#~ msgstr "Előtolás" - -#~ msgctxt "@info:tooltip" -#~ msgid "Change active post-processing scripts" -#~ msgstr "Állítsd aktívra az utó művelet szkriptet" - -#~ msgctxt "@label" -#~ msgid "Don't support overlap with other models" -#~ msgstr "Nem támogatott az egyéb modellekkel való átfedés" - -#~ msgctxt "@label" -#~ msgid "Modify settings for overlap with other models" -#~ msgstr "Módosítsa az egyéb modellekkel való átfedés beállítását" - -#~ msgctxt "@label" -#~ msgid "Modify settings for infill of other models" -#~ msgstr "Módosítsa a többi modell kitöltés beállításait" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update existing" -#~ msgstr "Meglévő frissítése" - -#~ msgctxt "@label" -#~ msgid "Not supported" -#~ msgstr "Nem támogatott" - -#~ msgctxt "@action:button" -#~ msgid "Previous" -#~ msgstr "Előző" - -#~ msgctxt "@label" -#~ msgid "Tip" -#~ msgstr "Tipp" - -#~ msgctxt "@label" -#~ msgid "Print experiment" -#~ msgstr "Nyomtatási kísérlet" - -#~ msgctxt "@label" -#~ msgid "Checklist" -#~ msgstr "Ellenőrző lista" - -#~ msgctxt "@label" -#~ msgid "Please select any upgrades made to this Ultimaker 2." -#~ msgstr "Kérjük, válassza ki az Ultimaker 2 frissítéseit." - -#~ msgctxt "@label" -#~ msgid "Olsson Block" -#~ msgstr "Olsson blokk" - -#~ msgctxt "@label" -#~ msgid "Language:" -#~ msgstr "Nyelv:" - -#~ msgctxt "@window:text" -#~ msgid "Camera rendering: " -#~ msgstr "Kamera megjelenítés: " - -#~ msgctxt "@info:tooltip" -#~ msgid "Use multi build plate functionality" -#~ msgstr "Többrétegű tárgyasztal használata" - -#~ msgctxt "@option:check" -#~ msgid "Use multi build plate functionality (restart required)" -#~ msgstr "Többrétegű tárgyasztal használata (újraindítás szükséges)" - -#~ msgctxt "@label" -#~ msgid "Default profiles" -#~ msgstr "Alapértelemezett profil" - -#~ msgctxt "@label:textbox" -#~ msgid "search settings" -#~ msgstr "keresési beállítások" - -#~ msgctxt "@label" -#~ msgid "The value is resolved from per-extruder values " -#~ msgstr "Az értékek meghatározása az extruderek értékei alapján történik " - -#~ msgctxt "@label" -#~ msgid "Layer Height" -#~ msgstr "Réteg magasság" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile." -#~ msgstr "Ez a minőségi profil nem áll rendelkezésre a jelenlegi anyag- és fúvóka-konfigurációhoz. Kérjük, módosítsa ezeket a minőségprofil engedélyezéséhez." - -#~ msgctxt "@tooltip" -#~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" -#~ msgstr "Az egyéni profil jelenleg aktív. A minőségi csúszka engedélyezéséhez válassza az alapértelmezett minőségi profilt az Egyéni lapon" - -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "&Tárgyasztal" - -#~ msgctxt "@title:settings" -#~ msgid "&Profile" -#~ msgstr "&Profil" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show All Settings" -#~ msgstr "Minden beállítást mutat" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Export..." -#~ msgstr "&Exportál..." - -#~ msgctxt "@label" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "A következő generációs 3D nyomtatási munkafolyamat" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to print profiles from leading brands" -#~ msgstr "" -#~ "- Nyomtatási feladatok küldése Ultimaker nyomtatóknak helyi hálózaton kívülről\n" -#~ "- Tárolja az Ultimaker Cura beállításait felhőben, így az bárhonnan elérhető lesz\n" -#~ "- Exklúzív hozzáférés a vezető nyomtató márkák nyomtatási profiljaikhoz" - -#~ msgctxt "@title:window" -#~ msgid "Ultimaker Cura" -#~ msgstr "Ultimaker Cura" - -#~ msgctxt "@title:window" -#~ msgid "Closing Cura" -#~ msgstr "Cura bezárása" - -#~ msgctxt "@label" -#~ msgid "Are you sure you want to exit Cura?" -#~ msgstr "Biztos, hogy kilépsz a Cura -ból?" - -#~ msgctxt "@title:window" -#~ msgid "About Cura" -#~ msgstr "A Cura -ról" - -#~ msgctxt "@action:label" -#~ msgid "Build plate" -#~ msgstr "Tárgyasztal" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Cloud" -#~ msgstr "Ultimaker felhő" - -#~ msgctxt "@text" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "Következő generációs 3D nyomtatási munkafolyamat" - -#~ msgctxt "@text" -#~ msgid "- Send print jobs to Ultimaker printers outside your local network" -#~ msgstr "- Küldjön nyomtatási feladatokat az Ultimaker nyomtatóknak a helyi hálózaton kívülről" - -#~ msgctxt "@text" -#~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere" -#~ msgstr "- Tárolja az Ultimaker Cura beállításait a felhőben így azok bárhol használhatóak" - -#~ msgctxt "@text" -#~ msgid "- Get exclusive access to print profiles from leading brands" -#~ msgstr "- Exkluzív hozzáférés a vezető márkák nyomtatási profiljaihoz" - -#~ msgctxt "name" -#~ msgid "Machine Settings action" -#~ msgstr "Gépbeállítások művelete" - -#~ msgctxt "description" -#~ msgid "Dump the contents of all settings to a HTML file." -#~ msgstr "Az összes beállítás tartalmát HTML-fájlba teheti." - -#~ msgctxt "name" -#~ msgid "God Mode" -#~ msgstr "Isten mód" - -#~ msgctxt "description" -#~ msgid "Create a flattened quality changes profile." -#~ msgstr "Hozzon létre egy simított tulajdonságú profilt." - -#~ msgctxt "name" -#~ msgid "Profile Flattener" -#~ msgstr "Profil simító" - -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "Lehetővé teszi az anyaggyártók számára, hogy új anyag- és minőségi profilokat hozzanak létre egy beépülő felhasználói felület használatával." - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "Nyomtatási profil-asszisztens" +#~ msgctxt "@info:title" +#~ msgid "Simulation View" +#~ msgstr "Szimuláció nézet" diff --git a/resources/i18n/hu_HU/fdmextruder.def.json.po b/resources/i18n/hu_HU/fdmextruder.def.json.po index 5b3067ca95..3b7ba2cd17 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: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-08 09:03+0000\n" "PO-Revision-Date: 2020-03-24 09:27+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: AT-VLOG\n" @@ -17,6 +17,96 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 2.2.4\n" +#: fdmextruder.def.json +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Tapadás" + +#: fdmextruder.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Szálátmérő beállítása. Egyeztesd a használt nyomtatószál átmérőjével." + +#: fdmextruder.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Tárgyasztal tapadása" + +#: fdmextruder.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Átmérő" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Ez a G-Code akkor kerül végrehajtásra, mikor az extruder kikapcsol." + +#: fdmextruder.def.json +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "Extruder" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code label" +msgid "Extruder End G-Code" +msgstr "Záró G-Code az extruderhez" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_abs label" +msgid "Extruder End Position Absolute" +msgstr "Extruder abszolút vég pozíció" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x label" +msgid "Extruder End Position X" +msgstr "Extruder X végállása" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y label" +msgid "Extruder End Position Y" +msgstr "Extruder Y végállása" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Az Extruder Elsődleges X Pozíciója" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Az Extruder Elsődleges Y Pozíciója" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Az extruder Elsődleges Z Pozíciója" + +#: fdmextruder.def.json +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Extruder hűtőventilátor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_code label" +msgid "Extruder Start G-Code" +msgstr "Kezdő G-Code az extruderhez" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_abs label" +msgid "Extruder Start Position Absolute" +msgstr "Extruder Abszolút Indulási Helyzet" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "Extruder kezdő X helyzet" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "Extruder kezdő Y helyzete" + #: fdmextruder.def.json msgctxt "machine_settings label" msgid "Machine" @@ -28,69 +118,9 @@ msgid "Machine specific settings" msgstr "Gép specifikus beállítások" #: fdmextruder.def.json -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "Extruder" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Fúvóka ID" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "A fúvóka ID az extruder szerelvényben, mint a \"AA 0.4\" and \"BB 0.8\"." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Fúvóka átmérő" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x label" -msgid "Nozzle X Offset" -msgstr "Fúvóka X eltolás" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "A fúvóka eltolásának mértéke az X koordináta irányában." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "Fúvóka Y eltolás" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "A fúvóka eltolásának mértéke az Y koordináta irányában." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code label" -msgid "Extruder Start G-Code" -msgstr "Kezdő G-Code az extruderhez" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_abs label" -msgid "Extruder Start Position Absolute" -msgstr "Extruder Abszolút Indulási Helyzet" +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 "Legyen az extruder végállása az abszolút helyzet helyett, az utolsó ismert fej pozíció." #: fdmextruder.def.json msgctxt "machine_extruder_start_pos_abs description" @@ -98,114 +128,9 @@ msgid "Make the extruder starting position absolute rather than relative to the msgstr "Az extruder abszolút kezdeti helyzete helyett a fej utolsó ismert helyzetét használja." #: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "Extruder kezdő X helyzet" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "A kezdeti X koordináta, mikor az extrudert bekapcsoljuk." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "Extruder kezdő Y helyzete" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code label" -msgid "Extruder End G-Code" -msgstr "Záró G-Code az extruderhez" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Ez a G-Code akkor kerül végrehajtásra, mikor az extruder kikapcsol." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_abs label" -msgid "Extruder End Position Absolute" -msgstr "Extruder abszolút vég pozíció" - -#: fdmextruder.def.json -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 "Legyen az extruder végállása az abszolút helyzet helyett, az utolsó ismert fej pozíció." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x label" -msgid "Extruder End Position X" -msgstr "Extruder X végállása" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "A befejező X koordináta, mikor az extruder kikapcsol." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y label" -msgid "Extruder End Position Y" -msgstr "Extruder Y végállása" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "A befejező Y koordináta, mikor az extruder kikapcsol." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Az extruder Elsődleges Z Pozíciója" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Az az elsődleges Z helyzet, ahol a fúvóka a nyomtatást kezdi." - -#: fdmextruder.def.json -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Extruder hűtőventilátor" - -#: fdmextruder.def.json -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 "Az extruderekhez társított nyomtatási hűtőventilátor száma.Csak akkor változtassa meg ezt az alapértelmezett 0-tól, ha minden extruder számára külön nyomtatási hűtőventilátor van." - -#: fdmextruder.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Tárgyasztal tapadása" - -#: fdmextruder.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Tapadás" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Az Extruder Elsődleges X Pozíciója" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Az az X koordináta, ahol a fúvóka a nyomtatást kezdi." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Az Extruder Elsődleges Y Pozíciója" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Az az Y koordináta, ahol a fúvóka a nyomtatást kezdi." +msgctxt "material description" +msgid "Material" +msgstr "Anyag" #: fdmextruder.def.json msgctxt "material label" @@ -213,16 +138,91 @@ msgid "Material" msgstr "Anyag" #: fdmextruder.def.json -msgctxt "material description" -msgid "Material" -msgstr "Anyag" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Fúvóka átmérő" #: fdmextruder.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Átmérő" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Fúvóka ID" #: fdmextruder.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Szálátmérő beállítása. Egyeztesd a használt nyomtatószál átmérőjével." +msgctxt "machine_nozzle_offset_x label" +msgid "Nozzle X Offset" +msgstr "Fúvóka X eltolás" + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "Fúvóka Y eltolás" + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Az az X koordináta, ahol a fúvóka a nyomtatást kezdi." + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Az az Y koordináta, ahol a fúvóka a nyomtatást kezdi." + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Az az elsődleges Z helyzet, ahol a fúvóka a nyomtatást kezdi." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "A fúvóka ID az extruder szerelvényben, mint a \"AA 0.4\" and \"BB 0.8\"." + +#: fdmextruder.def.json +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 "Az extruderekhez társított nyomtatási hűtőventilátor száma.Csak akkor változtassa meg ezt az alapértelmezett 0-tól, ha minden extruder számára külön nyomtatási hűtőventilátor van." + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "A befejező X koordináta, mikor az extruder kikapcsol." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "A fúvóka eltolásának mértéke az X koordináta irányában." + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "A kezdeti X koordináta, mikor az extrudert bekapcsoljuk." + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "A befejező Y koordináta, mikor az extruder kikapcsol." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "A fúvóka eltolásának mértéke az Y koordináta irányában." + +#: fdmextruder.def.json +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." diff --git a/resources/i18n/hu_HU/fdmprinter.def.json.po b/resources/i18n/hu_HU/fdmprinter.def.json.po index e23177fba2..98d436291d 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: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-28 11:57+0000\n" "PO-Revision-Date: 2020-03-24 09:43+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: AT-VLOG\n" @@ -18,1497 +18,19 @@ msgstr "" "X-Generator: Poedit 2.2.4\n" #: fdmprinter.def.json -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Gép" +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 modell szélétől tartandó távolság. Ha a vasalás kifutna a test külső éleihez, az egyenetlenséget okozhatna ott." #: fdmprinter.def.json -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Gép specifikus beállítások" - -#: fdmprinter.def.json -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Géptípus" - -#: fdmprinter.def.json -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "A 3D nyomtatód neve." - -#: fdmprinter.def.json -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Mutasd a gép változatait" - -#: fdmprinter.def.json -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Megmutatja-e ennek a gépnek a különféle json-fájlokban leírt változatait." - -#: fdmprinter.def.json -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "Induló g-kód" - -#: fdmprinter.def.json -msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." -msgstr "" -"Olyan g-kód parancsok, amiket a nyomtatás legelején kell végrehajtani \n" -" -al elválasztva." - -#: fdmprinter.def.json -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "Záró G-kód" - -#: fdmprinter.def.json -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." -msgstr "" -"Olyan g-kód parancsok, amiket a nyomtatás legvégén kell végrehajtani \n" -" -al elválasztva." - -#: fdmprinter.def.json -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "Alapanyag GUID" - -#: fdmprinter.def.json -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." +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 "" #: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Átmérő" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Nyomtatószál átmérő beállítása. Itt állítsd be a te általad használt nyomtatószál átmérőt. Ennek egyeznie kell a gép paramétereivel." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Várakozás a tárgyasztal felfűtésére" - -#: fdmprinter.def.json -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 "Parancs beszúrás arra, hogy a gép várakozzon, amíg a tárgyasztal eléri a beállított célhőmérsékletet." - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Várakozás a fej felfűtésére" - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Várakozás addig, amíg a nyomtatófej el nem éri a beállított célhőmérsékletet." - -#: fdmprinter.def.json -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Tartalmazza az anyaghőmérsékleteket" - -#: fdmprinter.def.json -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 "Annak a meghatározása, hogy a fúvóka hőmérsékleti parancsokat tartalmaz-e a kódolás elején.Amikor a start_gcode már tartalmaz fúvóka hőmérsékleti parancsokat, a Cura frontend automatikusan letiltja ezt a beállítást." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Tartalmazza a tárgyasztal hőmérsékleteket" - -#: fdmprinter.def.json -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 "Annak a meghatározása, hogy a tárgyasztal hőmérsékleti parancsokat tartalmaz-e a kódolás elején.Amikor a start_gcode már tartalmaz tárgyasztal hőmérsékleti parancsokat, a Cura frontend automatikusan letiltja ezt a beállítást." - -#: fdmprinter.def.json -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Nyomtatási szélesség" - -#: fdmprinter.def.json -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "A nyomtatási terület szélessége (X-irány)." - -#: fdmprinter.def.json -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Nyomtatási mélység" - -#: fdmprinter.def.json -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "A nyomtatási terület mélysége (Y-irány)." - -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Nyomtatási magasság" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "A nyomtatási terület magassága (Z-irány)." - -#: fdmprinter.def.json -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Tárgyasztal alakja" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Szögletes (négyszög)" - -#: fdmprinter.def.json -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Elliptikus (kör)" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Tárgyasztal anyaga" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "A gépre szerelt tárgyasztal anyaga." - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Üveg" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Alumínium" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Van tárgyasztal fűtés" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Azt határozza meg, hogy van -e a gépen fűthető tárgyasztal. Ha ez az opció ki van kapcsolva, nem lehet belkapcsolni a tárgyasztal fűtését." - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Van építési tér hőmérséklet szabályzás" - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Azt határozza meg, hogy a gép képes-e szabályozni a nyomtatási tér hőmérsékletét." - -#: fdmprinter.def.json -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Origó a középpontban" - -#: fdmprinter.def.json -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 "Ez a beállítás, az X és Y nullpontot a nyomtatási terület középpontjába helyezi." - -#: fdmprinter.def.json -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Extruderek száma" - -#: fdmprinter.def.json -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Az extruder szerelvények száma. Az extruder szerelvény áll a továbbító egységből, a nyomtatófejből, és bowdenes gépeken a PTFE csőből." - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Engedélyezett extruderek száma" - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Az engedélyezett extruder szerelvények száma. Ez egy automatikus beállítás a szoftverből" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Külső fúvóka átmérő" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Fúvóka hossza" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Csúcsszög" - -#: fdmprinter.def.json -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 "A vízszintes sík és a kúpos rész közötti szög a fúvóka vége fölött." - -#: fdmprinter.def.json -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Olvadókamra hossza" - -#: fdmprinter.def.json -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 "Az a távolság, ami a fúvóka csúcstól a még szilárd nyomtatószálig tart.Ez gyakorlatilag az esetek nagy részében a fúvóka teljes hossza, a csúcstól a torokig tart." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "A fúvóka hőmérséklet-szabályozásának engedélyezése" - -#: fdmprinter.def.json -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 "A hőmérsékletet a Cura-ból lehet szabályozni.Kapcsolja ki ezt, ha a fúvóka hőmérsékletének szabályozását kívülről szeretné végezni." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Felfűtési sebesség" - -#: fdmprinter.def.json -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 "Az az átlagolt sebesség, (°C/mp) amivel a készenléti és a nyomtatási hőmérséklet között a fúvóka melegszik." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Visszahűlési sebesség" - -#: fdmprinter.def.json -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 "Az az átlagolt sebesség, (°C/mp) amivel a nyomtatási és a készenléti hőmérséklet között a fúvóka visszahűl." - -#: fdmprinter.def.json -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Minimális készenléti hőmérséklet idő" - -#: fdmprinter.def.json -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 "Az a minimális időtartam, ameddig a fúvóka inaktív lehet, mielőtt elkezdene visszahűlni. Így csak akkor fog a fúvóka visszahűlni a készenléti hőmérsékletre, ha hosszabb ideig nincs használva." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "G-kód típus" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "A létrehozandó g-kód típusa." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Térfogat)" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes (BFB)" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -#: fdmprinter.def.json -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Firmware visszahúzás" - -#: fdmprinter.def.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 "Használja -e a firmware szálvisszahúzási parancsokat (G10/G11), a G1 parancsokban használt E szálvisszahúzási parancsok helyett." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "" - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "" - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Tiltott területek" - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "A sokszögek listája azon területekkel, ahová a nyomtatófej nem léphet be." - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Fúvóka tiltott területek" - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "A sokszögek listája azon területekkel, ahová a fúvóka nem léphet be." - -#: fdmprinter.def.json -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "A nyomtatófej és ventillátor ábrázolása" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Állványzat magasság" - -#: fdmprinter.def.json -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)" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Fúvóka ID" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Az extruder szerelvény fúvóka azonosítója, például \"AA 0.4\" és \"BB 0.8\"." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Fúvóka átmérő" - -#: fdmprinter.def.json -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 fúvóka méretet használsz." - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Extruder eltolás" - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Kezdő Z pozíció" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Az a Z koordináta pont, ahol a fej, illetve a fúvóka áll, a nyomtatási folyamat megkezdésekor." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Abszolút kezdő pozíció" - -#: fdmprinter.def.json -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 "A nyomtatófej kezdeti pozíciója legyen abszolút, és ne a fej utolsó ismert helyzetéhez viszonyítson." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Maximum X sebesség" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "Az X motor maximális sebessége." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Maximum Y sebesség" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Az Y motor maximális sebessége." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Maximum Z sebesség" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "A Z motor maximális sebessége." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "A nyomtatószál maximális adagolási sebessége." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Maximális X gyorsulás" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "Maximális gyorsulás az X tengelyen" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Maximális Y gyorsulás" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Maximális gyorsulás az Y tengelyen." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Maximális Z gyorsulás" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Maximális gyorsulás a Z tengelyen." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Maximális E gyorsulás" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Maximális extrudálási gyorsulás." - -#: fdmprinter.def.json -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Alapértelmezett gyorsulás" - -#: fdmprinter.def.json -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "A nyomtatófej mozgásának alapértelmezett gyorsulása." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Alapértelmezett X-Y löket" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "Alapértelmezett löket a vízszintes síkon történő mozgáskor." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Alapértelmezett Z löket" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Alapértelmezett löket a Z tengelyen." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Alapértelmezett E löket" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Alapértelmezett extrudálási löket." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Lépés per milliméter (X)" - -#: fdmprinter.def.json -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 "Hány lépést kell a motornak megtenni ahhoz, hogy 1 mm mozgás történjen X irányban." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Lépés per milliméter (Y)" - -#: fdmprinter.def.json -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 "Hány lépést kell a motornak megtenni ahhoz, hogy 1 mm mozgás történjen Y irányban." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Lépés per milliméter (Z)" - -#: fdmprinter.def.json -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 "Hány lépést kell a motornak megtenni ahhoz, hogy 1 mm mozgás történjen Z irányban." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Lépés per milliméter (E)" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "X végállás pozitív irányban" - -#: fdmprinter.def.json -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 "Azt határozza meg, hogy a végállás kapcsoló pozitív irányban van-e, vagy negatívban. (pozitív a magasabb X, negatív az alacsonyabb X koordinátát jelenti)" - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Y végállás pozitív irányban" - -#: fdmprinter.def.json -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 "Azt határozza meg, hogy a végállás kapcsoló pozitív irányban van-e, vagy negatívban. (pozitív a magasabb Y, negatív az alacsonyabb Y koordinátát jelenti)" - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Z végállás pozitív irányban" - -#: fdmprinter.def.json -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 "Azt határozza meg, hogy a végállás kapcsoló pozitív irányban van-e, vagy negatívban. (pozitív a magasabb Z, negatív az alacsonyabb Z koordinátát jelenti)" - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Minimális sebesség" - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "A nyomtatófej minimális mozgási sebessége." - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Az adagolókerék átmérője" - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "A nyomtatószál adagoló kerék átmérője az extruderben." - -#: fdmprinter.def.json -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "resolution label" -msgid "Quality" -msgstr "Minőség" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Réteg magasság" - -#: fdmprinter.def.json -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 "Az egyes nyomtatási rétegek magassága mm -ben. A magasabb érték gyorsabb nyomtatást eredményez, viszont a minőség rosszabb lesz, mint az alacsonyabb réteg magasságnál. Azonban a kissebb rétegmagasság növeli a nyomtatási időt." - -#: fdmprinter.def.json -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Kezdő réteg magasság" - -#: fdmprinter.def.json -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 kezdő réteg magassága mm-ben. A vastagabb kezdőréteg megkönnyíti a tapadást a tárgyasztalhoz." - -#: fdmprinter.def.json -msgctxt "line_width label" -msgid "Line Width" -msgstr "Vonalvastagság" - -#: fdmprinter.def.json -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 "Egy sor szélessége. Általában az egyes vonalak szélességének meg kell egyeznie a fúvóka szélességével. Ennek az értéknek minimális csökkentése azonban jobb nyomatokat eredményezhet." - -#: fdmprinter.def.json -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Fali vonal szélessége" - -#: fdmprinter.def.json -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Egy fal vonalának szélessége." - -#: fdmprinter.def.json -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Külső falvonal szélessége" - -#: fdmprinter.def.json -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 "A külső falvonal szélessége. Ennek az értéknek a csökkentésével nagyobb szintű részletesség érhető el." - -#: fdmprinter.def.json -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Belső fal(-ak) vonalszélessége" - -#: fdmprinter.def.json -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Egyetlen falvonal szélessége az összes fali vonalhoz, a legkülső fal kivételével." - -#: fdmprinter.def.json -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Alsó/felső vonalszélessége" - -#: fdmprinter.def.json -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Egyetlen alsó/felső sorszélessége." - -#: fdmprinter.def.json -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Kitöltési vonalszélesség" - -#: fdmprinter.def.json -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Egyetlen kitöltési vonalszélesség." - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Szoknya/perem vonalszélesség" - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Egyetlen szoknya/perem vonalszélesség." - -#: fdmprinter.def.json -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Támasz vonalszélesség" - -#: fdmprinter.def.json -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Egyetlen támasz vonalszélesség." - -#: fdmprinter.def.json -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Támasz interfész vonalszélesség" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Támasz tetővonal szélesség" - -#: fdmprinter.def.json -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Egyetlen támasz tetővonal szélesség." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Támasz padlóvonal szélesség" - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Egyetlen támasz padlóvonal szélesség." - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Előtorony vonalszélesség" - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Egyetlen előtorony vonalszélesség." - -#: fdmprinter.def.json -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Kezdő réteg vonalszélesség" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "shell label" -msgid "Walls" -msgstr "" - -#: fdmprinter.def.json -msgctxt "shell description" -msgid "Shell" -msgstr "Héj" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Fali extruder" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "Az az extruder, amit a falak nyomtatásához használunk.Ezt csak multi extruder esetén használhatjuk." - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Külső fali extruder" - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "Az az extruder, amit a külső falak nyomtatásához használunk.Ezt csak multi extruder esetén használhatjuk." - -#: fdmprinter.def.json -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Belső fali extruder" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Falvastagság" - -#: fdmprinter.def.json -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 falak vastagsága vízszintes irányban. Ez az érték osztva a falvonal szélességével határozza meg a falak számát." - -#: fdmprinter.def.json -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Falvonalak száma" - -#: fdmprinter.def.json -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 "A nyomtatandó falak száma. A falvastagság alapján számított és kerekített érték." - -#: fdmprinter.def.json -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Külső fal tisztítási távolság" - -#: fdmprinter.def.json -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 külső fal nyomtatása után, beilleszt egy fej átemelést, a meghatározott távolságra. Ez segít elrejteni a Z varratot." - -#: fdmprinter.def.json -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Külső fal eltolás" - -#: fdmprinter.def.json -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 "Eltolás a külső fal útvonalára. Ha a külső fal kisebb, mint a fúvóka, és a belső falak után nyomtatódik, akkor ezt az eltolást használjuk, hogy a fúvóka furata a belső falakon nyúljon túl, a modell külseje helyett." - -#: fdmprinter.def.json -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Optimalizálás a falnyomtatási sorrendre" - -#: fdmprinter.def.json -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 "Optimalizálja a falak nyomtatásának sorrendjét, hogy csökkentse a visszahúzások számát és a megtett távolságot. A legtöbb alkatrész számára előnyös lehet ennek engedélyezése, de bizonyos esetekben valójában hosszabb is lehet.Ezért kérjük, hasonlítsa össze a nyomtatási idő becsléseit az optimalizálással és anélkül.Az első réteg nincs optimalizálva, ha a széleket építõlap-tapadási típusnak választják." - -#: fdmprinter.def.json -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "" - -#: fdmprinter.def.json -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." -msgstr "" - -#: fdmprinter.def.json -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "" - -#: fdmprinter.def.json -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "" - -#: fdmprinter.def.json -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Alternatív extra fal" - -#: fdmprinter.def.json -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 "Minden rétegben egy további extra falat nyomtat. Ez segít a kitöltésnek hozzáépülni a falhoz, ezáltal erősebb lesz a tárgy szerkezete." - -#: fdmprinter.def.json -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold label" -msgid "Split Middle Line Threshold" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "" - -#: fdmprinter.def.json -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold label" -msgid "Add Middle Line Threshold" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "" - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Vékony falak nyomtatása" - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Nyomtassa a modell egyes részeit vékonyabbra a vízszintes síkon, mint a fúvóka mérete." - -#: fdmprinter.def.json -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Vízszintes kiegészítés" - -#: fdmprinter.def.json -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 "Az egyes rétegek sokszögeire alkalmazott bővítés mennyisége. A pozitív értékek kompenzálhatják a túl nagy lyukakat, míg a negatív értékek a túl kicsi lyukakat képesek kompenzálni." - -#: fdmprinter.def.json -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Kezdő réteg vízszintes kiegészítése" - -#: fdmprinter.def.json -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 "A kezdő réteg sokszögeire alkalmazott bővítés mennyisége. A negatív érték kompenzálhatja az első réteg túlömlését, amit úgy is neveznek, hogy \"elefánt láb\"." - -#: fdmprinter.def.json -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "" - -#: fdmprinter.def.json -msgctxt "hole_xy_offset description" -msgid "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." -msgstr "" - -#: fdmprinter.def.json -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Z varrat igazítás" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Felhasználói megadás" - -#: fdmprinter.def.json -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Legrövidebb" - -#: fdmprinter.def.json -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Véletlenszerű" - -#: fdmprinter.def.json -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Éles sarok" - -#: fdmprinter.def.json -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Z varrat helyzet" - -#: fdmprinter.def.json -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "Az a pont, ahol az egyes rétegek nyomtatását kezdeni fogja." - -#: fdmprinter.def.json -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Hátra balra" - -#: fdmprinter.def.json -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Hátra" - -#: fdmprinter.def.json -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Hátra jobbra" - -#: fdmprinter.def.json -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Jobbra" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Jobbra előre" - -#: fdmprinter.def.json -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Előre" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Balra előre" - -#: fdmprinter.def.json -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Balra" - -#: fdmprinter.def.json -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z varrat X" - -#: fdmprinter.def.json -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "Az az X koordináta, ahol a rétegek nyomtatását kezdeni fogja." - -#: fdmprinter.def.json -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z varrat Y" - -#: fdmprinter.def.json -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "Az az Y koordináta, ahol a rétegek nyomtatását kezdeni fogja." - -#: fdmprinter.def.json -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Sarok varrat preferálás" - -#: fdmprinter.def.json -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 "Ellenőrzi, hogy a modell körvonalai mennyire befolyásolják a varrat helyzetét.Ha azt választjuk, hogy nincs, akkor a sarkok nincsenek hatással a varrás helyzetére.A varrat rejtés esetén a varrás legvalószínűbb helyzete, valamelyik belső sarokban lesz.A külső varrat esetén a megjelenés valószínűleg egy külső sarkon lesz.A külső/belső varrat esetén a varrat vagy külső, vagy belső sarokban lesz.Az okos rejtés esetén ugyanaz, mint a külső/belső varrat, de törekszik arra, hogy a varrat inkább a belső sarkokon legyen, rejtve." - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Nincs" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Varrat rejtés" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Külső varrat" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Külső, belső varrat" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Okos rejtés" - -#: fdmprinter.def.json -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Relatív Z varrat" - -#: fdmprinter.def.json -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 "Ha engedélyezve van, a z varrás koordinátái az egyes alkatrészek középpontjához viszonyítva vannak. Letiltva a koordináták meghatározzák az abszolút helyzetét a tárgyasztalon." - -#: fdmprinter.def.json -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "" - -#: fdmprinter.def.json -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Felső és külső felületi extruder" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "Az az extruder, amelyik a felső réteg külső lezárását végzi.Ez a funkció csak multiextruderes gépen érhető el." - -#: fdmprinter.def.json -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Felső kéreg rétegek" - -#: fdmprinter.def.json -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 "A felső felszíni zárórétegek száma. Általában egy felső réteg is elegendő a jó minőségű felső felületek előállításához." - -#: fdmprinter.def.json -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Alsó/felső extruder" - -#: fdmprinter.def.json -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 "Az az extruder, amit az alsó/felső felületi rétegek nyomtatásához használunk. Ezt csak multi extruder esetén használhatjuk." - -#: fdmprinter.def.json -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Alsó/felső vastagság" - -#: fdmprinter.def.json -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 "Az alsó/felső rétegek vastagsága a nyomtatáskor. Ez az érték osztva a rétegmagassággal adja meg az alsó/felső rétegek számát." - -#: fdmprinter.def.json -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Felső vastagság" - -#: fdmprinter.def.json -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 felső rétegek vastagsága a nyomtatáskor. Ez az érték osztva a rétegmagassággal adja meg az felső rétegek számát." - -#: fdmprinter.def.json -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Felső rétegek" - -#: fdmprinter.def.json -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 "A felső rétegek száma. A felső vastagság alapján számítva ezt az értéket egész számra kerekíti." - -#: fdmprinter.def.json -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Alsó vastagság" - -#: fdmprinter.def.json -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 "Az alsó rétegek vastagsága a nyomtatáskor. Ez az érték osztva a rétegmagassággal adja meg az alsó rétegek számát." - -#: fdmprinter.def.json -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Alsó rétegek" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Alsó/felső mintázat" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Az alsó/felső rétegek mintázata." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Vonalas" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Körkörös" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Cikcakk" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Alsó kezdő réteg mintázata" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "A legalsóbb, kezdő réteg mintázata." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Vonalas" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Körkörös" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Cikcakk" - -#: fdmprinter.def.json -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Alsó/felső poligonok kapcsolása" - -#: fdmprinter.def.json -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 "Az alsó/felső rétegpályákat kapcsolja össze, ahol egymás mellett futnak.Ha ezt a beállítást engedélyezzük a körkörös mintázatnál, jelentősen csökkenthetjük a fej átemelési időt, mivel a kapcsolódások félúton terténhetnek meg. Ez azonban ronthatja a felső felület minőségét." - -#: fdmprinter.def.json -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Alsó/felső vonal irányok" +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." #: fdmprinter.def.json msgctxt "skin_angles description" @@ -1516,379 +38,24 @@ msgid "A list of integer line directions to use when the top/bottom layers use t msgstr "Az egész vonal-irányok listája, amelyet akkor kell használni, ha az alsó/felső rétegek a vonalas vagy cikcakk mintákat használják.A lista elemeit egymás után használják a rétegek előrehaladtával, és amikor a lista vége eléri, akkor újra előlről kezdi.A lista elemeit vesszők választják el, és a teljes listát szögletes zárójelben tartalmazza. Az Alapértelmezés egy üres lista, amely azt jelenti, hogy a hagyományos alapértelmezett szögeket (45 és 135 fok) kell használni." #: fdmprinter.def.json -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Felület nélküli Z hézag" +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 "Ez egy lista a teljes vonalak irányáról. A lista elemeit egymás után használják a rétegek, s mikor a lista a végére ért, elkezdi előlről. A lista elemeit vesszővel választja el, és a teljes lista sz9gletes zárójelben van.Az alapértelmezett az üres lista, ami azt is jelenti, hogy az alapértelmezett 0 fokos szöget használja." #: fdmprinter.def.json -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 "Ha a modellnek csak néhány rétegű függőleges rése van, akkor ebben a keskeny térben a rétegek körül általában felületnek kell lennie.Akkor engedélyezze ezt a beállítást, ha nem szeretné, hogy keletkezzen itt felület, és ha a függőleges rés nagyon kicsi itt.Ez javítja a nyomtatási és a szeletelési időt, de technikailag a töltőanyagot a levegőnek teszi ki, azaz a belső kitöltés itt nyitott fog maradni." +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 "A használt teljes vonalaknak a listája. Az elemeket vesszővel választjuk el, és az egész lista szögletes zárójelek között van.Az alapértelmezett lista üres. Ebben az esetben a 45 és a 135 fok között változik az irányszög. A listát az elejéről kezdi, és rétegenként veszi az irányokat. Ha a lista végére ér, akkor előlről kezdi." #: fdmprinter.def.json -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Extra felületi falszám" +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 "A használt teljes vonalaknak a listája. Az elemeket vesszővel választjuk el, és az egész lista szögletes zárójelek között van.Az alapértelmezett lista üres. Ebben az esetben a 45 és a 135 fok között változik az irányszög. A listát az elejéről kezdi, és rétegenként veszi az irányokat. Ha a lista végére ér, akkor előlről kezdi." #: fdmprinter.def.json -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 "Lecseréli az alsó/felső felületi minta legkülsőbb falait koncentrikus vonalra.Egy vagy két vonal használata javítja a felső záró felületeket, ott, ahol még a kitöltés látható." - -#: fdmprinter.def.json -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Vasalás engedélyezés" - -#: fdmprinter.def.json -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 "A felső felületeken a fej mégegyszer átmegy, miközben egy nagyon kis mennyiségű alapanyagot extrudál. Ennek a célja az, hogy a tárgy teteje még jobban összeolvad, simábbá válik. A fúvóka kamrában a nyomás magasan van tartva, így a felszínen lévő gyűrődéseket anyaggal tölti fel." - -#: fdmprinter.def.json -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Vasalás csak a legfelső rétegen" - -#: fdmprinter.def.json -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 "A vasalást csak a legfelső rétegen végzi el. Ha az alacsonyabb szinteken lévőfelső felületeken nem szükséges a sima felület, akkor ezzel időt takaríthatunk meg." - -#: fdmprinter.def.json -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Vasalási minta" - -#: fdmprinter.def.json -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "A felső felületek vasalásához használt minta." - -#: fdmprinter.def.json -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Körkörös" - -#: fdmprinter.def.json -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Cikcakk" - -#: fdmprinter.def.json -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Vasalási távolság" - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "A vasalási vonalak közötti távolság." - -#: fdmprinter.def.json -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Vasalási adagolás" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Vasalás behúzás" - -#: fdmprinter.def.json -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 modell szélétől tartandó távolság. Ha a vasalás kifutna a test külső éleihez, az egyenetlenséget okozhatna ott." - -#: fdmprinter.def.json -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Vasalási sebesség" - -#: fdmprinter.def.json -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "A felső felületen való áthaladási sebesség." - -#: fdmprinter.def.json -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Vasalási gyorsulás" - -#: fdmprinter.def.json -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "A vasalás közben használt gyorsulási érték." - -#: fdmprinter.def.json -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Vasalási löket" - -#: fdmprinter.def.json -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "A maximális löket, amivel megrántja a fejet vasalás közben." - -#: fdmprinter.def.json -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Felület átlapolás százaléka" - -#: fdmprinter.def.json -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 "A falak és a kéregek középvonalai közötti átfedés mértékét határozza meg, százalékos értékben. A kéreg vonalak és a legbelsőbb fal szélességéből számítjuk. Az enyhe átfedés lehetővé teszi, hogy a falak szorosan kapcsolódjanak a kéreg vonalakhoz. Figyeljünk rá, hogy az egyenlő kéreg és falvonal szélesség esetén az 50% fölötti érték már átüthet a falon, mivel ezen a ponton a kéreg extruder fúvóka pozíciója már a fal középvonalát eléri." - -#: fdmprinter.def.json -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Kéreg átfedés" - -#: fdmprinter.def.json -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 "Az átfedés mértékét állítja be a falak és a felszíni vonalak középpontjainak végpontjai között. Az enyhe átfedés lehetővé teszi a falak szoros kapcsolódását a felszínhez. Vegye figyelembe, hogy ha a kéreg és a fal vonalszélessége egyenlő, akkor a fal szélességének felét meghaladó érték bármilyen felszín esetén áthaladhat a falon, mert ezen a ponton a kéreg-extruder fúvóka pozíciója már elérheti a fal közepén." - -#: fdmprinter.def.json -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Kéreg eltávolítás szélessége" - -#: fdmprinter.def.json -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 "Az eltávolítandó 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 alsó és felső részének nyomtatásához felhasznált időt és anyagot." - -#: fdmprinter.def.json -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Felső kéreg eltávolítási szélesség" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Alsó kéreg eltávolítási szélesség" - -#: fdmprinter.def.json -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 "Az eltávolítandó alsó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 alsó részének nyomtatásához felhasznált időt és anyagot." - -#: fdmprinter.def.json -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Kéreg bővítési távolság" - -#: fdmprinter.def.json -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 kéreg felületek a kitöltésig jönnek létre. Ha bővítjük a kérget, és növeljük ezt az értéket, akkor jobb tapadást érhetünk el a kitöltéssel kapcsolatban, illetve a szomszédos falak jobban tudnak tapadni a kéreghez. Az alacsonyabb érték anyagmegtakarítást eredményez." - -#: fdmprinter.def.json -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Felső kéreg bővítési távolság" - -#: fdmprinter.def.json -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 felső kéreg felületek a kitöltésig jönnek létre. Ha bővítjük a felső kérget, és növeljük ezt az értéket, akkor jobb tapadást érhetünk el a kitöltéssel kapcsolatban, illetve a szomszédos falak jobban tudnak tapadni a kéreghez. Az alacsonyabb érték anyagmegtakarítást eredményez." - -#: fdmprinter.def.json -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Alsó kéreg bővítési távolság" - -#: fdmprinter.def.json -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 "Az alsó kéreg felületek a kitöltésig jönnek létre. Ha bővítjük az alsó kérget, és növeljük ezt az értéket, akkor jobb tapadást érhetünk el a kitöltéssel kapcsolatban, illetve a szomszédos falak jobban tudnak tapadni a kéreghez. Az alacsonyabb érték anyagmegtakarítást eredményez." - -#: fdmprinter.def.json -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "A kéreg bővítés maximális szöge" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "A minimális kéregszélesség kibővítéshez" - -#: fdmprinter.def.json -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 "Az ennél keskenyebb kéregfelületek nem bővülnek ki. Ezzel elkerülhető, hogy keskeny kéregfelületek kibővüljenek, amik akkor jönnek létre, mikor a modell külső felületének lejtése közel van a függőlegeshez." - -#: fdmprinter.def.json -msgctxt "infill label" -msgid "Infill" -msgstr "Kitöltés" - -#: fdmprinter.def.json -msgctxt "infill description" -msgid "Infill" -msgstr "Kitöltés" - -#: fdmprinter.def.json -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Kitöltő extruder" - -#: fdmprinter.def.json -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ó." - -#: fdmprinter.def.json -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Kitöltési sűrűség" - -#: fdmprinter.def.json -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Beállítja a nyomtatás kitöltési sűrűségét." - -#: fdmprinter.def.json -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Kitöltő vonal távolság" - -#: fdmprinter.def.json -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 nyomtatott kitöltő vonalak távolsága. Ez egy számított érték, amit a kitöltési sűrűségből, és a kitöltő vonal szélességéből számol ki." - -#: fdmprinter.def.json -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Kitöltési Minta" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Rács" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Vonalak" - -#: fdmprinter.def.json -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Háromszög" - -#: fdmprinter.def.json -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Három-hatszög" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Kocka" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Osztott kocka" - -#: fdmprinter.def.json -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Oktett" - -#: fdmprinter.def.json -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Negyed kocka" - -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Körkörös" - -#: fdmprinter.def.json -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Cikcakk" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Kereszt" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "3D kereszt" - -#: fdmprinter.def.json -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "" - -#: fdmprinter.def.json -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Kitöltő vonalak csatlakozása" - -#: fdmprinter.def.json -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 "Összeköti a kitöltő vonalakat ott, ahol a mintázat megfelelő egy olyan vonallal,ami a belső fal alakját követi. Így jobban fog kapcsolódni a kitöltés a falakhoz, és csükkenthető az a negatív hatás, hogy kitöltési vonalak torzítják a külső felületet. Ha ezt a beállítást nem használjuk, akkor csökken a felhasznált anyagmennyiség." - -#: fdmprinter.def.json -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Kitöltési sokszögek csatlakozása" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Kitöltési vonal irányok" +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 "A használt teljes vonalaknak a listája. Az elemeket vesszővel választjuk el, és az egész lista szögletes zárójelek között van.Az alapértelmezett lista üres. Ebben az esetben a 45 és a 135 fok között változik az irányszög. A listát az elejéről kezdi, és rétegenként veszi az irányokat. Ha a lista végére ér, akkor előlről kezdi." #: fdmprinter.def.json msgctxt "infill_angles description" @@ -1896,49 +63,44 @@ msgid "A list of integer line directions to use. Elements from the list are used msgstr "Azoknak a teljes vonalaknak az iránya, amiket kitöltéskor használunk.A lista elemeit egymás után használják fel a rétegek, és előlről kezdik, ha a lista a végére ért. A lista elemeit vesszők választják el, míg a teljes lista szögletes zárójelben van. Az alapértelmezett esetbe a lista üres, ilyenkor az alapértelmezett 45 és 135 fokos szögeket használjuk a vonalas, és a cikcakk kitöltési mintakor, míg 45 fokot az összes többi esetben." #: fdmprinter.def.json -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Kitöltés X eltolás" +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "A sokszögek listája azon területekkel, ahová a fúvóka nem léphet be." #: fdmprinter.def.json -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "A kitöltési minta eltolása az X tengely mentén." +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "A sokszögek listája azon területekkel, ahová a nyomtatófej nem léphet be." #: fdmprinter.def.json -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Kitöltés Y eltolás" +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "" #: fdmprinter.def.json -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "A kitöltési minta eltolása az Y tengely mentén." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Abszolút kezdő pozíció" #: fdmprinter.def.json -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Véletlenszerű kitöltés kezdés" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Adaptív rétegek maximális variációja" #: fdmprinter.def.json -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 "Az adott rétegben, a kezdő kitöltési sorokat véletlenszerűen választja ki.Ezzel elkerülhető az, hogy a kitöltés az egyik helyen erősebb legyen, mint máshol, vagy éppen valahol gyengébb legyen a kelleténél a kitöltés." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "" #: fdmprinter.def.json -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Kitöltési sor szorzó" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Lépésméret" #: fdmprinter.def.json -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 "Átkonvertálja az összes kitöltési sort, erre az értékre.Az így keletkező extra vonalak nem fogják egymást keresztezni, hanem elkerülik egymást. Ez növelni fogja a kitöltés erősségét, de a nyomtatási idő, és az anyagköltség is nőni fog." - -#: fdmprinter.def.json -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Extra kitöltési falszám" +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." #: fdmprinter.def.json msgctxt "infill_wall_line_count description" @@ -1950,284 +112,9 @@ msgstr "" "Kombinálható a kitöltési sokszögek csatlakozása beállítással, hogy az összes kitöltés egyetlen útvonalba kapcsolja anélkül, hogy felesleges fej utaztatás vagy szálvisszahúzás lenne." #: fdmprinter.def.json -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Osztott kocka héj" - -#: fdmprinter.def.json -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 "Az egyes kitöltési kockák közepétől számított sugár hozzáadásával ellenőrizni kell a modell határát, hogy eldönthesse a szeletelő, hogy ezt a kockát fel kell-e osztan, vagy sem.A nagyobb értékek a kocka vastagabb héjához vezetnek a modell szélének közelében." - -#: fdmprinter.def.json -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Kitöltési átfedés aránya" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Kitöltési átfedés" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Kitöltés törlési távolság" - -#: fdmprinter.def.json -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 kitöltési sor nyomtatása után egy extra törlőmozgást végez a fej.Ez a távolság határozza meg a törlési mozgás távolságát.Az opció hasonlít a szimpla kitöltés átfedéséhez, azonban itt a mozgás extrudálás nélkül történik, és csak a kitöltő sor egyik végén." - -#: fdmprinter.def.json -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Kitöltő réteg vastagság" - -#: fdmprinter.def.json -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 kitöltési réteg vastagsága. Ez az érték minden esetben a normál rétegvastagság,vagy annak a többszöröse és kerekített értéke." - -#: fdmprinter.def.json -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Fokozatos kitöltési lépések" - -#: fdmprinter.def.json -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 "Ez egy olyan lépésszám, ami azt határozza meg, hogy hányszor csökkenti a kitöltési sűrűséget a rétegek emelkedése során addig, amíg eléri a kitöltési sűrűség felét. Azokon a területeken, ahol a fedő rétegek közelébe kerül a kitöltés, a sűrűség újra növekedni fog." - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Fokozatos kitöltési lépésmagasság" - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "Az a kitöltési magasság, amit elérve a kitöltési sűrűség lefeleződik." - -#: fdmprinter.def.json -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Kitöltés a falak előtt" - -#: fdmprinter.def.json -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 "Az adott rétegnél a kitöltést nyomtatjuk a falak nyomtatása előtt.A falak előzetes nyomtatása pontosabb falakat eredményezhet, azonban az átfedések nyomtatása gyengébb lehet. A kitöltés elsőnek nyomtatása szilárdabb falakhoz vezethet, de a feltöltési minta néha megjelenhet a felületen." - -#: fdmprinter.def.json -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Minimális kitöltési terület" - -#: fdmprinter.def.json -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Az ettől kisebb területekre nem generál kitöltést." - -#: fdmprinter.def.json -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Kitöltés támaszként" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Kitöltés túlnyúlási szög" - -#: fdmprinter.def.json -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 "Az a belső túlnyúlási szög, amihez szükséges kitöltést hozzáadni. Ha ez 0°, a test teljes mértékben kitöltésre kerül. Ha az érték 90°, akkor nem lesz semmiféle kitöltés." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "" - -#: fdmprinter.def.json -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material label" -msgid "Material" -msgstr "Alapanyag" - -#: fdmprinter.def.json -msgctxt "material description" -msgid "Material" -msgstr "Alapanyag" - -#: fdmprinter.def.json -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Alapértelmezett nyomtatási hőmérséklet" - -#: fdmprinter.def.json -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 nyomtatáshoz használt alapértelmezett hőmérséklet. Ez az alap hőmérséklete az adott alapanyagnak. Minden egyéb nyomtatási hőmérséklet eltérés ettől az alaptól kerül számításra" - -#: fdmprinter.def.json -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Építési tér hőmérséklete" - -#: fdmprinter.def.json -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 nyomtató építési tér hőmérséklete. Ha ez az érték 0, akkor a gép nem képes az építési tér hőmérséklet szabályzására." - -#: fdmprinter.def.json -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Nyomtatási hőmérséklet" - -#: fdmprinter.def.json -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "A nyomtatáshoz használt hőmérséklet." - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Kezdő réteg nyomtatási hőmérséklete" - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Az a hőmérséklet, amin az első réteg nyomtatása fog történni. Ha az érték 0, akkor nem kezeli külön a kezdő réteg hőmérsékleti beállítását." - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Kezdeti nyomtatási hőmérséklet" - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "Az a minimális hőmérséklet, ameddig fel kell melegedni a fejnek a nyomtatás megkezdéséhez." - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Befejező nyomtatási hőmérséklet" - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "Az a hőmérséklet, ahová a fejnek vissza kell hűlnie a nyomtatás befejezése előtt." - -#: fdmprinter.def.json -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Adagolási visszahűlés sebesség kompenzáció" - -#: fdmprinter.def.json -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 "Az a sebesség, amivel a fúvóka lehűl az extrudálás közben.Ugyanezt az értéket kell használni az extrudálás közbeni felmelegedésre is." - -#: fdmprinter.def.json -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Alapértelmezett tárgyasztal hőmérséklet" - -#: fdmprinter.def.json -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 fűthető tárgyasztal alapértelmezett hőmérséklete. Ez a hőmérséklet az alap, és ehhez viszonyítjuk a többi hőmérséklet értékét" - -#: fdmprinter.def.json -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Tárgyasztal hőmérséklete" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Tárgyasztal hőmérséklet a kezdő rétegnél" - -#: fdmprinter.def.json -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 "" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Tapadás" #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" @@ -2235,1924 +122,19 @@ msgid "Adhesion Tendency" msgstr "Tapadási jellemző" #: fdmprinter.def.json -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "A felület tapadási jellemzője." +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 "A falak és a kéregek középvonalai közötti átfedés mértékét határozza meg, százalékos értékben. A kéreg vonalak és a legbelsőbb fal szélességéből számítjuk. Az enyhe átfedés lehetővé teszi, hogy a falak szorosan kapcsolódjanak a kéreg vonalakhoz. Figyeljünk rá, hogy az egyenlő kéreg és falvonal szélesség esetén az 50% fölötti érték már átüthet a falon, mivel ezen a ponton a kéreg extruder fúvóka pozíciója már a fal középvonalát eléri." #: fdmprinter.def.json -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Felületi energia" +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 "Az átfedés mértékét állítja be a falak és a felszíni vonalak középpontjainak végpontjai között. Az enyhe átfedés lehetővé teszi a falak szoros kapcsolódását a felszínhez. Vegye figyelembe, hogy ha a kéreg és a fal vonalszélessége egyenlő, akkor a fal szélességének felét meghaladó érték bármilyen felszín esetén áthaladhat a falon, mert ezen a ponton a kéreg-extruder fúvóka pozíciója már elérheti a fal közepén." #: fdmprinter.def.json -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Felületi energia." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Kristályos anyag" - -#: fdmprinter.def.json -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 "Az anyag olyan típusú-e, ami melegítve tiszta módon, kikristályosodva bomlik le, vagy olyan, ami nem kristályos, összefonódott polimer láncokat hoz létre?" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Szivárgásgátló visszahúzási helyzet" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "Mennyire kell visszahúzni a szálat, hogy az anyagszivárgás leálljon." - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Szivárgásgátló visszahúzás sebesség" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Milyen gyorsan kell visszahúzni a szálat, hogy meggátoljuk a szivárgást." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Szakadás előállítás visszahúzott helyzetben" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Mennyire húzható ki a szál melegítés közben, szakadás nélkül." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Szakadás előállítás visszahúzási sebeség" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "Milyen gyorsan kell visszahúzni a szálat, mielőtt az megszakadna." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Sazakdás visszahúzási helyzet" - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "Mennyire kell visszahúzni a nyomtatószálat, hogy az tisztán megszakadjon." - -#: fdmprinter.def.json -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Szakítás visszahúzási sebesség" - -#: fdmprinter.def.json -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "Milyen gyorsan kell visszahúzni a nyomtatószálat, hogy az tisztán megszakadjon." - -#: fdmprinter.def.json -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Szakítási hőmérséklet" - -#: fdmprinter.def.json -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "Az a hőmérséklet, ahol a nyomtatószál tisztán meg tud szakadni." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_flow label" -msgid "Flow" -msgstr "Áramlás" - -#: fdmprinter.def.json -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Áramláskompenzáció: az extrudált anyag mennyiségét megszorozzuk ezzel az értékkel." - -#: fdmprinter.def.json -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Fal áramlás" - -#: fdmprinter.def.json -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Áramláskompenzálás a fal vonalak nyomtatásánál." - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Külső fal áramlás" - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Áramláskompenzálás a külső falvonalak nyomtatásánál." - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Belső fal)akÖ áramlása" - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Áramláskompnezáció minden falvonalon, kivéve a legkülsőbb falnál." - -#: fdmprinter.def.json -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Alsó/felső áramlás" - -#: fdmprinter.def.json -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Áramláskompenzálás az alsó/felső rétegek nyomtatásánál." - -#: fdmprinter.def.json -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Felső kéregfelület áramlás" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Kitöltési áramlás" - -#: fdmprinter.def.json -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Áramláskompenzálás a kitöltés nyomtatásánál." - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Szoknya/perem áramlás" - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Áramláskompenzálás a Szoknya/perem nyomtatásánál." - -#: fdmprinter.def.json -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Támasz áramlás" - -#: fdmprinter.def.json -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Áramláskompenzálás a támasz nyomtatásánál." - -#: fdmprinter.def.json -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Támasz interfész áramlás" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Támasz felső áramlás" - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Áramláskompenzálás a támasz felső rétegének nyomtatásánál." - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Támasz alsó áramlás" - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Áramláskompenzálás a támasz alsó rétegének nyomtatásánál." - -#: fdmprinter.def.json -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Elő torony áramlás" - -#: fdmprinter.def.json -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Áramláskompenzáció az előtorony vonalakon." - -#: fdmprinter.def.json -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Kezdő réteg áramlás" - -#: fdmprinter.def.json -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 "Az első réteg áramlási kompenzációja: az eredeti rétegre extrudált anyag mennyiségét megszorozzuk ezzel az értékkel." - -#: fdmprinter.def.json -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Készenléti hőmérséklet" - -#: fdmprinter.def.json -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "Az adott fúvóka hőmérséklete, amikor éppen egy másik fúvókát használnak nyomtatáshoz." - -#: fdmprinter.def.json -msgctxt "speed label" -msgid "Speed" -msgstr "Sebesség" - -#: fdmprinter.def.json -msgctxt "speed description" -msgid "Speed" -msgstr "Sebesség" - -#: fdmprinter.def.json -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Nyomtatási sebesség" - -#: fdmprinter.def.json -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Az a sebesség, amivel a nyomtatás történik." - -#: fdmprinter.def.json -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Kitöltési sebesség" - -#: fdmprinter.def.json -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Az a sebesség, amivel a kitöltés nyomtatódik." - -#: fdmprinter.def.json -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Fal sebesség" - -#: fdmprinter.def.json -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "A falak nyomtatási sebessége." - -#: fdmprinter.def.json -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Külső fal sebesség" - -#: fdmprinter.def.json -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 "Az a sebesség, amivel a legkülsőbb falak nyomtatásra kerülnek.Az alacsonyabb sebesség javítja a külső felület végső minőségét, azonban, ha túl nagy a különbség a külső és a belső falak nyomtatási sebessége között, az negatív hatással lehet a minőségre." - -#: fdmprinter.def.json -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Belső fal sebesség" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Felső záró felületi sebesség" - -#: fdmprinter.def.json -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "A felső záró kéreg felületi rétegnek a nyomtatási sebessége." - -#: fdmprinter.def.json -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Alsó/felső sebesség" - -#: fdmprinter.def.json -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Az alsó/felső réteg nyomtatási sebessége." - -#: fdmprinter.def.json -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Támasz sebesség" - -#: fdmprinter.def.json -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 támasztékok nyomattási sebessége. A támaszok nyomtatási sebességét bátran növelhetjük, mivel nem számít, milyen lesz a felületi minőségük.A nyomtatás után el lesznek távolítva, nem részei a nyomtatott tárgynak, és a nagyobb sebesség csökkentheti a nyomtatási időt." - -#: fdmprinter.def.json -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Támasz kitöltési sebesség" - -#: fdmprinter.def.json -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 támasztékok kitöltésének nyomatatási sebessége. Ha a kitöltések nyomtatási sebességét csökkentjük, a támaszték stabilabb lesz." - -#: fdmprinter.def.json -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Támasz interfész sebesség" - -#: fdmprinter.def.json -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 "Az a sebesség, amivel a támasztékok alsó és felső felületét nyomtatjuk.Ha ez a sebesség lassabb, akkor jobb lehet a kinyúlás minősége." - -#: fdmprinter.def.json -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Támasz fedél sebesség" - -#: fdmprinter.def.json -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 támasztékok fedő, felső rétegének nyomtatási sebessége. Ha ez a sebesség lassabb, akkor jobb lehet a kinyúlás minősége." - -#: fdmprinter.def.json -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Támasz alapzat sebesség" - -#: fdmprinter.def.json -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 támasztékok alsó, kezdő rétegének nyomtatási sebessége. Ha ez a sebesség lassabb, akkor jobb lehet a támasz tapadása a tárgyasztalra." - -#: fdmprinter.def.json -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Előtorony sebesség" - -#: fdmprinter.def.json -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 "Az a asebesség, amivel a előtorony nyomtatódik. Nyomtassuk a előtornyot alacsony sebességen, mert ez segíthet a különböző anyagrétegeknek az egymáshoz tapadásában." - -#: fdmprinter.def.json -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Utazási sebesség" - -#: fdmprinter.def.json -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "A fej üresben történő pozícióváltásának sebessége." - -#: fdmprinter.def.json -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Kezdő réteg sebessége" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Kezdő réteg nyomtatási sebessége" - -#: fdmprinter.def.json -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 kezdő réteg nyomtatási sebessége. Az alacsonyabb érték segít növelni a tapadást a tárgyasztalhoz." - -#: fdmprinter.def.json -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Kezdő réteg utazási sebessége" - -#: fdmprinter.def.json -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 kezdő réteg utazási sebessége. Az Alacsonyabb érték javasolt, mivel a korábban már kinyomtatott részeleteket feltépheti a nyomtatófej a tárgyasztalról.A beállításnak az értéke kiszámítható, az utazási és a nyomatási sebesség arányából." - -#: fdmprinter.def.json -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Szoknya/perem sebesség" - -#: fdmprinter.def.json -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 szoknya és a perem nyomtatási sebessége. Alapesetben ez ugyanannyi, mint a kezdő réteg sebessége, de néha szükséges lehet a különböző sebességgel való nyomtatásra." - -#: fdmprinter.def.json -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Z emelés sebesség" - -#: fdmprinter.def.json -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 Z tengely emelési sebessége. Ez általában alaxcsonyabb, mint a nyomtatási sebesség, mivel a tárgyasztal, vagy az X keresztszánt nehezebb mozgatni." - -#: fdmprinter.def.json -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Lassabb rétegek száma" - -#: fdmprinter.def.json -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 "Az első pár réteget lassabban tudjuk nyomtatni, ha ezt a modell formája szükségessé teszi. Növelheti a tapadást a tárgyasztalhoz, így sikeresebb lehet a nyomtatás. A sebesség folyamatosan növekedni fog, ahogy emelkedik a rétegeken." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Gyorsulás vezérlés engedélyezés" - -#: fdmprinter.def.json -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 "A nyomtatófej mozgási gyorsulás szabályzás engedélyezése. Ha növeljük a gyorsulást, csökken a nyomtatási idő, viszont a nyomtatás minősége is." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Nyomtatási gyorsulás" - -#: fdmprinter.def.json -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "A nyomtatás közbeni gyorsulás." - -#: fdmprinter.def.json -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Kitöltés gyorsulás" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Fal gyorsulás" - -#: fdmprinter.def.json -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "A falak nyomtatása alatt használt gyorsulás." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Külső fal gyorsulás" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "A külső falak nyomtatása alatt használt gyorsulás." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Belső fal gyorsulás" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Felső felületi gyorsulás" - -#: fdmprinter.def.json -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "A legfelső, záró felületi rétegek nyomtatása alatt használt gyorsulás." - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Alsó/felső gyorsulás" - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Az alsó és felső rétegek nyomtatása alatt használt gyorsulás." - -#: fdmprinter.def.json -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Támaszték gyorsulás" - -#: fdmprinter.def.json -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "A támaszok nyomtatása alatt használt gyorsulás." - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Támasz kitöltés gyorsulás" - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "A támaszok kitöltésének nyomtatása alatt használt gyorsulás." - -#: fdmprinter.def.json -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Támasz interfész gyorsulás" - -#: fdmprinter.def.json -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 támaszok legalsó és legfelső rétegeinek nyomtatása alatt használt gyorsulás.Ha alacsonyabb gyorsulási értéket használunk, az segít javítani a kinyúlások nyomtatási minőségén." - -#: fdmprinter.def.json -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Támasz fedél gyorsulás" - -#: fdmprinter.def.json -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 támaszok legfelső rétegeinek nyomtatása alatt használt gyorsulás.Ha alacsonyabb gyorsulási értéket használunk, az segít javítani a kinyúlások nyomtatási minőségén." - -#: fdmprinter.def.json -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Támasz alapzat gyorsulás" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Előtorony gyorsulás" - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "Az előtorony nyomtatása során használt gyorsulás." - -#: fdmprinter.def.json -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Utaztatási gyorsulás" - -#: fdmprinter.def.json -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "A fej utaztatása során használt gyorsulás." - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Kezdő réteg gyorsulás" - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "A legelső rétegnél használt gyorsulási érték." - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Kezdő réteg nyomtatási gyorsulás" - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "Az a gyorsulási érték, amit az első réteg nyomtatása alatt használ." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Kezdő réteg utazási gyorsulás" - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "A kezdő réteg nyomtatása alatt, a fej utaztatásához használt gyorsulási érték." - -#: fdmprinter.def.json -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Szoknya/perem gyorsulás" - -#: fdmprinter.def.json -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 "Az a gyorsulás, amellyel a szoknya és a perem nyomtatásra kerül. Általában ezt a kezdeti réteg gyorsulásával hajtják végre, de néha érdemes lehet kinyomtatni a szoknyát vagy a karimát más gyorsulással." - -#: fdmprinter.def.json -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Löket vezérlés engedélyezése" - -#: fdmprinter.def.json -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 "Engedéylezi a nyomtatófej X és Y tengelyen való löketének (sebesség) változásának vezérlését. Ha a löketet növeljük, az csökkenti a nyomtatási időt a minőség terhére." - -#: fdmprinter.def.json -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Nyomtatás löket" - -#: fdmprinter.def.json -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "A maximális pillanatnyi sebességváltozás változtatása a nyomtatófej mozgására vonatkoztatva." - -#: fdmprinter.def.json -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Kitöltés löket" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Fal löket" - -#: fdmprinter.def.json -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "A maximális pillanatnyi sebességváltozás változtatása a falak nyomtatása alatt." - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Külsö fal löket" - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "A maximális pillanatnyi sebességváltozás változtatása a külső falak nyomtatása alatt." - -#: fdmprinter.def.json -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Belső fal löket" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Felső felület löket" - -#: fdmprinter.def.json -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "A maximális pillanatnyi sebességváltozás változtatása a felső záró felület nyomtatása alatt." - -#: fdmprinter.def.json -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Alsó/felső löket" - -#: fdmprinter.def.json -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "A maximális pillanatnyi sebességváltozás változtatása az alsó/felső felületek nyomtatása alatt." - -#: fdmprinter.def.json -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Támasz löket" - -#: fdmprinter.def.json -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "A maximális pillanatnyi sebességváltozás változtatása a támaszok nyomtatása alatt." - -#: fdmprinter.def.json -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Támasz kitöltés löket" - -#: fdmprinter.def.json -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "A maximális pillanatnyi sebességváltozás változtatása a támaszok kitöltésének nyomtatása alatt." - -#: fdmprinter.def.json -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Támasz interfész löket" - -#: fdmprinter.def.json -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "A maximális pillanatnyi sebességváltozás változtatása a támaszok alsó és felső felületének nyomtatása alatt." - -#: fdmprinter.def.json -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Támasz fedél löket" - -#: fdmprinter.def.json -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "A maximális pillanatnyi sebességváltozás változtatása a támaszok felső felületének nyomtatása alatt." - -#: fdmprinter.def.json -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Támasz alapzat löket" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Előtorony löket" - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "A maximális pillanatnyi sebességváltozás változtatása az előtorony nyomtatása alatt." - -#: fdmprinter.def.json -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Utazás löket" - -#: fdmprinter.def.json -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "A maximális pillanatnyi sebességváltozás változtatása a fej utazási mozgása alatt." - -#: fdmprinter.def.json -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Kezdő réteg löket" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Kezdő réteg nyomtatási löket" - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "A maximális pillanatnyi sebességváltozás változtatása a kezdő réteg nyomtatása alatt." - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Kezdő réteg utazás löket" - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Az utazási mozgás gyorsítása a kezdő rétegnél." - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Szoknya/perem löket" - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "A maximális pillanatnyi sebességváltozás változtatása a szoknya és a perem nyomtatása alatt." - -#: fdmprinter.def.json -msgctxt "travel label" -msgid "Travel" -msgstr "Utazás" - -#: fdmprinter.def.json -msgctxt "travel description" -msgid "travel" -msgstr "fej átpozícionálás" - -#: fdmprinter.def.json -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Visszahúzás engedélyezés" - -#: fdmprinter.def.json -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "" - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Visszahúzás a rétegváltásnál" - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "Visszahúzza a nyomtatószálat, amikor a fúvóka a következő rétegre vált." - -#: fdmprinter.def.json -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Visszahúzási távolság" - -#: fdmprinter.def.json -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "A visszahúzott anyag hossza visszahúzáskor." - -#: fdmprinter.def.json -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Visszahúzási sebesség" - -#: fdmprinter.def.json -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "A nyomtatószál sebessége visszahúzáskor, és előtoláskor." - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Visszahúzás visszahúzási sebesség" - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "Az a sebesség, amellyel a nyomtatószál visszahúzódik egy visszahúzási mozgás során." - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Visszahúzás előtolási sebesség" - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "A nyomtatószál visszahúzás sebessége szál előtolási mozgáskor." - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Előtolási plussz anyagmennyiség" - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Valamennyi anyagveszteség léphet fel a fej üresben mozgatása során, ami az anyag csöppenéséből adódhat. Ezt a hiányt tudjuk itt tudunk kompenzálni." - -#: fdmprinter.def.json -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Minimum út visszahúzáshoz" - -#: fdmprinter.def.json -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 "Az a minimális útvonal, amit a fejnek mozognia kell X-Y irányban ahhoz, hogy a visszahúzás megtörténjen. Ez segíthet abban, hogy ne legyen túl gyakori visszahűzás kisméretű területek felett." - -#: fdmprinter.def.json -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Visszahúzások maximális száma" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Minimális extrudálási távolság ablak" - -#: fdmprinter.def.json -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 "Az az ablak, amelyben érvényesülni tud a maximális visszahűzási szám.Ennek az értéknek megközelítőleg azonosnak kell lennie a visszahúzási távolsággal, s így lehet korlátozni a visszahúzások számát ugyanabban az anyaghelyzetben." - -#: fdmprinter.def.json -msgctxt "limit_support_retractions label" -msgid "Limit Support Retractions" -msgstr "Támasz visszahúzás korlátozása" - -#: fdmprinter.def.json -msgctxt "limit_support_retractions description" -msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -msgstr "A támasz és a normál tárgyvonalak között kihagyja a visszahúzást. Ez időt takaríthat meg, de ez szálazást eredményezhet." - -#: fdmprinter.def.json -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Fésülés mód" - -#: fdmprinter.def.json -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 "A fésülés a fúvókát a már nyomtatott területeken tartja utazás közben.Ez kissé hosszabb utazási eredményeket eredményez, de csökkenti a visszahúzás szükségességét. Ha a fésülés ki van kapcsolva, akkor az anyag visszahúzódik, és a fúvóka egyenes vonalban mozog a következő pontra.Az is elkerülhető, hogy a felső / alsó kéregfelületeken fésülést végezzen, vagy csak a kitöltés belsejében mozogjon." - -#: fdmprinter.def.json -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Ki" - -#: fdmprinter.def.json -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Minden" - -#: fdmprinter.def.json -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "" - -#: fdmprinter.def.json -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Felszínen nem" - -#: fdmprinter.def.json -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Kitöltésen belül" - -#: fdmprinter.def.json -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Maximum fésű táv visszahúzás nélkül" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Visszahúzás külső fal előtt" - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Minden esetben, mikor a külső fal nyomtatása fog történni, a pozicionáláskor szál visszahúzás fog történni." - -#: fdmprinter.def.json -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Kinyomtatott részek kerülése utazáskor" - -#: fdmprinter.def.json -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 "A fej mozgatásakor a már kinyomtatott részeket elkerülő útvonalon fog haladni.Ez az opció csak akkor érhető el, ha a fésű mód engedélyezve van." - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Támasz elkerülése utazáskor" - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "A fej mozgatásakor a kinyomtatott támaszokat elkerülő útvonalon fog haladni.Ez az opció csak akkor érhető el, ha a fésű mód engedélyezve van." - -#: fdmprinter.def.json -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Elkerülő utazási távolság" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "Réteg X kezdőpont" - -#: fdmprinter.def.json -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "Az az X koordináta, melynek a közelében található a rétegek X nyomtatási kezdőpontja." - -#: fdmprinter.def.json -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Réteg Y kezdőpont" - -#: fdmprinter.def.json -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "Az az Y koordináta, melynek a közelében található a rétegek Y nyomtatási kezdőpontja." - -#: fdmprinter.def.json -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Z emelés visszahúzáskor" - -#: fdmprinter.def.json -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 "Szálvisszahúzáskor a Z tengely megemelkedik, így elemeli a fejet a tárgytól, ami megakadályozza, hogy a fúvóka hozzáérjen a már kinyomtatott részekhez utazáskor. Ez csökkenti annak az esélyét, hogy a fej lelökje, vagy felszakítsa a tárgyat a tárgyasztalról." - -#: fdmprinter.def.json -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Z emelés nyomtatott részeknél" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Z emelés magasság" - -#: fdmprinter.def.json -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Az a magasságkülönbség, amit a Z emeléskor emelkedik a tengely." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Z emelés extruder váltás után" - -#: fdmprinter.def.json -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 "Extruder váltás után a Z tengely és így a fej megemelkedik, így ez megakadályozza, hogy a fúvókából esetlegesen kicsöppenő anyag a nyomtatás külső felületére kenődjön." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Z emelés magassága extruder váltás után" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cooling label" -msgid "Cooling" -msgstr "Hűtés" - -#: fdmprinter.def.json -msgctxt "cooling description" -msgid "Cooling" -msgstr "Hűtés" - -#: fdmprinter.def.json -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Tárgyhűtés engedélyezés" - -#: fdmprinter.def.json -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 "Engedélyezi a tárgyhűtést nyomtatás közben. A hűtés javíthatja a rétegek nyomtatási minőségét, főleg a kicsi rétegeknél, és az áthidaló, túlnyúló részeknél." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Hűtés sebesség" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "Az a sebesség, amivel a ventillátorok pörögnek." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Normál hűtési sebesség" - -#: fdmprinter.def.json -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 "Az a sebesség, amivel a hűtés történik normál nyomtatási esetben.Ha egy réteg nyomtatási sebessége egy küszöbérték felé emelkedik, akkor a hűtést növelni fogja egészen addig, amíg a maximumra nem emelkedik." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Maximális hűtési sebesség" - -#: fdmprinter.def.json -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 "Az a hűtési sebesség, amivel a ventillátorok forognak a maximális hűtéskor.A maximális hűtés azoknál a rétegeknél történik, ahol elértük a minimális rétegídőt. A hűtés a normál és a maximum érték között tud változni." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Normál/Maximum ventillátor sebesség küszöb" - -#: fdmprinter.def.json -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 "Az a rétegidő, amely beállítja a küszöbértéket a szokásos ventilátor sebesség és a ventilátor maximális sebessége között. Az ezúttal lassabb nyomtatású rétegek szokásos ventilátorsebességet használnak. A gyorsabb rétegek esetén a ventilátor sebessége fokozatosan növekszik a maximális ventilátor sebesség felé." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Kezdő hűtési sebesség" - -#: fdmprinter.def.json -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 "Az a sebesség, amellyel a ventilátorok forognak a nyomtatás kezdetén. Az ezt követő rétegekben a ventilátor sebességét fokozatosan növeli olyan szintre, amely megegyezik a normál ventilátor sebességgel." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Normál hűtési magasság" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Normál hűtési réteg" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Minimális rétegidő" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Minimális sebesség" - -#: fdmprinter.def.json -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 "Minimális sebesség. Ez az a minimum, amivel a fej mozoghat. Ez azért szükséges, mert a minimális rétegidő miatt előfordulhatna, hogy a nyomtatófej tűlzottan lelassul. Ez esetben a fúvóka olvadókamra nyomása leeshetne, ami ronthatná a nyomtatási minőséget." - -#: fdmprinter.def.json -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Fej emelés" - -#: fdmprinter.def.json -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 "Ha a nyomtató elérte a megadott minimális rétegidővel a minimális sebességet, és nem tud tovább lassulni, akkor a nyomtató emelje fel a fejet addig, amig amíg el nem éri a minimális rétegidőt." - -#: fdmprinter.def.json -msgctxt "support label" -msgid "Support" -msgstr "Támaszték" - -#: fdmprinter.def.json -msgctxt "support description" -msgid "Support" -msgstr "Támaszték" - -#: fdmprinter.def.json -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Támaszték készítés" - -#: fdmprinter.def.json -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 "Olyan szerkezeti részeket készít a nyomtatványhoz, ami segít alátámasztani azokat a részeket, amik a levegőben lógnak, vagy kinyúlnak a tárgyból.E nélkül ezeket a részeket nem lehet kinyomtatni, mivel nincs mire építenie az adott részt a nyomtatónak." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Támasz extrúder" - -#: fdmprinter.def.json -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "Az az extruder szerelvény, amivel a támasztékokat nyomtatjuk. Ezt multi-extruderes gépeken használhatjuk." - -#: fdmprinter.def.json -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Támasz kitöltés extruder" - -#: fdmprinter.def.json -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 "Az az extruder szerelvény, amivel a támasztékok kitöltését nyomtatjuk. Ezt multi-extruderes gépeken használhatjuk." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Első réteg támasz extruder" - -#: fdmprinter.def.json -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 "Az az extruder szerelvény, amivel az első réteg támasz kitöltését nyomtatjuk.Ezt multi-extruderes gépeken használhatjuk." - -#: fdmprinter.def.json -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Támasz interfész extruder" - -#: fdmprinter.def.json -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 "Az az extruder, ami a támaszok alját és tetejét nyomtatja.Ezt multi-extruderes gépeken használhatjuk." - -#: fdmprinter.def.json -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Támasz alapzat extruder" - -#: fdmprinter.def.json -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 "Az az extruder, ami a támaszok alját nyomtatja.Ezt multi-extruderes gépeken használhatjuk." - -#: fdmprinter.def.json -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Támasz fedél extruder" - -#: fdmprinter.def.json -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 "Az az extruder, ami a támaszok fedelét nyomtatja.Ezt multi-extruderes gépeken használhatjuk." - -#: fdmprinter.def.json -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_tree_angle label" -msgid "Tree Support Branch Angle" -msgstr "Támaszágak szöge" - -#: fdmprinter.def.json -msgctxt "support_tree_angle description" -msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "Az ágak szöge. Használjon alacsonyabb szöget, hogy függőlegesebb és stabilabbak legyenek. A jobb kinyúláshoz használjon nagyobb szöget." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance label" -msgid "Tree Support Branch Distance" -msgstr "Támaszágak távolsága" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance description" -msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -msgstr "Azt adja meg, hogy milyen messze kell lenniük az ágaknak, mikor a modellt érintik. Ha a távolság kicsi, a ta támasza több ponton is megérinti a modellt, ami jobb alátámasztást ad, de nehezebb eltávolítani majd a támaszt utólag." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter label" -msgid "Tree Support Branch Diameter" -msgstr "Támaszágak átmérője" - -#: fdmprinter.def.json -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 támasz legvékonyabb ágainak átmérője. A vastagabb ágak erősebbek. Az alap felé eső ágak vastagabbak lesznek, mint ez a méret." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter_angle label" -msgid "Tree Support Branch Diameter Angle" -msgstr "Támaszágak átmérő szög" - -#: fdmprinter.def.json -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 "Az ágak átmérőjének változási szöge. Az ágak felülről lefelé vastagodnak. Ha a szög 0, akkor az ágak átmérője egyenletes, teljes hosszukban.Egy kis szög érték növelheti a fa tartásának stabilitását." - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution label" -msgid "Tree Support Collision Resolution" -msgstr "Ütközés felbontás" - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution description" -msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -msgstr "Felbontás az ütközések kiszámítására, annak érdekében, hogy elkerüljük a modellel való ütközést. Ha alacsonyabb a beállítás, az pontosabb fákat eredményez, amik kevésbé dőlnek el, de a szeletelési időt drámai módon megnöveli." - -#: fdmprinter.def.json -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Támasz elhelyezés" - -#: fdmprinter.def.json -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 "A támaszok elhelyezésének beállítása. A támaszokat elhelyezhetjük úgy, hogy azokcsak az asztalon támaszkodhatnak, azaz azoknak érinteniük kell az asztalt.Ha azonban a mindenhol beállítást használjuk, akkor a támaszok a modell egyéb felületein is felépülhetnek." - -#: fdmprinter.def.json -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Asztalt érintse" - -#: fdmprinter.def.json -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Mindenhol" - -#: fdmprinter.def.json -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Támasz túlnyúlási szög" - -#: fdmprinter.def.json -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 "A kinyúlások minimális szöge, amihez támaszt kell nyomtatni.0° -nál minden kinyúlás alá lesz támasztva, 90° -nál egyik sem." - -#: fdmprinter.def.json -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Támasz minta" - -#: fdmprinter.def.json -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 "A támaszok szerkezeteinek mintázata. A különböző mintákkal elérhető eredmény lehet az erős vagy a könnyen eltávolítható támasz." - -#: fdmprinter.def.json -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Vonalak" - -#: fdmprinter.def.json -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Rács" - -#: fdmprinter.def.json -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Háromszög" - -#: fdmprinter.def.json -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Körkörös" - -#: fdmprinter.def.json -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Cikcakk" - -#: fdmprinter.def.json -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Kereszt" - -#: fdmprinter.def.json -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" - -#: fdmprinter.def.json -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Támasz falak száma" - -#: fdmprinter.def.json -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 "Azoknak a falaknak a száma, amellyel a támogatást körül lehet venni. A fal hozzáadása megbízhatóbbá teszi a nyomtatást és jobban támaszthatja a túlnyúlásokat, de növeli a nyomtatási időt és a felhasznált anyagot." - -#: fdmprinter.def.json -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Támasz vonalak összekötése" - -#: fdmprinter.def.json -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 "Kösse össze a támaszvonalak végeit. Ha ez engedélyezve van, akkor a támaszok erősebbé válhatnak, csökkenthető az alulextrudálás, viszont ez több anyagba kerül." - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Cikcakk támasz összekötése" - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Kösse össze a cikcakk támasz vonalait. Ez növeli a támasz szerkezeti erősségét." - -#: fdmprinter.def.json -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Támasz sűrűség" - -#: fdmprinter.def.json -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 "A támaszok belső sűrűségének beállítása. A magasabb érték jobb alátámasztást nyújt a kinyúlásokhoz, viszont nehezebb lesz a támaszokat eltávolítani." - -#: fdmprinter.def.json -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Támasz vonal távolság" - -#: fdmprinter.def.json -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "A támaszok belső szerkezetében lévő vonalak távolsága.Ez egy számított érték a támasz sűrűségből." - -#: fdmprinter.def.json -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Kezdő réteg támasz vonal távolság" - -#: fdmprinter.def.json -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 "A támaszok belső szerkezetében lévő vonalak távolsága az első rétegben.Ez egy számított érték a támasz sűrűségből." - -#: fdmprinter.def.json -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Támasz kitöltés iránya" - -#: fdmprinter.def.json -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 "Ez egy lista a teljes vonalak irányáról. A lista elemeit egymás után használják a rétegek, s mikor a lista a végére ért, elkezdi előlről. A lista elemeit vesszővel választja el, és a teljes lista sz9gletes zárójelben van.Az alapértelmezett az üres lista, ami azt is jelenti, hogy az alapértelmezett 0 fokos szöget használja." - -#: fdmprinter.def.json -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Támasz perem engedélyezése" - -#: fdmprinter.def.json -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 "Generáljon egy peremet az első rétegben a támaszok kitöltéseiben. Ezt a karimát a támaszok alá, és nem körülötte nyomtatják. Ennek a beállításnak a bekapcsolása növelhetjük a támaszok tapadását az tálcához." - -#: fdmprinter.def.json -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Támasz perem szélesség" - -#: fdmprinter.def.json -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 támasz alá nyomtatandó perem szélessége. A nagyobb peremek javítják a tálcához való tapadást, viszon extra anyagfelhasználást is jelent." - -#: fdmprinter.def.json -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Támasz perem vonalak száma" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Támasz Z távolság" - -#: fdmprinter.def.json -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. This value is rounded up to a multiple of the layer height." -msgstr "A támaszok struktúrájának alsó/felső részének távolsága a nyomtatott tárgytól.Ez a rés szabadon marad, így segíti a támaszok eltávolítását a nyomtatás után.Ez az érték a rétegmagasság többszörösére lesz kerekítve." - -#: fdmprinter.def.json -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Támasz felső távolság" - -#: fdmprinter.def.json -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "A támasz teteje és a fölé épített nyomtatvány közötti távolság." - -#: fdmprinter.def.json -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Támasz alsó távolság" - -#: fdmprinter.def.json -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "A támasz alja és az alatta lévő nyomtatvány közötti távolság." - -#: fdmprinter.def.json -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Támasz X/Y távolság" - -#: fdmprinter.def.json -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "A támasz szerkezete és a nyomtatvány közötti távolság X/Y irányban." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Támasz távolság elsődlegesség" - -#: fdmprinter.def.json -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 "Függetlenítés attól, hogy az X/Y támaszték távolsága felülbírálja-e a Z támasz távolságát, vagy fordítva. Amikor az X/Y felülbírálja a Z-t, az X/Y távolság elmozdíthatja a támaszt a modelltől, befolyásolva a tényleges Z távolságot a nyomtatványig. Ezt letilthatjuk, ha nem alkalmazzuk az X/Y távolságot a túlnyúlások körül." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y felülbírálás Z-re" - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z felülbírálás X/Y-ra" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Minimális támasz X/Y távolság" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Támasz lépcső magasság" - -#: fdmprinter.def.json -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 támasz lépcsőinek magassága azona a részen, ahol a modellen támaszkodik.Ha az érték alacsony, a támasz eltávolítása nehéz lehet, viszont a túl magas érték instabillá teheti a támaszt. Ha az érték 0, akkor kikapcsolja a lépcsőt." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Támasz lépcső maximális szélesség" - -#: fdmprinter.def.json -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 modellen támaszkodó támasz lépcső maximális szélessége. Az alacsony érték nehezíti az eltávolítást, de a túl magas érték instabillá teszi a támaszt." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Támasz kapcsolódási távolság" - -#: fdmprinter.def.json -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 maximális X/Y távolság két támasz szerkezet között. Mikor két elszeparált támasz túl közel kerül egymáshoz, azaz ettől az értéktől közelebb, akkor a támaszok egyesülni fognak." - -#: fdmprinter.def.json -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Vízszintes támasz bővítés" - -#: fdmprinter.def.json -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 "Az egyes rétegek minden támasz poligonjára alkalmazott eltolás mennyisége. A pozitív értékek kiegyenlíthetik a támasz területeket, és erősebb támasztást eredményezhetnek." - -#: fdmprinter.def.json -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Támasz kitöltési rétegvastagság" - -#: fdmprinter.def.json -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 támasz kitöltés retegenkénti anyagvastagsága. Ennek az értéknek minden esetben a rétegmagasság egész többszörösének kell lennie, és oda lesz kerekítve." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Fokozatos támasz kitöltési lépések" - -#: fdmprinter.def.json -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 "Hány esetben csökkenti felére a támasz kitörlésének a sűrűségét a felére, ahogy építi a támaszt. Azokon a területeken, ahol a felső felületekhez közelebb kerül, ott a sűrűség nőni fog, egészen a támasz kitöltési sűrűségig." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Fokozatos támaszkitöltési lépésmagasság" - -#: fdmprinter.def.json -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 támaszkitöltés azon magassága, ahol a sűrűség feleződni fog." - -#: fdmprinter.def.json -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Minimális támasz terület" - -#: fdmprinter.def.json -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 "A támasz poligonok minimális területe. Ha ettől kisebb a terület, ottnem lesz támasz generálva." - -#: fdmprinter.def.json -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Támasz interfész engedélyezés" - -#: fdmprinter.def.json -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 "Egy sűrű felületet generál a modell és a támasz közé. Ez egy héjat hoz létre a támasz tetején, amelyre a modell jól nyomtatódik, vagy az alján, ahová a támasz épülni fog." - -#: fdmprinter.def.json -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Felső interfész engedélyezés" - -#: fdmprinter.def.json -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 "Egy sűrű felület generálása a támasz teteje és a modell között. Ez egy átmeneti csatlakozási felületet fog teremteni a modell és a támasz közé." - -#: fdmprinter.def.json -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Alsó interfész engedélyezés" - -#: fdmprinter.def.json -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 "Egy sűrű felület generálása a támasz aljára és a modell között. Ez egy átmeneti csatlakozási felületet fog teremteni a modell és a támasz közé." - -#: fdmprinter.def.json -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Interfész vastagság" - -#: fdmprinter.def.json -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 támasz átmeneti, a modellt érintő csatlakozó felületének a vastagsága, amit a támasz aljára, vagy a tetejére nyomtat." - -#: fdmprinter.def.json -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Felső interfész vastagság" - -#: fdmprinter.def.json -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 támasz átmeneti, a modellt érintő csatlakozó felületének a vastagsága, amit a támasz tetejére nyomtat." - -#: fdmprinter.def.json -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Alsó interfész vastagság" - -#: fdmprinter.def.json -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 támasz átmeneti, a modellt érintő csatlakozó felületének a vastagsága, amit a támasz aljára nyomtat." - -#: fdmprinter.def.json -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Interfész felosztás" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Interfész sűrűség" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Beállítja a nyomtatás kitöltési sűrűségét." #: fdmprinter.def.json msgctxt "support_interface_density description" @@ -4160,898 +142,19 @@ msgid "Adjusts the density of the roofs and floors of the support structure. A h msgstr "Beállítja a támasz interfész sűrűségét a támasz alsó és a felső felületein.A magasabb érték jobb minőségű túlnyúlás nyomtatást tesz lehetővém viszont a támaszt nehezebb lesz eltávolítani." #: fdmprinter.def.json -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Felső interfész sűrűség" +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 "A támaszok belső sűrűségének beállítása. A magasabb érték jobb alátámasztást nyújt a kinyúlásokhoz, viszont nehezebb lesz a támaszokat eltávolítani." #: fdmprinter.def.json -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 "Beállítja a támasz interfész sűrűségét a támasz felső felületein.A magasabb érték jobb minőségű túlnyúlás nyomtatást tesz lehetővém viszont a támaszt nehezebb lesz eltávolítani." +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Nyomtatószál átmérő beállítása. Itt állítsd be a te általad használt nyomtatószál átmérőt. Ennek egyeznie kell a gép paramétereivel." #: fdmprinter.def.json -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Felső interfész vonal távolság" - -#: fdmprinter.def.json -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 támasz interfész tetővonalainak távolsága. Ezt a beállítást a támasz fedél sűrűségét számítja ki, de külön is megadható." - -#: fdmprinter.def.json -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Alsó interfész sűrűség" - -#: fdmprinter.def.json -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 "Beállítja a támasz interfész sűrűségét a támasz alsó felületein.A magasabb érték nagyobb tapadást tesz lehetővé a támasznak, a modell felületén, azonban a támaszt nehezebb lesz eltávolítani." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Alsó interfész vonal távolság" - -#: fdmprinter.def.json -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 támasz interfész aljzatvonalainak távolsága. Ezt a beállítást a támasz aljának a sűrűségét számítja ki, de külön is megadható." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Interfész minta" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "A támasz interfész kialakítási mintája." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Vonalak" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Rács" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Háromszögek" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Körkörös" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Cikcakk" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Felső interfész minta" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "A támasz interfész felső felületének kialakítási mintája." - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Vonalak" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Rács" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Háromszögek" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Körkörös" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Cikcakk" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Alsó interfész minta" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "A támasz interfész alsó felületének kialakítási mintája." - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Vonalak" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Rács" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Háromszögek" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Körkörös" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Cikcakk" - -#: fdmprinter.def.json -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Minimális interfész terület" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Minimális felső interfész terület" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Minimális alsó interfész terület" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Támasz interfész vízszintes bővítés" - -#: fdmprinter.def.json -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "A támasz interész sokszögeire alkalmazott eltolás összege." - -#: fdmprinter.def.json -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Interfészfedél vízszintes bővítés" - -#: fdmprinter.def.json -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "A támaszfedél interész sokszögeire alkalmazott eltolás összege." - -#: fdmprinter.def.json -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Interfészaljzat vízszintes bővítés" - -#: fdmprinter.def.json -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "A támaszaljzat interész sokszögeire alkalmazott eltolás összege." - -#: fdmprinter.def.json -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Támaszinterfész vonal irány" - -#: fdmprinter.def.json -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 "A használt teljes vonalaknak a listája. Az elemeket vesszővel választjuk el, és az egész lista szögletes zárójelek között van.Az alapértelmezett lista üres. Ebben az esetben a 45 és a 135 fok között változik az irányszög. A listát az elejéről kezdi, és rétegenként veszi az irányokat. Ha a lista végére ér, akkor előlről kezdi." - -#: fdmprinter.def.json -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Felső interfész irány" - -#: fdmprinter.def.json -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 "A használt teljes vonalaknak a listája. Az elemeket vesszővel választjuk el, és az egész lista szögletes zárójelek között van.Az alapértelmezett lista üres. Ebben az esetben a 45 és a 135 fok között változik az irányszög. A listát az elejéről kezdi, és rétegenként veszi az irányokat. Ha a lista végére ér, akkor előlről kezdi." - -#: fdmprinter.def.json -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Alsó interfész irány" - -#: fdmprinter.def.json -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 "A használt teljes vonalaknak a listája. Az elemeket vesszővel választjuk el, és az egész lista szögletes zárójelek között van.Az alapértelmezett lista üres. Ebben az esetben a 45 és a 135 fok között változik az irányszög. A listát az elejéről kezdi, és rétegenként veszi az irányokat. Ha a lista végére ér, akkor előlről kezdi." - -#: fdmprinter.def.json -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Hűtés felülbírálás" - -#: fdmprinter.def.json -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Ha engedélyezzük ezt az opciót, akkor a hűtőventillátor sebessége meg fog változni a külső kéreg felületeken, közvetlenül a támasz felett." - -#: fdmprinter.def.json -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Kéreghűtés sebesség támogatás" - -#: fdmprinter.def.json -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 "A ventillátorok % -os sebesség aránya, amit a támaszok feletti külső, kéregfelületeken kell használni. Ha a ventillátor sebesség itt nagyobb, akkor a támasz könnyebben eltávolítható." - -#: fdmprinter.def.json -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Tornyok használata" - -#: fdmprinter.def.json -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 "Speciális támasz tornyok használata a kisméretű túlnyúló területek támogatásához.Ezeknek a tornyoknak az átmérője nagyobb, mint az alátámasztott terület, azonban az alátámasztandó terület közelébe érve, fokozatosan csökken az átmérőjük, és egy tetőt képeznek." - -#: fdmprinter.def.json -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Torony átmérő" - -#: fdmprinter.def.json -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "A speciális támasz torony átméröje." - -#: fdmprinter.def.json -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Maximális toronnyal támasztott átmérő" - -#: fdmprinter.def.json -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 "Annak a kis területnek a legnagyobb átmérője, amit speciális támasz toronnyalkell alátámasztani." - -#: fdmprinter.def.json -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Torony fedél szög" - -#: fdmprinter.def.json -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 "A torony fedél szöge. A magasabb érték hegyes tornytetőket eredményez.Az alacsonyabb szöggel laposabb fedelet készíthetünk a toronynak." - -#: fdmprinter.def.json -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Támaszháló ledobás" - -#: fdmprinter.def.json -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 "Készítsen mindenütt támasztást a támaszháló alatt úgy, hogy ne lehessen alátámasztatlan kinyúlás a támaszhálóban." - -#: fdmprinter.def.json -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "" - -#: fdmprinter.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Tárgyasztal tapadás" - -#: fdmprinter.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Tapadás" - -#: fdmprinter.def.json -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Előnyomás engedélyezése" - -#: fdmprinter.def.json -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 "A nyomtatás előtt a nyomtatószálat előkészítio, és az olvadókamra nyomást felépíti úgy, hogy egy foltot nyomtat. A perem és a szoknya is viselkedhet így, hiszen annak a nyomtatása során is felépíthető a nyomás. Ebben az esetben ez a funkció nem működik, és ezzel időt takaríthatunk meg." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Extruder kezdő X helyzet" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "A fejnek az az X koordinátája, ahol a fúvóka előkészül ahhoz, hogy elkezdődjön a nyomtatás." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Extruder kezdő Y helyzet" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "A fejnek az az Y koordinátája, ahol a fúvóka előkészül ahhoz, hogy elkezdődjön a nyomtatás." - -#: fdmprinter.def.json -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Tárgyasztal tapadási típus" - -#: fdmprinter.def.json -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 "Itt különböző lehetőségek közül választhatunk, amelyek elősegítik a nyomtatvány tárgyasztalhoz való tapadását. A peremek egyrétegű sík felületek, amik a modell alapja körül nyomtatódnak úgy, hogy megakadályozzák a deformációt.A tutaj egy vastag rácsot hoz létre egy fedéllel a modell alatt.A szoknya egy vonal, ami a modell körül van nyomtatva, de az a modellhez ne kapcsolódik." - -#: fdmprinter.def.json -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Szoknya" - -#: fdmprinter.def.json -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Perem" - -#: fdmprinter.def.json -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Tutaj" - -#: fdmprinter.def.json -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Nincs" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Tapadás extruder" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "Az az extruder, amit a tapadásnövelő felületek, szoknya, perem, tutaj nyomtatására használunk. Csak multi extruder esetén használható." - -#: fdmprinter.def.json -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Szoknya vonalszám" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Szoknya távolság" - -#: fdmprinter.def.json -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 "" -"A szoknya vízszintes távolsága a modell első rétegének külső szélétől. \n" -"Ez a minimális távolság. Ha a szoknya vonalak száma többszörözve van, akkor a szoknya kifelé fog nyövekedni." - -#: fdmprinter.def.json -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Szoknya/Perem minimális hossz" - -#: fdmprinter.def.json -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 "A szoknya, vagy a perem minimális hossza. Ha ezt a hosszt nem érné el az összes szoknya vagy perem, akkor további szegélyvonalak adódnak hozzá, és kiegészítik addig, amíg el nem érik ezt a hosszt.Ha a vonalszám 0 -ra van állítva, akkor ez az opció figyelmen kívül van hagyva." - -#: fdmprinter.def.json -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Perem szélesség" - -#: fdmprinter.def.json -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 "Az a szélesség, amilyen széles lesz a Perem, a nyomtatott tárgy szélétől számítva. A nagyobb perem nagyobb tapadást fog eredményeznim viszont csökkenti az effektív használható nyomtatási területet." - -#: fdmprinter.def.json -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Perem vonalszám" - -#: fdmprinter.def.json -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 "A Perem körvonalainak száma. Több vonal nagyobb tapadást eredményez, de csökkenti a használható nyomtatási területet." - -#: fdmprinter.def.json -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Perem támasz helyett" - -#: fdmprinter.def.json -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 "Kényszerítő Perem nyomtatás a tárgy körül, még azokon a helyeken is, ahol egyébként támaszt kellene nyomtatni. Ezeken a helyeken a támasz első rétege helyett a perem lesz nyomtatva." - -#: fdmprinter.def.json -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Perem csak kívül" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Tutaj extra margó" - -#: fdmprinter.def.json -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 "Ha az extra margót engedélyezzük, akkor a modell alá nyomtatott tutajt ki vogja egészíteni, és bővíteni kifelé irányban. Ez egy erősebb tutajt fog létrehozni, viszont több alapanyagot igényel, és csökkenti a használható nyomtatási területet." - -#: fdmprinter.def.json -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Tutaj simítás" - -#: fdmprinter.def.json -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 "Ez a beállítás azt szabályozza, hogy tutajnak hány belső sarka legyen lekerekítve. A belső sarkokat félkörre kerekíti le, aminek sugara az itt megadott érték. Ez a beállítás eltávolítja a tutaj körvonalában lévő olyan lyukakat is, amik kisebbek, mint egy ilyen kör." - -#: fdmprinter.def.json -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Tutaj légrés" - -#: fdmprinter.def.json -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 légrés megadja, hogy a tutaj teteje és a modell alja között milyen legyena távolság. Csak az első réteget fogja megemelni ez az érték, ami így csökkenteni fogja a tutaj és a test egymáshoz tapadását. Ezáltal könnyebb lesz a nyomtatás végén eltávolítani a tutajt." - -#: fdmprinter.def.json -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Első réteg Z átfedés" - -#: fdmprinter.def.json -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 "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." - -#: fdmprinter.def.json -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Felső tutaj rétegek" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Felső tutaj rétegvastagság" - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Azoknak a tutajrétegeknek a vastagsága, ami a tutaj tetején van." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Tutaj felső vonalszélesség" - -#: fdmprinter.def.json -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 "A vonalak szélessége a tutaj felső felületén. Ezek lehetnek vékony vonalak, így a tutaj teteje sima lesz." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Tutaj felső távolsága" - -#: fdmprinter.def.json -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 tutajvonalak közötti távolság a felső tutajrétegeknél. A távolságnak meg kell egyeznie a vonalszélességgel, hogy a felület tömör legyen." - -#: fdmprinter.def.json -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Tutaj közép vastagsága" - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "A középső tutajréteg rétegvastagsága." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Tutaj középső vonal szélessége" - -#: fdmprinter.def.json -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 "A vonalak szélessége a középső tutajrétegben. Ha a második rétegnél többet extrudálunk, akkor a vonalak jobban tapadnak majd a tárgyasztalhoz." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Tutaj középső távolsága" - -#: fdmprinter.def.json -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 tutajvonalak közötti távolság a középső tutajrétegben. A középső távolságnak meglehetősen szélesnek kell lennie, ugyanakkor elég sűrűnek is ahhoz, hogy megfelelően támassza a felső tutajrétegeket." - -#: fdmprinter.def.json -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Tutajalap vastagsága" - -#: fdmprinter.def.json -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 "Az alap tutajréteg rétegvastagsága. Ennek vastag rétegnek kell lennie, mert erősen tapadnia kell a nyomtató tárgyasztalához." - -#: fdmprinter.def.json -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Tutajalap vonal szélessége" - -#: fdmprinter.def.json -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 "A vonalak szélessége a tutajalap rétegeiben. Ezeknek vastag vonalaknak kell lenniük, hogy elősegítsék a tárgyasztalhoz tapadást." - -#: fdmprinter.def.json -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Tutajalap-vonalak közötti távolság" - -#: fdmprinter.def.json -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 "Az tutajalap-réteg vonalai közötti távolság. A széles távolság megkönnyíti a tutaj eltávolítását a tárgyasztalról." - -#: fdmprinter.def.json -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Tutaj nyomtatási sebesség" - -#: fdmprinter.def.json -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "A tutaj nyomtatási sebessége." - -#: fdmprinter.def.json -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Tutajfedél nyomtatási sebesség" - -#: fdmprinter.def.json -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 tutaj felső rétegeinek nyomtatási sebessége. Ezeket kissé lassabban kell nyomtatni, hogy a fúvóka lassan kiegyenlítse a szomszédos felszíni vonalakat." - -#: fdmprinter.def.json -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Tutajközép nyomtatási sebesség" - -#: fdmprinter.def.json -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 középső tutajrétegek nyomtatási sebessége. Ezt meglehetősen lassan kell nyomtatni, mivel a fúvókából kifolyó anyag mennyisége meglehetősen nagy." - -#: fdmprinter.def.json -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Tutajalap nyomtatási sebessége" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Tutaj gyorsulás" - -#: fdmprinter.def.json -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "A tutaj nyomtatásához kapcsolódó gyorsulási érték." - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Tutajfedél gyorsulás" - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "A tutajfedél nyomtatásához kapcsolódó gyorsulási érték." - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Tutajközép gyorsulás" - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "A tutaj középső rétegeinek nyomtatásához kapcsolódó gyorsulási érték." - -#: fdmprinter.def.json -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Tutajalap gyorsulás" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Tutaj löket" - -#: fdmprinter.def.json -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "A tutaj nyomtatásakor használt löket." - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Tutajfedél löket" - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "A tutajfedél nyomtatásakor használt löket." - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Tutajközép löket" - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "A tutaj középső rétegeinek nyomtatásakor használt löket." - -#: fdmprinter.def.json -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Tutajalap löket" - -#: fdmprinter.def.json -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "A tutajalap nyomtatásakor használt löket." - -#: fdmprinter.def.json -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Tutaj hűtés" - -#: fdmprinter.def.json -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "A hűtőventillátor sebessége a tutaj nyomtatásakor." - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Tutajfedél hűtés" - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "A hűtőventillátor sebessége a tutaj felső rétegeinek nyomtatásakor." - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Tutajközép hűtés" - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "A hűtőventillátor sebessége a tutaj középső rétegeinek nyomtatásakor." - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Tutajalap hűtés" - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "A hűtőventillátor sebessége a tutajalap rétegeinek nyomtatásakor." - -#: fdmprinter.def.json -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Duál extrudálás" - -#: fdmprinter.def.json -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "A több extrúderekkel rendelkező gépek nyomtatási beállításai." - -#: fdmprinter.def.json -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Előtorony engedélyezése" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Előtorony mérete" - -#: fdmprinter.def.json -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "Az előtorony szélessége." - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Előtorony minimális térfogat" - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "Az előtorony minimális térfogata, minden egyes rétegben ahhoz, hogy az anyagcserét teljes egészében végre tudja hajtani." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Előtorony X helyzet" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "Az előtorony nyomtatási X koordinátája." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Előtorony Y helyzet" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "Az előtorony nyomtatási Y koordinátája." - -#: fdmprinter.def.json -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Inaktív fúvóka tisztítása az előtornyon" +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 "A támaszok elhelyezésének beállítása. A támaszokat elhelyezhetjük úgy, hogy azokcsak az asztalon támaszkodhatnak, azaz azoknak érinteniük kell az asztalt.Ha azonban a mindenhol beállítást használjuk, akkor a támaszok a modell egyéb felületein is felépülhetnek." #: fdmprinter.def.json msgctxt "prime_tower_wipe_enabled description" @@ -5059,244 +162,14 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "Miután kinyomtatta az előtornyot a gép, az inaktív fúvókán esetlegesen kicsöppenő anyagot letörli róla az előtoronyba." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Előtorony perem" +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 "Extruder váltás után a Z tengely és így a fej megemelkedik, így ez megakadályozza, hogy a fúvókából esetlegesen kicsöppenő anyag a nyomtatás külső felületére kenődjön." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Előfordulhat, hogy az előtornyokhoz szükség van a peremek által biztosított extra tapadásra, még akkor is, ha a modell nem rendelkezik peremmel. Jelenleg nem használható a tutaj 'Raft' mint tapadástípus ehhez a művelethez." - -#: fdmprinter.def.json -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Szivárgáspajzs engedélyezés" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Szivárgáspajzs szöge" - -#: fdmprinter.def.json -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 "Az a maximális szög, ami a szivárgáspajzsban megjelenhet. A 0 fok a függőleges, a 90 fok pedig a vízszintesnek felel meg. Ha a szög kisebb, akkor jobb lehet a pajzs hatásfoka, és jobban mentesíti a fúvókát a szivárgó anyagtól, azonban több felhasználandó anyagot igényel az építése." - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Szivárgáspajzs távolság" - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "A pajzs távolsága a nyomtatványtól X/Y irányban értve." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Fúvókaváltás visszahúzási távolság" - -#: fdmprinter.def.json -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 visszahúzás távolsága az extruderek váltásakor. 0-ra állítva egyáltalán nincs visszahúzás.Ennek a távolságnak általában meg kell egyeznie a hőzóna hosszával." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Fúvókaváltás visszahúzási sebesség" - -#: fdmprinter.def.json -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 "Nyomtatószál visszahúzási sebesség. A nagyobb sebesség jobb eredményhez vezethet, azonban a túl nagy sebesség a nyomtatószál eldarálásához vezethet a nyomtatószál adagolóban." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Fúvókaváltás visszahúzási sebesség" - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "Az a sebesség, amivel a szál visszahúzásra kerül a fúvókaváltás során." - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Fúvókaváltás visszatolási sebesség" - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "Az a sebesség, amivel a nyomtatószálat visszatoljuk a fejbe fúvókaváltás után." - -#: fdmprinter.def.json -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Fúvókaváltási extra visszatolt anyag" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Háló korrekciók" - -#: fdmprinter.def.json -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Szintátfedések egyesítése" - -#: fdmprinter.def.json -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 "Figyelmen kívül hagyja a hálóban lévő, átfedő térfogatokból származó belső geometriai alakzatokat, és a szintet egyben nyomtatja ki. Ez a nem kívánt belső üregek eltűnését eredményezheti." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Üregek eltávolítása" - -#: fdmprinter.def.json -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 "Eltávolítja a tárgyból az összes furatot, és üreget, s csak a külső geometriát tartja meg. Egyúttal figyelmen kívül hagyja a belső geometriát is.Nem fogja figyelmbe venni az alulról vagy felülről látható rétegeket sem." - -#: fdmprinter.def.json -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Kiterjedt felfűzés" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Nyílt poligonok megtartása" - -#: fdmprinter.def.json -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 "A Cura általában megkísérli összefűzni a kis lyukakat a hálóban, és eltávolítja ezeket egy nagy üregben. Ennek az opciónak a bekapcsolásával megtarthatók azok a részek, amiket nem lehet felfűzni. Ezt a lehetőséget végső lehetőségként tartsuk fent, és csak akkor használjuk, ha nem tudjuk más módon létrehozni a megfelelő G-kódot." - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Átfedések egyesítése" - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Egyesíti az egymással érintkező hálórészeket. Ez jobb kötést hoz létre a testben." - -#: fdmprinter.def.json -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Keresztezések eltávolítása" - -#: fdmprinter.def.json -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 "Azon területek eltávolítása, ahol a hálók keresztezik egymást. Ezt általában ott kell használni, ahol kettős objektumok átfedésben vannak egymással." - -#: fdmprinter.def.json -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Alternatív háló eltávolítása" - -#: fdmprinter.def.json -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 "Bekapcsolja, hogy minden egyes rétegnél, ahol kereszteződő hálók találhatóak, azok fonódjanak össze. Ha kikapcsoljuk ezt az opciót, akkor a kereszteződő hálók közül az egyik megkapja az átfedésben lévő háló teljes térfogatát, míg a többi hálót eltávolítja." - -#: fdmprinter.def.json -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Üres első rétegek eltávolítása" - -#: fdmprinter.def.json -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 "Távolítsa el az üres rétegeket amik az első nyomtatott réteg alatt, ha vannak. Ennek a beállításnak a letiltása esetén az első rétegek üresek lehetnek, ha a Szelet-tolerancia beállítást Kizárólagos vagy Közepes értékre állítják." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Maximális felbontás" - -#: fdmprinter.def.json -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 "Egy vonalszakasz minimális mérete a szeletelés után. Ha ezt megnöveli, a háló kisebb felbontású lesz. Ez lehetővé teheti a nyomtató számára, hogy lépést tartson a g-kód feldolgozásának sebességével, és növeli a szeletek sebességét azáltal, hogy eltávolítja a háló azon részleteit, amelyeket egyébként nem tud feldolgozni." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Maximális utazási felbontás" - -#: fdmprinter.def.json -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 "Az utazási útvonalak minimális mérete szeletelés után. Ha ezt növeljük, akkor az utazási mozgások kevésbé rendelkeznek majd sima sarkokkal.Ez lehetővé teszi a nyomtatók számára, hogy lépést tartsanak a g-kód feldolgozásához szükséges sebességgel, azonban a modell elkerülése kevésbé lehet pontos." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Maximális eltérés" - -#: fdmprinter.def.json -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 "A maximális eltérés, ha csökken a felbontás a maximális felbontás beállításnál. Ha ezt növeli, a nyomtatás kevésbé lesz pontos, de a g-kód kisebb lesz. A maximális eltérés a maximális felbontás korlátja, tehát ha a kettő ütközik, akkor a maximális eltérés lesz magasabb prioritású." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Különleges módok" - -#: fdmprinter.def.json -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "" - -#: fdmprinter.def.json -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Nyomtatási sorrend" - -#: fdmprinter.def.json -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 "" +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Minden" #: fdmprinter.def.json msgctxt "print_sequence option all_at_once" @@ -5304,1271 +177,19 @@ msgid "All at Once" msgstr "Egyidőben" #: fdmprinter.def.json -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Egyesével" +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." #: fdmprinter.def.json -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Kitöltés háló" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Alternatív extra fal" #: fdmprinter.def.json -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 "Ezzel a hálóval módosíthatja az egyéb átfedéseknek megfelelő kitöltéseket. Kicseréli a többi háló feltöltési régióit ezekre a régiókra. Javasoljuk, hogy ehhez a hálóhoz csak egy falat nyomtasson, és ne használjon alsó/felső felületet." - -#: fdmprinter.def.json -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Háló vágás" - -#: fdmprinter.def.json -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 "Korlátozza ennek a hálónak a térfogatát más hálókon belül. Ezt fel tudjuk használni egy háló nyomtatásának bizonyos területeire, különböző beállításokkal, vagy akát teljesen eltérő extruderrel." - -#: fdmprinter.def.json -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Öntőforma" - -#: fdmprinter.def.json -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 "Nyomtassa a modelt úgy, mint ha egy öntőforma lenne. Ezzel elérhetjük, hogy olyan nyomtatványt kapunk, amit ha kiöntünk, akkor a tárgyasztalon lévő modelt kapjuk vissza." - -#: fdmprinter.def.json -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Minimális formaszélesség" - -#: fdmprinter.def.json -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "" - -#: fdmprinter.def.json -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Forma fedél magasság" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Forma szög" - -#: fdmprinter.def.json -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 "A forma számára kialakított külső falak túlnyúlási szöge. 0 ° -kal a forma külső héja függőleges lesz, míg 90 ° -kal a modell külső része a modell kontúrját követi." - -#: fdmprinter.def.json -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Támasz háló" - -#: fdmprinter.def.json -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Ezzel a hálóval határozhatja meg a támaszt területeket. Ez felhasználható a támasz struktúra létrehozására." - -#: fdmprinter.def.json -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Túlnyúlás gátló háló" - -#: fdmprinter.def.json -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 "Ezzel a hálóval megadhatjuk, hogy a modell melyik részét ne lehessen észlelni túlnyúlásként. Ezt felhasználhatjuk arra, hogy a nem kívánt támasz struktúrákat eltávolítsuk." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Felszín mód" - -#: fdmprinter.def.json -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 "A modellt csak felületként, térfogatként, vagy lazua felülettel kezelje.A normál nyomtatási mód csak a zárt szinteket nyomtatja ki. A \"Felület\" egyetlen falra nyomtat, amely a háló felületét követi nyomtatás nélkül, és nincs alsó és felső felület.A \"Mindkettő\" zárt szinteket nyomtat, ugyanúgy, mint a normál, és minden fennmaradó poligont pedig felületként." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normál" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Felület" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Mindkettő" - -#: fdmprinter.def.json -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Külső kontúr spiralizálása" - -#: fdmprinter.def.json -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 "A spirálizálás kiegyenlíti a külső él Z mozgását. Ez folyamatos Z növekedést eredményez a teljes nyomtatás során. Ez a szolgáltatás a szilárd modellt egyetlen falú, szilárd aljú nyomtatássá teszi. Ezt a funkciót csak akkor kell engedélyezni, ha minden réteg csak egyetlen részt tartalmaz." - -#: fdmprinter.def.json -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Sima, spirális kontúrok" - -#: fdmprinter.def.json -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 "A Z-varrat láthatóságának csökkentése érdekében simítsa meg a spirális kontúrokat (a Z-varratnak alig láthatónak kell lennie a nyomaton, de a rétegnézetben továbbra is látható lesz). Vegye figyelembe, hogy a simítás általában elmossa a finom felület részleteit." - -#: fdmprinter.def.json -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Relatív extrudálás" - -#: fdmprinter.def.json -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 "Használjon relatív extrudálást abszolút extrudálás helyett. A relatív E-lépések használata megkönnyíti a g-kód utófeldolgozását. Ezt azonban nem minden nyomtató támogatja, és az abszolút E-lépésekhez viszonyítva nagyon kismértékű eltéréseket eredményezhet a lerakott anyag mennyiségében. Ettől a beállítástól függetlenül az extrudálás módját mindig abszolút értékre állítják, mielőtt bármilyen g-kód szkriptet kiadnának." - -#: fdmprinter.def.json -msgctxt "experimental label" -msgid "Experimental" -msgstr "Kísérleti funkciók" - -#: fdmprinter.def.json -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Szeletelési tűrés" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Középső" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Kizáró" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Befoglaló" - -#: fdmprinter.def.json -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Felső felszíni kéregvonal szélesség" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Felső felszíni kéregminta" - -#: fdmprinter.def.json -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "A legfelső rétegeken lévő mintázat." - -#: fdmprinter.def.json -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Vonalak" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Körkörös" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Cikcakk" - -#: fdmprinter.def.json -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Felső kéregvonal irányok" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Kitöltési utazás optimalizáció" - -#: fdmprinter.def.json -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 "Ha engedélyezve van, a kitöltési sorok nyomtatási sorrendje optimalizálódik a megtett távolság csökkentése érdekében. Az elért utazási idő csökkentése nagymértékben függ a szeletelt modelltől, a kitöltési mintától, a sűrűségtől stb. Vegye figyelembe, hogy egyes modellek esetében, amelyeknek sok kis kitöltési területe van, a modell szeletelésének ideje jelentősen megnőhet." - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature label" -msgid "Auto Temperature" -msgstr "Automatikus hőfok" - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature description" -msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -msgstr "Automatikusan változtassuk a hőmérsékletet az egyes rétegeknél, annak függvényében, hogy milyen az adott réteg átlagos adagolási sebessége." - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Adagolás hőmérséklet diagram" - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "A nyomtatószál adagolást (mm3/mp), és a hőmérsékletet (Celsius) összekötő adatok." - -#: fdmprinter.def.json -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Minimális sokszög kerület" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Támasz tördelhetősége" - -#: fdmprinter.def.json -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 "A támasz nyomtatásakor néhány támaszbonal összeköttetés kihagy, így a szerkezet a végső eltávolításkor, ott konnyebben el fog törni. Ezt a beállítást a cikcakk támaszmintára tudjuk alkalmazni." - -#: fdmprinter.def.json -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Törés méret" - -#: fdmprinter.def.json -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 "A támaszvonalak között ennyi mm -ként hagy el egy vonalat, a könnyebb törhetőség miatt." - -#: fdmprinter.def.json -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Törésvonalak száma" - -#: fdmprinter.def.json -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Ennyi kapcsolódó vonal után hagy ki egyet a törés könnyítése érdekében." - -#: fdmprinter.def.json -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Huzatpajzs engedélyezése" - -#: fdmprinter.def.json -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 "A beállítással létrehozhatunk egy falat a modell körül, ami segít abban, hogy a külső levegő, vagy légáramlat érje a nyomtatott testet.Ez különösen azoknál az alapanyagoknál lehet segítség, amelyek hajlamosak a felválásra, repedésre, mint pl. az ABS, ASA." - -#: fdmprinter.def.json -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Huzatpajzs X/Y távolság" - -#: fdmprinter.def.json -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "A modell és a huzatpajzs közötti távolság X/Y irányban." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Huzatpajzs korlátozás" - -#: fdmprinter.def.json -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 "Beállítja a huzatpajzs magasságát. Kiválasztható, hogy a modell teljes magasságában, vagy egy részleges magasságig épüljön a pajzs." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Teljes" - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Részleges" - -#: fdmprinter.def.json -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Huzatpajzs magasság" - -#: fdmprinter.def.json -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "A huzatpajzs magassága. Csak eddig a magasságig fogja a pajzsot nyomtatni." - -#: fdmprinter.def.json -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Nyomtatható túlnyúlások" - -#: fdmprinter.def.json -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 "A modell geometriáját fogja megváltoztatni oly módon, hogy minimális támasz legyen szükséges a nyomtatáshoz. A meredek kinyúlások sekélyessé fognak válni, míg a túlnyúló területek függőlegesebbé." - -#: fdmprinter.def.json -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Maximális túlnyúlási szög" - -#: fdmprinter.def.json -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 "A túlnyúlások maximális szöge a nyomtathatóvá tétel után. 0 ° értéknél az összes túlnyúlást egy, az építőlemezhez kapcsolt modelldarab váltja fel, a 90 ° -ot a modell semmilyen módon nem változtatja meg." - -#: fdmprinter.def.json -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Kifutás engedélyezés" - -#: fdmprinter.def.json -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 "A kifutás során, az adott rész nyomtatásakor, az extrudálási út vége előtt, egy utazási mozgársa váltás történik. Idő előtt megszüntetjük az extrudálást és a fejből még kicsöppenő anyagmaradványt használjuk fel a rész fennmaradó részének nyomtatásához. Így a szálazást, és az utazás közbeni csöppenést tudjuk csökkenteni." - -#: fdmprinter.def.json -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Kifutási mérték" - -#: fdmprinter.def.json -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "A csöppenés mértéke. Ennek az értéknek általában közel kell lennie a fúvóka átmérőjéhez." - -#: fdmprinter.def.json -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Minimális mennyiség a kifutás előtt" - -#: fdmprinter.def.json -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 "Az minimális extrudálási mennyiség, mielőtt engedélyezi a kifutási műveletet.Ha nincs egy bizonyos mennyiségű extrudálás a kifuttatás előtt, nem épül fel elegendő nyomás az olvadótérben, és a kifutás során nem lesz elegendő anyag a nyomtatáshoz. Emiatt a kifutási mérték lineárisan van skálázva.Ez az érték mindig nagyobb, mint a kifutási mérték." - -#: fdmprinter.def.json -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Kifutási sebesség" - -#: fdmprinter.def.json -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 kifutási művelet sebessége, a normál extrudálási út sebességéhez képest.Javasolt, hogy kisség csökkentsük, így 100% -nál alacsonyabb legyen az érték, mivel a kifutási mozgás közben csökken a nyomás a csőben." - -#: fdmprinter.def.json -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Kereszt 3D üreg méret" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Kereszt kitöltési kép" - -#: fdmprinter.def.json -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 "Annak a képfájlnak, aminek a fényerősség értékei meghatározzák a minimális sűrűséget a nyomtatás kereszt kitöltésének megfelelő helyén." - -#: fdmprinter.def.json -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Kereszt támasz kitöltési kép" - -#: fdmprinter.def.json -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 "Annak a képfájlnak, aminek a fényerősség értékei meghatározzák a minimális sűrűséget a nyomtatás kereszt támasz kitöltésének megfelelő helyén." - -#: fdmprinter.def.json -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Kúpos támasz engedélyezése" - -#: fdmprinter.def.json -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "A támaszok alja kisebb méretű lesz, mint az alátámasztandó rész." - -#: fdmprinter.def.json -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Kúpszög" - -#: fdmprinter.def.json -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 "A kúpos támasz dőlésszöge. A 0 fok függőleges és 90 fok vízszintes. A kisebb szögek miatt a tartószerkezet erősebb, de több anyagból áll. A negatív szögek miatt a támasz talpa szélesebb, mint a teteje." - -#: fdmprinter.def.json -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Kúptámasz minimális szélesség" - -#: fdmprinter.def.json -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 "A kúptámasz alapjának minimális mérete. Ha nagyon kicsi ez a szélesség, akkor a támasz instabil lehet." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Rücskös felszín" - -#: fdmprinter.def.json -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 "A külső fal nyomtatása során, véletlenszerűen beremeg a fej. Ennek hatására a külső fal mintázata elmosott, homályos lesz, elnyomja a mintázatot." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Rücsök vastagság" - -#: fdmprinter.def.json -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 "Az a szélesség, amelyen belül a rezgés történhet. Javasolt, hogy ez a külső fal szélessége alatt legyen, mivel a belső falalkat nem érinti ez a mozgás." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Rücsök sűrűség" - -#: fdmprinter.def.json -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 "Az egyes poligonokon egy rétegben megjelenő pontok átlagos sűrűsége.Vegyük figyelembe, hogy az eredeti sokszög pontok itt eldobásra kerülnek, így az alacsony sűrűség csökkenti a felbontást." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Rücsök távolság" - -#: fdmprinter.def.json -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 "Az egyes vonalszakaszokon létrehozott rücskök közötti átlagos távolság. Mivel az eredeti pontok eldobásra kerülnek, a sok rücsök a felbontás csökkenését fogja eredményezni. Ennek az értéknek meg kell haladnia a rücskös falvastagság felét." - -#: fdmprinter.def.json -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wireframe_enabled label" -msgid "Wire Printing" -msgstr "Huzalváz nyomtatás" - -#: fdmprinter.def.json -msgctxt "wireframe_enabled description" -msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -msgstr "Csak a külső felületet nyomtatja, egy ritkás hevederezett szerkezettel, a levegőben. Ez úgy valósul meg, hogy a modell kontúrjai vízszintesen kinyomtatásra kerülnek meghatározott Z intervallumban, amiket felfelé, és átlósan lefelé egyenesen összeköt." - -#: fdmprinter.def.json -msgctxt "wireframe_height label" -msgid "WP Connection Height" -msgstr "Kapcsolódási magasság" - -#: fdmprinter.def.json -msgctxt "wireframe_height description" -msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -msgstr "Két vízszintes rész közötti felfelé és átlósan lefelé mutató vonalak magassága. Ez határozza meg a nettó szerkezet általános sűrűségét. Csak a huzalnyomásra vonatkozik." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset label" -msgid "WP Roof Inset Distance" -msgstr "Fedél betét távolság" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset description" -msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -msgstr "A beépített távolság, amikor a tetőtől körvonalakat bekapcsolnak. Csak a huzalnyomásra vonatkozik." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed label" -msgid "WP Speed" -msgstr "Sebesség" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed description" -msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -msgstr "A fúvóka mozgásának sebessége az anyag extrudálásakor. Csak a huzalnyomtatásra vonatkozik." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom label" -msgid "WP Bottom Printing Speed" -msgstr "Aljzat nyomtatási sebesség" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom description" -msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -msgstr "Az első réteg nyomtatásának sebessége, amely az egyetlen réteg, amely megérinti a tárgyasztalt. Csak a huzalnyomásra vonatkozik." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up label" -msgid "WP Upward Printing Speed" -msgstr "Felfelé nyomtatási sebesség" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up description" -msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -msgstr "A vonalak felfelé, Z irányban 'a levegőben' történő nyomtatási sebessége. Csak a huzalnyomásra vonatkozik." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down label" -msgid "WP Downward Printing Speed" -msgstr "Lefelé nyomtatási sebesség" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down description" -msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -msgstr "A vonalak lefelé, Z irányban 'a levegőben' történő nyomtatási sebessége. Csak a huzalnyomásra vonatkozik." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat label" -msgid "WP Horizontal Printing Speed" -msgstr "Vízszintes nyomtatási sebesség" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat description" -msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -msgstr "A modell kontúrjának vizszintes irnyban történő nyomtatási sebessége.Csak a huzalnyomásra vonatkozik." - -#: fdmprinter.def.json -msgctxt "wireframe_flow label" -msgid "WP Flow" -msgstr "Adagolás" - -#: fdmprinter.def.json -msgctxt "wireframe_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -msgstr "Ádagoláskompenzáció: az extrudált anyag mennyiségét megszorozzuk ezzel az értékkel. Csak a huzalnyomásra vonatkozik." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection label" -msgid "WP Connection Flow" -msgstr "Kapcsolódási adagolás" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection description" -msgid "Flow compensation when going up or down. Only applies to Wire Printing." -msgstr "Ádagoláskompenzáció felfelé vagy lefelé irányban haladva. Csak a huzalnyomásra vonatkozik." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat label" -msgid "WP Flat Flow" -msgstr "Vízszintes adagolás" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat description" -msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -msgstr "Ádagoláskompenzáció vízszintes vonalak nyomtatásakor. Csak a huzalnyomásra vonatkozik." - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay label" -msgid "WP Top Delay" -msgstr "Felső késleltetés" - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay description" -msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -msgstr "Késleltesse az időt felfelé történő mozgatás után, hogy a felfelé mutató vonal megszilárduljon. Csak a huzalnyomásra vonatkozik." - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay label" -msgid "WP Bottom Delay" -msgstr "Alsó késleltetés" - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay description" -msgid "Delay time after a downward move. Only applies to Wire Printing." -msgstr "Késleltesse az időt lefelé történő mozgatás után, hogy a lefelé mutató vonal megszilárduljon. Csak a huzalnyomásra vonatkozik." - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay label" -msgid "WP Flat Delay" -msgstr "Vízszintes késleltetés" - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay description" -msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -msgstr "Késleltetési idő két vízszintes szegmens között. Egy ilyen késleltetés bevezetése jobb tapadást okozhat az előző rétegekhez a csatlakozási pontokon, míg a túl hosszú késleltetések megereszkedést okozhatnak. Csak a huzalnyomásra vonatkozik." - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed label" -msgid "WP Ease Upward" -msgstr "Emelés távolság" - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed description" -msgid "" -"Distance of an upward move which is extruded with half speed.\n" -"This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "A felfelé irányuló mozgás távolsága, amelyet fél sebességgel extrudálunk. Ez jobb tapadást eredményez az előző rétegekhez, miközben az anyag nem melegíti túl az anyagot ezekben a rétegekben. Csak a huzalnyomásra vonatkozik." - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump label" -msgid "WP Knot Size" -msgstr "Csomó méret" - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump description" -msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -msgstr "Kicsi csomót hoz létre egy felfelé mutató vonal tetején, hogy az egymást követő vízszintes réteg nagyobb eséllyel csatlakozzon hozzá. Csak a huzalnyomásra vonatkozik." - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down label" -msgid "WP Fall Down" -msgstr "Ejtés távolság" - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down description" -msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "Az a távolság, amellyel az anyag leesik egy felfelé történő extrudálás után. Ezt a távolságot tudjuk itt kompenzálni. Csak a huzalnyomásra vonatkozik." - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along label" -msgid "WP Drag Along" -msgstr "Húzási távolság" - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along description" -msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "Az a távolság, ameddig egy felfelé irányuló extrudálás anyagát az átlósan lefelé irányuló extrudálással együtt meghúzzuk. Ezt a távolságot kompenzálni kell. Csak a huzalnyomásra vonatkozik." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy label" -msgid "WP Strategy" -msgstr "Startégia" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy description" -msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -msgstr "Stratégia annak biztosítására, hogy két egymást követő réteg kapcsolódjon minden egyes csatlakozási ponthoz. A visszahúzás lehetővé teszi, hogy a felfelé mutató vonalak a megfelelő helyzetben megkeményedjenek, de ez az adagolókerék megcsúszását, és a szál eldarálását okozhatja. Egy felfelé mutató vonal végén csomót lehet készíteni, hogy növeljük az ahhoz való csatlakozás eredményességét, és hagyjuk, hogy a vonal vége lehűljön; ez azonban lassú nyomtatási sebességet igényelhet. Egy másik stratégia, a felfelé mutató vonal tetejének elmaradásának kompenzálása; azonban a vonalak nem mindig esnek le a várt módon." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option compensate" -msgid "Compensate" -msgstr "Kompenzáció" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option knot" -msgid "Knot" -msgstr "Csomó" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option retract" -msgid "Retract" -msgstr "Visszahúzás" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down label" -msgid "WP Straighten Downward Lines" -msgstr "Vonal egyenesítés lefelé" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down description" -msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -msgstr "Az átlósan lefelé mutató vonal százaléka, amelyet egy vízszintes vonaldarab fed le. Ez megakadályozhatja a felfelé mutató vonalak legfelső pontjának elhajlását. Csak a huzalnyomásra vonatkozik." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down label" -msgid "WP Roof Fall Down" -msgstr "Fedél ejtés" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down description" -msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -msgstr "A 'vékony, levegőben' nyomtatott vízszintes tetővonalak nyomtatáskor csökkennek a távolságok. Ezeket a távolságokat kompenzálni kell. Csak a huzalnyomásra vonatkozik." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along label" -msgid "WP Roof Drag Along" -msgstr "Fedél húzás" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along description" -msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -msgstr "A belső vonal végdarabjának távolsága, amely elhúzódik, amikor visszamegy a tető külső körvonalaihoz. Ezt a távolságot kompenzálni kell. Csak a huzalnyomásra vonatkozik." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay label" -msgid "WP Roof Outer Delay" -msgstr "Fedél külső késleltetése" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay description" -msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -msgstr "A tetővé váló lyuk külső kerületein eltöltött idő. A hosszabb idő biztosítja a jobb kapcsolódást. Csak a huzalnyomásra vonatkozik." - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance label" -msgid "WP Nozzle Clearance" -msgstr "Fúvúka hézag" - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance description" -msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -msgstr "A fúvóka és a vízszintesen lefelé mutató vonalak közötti távolság. A nagyobb hézag átlósan lefelé mutató vonalakat eredményez, kevésbé meredek szöggel, ami viszont kevésbé felfelé irányuló kapcsolatokat eredményez a következő réteggel. Csak a huzalnyomásra vonatkozik." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Adaptív rétegek használata" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Adaptív rétegek maximális variációja" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "Az alapréteg magasságától eltérő legnagyobb megengedett réteg magasság." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Lépésméret" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Falkinyúlások szöge" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Falkinyúlás sebessége" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Híd beállítások engedélyezése" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Minimális híd falhossz" - -#: fdmprinter.def.json -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 "Az ennél rövidebb nem alátámasztott falak a normál falbeállításokkal kerülnek kinyomtatásra. Az ettől hosszabb nem támogatott falakat viszont a hídfalak beállításai alapján nyomtatjuk ki." - -#: fdmprinter.def.json -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Felület támasz küszöb" - -#: fdmprinter.def.json -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 "Ha a felületi régió területe kevesebb, mint ez a megadott százalékos érték, nyomtassa a híd beállításokkal, egyébként normál felületi beállításokkal nyomtasson." - -#: fdmprinter.def.json -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Híd fal kifutás" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Hídfal sebesség" - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "Hidak falainak nyomtatási sebessége." - -#: fdmprinter.def.json -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Hídfal adagolás" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Hídfelszín sebesség" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Hídfelszín adagolás" - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "A hídfelszínek nyomtatásakor az extrudált anyagmennyiséget meg kell szorozni ezzel az értékkel." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Hídfelszín sűrűsége" - -#: fdmprinter.def.json -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 híd felszínének a sűrűsége. A 100 -nál kisebb értéknöveli a hézagokat a felszíni vonalak között." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Híd hűtési sebesség" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "A hűtőventillátor sebességének százalékos értéke hídfalak, és a felszíni rétegek nyomtatásakor." - -#: fdmprinter.def.json -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Többrétegű híd" - -#: fdmprinter.def.json -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 "Ha engedélyezve van ez az opció, akkor a híd második és harmadik rétegét is a híd beállításával nyomtatja ki. Egyébként ezek a rétgeke már a normál beállítással nyomtatódnának ki." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Második hídréteg sebessége" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Ha használunk második hídréteget, akkor az ezzel a sebességgel fog nyomtatódni." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Második hídréteg adagolás" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Második hídréteg sűrűség" - -#: fdmprinter.def.json -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 második hídréteg sűrűsége. A 100-nál kisebb értékek növelik a hézagokat a felszíni vonalak között." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Második hídréteg hűtési sebessége" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "A második hídréteg nyomtatásakor használt ventillátor sebesség százalékos értékben megadva." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Harmadik hídréteg sebesség" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Ha használunk harmadik hídréteget, akkor az ezzel a sebességgel fog nyomtatódni." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Harmadik hídréteg adagolás" - -#: fdmprinter.def.json -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 "A harmadik hídréteg nyomtatásakor az extrudált anyag mennyiségét megszorozzuk ezzel az értékkel." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Harmadik hídréteg sűrűség" - -#: fdmprinter.def.json -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 harmadik hídréteg sűrűsége. A 100-nál kisebb értékek növelik a hézagokat a felszíni vonalak között." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Harmadik hídréteg hűtési sebessége" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Fúvóka tisztítás rétegek között" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Anyagmennyiség törlések között" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Törlés visszahúzás engedélyezése" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "A nyomtatószálat visszahúzza, mikor a fúvóka átmozog egy nem-nyomtatott területen." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Törlés visszahúzás távolság" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "A visszahűzandó anyagmennyiség azért, hogy a törlési művelet során ne legyen anyagcsöppenés a fúvókából." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Törlés visszahúzás anyag kompenzáció" - -#: fdmprinter.def.json -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 "Valamennyi anyag elszivároghat a törlési művelet során, ami itt kompenzálható." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Törlés visszahúzás sebesség" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "Az a sebesség, amivel a nyomtatószál visszahúzódik, majd vissza töltődik a fejbe, a törlési művelet során." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Visszahúzási sebesség" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "Az a sebesség, amivel a nyomtatószál visszahúzódik." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "Az a sebesség, amivel a nyomtatószál visszatöltődik a fejbe." - -#: fdmprinter.def.json -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Törlés szünet" - -#: fdmprinter.def.json -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Szünet a visszahúzás után." - -#: fdmprinter.def.json -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Z emelés magasság" - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "A magasság, amivel a Z tenhelyt megemeljük." - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Z emelés sebesség" - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Az emelési mozgáskor a Z tengely sebessége." - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Törlési pont (kefe) X helyzete" - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "Az az X helyzet, ahol a törlési szkript elindul." - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Törlés ismétlés száma" - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "A törlési mozgás ismétlésének száma, háynszor keresztezze a fej a kefét." - -#: fdmprinter.def.json -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Törlési mozgás távolsága" - -#: fdmprinter.def.json -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "A fej oda-vissza mozgatásának távolsága a kefén." - -#: fdmprinter.def.json -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Kis lyuk maximális mérete" - -#: fdmprinter.def.json -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 "Az ennél kisebb átmérőjű lyukakat és részek körvonalait a Kis funkciósebesség használatával nyomtatják ki." - -#: fdmprinter.def.json -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Kis funkció maximális hossza" - -#: fdmprinter.def.json -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Ettől a hosszúságtól rövidebb részek körvonalait a Kis funkció sebességgel kerülnek kinyomtatásra." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Kis funkció sebesség" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "" - -#: fdmprinter.def.json -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 "Alternatív háló eltávolítása" #: fdmprinter.def.json msgctxt "material_alternate_walls label" @@ -6581,34 +202,349 @@ msgid "Alternate wall directions every other layer and inset. Useful for materia msgstr "" #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Alumínium" + +#: fdmprinter.def.json +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" msgstr "" #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Minden esetben, mikor a külső fal nyomtatása fog történni, a pozicionáláskor szál visszahúzás fog történni." + +#: fdmprinter.def.json +msgctxt "hole_xy_offset description" +msgid "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." msgstr "" #: fdmprinter.def.json -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" +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 "Az egyes rétegek sokszögeire alkalmazott bővítés mennyisége. A pozitív értékek kompenzálhatják a túl nagy lyukakat, míg a negatív értékek a túl kicsi lyukakat képesek kompenzálni." + +#: fdmprinter.def.json +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 "A kezdő réteg sokszögeire alkalmazott bővítés mennyisége. A negatív érték kompenzálhatja az első réteg túlömlését, amit úgy is neveznek, hogy \"elefánt láb\"." + +#: fdmprinter.def.json +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 "Az egyes rétegek minden támasz poligonjára alkalmazott eltolás mennyisége. A pozitív értékek kiegyenlíthetik a támasz területeket, és erősebb támasztást eredményezhetnek." + +#: fdmprinter.def.json +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "A támaszaljzat interész sokszögeire alkalmazott eltolás összege." + +#: fdmprinter.def.json +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "A támaszfedél interész sokszögeire alkalmazott eltolás összege." + +#: fdmprinter.def.json +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "A támasz interész sokszögeire alkalmazott eltolás összege." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "A visszahűzandó anyagmennyiség azért, hogy a törlési művelet során ne legyen anyagcsöppenés a fúvókából." + +#: fdmprinter.def.json +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 "Az egyes kitöltési kockák közepétől számított sugár hozzáadásával ellenőrizni kell a modell határát, hogy eldönthesse a szeletelő, hogy ezt a kockát fel kell-e osztan, vagy sem.A nagyobb értékek a kocka vastagabb héjához vezetnek a modell szélének közelében." + +#: fdmprinter.def.json +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Túlnyúlás gátló háló" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Szivárgásgátló visszahúzási helyzet" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Szivárgásgátló visszahúzás sebesség" + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." msgstr "" #: fdmprinter.def.json -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." +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 "" #: fdmprinter.def.json -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Parancssor beállításai" +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Kinyomtatott részek kerülése utazáskor" #: fdmprinter.def.json -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Beállítások, amelyeket csak akkor használunk, ha a CuraEngine nem hívható meg a Cura grafikus felületéről." +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Támasz elkerülése utazáskor" + +#: fdmprinter.def.json +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Hátra" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Hátra balra" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Hátra jobbra" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes (BFB)" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Mindkettő" + +#: fdmprinter.def.json +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Alsó rétegek" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Alsó kezdő réteg mintázata" + +#: fdmprinter.def.json +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Alsó kéreg bővítési távolság" + +#: fdmprinter.def.json +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Alsó kéreg eltávolítási szélesség" + +#: fdmprinter.def.json +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Alsó vastagság" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Szakadás előállítás visszahúzott helyzetben" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Szakadás előállítás visszahúzási sebeség" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Sazakdás visszahúzási helyzet" + +#: fdmprinter.def.json +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Szakítás visszahúzási sebesség" + +#: fdmprinter.def.json +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Szakítási hőmérséklet" + +#: fdmprinter.def.json +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Támasz tördelhetősége" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Híd hűtési sebesség" + +#: fdmprinter.def.json +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Többrétegű híd" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Második hídréteg sűrűség" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Második hídréteg hűtési sebessége" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Második hídréteg adagolás" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Második hídréteg sebessége" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Hídfelszín sűrűsége" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Hídfelszín adagolás" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Hídfelszín sebesség" + +#: fdmprinter.def.json +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Felület támasz küszöb" + +#: fdmprinter.def.json +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Harmadik hídréteg sűrűség" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Harmadik hídréteg hűtési sebessége" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Harmadik hídréteg adagolás" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Harmadik hídréteg sebesség" + +#: fdmprinter.def.json +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Híd fal kifutás" + +#: fdmprinter.def.json +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Hídfal adagolás" + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Hídfal sebesség" + +#: fdmprinter.def.json +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Perem" + +#: fdmprinter.def.json +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Perem vonalszám" + +#: fdmprinter.def.json +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Perem csak kívül" + +#: fdmprinter.def.json +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Perem támasz helyett" + +#: fdmprinter.def.json +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Perem szélesség" + +#: fdmprinter.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Tárgyasztal tapadás" + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Tapadás extruder" + +#: fdmprinter.def.json +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Tárgyasztal tapadási típus" + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Tárgyasztal anyaga" + +#: fdmprinter.def.json +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Tárgyasztal alakja" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Tárgyasztal hőmérséklete" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Tárgyasztal hőmérséklet a kezdő rétegnél" + +#: fdmprinter.def.json +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Építési tér hőmérséklete" #: fdmprinter.def.json msgctxt "center_object label" @@ -6616,341 +552,6035 @@ msgid "Center Object" msgstr "Tárgy középpontba" #: fdmprinter.def.json -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 "A tárgyat a tárgyasztal közepére kell központosítani (0,0), annak a koordináta rendszernek a használata helyett, amelyben az objektum mentérse került." +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 "A modell geometriáját fogja megváltoztatni oly módon, hogy minimális támasz legyen szükséges a nyomtatáshoz. A meredek kinyúlások sekélyessé fognak válni, míg a túlnyúló területek függőlegesebbé." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Kifutási sebesség" + +#: fdmprinter.def.json +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Kifutási mérték" + +#: fdmprinter.def.json +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 "A kifutás során, az adott rész nyomtatásakor, az extrudálási út vége előtt, egy utazási mozgársa váltás történik. Idő előtt megszüntetjük az extrudálást és a fejből még kicsöppenő anyagmaradványt használjuk fel a rész fennmaradó részének nyomtatásához. Így a szálazást, és az utazás közbeni csöppenést tudjuk csökkenteni." + +#: fdmprinter.def.json +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Fésülés mód" + +#: fdmprinter.def.json +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 "A fésülés a fúvókát a már nyomtatott területeken tartja utazás közben.Ez kissé hosszabb utazási eredményeket eredményez, de csökkenti a visszahúzás szükségességét. Ha a fésülés ki van kapcsolva, akkor az anyag visszahúzódik, és a fúvóka egyenes vonalban mozog a következő pontra.Az is elkerülhető, hogy a felső / alsó kéregfelületeken fésülést végezzen, vagy csak a kitöltés belsejében mozogjon." + +#: fdmprinter.def.json +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Parancssor beállításai" + +#: fdmprinter.def.json +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Körkörös" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Körkörös" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Körkörös" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Körkörös" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Körkörös" + +#: fdmprinter.def.json +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Körkörös" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Körkörös" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Körkörös" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Körkörös" + +#: fdmprinter.def.json +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Kúpszög" + +#: fdmprinter.def.json +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Kúptámasz minimális szélesség" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Kitöltő vonalak csatlakozása" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Kitöltési sokszögek csatlakozása" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Támasz vonalak összekötése" + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Cikcakk támasz összekötése" + +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Alsó/felső poligonok kapcsolása" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Kösse össze a cikcakk támasz vonalait. Ez növeli a támasz szerkezeti erősségét." + +#: fdmprinter.def.json +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 "Kösse össze a támaszvonalak végeit. Ha ez engedélyezve van, akkor a támaszok erősebbé válhatnak, csökkenthető az alulextrudálás, viszont ez több anyagba kerül." + +#: fdmprinter.def.json +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 "Összeköti a kitöltő vonalakat ott, ahol a mintázat megfelelő egy olyan vonallal,ami a belső fal alakját követi. Így jobban fog kapcsolódni a kitöltés a falakhoz, és csükkenthető az a negatív hatás, hogy kitöltési vonalak torzítják a külső felületet. Ha ezt a beállítást nem használjuk, akkor csökken a felhasznált anyagmennyiség." + +#: fdmprinter.def.json +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 "Az alsó/felső rétegpályákat kapcsolja össze, ahol egymás mellett futnak.Ha ezt a beállítást engedélyezzük a körkörös mintázatnál, jelentősen csökkenthetjük a fej átemelési időt, mivel a kapcsolódások félúton terténhetnek meg. Ez azonban ronthatja a felső felület minőségét." + +#: fdmprinter.def.json +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 "Ellenőrzi, hogy a modell körvonalai mennyire befolyásolják a varrat helyzetét.Ha azt választjuk, hogy nincs, akkor a sarkok nincsenek hatással a varrás helyzetére.A varrat rejtés esetén a varrás legvalószínűbb helyzete, valamelyik belső sarokban lesz.A külső varrat esetén a megjelenés valószínűleg egy külső sarkon lesz.A külső/belső varrat esetén a varrat vagy külső, vagy belső sarokban lesz.Az okos rejtés esetén ugyanaz, mint a külső/belső varrat, de törekszik arra, hogy a varrat inkább a belső sarkokon legyen, rejtve." + +#: fdmprinter.def.json +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 "Átkonvertálja az összes kitöltési sort, erre az értékre.Az így keletkező extra vonalak nem fogják egymást keresztezni, hanem elkerülik egymást. Ez növelni fogja a kitöltés erősségét, de a nyomtatási idő, és az anyagköltség is nőni fog." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Visszahűlési sebesség" + +#: fdmprinter.def.json +msgctxt "cooling description" +msgid "Cooling" +msgstr "Hűtés" + +#: fdmprinter.def.json +msgctxt "cooling label" +msgid "Cooling" +msgstr "Hűtés" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Kereszt" + +#: fdmprinter.def.json +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Kereszt" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "3D kereszt" + +#: fdmprinter.def.json +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Kereszt 3D üreg méret" + +#: fdmprinter.def.json +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Kereszt támasz kitöltési kép" + +#: fdmprinter.def.json +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Kereszt kitöltési kép" + +#: fdmprinter.def.json +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Kristályos anyag" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Kocka" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Osztott kocka" + +#: fdmprinter.def.json +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Osztott kocka héj" + +#: fdmprinter.def.json +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Háló vágás" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "A nyomtatószál adagolást (mm3/mp), és a hőmérsékletet (Celsius) összekötő adatok." + +#: fdmprinter.def.json +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Alapértelmezett gyorsulás" + +#: fdmprinter.def.json +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Alapértelmezett tárgyasztal hőmérséklet" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Alapértelmezett E löket" + +#: fdmprinter.def.json +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Alapértelmezett nyomtatási hőmérséklet" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Alapértelmezett X-Y löket" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Alapértelmezett Z löket" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "Alapértelmezett löket a vízszintes síkon történő mozgáskor." + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Alapértelmezett löket a Z tengelyen." + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Alapértelmezett extrudálási löket." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Átmérő" + +#: fdmprinter.def.json +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 "Itt különböző lehetőségek közül választhatunk, amelyek elősegítik a nyomtatvány tárgyasztalhoz való tapadását. A peremek egyrétegű sík felületek, amik a modell alapja körül nyomtatódnak úgy, hogy megakadályozzák a deformációt.A tutaj egy vastag rácsot hoz létre egy fedéllel a modell alatt.A szoknya egy vonal, ami a modell körül van nyomtatva, de az a modellhez ne kapcsolódik." + +#: fdmprinter.def.json +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Tiltott területek" + +#: fdmprinter.def.json +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 nyomtatott kitöltő vonalak távolsága. Ez egy számított érték, amit a kitöltési sűrűségből, és a kitöltő vonal szélességéből számol ki." + +#: fdmprinter.def.json +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 "A támaszok belső szerkezetében lévő vonalak távolsága az első rétegben.Ez egy számított érték a támasz sűrűségből." + +#: fdmprinter.def.json +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 támasz interfész aljzatvonalainak távolsága. Ezt a beállítást a támasz aljának a sűrűségét számítja ki, de külön is megadható." + +#: fdmprinter.def.json +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 támasz interfész tetővonalainak távolsága. Ezt a beállítást a támasz fedél sűrűségét számítja ki, de külön is megadható." + +#: fdmprinter.def.json +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "A támaszok belső szerkezetében lévő vonalak távolsága.Ez egy számított érték a támasz sűrűségből." + +#: fdmprinter.def.json +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support." +msgstr "A támasz alja és az alatta lévő nyomtatvány közötti távolság." + +#: fdmprinter.def.json +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "A támasz teteje és a fölé épített nyomtatvány közötti távolság." + +#: fdmprinter.def.json +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. This value is rounded up to a multiple of the layer height." +msgstr "A támaszok struktúrájának alsó/felső részének távolsága a nyomtatott tárgytól.Ez a rés szabadon marad, így segíti a támaszok eltávolítását a nyomtatás után.Ez az érték a rétegmagasság többszörösére lesz kerekítve." + +#: fdmprinter.def.json +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 kitöltési sor nyomtatása után egy extra törlőmozgást végez a fej.Ez a távolság határozza meg a törlési mozgás távolságát.Az opció hasonlít a szimpla kitöltés átfedéséhez, azonban itt a mozgás extrudálás nélkül történik, és csak a kitöltő sor egyik végén." + +#: fdmprinter.def.json +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 külső fal nyomtatása után, beilleszt egy fej átemelést, a meghatározott távolságra. Ez segít elrejteni a Z varratot." + +#: fdmprinter.def.json +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "A modell és a huzatpajzs közötti távolság X/Y irányban." + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "A pajzs távolsága a nyomtatványtól X/Y irányban értve." + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "A támasz szerkezete és a nyomtatvány közötti távolság X/Y irányban." + +#: fdmprinter.def.json +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Az ettől kisebb területekre nem generál kitöltést." + +#: fdmprinter.def.json +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Huzatpajzs magasság" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Huzatpajzs korlátozás" + +#: fdmprinter.def.json +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Huzatpajzs X/Y távolság" + +#: fdmprinter.def.json +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Támaszháló ledobás" + +#: fdmprinter.def.json +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Duál extrudálás" + +#: fdmprinter.def.json +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Elliptikus (kör)" + +#: fdmprinter.def.json +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Gyorsulás vezérlés engedélyezés" + +#: fdmprinter.def.json +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Híd beállítások engedélyezése" + +#: fdmprinter.def.json +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Kifutás engedélyezés" + +#: fdmprinter.def.json +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Kúpos támasz engedélyezése" + +#: fdmprinter.def.json +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Huzatpajzs engedélyezése" + +#: fdmprinter.def.json +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Vasalás engedélyezés" + +#: fdmprinter.def.json +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Löket vezérlés engedélyezése" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "A fúvóka hőmérséklet-szabályozásának engedélyezése" + +#: fdmprinter.def.json +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Szivárgáspajzs engedélyezés" + +#: fdmprinter.def.json +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Előnyomás engedélyezése" + +#: fdmprinter.def.json +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Előtorony engedélyezése" + +#: fdmprinter.def.json +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Tárgyhűtés engedélyezés" + +#: fdmprinter.def.json +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Visszahúzás engedélyezés" + +#: fdmprinter.def.json +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Támasz perem engedélyezése" + +#: fdmprinter.def.json +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Alsó interfész engedélyezés" + +#: fdmprinter.def.json +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Támasz interfész engedélyezés" + +#: fdmprinter.def.json +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Felső interfész engedélyezés" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "" + +#: fdmprinter.def.json +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Engedéylezi a nyomtatófej X és Y tengelyen való löketének (sebesség) változásának vezérlését. Ha a löketet növeljük, az csökkenti a nyomtatási időt a minőség terhére." + +#: fdmprinter.def.json +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 "A nyomtatófej mozgási gyorsulás szabályzás engedélyezése. Ha növeljük a gyorsulást, csökken a nyomtatási idő, viszont a nyomtatás minősége is." + +#: fdmprinter.def.json +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 "Engedélyezi a tárgyhűtést nyomtatás közben. A hűtés javíthatja a rétegek nyomtatási minőségét, főleg a kicsi rétegeknél, és az áthidaló, túlnyúló részeknél." + +#: fdmprinter.def.json +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "Záró G-kód" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "" + +#: fdmprinter.def.json +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 "Kényszerítő Perem nyomtatás a tárgy körül, még azokon a helyeken is, ahol egyébként támaszt kellene nyomtatni. Ezeken a helyeken a támasz első rétege helyett a perem lesz nyomtatva." + +#: fdmprinter.def.json +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Mindenhol" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Kizáró" + +#: fdmprinter.def.json +msgctxt "experimental label" +msgid "Experimental" +msgstr "Kísérleti funkciók" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Külső varrat" + +#: fdmprinter.def.json +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Kiterjedt felfűzés" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Extra kitöltési falszám" + +#: fdmprinter.def.json +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Extra felületi falszám" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Extruder kezdő X helyzet" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Extruder kezdő Y helyzet" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Kezdő Z pozíció" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Adagolási visszahűlés sebesség kompenzáció" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Hűtés sebesség" + +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Hűtés felülbírálás" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Ettől a hosszúságtól rövidebb részek körvonalait a Kis funkció sebességgel kerülnek kinyomtatásra." + +#: fdmprinter.def.json +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Az adagolókerék átmérője" + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Befejező nyomtatási hőmérséklet" + +#: fdmprinter.def.json +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Firmware visszahúzás" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Első réteg támasz extruder" + +#: fdmprinter.def.json +msgctxt "material_flow label" +msgid "Flow" +msgstr "Áramlás" + +#: fdmprinter.def.json +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "" + +#: fdmprinter.def.json +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "" + +#: fdmprinter.def.json +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Adagolás hőmérséklet diagram" + +#: fdmprinter.def.json +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 "Az első réteg áramlási kompenzációja: az eredeti rétegre extrudált anyag mennyiségét megszorozzuk ezzel az értékkel." + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Áramláskompenzálás a kitöltés nyomtatásánál." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Áramláskompenzáció az előtorony vonalakon." + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Áramláskompenzálás a Szoknya/perem nyomtatásánál." + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Áramláskompenzálás a támasz alsó rétegének nyomtatásánál." + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Áramláskompenzálás a támasz felső rétegének nyomtatásánál." + +#: fdmprinter.def.json +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Áramláskompenzálás a támasz nyomtatásánál." + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Áramláskompenzálás a külső falvonalak nyomtatásánál." + +#: fdmprinter.def.json +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Áramláskompenzálás az alsó/felső rétegek nyomtatásánál." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Áramláskompnezáció minden falvonalon, kivéve a legkülsőbb falnál." + +#: fdmprinter.def.json +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Áramláskompenzálás a fal vonalak nyomtatásánál." + +#: fdmprinter.def.json +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Áramláskompenzáció: az extrudált anyag mennyiségét megszorozzuk ezzel az értékkel." + +#: fdmprinter.def.json +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Előre" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Balra előre" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Jobbra előre" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Teljes" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Rücskös felszín" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Rücsök sűrűség" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Rücsök távolság" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Rücsök vastagság" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "G-kód típus" + +#: fdmprinter.def.json +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "" +"Olyan g-kód parancsok, amiket a nyomtatás legvégén kell végrehajtani \n" +" -al elválasztva." + +#: fdmprinter.def.json +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" +"Olyan g-kód parancsok, amiket a nyomtatás legelején kell végrehajtani \n" +" -al elválasztva." + +#: fdmprinter.def.json +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "" + +#: fdmprinter.def.json +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Állványzat magasság" + +#: fdmprinter.def.json +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Támaszték készítés" + +#: fdmprinter.def.json +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 "Generáljon egy peremet az első rétegben a támaszok kitöltéseiben. Ezt a karimát a támaszok alá, és nem körülötte nyomtatják. Ennek a beállításnak a bekapcsolása növelhetjük a támaszok tapadását az tálcához." + +#: fdmprinter.def.json +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 "Egy sűrű felületet generál a modell és a támasz közé. Ez egy héjat hoz létre a támasz tetején, amelyre a modell jól nyomtatódik, vagy az alján, ahová a támasz épülni fog." + +#: fdmprinter.def.json +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 "Egy sűrű felület generálása a támasz aljára és a modell között. Ez egy átmeneti csatlakozási felületet fog teremteni a modell és a támasz közé." + +#: fdmprinter.def.json +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 "Egy sűrű felület generálása a támasz teteje és a modell között. Ez egy átmeneti csatlakozási felületet fog teremteni a modell és a támasz közé." + +#: fdmprinter.def.json +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 "Olyan szerkezeti részeket készít a nyomtatványhoz, ami segít alátámasztani azokat a részeket, amik a levegőben lógnak, vagy kinyúlnak a tárgyból.E nélkül ezeket a részeket nem lehet kinyomtatni, mivel nincs mire építenie az adott részt a nyomtatónak." + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Üveg" + +#: fdmprinter.def.json +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 "A felső felületeken a fej mégegyszer átmegy, miközben egy nagyon kis mennyiségű alapanyagot extrudál. Ennek a célja az, hogy a tárgy teteje még jobban összeolvad, simábbá válik. A fúvóka kamrában a nyomás magasan van tartva, így a felszínen lévő gyűrődéseket anyaggal tölti fel." + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Fokozatos kitöltési lépésmagasság" + +#: fdmprinter.def.json +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Fokozatos kitöltési lépések" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Fokozatos támaszkitöltési lépésmagasság" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Fokozatos támasz kitöltési lépések" + +#: fdmprinter.def.json +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Rács" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Rács" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Rács" + +#: fdmprinter.def.json +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Rács" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Rács" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +#: fdmprinter.def.json +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" + +#: fdmprinter.def.json +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Van építési tér hőmérséklet szabályzás" + +#: fdmprinter.def.json +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Van tárgyasztal fűtés" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Felfűtési sebesség" + +#: fdmprinter.def.json +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Olvadókamra hossza" + +#: fdmprinter.def.json +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "A huzatpajzs magassága. Csak eddig a magasságig fogja a pajzsot nyomtatni." + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Varrat rejtés" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Külső, belső varrat" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "" + +#: fdmprinter.def.json +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 "Az ennél kisebb átmérőjű lyukakat és részek körvonalait a Kis funkciósebesség használatával nyomtatják ki." + +#: fdmprinter.def.json +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Vízszintes kiegészítés" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance description" +msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." +msgstr "Azt adja meg, hogy milyen messze kell lenniük az ágaknak, mikor a modellt érintik. Ha a távolság kicsi, a ta támasza több ponton is megérinti a modellt, ami jobb alátámasztást ad, de nehezebb eltávolítani majd a támaszt utólag." + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Mennyire húzható ki a szál melegítés közben, szakadás nélkül." + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "Mennyire kell visszahúzni a szálat, hogy az anyagszivárgás leálljon." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "Mennyire kell visszahúzni a nyomtatószálat, hogy az tisztán megszakadjon." + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "Milyen gyorsan kell visszahúzni a szálat, mielőtt az megszakadna." + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Milyen gyorsan kell visszahúzni a szálat, hogy meggátoljuk a szivárgást." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "" + +#: fdmprinter.def.json +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 "Hány lépést kell a motornak megtenni ahhoz, hogy 1 mm mozgás történjen X irányban." + +#: fdmprinter.def.json +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 "Hány lépést kell a motornak megtenni ahhoz, hogy 1 mm mozgás történjen Y irányban." + +#: fdmprinter.def.json +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 "Hány lépést kell a motornak megtenni ahhoz, hogy 1 mm mozgás történjen Z irányban." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Ha a felületi régió területe kevesebb, mint ez a megadott százalékos érték, nyomtassa a híd beállításokkal, egyébként normál felületi beállításokkal nyomtasson." + +#: fdmprinter.def.json +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 "Ha engedélyezve van ez az opció, akkor a híd második és harmadik rétegét is a híd beállításával nyomtatja ki. Egyébként ezek a rétgeke már a normál beállítással nyomtatódnának ki." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Ha az extra margót engedélyezzük, akkor a modell alá nyomtatott tutajt ki vogja egészíteni, és bővíteni kifelé irányban. Ez egy erősebb tutajt fog létrehozni, viszont több alapanyagot igényel, és csökkenti a használható nyomtatási területet." + +#: fdmprinter.def.json +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 "Figyelmen kívül hagyja a hálóban lévő, átfedő térfogatokból származó belső geometriai alakzatokat, és a szintet egyben nyomtatja ki. Ez a nem kívánt belső üregek eltűnését eredményezheti." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Tartalmazza a tárgyasztal hőmérsékleteket" + +#: fdmprinter.def.json +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Tartalmazza az anyaghőmérsékleteket" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Befoglaló" + +#: fdmprinter.def.json +msgctxt "infill description" +msgid "Infill" +msgstr "Kitöltés" + +#: fdmprinter.def.json +msgctxt "infill label" +msgid "Infill" +msgstr "Kitöltés" + +#: fdmprinter.def.json +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Kitöltés gyorsulás" + +#: fdmprinter.def.json +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Kitöltés a falak előtt" + +#: fdmprinter.def.json +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Kitöltési sűrűség" + +#: fdmprinter.def.json +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Kitöltő extruder" + +#: fdmprinter.def.json +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Kitöltési áramlás" + +#: fdmprinter.def.json +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Kitöltés löket" + +#: fdmprinter.def.json +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Kitöltő réteg vastagság" + +#: fdmprinter.def.json +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Kitöltési vonal irányok" + +#: fdmprinter.def.json +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Kitöltő vonal távolság" + +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Kitöltési sor szorzó" + +#: fdmprinter.def.json +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Kitöltési vonalszélesség" + +#: fdmprinter.def.json +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Kitöltés háló" + +#: fdmprinter.def.json +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Kitöltés túlnyúlási szög" + +#: fdmprinter.def.json +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Kitöltési átfedés" + +#: fdmprinter.def.json +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Kitöltési átfedés aránya" + +#: fdmprinter.def.json +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Kitöltési Minta" + +#: fdmprinter.def.json +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Kitöltési sebesség" + +#: fdmprinter.def.json +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Kitöltés támaszként" + +#: fdmprinter.def.json +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Kitöltési utazás optimalizáció" + +#: fdmprinter.def.json +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Kitöltés törlési távolság" + +#: fdmprinter.def.json +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Kitöltés X eltolás" + +#: fdmprinter.def.json +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Kitöltés Y eltolás" + +#: fdmprinter.def.json +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Kezdő hűtési sebesség" + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Kezdő réteg gyorsulás" + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Kezdő réteg áramlás" + +#: fdmprinter.def.json +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Kezdő réteg magasság" + +#: fdmprinter.def.json +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Kezdő réteg vízszintes kiegészítése" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Kezdő réteg löket" + +#: fdmprinter.def.json +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Kezdő réteg vonalszélesség" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Kezdő réteg nyomtatási gyorsulás" + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Kezdő réteg nyomtatási löket" + +#: fdmprinter.def.json +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Kezdő réteg nyomtatási sebessége" + +#: fdmprinter.def.json +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Kezdő réteg sebessége" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Kezdő réteg támasz vonal távolság" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Kezdő réteg utazási gyorsulás" + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Kezdő réteg utazás löket" + +#: fdmprinter.def.json +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Kezdő réteg utazási sebessége" + +#: fdmprinter.def.json +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Első réteg Z átfedés" + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Kezdeti nyomtatási hőmérséklet" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Belső fal gyorsulás" + +#: fdmprinter.def.json +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Belső fali extruder" + +#: fdmprinter.def.json +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Belső fal löket" + +#: fdmprinter.def.json +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Belső fal sebesség" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Belső fal)akÖ áramlása" + +#: fdmprinter.def.json +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Belső fal(-ak) vonalszélessége" + +#: fdmprinter.def.json +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 "Eltolás a külső fal útvonalára. Ha a külső fal kisebb, mint a fúvóka, és a belső falak után nyomtatódik, akkor ezt az eltolást használjuk, hogy a fúvóka furata a belső falakon nyúljon túl, a modell külseje helyett." + +#: fdmprinter.def.json +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "" + +#: fdmprinter.def.json +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "" + +#: fdmprinter.def.json +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "" + +#: fdmprinter.def.json +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Vasalás csak a legfelső rétegen" + +#: fdmprinter.def.json +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Vasalási gyorsulás" + +#: fdmprinter.def.json +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Vasalási adagolás" + +#: fdmprinter.def.json +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Vasalás behúzás" + +#: fdmprinter.def.json +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Vasalási löket" + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Vasalási távolság" + +#: fdmprinter.def.json +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Vasalási minta" + +#: fdmprinter.def.json +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Vasalási sebesség" + +#: fdmprinter.def.json +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Origó a középpontban" + +#: fdmprinter.def.json +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 "Az anyag olyan típusú-e, ami melegítve tiszta módon, kikristályosodva bomlik le, vagy olyan, ami nem kristályos, összefonódott polimer láncokat hoz létre?" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "" + +#: fdmprinter.def.json +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Nyílt poligonok megtartása" + +#: fdmprinter.def.json +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Réteg magasság" + +#: fdmprinter.def.json +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "Réteg X kezdőpont" + +#: fdmprinter.def.json +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Réteg Y kezdőpont" + +#: fdmprinter.def.json +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 "Az alap tutajréteg rétegvastagsága. Ennek vastag rétegnek kell lennie, mert erősen tapadnia kell a nyomtató tárgyasztalához." + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "A középső tutajréteg rétegvastagsága." + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Azoknak a tutajrétegeknek a vastagsága, ami a tutaj tetején van." + +#: fdmprinter.def.json +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 "A támaszvonalak között ennyi mm -ként hagy el egy vonalat, a könnyebb törhetőség miatt." + +#: fdmprinter.def.json +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Balra" + +#: fdmprinter.def.json +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Fej emelés" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "" + +#: fdmprinter.def.json +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 "Korlátozza ennek a hálónak a térfogatát más hálókon belül. Ezt fel tudjuk használni egy háló nyomtatásának bizonyos területeire, különböző beállításokkal, vagy akát teljesen eltérő extruderrel." + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Részleges" + +#: fdmprinter.def.json +msgctxt "line_width label" +msgid "Line Width" +msgstr "Vonalvastagság" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Vonalak" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Vonalak" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Vonalak" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Vonalak" + +#: fdmprinter.def.json +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Vonalak" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Vonalak" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Vonalas" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Vonalas" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +#: fdmprinter.def.json +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Gép" + +#: fdmprinter.def.json +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Nyomtatási mélység" + +#: fdmprinter.def.json +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "A nyomtatófej és ventillátor ábrázolása" + +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Nyomtatási magasság" + +#: fdmprinter.def.json +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Géptípus" + +#: fdmprinter.def.json +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Nyomtatási szélesség" + +#: fdmprinter.def.json +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Gép specifikus beállítások" + +#: fdmprinter.def.json +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Nyomtatható túlnyúlások" + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Egyesíti az egymással érintkező hálórészeket. Ez jobb kötést hoz létre a testben." + +#: fdmprinter.def.json +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "A támaszok alja kisebb méretű lesz, mint az alátámasztandó rész." + +#: fdmprinter.def.json +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 "Készítsen mindenütt támasztást a támaszháló alatt úgy, hogy ne lehessen alátámasztatlan kinyúlás a támaszhálóban." + +#: fdmprinter.def.json +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 "A nyomtatófej kezdeti pozíciója legyen abszolút, és ne a fej utolsó ismert helyzetéhez viszonyítson." + +#: fdmprinter.def.json +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 "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." + +#: fdmprinter.def.json +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Térfogat)" + +#: fdmprinter.def.json +msgctxt "material description" +msgid "Material" +msgstr "Alapanyag" + +#: fdmprinter.def.json +msgctxt "material label" +msgid "Material" +msgstr "Alapanyag" + +#: fdmprinter.def.json +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "Alapanyag GUID" + +#: fdmprinter.def.json +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Anyagmennyiség törlések között" + +#: fdmprinter.def.json +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Maximum fésű táv visszahúzás nélkül" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Maximális X gyorsulás" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Maximális Y gyorsulás" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Maximális Z gyorsulás" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Maximális eltérés" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Maximális hűtési sebesség" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Maximális E gyorsulás" + +#: fdmprinter.def.json +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Maximális túlnyúlási szög" + +#: fdmprinter.def.json +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Maximális felbontás" + +#: fdmprinter.def.json +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Visszahúzások maximális száma" + +#: fdmprinter.def.json +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "A kéreg bővítés maximális szöge" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Maximum X sebesség" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Maximum Y sebesség" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Maximum Z sebesség" + +#: fdmprinter.def.json +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Maximális toronnyal támasztott átmérő" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Maximális utazási felbontás" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "Maximális gyorsulás az X tengelyen" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Maximális gyorsulás az Y tengelyen." + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Maximális gyorsulás a Z tengelyen." + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Maximális extrudálási gyorsulás." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Annak a kis területnek a legnagyobb átmérője, amit speciális támasz toronnyalkell alátámasztani." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Átfedések egyesítése" + +#: fdmprinter.def.json +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Háló korrekciók" #: fdmprinter.def.json msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "Háló X pozíció" -#: fdmprinter.def.json -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Az objektumra vonatkozó eltolás mértéke X irányban." - #: fdmprinter.def.json msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "Háló Y pozíció" -#: fdmprinter.def.json -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Az objektumra vonatkozó eltolás mértéke Y irányban." - #: fdmprinter.def.json msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "Háló Z pozíció" #: fdmprinter.def.json -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 "Az objektumra alkalmazott eltolás z irányban. Ezzel végrehajthatja azt, amit régen 'Object Sink' -nek hívtak." +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "" #: fdmprinter.def.json msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "Háló elforgatás mátrix" +#: fdmprinter.def.json +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Középső" + +#: fdmprinter.def.json +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Minimális formaszélesség" + +#: fdmprinter.def.json +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Minimális készenléti hőmérséklet idő" + +#: fdmprinter.def.json +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Minimális híd falhossz" + +#: fdmprinter.def.json +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "" + +#: fdmprinter.def.json +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Minimális extrudálási távolság ablak" + +#: fdmprinter.def.json +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Minimális sebesség" + +#: fdmprinter.def.json +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Minimális kitöltési terület" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Minimális rétegidő" + +#: fdmprinter.def.json +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Minimális sokszög kerület" + +#: fdmprinter.def.json +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "A minimális kéregszélesség kibővítéshez" + +#: fdmprinter.def.json +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Minimális sebesség" + +#: fdmprinter.def.json +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Minimális támasz terület" + +#: fdmprinter.def.json +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Minimális alsó interfész terület" + +#: fdmprinter.def.json +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Minimális interfész terület" + +#: fdmprinter.def.json +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Minimális felső interfész terület" + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Minimális támasz X/Y távolság" + +#: fdmprinter.def.json +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "" + +#: fdmprinter.def.json +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Minimális mennyiség a kifutás előtt" + +#: fdmprinter.def.json +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "A támasz poligonok minimális területe. Ha ettől kisebb a terület, ottnem lesz támasz generálva." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "A kúptámasz alapjának minimális mérete. Ha nagyon kicsi ez a szélesség, akkor a támasz instabil lehet." + +#: fdmprinter.def.json +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Öntőforma" + +#: fdmprinter.def.json +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Forma szög" + +#: fdmprinter.def.json +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Forma fedél magasság" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Felület nélküli Z hézag" + +#: fdmprinter.def.json +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "" + +#: fdmprinter.def.json +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Nincs" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Nincs" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normál" + +#: fdmprinter.def.json +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "" + +#: fdmprinter.def.json +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 "A Cura általában megkísérli összefűzni a kis lyukakat a hálóban, és eltávolítja ezeket egy nagy üregben. Ennek az opciónak a bekapcsolásával megtarthatók azok a részek, amiket nem lehet felfűzni. Ezt a lehetőséget végső lehetőségként tartsuk fent, és csak akkor használjuk, ha nem tudjuk más módon létrehozni a megfelelő G-kódot." + +#: fdmprinter.def.json +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Felszínen nem" + +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Csúcsszög" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Fúvóka átmérő" + +#: fdmprinter.def.json +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Fúvóka tiltott területek" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Fúvóka ID" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Fúvóka hossza" + +#: fdmprinter.def.json +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Fúvókaváltási extra visszatolt anyag" + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Fúvókaváltás visszatolási sebesség" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Fúvókaváltás visszahúzási sebesség" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Fúvókaváltás visszahúzási távolság" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Fúvókaváltás visszahúzási sebesség" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Extruderek száma" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Engedélyezett extruderek száma" + +#: fdmprinter.def.json +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Lassabb rétegek száma" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Az engedélyezett extruder szerelvények száma. Ez egy automatikus beállítás a szoftverből" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Az extruder szerelvények száma. Az extruder szerelvény áll a továbbító egységből, a nyomtatófejből, és bowdenes gépeken a PTFE csőből." + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "A törlési mozgás ismétlésének száma, háynszor keresztezze a fej a kefét." + +#: fdmprinter.def.json +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 "Ez egy olyan lépésszám, ami azt határozza meg, hogy hányszor csökkenti a kitöltési sűrűséget a rétegek emelkedése során addig, amíg eléri a kitöltési sűrűség felét. Azokon a területeken, ahol a fedő rétegek közelébe kerül a kitöltés, a sűrűség újra növekedni fog." + +#: fdmprinter.def.json +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 "Hány esetben csökkenti felére a támasz kitörlésének a sűrűségét a felére, ahogy építi a támaszt. Azokon a területeken, ahol a felső felületekhez közelebb kerül, ott a sűrűség nőni fog, egészen a támasz kitöltési sűrűségig." + +#: fdmprinter.def.json +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Oktett" + +#: fdmprinter.def.json +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Ki" + +#: fdmprinter.def.json +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Az objektumra vonatkozó eltolás mértéke X irányban." + +#: fdmprinter.def.json +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Az objektumra vonatkozó eltolás mértéke Y irányban." + +#: fdmprinter.def.json +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 "Az objektumra alkalmazott eltolás z irányban. Ezzel végrehajthatja azt, amit régen 'Object Sink' -nek hívtak." + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Extruder eltolás" + +#: fdmprinter.def.json +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Egyesével" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "A vasalást csak a legfelső rétegen végzi el. Ha az alacsonyabb szinteken lévőfelső felületeken nem szükséges a sima felület, akkor ezzel időt takaríthatunk meg." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Szivárgáspajzs szöge" + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Szivárgáspajzs távolság" + +#: fdmprinter.def.json +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Optimalizálás a falnyomtatási sorrendre" + +#: fdmprinter.def.json +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 "Optimalizálja a falak nyomtatásának sorrendjét, hogy csökkentse a visszahúzások számát és a megtett távolságot. A legtöbb alkatrész számára előnyös lehet ennek engedélyezése, de bizonyos esetekben valójában hosszabb is lehet.Ezért kérjük, hasonlítsa össze a nyomtatási idő becsléseit az optimalizálással és anélkül.Az első réteg nincs optimalizálva, ha a széleket építõlap-tapadási típusnak választják." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Külső fúvóka átmérő" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Külső fal gyorsulás" + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Külső fali extruder" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Külső fal áramlás" + +#: fdmprinter.def.json +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Külső fal eltolás" + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Külsö fal löket" + +#: fdmprinter.def.json +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Külső falvonal szélessége" + +#: fdmprinter.def.json +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Külső fal sebesség" + +#: fdmprinter.def.json +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Külső fal tisztítási távolság" + +#: fdmprinter.def.json +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Falkinyúlások szöge" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Falkinyúlás sebessége" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Szünet a visszahúzás után." + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "A hűtőventillátor sebességének százalékos értéke hídfalak, és a felszíni rétegek nyomtatásakor." + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "A második hídréteg nyomtatásakor használt ventillátor sebesség százalékos értékben megadva." + +#: fdmprinter.def.json +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 "A ventillátorok % -os sebesség aránya, amit a támaszok feletti külső, kéregfelületeken kell használni. Ha a ventillátor sebesség itt nagyobb, akkor a támasz könnyebben eltávolítható." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Előtorony gyorsulás" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Brim" +msgstr "Előtorony perem" + +#: fdmprinter.def.json +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Elő torony áramlás" + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Előtorony löket" + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Előtorony vonalszélesség" + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Előtorony minimális térfogat" + +#: fdmprinter.def.json +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Előtorony mérete" + +#: fdmprinter.def.json +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Előtorony sebesség" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Előtorony X helyzet" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Előtorony Y helyzet" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +msgstr "Előfordulhat, hogy az előtornyokhoz szükség van a peremek által biztosított extra tapadásra, még akkor is, ha a modell nem rendelkezik peremmel. Jelenleg nem használható a tutaj 'Raft' mint tapadástípus ehhez a művelethez." + +#: fdmprinter.def.json +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Nyomtatási gyorsulás" + +#: fdmprinter.def.json +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Nyomtatás löket" + +#: fdmprinter.def.json +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Nyomtatási sorrend" + +#: fdmprinter.def.json +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Nyomtatási sebesség" + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Vékony falak nyomtatása" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Nyomtassa a modelt úgy, mint ha egy öntőforma lenne. Ezzel elérhetjük, hogy olyan nyomtatványt kapunk, amit ha kiöntünk, akkor a tárgyasztalon lévő modelt kapjuk vissza." + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Nyomtassa a modell egyes részeit vékonyabbra a vízszintes síkon, mint a fúvóka mérete." + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Ha használunk második hídréteget, akkor az ezzel a sebességgel fog nyomtatódni." + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Ha használunk harmadik hídréteget, akkor az ezzel a sebességgel fog nyomtatódni." + +#: fdmprinter.def.json +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 "Az adott rétegnél a kitöltést nyomtatjuk a falak nyomtatása előtt.A falak előzetes nyomtatása pontosabb falakat eredményezhet, azonban az átfedések nyomtatása gyengébb lehet. A kitöltés elsőnek nyomtatása szilárdabb falakhoz vezethet, de a feltöltési minta néha megjelenhet a felületen." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Nyomtatási hőmérséklet" + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Kezdő réteg nyomtatási hőmérséklete" + +#: fdmprinter.def.json +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "" + +#: fdmprinter.def.json +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 "Minden rétegben egy további extra falat nyomtat. Ez segít a kitöltésnek hozzáépülni a falhoz, ezáltal erősebb lesz a tárgy szerkezete." + +#: fdmprinter.def.json +msgctxt "resolution label" +msgid "Quality" +msgstr "Minőség" + +#: fdmprinter.def.json +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Negyed kocka" + +#: fdmprinter.def.json +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Tutaj" + +#: fdmprinter.def.json +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Tutaj légrés" + +#: fdmprinter.def.json +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "" + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Tutajalap hűtés" + +#: fdmprinter.def.json +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Tutajalap-vonalak közötti távolság" + +#: fdmprinter.def.json +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Tutajalap vonal szélessége" + +#: fdmprinter.def.json +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Tutajalap gyorsulás" + +#: fdmprinter.def.json +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Tutajalap löket" + +#: fdmprinter.def.json +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Tutajalap nyomtatási sebessége" + +#: fdmprinter.def.json +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Tutajalap vastagsága" + +#: fdmprinter.def.json +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Tutaj extra margó" + +#: fdmprinter.def.json +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Tutaj hűtés" + +#: fdmprinter.def.json +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "" + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Tutajközép hűtés" + +#: fdmprinter.def.json +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Tutaj középső vonal szélessége" + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Tutajközép gyorsulás" + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Tutajközép löket" + +#: fdmprinter.def.json +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Tutajközép nyomtatási sebesség" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Tutaj középső távolsága" + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Tutaj közép vastagsága" + +#: fdmprinter.def.json +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Tutaj gyorsulás" + +#: fdmprinter.def.json +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Tutaj löket" + +#: fdmprinter.def.json +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Tutaj nyomtatási sebesség" + +#: fdmprinter.def.json +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Tutaj simítás" + +#: fdmprinter.def.json +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "" + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Tutajfedél hűtés" + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Felső tutaj rétegvastagság" + +#: fdmprinter.def.json +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Felső tutaj rétegek" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Tutaj felső vonalszélesség" + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Tutajfedél gyorsulás" + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Tutajfedél löket" + +#: fdmprinter.def.json +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Tutajfedél nyomtatási sebesség" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Tutaj felső távolsága" + +#: fdmprinter.def.json +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Véletlenszerű" + +#: fdmprinter.def.json +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Véletlenszerű kitöltés kezdés" + +#: fdmprinter.def.json +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 "Az adott rétegben, a kezdő kitöltési sorokat véletlenszerűen választja ki.Ezzel elkerülhető az, hogy a kitöltés az egyik helyen erősebb legyen, mint máshol, vagy éppen valahol gyengébb legyen a kelleténél a kitöltés." + +#: fdmprinter.def.json +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 "A külső fal nyomtatása során, véletlenszerűen beremeg a fej. Ennek hatására a külső fal mintázata elmosott, homályos lesz, elnyomja a mintázatot." + +#: fdmprinter.def.json +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Szögletes (négyszög)" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Normál hűtési sebesség" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Normál hűtési magasság" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Normál hűtési réteg" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Normál/Maximum ventillátor sebesség küszöb" + +#: fdmprinter.def.json +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Relatív extrudálás" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Üregek eltávolítása" + +#: fdmprinter.def.json +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Üres első rétegek eltávolítása" + +#: fdmprinter.def.json +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Keresztezések eltávolítása" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "" + +#: fdmprinter.def.json +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 "Azon területek eltávolítása, ahol a hálók keresztezik egymást. Ezt általában ott kell használni, ahol kettős objektumok átfedésben vannak egymással." + +#: fdmprinter.def.json +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 "Távolítsa el az üres rétegeket amik az első nyomtatott réteg alatt, ha vannak. Ennek a beállításnak a letiltása esetén az első rétegek üresek lehetnek, ha a Szelet-tolerancia beállítást Kizárólagos vagy Közepes értékre állítják." + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "" + +#: fdmprinter.def.json +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 "Eltávolítja a tárgyból az összes furatot, és üreget, s csak a külső geometriát tartja meg. Egyúttal figyelmen kívül hagyja a belső geometriát is.Nem fogja figyelmbe venni az alulról vagy felülről látható rétegeket sem." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +#: fdmprinter.def.json +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 "Lecseréli az alsó/felső felületi minta legkülsőbb falait koncentrikus vonalra.Egy vagy két vonal használata javítja a felső záró felületeket, ott, ahol még a kitöltés látható." + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution description" +msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." +msgstr "Felbontás az ütközések kiszámítására, annak érdekében, hogy elkerüljük a modellel való ütközést. Ha alacsonyabb a beállítás, az pontosabb fákat eredményez, amik kevésbé dőlnek el, de a szeletelési időt drámai módon megnöveli." + +#: fdmprinter.def.json +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Visszahúzás külső fal előtt" + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Visszahúzás a rétegváltásnál" + +#: fdmprinter.def.json +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "A nyomtatószálat visszahúzza, mikor a fúvóka átmozog egy nem-nyomtatott területen." + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "Visszahúzza a nyomtatószálat, amikor a fúvóka a következő rétegre vált." + +#: fdmprinter.def.json +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Visszahúzási távolság" + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Előtolási plussz anyagmennyiség" + +#: fdmprinter.def.json +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Minimum út visszahúzáshoz" + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Visszahúzás előtolási sebesség" + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Visszahúzás visszahúzási sebesség" + +#: fdmprinter.def.json +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Visszahúzási sebesség" + +#: fdmprinter.def.json +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Jobbra" + +#: fdmprinter.def.json +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Sarok varrat preferálás" + +#: fdmprinter.def.json +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 "Beállítja a huzatpajzs magasságát. Kiválasztható, hogy a modell teljes magasságában, vagy egy részleges magasságig épüljön a pajzs." + +#: fdmprinter.def.json +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "A több extrúderekkel rendelkező gépek nyomtatási beállításai." + +#: fdmprinter.def.json +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Beállítások, amelyeket csak akkor használunk, ha a CuraEngine nem hívható meg a Cura grafikus felületéről." + +#: fdmprinter.def.json +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Éles sarok" + +#: fdmprinter.def.json +msgctxt "shell description" +msgid "Shell" +msgstr "Héj" + +#: fdmprinter.def.json +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Legrövidebb" + +#: fdmprinter.def.json +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Mutasd a gép változatait" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "" + +#: fdmprinter.def.json +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Kéreg bővítési távolság" + +#: fdmprinter.def.json +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Kéreg átfedés" + +#: fdmprinter.def.json +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Felület átlapolás százaléka" + +#: fdmprinter.def.json +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Kéreg eltávolítás szélessége" + +#: fdmprinter.def.json +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 "Az ennél keskenyebb kéregfelületek nem bővülnek ki. Ezzel elkerülhető, hogy keskeny kéregfelületek kibővüljenek, amik akkor jönnek létre, mikor a modell külső felületének lejtése közel van a függőlegeshez." + +#: fdmprinter.def.json +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Ennyi kapcsolódó vonal után hagy ki egyet a törés könnyítése érdekében." + +#: fdmprinter.def.json +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 "A támasz nyomtatásakor néhány támaszbonal összeköttetés kihagy, így a szerkezet a végső eltávolításkor, ott konnyebben el fog törni. Ezt a beállítást a cikcakk támaszmintára tudjuk alkalmazni." + +#: fdmprinter.def.json +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Szoknya" + +#: fdmprinter.def.json +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Szoknya távolság" + +#: fdmprinter.def.json +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Szoknya vonalszám" + +#: fdmprinter.def.json +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Szoknya/perem gyorsulás" + +#: fdmprinter.def.json +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Szoknya/perem áramlás" + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Szoknya/perem löket" + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Szoknya/perem vonalszélesség" + +#: fdmprinter.def.json +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Szoknya/Perem minimális hossz" + +#: fdmprinter.def.json +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Szoknya/perem sebesség" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Szeletelési tűrés" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Kis funkció maximális hossza" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Kis funkció sebesség" + +#: fdmprinter.def.json +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Kis lyuk maximális mérete" + +#: fdmprinter.def.json +#, fuzzy +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Befejező nyomtatási hőmérséklet" + +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Okos rejtés" + +#: fdmprinter.def.json +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Sima, spirális kontúrok" + +#: fdmprinter.def.json +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 "A Z-varrat láthatóságának csökkentése érdekében simítsa meg a spirális kontúrokat (a Z-varratnak alig láthatónak kell lennie a nyomaton, de a rétegnézetben továbbra is látható lesz). Vegye figyelembe, hogy a simítás általában elmossa a finom felület részleteit." + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Valamennyi anyagveszteség léphet fel a fej üresben mozgatása során, ami az anyag csöppenéséből adódhat. Ezt a hiányt tudjuk itt tudunk kompenzálni." + +#: fdmprinter.def.json +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 "Valamennyi anyag elszivároghat a törlési művelet során, ami itt kompenzálható." + +#: fdmprinter.def.json +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Különleges módok" + +#: fdmprinter.def.json +msgctxt "speed description" +msgid "Speed" +msgstr "Sebesség" + +#: fdmprinter.def.json +msgctxt "speed label" +msgid "Speed" +msgstr "Sebesség" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Az emelési mozgáskor a Z tengely sebessége." + +#: fdmprinter.def.json +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Külső kontúr spiralizálása" + +#: fdmprinter.def.json +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 "A spirálizálás kiegyenlíti a külső él Z mozgását. Ez folyamatos Z növekedést eredményez a teljes nyomtatás során. Ez a szolgáltatás a szilárd modellt egyetlen falú, szilárd aljú nyomtatássá teszi. Ezt a funkciót csak akkor kell engedélyezni, ha minden réteg csak egyetlen részt tartalmaz." + +#: fdmprinter.def.json +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Készenléti hőmérséklet" + +#: fdmprinter.def.json +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "Induló g-kód" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Lépés per milliméter (E)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Lépés per milliméter (X)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Lépés per milliméter (Y)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Lépés per milliméter (Z)" + +#: fdmprinter.def.json +msgctxt "support description" +msgid "Support" +msgstr "Támaszték" + +#: fdmprinter.def.json +msgctxt "support label" +msgid "Support" +msgstr "Támaszték" + +#: fdmprinter.def.json +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Támaszték gyorsulás" + +#: fdmprinter.def.json +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Támasz alsó távolság" + +#: fdmprinter.def.json +#, fuzzy +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Támasz falak száma" + +#: fdmprinter.def.json +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Támasz perem vonalak száma" + +#: fdmprinter.def.json +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Támasz perem szélesség" + +#: fdmprinter.def.json +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Törésvonalak száma" + +#: fdmprinter.def.json +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Törés méret" + +#: fdmprinter.def.json +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Támasz sűrűség" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Támasz távolság elsődlegesség" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Támasz extrúder" + +#: fdmprinter.def.json +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Támasz alapzat gyorsulás" + +#: fdmprinter.def.json +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Alsó interfész sűrűség" + +#: fdmprinter.def.json +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Támasz fedél extruder" + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Támasz alsó áramlás" + +#: fdmprinter.def.json +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Interfészaljzat vízszintes bővítés" + +#: fdmprinter.def.json +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Támasz alapzat löket" + +#: fdmprinter.def.json +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Alsó interfész irány" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Alsó interfész vonal távolság" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Támasz padlóvonal szélesség" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Alsó interfész minta" + +#: fdmprinter.def.json +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Támasz alapzat sebesség" + +#: fdmprinter.def.json +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Alsó interfész vastagság" + +#: fdmprinter.def.json +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Támasz áramlás" + +#: fdmprinter.def.json +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Vízszintes támasz bővítés" + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Támasz kitöltés gyorsulás" + +#: fdmprinter.def.json +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Támasz kitöltés extruder" + +#: fdmprinter.def.json +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Támasz kitöltés löket" + +#: fdmprinter.def.json +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Támasz kitöltési rétegvastagság" + +#: fdmprinter.def.json +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Támasz kitöltés iránya" + +#: fdmprinter.def.json +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Támasz kitöltési sebesség" + +#: fdmprinter.def.json +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Támasz interfész gyorsulás" + +#: fdmprinter.def.json +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Interfész sűrűség" + +#: fdmprinter.def.json +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Támasz interfész extruder" + +#: fdmprinter.def.json +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Támasz interfész áramlás" + +#: fdmprinter.def.json +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Támasz interfész vízszintes bővítés" + +#: fdmprinter.def.json +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Támasz interfész löket" + +#: fdmprinter.def.json +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Támaszinterfész vonal irány" + +#: fdmprinter.def.json +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Támasz interfész vonalszélesség" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Interfész minta" + +#: fdmprinter.def.json +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Interfész felosztás" + +#: fdmprinter.def.json +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Támasz interfész sebesség" + +#: fdmprinter.def.json +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Interfész vastagság" + +#: fdmprinter.def.json +#, fuzzy +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Támasz falak száma" + +#: fdmprinter.def.json +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Támasz löket" + +#: fdmprinter.def.json +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Támasz kapcsolódási távolság" + +#: fdmprinter.def.json +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Támasz vonal távolság" + +#: fdmprinter.def.json +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Támasz vonalszélesség" + +#: fdmprinter.def.json +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Támasz háló" + +#: fdmprinter.def.json +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Támasz túlnyúlási szög" + +#: fdmprinter.def.json +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Támasz minta" + +#: fdmprinter.def.json +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Támasz elhelyezés" + +#: fdmprinter.def.json +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Támasz fedél gyorsulás" + +#: fdmprinter.def.json +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Felső interfész sűrűség" + +#: fdmprinter.def.json +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Támasz alapzat extruder" + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Támasz felső áramlás" + +#: fdmprinter.def.json +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Interfészfedél vízszintes bővítés" + +#: fdmprinter.def.json +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Támasz fedél löket" + +#: fdmprinter.def.json +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Felső interfész irány" + +#: fdmprinter.def.json +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Felső interfész vonal távolság" + +#: fdmprinter.def.json +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Támasz tetővonal szélesség" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Felső interfész minta" + +#: fdmprinter.def.json +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Támasz fedél sebesség" + +#: fdmprinter.def.json +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Felső interfész vastagság" + +#: fdmprinter.def.json +#, fuzzy +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Támasz falak száma" + +#: fdmprinter.def.json +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Támasz sebesség" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Támasz lépcső magasság" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Támasz lépcső maximális szélesség" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Támasz felső távolság" + +#: fdmprinter.def.json +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Támasz falak száma" + +#: fdmprinter.def.json +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Támasz X/Y távolság" + +#: fdmprinter.def.json +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Támasz Z távolság" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Kéreghűtés sebesség támogatás" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Felület" + +#: fdmprinter.def.json +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Felületi energia" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Felszín mód" + +#: fdmprinter.def.json +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "A felület tapadási jellemzője." + +#: fdmprinter.def.json +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Felületi energia." + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + +#: fdmprinter.def.json +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 "Bekapcsolja, hogy minden egyes rétegnél, ahol kereszteződő hálók találhatóak, azok fonódjanak össze. Ha kikapcsoljuk ezt az opciót, akkor a kereszteződő hálók közül az egyik megkapja az átfedésben lévő háló teljes térfogatát, míg a többi hálót eltávolítja." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "Az az X koordináta, melynek a közelében található a rétegek X nyomtatási kezdőpontja." + +#: fdmprinter.def.json +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "Az az X koordináta, ahol a rétegek nyomtatását kezdeni fogja." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "A fejnek az az X koordinátája, ahol a fúvóka előkészül ahhoz, hogy elkezdődjön a nyomtatás." + +#: fdmprinter.def.json +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "Az az Y koordináta, melynek a közelében található a rétegek Y nyomtatási kezdőpontja." + +#: fdmprinter.def.json +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "Az az Y koordináta, ahol a rétegek nyomtatását kezdeni fogja." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "A fejnek az az Y koordinátája, ahol a fúvóka előkészül ahhoz, hogy elkezdődjön a nyomtatás." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Az a Z koordináta pont, ahol a fej, illetve a fúvóka áll, a nyomtatási folyamat megkezdésekor." + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "Az a gyorsulási érték, amit az első réteg nyomtatása alatt használ." + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "A legelső rétegnél használt gyorsulási érték." + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "A kezdő réteg nyomtatása alatt, a fej utaztatásához használt gyorsulási érték." + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Az utazási mozgás gyorsítása a kezdő rétegnél." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "A vasalás közben használt gyorsulási érték." + +#: fdmprinter.def.json +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "A nyomtatás közbeni gyorsulás." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "A támaszok kitöltésének nyomtatása alatt használt gyorsulás." + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "A tutaj középső rétegeinek nyomtatásához kapcsolódó gyorsulási érték." + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "A külső falak nyomtatása alatt használt gyorsulás." + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "Az előtorony nyomtatása során használt gyorsulás." + +#: fdmprinter.def.json +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "A tutaj nyomtatásához kapcsolódó gyorsulási érték." + +#: fdmprinter.def.json +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 támaszok legalsó és legfelső rétegeinek nyomtatása alatt használt gyorsulás.Ha alacsonyabb gyorsulási értéket használunk, az segít javítani a kinyúlások nyomtatási minőségén." + +#: fdmprinter.def.json +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 támaszok legfelső rétegeinek nyomtatása alatt használt gyorsulás.Ha alacsonyabb gyorsulási értéket használunk, az segít javítani a kinyúlások nyomtatási minőségén." + +#: fdmprinter.def.json +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 "Az a gyorsulás, amellyel a szoknya és a perem nyomtatásra kerül. Általában ezt a kezdeti réteg gyorsulásával hajtják végre, de néha érdemes lehet kinyomtatni a szoknyát vagy a karimát más gyorsulással." + +#: fdmprinter.def.json +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "A támaszok nyomtatása alatt használt gyorsulás." + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "A tutajfedél nyomtatásához kapcsolódó gyorsulási érték." + +#: fdmprinter.def.json +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "A falak nyomtatása alatt használt gyorsulás." + +#: fdmprinter.def.json +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "A legfelső, záró felületi rétegek nyomtatása alatt használt gyorsulás." + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Az alsó és felső rétegek nyomtatása alatt használt gyorsulás." + +#: fdmprinter.def.json +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "A fej utaztatása során használt gyorsulás." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 visszahúzás távolsága az extruderek váltásakor. 0-ra állítva egyáltalán nincs visszahúzás.Ennek a távolságnak általában meg kell egyeznie a hőzóna hosszával." + +#: fdmprinter.def.json +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 "A vízszintes sík és a kúpos rész közötti szög a fúvóka vége fölött." + +#: fdmprinter.def.json +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 "A torony fedél szöge. A magasabb érték hegyes tornytetőket eredményez.Az alacsonyabb szöggel laposabb fedelet készíthetünk a toronynak." + +#: fdmprinter.def.json +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 "A forma számára kialakított külső falak túlnyúlási szöge. 0 ° -kal a forma külső héja függőleges lesz, míg 90 ° -kal a modell külső része a modell kontúrját követi." + +#: fdmprinter.def.json +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 "Az ágak átmérőjének változási szöge. Az ágak felülről lefelé vastagodnak. Ha a szög 0, akkor az ágak átmérője egyenletes, teljes hosszukban.Egy kis szög érték növelheti a fa tartásának stabilitását." + +#: fdmprinter.def.json +msgctxt "support_tree_angle description" +msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "Az ágak szöge. Használjon alacsonyabb szöget, hogy függőlegesebb és stabilabbak legyenek. A jobb kinyúláshoz használjon nagyobb szöget." + +#: fdmprinter.def.json +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 "A kúpos támasz dőlésszöge. A 0 fok függőleges és 90 fok vízszintes. A kisebb szögek miatt a tartószerkezet erősebb, de több anyagból áll. A negatív szögek miatt a támasz talpa szélesebb, mint a teteje." + +#: fdmprinter.def.json +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 "Az egyes poligonokon egy rétegben megjelenő pontok átlagos sűrűsége.Vegyük figyelembe, hogy az eredeti sokszög pontok itt eldobásra kerülnek, így az alacsony sűrűség csökkenti a felbontást." + +#: fdmprinter.def.json +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 "Az egyes vonalszakaszokon létrehozott rücskök közötti átlagos távolság. Mivel az eredeti pontok eldobásra kerülnek, a sok rücsök a felbontás csökkenését fogja eredményezni. Ennek az értéknek meg kell haladnia a rücskös falvastagság felét." + +#: fdmprinter.def.json +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "A nyomtatófej mozgásának alapértelmezett gyorsulása." + +#: fdmprinter.def.json +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 nyomtatáshoz használt alapértelmezett hőmérséklet. Ez az alap hőmérséklete az adott alapanyagnak. Minden egyéb nyomtatási hőmérséklet eltérés ettől az alaptól kerül számításra" + +#: fdmprinter.def.json +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 fűthető tárgyasztal alapértelmezett hőmérséklete. Ez a hőmérséklet az alap, és ehhez viszonyítjuk a többi hőmérséklet értékét" + +#: fdmprinter.def.json +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 híd felszínének a sűrűsége. A 100 -nál kisebb értéknöveli a hézagokat a felszíni vonalak között." + +#: fdmprinter.def.json +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 "Beállítja a támasz interfész sűrűségét a támasz alsó felületein.A magasabb érték nagyobb tapadást tesz lehetővé a támasznak, a modell felületén, azonban a támaszt nehezebb lesz eltávolítani." + +#: fdmprinter.def.json +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 "Beállítja a támasz interfész sűrűségét a támasz felső felületein.A magasabb érték jobb minőségű túlnyúlás nyomtatást tesz lehetővém viszont a támaszt nehezebb lesz eltávolítani." + +#: fdmprinter.def.json +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 második hídréteg sűrűsége. A 100-nál kisebb értékek növelik a hézagokat a felszíni vonalak között." + +#: fdmprinter.def.json +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 harmadik hídréteg sűrűsége. A 100-nál kisebb értékek növelik a hézagokat a felszíni vonalak között." + +#: fdmprinter.def.json +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "A nyomtatási terület mélysége (Y-irány)." + +#: fdmprinter.def.json +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "A speciális támasz torony átméröje." + +#: fdmprinter.def.json +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 támasz legvékonyabb ágainak átmérője. A vastagabb ágak erősebbek. Az alap felé eső ágak vastagabbak lesznek, mint ez a méret." + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "A nyomtatószál adagoló kerék átmérője az extruderben." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "A vasalási vonalak közötti távolság." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Az tutajalap-réteg vonalai közötti távolság. A széles távolság megkönnyíti a tutaj eltávolítását a tárgyasztalról." + +#: fdmprinter.def.json +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 tutajvonalak közötti távolság a középső tutajrétegben. A középső távolságnak meglehetősen szélesnek kell lennie, ugyanakkor elég sűrűnek is ahhoz, hogy megfelelően támassza a felső tutajrétegeket." + +#: fdmprinter.def.json +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 tutajvonalak közötti távolság a felső tutajrétegeknél. A távolságnak meg kell egyeznie a vonalszélességgel, hogy a felület tömör legyen." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Az a szélesség, amilyen széles lesz a Perem, a nyomtatott tárgy szélétől számítva. A nagyobb perem nagyobb tapadást fog eredményeznim viszont csökkenti az effektív használható nyomtatási területet." + +#: fdmprinter.def.json +#, 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 "Ez a távolság a fúvóka végétől mért távolság, ameddig a nyomtatószálat vissza szükséges húzni, ha nem használjuk az adott extrudert." + +#: fdmprinter.def.json +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 "Az a távolság, ami a fúvóka csúcstól a még szilárd nyomtatószálig tart.Ez gyakorlatilag az esetek nagy részében a fúvóka teljes hossza, a csúcstól a torokig tart." + +#: fdmprinter.def.json +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 "Az alsó kéreg felületek a kitöltésig jönnek létre. Ha bővítjük az alsó kérget, és növeljük ezt az értéket, akkor jobb tapadást érhetünk el a kitöltéssel kapcsolatban, illetve a szomszédos falak jobban tudnak tapadni a kéreghez. Az alacsonyabb érték anyagmegtakarítást eredményez." + +#: fdmprinter.def.json +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 kéreg felületek a kitöltésig jönnek létre. Ha bővítjük a kérget, és növeljük ezt az értéket, akkor jobb tapadást érhetünk el a kitöltéssel kapcsolatban, illetve a szomszédos falak jobban tudnak tapadni a kéreghez. Az alacsonyabb érték anyagmegtakarítást eredményez." + +#: fdmprinter.def.json +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 felső kéreg felületek a kitöltésig jönnek létre. Ha bővítjük a felső kérget, és növeljük ezt az értéket, akkor jobb tapadást érhetünk el a kitöltéssel kapcsolatban, illetve a szomszédos falak jobban tudnak tapadni a kéreghez. Az alacsonyabb érték anyagmegtakarítást eredményez." + +#: fdmprinter.def.json +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "A fej oda-vissza mozgatásának távolsága a kefén." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Az a sebesség, amivel a fúvóka lehűl az extrudálás közben.Ugyanezt az értéket kell használni az extrudálás közbeni felmelegedésre is." + +#: fdmprinter.def.json +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 "Az az extruder szerelvény, amivel az első réteg támasz kitöltését nyomtatjuk.Ezt multi-extruderes gépeken használhatjuk." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Az az extruder, ami a támaszok fedelét nyomtatja.Ezt multi-extruderes gépeken használhatjuk." + +#: fdmprinter.def.json +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 "Az az extruder szerelvény, amivel a támasztékok kitöltését nyomtatjuk. Ezt multi-extruderes gépeken használhatjuk." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Az az extruder, ami a támaszok alját és tetejét nyomtatja.Ezt multi-extruderes gépeken használhatjuk." + +#: fdmprinter.def.json +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 "Az az extruder, ami a támaszok alját nyomtatja.Ezt multi-extruderes gépeken használhatjuk." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "Az az extruder, amit a tapadásnövelő felületek, szoknya, perem, tutaj nyomtatására használunk. Csak multi extruder esetén használható." + +#: fdmprinter.def.json +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "Az az extruder szerelvény, amivel a támasztékokat nyomtatjuk. Ezt multi-extruderes gépeken használhatjuk." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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ó." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "Az az extruder, amit a külső falak nyomtatásához használunk.Ezt csak multi extruder esetén használhatjuk." + +#: fdmprinter.def.json +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 "Az az extruder, amit az alsó/felső felületi rétegek nyomtatásához használunk. Ezt csak multi extruder esetén használhatjuk." + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "Az az extruder, amelyik a felső réteg külső lezárását végzi.Ez a funkció csak multiextruderes gépen érhető el." + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "Az az extruder, amit a falak nyomtatásához használunk.Ezt csak multi extruder esetén használhatjuk." + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "A hűtőventillátor sebessége a tutajalap rétegeinek nyomtatásakor." + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "A hűtőventillátor sebessége a tutaj középső rétegeinek nyomtatásakor." + +#: fdmprinter.def.json +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "A hűtőventillátor sebessége a tutaj nyomtatásakor." + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "A hűtőventillátor sebessége a tutaj felső rétegeinek nyomtatásakor." + +#: fdmprinter.def.json +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 "Annak a képfájlnak, aminek a fényerősség értékei meghatározzák a minimális sűrűséget a nyomtatás kereszt kitöltésének megfelelő helyén." + +#: fdmprinter.def.json +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 "Annak a képfájlnak, aminek a fényerősség értékei meghatározzák a minimális sűrűséget a nyomtatás kereszt támasz kitöltésének megfelelő helyén." + +#: fdmprinter.def.json +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 "Az első pár réteget lassabban tudjuk nyomtatni, ha ezt a modell formája szükségessé teszi. Növelheti a tapadást a tárgyasztalhoz, így sikeresebb lehet a nyomtatás. A sebesség folyamatosan növekedni fog, ahogy emelkedik a rétegeken." + +#: fdmprinter.def.json +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 légrés megadja, hogy a tutaj teteje és a modell alja között milyen legyena távolság. Csak az első réteget fogja megemelni ez az érték, ami így csökkenteni fogja a tutaj és a test egymáshoz tapadását. Ezáltal könnyebb lesz a nyomtatás végén eltávolítani a tutajt." + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "A nyomtatási terület magassága (Z-irány)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Az a magasságkülönbség, amit a Z emeléskor emelkedik a tengely." + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "A magasság, amivel a Z tenhelyt megemeljük." + +#: fdmprinter.def.json +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 "Az egyes nyomtatási rétegek magassága mm -ben. A magasabb érték gyorsabb nyomtatást eredményez, viszont a minőség rosszabb lesz, mint az alacsonyabb réteg magasságnál. Azonban a kissebb rétegmagasság növeli a nyomtatási időt." + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "Az a kitöltési magasság, amit elérve a kitöltési sűrűség lefeleződik." + +#: fdmprinter.def.json +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 támaszkitöltés azon magassága, ahol a sűrűség feleződni fog." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 kezdő réteg magassága mm-ben. A vastagabb kezdőréteg megkönnyíti a tapadást a tárgyasztalhoz." + +#: fdmprinter.def.json +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 támasz lépcsőinek magassága azona a részen, ahol a modellen támaszkodik.Ha az érték alacsony, a támasz eltávolítása nehéz lehet, viszont a túl magas érték instabillá teheti a támaszt. Ha az érték 0, akkor kikapcsolja a lépcsőt." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" +"A szoknya vízszintes távolsága a modell első rétegének külső szélétől. \n" +"Ez a minimális távolság. Ha a szoknya vonalak száma többszörözve van, akkor a szoknya kifelé fog nyövekedni." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "A kitöltési minta eltolása az X tengely mentén." + +#: fdmprinter.def.json +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "A kitöltési minta eltolása az Y tengely mentén." + +#: fdmprinter.def.json +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 fúvóka méretet használsz." + +#: fdmprinter.def.json +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "A tutajalap nyomtatásakor használt löket." + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "A tutaj középső rétegeinek nyomtatásakor használt löket." + +#: fdmprinter.def.json +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "A tutaj nyomtatásakor használt löket." + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "A tutajfedél nyomtatásakor használt löket." + +#: fdmprinter.def.json +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 "Az eltávolítandó alsó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 alsó részének nyomtatásához felhasznált időt és anyagot." + +#: fdmprinter.def.json +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 "Az eltávolítandó 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 alsó és felső részének nyomtatásához felhasznált időt és anyagot." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Az a rétegidő, amely beállítja a küszöbértéket a szokásos ventilátor sebesség és a ventilátor maximális sebessége között. Az ezúttal lassabb nyomtatású rétegek szokásos ventilátorsebességet használnak. A gyorsabb rétegek esetén a ventilátor sebessége fokozatosan növekszik a maximális ventilátor sebesség felé." + +#: fdmprinter.def.json +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "A visszahúzott anyag hossza visszahúzáskor." + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "A gépre szerelt tárgyasztal anyaga." + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "Az alapréteg magasságától eltérő legnagyobb megengedett réteg magasság." + +#: fdmprinter.def.json +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 "Az a maximális szög, ami a szivárgáspajzsban megjelenhet. A 0 fok a függőleges, a 90 fok pedig a vízszintesnek felel meg. Ha a szög kisebb, akkor jobb lehet a pajzs hatásfoka, és jobban mentesíti a fúvókát a szivárgó anyagtól, azonban több felhasználandó anyagot igényel az építése." + +#: fdmprinter.def.json +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 "A túlnyúlások maximális szöge a nyomtathatóvá tétel után. 0 ° értéknél az összes túlnyúlást egy, az építőlemezhez kapcsolt modelldarab váltja fel, a 90 ° -ot a modell semmilyen módon nem változtatja meg." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "A maximális eltérés, ha csökken a felbontás a maximális felbontás beállításnál. Ha ezt növeli, a nyomtatás kevésbé lesz pontos, de a g-kód kisebb lesz. A maximális eltérés a maximális felbontás korlátja, tehát ha a kettő ütközik, akkor a maximális eltérés lesz magasabb prioritású." + +#: fdmprinter.def.json +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 maximális X/Y távolság két támasz szerkezet között. Mikor két elszeparált támasz túl közel kerül egymáshoz, azaz ettől az értéktől közelebb, akkor a támaszok egyesülni fognak." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "A maximális pillanatnyi sebességváltozás változtatása a kezdő réteg nyomtatása alatt." + +#: fdmprinter.def.json +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "A maximális pillanatnyi sebességváltozás változtatása a nyomtatófej mozgására vonatkoztatva." + +#: fdmprinter.def.json +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "A maximális löket, amivel megrántja a fejet vasalás közben." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "A maximális pillanatnyi sebességváltozás változtatása a támaszok kitöltésének nyomtatása alatt." + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "A maximális pillanatnyi sebességváltozás változtatása a külső falak nyomtatása alatt." + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "A maximális pillanatnyi sebességváltozás változtatása az előtorony nyomtatása alatt." + +#: fdmprinter.def.json +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "A maximális pillanatnyi sebességváltozás változtatása a támaszok alsó és felső felületének nyomtatása alatt." + +#: fdmprinter.def.json +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "A maximális pillanatnyi sebességváltozás változtatása a támaszok felső felületének nyomtatása alatt." + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "A maximális pillanatnyi sebességváltozás változtatása a szoknya és a perem nyomtatása alatt." + +#: fdmprinter.def.json +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "A maximális pillanatnyi sebességváltozás változtatása a támaszok nyomtatása alatt." + +#: fdmprinter.def.json +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "A maximális pillanatnyi sebességváltozás változtatása a falak nyomtatása alatt." + +#: fdmprinter.def.json +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "A maximális pillanatnyi sebességváltozás változtatása a felső záró felület nyomtatása alatt." + +#: fdmprinter.def.json +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "A maximális pillanatnyi sebességváltozás változtatása az alsó/felső felületek nyomtatása alatt." + +#: fdmprinter.def.json +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "A maximális pillanatnyi sebességváltozás változtatása a fej utazási mozgása alatt." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "Az X motor maximális sebessége." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Az Y motor maximális sebessége." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "A Z motor maximális sebessége." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "A nyomtatószál maximális adagolási sebessége." + +#: fdmprinter.def.json +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 modellen támaszkodó támasz lépcső maximális szélessége. Az alacsony érték nehezíti az eltávolítást, de a túl magas érték instabillá teszi a támaszt." + +#: fdmprinter.def.json +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "A nyomtatófej minimális mozgási sebessége." + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "Az a minimális hőmérséklet, ameddig fel kell melegedni a fejnek a nyomtatás megkezdéséhez." + +#: fdmprinter.def.json +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 "Az a minimális időtartam, ameddig a fúvóka inaktív lehet, mielőtt elkezdene visszahűlni. Így csak akkor fog a fúvóka visszahűlni a készenléti hőmérsékletre, ha hosszabb ideig nincs használva." + +#: fdmprinter.def.json +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 "Az a belső túlnyúlási szög, amihez szükséges kitöltést hozzáadni. Ha ez 0°, a test teljes mértékben kitöltésre kerül. Ha az érték 90°, akkor nem lesz semmiféle kitöltés." + +#: fdmprinter.def.json +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 "A kinyúlások minimális szöge, amihez támaszt kell nyomtatni.0° -nál minden kinyúlás alá lesz támasztva, 90° -nál egyik sem." + +#: fdmprinter.def.json +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 "Az a minimális útvonal, amit a fejnek mozognia kell X-Y irányban ahhoz, hogy a visszahúzás megtörténjen. Ez segíthet abban, hogy ne legyen túl gyakori visszahűzás kisméretű területek felett." + +#: fdmprinter.def.json +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 "A szoknya, vagy a perem minimális hossza. Ha ezt a hosszt nem érné el az összes szoknya vagy perem, akkor további szegélyvonalak adódnak hozzá, és kiegészítik addig, amíg el nem érik ezt a hosszt.Ha a vonalszám 0 -ra van állítva, akkor ez az opció figyelmen kívül van hagyva." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Minimális sebesség. Ez az a minimum, amivel a fej mozoghat. Ez azért szükséges, mert a minimális rétegidő miatt előfordulhatna, hogy a nyomtatófej tűlzottan lelassul. Ez esetben a fúvóka olvadókamra nyomása leeshetne, ami ronthatná a nyomtatási minőséget." + +#: fdmprinter.def.json +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 "Egy vonalszakasz minimális mérete a szeletelés után. Ha ezt megnöveli, a háló kisebb felbontású lesz. Ez lehetővé teheti a nyomtató számára, hogy lépést tartson a g-kód feldolgozásának sebességével, és növeli a szeletek sebességét azáltal, hogy eltávolítja a háló azon részleteit, amelyeket egyébként nem tud feldolgozni." + +#: fdmprinter.def.json +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 "Az utazási útvonalak minimális mérete szeletelés után. Ha ezt növeljük, akkor az utazási mozgások kevésbé rendelkeznek majd sima sarkokkal.Ez lehetővé teszi a nyomtatók számára, hogy lépést tartsanak a g-kód feldolgozásához szükséges sebességgel, azonban a modell elkerülése kevésbé lehet pontos." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "Az előtorony minimális térfogata, minden egyes rétegben ahhoz, hogy az anyagcserét teljes egészében végre tudja hajtani." + +#: fdmprinter.def.json +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "A 3D nyomtatód neve." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Az extruder szerelvény fúvóka azonosítója, például \"AA 0.4\" és \"BB 0.8\"." + +#: fdmprinter.def.json +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 "A fej mozgatásakor a már kinyomtatott részeket elkerülő útvonalon fog haladni.Ez az opció csak akkor érhető el, ha a fésű mód engedélyezve van." + +#: fdmprinter.def.json +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "A fej mozgatásakor a kinyomtatott támaszokat elkerülő útvonalon fog haladni.Ez az opció csak akkor érhető el, ha a fésű mód engedélyezve van." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "A Perem körvonalainak száma. Több vonal nagyobb tapadást eredményez, de csökkenti a használható nyomtatási területet." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "A felső rétegek száma. A felső vastagság alapján számítva ezt az értéket egész számra kerekíti." + +#: fdmprinter.def.json +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 "A felső felszíni zárórétegek száma. Általában egy felső réteg is elegendő a jó minőségű felső felületek előállításához." + +#: fdmprinter.def.json +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 "Azoknak a falaknak a száma, amellyel a támogatást körül lehet venni. A fal hozzáadása megbízhatóbbá teszi a nyomtatást és jobban támaszthatja a túlnyúlásokat, de növeli a nyomtatási időt és a felhasznált anyagot." + +#: fdmprinter.def.json +#, 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 "Azoknak a falaknak a száma, amellyel a támogatást körül lehet venni. A fal hozzáadása megbízhatóbbá teszi a nyomtatást és jobban támaszthatja a túlnyúlásokat, de növeli a nyomtatási időt és a felhasznált anyagot." + +#: fdmprinter.def.json +#, 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 "Azoknak a falaknak a száma, amellyel a támogatást körül lehet venni. A fal hozzáadása megbízhatóbbá teszi a nyomtatást és jobban támaszthatja a túlnyúlásokat, de növeli a nyomtatási időt és a felhasznált anyagot." + +#: fdmprinter.def.json +#, 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 "Azoknak a falaknak a száma, amellyel a támogatást körül lehet venni. A fal hozzáadása megbízhatóbbá teszi a nyomtatást és jobban támaszthatja a túlnyúlásokat, de növeli a nyomtatási időt és a felhasznált anyagot." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "A nyomtatandó falak száma. A falvastagság alapján számított és kerekített érték." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "A támaszok szerkezeteinek mintázata. A különböző mintákkal elérhető eredmény lehet az erős vagy a könnyen eltávolítható támasz." + +#: fdmprinter.def.json +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "A legfelső rétegeken lévő mintázat." + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Az alsó/felső rétegek mintázata." + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "A legalsóbb, kezdő réteg mintázata." + +#: fdmprinter.def.json +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "A felső felületek vasalásához használt minta." + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "A támasz interfész alsó felületének kialakítási mintája." + +#: fdmprinter.def.json +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "A támasz interfész kialakítási mintája." + +#: fdmprinter.def.json +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "A támasz interfész felső felületének kialakítási mintája." + +#: fdmprinter.def.json +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "Az a pont, ahol az egyes rétegek nyomtatását kezdeni fogja." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Az minimális extrudálási mennyiség, mielőtt engedélyezi a kifutási műveletet.Ha nincs egy bizonyos mennyiségű extrudálás a kifuttatás előtt, nem épül fel elegendő nyomás az olvadótérben, és a kifutás során nem lesz elegendő anyag a nyomtatáshoz. Emiatt a kifutási mérték lineárisan van skálázva.Ez az érték mindig nagyobb, mint a kifutási mérték." + +#: fdmprinter.def.json +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 "Az az átlagolt sebesség, (°C/mp) amivel a nyomtatási és a készenléti hőmérséklet között a fúvóka visszahűl." + +#: fdmprinter.def.json +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 "Az az átlagolt sebesség, (°C/mp) amivel a készenléti és a nyomtatási hőmérséklet között a fúvóka melegszik." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Az a sebesség, amivel a kitöltés nyomtatódik." + +#: fdmprinter.def.json +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Az a sebesség, amivel a nyomtatás történik." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "Hidak falainak nyomtatási sebessége." + +#: fdmprinter.def.json +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 "Az a sebesség, amellyel a ventilátorok forognak a nyomtatás kezdetén. Az ezt követő rétegekben a ventilátor sebességét fokozatosan növeli olyan szintre, amely megegyezik a normál ventilátor sebességgel." + +#: fdmprinter.def.json +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 "Az a sebesség, amivel a hűtés történik normál nyomtatási esetben.Ha egy réteg nyomtatási sebessége egy küszöbérték felé emelkedik, akkor a hűtést növelni fogja egészen addig, amíg a maximumra nem emelkedik." + +#: fdmprinter.def.json +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 "Az a hűtési sebesség, amivel a ventillátorok forognak a maximális hűtéskor.A maximális hűtés azoknál a rétegeknél történik, ahol elértük a minimális rétegídőt. A hűtés a normál és a maximum érték között tud változni." + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "A nyomtatószál visszahúzás sebessége szál előtolási mozgáskor." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "Az a sebesség, amivel a nyomtatószál visszatöltődik a fejbe." + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "Az a sebesség, amivel a nyomtatószálat visszatoljuk a fejbe fúvókaváltás után." + +#: fdmprinter.def.json +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "A nyomtatószál sebessége visszahúzáskor, és előtoláskor." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "Az a sebesség, amivel a nyomtatószál visszahúzódik, majd vissza töltődik a fejbe, a törlési művelet során." + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "Az a sebesség, amivel a szál visszahúzásra kerül a fúvókaváltás során." + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "Az a sebesség, amellyel a nyomtatószál visszahúzódik egy visszahúzási mozgás során." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "Az a sebesség, amivel a nyomtatószál visszahúzódik." + +#: fdmprinter.def.json +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 "Nyomtatószál visszahúzási sebesség. A nagyobb sebesség jobb eredményhez vezethet, azonban a túl nagy sebesség a nyomtatószál eldarálásához vezethet a nyomtatószál adagolóban." + +#: fdmprinter.def.json +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 támasztékok alsó, kezdő rétegének nyomtatási sebessége. Ha ez a sebesség lassabb, akkor jobb lehet a támasz tapadása a tárgyasztalra." + +#: fdmprinter.def.json +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 támasztékok kitöltésének nyomatatási sebessége. Ha a kitöltések nyomtatási sebességét csökkentjük, a támaszték stabilabb lesz." + +#: fdmprinter.def.json +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 középső tutajrétegek nyomtatási sebessége. Ezt meglehetősen lassan kell nyomtatni, mivel a fúvókából kifolyó anyag mennyisége meglehetősen nagy." + +#: fdmprinter.def.json +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 "Az a sebesség, amivel a legkülsőbb falak nyomtatásra kerülnek.Az alacsonyabb sebesség javítja a külső felület végső minőségét, azonban, ha túl nagy a különbség a külső és a belső falak nyomtatási sebessége között, az negatív hatással lehet a minőségre." + +#: fdmprinter.def.json +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 "Az a asebesség, amivel a előtorony nyomtatódik. Nyomtassuk a előtornyot alacsony sebességen, mert ez segíthet a különböző anyagrétegeknek az egymáshoz tapadásában." + +#: fdmprinter.def.json +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "Az a sebesség, amivel a ventillátorok pörögnek." + +#: fdmprinter.def.json +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "A tutaj nyomtatási sebessége." + +#: fdmprinter.def.json +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 "Az a sebesség, amivel a támasztékok alsó és felső felületét nyomtatjuk.Ha ez a sebesség lassabb, akkor jobb lehet a kinyúlás minősége." + +#: fdmprinter.def.json +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 támasztékok fedő, felső rétegének nyomtatási sebessége. Ha ez a sebesség lassabb, akkor jobb lehet a kinyúlás minősége." + +#: fdmprinter.def.json +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 szoknya és a perem nyomtatási sebessége. Alapesetben ez ugyanannyi, mint a kezdő réteg sebessége, de néha szükséges lehet a különböző sebességgel való nyomtatásra." + +#: fdmprinter.def.json +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 támasztékok nyomattási sebessége. A támaszok nyomtatási sebességét bátran növelhetjük, mivel nem számít, milyen lesz a felületi minőségük.A nyomtatás után el lesznek távolítva, nem részei a nyomtatott tárgynak, és a nagyobb sebesség csökkentheti a nyomtatási időt." + +#: fdmprinter.def.json +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 tutaj felső rétegeinek nyomtatási sebessége. Ezeket kissé lassabban kell nyomtatni, hogy a fúvóka lassan kiegyenlítse a szomszédos felszíni vonalakat." + +#: fdmprinter.def.json +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 Z tengely emelési sebessége. Ez általában alaxcsonyabb, mint a nyomtatási sebesség, mivel a tárgyasztal, vagy az X keresztszánt nehezebb mozgatni." + +#: fdmprinter.def.json +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "A falak nyomtatási sebessége." + +#: fdmprinter.def.json +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "A felső felületen való áthaladási sebesség." + +#: fdmprinter.def.json +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "Milyen gyorsan kell visszahúzni a nyomtatószálat, hogy az tisztán megszakadjon." + +#: fdmprinter.def.json +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "A felső záró kéreg felületi rétegnek a nyomtatási sebessége." + +#: fdmprinter.def.json +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Az alsó/felső réteg nyomtatási sebessége." + +#: fdmprinter.def.json +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "A fej üresben történő pozícióváltásának sebessége." + +#: fdmprinter.def.json +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 kifutási művelet sebessége, a normál extrudálási út sebességéhez képest.Javasolt, hogy kisség csökkentsük, így 100% -nál alacsonyabb legyen az érték, mivel a kifutási mozgás közben csökken a nyomás a csőben." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 kezdő réteg nyomtatási sebessége. Az alacsonyabb érték segít növelni a tapadást a tárgyasztalhoz." + +#: fdmprinter.def.json +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 kezdő réteg utazási sebessége. Az Alacsonyabb érték javasolt, mivel a korábban már kinyomtatott részeleteket feltépheti a nyomtatófej a tárgyasztalról.A beállításnak az értéke kiszámítható, az utazási és a nyomatási sebesség arányából." + +#: fdmprinter.def.json +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "Az a hőmérséklet, ahol a nyomtatószál tisztán meg tud szakadni." + +#: fdmprinter.def.json +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 nyomtató építési tér hőmérséklete. Ha ez az érték 0, akkor a gép nem képes az építési tér hőmérséklet szabályzására." + +#: fdmprinter.def.json +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "Az adott fúvóka hőmérséklete, amikor éppen egy másik fúvókát használnak nyomtatáshoz." + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "Az a hőmérséklet, ahová a fejnek vissza kell hűlnie a nyomtatás befejezése előtt." + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +msgstr "Az a hőmérséklet, amin az első réteg nyomtatása fog történni. Ha az érték 0, akkor nem kezeli külön a kezdő réteg hőmérsékleti beállítását." + +#: fdmprinter.def.json +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "A nyomtatáshoz használt hőmérséklet." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "" + +#: fdmprinter.def.json +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 "Az alsó rétegek vastagsága a nyomtatáskor. Ez az érték osztva a rétegmagassággal adja meg az alsó rétegek számát." + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "" + +#: fdmprinter.def.json +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 támasz átmeneti, a modellt érintő csatlakozó felületének a vastagsága, amit a támasz aljára, vagy a tetejére nyomtat." + +#: fdmprinter.def.json +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 támasz átmeneti, a modellt érintő csatlakozó felületének a vastagsága, amit a támasz aljára nyomtat." + +#: fdmprinter.def.json +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 támasz átmeneti, a modellt érintő csatlakozó felületének a vastagsága, amit a támasz tetejére nyomtat." + +#: fdmprinter.def.json +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 felső rétegek vastagsága a nyomtatáskor. Ez az érték osztva a rétegmagassággal adja meg az felső rétegek számát." + +#: fdmprinter.def.json +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 "Az alsó/felső rétegek vastagsága a nyomtatáskor. Ez az érték osztva a rétegmagassággal adja meg az alsó/felső rétegek számát." + +#: fdmprinter.def.json +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 falak vastagsága vízszintes irányban. Ez az érték osztva a falvonal szélességével határozza meg a falak számát." + +#: fdmprinter.def.json +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 kitöltési réteg vastagsága. Ez az érték minden esetben a normál rétegvastagság,vagy annak a többszöröse és kerekített értéke." + +#: fdmprinter.def.json +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 támasz kitöltés retegenkénti anyagvastagsága. Ennek az értéknek minden esetben a rétegmagasság egész többszörösének kell lennie, és oda lesz kerekítve." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "A létrehozandó g-kód típusa." + +#: fdmprinter.def.json +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "A csöppenés mértéke. Ennek az értéknek általában közel kell lennie a fúvóka átmérőjéhez." + +#: fdmprinter.def.json +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "A nyomtatási terület szélessége (X-irány)." + +#: fdmprinter.def.json +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 támasz alá nyomtatandó perem szélessége. A nagyobb peremek javítják a tálcához való tapadást, viszon extra anyagfelhasználást is jelent." + +#: fdmprinter.def.json +#, fuzzy +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "Az előtorony szélessége." + +#: fdmprinter.def.json +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "Az előtorony szélessége." + +#: fdmprinter.def.json +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 "Az a szélesség, amelyen belül a rezgés történhet. Javasolt, hogy ez a külső fal szélessége alatt legyen, mivel a belső falalkat nem érinti ez a mozgás." + +#: fdmprinter.def.json +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 "Az az ablak, amelyben érvényesülni tud a maximális visszahűzási szám.Ennek az értéknek megközelítőleg azonosnak kell lennie a visszahúzási távolsággal, s így lehet korlátozni a visszahúzások számát ugyanabban az anyaghelyzetben." + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "Az előtorony nyomtatási X koordinátája." + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "Az előtorony nyomtatási Y koordinátája." + +#: fdmprinter.def.json +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Ez a beállítás azt szabályozza, hogy tutajnak hány belső sarka legyen lekerekítve. A belső sarkokat félkörre kerekíti le, aminek sugara az itt megadott érték. Ez a beállítás eltávolítja a tutaj körvonalában lévő olyan lyukakat is, amik kisebbek, mint egy ilyen kör." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "A beállítással létrehozhatunk egy falat a modell körül, ami segít abban, hogy a külső levegő, vagy légáramlat érje a nyomtatott testet.Ez különösen azoknál az alapanyagoknál lehet segítség, amelyek hajlamosak a felválásra, repedésre, mint pl. az ABS, ASA." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Felső rétegek" + +#: fdmprinter.def.json +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Felső kéreg bővítési távolság" + +#: fdmprinter.def.json +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Felső kéreg eltávolítási szélesség" + +#: fdmprinter.def.json +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Felső felületi gyorsulás" + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Felső és külső felületi extruder" + +#: fdmprinter.def.json +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Felső kéregfelület áramlás" + +#: fdmprinter.def.json +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Felső felület löket" + +#: fdmprinter.def.json +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Felső kéreg rétegek" + +#: fdmprinter.def.json +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Felső kéregvonal irányok" + +#: fdmprinter.def.json +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Felső felszíni kéregvonal szélesség" + +#: fdmprinter.def.json +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Felső felszíni kéregminta" + +#: fdmprinter.def.json +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Felső záró felületi sebesség" + +#: fdmprinter.def.json +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Felső vastagság" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "" + +#: fdmprinter.def.json +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "" + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Alsó/felső gyorsulás" + +#: fdmprinter.def.json +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Alsó/felső extruder" + +#: fdmprinter.def.json +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Alsó/felső áramlás" + +#: fdmprinter.def.json +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Alsó/felső löket" + +#: fdmprinter.def.json +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Alsó/felső vonal irányok" + +#: fdmprinter.def.json +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Alsó/felső vonalszélessége" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Alsó/felső mintázat" + +#: fdmprinter.def.json +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Alsó/felső sebesség" + +#: fdmprinter.def.json +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Alsó/felső vastagság" + +#: fdmprinter.def.json +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Asztalt érintse" + +#: fdmprinter.def.json +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Torony átmérő" + +#: fdmprinter.def.json +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Torony fedél szög" + #: fdmprinter.def.json msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "A modellre alkalmazandó átalakítási mátrix, amikor azt fájlból tölti be." -#~ msgctxt "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "A nyomtatófej 2D -s árnyéka (ventillátorral együtt)." +#: fdmprinter.def.json +msgctxt "travel label" +msgid "Travel" +msgstr "Utazás" -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Külső falak a belsők előtt" +#: fdmprinter.def.json +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Utaztatási gyorsulás" -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "A falakat külső, majd belső sorrendben nyomtatja, ha ez engedélyezve van.Ez hozzájárulhat a X és Y méret pontosságának javításához, különösen nagy viszkozitású műanyag, például ABS használatakor. Ez azonban csökkentheti a külső felület nyomtatási minőségét, különösen az átlapolásoknál." +#: fdmprinter.def.json +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Elkerülő utazási távolság" -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Fali átlapolások kompenzálása" +#: fdmprinter.def.json +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Utazás löket" -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Kompenzálja a száladagolást a fal azon részeinél, ahol az már elkészült." +#: fdmprinter.def.json +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Utazási sebesség" -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Kompenzálja a külső fal átfedéseit" +#: fdmprinter.def.json +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 "A modellt csak felületként, térfogatként, vagy lazua felülettel kezelje.A normál nyomtatási mód csak a zárt szinteket nyomtatja ki. A \"Felület\" egyetlen falra nyomtat, amely a háló felületét követi nyomtatás nélkül, és nincs alsó és felső felület.A \"Mindkettő\" zárt szinteket nyomtat, ugyanúgy, mint a normál, és minden fennmaradó poligont pedig felületként." -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Kompenzálja a száladagolást a külső fal azon részeinél, ahol az már elkészült." +#: fdmprinter.def.json +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "" -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Kompenzálja a belső fal átfedéseit" +#: fdmprinter.def.json +msgctxt "support_tree_angle label" +msgid "Tree Support Branch Angle" +msgstr "Támaszágak szöge" -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Kompenzálja a száladagolást a belső fal azon részeinél, ahol az már elkészült." +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter label" +msgid "Tree Support Branch Diameter" +msgstr "Támaszágak átmérője" -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Minimális fal adagolás" +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter_angle label" +msgid "Tree Support Branch Diameter Angle" +msgstr "Támaszágak átmérő szög" -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "A fali vonalak minimális adagolása. A fal átlapolás kompenzáció csökkenti az adagolást, amikor a már meglévő falakhoz közel nyomtatunk. Azoknak a falaknak, ahol az adagolási sebesség kissebb lenne, mint ez a megadott érték, az útvonalat módosítani kell. Ennek a beállításnak a használatakor engedélyezni kell a a fal átfedés kompenzációját, és a külső falakat a belsők előtt kell nyomtatni." +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance label" +msgid "Tree Support Branch Distance" +msgstr "Támaszágak távolsága" -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Visszahúzás preferálása" +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution label" +msgid "Tree Support Collision Resolution" +msgstr "Ütközés felbontás" -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Ha engedélyezve van, akkor a visszahúzás van elsődlegesen használva a fésülés helyett, s így helyettesíti azokat a falakat, amiknek az anyag szükséglete az adagolási küszöb alatt lenne." +#: fdmprinter.def.json +msgctxt "support_tree_max_diameter label" +msgid "Tree Support Trunk Diameter" +msgstr "" -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Falak közötti rések kitöltése" +#: fdmprinter.def.json +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Három-hatszög" -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Tölti ki a falak között azokat a réseket, ahol a falak nem találkoznak." +#: fdmprinter.def.json +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Háromszög" -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Seholsem" +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Háromszögek" -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Mindenhol" +#: fdmprinter.def.json +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Háromszögek" -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "Apró hézagok kiszűrése" +#: fdmprinter.def.json +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Háromszög" -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "Szűrje ki az apró hézagokat, hogy csökkentse a hibák megjelenését a modell külsején." +#: fdmprinter.def.json +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Háromszögek" -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Adagolás kiegyenlítés" +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "A normál vonalaktól vékonyabb vonalak nyomtatásakor a sebességet növelni fogja, miközben az extrudálás sebességét nem változatja. Így előfordulhat, hogy a modell vékonyabb darabjainál a vonalak szélessége kissebb lesz, mint a megadott.Ez a beállítás szabályozza az ilyen vonalaknak a nyomatatási sebesség változását." +#: fdmprinter.def.json +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Szintátfedések egyesítése" -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Maximális adagolás kompenzáció sebesség" +#: fdmprinter.def.json +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 "Az ennél rövidebb nem alátámasztott falak a normál falbeállításokkal kerülnek kinyomtatásra. Az ettől hosszabb nem támogatott falakat viszont a hídfalak beállításai alapján nyomtatjuk ki." -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "A maximális nyomtatási sebesség, amire a nyomtató kompenzálni tudja az adagolást." +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Adaptív rétegek használata" -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Adagolás maximum" +#: fdmprinter.def.json +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Tornyok használata" -#~ 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." -#~ msgstr "A kitöltés mintázata. A vonal és a cikcakk felváltva cserélgeti az irányát rétegenként, csökkentve ezzel az anyagköltséget. A rács, háromszög, háromhatszög,kocka, oktett, negyed kocka, kereszt és koncentrikus mintákat minden rétegben nyomtatjuk. A gyroid, a kocka, a negyedkocka, és az oktett töltés minden rétegben változik, és így egyenletesebb az erő eloszlása minden irányban." +#: fdmprinter.def.json +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 "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "Az öntőforma külseje és a modell külső héja közötti minimális távolság." +#: fdmprinter.def.json +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 "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "Hány lépést kell a motornak megtenni ahhoz, hogy 1 mm mozgás történjen a nyomtatószál adagolásakor." +#: fdmprinter.def.json +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 "Használjon relatív extrudálást abszolút extrudálás helyett. A relatív E-lépések használata megkönnyíti a g-kód utófeldolgozását. Ezt azonban nem minden nyomtató támogatja, és az abszolút E-lépésekhez viszonyítva nagyon kismértékű eltéréseket eredményezhet a lerakott anyag mennyiségében. Ettől a beállítástól függetlenül az extrudálás módját mindig abszolút értékre állítják, mielőtt bármilyen g-kód szkriptet kiadnának." -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "Ha ez az érték nem nulla, akkor a megadott értéktől hosszabb utazáskor nyomtatószál visszahúzás fog történni." +#: fdmprinter.def.json +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 "Speciális támasz tornyok használata a kisméretű túlnyúló területek támogatásához.Ezeknek a tornyoknak az átmérője nagyobb, mint az alátámasztott terület, azonban az alátámasztandó terület közelébe érve, fokozatosan csökken az átmérőjük, és egy tetőt képeznek." -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Alkalmazza az extruder eltolását a koordinátarendszerre vonatkoztatva." +#: fdmprinter.def.json +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 "Ezzel a hálóval módosíthatja az egyéb átfedéseknek megfelelő kitöltéseket. Kicseréli a többi háló feltöltési régióit ezekre a régiókra. Javasoljuk, hogy ehhez a hálóhoz csak egy falat nyomtasson, és ne használjon alsó/felső felületet." -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Héj" +#: fdmprinter.def.json +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Ezzel a hálóval határozhatja meg a támaszt területeket. Ez felhasználható a támasz struktúra létrehozására." -#~ 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, while an angle of 90° is vertical." -#~ msgstr "A tárgy alsó/felső felületén, az itt megadott szögnél nagyobb szög esetén a kéreg nem lesz kibővítve. Így elkerülhető, hogy a keskeny kéregrészek ne legyenek kibővítve, amik akkor jönnek létre, mikor a modell felülete közel függőleges szögben áll. A 0° szög a vízszintes, míg a 90° szög a függőlegest jelenti." +#: fdmprinter.def.json +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 "Ezzel a hálóval megadhatjuk, hogy a modell melyik részét ne lehessen észlelni túlnyúlásként. Ezt felhasználhatjuk arra, hogy a nem kívánt támasz struktúrákat eltávolítsuk." -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "A kezdő réteg sebessége. Az alacsonyabb érték segít növelni a tapadást a tárgyasztalhoz." +#: fdmprinter.def.json +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Felhasználói megadás" -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "A tárgyasztal hőmérséklete. Ha ez az érték 0, akkor tárgyasztal hőmérséklete nem lesz beállítva, azaz nem fogja fűteni a gép." +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "" -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "A tárgyasztal erre a hőmérsékletre fűt fel az első réteg nyomtatásához." +#: fdmprinter.def.json +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_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Zsugorodási arány" +#: fdmprinter.def.json +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Várakozás a tárgyasztal felfűtésére" -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "ZSugorodási arány százalékban megadva." +#: fdmprinter.def.json +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Várakozás a fej felfűtésére" -#~ msgctxt "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Kitöltés háló rend" +#: fdmprinter.def.json +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Fal gyorsulás" -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Meghatározza, hogy melyik kitöltési háló helyezkedjen el egy másik kitöltési hálón. A magasabb rendű kitöltési háló megváltoztatja az alacsonyabb rendű és normál hálókat." +#: fdmprinter.def.json +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "" -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Fa támasz" +#: fdmprinter.def.json +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Fali extruder" -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Generáljon fához hasonló támasz ágakkal, amelyek megtámasztják a nyomtatványt.Ez csökkentheti az anyagfelhasználást és a nyomtatási időt, de jelentősen megnöveli a szeletelési időt." +#: fdmprinter.def.json +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Fal áramlás" -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "A szeleteléskor az egyes szeletek a tárgy egy adott pontjában haladnak át, keresztben. Az adott réteg területei úgy alakulnak ki, hogy az adott réteg középpontjában metszi-e a szelet felületét. (Középső)Alternatív megoldásként az egyes rétegeknek lehetnek olyan területei, amelyek a térfogat beljesébe esnek a teljes rétegmagasság alatt (Kizáró).A rétegnek lehetnek olyan területei, amelyek a réteg bármely pontján belülre esnek (Befoglaló).A kizárólagos megtartja a legtöbb részletet, amíg a befoglalt a legjobban illeszkedik. A középső igényli a legkevesebb feldolgozási időt." +#: fdmprinter.def.json +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Fal löket" -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Spagetti kitöltés" +#: fdmprinter.def.json +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Falvonalak száma" -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Ez a kitöltés nem minta alapján történik, hanem a nyomtatószálat kaotikusan, össze-vissza folyatja a kitöltésen belül. Ez csökkenti a nyomtatási időt, azonban a struktúra stabilitása, és viselkedése kiszámíthatatlan." +#: fdmprinter.def.json +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Fali vonal szélessége" -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Lépésenkénti kitöltés" +#: fdmprinter.def.json +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "" -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "A spagetti kitöltést lépésenként végezze, vagy egyszerre, a nyomtatás végén extrudálja a töltőszálat. (beleömleszti, össze-vissza)" +#: fdmprinter.def.json +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Fal sebesség" -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Maximális kitöltési szög" +#: fdmprinter.def.json +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Falvastagság" -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "A maximális w.r.t. szög a nyomtatás belsejében, és a Z tengelye azokon a területeken, amelyeket utána spagetti töltelékkel kell kitölteni. Ennek az értéknek a csökkentésével több olyan szögben lévő részeket hoz létre, amit minden rétegben meg kell tölteni." +#: fdmprinter.def.json +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "" -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Kitöltés maximum magasság" +#: fdmprinter.def.json +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "" -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "A belső tér maximális magassága, amelyet felülről ki lehet tölteni." +#: fdmprinter.def.json +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "" -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Spagetti berakás" +#: fdmprinter.def.json +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "" -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "Az eltolás a falaktól, ahonnan a spagetti kitöltés kinyomtatásra kerül." +#: fdmprinter.def.json +msgctxt "shell label" +msgid "Walls" +msgstr "" -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Spagetti adagolás" +#: fdmprinter.def.json +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 "" -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Beállítja a spagetti kitöltés sűrűségét. Vegye figyelembe, hogy a töltési sűrűség csak a töltési minta sorközét szabályozza, nem pedig a spagetti kitöltés extrudálásának mértékét." +#: fdmprinter.def.json +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." -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Extra kitöltési térfogat" +#: fdmprinter.def.json +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 "Ha engedélyezve van, a kitöltési sorok nyomtatási sorrendje optimalizálódik a megtett távolság csökkentése érdekében. Az elért utazási idő csökkentése nagymértékben függ a szeletelt modelltől, a kitöltési mintától, a sűrűségtől stb. Vegye figyelembe, hogy egyes modellek esetében, amelyeknek sok kis kitöltési területe van, a modell szeletelésének ideje jelentősen megnőhet." -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Ez egy korrekció, amivel a spagetti kitöltéskor az extrudált teljes mennyiség beállítható." +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Ha engedélyezzük ezt az opciót, akkor a hűtőventillátor sebessége meg fog változni a külső kéreg felületeken, közvetlenül a támasz felett." -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "Az alapanyag GUID -je. Ez egy automatikus beállítás. " +#: fdmprinter.def.json +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 "Ha engedélyezve van, a z varrás koordinátái az egyes alkatrészek középpontjához viszonyítva vannak. Letiltva a koordináták meghatározzák az abszolút helyzetét a tárgyasztalon." -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Nyomtatószál park távolsága" +#: fdmprinter.def.json +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 "machine_filament_park_distance description" -#~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used." -#~ msgstr "Ez a távolság a fúvóka végétől mért távolság, ameddig a nyomtatószálat vissza szükséges húzni, ha nem használjuk az adott extrudert." +#: fdmprinter.def.json +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 "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "A nyomtatófej ábrázolása" +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "A hídfelszínek nyomtatásakor az extrudált anyagmennyiséget meg kell szorozni ezzel az értékkel." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "A harmadik hídréteg nyomtatásakor az extrudált anyag mennyiségét megszorozzuk ezzel az értékkel." + +#: fdmprinter.def.json +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 "Ha a nyomtató elérte a megadott minimális rétegidővel a minimális sebességet, és nem tud tovább lassulni, akkor a nyomtató emelje fel a fejet addig, amig amíg el nem éri a minimális rétegidőt." + +#: fdmprinter.def.json +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 "Ha a modellnek csak néhány rétegű függőleges rése van, akkor ebben a keskeny térben a rétegek körül általában felületnek kell lennie.Akkor engedélyezze ezt a beállítást, ha nem szeretné, hogy keletkezzen itt felület, és ha a függőleges rés nagyon kicsi itt.Ez javítja a nyomtatási és a szeletelési időt, de technikailag a töltőanyagot a levegőnek teszi ki, azaz a belső kitöltés itt nyitott fog maradni." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Szálvisszahúzáskor a Z tengely megemelkedik, így elemeli a fejet a tárgytól, ami megakadályozza, hogy a fúvóka hozzáérjen a már kinyomtatott részekhez utazáskor. Ez csökkenti annak az esélyét, hogy a fej lelökje, vagy felszakítsa a tárgyat a tárgyasztalról." + +#: fdmprinter.def.json +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 "Függetlenítés attól, hogy az X/Y támaszték távolsága felülbírálja-e a Z támasz távolságát, vagy fordítva. Amikor az X/Y felülbírálja a Z-t, az X/Y távolság elmozdíthatja a támaszt a modelltől, befolyásolva a tényleges Z távolságot a nyomtatványig. Ezt letilthatjuk, ha nem alkalmazzuk az X/Y távolságot a túlnyúlások körül." + +#: fdmprinter.def.json +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 "Ez a beállítás, az X és Y nullpontot a nyomtatási terület középpontjába helyezi." + +#: fdmprinter.def.json +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 "Azt határozza meg, hogy a végállás kapcsoló pozitív irányban van-e, vagy negatívban. (pozitív a magasabb X, negatív az alacsonyabb X koordinátát jelenti)" + +#: fdmprinter.def.json +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 "Azt határozza meg, hogy a végállás kapcsoló pozitív irányban van-e, vagy negatívban. (pozitív a magasabb Y, negatív az alacsonyabb Y koordinátát jelenti)" + +#: fdmprinter.def.json +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 "Azt határozza meg, hogy a végállás kapcsoló pozitív irányban van-e, vagy negatívban. (pozitív a magasabb Z, negatív az alacsonyabb Z koordinátát jelenti)" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Azt határozza meg, hogy van -e a gépen fűthető tárgyasztal. Ha ez az opció ki van kapcsolva, nem lehet belkapcsolni a tárgyasztal fűtését." + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Azt határozza meg, hogy a gép képes-e szabályozni a nyomtatási tér hőmérsékletét." + +#: fdmprinter.def.json +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 "A tárgyat a tárgyasztal közepére kell központosítani (0,0), annak a koordináta rendszernek a használata helyett, amelyben az objektum mentérse került." + +#: fdmprinter.def.json +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 "A hőmérsékletet a Cura-ból lehet szabályozni.Kapcsolja ki ezt, ha a fúvóka hőmérsékletének szabályozását kívülről szeretné végezni." + +#: fdmprinter.def.json +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 "Annak a meghatározása, hogy a tárgyasztal hőmérsékleti parancsokat tartalmaz-e a kódolás elején.Amikor a start_gcode már tartalmaz tárgyasztal hőmérsékleti parancsokat, a Cura frontend automatikusan letiltja ezt a beállítást." + +#: fdmprinter.def.json +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 "Annak a meghatározása, hogy a fúvóka hőmérsékleti parancsokat tartalmaz-e a kódolás elején.Amikor a start_gcode már tartalmaz fúvóka hőmérsékleti parancsokat, a Cura frontend automatikusan letiltja ezt a beállítást." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Parancs beszúrás arra, hogy a gép várakozzon, amíg a tárgyasztal eléri a beállított célhőmérsékletet." + +#: fdmprinter.def.json +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 "A nyomtatás előtt a nyomtatószálat előkészítio, és az olvadókamra nyomást felépíti úgy, hogy egy foltot nyomtat. A perem és a szoknya is viselkedhet így, hiszen annak a nyomtatása során is felépíthető a nyomás. Ebben az esetben ez a funkció nem működik, és ezzel időt takaríthatunk meg." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Megmutatja-e ennek a gépnek a különféle json-fájlokban leírt változatait." + +#: fdmprinter.def.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 "Használja -e a firmware szálvisszahúzási parancsokat (G10/G11), a G1 parancsokban használt E szálvisszahúzási parancsok helyett." + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Várakozás addig, amíg a nyomtatófej el nem éri a beállított célhőmérsékletet." + +#: fdmprinter.def.json +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Egyetlen kitöltési vonalszélesség." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Egy sor szélessége. Általában az egyes vonalak szélességének meg kell egyeznie a fúvóka szélességével. Ennek az értéknek minimális csökkentése azonban jobb nyomatokat eredményezhet." + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Egyetlen előtorony vonalszélesség." + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Egyetlen szoknya/perem vonalszélesség." + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Egyetlen támasz padlóvonal szélesség." + +#: fdmprinter.def.json +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Egyetlen támasz tetővonal szélesség." + +#: fdmprinter.def.json +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Egyetlen támasz vonalszélesség." + +#: fdmprinter.def.json +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Egyetlen alsó/felső sorszélessége." + +#: fdmprinter.def.json +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Egyetlen falvonal szélessége az összes fali vonalhoz, a legkülső fal kivételével." + +#: fdmprinter.def.json +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Egy fal vonalának szélessége." + +#: fdmprinter.def.json +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 "A vonalak szélessége a tutajalap rétegeiben. Ezeknek vastag vonalaknak kell lenniük, hogy elősegítsék a tárgyasztalhoz tapadást." + +#: fdmprinter.def.json +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 "A vonalak szélessége a középső tutajrétegben. Ha a második rétegnél többet extrudálunk, akkor a vonalak jobban tapadnak majd a tárgyasztalhoz." + +#: fdmprinter.def.json +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 "A vonalak szélessége a tutaj felső felületén. Ezek lehetnek vékony vonalak, így a tutaj teteje sima lesz." + +#: fdmprinter.def.json +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 "A külső falvonal szélessége. Ennek az értéknek a csökkentésével nagyobb szintű részletesség érhető el." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Törlési pont (kefe) X helyzete" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Z emelés sebesség" + +#: fdmprinter.def.json +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Inaktív fúvóka tisztítása az előtornyon" + +#: fdmprinter.def.json +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Törlési mozgás távolsága" + +#: fdmprinter.def.json +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Fúvóka tisztítás rétegek között" + +#: fdmprinter.def.json +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Törlés szünet" + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Törlés ismétlés száma" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Törlés visszahúzás távolság" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Törlés visszahúzás engedélyezése" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Törlés visszahúzás anyag kompenzáció" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Visszahúzási sebesség" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Törlés visszahúzás sebesség" + +#: fdmprinter.def.json +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Z emelés magasság" + +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Kitöltésen belül" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "X végállás pozitív irányban" + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "Az az X helyzet, ahol a törlési szkript elindul." + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y felülbírálás Z-re" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Y végállás pozitív irányban" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Z végállás pozitív irányban" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Z emelés extruder váltás után" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Z emelés magassága extruder váltás után" + +#: fdmprinter.def.json +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Z emelés magasság" + +#: fdmprinter.def.json +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Z emelés nyomtatott részeknél" + +#: fdmprinter.def.json +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Z emelés sebesség" + +#: fdmprinter.def.json +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Z emelés visszahúzáskor" + +#: fdmprinter.def.json +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Z varrat igazítás" + +#: fdmprinter.def.json +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Z varrat helyzet" + +#: fdmprinter.def.json +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Relatív Z varrat" + +#: fdmprinter.def.json +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z varrat X" + +#: fdmprinter.def.json +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z varrat Y" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z felülbírálás X/Y-ra" + +#: fdmprinter.def.json +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Cikcakk" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Cikcakk" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Cikcakk" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Cikcakk" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Cikcakk" + +#: fdmprinter.def.json +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Cikcakk" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Cikcakk" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Cikcakk" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Cikcakk" + +#: fdmprinter.def.json +msgctxt "travel description" +msgid "travel" +msgstr "fej átpozícionálás" #~ msgctxt "machine_head_polygon description" #~ msgid "A 2D silhouette of the print head (fan caps excluded)." #~ msgstr "A nyomtatófej 2D -s árnyéka (ventillátor nélkül)." -#~ msgctxt "retraction_enable description" -#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " -#~ msgstr "Visszahúzza a nyomtatószálat, amikor a fúvóka mozog azon a területek felett, ahol nincs nyomtatás. " +#~ msgctxt "machine_head_with_fans_polygon description" +#~ msgid "A 2D silhouette of the print head (fan caps included)." +#~ msgstr "A nyomtatófej 2D -s árnyéka (ventillátorral együtt)." -#~ msgctxt "support_xy_distance_overhang description" -#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " -#~ msgstr "A támasz X/Y távolsága az alátamasztott kinyúlástól. " +#~ msgctxt "spaghetti_infill_extra_volume description" +#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." +#~ msgstr "Ez egy korrekció, amivel a spagetti kitöltéskor az extrudált teljes mennyiség beállítható." -#~ msgctxt "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "A támasz interfész minimális területe. Az ezen az értéken kisebb területtel rendelkező támaszokat nem generálják." +#~ msgctxt "adaptive_layer_height_threshold label" +#~ msgid "Adaptive Layers Threshold" +#~ msgstr "Küszöbérték" -#~ 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 not be generated." -#~ msgstr "A támasztető interfész minimális területe. Ha a terület kevesebbre jön ki a megadott értéktől, az nem lesz legenerálva." - -#~ 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 not be generated." -#~ msgstr "A támaszaljzat interfész minimális területe. Ha a terület kevesebbre jön ki a megadott értéktől, az nem lesz legenerálva." - -#~ msgctxt "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "korrekció kategóriák" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "fekete mágia kategória" - -#~ 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 only possible if 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 "Beállíthatjuk, hogy az összes modellt egy rétegben, egyszerre nyomtassa, vagy egyesével, egymás után nyomtatódjanak ki. Ha egymás után nyomtatódnak, akkor a modellek teljes egészében kinyomtatódnak, majd ez után lép át a következő modellre. Azonban ez csak akkor hasznáható, ha a modellek megfelelő távolságra helyezkednek el egymástól, és a fej nem tud beleütközni egy már kész modellbe.Továbbá arra is ügyelni kell, hogy az X/Y kinematikai rendszer (kereszttengelyek)magasságánál alacsonyabbak legyenek a modellek." - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "ezek még kísérleti stádiumban lévő funkciók!" - -#~ msgctxt "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "Fal vastagság" - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "A faágak falainak vastagsága. A vastagabb falak nyomtatása hosszabb ideig tart, de nem törik le olyan könnyen." - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "Fal vonal szám" - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "A faágak falainak száma. A vastagabb falak nyomtatása hosszabb ideig tart, de nem törik le olyan könnyen." +#~ msgctxt "spaghetti_flow description" +#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." +#~ msgstr "Beállítja a spagetti kitöltés sűrűségét. Vegye figyelembe, hogy a töltési sűrűség csak a töltési minta sorközét szabályozza, nem pedig a spagetti kitöltés extrudálásának mértékét." #~ msgctxt "skin_alternate_rotation label" #~ msgid "Alternate Skin Rotation" @@ -6960,62 +6590,552 @@ msgstr "A modellre alkalmazandó átalakítási mátrix, amikor azt fájlból t #~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." #~ msgstr "Az alsó/felső felületi kéregvonalak nyomtatási irányát változtatja meg.Általában ezek az irányok csak átlósak, azonban ez a beállítás hozzáadja a csak X és csak Y irányokat is." -#~ msgctxt "flow_rate_max_extrusion_offset label" -#~ msgid "Flow rate compensation max extrusion offset" -#~ msgstr "Maximális extrudálási eltolás adagoláskompenzáció" +#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" +#~ msgid "Apply the extruder offset to the coordinate system." +#~ msgstr "Alkalmazza az extruder eltolását a koordinátarendszerre vonatkoztatva." -#~ msgctxt "flow_rate_max_extrusion_offset description" -#~ msgid "The maximum distance in mm to compensate." -#~ msgstr "A maximális távolság mm -ben történő kompenzációja." +#~ msgctxt "material_flow_dependent_temperature label" +#~ msgid "Auto Temperature" +#~ msgstr "Automatikus hőfok" -#~ msgctxt "flow_rate_extrusion_offset_factor label" -#~ msgid "Flow rate compensation factor" -#~ msgstr "Adagoláskompenzáció faktor" +#~ msgctxt "material_flow_dependent_temperature description" +#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." +#~ msgstr "Automatikusan változtassuk a hőmérsékletet az egyes rétegeknél, annak függvényében, hogy milyen az adott réteg átlagos adagolási sebessége." -#~ msgctxt "flow_rate_extrusion_offset_factor description" -#~ msgid "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "Az adagolási sebesség szorzótényezője -> távolságtranszláció." +#~ msgctxt "wireframe_strategy option compensate" +#~ msgid "Compensate" +#~ msgstr "Kompenzáció" -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "Küszöbérték" +#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" +#~ msgid "Compensate Inner Wall Overlaps" +#~ msgstr "Kompenzálja a belső fal átfedéseit" -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ msgstr "Annak a küszöbértéke, hogy kisebb legyen a rétegmagasság, vagy sem.Ezt a számot hasonlítják össze a réteg legmeredekebb meredekségével." +#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" +#~ msgid "Compensate Outer Wall Overlaps" +#~ msgstr "Kompenzálja a külső fal átfedéseit" -#~ 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." -#~ msgstr "Ettől a szögtől nagyobb mértékben túlnyúló falakat, a túlnyúló falbeállítások segítségével nyomtatjuk ki. Ha az érték 90, egyetlen falat sem tekintünk túlnyúlásnak." +#~ msgctxt "travel_compensate_overlapping_walls_enabled label" +#~ msgid "Compensate Wall Overlaps" +#~ msgstr "Fali átlapolások kompenzálása" -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. 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 "Ha ezt használjuk, akkor lesz a G-kód -ban egy fúvóka törlés rétegváltáskor.A beállítás befolyásolhatja a visszahúzást rétegváltáskor.Kérjük használa a törlés visszahúzáskor beállításokat, ha felügyelni szeretné ezt olyan rétegeken, ahol a törlés kódrészlet működni fog." +#~ msgctxt "travel_compensate_overlapping_walls_enabled description" +#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." +#~ msgstr "Kompenzálja a száladagolást a fal azon részeinél, ahol az már elkészült." -#~ msgctxt "max_extrusion_before_wipe description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "A maximális anyagmennyiség, amit ki tudunk extrudálni mielőtt a fűvókatörlés végre lesz hajtva." +#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" +#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." +#~ msgstr "Kompenzálja a száladagolást a belső fal azon részeinél, ahol az már elkészült." -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "Visszatöltési sebesség" +#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" +#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." +#~ msgstr "Kompenzálja a száladagolást a külső fal azon részeinél, ahol az már elkészült." -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "Törlési Z emelés visszahúzáskor" +#~ msgctxt "wireframe_top_jump description" +#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." +#~ msgstr "Kicsi csomót hoz létre egy felfelé mutató vonal tetején, hogy az egymást követő vízszintes réteg nagyobb eséllyel csatlakozzon hozzá. Csak a huzalnyomásra vonatkozik." -#~ msgctxt "wipe_hop_enable 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 "Amikor a szál visszahúzódik, akkor a Z tengelyen történik egy emelés, hogy a nyomtatófej és a tárgy között legyen egy Z irányú hézag.Ez megakadályozza, hogy a fúvóka beleüzközzön, és esetleg elmozdítsa a testet a tárgylemezről." +#~ msgctxt "wireframe_bottom_delay description" +#~ msgid "Delay time after a downward move. Only applies to Wire Printing." +#~ msgstr "Késleltesse az időt lefelé történő mozgatás után, hogy a lefelé mutató vonal megszilárduljon. Csak a huzalnyomásra vonatkozik." -#~ 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 adhestion and accuracy." -#~ msgstr "A kisméretű elemeket a normál nyomtatási sebesség megadott százalékában nyomtatják ki. A lassabb nyomtatás segíthet a tapadásban és a pontosságban." +#~ msgctxt "wireframe_top_delay description" +#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." +#~ msgstr "Késleltesse az időt felfelé történő mozgatás után, hogy a felfelé mutató vonal megszilárduljon. Csak a huzalnyomásra vonatkozik." + +#~ msgctxt "wireframe_flat_delay description" +#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." +#~ msgstr "Késleltetési idő két vízszintes szegmens között. Egy ilyen késleltetés bevezetése jobb tapadást okozhat az előző rétegekhez a csatlakozási pontokon, míg a túl hosszú késleltetések megereszkedést okozhatnak. Csak a huzalnyomásra vonatkozik." + +#~ msgctxt "infill_mesh_order description" +#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "Meghatározza, hogy melyik kitöltési háló helyezkedjen el egy másik kitöltési hálón. A magasabb rendű kitöltési háló megváltoztatja az alacsonyabb rendű és normál hálókat." + +#~ msgctxt "wireframe_nozzle_clearance description" +#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." +#~ msgstr "A fúvóka és a vízszintesen lefelé mutató vonalak közötti távolság. A nagyobb hézag átlósan lefelé mutató vonalakat eredményez, kevésbé meredek szöggel, ami viszont kevésbé felfelé irányuló kapcsolatokat eredményez a következő réteggel. Csak a huzalnyomásra vonatkozik." + +#~ msgctxt "wireframe_up_half_speed description" +#~ msgid "" +#~ "Distance of an upward move which is extruded with half speed.\n" +#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." +#~ msgstr "A felfelé irányuló mozgás távolsága, amelyet fél sebességgel extrudálunk. Ez jobb tapadást eredményez az előző rétegekhez, miközben az anyag nem melegíti túl az anyagot ezekben a rétegekben. Csak a huzalnyomásra vonatkozik." + +#~ msgctxt "support_xy_distance_overhang description" +#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " +#~ msgstr "A támasz X/Y távolsága az alátamasztott kinyúlástól. " + +#~ msgctxt "wireframe_fall_down description" +#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Az a távolság, amellyel az anyag leesik egy felfelé történő extrudálás után. Ezt a távolságot tudjuk itt kompenzálni. Csak a huzalnyomásra vonatkozik." + +#~ msgctxt "wireframe_drag_along description" +#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Az a távolság, ameddig egy felfelé irányuló extrudálás anyagát az átlósan lefelé irányuló extrudálással együtt meghúzzuk. Ezt a távolságot kompenzálni kell. Csak a huzalnyomásra vonatkozik." + +#~ msgctxt "speed_equalize_flow_enabled label" +#~ msgid "Equalize Filament Flow" +#~ msgstr "Adagolás kiegyenlítés" + +#~ msgctxt "fill_perimeter_gaps option everywhere" +#~ msgid "Everywhere" +#~ msgstr "Mindenhol" + +#~ msgctxt "machine_filament_park_distance label" +#~ msgid "Filament Park Distance" +#~ msgstr "Nyomtatószál park távolsága" + +#~ msgctxt "fill_perimeter_gaps label" +#~ msgid "Fill Gaps Between Walls" +#~ msgstr "Falak közötti rések kitöltése" + +#~ msgctxt "fill_perimeter_gaps description" +#~ msgid "Fills the gaps between walls where no walls fit." +#~ msgstr "Tölti ki a falak között azokat a réseket, ahol a falak nem találkoznak." + +#~ msgctxt "filter_out_tiny_gaps label" +#~ msgid "Filter Out Tiny Gaps" +#~ msgstr "Apró hézagok kiszűrése" + +#~ msgctxt "filter_out_tiny_gaps description" +#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." +#~ msgstr "Szűrje ki az apró hézagokat, hogy csökkentse a hibák megjelenését a modell külsején." #~ msgctxt "small_feature_speed_factor_0 label" #~ msgid "First Layer Speed" #~ msgstr "Első réteg sebesség" +#~ msgctxt "wireframe_flow_connection description" +#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." +#~ msgstr "Ádagoláskompenzáció felfelé vagy lefelé irányban haladva. Csak a huzalnyomásra vonatkozik." + +#~ msgctxt "wireframe_flow_flat description" +#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." +#~ msgstr "Ádagoláskompenzáció vízszintes vonalak nyomtatásakor. Csak a huzalnyomásra vonatkozik." + +#~ msgctxt "wireframe_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." +#~ msgstr "Ádagoláskompenzáció: az extrudált anyag mennyiségét megszorozzuk ezzel az értékkel. Csak a huzalnyomásra vonatkozik." + +#~ msgctxt "flow_rate_extrusion_offset_factor label" +#~ msgid "Flow rate compensation factor" +#~ msgstr "Adagoláskompenzáció faktor" + +#~ msgctxt "flow_rate_max_extrusion_offset label" +#~ msgid "Flow rate compensation max extrusion offset" +#~ msgstr "Maximális extrudálási eltolás adagoláskompenzáció" + +#~ msgctxt "material_guid description" +#~ msgid "GUID of the material. This is set automatically. " +#~ msgstr "Az alapanyag GUID -je. Ez egy automatikus beállítás. " + +#~ msgctxt "support_tree_enable description" +#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." +#~ msgstr "Generáljon fához hasonló támasz ágakkal, amelyek megtámasztják a nyomtatványt.Ez csökkentheti az anyagfelhasználást és a nyomtatási időt, de jelentősen megnöveli a szeletelési időt." + +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "Hány lépést kell a motornak megtenni ahhoz, hogy 1 mm mozgás történjen a nyomtatószál adagolásakor." + +#~ msgctxt "slicing_tolerance description" +#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." +#~ msgstr "A szeleteléskor az egyes szeletek a tárgy egy adott pontjában haladnak át, keresztben. Az adott réteg területei úgy alakulnak ki, hogy az adott réteg középpontjában metszi-e a szelet felületét. (Középső)Alternatív megoldásként az egyes rétegeknek lehetnek olyan területei, amelyek a térfogat beljesébe esnek a teljes rétegmagasság alatt (Kizáró).A rétegnek lehetnek olyan területei, amelyek a réteg bármely pontján belülre esnek (Befoglaló).A kizárólagos megtartja a legtöbb részletet, amíg a befoglalt a legjobban illeszkedik. A középső igényli a legkevesebb feldolgozási időt." + +#~ msgctxt "wall_min_flow_retract description" +#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +#~ msgstr "Ha engedélyezve van, akkor a visszahúzás van elsődlegesen használva a fésülés helyett, s így helyettesíti azokat a falakat, amiknek az anyag szükséglete az adagolási küszöb alatt lenne." + +#~ msgctxt "infill_mesh_order label" +#~ msgid "Infill Mesh Order" +#~ msgstr "Kitöltés háló rend" + +#~ msgctxt "wireframe_strategy option knot" +#~ msgid "Knot" +#~ msgstr "Csomó" + +#~ msgctxt "limit_support_retractions label" +#~ msgid "Limit Support Retractions" +#~ msgstr "Támasz visszahúzás korlátozása" + +#~ msgctxt "machine_head_polygon label" +#~ msgid "Machine Head Polygon" +#~ msgstr "A nyomtatófej ábrázolása" + +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "Adagolás maximum" + +#~ msgctxt "speed_equalize_flow_max label" +#~ msgid "Maximum Speed for Flow Equalization" +#~ msgstr "Maximális adagolás kompenzáció sebesség" + +#~ msgctxt "max_extrusion_before_wipe description" +#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." +#~ msgstr "A maximális anyagmennyiség, amit ki tudunk extrudálni mielőtt a fűvókatörlés végre lesz hajtva." + +#~ msgctxt "speed_equalize_flow_max description" +#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." +#~ msgstr "A maximális nyomtatási sebesség, amire a nyomtató kompenzálni tudja az adagolást." + +#~ msgctxt "wall_min_flow label" +#~ msgid "Minimum Wall Flow" +#~ msgstr "Minimális fal adagolás" + +#~ msgctxt "wall_min_flow description" +#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." +#~ msgstr "A fali vonalak minimális adagolása. A fal átlapolás kompenzáció csökkenti az adagolást, amikor a már meglévő falakhoz közel nyomtatunk. Azoknak a falaknak, ahol az adagolási sebesség kissebb lenne, mint ez a megadott érték, az útvonalat módosítani kell. Ennek a beállításnak a használatakor engedélyezni kell a a fal átfedés kompenzációját, és a külső falakat a belsők előtt kell nyomtatni." + +#~ msgctxt "minimum_interface_area description" +#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." +#~ msgstr "A támasz interfész minimális területe. Az ezen az értéken kisebb területtel rendelkező támaszokat nem generálják." + +#~ 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 not be generated." +#~ msgstr "A támaszaljzat interfész minimális területe. Ha a terület kevesebbre jön ki a megadott értéktől, az nem lesz legenerálva." + +#~ 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 not be generated." +#~ msgstr "A támasztető interfész minimális területe. Ha a terület kevesebbre jön ki a megadott értéktől, az nem lesz legenerálva." + +#~ msgctxt "fill_perimeter_gaps option nowhere" +#~ msgid "Nowhere" +#~ msgstr "Seholsem" + +#~ msgctxt "limit_support_retractions description" +#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." +#~ msgstr "A támasz és a normál tárgyvonalak között kihagyja a visszahúzást. Ez időt takaríthat meg, de ez szálazást eredményezhet." + +#~ msgctxt "outer_inset_first label" +#~ msgid "Outer Before Inner Walls" +#~ msgstr "Külső falak a belsők előtt" + +#~ msgctxt "wireframe_straight_before_down description" +#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." +#~ msgstr "Az átlósan lefelé mutató vonal százaléka, amelyet egy vízszintes vonaldarab fed le. Ez megakadályozhatja a felfelé mutató vonalak legfelső pontjának elhajlását. Csak a huzalnyomásra vonatkozik." + +#~ msgctxt "wall_min_flow_retract label" +#~ msgid "Prefer Retract" +#~ msgstr "Visszahúzás preferálása" + +#~ msgctxt "wireframe_enabled description" +#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." +#~ msgstr "Csak a külső felületet nyomtatja, egy ritkás hevederezett szerkezettel, a levegőben. Ez úgy valósul meg, hogy a modell kontúrjai vízszintesen kinyomtatásra kerülnek meghatározott Z intervallumban, amiket felfelé, és átlósan lefelé egyenesen összeköt." + +#~ msgctxt "spaghetti_infill_enabled description" +#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." +#~ msgstr "Ez a kitöltés nem minta alapján történik, hanem a nyomtatószálat kaotikusan, össze-vissza folyatja a kitöltésen belül. Ez csökkenti a nyomtatási időt, azonban a struktúra stabilitása, és viselkedése kiszámíthatatlan." + +#~ msgctxt "speed_equalize_flow_enabled description" +#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." +#~ msgstr "A normál vonalaktól vékonyabb vonalak nyomtatásakor a sebességet növelni fogja, miközben az extrudálás sebességét nem változatja. Így előfordulhat, hogy a modell vékonyabb darabjainál a vonalak szélessége kissebb lesz, mint a megadott.Ez a beállítás szabályozza az ilyen vonalaknak a nyomatatási sebesség változását." + +#~ msgctxt "outer_inset_first description" +#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." +#~ msgstr "A falakat külső, majd belső sorrendben nyomtatja, ha ez engedélyezve van.Ez hozzájárulhat a X és Y méret pontosságának javításához, különösen nagy viszkozitású műanyag, például ABS használatakor. Ez azonban csökkentheti a külső felület nyomtatási minőségét, különösen az átlapolásoknál." + +#~ msgctxt "wireframe_strategy option retract" +#~ msgid "Retract" +#~ msgstr "Visszahúzás" + +#~ msgctxt "retraction_enable description" +#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " +#~ msgstr "Visszahúzza a nyomtatószálat, amikor a fúvóka mozog azon a területek felett, ahol nincs nyomtatás. " + +#~ msgctxt "wipe_retraction_prime_speed label" +#~ msgid "Retraction Prime Speed" +#~ msgstr "Visszatöltési sebesség" + +#~ msgctxt "shell label" +#~ msgid "Shell" +#~ msgstr "Héj" + +#~ msgctxt "material_shrinkage_percentage label" +#~ msgid "Shrinkage Ratio" +#~ msgstr "Zsugorodási arány" + +#~ msgctxt "material_shrinkage_percentage description" +#~ msgid "Shrinkage ratio in percentage." +#~ msgstr "ZSugorodási arány százalékban megadva." + #~ 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 adhestion and accuracy." #~ msgstr "Az első réteg kis elemeit a normál nyomtatási sebesség megadott százalékában nyomtatják ki. A lassabb nyomtatás segíthet a tapadásban és a pontosságban." + +#~ 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 adhestion and accuracy." +#~ msgstr "A kisméretű elemeket a normál nyomtatási sebesség megadott százalékában nyomtatják ki. A lassabb nyomtatás segíthet a tapadásban és a pontosságban." + +#~ msgctxt "spaghetti_flow label" +#~ msgid "Spaghetti Flow" +#~ msgstr "Spagetti adagolás" + +#~ msgctxt "spaghetti_infill_enabled label" +#~ msgid "Spaghetti Infill" +#~ msgstr "Spagetti kitöltés" + +#~ msgctxt "spaghetti_infill_extra_volume label" +#~ msgid "Spaghetti Infill Extra Volume" +#~ msgstr "Extra kitöltési térfogat" + +#~ msgctxt "spaghetti_max_height label" +#~ msgid "Spaghetti Infill Maximum Height" +#~ msgstr "Kitöltés maximum magasság" + +#~ msgctxt "spaghetti_infill_stepped label" +#~ msgid "Spaghetti Infill Stepping" +#~ msgstr "Lépésenkénti kitöltés" + +#~ msgctxt "spaghetti_inset label" +#~ msgid "Spaghetti Inset" +#~ msgstr "Spagetti berakás" + +#~ msgctxt "spaghetti_max_infill_angle label" +#~ msgid "Spaghetti Maximum Infill Angle" +#~ msgstr "Maximális kitöltési szög" + +#~ msgctxt "wireframe_printspeed description" +#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." +#~ msgstr "A fúvóka mozgásának sebessége az anyag extrudálásakor. Csak a huzalnyomtatásra vonatkozik." + +#~ msgctxt "wireframe_printspeed_down description" +#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." +#~ msgstr "A vonalak lefelé, Z irányban 'a levegőben' történő nyomtatási sebessége. Csak a huzalnyomásra vonatkozik." + +#~ msgctxt "wireframe_printspeed_up description" +#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." +#~ msgstr "A vonalak felfelé, Z irányban 'a levegőben' történő nyomtatási sebessége. Csak a huzalnyomásra vonatkozik." + +#~ msgctxt "wireframe_printspeed_bottom description" +#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." +#~ msgstr "Az első réteg nyomtatásának sebessége, amely az egyetlen réteg, amely megérinti a tárgyasztalt. Csak a huzalnyomásra vonatkozik." + +#~ msgctxt "wireframe_printspeed_flat description" +#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." +#~ msgstr "A modell kontúrjának vizszintes irnyban történő nyomtatási sebessége.Csak a huzalnyomásra vonatkozik." + +#~ msgctxt "wireframe_strategy description" +#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." +#~ msgstr "Stratégia annak biztosítására, hogy két egymást követő réteg kapcsolódjon minden egyes csatlakozási ponthoz. A visszahúzás lehetővé teszi, hogy a felfelé mutató vonalak a megfelelő helyzetben megkeményedjenek, de ez az adagolókerék megcsúszását, és a szál eldarálását okozhatja. Egy felfelé mutató vonal végén csomót lehet készíteni, hogy növeljük az ahhoz való csatlakozás eredményességét, és hagyjuk, hogy a vonal vége lehűljön; ez azonban lassú nyomtatási sebességet igényelhet. Egy másik stratégia, a felfelé mutató vonal tetejének elmaradásának kompenzálása; azonban a vonalak nem mindig esnek le a várt módon." + +#~ msgctxt "wireframe_roof_inset description" +#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." +#~ msgstr "A beépített távolság, amikor a tetőtől körvonalakat bekapcsolnak. Csak a huzalnyomásra vonatkozik." + +#~ msgctxt "wireframe_roof_drag_along description" +#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "A belső vonal végdarabjának távolsága, amely elhúzódik, amikor visszamegy a tető külső körvonalaihoz. Ezt a távolságot kompenzálni kell. Csak a huzalnyomásra vonatkozik." + +#~ msgctxt "wireframe_roof_fall_down description" +#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "A 'vékony, levegőben' nyomtatott vízszintes tetővonalak nyomtatáskor csökkennek a távolságok. Ezeket a távolságokat kompenzálni kell. Csak a huzalnyomásra vonatkozik." + +#~ msgctxt "wireframe_height description" +#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." +#~ msgstr "Két vízszintes rész közötti felfelé és átlósan lefelé mutató vonalak magassága. Ez határozza meg a nettó szerkezet általános sűrűségét. Csak a huzalnyomásra vonatkozik." + +#~ msgctxt "spaghetti_max_infill_angle description" +#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." +#~ msgstr "A maximális w.r.t. szög a nyomtatás belsejében, és a Z tengelye azokon a területeken, amelyeket utána spagetti töltelékkel kell kitölteni. Ennek az értéknek a csökkentésével több olyan szögben lévő részeket hoz létre, amit minden rétegben meg kell tölteni." + +#~ msgctxt "flow_rate_max_extrusion_offset description" +#~ msgid "The maximum distance in mm to compensate." +#~ msgstr "A maximális távolság mm -ben történő kompenzációja." + +#~ msgctxt "spaghetti_max_height description" +#~ msgid "The maximum height of inside space which can be combined and filled from the top." +#~ msgstr "A belső tér maximális magassága, amelyet felülről ki lehet tölteni." + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "Az öntőforma külseje és a modell külső héja közötti minimális távolság." + +#~ msgctxt "flow_rate_extrusion_offset_factor description" +#~ msgid "The multiplication factor for the flow rate -> distance translation." +#~ msgstr "Az adagolási sebesség szorzótényezője -> távolságtranszláció." + +#~ msgctxt "support_tree_wall_count description" +#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." +#~ msgstr "A faágak falainak száma. A vastagabb falak nyomtatása hosszabb ideig tart, de nem törik le olyan könnyen." + +#~ msgctxt "spaghetti_inset description" +#~ msgid "The offset from the walls from where the spaghetti infill will be printed." +#~ msgstr "Az eltolás a falaktól, ahonnan a spagetti kitöltés kinyomtatásra kerül." + +#~ 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." +#~ msgstr "A kitöltés mintázata. A vonal és a cikcakk felváltva cserélgeti az irányát rétegenként, csökkentve ezzel az anyagköltséget. A rács, háromszög, háromhatszög,kocka, oktett, negyed kocka, kereszt és koncentrikus mintákat minden rétegben nyomtatjuk. A gyroid, a kocka, a negyedkocka, és az oktett töltés minden rétegben változik, és így egyenletesebb az erő eloszlása minden irányban." + +#~ msgctxt "speed_layer_0 description" +#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." +#~ msgstr "A kezdő réteg sebessége. Az alacsonyabb érték segít növelni a tapadást a tárgyasztalhoz." + +#~ msgctxt "material_bed_temperature_layer_0 description" +#~ msgid "The temperature used for the heated build plate at the first layer." +#~ msgstr "A tárgyasztal erre a hőmérsékletre fűt fel az első réteg nyomtatásához." + +#~ msgctxt "material_bed_temperature description" +#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." +#~ msgstr "A tárgyasztal hőmérséklete. Ha ez az érték 0, akkor tárgyasztal hőmérséklete nem lesz beállítva, azaz nem fogja fűteni a gép." + +#~ msgctxt "support_tree_wall_thickness description" +#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." +#~ msgstr "A faágak falainak vastagsága. A vastagabb falak nyomtatása hosszabb ideig tart, de nem törik le olyan könnyen." + +#~ msgctxt "adaptive_layer_height_threshold description" +#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." +#~ msgstr "Annak a küszöbértéke, hogy kisebb legyen a rétegmagasság, vagy sem.Ezt a számot hasonlítják össze a réteg legmeredekebb meredekségével." + +#~ msgctxt "wireframe_roof_outer_delay description" +#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." +#~ msgstr "A tetővé váló lyuk külső kerületein eltöltött idő. A hosszabb idő biztosítja a jobb kapcsolódást. Csak a huzalnyomásra vonatkozik." + +#~ 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, while an angle of 90° is vertical." +#~ msgstr "A tárgy alsó/felső felületén, az itt megadott szögnél nagyobb szög esetén a kéreg nem lesz kibővítve. Így elkerülhető, hogy a keskeny kéregrészek ne legyenek kibővítve, amik akkor jönnek létre, mikor a modell felülete közel függőleges szögben áll. A 0° szög a vízszintes, míg a 90° szög a függőlegest jelenti." + +#~ msgctxt "support_tree_enable label" +#~ msgid "Tree Support" +#~ msgstr "Fa támasz" + +#~ msgctxt "support_tree_wall_count label" +#~ msgid "Tree Support Wall Line Count" +#~ msgstr "Fal vonal szám" + +#~ msgctxt "support_tree_wall_thickness label" +#~ msgid "Tree Support Wall Thickness" +#~ msgstr "Fal vastagság" + +#~ msgctxt "wireframe_bottom_delay label" +#~ msgid "WP Bottom Delay" +#~ msgstr "Alsó késleltetés" + +#~ msgctxt "wireframe_printspeed_bottom label" +#~ msgid "WP Bottom Printing Speed" +#~ msgstr "Aljzat nyomtatási sebesség" + +#~ msgctxt "wireframe_flow_connection label" +#~ msgid "WP Connection Flow" +#~ msgstr "Kapcsolódási adagolás" + +#~ msgctxt "wireframe_height label" +#~ msgid "WP Connection Height" +#~ msgstr "Kapcsolódási magasság" + +#~ msgctxt "wireframe_printspeed_down label" +#~ msgid "WP Downward Printing Speed" +#~ msgstr "Lefelé nyomtatási sebesség" + +#~ msgctxt "wireframe_drag_along label" +#~ msgid "WP Drag Along" +#~ msgstr "Húzási távolság" + +#~ msgctxt "wireframe_up_half_speed label" +#~ msgid "WP Ease Upward" +#~ msgstr "Emelés távolság" + +#~ msgctxt "wireframe_fall_down label" +#~ msgid "WP Fall Down" +#~ msgstr "Ejtés távolság" + +#~ msgctxt "wireframe_flat_delay label" +#~ msgid "WP Flat Delay" +#~ msgstr "Vízszintes késleltetés" + +#~ msgctxt "wireframe_flow_flat label" +#~ msgid "WP Flat Flow" +#~ msgstr "Vízszintes adagolás" + +#~ msgctxt "wireframe_flow label" +#~ msgid "WP Flow" +#~ msgstr "Adagolás" + +#~ msgctxt "wireframe_printspeed_flat label" +#~ msgid "WP Horizontal Printing Speed" +#~ msgstr "Vízszintes nyomtatási sebesség" + +#~ msgctxt "wireframe_top_jump label" +#~ msgid "WP Knot Size" +#~ msgstr "Csomó méret" + +#~ msgctxt "wireframe_nozzle_clearance label" +#~ msgid "WP Nozzle Clearance" +#~ msgstr "Fúvúka hézag" + +#~ msgctxt "wireframe_roof_drag_along label" +#~ msgid "WP Roof Drag Along" +#~ msgstr "Fedél húzás" + +#~ msgctxt "wireframe_roof_fall_down label" +#~ msgid "WP Roof Fall Down" +#~ msgstr "Fedél ejtés" + +#~ msgctxt "wireframe_roof_inset label" +#~ msgid "WP Roof Inset Distance" +#~ msgstr "Fedél betét távolság" + +#~ msgctxt "wireframe_roof_outer_delay label" +#~ msgid "WP Roof Outer Delay" +#~ msgstr "Fedél külső késleltetése" + +#~ msgctxt "wireframe_printspeed label" +#~ msgid "WP Speed" +#~ msgstr "Sebesség" + +#~ msgctxt "wireframe_straight_before_down label" +#~ msgid "WP Straighten Downward Lines" +#~ msgstr "Vonal egyenesítés lefelé" + +#~ msgctxt "wireframe_strategy label" +#~ msgid "WP Strategy" +#~ msgstr "Startégia" + +#~ msgctxt "wireframe_top_delay label" +#~ msgid "WP Top Delay" +#~ msgstr "Felső késleltetés" + +#~ msgctxt "wireframe_printspeed_up label" +#~ msgid "WP Upward Printing Speed" +#~ msgstr "Felfelé nyomtatási sebesség" + +#~ 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." +#~ msgstr "Ettől a szögtől nagyobb mértékben túlnyúló falakat, a túlnyúló falbeállítások segítségével nyomtatjuk ki. Ha az érték 90, egyetlen falat sem tekintünk túlnyúlásnak." + +#~ msgctxt "retraction_combing_max_distance description" +#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." +#~ msgstr "Ha ez az érték nem nulla, akkor a megadott értéktől hosszabb utazáskor nyomtatószál visszahúzás fog történni." + +#~ msgctxt "wipe_hop_enable 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 "Amikor a szál visszahúzódik, akkor a Z tengelyen történik egy emelés, hogy a nyomtatófej és a tárgy között legyen egy Z irányú hézag.Ez megakadályozza, hogy a fúvóka beleüzközzön, és esetleg elmozdítsa a testet a tárgylemezről." + +#~ msgctxt "clean_between_layers description" +#~ msgid "Whether to include nozzle wipe G-Code between layers. 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 "Ha ezt használjuk, akkor lesz a G-kód -ban egy fúvóka törlés rétegváltáskor.A beállítás befolyásolhatja a visszahúzást rétegváltáskor.Kérjük használa a törlés visszahúzáskor beállításokat, ha felügyelni szeretné ezt olyan rétegeken, ahol a törlés kódrészlet működni fog." + +#~ 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 only possible if 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 "Beállíthatjuk, hogy az összes modellt egy rétegben, egyszerre nyomtassa, vagy egyesével, egymás után nyomtatódjanak ki. Ha egymás után nyomtatódnak, akkor a modellek teljes egészében kinyomtatódnak, majd ez után lép át a következő modellre. Azonban ez csak akkor hasznáható, ha a modellek megfelelő távolságra helyezkednek el egymástól, és a fej nem tud beleütközni egy már kész modellbe.Továbbá arra is ügyelni kell, hogy az X/Y kinematikai rendszer (kereszttengelyek)magasságánál alacsonyabbak legyenek a modellek." + +#~ msgctxt "spaghetti_infill_stepped description" +#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." +#~ msgstr "A spagetti kitöltést lépésenként végezze, vagy egyszerre, a nyomtatás végén extrudálja a töltőszálat. (beleömleszti, össze-vissza)" + +#~ msgctxt "wipe_hop_enable label" +#~ msgid "Wipe Z Hop When Retracted" +#~ msgstr "Törlési Z emelés visszahúzáskor" + +#~ msgctxt "wireframe_enabled label" +#~ msgid "Wire Printing" +#~ msgstr "Huzalváz nyomtatás" + +#~ msgctxt "blackmagic description" +#~ msgid "category_blackmagic" +#~ msgstr "fekete mágia kategória" + +#~ msgctxt "meshfix description" +#~ msgid "category_fixes" +#~ msgstr "korrekció kategóriák" + +#~ msgctxt "experimental description" +#~ msgid "experimental!" +#~ msgstr "ezek még kísérleti stádiumban lévő funkciók!" diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index ad39d6c85e..6c6f05671d 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -1,12 +1,14 @@ # Cura -# Copyright (C) 2022 Ultimaker B.V. +# Copyright (C) 2022 UltiMaker. # This file is distributed under the same license as the Cura package. +# Ultimaker , 2022. # +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0200\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-04-06 15:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,236 +18,114 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -msgctxt "@label" -msgid "Unknown" -msgstr "Sconosciuto" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "Le stampanti riportate di seguito non possono essere collegate perché fanno parte di un gruppo" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Stampanti disponibili in rete" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Non sottoposto a override" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Connected printers" -msgstr "Stampanti collegate" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Preset printers" -msgstr "Stampanti preimpostate" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:143 -#, 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 "Rimuovere {0}? Questa operazione non può essere annullata!" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:61 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 -msgctxt "@label" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:65 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Visivo" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:66 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "Il profilo visivo è destinato alla stampa di prototipi e modelli visivi, con l'intento di ottenere una qualità visiva e della superficie elevata." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:70 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "Il profilo di progettazione è destinato alla stampa di prototipi funzionali e di componenti d'uso finale, allo scopo di ottenere maggiore precisione e tolleranze strette." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:75 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Bozza" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:76 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "Il profilo bozza è destinato alla stampa dei prototipi iniziali e alla convalida dei concept, con l'intento di ridurre in modo significativo il tempo di stampa." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:232 -msgctxt "@label" -msgid "Custom Material" -msgstr "Materiale personalizzato" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:233 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 -msgctxt "@label" -msgid "Custom" -msgstr "Personalizzata" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:391 -msgctxt "@label" -msgid "Custom profiles" -msgstr "Profili personalizzati" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:426 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Tutti i tipi supportati ({0})" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Tutti i file (*)" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Calcolato" - -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 +#: cura/API/Account.py:199 msgctxt "@info:title" msgid "Login failed" msgstr "Login non riuscito" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: cura/Arranging/ArrangeObjectsJob.py:25 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Ricerca nuova posizione per gli oggetti" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: cura/Arranging/ArrangeObjectsJob.py:29 msgctxt "@info:title" msgid "Finding Location" msgstr "Ricerca posizione" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Impossibile individuare una posizione nel volume di stampa per tutti gli oggetti" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: cura/Arranging/ArrangeObjectsJob.py:43 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Impossibile individuare posizione" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:115 +#: cura/Backups/Backup.py:115 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Impossibile creare un archivio dalla directory dei dati utente: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:159 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +#: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159 +#: plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: plugins/CuraDrive/src/DrivePluginExtension.py:126 msgctxt "@info:title" msgid "Backup" -msgstr "Backup" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:134 +#: cura/Backups/Backup.py:134 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." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:145 +#: cura/Backups/Backup.py:145 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that is higher than the current version." msgstr "Tentativo di ripristinare un backup di Cura di versione superiore rispetto a quella corrente." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:158 +#: cura/Backups/Backup.py:158 msgctxt "@info:backup_failed" msgid "The following error occurred while trying to restore a Cura backup:" msgstr "Nel tentativo di ripristinare un backup di Cura, si è verificato il seguente errore:" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: cura/BuildVolume.py:100 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." msgstr "L’altezza del volume di stampa è stata ridotta a causa del valore dell’impostazione \"Sequenza di stampa” per impedire la collisione del gantry con i modelli stampati." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 +#: cura/BuildVolume.py:103 msgctxt "@info:title" msgid "Build Volume" msgstr "Volume di stampa" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Impossibile avviare Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" -"

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

    \n" +"

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

    Oops, Ultimaker Cura ha rilevato qualcosa che non sembra corretto.

    \n" +"

    Oops, UltiMaker Cura ha rilevato qualcosa che non sembra corretto.

    \n" "

    Abbiamo riscontrato un errore irrecuperabile durante l’avvio. È stato probabilmente causato da alcuni file di configurazione errati. Suggeriamo di effettuare il backup e ripristinare la configurazione.

    \n" "

    I backup sono contenuti nella cartella configurazione.

    \n" "

    Si prega di inviare questo Rapporto su crash per correggere il problema.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: cura/CrashHandler.py:122 msgctxt "@action:button" -msgid "Send crash report to Ultimaker" -msgstr "Inviare il rapporto su crash a Ultimaker" +msgid "Send crash report to UltiMaker" +msgstr "Inviare il rapporto su crash a UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Mostra il rapporto su crash dettagliato" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Mostra cartella di configurazione" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Backup e reset configurazione" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Rapporto su crash" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

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

    \n" @@ -256,573 +136,2241 @@ msgstr "" "

    Usare il pulsante “Invia report" per inviare automaticamente una segnalazione errore ai nostri server

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Informazioni di sistema" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Sconosciuto" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Versione Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Lingua Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Lingua sistema operativo" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Piattaforma" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Versione Qt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Versione PyQt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized" -msgstr "" +msgstr "Non ancora inizializzato" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Versione OpenGL: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • Fornitore OpenGL: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • Renderer OpenGL: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 +#: cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Analisi errori" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 +#: cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Registri" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 +#: cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Invia report" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:531 +#: cura/CuraApplication.py:540 msgctxt "@info:progress" msgid "Loading machines..." msgstr "Caricamento macchine in corso..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +#: cura/CuraApplication.py:547 msgctxt "@info:progress" msgid "Setting up preferences..." msgstr "Impostazione delle preferenze..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +#: cura/CuraApplication.py:692 msgctxt "@info:progress" msgid "Initializing Active Machine..." msgstr "Inizializzazione Active Machine in corso..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +#: cura/CuraApplication.py:839 msgctxt "@info:progress" msgid "Initializing machine manager..." msgstr "Inizializzazione gestore macchina in corso..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +#: cura/CuraApplication.py:853 msgctxt "@info:progress" msgid "Initializing build volume..." msgstr "Inizializzazione volume di stampa in corso..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +#: cura/CuraApplication.py:921 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "Impostazione scena in corso..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +#: cura/CuraApplication.py:957 msgctxt "@info:progress" msgid "Loading interface..." msgstr "Caricamento interfaccia in corso..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +#: cura/CuraApplication.py:962 msgctxt "@info:progress" msgid "Initializing engine..." msgstr "Inizializzazione motore in corso..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#: cura/CuraApplication.py:1290 #, 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" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1798 +#: cura/CuraApplication.py:1816 #, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "È possibile caricare un solo file codice G per volta. Importazione saltata {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 +#: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 msgctxt "@info:title" msgid "Warning" msgstr "Avvertenza" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#: cura/CuraApplication.py:1828 #, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "Impossibile aprire altri file durante il caricamento del codice G. Importazione saltata {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1812 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156 +#: cura/Settings/CuraContainerRegistry.py:166 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 msgctxt "@info:title" msgid "Error" msgstr "Errore" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 +#: cura/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Sconosciuto" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "Le stampanti riportate di seguito non possono essere collegate perché fanno parte di un gruppo" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Stampanti disponibili in rete" + +#: cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Non sottoposto a override" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:28 +msgctxt "@label" +msgid "Connected printers" +msgstr "Stampanti collegate" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +msgctxt "@label" +msgid "Preset printers" +msgstr "Stampanti preimpostate" + +#: cura/Machines/Models/GlobalStacksModel.py:165 +#, 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 "Rimuovere {0}? Questa operazione non può essere annullata!" + +#: cura/Machines/Models/IntentCategoryModel.py:42 +#: cura/Machines/Models/IntentSelectionModel.py:61 +#: cura/Machines/Models/IntentTranslations.py:11 +#: cura/Machines/Models/QualityManagementModel.py:347 +msgctxt "@label" +msgid "Default" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:45 +#: cura/Machines/Models/IntentSelectionModel.py:65 +#: cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "Visivo" + +#: cura/Machines/Models/IntentCategoryModel.py:46 +#: cura/Machines/Models/IntentSelectionModel.py:66 +#: cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "Il profilo visivo è destinato alla stampa di prototipi e modelli visivi, con l'intento di ottenere una qualità visiva e della superficie elevata." + +#: cura/Machines/Models/IntentCategoryModel.py:49 +#: cura/Machines/Models/IntentSelectionModel.py:70 +#: cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:50 +#: cura/Machines/Models/IntentSelectionModel.py:71 +#: cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "Il profilo di progettazione è destinato alla stampa di prototipi funzionali e di componenti d'uso finale, allo scopo di ottenere maggiore precisione e tolleranze strette." + +#: cura/Machines/Models/IntentCategoryModel.py:53 +#: cura/Machines/Models/IntentSelectionModel.py:75 +#: cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "Bozza" + +#: cura/Machines/Models/IntentCategoryModel.py:54 +#: cura/Machines/Models/IntentSelectionModel.py:76 +#: cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "Il profilo bozza è destinato alla stampa dei prototipi iniziali e alla convalida dei concept, con l'intento di ridurre in modo significativo il tempo di stampa." + +#: cura/Machines/Models/MaterialManagementModel.py:232 +msgctxt "@label" +msgid "Custom Material" +msgstr "Materiale personalizzato" + +#: cura/Machines/Models/MaterialManagementModel.py:233 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 +msgctxt "@label" +msgid "Custom" +msgstr "Personalizzata" + +#: cura/Machines/Models/QualityManagementModel.py:400 +msgctxt "@label" +msgid "Custom profiles" +msgstr "Profili personalizzati" + +#: cura/Machines/Models/QualityManagementModel.py:435 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Tutti i tipi supportati ({0})" + +#: cura/Machines/Models/QualityManagementModel.py:436 +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Tutti i file (*)" + +#: cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Calcolato" + +#: cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Moltiplicazione e collocazione degli oggetti" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 +#: cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "Sistemazione oggetti" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 +#: cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Sistemazione oggetto" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +#: cura/OAuth2/AuthorizationHelpers.py:89 msgctxt "@message" msgid "Could not read response." msgstr "Impossibile leggere la risposta." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +#: cura/OAuth2/AuthorizationRequestHandler.py:75 msgctxt "@message" msgid "The provided state is not correct." msgstr "Lo stato fornito non è corretto." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +#: cura/OAuth2/AuthorizationRequestHandler.py:80 msgctxt "@message" msgid "Timeout when authenticating with the account server." msgstr "Timeout durante l'autenticazione con il server account." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +#: cura/OAuth2/AuthorizationRequestHandler.py:97 msgctxt "@message" msgid "Please give the required permissions when authorizing this application." msgstr "Fornire i permessi necessari al momento dell'autorizzazione di questa applicazione." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +#: cura/OAuth2/AuthorizationRequestHandler.py:104 msgctxt "@message" msgid "Something unexpected happened when trying to log in, please try again." msgstr "Si è verificato qualcosa di inatteso durante il tentativo di accesso, riprovare." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:216 +#: cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Impossibile avviare un nuovo processo di accesso. Verificare se è ancora attivo un altro tentativo di accesso." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:277 +#: cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "Impossibile raggiungere il server account Ultimaker." +msgid "Unable to reach the UltiMaker account server." +msgstr "Impossibile raggiungere il server account UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 +#: cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" msgid "Log-in failed" msgstr "Log in non riuscito" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +#: cura/PrinterOutput/UploadMaterialsJob.py:104 msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Impossibile creare archivio di materiali da sincronizzare con le stampanti." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +#: cura/PrinterOutput/UploadMaterialsJob.py:111 +#: cura/PrinterOutput/UploadMaterialsJob.py:165 msgctxt "@text:error" msgid "Failed to load the archive of materials to sync it with printers." msgstr "Impossibile caricare l'archivio di materiali da sincronizzare con le stampanti." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +#: cura/PrinterOutput/UploadMaterialsJob.py:143 msgctxt "@text:error" msgid "The response from Digital Factory appears to be corrupted." msgstr "La risposta da Digital Factory sembra essere danneggiata." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +#: cura/PrinterOutput/UploadMaterialsJob.py:147 +#: cura/PrinterOutput/UploadMaterialsJob.py:151 +#: cura/PrinterOutput/UploadMaterialsJob.py:155 msgctxt "@text:error" msgid "The response from Digital Factory is missing important information." msgstr "Nella risposta da Digital Factory mancano informazioni importanti." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +#: cura/PrinterOutput/UploadMaterialsJob.py:218 msgctxt "@text:error" msgid "Failed to connect to Digital Factory to sync materials with some of the printers." msgstr "Impossibile connettersi a Digital Factory per sincronizzare i materiali con alcune delle stampanti." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +#: cura/PrinterOutput/UploadMaterialsJob.py:232 msgctxt "@text:error" msgid "Failed to connect to Digital Factory." msgstr "Impossibile connettersi a Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:207 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: cura/Settings/ActiveQuality.py:43 +msgctxt "@label" +msgid "Experimental" +msgstr "Sperimentale" + +#: cura/Settings/ContainerManager.py:207 +#: cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "Il file esiste già" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: cura/Settings/ContainerManager.py:208 +#: cura/Settings/CuraContainerRegistry.py:141 #, 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 "Il file {0} esiste già. Sei sicuro di volerlo sovrascrivere?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 +#: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "File URL non valido:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Impossibile esportare il profilo su {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Impossibile esportare il profilo su {0}: Rilevata anomalia durante scrittura plugin." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profilo esportato su {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Esportazione riuscita" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Impossibile importare il profilo da {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: cura/Settings/CuraContainerRegistry.py:209 #, 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 "Impossibile importare il profilo da {0} prima di aggiungere una stampante." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Nessun profilo personalizzato da importare nel file {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Impossibile importare il profilo da {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: cura/Settings/CuraContainerRegistry.py:252 +#: cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Questo profilo {0} contiene dati errati, impossibile importarlo." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Impossibile importare il profilo da {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Profilo {0} importato correttamente." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Il file {0} non contiene nessun profilo valido." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Il profilo {0} ha un tipo di file sconosciuto o corrotto." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Profilo personalizzato" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Il profilo è privo del tipo di qualità." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Non ci sono ancora stampanti attive." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Impossibile aggiungere il profilo." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "Il tipo di qualità '{0}' non è compatibile con la definizione di macchina attiva corrente '{1}'." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: cura/Settings/CuraContainerRegistry.py:488 #, 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 "Avvertenza: il profilo non è visibile in quanto il tipo di qualità '{0}' non è disponibile per la configurazione corrente. Passare alla combinazione materiale/ugello che consente di utilizzare questo tipo di qualità." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Non supportato" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:219 +#: cura/Settings/MachineManager.py:746 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:221 msgctxt "@label" msgid "Nozzle" msgstr "Ugello" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +#: cura/Settings/MachineManager.py:890 msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Le impostazioni sono state modificate in base all’attuale disponibilità di estrusori:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: cura/Settings/MachineManager.py:891 msgctxt "@info:title" msgid "Settings updated" msgstr "Impostazioni aggiornate" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 +#: cura/Settings/MachineManager.py:1514 msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Estrusore disabilitato" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 +#: cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Non supportato" + +#: cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "" + +#: cura/UI/AddPrinterPagesModel.py:17 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" msgid "Add" msgstr "Aggiungi" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:290 +#: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290 msgctxt "@action:button" msgid "Finish" msgstr "Fine" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:508 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:323 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:291 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:74 +#: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386 +#: plugins/ImageReader/ConfigUI.qml:323 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 +#: resources/qml/ColorDialog.qml:143 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: resources/qml/Dialogs/RenameDialog.qml:103 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 msgctxt "@action:button" msgid "Cancel" msgstr "Annulla" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: cura/UI/ObjectsModel.py:69 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Gruppo #{group_nr}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 +#: cura/UI/PrintInformation.py:87 msgctxt "@tooltip" msgid "Outer Wall" msgstr "Parete esterna" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +#: cura/UI/PrintInformation.py:88 msgctxt "@tooltip" msgid "Inner Walls" msgstr "Pareti interne" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +#: cura/UI/PrintInformation.py:89 msgctxt "@tooltip" msgid "Skin" msgstr "Rivestimento esterno" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +#: cura/UI/PrintInformation.py:90 msgctxt "@tooltip" msgid "Infill" msgstr "Riempimento" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +#: cura/UI/PrintInformation.py:91 msgctxt "@tooltip" msgid "Support Infill" msgstr "Riempimento del supporto" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +#: cura/UI/PrintInformation.py:92 msgctxt "@tooltip" msgid "Support Interface" msgstr "Interfaccia supporto" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +#: cura/UI/PrintInformation.py:93 msgctxt "@tooltip" msgid "Support" msgstr "Supporto" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +#: cura/UI/PrintInformation.py:94 msgctxt "@tooltip" msgid "Skirt" -msgstr "Skirt" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +#: cura/UI/PrintInformation.py:95 msgctxt "@tooltip" msgid "Prime Tower" msgstr "Torre di innesco" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +#: cura/UI/PrintInformation.py:96 msgctxt "@tooltip" msgid "Travel" msgstr "Spostamenti" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +#: cura/UI/PrintInformation.py:97 msgctxt "@tooltip" msgid "Retractions" msgstr "Retrazioni" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +#: cura/UI/PrintInformation.py:98 msgctxt "@tooltip" msgid "Other" msgstr "Altro" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:63 +#: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63 msgctxt "@text:window" msgid "The release notes could not be opened." msgstr "Impossibile aprire le note sulla versione." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:277 +#: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277 msgctxt "@action:button" msgid "Next" msgstr "Avanti" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68 msgctxt "@action:button" msgid "Skip" msgstr "Salta" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:443 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:186 +#: cura/UI/WhatsNewPagesModel.py:76 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444 +#: resources/qml/Dialogs/AboutDialog.qml:188 msgctxt "@action:button" msgid "Close" msgstr "Chiudi" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: cura/UltimakerCloud/CloudMaterialSync.py:66 msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Sincronizzare i profili del materiale con le stampanti prima di iniziare a stampare." -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: cura/UltimakerCloud/CloudMaterialSync.py:67 msgctxt "@action:button" msgid "New materials installed" msgstr "Nuovi materiali installati" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: cura/UltimakerCloud/CloudMaterialSync.py:74 msgctxt "@action:button" msgid "Sync materials" msgstr "Sincronizza materiali" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:397 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:80 +#: cura/UltimakerCloud/CloudMaterialSync.py:82 +#: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80 msgctxt "@action:button" msgid "Learn more" msgstr "Ulteriori informazioni" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +#: cura/UltimakerCloud/CloudMaterialSync.py:135 msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Impossibile salvare archivio materiali in {}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +#: cura/UltimakerCloud/CloudMaterialSync.py:136 msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Impossibile salvare archivio materiali" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +#: cura/UltimakerCloud/CloudMaterialSync.py:188 msgctxt "@text" msgid "Unknown error." msgstr "Errore sconosciuto." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:558 +#, 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 "Il file di progetto {0} contiene un tipo di macchina sconosciuto {1}. Impossibile importare la macchina. Verranno invece importati i modelli." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:561 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "Apri file progetto" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: plugins/3MFReader/WorkspaceDialog.qml:99 +#: plugins/3MFReader/WorkspaceDialog.qml:127 +#: plugins/3MFReader/WorkspaceDialog.qml:134 +msgctxt "@button" +msgid "Create new" +msgstr "" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:692 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "Il file di progetto {0} è diventato improvvisamente inaccessibile: {1}." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:720 +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "Impossibile aprire il file di progetto" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:700 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:718 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "Il file di progetto {0} è danneggiato: {1}." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:765 +#, 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 "Il file di progetto {0} è realizzato con profili sconosciuti a questa versione di UltiMaker Cura." + +#: plugins/3MFReader/WorkspaceDialog.py:233 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Consigliata" + +#: plugins/3MFReader/WorkspaceDialog.py:235 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Personalizzata" + +#: plugins/3MFReader/WorkspaceDialog.py:411 +msgctxt "@info:status" +msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." +msgstr "Il materiale utilizzato in questo progetto si basa su alcune definizioni di materiale non disponibili in Cura; ciò potrebbe produrre risultati di stampa indesiderati. Si consiglia vivamente di installare il pacchetto completo di materiali dal Marketplace." + +#: plugins/3MFReader/WorkspaceDialog.py:413 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "Profili del materiale non installati" + +#: plugins/3MFReader/WorkspaceDialog.py:426 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "Installa materiali" + +#: plugins/3MFReader/WorkspaceDialog.qml:15 +msgctxt "@title:window" +msgid "Open Project" +msgstr "Apri progetto" + +#: plugins/3MFReader/WorkspaceDialog.qml:31 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61 +msgctxt "@action:title" +msgid "Summary - Cura Project" +msgstr "Riepilogo - Progetto Cura" + +#: plugins/3MFReader/WorkspaceDialog.qml:65 +msgctxt "@action:ComboBox Update/override existing profile" +msgid "Update existing" +msgstr "Aggiorna esistente" + +#: plugins/3MFReader/WorkspaceDialog.qml:66 +msgctxt "@action:ComboBox Save settings in a new profile" +msgid "Create new" +msgstr "Crea nuovo" + +#: plugins/3MFReader/WorkspaceDialog.qml:83 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97 +msgctxt "@action:label" +msgid "Printer settings" +msgstr "Impostazioni della stampante" + +#: plugins/3MFReader/WorkspaceDialog.qml:92 +#: plugins/3MFReader/WorkspaceRow.qml:23 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106 +msgctxt "@action:label" +msgid "Type" +msgstr "Tipo" + +#: plugins/3MFReader/WorkspaceDialog.qml:98 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +msgctxt "@action:label" +msgid "Printer Group" +msgstr "Gruppo stampanti" + +#: plugins/3MFReader/WorkspaceDialog.qml:103 +msgctxt "@action:label" +msgid "Open With" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:104 +msgctxt "@info:tooltip" +msgid "Printer settings will be updated to match the settings saved with the project." +msgstr "Le impostazioni della stampante saranno aggiornate in modo che corrispondano alle impostazioni salvate con il progetto." + +#: plugins/3MFReader/WorkspaceDialog.qml:156 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222 +msgctxt "@action:label" +msgid "Profile settings" +msgstr "Impostazioni profilo" + +#: plugins/3MFReader/WorkspaceDialog.qml:166 +#: plugins/3MFReader/WorkspaceDialog.qml:238 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246 +msgctxt "@action:label" +msgid "Name" +msgstr "Nome" + +#: plugins/3MFReader/WorkspaceDialog.qml:172 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263 +msgctxt "@action:label" +msgid "Intent" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:178 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230 +msgctxt "@action:label" +msgid "Not in profile" +msgstr "Non nel profilo" + +#: plugins/3MFReader/WorkspaceDialog.qml:179 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235 +msgctxt "@action:label" +msgid "%1 override" +msgid_plural "%1 overrides" +msgstr[0] "%1 override" +msgstr[1] "%1 override" + +#: plugins/3MFReader/WorkspaceDialog.qml:185 +msgctxt "@action:label" +msgid "Derivative from" +msgstr "Derivato da" + +#: plugins/3MFReader/WorkspaceDialog.qml:186 +msgctxt "@action:label" +msgid "%1, %2 override" +msgid_plural "%1, %2 overrides" +msgstr[0] "%1, %2 override" +msgstr[1] "%1, %2 override" + +#: plugins/3MFReader/WorkspaceDialog.qml:226 +msgctxt "@action:label" +msgid "Material settings" +msgstr "Impostazioni materiale" + +#: plugins/3MFReader/WorkspaceDialog.qml:280 +msgctxt "@action:label" +msgid "Setting visibility" +msgstr "Impostazione visibilità" + +#: plugins/3MFReader/WorkspaceDialog.qml:290 +msgctxt "@action:label" +msgid "Mode" +msgstr "Modalità" + +#: plugins/3MFReader/WorkspaceDialog.qml:296 +msgctxt "@action:label" +msgid "%1 out of %2" +msgstr "%1 su %2" + +#: plugins/3MFReader/WorkspaceDialog.qml:321 +msgctxt "@action:warning" +msgid "Loading a project will clear all models on the build plate." +msgstr "Il caricamento di un progetto annulla tutti i modelli sul piano di stampa." + +#: plugins/3MFReader/WorkspaceDialog.qml:367 +msgctxt "@label" +msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." +msgstr "Il materiale utilizzato in questo progetto non è attualmente installato in Cura.
    Installa il profilo del materiale e riapri il progetto." + +#: plugins/3MFReader/WorkspaceDialog.qml:392 +msgctxt "@action:button" +msgid "Open" +msgstr "Apri" + +#: plugins/3MFReader/WorkspaceDialog.qml:398 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "Apri il progetto comunque" + +#: plugins/3MFReader/WorkspaceDialog.qml:407 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "Installa materiale mancante" + +#: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33 +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "File 3MF" + +#: plugins/3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "Lettore 3MF" + +#: plugins/3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Fornisce il supporto per la lettura di file 3MF." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "Plug-in Writer 3MF danneggiato." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Ancora nessuna area di lavoro da scrivere. Aggiungere innanzitutto una stampante." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "Nessuna autorizzazione di scrittura dell'area di lavoro qui." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "Il sistema operativo non consente di salvare un file di progetto in questa posizione o con questo nome file." + +#: plugins/3MFWriter/ThreeMFWriter.py:240 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Errore scrittura file 3MF." + +#: plugins/3MFWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "File 3MF" + +#: plugins/3MFWriter/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "File 3MF Progetto Cura" + +#: plugins/3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "Writer 3MF" + +#: plugins/3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Fornisce il supporto per la scrittura di file 3MF." + +#: plugins/AMFReader/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "File AMF" + +#: plugins/AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "Lettore 3MF" + +#: plugins/AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Fornisce il supporto per la lettura di file 3MF." + +#: plugins/CuraDrive/plugin.json +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Effettua il backup o ripristina la configurazione." + +#: plugins/CuraDrive/plugin.json +msgctxt "name" +msgid "Cura Backups" +msgstr "Backup Cura" + +#: plugins/CuraDrive/src/CreateBackupJob.py:25 +msgctxt "@info:title" +msgid "Backups" +msgstr "Backup" + +#: plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Si è verificato un errore durante il caricamento del backup." + +#: plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "Creazione del backup in corso..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "Si è verificato un errore durante la creazione del backup." + +#: plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Caricamento backup in corso..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Caricamento backup completato." + +#: plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "Il backup supera la dimensione file massima." + +#: plugins/CuraDrive/src/DriveApiService.py:86 +#: plugins/CuraDrive/src/RestoreBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Si è verificato un errore cercando di ripristinare il backup." + +#: plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Gestione backup" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "Ulteriori informazioni?" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Esegui backup adesso" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Backup automatico" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Crea automaticamente un backup ogni giorno in cui viene avviata Cura." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 +msgctxt "@button" +msgid "Restore" +msgstr "Ripristina" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Cancella backup" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Sei sicuro di voler cancellare questo backup? Questa operazione non può essere annullata." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Ripristina backup" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "Riavviare Cura prima di ripristinare il backup. Chiudere Cura adesso?" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Versione Cura" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Macchine" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Materiali" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Profili" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Plugin" + +#: plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Backup Cura" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "I miei backup" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Nessun backup. Usare il pulsante ‘Esegui backup adesso’ per crearne uno." + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Durante la fase di anteprima, saranno visibili solo 5 backup. Rimuovi un backup per vedere quelli precedenti." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Backup e sincronizzazione delle impostazioni Cura." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 +#: plugins/Marketplace/resources/qml/Marketplace.qml:312 +#: resources/qml/Account/GeneralOperations.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180 +#: resources/qml/WelcomePages/CloudContent.qml:212 +msgctxt "@button" +msgid "Sign in" +msgstr "Accedi" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "Sezionamento non riuscito con un errore imprevisto. Valutare se segnalare un bug nel registro problemi." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:163 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "Sezionamento non riuscito" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Segnala un errore" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:169 +msgctxt "@message:description" +msgid "Report a bug on UltiMaker Cura's issue tracker." +msgstr "Segnalare un errore nel registro problemi di UltiMaker Cura." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:416 +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "Impossibile eseguire il sezionamento con il materiale corrente in quanto incompatibile con la macchina o la configurazione selezionata." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:417 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:450 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:477 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:501 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:514 +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "Sezionamento impossibile" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:449 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "Impossibile eseguire il sezionamento con le impostazioni attuali. Le seguenti impostazioni presentano errori: {0}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:476 +#, 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 "Impossibile eseguire il sezionamento a causa di alcune impostazioni per modello. Le seguenti impostazioni presentano errori su uno o più modelli: {error_labels}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:488 +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "Impossibile eseguire il sezionamento perché la torre di innesco o la posizione di innesco non sono valide." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:500 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "Impossibile effettuare il sezionamento in quanto vi sono oggetti associati a Extruder %s disabilitato." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:510 +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 "" +"Verificare le impostazioni e controllare se i modelli:\n" +"- Rientrano nel volume di stampa\n" +"- Sono assegnati a un estrusore abilitato\n" +"- Non sono tutti impostati come maglie modificatore" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Elaborazione dei livelli" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Informazioni" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Back-end CuraEngine" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Fornisce il collegamento al back-end di sezionamento CuraEngine." + +#: plugins/CuraProfileReader/__init__.py:14 +#: plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Profilo Cura" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Lettore profilo Cura" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Fornisce supporto per l'importazione dei profili Cura." + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Writer profilo Cura" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Fornisce supporto per l'esportazione dei profili Cura." + +#: plugins/DigitalLibrary/plugin.json +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." + +#: plugins/DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 +msgctxt "@option" +msgid "Save Cura project and print file" +msgstr "Salva progetto Cura e stampa file" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Salva progetto Cura" + +#: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19 +msgctxt "@text Placeholder for the username if it has been deleted" +msgid "deleted user" +msgstr "utente eliminato" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Non è possibile accedere alle informazioni di aggiornamento." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, 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 "Nuove funzionalità o bug fix potrebbero essere disponibili per {machine_name}. Se non è già stato fatto in precedenza, si consiglia di aggiornare il firmware della stampante alla versione {latest_version}." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "Nuovo firmware %s stabile disponibile" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Modalità di aggiornamento" + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Controlla disponibilità di aggiornamenti firmware." + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Controllo aggiornamento firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Aggiornamento firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "Aggiornamento firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 +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 "Il firmware è la parte di software eseguita direttamente sulla stampante 3D. Questo firmware controlla i motori passo-passo, regola la temperatura e, in ultima analisi, consente il funzionamento della stampante." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "Il firmware inviato a corredo delle nuove stampanti funziona, tuttavia le nuove versioni tendono ad avere più funzioni ed ottimizzazioni." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Aggiorna automaticamente il firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Carica il firmware personalizzato" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "Impossibile aggiornare il firmware: nessun collegamento con la stampante." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 +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." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Seleziona il firmware personalizzato" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Aggiornamento del firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 +msgctxt "@label" +msgid "Updating firmware." +msgstr "Aggiornamento firmware." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Aggiornamento del firmware completato." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "Aggiornamento firmware non riuscito a causa di un errore sconosciuto." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "Aggiornamento firmware non riuscito a causa di un errore di comunicazione." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "Aggiornamento firmware non riuscito a causa di un errore di input/output." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "Aggiornamento firmware non riuscito per firmware mancante." + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "name" +msgid "Firmware Updater" +msgstr "Aggiornamento firmware" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Fornisce azioni macchina per l’aggiornamento del firmware." + +#: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "File G-Code compresso" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lettore codice G compresso" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Legge il codice G da un archivio compresso." + +#: plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "GCodeGzWriter non supporta la modalità di testo." + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Writer codice G compresso" + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Scrive il codice G in un archivio compresso." + +#: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14 +#: plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "File G-Code" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Lettore profilo codice G" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Fornisce supporto per l'importazione di profili da file G-Code." + +#: plugins/GCodeReader/FlavorParser.py:359 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "Parsing codice G" + +#: plugins/GCodeReader/FlavorParser.py:361 +#: plugins/GCodeReader/FlavorParser.py:515 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "Dettagli codice G" + +#: plugins/GCodeReader/FlavorParser.py:513 +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 "Verifica che il codice G sia idoneo alla tua stampante e alla sua configurazione prima di trasmettere il file. La rappresentazione del codice G potrebbe non essere accurata." + +#: plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "File G" + +#: plugins/GCodeReader/plugin.json +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Consente il caricamento e la visualizzazione dei file codice G." + +#: plugins/GCodeReader/plugin.json +msgctxt "name" +msgid "G-code Reader" +msgstr "Lettore codice G" + +#: plugins/GCodeWriter/GCodeWriter.py:75 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "GCodeWriter non supporta la modalità non di testo." + +#: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Preparare il codice G prima dell’esportazione." + +#: plugins/GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "Writer codice G" + +#: plugins/GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Scrive il codice G in un file." + +#: plugins/ImageReader/ConfigUI.qml:14 +msgctxt "@title:window" +msgid "Convert Image" +msgstr "Converti immagine" + +#: plugins/ImageReader/ConfigUI.qml:33 +msgctxt "@action:label" +msgid "Height (mm)" +msgstr "Altezza (mm)" + +#: plugins/ImageReader/ConfigUI.qml:56 +msgctxt "@info:tooltip" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "La distanza massima di ciascun pixel da \"Base.\"" + +#: plugins/ImageReader/ConfigUI.qml:66 +msgctxt "@action:label" +msgid "Base (mm)" +msgstr "Base (mm)" + +#: plugins/ImageReader/ConfigUI.qml:90 +msgctxt "@info:tooltip" +msgid "The base height from the build plate in millimeters." +msgstr "L'altezza della base dal piano di stampa in millimetri." + +#: plugins/ImageReader/ConfigUI.qml:100 +msgctxt "@action:label" +msgid "Width (mm)" +msgstr "Larghezza (mm)" + +#: plugins/ImageReader/ConfigUI.qml:124 +msgctxt "@info:tooltip" +msgid "The width in millimeters on the build plate" +msgstr "La larghezza in millimetri sul piano di stampa" + +#: plugins/ImageReader/ConfigUI.qml:134 +msgctxt "@action:label" +msgid "Depth (mm)" +msgstr "Profondità (mm)" + +#: plugins/ImageReader/ConfigUI.qml:158 +msgctxt "@info:tooltip" +msgid "The depth in millimeters on the build plate" +msgstr "La profondità in millimetri sul piano di stampa" + +#: plugins/ImageReader/ConfigUI.qml:187 +msgctxt "@item:inlistbox" +msgid "Darker is higher" +msgstr "Più scuro è più alto" + +#: plugins/ImageReader/ConfigUI.qml:188 +msgctxt "@item:inlistbox" +msgid "Lighter is higher" +msgstr "Più chiaro è più alto" + +#: plugins/ImageReader/ConfigUI.qml:195 +msgctxt "@info:tooltip" +msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." +msgstr "Per le litofanie, i pixel scuri devono corrispondere alle posizioni più spesse per bloccare maggiormente il passaggio della luce. Per le mappe con altezze superiori, i pixel più chiari indicano un terreno più elevato, quindi nel modello 3D generato i pixel più chiari devono corrispondere alle posizioni più spesse." + +#: plugins/ImageReader/ConfigUI.qml:205 +msgctxt "@action:label" +msgid "Color Model" +msgstr "Modello a colori" + +#: plugins/ImageReader/ConfigUI.qml:224 +msgctxt "@item:inlistbox" +msgid "Linear" +msgstr "Lineare" + +#: plugins/ImageReader/ConfigUI.qml:225 +msgctxt "@item:inlistbox" +msgid "Translucency" +msgstr "Traslucenza" + +#: plugins/ImageReader/ConfigUI.qml:232 +msgctxt "@info:tooltip" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "Per le litofanie, è disponibile un semplice modello logaritmico per la traslucenza. Per le mappe delle altezze, i valori in pixel corrispondono alle altezze in modo lineare." + +#: plugins/ImageReader/ConfigUI.qml:242 +msgctxt "@action:label" +msgid "1mm Transmittance (%)" +msgstr "Trasmittanza di 1 mm (%)" + +#: plugins/ImageReader/ConfigUI.qml:263 +msgctxt "@info:tooltip" +msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." +msgstr "Percentuale di luce che penetra una stampa dello spessore di 1 millimetro. Se questo valore si riduce, il contrasto nelle aree scure dell'immagine aumenta, mentre il contrasto nelle aree chiare dell'immagine diminuisce." + +#: plugins/ImageReader/ConfigUI.qml:274 +msgctxt "@action:label" +msgid "Smoothing" +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:298 +msgctxt "@info:tooltip" +msgid "The amount of smoothing to apply to the image." +msgstr "La quantità di smoothing (levigatura) da applicare all'immagine." + +#: plugins/ImageReader/ConfigUI.qml:329 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 +#: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25 +msgctxt "@action:button" +msgid "OK" +msgstr "" + +#: plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "Immagine JPG" + +#: plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "Immagine JPEG" + +#: plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "Immagine PNG" + +#: plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "Immagine BMP" + +#: plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "Immagine GIF" + +#: plugins/ImageReader/plugin.json +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." + +#: plugins/ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Lettore di immagine" + +#: plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Profili Cura 15.04" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Lettore legacy profilo Cura" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Fornisce supporto per l'importazione di profili dalle versioni legacy Cura." + +#: plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Impostazioni macchina" + +#: plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Stampante" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Impostazioni ugello" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Dimensione ugello" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Diametro del materiale compatibile" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Scostamento X ugello" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Scostamento Y ugello" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Numero ventola di raffreddamento" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "Codice G avvio estrusore" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "Codice G fine estrusore" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Impostazioni della stampante" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (Larghezza)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Profondità)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Altezza)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Forma del piano di stampa" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 +msgctxt "@label" +msgid "Origin at center" +msgstr "Origine al centro" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 +msgctxt "@label" +msgid "Heated bed" +msgstr "Piano riscaldato" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Volume di stampa riscaldato" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 +msgctxt "@label" +msgid "G-code flavor" +msgstr "Versione codice G" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Impostazioni della testina di stampa" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 +msgctxt "@label" +msgid "X min" +msgstr "X min" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 +msgctxt "@label" +msgid "Y min" +msgstr "Y min" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 +msgctxt "@label" +msgid "X max" +msgstr "X max" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 +msgctxt "@label" +msgid "Y max" +msgstr "Y max" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Altezza gantry" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Numero di estrusori" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:342 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Applica offset estrusore a gcode" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:390 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "Codice G avvio" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:401 +msgctxt "@title:label" +msgid "End G-code" +msgstr "Codice G fine" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Azione Impostazioni macchina" + +#: plugins/MachineSettingsAction/plugin.json +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.)" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "Desiderate sincronizzare pacchetti materiale e software con il vostro account?" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:95 +msgctxt "@info:title" +msgid "Changes detected from your UltiMaker account" +msgstr "Modifiche rilevate dal tuo account UltiMaker" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 +msgctxt "@action:button" +msgid "Sync" +msgstr "Sincronizza" + +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "Sincronizzazione in corso..." + +#: plugins/Marketplace/CloudSync/LicenseModel.py:12 +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:79 +msgctxt "@button" +msgid "Decline" +msgstr "Non accetto" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:13 +#: resources/qml/WelcomePages/UserAgreementContent.qml:53 +msgctxt "@button" +msgid "Agree" +msgstr "Accetta" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:77 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Accordo di licenza plugin" + +#: plugins/Marketplace/CloudSync/LicensePresenter.py:42 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Rifiuta e rimuovi dall'account" + +#: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "Affinché le modifiche diventino effettive, è necessario chiudere e riavviare {}." + +#: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "Impossibile scaricare i plugin {}" + +#: plugins/Marketplace/LocalPackageList.py:28 +msgctxt "@label" +msgid "Installed Plugins" +msgstr "Plugin installati" + +#: plugins/Marketplace/LocalPackageList.py:29 +msgctxt "@label" +msgid "Installed Materials" +msgstr "Materiali installati" + +#: plugins/Marketplace/LocalPackageList.py:33 +msgctxt "@label" +msgid "Bundled Plugins" +msgstr "Plugin inseriti nel bundle" + +#: plugins/Marketplace/LocalPackageList.py:34 +msgctxt "@label" +msgid "Bundled Materials" +msgstr "Materiali inseriti nel bundle" + +#: plugins/Marketplace/PackageModel.py:43 +msgctxt "@label:property" +msgid "Unknown Package" +msgstr "Pacchetto sconosciuto" + +#: plugins/Marketplace/PackageModel.py:66 +msgctxt "@label:property" +msgid "Unknown Author" +msgstr "Autore sconosciuto" + +#: plugins/Marketplace/PackageModel.py:95 +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 "Il pacchetto di materiali associato al progetto Cura non è stato trovato su UltiMaker Marketplace. Utilizza la definizione parziale del profilo del materiale memorizzata nel file di progetto Cura a tuo rischio." + +#: plugins/Marketplace/RemotePackageList.py:117 +msgctxt "@info:error" +msgid "Could not interpret the server's response." +msgstr "Impossibile interpretare la risposta del server." + +#: plugins/Marketplace/RemotePackageList.py:148 +msgctxt "@info:error" +msgid "Could not reach Marketplace." +msgstr "Impossibile raggiungere Marketplace." + +#: plugins/Marketplace/plugin.json +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." + +#: plugins/Marketplace/plugin.json +msgctxt "name" +msgid "Marketplace" +msgstr "Mercato" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 +msgctxt "@title" +msgid "Changes from your account" +msgstr "Modifiche dall'account" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +msgctxt "@button" +msgid "Dismiss" +msgstr "Rimuovi" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +#: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 +#: resources/qml/WelcomePages/WhatsNewContent.qml:175 +msgctxt "@button" +msgid "Next" +msgstr "Avanti" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "Verranno aggiunti i seguenti pacchetti:" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "Impossibile installare i seguenti pacchetti a causa di una versione di Cura non compatibile:" + +#: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "Installa materiali mancanti" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "Accordo di licenza plugin" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:47 +msgctxt "@text" +msgid "Please read and agree with the plugin licence." +msgstr "Leggi e accetta la licenza del plugin." + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "Accetto" + +#: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Gestisci pacchetti" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:12 +msgctxt "@header" +msgid "Manage packages" +msgstr "Gestisci pacchetti" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:16 +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." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" +msgid "Loading..." +msgstr "Caricamento in corso..." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "Plugin" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "Materiali" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "Cerca nel browser" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:271 +msgctxt "@button" +msgid "In order to use the package you will need to restart Cura" +msgstr "Per utilizzare il pacchetto è necessario riavviare Cura" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:279 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "Chiudere %1" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:300 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" +msgstr "Accedere per ottenere i plugin e i materiali verificati per UltiMaker Cura Enterprise" + +#: plugins/Marketplace/resources/qml/Materials.qml:8 +#: plugins/Marketplace/resources/qml/MissingPackages.qml:8 +msgctxt "@header" +msgid "Install Materials" +msgstr "Installa materiali" + +#: plugins/Marketplace/resources/qml/Materials.qml:12 +msgctxt "@text" +msgid "Select and install material profiles optimised for your UltiMaker 3D printers." +msgstr "Selezionare e installare i profili dei materiali ottimizzati per le stampanti 3D UltiMaker." + +#: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "È necessario accettare la licenza per installare il pacchetto" + +#: plugins/Marketplace/resources/qml/OnboardBanner.qml:101 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205 +msgctxt "@button:label" +msgid "Learn More" +msgstr "Ulteriori Informazioni" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170 +msgctxt "@label Is followed by the name of an author" +msgid "By" +msgstr "Per mezzo di" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Disable" +msgstr "Disabilita" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Enable" +msgstr "Abilita" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242 +msgctxt "@button" +msgid "Downgrading..." +msgstr "Downgrade in corso..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243 +msgctxt "@button" +msgid "Downgrade" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247 +msgctxt "@button" +msgid "Installing..." +msgstr "Installazione in corso..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248 +msgctxt "@button" +msgid "Install" +msgstr "Installazione" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252 +msgctxt "@button" +msgid "Uninstall" +msgstr "Disinstalla" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Update" +msgstr "Aggiorna" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Updating..." +msgstr "Aggiornamento in corso..." + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "Dettagli pacchetto" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Indietro" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "Descrizione" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "Stampanti compatibili" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "Nessuna informazione sulla compatibilità" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "Materiali di supporto compatibili" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "Nessuno" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:193 +msgctxt "@header" +msgid "Compatible with Material Station" +msgstr "Compatibile con Material Station" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "No" +msgstr "No" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "Yes" +msgstr "Sì" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:219 +msgctxt "@header" +msgid "Optimized for Air Manager" +msgstr "Ottimizzato per Air Manager" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Visit plug-in website" +msgstr "Visita il sito web del plug-in" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Website" +msgstr "Sito web" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:252 +msgctxt "@button" +msgid "Buy spool" +msgstr "Acquista bobina" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:261 +msgctxt "@button" +msgid "Safety datasheet" +msgstr "Scheda tecnica sulla sicurezza" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:270 +msgctxt "@button" +msgid "Technical datasheet" +msgstr "Scheda tecnica" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Failed to load packages:" +msgstr "Impossibile caricare pacchetti:" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Retry?" +msgstr "Riprovare?" + +#: plugins/Marketplace/resources/qml/Packages.qml:167 +msgctxt "@button" +msgid "Loading" +msgstr "Caricamento in corso" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No more results to load" +msgstr "Nessun altro risultato da caricare" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No results found with current filter" +msgstr "Nessun risultato trovato con il filtro corrente" + +#: plugins/Marketplace/resources/qml/Packages.qml:226 +msgctxt "@button" +msgid "Load more" +msgstr "Carica altro" + +#: plugins/Marketplace/resources/qml/Plugins.qml:8 +msgctxt "@header" +msgid "Install Plugins" +msgstr "Installa plugin" + +#: plugins/Marketplace/resources/qml/Plugins.qml:12 +msgctxt "@text" +msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." +msgstr "Semplifica il flusso di lavoro e personalizza l'esperienza UltiMaker Cura experience con plugin forniti dalla nostra eccezionale comunità di utenti." + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 +msgctxt "@info" +msgid "UltiMaker Verified Plug-in" +msgstr "Plug-in verificato UltiMaker" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "UltiMaker Certified Material" +msgstr "Materiale certificato UltiMaker" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 +msgctxt "@info" +msgid "UltiMaker Verified Package" +msgstr "Pacchetto verificato UltiMaker" + +#: plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "Assistente modello 3D" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -836,823 +2384,1092 @@ msgstr "" "

    Scopri come garantire la migliore qualità ed affidabilità di stampa.

    \n" "

    Visualizza la guida alla qualità di stampa

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 -#, 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 "Il file di progetto {0} contiene un tipo di macchina sconosciuto {1}. Impossibile importare la macchina. Verranno invece importati i modelli." +#: plugins/ModelChecker/plugin.json +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." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "Apri file progetto" +#: plugins/ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Controllo modello" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "Il file di progetto {0} è diventato improvvisamente inaccessibile: {1}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:659 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "Impossibile aprire il file di progetto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:658 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "Il file di progetto {0} è danneggiato: {1}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:711 -#, 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 "Il file di progetto {0} è realizzato con profili sconosciuti a questa versione di Ultimaker Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Consigliata" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:214 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Personalizzata" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:390 -msgctxt "@info:status" -msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 -msgctxt "@info:title" -msgid "Material profiles not installed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 -msgctxt "@action:button" -msgid "Install Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "File 3MF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "Plug-in Writer 3MF danneggiato." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "Ancora nessuna area di lavoro da scrivere. Aggiungere innanzitutto una stampante." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "Nessuna autorizzazione di scrittura dell'area di lavoro qui." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "Il sistema operativo non consente di salvare un file di progetto in questa posizione o con questo nome file." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:238 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Errore scrittura file 3MF." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:282 -#, python-brace-format -msgctxt "@error:material" -msgid "It was not possible to store material package information in project file: {material}. This project may not open correctly on other systems." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 -msgctxt "@info:title" -msgid "Failed to save material package information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "File 3MF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "File 3MF Progetto Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "File AMF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 -msgctxt "@info:title" -msgid "Backups" -msgstr "Backup" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Si è verificato un errore durante il caricamento del backup." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Creazione del backup in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "Si è verificato un errore durante la creazione del backup." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Caricamento backup in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Caricamento backup completato." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "Il backup supera la dimensione file massima." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Si è verificato un errore cercando di ripristinare il backup." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Gestione backup" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "Sezionamento non riuscito con un errore imprevisto. Valutare se segnalare un bug nel registro problemi." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "Sezionamento non riuscito" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 -msgctxt "@message:button" -msgid "Report a bug" -msgstr "Segnala un errore" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 -msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." -msgstr "Segnalare un errore nel registro problemi di Ultimaker Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:400 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "Impossibile eseguire il sezionamento con il materiale corrente in quanto incompatibile con la macchina o la configurazione selezionata." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:401 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:434 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:461 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:473 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:485 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:498 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "Sezionamento impossibile" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:433 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "Impossibile eseguire il sezionamento con le impostazioni attuali. Le seguenti impostazioni presentano errori: {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:460 -#, 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 "Impossibile eseguire il sezionamento a causa di alcune impostazioni per modello. Le seguenti impostazioni presentano errori su uno o più modelli: {error_labels}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:472 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "Impossibile eseguire il sezionamento perché la torre di innesco o la posizione di innesco non sono valide." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:484 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "Impossibile effettuare il sezionamento in quanto vi sono oggetti associati a Extruder %s disabilitato." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 -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 "" -"Verificare le impostazioni e controllare se i modelli:\n" -"- Rientrano nel volume di stampa\n" -"- Sono assegnati a un estrusore abilitato\n" -"- Non sono tutti impostati come maglie modificatore" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Elaborazione dei livelli" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 -msgctxt "@info:title" -msgid "Information" -msgstr "Informazioni" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Profilo Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" -msgid "Could not access update information." -msgstr "Non è possibile accedere alle informazioni di aggiornamento." +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 "" +"Accertarsi che la stampante sia collegata:\n" +"- Controllare se la stampante è accesa.\n" +"- Controllare se la stampante è collegata alla rete.\n" +"- Controllare se è stato effettuato l'accesso per rilevare le stampanti collegate al cloud." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, 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 "Nuove funzionalità o bug fix potrebbero essere disponibili per {machine_name}. Se non è già stato fatto in precedenza, si consiglia di aggiornare il firmware della stampante alla versione {latest_version}." +#: plugins/MonitorStage/MonitorMain.qml:113 +msgctxt "@info" +msgid "Please connect your printer to the network." +msgstr "Collegare la stampante alla rete." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s stable firmware available" -msgstr "Nuovo firmware %s stabile disponibile" +#: plugins/MonitorStage/MonitorMain.qml:148 +msgctxt "@label link to technical assistance" +msgid "View user manuals online" +msgstr "Visualizza i manuali utente online" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "Modalità di aggiornamento" +#: plugins/MonitorStage/MonitorMain.qml:164 +msgctxt "@info" +msgid "In order to monitor your print from Cura, please connect the printer." +msgstr "Al fine di monitorare la stampa da Cura, collegare la stampante." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Aggiornamento firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "File G-Code compresso" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter non supporta la modalità di testo." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "File G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:350 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Parsing codice G" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:506 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "Dettagli codice G" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 -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 "Verifica che il codice G sia idoneo alla tua stampante e alla sua configurazione prima di trasmettere il file. La rappresentazione del codice G potrebbe non essere accurata." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "File G" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter non supporta la modalità non di testo." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Preparare il codice G prima dell’esportazione." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Immagine JPG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Immagine JPEG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Immagine PNG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Immagine BMP" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Immagine GIF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Profili Cura 15.04" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Impostazioni macchina" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Desiderate sincronizzare pacchetti materiale e software con il vostro account?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Modifiche rilevate dal tuo account Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 -msgctxt "@action:button" -msgid "Sync" -msgstr "Sincronizza" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Sincronizzazione in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:12 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:79 -msgctxt "@button" -msgid "Decline" -msgstr "Non accetto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:13 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53 -msgctxt "@button" -msgid "Agree" -msgstr "Accetta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Accordo di licenza plugin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Rifiuta e rimuovi dall'account" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "Affinché le modifiche diventino effettive, è necessario chiudere e riavviare {}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "Impossibile scaricare i plugin {}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:28 -msgctxt "@label" -msgid "Installed Plugins" -msgstr "Plugin installati" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:29 -msgctxt "@label" -msgid "Installed Materials" -msgstr "Materiali installati" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:33 -msgctxt "@label" -msgid "Bundled Plugins" -msgstr "Plugin inseriti nel bundle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:34 -msgctxt "@label" -msgid "Bundled Materials" -msgstr "Materiali inseriti nel bundle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:43 -msgctxt "@label:property" -msgid "Unknown Package" -msgstr "Pacchetto sconosciuto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:66 -msgctxt "@label:property" -msgid "Unknown Author" -msgstr "Autore sconosciuto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:117 -msgctxt "@info:error" -msgid "Could not interpret the server's response." -msgstr "Impossibile interpretare la risposta del server." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:148 -msgctxt "@info:error" -msgid "Could not reach Marketplace." -msgstr "Impossibile raggiungere Marketplace." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 +#: plugins/MonitorStage/__init__.py:14 msgctxt "@item:inmenu" msgid "Monitor" msgstr "Controlla" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: plugins/MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Fase di controllo" + +#: plugins/MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Fornisce una fase di controllo in Cura." + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 +msgctxt "@label" +msgid "Mesh Type" +msgstr "Tipo di maglia" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 +msgctxt "@label" +msgid "Normal model" +msgstr "Modello normale" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 +msgctxt "@label" +msgid "Print as support" +msgstr "Stampa come supporto" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Modificare le impostazioni per le sovrapposizioni" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "Non supportano le sovrapposizioni" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 +msgctxt "@item:inlistbox" +msgid "Infill mesh only" +msgstr "Solo maglia di riempimento" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161 +msgctxt "@item:inlistbox" +msgid "Cutting mesh" +msgstr "Ritaglio mesh" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386 +msgctxt "@action:button" +msgid "Select settings" +msgstr "Seleziona impostazioni" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Seleziona impostazioni di personalizzazione per questo modello" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtro..." + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Mostra tutto" + +#: plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" msgid "Per Model Settings" msgstr "Impostazioni per modello" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +#: plugins/PerObjectSettingsTool/__init__.py:15 msgctxt "@info:tooltip" msgid "Configure Per Model Settings" msgstr "Configura impostazioni per modello" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Utilità impostazioni per modello" + +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Fornisce le impostazioni per modello." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Post-elaborazione" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "Modifica codice G" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Plug-in di post-elaborazione" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 +msgctxt "@label" +msgid "Post Processing Scripts" +msgstr "Script di post-elaborazione" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "Aggiungi uno script" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 +msgctxt "@label" +msgid "Settings" +msgstr "Impostazioni" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Modificare gli script di post-elaborazione attivi." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "È attivo il seguente script:" +msgstr[1] "Sono attivi i seguenti script:" + +#: plugins/PostProcessingPlugin/plugin.json +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" + +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Post-elaborazione" + +#: plugins/PrepareStage/PrepareMenu.qml:74 +msgctxt "@button" +msgid "Add printer" +msgstr "Aggiungi stampante" + +#: plugins/PrepareStage/PrepareMenu.qml:90 +msgctxt "@button" +msgid "Manage printers" +msgstr "Gestione stampanti" + +#: plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "Prepara" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 +#: plugins/PrepareStage/plugin.json +msgctxt "name" +msgid "Prepare Stage" +msgstr "Fase di preparazione" + +#: plugins/PrepareStage/plugin.json +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Fornisce una fase di preparazione in Cura." + +#: plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" msgid "Preview" msgstr "Anteprima" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +#: plugins/PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Fase di anteprima" + +#: plugins/PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Fornisce una fase di anteprima in Cura." + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Salva su unità rimovibile" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Salva su unità rimovibile {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "Non ci sono formati di file disponibili per la scrittura!" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 #, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Salvataggio su unità rimovibile {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 msgctxt "@info:title" msgid "Saving" msgstr "Salvataggio in corso" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "Impossibile salvare {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 #, 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 "Impossibile trovare un nome file durante il tentativo di scrittura su {device}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 #, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Impossibile salvare su unità rimovibile {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 #, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Salvato su unità rimovibile {0} come {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 msgctxt "@info:title" msgid "File Saved" msgstr "File salvato" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 msgctxt "@action:button" msgid "Eject" msgstr "Rimuovi" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 #, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Rimuovi il dispositivo rimovibile {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 #, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Espulso {0}. È ora possibile rimuovere in modo sicuro l'unità." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 msgctxt "@info:title" msgid "Safely Remove Hardware" msgstr "Rimozione sicura dell'hardware" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 #, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Espulsione non riuscita {0}. È possibile che un altro programma stia utilizzando l’unità." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +#: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 msgctxt "@item:intext" msgid "Removable Drive" msgstr "Unità rimovibile" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "Cura non visualizza in modo accurato i layer se la funzione Wire Printing è abilitata." +#: plugins/RemovableDriveOutputDevice/plugin.json +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." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Vista simulazione" +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Plugin dispositivo di output unità rimovibile" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 +#: plugins/SentryLogger/plugin.json +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" + +#: plugins/SentryLogger/plugin.json +msgctxt "name" +msgid "Sentry Logger" +msgstr "Logger sentinella" + +#: plugins/SimulationView/SimulationView.py:129 msgctxt "@info:status" msgid "Nothing is shown because you need to slice first." msgstr "Non viene visualizzato nulla poiché è necessario prima effetuare lo slicing." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 +#: plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "No layers to show" msgstr "Nessun layer da visualizzare" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 +#: plugins/SimulationView/SimulationView.py:132 +#: plugins/SolidView/SolidView.py:74 msgctxt "@info:option_text" msgid "Do not show this message again" msgstr "Non mostrare nuovamente questo messaggio" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:18 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:47 +msgctxt "@label" +msgid "Color scheme" +msgstr "Schema colori" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Colore materiale" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Tipo di linea" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:112 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Velocità" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:116 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Spessore layer" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:120 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Larghezza della linea" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:124 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Flusso" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:164 +msgctxt "@label" +msgid "Compatibility Mode" +msgstr "Modalità di compatibilità" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:231 +msgctxt "@label" +msgid "Travels" +msgstr "Spostamenti" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:237 +msgctxt "@label" +msgid "Helpers" +msgstr "Helper" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:243 +msgctxt "@label" +msgid "Shell" +msgstr "Guscio" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:249 +msgctxt "@label" +msgid "Infill" +msgstr "Riempimento" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:257 +msgctxt "@label" +msgid "Starts" +msgstr "Avvia" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:304 +msgctxt "@label" +msgid "Only Show Top Layers" +msgstr "Mostra solo strati superiori" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:313 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "Mostra 5 strati superiori in dettaglio" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:326 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Superiore / Inferiore" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:330 +msgctxt "@label" +msgid "Inner Wall" +msgstr "Parete interna" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:397 +msgctxt "@label" +msgid "min" +msgstr "min" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:462 +msgctxt "@label" +msgid "max" +msgstr "max" + +#: plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Visualizzazione strato" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +#: plugins/SimulationView/plugin.json +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Fornisce l'anteprima dei dati dei livelli suddivisi in sezioni." + +#: plugins/SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "Vista simulazione" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Maggiori informazioni sulla raccolta di dati anonimi" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 +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 acquisisce dati anonimi per migliorare la qualità di stampa e l'esperienza dell'utente. Di seguito è riportato un esempio dei dati condivisi:" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Non desidero inviare dati anonimi" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Consenti l'invio di dati anonimi" + +#: plugins/SliceInfoPlugin/SliceInfo.py:95 msgctxt "@text" msgid "Unable to read example data file." msgstr "Impossibile leggere il file di dati di esempio." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Informazioni su sezionamento" + +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Invia informazioni su sezionamento anonime Può essere disabilitato tramite le preferenze." + +#: plugins/SolidView/SolidView.py:71 msgctxt "@info:status" msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." msgstr "Le aree evidenziate indicano superfici mancanti o estranee. Correggi il modello e aprilo nuovamente in Cura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +#: plugins/SolidView/SolidView.py:73 msgctxt "@info:title" msgid "Model Errors" msgstr "Errori modello" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +#: plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" msgstr "Visualizzazione compatta" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +#: plugins/SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Fornisce una normale visualizzazione a griglia compatta." + +#: plugins/SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Visualizzazione compatta" + +#: plugins/SupportEraser/__init__.py:12 msgctxt "@label" msgid "Support Blocker" msgstr "Blocco supporto" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 +#: plugins/SupportEraser/__init__.py:13 msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "Crea un volume in cui i supporti non vengono stampati." -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 +#: plugins/SupportEraser/plugin.json +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" + +#: plugins/SupportEraser/plugin.json +msgctxt "name" +msgid "Support Eraser" +msgstr "Cancellazione supporto" + +#: plugins/TrimeshReader/__init__.py:15 msgctxt "@item:inlistbox 'Open' is part of the name of this file format." msgid "Open Compressed Triangle Mesh" msgstr "Open Compressed Triangle Mesh" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: plugins/TrimeshReader/__init__.py:19 msgctxt "@item:inlistbox" msgid "COLLADA Digital Asset Exchange" msgstr "COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: plugins/TrimeshReader/__init__.py:23 msgctxt "@item:inlistbox" msgid "glTF Binary" msgstr "glTF Binary" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: plugins/TrimeshReader/__init__.py:27 msgctxt "@item:inlistbox" msgid "glTF Embedded JSON" msgstr "glTF Embedded JSON" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: plugins/TrimeshReader/__init__.py:36 msgctxt "@item:inlistbox" msgid "Stanford Triangle Format" msgstr "Stanford Triangle Format" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: plugins/TrimeshReader/__init__.py:40 msgctxt "@item:inlistbox" msgid "Compressed COLLADA Digital Asset Exchange" msgstr "Compressed COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Pacchetto formato Ultimaker" +#: plugins/TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Fornisce supporto per la lettura dei file modello." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 +#: plugins/TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh Reader" + +#: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "UltiMaker Format Package" +msgstr "Pacchetto formato UltiMaker" + +#: plugins/UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Fornisce il supporto per la lettura di pacchetti formato UltiMaker." + +#: plugins/UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "Lettore UFP" + +#: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80 +#: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115 +#: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180 msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "Impossibile scrivere nel file UFP:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Livella piano di stampa" +#: plugins/UFPWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Fornisce il supporto per la scrittura di pacchetti formato UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Seleziona aggiornamenti" +#: plugins/UFPWriter/plugin.json +msgctxt "name" +msgid "UFP Writer" +msgstr "Writer UFP" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Gestisce le connessioni di rete alle stampanti UltiMaker in rete." + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Connessione di rete UltiMaker" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Collega alla stampante in rete" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Selezionare la stampante dall’elenco seguente:" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +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 "Per stampare direttamente sulla stampante in rete, verificare che la stampante desiderata sia collegata alla rete mediante un cavo di rete o mediante collegamento alla rete WIFI. Se non si esegue il collegamento di Cura alla stampante, è comunque possibile utilizzare una chiavetta USB per trasferire i file codice G alla stampante." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 +msgctxt "@action:button" +msgid "Edit" +msgstr "Modifica" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 +#: resources/qml/Preferences/MachinesPage.qml:153 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:186 +#: resources/qml/Preferences/ProfilesPage.qml:321 +msgctxt "@action:button" +msgid "Remove" +msgstr "Rimuovi" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Aggiorna" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 +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" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 +msgctxt "@label" +msgid "Type" +msgstr "Tipo" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 +msgctxt "@label" +msgid "Firmware version" +msgstr "Versione firmware" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 +msgctxt "@label" +msgid "Address" +msgstr "Indirizzo" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Questa stampante non è predisposta per comandare un gruppo di stampanti." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Questa stampante comanda un gruppo di %1 stampanti." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "La stampante a questo indirizzo non ha ancora risposto." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" +msgid "Connect" +msgstr "Collega" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Indirizzo IP non valido" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Inserire un indirizzo IP valido." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Indirizzo stampante" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Inserire l'indirizzo IP della stampante in rete." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Modifiche configurazione" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 +msgctxt "@action:button" +msgid "Override" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "La stampante assegnata, %1, richiede la seguente modifica di configurazione:" +msgstr[1] "La stampante assegnata, %1, richiede le seguenti modifiche di configurazione:" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "La stampante %1 è assegnata, ma il processo contiene una configurazione materiale sconosciuta." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Cambia materiale %1 da %2 a %3." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "Caricare %3 come materiale %1 (Operazione non annullabile)." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Cambia print core %1 da %2 a %3." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "L’override utilizza le impostazioni specificate con la configurazione stampante esistente. Ciò può causare una stampa non riuscita." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@label" +msgid "Move to top" +msgstr "Sposta in alto" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155 +msgctxt "@label" +msgid "Delete" +msgstr "Cancella" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186 +#: resources/qml/MonitorButton.qml:284 +msgctxt "@label" +msgid "Resume" +msgstr "Riprendi" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188 +msgctxt "@label" +msgid "Pausing..." +msgstr "Messa in pausa..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190 +msgctxt "@label" +msgid "Resuming..." +msgstr "Ripresa in corso..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192 +#: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288 +msgctxt "@label" +msgid "Pause" +msgstr "Pausa" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Abort" +msgstr "Interrompi" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Aborting..." +msgstr "Interr. in corso..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218 +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 "Sei sicuro di voler spostare %1 all’inizio della coda?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Sposta il processo di stampa in alto" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "Sei sicuro di voler cancellare %1?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Cancella processo di stampa" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "Sei sicuro di voler interrompere %1?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237 +#: resources/qml/MonitorButton.qml:326 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Interrompi la stampa" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Stampante non disponibile" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 +msgctxt "@label" +msgid "First available" +msgstr "Primo disponibile" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Aggiornare il firmware della stampante per gestire la coda da remoto." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +msgctxt "@label:status" +msgid "Aborted" +msgstr "Interrotto" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 +msgctxt "@label:status" +msgid "Finished" +msgstr "Terminato" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Preparazione in corso..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "Interr. in corso..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +msgctxt "@label:status" +msgid "Failed" +msgstr "Non riuscita" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Messa in pausa..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Paused" +msgstr "In pausa" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Ripresa in corso..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Action required" +msgstr "Richiede un'azione" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Finisce %1 a %2" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Gestione stampanti" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280 +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 "Impossibile visualizzare feed della Webcam per stampanti cloud da UltiMaker Cura. Fare clic su \"Gestione stampanti\" per visitare Ultimaker Digital Factory e visualizzare questa Webcam." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Caricamento in corso..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Non disponibile" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Non raggiungibile" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Idle" +msgstr "Ferma" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361 +msgctxt "@label:status" +msgid "Printing" +msgstr "Stampa in corso" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402 +msgctxt "@label" +msgid "Untitled" +msgstr "Senza titolo" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417 +msgctxt "@label" +msgid "Anonymous" +msgstr "Anonimo" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Richiede modifiche di configurazione" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452 +msgctxt "@action:button" +msgid "Details" +msgstr "Dettagli" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 +msgctxt "@label" +msgid "Queued" +msgstr "Coda di stampa" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Gestisci nel browser" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "Non sono presenti processi di stampa nella coda. Eseguire lo slicing e inviare un processo per aggiungerne uno." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "Print jobs" +msgstr "Processi di stampa" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108 +msgctxt "@label" +msgid "Total print time" +msgstr "Tempo di stampa totale" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117 +msgctxt "@label" +msgid "Waiting for" +msgstr "In attesa" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117 +msgctxt "@info" +msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" +msgstr "Monitora le tue stampanti ovunque ti trovi utilizzando Ultimaker Digital Factory" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129 +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Visualizza le stampanti in Digital Factory" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Stampa sulla rete" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 +msgctxt "@action:button" +msgid "Print" +msgstr "Stampa" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 +msgctxt "@label" +msgid "Printer selection" +msgstr "Selezione stampante" + +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162 msgctxt "@action:button" msgid "Print via cloud" msgstr "Stampa tramite cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Stampa tramite cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Collegato tramite cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276 msgctxt "@action:button" msgid "Monitor print" msgstr "Monitora stampa" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278 msgctxt "@action:tooltip" msgid "Track the print in Ultimaker Digital Factory" msgstr "Traccia la stampa in Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Codice di errore sconosciuto durante il caricamento del processo di stampa: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "Nuova stampante rilevata dall'account Ultimaker" -msgstr[1] "Nuove stampanti rilevate dall'account Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:242 -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "Aggiunta della stampante {name} ({model}) dall'account" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:261 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "... e {0} altra" -msgstr[1] "... e altre {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:266 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "Stampanti aggiunte da Digital Factory:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:334 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "Non è disponibile una connessione cloud per una stampante" -msgstr[1] "Non è disponibile una connessione cloud per alcune stampanti" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:343 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "Questa stampante non è collegata a Digital Factory:" -msgstr[1] "Queste stampanti non sono collegate a Digital Factory:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:348 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:440 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:352 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "Per stabilire una connessione, visitare {website_link}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:356 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "Mantenere le configurazioni delle stampanti" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "Rimuovere le stampanti" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:442 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425 #, 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} sarà rimossa fino alla prossima sincronizzazione account." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:443 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426 #, 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 "Per rimuovere definitivamente {printer_name}, visitare {digital_factory_link}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:444 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427 #, 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 "Rimuovere temporaneamente {printer_name}?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474 msgctxt "@title:window" msgid "Remove printers?" msgstr "Rimuovere le stampanti?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477 #, python-brace-format msgctxt "@label" msgid "" @@ -1668,7 +3485,7 @@ msgstr[1] "" "Si stanno per rimuovere {0} stampanti da Cura. Questa azione non può essere annullata.\n" "Continuare?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be undone.\n" @@ -1677,7 +3494,7 @@ msgstr "" "Si stanno per rimuovere tutte le stampanti da Cura. Questa azione non può essere annullata. \n" "Continuare?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, python-brace-format msgctxt "@info:status" msgid "" @@ -1687,2493 +3504,1375 @@ msgstr "" "Impossibile connettere la stampante {printer_name} tramite cloud.\n" " Gestisci la coda di stampa e monitora le stampe da qualsiasi posizione collegando la stampante a Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 msgctxt "@info:title" msgid "Are you ready for cloud printing?" msgstr "Pronto per la stampa tramite cloud?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 msgctxt "@action" msgid "Get started" msgstr "Per iniziare" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24 msgctxt "@action" msgid "Learn more" msgstr "Ulteriori informazioni" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 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." +msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Si sta tentando di connettersi a una stampante che non esegue Ultimaker Connect. Aggiornare la stampante con il firmware più recente." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 msgctxt "@info:title" msgid "Update your printer" msgstr "Aggiornare la stampante" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 #, 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 ha rilevato dei profili di materiale non ancora installati sulla stampante host del gruppo {0}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Invio dei materiali alla stampante" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "Nuova stampante rilevata dall'account UltiMaker" +msgstr[1] "Nuove stampanti rilevate dall'account UltiMaker" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29 +#, python-brace-format +msgctxt "info:status Filled in with printer name and printer model." +msgid "Adding printer {name} ({model}) from your account" +msgstr "Aggiunta della stampante {name} ({model}) dall'account" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "... e {0} altra" +msgstr[1] "... e altre {0}" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "Stampanti aggiunte da Digital Factory:" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 #, 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 "Tentativo di connessione a {0} in corso, che non è l'host di un gruppo. È possibile visitare la pagina web per configurarla come host del gruppo." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 msgctxt "@info:title" msgid "Not a group host" msgstr "Non host del gruppo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 msgctxt "@action" msgid "Configure group" msgstr "Configurare il gruppo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18 +msgctxt "@info:status" +msgid "You will receive a confirmation via email when the print job is approved" +msgstr "Riceverai una conferma via e-mail quando il processo di stampa sarà approvato" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19 +msgctxt "@info:title" +msgid "The print job was successfully submitted" +msgstr "Il processo di stampa è stato inviato correttamente" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22 +msgctxt "@action" +msgid "Manage print jobs" +msgstr "Gestisci processi di stampa" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 msgctxt "@info:status" msgid "Please wait until the current job has been sent." msgstr "Attendere che sia stato inviato il processo corrente." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 msgctxt "@info:title" msgid "Print error" msgstr "Errore di stampa" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Impossibile caricare i dati sulla stampante." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 msgctxt "@info:title" msgid "Network error" msgstr "Errore di rete" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 msgctxt "@info:status" msgid "Sending Print Job" msgstr "Invio di un processo di stampa" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 msgctxt "@info:status" msgid "Uploading print job to printer." msgstr "Caricamento del processo di stampa sulla stampante." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 msgctxt "@info:status" msgid "Print job queue is full. The printer can't accept a new job." msgstr "La coda dei processi di stampa è piena. La stampante non può accettare un nuovo processo." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 msgctxt "@info:title" msgid "Queue Full" msgstr "Coda piena" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "Processo di stampa inviato con successo alla stampante." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 msgctxt "@info:title" msgid "Data Sent" msgstr "Dati inviati" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "Questa stampante non è collegata a Digital Factory:" +msgstr[1] "Queste stampanti non sono collegate a Digital Factory:" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "Per stabilire una connessione, visitare {website_link}" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "Non è disponibile una connessione cloud per una stampante" +msgstr[1] "Non è disponibile una connessione cloud per alcune stampanti" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "Mantenere le configurazioni delle stampanti" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "Rimuovere le stampanti" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "Stampa sulla rete" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "Stampa sulla rete" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64 msgctxt "@info:status" msgid "Connected over the network" msgstr "Collegato alla rete" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 msgctxt "@action" msgid "Connect via Network" msgstr "Collega tramite rete" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +#: plugins/UM3NetworkPrinting/src/Utils.py:27 msgctxt "@info:status" msgid "tomorrow" msgstr "domani" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +#: plugins/UM3NetworkPrinting/src/Utils.py:30 msgctxt "@info:status" msgid "today" msgstr "oggi" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:42 msgctxt "@item:inmenu" msgid "USB printing" msgstr "Stampa USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:43 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print via USB" msgstr "Stampa tramite USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:44 msgctxt "@info:tooltip" msgid "Print via USB" msgstr "Stampa tramite USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:80 msgctxt "@info:status" msgid "Connected via USB" msgstr "Connesso tramite USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:110 msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" msgstr "Stampa tramite USB in corso, la chiusura di Cura interrompe la stampa. Confermare?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:135 msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Stampa ancora in corso. Cura non può avviare un'altra stampa tramite USB finché la precedente non è stata completata." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:136 msgctxt "@message" msgid "Print in Progress" msgstr "Stampa in corso" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "File X3D" +#: plugins/USBPrinting/plugin.json +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." -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Vista ai raggi X" +#: plugins/USBPrinting/plugin.json +msgctxt "name" +msgid "USB printing" +msgstr "Stampa USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 -msgctxt "@title:window" -msgid "Open Project" -msgstr "Apri progetto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "Aggiorna esistente" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "Crea nuovo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:59 -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "Riepilogo - Progetto Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108 -msgctxt "@info:tooltip" -msgid "How should the conflict in the machine be resolved?" -msgstr "Come può essere risolto il conflitto nella macchina?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:95 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Impostazioni della stampante" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:104 -msgctxt "@action:label" -msgid "Type" -msgstr "Tipo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:192 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -msgctxt "@action:label" -msgid "Printer Group" -msgstr "Gruppo stampanti" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:217 -msgctxt "@info:tooltip" -msgid "How should the conflict in the profile be resolved?" -msgstr "Come può essere risolto il conflitto nel profilo?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:220 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Impostazioni profilo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:250 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:375 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:244 -msgctxt "@action:label" -msgid "Name" -msgstr "Nome" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:268 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:261 -msgctxt "@action:label" -msgid "Intent" -msgstr "Intent" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:286 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:228 -msgctxt "@action:label" -msgid "Not in profile" -msgstr "Non nel profilo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:292 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:233 -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "%1 override" -msgstr[1] "%1 override" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 -msgctxt "@action:label" -msgid "Derivative from" -msgstr "Derivato da" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:311 -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "%1, %2 override" -msgstr[1] "%1, %2 override" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:333 -msgctxt "@info:tooltip" -msgid "How should the conflict in the material be resolved?" -msgstr "Come può essere risolto il conflitto nel materiale?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:360 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Impostazioni materiale" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:396 -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "Impostazione visibilità" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 -msgctxt "@action:label" -msgid "Mode" -msgstr "Modalità" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 -msgctxt "@action:label" -msgid "Visible settings:" -msgstr "Impostazioni visibili:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "%1 su %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:447 -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "Il caricamento di un progetto annulla tutti i modelli sul piano di stampa." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 -msgctxt "@action:button" -msgid "Open" -msgstr "Apri" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 -msgctxt "@action:button" -msgid "Open project anyway" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 -msgctxt "@action:button" -msgid "Install missing material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Ulteriori informazioni?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Esegui backup adesso" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Backup automatico" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Crea automaticamente un backup ogni giorno in cui viene avviata Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 -msgctxt "@button" -msgid "Restore" -msgstr "Ripristina" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Cancella backup" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Sei sicuro di voler cancellare questo backup? Questa operazione non può essere annullata." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Ripristina backup" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "Riavviare Cura prima di ripristinare il backup. Chiudere Cura adesso?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Versione Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Macchine" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materiali" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profili" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Plugin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Backup Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "I miei backup" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Nessun backup. Usare il pulsante ‘Esegui backup adesso’ per crearne uno." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Durante la fase di anteprima, saranno visibili solo 5 backup. Rimuovi un backup per vedere quelli precedenti." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Backup e sincronizzazione delle impostazioni Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:212 -msgctxt "@button" -msgid "Sign in" -msgstr "Accedi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 -msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 -msgctxt "@option" -msgid "Save Cura project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Aggiornamento firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 -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 "Il firmware è la parte di software eseguita direttamente sulla stampante 3D. Questo firmware controlla i motori passo-passo, regola la temperatura e, in ultima analisi, consente il funzionamento della stampante." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 -msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "Il firmware inviato a corredo delle nuove stampanti funziona, tuttavia le nuove versioni tendono ad avere più funzioni ed ottimizzazioni." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Aggiorna automaticamente il firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Carica il firmware personalizzato" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "Impossibile aggiornare il firmware: nessun collegamento con la stampante." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 -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." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Seleziona il firmware personalizzato" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Aggiornamento del firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Aggiornamento firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Aggiornamento del firmware completato." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Aggiornamento firmware non riuscito a causa di un errore sconosciuto." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Aggiornamento firmware non riuscito a causa di un errore di comunicazione." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Aggiornamento firmware non riuscito a causa di un errore di input/output." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Aggiornamento firmware non riuscito per firmware mancante." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:14 -msgctxt "@title:window" -msgid "Convert Image" -msgstr "Converti immagine" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 -msgctxt "@action:label" -msgid "Height (mm)" -msgstr "Altezza (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "La distanza massima di ciascun pixel da \"Base.\"" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 -msgctxt "@action:label" -msgid "Base (mm)" -msgstr "Base (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 -msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "L'altezza della base dal piano di stampa in millimetri." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 -msgctxt "@action:label" -msgid "Width (mm)" -msgstr "Larghezza (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 -msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate" -msgstr "La larghezza in millimetri sul piano di stampa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 -msgctxt "@action:label" -msgid "Depth (mm)" -msgstr "Profondità (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 -msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "La profondità in millimetri sul piano di stampa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 -msgctxt "@item:inlistbox" -msgid "Darker is higher" -msgstr "Più scuro è più alto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -msgctxt "@item:inlistbox" -msgid "Lighter is higher" -msgstr "Più chiaro è più alto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 -msgctxt "@info:tooltip" -msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." -msgstr "Per le litofanie, i pixel scuri devono corrispondere alle posizioni più spesse per bloccare maggiormente il passaggio della luce. Per le mappe con altezze superiori, i pixel più chiari indicano un terreno più elevato, quindi nel modello 3D generato i pixel più chiari devono corrispondere alle posizioni più spesse." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:205 -msgctxt "@action:label" -msgid "Color Model" -msgstr "Modello a colori" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:224 -msgctxt "@item:inlistbox" -msgid "Linear" -msgstr "Lineare" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 -msgctxt "@item:inlistbox" -msgid "Translucency" -msgstr "Traslucenza" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 -msgctxt "@info:tooltip" -msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." -msgstr "Per le litofanie, è disponibile un semplice modello logaritmico per la traslucenza. Per le mappe delle altezze, i valori in pixel corrispondono alle altezze in modo lineare." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 -msgctxt "@action:label" -msgid "1mm Transmittance (%)" -msgstr "Trasmittanza di 1 mm (%)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 -msgctxt "@info:tooltip" -msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." -msgstr "Percentuale di luce che penetra una stampa dello spessore di 1 millimetro. Se questo valore si riduce, il contrasto nelle aree scure dell'immagine aumenta, mentre il contrasto nelle aree chiare dell'immagine diminuisce." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 -msgctxt "@action:label" -msgid "Smoothing" -msgstr "Smoothing" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:298 -msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "La quantità di smoothing (levigatura) da applicare all'immagine." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:143 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:80 -msgctxt "@action:button" -msgid "OK" -msgstr "OK" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Stampante" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Impostazioni ugello" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Dimensione ugello" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Diametro del materiale compatibile" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Scostamento X ugello" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Scostamento Y ugello" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Numero ventola di raffreddamento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Codice G avvio estrusore" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Codice G fine estrusore" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Impostazioni della stampante" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (Larghezza)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Profondità)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Altezza)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Forma del piano di stampa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 -msgctxt "@label" -msgid "Origin at center" -msgstr "Origine al centro" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 -msgctxt "@label" -msgid "Heated bed" -msgstr "Piano riscaldato" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Volume di stampa riscaldato" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 -msgctxt "@label" -msgid "G-code flavor" -msgstr "Versione codice G" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Impostazioni della testina di stampa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 -msgctxt "@label" -msgid "X min" -msgstr "X min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 -msgctxt "@label" -msgid "Y min" -msgstr "Y min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 -msgctxt "@label" -msgid "X max" -msgstr "X max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 -msgctxt "@label" -msgid "Y max" -msgstr "Y max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Altezza gantry" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Numero di estrusori" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Applica offset estrusore a gcode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "Codice G avvio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400 -msgctxt "@title:label" -msgid "End G-code" -msgstr "Codice G fine" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 -msgctxt "@title" -msgid "Changes from your account" -msgstr "Modifiche dall'account" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -msgctxt "@button" -msgid "Dismiss" -msgstr "Rimuovi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:118 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:175 -msgctxt "@button" -msgid "Next" -msgstr "Avanti" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "Verranno aggiunti i seguenti pacchetti:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "Impossibile installare i seguenti pacchetti a causa di una versione di Cura non compatibile:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 -msgctxt "@title" -msgid "Install missing Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 -msgctxt "@button" -msgid "Plugin license agreement" -msgstr "Accordo di licenza plugin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47 -msgctxt "@text" -msgid "Please read and agree with the plugin licence." -msgstr "Leggi e accetta la licenza del plugin." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 -msgctxt "@button" -msgid "Accept" -msgstr "Accetto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 -msgctxt "@header" -msgid "Manage packages" -msgstr "Gestisci pacchetti" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15 -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." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 -msgctxt "@info:tooltip" -msgid "Manage packages" -msgstr "Gestisci pacchetti" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 -msgctxt "@title" -msgid "Loading..." -msgstr "Caricamento in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 -msgctxt "@button" -msgid "Plugins" -msgstr "Plugin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 -msgctxt "@button" -msgid "Materials" -msgstr "Materiali" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 -msgctxt "@info" -msgid "Search in the browser" -msgstr "Cerca nel browser" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:271 -msgctxt "@button" -msgid "In order to use the package you will need to restart Cura" -msgstr "Per utilizzare il pacchetto è necessario riavviare Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:279 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Chiudere %1" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:8 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MissingPackages.qml:8 -msgctxt "@header" -msgid "Install Materials" -msgstr "Installa materiali" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 -msgctxt "@text" -msgid "Select and install material profiles optimised for your Ultimaker 3D printers." -msgstr "Selezionare e installare i profili dei materiali ottimizzati per le stampanti 3D Ultimaker." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "È necessario accettare la licenza per installare il pacchetto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:101 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:207 -msgctxt "@button:label" -msgid "Learn More" -msgstr "Ulteriori Informazioni" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:172 -msgctxt "@label Is followed by the name of an author" -msgid "By" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Enable" -msgstr "Abilita" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Disable" -msgstr "Disabilita" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 -msgctxt "@button" -msgid "Downgrading..." -msgstr "Downgrade in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 -msgctxt "@button" -msgid "Downgrade" -msgstr "Downgrade" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 -msgctxt "@button" -msgid "Installing..." -msgstr "Installazione in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 -msgctxt "@button" -msgid "Install" -msgstr "Installazione" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 -msgctxt "@button" -msgid "Uninstall" -msgstr "Disinstalla" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Updating..." -msgstr "Aggiornamento in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Update" -msgstr "Aggiorna" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 -msgctxt "@header" -msgid "Package details" -msgstr "Dettagli pacchetto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 -msgctxt "@button:tooltip" -msgid "Back" -msgstr "Indietro" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 -msgctxt "@header" -msgid "Description" -msgstr "Descrizione" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 -msgctxt "@header" -msgid "Compatible printers" -msgstr "Stampanti compatibili" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:134 -msgctxt "@info" -msgid "No compatibility information" -msgstr "Nessuna informazione sulla compatibilità" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:152 -msgctxt "@header" -msgid "Compatible support materials" -msgstr "Materiali di supporto compatibili" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176 -msgctxt "@info No materials" -msgid "None" -msgstr "Nessuno" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:193 -msgctxt "@header" -msgid "Compatible with Material Station" -msgstr "Compatibile con Material Station" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "Yes" -msgstr "Sì" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "No" -msgstr "No" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:219 -msgctxt "@header" -msgid "Optimized for Air Manager" -msgstr "Ottimizzato per Air Manager" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Visit plug-in website" -msgstr "Visita il sito web del plug-in" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Website" -msgstr "Sito web" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:252 -msgctxt "@button" -msgid "Buy spool" -msgstr "Acquista bobina" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:261 -msgctxt "@button" -msgid "Safety datasheet" -msgstr "Scheda tecnica sulla sicurezza" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:270 -msgctxt "@button" -msgid "Technical datasheet" -msgstr "Scheda tecnica" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Failed to load packages:" -msgstr "Impossibile caricare pacchetti:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Retry?" -msgstr "Riprovare?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:167 -msgctxt "@button" -msgid "Loading" -msgstr "Caricamento in corso" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No more results to load" -msgstr "Nessun altro risultato da caricare" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No results found with current filter" -msgstr "Nessun risultato trovato con il filtro corrente" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:226 -msgctxt "@button" -msgid "Load more" -msgstr "Carica altro" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8 -msgctxt "@header" -msgid "Install Plugins" -msgstr "Installa plugin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12 -msgctxt "@text" -msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users." -msgstr "Semplifica il flusso di lavoro e personalizza l'esperienza Ultimaker Cura experience con plugin forniti dalla nostra eccezionale comunità di utenti." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 -msgctxt "@info" -msgid "Ultimaker Verified Plug-in" -msgstr "Plug-in verificato Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 -msgctxt "@info" -msgid "Ultimaker Certified Material" -msgstr "Materiale certificato Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 -msgctxt "@info" -msgid "Ultimaker Verified Package" -msgstr "Pacchetto verificato Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 -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 "" -"Accertarsi che la stampante sia collegata:\n" -"- Controllare se la stampante è accesa.\n" -"- Controllare se la stampante è collegata alla rete.\n" -"- Controllare se è stato effettuato l'accesso per rilevare le stampanti collegate al cloud." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 -msgctxt "@info" -msgid "Please connect your printer to the network." -msgstr "Collegare la stampante alla rete." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 -msgctxt "@label link to technical assistance" -msgid "View user manuals online" -msgstr "Visualizza i manuali utente online" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:163 -msgctxt "@info" -msgid "In order to monitor your print from Cura, please connect the printer." -msgstr "Al fine di monitorare la stampa da Cura, collegare la stampante." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Tipo di maglia" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 -msgctxt "@label" -msgid "Normal model" -msgstr "Modello normale" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 -msgctxt "@label" -msgid "Print as support" -msgstr "Stampa come supporto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Modificare le impostazioni per le sovrapposizioni" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Non supportano le sovrapposizioni" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Solo maglia di riempimento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Ritaglio mesh" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Seleziona impostazioni" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Seleziona impostazioni di personalizzazione per questo modello" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtro..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Mostra tutto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Plug-in di post-elaborazione" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Script di post-elaborazione" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" -msgid "Add a script" -msgstr "Aggiungi uno script" +msgid "Level build plate" +msgstr "Livella piano di stampa" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 -msgctxt "@label" -msgid "Settings" -msgstr "Impostazioni" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:459 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Modificare gli script di post-elaborazione attivi." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:463 -msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "È attivo il seguente script:" -msgstr[1] "Sono attivi i seguenti script:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:47 -msgctxt "@label" -msgid "Color scheme" -msgstr "Schema colori" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Colore materiale" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Tipo di linea" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Velocità" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Spessore layer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Larghezza della linea" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Flusso" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Modalità di compatibilità" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 -msgctxt "@label" -msgid "Travels" -msgstr "Spostamenti" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 -msgctxt "@label" -msgid "Helpers" -msgstr "Helper" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 -msgctxt "@label" -msgid "Shell" -msgstr "Guscio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:64 -msgctxt "@label" -msgid "Infill" -msgstr "Riempimento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Starts" -msgstr "Avvia" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Mostra solo strati superiori" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Mostra 5 strati superiori in dettaglio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Superiore / Inferiore" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Parete interna" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 -msgctxt "@label" -msgid "min" -msgstr "min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 -msgctxt "@label" -msgid "max" -msgstr "max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Maggiori informazioni sulla raccolta di dati anonimi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 -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 acquisisce dati anonimi per migliorare la qualità di stampa e l'esperienza dell'utente. Di seguito è riportato un esempio dei dati condivisi:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Non desidero inviare dati anonimi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Consenti l'invio di dati anonimi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 msgctxt "@title" msgid "Build Plate Leveling" msgstr "Livellamento del piano di stampa" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 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 "Per assicurarsi stampe di alta qualità, è ora possibile regolare il piano di stampa. Quando si fa clic su 'Spostamento alla posizione successiva' l'ugello si sposterà in diverse posizioni che è possibile regolare." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 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 "Per ciascuna posizione: inserire un pezzo di carta sotto l'ugello e regolare la stampa dell'altezza del piano di stampa. L'altezza del piano di stampa è corretta quando la carta sfiora la punta dell'ugello." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 msgctxt "@action:button" msgid "Start Build Plate Leveling" msgstr "Avvio livellamento del piano di stampa" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 msgctxt "@action:button" msgid "Move to Next Position" msgstr "Spostamento alla posizione successiva" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Seleziona qualsiasi aggiornamento realizzato per questa Ultimaker Original" +#: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "Seleziona aggiornamenti" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this UltiMaker Original" +msgstr "Seleziona qualsiasi aggiornamento realizzato per questa UltiMaker Original" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 msgctxt "@label" msgid "Heated Build Plate (official kit or self-built)" msgstr "Piano di stampa riscaldato (kit ufficiale o integrato)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Collega alla stampante in rete" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -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 "Per stampare direttamente sulla stampante in rete, verificare che la stampante desiderata sia collegata alla rete mediante un cavo di rete o mediante collegamento alla rete WIFI. Se non si esegue il collegamento di Cura alla stampante, è comunque possibile utilizzare una chiavetta USB per trasferire i file codice G alla stampante." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Selezionare la stampante dall’elenco seguente:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 -msgctxt "@action:button" -msgid "Edit" -msgstr "Modifica" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:140 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:321 -msgctxt "@action:button" -msgid "Remove" -msgstr "Rimuovi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Aggiorna" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 -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" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 -msgctxt "@label" -msgid "Type" -msgstr "Tipo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 -msgctxt "@label" -msgid "Firmware version" -msgstr "Versione firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 -msgctxt "@label" -msgid "Address" -msgstr "Indirizzo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Questa stampante non è predisposta per comandare un gruppo di stampanti." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Questa stampante comanda un gruppo di %1 stampanti." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "La stampante a questo indirizzo non ha ancora risposto." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 -msgctxt "@action:button" -msgid "Connect" -msgstr "Collega" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Indirizzo IP non valido" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Inserire un indirizzo IP valido." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Indirizzo stampante" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Inserire l'indirizzo IP della stampante in rete." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Modifiche configurazione" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 -msgctxt "@action:button" -msgid "Override" -msgstr "Override" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "La stampante assegnata, %1, richiede la seguente modifica di configurazione:" -msgstr[1] "La stampante assegnata, %1, richiede le seguenti modifiche di configurazione:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "La stampante %1 è assegnata, ma il processo contiene una configurazione materiale sconosciuta." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Cambia materiale %1 da %2 a %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Caricare %3 come materiale %1 (Operazione non annullabile)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Cambia print core %1 da %2 a %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Cambia piano di stampa a %1 (Operazione non annullabile)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "L’override utilizza le impostazioni specificate con la configurazione stampante esistente. Ciò può causare una stampa non riuscita." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:178 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:175 -msgctxt "@label" -msgid "Glass" -msgstr "Vetro" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154 -msgctxt "@label" -msgid "Aluminum" -msgstr "Alluminio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Sposta in alto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Cancella" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:284 -msgctxt "@label" -msgid "Resume" -msgstr "Riprendi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Messa in pausa..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Ripresa in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:288 -msgctxt "@label" -msgid "Pause" -msgstr "Pausa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Interr. in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Interrompi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:142 -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 "Sei sicuro di voler spostare %1 all’inizio della coda?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Sposta il processo di stampa in alto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:151 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "Sei sicuro di voler cancellare %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Cancella processo di stampa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:160 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "Sei sicuro di voler interrompere %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Interrompi la stampa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Gestione stampanti" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:239 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Aggiornare il firmware della stampante per gestire la coda da remoto." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:275 -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 "Impossibile visualizzare feed della Webcam per stampanti cloud da Ultimaker Cura. Fare clic su \"Gestione stampanti\" per visitare Ultimaker Digital Factory e visualizzare questa Webcam." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Caricamento in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Non disponibile" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Non raggiungibile" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347 -msgctxt "@label:status" -msgid "Idle" -msgstr "Ferma" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Preparazione in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Printing" -msgstr "Stampa in corso" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397 -msgctxt "@label" -msgid "Untitled" -msgstr "Senza titolo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:412 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anonimo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:433 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Richiede modifiche di configurazione" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:447 -msgctxt "@action:button" -msgid "Details" -msgstr "Dettagli" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Stampante non disponibile" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 -msgctxt "@label" -msgid "First available" -msgstr "Primo disponibile" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Interrotto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 -msgctxt "@label:status" -msgid "Finished" -msgstr "Terminato" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Interr. in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Failed" -msgstr "Non riuscita" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Messa in pausa..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Paused" -msgstr "In pausa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Ripresa in corso..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Action required" -msgstr "Richiede un'azione" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Finisce %1 a %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 -msgctxt "@label" -msgid "Queued" -msgstr "Coda di stampa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Gestisci nel browser" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:90 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "Non sono presenti processi di stampa nella coda. Eseguire lo slicing e inviare un processo per aggiungerne uno." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:98 -msgctxt "@label" -msgid "Print jobs" -msgstr "Processi di stampa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107 -msgctxt "@label" -msgid "Total print time" -msgstr "Tempo di stampa totale" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116 -msgctxt "@label" -msgid "Waiting for" -msgstr "In attesa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Stampa sulla rete" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 -msgctxt "@action:button" -msgid "Print" -msgstr "Stampa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 -msgctxt "@label" -msgid "Printer selection" -msgstr "Selezione stampante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 +#: plugins/UltimakerMachineActions/plugin.json +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.)" + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Azioni della macchina UltiMaker" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Aggiornamento della versione da 2.1 a 2.2" + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Aggiornamento della versione da 2.2 a 2.4" + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Aggiornamento della versione da 2.5 a 2.6" + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Aggiornamento della versione da 2.6 a 2.7" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Aggiornamento della versione da 2.7 a 3.0" + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Aggiornamento della versione da 3.0 a 3.1" + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Aggiornamento della versione da 3.2 a 3.3" + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Aggiornamento della versione da 3.3 a 3.4" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Aggiornamento della versione da 3.4 a 3.5" + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Aggiornamento della versione da 3.5 a 4.0" + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Aggiornamento della versione da 4.0 a 4.1" + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Aggiornamento della versione da 4.11 a 4.12" + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Aggiornamento della versione da 4.13 a 5.0" + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Aggiornamento della versione da 4.1 a 4.2" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Aggiornamento della versione da 4.2 a 4.3" + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Aggiornamento della versione da 4.3 a 4.4" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Aggiornamento della versione da 4.4 a 4.5" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Aggiornamento della versione da 4.5 a 4.6" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Aggiornamento versione da 4.6.0 a 4.6.2" + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Aggiornamento versione da 4.6.2 a 4.7" + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Aggiornamento della versione da 4.7 a 4.8" + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Aggiornamento della versione da 4.8 a 4.9" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Aggiornamento della versione da 4.9 a 4.10" + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Aggiornamento della versione da 5.2 a 5.3" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "" + +#: plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "File X3D" + +#: plugins/X3DReader/plugin.json +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Fornisce il supporto per la lettura di file X3D." + +#: plugins/X3DReader/plugin.json +msgctxt "name" +msgid "X3D Reader" +msgstr "Lettore X3D" + +#: plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Vista ai raggi X" + +#: plugins/XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Fornisce la vista a raggi X." + +#: plugins/XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Vista ai raggi X" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Profili del materiale" + +#: plugins/XmlMaterialProfile/plugin.json +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." + +#: resources/qml/Account/AccountWidget.qml:24 msgctxt "@action:button" msgid "Sign in" msgstr "Accedi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: resources/qml/Account/GeneralOperations.qml:19 +#: resources/qml/WelcomePages/CloudContent.qml:64 msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Accedi alla piattaforma Ultimaker" +msgid "Sign in to the UltiMaker platform" +msgstr "Accedi alla piattaforma UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 +#: resources/qml/Account/GeneralOperations.qml:39 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" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" msgstr "" "- Aggiungi profili materiale e plugin dal Marketplace\n" "- Esegui il backup e la sincronizzazione dei profili materiale e dei plugin\n" "- Condividi idee e ottieni supporto da più di 48.000 utenti nella community di Ultimaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 +#: resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "Crea un account Ultimaker gratuito" +msgid "Create a free UltiMaker account" +msgstr "Crea un account UltiMaker gratuito" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 +#: resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "Verifica in corso..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 +#: resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "Account sincronizzato" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 +#: resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "Si è verificato un errore..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 +#: resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "Installare gli aggiornamenti in attesa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 +#: resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "Verificare gli aggiornamenti dell'account" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +#: resources/qml/Account/UserOperations.qml:78 msgctxt "@label The argument is a timestamp" msgid "Last update: %1" msgstr "Ultimo aggiornamento: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +#: resources/qml/Account/UserOperations.qml:107 msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Account Ultimaker" +msgid "UltiMaker Account" +msgstr "Account UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +#: resources/qml/Account/UserOperations.qml:126 msgctxt "@button" msgid "Sign Out" msgstr "Esci" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" msgid "No time estimation available" msgstr "Nessuna stima di tempo disponibile" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:77 msgctxt "@label" msgid "No cost estimation available" msgstr "Nessuna stima di costo disponibile" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:127 msgctxt "@button" msgid "Preview" msgstr "Anteprima" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" msgid "Time estimation" msgstr "Stima del tempo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 +#: resources/qml/ActionPanel/PrintJobInformation.qml:107 msgctxt "@label" msgid "Material estimation" msgstr "Stima del materiale" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:156 +#: resources/qml/ActionPanel/PrintJobInformation.qml:156 msgctxt "@label m for meter" msgid "%1m" msgstr "%1m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:157 +#: resources/qml/ActionPanel/PrintJobInformation.qml:157 msgctxt "@label g for grams" msgid "%1g" msgstr "%1g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:54 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Sezionamento in corso..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:78 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:78 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "Sezionamento impossibile" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Processing" msgstr "Elaborazione in corso" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Slice" msgstr "Sezionamento" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:115 msgctxt "@label" msgid "Start the slicing process" msgstr "Avvia il processo di sezionamento" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:132 msgctxt "@button" msgid "Cancel" msgstr "Annulla" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 +#: resources/qml/Actions.qml:81 msgctxt "@action:inmenu" msgid "Show Online Troubleshooting" msgstr "Mostra ricerca e riparazione dei guasti online" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 +#: resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "Attiva/disattiva schermo intero" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 +#: resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "Esci da schermo intero" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 +#: resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "&Annulla" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 +#: resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "Ri&peti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 +#: resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "&Esci" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 +#: resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "Visualizzazione 3D" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 +#: resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Visualizzazione frontale" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 +#: resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "Visualizzazione superiore" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 +#: resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "Vista inferiore" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 +#: resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "Visualizzazione lato sinistro" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 +#: resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "Visualizzazione lato destro" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 +#: resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Configura Cura..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 +#: resources/qml/Actions.qml:197 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "&Aggiungi stampante..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 +#: resources/qml/Actions.qml:203 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "Gestione stampanti..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 +#: resources/qml/Actions.qml:210 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Gestione materiali..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:216 -msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate." +#: resources/qml/Actions.qml:218 +msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." msgid "Add more materials from Marketplace" -msgstr "Aggiungere altri materiali da Marketplace" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 +#: resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "&Aggiorna il profilo con le impostazioni/esclusioni correnti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 +#: resources/qml/Actions.qml:233 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "&Elimina le modifiche correnti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 +#: resources/qml/Actions.qml:245 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "&Crea profilo dalle impostazioni/esclusioni correnti..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 +#: resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "Gestione profili..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 +#: resources/qml/Actions.qml:259 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Mostra documentazione &online" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 +#: resources/qml/Actions.qml:267 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "Se&gnala un errore" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 +#: resources/qml/Actions.qml:275 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "Scopri le novità" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 +#: resources/qml/Actions.qml:289 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "Informazioni..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 +#: resources/qml/Actions.qml:296 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "Cancella selezionati" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 +#: resources/qml/Actions.qml:306 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "Centra selezionati" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 +#: resources/qml/Actions.qml:315 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "Moltiplica selezionati" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 +#: resources/qml/Actions.qml:324 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Elimina modello" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 +#: resources/qml/Actions.qml:332 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "C&entra modello su piattaforma" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 +#: resources/qml/Actions.qml:338 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "&Raggruppa modelli" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 +#: resources/qml/Actions.qml:358 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Separa modelli" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 +#: resources/qml/Actions.qml:368 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "&Unisci modelli" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 +#: resources/qml/Actions.qml:378 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "Mo<iplica modello..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 +#: resources/qml/Actions.qml:385 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "Seleziona tutti i modelli" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 +#: resources/qml/Actions.qml:395 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "Cancellare piano di stampa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 +#: resources/qml/Actions.qml:405 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "Ricarica tutti i modelli" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 +#: resources/qml/Actions.qml:414 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Sistema tutti i modelli" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 +#: resources/qml/Actions.qml:422 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Sistema selezione" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 +#: resources/qml/Actions.qml:429 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Reimposta tutte le posizioni dei modelli" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 +#: resources/qml/Actions.qml:436 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "Reimposta tutte le trasformazioni dei modelli" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 +#: resources/qml/Actions.qml:445 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Apri file..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 +#: resources/qml/Actions.qml:455 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Nuovo Progetto..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 +#: resources/qml/Actions.qml:462 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Mostra cartella di configurazione" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 +#: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Configura visibilità delle impostazioni..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 msgctxt "@label:button" msgid "My printers" msgstr "Le mie stampanti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 msgctxt "@tooltip:button" msgid "Monitor printers in Ultimaker Digital Factory." msgstr "Monitora le stampanti in Ultimaker Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Crea progetti di stampa in Digital Library." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 msgctxt "@label:button" msgid "Print jobs" msgstr "Processi di stampa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 msgctxt "@tooltip:button" msgid "Monitor print jobs and reprint from your print history." msgstr "Monitora i processi di stampa dalla cronologia di stampa." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." -msgstr "Estendi Ultimaker Cura con plugin e profili del materiale." +msgid "Extend UltiMaker Cura with plugins and material profiles." +msgstr "Estendi UltiMaker Cura con plugin e profili del materiale." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." -msgstr "Diventa un esperto di stampa 3D con e-learning Ultimaker." +msgid "Become a 3D printing expert with UltiMaker e-learning." +msgstr "Diventa un esperto di stampa 3D con e-learning UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Supporto Ultimaker" +msgid "UltiMaker support" +msgstr "Supporto UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." -msgstr "Scopri come iniziare a utilizzare Ultimaker Cura." +msgid "Learn how to get started with UltiMaker Cura." +msgstr "Scopri come iniziare a utilizzare UltiMaker Cura." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 msgctxt "@label:button" msgid "Ask a question" msgstr "Fai una domanda" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Consulta la community di Ultimaker." +msgid "Consult the UltiMaker Community." +msgstr "Consulta la community di UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 msgctxt "@label:button" msgid "Report a bug" msgstr "Segnala un errore" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Informa gli sviluppatori che si è verificato un errore." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Visita il sito Web Ultimaker." +msgid "Visit the UltiMaker website." +msgstr "Visita il sito Web UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 +#: resources/qml/ColorDialog.qml:110 msgctxt "@label" msgid "Hex" msgstr "Esagonale" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 +#: resources/qml/Cura.qml:256 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "Questo pacchetto sarà installato dopo il riavvio." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +#: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14 msgctxt "@title:tab" msgid "General" msgstr "Generale" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +#: resources/qml/Cura.qml:470 msgctxt "@title:tab" msgid "Settings" msgstr "Impostazioni" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:468 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:17 +#: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17 msgctxt "@title:tab" msgid "Printers" msgstr "Stampanti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:470 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70 +#: resources/qml/Cura.qml:474 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:70 msgctxt "@title:tab" msgid "Materials" msgstr "Materiali" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:472 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:57 +#: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57 msgctxt "@title:tab" msgid "Profiles" msgstr "Profili" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +#: resources/qml/Cura.qml:581 msgctxt "@title:window %1 is the application name" msgid "Closing %1" msgstr "Chiusura di %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:590 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:599 +#: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591 msgctxt "@label %1 is the application name" msgid "Are you sure you want to exit %1?" msgstr "Chiudere %1?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:637 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 +#: resources/qml/Cura.qml:629 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 msgctxt "@title:window" msgid "Open file(s)" msgstr "Apri file" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +#: resources/qml/Cura.qml:734 msgctxt "@window:title" msgid "Install Package" msgstr "Installa il pacchetto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +#: resources/qml/Cura.qml:741 msgctxt "@title:window" msgid "Open File(s)" msgstr "Apri file" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +#: resources/qml/Cura.qml:743 msgctxt "@text:window" msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." msgstr "Rilevata la presenza di uno o più file codice G tra i file selezionati. È possibile aprire solo un file codice G alla volta. Se desideri aprire un file codice G, selezionane uno solo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:831 +#: resources/qml/Cura.qml:828 msgctxt "@title:window" msgid "Add Printer" msgstr "Aggiungi stampante" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +#: resources/qml/Cura.qml:836 msgctxt "@title:window" msgid "What's New" msgstr "Scopri le novità" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: resources/qml/Cura.qml:890 +msgctxt "@title:window" +msgid "Save Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:891 +msgctxt "@textfield:placeholder" +msgid "New Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:892 +msgctxt "@info" +msgid "Custom profile name:" +msgstr "" + +#: resources/qml/Cura.qml:909 +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 "Solo le impostazioni modificate dall'utente verranno salvate nel profilo personalizzato.
    Per i materiali che lo supportano, il nuovo profilo personalizzato erediterà le proprietà da %1." + +#: resources/qml/Cura.qml:917 +msgctxt "@action:button" +msgid "Learn more about Cura print profiles" +msgstr "Ulteriori informazioni sui profili di stampa di Cura" + +#: resources/qml/Cura.qml:926 +msgctxt "@button" +msgid "Save new profile" +msgstr "" + +#: resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "Informazioni su %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: resources/qml/Dialogs/AboutDialog.qml:59 msgctxt "@label" msgid "version: %1" msgstr "versione: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: resources/qml/Dialogs/AboutDialog.qml:74 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Soluzione end-to-end per la stampa 3D con filamento fuso." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: resources/qml/Dialogs/AboutDialog.qml:87 msgctxt "@info:credit" msgid "" -"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura is developed by UltiMaker in cooperation with the community.\n" "Cura proudly uses the following open source projects:" msgstr "" -"Cura è stato sviluppato da Ultimaker B.V. in cooperazione con la comunità.\n" +"Cura è stato sviluppato da UltiMaker in cooperazione con la comunità.\n" "Cura è orgogliosa di utilizzare i seguenti progetti open source:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label Description for application component" msgid "Graphical user interface" msgstr "Interfaccia grafica utente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label Description for application component" msgid "Application framework" msgstr "Struttura applicazione" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label Description for application component" msgid "G-code generator" msgstr "Generatore codice G" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label Description for application component" msgid "Interprocess communication library" msgstr "Libreria di comunicazione intra-processo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:142 +msgctxt "@label Description for application component" msgid "Python bindings for libnest2d" msgstr "Vincoli Python per libnest2d" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label Description for application component" msgid "Polygon packing library, developed by Prusa Research" msgstr "Libreria di impacchettamento dei poligoni sviluppata da Prusa Research" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:144 +msgctxt "@label Description for application component" msgid "Support library for handling 3MF files" msgstr "Libreria di supporto per gestione file 3MF" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:145 +msgctxt "@label Description for application component" msgid "Support library for file metadata and streaming" msgstr "Libreria di supporto per metadati file e streaming" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Lingua di programmazione" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label Description for application dependency" msgid "GUI framework" msgstr "Struttura GUI" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label Description for application dependency" msgid "GUI framework bindings" msgstr "Vincoli struttura GUI" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label Description for application dependency" msgid "C/C++ Binding library" msgstr "Libreria vincoli C/C++" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:152 +msgctxt "@label Description for application dependency" msgid "Data interchange format" msgstr "Formato scambio dati" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "Font" msgstr "Font" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label Description for application dependency" msgid "Polygon clipping library" msgstr "Libreria ritaglio poligono" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label Description for application dependency" msgid "JSON parser" -msgstr "" +msgstr "Analizzatore JSON" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:158 +msgctxt "@label Description for application dependency" msgid "Utility functions, including an image loader" -msgstr "" +msgstr "Funzioni di utilità, tra cui un caricatore di immagini" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:159 +msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" -msgstr "" +msgstr "Libreria utilità, tra cui generazione diagramma Voronoi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:162 +#: resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label Description for application dependency" msgid "Root Certificates for validating SSL trustworthiness" -msgstr "" +msgstr "Certificati di origine per la convalida dell'affidabilità SSL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label Description for application dependency" msgid "Compatibility between Python 2 and 3" -msgstr "" +msgstr "Compatibilità tra Python 2 e 3" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label Description for application dependency" msgid "Support library for system keyring access" msgstr "Libreria di supporto per accesso a keyring sistema" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label Description for application dependency" msgid "Support library for faster math" msgstr "Libreria di supporto per calcolo rapido" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label Description for application dependency" msgid "Support library for handling STL files" msgstr "Libreria di supporto per gestione file STL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label Description for application dependency" msgid "Python bindings for Clipper" msgstr "Vincoli Python per Clipper" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Libreria di comunicazione seriale" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label Description for application dependency" msgid "Support library for scientific computing" msgstr "Libreria di supporto per calcolo scientifico" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 -msgctxt "@Label" +#: resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@Label Description for application dependency" msgid "Python Error tracking library" msgstr "Libreria per la traccia degli errori Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:172 +msgctxt "@label Description for application dependency" msgid "Support library for handling triangular meshes" msgstr "Libreria di supporto per gestione maglie triangolari" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:173 +msgctxt "@label Description for application dependency" msgid "ZeroConf discovery library" msgstr "Libreria scoperta ZeroConf" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label Description for development tool" msgid "Universal build system configuration" -msgstr "" +msgstr "Configurazione universale del sistema di build" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label Description for development tool" msgid "Dependency and package manager" -msgstr "" +msgstr "Gestore della dipendenza e del pacchetto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label Description for development tool" msgid "Packaging Python-applications" -msgstr "" +msgstr "Pacchetto applicazioni Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:179 +msgctxt "@label Description for development tool" msgid "Linux cross-distribution application deployment" msgstr "Apertura applicazione distribuzione incrociata Linux" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:180 +msgctxt "@label Description for development tool" msgid "Generating Windows installers" -msgstr "" +msgstr "Generazione installatori Windows" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 msgctxt "@title:window" msgid "Open project file" msgstr "Apri file progetto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84 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 "Questo è un file progetto Cura. Vuoi aprirlo come progetto o importarne i modelli?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:90 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91 msgctxt "@text:window" msgid "Remember my choice" msgstr "Ricorda la scelta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105 msgctxt "@action:button" msgid "Open as project" msgstr "Apri come progetto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110 msgctxt "@action:button" msgid "Import models" msgstr "Importa i modelli" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:17 +msgctxt "@title:window" +msgid "Select Printer" +msgstr "Seleziona stampante" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:54 +msgctxt "@title:label" +msgid "Compatible Printers" +msgstr "Stampanti compatibili" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:110 +msgctxt "@description" +msgid "No compatible printers, that are currently online, were found." +msgstr "Nessuna stampante compatibile trovata online." + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Elimina o mantieni modifiche" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:49 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64 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 "" @@ -4181,1433 +4880,1292 @@ msgstr "" "Mantenere queste impostazioni modificate dopo il cambio dei profili?\n" "In alternativa, è possibile eliminare le modifiche per caricare i valori predefiniti da '%1'." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90 msgctxt "@title:column" msgid "Profile settings" msgstr "Impostazioni profilo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92 msgctxt "@title:column" msgid "Current changes" msgstr "Modifiche correnti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:799 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123 +#: resources/qml/Preferences/GeneralPage.qml:820 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Chiedi sempre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Elimina e non chiedere nuovamente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Mantieni e non chiedere nuovamente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157 msgctxt "@action:button" msgid "Discard changes" msgstr "Elimina modifiche" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164 msgctxt "@action:button" msgid "Keep changes" msgstr "Mantieni modifiche" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171 +msgctxt "@action:button" +msgid "Save as new custom profile" +msgstr "" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178 +msgctxt "@action:button" +msgid "Save changes" +msgstr "" + +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 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 "Rilevata la presenza di uno o più file progetto tra i file selezionati. È possibile aprire solo un file progetto alla volta. Si suggerisce di importare i modelli solo da tali file. Vuoi procedere?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 msgctxt "@action:button" msgid "Import all as models" msgstr "Importa tutto come modelli" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 +#: resources/qml/Dialogs/RenameDialog.qml:23 +msgctxt "@title:window" +msgid "Rename" +msgstr "Rinomina" + +#: resources/qml/Dialogs/RenameDialog.qml:24 +msgctxt "@info" +msgid "Please provide a new name." +msgstr "Indicare un nuovo nome." + +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 msgctxt "@title:window" msgid "Save Project" msgstr "Salva progetto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177 msgctxt "@action:label" msgid "Extruder %1" msgstr "Estrusore %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & materiale" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195 msgctxt "@action:label" msgid "Material" msgstr "Materiale" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "Non mostrare il riepilogo di progetto alla ripetizione di salva" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298 msgctxt "@action:button" msgid "Save" msgstr "Salva" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -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" -msgstr[0] "Stampa modello selezionato con %1" -msgstr[1] "Stampa modelli selezionati con %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:93 +#: resources/qml/JobSpecs.qml:93 msgctxt "@text Print job name" msgid "Untitled" msgstr "Senza titolo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 +#: resources/qml/MainWindow/ApplicationMenu.qml:63 +#: resources/qml/Menus/SettingsMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&Impostazioni" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 +#: resources/qml/MainWindow/ApplicationMenu.qml:87 msgctxt "@title:window" msgid "New project" msgstr "Nuovo progetto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88 +#: resources/qml/MainWindow/ApplicationMenu.qml:88 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 "Sei sicuro di voler aprire un nuovo progetto? Questo cancellerà il piano di stampa e tutte le impostazioni non salvate." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135 +#: resources/qml/MainWindow/MainWindowHeader.qml:135 msgctxt "@action:button" msgid "Marketplace" msgstr "Mercato" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +#: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 msgctxt "@header" msgid "Configurations" msgstr "Configurazioni" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Questa configurazione non è disponibile perché %1 non viene riconosciuto. Visitare %2 per scaricare il profilo materiale corretto." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 msgctxt "@label" msgid "Marketplace" msgstr "Mercato" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 msgctxt "@label" msgid "Loading available configurations from the printer..." msgstr "Caricamento in corso configurazioni disponibili dalla stampante..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 msgctxt "@label" msgid "The configurations are not available because the printer is disconnected." msgstr "Le configurazioni non sono disponibili perché la stampante è scollegata." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 msgctxt "@tooltip" msgid "The configuration of this extruder is not allowed, and prohibits slicing." msgstr "La configurazione di questo estrusore non è consentita e proibisce il sezionamento." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 msgctxt "@tooltip" msgid "There are no profiles matching the configuration of this extruder." msgstr "Nessun profilo corrispondente alla configurazione di questo estrusore." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 msgctxt "@label" msgid "Select configuration" msgstr "Seleziona configurazione" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 msgctxt "@label" msgid "Configurations" msgstr "Configurazioni" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 msgctxt "@header" msgid "Custom" msgstr "Personalizzata" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:62 -msgctxt "@label" -msgid "Printer" -msgstr "Stampante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:217 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173 msgctxt "@label" msgid "Enabled" msgstr "Abilitato" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222 msgctxt "@label" msgid "Material" msgstr "Materiale" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348 msgctxt "@label" msgid "Use glue for better adhesion with this material combination." msgstr "Utilizzare la colla per una migliore adesione con questa combinazione di materiali." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:29 +#: resources/qml/Menus/ContextMenu.qml:29 msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "Stampa modello selezionato con:" msgstr[1] "Stampa modelli selezionati con:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:92 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Moltiplica modello selezionato" msgstr[1] "Moltiplica modelli selezionati" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:123 msgctxt "@label" msgid "Number of Copies" msgstr "Numero di copie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/EditMenu.qml:12 +#: resources/qml/Menus/EditMenu.qml:12 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "&Modifica" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ExtensionMenu.qml:13 +#: resources/qml/Menus/ExtensionMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "Es&tensioni" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 +#: resources/qml/Menus/FileMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "&File" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:45 +#: resources/qml/Menus/FileMenu.qml:45 msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Salva progetto..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:78 +#: resources/qml/Menus/FileMenu.qml:78 msgctxt "@title:menu menubar:file" msgid "&Export..." msgstr "&Esporta..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:89 +#: resources/qml/Menus/FileMenu.qml:89 msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Esporta selezione..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/HelpMenu.qml:14 +#: resources/qml/Menus/HelpMenu.qml:14 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "&Help" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +#: resources/qml/Menus/MaterialMenu.qml:13 msgctxt "@label:category menu label" msgid "Material" msgstr "Materiale" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:53 +#: resources/qml/Menus/MaterialMenu.qml:53 msgctxt "@label:category menu label" msgid "Favorites" msgstr "Preferiti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:78 +#: resources/qml/Menus/MaterialMenu.qml:78 msgctxt "@label:category menu label" msgid "Generic" msgstr "Generale" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +#: resources/qml/Menus/OpenFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open File(s)..." msgstr "Apri file..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PreferencesMenu.qml:21 +#: resources/qml/Menus/PreferencesMenu.qml:21 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "P&referenze" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:13 +#: resources/qml/Menus/PrinterMenu.qml:13 msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "S&tampante" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:17 +#: resources/qml/Menus/PrinterMenu.qml:17 msgctxt "@label:category menu label" msgid "Network enabled printers" msgstr "Stampanti abilitate per la rete" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:50 +#: resources/qml/Menus/PrinterMenu.qml:50 msgctxt "@label:category menu label" msgid "Local printers" msgstr "Stampanti locali" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +#: resources/qml/Menus/RecentFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open &Recent" msgstr "Ap&ri recenti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +#: resources/qml/Menus/SaveProjectMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Save Project..." msgstr "Salva progetto..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:34 -msgctxt "@title:menu" -msgid "&Material" -msgstr "Ma&teriale" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:49 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Imposta come estrusore attivo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:55 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Abilita estrusore" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:63 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Disabilita estrusore" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 msgctxt "@action:inmenu" msgid "Visible Settings" msgstr "Impostazioni visibili" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 msgctxt "@action:inmenu" msgid "Collapse All Categories" msgstr "Comprimi tutte le categorie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 msgctxt "@action:inmenu" msgid "Manage Setting Visibility..." msgstr "Gestisci Impostazione visibilità..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:13 +#: resources/qml/Menus/SettingsMenu.qml:34 +msgctxt "@title:menu" +msgid "&Material" +msgstr "Ma&teriale" + +#: resources/qml/Menus/SettingsMenu.qml:49 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Imposta come estrusore attivo" + +#: resources/qml/Menus/SettingsMenu.qml:55 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Abilita estrusore" + +#: resources/qml/Menus/SettingsMenu.qml:63 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Disabilita estrusore" + +#: resources/qml/Menus/ViewMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&View" msgstr "&Visualizza" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:17 +#: resources/qml/Menus/ViewMenu.qml:17 msgctxt "@action:inmenu menubar:view" msgid "&Camera position" msgstr "&Posizione fotocamera" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:30 +#: resources/qml/Menus/ViewMenu.qml:30 msgctxt "@action:inmenu menubar:view" msgid "Camera view" msgstr "Visualizzazione fotocamera" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 +#: resources/qml/Menus/ViewMenu.qml:48 msgctxt "@action:inmenu menubar:view" msgid "Perspective" msgstr "Prospettiva" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +#: resources/qml/Menus/ViewMenu.qml:59 msgctxt "@action:inmenu menubar:view" msgid "Orthographic" msgstr "Ortogonale" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:115 +#: resources/qml/MonitorButton.qml:115 msgctxt "@label:MonitorStatus" msgid "Not connected to a printer" msgstr "Non collegato ad una stampante" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 +#: resources/qml/MonitorButton.qml:119 msgctxt "@label:MonitorStatus" msgid "Printer does not accept commands" msgstr "La stampante non accetta comandi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:129 +#: resources/qml/MonitorButton.qml:129 msgctxt "@label:MonitorStatus" msgid "In maintenance. Please check the printer" msgstr "In manutenzione. Controllare la stampante" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:140 +#: resources/qml/MonitorButton.qml:140 msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Persa connessione con la stampante" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +#: resources/qml/MonitorButton.qml:142 msgctxt "@label:MonitorStatus" msgid "Printing..." msgstr "Stampa in corso..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +#: resources/qml/MonitorButton.qml:145 msgctxt "@label:MonitorStatus" msgid "Paused" msgstr "In pausa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +#: resources/qml/MonitorButton.qml:148 msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Preparazione in corso..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +#: resources/qml/MonitorButton.qml:150 msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Rimuovere la stampa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +#: resources/qml/MonitorButton.qml:318 msgctxt "@label" msgid "Abort Print" msgstr "Interrompi la stampa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:327 +#: resources/qml/MonitorButton.qml:327 msgctxt "@label" msgid "Are you sure you want to abort the print?" msgstr "Sei sicuro di voler interrompere la stampa?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:109 +#: resources/qml/ObjectItemButton.qml:109 msgctxt "@label" msgid "Is printed as support." msgstr "Viene stampato come supporto." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:112 +#: resources/qml/ObjectItemButton.qml:112 msgctxt "@label" msgid "Other models overlapping with this model are modified." msgstr "Gli altri modelli che si sovrappongono a questo modello sono stati modificati." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:115 +#: resources/qml/ObjectItemButton.qml:115 msgctxt "@label" msgid "Infill overlapping with this model is modified." msgstr "La sovrapposizione del riempimento con questo modello è stata modificata." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:118 +#: resources/qml/ObjectItemButton.qml:118 msgctxt "@label" msgid "Overlaps with this model are not supported." msgstr "Le sovrapposizioni con questo modello non sono supportate." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:125 +#: resources/qml/ObjectItemButton.qml:125 msgctxt "@label %1 is the number of settings it overrides." msgid "Overrides %1 setting." msgid_plural "Overrides %1 settings." msgstr[0] "Ignora %1 impostazione." msgstr[1] "Ignora %1 impostazioni." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 +#: resources/qml/ObjectSelector.qml:59 msgctxt "@label" msgid "Object list" msgstr "Elenco oggetti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:131 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:24 +#: resources/qml/Preferences/GeneralPage.qml:134 +#: resources/qml/Preferences/SettingVisibilityPage.qml:24 msgctxt "@action:button" msgid "Defaults" msgstr "Valori predefiniti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +#: resources/qml/Preferences/GeneralPage.qml:172 msgctxt "@label" msgid "Interface" msgstr "Interfaccia" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +#: resources/qml/Preferences/GeneralPage.qml:215 msgctxt "@heading" msgid "-- incomplete --" msgstr "-- incompleto --" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +#: resources/qml/Preferences/GeneralPage.qml:261 msgctxt "@label" msgid "Currency:" msgstr "Valuta:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:274 +#: resources/qml/Preferences/GeneralPage.qml:277 msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." msgid "Theme*:" msgstr "Tema*:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +#: resources/qml/Preferences/GeneralPage.qml:323 msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Seziona automaticamente alla modifica delle impostazioni." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +#: resources/qml/Preferences/GeneralPage.qml:331 msgctxt "@option:check" msgid "Slice automatically" msgstr "Seziona automaticamente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:337 +#: resources/qml/Preferences/GeneralPage.qml:340 +msgctxt "@info:tooltip" +msgid "Show an icon and notifications in the system notification area." +msgstr "Mostra un'icona e le notifiche nell'area di notifica del sistema." + +#: resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Add icon to system tray *" +msgstr "Aggiungi icona alla barra delle applicazioni *" + +#: resources/qml/Preferences/GeneralPage.qml:357 msgctxt "@label" msgid "*You will need to restart the application for these changes to have effect." msgstr "*Per rendere effettive le modifiche è necessario riavviare l'applicazione." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +#: resources/qml/Preferences/GeneralPage.qml:373 msgctxt "@label" msgid "Viewport behavior" msgstr "Comportamento del riquadro di visualizzazione" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +#: resources/qml/Preferences/GeneralPage.qml:381 msgctxt "@info:tooltip" msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." msgstr "Evidenzia in rosso le zone non supportate del modello. In assenza di supporto, queste aree non saranno stampate in modo corretto." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:369 +#: resources/qml/Preferences/GeneralPage.qml:390 msgctxt "@option:check" msgid "Display overhang" msgstr "Visualizza sbalzo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +#: resources/qml/Preferences/GeneralPage.qml:400 msgctxt "@info:tooltip" msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." msgstr "Evidenziare le superfici mancanti o estranee del modello utilizzando i simboli di avvertenza. I percorsi degli utensili spesso ignoreranno parti della geometria prevista." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:388 +#: resources/qml/Preferences/GeneralPage.qml:409 msgctxt "@option:check" msgid "Display model errors" msgstr "Visualizzare gli errori del modello" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +#: resources/qml/Preferences/GeneralPage.qml:417 msgctxt "@info:tooltip" msgid "Moves the camera so the model is in the center of the view when a model is selected" msgstr "Sposta la fotocamera in modo che il modello si trovi al centro della visualizzazione quando è selezionato" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:401 +#: resources/qml/Preferences/GeneralPage.qml:422 msgctxt "@action:button" msgid "Center camera when item is selected" msgstr "Centratura fotocamera alla selezione dell'elemento" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +#: resources/qml/Preferences/GeneralPage.qml:432 msgctxt "@info:tooltip" msgid "Should the default zoom behavior of cura be inverted?" msgstr "Il comportamento dello zoom predefinito di Cura dovrebbe essere invertito?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:416 +#: resources/qml/Preferences/GeneralPage.qml:437 msgctxt "@action:button" msgid "Invert the direction of camera zoom." msgstr "Inverti la direzione dello zoom della fotocamera." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Should zooming move in the direction of the mouse?" msgstr "Lo zoom si muove nella direzione del mouse?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Zooming towards the mouse is not supported in the orthographic perspective." msgstr "Nella prospettiva ortogonale lo zoom verso la direzione del mouse non è supportato." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:437 +#: resources/qml/Preferences/GeneralPage.qml:458 msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "Zoom verso la direzione del mouse" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +#: resources/qml/Preferences/GeneralPage.qml:484 msgctxt "@info:tooltip" msgid "Should models on the platform be moved so that they no longer intersect?" msgstr "I modelli sull’area di stampa devono essere spostati per evitare intersezioni?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:468 +#: resources/qml/Preferences/GeneralPage.qml:489 msgctxt "@option:check" msgid "Ensure models are kept apart" msgstr "Assicurarsi che i modelli siano mantenuti separati" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +#: resources/qml/Preferences/GeneralPage.qml:498 msgctxt "@info:tooltip" msgid "Should models on the platform be moved down to touch the build plate?" msgstr "I modelli sull’area di stampa devono essere portati a contatto del piano di stampa?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:482 +#: resources/qml/Preferences/GeneralPage.qml:503 msgctxt "@option:check" msgid "Automatically drop models to the build plate" msgstr "Rilascia automaticamente i modelli sul piano di stampa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +#: resources/qml/Preferences/GeneralPage.qml:515 msgctxt "@info:tooltip" msgid "Show caution message in g-code reader." msgstr "Visualizza il messaggio di avvertimento sul lettore codice G." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503 +#: resources/qml/Preferences/GeneralPage.qml:524 msgctxt "@option:check" msgid "Caution message in g-code reader" msgstr "Messaggio di avvertimento sul lettore codice G" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +#: resources/qml/Preferences/GeneralPage.qml:532 msgctxt "@info:tooltip" msgid "Should layer be forced into compatibility mode?" msgstr "Lo strato deve essere forzato in modalità di compatibilità?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +#: resources/qml/Preferences/GeneralPage.qml:537 msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Forzare la modalità di compatibilità visualizzazione strato (riavvio necessario)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +#: resources/qml/Preferences/GeneralPage.qml:547 msgctxt "@info:tooltip" msgid "Should Cura open at the location it was closed?" msgstr "Aprire Cura nel punto in cui è stato chiuso?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:531 +#: resources/qml/Preferences/GeneralPage.qml:552 msgctxt "@option:check" msgid "Restore window position on start" msgstr "Ripristinare la posizione della finestra all'avvio" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +#: resources/qml/Preferences/GeneralPage.qml:562 msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Quale tipo di rendering della fotocamera è necessario utilizzare?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +#: resources/qml/Preferences/GeneralPage.qml:569 msgctxt "@window:text" msgid "Camera rendering:" msgstr "Rendering fotocamera:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +#: resources/qml/Preferences/GeneralPage.qml:576 msgid "Perspective" msgstr "Prospettiva" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +#: resources/qml/Preferences/GeneralPage.qml:577 msgid "Orthographic" msgstr "Ortogonale" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +#: resources/qml/Preferences/GeneralPage.qml:617 msgctxt "@label" msgid "Opening and saving files" msgstr "Apertura e salvataggio file" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +#: resources/qml/Preferences/GeneralPage.qml:624 msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "L'apertura dei file dal desktop o da applicazioni esterne deve essere eseguita nella stessa istanza di Cura?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:608 +#: resources/qml/Preferences/GeneralPage.qml:629 msgctxt "@option:check" msgid "Use a single instance of Cura" msgstr "Utilizzare una singola istanza di Cura" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +#: resources/qml/Preferences/GeneralPage.qml:640 msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "È necessario pulire il piano di stampa prima di caricare un nuovo modello nella singola istanza di Cura?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +#: resources/qml/Preferences/GeneralPage.qml:646 msgctxt "@option:check" msgid "Clear buildplate before loading model into the single instance" msgstr "Pulire il piano di stampa prima di caricare il modello nella singola istanza" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 +#: resources/qml/Preferences/GeneralPage.qml:656 msgctxt "@info:tooltip" msgid "Should models be scaled to the build volume if they are too large?" msgstr "I modelli devono essere ridimensionati al volume di stampa, se troppo grandi?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +#: resources/qml/Preferences/GeneralPage.qml:661 msgctxt "@option:check" msgid "Scale large models" msgstr "Ridimensiona i modelli troppo grandi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +#: resources/qml/Preferences/GeneralPage.qml:671 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 "Un modello può apparire eccessivamente piccolo se la sua unità di misura è espressa in metri anziché in millimetri. Questi modelli devono essere aumentati?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:655 +#: resources/qml/Preferences/GeneralPage.qml:676 msgctxt "@option:check" msgid "Scale extremely small models" msgstr "Ridimensiona i modelli eccessivamente piccoli" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +#: resources/qml/Preferences/GeneralPage.qml:686 msgctxt "@info:tooltip" msgid "Should models be selected after they are loaded?" msgstr "I modelli devono essere selezionati dopo essere stati caricati?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: resources/qml/Preferences/GeneralPage.qml:691 msgctxt "@option:check" msgid "Select models when loaded" msgstr "Selezionare i modelli dopo il caricamento" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +#: resources/qml/Preferences/GeneralPage.qml:701 msgctxt "@info:tooltip" msgid "Should a prefix based on the printer name be added to the print job name automatically?" msgstr "Al nome del processo di stampa deve essere aggiunto automaticamente un prefisso basato sul nome della stampante?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:685 +#: resources/qml/Preferences/GeneralPage.qml:706 msgctxt "@option:check" msgid "Add machine prefix to job name" msgstr "Aggiungi al nome del processo un prefisso macchina" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +#: resources/qml/Preferences/GeneralPage.qml:716 msgctxt "@info:tooltip" msgid "Should a summary be shown when saving a project file?" msgstr "Quando si salva un file di progetto deve essere visualizzato un riepilogo?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: resources/qml/Preferences/GeneralPage.qml:720 msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Visualizza una finestra di riepilogo quando si salva un progetto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +#: resources/qml/Preferences/GeneralPage.qml:730 msgctxt "@info:tooltip" msgid "Default behavior when opening a project file" msgstr "Comportamento predefinito all'apertura di un file progetto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +#: resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@window:text" msgid "Default behavior when opening a project file: " msgstr "Comportamento predefinito all'apertura di un file progetto: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +#: resources/qml/Preferences/GeneralPage.qml:753 msgctxt "@option:openProject" msgid "Always ask me this" msgstr "Chiedi sempre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: resources/qml/Preferences/GeneralPage.qml:754 msgctxt "@option:openProject" msgid "Always open as a project" msgstr "Apri sempre come progetto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +#: resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:openProject" msgid "Always import models" msgstr "Importa sempre i modelli" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +#: resources/qml/Preferences/GeneralPage.qml:792 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 "Dopo aver modificato un profilo ed essere passati a un altro, si apre una finestra di dialogo che chiede se mantenere o eliminare le modifiche oppure se scegliere un comportamento predefinito e non visualizzare più tale finestra di dialogo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:780 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:36 +#: resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46 msgctxt "@label" msgid "Profiles" msgstr "Profili" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +#: resources/qml/Preferences/GeneralPage.qml:806 msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Comportamento predefinito per i valori di impostazione modificati al passaggio a un profilo diverso: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:800 +#: resources/qml/Preferences/GeneralPage.qml:821 msgctxt "@option:discardOrKeep" msgid "Always discard changed settings" msgstr "Elimina sempre le impostazioni modificate" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/Preferences/GeneralPage.qml:822 msgctxt "@option:discardOrKeep" msgid "Always transfer changed settings to new profile" msgstr "Trasferisci sempre le impostazioni modificate a un nuovo profilo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +#: resources/qml/Preferences/GeneralPage.qml:856 msgctxt "@label" msgid "Privacy" -msgstr "Privacy" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +#: resources/qml/Preferences/GeneralPage.qml:862 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 "I dati anonimi sulla stampa devono essere inviati a Ultimaker? Nota, non sono trasmessi o memorizzati modelli, indirizzi IP o altre informazioni personali." +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 "I dati anonimi sulla stampa devono essere inviati a UltiMaker? Nota, non sono trasmessi o memorizzati modelli, indirizzi IP o altre informazioni personali." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +#: resources/qml/Preferences/GeneralPage.qml:867 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "Invia informazioni di stampa (anonime)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +#: resources/qml/Preferences/GeneralPage.qml:897 msgctxt "@label" msgid "Updates" msgstr "Aggiornamenti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +#: resources/qml/Preferences/GeneralPage.qml:904 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "Cura deve verificare la presenza di eventuali aggiornamenti all’avvio del programma?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:888 +#: resources/qml/Preferences/GeneralPage.qml:909 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Controlla aggiornamenti all’avvio" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +#: resources/qml/Preferences/GeneralPage.qml:925 msgctxt "@info:tooltip" msgid "When checking for updates, only check for stable releases." msgstr "Quando si verifica la presenza di aggiornamenti, cercare solo versioni stabili." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:910 +#: resources/qml/Preferences/GeneralPage.qml:931 msgctxt "@option:radio" msgid "Stable releases only" msgstr "Solo versioni stabili" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +#: resources/qml/Preferences/GeneralPage.qml:941 msgctxt "@info:tooltip" msgid "When checking for updates, check for both stable and for beta releases." msgstr "Quando si verifica la presenza di aggiornamenti, cercare versioni stabili e beta." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:926 +#: resources/qml/Preferences/GeneralPage.qml:947 msgctxt "@option:radio" msgid "Stable and Beta releases" msgstr "Versioni stabili e beta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +#: resources/qml/Preferences/GeneralPage.qml:957 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 "È necessario verificare automaticamente la presenza di nuovi plugin ad ogni avvio di Cura? Si consiglia di non disabilitare questa opzione!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:941 +#: resources/qml/Preferences/GeneralPage.qml:962 msgctxt "@option:check" msgid "Get notifications for plugin updates" msgstr "Ricevi notifiche di aggiornamenti plugin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:50 +#: resources/qml/Preferences/MachinesPage.qml:50 msgctxt "@action:button" msgid "Add New" msgstr "Aggiungi nuovo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:134 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +#: resources/qml/Preferences/MachinesPage.qml:147 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:160 +#: resources/qml/Preferences/ProfilesPage.qml:294 msgctxt "@action:button" msgid "Activate" msgstr "Attiva" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:146 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:331 +#: resources/qml/Preferences/MachinesPage.qml:159 +#: resources/qml/Preferences/ProfilesPage.qml:331 msgctxt "@action:button" msgid "Rename" msgstr "Rinomina" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:72 msgctxt "@label" msgid "Materials compatible with active printer:" msgstr "Materiali compatibili con la stampante attiva:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:94 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:78 +#: resources/qml/Preferences/ProfilesPage.qml:94 msgctxt "@action:button" msgid "Create new" msgstr "Crea nuovo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:88 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:90 +#: resources/qml/Preferences/ProfilesPage.qml:88 msgctxt "@action:button" msgid "Import" msgstr "Importa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:101 msgctxt "@action:button" msgid "Sync with Printers" msgstr "Sincronizza con le stampanti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:311 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:174 +#: resources/qml/Preferences/ProfilesPage.qml:311 msgctxt "@action:button" msgid "Duplicate" msgstr "Duplica" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:342 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:198 +#: resources/qml/Preferences/ProfilesPage.qml:342 msgctxt "@action:button" msgid "Export" msgstr "Esporta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:392 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:212 +#: resources/qml/Preferences/ProfilesPage.qml:392 msgctxt "@title:window" msgid "Confirm Remove" msgstr "Conferma rimozione" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:393 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:215 +#: resources/qml/Preferences/ProfilesPage.qml:393 msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "Sei sicuro di voler rimuovere %1? Questa operazione non può essere annullata!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:228 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:238 msgctxt "@title:window" msgid "Import Material" msgstr "Importa materiale" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:242 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Materiale importato correttamente %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:245 msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not import material %1: %2" msgstr "Impossibile importare materiale {1}: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:267 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:256 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:267 msgctxt "@title:window" msgid "Export Material" msgstr "Esporta materiale" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:272 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:272 msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Impossibile esportare il materiale su %1: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:275 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:275 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Materiale esportato correttamente su %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 msgctxt "@title:window" msgid "Sync materials with printers" msgstr "Sincronizza materiali con stampanti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 msgctxt "@title:header" msgid "Sync materials with printers" msgstr "Sincronizza materiali con stampanti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 msgctxt "@text" msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "Seguendo alcuni semplici passaggi, sarà possibile sincronizzare tutti i profili del materiale con le stampanti." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 msgctxt "@button" msgid "Why do I need to sync material profiles?" msgstr "Cosa occorre per sincronizzare i profili del materiale?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 msgctxt "@button" msgid "Start" msgstr "Avvio" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144 msgctxt "@title:header" msgid "Sign in" msgstr "Accedi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150 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 "Per sincronizzare automaticamente i profili del materiale con tutte le stampanti collegate a Digital Factory è necessario aver effettuato l'accesso a Cura." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:446 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:586 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602 msgctxt "@button" msgid "Sync materials with USB" msgstr "Sincronizza materiali con USB" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 msgctxt "@title:header" msgid "The following printers will receive the new material profiles:" msgstr "Le stampanti seguenti riceveranno i nuovi profili del materiale:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:198 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 msgctxt "@title:header" msgid "Something went wrong when sending the materials to the printers." msgstr "Si è verificato un errore durante l'invio di materiali alle stampanti." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:205 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221 msgctxt "@title:header" msgid "Material profiles successfully synced with the following printers:" msgstr "I profili del materiale sono stati sincronizzati correttamente con le stampanti seguenti:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:429 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445 msgctxt "@button" msgid "Troubleshooting" msgstr "Ricerca e riparazione dei guasti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422 msgctxt "@text Asking the user whether printers are missing in a list." msgid "Printers missing?" msgstr "Mancano stampanti?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:408 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424 msgctxt "@text" msgid "Make sure all your printers are turned ON and connected to Digital Factory." msgstr "Accertarsi che tutte le stampanti siano accese e collegate a Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:417 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433 msgctxt "@button" msgid "Refresh List" msgstr "Aggiorna elenco" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473 msgctxt "@button" msgid "Try again" msgstr "Riprova" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:461 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Done" msgstr "Eseguito" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:606 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622 msgctxt "@button" msgid "Sync" msgstr "Sincronizza" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535 msgctxt "@button" msgid "Syncing" msgstr "Sincronizzazione" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553 msgctxt "@title:header" msgid "No printers found" msgstr "Nessuna stampante trovata" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574 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 "Nessuna stampante compatibile collegata a Digital Factory. Accertarsi che la stampante sia collegata e che il firmware più recente sia in esecuzione." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:569 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585 msgctxt "@button" msgid "Learn how to connect your printer to Digital Factory" msgstr "Scopri come collegare la stampante a Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:597 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613 msgctxt "@button" msgid "Refresh" msgstr "Aggiorna" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642 msgctxt "@title:header" msgid "Sync material profiles via USB" msgstr "Sincronizza profili del materiale tramite USB" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:632 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648 msgctxt "@text In the UI this is followed by a list of steps the user needs to take." msgid "Follow the following steps to load the new material profiles to your printer." msgstr "Eseguire le operazioni descritte di seguito per caricare nuovi profili del materiale nella stampante." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 msgctxt "@text" msgid "Click the export material archive button." msgstr "Fare clic sul pulsante Esporta archivio materiali." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Salvare il file .umm su una chiavetta USB." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 msgctxt "@text" msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." msgstr "Inserire la chiavetta USB nella stampante e avviare la procedura per caricare nuovi profili del materiale." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:673 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689 msgctxt "@button" msgid "How to load new material profiles to my printer" msgstr "Come caricare nuovi profili del materiale nella stampante" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:687 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 msgctxt "@button" msgid "Back" msgstr "Indietro" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Export material archive" msgstr "Esporta archivio materiali" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747 msgctxt "@title:window" msgid "Export All Materials" msgstr "Esporta tutti i materiali" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121 +#: resources/qml/Preferences/Materials/MaterialsView.qml:121 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Conferma modifica diametro" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122 +#: resources/qml/Preferences/Materials/MaterialsView.qml:122 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 "Il nuovo diametro del filamento impostato a %1 mm non è compatibile con l'attuale estrusore. Continuare?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152 +#: resources/qml/Preferences/Materials/MaterialsView.qml:152 msgctxt "@label" msgid "Display Name" msgstr "Visualizza nome" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 +#: resources/qml/Preferences/Materials/MaterialsView.qml:171 msgctxt "@label" msgid "Brand" msgstr "Marchio" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190 +#: resources/qml/Preferences/Materials/MaterialsView.qml:190 msgctxt "@label" msgid "Material Type" msgstr "Tipo di materiale" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +#: resources/qml/Preferences/Materials/MaterialsView.qml:210 msgctxt "@label" msgid "Color" msgstr "Colore" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:262 +#: resources/qml/Preferences/Materials/MaterialsView.qml:262 msgctxt "@title" msgid "Material color picker" msgstr "Selettore colore materiale" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:275 +#: resources/qml/Preferences/Materials/MaterialsView.qml:275 msgctxt "@label" msgid "Properties" msgstr "Proprietà" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +#: resources/qml/Preferences/Materials/MaterialsView.qml:286 msgctxt "@label" msgid "Density" msgstr "Densità" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +#: resources/qml/Preferences/Materials/MaterialsView.qml:319 msgctxt "@label" msgid "Diameter" msgstr "Diametro" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:369 +#: resources/qml/Preferences/Materials/MaterialsView.qml:369 msgctxt "@label" msgid "Filament Cost" msgstr "Costo del filamento" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:401 +#: resources/qml/Preferences/Materials/MaterialsView.qml:401 msgctxt "@label" msgid "Filament weight" msgstr "Peso del filamento" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:433 +#: resources/qml/Preferences/Materials/MaterialsView.qml:433 msgctxt "@label" msgid "Filament length" msgstr "Lunghezza del filamento" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:451 +#: resources/qml/Preferences/Materials/MaterialsView.qml:451 msgctxt "@label" msgid "Cost per Meter" msgstr "Costo al metro" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:465 +#: resources/qml/Preferences/Materials/MaterialsView.qml:465 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "Questo materiale è collegato a %1 e condivide alcune delle sue proprietà." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:472 +#: resources/qml/Preferences/Materials/MaterialsView.qml:472 msgctxt "@label" msgid "Unlink Material" msgstr "Scollega materiale" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +#: resources/qml/Preferences/Materials/MaterialsView.qml:485 msgctxt "@label" msgid "Description" msgstr "Descrizione" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:503 +#: resources/qml/Preferences/Materials/MaterialsView.qml:503 msgctxt "@label" msgid "Adhesion Information" msgstr "Informazioni sull’aderenza" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642 +#: resources/qml/Preferences/Materials/MaterialsView.qml:642 msgctxt "@title" msgid "Information" msgstr "Informazioni" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:647 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:82 +#: resources/qml/Preferences/Materials/MaterialsView.qml:647 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 msgctxt "@label" msgid "Print settings" msgstr "Impostazioni di stampa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:59 +#: resources/qml/Preferences/ProfilesPage.qml:59 msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "Profili compatibili con la stampante attiva:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:98 +#: resources/qml/Preferences/ProfilesPage.qml:98 msgctxt "@action:tooltip" msgid "Create new profile from current settings/overrides" msgstr "Crea nuovo profilo dalle impostazioni/esclusioni correnti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:125 +#: resources/qml/Preferences/ProfilesPage.qml:125 msgctxt "@action:label" msgid "Some settings from current profile were overwritten." msgstr "Alcune impostazioni del profilo corrente sono state sovrascritte." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:140 +#: resources/qml/Preferences/ProfilesPage.qml:140 msgctxt "@action:button" msgid "Update profile." msgstr "Aggiornare il profilo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:143 +#: resources/qml/Preferences/ProfilesPage.qml:143 msgctxt "@action:tooltip" msgid "Update profile with current settings/overrides" msgstr "Aggiorna il profilo con le impostazioni/esclusioni correnti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:148 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256 +#: resources/qml/Preferences/ProfilesPage.qml:148 msgctxt "@action:button" msgid "Discard current changes" msgstr "Elimina le modifiche correnti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:158 +#: resources/qml/Preferences/ProfilesPage.qml:158 msgctxt "@action:label" msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." msgstr "Questo profilo utilizza le impostazioni predefinite dalla stampante, perciò non ci sono impostazioni/esclusioni nell’elenco riportato di seguito." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:165 +#: resources/qml/Preferences/ProfilesPage.qml:165 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "Le impostazioni correnti corrispondono al profilo selezionato." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +#: resources/qml/Preferences/ProfilesPage.qml:175 msgctxt "@title:tab" msgid "Global Settings" msgstr "Impostazioni globali" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: resources/qml/Preferences/ProfilesPage.qml:278 msgctxt "@title:window" msgid "Create Profile" msgstr "Crea profilo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:280 +#: resources/qml/Preferences/ProfilesPage.qml:280 msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Indica un nome per questo profilo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:368 +#: resources/qml/Preferences/ProfilesPage.qml:352 +#: resources/qml/Preferences/ProfilesPage.qml:368 msgctxt "@title:window" msgid "Export Profile" msgstr "Esporta profilo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +#: resources/qml/Preferences/ProfilesPage.qml:382 msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Duplica profilo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:409 +#: resources/qml/Preferences/ProfilesPage.qml:409 msgctxt "@title:window" msgid "Rename Profile" msgstr "Rinomina profilo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:422 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:429 +#: resources/qml/Preferences/ProfilesPage.qml:422 +#: resources/qml/Preferences/ProfilesPage.qml:429 msgctxt "@title:window" msgid "Import Profile" msgstr "Importa profilo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:22 -msgctxt "@title:window" -msgid "Rename" -msgstr "Rinomina" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:23 -msgctxt "@info" -msgid "Please provide a new name." -msgstr "Indicare un nuovo nome." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56 +#: resources/qml/Preferences/SettingVisibilityItem.qml:56 msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." msgstr "Questa impostazione è stata nascosta dalla macchina attiva e non sarà visibile." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73 +#: resources/qml/Preferences/SettingVisibilityItem.qml:73 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] "Questa impostazione è stata nascosta dal valore di %1. Modifica il valore di tale impostazione per rendere visibile l’impostazione." msgstr[1] "Questa impostazione è stata nascosta dai valori di %1. Modifica i valori di tali impostazioni per rendere visibile questa impostazione." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13 +#: resources/qml/Preferences/SettingVisibilityPage.qml:13 msgctxt "@title:tab" msgid "Setting Visibility" msgstr "Impostazione visibilità" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 +#: resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" msgid "Check all" msgstr "Controlla tutto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 -msgctxt "@label" -msgid "Extruder" -msgstr "Estrusore" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70 -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." -msgstr "Temperatura target dell'estremità riscaldata. L'estremità riscaldata si riscalderà o raffredderà sino a questo valore di temperatura. Se questo è 0, l'estremità riscaldata verrà spenta." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "La temperatura corrente di questa estremità calda." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "La temperatura di preriscaldo dell’estremità calda." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Annulla" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Pre-riscaldo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Riscalda l’estremità calda prima della stampa. È possibile continuare a regolare la stampa durante il riscaldamento e non è necessario attendere il riscaldamento dell’estremità calda quando si è pronti per la stampa." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Il colore del materiale di questo estrusore." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Il materiale di questo estrusore." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "L’ugello inserito in questo estrusore." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -msgctxt "@label" -msgid "Build plate" -msgstr "Piano di stampa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55 -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 "La temperatura target del piano riscaldato. Il piano verrà riscaldato o raffreddato a questa temperatura. Se è 0, il riscaldamento del piano viene disattivato." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "La temperatura corrente del piano riscaldato." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "La temperatura di preriscaldo del piano." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Riscalda il piano prima della stampa. È possibile continuare a regolare la stampa durante il riscaldamento e non è necessario attendere il riscaldamento del piano quando si è pronti per la stampa." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51 -msgctxt "@label" -msgid "Printer control" -msgstr "Comando stampante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66 -msgctxt "@label" -msgid "Jog Position" -msgstr "Posizione Jog" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Distanza Jog" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Send G-code" -msgstr "Invia codice G" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Invia un comando codice G personalizzato alla stampante connessa. Premere ‘invio’ per inviare il comando." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "La stampante non è collegata." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "La stampante cloud è offline. Verificare se la stampante è accesa e collegata a Internet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Questa stampante non è collegata al tuo account. Visitare Ultimaker Digital Factory per stabilire una connessione." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "La connessione cloud al momento non è disponibile. Accedere per collegarsi alla stampante cloud." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "La connessione cloud al momento non è disponibile. Verificare la connessione a Internet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:235 -msgctxt "@button" -msgid "Add printer" -msgstr "Aggiungi stampante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Manage printers" -msgstr "Gestione stampanti" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Active print" msgstr "Stampa attiva" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Job Name" msgstr "Nome del processo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +#: resources/qml/PrintMonitor.qml:172 msgctxt "@label" msgid "Printing Time" msgstr "Tempo di stampa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +#: resources/qml/PrintMonitor.qml:180 msgctxt "@label" msgid "Estimated time left" msgstr "Tempo residuo stimato" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 msgctxt "@label" msgid "Profile" msgstr "Profilo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5618,132 +6176,379 @@ msgstr "" "\n" "Fare clic per aprire la gestione profili." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 +#: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 msgctxt "@label:header" msgid "Custom profiles" msgstr "Profili personalizzati" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 msgctxt "@label shown when we load a Gcode file" msgid "Print setup disabled. G-code file can not be modified." msgstr "Impostazione di stampa disabilitata. Il file G-code non può essere modificato." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:179 msgctxt "@button" msgid "Recommended" msgstr "Consigliata" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156 -msgctxt "@button" -msgid "Custom" -msgstr "Personalizzata" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 msgctxt "@label:Should be short" msgid "On" msgstr "Inserita" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 msgctxt "@label:Should be short" msgid "Off" msgstr "Disinserita" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "Sperimentale" +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is active and you overwrote some settings." +msgstr "Il profilo personalizzato %1 è attivo e sono state sovrascritte alcune impostazioni." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:54 -msgctxt "@info" -msgid "custom profile is active and you overwrote some settings." +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is overriding some settings." +msgstr "Il profilo personalizzato %1 sta sovrascrivendo alcune impostazioni." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92 +msgctxt "@info %1 is the name of a profile" +msgid "Recommended settings (for %1) were altered." +msgstr "Le impostazioni consigliate (per %1) sono state modificate." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106 +msgctxt "@info %1 is the name of a profile" +msgid "Some setting-values defined in %1 were overridden." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137 msgctxt "@info" -msgid "custom profile is overriding some settings." -msgstr "" +msgid "Reset to defaults." +msgstr "Ripristina le impostazioni predefinite." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178 msgctxt "@info" -msgid "Some settings were changed." -msgstr "" +msgid "Compare and save." +msgstr "Confronta e risparmia." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15 msgctxt "@label" msgid "Adhesion" msgstr "Adesione" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20 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 "Abilita stampa di brim o raft. Questa funzione aggiunge un’area piana attorno o sotto l’oggetto, facile da tagliare successivamente." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:198 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102 msgctxt "@label" -msgid "Gradual infill" -msgstr "Riempimento graduale" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:236 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "Un riempimento graduale aumenterà gradualmente la quantità di riempimento verso l'alto." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 -msgctxt "@label" -msgid "Resolution" +msgid "Recommended print settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111 +msgctxt "@button" +msgid "Show Custom" +msgstr "Personalizzata" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27 +msgctxt "@label" +msgid "Resolution" +msgstr "Risoluzione" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16 +msgctxt "@label" +msgid "Strength" +msgstr "Resistenza" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20 +msgctxt "@label" +msgid "The following settings define the strength of your part." +msgstr "Le seguenti impostazioni definiscono la resistenza del tuo pezzo." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34 +msgctxt "infill_sparse_density description" +msgid "Infill Density" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35 +msgctxt "@label" +msgid "Adjusts the density of infill of the print." +msgstr "Regola la densità del riempimento della stampa." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54 +msgctxt "@action:label" +msgid "Infill Pattern" +msgstr "Configurazione di riempimento" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56 +msgctxt "@label" +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 "" +"La configurazione 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" +"Per le stampe 3D funzionali che richiedono un'elevata resistenza in più direzioni utilizzare cubico, suddivisione cubica, quarto cubico, ottetto e giroide." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67 +msgctxt "@action:label" +msgid "Shell Thickness" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68 +msgctxt "@label" +msgid "Defines the thickness of your part side walls, roof and floor." +msgstr "Definisce lo spessore delle pareti laterali, del tetto e del pavimento." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16 msgctxt "@label" msgid "Support" msgstr "Supporto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21 msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these 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." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40 +msgctxt "@action:label" +msgid "Support Type" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41 +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." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53 +msgctxt "@action:label" +msgid "Print with" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54 +msgctxt "@label" +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." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67 +msgctxt "@action:label" +msgid "Placement" +msgstr "Posizionamento" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68 +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." + +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 msgctxt "@error" msgid "Configuration not supported" -msgstr "" +msgstr "Configurazione non supportata" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." -msgstr "" +msgstr "Nessun profilo disponibile per la configurazione del materiale /%1 selezionato/a. Modifica la configurazione." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 msgctxt "@button:label" msgid "Learn more" -msgstr "" +msgstr "Ulteriori informazioni" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +#: resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "Estrusore" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:70 +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." +msgstr "Temperatura target dell'estremità riscaldata. L'estremità riscaldata si riscalderà o raffredderà sino a questo valore di temperatura. Se questo è 0, l'estremità riscaldata verrà spenta." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:105 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "La temperatura corrente di questa estremità calda." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:182 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "La temperatura di preriscaldo dell’estremità calda." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:271 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:259 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Annulla" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:274 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:263 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Pre-riscaldo" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:297 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Riscalda l’estremità calda prima della stampa. È possibile continuare a regolare la stampa durante il riscaldamento e non è necessario attendere il riscaldamento dell’estremità calda quando si è pronti per la stampa." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:335 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "Il colore del materiale di questo estrusore." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:367 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "Il materiale di questo estrusore." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:400 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "L’ugello inserito in questo estrusore." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:25 +msgctxt "@label" +msgid "Build plate" +msgstr "Piano di stampa" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:55 +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 "La temperatura target del piano riscaldato. Il piano verrà riscaldato o raffreddato a questa temperatura. Se è 0, il riscaldamento del piano viene disattivato." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "La temperatura corrente del piano riscaldato." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:162 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "La temperatura di preriscaldo del piano." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:286 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Riscalda il piano prima della stampa. È possibile continuare a regolare la stampa durante il riscaldamento e non è necessario attendere il riscaldamento del piano quando si è pronti per la stampa." + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:51 +msgctxt "@label" +msgid "Printer control" +msgstr "Comando stampante" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:66 +msgctxt "@label" +msgid "Jog Position" +msgstr "Posizione Jog" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:82 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:162 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:217 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Distanza Jog" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Send G-code" +msgstr "Invia codice G" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:319 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Invia un comando codice G personalizzato alla stampante connessa. Premere ‘invio’ per inviare il comando." + +#: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "La stampante non è collegata." + +#: resources/qml/PrinterSelector/MachineListButton.qml:34 +msgctxt "@label" +msgid "Hide all connected printers" +msgstr "Nascondi tutte le stampanti collegate" + +#: resources/qml/PrinterSelector/MachineListButton.qml:47 +msgctxt "@label" +msgid "Show all connected printers" +msgstr "Mostra tutte le stampanti collegate" + +#: resources/qml/PrinterSelector/MachineSelector.qml:64 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "La stampante cloud è offline. Verificare se la stampante è accesa e collegata a Internet." + +#: resources/qml/PrinterSelector/MachineSelector.qml:68 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Questa stampante non è collegata al tuo account. Visitare Ultimaker Digital Factory per stabilire una connessione." + +#: resources/qml/PrinterSelector/MachineSelector.qml:73 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "La connessione cloud al momento non è disponibile. Accedere per collegarsi alla stampante cloud." + +#: resources/qml/PrinterSelector/MachineSelector.qml:78 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "La connessione cloud al momento non è disponibile. Verificare la connessione a Internet." + +#: resources/qml/PrinterSelector/MachineSelectorList.qml:30 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:32 +msgctxt "@label" +msgid "Other printers" +msgstr "Altre stampanti" + +#: resources/qml/ProfileOverview.qml:36 msgctxt "@title:column" msgid "Setting" msgstr "Impostazione" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +#: resources/qml/ProfileOverview.qml:37 msgctxt "@title:column" msgid "Profile" msgstr "Profilo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +#: resources/qml/ProfileOverview.qml:38 msgctxt "@title:column" msgid "Current" msgstr "Corrente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +#: resources/qml/ProfileOverview.qml:39 msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unità" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +#: resources/qml/SearchBar.qml:17 msgctxt "@placeholder" msgid "Search" msgstr "Cerca" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 +#: resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5754,32 +6559,32 @@ msgstr "" "\n" "Fare clic per rendere visibili queste impostazioni." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 +#: resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "Questa impostazione non è utilizzata perché tutte le impostazioni che influenza sono sottoposte a override." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +#: resources/qml/Settings/SettingItem.qml:89 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Influisce su" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +#: resources/qml/Settings/SettingItem.qml:94 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "Influenzato da" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:190 +#: resources/qml/Settings/SettingItem.qml:196 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "Questa impostazione è sempre condivisa tra tutti gli estrusori. La sua modifica varierà il valore per tutti gli estrusori." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +#: resources/qml/Settings/SettingItem.qml:200 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Questa impostazione viene risolta dai valori in conflitto specifici dell'estrusore:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +#: resources/qml/Settings/SettingItem.qml:240 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5790,7 +6595,7 @@ msgstr "" "\n" "Fare clic per ripristinare il valore del profilo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:334 +#: resources/qml/Settings/SettingItem.qml:340 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5801,4697 +6606,328 @@ msgstr "" "\n" "Fare clic per ripristinare il valore calcolato." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +#: resources/qml/Settings/SettingView.qml:48 msgctxt "@label:textbox" msgid "Search settings" msgstr "Impostazioni ricerca" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:395 +#: resources/qml/Settings/SettingView.qml:395 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Copia valore su tutti gli estrusori" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:404 +#: resources/qml/Settings/SettingView.qml:404 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Copia tutti i valori modificati su tutti gli estrusori" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:440 +#: resources/qml/Settings/SettingView.qml:440 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Nascondi questa impostazione" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:453 +#: resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Nascondi questa impostazione" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:457 +#: resources/qml/Settings/SettingView.qml:457 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Mantieni visibile questa impostazione" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +#: resources/qml/Toolbar.qml:142 +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" +msgstr[0] "Stampa modello selezionato con %1" +msgstr[1] "Stampa modelli selezionati con %1" + +#: resources/qml/ViewOrientationControls.qml:25 msgctxt "@info:tooltip" msgid "3D View" msgstr "Visualizzazione 3D" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +#: resources/qml/ViewOrientationControls.qml:38 msgctxt "@info:tooltip" msgid "Front View" msgstr "Visualizzazione frontale" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +#: resources/qml/ViewOrientationControls.qml:51 msgctxt "@info:tooltip" msgid "Top View" msgstr "Visualizzazione superiore" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +#: resources/qml/ViewOrientationControls.qml:64 msgctxt "@info:tooltip" msgid "Left View" msgstr "Vista sinistra" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +#: resources/qml/ViewOrientationControls.qml:77 msgctxt "@info:tooltip" msgid "Right View" msgstr "Vista destra" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: resources/qml/ViewsSelector.qml:50 msgctxt "@label" msgid "View type" msgstr "Visualizza tipo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:47 msgctxt "@label" msgid "Add a Cloud printer" msgstr "Aggiungere una stampante cloud" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:73 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:73 msgctxt "@label" msgid "Waiting for Cloud response" msgstr "In attesa della risposta del cloud" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:83 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:83 msgctxt "@label" msgid "No printers found in your account?" msgstr "Non sono presenti stampanti nel cloud?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:117 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:117 msgctxt "@label" msgid "The following printers in your account have been added in Cura:" msgstr "Le seguenti stampanti del tuo account sono state aggiunte in Cura:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:186 msgctxt "@button" msgid "Add printer manually" msgstr "Aggiungere la stampante manualmente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 msgctxt "@label" msgid "Manufacturer" msgstr "Produttore" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Profile author" msgstr "Autore profilo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 msgctxt "@label" msgid "Printer name" msgstr "Nome stampante" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 msgctxt "@text" msgid "Please name your printer" msgstr "Dare un nome alla stampante" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "Aggiungi una stampante" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:38 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Aggiungi una stampante in rete" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:87 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Aggiungi una stampante non in rete" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 msgctxt "@label" msgid "There is no printer found over your network." msgstr "Non è stata trovata alcuna stampante sulla rete." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 msgctxt "@label" msgid "Refresh" msgstr "Aggiorna" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 msgctxt "@label" msgid "Add printer by IP" msgstr "Aggiungi stampante per IP" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Aggiungere una stampante cloud" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205 msgctxt "@label" msgid "Troubleshooting" msgstr "Ricerca e riparazione dei guasti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 msgctxt "@label" msgid "Add printer by IP address" msgstr "Aggiungi stampante per indirizzo IP" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Inserire l'indirizzo IP della stampante." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 msgctxt "@button" msgid "Add" msgstr "Aggiungi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 msgctxt "@label" msgid "Could not connect to device." msgstr "Impossibile connettersi al dispositivo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Non è possibile effettuare la connessione alla stampante Ultimaker?" +msgid "Can't connect to your UltiMaker printer?" +msgstr "Non è possibile effettuare la connessione alla stampante UltiMaker?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 msgctxt "@label" msgid "The printer at this address has not responded yet." msgstr "La stampante a questo indirizzo non ha ancora risposto." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 msgctxt "@label" msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." msgstr "Questa stampante non può essere aggiunta perché è una stampante sconosciuta o non è l'host di un gruppo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 msgctxt "@button" msgid "Connect" msgstr "Collega" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Aggiungi una stampante in rete" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Aggiungi una stampante non in rete" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102 +msgctxt "@button" +msgid "Add UltiMaker printer via Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "In order to start using Cura you will need to configure a printer." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36 +msgctxt "@label" +msgid "What printer would you like to setup?" +msgstr "Quale stampante si desidera configurare?" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55 +msgctxt "@button" +msgid "UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64 +msgctxt "@button" +msgid "Non UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73 +msgctxt "@button" +msgid "Learn more about adding printers to Cura" +msgstr "Scopri di più sull'aggiunta di stampanti a Cura" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29 +msgctxt "@label" +msgid "Add printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33 +msgctxt "@label" +msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70 +msgctxt "@label" +msgid "If you are trying to add a new UltiMaker printer to Cura" +msgstr "Se stai cercando di aggiungere una nuova stampante UltiMaker a Cura" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80 +msgctxt "@info" +msgid "Sign in into UltiMaker Digital Factory" +msgstr "Accedi alla UltiMaker Digital Factory" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81 +msgctxt "@info" +msgid "Follow the procedure to add a new printer" +msgstr "Segui alla procedura per aggiungere una nuova stampante" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82 +msgctxt "@info" +msgid "Your new printer will automatically appear in Cura" +msgstr "La nuova stampante apparirà automaticamente in Cura" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100 +msgctxt "@button" +msgid "Learn more" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121 +msgctxt "@button" +msgid "Add local printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129 +msgctxt "@button" +msgid "Sign in to Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133 +msgctxt "@button" +msgid "Waiting for new printers" +msgstr "" + +#: resources/qml/WelcomePages/ChangelogContent.qml:24 msgctxt "@label" msgid "Release Notes" msgstr "Note sulla versione" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:123 +#: resources/qml/WelcomePages/CloudContent.qml:123 msgctxt "@text" msgid "Add material settings and plugins from the Marketplace" msgstr "Aggiungi impostazioni materiale e plugin dal Marketplace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:149 +#: resources/qml/WelcomePages/CloudContent.qml:149 msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Esegui il backup e la sincronizzazione delle impostazioni materiale e dei plugin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:175 +#: resources/qml/WelcomePages/CloudContent.qml:175 msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Condividi idee e ottieni supporto da più di 48.000 utenti nella community di Ultimaker" +msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" +msgstr "Condividi idee e ottieni supporto da più di 48.000 utenti nella community di UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +#: resources/qml/WelcomePages/CloudContent.qml:189 msgctxt "@button" msgid "Skip" msgstr "Salta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +#: resources/qml/WelcomePages/CloudContent.qml:201 msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Crea un account Ultimaker gratuito" +msgid "Create a free UltiMaker Account" +msgstr "Crea un account UltiMaker gratuito" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Aiutaci a migliorare Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:56 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura acquisisce dati anonimi per migliorare la qualità di stampa e l'esperienza dell'utente, tra cui:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:68 -msgctxt "@text" -msgid "Machine types" -msgstr "Tipi di macchine" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:74 -msgctxt "@text" -msgid "Material usage" -msgstr "Utilizzo dei materiali" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:80 -msgctxt "@text" -msgid "Number of slices" -msgstr "Numero di sezionamenti" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:86 -msgctxt "@text" -msgid "Print settings" -msgstr "Impostazioni di stampa" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:99 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "I dati acquisiti da Ultimaker Cura non conterranno alcuna informazione personale." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:100 -msgctxt "@text" -msgid "More information" -msgstr "Ulteriori informazioni" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +#: resources/qml/WelcomePages/DropDownWidget.qml:93 msgctxt "@label" msgid "Empty" msgstr "Vuoto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +#: resources/qml/WelcomePages/UserAgreementContent.qml:23 msgctxt "@label" msgid "User Agreement" msgstr "Contratto di licenza" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67 +#: resources/qml/WelcomePages/UserAgreementContent.qml:67 msgctxt "@button" msgid "Decline and close" msgstr "Rifiuta e chiudi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Benvenuto in Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:67 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "" -"Segui questa procedura per configurare\n" -"Ultimaker Cura. Questa operazione richiederà solo pochi istanti." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:82 -msgctxt "@button" -msgid "Get started" -msgstr "Per iniziare" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: resources/qml/WelcomePages/WhatsNewContent.qml:28 msgctxt "@label" msgid "What's New" msgstr "Scopri le novità" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: resources/qml/Widgets/ComboBox.qml:18 msgctxt "@label" msgid "No items to select from" msgstr "Nessun elemento da selezionare da" -#: ModelChecker/plugin.json -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." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "Controllo modello" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Fornisce il supporto per la lettura di file 3MF." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "Lettore 3MF" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Fornisce il supporto per la scrittura di file 3MF." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "Writer 3MF" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Fornisce il supporto per la lettura di file 3MF." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "Lettore 3MF" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Effettua il backup o ripristina la configurazione." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Backup Cura" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Fornisce il collegamento al back-end di sezionamento CuraEngine." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Back-end CuraEngine" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Fornisce supporto per l'importazione dei profili Cura." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Lettore profilo Cura" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Fornisce supporto per l'esportazione dei profili Cura." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Writer profilo Cura" - -#: DigitalLibrary/plugin.json -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." - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Controlla disponibilità di aggiornamenti firmware." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Controllo aggiornamento firmware" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Fornisce azioni macchina per l’aggiornamento del firmware." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Aggiornamento firmware" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Legge il codice G da un archivio compresso." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lettore codice G compresso" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Scrive il codice G in un archivio compresso." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Writer codice G compresso" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Fornisce supporto per l'importazione di profili da file G-Code." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Lettore profilo codice G" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Consente il caricamento e la visualizzazione dei file codice G." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "Lettore codice G" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Scrive il codice G in un file." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "Writer codice G" - -#: ImageReader/plugin.json -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." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Lettore di immagine" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Fornisce supporto per l'importazione di profili dalle versioni legacy Cura." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lettore legacy profilo Cura" - -#: MachineSettingsAction/plugin.json -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.)" - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Azione Impostazioni macchina" - -#: Marketplace/plugin.json -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." - -#: Marketplace/plugin.json -msgctxt "name" -msgid "Marketplace" -msgstr "Mercato" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Fornisce una fase di controllo in Cura." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Fase di controllo" - -#: PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Fornisce le impostazioni per modello." - -#: PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Utilità impostazioni per modello" - -#: PostProcessingPlugin/plugin.json -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" - -#: PostProcessingPlugin/plugin.json -msgctxt "name" -msgid "Post Processing" -msgstr "Post-elaborazione" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Fornisce una fase di preparazione in Cura." - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "Fase di preparazione" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Fornisce una fase di anteprima in Cura." - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "Fase di anteprima" - -#: RemovableDriveOutputDevice/plugin.json -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." - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Plugin dispositivo di output unità rimovibile" - -#: SentryLogger/plugin.json -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" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "Logger sentinella" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Fornisce l'anteprima dei dati dei livelli suddivisi in sezioni." - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "Vista simulazione" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Invia informazioni su sezionamento anonime Può essere disabilitato tramite le preferenze." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Informazioni su sezionamento" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Fornisce una normale visualizzazione a griglia compatta." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Visualizzazione compatta" - -#: SupportEraser/plugin.json -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" - -#: SupportEraser/plugin.json -msgctxt "name" -msgid "Support Eraser" -msgstr "Cancellazione supporto" - -#: TrimeshReader/plugin.json -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Fornisce supporto per la lettura dei file modello." - -#: TrimeshReader/plugin.json -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh Reader" - -#: UFPReader/plugin.json -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Fornisce il supporto per la lettura di pacchetti formato Ultimaker." - -#: UFPReader/plugin.json -msgctxt "name" -msgid "UFP Reader" -msgstr "Lettore UFP" - -#: UFPWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Fornisce il supporto per la scrittura di pacchetti formato Ultimaker." - -#: UFPWriter/plugin.json -msgctxt "name" -msgid "UFP Writer" -msgstr "Writer UFP" - -#: UltimakerMachineActions/plugin.json -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.)" - -#: UltimakerMachineActions/plugin.json -msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Azioni della macchina Ultimaker" - -#: UM3NetworkPrinting/plugin.json -msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Gestisce le connessioni di rete alle stampanti Ultimaker in rete." - -#: UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Connessione di rete Ultimaker" - -#: USBPrinting/plugin.json -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." - -#: USBPrinting/plugin.json -msgctxt "name" -msgid "USB printing" -msgstr "Stampa USB" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Aggiornamento della versione da 2.1 a 2.2" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Aggiornamento della versione da 2.2 a 2.4" - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Aggiornamento della versione da 2.5 a 2.6" - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Aggiornamento della versione da 2.6 a 2.7" - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Aggiornamento della versione da 2.7 a 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Aggiornamento della versione da 3.0 a 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Aggiornamento della versione da 3.2 a 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Aggiornamento della versione da 3.3 a 3.4" - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Aggiornamento della versione da 3.4 a 3.5" - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Aggiornamento della versione da 3.5 a 4.0" - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Aggiornamento della versione da 4.0 a 4.1" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Aggiornamento della versione da 4.11 a 4.12" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Aggiornamento della versione da 4.13 a 5.0" - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Aggiornamento della versione da 4.1 a 4.2" - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Aggiornamento della versione da 4.2 a 4.3" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Aggiornamento della versione da 4.3 a 4.4" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Aggiornamento della versione da 4.4 a 4.5" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Aggiornamento della versione da 4.5 a 4.6" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Aggiornamento versione da 4.6.0 a 4.6.2" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Aggiornamento versione da 4.6.2 a 4.7" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Aggiornamento della versione da 4.7 a 4.8" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Aggiornamento della versione da 4.8 a 4.9" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Aggiornamento della versione da 4.9 a 4.10" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Fornisce il supporto per la lettura di file X3D." - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "Lettore X3D" - -#: XmlMaterialProfile/plugin.json -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." - -#: XmlMaterialProfile/plugin.json -msgctxt "name" -msgid "Material Profiles" -msgstr "Profili del materiale" - -#: XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Fornisce la vista a raggi X." - -#: XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "Vista ai raggi X" - -#~ msgctxt "@label" -#~ msgid "Not yet initialized
    " -#~ msgstr "Non ancora inizializzato
    " - -#~ msgctxt "@label" -#~ msgid "By" -#~ msgstr "Per mezzo di" - -#~ msgctxt "@Label" -#~ msgid "Static type checker for Python" -#~ msgstr "Controllo di tipo statico per Python" - -#~ msgctxt "@Label" -#~ msgid "Root Certificates for validating SSL trustworthiness" -#~ msgstr "Certificati di origine per la convalida dell'affidabilità SSL" - -#~ msgctxt "@label" -#~ msgid "Python extensions for Microsoft Windows" -#~ msgstr "Estensioni Python per Microsoft Windows" - -#~ msgctxt "@label" -#~ msgid "SVG icons" -#~ msgstr "Icone SVG" - -#~ msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" -#~ msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" -#~ msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" -#~ msgstr[0] "Non esiste alcun profilo %1 per la configurazione nelle estrusore %2. In alternativa verrà utilizzato lo scopo predefinito" -#~ msgstr[1] "Non esiste alcun profilo %1 per le configurazioni negli estrusori %2. In alternativa verrà utilizzato lo scopo predefinito" - -#~ msgctxt "@tooltip" -#~ msgid "You have modified some profile settings. If you want to change these go to custom mode." -#~ msgstr "Sono state modificate alcune impostazioni del profilo. Per modificarle, andare alla modalità personalizzata." - -#~ msgctxt "@action:button" -#~ msgid "Sync materials with printers" -#~ msgstr "Sincronizza materiali" - -#~ msgctxt "@title:window" -#~ msgid "Convert Image..." -#~ msgstr "Converti immagine..." - -#~ msgctxt "@info:tooltip" -#~ msgid "The width in millimeters on the build plate." -#~ msgstr "La larghezza in millimetri sul piano di stampa." - -#~ msgctxt "@title" -#~ msgid "Marketplace" -#~ msgstr "Mercato" - -#~ msgctxt "@info" -#~ msgid "You will need to restart Cura before changes in packages have effect." -#~ msgstr "Riavviare Cura per rendere effettive le modifiche apportate ai pacchetti." - -#~ msgctxt "@action:button" -#~ msgid "Install" -#~ msgstr "Installazione" - -#~ msgctxt "@action:button" -#~ msgid "Installed" -#~ msgstr "Installa" - -#~ msgctxt "@label" -#~ msgid "Premium" -#~ msgstr "Premium" - -#~ msgctxt "@info:tooltip" -#~ msgid "Go to Web Marketplace" -#~ msgstr "Vai al Marketplace web" - -#~ msgctxt "@label" -#~ msgid "Search materials" -#~ msgstr "Cerca materiali" - -#~ msgctxt "@label" -#~ msgid "Compatibility" -#~ msgstr "Compatibilità" - -#~ msgctxt "@label:table_header" -#~ msgid "Machine" -#~ msgstr "Macchina" - -#~ msgctxt "@label:table_header" -#~ msgid "Build Plate" -#~ msgstr "Piano di stampa" - -#~ msgctxt "@label:table_header" -#~ msgid "Support" -#~ msgstr "Supporto" - -#~ msgctxt "@label:table_header" -#~ msgid "Quality" -#~ msgstr "Qualità" - -#~ msgctxt "@action:label" -#~ msgid "Technical Data Sheet" -#~ msgstr "Scheda dati tecnici" - -#~ msgctxt "@action:label" -#~ msgid "Safety Data Sheet" -#~ msgstr "Scheda dati di sicurezza" - -#~ msgctxt "@action:label" -#~ msgid "Printing Guidelines" -#~ msgstr "Linee guida di stampa" - -#~ msgctxt "@action:label" -#~ msgid "Website" -#~ msgstr "Sito web" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to install or update" -#~ msgstr "Log in deve essere installato o aggiornato" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Buy material spools" -#~ msgstr "Acquista bobine di materiale" - -#~ msgctxt "@action:button" -#~ msgid "Update" -#~ msgstr "Aggiorna" - -#~ msgctxt "@action:button" -#~ msgid "Updating" -#~ msgstr "Aggiornamento in corso" - -#~ msgctxt "@action:button" -#~ msgid "Updated" -#~ msgstr "Aggiornamento eseguito" - -#~ msgctxt "@action:button" -#~ msgid "Back" -#~ msgstr "Indietro" - -#~ msgctxt "@title:tab" -#~ msgid "Plugins" -#~ msgstr "Plugin" - -#~ msgctxt "@title:tab" -#~ msgid "Installed" -#~ msgstr "Installa" - -#~ msgctxt "@label" -#~ msgid "Will install upon restarting" -#~ msgstr "L'installazione sarà eseguita al riavvio" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to update" -#~ msgstr "Log in deve essere aggiornato" - -#~ msgctxt "@action:button" -#~ msgid "Downgrade" -#~ msgstr "Downgrade" - -#~ msgctxt "@action:button" -#~ msgid "Uninstall" -#~ msgstr "Disinstalla" - -#~ msgctxt "@label" -#~ msgid "Community Contributions" -#~ msgstr "Contributi della comunità" - -#~ msgctxt "@label" -#~ msgid "Community Plugins" -#~ msgstr "Plugin della comunità" - -#~ msgctxt "@label" -#~ msgid "Generic Materials" -#~ msgstr "Materiali generici" - -#~ msgctxt "@info" -#~ msgid "Fetching packages..." -#~ msgstr "Recupero dei pacchetti..." - -#~ msgctxt "@label" -#~ msgid "Website" -#~ msgstr "Sito web" - -#~ msgctxt "@label" -#~ msgid "Email" -#~ msgstr "E-mail" - -#~ msgctxt "@description" -#~ msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -#~ msgstr "Accedere per ottenere i plugin e i materiali verificati per Ultimaker Cura Enterprise" - -#~ msgctxt "@label" -#~ msgid "Version" -#~ msgstr "Versione" - -#~ msgctxt "@label" -#~ msgid "Last updated" -#~ msgstr "Ultimo aggiornamento" - -#~ msgctxt "@label" -#~ msgid "Downloads" -#~ msgstr "Download" - -#~ msgctxt "@title:tab" -#~ msgid "Installed plugins" -#~ msgstr "Plugin installati" - -#~ msgctxt "@info" -#~ msgid "No plugin has been installed." -#~ msgstr "Non è stato installato alcun plugin." - -#~ msgctxt "@title:tab" -#~ msgid "Installed materials" -#~ msgstr "Materiali installati" - -#~ msgctxt "@info" -#~ msgid "No material has been installed." -#~ msgstr "Non è stato installato alcun materiale." - -#~ msgctxt "@title:tab" -#~ msgid "Bundled plugins" -#~ msgstr "Plugin inseriti nel bundle" - -#~ msgctxt "@title:tab" -#~ msgid "Bundled materials" -#~ msgstr "Materiali inseriti nel bundle" - -#~ msgctxt "@info" -#~ msgid "Could not connect to the Cura Package database. Please check your connection." -#~ msgstr "Impossibile connettersi al database pacchetto Cura. Verificare la connessione." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall" -#~ msgstr "Conferma disinstalla" - -#~ msgctxt "@text:window" -#~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -#~ msgstr "Si stanno installando materiali e/o profili ancora in uso. La conferma ripristina i seguenti materiali/profili ai valori predefiniti." - -#~ msgctxt "@text:window" -#~ msgid "Materials" -#~ msgstr "Materiali" - -#~ msgctxt "@text:window" -#~ msgid "Profiles" -#~ msgstr "Profili" - -#~ msgctxt "@action:button" -#~ msgid "Confirm" -#~ msgstr "Conferma" - -#~ msgctxt "@info:tooltip" -#~ msgid "Some things could be problematic in this print. Click to see tips for adjustment." -#~ msgstr "Alcune parti potrebbero risultare problematiche in questa stampa. Fare click per visualizzare i suggerimenti per la regolazione." - -#~ msgctxt "@label" -#~ msgid "Support library for handling planar objects" -#~ msgstr "Libreria di supporto per gestione oggetti planari" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "Alcune impostazioni di profilo sono state personalizzate.\n" -#~ "Mantenere queste impostazioni modificate dopo il cambio dei profili?\n" -#~ "In alternativa, è possibile eliminare le modifiche per caricare i valori predefiniti da '%1'." - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Build plate" -#~ msgstr "P&iano di stampa" - -#~ msgctxt "@label" -#~ msgid "Create" -#~ msgstr "Crea" - -#~ msgctxt "@label" -#~ msgid "Duplicate" -#~ msgstr "Duplica" - -#~ msgctxt "@label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "Stampante: %1" - -#~ msgctxt "@action:button" -#~ msgid "Update profile with current settings/overrides" -#~ msgstr "Aggiorna il profilo con le impostazioni/esclusioni correnti" - -#~ msgctxt "@label" -#~ msgid "Theme:" -#~ msgstr "Tema:" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for these changes to have effect." -#~ msgstr "Riavviare l'applicazione per rendere effettive le modifiche." - -#~ msgctxt "@action:button" -#~ msgid "More information" -#~ msgstr "Ulteriori informazioni" - -#~ msgctxt "@action:button" -#~ msgid "Create" -#~ msgstr "Crea" - -#~ msgctxt "@action:button Sending materials to printers" -#~ msgid "Sync with Printers" -#~ msgstr "Sincronizza con le stampanti" - -#~ msgctxt "@action:label" -#~ msgid "Printer" -#~ msgstr "Stampante" - -#~ msgctxt "@title:column" -#~ msgid "Unit" -#~ msgstr "Unità" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting Guide" -#~ msgstr "Mostra la Guida ricerca e riparazione dei guasti online" - -#~ msgctxt "@action:inmenu" -#~ msgid "Add more materials from Marketplace" -#~ msgstr "Aggiungere altri materiali da Marketplace" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange All Models To All Build Plates" -#~ msgstr "Sistema tutti i modelli su tutti i piani di stampa" - -#~ msgctxt "@action:menu" -#~ msgid "&Marketplace" -#~ msgstr "&Mercato" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new Cura packages." -#~ msgstr "Trova, gestisce ed installa nuovi pacchetti Cura." - -#~ msgctxt "name" -#~ msgid "Toolbox" -#~ msgstr "Casella degli strumenti" - -#~ msgctxt "description" -#~ msgid "Provides the Simulation view." -#~ msgstr "Fornisce la vista di simulazione." - #~ msgctxt "@info:status" -#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Invia e controlla i processi di stampa ovunque con l’account Ultimaker." - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Digital Factory" -#~ msgstr "Effettuare la connessione a Ultimaker Digital Factory" - -#~ msgctxt "@info" -#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." -#~ msgstr "Impossibile visualizzare feed della Webcam per stampanti cloud da Ultimaker Cura." - -#~ 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 not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -#~ msgstr "È possibile che per {machine_name} siano disponibili nuove funzionalità o bug fix. Se non si dispone della versione più recente, è consigliabile aggiornare il firmware della stampante alla versione {latest_version}." - -#~ msgctxt "@info:title The %s gets replaced with the printer name." -#~ msgid "New %s firmware available" -#~ msgstr "Nuovo firmware %s disponibile" - -#~ msgctxt "@info:status" -#~ msgid "Global stack is missing." -#~ msgstr "Pila globale mancante." - -#~ msgctxt "@info:status" -#~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces." -#~ msgstr "Il modello in uso non è multiforme. Le aree evidenziate indicano superfici mancanti o estranee." +#~ msgid "Cura does not accurately display layers when Wire Printing is enabled." +#~ msgstr "Cura non visualizza in modo accurato i layer se la funzione Wire Printing è abilitata." #~ msgctxt "@info:title" -#~ msgid "Model errors" -#~ msgstr "Errori modello" - -#~ msgctxt "@label:listbox" -#~ msgid "Layer thickness" -#~ msgstr "Spessore strato" - -#~ msgctxt "@label" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "La chiave per la stampa 3D connessa" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Customize your experience with more print profiles and plugins\n" -#~ "- Stay flexible by syncing your setup and loading it anywhere\n" -#~ "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "" -#~ "- Personalizza la tua esperienza con più profili di stampa e plugin\n" -#~ "- Mantieni la flessibilità sincronizzando la configurazione e caricandola ovunque\n" -#~ "- Aumenta l'efficienza grazie a un flusso di lavoro remoto sulle stampanti Ultimaker" - -#~ msgctxt "@button" -#~ msgid "Create account" -#~ msgstr "Crea account" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete Selected Model" -#~ msgid_plural "Delete Selected Models" -#~ msgstr[0] "Cancella modello selezionato" -#~ msgstr[1] "Cancella modelli selezionati" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Center Selected Model" -#~ msgid_plural "Center Selected Models" -#~ msgstr[0] "Centra modello selezionato" -#~ msgstr[1] "Centra modelli selezionati" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Multiply Selected Model" -#~ msgid_plural "Multiply Selected Models" -#~ msgstr[0] "Moltiplica modello selezionato" -#~ msgstr[1] "Moltiplica modelli selezionati" - -#~ msgctxt "@button" -#~ msgid "Finish" -#~ msgstr "Fine" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Account" -#~ msgstr "Account Ultimaker" - -#~ msgctxt "@text" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "La chiave per la stampa 3D connessa" - -#~ msgctxt "@text" -#~ msgid "- Customize your experience with more print profiles and plugins" -#~ msgstr "- Personalizza la tua esperienza con più profili di stampa e plugin" - -#~ msgctxt "@text" -#~ msgid "- Stay flexible by syncing your setup and loading it anywhere" -#~ msgstr "- Mantieni la flessibilità sincronizzando la configurazione e caricandola ovunque" - -#~ msgctxt "@text" -#~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "- Aumenta l'efficienza grazie a un flusso di lavoro remoto sulle stampanti Ultimaker" - -#~ msgctxt "@text" -#~ msgid "" -#~ "Please follow these steps to set up\n" -#~ "Ultimaker Cura. This will only take a few moments." -#~ msgstr "" -#~ "Segui questa procedura per configurare\n" -#~ "Ultimaker Cura. Questa operazione richiederà solo pochi istanti." - -#~ msgctxt "@label" -#~ msgid "What's new in Ultimaker Cura" -#~ msgstr "Scopri le novità in Ultimaker Cura" - -#~ msgctxt "@label ({} is object name)" -#~ msgid "Are you sure you wish to remove {}? This cannot be undone!" -#~ msgstr "Desideri rimuovere {}? Questa operazione non può essere annullata!" - -#~ msgctxt "@info:status" -#~ msgid "The selected model was too small to load." -#~ msgstr "Il modello selezionato è troppo piccolo per il caricamento." - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profile {0}" -#~ msgstr "Profilo importato correttamente {0}" - -#~ msgctxt "@info:status" -#~ msgid "Could not find a quality type {0} for the current configuration." -#~ msgstr "Impossibile trovare un tipo qualità {0} per la configurazione corrente." - -#~ msgctxt "info:status" -#~ msgid "Adding printer {} ({}) from your account" -#~ msgstr "Aggiunta della stampante {} ({}) dall'account dell'utente" - -#~ msgctxt "info:hidden list items" -#~ msgid "
  • ... and {} others
  • " -#~ msgstr "
  • ... e {} altre
  • " - -#~ msgctxt "info:status" -#~ msgid "Printers added from Digital Factory:
      {}
    " -#~ msgstr "Stampanti aggiunte da Digital Factory:
      {}
    " - -#~ msgctxt "info:status" -#~ msgid "
      {}
    To establish a connection, please visit the Ultimaker Digital Factory." -#~ msgstr "
      {}
    Per stabilire una connessione, visitare Ultimaker Digital Factory." - -#~ msgctxt "@label ({} is printer name)" -#~ msgid "{} will be removed until the next account sync.
    To remove {} permanently, visit Ultimaker Digital Factory.

    Are you sure you want to remove {} temporarily?" -#~ msgstr "{} saranno rimosse fino alla successiva sincronizzazione account.
    Per rimuovere definitivamente {}, visitare Ultimaker Digital Factory.

    Rimuovere temporaneamente {}?" - -#~ msgctxt "@label" -#~ msgid "" -#~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n" -#~ "Are you sure you want to continue?" -#~ msgstr "" -#~ "Si sta per rimuovere {} stampanti da Cura. Questa azione non può essere annullata. \n" -#~ "Continuare?" - -#~ msgctxt "@label" -#~ msgid "" -#~ "You are about to remove all printers from Cura. This action cannot be undone. \n" -#~ "Are you sure you want to continue?" -#~ msgstr "" -#~ "Si sta per rimuovere tutte le stampanti da Cura. Questa azione non può essere annullata. \n" -#~ "Continuare?" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update" -#~ msgstr "Aggiorna" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Create new" -#~ msgstr "Crea nuovo" - -#~ msgctxt "@label" -#~ msgid "Shared Heater" -#~ msgstr "Riscaldatore condiviso" - -#~ msgctxt "@info" -#~ msgid "The webcam is not available because you are monitoring a cloud printer." -#~ msgstr "La webcam non è disponibile perché si sta controllando una stampante cloud." - -#~ msgctxt "@button" -#~ msgid "Ultimaker Digital Factory" -#~ msgstr "Ultimaker Digital Factory" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can Discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "Alcune impostazioni di profilo sono state personalizzate.\n" -#~ "Mantenere queste impostazioni modificate dopo il cambio dei profili?\n" -#~ "In alternativa, è possibile eliminare le modifiche per caricare i valori predefiniti da '%1'." - -#~ msgctxt "@label" -#~ msgid "Overrides %1 setting." -#~ msgid_plural "Overrides %1 settings." -#~ msgstr[0] "Ignora %1 impostazione." -#~ msgstr[1] "Ignora %1 impostazioni." - -#~ msgctxt "@text" -#~ msgid "Please give your printer a name" -#~ msgstr "Assegna un nome alla stampante" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." -#~ msgstr "Sono disponibili nuove funzioni per la {machine_name}! Si consiglia di aggiornare il firmware sulla stampante." - -#~ msgctxt "@action:button" -#~ msgid "Print via Cloud" -#~ msgstr "Stampa tramite Cloud" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print via Cloud" -#~ msgstr "Stampa tramite Cloud" - -#~ msgctxt "@info:status" -#~ msgid "Connected via Cloud" -#~ msgstr "Collegato tramite Cloud" - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Connettiti a Ultimaker Cloud" - -#~ msgctxt "@label" -#~ msgid "You need to login first before you can rate" -#~ msgstr "Prima della valutazione è necessario effettuare l’accesso" - -#~ msgctxt "@label" -#~ msgid "You need to install the package before you can rate" -#~ msgstr "Prima della valutazione è necessario installare il pacchetto" - -#~ msgctxt "@label" -#~ msgid "ratings" -#~ msgstr "valori" - -#~ msgctxt "@label" -#~ msgid "Featured" -#~ msgstr "In primo piano" - -#~ msgctxt "@label" -#~ msgid "Your rating" -#~ msgstr "I tuoi valori" - -#~ msgctxt "@label" -#~ msgid "Author" -#~ msgstr "Autore" - -#~ msgctxt "@description" -#~ msgid "Get plugins and materials verified by Ultimaker" -#~ msgstr "Ottieni plugin e materiali verificati da Ultimaker" - -#~ msgctxt "@label The argument is a username." -#~ msgid "Hi %1" -#~ msgstr "Alto %1" - -#~ msgctxt "@button" -#~ msgid "Ultimaker account" -#~ msgstr "Account Ultimaker" - -#~ msgctxt "@button" -#~ msgid "Sign out" -#~ msgstr "Esci" - -#~ msgctxt "@label" -#~ msgid "Support library for analysis of complex networks" -#~ msgstr "Libreria di supporto per l’analisi di reti complesse" - -#~ msgctxt "@Label" -#~ msgid "Python HTTP library" -#~ msgstr "Libreria Python HTTP" - -#~ msgctxt "@text:window" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to keep or discard those settings?" -#~ msgstr "" -#~ "Sono state personalizzate alcune impostazioni del profilo.\n" -#~ "Mantenere o eliminare tali impostazioni?" - -#~ msgctxt "@title:column" -#~ msgid "Default" -#~ msgstr "Valore predefinito" - -#~ msgctxt "@title:column" -#~ msgid "Customized" -#~ msgstr "Valore personalizzato" - -#~ msgctxt "@action:button" -#~ msgid "Discard" -#~ msgstr "Elimina" - -#~ msgctxt "@action:button" -#~ msgid "Keep" -#~ msgstr "Mantieni" - -#~ msgctxt "@action:button" -#~ msgid "Create New Profile" -#~ msgstr "Crea nuovo profilo" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "&Save..." -#~ msgstr "&Salva..." - -#~ msgctxt "@text" -#~ msgid "Place enter your printer's IP address." -#~ msgstr "Inserisci l'indirizzo IP della stampante." - -#~ msgctxt "@button" -#~ msgid "Create an account" -#~ msgstr "Crea un account" - -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Do you want to sync material and software packages with your account?" -#~ msgstr "" -#~ "\n" -#~ "Desiderate sincronizzare pacchetti materiale e software con il vostro account?" - -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Syncing..." -#~ msgstr "" -#~ "\n" -#~ "Sincronizzazione in corso..." - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder." -#~ msgstr "Nulla da sezionare in quanto nessuno dei modelli corrisponde al volume di stampa o è assegnato a un estrusore disabilitato. Ridimensionare o ruotare i modelli secondo necessità o abilitare un estrusore." - -#~ msgctxt "@info:backup_status" -#~ msgid "There was an error listing your backups." -#~ msgstr "Si è verificato un errore nell’elenco dei backup." - -#~ msgctxt "@title:groupbox" -#~ msgid "User description (Note: Developers may not speak your language, please use English if possible)" -#~ msgstr "Descrizione utente (Nota: gli sviluppatori potrebbero non parlare la lingua dell'utente. Se possibile, usare l'inglese)" - -#~ msgctxt "@title:window" -#~ msgid "Closing Cura" -#~ msgstr "Chiusura di Cura" - -#~ msgctxt "@label" -#~ msgid "Are you sure you want to exit Cura?" -#~ msgstr "Sei sicuro di voler uscire da Cura?" - -#~ msgctxt "@label" -#~ msgid "Language:" -#~ msgstr "Lingua:" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud" - -#~ msgctxt "@text" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "Flusso di stampa 3D di ultima generazione" - -#~ msgctxt "@text" -#~ msgid "- Send print jobs to Ultimaker printers outside your local network" -#~ msgstr "- Invia i processi di stampa alle stampanti Ultimaker esterne alla rete locale" - -#~ msgctxt "@text" -#~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere" -#~ msgstr "- Memorizza le impostazioni Ultimaker Cura nel cloud per usarle ovunque" - -#~ msgctxt "@text" -#~ msgid "- Get exclusive access to print profiles from leading brands" -#~ msgstr "- Ottieni l'accesso esclusivo ai profili di stampa dai principali marchi" - -#~ msgctxt "@label" -#~ msgid "The value is resolved from per-extruder values " -#~ msgstr "Questo valore è risolto da valori per estrusore " - -#~ msgctxt "@label" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "Flusso di stampa 3D di ultima generazione" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to print profiles from leading brands" -#~ msgstr "" -#~ "- Invia i processi di stampa alle stampanti Ultimaker esterne alla rete locale\n" -#~ "- Invia le impostazioni Ultimaker Cura nel cloud per usarle ovunque\n" -#~ "- Ottieni l’accesso esclusivo ai profili di stampa dai principali marchi" - -#~ msgctxt "@title:window" -#~ msgid "About " -#~ msgstr "Informazioni su " - -#~ msgctxt "@info:button" -#~ msgid "Quit Cura" -#~ msgstr "Esci da Cura" - -#~ msgctxt "@action:checkbox" -#~ msgid "Infill only" -#~ msgstr "Solo riempimento" - -#~ msgctxt "@info:tooltip" -#~ msgid "Change active post-processing scripts" -#~ msgstr "Modifica script di post-elaborazione attivi" - -#~ msgctxt "@label:listbox" -#~ msgid "Feedrate" -#~ msgstr "Velocità" - -#~ msgctxt "name" -#~ msgid "Machine Settings action" -#~ msgstr "Azione Impostazioni macchina" - -#~ msgctxt "@info:title" -#~ msgid "New cloud printers found" -#~ msgstr "Nuove stampanti in cloud rilevate" - -#~ msgctxt "@info:message" -#~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers." -#~ msgstr "Sono state trovate nuove stampanti collegate al tuo account. Puoi vederle nell'elenco delle stampanti rilevate." - -#~ msgctxt "@info:status" -#~ msgid "Cura does not accurately display layers when Wire Printing is enabled" -#~ msgstr "Cura non visualizza in modo accurato gli strati se la funzione Wire Printing è abilitata" - -#~ msgctxt "@label" -#~ msgid "Pre-sliced file {0}" -#~ msgstr "File pre-sezionato {0}" - -#~ msgctxt "@label" -#~ msgid "" -#~ "This plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ "Questo plugin contiene una licenza.\n" -#~ "È necessario accettare questa licenza per poter installare il plugin.\n" -#~ "Accetti i termini sotto riportati?" - -#~ msgctxt "@action:button" -#~ msgid "Accept" -#~ msgstr "Accetto" - -#~ msgctxt "@action:button" -#~ msgid "Decline" -#~ msgstr "Non accetto" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show All Settings" -#~ msgstr "Mostra tutte le impostazioni" - -#~ msgctxt "@title:window" -#~ msgid "Ultimaker Cura" -#~ msgstr "Ultimaker Cura" - -#~ msgctxt "@title:window" -#~ msgid "About Cura" -#~ msgstr "Informazioni su Cura" - -#~ msgctxt "@item:inmenu" -#~ msgid "Flatten active settings" -#~ msgstr "Impostazioni attive profilo appiattito" - -#~ msgctxt "@info:status" -#~ msgid "Profile has been flattened & activated." -#~ msgstr "Il profilo è stato appiattito e attivato." - -#~ msgctxt "X3g Writer Plugin Description" -#~ msgid "Writes X3g to files" -#~ msgstr "Scrive X3g sui file" - -#~ msgctxt "X3g Writer File Description" -#~ msgid "X3g File" -#~ msgstr "File X3g" - -#~ msgctxt "X3G Writer File Description" -#~ msgid "X3G File" -#~ msgstr "File X3G" - -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "Assistente profilo" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "Assistente profilo" - -#~ msgctxt "@action:button" -#~ msgid "Retry" -#~ msgstr "Riprova" - -#~ msgctxt "@label:table_header" -#~ msgid "Print Core" -#~ msgstr "Print Core" - -#~ msgctxt "@label" -#~ msgid "Don't support overlap with other models" -#~ msgstr "Non supporta sovrapposizione con altri modelli" - -#~ msgctxt "@label" -#~ msgid "Modify settings for overlap with other models" -#~ msgstr "Modifica impostazioni per sovrapposizione con altri modelli" - -#~ msgctxt "@label" -#~ msgid "Modify settings for infill of other models" -#~ msgstr "Modifica impostazioni per riempimento di altri modelli" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update existing" -#~ msgstr "Aggiorna esistente" - -#~ msgctxt "@label" -#~ msgid "Not supported" -#~ msgstr "Non supportato" - -#~ msgctxt "@action:button" -#~ msgid "Previous" -#~ msgstr "Precedente" - -#~ msgctxt "@label" -#~ msgid "Tip" -#~ msgstr "Suggerimento" - -#~ msgctxt "@label" -#~ msgid "Print experiment" -#~ msgstr "Prova di stampa" - -#~ msgctxt "@label" -#~ msgid "Checklist" -#~ msgstr "Lista di controllo" - -#~ msgctxt "@label" -#~ msgid "Please select any upgrades made to this Ultimaker 2." -#~ msgstr "Seleziona qualsiasi aggiornamento realizzato per questa Ultimaker 2." - -#~ msgctxt "@label" -#~ msgid "Olsson Block" -#~ msgstr "Blocco Olsson" - -#~ msgctxt "@window:text" -#~ msgid "Camera rendering: " -#~ msgstr "Rendering fotocamera: " - -#~ msgctxt "@info:tooltip" -#~ msgid "Use multi build plate functionality" -#~ msgstr "Utilizzare la funzionalità piano di stampa multiplo" - -#~ msgctxt "@option:check" -#~ msgid "Use multi build plate functionality (restart required)" -#~ msgstr "Utilizzare la funzionalità piano di stampa multiplo (necessario riavvio)" - -#~ msgctxt "@label" -#~ msgid "Default profiles" -#~ msgstr "Profili predefiniti" - -#~ msgctxt "@label:textbox" -#~ msgid "search settings" -#~ msgstr "impostazioni ricerca" - -#~ msgctxt "@label" -#~ msgid "Layer Height" -#~ msgstr "Altezza dello strato" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile." -#~ msgstr "Questo profilo di qualità non è disponibile per la configurazione attuale del materiale e degli ugelli. Modificare tali configurazioni per abilitare il profilo di qualità desiderato." - -#~ msgctxt "@tooltip" -#~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" -#~ msgstr "Un profilo personalizzato è attualmente attivo. Per attivare il cursore qualità, selezionare un profilo di qualità predefinito nella scheda Personalizza" - -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "&Piano di stampa" - -#~ msgctxt "@title:settings" -#~ msgid "&Profile" -#~ msgstr "&Profilo" - -#~ msgctxt "@action:label" -#~ msgid "Build plate" -#~ msgstr "Piano di stampa" - -#~ msgctxt "description" -#~ msgid "Dump the contents of all settings to a HTML file." -#~ msgstr "Scarica contenuto di tutte le impostazioni in un file HTML." - -#~ msgctxt "name" -#~ msgid "God Mode" -#~ msgstr "Modalità God" - -#~ msgctxt "description" -#~ msgid "Create a flattened quality changes profile." -#~ msgstr "Crea un profilo appiattito di modifiche di qualità." - -#~ msgctxt "name" -#~ msgid "Profile Flattener" -#~ msgstr "Appiattitore di profilo" - -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "Consente ai produttori di materiali di creare nuovi profili materiale e di qualità utilizzando una UI drop-in." - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "Assistente profilo di stampa" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network." -#~ msgstr "Collegato alla rete." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. Please approve the access request on the printer." -#~ msgstr "Collegato alla rete. Si prega di approvare la richiesta di accesso sulla stampante." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. No access to control the printer." -#~ msgstr "Collegato alla rete. Nessun accesso per controllare la stampante." - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer requested. Please approve the request on the printer" -#~ msgstr "Richiesto accesso alla stampante. Approvare la richiesta sulla stampante" - -#~ msgctxt "@info:title" -#~ msgid "Authentication status" -#~ msgstr "Stato di autenticazione" - -#~ msgctxt "@info:title" -#~ msgid "Authentication Status" -#~ msgstr "Stato di autenticazione" - -#~ msgctxt "@info:tooltip" -#~ msgid "Re-send the access request" -#~ msgstr "Invia nuovamente la richiesta di accesso" - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer accepted" -#~ msgstr "Accesso alla stampante accettato" - -#~ msgctxt "@info:status" -#~ msgid "No access to print with this printer. Unable to send print job." -#~ msgstr "Nessun accesso per stampare con questa stampante. Impossibile inviare il processo di stampa." - -#~ msgctxt "@action:button" -#~ msgid "Request Access" -#~ msgstr "Richiesta di accesso" - -#~ msgctxt "@info:tooltip" -#~ msgid "Send access request to the printer" -#~ msgstr "Invia la richiesta di accesso alla stampante" - -#~ msgctxt "@label" -#~ msgid "Unable to start a new print job." -#~ msgstr "Impossibile avviare un nuovo processo di stampa." - -#~ msgctxt "@label" -#~ msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." -#~ msgstr "È presente un problema di configurazione della stampante che rende impossibile l’avvio della stampa. Risolvere il problema prima di continuare." - -#~ msgctxt "@window:title" -#~ msgid "Mismatched configuration" -#~ msgstr "Mancata corrispondenza della configurazione" - -#~ msgctxt "@label" -#~ msgid "Are you sure you wish to print with the selected configuration?" -#~ msgstr "Sei sicuro di voler stampare con la configurazione selezionata?" - -#~ msgctxt "@label" -#~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "Le configurazioni o la calibrazione della stampante e di Cura non corrispondono. Per ottenere i migliori risultati, sezionare sempre per i PrintCore e i materiali inseriti nella stampante utilizzata." - -#~ msgctxt "@info:status" -#~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." -#~ msgstr "Invio nuovi processi (temporaneamente) bloccato, invio in corso precedente processo di stampa." - -#~ msgctxt "@info:status" -#~ msgid "Sending data to printer" -#~ msgstr "Invio dati alla stampante in corso" - -#~ msgctxt "@info:title" -#~ msgid "Sending Data" -#~ msgstr "Invio dati" - -#~ msgctxt "@info:status" -#~ msgid "No Printcore loaded in slot {slot_number}" -#~ msgstr "Nessun PrintCore caricato nello slot {slot_number}" - -#~ msgctxt "@info:status" -#~ msgid "No material loaded in slot {slot_number}" -#~ msgstr "Nessun materiale caricato nello slot {slot_number}" - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" -#~ msgstr "PrintCore diverso (Cura: {cura_printcore_name}, Stampante: {remote_printcore_name}) selezionata per estrusore {extruder_id}" - -#~ msgctxt "@label" -#~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Materiale diverso (Cura: {0}, Stampante: {1}) selezionato per l’estrusore {2}" - -#~ msgctxt "@window:title" -#~ msgid "Sync with your printer" -#~ msgstr "Sincronizzazione con la stampante" - -#~ msgctxt "@label" -#~ msgid "Would you like to use your current printer configuration in Cura?" -#~ msgstr "Desideri utilizzare la configurazione corrente della tua stampante in Cura?" - -#~ msgctxt "@label" -#~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "I PrintCore e/o i materiali sulla stampante differiscono da quelli contenuti nel tuo attuale progetto. Per ottenere i risultati migliori, sezionare sempre per i PrintCore e i materiali inseriti nella stampante utilizzata." - -#~ msgctxt "@action:button" -#~ msgid "View in Monitor" -#~ msgstr "Visualizzazione in Controlla" - -#~ msgctxt "@info:status" -#~ msgid "Printer '{printer_name}' has finished printing '{job_name}'." -#~ msgstr "La stampante '{printer_name}' ha finito di stampare '{job_name}'." - -#~ msgctxt "@info:status" -#~ msgid "The print job '{job_name}' was finished." -#~ msgstr "Il processo di stampa '{job_name}' è terminato." - -#~ msgctxt "@info:status" -#~ msgid "Print finished" -#~ msgstr "Stampa finita" - -#~ msgctxt "@label:material" -#~ msgid "Empty" -#~ msgstr "Vuoto" - -#~ msgctxt "@label:material" -#~ msgid "Unknown" -#~ msgstr "Sconosciuto" - -#~ msgctxt "@info:title" -#~ msgid "Cloud error" -#~ msgstr "Errore cloud" - -#~ msgctxt "@info:status" -#~ msgid "Could not export print job." -#~ msgstr "Impossibile esportare il processo di stampa." - -#~ msgctxt "@info:description" -#~ msgid "There was an error connecting to the cloud." -#~ msgstr "Si è verificato un errore di collegamento al cloud." - -#~ msgctxt "@info:status" -#~ msgid "Uploading via Ultimaker Cloud" -#~ msgstr "Caricamento tramite Ultimaker Cloud" - -#~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Collegato a Ultimaker Cloud" - -#~ msgctxt "@action" -#~ msgid "Don't ask me again for this printer." -#~ msgstr "Non chiedere nuovamente per questa stampante." - -#~ msgctxt "@info:status" -#~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Ora è possibile inviare e controllare i processi di stampa ovunque con l’account Ultimaker." - -#~ msgctxt "@info:status" -#~ msgid "Connected!" -#~ msgstr "Collegato!" - -#~ msgctxt "@action" -#~ msgid "Review your connection" -#~ msgstr "Controlla collegamento" - -#~ msgctxt "@info:status Don't translate the XML tags !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "La macchina definita nel profilo {0} ({1}) non corrisponde alla macchina corrente ({2}), impossibile importarla." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}:" -#~ msgstr "Impossibile importare il profilo da {0}:" - -#~ msgctxt "@window:title" -#~ msgid "Existing Connection" -#~ msgstr "Collegamento esistente" - -#~ msgctxt "@message:text" -#~ msgid "This printer/group is already added to Cura. Please select another printer/group." -#~ msgstr "Stampante/gruppo già aggiunto a Cura. Selezionare un’altra stampante o un altro gruppo." - -#~ msgctxt "@label" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "Inserire l’indirizzo IP o l’hostname della stampante sulla rete." - -#~ msgctxt "@info:tooltip" -#~ msgid "Connect to a printer" -#~ msgstr "Collega a una stampante" - -#~ msgctxt "@title" -#~ msgid "Cura Settings Guide" -#~ msgstr "Guida alle impostazioni Cura" - -#~ msgctxt "@info:tooltip" -#~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective." -#~ msgstr "Nella prospettiva ortogonale lo zoom verso la direzione del mouse non è supportato." - -#~ msgid "Orthogonal" -#~ msgstr "Ortogonale" - -#~ msgctxt "description" -#~ msgid "Manages network connections to Ultimaker 3 printers." -#~ msgstr "Gestisce le connessioni di rete alle stampanti Ultimaker 3." - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection" -#~ msgstr "Connessione di rete UM3" - -#~ msgctxt "description" -#~ msgid "Provides extra information and explanations about settings in Cura, with images and animations." -#~ msgstr "Fornisce informazioni e spiegazioni aggiuntive sulle impostazioni in Cura, con immagini e animazioni." - -#~ msgctxt "name" -#~ msgid "Settings Guide" -#~ msgstr "Guida alle impostazioni" - -#~ msgctxt "@item:inmenu" -#~ msgid "Cura Settings Guide" -#~ msgstr "Guida alle impostazioni Cura" - -#~ msgctxt "@info:generic" -#~ msgid "Settings have been changed to match the current availability of extruders: [%s]" -#~ msgstr "Le impostazioni sono state modificate in base all’attuale disponibilità di estrusori: [%s]" - -#~ msgctxt "@title:groupbox" -#~ msgid "User description" -#~ msgstr "Descrizione utente" - -#~ msgctxt "@info" -#~ msgid "These options are not available because you are monitoring a cloud printer." -#~ msgstr "Queste opzioni non sono disponibili perché si sta controllando una stampante cloud." - -#~ msgctxt "@label link to connect manager" -#~ msgid "Go to Cura Connect" -#~ msgstr "Vai a Cura Connect" - -#~ msgctxt "@info" -#~ msgid "All jobs are printed." -#~ msgstr "Tutti i processi sono stampati." - -#~ msgctxt "@label link to connect manager" -#~ msgid "View print history" -#~ msgstr "Visualizza cronologia di stampa" - -#~ 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.\n" -#~ "\n" -#~ "Select your printer from the list below:" -#~ msgstr "" -#~ "Per stampare direttamente sulla stampante in rete, verificare che la stampante desiderata sia collegata alla rete mediante un cavo di rete o mediante collegamento alla rete WIFI. Se si collega Cura alla stampante, è comunque possibile utilizzare una chiavetta USB per trasferire i file codice G alla stampante.\n" -#~ "\n" -#~ "Selezionare la stampante dall’elenco seguente:" - -#~ 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." -#~ msgstr "" -#~ "Accertarsi che la stampante sia collegata:\n" -#~ "- Controllare se la stampante è accesa.\n" -#~ "- Controllare se la stampante è collegata alla rete." - -#~ msgctxt "@option:check" -#~ msgid "See only current build plate" -#~ msgstr "Vedi solo il piano di stampa corrente" - -#~ msgctxt "@action:button" -#~ msgid "Arrange to all build plates" -#~ msgstr "Sistema su tutti i piani di stampa" - -#~ msgctxt "@action:button" -#~ msgid "Arrange current build plate" -#~ msgstr "Sistema il piano di stampa corrente" - -#~ msgctxt "description" -#~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)." -#~ msgstr "Consente di salvare il sezionamento risultante come un file X3G, per supportare le stampanti che leggono questo formato (Malyan, Makerbot ed altre stampanti basate su firmware Sailfish)." - -#~ msgctxt "name" -#~ msgid "X3GWriter" -#~ msgstr "X3GWriter" - -#~ msgctxt "description" -#~ msgid "Reads SVG files as toolpaths, for debugging printer movements." -#~ msgstr "Legge i file SVG come toolpath (percorsi utensile), per eseguire il debug dei movimenti della stampante." - -#~ msgctxt "name" -#~ msgid "SVG Toolpath Reader" -#~ msgstr "Lettore di toolpath (percorso utensile) SVG" - -#~ msgctxt "@item:inmenu" -#~ msgid "Changelog" -#~ msgstr "Registro modifiche" - -#~ msgctxt "@item:inmenu" -#~ msgid "Show Changelog" -#~ msgstr "Visualizza registro modifiche" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to remote cluster" -#~ msgstr "Invio dati al cluster remoto" - -#~ msgctxt "@info:status" -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Collegato a Ultimaker Cloud" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymized usage statistics." -#~ msgstr "Cura raccoglie statistiche di utilizzo in forma anonima." - -#~ msgctxt "@info:title" -#~ msgid "Collecting Data" -#~ msgstr "Acquisizione dati" - -#~ msgctxt "@action:button" -#~ msgid "More info" -#~ msgstr "Per saperne di più" - -#~ msgctxt "@action:tooltip" -#~ msgid "See more information on what data Cura sends." -#~ msgstr "Vedere ulteriori informazioni sui dati inviati da Cura." - -#~ msgctxt "@action:button" -#~ msgid "Allow" -#~ msgstr "Consenti" - -#~ msgctxt "@action:tooltip" -#~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." -#~ msgstr "Consente a Cura di inviare in forma anonima statistiche d’uso, riguardanti alcune delle preferenze e impostazioni, la versione cura e una serie di modelli in sezionamento, per aiutare a dare priorità a miglioramenti futuri in Cura." - -#~ msgctxt "@item:inmenu" -#~ msgid "Evaluation" -#~ msgstr "Valutazione" - -#~ msgctxt "@info:title" -#~ msgid "Network enabled printers" -#~ msgstr "Stampanti abilitate per la rete" - -#~ msgctxt "@info:title" -#~ msgid "Local printers" -#~ msgstr "Stampanti locali" - -#~ msgctxt "@info:backup_failed" -#~ msgid "Tried to restore a Cura backup that does not match your current version." -#~ msgstr "Tentativo di ripristinare un backup di Cura non corrispondente alla versione corrente." - -#~ msgctxt "@title" -#~ msgid "Machine Settings" -#~ msgstr "Impostazioni macchina" - -#~ msgctxt "@label" -#~ msgid "Printer Settings" -#~ msgstr "Impostazioni della stampante" - -#~ msgctxt "@option:check" -#~ msgid "Origin at center" -#~ msgstr "Origine al centro" - -#~ msgctxt "@option:check" -#~ msgid "Heated bed" -#~ msgstr "Piano riscaldato" - -#~ msgctxt "@label" -#~ msgid "Printhead Settings" -#~ msgstr "Impostazioni della testina di stampa" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Distanza tra il lato sinistro della testina di stampa e il centro dell'ugello. Utilizzata per evitare collisioni tra le stampe precedenti e la testina di stampa durante la stampa \"Uno alla volta\"." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Distanza tra il lato anteriore della testina di stampa e il centro dell'ugello. Utilizzata per evitare collisioni tra le stampe precedenti e la testina di stampa durante la stampa \"Uno alla volta\"." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Distanza tra il lato destro della testina di stampa e il centro dell'ugello. Utilizzata per evitare collisioni tra le stampe precedenti e la testina di stampa durante la stampa \"Uno alla volta\"." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Distanza tra il lato posteriore della testina di stampa e il centro dell'ugello. Utilizzata per evitare collisioni tra le stampe precedenti e la testina di stampa durante la stampa \"Uno alla volta\"." - -#~ msgctxt "@label" -#~ msgid "Gantry height" -#~ msgstr "Altezza gantry" - -#~ msgctxt "@tooltip" -#~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." -#~ msgstr "La differenza di altezza tra la punta dell’ugello e il sistema gantry (assi X e Y). Utilizzata per evitare collisioni tra le stampe precedenti e il gantry durante la stampa \"Uno alla volta\"." - -#~ msgctxt "@label" -#~ msgid "Start G-code" -#~ msgstr "Codice G avvio" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very start." -#~ msgstr "Comandi codice G da eseguire all’avvio." - -#~ msgctxt "@label" -#~ msgid "End G-code" -#~ msgstr "Codice G fine" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very end." -#~ msgstr "Comandi codice G da eseguire alla fine." - -#~ msgctxt "@label" -#~ msgid "Nozzle Settings" -#~ msgstr "Impostazioni ugello" - -#~ msgctxt "@tooltip" -#~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." -#~ msgstr "Diametro nominale del filamento supportato dalla stampante. Il diametro esatto verrà sovrapposto dal materiale e/o dal profilo." - -#~ msgctxt "@label" -#~ msgid "Extruder Start G-code" -#~ msgstr "Codice G avvio estrusore" - -#~ msgctxt "@label" -#~ msgid "Extruder End G-code" -#~ msgstr "Codice G fine estrusore" - -#~ msgctxt "@label" -#~ msgid "Changelog" -#~ msgstr "Registro modifiche" - -#~ msgctxt "@title:window" -#~ msgid "User Agreement" -#~ msgstr "Contratto di licenza" - -#~ msgctxt "@alabel" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "Inserire l’indirizzo IP o l’hostname della stampante sulla rete." - -#~ msgctxt "@info" -#~ msgid "Please select a network connected printer to monitor." -#~ msgstr "Selezionare una stampante collegata alla rete per controllare." - -#~ msgctxt "@info" -#~ msgid "Please connect your Ultimaker printer to your local network." -#~ msgstr "Collegare la stampante Ultimaker alla rete locale." - -#~ msgctxt "@text:window" -#~ msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent." -#~ msgstr "Cura invia dati anonimi ad Ultimaker per migliorare la qualità di stampa e l'esperienza dell'utente. Di seguito è riportato un esempio dei dati inviati." - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send this data" -#~ msgstr "Non desidero inviare questi dati" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending this data to Ultimaker and help us improve Cura" -#~ msgstr "Consenti l’invio di questi dati ad Ultimaker e aiutaci ad ottimizzare Cura" - -#~ msgctxt "@label" -#~ msgid "No print selected" -#~ msgstr "Nessuna stampante selezionata" - -#~ msgctxt "@info:tooltip" -#~ 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 "Per impostazione predefinita, i pixel bianchi rappresentano i punti alti sulla griglia, mentre i pixel neri rappresentano i punti bassi sulla griglia. Modificare questa opzione per invertire la situazione in modo tale che i pixel neri rappresentino i punti alti sulla griglia e i pixel bianchi rappresentino i punti bassi." - -#~ msgctxt "@title" -#~ msgid "Select Printer Upgrades" -#~ msgstr "Seleziona gli aggiornamenti della stampante" - -#~ msgctxt "@label" -#~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "Seleziona l’estrusore da utilizzare per la stampa di strutture di supporto. Ciò consentirà di costruire strutture di supporto sotto il modello per evitare cedimenti del modello o di stampare a mezz'aria." - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "Questo profilo di qualità non è disponibile per il materiale e la configurazione ugello corrente. Modificarli per abilitare questo profilo di qualità" - -#~ msgctxt "@label shown when we load a Gcode file" -#~ msgid "Print setup disabled. G code file can not be modified." -#~ msgstr "Impostazione di stampa disabilitata. Impossibile modificare il file codice G." - -#~ msgctxt "@label" -#~ msgid "See the material compatibility chart" -#~ msgstr "Vedere il grafico di compatibilità dei materiali" - -#~ msgctxt "@label" -#~ msgid "View types" -#~ msgstr "Visualizza tipi" - -#~ msgctxt "@label" -#~ msgid "Hi " -#~ msgstr "Ciao " - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to material profiles from leading brands" -#~ msgstr "" -#~ "- Invia i processi di stampa alle stampanti Ultimaker esterne alla rete locale\n" -#~ "- Invia le impostazioni Ultimaker Cura nel cloud per usarle ovunque\n" -#~ "- Ottieni l’accesso esclusivo ai profili materiale da marchi leader" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Unable to Slice" -#~ msgstr "Sezionamento impossibile" - -#~ msgctxt "@label" -#~ msgid "Time specification" -#~ msgstr "Indicazioni di tempo" - -#~ msgctxt "@label" -#~ msgid "Material specification" -#~ msgstr "Specifiche materiale" - -#~ msgctxt "@title:tab" -#~ msgid "Add a printer to Cura" -#~ msgstr "Aggiungi una stampante a Cura" - -#~ msgctxt "@title:tab" -#~ msgid "" -#~ "Select the printer you want to use from the list below.\n" -#~ "\n" -#~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog." -#~ msgstr "" -#~ "Seleziona la stampante da usare dell’elenco seguente.\n" -#~ "\n" -#~ "Se la stampante non è nell’elenco, usare la “Stampante FFF personalizzata\" dalla categoria “Personalizzata\" e regolare le impostazioni in modo che corrispondano alla stampante nella finestra di dialogo successiva." - -#~ msgctxt "@label" -#~ msgid "Printer Name" -#~ msgstr "Nome stampante" - -#~ msgctxt "@action:button" -#~ msgid "Add Printer" -#~ msgstr "Aggiungi stampante" - -#~ msgid "Modify G-Code" -#~ msgstr "Modifica G-code" - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." -#~ msgstr "Nulla da sezionare in quanto nessuno dei modelli corrisponde al volume di stampa. Ridimensionare o ruotare i modelli secondo necessità." - -#~ msgctxt "@info:status" -#~ msgid "The selected material is incompatible with the selected machine or configuration." -#~ msgstr "Il materiale selezionato è incompatibile con la macchina o la configurazione selezionata." - -#~ msgctxt "@info:title" -#~ msgid "Incompatible Material" -#~ msgstr "Materiale incompatibile" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "Impossibile importare il profilo da {0}: {1}" - -#~ msgctxt "@title" -#~ msgid "Toolbox" -#~ msgstr "Casella degli strumenti" - -#~ msgctxt "@label" -#~ msgid "Not available" -#~ msgstr "Non disponibile" - -#~ msgctxt "@label" -#~ msgid "Unreachable" -#~ msgstr "Non raggiungibile" - -#~ msgctxt "@label" -#~ msgid "Available" -#~ msgstr "Disponibile" - -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "Preparazione in corso" - -#~ msgctxt "@label:status" -#~ msgid "Pausing" -#~ msgstr "Messa in pausa" - -#~ msgctxt "@label:status" -#~ msgid "Resuming" -#~ msgstr "Ripresa" - -#~ msgctxt "@label" -#~ msgid "Waiting for: Unavailable printer" -#~ msgstr "In attesa: stampante non disponibile" - -#~ msgctxt "@label" -#~ msgid "Waiting for: First available" -#~ msgstr "In attesa della prima disponibile" - -#~ msgctxt "@label" -#~ msgid "Waiting for: " -#~ msgstr "In attesa: " - -#~ msgctxt "@label" -#~ msgid "Configuration change" -#~ msgstr "Modifica configurazione" - -#~ msgctxt "@label" -#~ msgid "The assigned printer, %1, requires the following configuration change(s):" -#~ msgstr "La stampante assegnata, %1, richiede le seguenti modifiche di configurazione:" - -#~ msgctxt "@label" -#~ msgid "Override" -#~ msgstr "Override" - -#~ msgctxt "@label" -#~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?" -#~ msgstr "L’avvio di un processo di stampa con una configurazione non compatibile potrebbe danneggiare la stampante 3D. Sei sicuro di voler annullare la configurazione e stampare %1?" - -#~ msgctxt "@window:title" -#~ msgid "Override configuration configuration and start print" -#~ msgstr "Annullare la configurazione e avviare la stampa" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage queue" -#~ msgstr "Gestione coda di stampa" - -#~ msgctxt "@label" -#~ msgid "Printing" -#~ msgstr "Stampa in corso" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage printers" -#~ msgstr "Gestione stampanti" - -#~ msgctxt "@action:button" -#~ msgid "Activate Configuration" -#~ msgstr "Attiva la configurazione" - -#~ msgctxt "@info:tooltip" -#~ msgid "Load the configuration of the printer into Cura" -#~ msgstr "Carica la configurazione della stampante in Cura" - -#~ msgctxt "@label" -#~ msgid "Show Travels" -#~ msgstr "Mostra spostamenti" - -#~ msgctxt "@label" -#~ msgid "Show Helpers" -#~ msgstr "Mostra helper" - -#~ msgctxt "@label" -#~ msgid "Show Shell" -#~ msgstr "Mostra guscio" - -#~ msgctxt "@label" -#~ msgid "Show Infill" -#~ msgstr "Mostra riempimento" - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send these data" -#~ msgstr "Non voglio inviare questi dati" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending these data to Ultimaker and help us improve Cura" -#~ msgstr "Il consenso all'invio di questi dati ad Ultimaker ci aiuta ad ottimizzare Cura" - -#~ msgctxt "@label" -#~ msgid "Printer type:" -#~ msgstr "Tipo di stampante:" - -#~ msgctxt "@label" -#~ msgid "Connection:" -#~ msgstr "Collegamento:" - -#~ msgctxt "@label" -#~ msgid "State:" -#~ msgstr "Stato:" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for a printjob" -#~ msgstr "In attesa di un processo di stampa" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for someone to clear the build plate" -#~ msgstr "In attesa di qualcuno che cancelli il piano di stampa" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Aborting print..." -#~ msgstr "Interruzione stampa in corso..." - -#~ msgctxt "@label" -#~ msgid "Protected profiles" -#~ msgstr "Profili protetti" - -#~ msgctxt "@label" -#~ msgid "Printer Name:" -#~ msgstr "Nome stampante:" - -#~ msgctxt "@label" -#~ msgid "Profile:" -#~ msgstr "Profilo:" - -#~ msgctxt "@label:textbox" -#~ msgid "Search..." -#~ msgstr "Ricerca..." - -#~ msgctxt "@action:inmenu" -#~ msgid "Collapse All" -#~ msgstr "Comprimi tutto" - -#~ msgctxt "@action:inmenu" -#~ msgid "Expand All" -#~ msgstr "Espandi tutto" - -#~ msgctxt "@label:header configurations" -#~ msgid "Available configurations" -#~ msgstr "Configurazioni disponibili" - -#~ msgctxt "@label:extruder label" -#~ msgid "Extruder" -#~ msgstr "Estrusore" - -#~ msgctxt "@label:extruder label" -#~ msgid "Yes" -#~ msgstr "Sì" - -#~ msgctxt "@label:extruder label" -#~ msgid "No" -#~ msgstr "No" - -#~ msgctxt "@label:listbox" -#~ msgid "Print Setup" -#~ msgstr "Impostazione di stampa" - -#~ msgctxt "@label:listbox" -#~ msgid "" -#~ "Print Setup disabled\n" -#~ "G-code files cannot be modified" -#~ msgstr "" -#~ "Impostazione di stampa disabilitata\n" -#~ "I file codice G non possono essere modificati" - -#~ msgctxt "@label Hours and minutes" -#~ msgid "00h 00min" -#~ msgstr "00h 00min" - -#~ msgctxt "@tooltip" -#~ msgid "Time specification" -#~ msgstr "Indicazioni di tempo" - -#~ msgctxt "@label" -#~ msgid "Cost specification" -#~ msgstr "Indicazione di costo" - -#~ msgctxt "@label" -#~ msgid "Total:" -#~ msgstr "Totale:" - -#~ msgctxt "@tooltip" -#~ msgid "Recommended Print Setup

    Print with the recommended settings for the selected printer, material and quality." -#~ msgstr "Impostazione di stampa consigliata

    Stampa con le impostazioni consigliate per la stampante, il materiale e la qualità selezionati." - -#~ msgctxt "@tooltip" -#~ msgid "Custom Print Setup

    Print with finegrained control over every last bit of the slicing process." -#~ msgstr "Impostazione di stampa personalizzata

    Stampa con il controllo grana fine su ogni sezione finale del processo di sezionamento." - -#~ msgctxt "@action:inmenu menubar:help" -#~ msgid "Show Engine &Log..." -#~ msgstr "Mostra &log motore..." - -#~ msgctxt "@action:menu" -#~ msgid "Browse packages..." -#~ msgstr "Sfoglia i pacchetti..." - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "Expand/Collapse Sidebar" -#~ msgstr "Espandi/Riduci barra laterale" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3D model" -#~ msgstr "Caricare un modello 3D" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Ready to slice" -#~ msgstr "Pronto per il sezionamento" - -#~ msgctxt "@label:PrintjobStatus %1 is target operation" -#~ msgid "Ready to %1" -#~ msgstr "Pronto a %1" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Slicing unavailable" -#~ msgstr "Sezionamento non disponibile" - -#~ msgctxt "@info:tooltip" -#~ msgid "Slice current printjob" -#~ msgstr "Seziona processo di stampa corrente" - -#~ msgctxt "@info:tooltip" -#~ msgid "Cancel slicing process" -#~ msgstr "Annulla processo di sezionamento" - -#~ msgctxt "@label:Printjob" -#~ msgid "Prepare" -#~ msgstr "Prepara" - -#~ msgctxt "@label:Printjob" -#~ msgid "Cancel" -#~ msgstr "Annulla" - -#~ msgctxt "@info:tooltip" -#~ msgid "Select the active output device" -#~ msgstr "Seleziona l'unità di uscita attiva" - -#~ msgctxt "@title:menu" -#~ msgid "&View" -#~ msgstr "&Visualizza" - -#~ msgctxt "@title:menu" -#~ msgid "&Settings" -#~ msgstr "&Impostazioni" - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "&Toolbox" -#~ msgstr "&Casella degli strumenti" - -#~ msgctxt "@action:button" -#~ msgid "Open File" -#~ msgstr "Apri file" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "Questo profilo di qualità non è disponibile per il materiale e la configurazione ugello corrente. Modificarli per abilitare questo profilo di qualità" - -#~ msgctxt "@label" -#~ msgid "Print Speed" -#~ msgstr "Velocità di stampa" - -#~ msgctxt "@label" -#~ msgid "Slower" -#~ msgstr "Più lenta" - -#~ msgctxt "@label" -#~ msgid "Faster" -#~ msgstr "Più veloce" - -#~ msgctxt "@label" -#~ msgid "Enable gradual" -#~ msgstr "Consenti variazione graduale" - -#~ msgctxt "@label" -#~ msgid "Generate Support" -#~ msgstr "Generazione supporto" - -#~ msgctxt "@label" -#~ msgid "Build Plate Adhesion" -#~ msgstr "Adesione piano di stampa" - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints?
    Read the Ultimaker Troubleshooting Guides" -#~ msgstr "Serve aiuto per migliorare le tue stampe?
    Leggi la Guida alla ricerca e riparazione guasti Ultimaker" - -#~ msgctxt "@title:window" -#~ msgid "Engine Log" -#~ msgstr "Log motore" - -#~ msgctxt "@label" -#~ msgid "Printer type" -#~ msgstr "Tipo di stampante" - -#~ msgctxt "@label" -#~ msgid "Use glue with this material combination" -#~ msgstr "Utilizzare la colla con questa combinazione di materiali" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "Controlla compatibilità" - -#~ msgctxt "@tooltip" -#~ msgid "Click to check the material compatibility on Ultimaker.com." -#~ msgstr "Fai clic per verificare la compatibilità del materiale su Ultimaker.com." - -#~ msgctxt "description" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "Mostra le modifiche dall'ultima versione selezionata." - -#~ msgctxt "name" -#~ msgid "Changelog" -#~ msgstr "Registro modifiche" - -#~ msgctxt "description" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "Crea un profilo appiattito." - -#~ msgctxt "name" -#~ msgid "Profile flatener" -#~ msgstr "Appiattitore di profilo" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license." -#~ msgstr "Chiedere una volta all'utente se accetta la nostra licenza." - -#~ msgctxt "name" -#~ msgid "UserAgreement" -#~ msgstr "Contratto di licenza" - -#~ msgctxt "@warning:status" -#~ msgid "Please generate G-code before saving." -#~ msgstr "Generare il codice G prima di salvare." - -#~ msgctxt "@action" -#~ msgid "Upgrade Firmware" -#~ msgstr "Aggiorna firmware" - -#~ msgctxt "@label unknown material" -#~ msgid "Unknown" -#~ msgstr "Sconosciuto" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "No custom profile to import in file {0}" -#~ msgstr "Nessun profilo personalizzato da importare nel file {0}" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "This profile {0} contains incorrect data, could not import it." -#~ msgstr "Questo profilo {0} contiene dati errati, impossibile importarlo." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "La macchina definita nel profilo {0} ({1}) non corrisponde alla macchina corrente ({2}), impossibile importarlo." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall " -#~ msgstr "Conferma disinstalla " - -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - -#~ msgctxt "@title" -#~ msgid "Upgrade Firmware" -#~ msgstr "Aggiorna firmware" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Stampa con Doodle3D WiFi-Box" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Stampa con Doodle3D WiFi-Box" - -#~ msgctxt "@info:status" -#~ msgid "Connecting to Doodle3D Connect" -#~ msgstr "Collegamento a Doodle3D Connect" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to Doodle3D Connect" -#~ msgstr "Invio dati a Doodle3D Connect" - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -#~ msgstr "Impossibile inviare dati a Doodle3D Connect. C'è un altro processo in corso?" - -#~ msgctxt "@info:status" -#~ msgid "Storing data on Doodle3D Connect" -#~ msgstr "Memorizzazione dati su Doodle3D Connect" - -#~ msgctxt "@info:status" -#~ msgid "File sent to Doodle3D Connect" -#~ msgstr "File inviato a Doodle3D Connect" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect..." -#~ msgstr "Apri Connect..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Open the Doodle3D Connect web interface" -#~ msgstr "Apri interfaccia web Doodle3D Connect" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Blender file" -#~ msgstr "File Blender" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Could not export using \"{}\" quality!\n" -#~ "Felt back to \"{}\"." -#~ msgstr "" -#~ "Impossibile esportare utilizzando qualità \"{}\" quality!\n" -#~ "Tornato a \"{}\"." - -#~ msgctxt "@label" -#~ msgid "Contact" -#~ msgstr "Contatto" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." -#~ msgstr "Questa stampante non è predisposta per comandare un gruppo di stampanti Ultimaker 3." - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -#~ msgstr "Questa stampante comanda un gruppo di %1 stampanti Ultimaker 3." - -#~ msgctxt "@label: arg 1 is group name" -#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "%1 non è configurata per supportare la connessione di un gruppo di stampanti Ultimaker 3" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Add/Remove printers" -#~ msgstr "Aggiungi/Rimuovi stampanti" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "Apre la pagina processi di stampa con il browser web predefinito." - -#~ msgctxt "@action:button" -#~ msgid "View print jobs" -#~ msgstr "Visualizza processi di stampa" - -#~ msgctxt "@label:status" -#~ msgid "Preparing to print" -#~ msgstr "Preparazione della stampa" - -#~ msgctxt "@label:status" -#~ msgid "Available" -#~ msgstr "Disponibile" - -#~ msgctxt "@label:status" -#~ msgid "Lost connection with the printer" -#~ msgstr "Persa connessione con la stampante" - -#~ msgctxt "@label:status" -#~ msgid "Unknown" -#~ msgstr "Sconosciuto" - -#~ msgctxt "@label:status" -#~ msgid "Disabled" -#~ msgstr "Disabilitato" - -#~ msgctxt "@label:status" -#~ msgid "Reserved" -#~ msgstr "Riservato" - -#~ msgctxt "@label" -#~ msgid "Preparing to print" -#~ msgstr "Preparazione della stampa" - -#~ msgctxt "@label:status" -#~ msgid "Print aborted" -#~ msgstr "Stampa interrotta" - -#~ msgctxt "@label" -#~ msgid "Not accepting print jobs" -#~ msgstr "Mancata accettazione processi di stampa" - -#~ msgctxt "@label" -#~ msgid "Finishes at: " -#~ msgstr "Finisce alle: " - -#~ msgctxt "@label" -#~ msgid "Clear build plate" -#~ msgstr "Cancellare piano di stampa" - -#~ msgctxt "@label" -#~ msgid "Waiting for configuration change" -#~ msgstr "In attesa di modifica configurazione" - -#~ msgctxt "@title" -#~ msgid "Print jobs" -#~ msgstr "Processi di stampa" - -#~ msgctxt "@label:title" -#~ msgid "Printers" -#~ msgstr "Stampanti" - -#~ msgctxt "@action:button" -#~ msgid "View printers" -#~ msgstr "Visualizza stampanti" - -#~ msgctxt "@label:" -#~ msgid "Pause" -#~ msgstr "Pausa" - -#~ msgctxt "@label:" -#~ msgid "Resume" -#~ msgstr "Riprendi" - -#~ msgctxt "@label:" -#~ msgid "Abort Print" -#~ msgstr "Interrompi la stampa" - -#~ msgctxt "@option:openProject" -#~ msgid "Always ask" -#~ msgstr "Chiedi sempre" - -#~ msgctxt "@label" -#~ msgid "Override Profile" -#~ msgstr "Override profilo" - -#~ msgctxt "@info:tooltip" -#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -#~ msgstr "I modelli appena caricati devono essere sistemati sul piano di stampa? Utilizzato in abbinamento al piano di stampa multiplo (SPERIMENTALE)" - -#~ msgctxt "@option:check" -#~ msgid "Do not arrange objects on load" -#~ msgstr "Non posizionare oggetti sul carico" - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Save Selection to File" -#~ msgstr "&Salva selezione su file" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &As..." -#~ msgstr "Salva &come..." - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &Project..." -#~ msgstr "Salva &progetto..." - -# Added after the string freeze. -#~ msgctxt "@label" -#~ msgid "Use adhesion sheet or glue with this material combination" -#~ msgstr "Utilizzare un foglio di adesione o colla con questa combinazione di materiali" - -#~ msgctxt "description" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "Accetta i G-Code e li invia tramite WiFi a un Doodle3D WiFi-Box." - -#~ msgctxt "name" -#~ msgid "Doodle3D WiFi-Box" -#~ msgstr "Doodle3D WiFi-Box" - -#~ msgctxt "description" -#~ msgid "Provides an edit window for direct script editing." -#~ msgstr "Fornisce una finestra di modifica per la modifica script diretta." - -#~ msgctxt "name" -#~ msgid "Live scripting tool" -#~ msgstr "Strumento di script diretto" - -#~ msgctxt "description" -#~ msgid "Helps to open Blender files directly in Cura." -#~ msgstr "Aiuta ad aprire i file Blender direttamente in Cura." - -#~ msgctxt "name" -#~ msgid "Blender Integration (experimental)" -#~ msgstr "Integrazione Blender (sperimentale)" - -#~ msgctxt "@info:title" -#~ msgid "Model Checker Warning" -#~ msgstr "Avvertenza controllo modello" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n" -#~ "Tips that may be useful to improve the print quality:\n" -#~ "1) Use rounded corners.\n" -#~ "2) Turn the fan off (only if there are no tiny details on the model).\n" -#~ "3) Use a different material." -#~ msgstr "" -#~ "Alcuni modelli potrebbero non essere stampati in modo ottimale a causa delle dimensioni dell’oggetto e del materiale scelto: {model_names}.\n" -#~ "Suggerimenti utili per migliorare la qualità di stampa:\n" -#~ "1) Utilizzare angoli arrotondati.\n" -#~ "2) Spegnere la ventola (solo se non vi sono piccoli dettagli sul modello).\n" -#~ "3) Utilizzare un materiale diverso." - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "SolidWorks ha segnalato errori all’apertura del file. Si consiglia di risolvere queste problematiche all’interno di SolidWorks stesso." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ "Thanks!" -#~ msgstr "" -#~ "Nessun modello trovato nel disegno. Si prega di controllare nuovamente il contenuto e accertarsi che all’interno vi sia un componente o gruppo.\n" -#~ "\n" -#~ "Grazie." - -#~ 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" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "Trovato più di un componente o gruppo all’interno del disegno. Attualmente sono supportati solo i disegni con esattamente un componente o gruppo all’interno.\n" -#~ "\n" -#~ " Spiacenti." - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks part file" -#~ msgstr "File part SolidWorks" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks assembly file" -#~ msgstr "File gruppo SolidWorks" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks drawing file" -#~ msgstr "File disegno SolidWorks" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "Gentile cliente,\n" -#~ "non abbiamo trovato un’installazione valida di SolidWorks nel suo sistema. Questo significa che SolidWorks non è installato o che non possiede una licenza valida. La invitiamo a verificare che l’esecuzione di SolidWorks avvenga senza problemi e/o a contattare il suo ICT.\n" -#~ "\n" -#~ "Cordiali saluti\n" -#~ " - Thomas Karl Pietrowski" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "Gentile cliente,\n" -#~ "attualmente ha in esecuzione questo plugin su un sistema operativo diverso da Windows. Questo plugin funziona solo su Windows con SolidWorks installato, con inclusa una licenza valida. Si prega di installare questo plugin su una macchina Windows con SolidWorks installato.\n" -#~ "\n" -#~ "Cordiali saluti\n" -#~ " - Thomas Karl Pietrowski" - -#~ msgid "Configure" -#~ msgstr "Configura" - -#~ msgid "Installation guide for SolidWorks macro" -#~ msgstr "Guida per l’installazione di macro SolidWorks" - -#~ msgctxt "@action:button" -#~ msgid "Disable" -#~ msgstr "Disabilita" - -#~ msgctxt "@action:tooltip" -#~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences." -#~ msgstr "Non consente a Cura di inviare statistiche di utilizzo in forma anonima. È possibile riabilitare nelle preferenze." - -#~ msgid "Install" -#~ msgstr "Installazione" - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory." -#~ msgstr "Impossibile copiare i file di plugin Siemens NX. Controllare UGII_USER_DIR. Non è assegnato ad alcuna directory." - -#~ msgid "Successfully installed Siemens NX Cura plugin." -#~ msgstr "Installato correttamente plugin Siemens NX Cura." - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR." -#~ msgstr "Impossibile copiare i file di plugin Siemens NX. Controllare UGII_USER_DIR." - -#~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX." -#~ msgstr "Impossibile installare plugin Siemens NX. Impossibile impostare la variabile di ambiente UGII_USER_DIR per Siemens NX." - -#~ msgctxt "@info:status" -#~ msgid "Failed to get plugin ID from {0}" -#~ msgstr "Impossibile ottenere ID plugin da {0}" - -#~ msgctxt "@info:tile" -#~ msgid "Warning" -#~ msgstr "Avvertenza" - -#~ msgctxt "@window:title" -#~ msgid "Plugin browser" -#~ msgstr "Browser plugin" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks: Export wizard" -#~ msgstr "SolidWorks: procedura guidata per l’esportazione" - -#~ msgctxt "@action:label" -#~ msgid "Quality:" -#~ msgstr "Qualità:" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (3D-printing)" -#~ msgstr "Fine (stampa 3D)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (3D-printing)" -#~ msgstr "Grossolana (stampa 3D)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (SolidWorks)" -#~ msgstr "Fine (SolidWorks)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (SolidWorks)" -#~ msgstr "Grossolana (SolidWorks)" - -#~ msgctxt "@text:window" -#~ msgid "Show this dialog again" -#~ msgstr "Mostra nuovamente questa finestra di dialogo" - -#~ msgctxt "@action:button" -#~ msgid "Continue" -#~ msgstr "Continua" - -#~ msgctxt "@action:button" -#~ msgid "Abort" -#~ msgstr "Interrompi" - -#~ msgctxt "@title:window" -#~ msgid "How to install Cura SolidWorks macro" -#~ msgstr "Come installare la macro Cura SolidWorks" - -#~ msgctxt "@description:label" -#~ msgid "Steps:" -#~ msgstr "Fasi:" - -#~ msgctxt "@action:button" -#~ msgid "" -#~ "Open the directory\n" -#~ "with macro and icon" -#~ msgstr "" -#~ "Aprire la directory\n" -#~ "con macro e icona" - -#~ msgctxt "@description:label" -#~ msgid "Instructions:" -#~ msgstr "Istruzioni:" - -#~ msgctxt "@action:playpause" -#~ msgid "Play" -#~ msgstr "Riproduci" - -#~ msgctxt "@action:playpause" -#~ msgid "Pause" -#~ msgstr "Pausa" - -#~ msgctxt "@action:button" -#~ msgid "Previous Step" -#~ msgstr "Fase precedente" - -#~ msgctxt "@action:button" -#~ msgid "Done" -#~ msgstr "Eseguito" - -#~ msgctxt "@action:button" -#~ msgid "Next Step" -#~ msgstr "Fase successiva" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks plugin: Configuration" -#~ msgstr "Plugin SolidWorks: configurazione" - -#~ msgctxt "@title:tab" -#~ msgid "Conversion settings" -#~ msgstr "Impostazioni di conversione" - -#~ msgctxt "@label" -#~ msgid "First choice:" -#~ msgstr "Prima scelta:" - -#~ msgctxt "@text:menu" -#~ msgid "Latest installed version (Recommended)" -#~ msgstr "Ultima versione installata (consigliata)" - -#~ msgctxt "@text:menu" -#~ msgid "Default version" -#~ msgstr "Versione predefinita" - -#~ msgctxt "@label" -#~ msgid "Show wizard before opening SolidWorks files" -#~ msgstr "Mostra la procedura guidata prima di aprire i file SolidWorks" - -#~ msgctxt "@label" -#~ msgid "Automatically rotate opened file into normed orientation" -#~ msgstr "Ruota automaticamente il file aperto nell’orientamento corretto" - -#~ msgctxt "@title:tab" -#~ msgid "Installation(s)" -#~ msgstr "Installazione(i)" - -#~ msgctxt "@label" -#~ msgid "COM service found" -#~ msgstr "Servizio COM trovato" - -#~ msgctxt "@label" -#~ msgid "Executable found" -#~ msgstr "Eseguibile trovato" - -#~ msgctxt "@label" -#~ msgid "COM starting" -#~ msgstr "COM in avvio" - -#~ msgctxt "@label" -#~ msgid "Revision number" -#~ msgstr "Numero di revisione" - -#~ msgctxt "@label" -#~ msgid "Functions available" -#~ msgstr "Funzioni disponibili" - -#~ msgctxt "@label (%1 is object name)" -#~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?" -#~ msgstr "Il nuovo diametro materiale è impostato a %1 mm, che non è compatibile con la macchina corrente. Continuare?" - -#~ msgctxt "@action:menu" -#~ msgid "Browse plugins..." -#~ msgstr "Sfoglia plugin..." - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "P&lugins" -#~ msgstr "&Plugin" - -#~ msgctxt "@window:title" -#~ msgid "Install Plugin" -#~ msgstr "Installa plugin" - -#~ 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 "Manages network connections to Ultimaker 3 printers" -#~ msgstr "Gestisce le connessioni di rete alle stampanti Ultimaker 3" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations." -#~ msgstr "Offre la possibilità di aprire alcuni file utilizzando SolidWorks. La conversione viene effettuata da questo plugin e ottimizzazioni addizionali." - -#~ msgctxt "name" -#~ msgid "SolidWorks Integration" -#~ msgstr "Integrazione SolidWorks" - -#~ msgctxt "description" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "Salva automaticamente preferenze, macchine e profili dopo le modifiche." - -#~ msgctxt "name" -#~ msgid "Auto Save" -#~ msgstr "Salvataggio automatico" - -#~ msgctxt "description" -#~ msgid "Helps you to install an 'export to Cura' button in Siemens NX." -#~ msgstr "Consente di installare un pulsante 'Esporta in Cura' in Siemens NX." - -#~ msgctxt "name" -#~ msgid "Siemens NX Integration" -#~ msgstr "Integrazione Siemens NX" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new plugins." -#~ msgstr "Trova, gestisce e installa nuovi plugin." - -#~ msgctxt "name" -#~ msgid "Plugin Browser" -#~ msgstr "Browser plugin" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license" -#~ msgstr "Chiedere una volta all'utente se accetta la nostra licenza" - -#~ 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 "@item:inlistbox" -#~ msgid "GCode File" -#~ msgstr "File GCode" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer is busy or not connected." -#~ msgstr "Impossibile avviare un nuovo processo di stampa perché la stampante è occupata o non collegata." - -#~ msgctxt "@info:title" -#~ msgid "Printer Unavailable" -#~ msgstr "Stampante non disponibile" - -#~ msgctxt "@info:status" -#~ msgid "This printer does not support USB printing because it uses UltiGCode flavor." -#~ msgstr "Questa stampante non supporta la stampa tramite USB in quanto utilizza la versione UltiGCode." - -#~ msgctxt "@info:title" -#~ msgid "USB Printing" -#~ msgstr "Stampa USB" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer does not support usb printing." -#~ msgstr "Impossibile avviare un nuovo processo di stampa perché la stampante non supporta la stampa tramite USB." - -#~ msgctxt "@info" -#~ msgid "Unable to update firmware because there are no printers connected." -#~ msgstr "Impossibile aggiornare il firmware perché non ci sono stampanti collegate." - -#~ msgctxt "@info" -#~ msgid "Could not find firmware required for the printer at %s." -#~ msgstr "Impossibile trovare il firmware richiesto per la stampante a %s." - -#~ msgctxt "@info:title" -#~ msgid "Printer Firmware" -#~ msgstr "Firmware stampante" - -#~ msgctxt "@info:title" -#~ msgid "Connection status" -#~ msgstr "Stato di connessione" - -#~ msgctxt "@info:title" -#~ msgid "Connection Status" -#~ msgstr "Stato di connessione" - -#~ msgctxt "@info:status" -#~ msgid "Access request was denied on the printer." -#~ msgstr "Richiesta di accesso negata sulla stampante." - -#~ msgctxt "@info:status" -#~ msgid "Access request failed due to a timeout." -#~ msgstr "Richiesta di accesso non riuscita per superamento tempo." - -#~ msgctxt "@info:status" -#~ msgid "The connection with the network was lost." -#~ msgstr "Il collegamento con la rete si è interrotto." - -#~ msgctxt "@info:status" -#~ msgid "The connection with the printer was lost. Check your printer to see if it is connected." -#~ msgstr "Il collegamento con la stampante si è interrotto. Controllare la stampante per verificare se è collegata." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s." -#~ msgstr "Impossibile avviare un nuovo processo di stampa perché la stampante è occupata. Stato stampante corrente %s." - -#~ msgctxt "@info:title" -#~ msgid "Printer Status" -#~ msgstr "Stato stampante" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}" -#~ msgstr "Impossibile avviare un nuovo processo di stampa. Nessun Printcore caricato nello slot {0}" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No material loaded in slot {0}" -#~ msgstr "Impossibile avviare un nuovo processo di stampa. Nessun materiale caricato nello slot {0}" - -#~ msgctxt "@label" -#~ msgid "Not enough material for spool {0}." -#~ msgstr "Materiale per la bobina insufficiente {0}." - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "PrintCore diverso (Cura: {0}, Stampante: {1}) selezionata per estrusore {2}" - -#~ msgctxt "@label" -#~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "PrintCore {0} non correttamente calibrato. Necessario eseguire calibrazione XY sulla stampante." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to printer. Is another job still active?" -#~ msgstr "Impossibile inviare i dati alla stampante. Altro processo ancora attivo?" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Print aborted. Please check the printer" -#~ msgstr "Stampa interrotta. Controllare la stampante" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Pausing print..." -#~ msgstr "Messa in pausa stampa..." - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Resuming print..." -#~ msgstr "Ripresa stampa..." - -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "Questa stampante non è configurata per supportare la connessione di un gruppo di stampanti Ultimaker 3." - -#~ msgctxt "Count is number of printers." -#~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers." -#~ msgstr "Questa stampante fa da host per un gruppo di {count} stampanti Ultimaker 3 connesse." - -#~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate." -#~ msgstr "{printer_name} ha terminato la stampa '{job_name}'. Rimuovere la stampa e confermare la pulizia del piano di stampa." - -#~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing." -#~ msgstr "{printer_name} è riservata per la stampa di '{job_name}'. Modificare la configurazione della stampante in modo che corrisponda al lavoro da eseguire per avviare il processo di stampa." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "Impossibile inviare nuovo processo di stampa: questa stampante 3D non è (ancora) configurata per supportare la connessione di un gruppo di stampanti Ultimaker 3." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send print job to group {cluster_name}." -#~ msgstr "Impossibile inviare processo di stampa a gruppo {cluster_name}." - -#~ msgctxt "@info:status" -#~ msgid "Sent {file_name} to group {cluster_name}." -#~ msgstr "Inviato {file_name} a gruppo {cluster_name}." - -#~ msgctxt "@action:button" -#~ msgid "Show print jobs" -#~ msgstr "Mostra processi di stampa" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs interface in your browser." -#~ msgstr "Apre l'interfaccia processi di stampa sul browser." - -#~ msgctxt "@label Printer name" -#~ msgid "Unknown" -#~ msgstr "Sconosciuto" - -#~ msgctxt "@info:progress" -#~ msgid "Sending {file_name} to group {cluster_name}" -#~ msgstr "Invio {file_name} a gruppo {cluster_name}" - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "SolidWorks ha segnalato errori all’apertura del file. Si consiglia di risolvere queste problematiche all’interno di SolidWorks stesso." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ " Thanks!." -#~ msgstr "" -#~ "Nessun modello trovato nel disegno. Si prega di controllare nuovamente il contenuto e accertarsi che all’interno vi sia un componente o gruppo.\n" -#~ "\n" -#~ " Grazie." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "Trovato più di un componente o gruppo all’interno del disegno. Attualmente sono supportati solo i disegni con esattamente un componente o gruppo all’interno.\n" -#~ "\n" -#~ " Spiacenti." - -#~ msgctxt "@item:material" -#~ msgid "No material loaded" -#~ msgstr "Nessun materiale caricato" - -#~ msgctxt "@item:material" -#~ msgid "Unknown material" -#~ msgstr "Materiale sconosciuto" - -#~ msgctxt "@info:status Has a cancel button next to it." -#~ msgid "The selected material diameter causes the material to become incompatible with the current printer." -#~ msgstr "Il diametro del materiale selezionato lo rende incompatibile con l'attuale stampante." - -#~ msgctxt "@action:button" -#~ msgid "Undo" -#~ msgstr "Annulla" - -#~ msgctxt "@action" -#~ msgid "Undo changing the material diameter." -#~ msgstr "Annulla modifica del diametro del materiale." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} doesn't match with your current machine, could not import it." -#~ msgstr "La macchina definita nel profilo {0} non corrisponde alla macchina corrente, impossibile importarlo." - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal error has occurred. 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 "" -#~ "

    Si è verificato un errore fatale. Si prega di inviare questo Report su crash per correggere il problema

    \n" -#~ "

    Usare il pulsante “Invia report\" per inviare automaticamente una segnalazione errore ai nostri server

    \n" -#~ " " - -#~ msgctxt "@label" -#~ msgid "not yet initialised
    " -#~ msgstr "non ancora inizializzato
    " - -#~ msgctxt "@label" -#~ msgid "Gcode flavor" -#~ msgstr "Versione GCode" - -#~ msgctxt "@label" -#~ msgid "Start Gcode" -#~ msgstr "Avvio GCode" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very start." -#~ msgstr "Comandi Gcode da eseguire all’avvio." - -#~ msgctxt "@label" -#~ msgid "End Gcode" -#~ msgstr "Fine GCode" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very end." -#~ msgstr "Comandi Gcode da eseguire alla fine." - -#~ msgctxt "@label" -#~ msgid "Extruder Start Gcode" -#~ msgstr "Gcode avvio estrusore" - -#~ msgctxt "@label" -#~ msgid "Extruder End Gcode" -#~ msgstr "Gcode fine estrusore" - -#~ msgctxt "@label" -#~ msgid "Starting firmware update, this may take a while." -#~ msgstr "Avvio aggiornamento firmware. Questa operazione può richiedere qualche istante." - -#~ msgctxt "@label" -#~ msgid "Unknown error code: %1" -#~ msgstr "Codice errore sconosciuto: %1" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@label Printer status" -#~ msgid "Unknown" -#~ msgstr "Sconosciuto" - -#~ msgctxt "@title:window" -#~ msgid "Find & Update plugins" -#~ msgstr "Trova e Aggiorna plugin" - -#~ msgctxt "@label" -#~ msgid "Here you can find a list of Third Party plugins." -#~ msgstr "Qui è possibile trovare un elenco dei plugin forniti da terzi." - -#~ msgctxt "@action:button" -#~ msgid "Upgrade" -#~ msgstr "Aggiorna" - -#~ msgctxt "@action:button" -#~ msgid "Download" -#~ msgstr "Download" - -#~ msgctxt "@info:tooltip" -#~ msgid "Show caution message in gcode reader." -#~ msgstr "Visualizza il messaggio di avvertimento sul lettore gcode." - -#~ msgctxt "@option:check" -#~ msgid "Caution message in gcode reader" -#~ msgstr "Messaggio di avvertimento sul lettore gcode" - -#~ msgctxt "@window:title" -#~ msgid "Import Profile" -#~ msgstr "Importa profilo" - -#~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name" -#~ msgid "Printer: %1, %2: %3" -#~ msgstr "Stampante: %1, %2: %3" - -#~ msgctxt "@action:label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "Stampante: %1" - -#~ msgctxt "@label" -#~ msgid "GCode generator" -#~ msgstr "GCode generator" - -#~ msgctxt "@action:menu" -#~ msgid "Configure setting visiblity..." -#~ msgstr "Configurazione visibilità delle impostazioni in corso..." - -#~ msgctxt "@title:menuitem %1 is the automatically selected material" -#~ msgid "Automatic: %1" -#~ msgstr "Automatico: %1" - -#~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer" -#~ msgid "Automatic: %1" -#~ msgstr "Automatico: %1" - -#~ msgctxt "@info:status" -#~ msgid "No printer connected" -#~ msgstr "Nessuna stampante collegata" - -#~ msgctxt "@tooltip" -#~ msgid "The current temperature of this extruder." -#~ msgstr "La temperatura corrente di questo estrusore." - -#~ msgctxt "@action:menu" -#~ msgid "Installed plugins..." -#~ msgstr "Plugin installati..." - -#~ msgctxt "@label" -#~ msgid "Support Extruder" -#~ msgstr "Estrusore del supporto" - -#~ msgctxt "description" -#~ msgid "Writes GCode to a file." -#~ msgstr "Scrive il GCode in un file." - -#~ msgctxt "name" -#~ msgid "GCode Writer" -#~ msgstr "Writer GCode" - -#~ msgctxt "name" -#~ msgid "GCode Profile Reader" -#~ msgstr "Lettore profilo GCode" - -#~ msgctxt "@info:status" -#~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" -#~ msgstr "Rilevati errori all'apertura del file SolidWorks! Controllare se è possibile aprire il file in SolidWorks senza che si verifichino problemi!" - -#~ msgctxt "@info:status" -#~ msgid "Error while starting %s!" -#~ msgstr "Errore durante l'avvio di %s!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Simulation view" +#~ msgid "Simulation View" #~ msgstr "Vista simulazione" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences." -#~ msgstr "Cura acquisisce dati statistici elaborati in forma anonima. L'acquisizione può essere disabilitata nelle preferenze." - -#~ msgctxt "@action:button" -#~ msgid "Dismiss" -#~ msgstr "Ignora" - -#~ msgctxt "@menuitem" -#~ msgid "Global" -#~ msgstr "Globale" - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal exception has occurred. 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 "" -#~ "

    Si è verificata un'eccezione irreversibile. Si prega di inviarci questo crash report per risolvere il problema

    \n" -#~ "

    Utilizzare il pulsante \"Invia report\" per inviare un report sui bug automaticamente ai nostri server

    \n" -#~ " " - -#~ msgctxt "@label Cura version" -#~ msgid "Cura version: {version}
    " -#~ msgstr "Versione Cura: {version}
    " - -#~ msgctxt "@label Platform" -#~ msgid "Platform: {platform}
    " -#~ msgstr "Piattaforma: {platform}
    " - -#~ msgctxt "@label Qt version" -#~ msgid "Qt version: {qt}
    " -#~ msgstr "Versione Qt: {qt}
    " - -#~ msgctxt "@label PyQt version" -#~ msgid "PyQt version: {pyqt}
    " -#~ msgstr "Versione PyQt: {pyqt}
    " - -#~ msgctxt "@label OpenGL" -#~ msgid "OpenGL: {opengl}
    " -#~ msgstr "OpenGL: {opengl}
    " - -#~ msgctxt "@title:groupbox" -#~ msgid "Exception traceback" -#~ msgstr "Analisi eccezione" - -#~ msgctxt "@label" -#~ msgid "Material diameter" -#~ msgstr "Diametro materiale" - -#~ msgctxt "@title:window" -#~ msgid "Cura SolidWorks Plugin Configuration" -#~ msgstr "Configurazione plugin Cura SolidWorks" - -#~ msgctxt "@action:label" -#~ msgid "Default quality of the exported STL:" -#~ msgstr "Qualità predefinita STL esportato:" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always ask" -#~ msgstr "Chiedi sempre" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Fine quality" -#~ msgstr "Utilizza sempre la qualità Fine" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Coarse quality" -#~ msgstr "Utilizza sempre la qualità Grossolana" - -#~ msgctxt "@title:window" -#~ msgid "Import SolidWorks File as STL..." -#~ msgstr "Importa file SolidWorks come STL..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Quality of the Exported STL" -#~ msgstr "Qualità STL esportato" - -#~ msgctxt "@action:label" -#~ msgid "Quality" -#~ msgstr "Qualità" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse" -#~ msgstr "Grossolana" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine" -#~ msgstr "Fine" - -#~ msgctxt "@" -#~ msgid "No Profile Available" -#~ msgstr "Nessun profilo disponibile" - -#~ msgctxt "@label" -#~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders" -#~ msgstr "Questa impostazione è sempre condivisa tra tutti gli estrusori. La sua modifica varierà il valore per tutti gli estrusori" - -#~ msgctxt "@tooltip" -#~ msgid "Time specification
    " -#~ msgstr "Indicazione del tempo
    " - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Reset camera position" -#~ msgstr "&Ripristina la posizione della telecamera" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save project" -#~ msgstr "Salva progetto" - -#~ msgctxt "@title:tab" -#~ msgid "Prepare" -#~ msgstr "Prepara" - -#~ msgctxt "@title:tab" -#~ msgid "Monitor" -#~ msgstr "Controlla" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "Controllo compatibilità" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura" -#~ msgstr "Offre la possibilità di aprire alcuni file tramite SolidWorks stessa. Questi vengono quindi convertiti e caricati in Cura" - -#~ msgctxt "@label:status" -#~ msgid "Blocked" -#~ msgstr "Bloccato" - -#~ msgctxt "@label:status" -#~ msgid "Can't start print" -#~ msgstr "Impossibile avviare la stampa" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect.." -#~ msgstr "Apri Connect.." - -#~ msgctxt "@info:title" -#~ msgid "Print Details" -#~ msgstr "Dettagli stampa" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB." -#~ msgstr "Per verificare che la vostra {machine_name} sia dotata delle funzionalità più recenti, si consiglia di aggiornare periodicamente il firmware. Questo può essere fatto sulla {machine_name} (quando connessa alla rete) o via USB." - -#~ msgctxt "@info:title" -#~ msgid "Layer View" -#~ msgstr "Visualizzazione layer" - -#~ msgctxt "@menuitem" -#~ msgid "Browse plugins" -#~ msgstr "Sfoglia plugin" - -#~ msgctxt "@info:title" -#~ msgid "Export Details" -#~ msgstr "Dettagli esportazione" - -#~ msgctxt "@label" -#~ msgid "" -#~ "

    A fatal exception has occurred that we could not recover from!

    \n" -#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " -#~ msgstr "" -#~ "

    Si è verificata un'eccezione fatale che non stato possibile superare!

    \n" -#~ "

    Utilizzare le informazioni sotto riportate per inviare un rapporto sull'errore a http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " - -#~ msgctxt "@action:button" -#~ msgid "Open Web Page" -#~ msgstr "Apri pagina Web" - -#~ msgctxt "@action:button" -#~ msgid "Ok" -#~ msgstr "Ok" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "Questa stampante non è configurata per supportare la connessione di un gruppo di stampanti Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" -#~ msgstr "Questa stampante fa da host per un gruppo di %1 stampanti Ultimaker 3 connesse" - -#~ msgctxt "@label" -#~ msgid "Completed on: " -#~ msgstr "Completato su: " - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "Apre la pagina processi di stampa con il browser web predefinito." - -#~ msgctxt "@label" -#~ msgid "PRINTER GROUP" -#~ msgstr "GRUPPO STAMPANTI" - -#~ msgctxt "@action:warning" -#~ msgid "Loading a project will clear all models on the buildplate" -#~ msgstr "Il caricamento di un modello annulla tutti i modelli sul piano di stampa" - -#~ msgctxt "@label" -#~ msgid "" -#~ " plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ " I plugin contengono una licenza.\n" -#~ "È necessario accettare questa licenza per poter installare il plugin.\n" -#~ "Accetti i termini sotto riportati?" - -#~ msgctxt "@label" -#~ msgid "00h 00min" -#~ msgstr "00h 00min" - -#~ msgctxt "@tooltip" -#~ msgid "Time information" -#~ msgstr "Informazioni su tempo" - -#~ msgctxt "@description" -#~ msgid "Print time" -#~ msgstr "Tempo di stampa" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - -#~ msgctxt "@title:window" -#~ msgid "Cura" -#~ msgstr "Cura" - -#~ msgctxt "@label" -#~ msgid "Check material compatibility" -#~ msgstr "Controllo compatibilità materiale" - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection (Cluster)" -#~ msgstr "Connessione di rete UM3 (Cluster)" - -#~ msgctxt "description" -#~ msgid "Provides the Layer view." -#~ msgstr "Fornisce la visualizzazione degli strati." - -#~ msgctxt "name" -#~ msgid "Layer View" -#~ msgstr "Visualizzazione layer" - -#~ msgctxt "@item:inlistbox" -#~ msgid "X-Ray" -#~ msgstr "Raggi X" - -#~ msgctxt "@label" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "Accetta i G-Code e li invia tramite WiFi a un Doodle3D WiFi-Box." - -#~ msgctxt "@item:inmenu" -#~ msgid "Doodle3D printing" -#~ msgstr "Stampa Doodle3D" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D" -#~ msgstr "Stampa con Doodle3D" - -#~ msgctxt "@info:tooltip" -#~ msgid "Print with " -#~ msgstr "Stampa con" - -#~ msgctxt "@title:menu" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Enable Scan devices..." -#~ msgstr "Abilita dispositivi di scansione..." - -#~ msgctxt "@info:progress" -#~ msgid "Saving to Removable Drive {0}" -#~ msgstr "Salvataggio su unità rimovibile {0}" - -#~ msgctxt "@info:status" -#~ msgid "Could not save to {0}: {1}" -#~ msgstr "Impossibile salvare {0}: {1}" - -#~ msgctxt "@info:status" -#~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!" -#~ msgstr "Tenere presente che è necessario riaprire il file SolidWorks manualmente! Il ricaricamento del modello non funziona!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Layers" -#~ msgstr "Strati" - -#~ msgid "Browse plugins" -#~ msgstr "Sfoglia plugin" - -#~ msgctxt "@item:inmenu" -#~ msgid "Solid" -#~ msgstr "Solido" - -#~ msgctxt "@label" -#~ msgid "The file {0} already exists. Are you sure you want to overwrite it?" -#~ msgstr "Il file {0} esiste già. Sei sicuro di voler sovrascrivere?" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export profile to {0}: {1}" -#~ msgstr "Impossibile esportare profilo su {0}: {1}" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export profile to {0}: Writer plugin reported failure." -#~ msgstr "Impossibile esportare profilo su {0}: Errore di plugin writer." - -#~ msgctxt "@info:status" -#~ msgid "Exported profile to {0}" -#~ msgstr "Profilo esportato su {0}" - -#~ msgctxt "@info:status" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "Impossibile importare profilo da {0}: {1}" - -#~ msgctxt "@title:window" -#~ msgid "Doodle3D Settings" -#~ msgstr "Impostazioni Doodle3D" - -#~ msgctxt "@title:window" -#~ msgid "Print to: %1" -#~ msgstr "Stampa a: %1" - -#~ msgctxt "@label" -#~ msgid "Extruder Temperature: %1/%2°C" -#~ msgstr "Temperatura estrusore: %1/%2°C" - -#~ msgctxt "@label" -#~ msgid "Bed Temperature: %1/%2°C" -#~ msgstr "Temperatura piano di stampa: %1/%2°C" - -#~ msgctxt "@label" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@label" -#~ msgid "View Mode: Layers" -#~ msgstr "Modalità di visualizzazione: strati" - -#~ msgctxt "@info:status" -#~ msgid "Could not import material %1: %2" -#~ msgstr "Impossibile importare materiale %1: %2" - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported material %1" -#~ msgstr "Materiale importato correttamente %1" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export material to %1: %2" -#~ msgstr "Impossibile esportare materiale su %1: %2" - -#~ msgctxt "@info:status" -#~ msgid "Successfully exported material to %1" -#~ msgstr "Materiale esportato correttamente su %1" - -#~ msgctxt "@label" -#~ msgid "%1 m / ~ %2 g / ~ %4 %3" -#~ msgstr "%1 m / ~ %2 g / ~ %4 %3" - -#~ msgctxt "@label" -#~ msgid "%1 m / ~ %2 g" -#~ msgstr "%1 m / ~ %2 g" - -#~ msgctxt "@label" -#~ msgid "Hotend" -#~ msgstr "Hotend" - -#~ msgctxt "@action:button" -#~ msgid "View Mode" -#~ msgstr "Modalità di visualizzazione" - -#~ msgctxt "@title:tab" -#~ msgid "Print" -#~ msgstr "Stampa" - -#~ msgctxt "@label" -#~ msgid "0%" -#~ msgstr "0%" - -#~ msgctxt "@label" -#~ msgid "Empty infill will leave your model hollow with low strength." -#~ msgstr "Un riempimento vuoto lascerà il modello cavo e poco resistente." - -#~ msgctxt "@label" -#~ msgid "20%" -#~ msgstr "20%" - -#~ msgctxt "@label" -#~ msgid "Light (20%) infill will give your model an average strength." -#~ msgstr "Un riempimento leggero (20%) fornirà al modello una resistenza media." - -#~ msgctxt "@label" -#~ msgid "50%" -#~ msgstr "50%" - -#~ msgctxt "@label" -#~ msgid "Dense (50%) infill will give your model an above average strength." -#~ msgstr "Un riempimento denso (50%) fornirà al modello una resistenza superiore alla media." - -#~ msgctxt "@label" -#~ msgid "100%" -#~ msgstr "100%" - -#~ msgctxt "@label" -#~ msgid "Solid (100%) infill will make your model completely solid." -#~ msgstr "Un riempimento solido (100%) renderà il modello completamente pieno." - -#~ msgctxt "@label" -#~ msgid "Gradual" -#~ msgstr "Graduale" - -#~ msgctxt "description" -#~ msgid "Provides support for writing X3G files" -#~ msgstr "Fornisce il supporto per la scrittura di file X3G" - -#~ msgctxt "name" -#~ msgid "X3G Writer" -#~ msgstr "Writer X3G" - -#~ msgctxt "@label" -#~ msgid "Machine Settings action" -#~ msgstr "Azione Impostazioni macchina" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "X-Ray View" -#~ msgstr "Vista ai raggi X" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the X-Ray view." -#~ msgstr "Fornisce la vista a raggi X." - -#~ msgctxt "@label" -#~ msgid "X3D Reader" -#~ msgstr "Lettore X3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for reading X3D files." -#~ msgstr "Fornisce il supporto per la lettura di file X3D." - -#~ msgctxt "@label" -#~ msgid "GCode Writer" -#~ msgstr "Writer GCode" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Writes GCode to a file." -#~ msgstr "Scrive il GCode in un file." - -#~ msgctxt "@action:button Preceded by 'Ready to'." -#~ msgid "Print with Doodle3D" -#~ msgstr "Stampa con Doodle3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "Mostra le modifiche dall'ultima versione selezionata." - -#~ msgctxt "@label" -#~ msgid "Profile flatener" -#~ msgstr "Appiattitore di profilo" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "Crea un profilo appiattito." - -#~ msgctxt "@label" -#~ msgid "USB printing" -#~ msgstr "Stampa USB" - -#~ msgctxt "@info:whatsthis" -#~ 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. Il Plugin può anche aggiornare il firmware." - -#~ msgctxt "X3G Writer Plugin Description" -#~ msgid "Writes X3G to a file" -#~ msgstr "Scrive X3G in un file" - -#~ msgctxt "@label" -#~ msgid "Removable Drive Output Device Plugin" -#~ msgstr "Plugin dispositivo di output unità rimovibile" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides removable drive hotplugging and writing support." -#~ msgstr "Fornisce il collegamento a caldo dell'unità rimovibile e il supporto per la scrittura." - -#~ msgctxt "@info:whatsthis" -#~ msgid "Manages network connections to Ultimaker 3 printers" -#~ msgstr "Gestisce le connessioni di rete alle stampanti Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "PrintCore diverso (Cura: {0}, Stampante: {1}) selezionato per l’estrusore {2}" - -#~ msgctxt "@label" -#~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "Print core {0} non correttamente calibrato. Eseguire la calibrazione XY sulla stampante." - -#~ msgctxt "@label" -#~ msgid "The print cores and/or materials on your printer differ from those within your current project. For the best result, always slice for the print cores and materials that are inserted in your printer." -#~ msgstr "I PrintCore e/o i materiali della stampante sono diversi da quelli del progetto corrente. Per risultati ottimali, sezionare sempre i PrintCore e i materiali inseriti nella stampante utilizzata." - -#~ msgctxt "@label" -#~ msgid "Post Processing" -#~ msgstr "Post-elaborazione" - -#~ msgctxt "Description of plugin" -#~ 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 "Auto Save" -#~ msgstr "Salvataggio automatico" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "Salva automaticamente preferenze, macchine e profili dopo le modifiche." - -#~ msgctxt "@label" -#~ msgid "Slice info" -#~ msgstr "Informazioni su sezionamento" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Submits anonymous slice info. Can be disabled through preferences." -#~ msgstr "Inoltra informazioni anonime su sezionamento. Può essere disabilitato tramite preferenze." - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences" -#~ msgstr "Cura raccoglie dati per analisi statistiche anonime. È possibile disabilitare questa opzione in preferenze" - -#~ msgctxt "@label" -#~ msgid "Material Profiles" -#~ msgstr "Profili del materiale" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "Legacy Cura Profile Reader" -#~ msgstr "Lettore legacy profilo Cura" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing profiles from legacy Cura versions." -#~ msgstr "Fornisce supporto per l'importazione di profili dalle versioni legacy Cura." - -#~ msgctxt "@label" -#~ msgid "GCode Profile Reader" -#~ msgstr "Lettore profilo GCode" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing profiles from g-code files." -#~ msgstr "Fornisce supporto per l'importazione di profili da file G-Code." - -#~ msgctxt "@label" -#~ msgid "Layer View" -#~ msgstr "Visualizzazione layer" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the Layer view." -#~ msgstr "Fornisce la visualizzazione dei layer." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.5 to 2.6" -#~ msgstr "Aggiornamento della versione da 2.5 a 2.6" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -#~ msgstr "Aggiorna le configurazioni da Cura 2.5 a Cura 2.6." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.1 to 2.2" -#~ msgstr "Aggiornamento della versione da 2.1 a 2.2" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -#~ msgstr "Aggiorna le configurazioni da Cura 2.1 a Cura 2.2." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.2 to 2.4" -#~ msgstr "Aggiornamento della versione da 2.2 a 2.4" - -#~ msgctxt "@info:whatsthis" -#~ 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 "Image Reader" -#~ msgstr "Lettore di immagine" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Enables ability to generate printable geometry from 2D image files." -#~ msgstr "Abilita la possibilità di generare geometria stampabile da file immagine 2D." - -#~ msgctxt "@label" -#~ msgid "CuraEngine Backend" -#~ msgstr "Back-end CuraEngine" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the link to the CuraEngine slicing backend." -#~ msgstr "Fornisce il collegamento al back-end di slicing di CuraEngine." - -#~ msgctxt "@label" -#~ msgid "Per Model Settings Tool" -#~ msgstr "Utilità impostazioni per modello" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the Per Model Settings." -#~ msgstr "Fornisce le impostazioni per modello." - -#~ msgctxt "@label" -#~ msgid "3MF Reader" -#~ msgstr "Lettore 3MF" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for reading 3MF files." -#~ msgstr "Fornisce il supporto per la lettura di file 3MF." - -#~ msgctxt "@label" -#~ msgid "Solid View" -#~ msgstr "Visualizzazione compatta" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides a normal solid mesh view." -#~ msgstr "Fornisce una normale visualizzazione a griglia compatta." - -#~ msgctxt "@label" -#~ msgid "G-code Reader" -#~ msgstr "Lettore G-code" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Allows loading and displaying G-code files." -#~ msgstr "Consente il caricamento e la visualizzazione dei file G-code." - -#~ msgctxt "@label" -#~ msgid "Cura Profile Writer" -#~ msgstr "Writer profilo Cura" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for exporting Cura profiles." -#~ msgstr "Fornisce supporto per l'esportazione dei profili Cura." - -#~ msgctxt "@label" -#~ msgid "3MF Writer" -#~ msgstr "Writer 3MF" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for writing 3MF files." -#~ msgstr "Fornisce il supporto per la scrittura di file 3MF." - -#~ msgctxt "@label" -#~ msgid "Ultimaker machine actions" -#~ msgstr "Azioni della macchina Ultimaker" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "Cura Profile Reader" -#~ msgstr "Lettore profilo Cura" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing Cura profiles." -#~ msgstr "Fornisce supporto per l'importazione dei profili Cura." - -#~ msgctxt "@info" -#~ msgid "%(width).1f x %(depth).1f x %(height).1f mm" -#~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#~ msgctxt "@label" -#~ msgid "Build Plate Shape" -#~ msgstr "Forma del piano di stampa" - -#~ msgctxt "@option:check" -#~ msgid "Machine Center is Zero" -#~ msgstr "Centro macchina a zero" - -#~ msgctxt "@option:check" -#~ msgid "Heated Bed" -#~ msgstr "Piano riscaldato" - -#~ msgctxt "@label" -#~ msgid "GCode Flavor" -#~ msgstr "Versione GCode" - -#~ msgctxt "@label" -#~ msgid "Material Diameter" -#~ msgstr "Diametro materiale" - -#~ 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 ricerca guasti per la stampa in rete" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Ultimaker" -#~ msgstr "Ultimaker" - -#~ msgctxt "@label" -#~ msgid "Support library for scientific computing " -#~ msgstr "Libreria di supporto per calcolo scientifico " - -#~ msgctxt "@tooltip" -#~ msgid "Print Setup

    Edit or review the settings for the active print job." -#~ msgstr "Impostazione di stampa

    Modifica o revisiona le impostazioni per il lavoro di stampa attivo." - -#~ msgctxt "@tooltip" -#~ msgid "Print Monitor

    Monitor the state of the connected printer and the print job in progress." -#~ msgstr "Monitoraggio stampa

    Controlla lo stato della stampante collegata e il lavoro di stampa in corso." - -#~ msgctxt "@title:menuitem %1 is the value from the printer" -#~ msgid "Automatic: %1" -#~ msgstr "Automatico: %1" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3d model" -#~ msgstr "Carica un modello 3d" - -#~ msgctxt "@label" -#~ msgid "Print Selected Model with %1" -#~ msgid_plural "Print Selected Models With %1" -#~ msgstr[0] "Stampa modello selezionato con %1" -#~ msgstr[1] "Stampa modelli selezionati con %1" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}" -#~ msgstr "Impossibile avviare un nuovo processo di stampa. Nessun PrinterCore caricato nello slot {0}" - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.4 to 2.5" -#~ msgstr "Aggiornamento della versione da 2.4 a 2.5" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5." -#~ msgstr "Aggiorna le configurazioni da Cura 2.4 a Cura 2.5." - -#~ msgctxt "@info:status" -#~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead." -#~ msgstr "Impossibile trovare un profilo di qualità per questa combinazione. Saranno utilizzate le impostazioni predefinite." - -#~ msgctxt "@title:window" -#~ msgid "Oops!" -#~ msgstr "Oops!" - -#~ msgctxt "@label" -#~ msgid "" -#~ "

    A fatal exception has occurred that we could not recover from!

    \n" -#~ "

    We hope this picture of a kitten helps you recover from the shock.

    \n" -#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " -#~ msgstr "" -#~ "

    Si è verificata un'eccezione fatale impossibile da ripristinare!

    \n" -#~ "

    Ci auguriamo che l’immagine di questo gattino vi aiuti a superare lo shock.

    \n" -#~ "

    Utilizzare le informazioni riportate di seguito per pubblicare una segnalazione errori all'indirizzo http://github.com/Ultimaker/Cura/issues

    " - -#~ msgctxt "@label" -#~ msgid "Please enter the correct settings for your printer below:" -#~ msgstr "Inserire le impostazioni corrette per la stampante:" - -#~ msgctxt "@label" -#~ msgid "Extruder %1" -#~ msgstr "Estrusore %1" - -#~ msgctxt "@label Followed by extruder selection drop-down." -#~ msgid "Print model with" -#~ msgstr "Modello di stampa con" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for language changes to have effect." -#~ msgstr "Riavviare l'applicazione per rendere effettive le modifiche della lingua." - -#~ msgctxt "@info:tooltip" -#~ msgid "Moves the camera so the model is in the center of the view when an model is selected" -#~ msgstr "Sposta la fotocamera in modo che il modello si trovi al centro della visualizzazione quando è selezionato" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete &Selection" -#~ msgstr "&Elimina selezione" - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Open File..." -#~ msgstr "Apr&i file..." - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Open Project..." -#~ msgstr "&Apri progetto..." - -#~ msgctxt "@title:window" -#~ msgid "Multiply Model" -#~ msgstr "Moltiplica modello" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &All" -#~ msgstr "S&alva tutto" - -#~ msgctxt "@title:window" -#~ msgid "Open file" -#~ msgstr "Apri file" - -#~ msgctxt "@title:window" -#~ msgid "Open workspace" -#~ msgstr "Apri spazio di lavoro" - -#~ msgctxt "@label" -#~ msgid "Hollow" -#~ msgstr "Cavo" - -#~ msgctxt "@label" -#~ msgid "No (0%) infill will leave your model hollow at the cost of low strength" -#~ msgstr "Nessun (0%) riempimento lascerà il tuo cavo modello a scapito della resistenza (bassa resistenza)" - -#~ msgctxt "@label" -#~ msgid "Light" -#~ msgstr "Leggero" - -#~ msgctxt "@label" -#~ msgid "Light (20%) infill will give your model an average strength" -#~ msgstr "Un riempimento leggero (20%) fornirà al modello una resistenza media" - -#~ msgctxt "@label" -#~ msgid "Dense" -#~ msgstr "Denso" - -#~ msgctxt "@label" -#~ msgid "Dense (50%) infill will give your model an above average strength" -#~ msgstr "Un riempimento denso (50%) fornirà al modello una resistenza superiore alla media" - -#~ msgctxt "@label" -#~ msgid "Solid" -#~ msgstr "Solido" - -#~ msgctxt "@label" -#~ msgid "Solid (100%) infill will make your model completely solid" -#~ msgstr "Un riempimento solido (100%) renderà il modello completamente pieno" - -#~ msgctxt "@label" -#~ msgid "Enable Support" -#~ msgstr "Abilita supporto" - -#~ msgctxt "@label" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Abilita le strutture di supporto. Queste strutture supportano le parti del modello con sbalzi rigidi." - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints? Read the Ultimaker Troubleshooting Guides" -#~ msgstr "Serve aiuto per migliorare le tue stampe? Leggi la Guida alla ricerca e riparazione guasti Ultimaker" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}. Please approve the access request on the printer." -#~ msgstr "Collegato alla rete a {0}. Si prega di approvare la richiesta di accesso sulla stampante." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}." -#~ msgstr "Collegato alla rete a {0}." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}. No access to control the printer." -#~ msgstr "Collegato alla rete a {0}. Nessun accesso per controllare la stampante." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job because the printer is busy. Please check the printer." -#~ msgstr "Impossibile avviare un nuovo processo di stampa perché la stampante è occupata. Controllare la stampante." - -#~ msgctxt "@label" -#~ msgid "You made changes to the following setting(s)/override(s):" -#~ msgstr "Sono state apportate modifiche alle seguenti impostazioni/esclusioni:" - -#~ msgctxt "@window:title" -#~ msgid "Switched profiles" -#~ msgstr "Profili modificati" - -#~ msgctxt "@label" -#~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?" -#~ msgstr "Si desidera trasferire le %d impostazioni/esclusioni modificate a questo profilo?" - -#~ msgctxt "@label" -#~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost." -#~ msgstr "Se si trasferiscono le nuove impostazioni, le impostazioni esistenti del profilo saranno sovrascritte. Se non si trasferiscono, tali impostazioni verranno perse." - -#~ msgctxt "@label" -#~ msgid "Cost per Meter (Approx.)" -#~ msgstr "Costo al metro (circa)" - -#~ msgctxt "@label" -#~ msgid "%1/m" -#~ msgstr "%1/m" - -#~ msgctxt "@info:tooltip" -#~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information." -#~ msgstr "In visualizzazione strato, visualizzare i 5 strati superiori o solo lo strato a livello superiore. Il rendering di 5 strati richiede più tempo, ma può fornire un maggior numero di informazioni." - -#~ msgctxt "@action:button" -#~ msgid "Display five top layers in layer view" -#~ msgstr "Visualizza i cinque strati superiori in visualizzazione strato" - -#~ msgctxt "@info:tooltip" -#~ msgid "Should only the top layers be displayed in layerview?" -#~ msgstr "In visualizzazione strato devono essere visualizzati solo gli strati superiori?" - -#~ msgctxt "@option:check" -#~ msgid "Only display top layer(s) in layer view" -#~ msgstr "In visualizzazione layer, visualizza solo il/i layer(s) superiore/i" - -#~ msgctxt "@label" -#~ msgid "Opening files" -#~ msgstr "Apertura file in corso" - -#~ msgctxt "@label" -#~ msgid "Printer Monitor" -#~ msgstr "Monitoraggio stampante" - -#~ msgctxt "@label" -#~ msgid "Temperatures" -#~ msgstr "Temperature" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Preparing to slice..." -#~ msgstr "Preparazione al sezionamento in corso..." - -#~ msgctxt "@window:title" -#~ msgid "Changes on the Printer" -#~ msgstr "Modifiche alla stampante." - -#~ msgctxt "@action:inmenu" -#~ msgid "&Duplicate Model" -#~ msgstr "&Duplica modello" - -#~ msgctxt "@label" -#~ msgid "Helper Parts:" -#~ msgstr "Parti Helper:" - -#~ msgctxt "@label" -#~ msgid "Enable printing support structures. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "Consente di stampare strutture di supporto. Ciò consentirà di costruire strutture di supporto sotto il modello per evitare cedimenti del modello o di stampare a mezz'aria." - -#~ msgctxt "@label" -#~ msgid "Don't print support" -#~ msgstr "Non stampare alcuna struttura di supporto" - -#~ msgctxt "@label" -#~ msgid "Print support using %1" -#~ msgstr "Stampa struttura di supporto utilizzando %1" - -#~ msgctxt "@label:listbox" -#~ msgid "Printer:" -#~ msgstr "Stampante:" - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profiles {0}" -#~ msgstr "Profili importati correttamente {0}" - -#~ msgctxt "@label" -#~ msgid "Scripts" -#~ msgstr "Script" - -#~ msgctxt "@label" -#~ msgid "Active Scripts" -#~ msgstr "Script attivi" - -#~ msgctxt "@label" -#~ msgid "Done" -#~ msgstr "Eseguito" - -#~ msgctxt "@item:inlistbox" -#~ msgid "English" -#~ msgstr "Inglese" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Finnish" -#~ msgstr "Finlandese" - -#~ msgctxt "@item:inlistbox" -#~ msgid "French" -#~ msgstr "Francese" - -#~ msgctxt "@item:inlistbox" -#~ msgid "German" -#~ msgstr "Tedesco" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Italian" -#~ msgstr "Italiano" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Dutch" -#~ msgstr "Olandese" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Spanish" -#~ msgstr "Spagnolo" - -#~ msgctxt "@label" -#~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?" -#~ msgstr "Desideri modificare i PrintCore e i materiali in Cura per abbinare la stampante?" - -#~ msgctxt "@label:" -#~ msgid "Print Again" -#~ msgstr "Ripeti stampa" diff --git a/resources/i18n/it_IT/fdmextruder.def.json.po b/resources/i18n/it_IT/fdmextruder.def.json.po index 6f0b31d2db..93c21ff09c 100644 --- a/resources/i18n/it_IT/fdmextruder.def.json.po +++ b/resources/i18n/it_IT/fdmextruder.def.json.po @@ -1,12 +1,9 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-08 09:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -15,6 +12,96 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: fdmextruder.def.json +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adesione" + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adesione piano di stampa" + +#: fdmextruder.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diametro" + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "Estrusore" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code label" +msgid "Extruder End G-Code" +msgstr "Codice G fine estrusore" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_abs label" +msgid "Extruder End Position Absolute" +msgstr "Assoluto posizione fine estrusore" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x label" +msgid "Extruder End Position X" +msgstr "Posizione X fine estrusore" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y label" +msgid "Extruder End Position Y" +msgstr "Posizione Y fine estrusore" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posizione X innesco estrusore" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posizione Y innesco estrusore" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posizione Z innesco estrusore" + +#: fdmextruder.def.json +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Ventola di raffreddamento stampa estrusore" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_code label" +msgid "Extruder Start G-Code" +msgstr "Codice G avvio estrusore" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_abs label" +msgid "Extruder Start Position Absolute" +msgstr "Assoluto posizione avvio estrusore" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "X posizione avvio estrusore" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "Y posizione avvio estrusore" + #: fdmextruder.def.json msgctxt "machine_settings label" msgid "Machine" @@ -26,69 +113,9 @@ msgid "Machine specific settings" msgstr "Impostazioni macchina specifiche" #: fdmextruder.def.json -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "Estrusore" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID ugello" - -#: fdmextruder.def.json -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\"." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diametro ugello" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x label" -msgid "Nozzle X Offset" -msgstr "Offset X ugello" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "La coordinata y dell’offset dell’ugello." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "Offset Y ugello" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "La coordinata y dell’offset dell’ugello." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code label" -msgid "Extruder Start G-Code" -msgstr "Codice G avvio estrusore" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_abs label" -msgid "Extruder Start Position Absolute" -msgstr "Assoluto posizione avvio 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." #: fdmextruder.def.json msgctxt "machine_extruder_start_pos_abs description" @@ -96,114 +123,9 @@ msgid "Make the extruder starting position absolute rather than relative to the msgstr "Rende la posizione di partenza estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina." #: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "X posizione avvio estrusore" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "Y posizione avvio estrusore" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code label" -msgid "Extruder End G-Code" -msgstr "Codice G fine estrusore" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_abs label" -msgid "Extruder End Position Absolute" -msgstr "Assoluto posizione fine estrusore" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x label" -msgid "Extruder End Position X" -msgstr "Posizione X fine estrusore" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y label" -msgid "Extruder End Position Y" -msgstr "Posizione Y fine estrusore" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posizione Z innesco estrusore" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Ventola di raffreddamento stampa estrusore" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adesione piano di stampa" - -#: fdmextruder.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adesione" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posizione X innesco estrusore" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posizione Y innesco estrusore" - -#: fdmextruder.def.json -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 "material description" +msgid "Material" +msgstr "Materiale" #: fdmextruder.def.json msgctxt "material label" @@ -211,24 +133,91 @@ msgid "Material" msgstr "Materiale" #: fdmextruder.def.json -msgctxt "material description" -msgid "Material" -msgstr "Materiale" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diametro ugello" #: fdmextruder.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diametro" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID ugello" #: fdmextruder.def.json -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 "machine_nozzle_offset_x label" +msgid "Nozzle X Offset" +msgstr "Offset X ugello" -#~ msgctxt "machine_extruder_start_code description" -#~ msgid "Start g-code to execute whenever turning the extruder on." -#~ msgstr "Codice G di avvio da eseguire ogniqualvolta si accende l’estrusore." +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "Offset Y ugello" -#~ msgctxt "machine_extruder_end_code description" -#~ msgid "End g-code to execute whenever turning the extruder off." -#~ msgstr "Codice G di fine da eseguire ogniqualvolta si spegne l’estrusore." +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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\"." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "La coordinata y dell’offset dell’ugello." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "La coordinata y dell’offset dell’ugello." + +#: fdmextruder.def.json +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." diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index 10ee6bd2b5..d024322adc 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -1,12 +1,9 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-28 11:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -16,1497 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: fdmprinter.def.json -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Macchina" +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." #: fdmprinter.def.json -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Impostazioni macchina specifiche" +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." #: fdmprinter.def.json -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Tipo di macchina" - -#: fdmprinter.def.json -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Il nome del modello della stampante 3D in uso." - -#: fdmprinter.def.json -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Mostra varianti macchina" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "Codice G avvio" - -#: fdmprinter.def.json -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 \n" -"." - -#: fdmprinter.def.json -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "Codice G fine" - -#: fdmprinter.def.json -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 \n" -"." - -#: fdmprinter.def.json -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID materiale" - -#: fdmprinter.def.json -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "Il GUID del materiale. È impostato automaticamente." - -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diametro" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Attendi il riscaldamento del piano di stampa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Attendi il riscaldamento dell’ugello" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Includi le temperature del materiale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Includi temperatura piano di stampa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Larghezza macchina" - -#: fdmprinter.def.json -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "La larghezza (direzione X) dell’area stampabile." - -#: fdmprinter.def.json -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Profondità macchina" - -#: fdmprinter.def.json -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "La profondità (direzione Y) dell’area stampabile." - -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Altezza macchina" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "L’altezza (direzione Z) dell’area stampabile." - -#: fdmprinter.def.json -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Forma del piano di stampa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Rettangolare" - -#: fdmprinter.def.json -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Ellittica" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Materiale piano di stampa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Cristallo" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Alluminio" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Piano di stampa riscaldato" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "È dotato della stabilizzazione della temperatura del volume di stampa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "Tenere sempre nota dello strumento attivo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Origine del centro" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Numero di estrusori" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Numero di estrusori abilitati" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Diametro esterno ugello" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Lunghezza ugello" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Angolo ugello" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Lunghezza della zona di riscaldamento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Abilita controllo temperatura ugello" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Velocità di riscaldamento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Velocità di raffreddamento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Tempo minimo temperatura di standby" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Versione codice G" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Il tipo di codice G da generare." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (volumetrica)" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -#: fdmprinter.def.json -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Retrazione firmware" - -#: fdmprinter.def.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 "Specifica se usare comandi di retrazione firmware (G10/G11) anziché utilizzare la proprietà E nei comandi G1 per retrarre il materiale." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Condivisione del riscaldatore da parte degli estrusori" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Estrusori condividono ugello" - -#: fdmprinter.def.json -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'." - -#: fdmprinter.def.json -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Retrazione iniziale ugello condivisa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Aree non consentite" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Aree ugello non consentite" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Poligono testina macchina e ventola" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Altezza gantry" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID ugello" - -#: fdmprinter.def.json -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\"." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diametro ugello" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Offset con estrusore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posizione Z innesco estrusore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Posizione assoluta di innesco estrusore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Velocità massima X" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Velocità massima Y" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Velocità massima Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Velocità massima E" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "Indica la velocità massima del filamento." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Accelerazione massima X" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Accelerazione massima Y" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Accelerazione massima Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Accelerazione massima filamento" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Indica l’accelerazione massima del motore del filamento." - -#: fdmprinter.def.json -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Accelerazione predefinita" - -#: fdmprinter.def.json -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "Indica l’accelerazione predefinita del movimento della testina di stampa." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Jerk X-Y predefinito" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Jerk Z predefinito" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Jerk filamento predefinito" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Indica il jerk predefinito del motore del filamento." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Passi per millimetro (X)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Passi per millimetro (Y)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Passi per millimetro (Z)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Passi per millimetro (E)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Endstop X in direzione positiva" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Endstop Y in direzione positiva" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Endstop Z in direzione positiva" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Velocità di alimentazione minima" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diametro ruota del tirafilo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "resolution label" -msgid "Quality" -msgstr "Qualità" - -#: fdmprinter.def.json -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)" - -#: fdmprinter.def.json -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Altezza dello strato" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Altezza dello strato iniziale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "line_width label" -msgid "Line Width" -msgstr "Larghezza della linea" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Larghezza delle linee perimetrali" - -#: fdmprinter.def.json -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Indica la larghezza di una singola linea perimetrale." - -#: fdmprinter.def.json -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Larghezza delle linee della parete esterna" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Larghezza delle linee della parete interna" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Larghezza delle linee superiore/inferiore" - -#: fdmprinter.def.json -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Indica la larghezza di una singola linea superiore/inferiore." - -#: fdmprinter.def.json -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Larghezza delle linee di riempimento" - -#: fdmprinter.def.json -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Indica la larghezza di una singola linea di riempimento." - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Larghezza delle linee dello skirt/brim" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Larghezza delle linee di supporto" - -#: fdmprinter.def.json -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Indica la larghezza di una singola linea di supporto." - -#: fdmprinter.def.json -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Larghezza della linea dell’interfaccia di supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Larghezza delle linee di supporto superiori" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Larghezza della linea di supporto inferiore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Larghezza della linea della torre di innesco" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Larghezza linea strato iniziale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "shell label" -msgid "Walls" -msgstr "Pareti" - -#: fdmprinter.def.json -msgctxt "shell description" -msgid "Shell" -msgstr "Guscio" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Estrusore pareti" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Estrusore parete esterna" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Estrusore parete interna" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Spessore delle pareti" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Numero delle linee perimetrali" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Lunghezza transizione parete" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Conteggio distribuzione parete" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Angolo di soglia di transizione parete" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Distanza di filtro transizione parete" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Margine filtro di transizione parete" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Distanza del riempimento parete esterna" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Inserto parete esterna" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Ottimizzazione sequenza di stampa pareti" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Ordinamento parete" - -#: fdmprinter.def.json -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." -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." - -#: fdmprinter.def.json -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "Dall'interno all'esterno" - -#: fdmprinter.def.json -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "Dall'esterno all'interno" - -#: fdmprinter.def.json -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Parete supplementare alternativa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Larghezza minima della linea perimetrale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Larghezza minima della linea perimetrale pari" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold label" -msgid "Split Middle Line Threshold" -msgstr "Dividi soglia linea intermedia" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "La larghezza linea più piccola, come un fattore della larghezza linea normale, al di sopra della quale la linea intermedia (se una esiste) verrà divisa in due. Ridurre questa impostazione per utilizzare un numero maggiore di linee più sottili. Incrementare per utilizzare un numero minore di linee più larghe. Si noti che questo vale, come se, l'intera forma debba essere riempita con parete. Pertanto, in questo contesto la linea intermedia fa riferimento alla linea intermedia dell'oggetto tra due spigoli esterni, anche se invece della parete la stampa contiene un riempimento o un (altro) rivestimento esterno." - -#: fdmprinter.def.json -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Larghezza minima della linea perimetrale dispari" - -#: fdmprinter.def.json -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 perimetrale dispari viene calcolata come 2 * Larghezza minima della linea perimetrale pari," - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold label" -msgid "Add Middle Line Threshold" -msgstr "Aggiungi soglia linea intermedia" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "La larghezza linea più piccola, come un fattore della larghezza linea normale, sopra la quale verrà aggiunta una linea intermedia (se una non esisteva già). Ridurre questa impostazione per utilizzare un numero maggiore di linee più sottili. Incrementare per utilizzare un numero minore di linee più larghe. Si noti che questo vale, come se, l'intera forma debba essere riempita con parete. Pertanto, in questo contesto la linea intermedia fa riferimento alla linea intermedia dell'oggetto tra due spigoli esterni, anche se invece della parete la stampa contiene un riempimento o un (altro) rivestimento esterno." - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Stampa pareti sottili" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Dimensioni minime della feature" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Larghezza minima della linea perimetrale sottile" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Espansione orizzontale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Espansione orizzontale dello strato iniziale" - -#: fdmprinter.def.json -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\"." - -#: fdmprinter.def.json -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Espansione orizzontale dei fori" - -#: fdmprinter.def.json -msgctxt "hole_xy_offset description" -msgid "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." -msgstr "Entità di offset applicato a tutti i fori di ciascuno strato. Valori positivi aumentano le dimensioni dei fori, mentre valori negativi le riducono." - -#: fdmprinter.def.json -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Allineamento delle giunzioni a Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Specificato dall’utente" - -#: fdmprinter.def.json -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Il più breve" - -#: fdmprinter.def.json -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Casuale" - -#: fdmprinter.def.json -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Angolo più acuto" - -#: fdmprinter.def.json -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Posizione della cucitura in Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Indietro a sinistra" - -#: fdmprinter.def.json -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Indietro" - -#: fdmprinter.def.json -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Indietro a destra" - -#: fdmprinter.def.json -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Destra" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Avanti a destra" - -#: fdmprinter.def.json -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Avanti" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Avanti a sinistra" - -#: fdmprinter.def.json -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Sinistra" - -#: fdmprinter.def.json -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Giunzione Z X" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Giunzione Z Y" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Preferenze angolo giunzione" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Nessuno" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Nascondi giunzione" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Esponi giunzione" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Nascondi o esponi giunzione" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Occultamento intelligente" - -#: fdmprinter.def.json -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Riferimento giunzione Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Superiore / Inferiore" - -#: fdmprinter.def.json -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Superiore / Inferiore" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Estrusore rivestimento superficie superiore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Strati di rivestimento superficie superiore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Estrusore superiore/inferiore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Spessore dello strato superiore/inferiore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Spessore dello strato superiore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Strati superiori" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Spessore degli strati inferiori" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Strati inferiori" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Layer inferiori iniziali" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Configurazione dello strato superiore/inferiore" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Indica la configurazione degli strati superiori/inferiori." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Linee" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Strato iniziale configurazione inferiore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Linee" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concentriche" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Collega poligoni superiori/inferiori" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Ordine superiore/inferiore monotonico" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Direzioni delle linee superiori/inferiori" +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)." #: fdmprinter.def.json msgctxt "skin_angles description" @@ -1514,379 +33,24 @@ msgid "A list of integer line directions to use when the top/bottom layers use t 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)." #: fdmprinter.def.json -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Nessun rivest. est. negli interstizi a Z" +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." #: fdmprinter.def.json -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 "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)." #: fdmprinter.def.json -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Numero di pareti di rivestimento esterno supplementari" +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)." #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Abilita stiratura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Stiramento del solo strato più elevato" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Configurazione di stiratura" - -#: fdmprinter.def.json -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Configurazione utilizzata per la stiratura della superficie superiore." - -#: fdmprinter.def.json -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrica" - -#: fdmprinter.def.json -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Ordine di stiratura monotonico" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Spaziatura delle linee di stiratura" - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "Distanza tra le linee di stiratura." - -#: fdmprinter.def.json -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Flusso di stiratura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Inserto di stiratura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Velocità di stiratura" - -#: fdmprinter.def.json -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "Velocità alla quale passare sopra la superficie superiore." - -#: fdmprinter.def.json -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Accelerazione di stiratura" - -#: fdmprinter.def.json -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "L’accelerazione con cui viene effettuata la stiratura." - -#: fdmprinter.def.json -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Jerk stiratura" - -#: fdmprinter.def.json -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Indica la variazione della velocità istantanea massima durante la stiratura." - -#: fdmprinter.def.json -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Percentuale di sovrapposizione del rivestimento esterno" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Sovrapposizione del rivestimento esterno" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Larghezza rimozione rivestimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Larghezza rimozione rivestimento superiore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Larghezza rimozione rivestimento inferiore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Distanza prolunga rivestimento esterno" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Distanza prolunga rivestimento superiore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Distanza prolunga rivestimento inferiore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Angolo massimo rivestimento esterno per prolunga" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Larghezza minima rivestimento esterno per prolunga" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill label" -msgid "Infill" -msgstr "Riempimento" - -#: fdmprinter.def.json -msgctxt "infill description" -msgid "Infill" -msgstr "Riempimento" - -#: fdmprinter.def.json -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Estrusore riempimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Densità del riempimento" - -#: fdmprinter.def.json -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Regola la densità del riempimento della stampa." - -#: fdmprinter.def.json -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Distanza tra le linee di riempimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Configurazione di riempimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Griglia" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Linee" - -#: fdmprinter.def.json -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Triangoli" - -#: fdmprinter.def.json -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Tri-esagonale" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Cubo" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Suddivisione in cubi" - -#: fdmprinter.def.json -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Ottagonale" - -#: fdmprinter.def.json -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Quarto di cubo" - -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" - -#: fdmprinter.def.json -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Incrociata" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Incrociata 3D" - -#: fdmprinter.def.json -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Fulmine" - -#: fdmprinter.def.json -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Collegamento delle linee di riempimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Collega poligoni di riempimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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)." #: fdmprinter.def.json msgctxt "infill_angles description" @@ -1894,49 +58,44 @@ msgid "A list of integer line directions to use. Elements from the list are used 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)." #: fdmprinter.def.json -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." #: fdmprinter.def.json -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." #: fdmprinter.def.json -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Offset Y riempimento" +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "Una parte completamente racchiusa all'interno di un'altra parte può generare un brim esterno che tocca l'interno dell'altra parte. Questo rimuove tutti i brim entro questa distanza dai fori interni." #: fdmprinter.def.json -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" #: fdmprinter.def.json -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" #: fdmprinter.def.json -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" #: fdmprinter.def.json -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" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "infill_wall_line_count description" @@ -1948,284 +107,9 @@ msgstr "" "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." #: fdmprinter.def.json -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Guscio suddivisione in cubi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Percentuale di sovrapposizione del riempimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Sovrapposizione del riempimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Distanza del riempimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Spessore dello strato di riempimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Fasi di riempimento graduale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Altezza fasi di riempimento graduale" - -#: fdmprinter.def.json -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à." - -#: fdmprinter.def.json -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Riempimento prima delle pareti" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Area minima riempimento" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Supporto riempimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Angolo di sbalzo del riempimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Spessore del supporto del bordo del rivestimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Layer di supporto del bordo del rivestimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Angolo di supporto riempimento fulmine" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Angolo di sbalzo riempimento fulmine" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Angolo eliminazione riempimento fulmine" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Angolo di raddrizzatura riempimento fulmine" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material label" -msgid "Material" -msgstr "Materiale" - -#: fdmprinter.def.json -msgctxt "material description" -msgid "Material" -msgstr "Materiale" - -#: fdmprinter.def.json -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Temperatura di stampa preimpostata" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatura volume di stampa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Temperatura di stampa" - -#: fdmprinter.def.json -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Indica la temperatura usata per la stampa." - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Temperatura di stampa Strato iniziale" - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Indica la temperatura usata per la stampa del primo strato. Impostare a 0 per disabilitare la manipolazione speciale dello strato iniziale." - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Temperatura di stampa iniziale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Temperatura di stampa finale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Modificatore della velocità di raffreddamento estrusione" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Temperatura piano di stampa preimpostata" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Temperatura piano di stampa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Temperatura piano di stampa Strato iniziale" - -#: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" @@ -2233,1924 +117,19 @@ msgid "Adhesion Tendency" msgstr "Tendenza di adesione" #: fdmprinter.def.json -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." #: fdmprinter.def.json -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." #: fdmprinter.def.json -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Energia superficiale." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Fattore di scala per la compensazione della contrazione" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Fattore di scala orizzontale per la compensazione della contrazione" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Fattore di scala verticale per la compensazione della contrazione" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Materiale cristallino" - -#: fdmprinter.def.json -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)?" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Posizione retratta anti fuoriuscita di materiale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Velocità di retrazione anti fuoriuscita del materiale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Posizione di retrazione prima della rottura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Velocità di retrazione prima della rottura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatura di preparazione alla rottura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Posizione di retrazione per la rottura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Velocità di retrazione per la rottura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Temperatura di rottura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Velocità di svuotamento dello scarico" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Lunghezza di svuotamento dello scarico" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Velocità di svuotamento di fine filamento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Lunghezza di svuotamento di fine filamento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Durata di posizionamento massima" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Fattore di spostamento senza carico" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flow label" -msgid "Flow" -msgstr "Flusso" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Flusso della parete" - -#: fdmprinter.def.json -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Compensazione del flusso sulle linee perimetrali." - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Flusso della parete esterna" - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Compensazione del flusso sulla linea perimetrale più esterna." - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Flusso pareti interne" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Flusso superiore/inferiore" - -#: fdmprinter.def.json -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Compensazione del flusso sulle linee superiore/inferiore." - -#: fdmprinter.def.json -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Flusso rivestimento esterno superficie superiore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Flusso di riempimento" - -#: fdmprinter.def.json -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Compensazione del flusso sulle linee di riempimento." - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Flusso dello skirt/brim" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Flusso del supporto" - -#: fdmprinter.def.json -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Compensazione del flusso sulle linee di supporto." - -#: fdmprinter.def.json -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Flusso interfaccia di supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Flusso supporto superiore" - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Compensazione del flusso sulle linee di supporto superiore." - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Flusso supporto inferiore" - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Compensazione del flusso sulle linee di supporto inferiore." - -#: fdmprinter.def.json -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Flusso torre di innesco" - -#: fdmprinter.def.json -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Compensazione del flusso sulle linee della torre di innesco." - -#: fdmprinter.def.json -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Flusso dello strato iniziale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Temperatura di Standby" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed label" -msgid "Speed" -msgstr "Velocità" - -#: fdmprinter.def.json -msgctxt "speed description" -msgid "Speed" -msgstr "Velocità" - -#: fdmprinter.def.json -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Velocità di stampa" - -#: fdmprinter.def.json -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Indica la velocità alla quale viene effettuata la stampa." - -#: fdmprinter.def.json -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Velocità di riempimento" - -#: fdmprinter.def.json -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Indica la velocità alla quale viene stampato il riempimento." - -#: fdmprinter.def.json -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Velocità di stampa della parete" - -#: fdmprinter.def.json -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Indica la velocità alla quale vengono stampate le pareti." - -#: fdmprinter.def.json -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Velocità di stampa della parete esterna" - -#: fdmprinter.def.json -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à." - -#: fdmprinter.def.json -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Velocità di stampa della parete interna" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Velocità del rivestimento superficie" - -#: fdmprinter.def.json -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "Indica la velocità di stampa degli strati superiori." - -#: fdmprinter.def.json -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Velocità di stampa delle parti superiore/inferiore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Velocità di stampa del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Velocità di riempimento del supporto" - -#: fdmprinter.def.json -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à." - -#: fdmprinter.def.json -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Velocità interfaccia supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Velocità di stampa della parte superiore (tetto) del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Velocità di stampa della parte inferiore del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Velocità della torre di innesco" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Velocità degli spostamenti" - -#: fdmprinter.def.json -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Indica la velocità alla quale vengono effettuati gli spostamenti." - -#: fdmprinter.def.json -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Velocità di stampa dello strato iniziale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Velocità di stampa strato iniziale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Velocità di spostamento dello strato iniziale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Velocità dello skirt/brim" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Velocità di sollevamento Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Numero di strati stampati a velocità inferiore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Rapporto di equalizzazione del flusso" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Abilita controllo accelerazione" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Accelerazione di stampa" - -#: fdmprinter.def.json -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "L’accelerazione con cui avviene la stampa." - -#: fdmprinter.def.json -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Accelerazione riempimento" - -#: fdmprinter.def.json -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "L’accelerazione con cui viene stampato il riempimento." - -#: fdmprinter.def.json -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Accelerazione parete" - -#: fdmprinter.def.json -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Indica l’accelerazione alla quale vengono stampate le pareti." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Accelerazione parete esterna" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Accelerazione parete interna" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Accelerazione del rivestimento superficie superiore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Accelerazione strato superiore/inferiore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Accelerazione supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Accelerazione riempimento supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Accelerazione interfaccia supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Accelerazione parte superiore del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Accelerazione parte inferiore del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Accelerazione della torre di innesco" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Accelerazione spostamenti" - -#: fdmprinter.def.json -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Indica l’accelerazione alla quale vengono effettuati gli spostamenti." - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Accelerazione dello strato iniziale" - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Indica l’accelerazione dello strato iniziale." - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Accelerazione di stampa strato iniziale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Accelerazione spostamenti dello strato iniziale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Accelerazione skirt/brim" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Abilita controllo jerk" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Jerk stampa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Jerk riempimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Jerk parete" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Jerk parete esterna" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Jerk parete interna" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Jerk del rivestimento superficie superiore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Jerk strato superiore/inferiore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Jerk supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Jerk riempimento supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Jerk interfaccia supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Jerk parte superiore del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Jerk parte inferiore del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Jerk della torre di innesco" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Jerk spostamenti" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Jerk dello strato iniziale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Jerk di stampa strato iniziale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Jerk spostamenti dello strato iniziale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Jerk dello skirt/brim" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel label" -msgid "Travel" -msgstr "Spostamenti" - -#: fdmprinter.def.json -msgctxt "travel description" -msgid "travel" -msgstr "spostamenti" - -#: fdmprinter.def.json -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Abilitazione della retrazione" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Retrazione al cambio strato" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Distanza di retrazione" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Velocità di retrazione" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Velocità di retrazione" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Velocità di innesco dopo la retrazione" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Entità di innesco supplementare dopo la retrazione" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Distanza minima di retrazione" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Numero massimo di retrazioni" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Finestra di minima distanza di estrusione" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "limit_support_retractions label" -msgid "Limit Support Retractions" -msgstr "Limitazione delle retrazioni del supporto" - -#: fdmprinter.def.json -msgctxt "limit_support_retractions description" -msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -msgstr "Omettere la retrazione negli spostamenti da un supporto ad un altro in linea retta. L'abilitazione di questa impostazione riduce il tempo di stampa, ma può comportare un'eccessiva produzione di filamenti all'interno della struttura del supporto." - -#: fdmprinter.def.json -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Modalità Combing" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Disinserita" - -#: fdmprinter.def.json -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Tutto" - -#: fdmprinter.def.json -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Non su superficie esterna" - -#: fdmprinter.def.json -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Non nel rivestimento" - -#: fdmprinter.def.json -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Nel riempimento" - -#: fdmprinter.def.json -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Massima distanza di combing senza retrazione" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Retrazione prima della parete esterna" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Aggiramento delle parti stampate durante gli spostamenti" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Aggiramento dei supporti durante gli spostamenti" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Distanza di aggiramento durante gli spostamenti" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "Avvio strato X" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Avvio strato Y" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Z Hop durante la retrazione" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Z Hop solo su parti stampate" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Altezza Z Hop" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Z Hop dopo cambio estrusore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Z Hop dopo cambio altezza estrusore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cooling label" -msgid "Cooling" -msgstr "Raffreddamento" - -#: fdmprinter.def.json -msgctxt "cooling description" -msgid "Cooling" -msgstr "Raffreddamento" - -#: fdmprinter.def.json -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Abilitazione raffreddamento stampa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Velocità della ventola" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Velocità regolare della ventola" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Velocità massima della ventola" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Soglia velocità regolare/massima della ventola" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Velocità iniziale della ventola" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Velocità regolare della ventola in altezza" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Velocità regolare della ventola in corrispondenza dello strato" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Tempo minimo per strato" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Velocità minima" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Sollevamento della testina" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support label" -msgid "Support" -msgstr "Supporto" - -#: fdmprinter.def.json -msgctxt "support description" -msgid "Support" -msgstr "Supporto" - -#: fdmprinter.def.json -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Generazione supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Estrusore del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Estrusore riempimento del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Estrusore del supporto primo strato" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Estrusore interfaccia del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Estrusore parte superiore del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Estrusore parte inferiore del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Struttura di supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normale" - -#: fdmprinter.def.json -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Albero" - -#: fdmprinter.def.json -msgctxt "support_tree_angle label" -msgid "Tree Support Branch Angle" -msgstr "Angolo ramo supporto ad albero" - -#: fdmprinter.def.json -msgctxt "support_tree_angle description" -msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "L’angolo dei rami. Utilizzare un angolo minore per renderli più verticali e più stabili. Utilizzare un angolo maggiore per avere una portata maggiore." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance label" -msgid "Tree Support Branch Distance" -msgstr "Distanza ramo supporto ad albero" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance description" -msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -msgstr "La distanza tra i rami necessaria quando toccano il modello. Una distanza ridotta causa il contatto del supporto ad albero con il modello in più punti, generando migliore sovrapposizione ma rendendo più difficoltosa la rimozione del supporto." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter label" -msgid "Tree Support Branch Diameter" -msgstr "Diametro ramo supporto ad albero" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter_angle label" -msgid "Tree Support Branch Diameter Angle" -msgstr "Angolo diametro ramo supporto ad albero" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution label" -msgid "Tree Support Collision Resolution" -msgstr "Risoluzione collisione supporto ad albero" - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution description" -msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -msgstr "Risoluzione per calcolare le collisioni per evitare di colpire il modello. L’impostazione a un valore basso genera alberi più accurati che si rompono meno sovente, ma aumenta notevolmente il tempo di sezionamento." - -#: fdmprinter.def.json -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Posizionamento supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Contatto con il Piano di Stampa" - -#: fdmprinter.def.json -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "In Tutti i Possibili Punti" - -#: fdmprinter.def.json -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Angolo di sbalzo del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Configurazione del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Linee" - -#: fdmprinter.def.json -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Griglia" - -#: fdmprinter.def.json -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Triangoli" - -#: fdmprinter.def.json -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" - -#: fdmprinter.def.json -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Incrociata" - -#: fdmprinter.def.json -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" - -#: fdmprinter.def.json -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Numero delle linee perimetrali supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Collegamento linee supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Collegamento Zig Zag supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Densità del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Distanza tra le linee del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Distanza tra le linee del supporto dello strato iniziale" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Direzione delle linee di riempimento supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Abilitazione brim del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Larghezza del brim del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Numero di linee del brim del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Distanza Z supporto" - -#: fdmprinter.def.json -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. This value is rounded up to a multiple of the layer height." -msgstr "È la distanza dalla parte superiore/inferiore della struttura di supporto alla stampa. Questa distanza fornisce lo spazio per rimuovere i supporti dopo aver stampato il modello. Questo valore viene arrotondato per eccesso a un multiplo dell’altezza strato." - -#: fdmprinter.def.json -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Distanza superiore supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Distanza inferiore supporto" - -#: fdmprinter.def.json -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "È la distanza tra la stampa e la parte inferiore del supporto." - -#: fdmprinter.def.json -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Distanza X/Y supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Priorità distanza supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y esclude Z" - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z esclude X/Y" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Distanza X/Y supporto minima" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Altezza gradini supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Larghezza massima gradino supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Angolo di pendenza minimo gradini supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Distanza giunzione supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Espansione orizzontale supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Spessore dello strato di riempimento di supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Fasi di riempimento graduale del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Altezza fasi di riempimento graduale del supporto" - -#: fdmprinter.def.json -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à." - -#: fdmprinter.def.json -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Area minima supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Abilitazione interfaccia supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Abilitazione irrobustimento parte superiore (tetto) del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Abilitazione parte inferiore supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Spessore interfaccia supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Spessore parte superiore (tetto) del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Spessore parte inferiore del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Risoluzione interfaccia supporto" - -#: fdmprinter.def.json -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 si controlla dove si trova il modello sopra e sotto il supporto, procedere ad intervalli di altezza prestabilita. Valori inferiori causeranno un sezionamento più lento, mentre valori più alti potrebbero causare la stampa del supporto normale in alcuni punti in cui dovrebbe esserci un'interfaccia di supporto." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "support_interface_density description" @@ -4158,898 +137,19 @@ msgid "Adjusts the density of the roofs and floors of the support structure. A h 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." #: fdmprinter.def.json -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Densità parte superiore (tetto) 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." #: fdmprinter.def.json -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 "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." #: fdmprinter.def.json -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Distanza tra le linee della parte superiore (tetto) del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Densità parte inferiore del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Distanza della linea di supporto inferiore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Configurazione interfaccia supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Linee" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Griglia" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Triangoli" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Configurazione della parte superiore (tetto) del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Linee" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Griglia" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Triangoli" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Configurazione della parte inferiore del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Linee" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Griglia" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Triangoli" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Area minima interfaccia supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Area minima parti superiori supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Area minima parti inferiori supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Espansione orizzontale interfaccia supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Espansione orizzontale parti superiori supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Espansione orizzontale parti inferiori supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Direzioni della linea dell'interfaccia di supporto" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Direzioni delle linee di supporto superiori" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Direzioni della larghezza della linea di supporto inferiore" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Override velocità della ventola" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Velocità della ventola del rivestimento esterno supportato" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Utilizzo delle torri" - -#: fdmprinter.def.json -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'." - -#: fdmprinter.def.json -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Diametro della torre" - -#: fdmprinter.def.json -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "Corrisponde al diametro di una torre speciale." - -#: fdmprinter.def.json -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Diametro supportato dalla torre" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Angolazione della parte superiore (tetto) della torre" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Maglia supporto di discesa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "La scena è dotata di maglie di supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adesione piano di stampa" - -#: fdmprinter.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adesione" - -#: fdmprinter.def.json -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Abilitazione blob di innesco" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posizione X innesco estrusore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posizione Y innesco estrusore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Tipo di adesione piano di stampa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Skirt" - -#: fdmprinter.def.json -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Brim" - -#: fdmprinter.def.json -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" - -#: fdmprinter.def.json -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Nessuno" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Estrusore adesione piano di stampa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Estrusore skirt/brim" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Estrusore della base del raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Estrusore intermedio del raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Estrusore superiore del raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Numero di linee dello skirt" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Distanza dello skirt" - -#: fdmprinter.def.json -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 "" -"Indica la distanza orizzontale tra lo skirt ed il primo strato della stampa.\n" -"Questa è la distanza minima. Più linee di skirt aumenteranno tale distanza." - -#: fdmprinter.def.json -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Lunghezza minima dello skirt/brim" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Larghezza del brim" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Numero di linee del brim" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Distanza del Brim" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Brim in sostituzione del supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Brim solo sull’esterno" - -#: fdmprinter.def.json -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 "Stampa il brim solo sull’esterno del modello. Questo riduce la quantità del brim che si deve rimuovere in seguito, mentre non riduce particolarmente l’adesione al piano." - -#: fdmprinter.def.json -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Margine extra del raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Smoothing raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Traferro del raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Z Sovrapposizione Primo Strato" - -#: fdmprinter.def.json -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 "Effettua il primo e secondo strato di sovrapposizione modello nella direzione Z per compensare il filamento perso nel traferro. Tutti i modelli sopra il primo strato del modello saranno spostati verso il basso di questa quantità." - -#: fdmprinter.def.json -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Strati superiori del raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Spessore dello strato superiore del raft" - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "È lo spessore degli strati superiori del raft." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Larghezza delle linee superiori del raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Spaziatura superiore del raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Strati intermedi del raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Spessore dello strato intermedio del raft" - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "È lo spessore dello strato intermedio del raft." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Larghezza delle linee dello strato intermedio del raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Spaziatura dello strato intermedio del raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Spessore della base del raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Larghezza delle linee dello strato di base del raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Spaziatura delle linee dello strato di base del raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Velocità di stampa del raft" - -#: fdmprinter.def.json -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "Indica la velocità alla quale il raft è stampato." - -#: fdmprinter.def.json -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Velocità di stampa parte superiore del raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Velocità di stampa raft intermedio" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Velocità di stampa della base del raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Accelerazione di stampa del raft" - -#: fdmprinter.def.json -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "Indica l’accelerazione con cui viene stampato il raft." - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Accelerazione di stampa parte superiore del raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Accelerazione di stampa raft intermedio" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Accelerazione di stampa della base del raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Jerk stampa del raft" - -#: fdmprinter.def.json -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "Indica il jerk con cui viene stampato il raft." - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Jerk di stampa parte superiore del raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Jerk di stampa raft intermedio" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Jerk di stampa della base del raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Velocità della ventola per il raft" - -#: fdmprinter.def.json -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Indica la velocità di rotazione della ventola per il raft." - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Velocità della ventola per la parte superiore del raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Velocità della ventola per il raft intermedio" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Velocità della ventola per la base del raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Doppia estrusione" - -#: fdmprinter.def.json -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Indica le impostazioni utilizzate per la stampa con estrusori multipli." - -#: fdmprinter.def.json -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Abilitazione torre di innesco" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Dimensioni torre di innesco" - -#: fdmprinter.def.json -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "Indica la larghezza della torre di innesco." - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Volume minimo torre di innesco" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Posizione X torre di innesco" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Posizione Y torre di innesco" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "prime_tower_wipe_enabled description" @@ -5057,244 +157,14 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "Dopo la stampa della torre di innesco con un ugello, pulisce il materiale fuoriuscito dall’altro ugello sulla torre di innesco." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Brim torre di innesco" +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." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Le torri di innesco potrebbero richiedere un'adesione supplementare fornita da un bordo (brim), anche se il modello non lo prevede. Attualmente non può essere utilizzato con il tipo di adesione 'Raft'." - -#: fdmprinter.def.json -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Abilitazione del riparo materiale fuoriuscito" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Angolo del riparo materiale fuoriuscito" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Distanza del riparo materiale fuoriuscito" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Distanza di retrazione cambio ugello" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Velocità di retrazione cambio ugello" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Velocità di retrazione cambio ugello" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Velocità innesco cambio ugello" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Quantità di materiale extra della Prime Tower, al cambio ugello" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Correzioni delle maglie" - -#: fdmprinter.def.json -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Rendere le maglie più indicate alla stampa 3D." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Unione dei volumi in sovrapposizione" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Rimozione di tutti i fori" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Ricucitura completa dei fori" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Mantenimento delle superfici scollegate" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Sovrapposizione maglie" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Rimuovi intersezione maglie" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Rimozione maglie alternate" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Rimuovere i primi strati vuoti" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Risoluzione massima" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Risoluzione massima di spostamento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Deviazione massima" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Deviazione massima dell'area di estrusione" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Modalità speciali" - -#: fdmprinter.def.json -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Modi non tradizionali di stampare i modelli." - -#: fdmprinter.def.json -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Sequenza di stampa" - -#: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "print_sequence option all_at_once" @@ -5302,1273 +172,19 @@ msgid "All at Once" msgstr "Tutti contemporaneamente" #: fdmprinter.def.json -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Uno alla volta" +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)" #: fdmprinter.def.json -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Maglia di riempimento" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Parete supplementare alternativa" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Classificazione dell'elaborazione delle maglie" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Ritaglio maglia" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Stampo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Larghezza minimo dello stampo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Altezza parte superiore dello stampo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Angolo stampo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Supporto maglia" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Maglia anti-sovrapposizione" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Modalità superficie" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normale" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Superficie" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Entrambi" - -#: fdmprinter.def.json -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Stampa del contorno esterno con movimento spiraliforme" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Levigazione dei profili con movimento spiraliforme" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Estrusione relativa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "experimental label" -msgid "Experimental" -msgstr "Sperimentale" - -#: fdmprinter.def.json -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Funzionalità che non sono state ancora precisate completamente." - -#: fdmprinter.def.json -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Tolleranza di sezionamento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Intermedia" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Esclusiva" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusiva" - -#: fdmprinter.def.json -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Larghezza linea rivestimento superficie superiore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Configurazione del rivestimento superficie superiore" - -#: fdmprinter.def.json -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "Configurazione degli strati superiori." - -#: fdmprinter.def.json -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Linee" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrica" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -#: fdmprinter.def.json -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Ordine superficie superiore monotonico" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Direzioni linea rivestimento superficie superiore" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Ottimizzazione spostamenti riempimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature label" -msgid "Auto Temperature" -msgstr "Temperatura automatica" - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature description" -msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -msgstr "Modifica automaticamente la temperatura per ciascuno strato con la velocità media del flusso per tale strato." - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Grafico della temperatura del flusso" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Circonferenza minima dei poligoni" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Rottura del supporto in pezzi di grandi dimensioni" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Dimensioni frammento supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Conteggio linee di rottura supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Abilitazione del riparo paravento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Distanza X/Y del riparo paravento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Limitazione del riparo paravento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Piena altezza" - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Limitazione in altezza" - -#: fdmprinter.def.json -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Altezza del riparo paravento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Rendi stampabile lo sbalzo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Massimo angolo modello" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Area foro di sbalzo massima" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Abilitazione della funzione di Coasting" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Volume di Coasting" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Volume minimo prima del Coasting" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Velocità di Coasting" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Dimensioni cavità 3D incrociata" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Immagine di densità del riempimento incrociato" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Immagine di densità del riempimento incrociato per il supporto" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Abilitazione del supporto conico" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Angolo del supporto conico" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Larghezza minima del supporto conico" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Rivestimento esterno incoerente (fuzzy)" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Fuzzy Skin solo all'esterno" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Spessore del rivestimento esterno incoerente (fuzzy)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Densità del rivestimento esterno incoerente (fuzzy)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Distanza dei punti del rivestimento incoerente (fuzzy)" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Offset massimo dell'estrusione di compensazione del flusso" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Fattore di compensazione del flusso" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wireframe_enabled label" -msgid "Wire Printing" -msgstr "Funzione Wire Printing (WP)" - -#: fdmprinter.def.json -msgctxt "wireframe_enabled description" -msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -msgstr "Consente di stampare solo la superficie esterna come una struttura di linee, realizzando una stampa \"sospesa nell'aria\". Questa funzione si realizza mediante la stampa orizzontale dei contorni del modello con determinati intervalli Z che sono collegati tramite linee che si estendono verticalmente verso l'alto e diagonalmente verso il basso." - -#: fdmprinter.def.json -msgctxt "wireframe_height label" -msgid "WP Connection Height" -msgstr "Altezza di connessione WP" - -#: fdmprinter.def.json -msgctxt "wireframe_height description" -msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -msgstr "Indica l'altezza delle linee che si estendono verticalmente verso l'alto e diagonalmente verso il basso tra due parti orizzontali. Questo determina la densità complessiva della struttura del reticolo. Applicabile solo alla funzione Wire Printing." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset label" -msgid "WP Roof Inset Distance" -msgstr "Distanza dalla superficie superiore WP" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset description" -msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -msgstr "Indica la distanza percorsa durante la realizzazione di una connessione da un profilo della superficie superiore (tetto) verso l'interno. Applicabile solo alla funzione Wire Printing." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed label" -msgid "WP Speed" -msgstr "Velocità WP" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed description" -msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -msgstr "Indica la velocità a cui l'ugello si muove durante l'estrusione del materiale. Applicabile solo alla funzione Wire Printing." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom label" -msgid "WP Bottom Printing Speed" -msgstr "Velocità di stampa della parte inferiore WP" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom description" -msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -msgstr "Indica la velocità di stampa del primo strato, che è il solo strato a contatto con il piano di stampa. Applicabile solo alla funzione Wire Printing." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up label" -msgid "WP Upward Printing Speed" -msgstr "Velocità di stampa verticale WP" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up description" -msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -msgstr "Indica la velocità di stampa di una linea verticale verso l'alto della struttura \"sospesa nell'aria\". Applicabile solo alla funzione Wire Printing." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down label" -msgid "WP Downward Printing Speed" -msgstr "Velocità di stampa diagonale WP" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down description" -msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -msgstr "Indica la velocità di stampa di una linea diagonale verso il basso. Applicabile solo alla funzione Wire Printing." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat label" -msgid "WP Horizontal Printing Speed" -msgstr "Velocità di stampa orizzontale WP" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat description" -msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -msgstr "Indica la velocità di stampa dei contorni orizzontali del modello. Applicabile solo alla funzione Wire Printing." - -#: fdmprinter.def.json -msgctxt "wireframe_flow label" -msgid "WP Flow" -msgstr "Flusso WP" - -#: fdmprinter.def.json -msgctxt "wireframe_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -msgstr "Determina la compensazione del flusso: la quantità di materiale estruso viene moltiplicata per questo valore. Applicabile solo alla funzione Wire Printing." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection label" -msgid "WP Connection Flow" -msgstr "Flusso di connessione WP" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection description" -msgid "Flow compensation when going up or down. Only applies to Wire Printing." -msgstr "Determina la compensazione di flusso nei percorsi verso l'alto o verso il basso. Applicabile solo alla funzione Wire Printing." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat label" -msgid "WP Flat Flow" -msgstr "Flusso linee piatte WP" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat description" -msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -msgstr "Determina la compensazione di flusso durante la stampa di linee piatte. Applicabile solo alla funzione Wire Printing." - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay label" -msgid "WP Top Delay" -msgstr "Ritardo dopo spostamento verso l'alto WP" - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay description" -msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -msgstr "Indica il tempo di ritardo dopo uno spostamento verso l'alto, in modo da consentire l'indurimento della linea verticale indirizzata verso l'alto. Applicabile solo alla funzione Wire Printing." - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay label" -msgid "WP Bottom Delay" -msgstr "Ritardo dopo spostamento verso il basso WP" - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay description" -msgid "Delay time after a downward move. Only applies to Wire Printing." -msgstr "Indica il tempo di ritardo dopo uno spostamento verso il basso. Applicabile solo alla funzione Wire Printing." - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay label" -msgid "WP Flat Delay" -msgstr "Ritardo tra due segmenti orizzontali WP" - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay description" -msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -msgstr "Indica il tempo di ritardo tra due segmenti orizzontali. Introducendo un tale ritardo si può ottenere una migliore adesione agli strati precedenti in corrispondenza dei punti di collegamento, mentre ritardi troppo prolungati provocano cedimenti. Applicabile solo alla funzione Wire Printing." - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed label" -msgid "WP Ease Upward" -msgstr "Spostamento verso l'alto a velocità ridotta WP" - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed description" -msgid "" -"Distance of an upward move which is extruded with half speed.\n" -"This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "" -"Indica la distanza di uno spostamento verso l'alto con estrusione a velocità dimezzata.\n" -"Ciò può garantire una migliore adesione agli strati precedenti, senza eccessivo riscaldamento del materiale su questi strati. Applicabile solo alla funzione Wire Printing." - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump label" -msgid "WP Knot Size" -msgstr "Dimensione dei nodi WP" - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump description" -msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -msgstr "Crea un piccolo nodo alla sommità di una linea verticale verso l'alto, in modo che lo strato orizzontale consecutivo abbia una migliore possibilità di collegarsi ad essa. Applicabile solo alla funzione Wire Printing." - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down label" -msgid "WP Fall Down" -msgstr "Caduta del materiale WP" - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down description" -msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "Indica la distanza di caduta del materiale dopo un estrusione verso l'alto. Tale distanza viene compensata. Applicabile solo alla funzione Wire Printing." - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along label" -msgid "WP Drag Along" -msgstr "Trascinamento WP" - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along description" -msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "Indica la distanza di trascinamento del materiale di una estrusione verso l'alto nell'estrusione diagonale verso il basso. Tale distanza viene compensata. Applicabile solo alla funzione Wire Printing." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy label" -msgid "WP Strategy" -msgstr "Strategia WP" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy description" -msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -msgstr "Strategia per garantire il collegamento di due strati consecutivi ad ogni punto di connessione. La retrazione consente l'indurimento delle linee verticali verso l'alto nella giusta posizione, ma può causare la deformazione del filamento. È possibile realizzare un nodo all'estremità di una linea verticale verso l'alto per accrescere la possibilità di collegamento e lasciarla raffreddare; tuttavia ciò può richiedere velocità di stampa ridotte. Un'altra strategia consiste nel compensare il cedimento della parte superiore di una linea verticale verso l'alto; tuttavia le linee non sempre ricadono come previsto." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option compensate" -msgid "Compensate" -msgstr "Compensazione" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option knot" -msgid "Knot" -msgstr "Nodo" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option retract" -msgid "Retract" -msgstr "Retrazione" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down label" -msgid "WP Straighten Downward Lines" -msgstr "Correzione delle linee diagonali WP" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down description" -msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -msgstr "Indica la percentuale di copertura di una linea diagonale verso il basso da un tratto di linea orizzontale. Questa opzione può impedire il cedimento della sommità delle linee verticali verso l'alto. Applicabile solo alla funzione Wire Printing." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down label" -msgid "WP Roof Fall Down" -msgstr "Caduta delle linee della superficie superiore (tetto) WP" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down description" -msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -msgstr "Indica la distanza di caduta delle linee della superficie superiore (tetto) della struttura \"sospesa nell'aria\" durante la stampa. Questa distanza viene compensata. Applicabile solo alla funzione Wire Printing." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along label" -msgid "WP Roof Drag Along" -msgstr "Trascinamento superficie superiore (tetto) WP" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along description" -msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -msgstr "Indica la distanza di trascinamento dell'estremità di una linea interna durante lo spostamento di ritorno verso il contorno esterno della superficie superiore (tetto). Questa distanza viene compensata. Applicabile solo alla funzione Wire Printing." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay label" -msgid "WP Roof Outer Delay" -msgstr "Ritardo su perimetro esterno foro superficie superiore (tetto) WP" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay description" -msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -msgstr "Indica il tempo trascorso sul perimetro esterno del foro di una superficie superiore (tetto). Tempi più lunghi possono garantire un migliore collegamento. Applicabile solo alla funzione Wire Printing." - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance label" -msgid "WP Nozzle Clearance" -msgstr "Gioco ugello WP" - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance description" -msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -msgstr "Indica la distanza tra l'ugello e le linee diagonali verso il basso. Un maggior gioco risulta in linee diagonali verso il basso con un minor angolo di inclinazione, cosa che a sua volta si traduce in meno collegamenti verso l'alto con lo strato successivo. Applicabile solo alla funzione Wire Printing." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Uso di strati adattivi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Variazione massima strati adattivi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Dimensione variazione strati adattivi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Dimensione della topografia dei layer adattivi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Angolo parete di sbalzo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Velocità parete di sbalzo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Abilita impostazioni ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Lunghezza minima parete ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Soglia di supporto rivestimento esterno ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Densità massima del riempimento rado del Bridge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Coasting parete ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Velocità di stampa della parete ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Flusso della parete ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Velocità di stampa del rivestimento esterno ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Flusso del rivestimento esterno ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Densità del rivestimento esterno ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Velocità della ventola ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Ponte a strati multipli" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Velocità di stampa del secondo rivestimento esterno ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Flusso del secondo rivestimento esterno ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Densità del secondo rivestimento esterno ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Velocità della ventola per il secondo rivestimento esterno ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Velocità di stampa del terzo rivestimento esterno ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Flusso del terzo rivestimento esterno ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Densità del terzo rivestimento esterno ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Velocità della ventola del terzo rivestimento esterno ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Pulitura ugello tra gli strati" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Volume di materiale tra le operazioni di pulitura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Retrazione per pulitura abilitata" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Distanza di retrazione per pulitura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Entità di innesco supplementare dopo retrazione per pulitura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Velocità di retrazione per pulitura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Velocità di retrazione per pulitura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Velocità di pulitura retrazione" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Pausa pulitura" - -#: fdmprinter.def.json -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pausa dopo ripristino." - -#: fdmprinter.def.json -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Pulitura Z Hop" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Altezza Z Hop pulitura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Velocità di sollevamento (Hop) per pulitura" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Posizione X spazzolino di pulitura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Conteggio ripetizioni operazioni di pulitura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Distanza spostamento longitudinale di pulitura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Dimensione massima foro piccolo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Lunghezza massima dettagli di piccole dimensioni" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Velocità dettagli piccole dimensioni" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Velocità layer iniziale per dettagli di piccole dimensioni" - -#: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "material_alternate_walls label" @@ -6581,34 +197,349 @@ msgid "Alternate wall directions every other layer and inset. Useful for materia msgstr "Consente di alternare direzioni parete ogni altro strato o inserto. Utile per materiali che possono accumulare stress, come per la stampa su metallo." #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Rimuovi angoli interni raft" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Alluminio" #: fdmprinter.def.json -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 "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "Tenere sempre nota dello strumento attivo" #: fdmprinter.def.json -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Conteggio parete base del raft" +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." #: fdmprinter.def.json -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 "hole_xy_offset description" +msgid "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." +msgstr "Entità di offset applicato a tutti i fori di ciascuno strato. Valori positivi aumentano le dimensioni dei fori, mentre valori negativi le riducono." #: fdmprinter.def.json -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Impostazioni riga di comando" +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." #: fdmprinter.def.json -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 "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\"." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Maglia anti-sovrapposizione" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Posizione retratta anti fuoriuscita di materiale" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Velocità di retrazione anti fuoriuscita del materiale" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Aggiramento delle parti stampate durante gli spostamenti" + +#: fdmprinter.def.json +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Aggiramento dei supporti durante gli spostamenti" + +#: fdmprinter.def.json +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Indietro" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Indietro a sinistra" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Indietro a destra" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Entrambi" + +#: fdmprinter.def.json +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Strati inferiori" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Strato iniziale configurazione inferiore" + +#: fdmprinter.def.json +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Distanza prolunga rivestimento inferiore" + +#: fdmprinter.def.json +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Larghezza rimozione rivestimento inferiore" + +#: fdmprinter.def.json +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Spessore degli strati inferiori" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Posizione di retrazione prima della rottura" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Velocità di retrazione prima della rottura" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatura di preparazione alla rottura" + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Posizione di retrazione per la rottura" + +#: fdmprinter.def.json +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Velocità di retrazione per la rottura" + +#: fdmprinter.def.json +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Temperatura di rottura" + +#: fdmprinter.def.json +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Rottura del supporto in pezzi di grandi dimensioni" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Velocità della ventola ponte" + +#: fdmprinter.def.json +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Ponte a strati multipli" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Densità del secondo rivestimento esterno ponte" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Velocità della ventola per il secondo rivestimento esterno ponte" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Flusso del secondo rivestimento esterno ponte" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Velocità di stampa del secondo rivestimento esterno ponte" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Densità del rivestimento esterno ponte" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Flusso del rivestimento esterno ponte" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Velocità di stampa del rivestimento esterno ponte" + +#: fdmprinter.def.json +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Soglia di supporto rivestimento esterno ponte" + +#: fdmprinter.def.json +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Densità massima del riempimento rado del Bridge" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Densità del terzo rivestimento esterno ponte" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Velocità della ventola del terzo rivestimento esterno ponte" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Flusso del terzo rivestimento esterno ponte" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Velocità di stampa del terzo rivestimento esterno ponte" + +#: fdmprinter.def.json +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Coasting parete ponte" + +#: fdmprinter.def.json +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Flusso della parete ponte" + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Velocità di stampa della parete ponte" + +#: fdmprinter.def.json +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Brim" + +#: fdmprinter.def.json +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Distanza del Brim" + +#: fdmprinter.def.json +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "Margine di aggiramento interno del brim" + +#: fdmprinter.def.json +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Numero di linee del brim" + +#: fdmprinter.def.json +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Brim solo sull’esterno" + +#: fdmprinter.def.json +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Brim in sostituzione del supporto" + +#: fdmprinter.def.json +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Larghezza del brim" + +#: fdmprinter.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adesione piano di stampa" + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Estrusore adesione piano di stampa" + +#: fdmprinter.def.json +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Tipo di adesione piano di stampa" + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Materiale piano di stampa" + +#: fdmprinter.def.json +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Forma del piano di stampa" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Temperatura piano di stampa" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Temperatura piano di stampa Strato iniziale" + +#: fdmprinter.def.json +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatura volume di stampa" #: fdmprinter.def.json msgctxt "center_object label" @@ -6616,1066 +547,6211 @@ msgid "Center Object" msgstr "Centra oggetto" #: fdmprinter.def.json -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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Velocità di Coasting" + +#: fdmprinter.def.json +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Volume di Coasting" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Modalità Combing" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Impostazioni riga di comando" + +#: fdmprinter.def.json +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrica" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrica" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" + +#: fdmprinter.def.json +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concentriche" + +#: fdmprinter.def.json +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Angolo del supporto conico" + +#: fdmprinter.def.json +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Larghezza minima del supporto conico" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Collegamento delle linee di riempimento" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Collega poligoni di riempimento" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Collegamento linee supporto" + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Collegamento Zig Zag supporto" + +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Collega poligoni superiori/inferiori" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Velocità di raffreddamento" + +#: fdmprinter.def.json +msgctxt "cooling description" +msgid "Cooling" +msgstr "Raffreddamento" + +#: fdmprinter.def.json +msgctxt "cooling label" +msgid "Cooling" +msgstr "Raffreddamento" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Incrociata" + +#: fdmprinter.def.json +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Incrociata" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Incrociata 3D" + +#: fdmprinter.def.json +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Dimensioni cavità 3D incrociata" + +#: fdmprinter.def.json +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Immagine di densità del riempimento incrociato per il supporto" + +#: fdmprinter.def.json +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Immagine di densità del riempimento incrociato" + +#: fdmprinter.def.json +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Materiale cristallino" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Cubo" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Suddivisione in cubi" + +#: fdmprinter.def.json +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Guscio suddivisione in cubi" + +#: fdmprinter.def.json +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Ritaglio maglia" + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Accelerazione predefinita" + +#: fdmprinter.def.json +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Temperatura piano di stampa preimpostata" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Jerk filamento predefinito" + +#: fdmprinter.def.json +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Temperatura di stampa preimpostata" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Jerk X-Y predefinito" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Jerk Z predefinito" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Indica il jerk predefinito del motore del filamento." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diametro" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Aree non consentite" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support." +msgstr "È la distanza tra la stampa e la parte inferiore del supporto." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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. This value is rounded up to a multiple of the layer height." +msgstr "È la distanza dalla parte superiore/inferiore della struttura di supporto alla stampa. Questa distanza fornisce lo spazio per rimuovere i supporti dopo aver stampato il modello. Questo valore viene arrotondato per eccesso a un multiplo dell’altezza strato." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Altezza del riparo paravento" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Limitazione del riparo paravento" + +#: fdmprinter.def.json +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Distanza X/Y del riparo paravento" + +#: fdmprinter.def.json +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Maglia supporto di discesa" + +#: fdmprinter.def.json +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Doppia estrusione" + +#: fdmprinter.def.json +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Ellittica" + +#: fdmprinter.def.json +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Abilita controllo accelerazione" + +#: fdmprinter.def.json +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Abilita impostazioni ponte" + +#: fdmprinter.def.json +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Abilitazione della funzione di Coasting" + +#: fdmprinter.def.json +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Abilitazione del supporto conico" + +#: fdmprinter.def.json +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Abilitazione del riparo paravento" + +#: fdmprinter.def.json +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Abilita stiratura" + +#: fdmprinter.def.json +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Abilita controllo jerk" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Abilita controllo temperatura ugello" + +#: fdmprinter.def.json +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Abilitazione del riparo materiale fuoriuscito" + +#: fdmprinter.def.json +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Abilitazione blob di innesco" + +#: fdmprinter.def.json +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Abilitazione torre di innesco" + +#: fdmprinter.def.json +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Abilitazione raffreddamento stampa" + +#: fdmprinter.def.json +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Abilitazione della retrazione" + +#: fdmprinter.def.json +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Abilitazione brim del supporto" + +#: fdmprinter.def.json +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Abilitazione parte inferiore supporto" + +#: fdmprinter.def.json +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Abilitazione interfaccia supporto" + +#: fdmprinter.def.json +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Abilitazione irrobustimento parte superiore (tetto) del supporto" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Abilita l'accelerazione spostamenti" + +#: fdmprinter.def.json +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Abilita jerk spostamenti" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "Codice G fine" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Lunghezza di svuotamento di fine filamento" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Velocità di svuotamento di fine filamento" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "In Tutti i Possibili Punti" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Esclusiva" + +#: fdmprinter.def.json +msgctxt "experimental label" +msgid "Experimental" +msgstr "Sperimentale" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Esponi giunzione" + +#: fdmprinter.def.json +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Ricucitura completa dei fori" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Conteggio pareti di riempimento supplementari" + +#: fdmprinter.def.json +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Numero di pareti di rivestimento esterno supplementari" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posizione X innesco estrusore" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posizione Y innesco estrusore" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posizione Z innesco estrusore" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Condivisione del riscaldatore da parte degli estrusori" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Estrusori condividono ugello" + +#: fdmprinter.def.json +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Modificatore della velocità di raffreddamento estrusione" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Velocità della ventola" + +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Override velocità della ventola" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Funzionalità che non sono state ancora precisate completamente." + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diametro ruota del tirafilo" + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Temperatura di stampa finale" + +#: fdmprinter.def.json +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Retrazione firmware" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Estrusore del supporto primo strato" + +#: fdmprinter.def.json +msgctxt "material_flow label" +msgid "Flow" +msgstr "Flusso" + +#: fdmprinter.def.json +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Rapporto di equalizzazione del flusso" + +#: fdmprinter.def.json +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Fattore di compensazione del flusso" + +#: fdmprinter.def.json +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Offset massimo dell'estrusione di compensazione del flusso" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Grafico della temperatura del flusso" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Compensazione del flusso sulle linee di riempimento." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Compensazione del flusso sulle linee della torre di innesco." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Compensazione del flusso sulle linee di supporto inferiore." + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Compensazione del flusso sulle linee di supporto superiore." + +#: fdmprinter.def.json +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Compensazione del flusso sulle linee di supporto." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Compensazione del flusso sulla linea perimetrale più esterna." + +#: fdmprinter.def.json +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Compensazione del flusso sulle linee superiore/inferiore." + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Compensazione del flusso sulle linee perimetrali." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Lunghezza di svuotamento dello scarico" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Velocità di svuotamento dello scarico" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Avanti" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Avanti a sinistra" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Avanti a destra" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Piena altezza" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Rivestimento esterno incoerente (fuzzy)" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Densità del rivestimento esterno incoerente (fuzzy)" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Fuzzy Skin solo all'esterno" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Distanza dei punti del rivestimento incoerente (fuzzy)" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Spessore del rivestimento esterno incoerente (fuzzy)" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Versione codice G" + +#: fdmprinter.def.json +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 \n" +"." + +#: fdmprinter.def.json +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 \n" +"." + +#: fdmprinter.def.json +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "Il GUID del materiale. È impostato automaticamente." + +#: fdmprinter.def.json +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Altezza gantry" + +#: fdmprinter.def.json +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Generazione della struttura a incastro" + +#: fdmprinter.def.json +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Generazione supporto" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Cristallo" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Altezza fasi di riempimento graduale" + +#: fdmprinter.def.json +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Fasi di riempimento graduale" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Altezza fasi di riempimento graduale del supporto" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Fasi di riempimento graduale del supporto" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Griglia" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Griglia" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Griglia" + +#: fdmprinter.def.json +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Griglia" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Griglia" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +#: fdmprinter.def.json +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" + +#: fdmprinter.def.json +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "È dotato della stabilizzazione della temperatura del volume di stampa" + +#: fdmprinter.def.json +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Piano di stampa riscaldato" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Velocità di riscaldamento" + +#: fdmprinter.def.json +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Lunghezza della zona di riscaldamento" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Nascondi giunzione" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Nascondi o esponi giunzione" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Espansione orizzontale dei fori" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Espansione orizzontale" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Fattore di scala orizzontale per la compensazione della contrazione" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance description" +msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." +msgstr "La distanza tra i rami necessaria quando toccano il modello. Una distanza ridotta causa il contatto del supporto ad albero con il modello in più punti, generando migliore sovrapposizione ma rendendo più difficoltosa la rimozione del supporto." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Includi temperatura piano di stampa" + +#: fdmprinter.def.json +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Includi le temperature del materiale" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusiva" + +#: fdmprinter.def.json +msgctxt "infill description" +msgid "Infill" +msgstr "Riempimento" + +#: fdmprinter.def.json +msgctxt "infill label" +msgid "Infill" +msgstr "Riempimento" + +#: fdmprinter.def.json +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Accelerazione riempimento" + +#: fdmprinter.def.json +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Riempimento prima delle pareti" + +#: fdmprinter.def.json +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Densità del riempimento" + +#: fdmprinter.def.json +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Estrusore riempimento" + +#: fdmprinter.def.json +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Flusso di riempimento" + +#: fdmprinter.def.json +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Jerk riempimento" + +#: fdmprinter.def.json +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Spessore dello strato di riempimento" + +#: fdmprinter.def.json +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Direzioni delle linee di riempimento" + +#: fdmprinter.def.json +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Distanza tra le linee di riempimento" + +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Moltiplicatore delle linee di riempimento" + +#: fdmprinter.def.json +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Larghezza delle linee di riempimento" + +#: fdmprinter.def.json +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Maglia di riempimento" + +#: fdmprinter.def.json +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Angolo di sbalzo del riempimento" + +#: fdmprinter.def.json +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Sovrapposizione del riempimento" + +#: fdmprinter.def.json +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Percentuale di sovrapposizione del riempimento" + +#: fdmprinter.def.json +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Configurazione di riempimento" + +#: fdmprinter.def.json +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Velocità di riempimento" + +#: fdmprinter.def.json +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Supporto riempimento" + +#: fdmprinter.def.json +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Ottimizzazione spostamenti riempimento" + +#: fdmprinter.def.json +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Distanza del riempimento" + +#: fdmprinter.def.json +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Offset X riempimento" + +#: fdmprinter.def.json +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Offset Y riempimento" + +#: fdmprinter.def.json +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Layer inferiori iniziali" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Velocità iniziale della ventola" + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Accelerazione dello strato iniziale" + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Flusso inferiore dello strato iniziale" + +#: fdmprinter.def.json +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Flusso dello strato iniziale" + +#: fdmprinter.def.json +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Altezza dello strato iniziale" + +#: fdmprinter.def.json +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Espansione orizzontale dello strato iniziale" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Flusso della parete interna dello strato iniziale" + +#: fdmprinter.def.json +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Jerk dello strato iniziale" + +#: fdmprinter.def.json +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Larghezza linea strato iniziale" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Flusso della parete esterna dello strato iniziale" + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Accelerazione di stampa strato iniziale" + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Jerk di stampa strato iniziale" + +#: fdmprinter.def.json +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Velocità di stampa strato iniziale" + +#: fdmprinter.def.json +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Velocità di stampa dello strato iniziale" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Distanza tra le linee del supporto dello strato iniziale" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Accelerazione spostamenti dello strato iniziale" + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Jerk spostamenti dello strato iniziale" + +#: fdmprinter.def.json +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Velocità di spostamento dello strato iniziale" + +#: fdmprinter.def.json +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Z Sovrapposizione Primo Strato" + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Temperatura di stampa iniziale" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Accelerazione parete interna" + +#: fdmprinter.def.json +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Estrusore parete interna" + +#: fdmprinter.def.json +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Jerk parete interna" + +#: fdmprinter.def.json +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Velocità di stampa della parete interna" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Flusso pareti interne" + +#: fdmprinter.def.json +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Larghezza delle linee della parete interna" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "Dall'interno all'esterno" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Conteggio degli strati delle travi ad incastro" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Larghezza della trave a incastro" + +#: fdmprinter.def.json +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Prevenzione incastro dei bordi" + +#: fdmprinter.def.json +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Profondità di incastro" + +#: fdmprinter.def.json +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Orientamento della struttura ad incastro" + +#: fdmprinter.def.json +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Stiramento del solo strato più elevato" + +#: fdmprinter.def.json +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Accelerazione di stiratura" + +#: fdmprinter.def.json +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Flusso di stiratura" + +#: fdmprinter.def.json +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Inserto di stiratura" + +#: fdmprinter.def.json +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Jerk stiratura" + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Spaziatura delle linee di stiratura" + +#: fdmprinter.def.json +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Configurazione di stiratura" + +#: fdmprinter.def.json +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Velocità di stiratura" + +#: fdmprinter.def.json +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Origine del centro" + +#: fdmprinter.def.json +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)?" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Mantenimento delle superfici scollegate" + +#: fdmprinter.def.json +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Altezza dello strato" + +#: fdmprinter.def.json +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "Avvio strato X" + +#: fdmprinter.def.json +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Avvio strato Y" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "È lo spessore dello strato intermedio del raft." + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "È lo spessore degli strati superiori del raft." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Sinistra" + +#: fdmprinter.def.json +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Sollevamento della testina" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Fulmine" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Angolo di sbalzo riempimento fulmine" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Angolo eliminazione riempimento fulmine" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Angolo di raddrizzatura riempimento fulmine" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Angolo di supporto riempimento fulmine" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Limitazione in altezza" + +#: fdmprinter.def.json +msgctxt "line_width label" +msgid "Line Width" +msgstr "Larghezza della linea" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Linee" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Linee" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Linee" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Linee" + +#: fdmprinter.def.json +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Linee" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Linee" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Linee" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Linee" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +#: fdmprinter.def.json +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Macchina" + +#: fdmprinter.def.json +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Profondità macchina" + +#: fdmprinter.def.json +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Poligono testina macchina e ventola" + +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Altezza macchina" + +#: fdmprinter.def.json +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Tipo di macchina" + +#: fdmprinter.def.json +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Larghezza macchina" + +#: fdmprinter.def.json +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Impostazioni macchina specifiche" + +#: fdmprinter.def.json +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Rendi stampabile lo sbalzo" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Effettua il primo e secondo strato di sovrapposizione modello nella direzione Z per compensare il filamento perso nel traferro. Tutti i modelli sopra il primo strato del modello saranno spostati verso il basso di questa quantità." + +#: fdmprinter.def.json +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Rendere le maglie più indicate alla stampa 3D." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (volumetrica)" + +#: fdmprinter.def.json +msgctxt "material description" +msgid "Material" +msgstr "Materiale" + +#: fdmprinter.def.json +msgctxt "material label" +msgid "Material" +msgstr "Materiale" + +#: fdmprinter.def.json +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID materiale" + +#: fdmprinter.def.json +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Volume di materiale tra le operazioni di pulitura" + +#: fdmprinter.def.json +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Massima distanza di combing senza retrazione" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Accelerazione massima X" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Accelerazione massima Y" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Accelerazione massima Z" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Deviazione massima" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Deviazione massima dell'area di estrusione" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Velocità massima della ventola" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Accelerazione massima filamento" + +#: fdmprinter.def.json +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Massimo angolo modello" + +#: fdmprinter.def.json +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Area foro di sbalzo massima" + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Durata di posizionamento massima" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Risoluzione massima" + +#: fdmprinter.def.json +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Numero massimo di retrazioni" + +#: fdmprinter.def.json +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Angolo massimo rivestimento esterno per prolunga" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Velocità massima E" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Velocità massima X" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Velocità massima Y" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Velocità massima Z" + +#: fdmprinter.def.json +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Diametro supportato dalla torre" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Risoluzione massima di spostamento" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Indica l’accelerazione massima del motore del filamento." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Sovrapposizione maglie" + +#: fdmprinter.def.json +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Correzioni delle maglie" #: fdmprinter.def.json msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "Posizione maglia X" -#: fdmprinter.def.json -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Offset applicato all’oggetto per la direzione X." - #: fdmprinter.def.json msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "Posizione maglia Y" -#: fdmprinter.def.json -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Offset applicato all’oggetto per la direzione Y." - #: fdmprinter.def.json msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "Posizione maglia Z" #: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "Matrice rotazione maglia" +#: fdmprinter.def.json +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Intermedia" + +#: fdmprinter.def.json +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Larghezza minimo dello stampo" + +#: fdmprinter.def.json +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Tempo minimo temperatura di standby" + +#: fdmprinter.def.json +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Lunghezza minima parete ponte" + +#: fdmprinter.def.json +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Larghezza minima della linea perimetrale pari" + +#: fdmprinter.def.json +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Finestra di minima distanza di estrusione" + +#: fdmprinter.def.json +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Dimensioni minime della feature" + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Velocità di alimentazione minima" + +#: fdmprinter.def.json +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Area minima riempimento" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Tempo minimo per strato" + +#: fdmprinter.def.json +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Larghezza minima della linea perimetrale dispari" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Circonferenza minima dei poligoni" + +#: fdmprinter.def.json +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Larghezza minima rivestimento esterno per prolunga" + +#: fdmprinter.def.json +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Velocità minima" + +#: fdmprinter.def.json +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Area minima supporto" + +#: fdmprinter.def.json +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Area minima parti inferiori supporto" + +#: fdmprinter.def.json +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Area minima interfaccia supporto" + +#: fdmprinter.def.json +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Area minima parti superiori supporto" + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Distanza X/Y supporto minima" + +#: fdmprinter.def.json +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Larghezza minima della linea perimetrale sottile" + +#: fdmprinter.def.json +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Volume minimo prima del Coasting" + +#: fdmprinter.def.json +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Larghezza minima della linea perimetrale" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Stampo" + +#: fdmprinter.def.json +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Angolo stampo" + +#: fdmprinter.def.json +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Altezza parte superiore dello stampo" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Ordine di stiratura monotonico" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Ordine superficie superiore monotonico" + +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Ordine superiore/inferiore monotonico" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Fattore di spostamento senza carico" + +#: fdmprinter.def.json +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Nessun rivest. est. negli interstizi a Z" + +#: fdmprinter.def.json +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Modi non tradizionali di stampare i modelli." + +#: fdmprinter.def.json +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Nessuno" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Nessuno" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normale" + +#: fdmprinter.def.json +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normale" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Non nel rivestimento" + +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Non su superficie esterna" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Angolo ugello" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diametro ugello" + +#: fdmprinter.def.json +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Aree ugello non consentite" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID ugello" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Lunghezza ugello" + +#: fdmprinter.def.json +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Quantità di materiale extra della Prime Tower, al cambio ugello" + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Velocità innesco cambio ugello" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Velocità di retrazione cambio ugello" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Distanza di retrazione cambio ugello" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Velocità di retrazione cambio ugello" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Numero di estrusori" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Numero di estrusori abilitati" + +#: fdmprinter.def.json +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Numero di strati stampati a velocità inferiore" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Ottagonale" + +#: fdmprinter.def.json +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Disinserita" + +#: fdmprinter.def.json +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Offset applicato all’oggetto per la direzione X." + +#: fdmprinter.def.json +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Offset applicato all’oggetto per la direzione Y." + +#: fdmprinter.def.json +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’." + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Offset con estrusore" + +#: fdmprinter.def.json +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Uno alla volta" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Stampa il brim solo sull’esterno del modello. Questo riduce la quantità del brim che si deve rimuovere in seguito, mentre non riduce particolarmente l’adesione al piano." + +#: fdmprinter.def.json +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Angolo del riparo materiale fuoriuscito" + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Distanza del riparo materiale fuoriuscito" + +#: fdmprinter.def.json +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Ottimizzazione sequenza di stampa pareti" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Diametro esterno ugello" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Accelerazione parete esterna" + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Estrusore parete esterna" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Flusso della parete esterna" + +#: fdmprinter.def.json +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Inserto parete esterna" + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Jerk parete esterna" + +#: fdmprinter.def.json +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Larghezza delle linee della parete esterna" + +#: fdmprinter.def.json +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Velocità di stampa della parete esterna" + +#: fdmprinter.def.json +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Distanza del riempimento parete esterna" + +#: fdmprinter.def.json +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "Dall'esterno all'interno" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Angolo parete di sbalzo" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Velocità parete di sbalzo" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pausa dopo ripristino." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Accelerazione della torre di innesco" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Brim" +msgstr "Brim torre di innesco" + +#: fdmprinter.def.json +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Flusso torre di innesco" + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Jerk della torre di innesco" + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Larghezza della linea della torre di innesco" + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Volume minimo torre di innesco" + +#: fdmprinter.def.json +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Dimensioni torre di innesco" + +#: fdmprinter.def.json +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Velocità della torre di innesco" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Posizione X torre di innesco" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Posizione Y torre di innesco" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +msgstr "Le torri di innesco potrebbero richiedere un'adesione supplementare fornita da un bordo (brim), anche se il modello non lo prevede. Attualmente non può essere utilizzato con il tipo di adesione 'Raft'." + +#: fdmprinter.def.json +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Accelerazione di stampa" + +#: fdmprinter.def.json +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Jerk stampa" + +#: fdmprinter.def.json +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Sequenza di stampa" + +#: fdmprinter.def.json +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Velocità di stampa" + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Stampa pareti sottili" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Temperatura di stampa" + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Temperatura di stampa Strato iniziale" + +#: fdmprinter.def.json +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "resolution label" +msgid "Quality" +msgstr "Qualità" + +#: fdmprinter.def.json +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Quarto di cubo" + +#: fdmprinter.def.json +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" + +#: fdmprinter.def.json +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Traferro del raft" + +#: fdmprinter.def.json +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Estrusore della base del raft" + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Velocità della ventola per la base del raft" + +#: fdmprinter.def.json +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Spaziatura delle linee dello strato di base del raft" + +#: fdmprinter.def.json +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Larghezza delle linee dello strato di base del raft" + +#: fdmprinter.def.json +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Accelerazione di stampa della base del raft" + +#: fdmprinter.def.json +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Jerk di stampa della base del raft" + +#: fdmprinter.def.json +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Velocità di stampa della base del raft" + +#: fdmprinter.def.json +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Spessore della base del raft" + +#: fdmprinter.def.json +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Conteggio parete base del raft" + +#: fdmprinter.def.json +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Margine extra del raft" + +#: fdmprinter.def.json +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Velocità della ventola per il raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Estrusore intermedio del raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Velocità della ventola per il raft intermedio" + +#: fdmprinter.def.json +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Strati intermedi del raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Larghezza delle linee dello strato intermedio del raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Accelerazione di stampa raft intermedio" + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Jerk di stampa raft intermedio" + +#: fdmprinter.def.json +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Velocità di stampa raft intermedio" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Spaziatura dello strato intermedio del raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Spessore dello strato intermedio del raft" + +#: fdmprinter.def.json +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Accelerazione di stampa del raft" + +#: fdmprinter.def.json +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Jerk stampa del raft" + +#: fdmprinter.def.json +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Velocità di stampa del raft" + +#: fdmprinter.def.json +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Smoothing raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Estrusore superiore del raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Velocità della ventola per la parte superiore del raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Spessore dello strato superiore del raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Strati superiori del raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Larghezza delle linee superiori del raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Accelerazione di stampa parte superiore del raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Jerk di stampa parte superiore del raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Velocità di stampa parte superiore del raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Spaziatura superiore del raft" + +#: fdmprinter.def.json +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Casuale" + +#: fdmprinter.def.json +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Avvio con riempimento casuale" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Rettangolare" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Velocità regolare della ventola" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Velocità regolare della ventola in altezza" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Velocità regolare della ventola in corrispondenza dello strato" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Soglia velocità regolare/massima della ventola" + +#: fdmprinter.def.json +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Estrusione relativa" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Rimozione di tutti i fori" + +#: fdmprinter.def.json +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Rimuovere i primi strati vuoti" + +#: fdmprinter.def.json +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Rimuovi intersezione maglie" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Rimuovi angoli interni raft" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution description" +msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." +msgstr "Risoluzione per calcolare le collisioni per evitare di colpire il modello. L’impostazione a un valore basso genera alberi più accurati che si rompono meno sovente, ma aumenta notevolmente il tempo di sezionamento." + +#: fdmprinter.def.json +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Retrazione prima della parete esterna" + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Retrazione al cambio strato" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Distanza di retrazione" + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Entità di innesco supplementare dopo la retrazione" + +#: fdmprinter.def.json +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Distanza minima di retrazione" + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Velocità di innesco dopo la retrazione" + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Velocità di retrazione" + +#: fdmprinter.def.json +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Velocità di retrazione" + +#: fdmprinter.def.json +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Destra" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Fattore di scala per la compensazione della contrazione" + +#: fdmprinter.def.json +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "La scena è dotata di maglie di supporto" + +#: fdmprinter.def.json +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Preferenze angolo giunzione" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Indica le impostazioni utilizzate per la stampa con estrusori multipli." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Retrazione iniziale ugello condivisa" + +#: fdmprinter.def.json +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Angolo più acuto" + +#: fdmprinter.def.json +msgctxt "shell description" +msgid "Shell" +msgstr "Guscio" + +#: fdmprinter.def.json +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Il più breve" + +#: fdmprinter.def.json +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Mostra varianti macchina" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Layer di supporto del bordo del rivestimento" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Spessore del supporto del bordo del rivestimento" + +#: fdmprinter.def.json +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Distanza prolunga rivestimento esterno" + +#: fdmprinter.def.json +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Sovrapposizione del rivestimento esterno" + +#: fdmprinter.def.json +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Percentuale di sovrapposizione del rivestimento esterno" + +#: fdmprinter.def.json +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Larghezza rimozione rivestimento" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Skirt" + +#: fdmprinter.def.json +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Distanza dello skirt" + +#: fdmprinter.def.json +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Numero di linee dello skirt" + +#: fdmprinter.def.json +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Accelerazione skirt/brim" + +#: fdmprinter.def.json +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Estrusore skirt/brim" + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Flusso dello skirt/brim" + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Jerk dello skirt/brim" + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Larghezza delle linee dello skirt/brim" + +#: fdmprinter.def.json +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Lunghezza minima dello skirt/brim" + +#: fdmprinter.def.json +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Velocità dello skirt/brim" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Tolleranza di sezionamento" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Velocità layer iniziale per dettagli di piccole dimensioni" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Lunghezza massima dettagli di piccole dimensioni" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Velocità dettagli piccole dimensioni" + +#: fdmprinter.def.json +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Dimensione massima foro piccolo" + +#: fdmprinter.def.json +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Temperatura di stampa per piccoli strati" + +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Occultamento intelligente" + +#: fdmprinter.def.json +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Levigazione dei profili con movimento spiraliforme" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Modalità speciali" + +#: fdmprinter.def.json +msgctxt "speed description" +msgid "Speed" +msgstr "Velocità" + +#: fdmprinter.def.json +msgctxt "speed label" +msgid "Speed" +msgstr "Velocità" + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Stampa del contorno esterno con movimento spiraliforme" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Temperatura di Standby" + +#: fdmprinter.def.json +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "Codice G avvio" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Passi per millimetro (E)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Passi per millimetro (X)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Passi per millimetro (Y)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Passi per millimetro (Z)" + +#: fdmprinter.def.json +msgctxt "support description" +msgid "Support" +msgstr "Supporto" + +#: fdmprinter.def.json +msgctxt "support label" +msgid "Support" +msgstr "Supporto" + +#: fdmprinter.def.json +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Accelerazione supporto" + +#: fdmprinter.def.json +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Distanza inferiore supporto" + +#: fdmprinter.def.json +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Numero delle linee perimetrali inferiori di supporto" + +#: fdmprinter.def.json +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Numero di linee del brim del supporto" + +#: fdmprinter.def.json +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Larghezza del brim del supporto" + +#: fdmprinter.def.json +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Conteggio linee di rottura supporto" + +#: fdmprinter.def.json +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Dimensioni frammento supporto" + +#: fdmprinter.def.json +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Densità del supporto" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Priorità distanza supporto" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Estrusore del supporto" + +#: fdmprinter.def.json +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Accelerazione parte inferiore del supporto" + +#: fdmprinter.def.json +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Densità parte inferiore del supporto" + +#: fdmprinter.def.json +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Estrusore parte inferiore del supporto" + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Flusso supporto inferiore" + +#: fdmprinter.def.json +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Espansione orizzontale parti inferiori supporto" + +#: fdmprinter.def.json +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Jerk parte inferiore del supporto" + +#: fdmprinter.def.json +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Direzioni della larghezza della linea di supporto inferiore" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Distanza della linea di supporto inferiore" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Larghezza della linea di supporto inferiore" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Configurazione della parte inferiore del supporto" + +#: fdmprinter.def.json +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Velocità di stampa della parte inferiore del supporto" + +#: fdmprinter.def.json +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Spessore parte inferiore del supporto" + +#: fdmprinter.def.json +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Flusso del supporto" + +#: fdmprinter.def.json +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Espansione orizzontale supporto" + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Accelerazione riempimento supporto" + +#: fdmprinter.def.json +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Estrusore riempimento del supporto" + +#: fdmprinter.def.json +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Jerk riempimento supporto" + +#: fdmprinter.def.json +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Spessore dello strato di riempimento di supporto" + +#: fdmprinter.def.json +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Direzione delle linee di riempimento supporto" + +#: fdmprinter.def.json +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Velocità di riempimento del supporto" + +#: fdmprinter.def.json +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Accelerazione interfaccia supporto" + +#: fdmprinter.def.json +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Densità interfaccia supporto" + +#: fdmprinter.def.json +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Estrusore interfaccia del supporto" + +#: fdmprinter.def.json +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Flusso interfaccia di supporto" + +#: fdmprinter.def.json +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Espansione orizzontale interfaccia supporto" + +#: fdmprinter.def.json +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Jerk interfaccia supporto" + +#: fdmprinter.def.json +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Direzioni della linea dell'interfaccia di supporto" + +#: fdmprinter.def.json +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Larghezza della linea dell’interfaccia di supporto" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Configurazione interfaccia supporto" + +#: fdmprinter.def.json +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Risoluzione interfaccia supporto" + +#: fdmprinter.def.json +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Velocità interfaccia supporto" + +#: fdmprinter.def.json +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Spessore interfaccia supporto" + +#: fdmprinter.def.json +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Numero delle linee perimetrali dell'interfaccia di supporto" + +#: fdmprinter.def.json +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Jerk supporto" + +#: fdmprinter.def.json +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Distanza giunzione supporto" + +#: fdmprinter.def.json +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Distanza tra le linee del supporto" + +#: fdmprinter.def.json +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Larghezza delle linee di supporto" + +#: fdmprinter.def.json +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Supporto maglia" + +#: fdmprinter.def.json +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Angolo di sbalzo del supporto" + +#: fdmprinter.def.json +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Configurazione del supporto" + +#: fdmprinter.def.json +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Posizionamento supporto" + +#: fdmprinter.def.json +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Accelerazione parte superiore del supporto" + +#: fdmprinter.def.json +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Densità parte superiore (tetto) del supporto" + +#: fdmprinter.def.json +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Estrusore parte superiore del supporto" + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Flusso supporto superiore" + +#: fdmprinter.def.json +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Espansione orizzontale parti superiori supporto" + +#: fdmprinter.def.json +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Jerk parte superiore del supporto" + +#: fdmprinter.def.json +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Direzioni delle linee di supporto superiori" + +#: fdmprinter.def.json +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Distanza tra le linee della parte superiore (tetto) del supporto" + +#: fdmprinter.def.json +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Larghezza delle linee di supporto superiori" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Configurazione della parte superiore (tetto) del supporto" + +#: fdmprinter.def.json +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Velocità di stampa della parte superiore (tetto) del supporto" + +#: fdmprinter.def.json +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Spessore parte superiore (tetto) del supporto" + +#: fdmprinter.def.json +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Numero delle linee perimetrali del tetto di supporto" + +#: fdmprinter.def.json +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Velocità di stampa del supporto" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Altezza gradini supporto" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Larghezza massima gradino supporto" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Angolo di pendenza minimo gradini supporto" + +#: fdmprinter.def.json +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Struttura di supporto" + +#: fdmprinter.def.json +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Distanza superiore supporto" + +#: fdmprinter.def.json +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Numero delle linee perimetrali supporto" + +#: fdmprinter.def.json +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Distanza X/Y supporto" + +#: fdmprinter.def.json +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Distanza Z supporto" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Velocità della ventola del rivestimento esterno supportato" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Superficie" + +#: fdmprinter.def.json +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Energia superficiale" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Modalità superficie" + +#: fdmprinter.def.json +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Tendenza di adesione superficiale." + +#: fdmprinter.def.json +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Energia superficiale." + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Indica l’accelerazione dello strato iniziale." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "L’accelerazione con cui viene stampato il riempimento." + +#: fdmprinter.def.json +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "L’accelerazione con cui viene effettuata la stiratura." + +#: fdmprinter.def.json +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "L’accelerazione con cui avviene la stampa." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "Indica l’accelerazione con cui viene stampato il raft." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Indica l’accelerazione alla quale vengono stampate le pareti." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Indica l’accelerazione alla quale vengono effettuati gli spostamenti." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_tree_angle description" +msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "L’angolo dei rami. Utilizzare un angolo minore per renderli più verticali e più stabili. Utilizzare un angolo maggiore per avere una portata maggiore." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "Indica l’accelerazione predefinita del movimento della testina di stampa." + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "La profondità (direzione Y) dell’area stampabile." + +#: fdmprinter.def.json +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "Corrisponde al diametro di una torre speciale." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "Distanza tra le linee di stiratura." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Indica la velocità di rotazione della ventola per il raft." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "L’altezza (direzione Z) dell’area stampabile." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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à." + +#: fdmprinter.def.json +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à." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" +"Indica la distanza orizzontale tra lo skirt ed il primo strato della stampa.\n" +"Questa è la distanza minima. Più linee di skirt aumenteranno tale distanza." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "Indica il jerk con cui viene stampato il raft." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Indica la variazione della velocità istantanea massima durante la stiratura." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "Indica la velocità massima del filamento." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Il nome del modello della stampante 3D in uso." + +#: fdmprinter.def.json +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\"." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "Configurazione degli strati superiori." + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Indica la configurazione degli strati superiori/inferiori." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Configurazione utilizzata per la stiratura della superficie superiore." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Indica la velocità alla quale viene stampato il riempimento." + +#: fdmprinter.def.json +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Indica la velocità alla quale viene effettuata la stampa." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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à." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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à." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "Indica la velocità alla quale il raft è stampato." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Indica la velocità alla quale vengono stampate le pareti." + +#: fdmprinter.def.json +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "Velocità alla quale passare sopra la superficie superiore." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "Indica la velocità di stampa degli strati superiori." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Indica la velocità alla quale vengono effettuati gli spostamenti." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +msgstr "Indica la temperatura usata per la stampa del primo strato. Impostare a 0 per disabilitare la manipolazione speciale dello strato iniziale." + +#: fdmprinter.def.json +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Indica la temperatura usata per la stampa." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Il tipo di codice G da generare." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "La larghezza (direzione X) dell’area stampabile." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "La larghezza delle travi della struttura ad incastro." + +#: fdmprinter.def.json +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "Indica la larghezza della torre di innesco." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Strati superiori" + +#: fdmprinter.def.json +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Distanza prolunga rivestimento superiore" + +#: fdmprinter.def.json +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Larghezza rimozione rivestimento superiore" + +#: fdmprinter.def.json +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Accelerazione del rivestimento superficie superiore" + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Estrusore rivestimento superficie superiore" + +#: fdmprinter.def.json +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Flusso rivestimento esterno superficie superiore" + +#: fdmprinter.def.json +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Jerk del rivestimento superficie superiore" + +#: fdmprinter.def.json +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Strati di rivestimento superficie superiore" + +#: fdmprinter.def.json +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Direzioni linea rivestimento superficie superiore" + +#: fdmprinter.def.json +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Larghezza linea rivestimento superficie superiore" + +#: fdmprinter.def.json +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Configurazione del rivestimento superficie superiore" + +#: fdmprinter.def.json +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Velocità del rivestimento superficie" + +#: fdmprinter.def.json +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Spessore dello strato superiore" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Superiore / Inferiore" + +#: fdmprinter.def.json +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Superiore / Inferiore" + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Accelerazione strato superiore/inferiore" + +#: fdmprinter.def.json +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Estrusore superiore/inferiore" + +#: fdmprinter.def.json +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Flusso superiore/inferiore" + +#: fdmprinter.def.json +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Jerk strato superiore/inferiore" + +#: fdmprinter.def.json +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Direzioni delle linee superiori/inferiori" + +#: fdmprinter.def.json +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Larghezza delle linee superiore/inferiore" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Configurazione dello strato superiore/inferiore" + +#: fdmprinter.def.json +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Velocità di stampa delle parti superiore/inferiore" + +#: fdmprinter.def.json +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Spessore dello strato superiore/inferiore" + +#: fdmprinter.def.json +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Contatto con il Piano di Stampa" + +#: fdmprinter.def.json +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Diametro della torre" + +#: fdmprinter.def.json +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Angolazione della parte superiore (tetto) della torre" + #: fdmprinter.def.json 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 "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "Una silhouette 2D della testina di stampa (cappucci ventola inclusi)." - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Pareti esterne prima di quelle interne" - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Quando abilitata, questa funzione stampa le pareti nell’ordine dall’esterno all’interno. In tal modo è possibile migliorare la precisione dimensionale in X e Y quando si utilizza una plastica ad alta viscosità come ABS; tuttavia può diminuire la qualità di stampa della superficie esterna, in particolare sugli sbalzi." - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Compensazione di sovrapposizioni di pareti" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Compensa il flusso per le parti di una parete che viene stampata dove è già presente una parete." - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Compensazione di sovrapposizioni pareti esterne" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Compensa il flusso per le parti di una parete esterna che viene stampata dove è già presente una parete." - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Compensazione di sovrapposizioni pareti interne" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Compensa il flusso per le parti di una parete interna che viene stampata dove è già presente una parete." - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Flusso minimo della parete" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "Flusso percentuale minimo ammesso per una linea perimetrale. La compensazione di sovrapposizione pareti riduce il flusso di una parete quando si trova vicino a una parete esistente. Le pareti con un flusso inferiore a questo valore saranno sostituite da uno spostamento. Quando si utilizza questa impostazione, si deve abilitare la compensazione della sovrapposizione pareti e stampare la parete esterna prima delle pareti interne." - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Preferire retrazione" - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Se abilitata, la retrazione viene utilizzata al posto del combing per gli spostamenti che sostituiscono le pareti aventi un flusso inferiore alla soglia minima." - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Riempimento degli interstizi tra le pareti" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Riempie gli spazi dove non è possibile inserire pareti." - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "In nessun punto" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "In tutti i possibili punti" - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "Esclusione spazi minimi" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "Esclude gli spazi minimi per ridurre le gocce sull’esterno del modello." - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Equalizzazione del flusso del filamento" - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Stampa le linee più sottili del normale più velocemente in modo che la quantità di materiale estruso per secondo rimanga la stessa. I pezzi sottili del modello potrebbero richiedere linee stampate con una larghezza minore rispetto a quella indicata nelle impostazioni. Questa impostazione controlla le variazioni di velocità per tali linee." - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Velocità massima per l’equalizzazione del flusso" - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "Indica la velocità di stampa massima quando si regola la velocità di stampa per equalizzare il flusso." - -#~ 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 \\n." - -#~ 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 \\n." - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Velocità di alimentazione massima" - -#~ 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 (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ 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 le parti superiori (interne) dell'oggetto. Come tale, la percentuale di riempimento è 'valida' solo uno strato al di sotto di ciò che è necessario per supportare il modello." - -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "La differenza tra uno strato di riempimento fulmine con quello immediatamente sopra rispetto alla potatura delle estremità esterne degli alberi. Misurato nell'angolo dato lo spessore." - -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ msgstr "La differenza tra uno strato di riempimento fulmine con quello immediatamente sopra rispetto alla levigatura degli alberi. Misurato nell'angolo dato lo spessore." - -#~ 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." -#~ 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." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "Distanza minima tra l'esterno dello stampo e l'esterno del modello." - -#~ msgctxt "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "I passi del motore passo-passo in un millimetro di estrusione." - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "Per un valore diverso da zero, le corse di spostamento in modalità combing superiori a tale distanza utilizzeranno la retrazione." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Applicare l’offset estrusore al sistema coordinate." - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Guscio" - -#~ 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, while an angle of 90° is vertical." -#~ msgstr "Per le superfici inferiori e/o superiori dell’oggetto con un angolo maggiore di questa impostazione non verrà prolungato il rivestimento esterno superiore/inferiore. In tal modo si evita di prolungare le aree del rivestimento esterno strette create quando la superficie del modello ha un’inclinazione prossima al verticale. Un angolo di 0° è orizzontale, mentre un angolo di 90° è verticale." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "Indica la velocità per lo strato iniziale. Un valore inferiore è consigliabile per migliorare l’adesione al piano di stampa." - -#~ 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 lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order 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ù bassa. Una mesh di riempimento con un ordine più alto modificherà il riempimento delle mesh di riempimento con un ordine inferiore e delle mesh normali." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "Indica la temperatura usata per il piano di stampa riscaldato. Se è 0, la temperatura del piano non si regola." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "Indica la temperatura usata per il piano di stampa riscaldato per il primo strato." - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Tasso di contrazione" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "Il tasso di contrazione in percentuale." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina la priorità di questa maglia quando si considerano i volumi sovrapposti. Alle aree in cui risiedono più maglie saranno applicate le impostazioni della maglia con la classificazione inferiore. Una maglia di riempimento con un ordine più alto modificherà il riempimento delle maglie di riempimento con un ordine inferiore e delle maglie normali." - -#~ 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 "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Ordine maglia di riempimento" - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina quale maglia di riempimento è all’interno del riempimento di un’altra maglia di riempimento. Una maglia di riempimento con un ordine superiore modifica il riempimento delle maglie con maglie di ordine inferiore e normali." - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Supporto ad albero" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Genera un supporto tipo albero con rami di sostegno della stampa. Questo può ridurre l’impiego di materiale e il tempo di stampa, ma aumenta notevolmente il tempo di sezionamento." - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "Modalità di sezionamento di strati con superfici diagonali. Le aree di uno strato possono essere generate in base al punto in cui la parte intermedia dello strato interseca la superficie (intermedia). In alternativa le aree di ciascuno strato possono ricadere all'interno del volume per tutta l'altezza dello strato (Esclusiva) ovvero possono cadere in qualsiasi punto all'interno dello strato (Inclusiva). La tolleranza esclusiva mantiene il maggior numero di dettagli, la tolleranza inclusiva è la più idonea, mentre la tolleranza intermedia richiede il minor tempo di processo." - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Riempimento a spaghetti" - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Stampa il riempimento di tanto in tanto, in modo che il filamento si avvolga in modo casuale all'interno dell'oggetto. Questo riduce il tempo di stampa, ma il comportamento rimane imprevedibile." - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Andatura del riempimento a spaghetti" - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Stampa del riempimento a spaghetti in più fasi o estrusione di tutto il filamento del riempimento alla fine della stampa." - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Angolo di riempimento massimo a spaghetti" - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "Angolo massimo attorno all'asse Z dell'interno stampa per le aree da riempire successivamente con riempimento a spaghetti. La riduzione di questo valore causa la formazione di un maggior numero di parti angolate nel modello da riempire su ogni strato." - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Altezza massima riempimento a spaghetti" - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "Indica l'altezza massima dello spazio interno che può essere combinato e riempito a partire dall'alto." - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Inserto spaghetti" - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "Distanza dalle pareti dalla quale il riempimento a spaghetti verrà stampato." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Flusso spaghetti" - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Regola la densità del riempimento a spaghetti. Notare che la densità del riempimento controlla solo la spaziatura lineare del percorso di riempimento, non la quantità di estrusione per il riempimento a spaghetti." - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Volume extra riempimento a spaghetti" - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Elemento correttivo per regolare il volume totale da estrudere ogni volta durante il riempimento a spaghetti." - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "Il GUID del materiale. È impostato automaticamente. " - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Distanza posizione filamento" - -#~ msgctxt "machine_filament_park_distance description" -#~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used." -#~ msgstr "La distanza dalla punta dell’ugello in cui posizionare il filamento quando l’estrusore non è più utilizzato." - -#~ msgctxt "material_flush_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Valore interno della Material Station" - -#~ msgctxt "material_flush_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Valore interno della Material Station" - -#~ msgctxt "material_end_of_filament_purge_speed label" -#~ msgid "End Of Filament Purge Speed" -#~ msgstr "Velocità di svuotamento della fine del filamento" - -#~ msgctxt "material_end_of_filament_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Valore interno della Material Station" - -#~ msgctxt "material_end_of_filament_purge_length label" -#~ msgid "End Of Filament Purge Length" -#~ msgstr "Lunghezza di svuotamento della fine del filamento" - -#~ msgctxt "material_end_of_filament_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Valore interno della Material Station" - -#~ msgctxt "material_maximum_park_duration description" -#~ msgid "Material Station internal value" -#~ msgstr "Valore interno della Material Station" - -#~ msgctxt "material_no_load_move_factor description" -#~ msgid "Material Station internal value" -#~ msgstr "Valore interno della Material Station" - -#~ 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 "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 "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "category_fixes" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "category_blackmagic" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "sperimentale!" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "Poligono testina macchina" - -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "Una silhouette 2D della testina di stampa (cappucci ventola esclusi)." - -#~ 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 only possible if 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 uno strato alla volta o se attendere di terminare un modello prima di passare al successivo. La modalità 'uno per volta' è possibile solo se tutti i modelli sono separati in modo tale che l'intera testina di stampa possa muoversi tra di essi e se tutti i modelli sono più bassi della distanza tra l'ugello e gli assi X/Y." - -#~ msgctxt "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "Spessore delle pareti supporto ad albero" - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "Lo spessore delle pareti dei rami del supporto ad albero. Le pareti più spesse hanno un tempo di stampa superiore ma non cadono facilmente." - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "Numero delle linee perimetrali supporto ad albero" - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "Il numero di pareti dei rami del supporto ad albero. Le pareti più spesse hanno un tempo di stampa superiore ma non cadono facilmente." - -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. 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 includere il codice G di pulitura ugello tra gli strati. Abilitare questa impostazione potrebbe influire sul comportamento di retrazione al cambio strato. Utilizzare le impostazioni di Retrazione per pulitura per controllare la retrazione in corrispondenza degli strati in cui lo script di pulitura sarà funzionante." - -#~ msgctxt "max_extrusion_before_wipe description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "Il massimo volume di materiale, che può essere estruso prima di iniziare la successiva operazione di pulitura ugello." - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "Velocità di innesco dopo la retrazione" - -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "Z Hop pulitura durante retrazione" - -#~ msgctxt "wipe_hop_enable 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. Questo impedisce l'urto dell'ugello sulla stampa durante gli spostamenti, riducendo la possibilità di far cadere la stampa dal piano." - -#~ msgctxt "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Dimensioni minime area per i poligoni di interfaccia del supporto. I poligoni con un’area inferiore a questo valore non verranno generati." - -#~ 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 not be generated." -#~ msgstr "Dimensioni minime area per le parti superiori 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 not be generated." -#~ msgstr "Dimensioni minime area per le parti inferiori del supporto. I poligoni con un’area inferiore a questo valore non verranno generati." - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "Rotazione alternata del rivestimento esterno" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "Alterna la direzione di stampa degli strati superiori/inferiori. Normalmente vengono stampati solo diagonalmente. Questa impostazione aggiunge le direzioni solo X e solo Y." - -#~ 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 compensate." -#~ msgstr "La massima distanza in mm da compensare." - -#~ 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 "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "Il fattore di moltiplicazione per il flusso -> traslazione distanza." - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "Soglia strati adattivi" - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ msgstr "Soglia per l’utilizzo o meno di uno strato di dimensioni minori. Questo numero è confrontato al valore dell’inclinazione più ripida di uno strato." - -#~ 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." -#~ msgstr "Le pareti che sbalzano oltre questo angolo verranno stampate utilizzando le impostazioni parete di sbalzo. Quando il valore è 90, nessuna parete sarà trattata come sbalzo." - -#~ 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 adhestion 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 "First Layer Speed" -#~ msgstr "Velocità primo layer" - -#~ 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 adhestion 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 "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "Ulteriore passaggio sopra la superficie superiore, senza estrusione di materiale. Ha lo scopo di fondere ulteriormente la plastica alla sommità, creando una superficie più uniforme." - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "Avvio strati con la stessa parte" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "In ciascuno strato inizia la stampa dell’oggetto vicino allo stesso punto, in modo che non si inizia un nuovo strato con la stampa del pezzo con cui è terminato lo strato precedente. Questo consente di ottenere migliori sovrapposizioni e parti piccole, ma aumenta il tempo di stampa." - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ msgstr "Indica l’orientamento della configurazione del riempimento per i supporti. La configurazione del riempimento del supporto viene ruotata sul piano orizzontale." - -#~ 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." -#~ msgstr "La deviazione massima consentita quando si riduce la risoluzione per l'impostazione di Risoluzione massima. Se si aumenta questo parametro, la stampa sarà meno precisa, ma il codice g sarà più piccolo." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "Tipo di codice G" - -#~ 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." -#~ 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." - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "Ignora i piccoli interstizi a Z" - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "Quando il modello presenta piccoli spazi vuoti verticali, circa il 5% del tempo di calcolo supplementare può essere utilizzato per la generazione di rivestimenti esterni superiori ed inferiori in questi interstizi. In questo caso disabilitare l’impostazione." - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "La temperatura utilizzata per il volume di stampa. Se il valore è 0, la temperatura del volume di stampa non verrà regolata." - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." -#~ msgstr "Omettere la retrazione negli spostamenti da un supporto ad un altro in linea retta. L'abilitazione di questa impostazione riduce il tempo di stampa, ma può comportare un'eccessiva produzione di filamenti all'interno della struttura del supporto." - -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "Velocità massima Z" - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "Indica la velocità massima di spostamento del piano di stampa. L’impostazione di questo valore a zero causa l’utilizzo per la stampa dei valori preimpostati in fabbrica per la velocità massima Z." - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." -#~ msgstr "Indica 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_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "Diametro minimo" - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "È il diametro minimo nelle direzioni X/Y di una piccola area, che deve essere sostenuta da una torre speciale." - -#~ msgctxt "prime_tower_circular label" -#~ msgid "Circular Prime Tower" -#~ msgstr "Torre di innesco circolare" - -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "Conferisce alla torre di innesco una forma circolare." - -#~ msgctxt "prime_tower_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 "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 vista dello strato). Notare che la levigatura tende a rimuovere le bavature fini della superficie." - -#~ msgctxt "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "Funzione sperimentale: realizza aree di supporto più piccole nella parte inferiore che in corrispondenza dello sbalzo." - -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "Numero di estrusori abilitati" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "Diametro esterno ugello" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "Lunghezza ugello" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "Angolo ugello" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "Lunghezza della zona di riscaldamento" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "Velocità di riscaldamento" - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "Velocità di raffreddamento" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "Tipo di codice G" - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "Aree non consentite" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "Poligono testina macchina" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "Poligono testina macchina e ventola" - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "Altezza gantry" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "Offset con estrusore" - -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "Uso di strati adattivi" - -#~ msgctxt "adaptive_layer_height_variation label" -#~ msgid "Adaptive layers maximum variation" -#~ msgstr "Variazione massima strati adattivi" - -#~ msgctxt "adaptive_layer_height_variation_step label" -#~ msgid "Adaptive layers variation step size" -#~ msgstr "Dimensione variazione strati adattivi" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "Soglia strati adattivi" - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "Entità della sovrapposizione tra il rivestimento e le pareti espressa in percentuale della larghezza della linea del rivestimento esterno. Una leggera sovrapposizione consente alle pareti di essere saldamente collegate al rivestimento. È una percentuale delle larghezze medie delle linee del rivestimento e della parete più interna." - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Indica la quantità di sovrapposizione tra il rivestimento esterno e le pareti. Una leggera sovrapposizione consente il saldo collegamento delle pareti al rivestimento esterno." - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 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: impostato a 0 per nessuna retrazione. Questo valore generalmente dovrebbe essere lo stesso della lunghezza della zona di riscaldamento." - -#~ 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 and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." -#~ 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 effettuando il combing solo nel riempimento. Si noti che l’opzione ‘Nel riempimento' si comporta esattamente come l’opzione ‘Non nel rivestimento' delle precedenti versioni Cura." - -#~ 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 happend 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 "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. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ 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 cubiche, a quarto di cubo e ottagonali variano per ciascuno strato per garantire una più uniforme distribuzione della forza in ogni direzione." - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "3D concentrica" - -#~ 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 by combing within the infill only." -#~ 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 effettuando il combing solo nel riempimento." - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "3D concentrica" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "3D concentrica" - -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "3D concentrica" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "3D concentrica" - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "Spaziatura delle linee del raft" - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "Spessore torre di innesco" - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "Lo spessore della torre di innesco cava. Uno spessore superiore alla metà del volume minimo della torre di innesco genera una torre di innesco densa." - -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "Ugello pulitura dopo commutazione" - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "Dopo la commutazione dell’estrusore, pulire il materiale fuoriuscito dall’ugello sul primo oggetto stampato. Questo effettua un movimento di pulitura lento in un punto in cui il materiale fuoriuscito causa il minor danno alla qualità della superficie della stampa." - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "Volume di scarico torre di innesco" - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "Quantità di filamento da scaricare durante la pulizia della torre di innesco. Lo scarico è utile per compensare il filamento perso per colatura durante l'inattività dell'ugello." - -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "Massimo sbalzo parete ponte" - -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ msgstr "La larghezza massima ammessa per la zona di aria al di sotto di una linea perimetrale prima di stampare la parete utilizzando le impostazioni ponte. Espressa come percentuale della larghezza della linea perimetrale. Quando la distanza è superiore a questo valore, la linea perimetrale viene stampata utilizzando le normali impostazioni. Più è basso il valore, più è probabile che le linee perimetrali a sbalzo siano stampate utilizzando le impostazioni ponte." - -#~ 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." -#~ msgstr "Ottimizza l'ordine in cui vengono stampate le pareti in modo da ridurre le retrazioni e la distanza percorsa. L'abilitazione di questa funzione porta vantaggi per la maggior parte dei pezzi, ma alcuni potrebbero richiedere un maggior tempo di esecuzione, per cui si consiglia di confrontare i tempi di stampa stimati con e senza ottimizzazione." - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "No rivestimento esterno" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "Cavità 3D incrociate alternate" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "Si applica solo a cavità a metà degli incroci a quattro vie nella configurazione 3D incrociata e alterna la posizione delle cavità tra le altezze in cui la configurazione tocca se stessa." - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "Oggetti cavi" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "Rimuove tutto il riempimento e rende l’interno dell’oggetto adatto per il supporto." - -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "La differenza di altezza massima rispetto all’altezza dello strato di base in mm." - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ msgstr "Centra oggetto" - -#~ msgctxt "mesh_position_x label" -#~ msgid "Mesh position x" -#~ msgstr "Posizione maglia x" - -#~ msgctxt "mesh_position_y label" -#~ msgid "Mesh position y" -#~ msgstr "Posizione maglia y" - -#~ msgctxt "mesh_position_z label" -#~ msgid "Mesh position z" -#~ msgstr "Posizione maglia z" - -#~ msgctxt "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "Avvio GCode" - -#~ msgctxt "machine_start_gcode description" +#: fdmprinter.def.json +msgctxt "travel label" +msgid "Travel" +msgstr "Spostamenti" + +#: fdmprinter.def.json +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Accelerazione spostamenti" + +#: fdmprinter.def.json +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Distanza di aggiramento durante gli spostamenti" + +#: fdmprinter.def.json +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Jerk spostamenti" + +#: fdmprinter.def.json +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Velocità degli spostamenti" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Albero" + +#: fdmprinter.def.json +msgctxt "support_tree_angle label" +msgid "Tree Support Branch Angle" +msgstr "Angolo ramo supporto ad albero" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter label" +msgid "Tree Support Branch Diameter" +msgstr "Diametro ramo supporto ad albero" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter_angle label" +msgid "Tree Support Branch Diameter Angle" +msgstr "Angolo diametro ramo supporto ad albero" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance label" +msgid "Tree Support Branch Distance" +msgstr "Distanza ramo supporto ad albero" + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution label" +msgid "Tree Support Collision Resolution" +msgstr "Risoluzione collisione supporto ad albero" + +#: fdmprinter.def.json +msgctxt "support_tree_max_diameter label" +msgid "Tree Support Trunk Diameter" +msgstr "Diametro del tronco di supporto dell'albero" + +#: fdmprinter.def.json +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Tri-esagonale" + +#: fdmprinter.def.json +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Triangoli" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Triangoli" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Triangoli" + +#: fdmprinter.def.json +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Triangoli" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Triangoli" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Unione dei volumi in sovrapposizione" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Uso di strati adattivi" + +#: fdmprinter.def.json +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Utilizzo delle torri" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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'." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Specificato dall’utente" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Fattore di scala verticale per la compensazione della contrazione" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Attendi il riscaldamento del piano di stampa" + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Attendi il riscaldamento dell’ugello" + +#: fdmprinter.def.json +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Accelerazione parete" + +#: fdmprinter.def.json +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Conteggio distribuzione parete" + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Estrusore pareti" + +#: fdmprinter.def.json +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Flusso della parete" + +#: fdmprinter.def.json +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Jerk parete" + +#: fdmprinter.def.json +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Numero delle linee perimetrali" + +#: fdmprinter.def.json +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Larghezza delle linee perimetrali" + +#: fdmprinter.def.json +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Ordinamento parete" + +#: fdmprinter.def.json +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Velocità di stampa della parete" + +#: fdmprinter.def.json +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Spessore delle pareti" + +#: fdmprinter.def.json +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Lunghezza transizione parete" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Distanza di filtro transizione parete" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Margine filtro di transizione parete" + +#: fdmprinter.def.json +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Angolo di soglia di transizione parete" + +#: fdmprinter.def.json +msgctxt "shell label" +msgid "Walls" +msgstr "Pareti" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 si controlla dove si trova il modello sopra e sotto il supporto, procedere ad intervalli di altezza prestabilita. Valori inferiori causeranno un sezionamento più lento, mentre valori più alti potrebbero causare la stampa del supporto normale in alcuni punti in cui dovrebbe esserci un'interfaccia di supporto." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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'." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.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 "Specifica se usare comandi di retrazione firmware (G10/G11) anziché utilizzare la proprietà E nei comandi G1 per retrarre il materiale." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Indica la larghezza di una singola linea di riempimento." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Indica la larghezza di una singola linea di supporto." + +#: fdmprinter.def.json +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Indica la larghezza di una singola linea superiore/inferiore." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Indica la larghezza di una singola linea perimetrale." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Posizione X spazzolino di pulitura" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Velocità di sollevamento (Hop) per pulitura" + +#: fdmprinter.def.json +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Ugello pulitura inattiva sulla torre di innesco" + +#: fdmprinter.def.json +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Distanza spostamento longitudinale di pulitura" + +#: fdmprinter.def.json +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Pulitura ugello tra gli strati" + +#: fdmprinter.def.json +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Pausa pulitura" + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Conteggio ripetizioni operazioni di pulitura" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Distanza di retrazione per pulitura" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Retrazione per pulitura abilitata" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Entità di innesco supplementare dopo retrazione per pulitura" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Velocità di pulitura retrazione" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Velocità di retrazione per pulitura" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Velocità di retrazione per pulitura" + +#: fdmprinter.def.json +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Pulitura Z Hop" + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Altezza Z Hop pulitura" + +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Nel riempimento" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Endstop X in direzione positiva" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y esclude Z" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Endstop Y in direzione positiva" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Endstop Z in direzione positiva" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Z Hop dopo cambio estrusore" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Z Hop dopo cambio altezza estrusore" + +#: fdmprinter.def.json +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Altezza Z Hop" + +#: fdmprinter.def.json +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Z Hop solo su parti stampate" + +#: fdmprinter.def.json +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Velocità di sollevamento Z" + +#: fdmprinter.def.json +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Z Hop durante la retrazione" + +#: fdmprinter.def.json +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Allineamento delle giunzioni a Z" + +#: fdmprinter.def.json +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Posizione della cucitura in Z" + +#: fdmprinter.def.json +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Riferimento giunzione Z" + +#: fdmprinter.def.json +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Giunzione Z X" + +#: fdmprinter.def.json +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Giunzione Z Y" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z esclude X/Y" + +#: fdmprinter.def.json +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +#: fdmprinter.def.json +msgctxt "travel description" +msgid "travel" +msgstr "spostamenti" + +#~ msgctxt "wireframe_strategy option compensate" +#~ msgid "Compensate" +#~ msgstr "Compensazione" + +#~ msgctxt "wireframe_top_jump description" +#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." +#~ msgstr "Crea un piccolo nodo alla sommità di una linea verticale verso l'alto, in modo che lo strato orizzontale consecutivo abbia una migliore possibilità di collegarsi ad essa. Applicabile solo alla funzione Wire Printing." + +#~ msgctxt "wireframe_bottom_delay description" +#~ msgid "Delay time after a downward move. Only applies to Wire Printing." +#~ msgstr "Indica il tempo di ritardo dopo uno spostamento verso il basso. Applicabile solo alla funzione Wire Printing." + +#~ msgctxt "wireframe_top_delay description" +#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." +#~ msgstr "Indica il tempo di ritardo dopo uno spostamento verso l'alto, in modo da consentire l'indurimento della linea verticale indirizzata verso l'alto. Applicabile solo alla funzione Wire Printing." + +#~ msgctxt "wireframe_flat_delay description" +#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." +#~ msgstr "Indica il tempo di ritardo tra due segmenti orizzontali. Introducendo un tale ritardo si può ottenere una migliore adesione agli strati precedenti in corrispondenza dei punti di collegamento, mentre ritardi troppo prolungati provocano cedimenti. Applicabile solo alla funzione Wire Printing." + +#~ msgctxt "wireframe_nozzle_clearance description" +#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." +#~ msgstr "Indica la distanza tra l'ugello e le linee diagonali verso il basso. Un maggior gioco risulta in linee diagonali verso il basso con un minor angolo di inclinazione, cosa che a sua volta si traduce in meno collegamenti verso l'alto con lo strato successivo. Applicabile solo alla funzione Wire Printing." + +#~ msgctxt "wireframe_up_half_speed description" #~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." +#~ "Distance of an upward move which is extruded with half speed.\n" +#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." #~ msgstr "" -#~ "I comandi del Gcode da eseguire all’avvio, separati da \n" -#~ "." - -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "Fine GCode" - -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "I comandi del Gcode da eseguire alla fine, separati da \n" -#~ "." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "Tipo di Gcode" - -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "Il tipo di gcode da generare." - -#~ 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 GCode." -#~ 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 GCode in nessun altro modo." - -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. 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 Gcode script is output." -#~ msgstr "Utilizza l'estrusione relativa invece di quella assoluta. L'utilizzo di fasi E relative facilita la post-elaborazione del Gcode. Tuttavia, questa impostazione non è supportata da tutte le stampanti e può causare deviazioni molto piccole nella quantità di materiale depositato rispetto agli E-steps assoluti. Indipendentemente da questa impostazione, la modalità estrusione sarà sempre impostata su assoluta prima che venga generato uno script Gcode." - -#~ msgctxt "infill_offset_x description" -#~ msgid "The infill pattern is offset this distance along the X axis." -#~ msgstr "Il riempimento si scosta di questa distanza lungo l'asse X." - -#~ msgctxt "infill_offset_y description" -#~ msgid "The infill pattern is offset this distance along the Y axis." -#~ msgstr "Il riempimento si scosta di questa distanza lungo l'asse Y." - -#~ msgctxt "infill_overlap 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 "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "Entità della sovrapposizione tra il rivestimento e le pareti espressa in percentuale della larghezza della linea. Una leggera sovrapposizione consente alle pareti di essere saldamente collegate al rivestimento. È una percentuale delle larghezze medie delle linee del rivestimento e della parete più interna." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "Indica la temperatura usata per il piano di stampa riscaldato. Se è 0, il piano non si riscalda per questa stampa." - -#~ msgctxt "wall_x_extruder_nr label" -#~ msgid "Inner Walls Extruder" -#~ msgstr "Estrusore parete interna" - -#~ 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, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Configurazione del materiale di riempimento della stampa. Il riempimento a linea e zig zag su layers alternati riduce il costo del materiale. Le configurazioni a griglia, triangolo, a cubo, ottagonale, a quarto di cubo e concentrica comportano la stampa completa in ogni layer. Il riempimento a cubi, a quarto di cubo e a ottagonale cambia a ogni layer per consentire una distribuzione più uniforme della resistenza in ogni direzione." - -#~ msgctxt "zig_zaggify_infill description" -#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -#~ msgstr "Collega le estremità in cui la configurazione del riempimento incontra la parete interna utilizzando linee che seguono il profilo della parete interna stessa. Consentendo tale configurazione è possibile fare in modo che il riempimento aderisca meglio alle pareti riducendo gli effetti dello stesso sulla qualità delle superfici verticali. Disabilitando questa configurazione si riduce la quantità di materiale utilizzato." - -#~ 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 "" -#~ "Indica la distanza orizzontale tra lo skirt ed il primo strato della stampa.\n" -#~ "Questa è la distanza minima, più linee di skirt aumenteranno tale distanza." - -#~ msgctxt "z_offset_layer_0 label" -#~ msgid "Initial Layer Z Offset" -#~ msgstr "Scostamento Z layer iniziale" - -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "L'estrusore viene posizionato ad una distanza dall'altezza normale del primo layer pari al valore indicato. Questo scostamento può essere positivo (più in alto) o negativo (più in basso). Alcuni tipi di filamento aderiscono meglio al piano di stampa se l'estrusore viene leggermente sollevato." - -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Scostamento Z layers di rastremazione" - -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "Se diverso da zero, lo scostamento Z viene ridotto a 0 entro il numero di layers indicato. Un valore di 0 indica che lo scostamento Z rimane costante per tutti i layers di stampa." - -#~ msgctxt "raft_smoothing description" -#~ msgid "This setting control 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 "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, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Indica la configurazione del materiale di riempimento della stampa. Il riempimento a linea e a zig zag cambia direzione su layers alternati, riducendo il costo del materiale. Le configurazioni a griglia, triangolo, cubo, tetraedriche e concentriche sono stampate completamente su ogni layers. Il riempimento delle configurazioni cubiche e tetraedriche cambia ad ogni strato per fornire una distribuzione più uniforme della forza su ciascuna direzione." - -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "Tetraedro" - -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "Estende rivestimenti esterni nel riempimento" - -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "Estende le aree di rivestimento esterno superiori e/o inferiori delle superfici piatte. Per default, i rivestimenti esterni si interrompono sotto le linee delle pareti circostanti il riempimento, ma questo può generare la comparsa di fori quando la densità del riempimento è bassa. Questa impostazione prolunga i rivestimenti esterni oltre le linee delle pareti in modo che il riempimento sullo strato successivo appoggi sul rivestimento esterno." - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ msgstr "Estendi rivestimenti esterni superiori nel riempimento" - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "Estendi le aree di rivestimento esterno superiori (aree con aria al di sopra) in modo che supportino il riempimento sovrastante." +#~ "Indica la distanza di uno spostamento verso l'alto con estrusione a velocità dimezzata.\n" +#~ "Ciò può garantire una migliore adesione agli strati precedenti, senza eccessivo riscaldamento del materiale su questi strati. Applicabile solo alla funzione Wire Printing." -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "Estendi rivestimenti esterni inferiori nel riempimento" +#~ msgctxt "wireframe_fall_down description" +#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Indica la distanza di caduta del materiale dopo un estrusione verso l'alto. Tale distanza viene compensata. Applicabile solo alla funzione Wire Printing." -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Estendi aree rivestimento esterno inferiori (aree con aria al di sotto) in modo che siano ancorate dai layers di riempimento sovrastanti e sottostanti." +#~ msgctxt "wireframe_drag_along description" +#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Indica la distanza di trascinamento del materiale di una estrusione verso l'alto nell'estrusione diagonale verso il basso. Tale distanza viene compensata. Applicabile solo alla funzione Wire Printing." -#~ msgctxt "expand_skins_expand_distance description" -#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." -#~ msgstr "La distanza di prolungamento dei rivestimenti esterni nel riempimento. La distanza preimpostata è sufficiente per coprire lo spazio tra le linee di riempimento e chiude i fori che si presentano sul rivestimento esterno nel punto in cui incontra la parete quando la densità del riempimento è bassa. Una distanza inferiore sovente è sufficiente." +#~ msgctxt "wireframe_flow_connection description" +#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." +#~ msgstr "Determina la compensazione di flusso nei percorsi verso l'alto o verso il basso. Applicabile solo alla funzione Wire Printing." -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "Salta alcuni collegamenti a zig-zag" +#~ msgctxt "wireframe_flow_flat description" +#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." +#~ msgstr "Determina la compensazione di flusso durante la stampa di linee piatte. Applicabile solo alla funzione Wire Printing." -#~ msgctxt "support_skip_some_zags description" -#~ msgid "Skip some ZigZags connections to make the support structure easier to break." -#~ msgstr "Salto di alcuni collegamenti a zig-zag per rendere la struttura del supporto più facile da rompere." +#~ msgctxt "wireframe_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." +#~ msgstr "Determina la compensazione del flusso: la quantità di materiale estruso viene moltiplicata per questo valore. Applicabile solo alla funzione Wire Printing." -#~ msgctxt "support_zag_skip_count label" -#~ msgid "ZigZag Connection Skip Count" -#~ msgstr "Conteggio dei salti dei collegamenti a zig-zag" +#~ msgctxt "wireframe_strategy option knot" +#~ msgid "Knot" +#~ msgstr "Nodo" -#~ msgctxt "support_zag_skip_count description" -#~ msgid "Skip one in every N connection lines to make the support structure easier to break." -#~ msgstr "Salto di una ogni N linee di collegamento per rendere la struttura del supporto più facile da rompere." +#~ msgctxt "wireframe_straight_before_down description" +#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." +#~ msgstr "Indica la percentuale di copertura di una linea diagonale verso il basso da un tratto di linea orizzontale. Questa opzione può impedire il cedimento della sommità delle linee verticali verso l'alto. Applicabile solo alla funzione Wire Printing." -#~ msgctxt "machine_show_variants label" -#~ msgid "Show machine variants" -#~ msgstr "Mostra varianti macchina" +#~ msgctxt "wireframe_enabled description" +#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." +#~ msgstr "Consente di stampare solo la superficie esterna come una struttura di linee, realizzando una stampa \"sospesa nell'aria\". Questa funzione si realizza mediante la stampa orizzontale dei contorni del modello con determinati intervalli Z che sono collegati tramite linee che si estendono verticalmente verso l'alto e diagonalmente verso il basso." -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Wait for build plate heatup" -#~ msgstr "Attendi il riscaldamento del piano di stampa" +#~ msgctxt "wireframe_strategy option retract" +#~ msgid "Retract" +#~ msgstr "Retrazione" -#~ msgctxt "material_print_temp_wait label" -#~ msgid "Wait for nozzle heatup" -#~ msgstr "Attendi il riscaldamento dell’ugello" +#~ msgctxt "wireframe_printspeed description" +#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." +#~ msgstr "Indica la velocità a cui l'ugello si muove durante l'estrusione del materiale. Applicabile solo alla funzione Wire Printing." -#~ msgctxt "material_print_temp_prepend label" -#~ msgid "Include material temperatures" -#~ msgstr "Includi le temperature del materiale" +#~ msgctxt "wireframe_printspeed_down description" +#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." +#~ msgstr "Indica la velocità di stampa di una linea diagonale verso il basso. Applicabile solo alla funzione Wire Printing." -#~ msgctxt "material_bed_temp_prepend label" -#~ msgid "Include build plate temperature" -#~ msgstr "Includi temperatura piano di stampa" +#~ msgctxt "wireframe_printspeed_up description" +#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." +#~ msgstr "Indica la velocità di stampa di una linea verticale verso l'alto della struttura \"sospesa nell'aria\". Applicabile solo alla funzione Wire Printing." -#~ msgctxt "machine_width label" -#~ msgid "Machine width" -#~ msgstr "Larghezza macchina" +#~ msgctxt "wireframe_printspeed_bottom description" +#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." +#~ msgstr "Indica la velocità di stampa del primo strato, che è il solo strato a contatto con il piano di stampa. Applicabile solo alla funzione Wire Printing." -#~ msgctxt "machine_depth label" -#~ msgid "Machine depth" -#~ msgstr "Profondità macchina" +#~ msgctxt "wireframe_printspeed_flat description" +#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." +#~ msgstr "Indica la velocità di stampa dei contorni orizzontali del modello. Applicabile solo alla funzione Wire Printing." -#~ msgctxt "machine_shape label" -#~ msgid "Build plate shape" -#~ msgstr "Forma del piano di stampa" +#~ msgctxt "wireframe_strategy description" +#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." +#~ msgstr "Strategia per garantire il collegamento di due strati consecutivi ad ogni punto di connessione. La retrazione consente l'indurimento delle linee verticali verso l'alto nella giusta posizione, ma può causare la deformazione del filamento. È possibile realizzare un nodo all'estremità di una linea verticale verso l'alto per accrescere la possibilità di collegamento e lasciarla raffreddare; tuttavia ciò può richiedere velocità di stampa ridotte. Un'altra strategia consiste nel compensare il cedimento della parte superiore di una linea verticale verso l'alto; tuttavia le linee non sempre ricadono come previsto." -#~ msgctxt "machine_height label" -#~ msgid "Machine height" -#~ msgstr "Altezza macchina" +#~ msgctxt "wireframe_roof_inset description" +#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." +#~ msgstr "Indica la distanza percorsa durante la realizzazione di una connessione da un profilo della superficie superiore (tetto) verso l'interno. Applicabile solo alla funzione Wire Printing." -#~ msgctxt "machine_heated_bed label" -#~ msgid "Has heated build plate" -#~ msgstr "Piano di stampa riscaldato" +#~ msgctxt "wireframe_roof_drag_along description" +#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Indica la distanza di trascinamento dell'estremità di una linea interna durante lo spostamento di ritorno verso il contorno esterno della superficie superiore (tetto). Questa distanza viene compensata. Applicabile solo alla funzione Wire Printing." -#~ msgctxt "machine_center_is_zero label" -#~ msgid "Is center origin" -#~ msgstr "Origine centro" +#~ msgctxt "wireframe_roof_fall_down description" +#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Indica la distanza di caduta delle linee della superficie superiore (tetto) della struttura \"sospesa nell'aria\" durante la stampa. Questa distanza viene compensata. Applicabile solo alla funzione Wire Printing." -#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -#~ msgid "RepRap (Marlin/Sprinter)" -#~ msgstr "RepRap (Marlin/Sprinter)" +#~ msgctxt "wireframe_height description" +#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." +#~ msgstr "Indica l'altezza delle linee che si estendono verticalmente verso l'alto e diagonalmente verso il basso tra due parti orizzontali. Questo determina la densità complessiva della struttura del reticolo. Applicabile solo alla funzione Wire Printing." -#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" -#~ msgid "RepRap (Volumetric)" -#~ msgstr "RepRap (Volumetric)" +#~ msgctxt "wireframe_roof_outer_delay description" +#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." +#~ msgstr "Indica il tempo trascorso sul perimetro esterno del foro di una superficie superiore (tetto). Tempi più lunghi possono garantire un migliore collegamento. Applicabile solo alla funzione Wire Printing." -#~ msgctxt "wall_thickness description" -#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -#~ msgstr "Indica lo spessore delle pareti esterne in senso orizzontale. Questo valore diviso per la larghezza della linea della parete definisce il numero di pareti." +#~ msgctxt "wireframe_bottom_delay label" +#~ msgid "WP Bottom Delay" +#~ msgstr "Ritardo dopo spostamento verso il basso WP" -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Indica la quantità di sovrapposizione tra il rivestimento esterno e le pareti. Una leggera sovrapposizione consente il saldo collegamento delle pareti al rivestimento esterno." +#~ msgctxt "wireframe_printspeed_bottom label" +#~ msgid "WP Bottom Printing Speed" +#~ msgstr "Velocità di stampa della parte inferiore WP" -#~ msgctxt "support_interface_line_width description" -#~ msgid "Width of a single support interface line." -#~ msgstr "Indica la larghezza di una singola linea dell’interfaccia di supporto." +#~ msgctxt "wireframe_flow_connection label" +#~ msgid "WP Connection Flow" +#~ msgstr "Flusso di connessione WP" -#~ msgctxt "sub_div_rad_mult label" -#~ msgid "Cubic Subdivision Radius" -#~ msgstr "Raggio suddivisione in cubi" +#~ msgctxt "wireframe_height label" +#~ msgid "WP Connection Height" +#~ msgstr "Altezza di connessione WP" -#~ msgctxt "sub_div_rad_mult description" -#~ msgid "A multiplier on 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 more subdivisions, i.e. more small cubes." -#~ msgstr "Un moltiplicatore sul raggio dal centro di ciascun cubo per controllare il contorno del modello, per decidere se questo cubo deve essere suddiviso. Valori maggiori comportano più suddivisioni, vale a dire più cubi piccoli." +#~ msgctxt "wireframe_printspeed_down label" +#~ msgid "WP Downward Printing Speed" +#~ msgstr "Velocità di stampa diagonale WP" -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Upper Skins" -#~ msgstr "Estendi rivestimenti esterni superiori" +#~ msgctxt "wireframe_drag_along label" +#~ msgid "WP Drag Along" +#~ msgstr "Trascinamento WP" -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." -#~ msgstr "Estendi le aree di rivestimento esterno superiori (aree con aria al di sopra) in modo che supportino il riempimento sovrastante." +#~ msgctxt "wireframe_up_half_speed label" +#~ msgid "WP Ease Upward" +#~ msgstr "Spostamento verso l'alto a velocità ridotta WP" -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Lower Skins" -#~ msgstr "Estendi rivestimenti esterni inferiori" +#~ msgctxt "wireframe_fall_down label" +#~ msgid "WP Fall Down" +#~ msgstr "Caduta del materiale WP" -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Estendi aree rivestimento esterno inferiori (aree con aria al di sotto) in modo che siano ancorate dagli strati di riempimento sovrastanti e sottostanti." +#~ msgctxt "wireframe_flat_delay label" +#~ msgid "WP Flat Delay" +#~ msgstr "Ritardo tra due segmenti orizzontali WP" -#~ msgctxt "speed_support_interface description" -#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality." -#~ msgstr "Indica la velocità alla quale sono stampate le parti superiori (tetto) e inferiori del supporto. La stampa di queste parti a velocità inferiori può ottimizzare la qualità delle parti a sbalzo." +#~ msgctxt "wireframe_flow_flat label" +#~ msgid "WP Flat Flow" +#~ msgstr "Flusso linee piatte WP" -#~ msgctxt "acceleration_support_interface description" -#~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality." -#~ msgstr "Indica l’accelerazione alla quale sono stampate le parti superiori (tetto) e inferiori del supporto. La stampa di queste parti ad accelerazioni inferiori può ottimizzare la qualità delle parti a sbalzo." +#~ msgctxt "wireframe_flow label" +#~ msgid "WP Flow" +#~ msgstr "Flusso WP" -#~ msgctxt "jerk_support_interface description" -#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." -#~ msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate le parti superiori e inferiori." +#~ msgctxt "wireframe_printspeed_flat label" +#~ msgid "WP Horizontal Printing Speed" +#~ msgstr "Velocità di stampa orizzontale WP" -#~ msgctxt "support_enable label" -#~ msgid "Enable Support" -#~ msgstr "Abilitazione del supporto" +#~ msgctxt "wireframe_top_jump label" +#~ msgid "WP Knot Size" +#~ msgstr "Dimensione dei nodi WP" -#~ msgctxt "support_enable description" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Abilita le strutture di supporto. Queste strutture supportano le parti del modello con sbalzi rigidi." +#~ msgctxt "wireframe_nozzle_clearance label" +#~ msgid "WP Nozzle Clearance" +#~ msgstr "Gioco ugello WP" -#~ msgctxt "support_interface_extruder_nr description" -#~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion." -#~ msgstr "Il blocco estrusore utilizzato per la stampa delle parti superiori e inferiori del supporto. Utilizzato nell’estrusione multipla." +#~ msgctxt "wireframe_roof_drag_along label" +#~ msgid "WP Roof Drag Along" +#~ msgstr "Trascinamento superficie superiore (tetto) WP" -#~ 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." -#~ msgstr "Indica l'altezza dei gradini della parte inferiore del supporto (a guisa di scala) in appoggio sul modello. Un valore basso rende difficoltosa la rimozione del supporto, ma un valore troppo alto può comportare strutture di supporto instabili." +#~ msgctxt "wireframe_roof_fall_down label" +#~ msgid "WP Roof Fall Down" +#~ msgstr "Caduta delle linee della superficie superiore (tetto) WP" -#~ msgctxt "support_bottom_height label" -#~ msgid "Support Bottom Thickness" -#~ msgstr "Spessore dei layers inferiori del supporto" +#~ msgctxt "wireframe_roof_inset label" +#~ msgid "WP Roof Inset Distance" +#~ msgstr "Distanza dalla superficie superiore WP" -#~ msgctxt "support_bottom_height description" -#~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests." -#~ msgstr "Indica lo spessore dei layers inferiori del supporto. Questo controlla il numero di slayers fitti stampati sulla sommità dei punti di un modello su cui appoggia un supporto." +#~ msgctxt "wireframe_roof_outer_delay label" +#~ msgid "WP Roof Outer Delay" +#~ msgstr "Ritardo su perimetro esterno foro superficie superiore (tetto) WP" -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above 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 si controlla la presenza di un modello sopra il supporto, adottare gradini di una data altezza. Valori inferiori generano un sezionamento più lento, mentre valori superiori possono causare la stampa del supporto normale in punti in cui avrebbe dovuto essere presente un’interfaccia supporto." +#~ msgctxt "wireframe_printspeed label" +#~ msgid "WP Speed" +#~ msgstr "Velocità WP" -#~ msgctxt "support_interface_density description" -#~ msgid "Adjusts the density of the roofs and bottoms 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 del supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere." +#~ msgctxt "wireframe_straight_before_down label" +#~ msgid "WP Straighten Downward Lines" +#~ msgstr "Correzione delle linee diagonali WP" -#~ msgctxt "support_interface_line_distance label" -#~ msgid "Support Interface Line Distance" -#~ msgstr "Distanza della linea di interfaccia supporto" +#~ msgctxt "wireframe_strategy label" +#~ msgid "WP Strategy" +#~ msgstr "Strategia WP" -#~ msgctxt "support_interface_line_distance description" -#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." -#~ msgstr "Indica la distanza tra le linee di interfaccia del supporto stampato. Questa impostazione viene calcolata mediante la densità dell’interfaccia del supporto, ma può essere regolata separatamente." +#~ msgctxt "wireframe_top_delay label" +#~ msgid "WP Top Delay" +#~ msgstr "Ritardo dopo spostamento verso l'alto WP" -#~ 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 used to be called Joris in older versions." -#~ msgstr "Questa funzione regolarizza il movimento dell'asse Z del bordo esterno. Questo creerà un costante aumento di Z su tutta la stampa. Questa funzione trasforma un modello solido in una stampa a singola parete con un fondo solido. Nelle versioni precedenti questa funzione era denominata Joris." +#~ msgctxt "wireframe_printspeed_up label" +#~ msgid "WP Upward Printing Speed" +#~ msgstr "Velocità di stampa verticale WP" -#~ msgctxt "material_print_temperature description" -#~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." -#~ msgstr "Indica la temperatura usata per la stampa. Impostare a 0 per pre-riscaldare la stampante manualmente." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually." -#~ msgstr "Indica la temperatura usata per il piano di stampa riscaldato. Impostare a 0 per pre-riscaldare la stampante manualmente." - -#~ 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. This value is rounded down to a multiple of the layer height." -#~ msgstr "Indica la distanza dalla parte superiore/inferiore della struttura di supporto alla stampa. Questa distanza fornisce lo spazio per rimuovere i supporti dopo aver stampato il modello. Questo valore viene arrotondato per difetto a un multiplo dell’altezza strato." - -#~ msgctxt "z_seam_type option back" -#~ msgid "Back" -#~ msgstr "Indietro" - -#~ msgctxt "multiple_mesh_overlap label" -#~ msgid "Dual Extrusion Overlap" -#~ msgstr "Sovrapposizione doppia estrusione" +#~ msgctxt "wireframe_enabled label" +#~ msgid "Wire Printing" +#~ msgstr "Funzione Wire Printing (WP)" diff --git a/resources/i18n/ja_JP/cura.po b/resources/i18n/ja_JP/cura.po index 0055039355..5d2579888b 100644 --- a/resources/i18n/ja_JP/cura.po +++ b/resources/i18n/ja_JP/cura.po @@ -1,12 +1,14 @@ # Cura -# Copyright (C) 2022 Ultimaker B.V. +# Copyright (C) 2022 UltiMaker. # This file is distributed under the same license as the Cura package. +# Ultimaker , 2022. # +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0200\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-04-06 15:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,236 +18,114 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -msgctxt "@label" -msgid "Unknown" -msgstr "不明" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "下のプリンターはグループの一員であるため接続できません" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "ネットワークで利用可能なプリンター" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "上書きできません" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Connected printers" -msgstr "キャンセルしたプリンター" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Preset printers" -msgstr "プリンターのプリセット" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:143 -#, 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}を取り除いてもよろしいですか?この操作は元に戻せません。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:61 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 -msgctxt "@label" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:65 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "ビジュアル" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:66 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "ビジュアルプロファイルは、優れたビジュアルと表面品質を目的としたビジュアルプロトタイプやモデルをプリントするために設計されています。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:70 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "エンジニアリングプロファイルは、精度向上と公差の厳格対応を目的とした機能プロトタイプや最終用途部品をプリントするために設計されています。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:75 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "ドラフト" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:76 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "ドラフトプロファイルは、プリント時間の大幅短縮を目的とした初期プロトタイプとコンセプト検証をプリントするために設計されています。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:232 -msgctxt "@label" -msgid "Custom Material" -msgstr "カスタムフィラメント" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:233 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 -msgctxt "@label" -msgid "Custom" -msgstr "カスタム" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:391 -msgctxt "@label" -msgid "Custom profiles" -msgstr "カスタムプロファイル" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:426 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "すべてのサポートのタイプ ({0})" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "全てのファイル" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 -msgctxt "@info:status" -msgid "Calculated" -msgstr "計算された" - -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 +#: cura/API/Account.py:199 msgctxt "@info:title" msgid "Login failed" msgstr "ログインに失敗しました" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: cura/Arranging/ArrangeObjectsJob.py:25 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "造形物のために新しい位置を探索中" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: cura/Arranging/ArrangeObjectsJob.py:29 msgctxt "@info:title" msgid "Finding Location" msgstr "位置確認" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "全ての造形物の造形サイズに対し、適切な位置が確認できません" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: cura/Arranging/ArrangeObjectsJob.py:43 msgctxt "@info:title" msgid "Can't Find Location" msgstr "位置を確保できません" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:115 +#: cura/Backups/Backup.py:115 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "ユーザーデータディレクトリからアーカイブを作成できません: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:159 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +#: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159 +#: plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: plugins/CuraDrive/src/DrivePluginExtension.py:126 msgctxt "@info:title" msgid "Backup" msgstr "バックアップ" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:134 +#: cura/Backups/Backup.py:134 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "適切なデータまたはメタデータがないのにCuraバックアップをリストアしようとしました。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:145 +#: cura/Backups/Backup.py:145 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that is higher than the current version." msgstr "現行バージョンより上の Cura バックアップをリストアしようとしました。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:158 +#: cura/Backups/Backup.py:158 msgctxt "@info:backup_failed" msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "The following error occurred while trying to restore a Cura backup:" +msgstr "Curaのバックアップのリストア中に次のエラーが発生しました:" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: cura/BuildVolume.py:100 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." msgstr "プリントシークエンス設定値により、ガントリーと造形物の衝突を避けるため印刷データの高さを低くしました。" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 +#: cura/BuildVolume.py:103 msgctxt "@info:title" msgid "Build Volume" msgstr "造形サイズ" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Curaを開始できません" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" -"

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

    \n" +"

    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" +"

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

    \n" "

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

    \n" "

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

    \n" "

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

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: cura/CrashHandler.py:122 msgctxt "@action:button" -msgid "Send crash report to Ultimaker" -msgstr "クラッシュ報告をUltimakerに送信する" +msgid "Send crash report to UltiMaker" +msgstr "クラッシュ報告をUltiMakerに送信する" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "詳しいクラッシュ報告を表示する" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "コンフィグレーションのフォルダーを表示する" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "バックアップとリセットの設定" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "クラッシュ報告" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

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

    \n" @@ -256,573 +136,2239 @@ msgstr "" "

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

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "システム情報" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "不明" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Curaバージョン" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Cura言語" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "OS言語" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "プラットフォーム" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qtバージョン" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQtバージョン" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized" -msgstr "" +msgstr "初期化されていません" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGLバージョン: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGLベンダー: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGLレンダラー: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 +#: cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "エラー・トレースバック" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 +#: cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "ログ" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 +#: cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "レポート送信" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:531 +#: cura/CuraApplication.py:540 msgctxt "@info:progress" msgid "Loading machines..." msgstr "プリンターを読み込み中..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +#: cura/CuraApplication.py:547 msgctxt "@info:progress" msgid "Setting up preferences..." msgstr "プレファレンスをセットアップ中..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +#: cura/CuraApplication.py:692 msgctxt "@info:progress" msgid "Initializing Active Machine..." msgstr "アクティブなプリンターを初期化中..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +#: cura/CuraApplication.py:839 msgctxt "@info:progress" msgid "Initializing machine manager..." msgstr "プリンターマネージャーを初期化中..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +#: cura/CuraApplication.py:853 msgctxt "@info:progress" msgid "Initializing build volume..." msgstr "ビルドボリュームを初期化中..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +#: cura/CuraApplication.py:921 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "シーンをセットアップ中..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +#: cura/CuraApplication.py:957 msgctxt "@info:progress" msgid "Loading interface..." msgstr "インターフェイスを読み込み中..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +#: cura/CuraApplication.py:962 msgctxt "@info:progress" msgid "Initializing engine..." msgstr "エンジンを初期化中..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#: cura/CuraApplication.py:1290 #, 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" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1798 +#: cura/CuraApplication.py:1816 #, 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}の取り込みをスキップしました。" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 +#: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 msgctxt "@info:title" msgid "Warning" msgstr "警告" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#: cura/CuraApplication.py:1828 #, 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}の取り込みをスキップしました。" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1812 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156 +#: cura/Settings/CuraContainerRegistry.py:166 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 msgctxt "@info:title" msgid "Error" msgstr "エラー" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 +#: cura/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "不明" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "下のプリンターはグループの一員であるため接続できません" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "ネットワークで利用可能なプリンター" + +#: cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "上書きできません" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:28 +msgctxt "@label" +msgid "Connected printers" +msgstr "キャンセルしたプリンター" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +msgctxt "@label" +msgid "Preset printers" +msgstr "プリンターのプリセット" + +#: cura/Machines/Models/GlobalStacksModel.py:165 +#, 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}を取り除いてもよろしいですか?この操作は元に戻せません。" + +#: cura/Machines/Models/IntentCategoryModel.py:42 +#: cura/Machines/Models/IntentSelectionModel.py:61 +#: cura/Machines/Models/IntentTranslations.py:11 +#: cura/Machines/Models/QualityManagementModel.py:347 +msgctxt "@label" +msgid "Default" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:45 +#: cura/Machines/Models/IntentSelectionModel.py:65 +#: cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "ビジュアル" + +#: cura/Machines/Models/IntentCategoryModel.py:46 +#: cura/Machines/Models/IntentSelectionModel.py:66 +#: cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "ビジュアルプロファイルは、優れたビジュアルと表面品質を目的としたビジュアルプロトタイプやモデルをプリントするために設計されています。" + +#: cura/Machines/Models/IntentCategoryModel.py:49 +#: cura/Machines/Models/IntentSelectionModel.py:70 +#: cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:50 +#: cura/Machines/Models/IntentSelectionModel.py:71 +#: cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "エンジニアリングプロファイルは、精度向上と公差の厳格対応を目的とした機能プロトタイプや最終用途部品をプリントするために設計されています。" + +#: cura/Machines/Models/IntentCategoryModel.py:53 +#: cura/Machines/Models/IntentSelectionModel.py:75 +#: cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "ドラフト" + +#: cura/Machines/Models/IntentCategoryModel.py:54 +#: cura/Machines/Models/IntentSelectionModel.py:76 +#: cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "ドラフトプロファイルは、プリント時間の大幅短縮を目的とした初期プロトタイプとコンセプト検証をプリントするために設計されています。" + +#: cura/Machines/Models/MaterialManagementModel.py:232 +msgctxt "@label" +msgid "Custom Material" +msgstr "カスタムフィラメント" + +#: cura/Machines/Models/MaterialManagementModel.py:233 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 +msgctxt "@label" +msgid "Custom" +msgstr "カスタム" + +#: cura/Machines/Models/QualityManagementModel.py:400 +msgctxt "@label" +msgid "Custom profiles" +msgstr "カスタムプロファイル" + +#: cura/Machines/Models/QualityManagementModel.py:435 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "すべてのサポートのタイプ ({0})" + +#: cura/Machines/Models/QualityManagementModel.py:436 +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "全てのファイル" + +#: cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "計算された" + +#: cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "造形データを増やす、配置する" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 +#: cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "造形データを配置" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 +#: cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "造形データを配置" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +#: cura/OAuth2/AuthorizationHelpers.py:89 msgctxt "@message" msgid "Could not read response." msgstr "応答を読み取れません。" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +#: cura/OAuth2/AuthorizationRequestHandler.py:75 msgctxt "@message" msgid "The provided state is not correct." msgstr "指定された状態が正しくありません。" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +#: cura/OAuth2/AuthorizationRequestHandler.py:80 msgctxt "@message" msgid "Timeout when authenticating with the account server." msgstr "アカウントサーバーでの認証中にタイムアウトしました。" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +#: cura/OAuth2/AuthorizationRequestHandler.py:97 msgctxt "@message" msgid "Please give the required permissions when authorizing this application." msgstr "このアプリケーションの許可において必要な権限を与えてください。" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +#: cura/OAuth2/AuthorizationRequestHandler.py:104 msgctxt "@message" msgid "Something unexpected happened when trying to log in, please try again." msgstr "ログイン時に予期しないエラーが発生しました。やり直してください。" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:216 +#: cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "新しいサインインプロセスを開始できません。別のサインインの試行がアクティブなままになっていないか確認します。" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:277 +#: cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "Ultimaker アカウントサーバーに到達できません。" +msgid "Unable to reach the UltiMaker account server." +msgstr "UltiMaker アカウントサーバーに到達できません。" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 +#: cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" msgid "Log-in failed" msgstr "ログインに失敗しました" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +#: cura/PrinterOutput/UploadMaterialsJob.py:104 msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "材料のアーカイブを作成してプリンターと同期するのに失敗しました。" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +#: cura/PrinterOutput/UploadMaterialsJob.py:111 +#: cura/PrinterOutput/UploadMaterialsJob.py:165 msgctxt "@text:error" msgid "Failed to load the archive of materials to sync it with printers." msgstr "材料のアーカイブを読み込んでプリンターと同期するのに失敗しました。" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +#: cura/PrinterOutput/UploadMaterialsJob.py:143 msgctxt "@text:error" msgid "The response from Digital Factory appears to be corrupted." msgstr "Digital Factoryからの応答が破損しているようです。" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +#: cura/PrinterOutput/UploadMaterialsJob.py:147 +#: cura/PrinterOutput/UploadMaterialsJob.py:151 +#: cura/PrinterOutput/UploadMaterialsJob.py:155 msgctxt "@text:error" msgid "The response from Digital Factory is missing important information." msgstr "Digital Factoryからの応答に重要な情報がありません。" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +#: cura/PrinterOutput/UploadMaterialsJob.py:218 msgctxt "@text:error" msgid "Failed to connect to Digital Factory to sync materials with some of the printers." msgstr "Digital Factoryに接続して一部のプリンターと材料を同期するのに失敗しました。" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +#: cura/PrinterOutput/UploadMaterialsJob.py:232 msgctxt "@text:error" msgid "Failed to connect to Digital Factory." msgstr "Digital Factoryに接続するのに失敗しました。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:207 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: cura/Settings/ActiveQuality.py:43 +msgctxt "@label" +msgid "Experimental" +msgstr "実験" + +#: cura/Settings/ContainerManager.py:207 +#: cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "すでに存在するファイルです" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: cura/Settings/ContainerManager.py:208 +#: cura/Settings/CuraContainerRegistry.py:141 #, 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} は既に存在します。ファイルを上書きしますか?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 +#: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "無効なファイルのURL:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "{0}にプロファイルを書き出すのに失敗しました: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: cura/Settings/CuraContainerRegistry.py:163 #, 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}にプロファイルを書き出すことに失敗しました。:ライタープラグイン失敗の報告。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "{0}にプロファイルを書き出しました" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "書き出し完了" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "{0}からプロファイルの取り込に失敗しました:{1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: cura/Settings/CuraContainerRegistry.py:209 #, 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}からプロファイルの取り込はできません。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "ファイル{0}にはカスタムプロファイルがインポートされていません" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "{0}からプロファイルの取り込に失敗しました:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: cura/Settings/CuraContainerRegistry.py:252 +#: cura/Settings/CuraContainerRegistry.py:262 #, 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}には、正しくないデータが含まれているため、インポートできません。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "{0}からプロファイルの取り込みに失敗しました:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "プロファイル{0}の取り込みが完了しました。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "ファイル{0}には、正しいプロファイルが含まれていません。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "プロファイル{0}は不特定なファイルまたは破損があります。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "カスタムプロファイル" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "プロファイルはクオリティータイプが不足しています。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "アクティブなプリンターはありません。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "プロファイルを追加できません。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "クオリティータイプ「{0}」は、現在アクティブなプリンター定義「{1}」と互換性がありません。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: cura/Settings/CuraContainerRegistry.py:488 #, 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}」を使用できないため、プロファイルは表示されません。このクオリティータイプを使用できる材料/ノズルの組み合わせに切り替えてください。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "サポート対象外" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:219 +#: cura/Settings/MachineManager.py:746 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:221 msgctxt "@label" msgid "Nozzle" msgstr "ノズル" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +#: cura/Settings/MachineManager.py:890 msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "現在利用可能な次のエクストルーダーに合わせて設定が変更されました:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: cura/Settings/MachineManager.py:891 msgctxt "@info:title" msgid "Settings updated" msgstr "設定が更新されました" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 +#: cura/Settings/MachineManager.py:1514 msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "エクストルーダーを無効にしました" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 +#: cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "サポート対象外" + +#: cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "" + +#: cura/UI/AddPrinterPagesModel.py:17 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" msgid "Add" msgstr "追加" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:290 +#: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290 msgctxt "@action:button" msgid "Finish" msgstr "終わる" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:508 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:323 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:291 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:74 +#: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386 +#: plugins/ImageReader/ConfigUI.qml:323 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 +#: resources/qml/ColorDialog.qml:143 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: resources/qml/Dialogs/RenameDialog.qml:103 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 msgctxt "@action:button" msgid "Cancel" msgstr "キャンセル" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: cura/UI/ObjectsModel.py:69 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "グループ #{group_nr}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 +#: cura/UI/PrintInformation.py:87 msgctxt "@tooltip" msgid "Outer Wall" msgstr "アウターウォール" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +#: cura/UI/PrintInformation.py:88 msgctxt "@tooltip" msgid "Inner Walls" msgstr "インナーウォール" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +#: cura/UI/PrintInformation.py:89 msgctxt "@tooltip" msgid "Skin" msgstr "スキン" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +#: cura/UI/PrintInformation.py:90 msgctxt "@tooltip" msgid "Infill" msgstr "インフィル" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +#: cura/UI/PrintInformation.py:91 msgctxt "@tooltip" msgid "Support Infill" msgstr "サポートイルフィル" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +#: cura/UI/PrintInformation.py:92 msgctxt "@tooltip" msgid "Support Interface" msgstr "サポートインターフェイス" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +#: cura/UI/PrintInformation.py:93 msgctxt "@tooltip" msgid "Support" msgstr "サポート" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +#: cura/UI/PrintInformation.py:94 msgctxt "@tooltip" msgid "Skirt" msgstr "スカート" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +#: cura/UI/PrintInformation.py:95 msgctxt "@tooltip" msgid "Prime Tower" msgstr "プライムタワー" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +#: cura/UI/PrintInformation.py:96 msgctxt "@tooltip" msgid "Travel" msgstr "移動" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +#: cura/UI/PrintInformation.py:97 msgctxt "@tooltip" msgid "Retractions" msgstr "退却" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +#: cura/UI/PrintInformation.py:98 msgctxt "@tooltip" msgid "Other" msgstr "他" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:63 +#: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63 msgctxt "@text:window" msgid "The release notes could not be opened." msgstr "リリースノートを開くことができませんでした。" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:277 +#: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277 msgctxt "@action:button" msgid "Next" msgstr "次" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68 msgctxt "@action:button" msgid "Skip" msgstr "スキップ" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:443 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:186 +#: cura/UI/WhatsNewPagesModel.py:76 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444 +#: resources/qml/Dialogs/AboutDialog.qml:188 msgctxt "@action:button" msgid "Close" msgstr "閉める" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: cura/UltimakerCloud/CloudMaterialSync.py:66 msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "プリントを開始する前に、材料プロファイルをプリンターと同期させてください。" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: cura/UltimakerCloud/CloudMaterialSync.py:67 msgctxt "@action:button" msgid "New materials installed" msgstr "新しい材料がインストールされました" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: cura/UltimakerCloud/CloudMaterialSync.py:74 msgctxt "@action:button" msgid "Sync materials" msgstr "材料を同期" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:397 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:80 +#: cura/UltimakerCloud/CloudMaterialSync.py:82 +#: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80 msgctxt "@action:button" msgid "Learn more" msgstr "詳しく見る" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +#: cura/UltimakerCloud/CloudMaterialSync.py:135 msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "材料アーカイブを{}に保存できませんでした:" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +#: cura/UltimakerCloud/CloudMaterialSync.py:136 msgctxt "@message:title" msgid "Failed to save material archive" msgstr "材料アーカイブの保存に失敗しました" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +#: cura/UltimakerCloud/CloudMaterialSync.py:188 msgctxt "@text" msgid "Unknown error." msgstr "不明なエラー。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:558 +#, 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} があります。マシンをインポートできません。代わりにモデルをインポートします。" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:561 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "プロジェクトファイルを開く" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: plugins/3MFReader/WorkspaceDialog.qml:99 +#: plugins/3MFReader/WorkspaceDialog.qml:127 +#: plugins/3MFReader/WorkspaceDialog.qml:134 +msgctxt "@button" +msgid "Create new" +msgstr "" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:692 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "プロジェクトファイル{0}が突然アクセスできなくなりました:{1}。" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:720 +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "プロジェクトファイルを開けません" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:700 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:718 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "プロジェクトファイル{0}は破損しています:{1}。" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:765 +#, 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では認識できないプロファイルを使用して作成されています。" + +#: plugins/3MFReader/WorkspaceDialog.py:233 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "推奨" + +#: plugins/3MFReader/WorkspaceDialog.py:235 +msgctxt "@title:tab" +msgid "Custom" +msgstr "カスタム" + +#: plugins/3MFReader/WorkspaceDialog.py:411 +msgctxt "@info:status" +msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." +msgstr "このプロジェクトで使用される材料にはCuraで利用できないいくつかの材料コードが使用されているため、望ましくないプリント結果になる可能性があります。Marketplaceから材料パッケージ一式をインストールすることを強くお勧めします。" + +#: plugins/3MFReader/WorkspaceDialog.py:413 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "材料プロファイルがインストールされていません" + +#: plugins/3MFReader/WorkspaceDialog.py:426 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "材料のインストール" + +#: plugins/3MFReader/WorkspaceDialog.qml:15 +msgctxt "@title:window" +msgid "Open Project" +msgstr "プロジェクトを開く" + +#: plugins/3MFReader/WorkspaceDialog.qml:31 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61 +msgctxt "@action:title" +msgid "Summary - Cura Project" +msgstr "サマリーCuraプロジェクト" + +#: plugins/3MFReader/WorkspaceDialog.qml:65 +msgctxt "@action:ComboBox Update/override existing profile" +msgid "Update existing" +msgstr "既存を更新する" + +#: plugins/3MFReader/WorkspaceDialog.qml:66 +msgctxt "@action:ComboBox Save settings in a new profile" +msgid "Create new" +msgstr "新しいものを作成する" + +#: plugins/3MFReader/WorkspaceDialog.qml:83 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97 +msgctxt "@action:label" +msgid "Printer settings" +msgstr "プリンターの設定" + +#: plugins/3MFReader/WorkspaceDialog.qml:92 +#: plugins/3MFReader/WorkspaceRow.qml:23 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106 +msgctxt "@action:label" +msgid "Type" +msgstr "タイプ" + +#: plugins/3MFReader/WorkspaceDialog.qml:98 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +msgctxt "@action:label" +msgid "Printer Group" +msgstr "プリンターグループ" + +#: plugins/3MFReader/WorkspaceDialog.qml:103 +msgctxt "@action:label" +msgid "Open With" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:104 +msgctxt "@info:tooltip" +msgid "Printer settings will be updated to match the settings saved with the project." +msgstr "プリンターの設定は、プロジェクトに保存されている設定に合わせて更新されます。" + +#: plugins/3MFReader/WorkspaceDialog.qml:156 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222 +msgctxt "@action:label" +msgid "Profile settings" +msgstr "プロファイル設定" + +#: plugins/3MFReader/WorkspaceDialog.qml:166 +#: plugins/3MFReader/WorkspaceDialog.qml:238 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246 +msgctxt "@action:label" +msgid "Name" +msgstr "ネーム" + +#: plugins/3MFReader/WorkspaceDialog.qml:172 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263 +msgctxt "@action:label" +msgid "Intent" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:178 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230 +msgctxt "@action:label" +msgid "Not in profile" +msgstr "プロファイル内にない" + +#: plugins/3MFReader/WorkspaceDialog.qml:179 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235 +msgctxt "@action:label" +msgid "%1 override" +msgid_plural "%1 overrides" +msgstr[0] "%1個の設定を上書き" + +#: plugins/3MFReader/WorkspaceDialog.qml:185 +msgctxt "@action:label" +msgid "Derivative from" +msgstr "次から引き出す" + +#: plugins/3MFReader/WorkspaceDialog.qml:186 +msgctxt "@action:label" +msgid "%1, %2 override" +msgid_plural "%1, %2 overrides" +msgstr[0] "%2の%1個の設定を上書き" + +#: plugins/3MFReader/WorkspaceDialog.qml:226 +msgctxt "@action:label" +msgid "Material settings" +msgstr "フィラメント設定" + +#: plugins/3MFReader/WorkspaceDialog.qml:280 +msgctxt "@action:label" +msgid "Setting visibility" +msgstr "視野設定" + +#: plugins/3MFReader/WorkspaceDialog.qml:290 +msgctxt "@action:label" +msgid "Mode" +msgstr "モード" + +#: plugins/3MFReader/WorkspaceDialog.qml:296 +msgctxt "@action:label" +msgid "%1 out of %2" +msgstr "%2のうち%1" + +#: plugins/3MFReader/WorkspaceDialog.qml:321 +msgctxt "@action:warning" +msgid "Loading a project will clear all models on the build plate." +msgstr "プロジェクトを読み込むとビルドプレート上のすべてのモデルがクリアされます。" + +#: plugins/3MFReader/WorkspaceDialog.qml:367 +msgctxt "@label" +msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." +msgstr "このプロジェクトで使用される材料は現在、UltiMaker Curaにインストールされていません。
    材料プロファイルをインストールし、プロジェクトを再度開いてください。" + +#: plugins/3MFReader/WorkspaceDialog.qml:392 +msgctxt "@action:button" +msgid "Open" +msgstr "開く" + +#: plugins/3MFReader/WorkspaceDialog.qml:398 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "それでもプロジェクトを開く" + +#: plugins/3MFReader/WorkspaceDialog.qml:407 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "未ダウンロードの材料をインストールする" + +#: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33 +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "3MF ファイル" + +#: plugins/3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "3MFリーダー" + +#: plugins/3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "3MFファイルを読むこむためのサポートを供給する。" + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "3MFリーダーのプラグインが破損しています。" + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "まだ書き込んでいないワークスペースがありません。まずはプリンターを追加してください。" + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "この作業スペースに書き込む権限がありません。" + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "使用しているオペレーティングシステムでは、この場所またはこのファイル名でプロジェクトファイルを保存することはできません。" + +#: plugins/3MFWriter/ThreeMFWriter.py:240 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "3Mf ファイルの書き込みエラー。" + +#: plugins/3MFWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "3MFファイル" + +#: plugins/3MFWriter/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Curaが3MF fileを算出します" + +#: plugins/3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "3MFリーダー" + +#: plugins/3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "3MFファイルを読むこむためのサポートを供給する。" + +#: plugins/AMFReader/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "AMF ファイル" + +#: plugins/AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "AMFリーダー" + +#: plugins/AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "AMFファイルの読込みをサポートしています。" + +#: plugins/CuraDrive/plugin.json +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "構成をバックアップしてリストアします。" + +#: plugins/CuraDrive/plugin.json +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura バックアップ" + +#: plugins/CuraDrive/src/CreateBackupJob.py:25 +msgctxt "@info:title" +msgid "Backups" +msgstr "バックアップ" + +#: plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "バックアップのアップロード中にエラーが発生しました。" + +#: plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "バックアップを作成しています..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "バックアップの作成中にエラーが発生しました。" + +#: plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "バックアップをアップロードしています..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "バックアップのアップロードを完了しました。" + +#: plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "バックアップが最大ファイルサイズを超えています。" + +#: plugins/CuraDrive/src/DriveApiService.py:86 +#: plugins/CuraDrive/src/RestoreBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "バックアップのリストア中にエラーが発生しました。" + +#: plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "バックアップを管理する" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "詳しく知りたい?" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "今すぐバックアップする" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "自動バックアップ" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Cura を起動した日は常にバックアップを自動生成します。" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 +msgctxt "@button" +msgid "Restore" +msgstr "リストア" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "バックアップの削除" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "このバックアップを削除しますか?これは取り消しできません。" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "バックアップのリストア" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 +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 を閉じますか?" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Cura バージョン" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "プリンタ" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "材料" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "プロファイル" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "プラグイン" + +#: plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Cura バックアップ" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "マイ バックアップ" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "現在バックアップは存在しません。[今すぐバックアップする] を使用して作成してください。" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "プレビューではバックアップは5つまでに制限されています。古いバックアップは削除してください。" + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Cura のバックアップおよび同期を設定します。" + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 +#: plugins/Marketplace/resources/qml/Marketplace.qml:312 +#: resources/qml/Account/GeneralOperations.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180 +#: resources/qml/WelcomePages/CloudContent.qml:212 +msgctxt "@button" +msgid "Sign in" +msgstr "サインイン" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "予期しないエラーが発生し、スライスに失敗しました。問題追跡ツールでのバグ報告をご検討ください。" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:163 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "スライスに失敗しました" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "バグを報告" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:169 +msgctxt "@message:description" +msgid "Report a bug on UltiMaker Cura's issue tracker." +msgstr "UltiMaker Curaの問題追跡ツールでバグを報告してください。" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:416 +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "選ばれたプリンターまたは選ばれたプリント構成が異なるため進行中の材料にてスライスを完了できません。" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:417 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:450 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:477 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:501 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:514 +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "スライスできません" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:449 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "現在の設定でスライスが完了できません。以下の設定にエラーがあります: {0}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:476 +#, 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}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:488 +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "プライムタワーまたはプライム位置が無効なためスライスできません。" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:500 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "無効な Extruder %s に関連付けられている造形物があるため、スライスできません。" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:510 +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 "" +"設定を見直し、モデルが次の状態かどうかを確認してください。\n" +"- 造形サイズに合っている\n" +"- 有効なエクストルーダーに割り当てられている\n" +"- すべてが修飾子メッシュとして設定されているわけではない" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "レイヤーを処理しています" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "インフォメーション" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Curaエンジンバックエンド" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "CuraEngineスライシングバックエンドにリンクを供給する。" + +#: plugins/CuraProfileReader/__init__.py:14 +#: plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Curaプロファイル" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Curaプロファイルリーダー" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Curaプロファイルを取り込むためのサポートを供給する。" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Curaプロファイルライター" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Curaプロファイルを書き出すためのサポートを供給する。" + +#: plugins/DigitalLibrary/plugin.json +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にファイルを保存したりできるようにします。" + +#: plugins/DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 +msgctxt "@option" +msgid "Save Cura project and print file" +msgstr "Curaプロジェクトとプリントファイルを保存する" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Curaプロジェクトを保存する" + +#: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19 +msgctxt "@text Placeholder for the username if it has been deleted" +msgid "deleted user" +msgstr "削除されたユーザー" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "必要なアップデートの情報にアクセスできません。" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, 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}に更新することを推奨します。" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "%sの新しい安定版ファームウェアが利用可能です" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "アップデートの仕方" + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "ファームウェアアップデートをチェックする。" + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "ファームウェアアップデートチェッカー" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "ファームウェアアップデート" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "ファームウェアアップデート" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 +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プリンターを動かすソフトウェアです。このファームウェアはステップモーターを操作し、温度を管理し、プリンターとして成すべき点を補います。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "配達時のファームウェアで動かすことはできますが、新しいバージョンの方がより改善され、便利なフィーチャーがついてきます。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "自動でファームウェアをアップグレード" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "カスタムファームウェアをアップロードする" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "プリンターと接続されていないため、ファームウェアをアップデートできません。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "プリンターとの接続はファームウェアのアップデートをサポートしていないため、ファームウェアをアップデートできません。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "カスタムファームウェアを選択する" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "ファームウェアアップデート" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 +msgctxt "@label" +msgid "Updating firmware." +msgstr "ファームウェアアップデート中。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "ファームウェアアップデート完了。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "不特定なエラーの発生によりファームウェアアップデート失敗しました。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "コミュニケーションエラーによりファームウェアアップデート失敗しました。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "インプット/アウトプットエラーによりファームウェアアップデート失敗しました。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "ファームウェアが見つからず、ファームウェアアップデート失敗しました。" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "name" +msgid "Firmware Updater" +msgstr "ファームウェアアップデーター" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "ファームウェアアップデートのためのマシン操作を提供します。" + +#: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "圧縮G-codeファイル" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "圧縮G-codeリーダー" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "圧縮ファイルからG-codeを読み取ります。" + +#: plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "GCodeGzWriter はテキストモードをサポートしていません。" + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "圧縮G-codeライター" + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "圧縮ファイルにG-codeを書き込みます。" + +#: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14 +#: plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "G-codeファイル" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "G-codeプロファイルリーダー" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "g-codeファイルからプロファイルを読み込むサポートを供給する。" + +#: plugins/GCodeReader/FlavorParser.py:359 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "G-codeを解析" + +#: plugins/GCodeReader/FlavorParser.py:361 +#: plugins/GCodeReader/FlavorParser.py:515 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "G-codeの詳細" + +#: plugins/GCodeReader/FlavorParser.py:513 +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-codeが適応しているか確認してください。G-codeの表示が適切でない場合があります。" + +#: plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "Gファイル" + +#: plugins/GCodeReader/plugin.json +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "G-codeファイルの読み込み、表示を許可する。" + +#: plugins/GCodeReader/plugin.json +msgctxt "name" +msgid "G-code Reader" +msgstr "G-codeリーダー" + +#: plugins/GCodeWriter/GCodeWriter.py:75 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "GCodeWriter は非テキストモードはサポートしていません。" + +#: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "エクスポートする前にG-codeの準備をしてください。" + +#: plugins/GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "G-codeライター" + +#: plugins/GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "ファイルにG-codeを書き込みます。" + +#: plugins/ImageReader/ConfigUI.qml:14 +msgctxt "@title:window" +msgid "Convert Image" +msgstr "画像の変換" + +#: plugins/ImageReader/ConfigUI.qml:33 +msgctxt "@action:label" +msgid "Height (mm)" +msgstr "高さ(mm)" + +#: plugins/ImageReader/ConfigUI.qml:56 +msgctxt "@info:tooltip" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "“ベース”から各ピクセルへの最大距離。" + +#: plugins/ImageReader/ConfigUI.qml:66 +msgctxt "@action:label" +msgid "Base (mm)" +msgstr "ベース(mm)" + +#: plugins/ImageReader/ConfigUI.qml:90 +msgctxt "@info:tooltip" +msgid "The base height from the build plate in millimeters." +msgstr "ミリメートルでビルドプレートからベースの高さ。" + +#: plugins/ImageReader/ConfigUI.qml:100 +msgctxt "@action:label" +msgid "Width (mm)" +msgstr "幅(mm)" + +#: plugins/ImageReader/ConfigUI.qml:124 +msgctxt "@info:tooltip" +msgid "The width in millimeters on the build plate" +msgstr "ビルドプレート上の幅(ミリメートル)" + +#: plugins/ImageReader/ConfigUI.qml:134 +msgctxt "@action:label" +msgid "Depth (mm)" +msgstr "深さ(mm)" + +#: plugins/ImageReader/ConfigUI.qml:158 +msgctxt "@info:tooltip" +msgid "The depth in millimeters on the build plate" +msgstr "ビルドプレート上の奥行きミリメートル" + +#: plugins/ImageReader/ConfigUI.qml:187 +msgctxt "@item:inlistbox" +msgid "Darker is higher" +msgstr "暗いほうを高く" + +#: plugins/ImageReader/ConfigUI.qml:188 +msgctxt "@item:inlistbox" +msgid "Lighter is higher" +msgstr "薄いほうを高く" + +#: plugins/ImageReader/ConfigUI.qml:195 +msgctxt "@info:tooltip" +msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." +msgstr "リトフェインの場合、暗いピクセルは、より多くの光を通すために厚い場所に対応する必要があります。高さマップの場合、明るいピクセルは高い地形を表しているため、明るいピクセルは生成された3D モデルの厚い位置に対応する必要があります。" + +#: plugins/ImageReader/ConfigUI.qml:205 +msgctxt "@action:label" +msgid "Color Model" +msgstr "カラーモデル" + +#: plugins/ImageReader/ConfigUI.qml:224 +msgctxt "@item:inlistbox" +msgid "Linear" +msgstr "線形" + +#: plugins/ImageReader/ConfigUI.qml:225 +msgctxt "@item:inlistbox" +msgid "Translucency" +msgstr "半透明性" + +#: plugins/ImageReader/ConfigUI.qml:232 +msgctxt "@info:tooltip" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "リトフェインの場合、半透明性を示す単純な対数モデルを利用できます。高さマップの場合、ピクセル値は高さに比例します。" + +#: plugins/ImageReader/ConfigUI.qml:242 +msgctxt "@action:label" +msgid "1mm Transmittance (%)" +msgstr "1mm透過率(%)" + +#: plugins/ImageReader/ConfigUI.qml:263 +msgctxt "@info:tooltip" +msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." +msgstr "厚さ1ミリメートルのプリントを貫通する光の割合。この値を小さくすると、画像の暗い領域ではコントラストが増し、明るい領域ではコントラストが減少します。" + +#: plugins/ImageReader/ConfigUI.qml:274 +msgctxt "@action:label" +msgid "Smoothing" +msgstr "スムージング" + +#: plugins/ImageReader/ConfigUI.qml:298 +msgctxt "@info:tooltip" +msgid "The amount of smoothing to apply to the image." +msgstr "画像に適応したスムージング量。" + +#: plugins/ImageReader/ConfigUI.qml:329 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 +#: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25 +msgctxt "@action:button" +msgid "OK" +msgstr "" + +#: plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "JPG画像" + +#: plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "JPEG画像" + +#: plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "PNG画像" + +#: plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "BMP画像" + +#: plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "GIF画像" + +#: plugins/ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "2Dの画像ファイルからプリント可能なジオメトリーを生成を可能にする。" + +#: plugins/ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "画像リーダー" + +#: plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Cura 15.04 プロファイル" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "レガシーCuraプロファイルリーダー" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "レガシーCura Versionsからプロファイルを取り込むためのサポートを供給する。" + +#: plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "プリンターの設定" + +#: plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "プリンター" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "ノズル設定" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 +msgctxt "@label" +msgid "Nozzle size" +msgstr "ノズルサイズ" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "適合する材料直径" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "ノズルオフセットX" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "ノズルオフセットY" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "冷却ファンの番号" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "エクストルーダーがG-Codeを開始する" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "エクストルーダーがG-Codeを終了する" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "プリンターの設定" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 +msgctxt "@label" +msgid "X (Width)" +msgstr "X(幅)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (奥行き)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (高さ)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 +msgctxt "@label" +msgid "Build plate shape" +msgstr "ビルドプレート形" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 +msgctxt "@label" +msgid "Origin at center" +msgstr "センターを出します" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 +msgctxt "@label" +msgid "Heated bed" +msgstr "ヒーテッドドベッド" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 +msgctxt "@label" +msgid "Heated build volume" +msgstr "加熱式ビルドボリューム" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 +msgctxt "@label" +msgid "G-code flavor" +msgstr "G-codeフレーバー" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "プリントヘッド設定" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 +msgctxt "@label" +msgid "X min" +msgstr "X分" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 +msgctxt "@label" +msgid "Y min" +msgstr "Y分" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 +msgctxt "@label" +msgid "X max" +msgstr "最大X" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 +msgctxt "@label" +msgid "Y max" +msgstr "最大Y" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 +msgctxt "@label" +msgid "Gantry Height" +msgstr "ガントリーの高さ" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "エクストルーダーの数" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:342 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "エクストルーダーのオフセットをGCodeに適用します" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:390 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "G-Codeの開始" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:401 +msgctxt "@title:label" +msgid "End G-code" +msgstr "G-codeの終了" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "name" +msgid "Machine Settings Action" +msgstr "プリンターの設定アクション" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "プリンターの設定を変更(印刷ボリューム、ノズルサイズ、その他)" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "材料パッケージとソフトウェアパッケージをアカウントと同期しますか?" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:95 +msgctxt "@info:title" +msgid "Changes detected from your UltiMaker account" +msgstr "UltiMakerアカウントから変更が検出されました" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 +msgctxt "@action:button" +msgid "Sync" +msgstr "同期" + +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "同期中..." + +#: plugins/Marketplace/CloudSync/LicenseModel.py:12 +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:79 +msgctxt "@button" +msgid "Decline" +msgstr "拒否する" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:13 +#: resources/qml/WelcomePages/UserAgreementContent.qml:53 +msgctxt "@button" +msgid "Agree" +msgstr "同意する" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:77 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "プラグインライセンス同意書" + +#: plugins/Marketplace/CloudSync/LicensePresenter.py:42 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "拒否してアカウントから削除" + +#: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "変更を有効にするために{}を終了して再始動する必要があります。" + +#: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "{}プラグインのダウンロードに失敗しました" + +#: plugins/Marketplace/LocalPackageList.py:28 +msgctxt "@label" +msgid "Installed Plugins" +msgstr "インストールされたプラグイン" + +#: plugins/Marketplace/LocalPackageList.py:29 +msgctxt "@label" +msgid "Installed Materials" +msgstr "インストールされた材料" + +#: plugins/Marketplace/LocalPackageList.py:33 +msgctxt "@label" +msgid "Bundled Plugins" +msgstr "バンドルされたプラグイン" + +#: plugins/Marketplace/LocalPackageList.py:34 +msgctxt "@label" +msgid "Bundled Materials" +msgstr "バンドルされた材料" + +#: plugins/Marketplace/PackageModel.py:43 +msgctxt "@label:property" +msgid "Unknown Package" +msgstr "不明なパッケージ" + +#: plugins/Marketplace/PackageModel.py:66 +msgctxt "@label:property" +msgid "Unknown Author" +msgstr "不明な作成者" + +#: plugins/Marketplace/PackageModel.py:95 +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プロジェクトファイルに保存されている材料パッケージ定義を部分的に使用する場合は自己責任で行ってください。" + +#: plugins/Marketplace/RemotePackageList.py:117 +msgctxt "@info:error" +msgid "Could not interpret the server's response." +msgstr "サーバーの応答を解釈できませんでした。" + +#: plugins/Marketplace/RemotePackageList.py:148 +msgctxt "@info:error" +msgid "Could not reach Marketplace." +msgstr "マーケットプレースにアクセスできませんでした。" + +#: plugins/Marketplace/plugin.json +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "アプリケーションの拡張機能を管理し、UltiMakerウェブサイトから拡張機能を参照できるようにします。" + +#: plugins/Marketplace/plugin.json +msgctxt "name" +msgid "Marketplace" +msgstr "マーケットプレース" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 +msgctxt "@title" +msgid "Changes from your account" +msgstr "アカウントにおける変更" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +msgctxt "@button" +msgid "Dismiss" +msgstr "無視" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +#: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 +#: resources/qml/WelcomePages/WhatsNewContent.qml:175 +msgctxt "@button" +msgid "Next" +msgstr "次" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "次のパッケージが追加されます:" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "次のパッケージは、Curaバージョンに互換性がないため、インストールできません:" + +#: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "未ダウンロードの材料をインストールする" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "プラグインライセンス同意書" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:47 +msgctxt "@text" +msgid "Please read and agree with the plugin licence." +msgstr "プラグインライセンスをお読みになり、同意してください。" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "承認する" + +#: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "パッケージの管理" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:12 +msgctxt "@header" +msgid "Manage packages" +msgstr "パッケージの管理" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:16 +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のプラグインと材料プロファイルはここで管理します。プラグインを常に最新の状態に保ち、セットアップのバックアップを定期的に取るようにしてください。" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" +msgid "Loading..." +msgstr "読み込み中..." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "プラグイン" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "材料" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "ブラウザでの検索" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:271 +msgctxt "@button" +msgid "In order to use the package you will need to restart Cura" +msgstr "このパッケージを使用するには、Curaを再始動する必要があります" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:279 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "%1を終了する" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:300 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" +msgstr "検証済みのUltiMaker Cura Enterprise用プラグインおよび材料を入手するにはサインインしてください。" + +#: plugins/Marketplace/resources/qml/Materials.qml:8 +#: plugins/Marketplace/resources/qml/MissingPackages.qml:8 +msgctxt "@header" +msgid "Install Materials" +msgstr "材料のインストール" + +#: plugins/Marketplace/resources/qml/Materials.qml:12 +msgctxt "@text" +msgid "Select and install material profiles optimised for your UltiMaker 3D printers." +msgstr "UltiMaker 3Dプリンターに最適な材料プロファイルを選択してインストールします。" + +#: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "パッケージをインストールするにはライセンスに同意する必要があります" + +#: plugins/Marketplace/resources/qml/OnboardBanner.qml:101 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205 +msgctxt "@button:label" +msgid "Learn More" +msgstr "詳しく見る" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170 +msgctxt "@label Is followed by the name of an author" +msgid "By" +msgstr "作成者" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Disable" +msgstr "無効にする" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Enable" +msgstr "有効にする" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242 +msgctxt "@button" +msgid "Downgrading..." +msgstr "ダウングレード中..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243 +msgctxt "@button" +msgid "Downgrade" +msgstr "ダウングレード" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247 +msgctxt "@button" +msgid "Installing..." +msgstr "インストール中..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248 +msgctxt "@button" +msgid "Install" +msgstr "インストール" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252 +msgctxt "@button" +msgid "Uninstall" +msgstr "アンインストール" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Update" +msgstr "アップデート" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Updating..." +msgstr "更新中..." + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "パッケージの詳細" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "戻る" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "記述" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "互換性のあるプリンター" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "互換性情報なし" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "互換性のあるサポート材料" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "なし" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:193 +msgctxt "@header" +msgid "Compatible with Material Station" +msgstr "Material Stationに対応" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "No" +msgstr "いいえ" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "Yes" +msgstr "はい" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:219 +msgctxt "@header" +msgid "Optimized for Air Manager" +msgstr "Air Managerに最適化" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Visit plug-in website" +msgstr "プラグインウェブサイトにアクセス" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Website" +msgstr "ウェブサイト" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:252 +msgctxt "@button" +msgid "Buy spool" +msgstr "スプールを購入" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:261 +msgctxt "@button" +msgid "Safety datasheet" +msgstr "安全データシート" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:270 +msgctxt "@button" +msgid "Technical datasheet" +msgstr "技術データシート" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Failed to load packages:" +msgstr "パッケージの読み込みに失敗しました。" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Retry?" +msgstr "再試行" + +#: plugins/Marketplace/resources/qml/Packages.qml:167 +msgctxt "@button" +msgid "Loading" +msgstr "読み込み中" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No more results to load" +msgstr "これ以上読み込む結果がありません" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No results found with current filter" +msgstr "現在のフィルターでは、結果が見つかりません" + +#: plugins/Marketplace/resources/qml/Packages.qml:226 +msgctxt "@button" +msgid "Load more" +msgstr "さらに読み込む" + +#: plugins/Marketplace/resources/qml/Plugins.qml:8 +msgctxt "@header" +msgid "Install Plugins" +msgstr "プラグインのインストール" + +#: plugins/Marketplace/resources/qml/Plugins.qml:12 +msgctxt "@text" +msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." +msgstr "素晴らしいユーザーコミュニティから提供されるプラグインを活用して、ワークフローを合理化し、UltiMaker Cura体験をカスタマイズすることができます。" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 +msgctxt "@info" +msgid "UltiMaker Verified Plug-in" +msgstr "UltiMaker検証済みプラグイン" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "UltiMaker Certified Material" +msgstr "UltiMaker認定材料" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 +msgctxt "@info" +msgid "UltiMaker Verified Package" +msgstr "UltiMaker検証済みパッケージ" + +#: plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "3Dモデルアシスタント" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -836,819 +2382,1089 @@ msgstr "" "

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

    \n" "

    印字品質ガイドを見る

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 -#, 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} があります。マシンをインポートできません。代わりにモデルをインポートします。" +#: plugins/ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "プリント問題の可能性のあるモデルをプリント構成を確認し、解決案を提示してください。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "プロジェクトファイルを開く" +#: plugins/ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "モデルチェッカー" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "プロジェクトファイル{0}が突然アクセスできなくなりました:{1}。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:659 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "プロジェクトファイルを開けません" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:658 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "プロジェクトファイル{0}は破損しています:{1}。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:711 -#, 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では認識できないプロファイルを使用して作成されています。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "推奨" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:214 -msgctxt "@title:tab" -msgid "Custom" -msgstr "カスタム" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:390 -msgctxt "@info:status" -msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 -msgctxt "@info:title" -msgid "Material profiles not installed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 -msgctxt "@action:button" -msgid "Install Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "3MF ファイル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "3MFリーダーのプラグインが破損しています。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "まだ書き込んでいないワークスペースがありません。まずはプリンターを追加してください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "この作業スペースに書き込む権限がありません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "使用しているオペレーティングシステムでは、この場所またはこのファイル名でプロジェクトファイルを保存することはできません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:238 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "3Mf ファイルの書き込みエラー。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:282 -#, python-brace-format -msgctxt "@error:material" -msgid "It was not possible to store material package information in project file: {material}. This project may not open correctly on other systems." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 -msgctxt "@info:title" -msgid "Failed to save material package information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MFファイル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Curaが3MF fileを算出します" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF ファイル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 -msgctxt "@info:title" -msgid "Backups" -msgstr "バックアップ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "バックアップのアップロード中にエラーが発生しました。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "バックアップを作成しています..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "バックアップの作成中にエラーが発生しました。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "バックアップをアップロードしています..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "バックアップのアップロードを完了しました。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "バックアップが最大ファイルサイズを超えています。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "バックアップのリストア中にエラーが発生しました。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "バックアップを管理する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "予期しないエラーが発生し、スライスに失敗しました。問題追跡ツールでのバグ報告をご検討ください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "スライスに失敗しました" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 -msgctxt "@message:button" -msgid "Report a bug" -msgstr "バグを報告" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 -msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." -msgstr "Ultimaker Curaの問題追跡ツールでバグを報告してください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:400 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "選ばれたプリンターまたは選ばれたプリント構成が異なるため進行中の材料にてスライスを完了できません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:401 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:434 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:461 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:473 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:485 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:498 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "スライスできません" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:433 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "現在の設定でスライスが完了できません。以下の設定にエラーがあります: {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:460 -#, 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}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:472 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "プライムタワーまたはプライム位置が無効なためスライスできません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:484 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "無効な Extruder %s に関連付けられている造形物があるため、スライスできません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 -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 "" -"設定を見直し、モデルが次の状態かどうかを確認してください。\n" -"- 造形サイズに合っている\n" -"- 有効なエクストルーダーに割り当てられている\n" -"- すべてが修飾子メッシュとして設定されているわけではない" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "レイヤーを処理しています" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 -msgctxt "@info:title" -msgid "Information" -msgstr "インフォメーション" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Curaプロファイル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" -msgid "Could not access update information." -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" +"- プリンタがネットワークに接続されているかどうかを確認します。- クラウドに接続されたプリンタを検出するためにサインインしているかどうかを確認します。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, 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}に更新することを推奨します。" +#: plugins/MonitorStage/MonitorMain.qml:113 +msgctxt "@info" +msgid "Please connect your printer to the network." +msgstr "プリンターをネットワークに接続してください。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s stable firmware available" -msgstr "%sの新しい安定版ファームウェアが利用可能です" +#: plugins/MonitorStage/MonitorMain.qml:148 +msgctxt "@label link to technical assistance" +msgid "View user manuals online" +msgstr "ユーザーマニュアルをオンラインで見る" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "アップデートの仕方" +#: plugins/MonitorStage/MonitorMain.qml:164 +msgctxt "@info" +msgid "In order to monitor your print from Cura, please connect the printer." +msgstr "Cura から印刷を監視するには、プリンタを接続してください。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "ファームウェアアップデート" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "圧縮G-codeファイル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter はテキストモードをサポートしていません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "G-codeファイル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:350 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "G-codeを解析" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:506 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-codeの詳細" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 -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-codeが適応しているか確認してください。G-codeの表示が適切でない場合があります。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Gファイル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter は非テキストモードはサポートしていません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "エクスポートする前にG-codeの準備をしてください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG画像" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG画像" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG画像" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP画像" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF画像" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04 プロファイル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "プリンターの設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "材料パッケージとソフトウェアパッケージをアカウントと同期しますか?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Ultimakerアカウントから変更が検出されました" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 -msgctxt "@action:button" -msgid "Sync" -msgstr "同期" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "同期中..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:12 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:79 -msgctxt "@button" -msgid "Decline" -msgstr "拒否する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:13 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53 -msgctxt "@button" -msgid "Agree" -msgstr "同意する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "プラグインライセンス同意書" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "拒否してアカウントから削除" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "変更を有効にするために{}を終了して再始動する必要があります。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{}プラグインのダウンロードに失敗しました" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:28 -msgctxt "@label" -msgid "Installed Plugins" -msgstr "インストールされたプラグイン" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:29 -msgctxt "@label" -msgid "Installed Materials" -msgstr "インストールされた材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:33 -msgctxt "@label" -msgid "Bundled Plugins" -msgstr "バンドルされたプラグイン" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:34 -msgctxt "@label" -msgid "Bundled Materials" -msgstr "バンドルされた材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:43 -msgctxt "@label:property" -msgid "Unknown Package" -msgstr "不明なパッケージ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:66 -msgctxt "@label:property" -msgid "Unknown Author" -msgstr "不明な作成者" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:117 -msgctxt "@info:error" -msgid "Could not interpret the server's response." -msgstr "サーバーの応答を解釈できませんでした。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:148 -msgctxt "@info:error" -msgid "Could not reach Marketplace." -msgstr "マーケットプレースにアクセスできませんでした。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 +#: plugins/MonitorStage/__init__.py:14 msgctxt "@item:inmenu" msgid "Monitor" msgstr "モニター" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: plugins/MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "モニターステージ" + +#: plugins/MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Curaでモニターステージを提供します。" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 +msgctxt "@label" +msgid "Mesh Type" +msgstr "メッシュタイプ" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 +msgctxt "@label" +msgid "Normal model" +msgstr "標準モデル" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 +msgctxt "@label" +msgid "Print as support" +msgstr "サポートとしてプリント" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "オーバーラップの設定を変更" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "オーバーラップをサポートしない" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 +msgctxt "@item:inlistbox" +msgid "Infill mesh only" +msgstr "インフィルメッシュのみ" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161 +msgctxt "@item:inlistbox" +msgid "Cutting mesh" +msgstr "メッシュ切断" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386 +msgctxt "@action:button" +msgid "Select settings" +msgstr "設定を選択する" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "このモデルをカスタマイズする設定を選択する" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "フィルター..." + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "すべて表示する" + +#: plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" msgid "Per Model Settings" msgstr "各モデル設定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +#: plugins/PerObjectSettingsTool/__init__.py:15 msgctxt "@info:tooltip" msgid "Configure Per Model Settings" msgstr "各モデル構成設定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "各モデル設定ツール" + +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "各モデル設定を与える。" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" msgstr "後処理" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "G-codeを修正" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "プラグイン処理後" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 +msgctxt "@label" +msgid "Post Processing Scripts" +msgstr "スクリプトの処理後" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "スクリプトを加える" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 +msgctxt "@label" +msgid "Settings" +msgstr "設定" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "処理したアクティブなスクリプトを変更します。" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "次のスクリプトがアクティブです:" + +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "後処理のためにユーザーが作成したスクリプト用拡張子" + +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "後処理" + +#: plugins/PrepareStage/PrepareMenu.qml:74 +msgctxt "@button" +msgid "Add printer" +msgstr "プリンターの追加" + +#: plugins/PrepareStage/PrepareMenu.qml:90 +msgctxt "@button" +msgid "Manage printers" +msgstr "プリンター管理" + +#: plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "準備する" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 +#: plugins/PrepareStage/plugin.json +msgctxt "name" +msgid "Prepare Stage" +msgstr "ステージの準備" + +#: plugins/PrepareStage/plugin.json +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Curaで準備ステージを提供します。" + +#: plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" msgid "Preview" msgstr "プレビュー" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +#: plugins/PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "プレビューステージ" + +#: plugins/PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Curaでプレビューステージを提供します。" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "リムーバブルドライブに保存" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "リムーバブルドライブ{0}に保存" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "書き出すために利用可能な形式のファイルがありません!" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 #, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "リムーバブルドライブ{0}に保存中" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 msgctxt "@info:title" msgid "Saving" msgstr "保存中" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "{0}を保存できませんでした: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 #, 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}に書き出すためのファイル名が見つかりませんでした。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 #, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "リムーバブルドライブ{0}に保存することができませんでした: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 #, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "リムーバブルドライブ{0}に {1}として保存" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 msgctxt "@info:title" msgid "File Saved" msgstr "ファイル保存" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 msgctxt "@action:button" msgid "Eject" msgstr "取り出す" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 #, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "リムーバブルデバイス{0}を取り出す" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 #, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "{0}取り出し完了。デバイスを安全に取り外せます。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 msgctxt "@info:title" msgid "Safely Remove Hardware" msgstr "ハードウェアを安全に取り外します" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 #, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "{0}取り出し失敗。他のプログラムがデバイスを使用しているため。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +#: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 msgctxt "@item:intext" msgid "Removable Drive" msgstr "リムーバブルドライブ" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "Curaはワイヤープリンティングが有効な場合は正確にレイヤーを表示しません。" +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "取り外し可能なドライブホットプラギング及びサポートの書き出しの供給。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "シミュレーションビュー" +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "取り外し可能なドライブアウトプットデバイスプラグイン" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 +#: plugins/SentryLogger/plugin.json +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "クラッシュレポーターで使用できるように、特定のイベントをログに記録します" + +#: plugins/SentryLogger/plugin.json +msgctxt "name" +msgid "Sentry Logger" +msgstr "監視ロガー" + +#: plugins/SimulationView/SimulationView.py:129 msgctxt "@info:status" msgid "Nothing is shown because you need to slice first." msgstr "最初にスライスする必要があるため、何も表示されません。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 +#: plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "No layers to show" msgstr "表示するレイヤーがありません" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 +#: plugins/SimulationView/SimulationView.py:132 +#: plugins/SolidView/SolidView.py:74 msgctxt "@info:option_text" msgid "Do not show this message again" msgstr "今後このメッセージを表示しない" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:18 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:47 +msgctxt "@label" +msgid "Color scheme" +msgstr "カラースキーム" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "フィラメントの色" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "ラインタイプ" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:112 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "スピード" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:116 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "レイヤーの厚さ" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:120 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "ライン幅" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:124 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "フロー" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:164 +msgctxt "@label" +msgid "Compatibility Mode" +msgstr "コンパティビリティモード" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:231 +msgctxt "@label" +msgid "Travels" +msgstr "移動" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:237 +msgctxt "@label" +msgid "Helpers" +msgstr "ヘルプ" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:243 +msgctxt "@label" +msgid "Shell" +msgstr "外郭" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:249 +msgctxt "@label" +msgid "Infill" +msgstr "インフィル" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:257 +msgctxt "@label" +msgid "Starts" +msgstr "開始" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:304 +msgctxt "@label" +msgid "Only Show Top Layers" +msgstr "トップのレイヤーを表示する" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:313 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "トップの5レイヤーの詳細を表示する" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:326 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "トップ/ボトム" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:330 +msgctxt "@label" +msgid "Inner Wall" +msgstr "インナーウォール" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:397 +msgctxt "@label" +msgid "min" +msgstr "最小" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:462 +msgctxt "@label" +msgid "max" +msgstr "最大" + +#: plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "レイヤービュー" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +#: plugins/SimulationView/plugin.json +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "スライスされたレイヤーデータのプレビューを提供します。" + +#: plugins/SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "シミュレーションビュー" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "匿名データの収集に関する詳細" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 +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 は、印刷品質とユーザーエクスペリエンスを向上させるために匿名データを収集します。以下は、共有されるすべてのデータの例です:" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "匿名データは送信しない" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "匿名データの送信を許可する" + +#: plugins/SliceInfoPlugin/SliceInfo.py:95 msgctxt "@text" msgid "Unable to read example data file." msgstr "サンプルのデータファイルを読み取ることができません。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "スライスインフォメーション" + +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "不特定なスライス情報を提出。プレファレンスの中で無効になる可能性もある。" + +#: plugins/SolidView/SolidView.py:71 msgctxt "@info:status" msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." msgstr "ハイライトされたエリアは、欠けている表面または無関係な表面を示します。モデルを修正してもう一度Curaを開いてください。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +#: plugins/SolidView/SolidView.py:73 msgctxt "@info:title" msgid "Model Errors" msgstr "モデルエラー" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +#: plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" msgstr "ソリッドビュー" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +#: plugins/SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "ノーマルなソリットメッシュビューを供給する。" + +#: plugins/SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "ソリッドビュー" + +#: plugins/SupportEraser/__init__.py:12 msgctxt "@label" msgid "Support Blocker" msgstr "サポートブロッカー" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 +#: plugins/SupportEraser/__init__.py:13 msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "サポートが印刷されないボリュームを作成します。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 +#: plugins/SupportEraser/plugin.json +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "特定箇所のサポートを印刷するブロックを消去するメッシュを作成する" + +#: plugins/SupportEraser/plugin.json +msgctxt "name" +msgid "Support Eraser" +msgstr "サポート消去機能" + +#: plugins/TrimeshReader/__init__.py:15 msgctxt "@item:inlistbox 'Open' is part of the name of this file format." msgid "Open Compressed Triangle Mesh" msgstr "圧縮トライアングルメッシュを開く" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: plugins/TrimeshReader/__init__.py:19 msgctxt "@item:inlistbox" msgid "COLLADA Digital Asset Exchange" msgstr "COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: plugins/TrimeshReader/__init__.py:23 msgctxt "@item:inlistbox" msgid "glTF Binary" msgstr "glTFバイナリ" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: plugins/TrimeshReader/__init__.py:27 msgctxt "@item:inlistbox" msgid "glTF Embedded JSON" msgstr "glTF埋め込みJSON" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: plugins/TrimeshReader/__init__.py:36 msgctxt "@item:inlistbox" msgid "Stanford Triangle Format" msgstr "Stanford Triangle Format" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: plugins/TrimeshReader/__init__.py:40 msgctxt "@item:inlistbox" msgid "Compressed COLLADA Digital Asset Exchange" msgstr "圧縮COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimakerフォーマットパッケージ" +#: plugins/TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "モデルファイルを読み込むためのサポートを供給します。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 +#: plugins/TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimeshリーダー" + +#: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "UltiMaker Format Package" +msgstr "UltiMakerフォーマットパッケージ" + +#: plugins/UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Ultimakerフォーマットパッケージの読み込みをサポートします。" + +#: plugins/UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP リーダー" + +#: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80 +#: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115 +#: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180 msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "UFPファイルに書き込めません:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "ビルドプレートを調整する" +#: plugins/UFPWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Ultimakerフォーマットパッケージへの書き込みをサポートします。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "アップグレードを選択する" +#: plugins/UFPWriter/plugin.json +msgctxt "name" +msgid "UFP Writer" +msgstr "UFPライター" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Ultimakerのネットワーク接属できるプリンターのネットワーク接続を管理します。" + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Ultimakerネットワーク接続" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "ネットワーク上で繋がったプリンターに接続" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "以下のリストからプリンタを選択します:" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +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 コードファイルをプリンターに転送することはできます。" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 +msgctxt "@action:button" +msgid "Edit" +msgstr "編集" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 +#: resources/qml/Preferences/MachinesPage.qml:153 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:186 +#: resources/qml/Preferences/ProfilesPage.qml:321 +msgctxt "@action:button" +msgid "Remove" +msgstr "取り除く" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 +msgctxt "@action:button" +msgid "Refresh" +msgstr "更新" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "お持ちのプリンターがリストにない場合、ネットワーク・プリンティング・トラブルシューティング・ガイドを読んでください" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 +msgctxt "@label" +msgid "Type" +msgstr "タイプ" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 +msgctxt "@label" +msgid "Firmware version" +msgstr "ファームウェアバージョン" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 +msgctxt "@label" +msgid "Address" +msgstr "アドレス" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "このプリンターは、プリンターのグループをホストするために設定されていません。" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "このプリンターは %1 プリンターのループのホストプリンターです。" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "このアドレスのプリンターは応答していません。" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" +msgid "Connect" +msgstr "接続" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "無効なIPアドレス" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "有効なIPアドレスを入力してください。" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "プリンターアドレス" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "ネットワーク内のプリンターのIPアドレスを入力してください。" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "構成の変更" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 +msgctxt "@action:button" +msgid "Override" +msgstr "上書き" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "割り当てられたプリンター %1 には以下の構成変更が必要です:" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "プリンター %1 が割り当てられましたが、ジョブには不明な材料構成があります。" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "材料 %1 を %2 から %3 に変更します。" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "%3 を 材料 %1 にロードします(これは上書きできません)。" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "プリントコア %1 を %2 から %3 に変更します。" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "上書きは、既存のプリンタ構成で指定された設定を使用します。これにより、印刷が失敗する場合があります。" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@label" +msgid "Move to top" +msgstr "最上位に移動" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155 +msgctxt "@label" +msgid "Delete" +msgstr "削除" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186 +#: resources/qml/MonitorButton.qml:284 +msgctxt "@label" +msgid "Resume" +msgstr "再開" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188 +msgctxt "@label" +msgid "Pausing..." +msgstr "一時停止しています..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190 +msgctxt "@label" +msgid "Resuming..." +msgstr "再開しています..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192 +#: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288 +msgctxt "@label" +msgid "Pause" +msgstr "一時停止" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Abort" +msgstr "中止" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Aborting..." +msgstr "中止しています..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218 +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 をキューの最上位に移動しますか?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "印刷ジョブを最上位に移動する" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "%1 を削除しますか?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "印刷ジョブの削除" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "%1 を中止してよろしいですか?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237 +#: resources/qml/MonitorButton.qml:326 +msgctxt "@window:title" +msgid "Abort print" +msgstr "プリント中止" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "利用できないプリンター" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 +msgctxt "@label" +msgid "First available" +msgstr "次の空き" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "キューをリモートで管理するには、プリンターのファームウェアを更新してください。" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +msgctxt "@label:status" +msgid "Aborted" +msgstr "中止しました" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 +msgctxt "@label:status" +msgid "Finished" +msgstr "終了" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "準備中..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "中止しています..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +msgctxt "@label:status" +msgid "Failed" +msgstr "失敗" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "一時停止しています..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Paused" +msgstr "一時停止" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "再開しています..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Action required" +msgstr "アクションが必要です" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "%1 を %2 に終了します" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "プリンター管理" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280 +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にアクセスし、このウェブカムを見ます。" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340 +msgctxt "@label:status" +msgid "Loading..." +msgstr "読み込み中..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "利用不可" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "到達不能" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Idle" +msgstr "アイドル" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361 +msgctxt "@label:status" +msgid "Printing" +msgstr "プリント中" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402 +msgctxt "@label" +msgid "Untitled" +msgstr "無題" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417 +msgctxt "@label" +msgid "Anonymous" +msgstr "匿名" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "構成の変更が必要です" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452 +msgctxt "@action:button" +msgid "Details" +msgstr "詳細" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 +msgctxt "@label" +msgid "Queued" +msgstr "順番を待つ" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "ブラウザで管理する" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "キューに印刷ジョブがありません。追加するには、スライスしてジョブを送信します。" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "Print jobs" +msgstr "プリントジョブ" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108 +msgctxt "@label" +msgid "Total print time" +msgstr "合計印刷時間" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117 +msgctxt "@label" +msgid "Waiting for" +msgstr "待ち時間" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117 +msgctxt "@info" +msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" +msgstr "Ultimaker Digital Factoryを使用して、あらゆる場所から自分のプリンターをモニタリング" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129 +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Digital Factoryでプリンターを表示する" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 +msgctxt "@title:window" +msgid "Print over network" +msgstr "ネットワーク上のプリント" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 +msgctxt "@action:button" +msgid "Print" +msgstr "プリント" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 +msgctxt "@label" +msgid "Printer selection" +msgstr "プリンターの選択" + +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162 msgctxt "@action:button" msgid "Print via cloud" msgstr "クラウドからプリントする" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "クラウドからプリントする" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164 msgctxt "@info:status" msgid "Connected via cloud" msgstr "クラウド経由で接続" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276 msgctxt "@action:button" msgid "Monitor print" msgstr "プリントをモニタリング" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278 msgctxt "@action:tooltip" msgid "Track the print in Ultimaker Digital Factory" msgstr "Ultimaker Digital Factoryでプリントを追跡" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "プリントジョブのアップロード時の不明なエラーコード:{0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "Ultimakerアカウントから新しいプリンターが検出されました" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:242 -#, 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})を追加しています" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:261 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "...および{0}その他" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:266 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "Digital Factoryからプリンターが追加されました:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:334 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "一部のプリンターではクラウド接続は利用できません" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:343 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "これらのプリンターはDigital Factoryとリンクされていません:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:348 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:440 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:352 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "接続を確立するには、{website_link}にアクセスしてください" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:356 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "プリンターの構成を維持" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "プリンターを取り除く" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:442 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425 #, 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}は削除されます。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:443 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426 #, 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}にアクセスしてください" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:444 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427 #, 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}を一時的に削除してもよろしいですか?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474 msgctxt "@title:window" msgid "Remove printers?" msgstr "プリンターを削除しますか?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477 #, python-brace-format msgctxt "@label" msgid "" @@ -1661,7 +3477,7 @@ msgstr[0] "" "Curaから{0}台のプリンターを削除しようとしています。この操作は元に戻せません。\n" "続行してもよろしいですか?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be undone.\n" @@ -1670,7 +3486,7 @@ msgstr "" "Curaからすべてのプリンターを削除しようとしています。この操作は元に戻せません。\n" "続行してもよろしいですか?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, python-brace-format msgctxt "@info:status" msgid "" @@ -1680,2486 +3496,1371 @@ msgstr "" "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" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 msgctxt "@info:title" msgid "Are you ready for cloud printing?" msgstr "クラウドプリンティングの準備はできていますか?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 msgctxt "@action" msgid "Get started" msgstr "はじめに" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24 msgctxt "@action" msgid "Learn more" msgstr "詳しく見る" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 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." +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を実行していないプリンターに接続しようとしています。プリンターを最新のファームウェアに更新してください。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 msgctxt "@info:title" msgid "Update your printer" msgstr "プリンターの更新" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 #, 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}のホストプリンターにまだインストールされていない材料プロフィールを検出しました。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 msgctxt "@info:title" msgid "Sending materials to printer" msgstr "プリンターに材料を送信しています" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "Ultimakerアカウントから新しいプリンターが検出されました" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29 +#, 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})を追加しています" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "...および{0}その他" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "Digital Factoryからプリンターが追加されました:" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 #, 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}に接続を試みていますが、これはグループのホストではありません。グループホストとして設定するには、ウェブページを参照してください。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 msgctxt "@info:title" msgid "Not a group host" msgstr "グループホストではありません" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 msgctxt "@action" msgid "Configure group" msgstr "グループの設定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18 +msgctxt "@info:status" +msgid "You will receive a confirmation via email when the print job is approved" +msgstr "プリントジョブが承認されると確認メールが届きます" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19 +msgctxt "@info:title" +msgid "The print job was successfully submitted" +msgstr "プリントジョブが正常に送信されました" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22 +msgctxt "@action" +msgid "Manage print jobs" +msgstr "プリントジョブの管理" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 msgctxt "@info:status" msgid "Please wait until the current job has been sent." msgstr "現在のジョブが送信されるまで待機してください。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 msgctxt "@info:title" msgid "Print error" msgstr "印刷エラー" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "データをプリンタにアップロードできませんでした。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 msgctxt "@info:title" msgid "Network error" msgstr "ネットワークエラー" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 msgctxt "@info:status" msgid "Sending Print Job" msgstr "印刷ジョブ送信中" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 msgctxt "@info:status" msgid "Uploading print job to printer." msgstr "プリントジョブをプリンターにアップロードしています。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 msgctxt "@info:status" msgid "Print job queue is full. The printer can't accept a new job." msgstr "プリントジョブのキューがいっぱいです。プリンターは新しいジョブを処理できません。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 msgctxt "@info:title" msgid "Queue Full" msgstr "キューがいっぱい" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "プリントジョブは正常にプリンターに送信されました。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 msgctxt "@info:title" msgid "Data Sent" msgstr "データを送信しました" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "これらのプリンターはDigital Factoryとリンクされていません:" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "接続を確立するには、{website_link}にアクセスしてください" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "一部のプリンターではクラウド接続は利用できません" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "プリンターの構成を維持" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "プリンターを取り除く" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "ネットワーク上のプリント" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "ネットワークのプリント" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64 msgctxt "@info:status" msgid "Connected over the network" msgstr "ネットワーク上で接続" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 msgctxt "@action" msgid "Connect via Network" msgstr "ネットワーク上にて接続" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +#: plugins/UM3NetworkPrinting/src/Utils.py:27 msgctxt "@info:status" msgid "tomorrow" msgstr "翌日" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +#: plugins/UM3NetworkPrinting/src/Utils.py:30 msgctxt "@info:status" msgid "today" msgstr "本日" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:42 msgctxt "@item:inmenu" msgid "USB printing" msgstr "USBプリンティング" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:43 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print via USB" msgstr "USBを使ってプリントする" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:44 msgctxt "@info:tooltip" msgid "Print via USB" msgstr "USBを使ってプリントする" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:80 msgctxt "@info:status" msgid "Connected via USB" msgstr "USBにて接続する" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:110 msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" msgstr "USBプリントを実行しています。Cura を閉じるとこのプリントも停止します。実行しますか?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:135 msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "現在印刷中です。Curaは、前の印刷が完了するまでUSBを介した次の印刷を開始できません。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:136 msgctxt "@message" msgid "Print in Progress" msgstr "現在印刷中" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3Dファイル" +#: plugins/USBPrinting/plugin.json +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "G-codeを承認し、プリンターに送信する。またプラグインはファームウェアをアップデートできます。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "透視ビューイング" +#: plugins/USBPrinting/plugin.json +msgctxt "name" +msgid "USB printing" +msgstr "USBプリンティング" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 -msgctxt "@title:window" -msgid "Open Project" -msgstr "プロジェクトを開く" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "既存を更新する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "新しいものを作成する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:59 -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "サマリーCuraプロジェクト" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108 -msgctxt "@info:tooltip" -msgid "How should the conflict in the machine be resolved?" -msgstr "このプリンターの問題をどのように解決すればいいか?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:95 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "プリンターの設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:104 -msgctxt "@action:label" -msgid "Type" -msgstr "タイプ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:192 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -msgctxt "@action:label" -msgid "Printer Group" -msgstr "プリンターグループ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:217 -msgctxt "@info:tooltip" -msgid "How should the conflict in the profile be resolved?" -msgstr "このプロファイルの問題をどのように解決すればいいか?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:220 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "プロファイル設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:250 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:375 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:244 -msgctxt "@action:label" -msgid "Name" -msgstr "ネーム" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:268 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:261 -msgctxt "@action:label" -msgid "Intent" -msgstr "Intent" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:286 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:228 -msgctxt "@action:label" -msgid "Not in profile" -msgstr "プロファイル内にない" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:292 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:233 -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "%1個の設定を上書き" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 -msgctxt "@action:label" -msgid "Derivative from" -msgstr "次から引き出す" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:311 -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "%2の%1個の設定を上書き" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:333 -msgctxt "@info:tooltip" -msgid "How should the conflict in the material be resolved?" -msgstr "このフィラメントの問題をどのように解決すればいいか?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:360 -msgctxt "@action:label" -msgid "Material settings" -msgstr "フィラメント設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:396 -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "視野設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 -msgctxt "@action:label" -msgid "Mode" -msgstr "モード" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 -msgctxt "@action:label" -msgid "Visible settings:" -msgstr "ビジブル設定:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "%2のうち%1" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:447 -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "プロジェクトを読み込むとビルドプレート上のすべてのモデルがクリアされます。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 -msgctxt "@action:button" -msgid "Open" -msgstr "開く" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 -msgctxt "@action:button" -msgid "Open project anyway" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 -msgctxt "@action:button" -msgid "Install missing material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "詳しく知りたい?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "今すぐバックアップする" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "自動バックアップ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Cura を起動した日は常にバックアップを自動生成します。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 -msgctxt "@button" -msgid "Restore" -msgstr "リストア" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "バックアップの削除" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "このバックアップを削除しますか?これは取り消しできません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "バックアップのリストア" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 -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 を閉じますか?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura バージョン" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "プリンタ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "プロファイル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "プラグイン" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura バックアップ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "マイ バックアップ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "現在バックアップは存在しません。[今すぐバックアップする] を使用して作成してください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "プレビューではバックアップは5つまでに制限されています。古いバックアップは削除してください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Cura のバックアップおよび同期を設定します。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:212 -msgctxt "@button" -msgid "Sign in" -msgstr "サインイン" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 -msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 -msgctxt "@option" -msgid "Save Cura project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "ファームウェアアップデート" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 -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プリンターを動かすソフトウェアです。このファームウェアはステップモーターを操作し、温度を管理し、プリンターとして成すべき点を補います。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 -msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "配達時のファームウェアで動かすことはできますが、新しいバージョンの方がより改善され、便利なフィーチャーがついてきます。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "自動でファームウェアをアップグレード" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "カスタムファームウェアをアップロードする" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "プリンターと接続されていないため、ファームウェアをアップデートできません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "プリンターとの接続はファームウェアのアップデートをサポートしていないため、ファームウェアをアップデートできません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "カスタムファームウェアを選択する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "ファームウェアアップデート" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 -msgctxt "@label" -msgid "Updating firmware." -msgstr "ファームウェアアップデート中。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "ファームウェアアップデート完了。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "不特定なエラーの発生によりファームウェアアップデート失敗しました。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "コミュニケーションエラーによりファームウェアアップデート失敗しました。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "インプット/アウトプットエラーによりファームウェアアップデート失敗しました。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "ファームウェアが見つからず、ファームウェアアップデート失敗しました。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:14 -msgctxt "@title:window" -msgid "Convert Image" -msgstr "画像の変換" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 -msgctxt "@action:label" -msgid "Height (mm)" -msgstr "高さ(mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "“ベース”から各ピクセルへの最大距離。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 -msgctxt "@action:label" -msgid "Base (mm)" -msgstr "ベース(mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 -msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "ミリメートルでビルドプレートからベースの高さ。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 -msgctxt "@action:label" -msgid "Width (mm)" -msgstr "幅(mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 -msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate" -msgstr "ビルドプレート上の幅(ミリメートル)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 -msgctxt "@action:label" -msgid "Depth (mm)" -msgstr "深さ(mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 -msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "ビルドプレート上の奥行きミリメートル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 -msgctxt "@item:inlistbox" -msgid "Darker is higher" -msgstr "暗いほうを高く" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -msgctxt "@item:inlistbox" -msgid "Lighter is higher" -msgstr "薄いほうを高く" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 -msgctxt "@info:tooltip" -msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." -msgstr "リトフェインの場合、暗いピクセルは、より多くの光を通すために厚い場所に対応する必要があります。高さマップの場合、明るいピクセルは高い地形を表しているため、明るいピクセルは生成された3D モデルの厚い位置に対応する必要があります。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:205 -msgctxt "@action:label" -msgid "Color Model" -msgstr "カラーモデル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:224 -msgctxt "@item:inlistbox" -msgid "Linear" -msgstr "線形" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 -msgctxt "@item:inlistbox" -msgid "Translucency" -msgstr "半透明性" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 -msgctxt "@info:tooltip" -msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." -msgstr "リトフェインの場合、半透明性を示す単純な対数モデルを利用できます。高さマップの場合、ピクセル値は高さに比例します。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 -msgctxt "@action:label" -msgid "1mm Transmittance (%)" -msgstr "1mm透過率(%)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 -msgctxt "@info:tooltip" -msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." -msgstr "厚さ1ミリメートルのプリントを貫通する光の割合。この値を小さくすると、画像の暗い領域ではコントラストが増し、明るい領域ではコントラストが減少します。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 -msgctxt "@action:label" -msgid "Smoothing" -msgstr "スムージング" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:298 -msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "画像に適応したスムージング量。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:143 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:80 -msgctxt "@action:button" -msgid "OK" -msgstr "OK" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "プリンター" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "ノズル設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 -msgctxt "@label" -msgid "Nozzle size" -msgstr "ノズルサイズ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "適合する材料直径" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "ノズルオフセットX" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "ノズルオフセットY" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "冷却ファンの番号" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "エクストルーダーがG-Codeを開始する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "エクストルーダーがG-Codeを終了する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "プリンターの設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 -msgctxt "@label" -msgid "X (Width)" -msgstr "X(幅)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (奥行き)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (高さ)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 -msgctxt "@label" -msgid "Build plate shape" -msgstr "ビルドプレート形" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 -msgctxt "@label" -msgid "Origin at center" -msgstr "センターを出します" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 -msgctxt "@label" -msgid "Heated bed" -msgstr "ヒーテッドドベッド" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 -msgctxt "@label" -msgid "Heated build volume" -msgstr "加熱式ビルドボリューム" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 -msgctxt "@label" -msgid "G-code flavor" -msgstr "G-codeフレーバー" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "プリントヘッド設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 -msgctxt "@label" -msgid "X min" -msgstr "X分" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 -msgctxt "@label" -msgid "Y min" -msgstr "Y分" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 -msgctxt "@label" -msgid "X max" -msgstr "最大X" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 -msgctxt "@label" -msgid "Y max" -msgstr "最大Y" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 -msgctxt "@label" -msgid "Gantry Height" -msgstr "ガントリーの高さ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "エクストルーダーの数" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "エクストルーダーのオフセットをGCodeに適用します" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "G-Codeの開始" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400 -msgctxt "@title:label" -msgid "End G-code" -msgstr "G-codeの終了" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 -msgctxt "@title" -msgid "Changes from your account" -msgstr "アカウントにおける変更" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -msgctxt "@button" -msgid "Dismiss" -msgstr "無視" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:118 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:175 -msgctxt "@button" -msgid "Next" -msgstr "次" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "次のパッケージが追加されます:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "次のパッケージは、Curaバージョンに互換性がないため、インストールできません:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 -msgctxt "@title" -msgid "Install missing Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 -msgctxt "@button" -msgid "Plugin license agreement" -msgstr "プラグインライセンス同意書" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47 -msgctxt "@text" -msgid "Please read and agree with the plugin licence." -msgstr "プラグインライセンスをお読みになり、同意してください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 -msgctxt "@button" -msgid "Accept" -msgstr "承認する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 -msgctxt "@header" -msgid "Manage packages" -msgstr "パッケージの管理" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15 -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のプラグインと材料プロファイルはここで管理します。プラグインを常に最新の状態に保ち、セットアップのバックアップを定期的に取るようにしてください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 -msgctxt "@info:tooltip" -msgid "Manage packages" -msgstr "パッケージの管理" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 -msgctxt "@title" -msgid "Loading..." -msgstr "読み込み中..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 -msgctxt "@button" -msgid "Plugins" -msgstr "プラグイン" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 -msgctxt "@button" -msgid "Materials" -msgstr "材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 -msgctxt "@info" -msgid "Search in the browser" -msgstr "ブラウザでの検索" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:271 -msgctxt "@button" -msgid "In order to use the package you will need to restart Cura" -msgstr "このパッケージを使用するには、Curaを再始動する必要があります" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:279 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "%1を終了する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:8 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MissingPackages.qml:8 -msgctxt "@header" -msgid "Install Materials" -msgstr "材料のインストール" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 -msgctxt "@text" -msgid "Select and install material profiles optimised for your Ultimaker 3D printers." -msgstr "Ultimaker 3Dプリンターに最適な材料プロファイルを選択してインストールします。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "パッケージをインストールするにはライセンスに同意する必要があります" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:101 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:207 -msgctxt "@button:label" -msgid "Learn More" -msgstr "詳しく見る" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:172 -msgctxt "@label Is followed by the name of an author" -msgid "By" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Enable" -msgstr "有効にする" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Disable" -msgstr "無効にする" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 -msgctxt "@button" -msgid "Downgrading..." -msgstr "ダウングレード中..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 -msgctxt "@button" -msgid "Downgrade" -msgstr "ダウングレード" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 -msgctxt "@button" -msgid "Installing..." -msgstr "インストール中..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 -msgctxt "@button" -msgid "Install" -msgstr "インストール" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 -msgctxt "@button" -msgid "Uninstall" -msgstr "アンインストール" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Updating..." -msgstr "更新中..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Update" -msgstr "アップデート" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 -msgctxt "@header" -msgid "Package details" -msgstr "パッケージの詳細" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 -msgctxt "@button:tooltip" -msgid "Back" -msgstr "戻る" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 -msgctxt "@header" -msgid "Description" -msgstr "記述" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 -msgctxt "@header" -msgid "Compatible printers" -msgstr "互換性のあるプリンター" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:134 -msgctxt "@info" -msgid "No compatibility information" -msgstr "互換性情報なし" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:152 -msgctxt "@header" -msgid "Compatible support materials" -msgstr "互換性のあるサポート材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176 -msgctxt "@info No materials" -msgid "None" -msgstr "なし" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:193 -msgctxt "@header" -msgid "Compatible with Material Station" -msgstr "Material Stationに対応" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "Yes" -msgstr "はい" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "No" -msgstr "いいえ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:219 -msgctxt "@header" -msgid "Optimized for Air Manager" -msgstr "Air Managerに最適化" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Visit plug-in website" -msgstr "プラグインウェブサイトにアクセス" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Website" -msgstr "ウェブサイト" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:252 -msgctxt "@button" -msgid "Buy spool" -msgstr "スプールを購入" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:261 -msgctxt "@button" -msgid "Safety datasheet" -msgstr "安全データシート" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:270 -msgctxt "@button" -msgid "Technical datasheet" -msgstr "技術データシート" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Failed to load packages:" -msgstr "パッケージの読み込みに失敗しました。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Retry?" -msgstr "再試行" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:167 -msgctxt "@button" -msgid "Loading" -msgstr "読み込み中" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No more results to load" -msgstr "これ以上読み込む結果がありません" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No results found with current filter" -msgstr "現在のフィルターでは、結果が見つかりません" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:226 -msgctxt "@button" -msgid "Load more" -msgstr "さらに読み込む" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8 -msgctxt "@header" -msgid "Install Plugins" -msgstr "プラグインのインストール" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12 -msgctxt "@text" -msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users." -msgstr "素晴らしいユーザーコミュニティから提供されるプラグインを活用して、ワークフローを合理化し、Ultimaker Cura体験をカスタマイズすることができます。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 -msgctxt "@info" -msgid "Ultimaker Verified Plug-in" -msgstr "Ultimaker検証済みプラグイン" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 -msgctxt "@info" -msgid "Ultimaker Certified Material" -msgstr "Ultimaker認定材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 -msgctxt "@info" -msgid "Ultimaker Verified Package" -msgstr "Ultimaker検証済みパッケージ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 -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 "" -"プリンタが接続されているか確認し、以下を行います。\n" -"- プリンタの電源が入っているか確認します。\n" -"- プリンタがネットワークに接続されているかどうかを確認します。- クラウドに接続されたプリンタを検出するためにサインインしているかどうかを確認します。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 -msgctxt "@info" -msgid "Please connect your printer to the network." -msgstr "プリンターをネットワークに接続してください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 -msgctxt "@label link to technical assistance" -msgid "View user manuals online" -msgstr "ユーザーマニュアルをオンラインで見る" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:163 -msgctxt "@info" -msgid "In order to monitor your print from Cura, please connect the printer." -msgstr "Cura から印刷を監視するには、プリンタを接続してください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 -msgctxt "@label" -msgid "Mesh Type" -msgstr "メッシュタイプ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 -msgctxt "@label" -msgid "Normal model" -msgstr "標準モデル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 -msgctxt "@label" -msgid "Print as support" -msgstr "サポートとしてプリント" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "オーバーラップの設定を変更" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "オーバーラップをサポートしない" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "インフィルメッシュのみ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "メッシュ切断" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385 -msgctxt "@action:button" -msgid "Select settings" -msgstr "設定を選択する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "このモデルをカスタマイズする設定を選択する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "フィルター..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "すべて表示する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "プラグイン処理後" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "スクリプトの処理後" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" -msgid "Add a script" -msgstr "スクリプトを加える" +msgid "Level build plate" +msgstr "ビルドプレートを調整する" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 -msgctxt "@label" -msgid "Settings" -msgstr "設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:459 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "処理したアクティブなスクリプトを変更します。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:463 -msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "次のスクリプトがアクティブです:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:47 -msgctxt "@label" -msgid "Color scheme" -msgstr "カラースキーム" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "フィラメントの色" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "ラインタイプ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "スピード" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "レイヤーの厚さ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "ライン幅" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "フロー" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "コンパティビリティモード" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 -msgctxt "@label" -msgid "Travels" -msgstr "移動" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 -msgctxt "@label" -msgid "Helpers" -msgstr "ヘルプ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 -msgctxt "@label" -msgid "Shell" -msgstr "外郭" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:64 -msgctxt "@label" -msgid "Infill" -msgstr "インフィル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Starts" -msgstr "開始" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "トップのレイヤーを表示する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "トップの5レイヤーの詳細を表示する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "トップ/ボトム" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 -msgctxt "@label" -msgid "Inner Wall" -msgstr "インナーウォール" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 -msgctxt "@label" -msgid "min" -msgstr "最小" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 -msgctxt "@label" -msgid "max" -msgstr "最大" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "匿名データの収集に関する詳細" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 -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 は、印刷品質とユーザーエクスペリエンスを向上させるために匿名データを収集します。以下は、共有されるすべてのデータの例です:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "匿名データは送信しない" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "匿名データの送信を許可する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 msgctxt "@title" msgid "Build Plate Leveling" msgstr "ビルドプレートのレベリング" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 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 "プリントの成功率を上げるために、ビルドプレートを今調整できます。’次のポジションに移動’をクリックすると。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 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 "すべてのポジションに。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 msgctxt "@action:button" msgid "Start Build Plate Leveling" msgstr "ビルドプレートのレベリングを開始する" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 msgctxt "@action:button" msgid "Move to Next Position" msgstr "次のポジションに移動" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "このUltimaker Originalに施されたアップグレートを選択する" +#: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "アップグレードを選択する" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this UltiMaker Original" +msgstr "このUltiMaker Originalに施されたアップグレートを選択する" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 msgctxt "@label" msgid "Heated Build Plate (official kit or self-built)" msgstr "ヒーティッドビルドプレート(オフィシャルキットまたはセルフビルド)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "ネットワーク上で繋がったプリンターに接続" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -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 コードファイルをプリンターに転送することはできます。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "以下のリストからプリンタを選択します:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 -msgctxt "@action:button" -msgid "Edit" -msgstr "編集" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:140 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:321 -msgctxt "@action:button" -msgid "Remove" -msgstr "取り除く" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 -msgctxt "@action:button" -msgid "Refresh" -msgstr "更新" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "お持ちのプリンターがリストにない場合、ネットワーク・プリンティング・トラブルシューティング・ガイドを読んでください" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 -msgctxt "@label" -msgid "Type" -msgstr "タイプ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 -msgctxt "@label" -msgid "Firmware version" -msgstr "ファームウェアバージョン" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 -msgctxt "@label" -msgid "Address" -msgstr "アドレス" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "このプリンターは、プリンターのグループをホストするために設定されていません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "このプリンターは %1 プリンターのループのホストプリンターです。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "このアドレスのプリンターは応答していません。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 -msgctxt "@action:button" -msgid "Connect" -msgstr "接続" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "無効なIPアドレス" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "有効なIPアドレスを入力してください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "プリンターアドレス" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "ネットワーク内のプリンターのIPアドレスを入力してください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "構成の変更" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 -msgctxt "@action:button" -msgid "Override" -msgstr "上書き" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "割り当てられたプリンター %1 には以下の構成変更が必要です:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "プリンター %1 が割り当てられましたが、ジョブには不明な材料構成があります。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "材料 %1 を %2 から %3 に変更します。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "%3 を 材料 %1 にロードします(これは上書きできません)。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "プリントコア %1 を %2 から %3 に変更します。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "ビルドプレートを %1 に変更します(これは上書きできません)。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "上書きは、既存のプリンタ構成で指定された設定を使用します。これにより、印刷が失敗する場合があります。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:178 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:175 -msgctxt "@label" -msgid "Glass" -msgstr "ガラス" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154 -msgctxt "@label" -msgid "Aluminum" -msgstr "アルミニウム" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "最上位に移動" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "削除" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:284 -msgctxt "@label" -msgid "Resume" -msgstr "再開" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "一時停止しています..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "再開しています..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:288 -msgctxt "@label" -msgid "Pause" -msgstr "一時停止" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "中止しています..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "中止" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:142 -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 をキューの最上位に移動しますか?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "印刷ジョブを最上位に移動する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:151 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "%1 を削除しますか?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "印刷ジョブの削除" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:160 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "%1 を中止してよろしいですか?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@window:title" -msgid "Abort print" -msgstr "プリント中止" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "プリンター管理" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:239 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "キューをリモートで管理するには、プリンターのファームウェアを更新してください。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:275 -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にアクセスし、このウェブカムを見ます。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335 -msgctxt "@label:status" -msgid "Loading..." -msgstr "読み込み中..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "利用不可" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "到達不能" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347 -msgctxt "@label:status" -msgid "Idle" -msgstr "アイドル" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "準備中..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Printing" -msgstr "プリント中" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397 -msgctxt "@label" -msgid "Untitled" -msgstr "無題" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:412 -msgctxt "@label" -msgid "Anonymous" -msgstr "匿名" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:433 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "構成の変更が必要です" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:447 -msgctxt "@action:button" -msgid "Details" -msgstr "詳細" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "利用できないプリンター" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 -msgctxt "@label" -msgid "First available" -msgstr "次の空き" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborted" -msgstr "中止しました" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 -msgctxt "@label:status" -msgid "Finished" -msgstr "終了" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "中止しています..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Failed" -msgstr "失敗" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "一時停止しています..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Paused" -msgstr "一時停止" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "再開しています..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Action required" -msgstr "アクションが必要です" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "%1 を %2 に終了します" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 -msgctxt "@label" -msgid "Queued" -msgstr "順番を待つ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "ブラウザで管理する" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:90 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "キューに印刷ジョブがありません。追加するには、スライスしてジョブを送信します。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:98 -msgctxt "@label" -msgid "Print jobs" -msgstr "プリントジョブ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107 -msgctxt "@label" -msgid "Total print time" -msgstr "合計印刷時間" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116 -msgctxt "@label" -msgid "Waiting for" -msgstr "待ち時間" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 -msgctxt "@title:window" -msgid "Print over network" -msgstr "ネットワーク上のプリント" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 -msgctxt "@action:button" -msgid "Print" -msgstr "プリント" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 -msgctxt "@label" -msgid "Printer selection" -msgstr "プリンターの選択" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "UltiMakerのプリンターのアクションを供給する(ベッドレベリングウィザード、アップグレードの選択、他)" + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "UltiMakerプリンターのアクション" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Cura 2.1 からCura 2.2のコンフィグレーションアップグレート。" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "2.1 から2.2にバージョンアップグレート" + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Cura 2.2 からCura 2.4のコンフィグレーションアップグレート。" + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "2.2 から2.4にバージョンアップグレート" + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Cura 2.5 からCura 2.6のコンフィグレーションアップグレート。" + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "2.5から2.6にバージョンアップグレート" + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Cura 2.6 からCura 2.7のコンフィグレーションアップグレート。" + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "2.6から2.7にバージョンアップグレート" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Cura 2.7からCura 3.0のコンフィグレーションアップグレート。" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "2.7から3.0にバージョンアップグレート" + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Cura 3.0からCura 3.1のコンフィグレーションアップグレート。" + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "3.0から3.1にバージョンアップグレート" + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Cura 3.2からCura 3.3のコンフィグレーションアップグレート。" + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "3.2から3.3にバージョンアップグレート" + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Cura 3.3からCura 3.4のコンフィグレーションアップグレート。" + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "3.3から3.4にバージョンアップグレート" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Cura 3.4 から Cura 3.5 のコンフィグレーションアップグレート。" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "3.4 から 3.5 にバージョンアップグレート" + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Cura 3.5 から Cura 4.0 のコンフィグレーションアップグレート。" + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "3.5 から 4.0 にバージョンアップグレート" + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Cura 4.0 から Cura 4.1 のコンフィグレーションアップグレート。" + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "4.0 から 4.1 にバージョンアップグレート" + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Cura 4.11からCura 4.12に設定をアップグレードします。" + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "バージョン4.11から4.12へのアップグレード" + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Cura 4.13からCura 5.0に設定をアップグレードします。" + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "バージョン4.13から5.0へのアップグレード" + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "コンフィギュレーションを Cura 4.1 から Cura 4.2 にアップグレートする。" + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "4.0 から 4.1 にバージョンアップグレート" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Cura 4.2からCura 4.3の設定をアップグレードします。" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "4.2から4.3にバージョンをアップグレート" + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Cura 4.3からCura 4.4へのコンフィグレーションアップグレート。" + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "4.3から4.4にバージョンアップグレート" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Cura 4.4からCura 4.5に設定をアップグレードします。" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "4.4から4.5にバージョンアップグレート" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Cura 4.5からCura 4.6に設定をアップグレードします。" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "バージョン4.5から4.6へのアップグレード" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "構成をCura 4.6.0からCura 4.6.2に更新します。" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "4.6.0から4.6.2へのバージョン更新" + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "構成をCura 4.6.2からCura 4.7に更新します。" + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "4.6.2から4.7へのバージョン更新" + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Cura 4.7からCura 4.8に設定をアップグレードします。" + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "バージョン4.7から4.8へのアップグレード" + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Cura 4.8からCura 4.9に設定をアップグレードします。" + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "バージョン4.8から4.9へのアップグレード" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Cura 4.9からCura 4.10に設定をアップグレードします。" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "バージョン4.9から4.10へのアップグレード" + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Cura 5.2からCura 5.3のコンフィグレーションアップグレート。" + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "5.2から5.3にバージョンアップグレート" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "" + +#: plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3Dファイル" + +#: plugins/X3DReader/plugin.json +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "X3Dファイルを読むこむためのサポートを供給する。" + +#: plugins/X3DReader/plugin.json +msgctxt "name" +msgid "X3D Reader" +msgstr "X3Dリーダー" + +#: plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "透視ビューイング" + +#: plugins/XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "透視ビューイング。" + +#: plugins/XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "透視ビュー" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "フィラメントプロファイル" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "XMLベースフィラメントのプロファイルを読み書きするための機能を供給する。" + +#: resources/qml/Account/AccountWidget.qml:24 msgctxt "@action:button" msgid "Sign in" msgstr "サインイン" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: resources/qml/Account/GeneralOperations.qml:19 +#: resources/qml/WelcomePages/CloudContent.qml:64 msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Ultimakerのプラットフォームにサインイン" +msgid "Sign in to the UltiMaker platform" +msgstr "UltiMakerのプラットフォームにサインイン" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 +#: resources/qml/Account/GeneralOperations.qml:39 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" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" msgstr "" "- マーケットプレースから材料プロファイルとプラグインを追加\n" "- 材料プロファイルとプラグインのバックアップと同期\n" -"- Ultimakerコミュニティで48,000人以上のユーザーとアイデアを共有してアドバイスをもらう" +"- UltiMakerコミュニティで48,000人以上のユーザーとアイデアを共有してアドバイスをもらう" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 +#: resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "無料のUltimakerアカウントを作成" +msgid "Create a free UltiMaker account" +msgstr "無料のUltiMakerアカウントを作成" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 +#: resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "確認しています..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 +#: resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "アカウント同期" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 +#: resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "問題が発生しました..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 +#: resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "保留中の更新をインストール" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 +#: resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "アカウントの更新を確認" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +#: resources/qml/Account/UserOperations.qml:78 msgctxt "@label The argument is a timestamp" msgid "Last update: %1" msgstr "最終更新:%1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +#: resources/qml/Account/UserOperations.qml:107 msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimakerアカウント" +msgid "UltiMaker Account" +msgstr "UltiMakerアカウント" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +#: resources/qml/Account/UserOperations.qml:126 msgctxt "@button" msgid "Sign Out" msgstr "サインアウト" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" msgid "No time estimation available" msgstr "時間予測がありません" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:77 msgctxt "@label" msgid "No cost estimation available" msgstr "コスト予測がありません" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:127 msgctxt "@button" msgid "Preview" msgstr "プレビュー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" msgid "Time estimation" msgstr "時間予測" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 +#: resources/qml/ActionPanel/PrintJobInformation.qml:107 msgctxt "@label" msgid "Material estimation" msgstr "材料予測" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:156 +#: resources/qml/ActionPanel/PrintJobInformation.qml:156 msgctxt "@label m for meter" msgid "%1m" msgstr "%1m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:157 +#: resources/qml/ActionPanel/PrintJobInformation.qml:157 msgctxt "@label g for grams" msgid "%1g" msgstr "%1g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:54 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "スライス中..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:78 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:78 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "スライスできません" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Processing" msgstr "処理" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Slice" msgstr "スライス" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:115 msgctxt "@label" msgid "Start the slicing process" msgstr "スライス処理の開始" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:132 msgctxt "@button" msgid "Cancel" msgstr "キャンセル" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 +#: resources/qml/Actions.qml:81 msgctxt "@action:inmenu" msgid "Show Online Troubleshooting" msgstr "オンライントラブルシューティングを表示" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 +#: resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "留め金 フルスクリーン" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 +#: resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "全画面表示を終了する" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 +#: resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "&取り消す" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 +#: resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "&やりなおす" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 +#: resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "&やめる" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 +#: resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "3Dビュー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 +#: resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "フロントビュー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 +#: resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "トップビュー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 +#: resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "底面図" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 +#: resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "左サイドビュー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 +#: resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "右サイドビュー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 +#: resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Curaを構成する..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 +#: resources/qml/Actions.qml:197 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "&プリンターを追加する..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 +#: resources/qml/Actions.qml:203 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "プリンターを管理する..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 +#: resources/qml/Actions.qml:210 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "フィラメントを管理する..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:216 -msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate." +#: resources/qml/Actions.qml:218 +msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." msgid "Add more materials from Marketplace" -msgstr "マーケットプレイスから材料を追加" +msgstr "Add more materials from Marketplace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 +#: resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "&現在の設定/無効にプロファイルをアップデートする" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 +#: resources/qml/Actions.qml:233 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "&変更を破棄する" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 +#: resources/qml/Actions.qml:245 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "&今の設定/無効からプロファイルを作成する..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 +#: resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "プロファイルを管理する..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 +#: resources/qml/Actions.qml:259 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "オンラインドキュメントを表示する" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 +#: resources/qml/Actions.qml:267 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "報告&バグ" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 +#: resources/qml/Actions.qml:275 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "新情報" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 +#: resources/qml/Actions.qml:289 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "アバウト..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 +#: resources/qml/Actions.qml:296 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "選択内容を削除" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 +#: resources/qml/Actions.qml:306 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "選択内容を中央に移動" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 +#: resources/qml/Actions.qml:315 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "選択内容を増倍" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 +#: resources/qml/Actions.qml:324 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "モデルを消去する" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 +#: resources/qml/Actions.qml:332 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "プラットホームの中心にモデルを配置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 +#: resources/qml/Actions.qml:338 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "&モデルグループ" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 +#: resources/qml/Actions.qml:358 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "モデルを非グループ化" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 +#: resources/qml/Actions.qml:368 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "モ&デルの合体" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 +#: resources/qml/Actions.qml:378 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&モデルを増倍する..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 +#: resources/qml/Actions.qml:385 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "すべてのモデル選択" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 +#: resources/qml/Actions.qml:395 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "ビルドプレート上のクリア" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 +#: resources/qml/Actions.qml:405 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "すべてのモデルを読み込む" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 +#: resources/qml/Actions.qml:414 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "すべてのモデルをアレンジする" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 +#: resources/qml/Actions.qml:422 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "選択をアレンジする" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 +#: resources/qml/Actions.qml:429 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "すべてのモデルのポジションをリセットする" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 +#: resources/qml/Actions.qml:436 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "すべてのモデル&変更点をリセットする" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 +#: resources/qml/Actions.qml:445 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&ファイルを開く(s)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 +#: resources/qml/Actions.qml:455 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&新しいプロジェクト..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 +#: resources/qml/Actions.qml:462 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "コンフィグレーションのフォルダーを表示する" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 +#: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "視野のセッティングを構成する..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 msgctxt "@label:button" msgid "My printers" msgstr "マイプリンター" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 msgctxt "@tooltip:button" msgid "Monitor printers in Ultimaker Digital Factory." msgstr "Ultimaker Digital Factoryでプリンターをモニタリングします。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Digital Libraryでプリントプロジェクトを作成します。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 msgctxt "@label:button" msgid "Print jobs" msgstr "プリントジョブ" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 msgctxt "@tooltip:button" msgid "Monitor print jobs and reprint from your print history." msgstr "プリントジョブをモニタリングしてプリント履歴から再プリントします。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." -msgstr "Ultimaker Curaをプラグインと材料プロファイルで拡張します。" +msgid "Extend UltiMaker Cura with plugins and material profiles." +msgstr "UltiMaker Curaをプラグインと材料プロファイルで拡張します。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." -msgstr "Ultimaker eラーニングで3Dプリンティングのエキスパートになります。" +msgid "Become a 3D printing expert with UltiMaker e-learning." +msgstr "UltiMaker eラーニングで3Dプリンティングのエキスパートになります。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Ultimakerのサポート" +msgid "UltiMaker support" +msgstr "UltiMakerのサポート" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." -msgstr "Ultimaker Curaの使用を開始する方法を確認します。" +msgid "Learn how to get started with UltiMaker Cura." +msgstr "UltiMaker Curaの使用を開始する方法を確認します。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 msgctxt "@label:button" msgid "Ask a question" msgstr "質問をする" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Ultimaker Communityをご参照ください。" +msgid "Consult the UltiMaker Community." +msgstr "UltiMaker Communityをご参照ください。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 msgctxt "@label:button" msgid "Report a bug" msgstr "バグを報告" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "問題が発生していることを開発者にお知らせください。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Ultimakerウェブサイトをご確認ください。" +msgid "Visit the UltiMaker website." +msgstr "UltiMakerウェブサイトをご確認ください。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 +#: resources/qml/ColorDialog.qml:110 msgctxt "@label" msgid "Hex" msgstr "六角" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 +#: resources/qml/Cura.qml:256 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "このパッケージは再起動後にインストールされます。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +#: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14 msgctxt "@title:tab" msgid "General" msgstr "一般" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +#: resources/qml/Cura.qml:470 msgctxt "@title:tab" msgid "Settings" msgstr "設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:468 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:17 +#: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17 msgctxt "@title:tab" msgid "Printers" msgstr "プリンター" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:470 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70 +#: resources/qml/Cura.qml:474 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:70 msgctxt "@title:tab" msgid "Materials" msgstr "マテリアル" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:472 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:57 +#: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57 msgctxt "@title:tab" msgid "Profiles" msgstr "プロファイル" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +#: resources/qml/Cura.qml:581 msgctxt "@title:window %1 is the application name" msgid "Closing %1" msgstr "%1を閉じています" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:590 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:599 +#: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591 msgctxt "@label %1 is the application name" msgid "Are you sure you want to exit %1?" msgstr "%1を終了しますか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:637 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 +#: resources/qml/Cura.qml:629 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 msgctxt "@title:window" msgid "Open file(s)" msgstr "ファイルを開く" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +#: resources/qml/Cura.qml:734 msgctxt "@window:title" msgid "Install Package" msgstr "パッケージをインストール" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +#: resources/qml/Cura.qml:741 msgctxt "@title:window" msgid "Open File(s)" msgstr "ファイルを開く(s)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +#: resources/qml/Cura.qml:743 msgctxt "@text:window" msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." msgstr "選択したファイルの中に複数のG-codeが存在します。1つのG-codeのみ一度に開けます。G-codeファイルを開く場合は、1点のみ選んでください。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:831 +#: resources/qml/Cura.qml:828 msgctxt "@title:window" msgid "Add Printer" msgstr "プリンターを追加する" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +#: resources/qml/Cura.qml:836 msgctxt "@title:window" msgid "What's New" msgstr "新情報" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: resources/qml/Cura.qml:890 +msgctxt "@title:window" +msgid "Save Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:891 +msgctxt "@textfield:placeholder" +msgid "New Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:892 +msgctxt "@info" +msgid "Custom profile name:" +msgstr "" + +#: resources/qml/Cura.qml:909 +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からプロパティを継承します。" + +#: resources/qml/Cura.qml:917 +msgctxt "@action:button" +msgid "Learn more about Cura print profiles" +msgstr "Curaのプリントプロファイルについて詳しくはこちら" + +#: resources/qml/Cura.qml:926 +msgctxt "@button" +msgid "Save new profile" +msgstr "" + +#: resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "%1について" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: resources/qml/Dialogs/AboutDialog.qml:59 msgctxt "@label" msgid "version: %1" msgstr "バージョン: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: resources/qml/Dialogs/AboutDialog.qml:74 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "熱溶解積層型3Dプリンティングのエンドtoエンドソリューション。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: resources/qml/Dialogs/AboutDialog.qml:87 msgctxt "@info:credit" msgid "" -"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura is developed by UltiMaker in cooperation with the community.\n" "Cura proudly uses the following open source projects:" -msgstr "CuraはUltimakerB.Vのコミュニティの協力によって開発され、Curaはオープンソースで使えることを誇りに思います:" +msgstr "" +"CuraはUltiMakerのコミュニティの協力によって開発され、\n" +"Curaはオープンソースで使えることを誇りに思います:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label Description for application component" msgid "Graphical user interface" msgstr "グラフィックユーザーインターフェイス" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label Description for application component" msgid "Application framework" msgstr "アプリケーションフレームワーク" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label Description for application component" msgid "G-code generator" msgstr "G-codeの生成" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label Description for application component" msgid "Interprocess communication library" msgstr "インタープロセスコミュニケーションライブラリー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:142 +msgctxt "@label Description for application component" msgid "Python bindings for libnest2d" msgstr "libnest2dのPythonバインディング" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label Description for application component" msgid "Polygon packing library, developed by Prusa Research" msgstr "Prusa Research開発のポリゴンパッキングライブラリー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:144 +msgctxt "@label Description for application component" msgid "Support library for handling 3MF files" msgstr "3MFファイルを操作するためのライブラリーサポート" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:145 +msgctxt "@label Description for application component" msgid "Support library for file metadata and streaming" msgstr "ファイルメタデータとストリーミングのためのライブラリーサポート" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "プログラミング用語" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label Description for application dependency" msgid "GUI framework" msgstr "GUIフレームワーク" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label Description for application dependency" msgid "GUI framework bindings" msgstr "GUIフレームワークバインディング" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label Description for application dependency" msgid "C/C++ Binding library" msgstr "C/C++ バインディングライブラリー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:152 +msgctxt "@label Description for application dependency" msgid "Data interchange format" msgstr "データインターフェイスフォーマット" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "Font" msgstr "フォント" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label Description for application dependency" msgid "Polygon clipping library" msgstr "ポリゴンクリッピングライブラリー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label Description for application dependency" msgid "JSON parser" -msgstr "" +msgstr "JSON解析プログラム" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:158 +msgctxt "@label Description for application dependency" msgid "Utility functions, including an image loader" -msgstr "" +msgstr "画像ローダーなどを含むユーティリティ機能" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:159 +msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" -msgstr "" +msgstr "ボロノイ図生成を含むユーティリティライブラリ" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:162 +#: resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label Description for application dependency" msgid "Root Certificates for validating SSL trustworthiness" -msgstr "" +msgstr "SSLの信頼性を検証するためのルート証明書" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label Description for application dependency" msgid "Compatibility between Python 2 and 3" -msgstr "" +msgstr "Python2および3との互換性" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label Description for application dependency" msgid "Support library for system keyring access" msgstr "システムキーリングアクセスを操作するためのライブラリーサポート" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label Description for application dependency" msgid "Support library for faster math" msgstr "ファターマスを操作するためのライブラリーサポート" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label Description for application dependency" msgid "Support library for handling STL files" msgstr "STLファイルを操作するためのライブラリーサポート" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label Description for application dependency" msgid "Python bindings for Clipper" msgstr "ClipperのPythonバインディング" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "シリアルコミュニケーションライブラリー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label Description for application dependency" msgid "Support library for scientific computing" msgstr "サイエンスコンピューティングを操作するためのライブラリーサポート" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 -msgctxt "@Label" +#: resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@Label Description for application dependency" msgid "Python Error tracking library" msgstr "Pythonエラー追跡ライブラリー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:172 +msgctxt "@label Description for application dependency" msgid "Support library for handling triangular meshes" msgstr "参画メッシュを操作するためのライブラリーサポート" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:173 +msgctxt "@label Description for application dependency" msgid "ZeroConf discovery library" msgstr "ZeroConfディスカバリーライブラリー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label Description for development tool" msgid "Universal build system configuration" -msgstr "" +msgstr "ユニバーサルビルドシステム設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label Description for development tool" msgid "Dependency and package manager" -msgstr "" +msgstr "パッケージ管理システム" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label Description for development tool" msgid "Packaging Python-applications" -msgstr "" +msgstr "Pythonアプリケーションのパッケージ化" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:179 +msgctxt "@label Description for development tool" msgid "Linux cross-distribution application deployment" msgstr "Linux 分散アプリケーションの開発" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:180 +msgctxt "@label Description for development tool" msgid "Generating Windows installers" -msgstr "" +msgstr "Windowsインストーラーの生成" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 msgctxt "@title:window" msgid "Open project file" msgstr "プロジェクトを開く" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84 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のプロジェクトファイルです。プロジェクトとしてあけますか、それともモデルのみ取り込みますか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:90 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91 msgctxt "@text:window" msgid "Remember my choice" msgstr "選択を記憶させる" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105 msgctxt "@action:button" msgid "Open as project" msgstr "プロジェクトを開く" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110 msgctxt "@action:button" msgid "Import models" msgstr "モデルを取り込む" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:17 +msgctxt "@title:window" +msgid "Select Printer" +msgstr "プリンターの選択" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:54 +msgctxt "@title:label" +msgid "Compatible Printers" +msgstr "互換性のあるプリンター" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:110 +msgctxt "@description" +msgid "No compatible printers, that are currently online, were found." +msgstr "現在オンライン状態で互換性があるプリンターは見つかりませんでした。" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "変更を取り消すか保存するか" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:49 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64 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 "" @@ -4167,1428 +4868,1288 @@ msgstr "" "これらの変更された設定をプロファイルの切り替え後も維持しますか?\n" "変更を破棄して'%1'からデフォルトの設定を読み込むこともできます。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90 msgctxt "@title:column" msgid "Profile settings" msgstr "プロファイル設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92 msgctxt "@title:column" msgid "Current changes" msgstr "現在の変更" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:799 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123 +#: resources/qml/Preferences/GeneralPage.qml:820 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "毎回確認する" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "取り消し、再度確認しない" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "キープし、再度確認しない" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157 msgctxt "@action:button" msgid "Discard changes" msgstr "変更を破棄" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164 msgctxt "@action:button" msgid "Keep changes" msgstr "変更を維持" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171 +msgctxt "@action:button" +msgid "Save as new custom profile" +msgstr "" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178 +msgctxt "@action:button" +msgid "Save changes" +msgstr "" + +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 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ファイルのみ一度に開けます。ファイルからモデルを先に取り込むことをお勧めします。続けますか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 msgctxt "@action:button" msgid "Import all as models" msgstr "すべてをモデルとして取り入れる" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 +#: resources/qml/Dialogs/RenameDialog.qml:23 +msgctxt "@title:window" +msgid "Rename" +msgstr "名前を変える" + +#: resources/qml/Dialogs/RenameDialog.qml:24 +msgctxt "@info" +msgid "Please provide a new name." +msgstr "新しい名前を入力してください。" + +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 msgctxt "@title:window" msgid "Save Project" msgstr "プロジェクトを保存" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177 msgctxt "@action:label" msgid "Extruder %1" msgstr "エクストルーダー%1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 msgctxt "@action:label" msgid "%1 & material" msgstr "%1とフィラメント" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195 msgctxt "@action:label" msgid "Material" msgstr "材料" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "保存中のプロジェクトサマリーを非表示にする" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298 msgctxt "@action:button" msgid "Save" msgstr "保存" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -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" -msgstr[0] "選択したモデルを%1で印刷する" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:93 +#: resources/qml/JobSpecs.qml:93 msgctxt "@text Print job name" msgid "Untitled" msgstr "無題" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 +#: resources/qml/MainWindow/ApplicationMenu.qml:63 +#: resources/qml/Menus/SettingsMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 +#: resources/qml/MainWindow/ApplicationMenu.qml:87 msgctxt "@title:window" msgid "New project" msgstr "新しいプロジェクト" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88 +#: resources/qml/MainWindow/ApplicationMenu.qml:88 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 "新しいプロジェクトを開始しますか?この作業では保存していない設定やビルドプレートをクリアします。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135 +#: resources/qml/MainWindow/MainWindowHeader.qml:135 msgctxt "@action:button" msgid "Marketplace" msgstr "マーケットプレース" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +#: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 msgctxt "@header" msgid "Configurations" msgstr "構成" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 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 から適切な材料プロファイルをダウンロードしてください。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 msgctxt "@label" msgid "Marketplace" msgstr "マーケットプレース" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 msgctxt "@label" msgid "Loading available configurations from the printer..." msgstr "プリンタから利用可能な構成を読み込んでいます..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 msgctxt "@label" msgid "The configurations are not available because the printer is disconnected." msgstr "プリンタが接続されていないため、構成は利用できません。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 msgctxt "@tooltip" msgid "The configuration of this extruder is not allowed, and prohibits slicing." msgstr "このエクストルーダーの構成が許可されておらず、スライスを妨げています。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 msgctxt "@tooltip" msgid "There are no profiles matching the configuration of this extruder." msgstr "このエクストルーダーの構成に一致するプロファイルがありません。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 msgctxt "@label" msgid "Select configuration" msgstr "構成の選択" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 msgctxt "@label" msgid "Configurations" msgstr "構成" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 msgctxt "@header" msgid "Custom" msgstr "カスタム" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:62 -msgctxt "@label" -msgid "Printer" -msgstr "プリンター" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:217 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173 msgctxt "@label" msgid "Enabled" msgstr "有効" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222 msgctxt "@label" msgid "Material" msgstr "フィラメント" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348 msgctxt "@label" msgid "Use glue for better adhesion with this material combination." msgstr "この材料の組み合わせの接着に接着材を使用する。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:29 +#: resources/qml/Menus/ContextMenu.qml:29 msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "選択したモデルで印刷:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:92 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "選択した複数のモデル" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:123 msgctxt "@label" msgid "Number of Copies" msgstr "コピーの数" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/EditMenu.qml:12 +#: resources/qml/Menus/EditMenu.qml:12 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "&編集" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ExtensionMenu.qml:13 +#: resources/qml/Menus/ExtensionMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "拡張子" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 +#: resources/qml/Menus/FileMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "&ファイル" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:45 +#: resources/qml/Menus/FileMenu.qml:45 msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "プロジェクトを保存... (&S)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:78 +#: resources/qml/Menus/FileMenu.qml:78 msgctxt "@title:menu menubar:file" msgid "&Export..." msgstr "エクスポート... (&E)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:89 +#: resources/qml/Menus/FileMenu.qml:89 msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "選択エクスポート..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/HelpMenu.qml:14 +#: resources/qml/Menus/HelpMenu.qml:14 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "ヘルプ" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +#: resources/qml/Menus/MaterialMenu.qml:13 msgctxt "@label:category menu label" msgid "Material" msgstr "材料" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:53 +#: resources/qml/Menus/MaterialMenu.qml:53 msgctxt "@label:category menu label" msgid "Favorites" msgstr "お気に入り" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:78 +#: resources/qml/Menus/MaterialMenu.qml:78 msgctxt "@label:category menu label" msgid "Generic" msgstr "汎用" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +#: resources/qml/Menus/OpenFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open File(s)..." msgstr "ファイルを開く..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PreferencesMenu.qml:21 +#: resources/qml/Menus/PreferencesMenu.qml:21 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "プレファレンス" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:13 +#: resources/qml/Menus/PrinterMenu.qml:13 msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "&プリンター" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:17 +#: resources/qml/Menus/PrinterMenu.qml:17 msgctxt "@label:category menu label" msgid "Network enabled printers" msgstr "ネットワーク対応プリンター" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:50 +#: resources/qml/Menus/PrinterMenu.qml:50 msgctxt "@label:category menu label" msgid "Local printers" msgstr "ローカルプリンター" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +#: resources/qml/Menus/RecentFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open &Recent" msgstr "最近開いたファイルを開く" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +#: resources/qml/Menus/SaveProjectMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Save Project..." msgstr "プロジェクトを保存..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:34 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&フィラメント" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:49 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "アクティブエクストルーダーとしてセットする" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:55 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "エクストルーダーを有効にする" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:63 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "エクストルーダーを無効にする" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 msgctxt "@action:inmenu" msgid "Visible Settings" msgstr "ビジブル設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 msgctxt "@action:inmenu" msgid "Collapse All Categories" msgstr "すべてのカテゴリを折りたたむ" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 msgctxt "@action:inmenu" msgid "Manage Setting Visibility..." msgstr "視野のセッティングを管理する..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:13 +#: resources/qml/Menus/SettingsMenu.qml:34 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&フィラメント" + +#: resources/qml/Menus/SettingsMenu.qml:49 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "アクティブエクストルーダーとしてセットする" + +#: resources/qml/Menus/SettingsMenu.qml:55 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "エクストルーダーを有効にする" + +#: resources/qml/Menus/SettingsMenu.qml:63 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "エクストルーダーを無効にする" + +#: resources/qml/Menus/ViewMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&View" msgstr "&ビュー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:17 +#: resources/qml/Menus/ViewMenu.qml:17 msgctxt "@action:inmenu menubar:view" msgid "&Camera position" msgstr "カメラ位置 (&C)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:30 +#: resources/qml/Menus/ViewMenu.qml:30 msgctxt "@action:inmenu menubar:view" msgid "Camera view" msgstr "カメラビュー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 +#: resources/qml/Menus/ViewMenu.qml:48 msgctxt "@action:inmenu menubar:view" msgid "Perspective" msgstr "パースペクティブ表示" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +#: resources/qml/Menus/ViewMenu.qml:59 msgctxt "@action:inmenu menubar:view" msgid "Orthographic" msgstr "平行投影表示" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:115 +#: resources/qml/MonitorButton.qml:115 msgctxt "@label:MonitorStatus" msgid "Not connected to a printer" msgstr "プリンターにつながっていません" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 +#: resources/qml/MonitorButton.qml:119 msgctxt "@label:MonitorStatus" msgid "Printer does not accept commands" msgstr "今プリンタはコマンドを処理できません" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:129 +#: resources/qml/MonitorButton.qml:129 msgctxt "@label:MonitorStatus" msgid "In maintenance. Please check the printer" msgstr "メンテナンス。プリンターをチェックしてください" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:140 +#: resources/qml/MonitorButton.qml:140 msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "プリンターへの接続が切断されました" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +#: resources/qml/MonitorButton.qml:142 msgctxt "@label:MonitorStatus" msgid "Printing..." msgstr "プリント中..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +#: resources/qml/MonitorButton.qml:145 msgctxt "@label:MonitorStatus" msgid "Paused" msgstr "一時停止しました" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +#: resources/qml/MonitorButton.qml:148 msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "準備中..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +#: resources/qml/MonitorButton.qml:150 msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "造形物を取り出してください" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +#: resources/qml/MonitorButton.qml:318 msgctxt "@label" msgid "Abort Print" msgstr "プリント中止" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:327 +#: resources/qml/MonitorButton.qml:327 msgctxt "@label" msgid "Are you sure you want to abort the print?" msgstr "本当にプリントを中止してもいいですか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:109 +#: resources/qml/ObjectItemButton.qml:109 msgctxt "@label" msgid "Is printed as support." msgstr "サポートとしてプリントされます。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:112 +#: resources/qml/ObjectItemButton.qml:112 msgctxt "@label" msgid "Other models overlapping with this model are modified." msgstr "このモデルに重なる他のモデルは修正されます。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:115 +#: resources/qml/ObjectItemButton.qml:115 msgctxt "@label" msgid "Infill overlapping with this model is modified." msgstr "このモデルとのインフィル交差は修正されます。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:118 +#: resources/qml/ObjectItemButton.qml:118 msgctxt "@label" msgid "Overlaps with this model are not supported." msgstr "このモデルとの重なりはサポートされません。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:125 +#: resources/qml/ObjectItemButton.qml:125 msgctxt "@label %1 is the number of settings it overrides." msgid "Overrides %1 setting." msgid_plural "Overrides %1 settings." msgstr[0] "%1個の設定を上書きします。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 +#: resources/qml/ObjectSelector.qml:59 msgctxt "@label" msgid "Object list" msgstr "オブジェクトリスト" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:131 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:24 +#: resources/qml/Preferences/GeneralPage.qml:134 +#: resources/qml/Preferences/SettingVisibilityPage.qml:24 msgctxt "@action:button" msgid "Defaults" msgstr "デフォルト" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +#: resources/qml/Preferences/GeneralPage.qml:172 msgctxt "@label" msgid "Interface" msgstr "インターフェイス" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +#: resources/qml/Preferences/GeneralPage.qml:215 msgctxt "@heading" msgid "-- incomplete --" msgstr "-- 未完了 --" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +#: resources/qml/Preferences/GeneralPage.qml:261 msgctxt "@label" msgid "Currency:" msgstr "通貨:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:274 +#: resources/qml/Preferences/GeneralPage.qml:277 msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." msgid "Theme*:" msgstr "テーマ*:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +#: resources/qml/Preferences/GeneralPage.qml:323 msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "セッティングを変更すると自動にスライスします。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +#: resources/qml/Preferences/GeneralPage.qml:331 msgctxt "@option:check" msgid "Slice automatically" msgstr "自動的にスライスする" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:337 +#: resources/qml/Preferences/GeneralPage.qml:340 +msgctxt "@info:tooltip" +msgid "Show an icon and notifications in the system notification area." +msgstr "システム通知領域にアイコンと通知を表示します。" + +#: resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Add icon to system tray *" +msgstr "システムトレイにアイコンを追加 *" + +#: resources/qml/Preferences/GeneralPage.qml:357 msgctxt "@label" msgid "*You will need to restart the application for these changes to have effect." msgstr "*これらの変更を有効にするには、アプリケーションを再始動する必要があります。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +#: resources/qml/Preferences/GeneralPage.qml:373 msgctxt "@label" msgid "Viewport behavior" msgstr "ビューポイント機能" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +#: resources/qml/Preferences/GeneralPage.qml:381 msgctxt "@info:tooltip" msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." msgstr "赤でサポートができないエリアをハイライトしてください。サポートがない場合、正確にプリントができない場合があります。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:369 +#: resources/qml/Preferences/GeneralPage.qml:390 msgctxt "@option:check" msgid "Display overhang" msgstr "ディスプレイオーバーハング" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +#: resources/qml/Preferences/GeneralPage.qml:400 msgctxt "@info:tooltip" msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." msgstr "モデルの欠けている部分または不要な表面部分を、警告マークを使用してハイライトします。ツールパスは意図したジオメトリの欠けている部分になることが多くあります。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:388 +#: resources/qml/Preferences/GeneralPage.qml:409 msgctxt "@option:check" msgid "Display model errors" msgstr "モデルエラーを表示" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +#: resources/qml/Preferences/GeneralPage.qml:417 msgctxt "@info:tooltip" msgid "Moves the camera so the model is in the center of the view when a model is selected" msgstr "モデルの選択時にモデルがカメラの中心に見えるようにカメラを移動する" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:401 +#: resources/qml/Preferences/GeneralPage.qml:422 msgctxt "@action:button" msgid "Center camera when item is selected" msgstr "アイテムを選択するとカメラが中心にきます" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +#: resources/qml/Preferences/GeneralPage.qml:432 msgctxt "@info:tooltip" msgid "Should the default zoom behavior of cura be inverted?" msgstr "Curaのデフォルトのズーム機能は変更できるべきか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:416 +#: resources/qml/Preferences/GeneralPage.qml:437 msgctxt "@action:button" msgid "Invert the direction of camera zoom." msgstr "カメラのズーム方向を反転する。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Should zooming move in the direction of the mouse?" msgstr "ズームはマウスの方向に動くべきか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Zooming towards the mouse is not supported in the orthographic perspective." msgstr "マウスに対するズームは、正射投影ではサポートされていません。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:437 +#: resources/qml/Preferences/GeneralPage.qml:458 msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "マウスの方向にズームする" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +#: resources/qml/Preferences/GeneralPage.qml:484 msgctxt "@info:tooltip" msgid "Should models on the platform be moved so that they no longer intersect?" msgstr "交差を避けるためにプラットホーム上のモデルを移動するべきですか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:468 +#: resources/qml/Preferences/GeneralPage.qml:489 msgctxt "@option:check" msgid "Ensure models are kept apart" msgstr "モデルの距離が離れているように確認する" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +#: resources/qml/Preferences/GeneralPage.qml:498 msgctxt "@info:tooltip" msgid "Should models on the platform be moved down to touch the build plate?" msgstr "プラットホーム上のモデルはブルドプレートに触れるように下げるべきか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:482 +#: resources/qml/Preferences/GeneralPage.qml:503 msgctxt "@option:check" msgid "Automatically drop models to the build plate" msgstr "自動的にモデルをビルドプレートに落とす" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +#: resources/qml/Preferences/GeneralPage.qml:515 msgctxt "@info:tooltip" msgid "Show caution message in g-code reader." msgstr "G-codeリーダーに注意メッセージを表示します。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503 +#: resources/qml/Preferences/GeneralPage.qml:524 msgctxt "@option:check" msgid "Caution message in g-code reader" msgstr "G-codeリーダーに注意メッセージ" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +#: resources/qml/Preferences/GeneralPage.qml:532 msgctxt "@info:tooltip" msgid "Should layer be forced into compatibility mode?" msgstr "レイヤーはコンパティビリティモードに強制されるべきか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +#: resources/qml/Preferences/GeneralPage.qml:537 msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "レイヤービューコンパティビリティモードを強制する。(再起動が必要)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +#: resources/qml/Preferences/GeneralPage.qml:547 msgctxt "@info:tooltip" msgid "Should Cura open at the location it was closed?" msgstr "Curaを終了した場所で開くようにしますか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:531 +#: resources/qml/Preferences/GeneralPage.qml:552 msgctxt "@option:check" msgid "Restore window position on start" msgstr "開始時にウィンドウの位置を復元" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +#: resources/qml/Preferences/GeneralPage.qml:562 msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "どのような種類のカメラレンダリングを使用する必要がありますか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +#: resources/qml/Preferences/GeneralPage.qml:569 msgctxt "@window:text" msgid "Camera rendering:" msgstr "カメラレンダリング:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +#: resources/qml/Preferences/GeneralPage.qml:576 msgid "Perspective" msgstr "パースペクティブ表示" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +#: resources/qml/Preferences/GeneralPage.qml:577 msgid "Orthographic" msgstr "平行投影表示" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +#: resources/qml/Preferences/GeneralPage.qml:617 msgctxt "@label" msgid "Opening and saving files" msgstr "ファイルを開くまた保存" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +#: resources/qml/Preferences/GeneralPage.qml:624 msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "デスクトップまたは外部アプリケーションから開いたファイルをCuraの同じインスタンスで開く必要がありますか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:608 +#: resources/qml/Preferences/GeneralPage.qml:629 msgctxt "@option:check" msgid "Use a single instance of Cura" msgstr "Curaの単一インスタンスを使用" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +#: resources/qml/Preferences/GeneralPage.qml:640 msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Curaの単一インスタンスに新しいモデルをロードする前に、ビルドプレートをクリアする必要はありますか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +#: resources/qml/Preferences/GeneralPage.qml:646 msgctxt "@option:check" msgid "Clear buildplate before loading model into the single instance" msgstr "モデルを単一のインスタンスにロードする前にビルドプレートをクリア" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 +#: resources/qml/Preferences/GeneralPage.qml:656 msgctxt "@info:tooltip" msgid "Should models be scaled to the build volume if they are too large?" msgstr "モデルがビルドボリュームに対して大きすぎる場合はスケールされるべきか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +#: resources/qml/Preferences/GeneralPage.qml:661 msgctxt "@option:check" msgid "Scale large models" msgstr "大きなモデルをスケールする" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +#: resources/qml/Preferences/GeneralPage.qml:671 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 "ユニット値がミリメートルではなくメートルの場合、モデルが極端に小さく現れる場合があります。モデルはスケールアップされるべきですか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:655 +#: resources/qml/Preferences/GeneralPage.qml:676 msgctxt "@option:check" msgid "Scale extremely small models" msgstr "極端に小さなモデルをスケールアップする" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +#: resources/qml/Preferences/GeneralPage.qml:686 msgctxt "@info:tooltip" msgid "Should models be selected after they are loaded?" msgstr "モデルはロード後に選択しますか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: resources/qml/Preferences/GeneralPage.qml:691 msgctxt "@option:check" msgid "Select models when loaded" msgstr "ロード後にモデルを選択" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +#: resources/qml/Preferences/GeneralPage.qml:701 msgctxt "@info:tooltip" msgid "Should a prefix based on the printer name be added to the print job name automatically?" msgstr "プリンター名の敬称はプリントジョブの名前に自動的に加えられるべきか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:685 +#: resources/qml/Preferences/GeneralPage.qml:706 msgctxt "@option:check" msgid "Add machine prefix to job name" msgstr "プリンターの敬称をジョブネームに加える" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +#: resources/qml/Preferences/GeneralPage.qml:716 msgctxt "@info:tooltip" msgid "Should a summary be shown when saving a project file?" msgstr "プロジェクトファイルを保存時にサマリーを表示するべきか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: resources/qml/Preferences/GeneralPage.qml:720 msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "プロジェクトを保存時にダイアログサマリーを表示する" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +#: resources/qml/Preferences/GeneralPage.qml:730 msgctxt "@info:tooltip" msgid "Default behavior when opening a project file" msgstr "プロジェクトファイルを開く際のデフォルト機能" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +#: resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@window:text" msgid "Default behavior when opening a project file: " msgstr "プロジェクトファイル開く際のデフォルト機能: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +#: resources/qml/Preferences/GeneralPage.qml:753 msgctxt "@option:openProject" msgid "Always ask me this" msgstr "毎回確認する" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: resources/qml/Preferences/GeneralPage.qml:754 msgctxt "@option:openProject" msgid "Always open as a project" msgstr "常にプロジェクトとして開く" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +#: resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:openProject" msgid "Always import models" msgstr "常にモデルを取り込む" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +#: resources/qml/Preferences/GeneralPage.qml:792 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 "プロファイル内を変更し異なるプロファイルにしました、どこの変更点を保持、破棄したいのダイアログが表示されます、また何度もダイアログが表示されないようにデフォルト機能を選ぶことができます。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:780 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:36 +#: resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46 msgctxt "@label" msgid "Profiles" msgstr "プロファイル" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +#: resources/qml/Preferences/GeneralPage.qml:806 msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "プロファイル交換時に設定値を変更するためのデフォルト処理: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:800 +#: resources/qml/Preferences/GeneralPage.qml:821 msgctxt "@option:discardOrKeep" msgid "Always discard changed settings" msgstr "常に変更した設定を廃棄する" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/Preferences/GeneralPage.qml:822 msgctxt "@option:discardOrKeep" msgid "Always transfer changed settings to new profile" msgstr "常に変更した設定を新しいプロファイルに送信する" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +#: resources/qml/Preferences/GeneralPage.qml:856 msgctxt "@label" msgid "Privacy" msgstr "プライバシー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +#: resources/qml/Preferences/GeneralPage.qml:862 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アドレス、個人的な情報は送信されたり保存されたりはしません。" +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アドレス、個人的な情報は送信されたり保存されたりはしません。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +#: resources/qml/Preferences/GeneralPage.qml:867 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "(不特定な) プリントインフォメーションを送信" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +#: resources/qml/Preferences/GeneralPage.qml:897 msgctxt "@label" msgid "Updates" msgstr "アップデート" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +#: resources/qml/Preferences/GeneralPage.qml:904 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "Curaのプログラム開始時にアップデートがあるかチェックしますか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:888 +#: resources/qml/Preferences/GeneralPage.qml:909 msgctxt "@option:check" msgid "Check for updates on start" msgstr "スタート時にアップデートあるかどうかのチェック" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +#: resources/qml/Preferences/GeneralPage.qml:925 msgctxt "@info:tooltip" msgid "When checking for updates, only check for stable releases." msgstr "アップデートを確認する際に、安定版リリースのみを確認します。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:910 +#: resources/qml/Preferences/GeneralPage.qml:931 msgctxt "@option:radio" msgid "Stable releases only" msgstr "安定版リリースのみ" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +#: resources/qml/Preferences/GeneralPage.qml:941 msgctxt "@info:tooltip" msgid "When checking for updates, check for both stable and for beta releases." msgstr "アップデートを確認する際に、安定版とベータ版の両方のリリースを確認します。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:926 +#: resources/qml/Preferences/GeneralPage.qml:947 msgctxt "@option:radio" msgid "Stable and Beta releases" msgstr "安定版およびベータ版リリース" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +#: resources/qml/Preferences/GeneralPage.qml:957 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 "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 "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:941 +#: resources/qml/Preferences/GeneralPage.qml:962 msgctxt "@option:check" msgid "Get notifications for plugin updates" msgstr "プラグインのアップデートを通知" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:50 +#: resources/qml/Preferences/MachinesPage.qml:50 msgctxt "@action:button" msgid "Add New" msgstr "新規追加" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:134 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +#: resources/qml/Preferences/MachinesPage.qml:147 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:160 +#: resources/qml/Preferences/ProfilesPage.qml:294 msgctxt "@action:button" msgid "Activate" msgstr "アクティベート" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:146 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:331 +#: resources/qml/Preferences/MachinesPage.qml:159 +#: resources/qml/Preferences/ProfilesPage.qml:331 msgctxt "@action:button" msgid "Rename" msgstr "名を変える" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:72 msgctxt "@label" msgid "Materials compatible with active printer:" msgstr "アクティブなプリンターと互換性のある材料:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:94 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:78 +#: resources/qml/Preferences/ProfilesPage.qml:94 msgctxt "@action:button" msgid "Create new" msgstr "新しいものを作成する" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:88 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:90 +#: resources/qml/Preferences/ProfilesPage.qml:88 msgctxt "@action:button" msgid "Import" msgstr "取り込む" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:101 msgctxt "@action:button" msgid "Sync with Printers" msgstr "プリンターと同期する" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:311 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:174 +#: resources/qml/Preferences/ProfilesPage.qml:311 msgctxt "@action:button" msgid "Duplicate" msgstr "複製" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:342 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:198 +#: resources/qml/Preferences/ProfilesPage.qml:342 msgctxt "@action:button" msgid "Export" msgstr "書き出す" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:392 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:212 +#: resources/qml/Preferences/ProfilesPage.qml:392 msgctxt "@title:window" msgid "Confirm Remove" msgstr "モデルを取り除きました" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:393 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:215 +#: resources/qml/Preferences/ProfilesPage.qml:393 msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "%1を取り外しますか?この作業はやり直しが効きません!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:228 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:238 msgctxt "@title:window" msgid "Import Material" msgstr "フィラメントを取り込む" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:242 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "フィラメント%1の取り込みに成功しました" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:245 msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not import material %1: %2" msgstr "%1フィラメントを取り込むことができない: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:267 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:256 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:267 msgctxt "@title:window" msgid "Export Material" msgstr "フィラメントを書き出す" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:272 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:272 msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "フィラメントの書き出しに失敗しました %1: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:275 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:275 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "フィラメントの%1への書き出しが完了ました" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 msgctxt "@title:window" msgid "Sync materials with printers" msgstr "材料をプリンターと同期" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 msgctxt "@title:header" msgid "Sync materials with printers" msgstr "材料をプリンターと同期" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 msgctxt "@text" msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "簡単な数ステップの手順に従うことで、すべての材料プロファイルをプリンターと同期できるようになります。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 msgctxt "@button" msgid "Why do I need to sync material profiles?" msgstr "材料プロファイルを同期する必要があるのはなぜですか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 msgctxt "@button" msgid "Start" msgstr "開始" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144 msgctxt "@title:header" msgid "Sign in" msgstr "サインイン" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150 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にサインインしている必要があります。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:446 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:586 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602 msgctxt "@button" msgid "Sync materials with USB" msgstr "材料をUSBで同期" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 msgctxt "@title:header" msgid "The following printers will receive the new material profiles:" -msgstr "The following printers will receive the new material profiles:" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:198 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 msgctxt "@title:header" msgid "Something went wrong when sending the materials to the printers." msgstr "材料をプリンターに送信する際に問題が発生しました。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:205 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221 msgctxt "@title:header" msgid "Material profiles successfully synced with the following printers:" -msgstr "Material profiles successfully synced with the following printers:" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:429 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445 msgctxt "@button" msgid "Troubleshooting" msgstr "トラブルシューティング" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422 msgctxt "@text Asking the user whether printers are missing in a list." msgid "Printers missing?" msgstr "プリンターがありませんか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:408 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424 msgctxt "@text" msgid "Make sure all your printers are turned ON and connected to Digital Factory." msgstr "すべてのプリンターの電源が入っていて、Digital Factoryに接続されていることを確認してください。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:417 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433 msgctxt "@button" msgid "Refresh List" msgstr "リストを更新" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473 msgctxt "@button" msgid "Try again" msgstr "やり直してください" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:461 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Done" msgstr "完了" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:606 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622 msgctxt "@button" msgid "Sync" msgstr "同期" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535 msgctxt "@button" msgid "Syncing" msgstr "スライス" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553 msgctxt "@title:header" msgid "No printers found" msgstr "プリンターが見つかりません" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574 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に接続されていないようです。プリンターが接続されていて、最新のファームウェアが実行されていることを確認してください。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:569 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585 msgctxt "@button" msgid "Learn how to connect your printer to Digital Factory" msgstr "Digital Factoryにプリンターを接続する方法について詳しく見る" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:597 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613 msgctxt "@button" msgid "Refresh" msgstr "更新" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642 msgctxt "@title:header" msgid "Sync material profiles via USB" msgstr "材料プロファイルをUSB経由で同期する" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:632 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648 msgctxt "@text In the UI this is followed by a list of steps the user needs to take." msgid "Follow the following steps to load the new material profiles to your printer." msgstr "以下の手順に従って、新しい材料プロファイルをプリンターに読み込みます。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 msgctxt "@text" msgid "Click the export material archive button." msgstr "材料アーカイブのエクスポートボタンをクリックします。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr ".ummファイルをUSBメモリーに保存します。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 msgctxt "@text" msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." msgstr "USBメモリーをプリンターに差し込み、新しい材料プロファイルを読み込む手順を開始します。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:673 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689 msgctxt "@button" msgid "How to load new material profiles to my printer" msgstr "新しい材料プロファイルをプリンターに読み込む方法" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:687 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 msgctxt "@button" msgid "Back" msgstr "戻る" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Export material archive" msgstr "材料アーカイブのエクスポート" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747 msgctxt "@title:window" msgid "Export All Materials" msgstr "すべての材料を書き出す" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121 +#: resources/qml/Preferences/Materials/MaterialsView.qml:121 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "直径変更の確認" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122 +#: resources/qml/Preferences/Materials/MaterialsView.qml:122 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 に設定されています。これは現在のエクストルーダーに適応していません。続行しますか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152 +#: resources/qml/Preferences/Materials/MaterialsView.qml:152 msgctxt "@label" msgid "Display Name" msgstr "ディスプレイ名" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 +#: resources/qml/Preferences/Materials/MaterialsView.qml:171 msgctxt "@label" msgid "Brand" msgstr "ブランド" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190 +#: resources/qml/Preferences/Materials/MaterialsView.qml:190 msgctxt "@label" msgid "Material Type" msgstr "フィラメントタイプ" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +#: resources/qml/Preferences/Materials/MaterialsView.qml:210 msgctxt "@label" msgid "Color" msgstr "色" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:262 +#: resources/qml/Preferences/Materials/MaterialsView.qml:262 msgctxt "@title" msgid "Material color picker" msgstr "材料の色の選択" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:275 +#: resources/qml/Preferences/Materials/MaterialsView.qml:275 msgctxt "@label" msgid "Properties" msgstr "プロパティ" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +#: resources/qml/Preferences/Materials/MaterialsView.qml:286 msgctxt "@label" msgid "Density" msgstr "密度" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +#: resources/qml/Preferences/Materials/MaterialsView.qml:319 msgctxt "@label" msgid "Diameter" msgstr "直径" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:369 +#: resources/qml/Preferences/Materials/MaterialsView.qml:369 msgctxt "@label" msgid "Filament Cost" msgstr "フィラメントコスト" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:401 +#: resources/qml/Preferences/Materials/MaterialsView.qml:401 msgctxt "@label" msgid "Filament weight" msgstr "フィラメントの重さ" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:433 +#: resources/qml/Preferences/Materials/MaterialsView.qml:433 msgctxt "@label" msgid "Filament length" msgstr "フィラメントの長さ" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:451 +#: resources/qml/Preferences/Materials/MaterialsView.qml:451 msgctxt "@label" msgid "Cost per Meter" msgstr "毎メーターコスト" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:465 +#: resources/qml/Preferences/Materials/MaterialsView.qml:465 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "このフィラメントは %1にリンクすプロパティーを共有する。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:472 +#: resources/qml/Preferences/Materials/MaterialsView.qml:472 msgctxt "@label" msgid "Unlink Material" msgstr "フィラメントをリンクを外す" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +#: resources/qml/Preferences/Materials/MaterialsView.qml:485 msgctxt "@label" msgid "Description" msgstr "記述" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:503 +#: resources/qml/Preferences/Materials/MaterialsView.qml:503 msgctxt "@label" msgid "Adhesion Information" msgstr "接着のインフォメーション" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642 +#: resources/qml/Preferences/Materials/MaterialsView.qml:642 msgctxt "@title" msgid "Information" msgstr "インフォメーション" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:647 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:82 +#: resources/qml/Preferences/Materials/MaterialsView.qml:647 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 msgctxt "@label" msgid "Print settings" msgstr "プリント設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:59 +#: resources/qml/Preferences/ProfilesPage.qml:59 msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "アクティブなプリンターと互換性のあるプロファイル:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:98 +#: resources/qml/Preferences/ProfilesPage.qml:98 msgctxt "@action:tooltip" msgid "Create new profile from current settings/overrides" msgstr "現在の設定/上書きから新しいプロファイルを作成します" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:125 +#: resources/qml/Preferences/ProfilesPage.qml:125 msgctxt "@action:label" msgid "Some settings from current profile were overwritten." msgstr "現在のプロファイルの一部の設定が上書きされました。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:140 +#: resources/qml/Preferences/ProfilesPage.qml:140 msgctxt "@action:button" msgid "Update profile." msgstr "プロフィールを更新します。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:143 +#: resources/qml/Preferences/ProfilesPage.qml:143 msgctxt "@action:tooltip" msgid "Update profile with current settings/overrides" msgstr "プロファイルを現在のセッティング" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:148 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256 +#: resources/qml/Preferences/ProfilesPage.qml:148 msgctxt "@action:button" msgid "Discard current changes" msgstr "今の変更を破棄する" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:158 +#: resources/qml/Preferences/ProfilesPage.qml:158 msgctxt "@action:label" msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." msgstr "このプロファイルはプリンターによりデフォルトを使用、従いこのプロファイルはセッティング/書き換えが以下のリストにありません。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:165 +#: resources/qml/Preferences/ProfilesPage.qml:165 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "設定は選択したプロファイルにマッチしています。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +#: resources/qml/Preferences/ProfilesPage.qml:175 msgctxt "@title:tab" msgid "Global Settings" msgstr "グローバル設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: resources/qml/Preferences/ProfilesPage.qml:278 msgctxt "@title:window" msgid "Create Profile" msgstr "プロファイルを作る" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:280 +#: resources/qml/Preferences/ProfilesPage.qml:280 msgctxt "@info" msgid "Please provide a name for this profile." msgstr "このプロファイルの名前を指定してください。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:368 +#: resources/qml/Preferences/ProfilesPage.qml:352 +#: resources/qml/Preferences/ProfilesPage.qml:368 msgctxt "@title:window" msgid "Export Profile" msgstr "プロファイルを書き出す" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +#: resources/qml/Preferences/ProfilesPage.qml:382 msgctxt "@title:window" msgid "Duplicate Profile" msgstr "プロファイルを複製する" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:409 +#: resources/qml/Preferences/ProfilesPage.qml:409 msgctxt "@title:window" msgid "Rename Profile" msgstr "プロファイル名を変える" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:422 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:429 +#: resources/qml/Preferences/ProfilesPage.qml:422 +#: resources/qml/Preferences/ProfilesPage.qml:429 msgctxt "@title:window" msgid "Import Profile" msgstr "プロファイルを取り込む" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:22 -msgctxt "@title:window" -msgid "Rename" -msgstr "名前を変える" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:23 -msgctxt "@info" -msgid "Please provide a new name." -msgstr "新しい名前を入力してください。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56 +#: resources/qml/Preferences/SettingVisibilityItem.qml:56 msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." msgstr "この設定がアクティブなプリンターにより非表示になっています、見ることができません。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73 +#: resources/qml/Preferences/SettingVisibilityItem.qml:73 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 の値で非表示になっています。その設定値を変更すると設定の非表示が解除されます。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13 +#: resources/qml/Preferences/SettingVisibilityPage.qml:13 msgctxt "@title:tab" msgid "Setting Visibility" msgstr "視野設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 +#: resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" msgid "Check all" msgstr "全てを調べる" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 -msgctxt "@label" -msgid "Extruder" -msgstr "エクストルーダー" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70 -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." -msgstr "ホットエンドの目標温度。ホットエンドはこの温度に向けて上がったり下がったりします。これが0の場合、ホットエンドの加熱はオフになっています。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "このホットエンドの現在の温度です。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "ホットエンドをプリヒートする温度です。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "キャンセル" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263 -msgctxt "@button" -msgid "Pre-heat" -msgstr "プレヒート" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "プリント開始前にホットエンドを加熱します。加熱中もプリントの調整を行えます、またホットエンドが加熱するまでプリント開始を待つ必要もありません。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "エクストルーダーのマテリアルの色。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "エクストルーダー入ったフィラメント。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "ノズルが入ったエクストルーダー。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -msgctxt "@label" -msgid "Build plate" -msgstr "ビルドプレート" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55 -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の場合、ベッドの加熱はオフになっています。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "現在のヒーティッドベッドの温度。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "ベッドのプリヒート温度。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "プリント開始前にベッドを加熱します。加熱中もプリントの調整を行えます、またべットが加熱するまでプリント開始を待つ必要もありません。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51 -msgctxt "@label" -msgid "Printer control" -msgstr "プリンターコントロール" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66 -msgctxt "@label" -msgid "Jog Position" -msgstr "ジョグの位置" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217 -msgctxt "@label" -msgid "Jog Distance" -msgstr "ジョグの距離" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Send G-code" -msgstr "G-codeの送信" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "カスタムG-codeコマンドを接続されているプリンターに送信します。「Enter」を押してコマンドを送信します。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "このプリンターはつながっていません。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "クラウドプリンターがオフラインです。プリンターの電源が入っている状態で、インターネットに接続されているかどうかを確認してください。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "このプリンターはお使いのアカウントにリンクされていません。Ultimaker Digital Factoryにアクセスして接続を確立してください。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "クラウド接続は現在利用できません。サインインしてクラウドプリンターに接続してください。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "クラウド接続は現在利用できません。インターネット接続を確認してください。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:235 -msgctxt "@button" -msgid "Add printer" -msgstr "プリンターの追加" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Manage printers" -msgstr "プリンター管理" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Active print" msgstr "プリントをアクティベートする" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Job Name" msgstr "ジョブネーム" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +#: resources/qml/PrintMonitor.qml:172 msgctxt "@label" msgid "Printing Time" msgstr "プリント時間" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +#: resources/qml/PrintMonitor.qml:180 msgctxt "@label" msgid "Estimated time left" msgstr "残り時間" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 msgctxt "@label" msgid "Profile" msgstr "プロファイル" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5598,132 +6159,379 @@ msgstr "" "いくらかの設定プロファイルにある値とことなる場合無効にします。\n" "プロファイルマネージャーをクリックして開いてください。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 +#: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 msgctxt "@label:header" msgid "Custom profiles" msgstr "カスタムプロファイル" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 msgctxt "@label shown when we load a Gcode file" msgid "Print setup disabled. G-code file can not be modified." msgstr "印刷設定は無効にされました。G-code ファイルは変更できません。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:179 msgctxt "@button" msgid "Recommended" msgstr "推奨" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156 -msgctxt "@button" -msgid "Custom" -msgstr "カスタム" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 msgctxt "@label:Should be short" msgid "On" msgstr "オン" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 msgctxt "@label:Should be short" msgid "Off" msgstr "オフ" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "実験" +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is active and you overwrote some settings." +msgstr "%1カスタムプロファイルが有効になり、一部の設定を上書きしました。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:54 -msgctxt "@info" -msgid "custom profile is active and you overwrote some settings." +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is overriding some settings." +msgstr "%1カスタムプロファイルが一部の設定を上書き中です。" + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92 +msgctxt "@info %1 is the name of a profile" +msgid "Recommended settings (for %1) were altered." +msgstr "推奨設定(%1)が変更されました。" + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106 +msgctxt "@info %1 is the name of a profile" +msgid "Some setting-values defined in %1 were overridden." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137 msgctxt "@info" -msgid "custom profile is overriding some settings." -msgstr "" +msgid "Reset to defaults." +msgstr "デフォルトに戻します。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178 msgctxt "@info" -msgid "Some settings were changed." -msgstr "" +msgid "Compare and save." +msgstr "比較して保存してください。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15 msgctxt "@label" msgid "Adhesion" msgstr "密着性" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20 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 "ブリムまたはラフトのプリントの有効化。それぞれ、プリントの周り、また造形物の下に底面を加え切り取りやすくします。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:198 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102 msgctxt "@label" -msgid "Gradual infill" -msgstr "インフィル半減" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:236 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "グラデュアルインフィルはトップに向かうに従ってインフィルの量を増やします。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 -msgctxt "@label" -msgid "Resolution" +msgid "Recommended print settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111 +msgctxt "@button" +msgid "Show Custom" +msgstr "カスタムを表示" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27 +msgctxt "@label" +msgid "Resolution" +msgstr "解像度" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16 +msgctxt "@label" +msgid "Strength" +msgstr "強度" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20 +msgctxt "@label" +msgid "The following settings define the strength of your part." +msgstr "次の設定では、部材の強度を定義します。" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34 +msgctxt "infill_sparse_density description" +msgid "Infill Density" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35 +msgctxt "@label" +msgid "Adjusts the density of infill of the print." +msgstr "プリントのインフィルの密度を調整します。" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54 +msgctxt "@action:label" +msgid "Infill Pattern" +msgstr "インフィルパターン" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56 +msgctxt "@label" +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プリントの場合は、キュービック、キュービックサブディビジョン、クォーターキュービック、オクテット、ジャイロイドを使用します。" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67 +msgctxt "@action:label" +msgid "Shell Thickness" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68 +msgctxt "@label" +msgid "Defines the thickness of your part side walls, roof and floor." +msgstr "部品のサイドウォール、ルーフ、フロアの厚さを定義します。" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16 msgctxt "@label" msgid "Support" msgstr "サポート" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21 msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "オーバーハングがあるモデルにサポートを生成します。このサポート構造なしでは、プリント中にオーバーハングのパーツが崩壊してしまいます。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40 +msgctxt "@action:label" +msgid "Support Type" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41 +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 "サポートを生成するために利用できる技術を選択します。「標準」のサポート構造はオーバーハング部品のすぐ下に作成し、そのエリアを真下に生成します。「ツリー」サポートはオーバーハングエリアに向かって枝を作成し、モデルを枝の先端で支えます。枝をモデルのまわりにはわせて、できる限りビルドプレートから支えます。" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53 +msgctxt "@action:label" +msgid "Print with" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54 +msgctxt "@label" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "サポート材を印刷するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67 +msgctxt "@action:label" +msgid "Placement" +msgstr "配置" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68 +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に設定した場合、サポート材がモデルの上にもプリントされます。" + +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 msgctxt "@error" msgid "Configuration not supported" -msgstr "" +msgstr "サポートされていない構成設定です" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." -msgstr "" +msgstr "選択した/%1材料の設定で利用可能なプロファイルがありません。設定を変更してください。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 msgctxt "@button:label" msgid "Learn more" -msgstr "" +msgstr "詳細を見る" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +#: resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "エクストルーダー" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:70 +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." +msgstr "ホットエンドの目標温度。ホットエンドはこの温度に向けて上がったり下がったりします。これが0の場合、ホットエンドの加熱はオフになっています。" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:105 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "このホットエンドの現在の温度です。" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:182 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "ホットエンドをプリヒートする温度です。" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:271 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:259 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "キャンセル" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:274 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:263 +msgctxt "@button" +msgid "Pre-heat" +msgstr "プレヒート" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:297 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "プリント開始前にホットエンドを加熱します。加熱中もプリントの調整を行えます、またホットエンドが加熱するまでプリント開始を待つ必要もありません。" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:335 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "エクストルーダーのマテリアルの色。" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:367 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "エクストルーダー入ったフィラメント。" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:400 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "ノズルが入ったエクストルーダー。" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:25 +msgctxt "@label" +msgid "Build plate" +msgstr "ビルドプレート" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:55 +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の場合、ベッドの加熱はオフになっています。" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "現在のヒーティッドベッドの温度。" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:162 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "ベッドのプリヒート温度。" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:286 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "プリント開始前にベッドを加熱します。加熱中もプリントの調整を行えます、またべットが加熱するまでプリント開始を待つ必要もありません。" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:51 +msgctxt "@label" +msgid "Printer control" +msgstr "プリンターコントロール" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:66 +msgctxt "@label" +msgid "Jog Position" +msgstr "ジョグの位置" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:82 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:162 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:217 +msgctxt "@label" +msgid "Jog Distance" +msgstr "ジョグの距離" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Send G-code" +msgstr "G-codeの送信" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:319 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "カスタムG-codeコマンドを接続されているプリンターに送信します。「Enter」を押してコマンドを送信します。" + +#: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "このプリンターはつながっていません。" + +#: resources/qml/PrinterSelector/MachineListButton.qml:34 +msgctxt "@label" +msgid "Hide all connected printers" +msgstr "接続されているすべてのプリンターを非表示にする" + +#: resources/qml/PrinterSelector/MachineListButton.qml:47 +msgctxt "@label" +msgid "Show all connected printers" +msgstr "接続されているすべてのプリンターを表示する" + +#: resources/qml/PrinterSelector/MachineSelector.qml:64 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "クラウドプリンターがオフラインです。プリンターの電源が入っている状態で、インターネットに接続されているかどうかを確認してください。" + +#: resources/qml/PrinterSelector/MachineSelector.qml:68 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "このプリンターはお使いのアカウントにリンクされていません。Ultimaker Digital Factoryにアクセスして接続を確立してください。" + +#: resources/qml/PrinterSelector/MachineSelector.qml:73 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "クラウド接続は現在利用できません。サインインしてクラウドプリンターに接続してください。" + +#: resources/qml/PrinterSelector/MachineSelector.qml:78 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "クラウド接続は現在利用できません。インターネット接続を確認してください。" + +#: resources/qml/PrinterSelector/MachineSelectorList.qml:30 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:32 +msgctxt "@label" +msgid "Other printers" +msgstr "その他のプリンター" + +#: resources/qml/ProfileOverview.qml:36 msgctxt "@title:column" msgid "Setting" msgstr "設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +#: resources/qml/ProfileOverview.qml:37 msgctxt "@title:column" msgid "Profile" msgstr "プロファイル" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +#: resources/qml/ProfileOverview.qml:38 msgctxt "@title:column" msgid "Current" msgstr "現在" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +#: resources/qml/ProfileOverview.qml:39 msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "ユニット" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +#: resources/qml/SearchBar.qml:17 msgctxt "@placeholder" msgid "Search" msgstr "検索" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 +#: resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5733,32 +6541,32 @@ msgstr "" "いくらかの非表示設定は通常の計算された値と異なる値を使用します。\n" "表示されるようにクリックしてください。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 +#: resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "影響を与えるすべての設定がオーバーライドされるため、この設定は使用されません。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +#: resources/qml/Settings/SettingItem.qml:89 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "影響" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +#: resources/qml/Settings/SettingItem.qml:94 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "次によって影響を受ける" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:190 +#: resources/qml/Settings/SettingItem.qml:196 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "この設定は常に全てのエクストルーダーに共有されています。ここですべてのエクストルーダーの数値を変更できます。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +#: resources/qml/Settings/SettingItem.qml:200 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "この設定はエクストルーダー固有の競合する値から取得します:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +#: resources/qml/Settings/SettingItem.qml:240 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5768,7 +6576,7 @@ msgstr "" "この設定にプロファイルと異なった値があります。\n" "プロファイルの値を戻すためにクリックしてください。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:334 +#: resources/qml/Settings/SettingItem.qml:340 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5778,3932 +6586,327 @@ msgstr "" "このセッティングは通常計算されます、今は絶対値に固定されています。\n" "計算された値に変更するためにクリックを押してください。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +#: resources/qml/Settings/SettingView.qml:48 msgctxt "@label:textbox" msgid "Search settings" msgstr "検索設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:395 +#: resources/qml/Settings/SettingView.qml:395 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "すべてのエクストルーダーの値をコピーする" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:404 +#: resources/qml/Settings/SettingView.qml:404 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "すべてのエクストルーダーに対して変更された値をコピーする" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:440 +#: resources/qml/Settings/SettingView.qml:440 msgctxt "@action:menu" msgid "Hide this setting" msgstr "この設定を非表示にする" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:453 +#: resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "この設定を表示しない" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:457 +#: resources/qml/Settings/SettingView.qml:457 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "常に見えるように設定する" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +#: resources/qml/Toolbar.qml:142 +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" +msgstr[0] "選択したモデルを%1で印刷する" + +#: resources/qml/ViewOrientationControls.qml:25 msgctxt "@info:tooltip" msgid "3D View" msgstr "3Dビュー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +#: resources/qml/ViewOrientationControls.qml:38 msgctxt "@info:tooltip" msgid "Front View" msgstr "フロントビュー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +#: resources/qml/ViewOrientationControls.qml:51 msgctxt "@info:tooltip" msgid "Top View" msgstr "トップビュー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +#: resources/qml/ViewOrientationControls.qml:64 msgctxt "@info:tooltip" msgid "Left View" msgstr "左ビュー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +#: resources/qml/ViewOrientationControls.qml:77 msgctxt "@info:tooltip" msgid "Right View" msgstr "右ビュー" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: resources/qml/ViewsSelector.qml:50 msgctxt "@label" msgid "View type" msgstr "タイプ表示" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:47 msgctxt "@label" msgid "Add a Cloud printer" msgstr "クラウドプリンターを追加" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:73 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:73 msgctxt "@label" msgid "Waiting for Cloud response" msgstr "クラウドの応答を待機しています" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:83 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:83 msgctxt "@label" msgid "No printers found in your account?" msgstr "アカウントにプリンターが見つかりませんか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:117 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:117 msgctxt "@label" msgid "The following printers in your account have been added in Cura:" -msgstr "The following printers in your account have been added in Cura:" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:186 msgctxt "@button" msgid "Add printer manually" msgstr "プリンタを手動で追加する" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 msgctxt "@label" msgid "Manufacturer" msgstr "製造元" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Profile author" msgstr "プロファイル作成者" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 msgctxt "@label" msgid "Printer name" msgstr "プリンター名" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 msgctxt "@text" msgid "Please name your printer" msgstr "プリンターに名前を付けてください" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "プリンターの追加" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:38 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "ネットワークプリンターの追加" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:87 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "非ネットワークプリンターの追加" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 msgctxt "@label" msgid "There is no printer found over your network." msgstr "ネットワークにプリンターはありません。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 msgctxt "@label" msgid "Refresh" msgstr "更新" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 msgctxt "@label" msgid "Add printer by IP" msgstr "IP でプリンターを追加" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "クラウドプリンターを追加" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205 msgctxt "@label" msgid "Troubleshooting" msgstr "トラブルシューティング" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 msgctxt "@label" msgid "Add printer by IP address" msgstr "IP アドレスでプリンターを追加" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 msgctxt "@text" msgid "Enter your printer's IP address." msgstr "プリンターのIPアドレスを入力します。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 msgctxt "@button" msgid "Add" msgstr "追加" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 msgctxt "@label" msgid "Could not connect to device." msgstr "デバイスに接続できません。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Ultimakerプリンターに接続できませんか?" +msgid "Can't connect to your UltiMaker printer?" +msgstr "UltiMakerプリンターに接続できませんか?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 msgctxt "@label" msgid "The printer at this address has not responded yet." msgstr "このアドレスのプリンターは応答していません。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 msgctxt "@label" msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." msgstr "このプリンタは不明なプリンタであるか、またはグループのホストではないため、追加できません。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 msgctxt "@button" msgid "Connect" msgstr "接続" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "ネットワークプリンターの追加" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "非ネットワークプリンターの追加" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102 +msgctxt "@button" +msgid "Add UltiMaker printer via Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "In order to start using Cura you will need to configure a printer." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36 +msgctxt "@label" +msgid "What printer would you like to setup?" +msgstr "どのプリンターをセットアップしますか?" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55 +msgctxt "@button" +msgid "UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64 +msgctxt "@button" +msgid "Non UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73 +msgctxt "@button" +msgid "Learn more about adding printers to Cura" +msgstr "Curaへのプリンターの追加方法はこちら" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29 +msgctxt "@label" +msgid "Add printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33 +msgctxt "@label" +msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70 +msgctxt "@label" +msgid "If you are trying to add a new UltiMaker printer to Cura" +msgstr "新しいUltiMakerプリンターをCuraに追加する場合" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80 +msgctxt "@info" +msgid "Sign in into UltiMaker Digital Factory" +msgstr "UltiMaker Digital Factoryにサインインしてください" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81 +msgctxt "@info" +msgid "Follow the procedure to add a new printer" +msgstr "新規にプリンターを追加する場合は、以下の手順で行います" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82 +msgctxt "@info" +msgid "Your new printer will automatically appear in Cura" +msgstr "新しいプリンターがUltiMaker Curaに自動的に表示されます" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100 +msgctxt "@button" +msgid "Learn more" +msgstr "詳しく見る" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121 +msgctxt "@button" +msgid "Add local printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129 +msgctxt "@button" +msgid "Sign in to Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133 +msgctxt "@button" +msgid "Waiting for new printers" +msgstr "" + +#: resources/qml/WelcomePages/ChangelogContent.qml:24 msgctxt "@label" msgid "Release Notes" msgstr "リリースノート" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:123 +#: resources/qml/WelcomePages/CloudContent.qml:123 msgctxt "@text" msgid "Add material settings and plugins from the Marketplace" msgstr "マーケットプレイスから材料設定とプラグインを追加" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:149 +#: resources/qml/WelcomePages/CloudContent.qml:149 msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "材料設定とプラグインのバックアップと同期" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:175 +#: resources/qml/WelcomePages/CloudContent.qml:175 msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Ultimakerコミュニティで48,000人以上のユーザーとアイデアを共有してアドバイスをもらう" +msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" +msgstr "UltiMakerコミュニティで48,000人以上のユーザーとアイデアを共有してアドバイスをもらう" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +#: resources/qml/WelcomePages/CloudContent.qml:189 msgctxt "@button" msgid "Skip" msgstr "スキップ" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +#: resources/qml/WelcomePages/CloudContent.qml:201 msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "無料のUltimakerアカウントを作成" +msgid "Create a free UltiMaker Account" +msgstr "無料のUltiMakerアカウントを作成" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Ultimaker Cura の改善にご協力ください" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:56 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura は、印刷品質とユーザーエクスペリエンスを向上させるために以下の匿名データを収集します:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:68 -msgctxt "@text" -msgid "Machine types" -msgstr "プリンターのタイプ" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:74 -msgctxt "@text" -msgid "Material usage" -msgstr "材料の利用状況" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:80 -msgctxt "@text" -msgid "Number of slices" -msgstr "スライスの数" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:86 -msgctxt "@text" -msgid "Print settings" -msgstr "プリント設定" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:99 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Ultimaker Cura が収集したデータには個人データは含まれません。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:100 -msgctxt "@text" -msgid "More information" -msgstr "詳細" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +#: resources/qml/WelcomePages/DropDownWidget.qml:93 msgctxt "@label" msgid "Empty" msgstr "空にする" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +#: resources/qml/WelcomePages/UserAgreementContent.qml:23 msgctxt "@label" msgid "User Agreement" msgstr "ユーザー用使用許諾契約" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67 +#: resources/qml/WelcomePages/UserAgreementContent.qml:67 msgctxt "@button" msgid "Decline and close" msgstr "拒否して閉じる" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Ultimaker Cura にようこそ" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:67 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "" -"以下の手順で\n" -"Ultimaker Cura を設定してください。数秒で完了します。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:82 -msgctxt "@button" -msgid "Get started" -msgstr "はじめに" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: resources/qml/WelcomePages/WhatsNewContent.qml:28 msgctxt "@label" msgid "What's New" msgstr "新情報" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: resources/qml/Widgets/ComboBox.qml:18 msgctxt "@label" msgid "No items to select from" msgstr "選択するアイテムがありません" -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "プリント問題の可能性のあるモデルをプリント構成を確認し、解決案を提示してください。" - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "モデルチェッカー" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "3MFファイルを読むこむためのサポートを供給する。" - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "3MFリーダー" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "3MFファイルを読むこむためのサポートを供給する。" - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "3MFリーダー" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "AMFファイルの読込みをサポートしています。" - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "AMFリーダー" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "構成をバックアップしてリストアします。" - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura バックアップ" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "CuraEngineスライシングバックエンドにリンクを供給する。" - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Curaエンジンバックエンド" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Curaプロファイルを取り込むためのサポートを供給する。" - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Curaプロファイルリーダー" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Curaプロファイルを書き出すためのサポートを供給する。" - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Curaプロファイルライター" - -#: DigitalLibrary/plugin.json -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にファイルを保存したりできるようにします。" - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "ファームウェアアップデートをチェックする。" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "ファームウェアアップデートチェッカー" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "ファームウェアアップデートのためのマシン操作を提供します。" - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "ファームウェアアップデーター" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "圧縮ファイルからG-codeを読み取ります。" - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "圧縮G-codeリーダー" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "圧縮ファイルにG-codeを書き込みます。" - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "圧縮G-codeライター" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "g-codeファイルからプロファイルを読み込むサポートを供給する。" - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-codeプロファイルリーダー" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "G-codeファイルの読み込み、表示を許可する。" - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "G-codeリーダー" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "ファイルにG-codeを書き込みます。" - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "G-codeライター" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "2Dの画像ファイルからプリント可能なジオメトリーを生成を可能にする。" - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "画像リーダー" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "レガシーCura Versionsからプロファイルを取り込むためのサポートを供給する。" - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "レガシーCuraプロファイルリーダー" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "プリンターの設定を変更(印刷ボリューム、ノズルサイズ、その他)" - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "プリンターの設定アクション" - -#: Marketplace/plugin.json -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the Ultimaker website." -msgstr "アプリケーションの拡張機能を管理し、Ultimakerウェブサイトから拡張機能を参照できるようにします。" - -#: Marketplace/plugin.json -msgctxt "name" -msgid "Marketplace" -msgstr "マーケットプレース" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Curaでモニターステージを提供します。" - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "モニターステージ" - -#: PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "各モデル設定を与える。" - -#: PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "各モデル設定ツール" - -#: PostProcessingPlugin/plugin.json -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "後処理のためにユーザーが作成したスクリプト用拡張子" - -#: PostProcessingPlugin/plugin.json -msgctxt "name" -msgid "Post Processing" -msgstr "後処理" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Curaで準備ステージを提供します。" - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "ステージの準備" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Curaでプレビューステージを提供します。" - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "プレビューステージ" - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "取り外し可能なドライブホットプラギング及びサポートの書き出しの供給。" - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "取り外し可能なドライブアウトプットデバイスプラグイン" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "クラッシュレポーターで使用できるように、特定のイベントをログに記録します" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "監視ロガー" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "スライスされたレイヤーデータのプレビューを提供します。" - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "シミュレーションビュー" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "不特定なスライス情報を提出。プレファレンスの中で無効になる可能性もある。" - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "スライスインフォメーション" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "ノーマルなソリットメッシュビューを供給する。" - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "ソリッドビュー" - -#: SupportEraser/plugin.json -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "特定箇所のサポートを印刷するブロックを消去するメッシュを作成する" - -#: SupportEraser/plugin.json -msgctxt "name" -msgid "Support Eraser" -msgstr "サポート消去機能" - -#: TrimeshReader/plugin.json -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "モデルファイルを読み込むためのサポートを供給します。" - -#: TrimeshReader/plugin.json -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimeshリーダー" - -#: UFPReader/plugin.json -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Ultimakerフォーマットパッケージの読み込みをサポートします。" - -#: UFPReader/plugin.json -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP リーダー" - -#: UFPWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Ultimakerフォーマットパッケージへの書き込みをサポートします。" - -#: UFPWriter/plugin.json -msgctxt "name" -msgid "UFP Writer" -msgstr "UFPライター" - -#: UltimakerMachineActions/plugin.json -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Ultimakerのプリンターのアクションを供給する(ベッドレベリングウィザード、アップグレードの選択、他)" - -#: UltimakerMachineActions/plugin.json -msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Ultimkerプリンターのアクション" - -#: UM3NetworkPrinting/plugin.json -msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Ultimakerのネットワーク接属できるプリンターのネットワーク接続を管理します。" - -#: UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Ultimakerネットワーク接続" - -#: USBPrinting/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "G-codeを承認し、プリンターに送信する。またプラグインはファームウェアをアップデートできます。" - -#: USBPrinting/plugin.json -msgctxt "name" -msgid "USB printing" -msgstr "USBプリンティング" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Cura 2.1 からCura 2.2のコンフィグレーションアップグレート。" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "2.1 から2.2にバージョンアップグレート" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Cura 2.2 からCura 2.4のコンフィグレーションアップグレート。" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "2.2 から2.4にバージョンアップグレート" - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Cura 2.5 からCura 2.6のコンフィグレーションアップグレート。" - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "2.5から2.6にバージョンアップグレート" - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Cura 2.6 からCura 2.7のコンフィグレーションアップグレート。" - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "2.6から2.7にバージョンアップグレート" - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Cura 2.7からCura 3.0のコンフィグレーションアップグレート。" - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "2.7から3.0にバージョンアップグレート" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Cura 3.0からCura 3.1のコンフィグレーションアップグレート。" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "3.0から3.1にバージョンアップグレート" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Cura 3.2からCura 3.3のコンフィグレーションアップグレート。" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "3.2から3.3にバージョンアップグレート" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Cura 3.3からCura 3.4のコンフィグレーションアップグレート。" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "3.3から3.4にバージョンアップグレート" - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Cura 3.4 から Cura 3.5 のコンフィグレーションアップグレート。" - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "3.4 から 3.5 にバージョンアップグレート" - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Cura 3.5 から Cura 4.0 のコンフィグレーションアップグレート。" - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "3.5 から 4.0 にバージョンアップグレート" - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Cura 4.0 から Cura 4.1 のコンフィグレーションアップグレート。" - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "4.0 から 4.1 にバージョンアップグレート" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Cura 4.11からCura 4.12に設定をアップグレードします。" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "バージョン4.11から4.12へのアップグレード" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Cura 4.13からCura 5.0に設定をアップグレードします。" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "バージョン4.13から5.0へのアップグレード" - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "コンフィギュレーションを Cura 4.1 から Cura 4.2 にアップグレートする。" - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "4.0 から 4.1 にバージョンアップグレート" - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Cura 4.2からCura 4.3の設定をアップグレードします。" - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "4.2から4.3にバージョンをアップグレート" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Cura 4.3からCura 4.4へのコンフィグレーションアップグレート。" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "4.3から4.4にバージョンアップグレート" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Cura 4.4からCura 4.5に設定をアップグレードします。" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "4.4から4.5にバージョンアップグレート" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Cura 4.5からCura 4.6に設定をアップグレードします。" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "バージョン4.5から4.6へのアップグレード" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "構成をCura 4.6.0からCura 4.6.2に更新します。" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "4.6.0から4.6.2へのバージョン更新" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "構成をCura 4.6.2からCura 4.7に更新します。" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "4.6.2から4.7へのバージョン更新" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Cura 4.7からCura 4.8に設定をアップグレードします。" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "バージョン4.7から4.8へのアップグレード" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Cura 4.8からCura 4.9に設定をアップグレードします。" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "バージョン4.8から4.9へのアップグレード" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Cura 4.9からCura 4.10に設定をアップグレードします。" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "バージョン4.9から4.10へのアップグレード" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "X3Dファイルを読むこむためのサポートを供給する。" - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "X3Dリーダー" - -#: XmlMaterialProfile/plugin.json -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "XMLベースフィラメントのプロファイルを読み書きするための機能を供給する。" - -#: XmlMaterialProfile/plugin.json -msgctxt "name" -msgid "Material Profiles" -msgstr "フィラメントプロファイル" - -#: XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "透視ビューイング。" - -#: XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "透視ビュー" - -#~ msgctxt "@label" -#~ msgid "Not yet initialized
    " -#~ msgstr "初期化されていません
    " - -#~ msgctxt "@label" -#~ msgid "By" -#~ msgstr "作成者" - -#~ msgctxt "@Label" -#~ msgid "Static type checker for Python" -#~ msgstr "Python用の静的型チェッカー" - -#~ msgctxt "@Label" -#~ msgid "Root Certificates for validating SSL trustworthiness" -#~ msgstr "SSLの信頼性を検証するためのルート証明書" - -#~ msgctxt "@label" -#~ msgid "Python extensions for Microsoft Windows" -#~ msgstr "Microsoft Windows用のPython拡張機能" - -#~ msgctxt "@label" -#~ msgid "SVG icons" -#~ msgstr "SVGアイコン" - -#~ msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" -#~ msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" -#~ msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" -#~ msgstr[0] "エクストルーダー%2の設定には%1プロファイルがありません。代わりにデフォルトの目的が使用されます" - -#~ msgctxt "@tooltip" -#~ msgid "You have modified some profile settings. If you want to change these go to custom mode." -#~ msgstr "プロファイルの設定がいくつか変更されました。変更を有効にするにはカスタムモードに移動してください。" - -#~ msgctxt "@action:button" -#~ msgid "Sync materials with printers" -#~ msgstr "材料をプリンターと同期" - -#~ msgctxt "@title:window" -#~ msgid "Convert Image..." -#~ msgstr "画像を変換する..." - -#~ msgctxt "@info:tooltip" -#~ msgid "The width in millimeters on the build plate." -#~ msgstr "ビルドプレート上の幅ミリメートル。" - -#~ msgctxt "@title" -#~ msgid "Marketplace" -#~ msgstr "マーケットプレース" - -#~ msgctxt "@info" -#~ msgid "You will need to restart Cura before changes in packages have effect." -#~ msgstr "パッケージへの変更を有効にするためにCuraを再起動する必要があります。" - -#~ msgctxt "@action:button" -#~ msgid "Install" -#~ msgstr "インストール" - -#~ msgctxt "@action:button" -#~ msgid "Installed" -#~ msgstr "インストールした" - -#~ msgctxt "@label" -#~ msgid "Premium" -#~ msgstr "プレミアム" - -#~ msgctxt "@info:tooltip" -#~ msgid "Go to Web Marketplace" -#~ msgstr "ウェブマーケットプレイスに移動" - -#~ msgctxt "@label" -#~ msgid "Search materials" -#~ msgstr "材料を検索" - -#~ msgctxt "@label" -#~ msgid "Compatibility" -#~ msgstr "互換性" - -#~ msgctxt "@label:table_header" -#~ msgid "Machine" -#~ msgstr "プリンター" - -#~ msgctxt "@label:table_header" -#~ msgid "Build Plate" -#~ msgstr "ビルドプレート" - -#~ msgctxt "@label:table_header" -#~ msgid "Support" -#~ msgstr "サポート" - -#~ msgctxt "@label:table_header" -#~ msgid "Quality" -#~ msgstr "品質" - -#~ msgctxt "@action:label" -#~ msgid "Technical Data Sheet" -#~ msgstr "技術データシート" - -#~ msgctxt "@action:label" -#~ msgid "Safety Data Sheet" -#~ msgstr "安全データシート" - -#~ msgctxt "@action:label" -#~ msgid "Printing Guidelines" -#~ msgstr "印刷ガイドライン" - -#~ msgctxt "@action:label" -#~ msgid "Website" -#~ msgstr "ウェブサイト" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to install or update" -#~ msgstr "インストールまたはアップデートにはログインが必要です" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Buy material spools" -#~ msgstr "材料スプールの購入" - -#~ msgctxt "@action:button" -#~ msgid "Update" -#~ msgstr "アップデート" - -#~ msgctxt "@action:button" -#~ msgid "Updating" -#~ msgstr "更新中" - -#~ msgctxt "@action:button" -#~ msgid "Updated" -#~ msgstr "更新済み" - -#~ msgctxt "@action:button" -#~ msgid "Back" -#~ msgstr "戻る" - -#~ msgctxt "@title:tab" -#~ msgid "Plugins" -#~ msgstr "プラグイン" - -#~ msgctxt "@title:tab" -#~ msgid "Installed" -#~ msgstr "インストールした" - -#~ msgctxt "@label" -#~ msgid "Will install upon restarting" -#~ msgstr "再起動時にインストール" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to update" -#~ msgstr "アップデートにはログインが必要です" - -#~ msgctxt "@action:button" -#~ msgid "Downgrade" -#~ msgstr "ダウングレード" - -#~ msgctxt "@action:button" -#~ msgid "Uninstall" -#~ msgstr "アンインストール" - -#~ msgctxt "@label" -#~ msgid "Community Contributions" -#~ msgstr "地域貢献" - -#~ msgctxt "@label" -#~ msgid "Community Plugins" -#~ msgstr "コミュニティプラグイン" - -#~ msgctxt "@label" -#~ msgid "Generic Materials" -#~ msgstr "汎用材料" - -#~ msgctxt "@info" -#~ msgid "Fetching packages..." -#~ msgstr "パッケージ取得中..." - -#~ msgctxt "@label" -#~ msgid "Website" -#~ msgstr "ウェブサイト" - -#~ msgctxt "@label" -#~ msgid "Email" -#~ msgstr "電子メール" - -#~ msgctxt "@description" -#~ msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -#~ msgstr "検証済みのUltimaker Cura Enterprise用プラグインおよび材料を入手するにはサインインしてください" - -#~ msgctxt "@label" -#~ msgid "Version" -#~ msgstr "バージョン" - -#~ msgctxt "@label" -#~ msgid "Last updated" -#~ msgstr "最終更新日" - -#~ msgctxt "@label" -#~ msgid "Downloads" -#~ msgstr "ダウンロード" - -#~ msgctxt "@title:tab" -#~ msgid "Installed plugins" -#~ msgstr "インストールされたプラグイン" - -#~ msgctxt "@info" -#~ msgid "No plugin has been installed." -#~ msgstr "プラグインはインストールされていません。" - -#~ msgctxt "@title:tab" -#~ msgid "Installed materials" -#~ msgstr "インストールされた材料" - -#~ msgctxt "@info" -#~ msgid "No material has been installed." -#~ msgstr "材料はインストールされていません。" - -#~ msgctxt "@title:tab" -#~ msgid "Bundled plugins" -#~ msgstr "バンドルされたプラグイン" - -#~ msgctxt "@title:tab" -#~ msgid "Bundled materials" -#~ msgstr "バンドルされた材料" - -#~ msgctxt "@info" -#~ msgid "Could not connect to the Cura Package database. Please check your connection." -#~ msgstr "Curaパッケージデータベースに接続できません。接続を確認してください。" - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall" -#~ msgstr "アンインストール確認" - -#~ msgctxt "@text:window" -#~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -#~ msgstr "使用中の材料またはプロファイルをアンインストールしようとしています。確定すると以下の材料/プロファイルをデフォルトにリセットします。" - -#~ msgctxt "@text:window" -#~ msgid "Materials" -#~ msgstr "材料" - -#~ msgctxt "@text:window" -#~ msgid "Profiles" -#~ msgstr "プロファイル" - -#~ msgctxt "@action:button" -#~ msgid "Confirm" -#~ msgstr "確認" - -#~ msgctxt "@info:tooltip" -#~ msgid "Some things could be problematic in this print. Click to see tips for adjustment." -#~ msgstr "このプリントの何かが問題です。クリックして調整のヒントをご覧ください。" - -#~ msgctxt "@label" -#~ msgid "Support library for handling planar objects" -#~ msgstr "平面対象物を操作するためのライブラリーサポート" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "一部のプロファイル設定がカスタマイズされています。\n" -#~ "これらの変更された設定をプロファイルの切り替え後も維持しますか?\n" -#~ "変更を破棄して'%1'からデフォルトの設定を読み込むこともできます。" - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Build plate" -#~ msgstr "ビルドプレート (&B)" - -#~ msgctxt "@label" -#~ msgid "Create" -#~ msgstr "作成する" - -#~ msgctxt "@label" -#~ msgid "Duplicate" -#~ msgstr "複製" - -#~ msgctxt "@label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "プリンター:%1" - -#~ msgctxt "@action:button" -#~ msgid "Update profile with current settings/overrides" -#~ msgstr "プロファイルを現在のセッティング" - -#~ msgctxt "@label" -#~ msgid "Theme:" -#~ msgstr "テーマ:" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for these changes to have effect." -#~ msgstr "それらの変更を有効にするためにはアプリケーションを再起動しなけらばなりません。" - -#~ msgctxt "@action:button" -#~ msgid "More information" -#~ msgstr "詳細" - -#~ msgctxt "@action:button" -#~ msgid "Create" -#~ msgstr "作成する" - -#~ msgctxt "@action:button Sending materials to printers" -#~ msgid "Sync with Printers" -#~ msgstr "プリンターと同期する" - -#~ msgctxt "@action:label" -#~ msgid "Printer" -#~ msgstr "プリンター" - -#~ msgctxt "@title:column" -#~ msgid "Unit" -#~ msgstr "ユニット" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting Guide" -#~ msgstr "オンラインでトラブルシューティングガイドを表示する" - -#~ msgctxt "@action:inmenu" -#~ msgid "Add more materials from Marketplace" -#~ msgstr "マーケットプレイスから材料を追加" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange All Models To All Build Plates" -#~ msgstr "すべてのモデルをすべてのビルドプレートに配置" - -#~ msgctxt "@action:menu" -#~ msgid "&Marketplace" -#~ msgstr "&マーケットプレース" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new Cura packages." -#~ msgstr "新しいCuraパッケージを検索、管理、インストールします。" - -#~ msgctxt "name" -#~ msgid "Toolbox" -#~ msgstr "ツールボックス" - -#~ msgctxt "description" -#~ msgid "Provides the Simulation view." -#~ msgstr "シミュレーションビューを提供します。" - #~ msgctxt "@info:status" -#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Ultimaker のアカウントを使用して、どこからでも印刷ジョブを送信およびモニターします。" - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Digital Factory" -#~ msgstr "Ultimaker Digital Factoryに接続" - -#~ msgctxt "@info" -#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." -#~ msgstr "クラウドプリンターのウェブカムフィードをUltimaker Curaから見ることができません。" - -#~ 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 not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -#~ msgstr "お使いの{machine_name}について新機能またはバグ修正が利用できる可能性があります。まだ最新のバージョンでない場合は、プリンターのファームウェアをバージョン{latest_version}に更新することを推奨します。" - -#~ msgctxt "@info:title The %s gets replaced with the printer name." -#~ msgid "New %s firmware available" -#~ msgstr "新しい利用可能な%sファームウェアのアップデートがあります" - -#~ msgctxt "@info:status" -#~ msgid "Global stack is missing." -#~ msgstr "グローバルスタックがありません。" - -#~ msgctxt "@info:status" -#~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces." -#~ msgstr "モデルはマニホールドではありません。ハイライトされたエリアは、欠けている表面または無関係な表面を示します。" +#~ msgid "Cura does not accurately display layers when Wire Printing is enabled." +#~ msgstr "Curaはワイヤープリンティングが有効な場合は正確にレイヤーを表示しません。" #~ msgctxt "@info:title" -#~ msgid "Model errors" -#~ msgstr "モデルエラー" - -#~ msgctxt "@label:listbox" -#~ msgid "Layer thickness" -#~ msgstr "レイヤーの厚さ" - -#~ msgctxt "@label" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "3Dプリンティング活用の鍵" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Customize your experience with more print profiles and plugins\n" -#~ "- Stay flexible by syncing your setup and loading it anywhere\n" -#~ "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "" -#~ "- より多くのプリントプロファイルとプラグインを使用して作業をカスタマイズする\n" -#~ "- 設定を同期させ、どこにでも読み込めるようにすることで柔軟性を保つ\n" -#~ "- Ultimakerプリンターのリモートワークフローを活用して効率を高める" - -#~ msgctxt "@button" -#~ msgid "Create account" -#~ msgstr "アカウントを作成する" - -# can’t enter japanese text -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete Selected Model" -#~ msgid_plural "Delete Selected Models" -#~ msgstr[0] "&選択したモデルを削除" - -# can’t enter japanese text -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Center Selected Model" -#~ msgid_plural "Center Selected Models" -#~ msgstr[0] "選択したモデルを中央に移動" - -# can’t edit japanese text -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Multiply Selected Model" -#~ msgid_plural "Multiply Selected Models" -#~ msgstr[0] "選択した複数のモデル" - -#~ msgctxt "@button" -#~ msgid "Finish" -#~ msgstr "終わる" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Account" -#~ msgstr "Ultimakerアカウント" - -#~ msgctxt "@text" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "3Dプリンティング活用の鍵" - -#~ msgctxt "@text" -#~ msgid "- Customize your experience with more print profiles and plugins" -#~ msgstr "- より多くの成果物プロファイルとプラグインを使用して作業をカスタマイズする" - -#~ msgctxt "@text" -#~ msgid "- Stay flexible by syncing your setup and loading it anywhere" -#~ msgstr "- 設定を同期させ、どこにでも読み込めるようにすることで柔軟性を保つ" - -#~ msgctxt "@text" -#~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "- Ultimakerプリンターのリモートワークフローを活用して効率を高める" - -#~ msgctxt "@text" -#~ msgid "" -#~ "Please follow these steps to set up\n" -#~ "Ultimaker Cura. This will only take a few moments." -#~ msgstr "" -#~ "以下の手順で\n" -#~ "Ultimaker Cura を設定してください。数秒で完了します。" - -#~ msgctxt "@label" -#~ msgid "What's new in Ultimaker Cura" -#~ msgstr "Ultimaker Cura の新機能" - -#~ msgctxt "@label ({} is object name)" -#~ msgid "Are you sure you wish to remove {}? This cannot be undone!" -#~ msgstr "{}を取り除いてもよろしいですか?この操作は元に戻せません。" - -#~ msgctxt "@info:status" -#~ msgid "The selected model was too small to load." -#~ msgstr "選択したモデルは読み込むのに小さすぎます。" - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profile {0}" -#~ msgstr "プロファイル {0}の取り込み完了" - -#~ msgctxt "@info:status" -#~ msgid "Could not find a quality type {0} for the current configuration." -#~ msgstr "進行中のプリント構成にあったクオリティータイプ{0}が見つかりませんでした。" - -#~ msgctxt "info:status" -#~ msgid "Adding printer {} ({}) from your account" -#~ msgstr "アカウントからプリンター{}({})を追加しています" - -#~ msgctxt "info:hidden list items" -#~ msgid "
  • ... and {} others
  • " -#~ msgstr "
  • ...および{}その他
  • " - -#~ msgctxt "info:status" -#~ msgid "Printers added from Digital Factory:
      {}
    " -#~ msgstr "Digital Factoryからプリンターが追加されました:
      {}
    " - -#~ msgctxt "info:status" -#~ msgid "
      {}
    To establish a connection, please visit the Ultimaker Digital Factory." -#~ msgstr "
      {}
    接続を確立するには、Ultimaker Digital Factoryにアクセスしてください。" - -#~ msgctxt "@label ({} is printer name)" -#~ msgid "{} will be removed until the next account sync.
    To remove {} permanently, visit Ultimaker Digital Factory.

    Are you sure you want to remove {} temporarily?" -#~ msgstr "次回のアカウントの同期までに{}は削除されます。
    {}を完全に削除するには、Ultimaker Digital Factoryにアクセスします。

    {}を一時的に削除してもよろしいですか?" - -#~ msgctxt "@label" -#~ msgid "" -#~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n" -#~ "Are you sure you want to continue?" -#~ msgstr "" -#~ "Curaから{}台のプリンターを削除しようとしています。この操作は元に戻せません。\n" -#~ "続行してもよろしいですか?" - -#~ msgctxt "@label" -#~ 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" -#~ "続行してもよろしいですか?" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update" -#~ msgstr "アップデート" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Create new" -#~ msgstr "新しいものを作成する" - -#~ msgctxt "@label" -#~ msgid "Shared Heater" -#~ msgstr "共有ヒーター" - -#~ msgctxt "@info" -#~ msgid "The webcam is not available because you are monitoring a cloud printer." -#~ msgstr "クラウドプリンタをモニタリングしている場合は、ウェブカムを利用できません。" - -#~ msgctxt "@button" -#~ msgid "Ultimaker Digital Factory" -#~ msgstr "Ultimaker Digital Factory" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can Discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "一部のプロファイル設定がカスタマイズされています。\n" -#~ "これらの変更された設定をプロファイルの切り替え後も維持しますか?\n" -#~ "変更を破棄して'%1'からデフォルトの設定を読み込むこともできます。" - -#~ msgctxt "@label" -#~ msgid "Overrides %1 setting." -#~ msgid_plural "Overrides %1 settings." -#~ msgstr[0] "%1個の設定を上書きします。" - -#~ msgctxt "@text" -#~ msgid "Please give your printer a name" -#~ msgstr "プリンター名を入力してください" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." -#~ msgstr "{machine_name} で利用可能な新しい機能があります。プリンターのファームウェアをアップデートしてください。" - -#~ msgctxt "@action:button" -#~ msgid "Print via Cloud" -#~ msgstr "クラウドからプリントする" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print via Cloud" -#~ msgstr "クラウドからプリントする" - -#~ msgctxt "@info:status" -#~ msgid "Connected via Cloud" -#~ msgstr "クラウドを使って接続しました" - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud に接続する" - -#~ msgctxt "@label" -#~ msgid "You need to login first before you can rate" -#~ msgstr "評価する前にはログインが必要です" - -#~ msgctxt "@label" -#~ msgid "You need to install the package before you can rate" -#~ msgstr "評価する前にはパッケージをインストールする必要があります" - -#~ msgctxt "@label" -#~ msgid "ratings" -#~ msgstr "評価" - -#~ msgctxt "@label" -#~ msgid "Featured" -#~ msgstr "特長" - -#~ msgctxt "@label" -#~ msgid "Your rating" -#~ msgstr "ユーザー評価" - -#~ msgctxt "@label" -#~ msgid "Author" -#~ msgstr "著者" - -#~ msgctxt "@description" -#~ msgid "Get plugins and materials verified by Ultimaker" -#~ msgstr "Ultimakerによって検証されたプラグインや材料を入手する" - -#~ msgctxt "@label The argument is a username." -#~ msgid "Hi %1" -#~ msgstr "高 %1" - -#~ msgctxt "@button" -#~ msgid "Ultimaker account" -#~ msgstr "Ultimaker アカウント" - -#~ msgctxt "@button" -#~ msgid "Sign out" -#~ msgstr "サインアウト" - -#~ msgctxt "@label" -#~ msgid "Support library for analysis of complex networks" -#~ msgstr "複雑なネットワークを分析するためのライブラリーサポート" - -#~ msgctxt "@Label" -#~ msgid "Python HTTP library" -#~ msgstr "Python HTTPライブラリー" - -#~ msgctxt "@text:window" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to keep or discard those settings?" -#~ msgstr "プロファイル設定をカスタマイズしました。この設定をキープしますか、キャンセルしますか?" - -#~ msgctxt "@title:column" -#~ msgid "Default" -#~ msgstr "デフォルト" - -#~ msgctxt "@title:column" -#~ msgid "Customized" -#~ msgstr "カスタマイズ" - -#~ msgctxt "@action:button" -#~ msgid "Discard" -#~ msgstr "取り消す" - -#~ msgctxt "@action:button" -#~ msgid "Keep" -#~ msgstr "キープする" - -#~ msgctxt "@action:button" -#~ msgid "Create New Profile" -#~ msgstr "新しいプロファイルを作る" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "&Save..." -#~ msgstr "&保存..." - -#~ msgctxt "@text" -#~ msgid "Place enter your printer's IP address." -#~ msgstr "プリンターの IP アドレスを入力してください。" - -#~ msgctxt "@button" -#~ msgid "Create an account" -#~ msgstr "アカウント作成" - -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Do you want to sync material and software packages with your account?" -#~ msgstr "" -#~ "\n" -#~ "材料パッケージとソフトウェアパッケージをアカウントと同期しますか?" - -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Syncing..." -#~ msgstr "" -#~ "\n" -#~ "同期中..." - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder." -#~ msgstr "ビルドモジュールに合うモデルがない、または無効なエクストルーダーに割り当てられているため、スライスできるものがありません。モデルが合うように拡張または回転させるか、エクストルーダーを有効にしてください。" - -#~ msgctxt "@info:backup_status" -#~ msgid "There was an error listing your backups." -#~ msgstr "バックアップのリスト作成時にエラーが発生しました。" - -#~ msgctxt "@title:groupbox" -#~ msgid "User description (Note: Developers may not speak your language, please use English if possible)" -#~ msgstr "ユーザー説明 (注: 開発者はユーザーの言語を理解できない場合があるため、可能な限り英語を使用してください)" - -#~ msgctxt "@title:window" -#~ msgid "Closing Cura" -#~ msgstr "Cura を閉じる" - -#~ msgctxt "@label" -#~ msgid "Are you sure you want to exit Cura?" -#~ msgstr "Cura を終了しますか?" - -#~ msgctxt "@label" -#~ msgid "Language:" -#~ msgstr "言語:" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud" - -#~ msgctxt "@text" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "次世代 3D 印刷ワークフロー" - -#~ msgctxt "@text" -#~ msgid "- Send print jobs to Ultimaker printers outside your local network" -#~ msgstr "- 印刷ジョブをローカルネットワークの外から Ultimaker プリンターに送信します" - -#~ msgctxt "@text" -#~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere" -#~ msgstr "- Ultimaker Cura の設定をクラウドに保管してどこらでも利用でいるようにします" - -#~ msgctxt "@text" -#~ msgid "- Get exclusive access to print profiles from leading brands" -#~ msgstr "- 有名ブランドから材料プロファイルへの例外アクセスを取得します" - -#~ msgctxt "@label" -#~ msgid "The value is resolved from per-extruder values " -#~ msgstr "この値は各エクストルーダーの値から取得します " - -#~ msgctxt "@label" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "次世代 3D 印刷ワークフロー" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to print profiles from leading brands" -#~ msgstr "" -#~ "印刷ジョブをローカルネットワークの外の Ultimaker プリンタに送信します\n" -#~ "- Ultimaker Cura の設定をクラウドに保管してどこからでも利用できるようにします\n" -#~ "- 有名ブランドから印刷プロファイルへの例外アクセスを取得します" - -#~ msgctxt "@title:window" -#~ msgid "About " -#~ msgstr "バージョン情報 " - -#~ msgctxt "@info:button" -#~ msgid "Quit Cura" -#~ msgstr "Curaを終了する" - -#~ msgctxt "@action:checkbox" -#~ msgid "Infill only" -#~ msgstr "インフィルのみ" - -#~ msgctxt "@info:tooltip" -#~ msgid "Change active post-processing scripts" -#~ msgstr "処理したスクリプトを変更する" - -#~ msgctxt "@label:listbox" -#~ msgid "Feedrate" -#~ msgstr "送り速度" - -#~ msgctxt "name" -#~ msgid "Machine Settings action" -#~ msgstr "プリンターの設定アクション" - -#~ msgctxt "@info:title" -#~ msgid "New cloud printers found" -#~ msgstr "新しいクラウドプリンターが見つかりました" - -#~ msgctxt "@info:message" -#~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers." -#~ msgstr "アカウントに接続された新しいプリンターが見つかりました。検出されたプリンターのリストで確認できます。" - -#~ msgctxt "@info:status" -#~ msgid "Cura does not accurately display layers when Wire Printing is enabled" -#~ msgstr "Curaはワイヤープリンティング設定中には正確にレイヤーを表示しません" - -#~ msgctxt "@label" -#~ msgid "Pre-sliced file {0}" -#~ msgstr "スライス前ファイル {0}" - -#~ msgctxt "@label" -#~ msgid "" -#~ "This plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ "このプラグインにはライセンスが含まれています。\n" -#~ "このプラグインをインストールするにはこのライセンスに同意する必要があります。\n" -#~ "下の利用規約に同意しますか?" - -#~ msgctxt "@action:button" -#~ msgid "Accept" -#~ msgstr "承認する" - -#~ msgctxt "@action:button" -#~ msgid "Decline" -#~ msgstr "拒否する" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show All Settings" -#~ msgstr "すべての設定を表示" - -#~ msgctxt "@title:window" -#~ msgid "Ultimaker Cura" -#~ msgstr "Ultimaker Cura" - -#~ msgctxt "@title:window" -#~ msgid "About Cura" -#~ msgstr "Curaについて" - -#~ msgctxt "@item:inmenu" -#~ msgid "Flatten active settings" -#~ msgstr "アクティブ設定を平らにします" - -#~ msgctxt "@info:status" -#~ msgid "Profile has been flattened & activated." -#~ msgstr "プロファイルが平らになり、アクティベートされました。" - -#~ msgctxt "X3g Writer Plugin Description" -#~ msgid "Writes X3g to files" -#~ msgstr "X3Gをファイルに書き込む" - -#~ msgctxt "X3g Writer File Description" -#~ msgid "X3g File" -#~ msgstr "X3Gファイル" - -#~ msgctxt "X3G Writer File Description" -#~ msgid "X3G File" -#~ msgstr "X3Gファイル" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Open Compressed Triangle Mesh" -#~ msgstr "圧縮トライアングルメッシュを開く" - -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "プロファイルアシスタント" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "プロファイルアシスタント" - -#~ msgctxt "@action:button" -#~ msgid "Retry" -#~ msgstr "再試行" - -#~ msgctxt "@label:table_header" -#~ msgid "Print Core" -#~ msgstr "プリントコア" - -#~ msgctxt "@label" -#~ msgid "Don't support overlap with other models" -#~ msgstr "他のモデルとのオーバーラップは未サポート" - -#~ msgctxt "@label" -#~ msgid "Modify settings for overlap with other models" -#~ msgstr "他のモデルとのオーバーラップの設定を変更" - -#~ msgctxt "@label" -#~ msgid "Modify settings for infill of other models" -#~ msgstr "他のモデルのインフィルの設定を変更" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update existing" -#~ msgstr "現在のプロファイルに読み込む" - -#~ msgctxt "@label" -#~ msgid "Not supported" -#~ msgstr "サポート対象外" - -#~ msgctxt "@action:button" -#~ msgid "Previous" -#~ msgstr "前" - -#~ msgctxt "@label" -#~ msgid "Tip" -#~ msgstr "ヒント" - -#~ msgctxt "@label" -#~ msgid "Print experiment" -#~ msgstr "試し印刷" - -#~ msgctxt "@label" -#~ msgid "Checklist" -#~ msgstr "チェックリスト" - -#~ msgctxt "@label" -#~ msgid "Please select any upgrades made to this Ultimaker 2." -#~ msgstr "このUltimaker2に施したアップグレードを選択してください。" - -#~ msgctxt "@label" -#~ msgid "Olsson Block" -#~ msgstr "Olsson Block" - -#~ msgctxt "@window:text" -#~ msgid "Camera rendering: " -#~ msgstr "カメラレンダリング: " - -#~ msgctxt "@info:tooltip" -#~ msgid "Use multi build plate functionality" -#~ msgstr "マルチビルドプレート機能を使用" - -#~ msgctxt "@option:check" -#~ msgid "Use multi build plate functionality (restart required)" -#~ msgstr "マルチビルドプレート機能を使用 (再起動が必要)" - -#~ msgctxt "@label" -#~ msgid "Default profiles" -#~ msgstr "デフォルトプロファイル" - -#~ msgctxt "@label:textbox" -#~ msgid "search settings" -#~ msgstr "検索設定" - -#~ msgctxt "@label" -#~ msgid "Layer Height" -#~ msgstr "レイヤーの高さ" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile." -#~ msgstr "この品質プロファイルは、現在の材料およびノズル構成では使用できません。この品質プロファイルを有効にするには、これらを変更してください。" - -#~ msgctxt "@tooltip" -#~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" -#~ msgstr "カスタムプロファイルが有効になっています。品質スライダーを有効にするには、カスタムタブでデフォルトの品質プロファイルを選択してください" - -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "ビルドプレート (&B)" - -#~ msgctxt "@title:settings" -#~ msgid "&Profile" -#~ msgstr "&プロファイル" - -#~ msgctxt "@action:label" -#~ msgid "Build plate" -#~ msgstr "ビルドプレート" - -#~ msgctxt "description" -#~ msgid "Dump the contents of all settings to a HTML file." -#~ msgstr "HTMLファイルに設定内容を放置する。" - -#~ msgctxt "name" -#~ msgid "God Mode" -#~ msgstr "Godモード" - -#~ msgctxt "description" -#~ msgid "Create a flattened quality changes profile." -#~ msgstr "プロファイルを変更するフラットエンドクオリティーを作成する。" - -#~ msgctxt "name" -#~ msgid "Profile Flattener" -#~ msgstr "プロファイルフラッター" - -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "材料メーカーがドロップインUIを使用して新しい材料と品質のプロファイルを作成できるようにします。" - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "プリントプロファイルアシスタント" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network." -#~ msgstr "ネットワーク上で接続。" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. Please approve the access request on the printer." -#~ msgstr "ネットワーク上で接続。プリンタへのリクエストを承認してください。" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. No access to control the printer." -#~ msgstr "ネットワーク上で接続。プリントを操作するアクセス権がありません。" - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer requested. Please approve the request on the printer" -#~ msgstr "プリンターへのアクセスが申請されました。プリンタへのリクエストを承認してください" - -#~ msgctxt "@info:title" -#~ msgid "Authentication status" -#~ msgstr "認証ステータス" - -#~ msgctxt "@info:title" -#~ msgid "Authentication Status" -#~ msgstr "認証ステータス" - -#~ msgctxt "@info:tooltip" -#~ msgid "Re-send the access request" -#~ msgstr "アクセスリクエストを再送信" - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer accepted" -#~ msgstr "プリンターへのアクセスが承認されました" - -#~ msgctxt "@info:status" -#~ msgid "No access to print with this printer. Unable to send print job." -#~ msgstr "このプリンターへのアクセスが許可されていないため、プリントジョブの送信ができませんでした。" - -#~ msgctxt "@action:button" -#~ msgid "Request Access" -#~ msgstr "アクセスのリクエスト" - -#~ msgctxt "@info:tooltip" -#~ msgid "Send access request to the printer" -#~ msgstr "アクセスのリクエスト送信" - -#~ msgctxt "@label" -#~ msgid "Unable to start a new print job." -#~ msgstr "新しいプリントジョブを開始できません。" - -#~ msgctxt "@label" -#~ msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." -#~ msgstr "Ultimakerの設定に問題があるため、印刷が開始できません。問題を解消してからやり直してください。" - -#~ msgctxt "@window:title" -#~ msgid "Mismatched configuration" -#~ msgstr "ミスマッチの構成" - -#~ msgctxt "@label" -#~ msgid "Are you sure you wish to print with the selected configuration?" -#~ msgstr "選択された構成にてプリントを開始してもいいですか?" - -#~ msgctxt "@label" -#~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "プリンターの設定、キャリブレーションとCuraの構成にミスマッチがあります。プリンターに設置されたプリントコア及びフィラメントを元にCuraをスライスすることで最良の印刷結果を出すことができます。" - -#~ msgctxt "@info:status" -#~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." -#~ msgstr "新しいデータの送信 (temporarily) をブロックします、前のプリントジョブが送信中です。" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to printer" -#~ msgstr "プリンターにプリントデータを送信中" - -#~ msgctxt "@info:title" -#~ msgid "Sending Data" -#~ msgstr "プリントデータを送信中" - -#~ msgctxt "@info:status" -#~ msgid "No Printcore loaded in slot {slot_number}" -#~ msgstr "プリントコアがスロット{slot_number}に入っていません。" - -#~ msgctxt "@info:status" -#~ msgid "No material loaded in slot {slot_number}" -#~ msgstr "材料がスロット{slot_number}に入っていません。" - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" -#~ msgstr "エクストルーダー {extruder_id} に対して異なるプリントコア(Cura: {cura_printcore_name}, プリンター: {remote_printcore_name})が選択されています。" - -#~ msgctxt "@label" -#~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "異なるフィラメントが入っています(Cura:{0}, プリンター{1})エクストルーダー{2}" - -#~ msgctxt "@window:title" -#~ msgid "Sync with your printer" -#~ msgstr "プリンターと同期する" - -#~ msgctxt "@label" -#~ msgid "Would you like to use your current printer configuration in Cura?" -#~ msgstr "Curaで設定しているプリンタ構成を使用されますか?" - -#~ msgctxt "@label" -#~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "プリンターのプリントコア及びフィラメントが現在のプロジェクトと異なります。最善な印刷結果のために、プリンタに装着しているプリントコア、フィラメントに合わせてスライスして頂くことをお勧めします。" - -#~ msgctxt "@action:button" -#~ msgid "View in Monitor" -#~ msgstr "モニター表示" - -#~ msgctxt "@info:status" -#~ msgid "Printer '{printer_name}' has finished printing '{job_name}'." -#~ msgstr "プリンター’{printer_name}’が’{job_name}’のプリントを終了しました。" - -#~ msgctxt "@info:status" -#~ msgid "The print job '{job_name}' was finished." -#~ msgstr "プリントジョブ '{job_name}' は完了しました。" - -#~ msgctxt "@info:status" -#~ msgid "Print finished" -#~ msgstr "プリント終了" - -#~ msgctxt "@label:material" -#~ msgid "Empty" -#~ msgstr "空にする" - -#~ msgctxt "@label:material" -#~ msgid "Unknown" -#~ msgstr "不明" - -#~ msgctxt "@info:title" -#~ msgid "Cloud error" -#~ msgstr "クラウドエラー" - -#~ msgctxt "@info:status" -#~ msgid "Could not export print job." -#~ msgstr "印刷ジョブをエクスポートできませんでした。" - -#~ msgctxt "@info:description" -#~ msgid "There was an error connecting to the cloud." -#~ msgstr "クラウドの接続時にエラーが発生しました。" - -#~ msgctxt "@info:status" -#~ msgid "Uploading via Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud 経由でアップロード中" - -#~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud に接続する" - -#~ msgctxt "@action" -#~ msgid "Don't ask me again for this printer." -#~ msgstr "このプリンタでは次回から質問しない。" - -#~ msgctxt "@info:status" -#~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Ultimaker のアカウントを使用して、どこからでも印刷ジョブを送信およびモニターできるようになりました。" - -#~ msgctxt "@info:status" -#~ msgid "Connected!" -#~ msgstr "接続しました!" - -#~ msgctxt "@action" -#~ msgid "Review your connection" -#~ msgstr "接続の確認" - -#~ msgctxt "@info:status Don't translate the XML tags !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "プロファイル{0}の中で定義されているマシン({1})は、現在お使いのマシン({2})と一致しないため、インポートできませんでした。" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}:" -#~ msgstr "{0}からプロファイルの取り込に失敗しました:" - -#~ msgctxt "@window:title" -#~ msgid "Existing Connection" -#~ msgstr "既存の接続" - -#~ msgctxt "@message:text" -#~ msgid "This printer/group is already added to Cura. Please select another printer/group." -#~ msgstr "このプリンター/グループはすでにCuraに追加されています。別のプリンター/グループを選択しえください。" - -#~ msgctxt "@label" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "ネットワーク内のプリンターのIPアドレスまたはホストネームを入力してください。" - -#~ msgctxt "@info:tooltip" -#~ msgid "Connect to a printer" -#~ msgstr "プリンターにつなぐ" - -#~ msgctxt "@title" -#~ msgid "Cura Settings Guide" -#~ msgstr "Cura 設定ガイド" - -#~ msgctxt "@info:tooltip" -#~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective." -#~ msgstr "平行投影表示では、マウスの方向にズームする操作がサポートされていません。" - -#~ msgid "Orthogonal" -#~ msgstr "平行投影表示" - -#~ msgctxt "description" -#~ msgid "Manages network connections to Ultimaker 3 printers." -#~ msgstr "Ultimaker3のプリンターのネットワーク接続を管理する。" - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection" -#~ msgstr "UM3ネットワークコネクション" - -#~ msgctxt "description" -#~ msgid "Provides extra information and explanations about settings in Cura, with images and animations." -#~ msgstr "画像とアニメーションで、Cura の設定に関する追加情報と説明を提供します。" - -#~ msgctxt "name" -#~ msgid "Settings Guide" -#~ msgstr "設定ガイド" - -#~ msgctxt "@item:inmenu" -#~ msgid "Cura Settings Guide" -#~ msgstr "Cura 設定ガイド" - -#~ msgctxt "@info:generic" -#~ msgid "Settings have been changed to match the current availability of extruders: [%s]" -#~ msgstr "現在利用可能なエクストルーダー [%s] に合わせて設定が変更されました。" - -#~ msgctxt "@title:groupbox" -#~ msgid "User description" -#~ msgstr "ユーザー詳細" - -#~ msgctxt "@info" -#~ msgid "These options are not available because you are monitoring a cloud printer." -#~ msgstr "クラウドプリンタをモニタリングしている場合は、これらのオプションは利用できません。" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Go to Cura Connect" -#~ msgstr "Cura Connectに移動する" - -#~ msgctxt "@info" -#~ msgid "All jobs are printed." -#~ msgstr "すべてのジョブが印刷されます。" - -#~ msgctxt "@label link to connect manager" -#~ msgid "View print history" -#~ 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.\n" -#~ "\n" -#~ "Select your printer from the list below:" -#~ msgstr "" -#~ "ネットワーク接続にて直接プリントするためには、必ずケーブルまたはWifiネットワークにて繋がっていることを確認してください。Curaをプリンターに接続していない場合でも、USBメモリを使って直接プリンターにg-codeファイルをトランスファーできます。\n" -#~ "\n" -#~ "下のリストからプリンターを選択してください:" - -#~ 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." -#~ msgstr "" -#~ "プリンタが接続されていること確認してください:\n" -#~ "- プリンタの電源が入っていることを確認してください。\n" -#~ "- プリンタがネットワークに接続されているか確認してください。" - -#~ msgctxt "@option:check" -#~ msgid "See only current build plate" -#~ msgstr "現在のビルドプレートのみを表示" - -#~ msgctxt "@action:button" -#~ msgid "Arrange to all build plates" -#~ msgstr "すべてのビルドプレートに配置" - -#~ msgctxt "@action:button" -#~ msgid "Arrange current build plate" -#~ msgstr "現在のビルドプレートを配置" - -#~ msgctxt "description" -#~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)." -#~ msgstr "結果スライスをX3Gファイルとして保存して、このフォーマット(Malyan、Makerbot、およびその他のSailfishベースのプリンター)を読むプリンターをサポートできるようにします。" - -#~ msgctxt "name" -#~ msgid "X3GWriter" -#~ msgstr "X3GWriter" - -#~ msgctxt "description" -#~ msgid "Reads SVG files as toolpaths, for debugging printer movements." -#~ msgstr "プリンターの動きをデバッグするためのツールパスとして SVG ファイルを読み込みます。" - -#~ msgctxt "name" -#~ msgid "SVG Toolpath Reader" -#~ msgstr "SVG ツールパスリーダー" - -#~ msgctxt "@item:inmenu" -#~ msgid "Changelog" -#~ msgstr "Changelog" - -#~ msgctxt "@item:inmenu" -#~ msgid "Show Changelog" -#~ msgstr "Changelogの表示" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to remote cluster" -#~ msgstr "リモートクラスタにデータ送信中" - -#~ msgctxt "@info:status" -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud に接続する" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymized usage statistics." -#~ msgstr "Curaは、匿名化した利用統計を収集します。" - -#~ msgctxt "@info:title" -#~ msgid "Collecting Data" -#~ msgstr "データを収集中" - -#~ msgctxt "@action:button" -#~ msgid "More info" -#~ msgstr "詳細" - -#~ msgctxt "@action:tooltip" -#~ msgid "See more information on what data Cura sends." -#~ msgstr "Curaが送信するデータについて詳しくご覧ください。" - -#~ msgctxt "@action:button" -#~ msgid "Allow" -#~ msgstr "許可" - -#~ msgctxt "@action:tooltip" -#~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." -#~ msgstr "Curaが匿名化した利用統計を送信することを許可し、Curaの将来の改善を優先的に行うことに貢献します。プレファレンスと設定の一部、Curaのバージョン、スライスしているモデルのハッシュが送信されます。" - -#~ msgctxt "@item:inmenu" -#~ msgid "Evaluation" -#~ msgstr "評価" - -#~ msgctxt "@info:title" -#~ msgid "Network enabled printers" -#~ msgstr "ネットワーク対応プリンター" - -#~ msgctxt "@info:title" -#~ msgid "Local printers" -#~ msgstr "ローカルプリンター" - -#~ msgctxt "@info:backup_failed" -#~ msgid "Tried to restore a Cura backup that does not match your current version." -#~ msgstr "現行バージョンと一致しないCuraバックアップをリストアしようとしました。" - -#~ msgctxt "@title" -#~ msgid "Machine Settings" -#~ msgstr "プリンターの設定" - -#~ msgctxt "@label" -#~ msgid "Printer Settings" -#~ msgstr "プリンターの設定" - -#~ msgctxt "@option:check" -#~ msgid "Origin at center" -#~ msgstr "センターを出します" - -#~ msgctxt "@option:check" -#~ msgid "Heated bed" -#~ msgstr "ヒーテッドドベッド" - -#~ msgctxt "@label" -#~ msgid "Printhead Settings" -#~ msgstr "プリントヘッド設定" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "プリントヘッド左側からノズルの中心までの距離。印刷時に前の造形物とプリントヘッドとの衝突を避けるために “1プリントづつ”印刷を使用。" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "プリントヘッド前部からノズルの中心までの距離。印刷時に前の造形物とプリントヘッドとの衝突を避けるために “1プリントづつ”印刷を使用。" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "プリントヘッド右側からノズルの中心までの距離。印刷時に前の造形物とプリントヘッドとの衝突を避けるために “1プリントづつ”印刷を使用。" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "プリントヘッド後部からノズルの中心までの距離。印刷時に前の造形物とプリントヘッドとの衝突を避けるために “1プリントづつ”印刷を使用。" - -#~ msgctxt "@label" -#~ msgid "Gantry height" -#~ msgstr "ガントリーの高さ" - -#~ msgctxt "@tooltip" -#~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." -#~ msgstr "(X 軸及びY軸)ノズルの先端とガントリーシステムの高さに相違があります。印刷時に前の造形物とプリントヘッドとの衝突を避けるために “1プリントづつ”印刷を使用。" - -#~ msgctxt "@label" -#~ msgid "Start G-code" -#~ msgstr "G-Codeの開始" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very start." -#~ msgstr "G-codeコマンドが最初に実行されるようにします。" - -#~ msgctxt "@label" -#~ msgid "End G-code" -#~ msgstr "G-codeの終了" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very end." -#~ msgstr "G-codeコマンドが最後に実行されるようにします。" - -#~ msgctxt "@label" -#~ msgid "Nozzle Settings" -#~ msgstr "ノズル設定" - -#~ msgctxt "@tooltip" -#~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." -#~ msgstr "プリンターに対応したフィラメントの直径。正確な直径はフィラメント及びまたはプロファイルに変動します。" - -#~ msgctxt "@label" -#~ msgid "Extruder Start G-code" -#~ msgstr "エクストルーダーがG-Codeを開始する" - -#~ msgctxt "@label" -#~ msgid "Extruder End G-code" -#~ msgstr "エクストルーダーがG-Codeを終了する" - -#~ msgctxt "@label" -#~ msgid "Changelog" -#~ msgstr "Changelogの表示" - -#~ msgctxt "@title:window" -#~ msgid "User Agreement" -#~ msgstr "ユーザー用使用許諾契約" - -#~ msgctxt "@alabel" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "ネットワーク内のプリンターのIPアドレスまたはホストネームを入力してください。" - -#~ msgctxt "@info" -#~ msgid "Please select a network connected printer to monitor." -#~ msgstr "モニターするプリンタが接続されているネットワークを選択してください。" - -#~ msgctxt "@info" -#~ msgid "Please connect your Ultimaker printer to your local network." -#~ msgstr "Ultimaker プリンタをローカルネットワークに接続してください。" - -#~ msgctxt "@text:window" -#~ msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent." -#~ msgstr "Curaは印刷の品質とユーザー体験を向上させるために匿名のデータをUltimakerに送信します。以下は送信される全テータの例です。" - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send this data" -#~ msgstr "このデータは送信しない" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending this data to Ultimaker and help us improve Cura" -#~ msgstr "Ultimakerへのデータ送信を許可し、Curaの改善を手助けする" - -#~ msgctxt "@label" -#~ msgid "No print selected" -#~ msgstr "プリンタが選択されていません" - -#~ msgctxt "@info:tooltip" -#~ 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 "@title" -#~ msgid "Select Printer Upgrades" -#~ msgstr "プリンターアップグレードを選択する" - -#~ msgctxt "@label" -#~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "サポートに使うエクストルーダーを選択してください。モデルの垂れや中空プリントを避けるためにモデルの下にサポート構造を生成します。" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "この品質プロファイルは現在の材料およびノズル構成では使用できません。この品質プロファイルを使用できるように変更してください" - -#~ msgctxt "@label shown when we load a Gcode file" -#~ msgid "Print setup disabled. G code file can not be modified." -#~ msgstr "印刷の設定を無効にしました。G コードファイルは変更できません。" - -#~ msgctxt "@label" -#~ msgid "See the material compatibility chart" -#~ msgstr "材料の適合性チャートをご覧ください" - -#~ msgctxt "@label" -#~ msgid "View types" -#~ msgstr "タイプ表示" - -#~ msgctxt "@label" -#~ msgid "Hi " -#~ msgstr "こんにちわ " - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to material profiles from leading brands" -#~ msgstr "" -#~ "- 印刷ジョブをローカルネットワークの外の Ultimaker プリンタに送信します\n" -#~ "- Ultimaker Cura の設定をクラウドに保管してどこからでも利用できるようにします\n" -#~ "- 有名ブランドから材料プロファイルへの例外アクセスを取得します" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Unable to Slice" -#~ msgstr "スライスできません" - -#~ msgctxt "@label" -#~ msgid "Time specification" -#~ msgstr "時間仕様" - -#~ msgctxt "@label" -#~ msgid "Material specification" -#~ msgstr "材料仕様" - -#~ msgctxt "@title:tab" -#~ msgid "Add a printer to Cura" -#~ msgstr "プリンターを Cura に追加" - -#~ msgctxt "@title:tab" -#~ msgid "" -#~ "Select the printer you want to use from the list below.\n" -#~ "\n" -#~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog." -#~ msgstr "" -#~ "下のリストから使用するプリンターを選択します。\n" -#~ "\n" -#~ "プリンターがリストにない場合は、「カスタム」カテゴリの「カスタムFFFプリンター」を使用して、次のダイアログでプリンターに合う設定に調整します。" - -#~ msgctxt "@label" -#~ msgid "Printer Name" -#~ msgstr "プリンター名" - -#~ msgctxt "@action:button" -#~ msgid "Add Printer" -#~ msgstr "プリンターについて" - -#~ msgid "Modify G-Code" -#~ msgstr "G-codeを修正" - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." -#~ msgstr "モデルのデータがビルトボリュームに入っていないためスライスできるものがありません。スケールやローテーションにて合うように設定してください。" - -#~ msgctxt "@info:status" -#~ msgid "The selected material is incompatible with the selected machine or configuration." -#~ msgstr "選択されたフィラメントはプリンターとそのプリント構成に適応しておりません。" - -#~ msgctxt "@info:title" -#~ msgid "Incompatible Material" -#~ msgstr "不適合フィラメント" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "{0}: {1}からプロファイルを取り込むことに失敗しました" - -#~ msgctxt "@title" -#~ msgid "Toolbox" -#~ msgstr "ツールボックス" - -#~ msgctxt "@label" -#~ msgid "Not available" -#~ msgstr "利用できません" - -#~ msgctxt "@label" -#~ msgid "Unreachable" -#~ msgstr "到達不能" - -#~ msgctxt "@label" -#~ msgid "Available" -#~ msgstr "利用可能" - -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "準備中" - -#~ msgctxt "@label:status" -#~ msgid "Pausing" -#~ msgstr "一時停止中" - -#~ msgctxt "@label:status" -#~ msgid "Resuming" -#~ msgstr "再開" - -#~ msgctxt "@label" -#~ msgid "Waiting for: Unavailable printer" -#~ msgstr "待ち時間: 利用できないプリンター" - -#~ msgctxt "@label" -#~ msgid "Waiting for: First available" -#~ msgstr "待ち時間: 次の空き" - -#~ msgctxt "@label" -#~ msgid "Waiting for: " -#~ msgstr "待ち時間: " - -#~ msgctxt "@label" -#~ msgid "Configuration change" -#~ msgstr "構成の変更" - -#~ msgctxt "@label" -#~ msgid "The assigned printer, %1, requires the following configuration change(s):" -#~ msgstr "割り当てられたプリンター %1 には以下の構成変更が必要です。" - -#~ msgctxt "@label" -#~ msgid "Override" -#~ msgstr "上書き" - -#~ msgctxt "@label" -#~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?" -#~ msgstr "互換性のない構成で印刷ジョブを開始すると3Dプリンターを損傷することがあります。構成と印刷 %1 を上書きしますか?" - -#~ msgctxt "@window:title" -#~ msgid "Override configuration configuration and start print" -#~ msgstr "構成を上書きしてから印刷を開始" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage queue" -#~ msgstr "キュー管理" - -#~ msgctxt "@label" -#~ msgid "Printing" -#~ msgstr "プリント中" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage printers" -#~ msgstr "プリンター管理" - -#~ msgctxt "@action:button" -#~ msgid "Activate Configuration" -#~ msgstr "プリント構成をアクティベートする" - -#~ msgctxt "@info:tooltip" -#~ msgid "Load the configuration of the printer into Cura" -#~ msgstr "プリンターの構成をCuraに取り入れる" - -#~ msgctxt "@label" -#~ msgid "Show Travels" -#~ msgstr "移動を表示する" - -#~ msgctxt "@label" -#~ msgid "Show Helpers" -#~ msgstr "ヘルプを表示する" - -#~ msgctxt "@label" -#~ msgid "Show Shell" -#~ msgstr "シェルを表示する" - -#~ msgctxt "@label" -#~ msgid "Show Infill" -#~ msgstr "インフィルを表示する" - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send these data" -#~ msgstr "そのようなデータは送信しない" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending these data to Ultimaker and help us improve Cura" -#~ msgstr "Ultimakerへのデータ送信を許可し、Curaの改善を手助けする" - -#~ msgctxt "@label" -#~ msgid "Printer type:" -#~ msgstr "プリンタータイプ:" - -#~ msgctxt "@label" -#~ msgid "Connection:" -#~ msgstr "コネクション:" - -#~ msgctxt "@label" -#~ msgid "State:" -#~ msgstr "ステート:" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for a printjob" -#~ msgstr "プリントジョブの待機中" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for someone to clear the build plate" -#~ msgstr "ビルドプレートの掃除を待つ" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Aborting print..." -#~ msgstr "プリントを停止します…" - -#~ msgctxt "@label" -#~ msgid "Protected profiles" -#~ msgstr "保護されたプロファイル" - -#~ msgctxt "@label" -#~ msgid "Printer Name:" -#~ msgstr "プリンター名:" - -#~ msgctxt "@label" -#~ msgid "Profile:" -#~ msgstr "プロファイル:" - -#~ msgctxt "@label:textbox" -#~ msgid "Search..." -#~ msgstr "検索…" - -#~ msgctxt "@action:inmenu" -#~ msgid "Collapse All" -#~ msgstr "すべて折りたたむ" - -#~ msgctxt "@action:inmenu" -#~ msgid "Expand All" -#~ msgstr "すべて展開する" - -#~ msgctxt "@label:header configurations" -#~ msgid "Available configurations" -#~ msgstr "利用可能な構成" - -#~ msgctxt "@label:extruder label" -#~ msgid "Extruder" -#~ msgstr "エクストルーダー" - -#~ msgctxt "@label:extruder label" -#~ msgid "Yes" -#~ msgstr "はい" - -#~ msgctxt "@label:extruder label" -#~ msgid "No" -#~ msgstr "いいえ" - -#~ msgctxt "@label:listbox" -#~ msgid "Print Setup" -#~ msgstr "プリントセットアップ" - -#~ msgctxt "@label:listbox" -#~ msgid "" -#~ "Print Setup disabled\n" -#~ "G-code files cannot be modified" -#~ msgstr "" -#~ "プリントセットアップが無効\n" -#~ "G-codeファイルを修正することができません" - -#~ msgctxt "@label Hours and minutes" -#~ msgid "00h 00min" -#~ msgstr "00時間 00分" - -#~ msgctxt "@tooltip" -#~ msgid "Time specification" -#~ msgstr "時間仕様" - -#~ msgctxt "@label" -#~ msgid "Cost specification" -#~ msgstr "コスト仕様" - -#~ msgctxt "@label" -#~ msgid "Total:" -#~ msgstr "合計:" - -#~ msgctxt "@tooltip" -#~ msgid "Recommended Print Setup

    Print with the recommended settings for the selected printer, material and quality." -#~ msgstr "おすすめプリントセットアップ

    選択されたプリンターにておすすめの設定、フィラメント、質にてプリントしてください。" - -#~ msgctxt "@tooltip" -#~ msgid "Custom Print Setup

    Print with finegrained control over every last bit of the slicing process." -#~ msgstr "カスタムプリントセットアップ

    スライス処理のきめ細かなコントロールにてプリントする。" - -#~ msgctxt "@action:inmenu menubar:help" -#~ msgid "Show Engine &Log..." -#~ msgstr "エンジン&ログを表示する…" - -#~ msgctxt "@action:menu" -#~ msgid "Browse packages..." -#~ msgstr "パッケージを見る…" - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "Expand/Collapse Sidebar" -#~ msgstr "サイドバーを展開する/たたむ" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3D model" -#~ msgstr "3Dモデルをロードしてください" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Ready to slice" -#~ msgstr "スライスの準備ができました" - -#~ msgctxt "@label:PrintjobStatus %1 is target operation" -#~ msgid "Ready to %1" -#~ msgstr "%1の準備完了" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Slicing unavailable" -#~ msgstr "スライスが利用不可能" - -#~ msgctxt "@info:tooltip" -#~ msgid "Slice current printjob" -#~ msgstr "現在のプリントジョブをスライスします" - -#~ msgctxt "@info:tooltip" -#~ msgid "Cancel slicing process" -#~ msgstr "スライスプロセスをキャンセルします" - -#~ msgctxt "@label:Printjob" -#~ msgid "Prepare" -#~ msgstr "準備する" - -#~ msgctxt "@label:Printjob" -#~ msgid "Cancel" -#~ msgstr "キャンセル" - -#~ msgctxt "@info:tooltip" -#~ msgid "Select the active output device" -#~ msgstr "アクティブなアウトプットデバイスを選択する" - -#~ msgctxt "@title:menu" -#~ msgid "&View" -#~ msgstr "&ビュー" - -#~ msgctxt "@title:menu" -#~ msgid "&Settings" -#~ msgstr "&設定" - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "&Toolbox" -#~ msgstr "&ツールボックス" - -#~ msgctxt "@action:button" -#~ msgid "Open File" -#~ msgstr "ファイルを開く" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "この品質プロファイルは現在の材料およびノズル構成では使用できません。この品質プロファイルを使用できるように変更してください" - -#~ msgctxt "@label" -#~ msgid "Print Speed" -#~ msgstr "プリントスピード" - -#~ msgctxt "@label" -#~ msgid "Slower" -#~ msgstr "ゆっくり" - -#~ msgctxt "@label" -#~ msgid "Faster" -#~ msgstr "早く" - -#~ msgctxt "@label" -#~ msgid "Enable gradual" -#~ msgstr "グラデュアルを有効にする" - -#~ msgctxt "@label" -#~ msgid "Generate Support" -#~ msgstr "サポートを生成します" - -#~ msgctxt "@label" -#~ msgid "Build Plate Adhesion" -#~ msgstr "ビルドプレートの接着" - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints?
    Read the Ultimaker Troubleshooting Guides" -#~ msgstr "プリントにヘルプが必要ですか?
    Ultimakerトラブルシューティングガイドを読んでください" - -#~ msgctxt "@title:window" -#~ msgid "Engine Log" -#~ msgstr "エンジンログ" - -#~ msgctxt "@label" -#~ msgid "Printer type" -#~ msgstr "プリンタータイプ" - -#~ msgctxt "@label" -#~ msgid "Use glue with this material combination" -#~ msgstr "この材料の組み合わせで接着する" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "互換性の確認" - -#~ msgctxt "@tooltip" -#~ msgid "Click to check the material compatibility on Ultimaker.com." -#~ msgstr "Ultimaker.comにてマテリアルのコンパティビリティを調べるためにクリック。" - -#~ msgctxt "description" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "最新の更新バージョンの変更点を表示する。" - -#~ msgctxt "name" -#~ msgid "Changelog" -#~ msgstr "Changelog" - -#~ msgctxt "description" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "プロファイルを変更するフラットエンドクオリティーを作成する。" - -#~ msgctxt "name" -#~ msgid "Profile flatener" -#~ msgstr "プロファイルフラットナー" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license." -#~ msgstr "ライセンスに同意するかどうかユーザーに1回だけ確認する。" - -#~ msgctxt "name" -#~ msgid "UserAgreement" -#~ msgstr "UserAgreement" - -#~ msgctxt "@warning:status" -#~ msgid "Please generate G-code before saving." -#~ msgstr "保存する前に G-code を生成してください。" - -#~ msgctxt "@action" -#~ msgid "Upgrade Firmware" -#~ msgstr "ファームウェアをアップグレード" - -#~ msgctxt "@label unknown material" -#~ msgid "Unknown" -#~ msgstr "不明" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "No custom profile to import in file {0}" -#~ msgstr "ファイル{0}にはカスタムプロファイルがインポートされていません" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "This profile {0} contains incorrect data, could not import it." -#~ msgstr "このプロファイル{0}には、正しくないデータが含まれていて、インポートできません。" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "プロファイル{0}の中で定義されているマシン({1})は、現在お使いのマシン({2})と一致しませんので、インポートできませんでした。" - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall " -#~ msgstr "アンインストール確認 " - -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - -#~ msgctxt "@title" -#~ msgid "Upgrade Firmware" -#~ msgstr "ファームウェアをアップグレード" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Doodle3D WiFi-Boxでプリントする" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Doodle3D WiFi-Boxでプリント" - -#~ msgctxt "@info:status" -#~ msgid "Connecting to Doodle3D Connect" -#~ msgstr "Doodle3D Connectに接続する" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to Doodle3D Connect" -#~ msgstr "Doodle3D Connectにデータを送信" - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -#~ msgstr "Doodle3D Connectにデータを送れませんでした。他のジョブはまだアクティブですか?" - -#~ msgctxt "@info:status" -#~ msgid "Storing data on Doodle3D Connect" -#~ msgstr "Doodle3D Connectにデータを保存" - -#~ msgctxt "@info:status" -#~ msgid "File sent to Doodle3D Connect" -#~ msgstr "Doodle3D Connectにファイル送信完了" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect..." -#~ msgstr "Connectを開いています..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Open the Doodle3D Connect web interface" -#~ msgstr "Doodle3D Connect web interfaceを開く" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Blender file" -#~ msgstr "Blenderファイル" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Could not export using \"{}\" quality!\n" -#~ "Felt back to \"{}\"." -#~ msgstr "" -#~ "\"{}\"品質を使用したエクスポートができませんでした!\n" -#~ "\"{}\"になりました。" - -#~ msgctxt "@label" -#~ msgid "Contact" -#~ msgstr "連絡" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." -#~ msgstr "Ultimaker3のグループをホストするために設定されていません。" - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -#~ msgstr "このプリンターはUltimaker3 %1グループのホストプリンターです。" - -#~ msgctxt "@label: arg 1 is group name" -#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "%1は、繋がっているUltimaker3プリンターのグループをホストするために設定されていません。" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Add/Remove printers" -#~ msgstr "プリンターの追加/削除" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "デフォルトのウェブブラウザで印刷ジョブページを開きます。" - -#~ msgctxt "@action:button" -#~ msgid "View print jobs" -#~ msgstr "プリントジョブを見る" - -#~ msgctxt "@label:status" -#~ msgid "Preparing to print" -#~ msgstr "印刷の準備をする" - -#~ msgctxt "@label:status" -#~ msgid "Available" -#~ msgstr "利用可能" - -#~ msgctxt "@label:status" -#~ msgid "Lost connection with the printer" -#~ msgstr "プリンターへの接続が切断されました。" - -#~ msgctxt "@label:status" -#~ msgid "Unknown" -#~ msgstr "不明" - -#~ msgctxt "@label:status" -#~ msgid "Disabled" -#~ msgstr "無効" - -#~ msgctxt "@label:status" -#~ msgid "Reserved" -#~ msgstr "予約済み" - -#~ msgctxt "@label" -#~ msgid "Preparing to print" -#~ msgstr "プリントの準備をする" - -#~ msgctxt "@label:status" -#~ msgid "Print aborted" -#~ msgstr "プリント中止" - -#~ msgctxt "@label" -#~ msgid "Not accepting print jobs" -#~ msgstr "プリントデータを確認できない" - -#~ msgctxt "@label" -#~ msgid "Finishes at: " -#~ msgstr "この層で終了します:" - -#~ msgctxt "@label" -#~ msgid "Clear build plate" -#~ msgstr "ビルドプレートをクリアにする" - -#~ msgctxt "@label" -#~ msgid "Waiting for configuration change" -#~ msgstr "プリント構成の変更を待っている" - -#~ msgctxt "@title" -#~ msgid "Print jobs" -#~ msgstr "プリントジョブ" - -#~ msgctxt "@label:title" -#~ msgid "Printers" -#~ msgstr "複数のプリンター" - -#~ msgctxt "@action:button" -#~ msgid "View printers" -#~ msgstr "複数のプリンターをみる" - -#~ msgctxt "@label:" -#~ msgid "Pause" -#~ msgstr "一時停止" - -#~ msgctxt "@label:" -#~ msgid "Resume" -#~ msgstr "再開" - -#~ msgctxt "@label:" -#~ msgid "Abort Print" -#~ msgstr "プリント中止" - -#~ msgctxt "@option:openProject" -#~ msgid "Always ask" -#~ msgstr "いつもお尋ねください。" - -#~ msgctxt "@label" -#~ msgid "Override Profile" -#~ msgstr "プロファイルを無効にする" - -#~ msgctxt "@info:tooltip" -#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -#~ msgstr "新たにロードしたモデルをビルドプレート上に配置すべきですか? マルチビルドプレートと共に使用 (実験的)" - -#~ msgctxt "@option:check" -#~ msgid "Do not arrange objects on load" -#~ msgstr "ロード時にオブジェクトを配置しません" - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Save Selection to File" -#~ msgstr "フ&ァイルに選択したものを保存" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &As..." -#~ msgstr "名前をつけて保存" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &Project..." -#~ msgstr "プロジェクトの保存 (&P)..." - -#~ msgctxt "@label" -#~ msgid "Use adhesion sheet or glue with this material combination" -#~ msgstr "密着性シートを使用する、またはこの材料の組み合わせで接着する" - -#~ msgctxt "description" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "G-codeを承認し、Doodle3D WiFi-ボックスにWifi上にて送る" - -#~ msgctxt "name" -#~ msgid "Doodle3D WiFi-Box" -#~ msgstr "Doodle3D WiFi-Box" - -#~ msgctxt "description" -#~ msgid "Provides an edit window for direct script editing." -#~ msgstr "直接スクリプト編集のための編集ウィンドウを提供します。" - -#~ msgctxt "name" -#~ msgid "Live scripting tool" -#~ msgstr "ライブスクリプティングツール" - -#~ msgctxt "description" -#~ msgid "Helps to open Blender files directly in Cura." -#~ msgstr "Curaの中で直接Blenderファイルを開くために役立ちます。" - -#~ msgctxt "name" -#~ msgid "Blender Integration (experimental)" -#~ msgstr "Blender統合 (実験的)" - -#~ msgctxt "@info:title" -#~ msgid "Model Checker Warning" -#~ msgstr "モデルチェッカー警告" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n" -#~ "Tips that may be useful to improve the print quality:\n" -#~ "1) Use rounded corners.\n" -#~ "2) Turn the fan off (only if there are no tiny details on the model).\n" -#~ "3) Use a different material." -#~ msgstr "" -#~ "オブジェクトサイズや選択した材料などにより一部のモデルが印刷されないことがあります: {model_names}.\n" -#~ "印刷の品質を高める便利なヒント:\n" -#~ "1) 縁を丸くする\n" -#~ "2) ファンを切る(モデルに詳細がない場合のみ)\n" -#~ "3) 異なる材料を使う" - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "ソリッドワークスがファイルを開く際にエラーを報告しました。ソリッドワークス内で問題を解決することをお勧めします。" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ "Thanks!" -#~ msgstr "" -#~ "図面の中にモデルが見つかりません。中身を確認し、パートかアセンブリーが中に入っていることを確認してください。\n" -#~ "\n" -#~ " 再確認をお願いします。" - -#~ 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" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "図面の中にパートかアセンブリーが2個以上見つかりました。今のところ、本製品はパートかアセンブリーが1個の図面のみに対応しています。\n" -#~ "\n" -#~ "申し訳ありません。" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks part file" -#~ msgstr "ソリッドワークスパートファイル" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks assembly file" -#~ msgstr "ソリッドワークスアセンブリーファイル" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks drawing file" -#~ msgstr "ソリッドワークス図面ファイル" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "お客様へ\n" -#~ "システム上に正規のソリッドワークスがインストールされていません。つまり、ソリッドワークスがインストールされていないか、有効なライセンスが存在しません。ソリッドワークスだけを問題なく使用できるようになっているか確認するか、自社のIT部門にご相談ください。\n" -#~ "\n" -#~ "お願いいたします。\n" -#~ " - Thomas Karl Pietrowski" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "お客様へ\n" -#~ "このプラグインは現在Windows以外のOSで実行されています。このプラグインは、ソリッドワークスがインストールされたWindowsでしか動作しません。有効なライセンスも必要です。ソリッドワークスがインストールされたWindowsマシンにこのプラグインをインストールしてください。\n" -#~ "\n" -#~ "お願いいたします。\n" -#~ " - Thomas Karl Pietrowski" - -#~ msgid "Configure" -#~ msgstr "構成" - -#~ msgid "Installation guide for SolidWorks macro" -#~ msgstr "ソリッドワークス・マクロのインストールガイド" - -#~ msgctxt "@action:button" -#~ msgid "Disable" -#~ msgstr "無効化" - -#~ msgctxt "@action:tooltip" -#~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences." -#~ msgstr "Curaが匿名化した利用統計を送信することを許可しません。プレファレンスで許可に変更することができます。" - -#~ msgid "Install" -#~ msgstr "インストール" - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory." -#~ msgstr "Siemens NXプラグインファイルのコピーに失敗しました。UGII_USER_DIRを確認してください。ディレクトリに割り当てられていません。" - -#~ msgid "Successfully installed Siemens NX Cura plugin." -#~ msgstr "Siemens NX Curaプラグインを正常にインストールしました。" - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR." -#~ msgstr "Siemens NXプラグインファイルのコピーに失敗しました。UGII_USER_DIRを確認してください。" - -#~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX." -#~ msgstr "Siemens NXプラグインのインストールに失敗しました。Siemens NX用の環境変数UGII_USER_DIRが設定できませんでした。" - -#~ msgctxt "@info:status" -#~ msgid "Failed to get plugin ID from {0}" -#~ msgstr "{0}からプラグインIDを取得することに失敗しました。" - -#~ msgctxt "@info:tile" -#~ msgid "Warning" -#~ msgstr "警告" - -#~ msgctxt "@window:title" -#~ msgid "Plugin browser" -#~ msgstr "プラグインブラウザー" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks: Export wizard" -#~ msgstr "ソリッドワークス: エクスポートウィザード" - -#~ msgctxt "@action:label" -#~ msgid "Quality:" -#~ msgstr "品質: " - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (3D-printing)" -#~ msgstr "精細 (3Dプリント)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (3D-printing)" -#~ msgstr "大まか (3Dプリント)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (SolidWorks)" -#~ msgstr "精細 (ソリッドワークス)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (SolidWorks)" -#~ msgstr "大まか (ソリッドワークス)" - -#~ msgctxt "@text:window" -#~ msgid "Show this dialog again" -#~ msgstr "このダイアログを再度表示する" - -#~ msgctxt "@action:button" -#~ msgid "Continue" -#~ msgstr "続行" - -#~ msgctxt "@action:button" -#~ msgid "Abort" -#~ msgstr "中断" - -#~ msgctxt "@title:window" -#~ msgid "How to install Cura SolidWorks macro" -#~ msgstr "Curaソリッドワークス・マクロのインストール方法" - -#~ msgctxt "@description:label" -#~ msgid "Steps:" -#~ msgstr "ステップ: " - -#~ msgctxt "@action:button" -#~ msgid "" -#~ "Open the directory\n" -#~ "with macro and icon" -#~ msgstr "" -#~ "ディレクトリーを開きます\n" -#~ "(マクロとアイコンで)" - -#~ msgctxt "@description:label" -#~ msgid "Instructions:" -#~ msgstr "指示: " - -#~ msgctxt "@action:playpause" -#~ msgid "Play" -#~ msgstr "実行" - -#~ msgctxt "@action:playpause" -#~ msgid "Pause" -#~ msgstr "一時停止" - -#~ msgctxt "@action:button" -#~ msgid "Previous Step" -#~ msgstr "前のステップ" - -#~ msgctxt "@action:button" -#~ msgid "Done" -#~ msgstr "完了" - -#~ msgctxt "@action:button" -#~ msgid "Next Step" -#~ msgstr "次のステップ" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks plugin: Configuration" -#~ msgstr "ソリッドワークスプラグイン: コンフィグレーション" - -#~ msgctxt "@title:tab" -#~ msgid "Conversion settings" -#~ msgstr "変換設定" - -#~ msgctxt "@label" -#~ msgid "First choice:" -#~ msgstr "最初の選択: " - -#~ msgctxt "@text:menu" -#~ msgid "Latest installed version (Recommended)" -#~ msgstr "インストールされている最新バージョン (推奨)" - -#~ msgctxt "@text:menu" -#~ msgid "Default version" -#~ msgstr "デフォルトバージョン" - -#~ msgctxt "@label" -#~ msgid "Show wizard before opening SolidWorks files" -#~ msgstr "ソリッドワークスのファイルを開く前にウィザードを表示" - -#~ msgctxt "@label" -#~ msgid "Automatically rotate opened file into normed orientation" -#~ msgstr "開いたファイルを自動的に正規の向きに回転" - -#~ msgctxt "@title:tab" -#~ msgid "Installation(s)" -#~ msgstr "インストール" - -#~ msgctxt "@label" -#~ msgid "COM service found" -#~ msgstr "COMサービスが存在" - -#~ msgctxt "@label" -#~ msgid "Executable found" -#~ msgstr "実行ファイルが存在" - -#~ msgctxt "@label" -#~ msgid "COM starting" -#~ msgstr "COM開始" - -#~ msgctxt "@label" -#~ msgid "Revision number" -#~ msgstr "改訂番号" - -#~ msgctxt "@label" -#~ msgid "Functions available" -#~ msgstr "利用可能な関数" - -#~ msgctxt "@label (%1 is object name)" -#~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?" -#~ msgstr "新しい材料の直径は %1 mm に設定されています。これは現在のマシンに適応していません。続行しますか?" - -#~ msgctxt "@action:menu" -#~ msgid "Browse plugins..." -#~ msgstr "プラグインをみる" - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "P&lugins" -#~ msgstr "プラグイン" - -#~ msgctxt "@window:title" -#~ msgid "Install Plugin" -#~ msgstr "プラグインをインストール" - -#~ msgctxt "description" -#~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)" -#~ msgstr "プリンターの設定を変更(印刷ボリューム、ノズルサイズ、その他)" - -#~ msgctxt "description" -#~ msgid "Manages network connections to Ultimaker 3 printers" -#~ msgstr "Ultimaker3のプリンターのネットワーク接続を管理する。" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations." -#~ msgstr "ソリッドワークス自体を使って特定のファイルを開くことが可能です。変換はこのプラグインによって行われ、追加の最適化も行われます。" - -#~ msgctxt "name" -#~ msgid "SolidWorks Integration" -#~ msgstr "ソリッドワークスインタグレーション" - -#~ msgctxt "description" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "変更後プリンターやプロファイルプレファレンスを自動的に保存します、" - -#~ msgctxt "name" -#~ msgid "Auto Save" -#~ msgstr "自動保存" - -#~ msgctxt "description" -#~ msgid "Helps you to install an 'export to Cura' button in Siemens NX." -#~ msgstr "Siemens NXの「Curaにエクスポート」ボタンをインストールできるようにします。" - -#~ msgctxt "name" -#~ msgid "Siemens NX Integration" -#~ msgstr "Siemens NX Integration" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new plugins." -#~ msgstr "探す、新しいプラグインを管理、インストール" - -#~ msgctxt "name" -#~ msgid "Plugin Browser" -#~ msgstr "プラグインブラウザー" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license" -#~ msgstr "ライセンスに同意するかどうかユーザーに1回だけ確認する" - -#~ msgctxt "description" -#~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)" -#~ msgstr "Ultimakerのプリンターのアクションを供給する(ベッドレベリングウィザード、アップグレードの選択、他)" - -#~ msgctxt "@item:inlistbox" -#~ msgid "GCode File" -#~ msgstr "GCodeファイル" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer is busy or not connected." -#~ msgstr "新しいプリントジョブをはじめることができません。プリンターが使用中または接続できていません。" - -#~ msgctxt "@info:title" -#~ msgid "Printer Unavailable" -#~ msgstr "プリンターが利用できません" - -#~ msgctxt "@info:status" -#~ msgid "This printer does not support USB printing because it uses UltiGCode flavor." -#~ msgstr "UltiGCodeを使用中のため、USBからのプリントができません。" - -#~ msgctxt "@info:title" -#~ msgid "USB Printing" -#~ msgstr "USBプリント" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer does not support usb printing." -#~ msgstr "USBでの印刷ができないため、新しいプリントジョブができません。" - -#~ msgctxt "@info" -#~ msgid "Unable to update firmware because there are no printers connected." -#~ msgstr "プリンターが未接続のため、ファームウェアをアップデートできません。" - -#~ msgctxt "@info" -#~ msgid "Could not find firmware required for the printer at %s." -#~ msgstr "プリンター(%s)に必要なファームウェアを探せませんでした。" - -#~ msgctxt "@info:title" -#~ msgid "Printer Firmware" -#~ msgstr "ファームウェア" - -#~ msgctxt "@info:title" -#~ msgid "Connection status" -#~ msgstr "コネクションのステータス" - -#~ msgctxt "@info:title" -#~ msgid "Connection Status" -#~ msgstr "コネクションステータス" - -#~ msgctxt "@info:status" -#~ msgid "Access request was denied on the printer." -#~ msgstr "プリンターへのアクセス権" - -#~ msgctxt "@info:status" -#~ msgid "Access request failed due to a timeout." -#~ msgstr "時間制限によりアクセスが却下されました。" - -#~ msgctxt "@info:status" -#~ msgid "The connection with the network was lost." -#~ msgstr "ネットワークへの接続が切断されました。" - -#~ msgctxt "@info:status" -#~ msgid "The connection with the printer was lost. Check your printer to see if it is connected." -#~ msgstr "ネットワークへの接続が切断されました。プリンターの接続状態を確認ください。" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s." -#~ msgstr "プリンターが利用中です。新しいプリントジョブを開始することができませんでした。現在のプリンターのステータスは%sです。" - -#~ msgctxt "@info:title" -#~ msgid "Printer Status" -#~ msgstr "プリンターのステータス" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}" -#~ msgstr "プリントコアがスロット{0}に入っていません。プリントジョブを開始できません。" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No material loaded in slot {0}" -#~ msgstr "フィラメントがスロット{0}に入っていません。プリントジョブを開始できません。" - -#~ msgctxt "@label" -#~ msgid "Not enough material for spool {0}." -#~ msgstr "フィラメント{0}の残量が足りません。" - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "異なるプリントコアが入っています(Cura:{0}, プリンター{1})エクストルーダー{2}" - -#~ msgctxt "@label" -#~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "プリントコア{0}が適切にキャリブレーションできていません。XYキャリブレーションをプリンターで行ってください。" - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to printer. Is another job still active?" -#~ msgstr "データをプリンターに送ることができません。他のプリントジョブは進行中ですか?" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Print aborted. Please check the printer" -#~ msgstr "プリントを中止しました。プリンターを確認してください。" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Pausing print..." -#~ msgstr "プリントを一時停止します…" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Resuming print..." -#~ msgstr "プリント再開します…" - -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "このプリンターは、繋がっているUltimaker3プリンターをホストするために設定されていません。" - -#~ msgctxt "Count is number of printers." -#~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers." -#~ msgstr "このプリンターは{count}繋がっているUltimaker3プリンターのグループのホストプリンターです。" - -#~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate." -#~ msgstr "{printer_name}は ‘{job_name}’印刷を終了しました。造形物を確認し、ビルドプレートから取り出してください。" - -#~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing." -#~ msgstr "{printer_name} は '{job_name}'.を印刷予定です。印刷を開始するためにジョブに合わせた構成に変更してください。" - -#~ msgctxt "@info:status" -#~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "新しいプリントジョブをお送りできません。この3Dプリンターは繋がっているUltimaker3のグループをホストするために設定されていません。" - -#~ msgctxt "@info:status" -#~ msgid "Unable to send print job to group {cluster_name}." -#~ msgstr "プリントジョブをグループに送ることができません。{cluster_name}." - -#~ msgctxt "@info:status" -#~ msgid "Sent {file_name} to group {cluster_name}." -#~ msgstr "グループに送信完了{file_name} {cluster_name}." - -#~ msgctxt "@action:button" -#~ msgid "Show print jobs" -#~ msgstr "プリントジョブを見る" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs interface in your browser." -#~ msgstr "プリントジョブのインターフェイスをブラウザーで開く" - -#~ msgctxt "@label Printer name" -#~ msgid "Unknown" -#~ msgstr "不明" - -#~ msgctxt "@info:progress" -#~ msgid "Sending {file_name} to group {cluster_name}" -#~ msgstr "グループに送信中{file_name} {cluster_name}" - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "ソリッドワークスがファイルを開く際にエラーを報告しました。ソリッドワークス内で問題を解決することをお勧めします。" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ " Thanks!." -#~ msgstr "" -#~ "図面の中にモデルが見つかりません。中身を確認し、パートかアセンブリーが中に入っていることを確認してください。\n" -#~ "\n" -#~ " 再確認をお願いします。" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "図面の中にパートかアセンブリーが2個以上見つかりました。今のところ、本製品はパートかアセンブリーが1個の図面のみに対応しています。\n" -#~ "\n" -#~ "申し訳ありません。" - -#~ msgctxt "@item:material" -#~ msgid "No material loaded" -#~ msgstr "フィラメントがロードされていません。" - -#~ msgctxt "@item:material" -#~ msgid "Unknown material" -#~ msgstr "未確認のフィラメント" - -#~ msgctxt "@info:status Has a cancel button next to it." -#~ msgid "The selected material diameter causes the material to become incompatible with the current printer." -#~ msgstr "選択したフィラメントの直径が、現在選択中のプリンターに適応していません。" - -#~ msgctxt "@action:button" -#~ msgid "Undo" -#~ msgstr "取り消す" - -#~ msgctxt "@action" -#~ msgid "Undo changing the material diameter." -#~ msgstr "フィラメント直径を変更を取り消す" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} doesn't match with your current machine, could not import it." -#~ msgstr "プロファイル{0}の中で定義されているマシンは、現在お使いのマシンと一致しませんので、インポートできませんでした。" - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal error has occurred. 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" -#~ "

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

    \n" -#~ " " - -#~ msgctxt "@label" -#~ msgid "not yet initialised
    " -#~ msgstr "初期化されていません
    " - -#~ msgctxt "@label" -#~ msgid "Gcode flavor" -#~ msgstr "Gcodeフレーバー" - -#~ msgctxt "@label" -#~ msgid "Start Gcode" -#~ msgstr "G-codeをスタートします。" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very start." -#~ msgstr "G-codeが最初に起動するようにします。" - -#~ msgctxt "@label" -#~ msgid "End Gcode" -#~ msgstr "G-codeを終了" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very end." -#~ msgstr "G-codeが最後にに起動するようにします。" - -#~ msgctxt "@label" -#~ msgid "Extruder Start Gcode" -#~ msgstr "エクストルーダーがGcodeを開始します。" - -#~ msgctxt "@label" -#~ msgid "Extruder End Gcode" -#~ msgstr "エクストルーダーがGcodeを終了します。" - -#~ msgctxt "@label" -#~ msgid "Starting firmware update, this may take a while." -#~ msgstr "ファームウェアアップデートを開始します、時間が少しかかるかもしれません。" - -#~ msgctxt "@label" -#~ msgid "Unknown error code: %1" -#~ msgstr "不特定エラーコード: %1" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@label Printer status" -#~ msgid "Unknown" -#~ msgstr "不明" - -#~ msgctxt "@title:window" -#~ msgid "Find & Update plugins" -#~ msgstr "探す&アップデートプラグイン" - -#~ msgctxt "@label" -#~ msgid "Here you can find a list of Third Party plugins." -#~ msgstr "サードパーティのプラグインのリストをここで見つけることができます。" - -#~ msgctxt "@action:button" -#~ msgid "Upgrade" -#~ msgstr "アップグレード" - -#~ msgctxt "@action:button" -#~ msgid "Download" -#~ msgstr "ダウンロード" - -#~ msgctxt "@info:tooltip" -#~ msgid "Show caution message in gcode reader." -#~ msgstr "gcodeリーダーに注意メッセージを表示する" - -#~ msgctxt "@option:check" -#~ msgid "Caution message in gcode reader" -#~ msgstr "gcodeリーダーの注意メッセージ" - -#~ msgctxt "@window:title" -#~ msgid "Import Profile" -#~ msgstr "プロファイルを取り込む" - -#~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name" -#~ msgid "Printer: %1, %2: %3" -#~ msgstr "プリンター: %1, %2: %3" - -#~ msgctxt "@action:label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "プリンター:%1" - -#~ msgctxt "@label" -#~ msgid "GCode generator" -#~ msgstr "Gcodeジェネレーター" - -#~ msgctxt "@action:menu" -#~ msgid "Configure setting visiblity..." -#~ msgstr "視野のセッティングを構成する" - -#~ msgctxt "@title:menuitem %1 is the automatically selected material" -#~ msgid "Automatic: %1" -#~ msgstr "自動選択: %1" - -#~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer" -#~ msgid "Automatic: %1" -#~ msgstr "自動選択: %1" - -#~ msgctxt "@info:status" -#~ msgid "No printer connected" -#~ msgstr "接続中のプリンターはありません。" - -#~ msgctxt "@tooltip" -#~ msgid "The current temperature of this extruder." -#~ msgstr "現在のエクストルーダーの温度" - -#~ msgctxt "@action:menu" -#~ msgid "Installed plugins..." -#~ msgstr "インストールされたプラグイン" - -#~ msgctxt "@label" -#~ msgid "Support Extruder" -#~ msgstr "サポートエクストルーダー" - -#~ msgctxt "description" -#~ msgid "Writes GCode to a file." -#~ msgstr "ファイルにGCodeを書く" - -#~ msgctxt "name" -#~ msgid "GCode Writer" -#~ msgstr "GCodeライター" - -#~ msgctxt "name" -#~ msgid "GCode Profile Reader" -#~ msgstr "GCodeプロファイルリーダー" - -#~ msgctxt "@info:status" -#~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" -#~ msgstr "ソリッドワークスのファイルを開く際にエラーが発生しました!ソリッドワークスで、問題なく開くことができるか確認してください。" - -#~ msgctxt "@info:status" -#~ msgid "Error while starting %s!" -#~ msgstr "%sを開始中にエラーが発生" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Simulation view" +#~ msgid "Simulation View" #~ msgstr "シミュレーションビュー" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences." -#~ msgstr "Curaが非特定なスライスされた数字を集めました。プレファレンス内で無効にできます。" - -#~ msgctxt "@menuitem" -#~ msgid "Global" -#~ msgstr "グローバル" - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal exception has occurred. 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" -#~ "

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

    \n" -#~ " " - -#~ msgctxt "@label Cura version" -#~ msgid "Cura version: {version}
    " -#~ msgstr "Curaバージョン: {version}
    " - -#~ msgctxt "@label Platform" -#~ msgid "Platform: {platform}
    " -#~ msgstr "プラットフォーム: {platform}
    " - -#~ msgctxt "@label Qt version" -#~ msgid "Qt version: {qt}
    " -#~ msgstr "Qtバージョン: {qt}
    " - -#~ msgctxt "@label PyQt version" -#~ msgid "PyQt version: {pyqt}
    " -#~ msgstr "PyQtバージョン: {pyqt}
    " - -#~ msgctxt "@label OpenGL" -#~ msgid "OpenGL: {opengl}
    " -#~ msgstr "OpenGL: {opengl}
    " - -#~ msgctxt "@title:groupbox" -#~ msgid "Exception traceback" -#~ msgstr "例外トレースバック" - -#~ msgctxt "@label" -#~ msgid "Material diameter" -#~ msgstr "フィラメント直径" - -#~ msgctxt "@title:window" -#~ msgid "Cura SolidWorks Plugin Configuration" -#~ msgstr "Curaソリッドワークスプラグインコンフィグレーション" - -#~ msgctxt "@action:label" -#~ msgid "Default quality of the exported STL:" -#~ msgstr "書き出されたSTLのクオリティーデフォルト" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always ask" -#~ msgstr "毎回確認" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Fine quality" -#~ msgstr "常にファインクオリティーを使用する" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Coarse quality" -#~ msgstr "常に粗めのクオリティーを使用する" - -#~ msgctxt "@title:window" -#~ msgid "Import SolidWorks File as STL..." -#~ msgstr "ソリッドワークスのファイルをSTLとして取り込む" - -#~ msgctxt "@info:tooltip" -#~ msgid "Quality of the Exported STL" -#~ msgstr "書き出されたSTLのクオリティー" - -#~ msgctxt "@action:label" -#~ msgid "Quality" -#~ msgstr "クオリティー" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse" -#~ msgstr "粗い" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine" -#~ msgstr "ファイン" - -#~ msgctxt "@" -#~ msgid "No Profile Available" -#~ msgstr "利用可能なプロファイルがありません" - -#~ msgctxt "@label" -#~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders" -#~ msgstr "この設定は常に全てのエクストルーダーに共有されています。ここですべてのエクストルーダーの数値を変更できます。" - -#~ msgctxt "@tooltip" -#~ msgid "Time specification
    " -#~ msgstr "時間仕様
    " - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Reset camera position" -#~ msgstr "&カメラ位置のリセット" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save project" -#~ msgstr "プロジェクトを保存" - -#~ msgctxt "@title:tab" -#~ msgid "Prepare" -#~ msgstr "準備する" - -#~ msgctxt "@title:tab" -#~ msgid "Monitor" -#~ msgstr "モニター" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "互換性の確認" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura" -#~ msgstr "ソリッドワークスにて特定のファイルを開くことが可能です。その後変換され、Curaに取り込めます。" - -#~ msgctxt "@label:status" -#~ msgid "Blocked" -#~ msgstr "ブロックされました" - -#~ msgctxt "@label:status" -#~ msgid "Can't start print" -#~ msgstr "プリントを開始できません。" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect.." -#~ msgstr "Connect..を開く" - -#~ msgctxt "@info:title" -#~ msgid "Print Details" -#~ msgstr "プリント詳細" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB." -#~ msgstr "{machine_name}が最新の機能を得るために、定期的にファームウェアをアップデートすることをお勧めします。{machine_name}(ネットワーク上で接続)またはUSBにて行ってください。 " - -#~ msgctxt "@info:title" -#~ msgid "Layer View" -#~ msgstr "レイヤービュー" - -#~ msgctxt "@menuitem" -#~ msgid "Browse plugins" -#~ msgstr "プラグインを見る" - -#~ msgctxt "@info:title" -#~ msgid "Export Details" -#~ msgstr "詳細を書き出す" - -#~ msgctxt "@label" -#~ msgid "" -#~ "

    A fatal exception has occurred that we could not recover from!

    \n" -#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " -#~ msgstr "" -#~ "

    不可解なエラーが発生しリカバリーできませんでした。

    \n" -#~ "

    この情報をバグとして報告してください。 http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " - -#~ msgctxt "@action:button" -#~ msgid "Open Web Page" -#~ msgstr "ウェブページを開く" - -#~ msgctxt "@action:button" -#~ msgid "Ok" -#~ msgstr "OK" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "このプリンターは、繋がっているUltimaker3プリンターをホストするために設定されていません。" - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" -#~ msgstr "このプリンターは繋がっているUltimaker3プリンターの%1グループのホストです。" - -#~ msgctxt "@label" -#~ msgid "Completed on: " -#~ msgstr "完了:" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "デフォルトのウェブブラウザーにてプリントジョブを開く" - -#~ msgctxt "@label" -#~ msgid "PRINTER GROUP" -#~ msgstr "プリンターグループ" - -#~ msgctxt "@action:warning" -#~ msgid "Loading a project will clear all models on the buildplate" -#~ msgstr "プロジェクトを入れることでビルド上のモデルがすべて消滅します。" - -#~ msgctxt "@label" -#~ msgid "" -#~ " plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ "プラグインがライセンスを保持しています。\n" -#~ "このライセンスを承認しプラグインをインストールしてください。\n" -#~ "下記項目に賛成しますか?" - -#~ msgctxt "@label" -#~ msgid "00h 00min" -#~ msgstr "00h 00min" - -#~ msgctxt "@tooltip" -#~ msgid "Time information" -#~ msgstr "Time information" - -#~ msgctxt "@description" -#~ msgid "Print time" -#~ msgstr "プリント時間" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1分 / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1分/ ~ %2g" - -#~ msgctxt "@title:window" -#~ msgid "Cura" -#~ msgstr "Cura" - -#~ msgctxt "@label" -#~ msgid "Check material compatibility" -#~ msgstr "マテリアルのコンパティビリティを確認" - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection (Cluster)" -#~ msgstr "UM3 ネットワークコネクション(クラスター)" - -#~ msgctxt "description" -#~ msgid "Provides the Layer view." -#~ msgstr "レイヤービューを供給する" - -#~ msgctxt "name" -#~ msgid "Layer View" -#~ msgstr "レイヤービュー" diff --git a/resources/i18n/ja_JP/fdmextruder.def.json.po b/resources/i18n/ja_JP/fdmextruder.def.json.po index 5f8f0457aa..45ec9b039b 100644 --- a/resources/i18n/ja_JP/fdmextruder.def.json.po +++ b/resources/i18n/ja_JP/fdmextruder.def.json.po @@ -1,12 +1,9 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-08 09:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -15,6 +12,96 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: fdmextruder.def.json +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "密着性" + +#: fdmextruder.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。" + +#: fdmextruder.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "ビルドプレート密着性" + +#: fdmextruder.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直径" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "このエクストルーダーから切り替えた時に G-Code の終了を実行します。" + +#: fdmextruder.def.json +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "エクストルーダー" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code label" +msgid "Extruder End G-Code" +msgstr "エクストルーダーがG-Codeを終了する" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_abs label" +msgid "Extruder End Position Absolute" +msgstr "エクストルーダーのエンドポジションの絶対値" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x label" +msgid "Extruder End Position X" +msgstr "エクストルーダーエンド位置X" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y label" +msgid "Extruder End Position Y" +msgstr "エクストルーダーエンド位置Y" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "エクストルーダープライムX位置" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "エクストルーダープライムY位置" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "エクストルーダーのZ座標" + +#: fdmextruder.def.json +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "エクストルーダープリント冷却ファン" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_code label" +msgid "Extruder Start G-Code" +msgstr "エクストルーダーがG-Codeを開始する" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_abs label" +msgid "Extruder Start Position Absolute" +msgstr "エクストルーダーのスタート位置の絶対値" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "エクストルーダー スタート位置X" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "エクストルーダースタート位置Y" + #: fdmextruder.def.json msgctxt "machine_settings label" msgid "Machine" @@ -26,69 +113,9 @@ msgid "Machine specific settings" msgstr "プリンター詳細設定" #: fdmextruder.def.json -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "エクストルーダー" - -#: fdmextruder.def.json -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "エクストルーダーの列。デュアルノズル印刷時に使用。" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ノズルID" - -#: fdmextruder.def.json -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。" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "ノズル内径" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x label" -msgid "Nozzle X Offset" -msgstr "Xノズルオフセット" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "ノズルのX軸のオフセット。" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "Yノズルオフセット" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "ノズルのY軸のオフセット。" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code label" -msgid "Extruder Start G-Code" -msgstr "エクストルーダーがG-Codeを開始する" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "このエクストルーダーに切り替えた時に G-Code の開始を実行します。" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_abs label" -msgid "Extruder Start 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 "ヘッドの既存の認識位置よりもエクストルーダーの最終位置を絶対位置とする。" #: fdmextruder.def.json msgctxt "machine_extruder_start_pos_abs description" @@ -96,114 +123,9 @@ msgid "Make the extruder starting position absolute rather than relative to the msgstr "ヘッドの最後の既知位置からではなく、エクストルーダーのスタート位置を絶対位置にします。" #: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "エクストルーダー スタート位置X" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "エクストルーダーのX座標のスタート位置。" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "エクストルーダースタート位置Y" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "エクストルーダーのY座標のスタート位置。" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code label" -msgid "Extruder End G-Code" -msgstr "エクストルーダーがG-Codeを終了する" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "このエクストルーダーから切り替えた時に G-Code の終了を実行します。" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_abs label" -msgid "Extruder End Position Absolute" -msgstr "エクストルーダーのエンドポジションの絶対値" - -#: fdmextruder.def.json -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 "ヘッドの既存の認識位置よりもエクストルーダーの最終位置を絶対位置とする。" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x label" -msgid "Extruder End Position X" -msgstr "エクストルーダーエンド位置X" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "エクストルーダーを切った際のX座標の最終位置。" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y label" -msgid "Extruder End Position Y" -msgstr "エクストルーダーエンド位置Y" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "エクストルーダーを切った際のY座標の最終位置。" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "エクストルーダーのZ座標" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "印刷開始時にノズルがポジションを確認するZ座標。" - -#: fdmextruder.def.json -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "エクストルーダープリント冷却ファン" - -#: fdmextruder.def.json -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(ゼロ)です。各エクストルーダーに対してプリント冷却ファンが異なる場合にのみ変更します。" - -#: fdmextruder.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "ビルドプレート密着性" - -#: fdmextruder.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "密着性" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "エクストルーダープライムX位置" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "プリント開始時のノズルの位置を表すX座標。" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "エクストルーダープライムY位置" - -#: fdmextruder.def.json -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 "material description" +msgid "Material" +msgstr "マテリアル" #: fdmextruder.def.json msgctxt "material label" @@ -211,24 +133,91 @@ msgid "Material" msgstr "マテリアル" #: fdmextruder.def.json -msgctxt "material description" -msgid "Material" -msgstr "マテリアル" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "ノズル内径" #: fdmextruder.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "直径" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ノズルID" #: fdmextruder.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。" +msgctxt "machine_nozzle_offset_x label" +msgid "Nozzle X Offset" +msgstr "Xノズルオフセット" -#~ msgctxt "machine_extruder_start_code description" -#~ msgid "Start g-code to execute whenever turning the extruder on." -#~ msgstr "エクストルーダーを使う度にGコードを展開します。" +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "Yノズルオフセット" -#~ msgctxt "machine_extruder_end_code description" -#~ msgid "End g-code to execute whenever turning the extruder off." -#~ msgstr "エクストルーダーを使用しないときにGコードを終了します。" +#: fdmextruder.def.json +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "このエクストルーダーに切り替えた時に G-Code の開始を実行します。" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時のノズルの位置を表すX座標。" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時にノズル位置を表すY座標。" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "印刷開始時にノズルがポジションを確認するZ座標。" + +#: fdmextruder.def.json +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "エクストルーダーの列。デュアルノズル印刷時に使用。" + +#: fdmextruder.def.json +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。" + +#: fdmextruder.def.json +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。" + +#: fdmextruder.def.json +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(ゼロ)です。各エクストルーダーに対してプリント冷却ファンが異なる場合にのみ変更します。" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "エクストルーダーを切った際のX座標の最終位置。" + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "ノズルのX軸のオフセット。" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "エクストルーダーのX座標のスタート位置。" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "エクストルーダーを切った際のY座標の最終位置。" + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "ノズルのY軸のオフセット。" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "エクストルーダーのY座標のスタート位置。" diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index d50a3a49ba..80bd5f6400 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -1,12 +1,9 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-28 11:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -16,1499 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: fdmprinter.def.json -msgctxt "machine_settings label" -msgid "Machine" -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 "モデルの端からの距離。端までアイロンをすると、端が荒れる場合があります。" #: fdmprinter.def.json -msgctxt "machine_settings description" -msgid "Machine specific settings" -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 "フィーダーとノズルチャンバーの間でフィラメントが圧縮される量を示す係数。フィラメントスイッチの材料を移動する距離を決めるために使用されます。" #: fdmprinter.def.json -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "プリンターのタイプ" - -#: fdmprinter.def.json -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "3Dプリンターの機種名。" - -#: fdmprinter.def.json -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "プリンターのバリエーションの表示" - -#: fdmprinter.def.json -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "このプリンターのバリエーションを表示するかどうかは、別のjsonファイルに記述されています。" - -#: fdmprinter.def.json -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "G-Codeの開始" - -#: fdmprinter.def.json -msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." -msgstr "" -"最初に実行するG-codeコマンドは、\n" -"で区切ります。" - -#: fdmprinter.def.json -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "G-codeの終了" - -#: fdmprinter.def.json -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." -msgstr "" -"最後に実行するG-codeコマンドは、\n" -"で区切ります。" - -#: fdmprinter.def.json -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "マテリアルGUID" - -#: fdmprinter.def.json -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "マテリアルのGUID。これは自動的に設定されます。" - -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "直径" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。" - -#: fdmprinter.def.json -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "ビルドプレート加熱待ち時間" - -#: fdmprinter.def.json -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 "開始時にビルドプレートが温度に達するまで待つコマンドを挿入するかどうか。" - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "ノズル加熱待ち時間" - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "開始時にノズルの温度が達するまで待つかどうか。" - -#: fdmprinter.def.json -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "マテリアル温度を含む" - -#: fdmprinter.def.json -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フロントエンドは自動的にこの設定を無効にします。" - -#: fdmprinter.def.json -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "ビルドプレート温度を含む" - -#: fdmprinter.def.json -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フロントエンドは自動的にこの設定を無効にします。" - -#: fdmprinter.def.json -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "プリンターの幅" - -#: fdmprinter.def.json -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "造形可能領域の幅(X方向)。" - -#: fdmprinter.def.json -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "プリンターの奥行" - -#: fdmprinter.def.json -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "造形可能領域の幅(Y方向)。" - -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "プリンターの高さ" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "造形可能領域の幅(Z方向)。" - -#: fdmprinter.def.json -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "ビルドプレートの形状" - -#: fdmprinter.def.json -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "造形不可領域を考慮しないビルドプレートの形状。" - -#: fdmprinter.def.json -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "長方形" - -#: fdmprinter.def.json -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "楕円形" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "ビルドプレートの材料" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "プリンターに取り付けられているビルドプレートの材料です。" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "ガラス" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "アルミニウム" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "加熱式ビルドプレートあり" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "プリンターに加熱式ビルドプレートが付属しているかどうか。" - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "造形温度安定化処理有り" - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "機器が造形温度を安定化処理できるかどうかです。" - -#: fdmprinter.def.json -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "常にアクティブなツールを書き込む" - -#: fdmprinter.def.json -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またはその他のモーダルツールコマンドを使用するファームウェアを使用したデュアルエクストルーダープリントに必要です。" - -#: fdmprinter.def.json -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "中心位置" - -#: fdmprinter.def.json -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座標が印刷可能領域の中心にあるかどうか。" - -#: fdmprinter.def.json -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "エクストルーダーの数" - -#: fdmprinter.def.json -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "エクストルーダーの数。エクストルーダーの単位は、フィーダー、ボーデンチューブ、およびノズルを組合せたもの。" - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "有効なエクストルーダーの数" - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "有効なエクストルーダートレインの数(ソフトウェアが自動設定)" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "ノズル外径" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "ノズルの外径。" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "ノズル長さ" - -#: fdmprinter.def.json -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 "ノズル先端とプリントヘッドの最下部との高さの差。" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "ノズル角度" - -#: fdmprinter.def.json -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 "水平面とノズル直上の円錐部分との間の角度。" - -#: fdmprinter.def.json -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "ノズル加熱長さ" - -#: fdmprinter.def.json -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 "ノズルからの熱がフィラメントに伝達される距離。" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "ノズルの温度管理を有効にする" - -#: fdmprinter.def.json -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外からノズル温度を制御することで無効化。" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "加熱速度" - -#: fdmprinter.def.json -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)は、通常の印刷時温度とスタンバイ時温度にて平均化されています。" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "冷却速度" - -#: fdmprinter.def.json -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)は、通常の印刷温度とスタンバイ温度のウィンドウにわたって平均化されています。" - -#: fdmprinter.def.json -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "スタンバイ温度までの最短時間" - -#: fdmprinter.def.json -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 "ノズルが冷却される前にエクストルーダーが静止しなければならない最短時間。この時間より長時間エクストルーダーを使用しない場合にのみ、スタンバイ温度に冷却することができます。" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "G-codeフレーバー" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "生成するG-codeの種類です。" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumetric)" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -#: fdmprinter.def.json -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "ファームウェア引き戻し" - -#: fdmprinter.def.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) を使用するかどうか。" - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "エクストルーダーのヒーター共有" - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "各エクストルーダーが独自のヒーターを持つのではなく、単一のヒーターを共有するかどうか。" - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "エクストルーダーの共有ノズル" - -#: fdmprinter.def.json -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」パラメーターによってエクストルーダーごとに規定されます。" - -#: fdmprinter.def.json -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "共有ノズルの初期引き戻し" - -#: fdmprinter.def.json -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スクリプト完了時に、各エクストルーダーのフィラメントが共有ノズルの先端部分から引き戻されていると想定される量。この値は、ノズルのダクトの共通部分の長さ以上にする必要があります。" - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "拒否エリア" - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "プリントヘッドの領域を持つポリゴンのリストは入力できません。" - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "ノズル拒否エリア" - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "ノズルが入ることができない領域を持つポリゴンのリスト。" - -#: fdmprinter.def.json -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "プリントヘッドとファンポリゴン" - -#: fdmprinter.def.json -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 "プリントヘッドの形状。これらはプリントヘッドの位置を基準とした座標です。プリントヘッドの位置は通常、その最初のエクストルーダーの位置です。プリントヘッドの左側と手前側の寸法は、負の座標である必要があります。" - -#: fdmprinter.def.json -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "ガントリーの高さ" - -#: fdmprinter.def.json -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軸)。" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ノズルID" - -#: fdmprinter.def.json -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。" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "ノズル内径" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。" - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "エクストルーダーのオフセット" - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "エクストルーダーのオフセットを座標システムに適用します。すべてのエクストルーダーが影響を受けます。" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "エクストルーダーのZ座標" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "印刷開始時にノズルがポジションを確認するZ座標。" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "エクストルーダーの絶対位置" - -#: fdmprinter.def.json -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 "最後のヘッドの既知位置からではなく、エクストルーダー現在位置を絶対位置にします。" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "最大速度X" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "X方向のモーターの最大速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "最大速度Y" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Y方向のモーターの最大速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "最大速度Z" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Z方向のモーターの最大速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "最大速度E" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "フィラメントの最大速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "最大加速度X" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "X方向のモーターの最大速度" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "最大加速度Y" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Y方向のモーターの最大加速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "最大加速度Z" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Z方向のモーターの最大加速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "フィラメント最大加速度" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "フィラメントのモーターの最大加速度。" - -#: fdmprinter.def.json -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "デフォルト加速度" - -#: fdmprinter.def.json -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "プリントヘッド移動のデフォルトの加速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "X-Yデフォルトジャーク" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "水平面内での移動のデフォルトジャーク。" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Zデフォルトジャーク" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Z方向のモーターのデフォルトジャーク。" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "フィラメントデフォルトジャーク" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "フィラメントのモーターのデフォルトジャーク。" - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "ミリメートルあたりのステップ (X)" - -#: fdmprinter.def.json -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 ミリメートルの移動でステップモーターが行うステップの数を示します。" - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "ミリメートルあたりのステップ (Y)" - -#: fdmprinter.def.json -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 ミリメートルの移動でステップモーターが行うステップの数を示します。" - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "ミリメートルあたりのステップ (Z)" - -#: fdmprinter.def.json -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 ミリメートルの移動でステップモーターが行うステップの数を示します。" - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "ミリメートルあたりのステップ (E)" - -#: fdmprinter.def.json -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ミリメートル移動させるのに、ステップモーターが行うステップの数を示します。" - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "プラス方向の X エンドストップ" - -#: fdmprinter.def.json -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 座標)のいずれかを示します。" - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "プラス方向の Y エンドストップ" - -#: fdmprinter.def.json -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 座標)のいずれかを示します。" - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "プラス方向の Z エンドストップ" - -#: fdmprinter.def.json -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 座標)のいずれかを示します。" - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "最小送り速度" - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "プリントヘッドの最小移動速度。" - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "フィーダーホイール直径" - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "材料をフィーダーに送るホイールの直径。" - -#: fdmprinter.def.json -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "ファン速度を0~1にスケール" - -#: fdmprinter.def.json -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になるようスケールします。" - -#: fdmprinter.def.json -msgctxt "resolution label" -msgid "Quality" -msgstr "品質" - -#: fdmprinter.def.json -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 "プリントの解像度に影響を与えるすべての設定。これらの設定は、品質(および印刷時間)に大きな影響を与えます。" - -#: fdmprinter.def.json -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "レイヤー高さ" - -#: fdmprinter.def.json -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)。値を大きくすると早く印刷しますが荒くなり、小さくすると印刷が遅くなりますが造形が綺麗になります。" - -#: fdmprinter.def.json -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "初期レイヤー高さ" - -#: fdmprinter.def.json -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)。厚い初期層はビルドプレートへの接着を容易にする。" - -#: fdmprinter.def.json -msgctxt "line_width label" -msgid "Line Width" -msgstr "ライン幅" - -#: fdmprinter.def.json -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ラインの幅。一般に、各ラインの幅は、ノズルの幅に対応する必要があります。ただし、この値を少し小さくすると、より良い造形が得られます。" - -#: fdmprinter.def.json -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "ウォールライン幅" - -#: fdmprinter.def.json -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "ウォールラインの幅。" - -#: fdmprinter.def.json -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "外側ウォールライン幅" - -#: fdmprinter.def.json -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 "最も外側のウォールラインの幅。この値を下げると、より詳細な印刷できます。" - -#: fdmprinter.def.json -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "内側ウォールライン幅" - -#: fdmprinter.def.json -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "一番外側のウォールラインを除くすべてのウォールラインのラインの幅。" - -#: fdmprinter.def.json -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "上下面ライン幅" - -#: fdmprinter.def.json -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "上辺/底辺線のライン幅。" - -#: fdmprinter.def.json -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "インフィルラインの幅" - -#: fdmprinter.def.json -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "インフィル線の幅。" - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "スカート/ブリムラインの幅" - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "単一のスカートまたはブリムラインの幅。" - -#: fdmprinter.def.json -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "サポートライン幅" - -#: fdmprinter.def.json -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "単一のサポート構造のライン幅。" - -#: fdmprinter.def.json -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "サポート面のライン幅" - -#: fdmprinter.def.json -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "サポートのルーフ、フロアのライン幅。" - -#: fdmprinter.def.json -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "サポートルーフのライン幅" - -#: fdmprinter.def.json -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "サポートルーフのライン一幅。" - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "サポートフロアのライン幅" - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "サポートのフロアのラインの一幅。" - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "プライムタワーのライン幅" - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "単一のプライムタワーラインの幅。" - -#: fdmprinter.def.json -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "初期レイヤーのライン幅" - -#: fdmprinter.def.json -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "最初のレイヤーに線幅の乗数です。この値を増やすと、ベッドの接着性が向上します。" - -#: fdmprinter.def.json -msgctxt "shell label" -msgid "Walls" -msgstr "ウォール" - -#: fdmprinter.def.json -msgctxt "shell description" -msgid "Shell" -msgstr "外郭" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "ウォールエクストルーダー" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "壁造形用のエクストルーダー。デュアルノズル印刷時に使用。" - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "外壁用エクストルーダー" - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "外壁印刷用のエクストルーダー。デュアルノズル印刷時に使用。" - -#: fdmprinter.def.json -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "内壁用エクストルーダー" - -#: fdmprinter.def.json -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "内壁印刷用のエクストルーダー。デュアルノズル印刷時に使用。" - -#: fdmprinter.def.json -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "壁の厚さ" - -#: fdmprinter.def.json -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 "壁の厚さ。この値をラインの幅で割ることで壁の数が決まります。" - -#: fdmprinter.def.json -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "ウォールライン数" - -#: fdmprinter.def.json -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 "ウォールの数。厚さから計算された場合、この値は整数になります。" - -#: fdmprinter.def.json -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "ウォール移行長さ" - -#: fdmprinter.def.json -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 "部品が薄くなるにつれて異なる数のウォール間を移行する場合に、ウォールラインを分割または結合するために一定のスペースが割り当てられます。" - -#: fdmprinter.def.json -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "ウォール分配数" - -#: fdmprinter.def.json -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 "中心から数えて、変化を広げる必要のあるウォールの数。値が小さいほど、アウターウォールの幅が変化しないことを意味します。" - -#: fdmprinter.def.json -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "ウォール移行しきい値角度" - -#: fdmprinter.def.json -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 "偶数個と奇数個のウォールの間で移行を行うタイミング。この設定より大きい角度のくさび形状では移行が行われず、残りのスペースを埋めるために中心にウォールがプリントされることはありません。この設定を小さくすると、これらの中心にあるウォールの数と長さが減りますが、隙間ができたり、押し出されすぎたりすることがあります。" - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "ウォール移行フィルター距離" - -#: fdmprinter.def.json -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 "異なる数のウォール間を相次いで行き来する場合は、まったく移行しないようにします。移行同士がこの距離よりも近い場合は、それらの移行を削除します。" - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "ウォール移行フィルターマージン" - -#: fdmprinter.def.json -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 * 最小ウォールライン幅 + マージン]に拡張します。このマージンを増やすと移行の回数が減り、押出の開始/停止回数が減少し、移動時間が短縮されます。ただし、ライン幅の変化が大きいと、押出不足や押出過多の問題が発生することがあります。" - -#: fdmprinter.def.json -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "外壁移動距離" - -#: fdmprinter.def.json -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シームをよりよく隠します。" - -#: fdmprinter.def.json -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "外壁はめ込み" - -#: fdmprinter.def.json -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 "外壁の経路にはめ込む。外壁がノズルよりも小さく、内壁の後に造形されている場合は、オフセットを使用して、ノズルの穴をモデルの外側ではなく内壁と重なるようにします。" - -#: fdmprinter.def.json -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "壁印刷順序の最適化" - -#: fdmprinter.def.json -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 "撤回と移動距離を減らすために、壁のプリント順序を最適化します。ほとんどの部品がこの設定を有効にしている方が良い印刷結果につながりますが、実際には時間がかかることがありますので、最適化の有無に関わらず印刷時間を比較してください。ビルドプレートの接着タイプにブリムを選択すると最初のレイヤーは最適化されません。" - -#: fdmprinter.def.json -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "ウォール順序" - -#: fdmprinter.def.json -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." -msgstr "ウォールをプリントする順序を決定します。アウターウォールを先にプリントすると、インナーウォールの不具合が外側に影響しないため、寸法精度が向上します。一方、アウターウォールを後からプリントすると、オーバーハングをプリントする際にうまく積み重ねることができます。" - -#: fdmprinter.def.json -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "内側から外側へ" - -#: fdmprinter.def.json -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "外側から内側へ" - -#: fdmprinter.def.json -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "代替予備壁" - -#: fdmprinter.def.json -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 "すべてのレイヤーごとに予備の壁を印刷します。このようにして、インフィルは余分な壁の間に挟まれ、より強い印刷物が得られる。" - -#: fdmprinter.def.json -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "最小ウォールライン幅" - -#: fdmprinter.def.json -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倍です。" - -#: fdmprinter.def.json -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "最小偶数ウォールライン幅" - -#: fdmprinter.def.json -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 * 最小奇数ウォールライン幅として計算されます。" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold label" -msgid "Split Middle Line Threshold" -msgstr "中央ライン分割しきい値" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "その幅を上回れば中央ライン(ある場合)を2つに分割する最小ライン幅。通常のライン幅の倍数として指定します。薄いラインを多数使用する場合は、この設定を小さくします。幅広のラインを少数使用する場合は、大きくします。これは形状全体がウォールで埋められていると想定して適用されるため、ここでの中央は、実際の成果物にはウォールではなくフィルや(他の)スキンがある場合でも、形状の2つの外端の間にあるオブジェクトの中央を意味することに注意してください。" - -#: fdmprinter.def.json -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "最小奇数ウォールライン幅" - -#: fdmprinter.def.json -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 * 最小偶数ウォールライン幅として計算されます。" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold label" -msgid "Add Middle Line Threshold" -msgstr "中央ライン追加しきい値" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "その幅を上回れば中央ライン(まだない場合)を追加する最小ライン幅。通常のライン幅の倍数として指定します。薄いラインを多数使用する場合は、この設定を小さくします。幅広のラインを少数使用する場合は、大きくします。これは形状全体がウォールで埋められていると想定して適用されるため、ここでの中央は、実際の成果物にはウォールではなくフィルや(他の)スキンがある場合でも、形状の2つの外端の間にあるオブジェクトの中央を意味することに注意してください。" - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "薄壁印刷" - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "ノズルサイズよりも細い壁を作ります。" - -#: fdmprinter.def.json -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "最小フィーチャーサイズ" - -#: fdmprinter.def.json -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 "薄いフィーチャーの最小厚さ。この値より薄いモデルフィーチャーはプリントされず、最小フィーチャーサイズより厚いフィーチャーは最小ウォールライン幅に広げられます。" - -#: fdmprinter.def.json -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "最小薄肉ウォールライン幅" - -#: fdmprinter.def.json -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 "モデルの薄いフィーチャーを(最小フィーチャーサイズに従って)置き換えるウォールの幅。最小ウォールライン幅がフィーチャーの厚さより薄い場合、ウォールの厚さはフィーチャー自体の厚さと同じになります。" - -#: fdmprinter.def.json -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "水平展開" - -#: fdmprinter.def.json -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 "各レイヤーのすべてのポリゴンに適用されるオフセットの量。正の値は大きすぎる穴を補うことができます。負の値は小さすぎる穴を補うことができます。" - -#: fdmprinter.def.json -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "初期層水平展開" - -#: fdmprinter.def.json -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と呼ばれる第一層が潰れるを現象を軽減させます。" - -#: fdmprinter.def.json -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "穴の水平展開" - -#: fdmprinter.def.json -msgctxt "hole_xy_offset description" -msgid "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." -msgstr "各穴のすべてのポリゴンに適用されるオフセットの量。正の値は穴のサイズを大きくします。負の値は穴のサイズを小さくします。" - -#: fdmprinter.def.json -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Zシーム合わせ" - -#: fdmprinter.def.json -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 "レイヤーの経路始点。連続するレイヤー経路が同じポイントで開始すると、縦のシームが印刷に表示されることがあります。ユーザーが指定した場所の近くでこれらを整列させる場合、継ぎ目は最も簡単に取り除くことができます。無作為に配置すると、経路開始時の粗さが目立たなくなります。最短経路をとると、印刷が速くなります。" - -#: fdmprinter.def.json -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "ユーザー指定" - -#: fdmprinter.def.json -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "最短" - -#: fdmprinter.def.json -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "ランダム" - -#: fdmprinter.def.json -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "鋭い角" - -#: fdmprinter.def.json -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Zシーム位置" - -#: fdmprinter.def.json -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "レイヤー内の各パーツの印刷を開始する場所付近の位置。" - -#: fdmprinter.def.json -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "後方左" - -#: fdmprinter.def.json -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "戻る" - -#: fdmprinter.def.json -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "後方右" - -#: fdmprinter.def.json -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "右" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "前方右" - -#: fdmprinter.def.json -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "前" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "前左" - -#: fdmprinter.def.json -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "左" - -#: fdmprinter.def.json -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "ZシームX" - -#: fdmprinter.def.json -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "" -"レイヤー内の各印刷を開始するX座\n" -"標の位置。" - -#: fdmprinter.def.json -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "ZシームY" - -#: fdmprinter.def.json -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "レイヤー内の各パーツの印刷を開始する場所の近くのY座標。" - -#: fdmprinter.def.json -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "シームコーナー設定" - -#: fdmprinter.def.json -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 "モデル輪郭の角がシームの位置に影響を及ぼすかどうかを制御します。[なし] は、角がシームの位置に影響を及ぼさないことを意味します。シームを隠すにすると、シームが内側の角に生じる可能性が高くなります。シームを外側にすると、シームが外側の角に生じる可能性が高くなります。シームを隠す/外側に出すは、シームが内側または外側の角に生じる可能性が高くなります。スマート・シームを使用すると、内外両側の角を使用できますが、適切な場合には内側の角が選択される頻度が高まります。" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "なし" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "シーム非表示" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "シーム表示" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "シーム表示/非表示" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "スマート・シーム" - -#: fdmprinter.def.json -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "相対Zシーム" - -#: fdmprinter.def.json -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シームは各パーツの真ん中に設定されます。無効時はプラットフォームのサイズによって設定されます。" - -#: fdmprinter.def.json -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "トップ/ボトム" - -#: fdmprinter.def.json -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "トップ/ボトム" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "上部表面用エクストルーダー" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "上部の表面印刷用のエクストルーダー。デュアルノズル印刷時に使用。" - -#: fdmprinter.def.json -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "上部表面レイヤー" - -#: fdmprinter.def.json -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 "上部表面のレイヤー数。通常一層で綺麗に出来上がります。" - -#: fdmprinter.def.json -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "上部/底面エクストルーダー" - -#: fdmprinter.def.json -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 "上部と下部の表面を印刷する時に使われるエクストルーダー。デュアルノズル印刷時に使用。" - -#: fdmprinter.def.json -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "上部/底面の厚さ" - -#: fdmprinter.def.json -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 "プリント時の最上面、最底面の厚み。これを積層ピッチで割った値で最上面、最低面のレイヤーの数を定義します。" - -#: fdmprinter.def.json -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "上部厚さ" - -#: fdmprinter.def.json -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 "プリント時の最上面の厚み。これを積層ピッチで割った値で最上面のレイヤーの数を定義します。" - -#: fdmprinter.def.json -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "上部レイヤー" - -#: fdmprinter.def.json -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 "最上面のレイヤー数。トップの厚さを計算する場合、この値は整数になります。" - -#: fdmprinter.def.json -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "底面厚さ" - -#: fdmprinter.def.json -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 "プリント時の最底面の厚み。これを積層ピッチで割った値で最低面のレイヤーの数を定義します。" - -#: fdmprinter.def.json -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "底面レイヤー" - -#: fdmprinter.def.json -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 "最底面のレイヤー数。下の厚さで計算すると、この値は整数に変換されます。" - -#: fdmprinter.def.json -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "初期底面レイヤー" - -#: fdmprinter.def.json -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 "ビルドプレートから上にある初期底面レイヤーの数。下の厚さで計算すると、この値は整数に変換されます。" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "上層/底層パターン" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "上層/底層のパターン。" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "直線" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "同心円" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "底層初期レイヤー" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "第1層のプリントの底部のパターン。" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "直線" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "同心円" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" - -#: fdmprinter.def.json -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "上層/底層ポリゴンに接合" - -#: fdmprinter.def.json -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 "互いに次に実行する上層/底層スキンパスに接合します。同心円のパターンの場合、この設定を有効にすることにより、移動時間が短縮されますが、インフィルまでの途中で接合があるため、この機能で上層面の品質が損なわれることがあります。" - -#: fdmprinter.def.json -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "上面/底面の方向一貫性" - -#: fdmprinter.def.json -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 "上面/底面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" - -#: fdmprinter.def.json -msgctxt "skin_angles label" -msgid "Top/Bottom 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 度)になっています。" #: fdmprinter.def.json msgctxt "skin_angles description" @@ -1516,379 +33,24 @@ msgid "A list of integer line directions to use when the top/bottom layers use t msgstr "上/下のレイヤーが線またはジグザグパターンを使う際の整数線の方向のリスト。リストの要素は、層が進行するにつれて順番に使用され、リストの終わりに達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは、従来のデフォルト角度(45度と135度)を使用する空のリストです。" #: fdmprinter.def.json -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Z 軸ギャップにスキンなし" +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度を使用します。" #: fdmprinter.def.json -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 "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度を使用)。" #: fdmprinter.def.json -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -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度を使用)。" #: fdmprinter.def.json -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つの線を使用すると、トップ部分の造形が改善されます。" - -#: fdmprinter.def.json -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "アイロン有効" - -#: fdmprinter.def.json -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 "微量の材料のみを吐出して、再度上部表面を動きます。これにより上部のプラスティックが溶かされ、よりスムースな表面になります。ノズルチャンバーには高い圧力が保たれるため、表面上のしわが材料で埋められます。" - -#: fdmprinter.def.json -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "最上層のみアイロン" - -#: fdmprinter.def.json -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 "メッシュの最後のレイヤーでのみアイロンをかけます。下層にて滑らかな表面仕上げを必要としない場合、時間を節約します。" - -#: fdmprinter.def.json -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "アイロンパターン" - -#: fdmprinter.def.json -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "アイロンのパターン。" - -#: fdmprinter.def.json -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "同心円" - -#: fdmprinter.def.json -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" - -#: fdmprinter.def.json -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "アイロン方向一貫性" - -#: fdmprinter.def.json -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 "アイロンラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "アイロン線のスペース" - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "アイロンライン同士の距離。" - -#: fdmprinter.def.json -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "アイロンフロー" - -#: fdmprinter.def.json -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 "アイロン時にノズルから出しておくフィラメントの量。多少出しておくと裂け目を綺麗にします。ただ出し過ぎると吐出過多になり、端が荒れます。" - -#: fdmprinter.def.json -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "アイロンインセット" - -#: fdmprinter.def.json -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 "モデルの端からの距離。端までアイロンをすると、端が荒れる場合があります。" - -#: fdmprinter.def.json -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "アイロン速度" - -#: fdmprinter.def.json -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "上部表面通過時の速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "アイロン加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "アイロン時の加速度。" - -#: fdmprinter.def.json -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "アイロンジャーク" - -#: fdmprinter.def.json -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "アイロン時の最大加速度。" - -#: fdmprinter.def.json -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "表面公差量" - -#: fdmprinter.def.json -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%を超えると、スキンが壁を通過している可能性があります。これは、その時点で、スキン押出機のノズルの位置が、すでに壁の真ん中を過ぎている可能性があるためです。" - -#: fdmprinter.def.json -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "表面公差" - -#: fdmprinter.def.json -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 "壁とスキンの中央ライン(のエンドポイント)が交差する量を調整します。わずかな交差によって、壁がスキンにしっかりつながります。スキンと壁のライン幅が同じで、壁の幅が半分以上の値になると、スキンが壁を通過している可能性があります。これは、その時点で、スキン押出機のノズルの位置が、すでに壁の真ん中を過ぎている可能性があるためです。" - -#: fdmprinter.def.json -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "表面除去幅" - -#: fdmprinter.def.json -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 "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。" - -#: fdmprinter.def.json -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "上面除去幅" - -#: fdmprinter.def.json -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 "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。" - -#: fdmprinter.def.json -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "底面除去幅" - -#: fdmprinter.def.json -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 "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。" - -#: fdmprinter.def.json -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "表面展開距離" - -#: fdmprinter.def.json -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 "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" - -#: fdmprinter.def.json -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "上面展開距離" - -#: fdmprinter.def.json -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 "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" - -#: fdmprinter.def.json -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "底面展開距離" - -#: fdmprinter.def.json -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 "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" - -#: fdmprinter.def.json -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "表面展開最大角" - -#: fdmprinter.def.json -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°の角度は垂直方向で、すべてのスキンが拡大します。" - -#: fdmprinter.def.json -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "表面展開最小角" - -#: fdmprinter.def.json -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 "これより狭いスキン領域は展開されません。モデル表面に、垂直に近い斜面がある場合に作成される狭いスキン領域の拡大を回避するためです。" - -#: fdmprinter.def.json -msgctxt "infill label" -msgid "Infill" -msgstr "インフィル" - -#: fdmprinter.def.json -msgctxt "infill description" -msgid "Infill" -msgstr "インフィル" - -#: fdmprinter.def.json -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "インフィルエクストルーダー" - -#: fdmprinter.def.json -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "インフィル造形時に使われるExtruder。デュアルノズルの場合に利用します。" - -#: fdmprinter.def.json -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "インフィル密度" - -#: fdmprinter.def.json -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "プリントのインフィルの密度を調整します。" - -#: fdmprinter.def.json -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "インフィルライン距離" - -#: fdmprinter.def.json -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 "造形されたインフィルラインの距離。この設定は、インフィル密度およびライン幅によって計算される。" - -#: fdmprinter.def.json -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "インフィルパターン" - -#: fdmprinter.def.json -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 "プリントのインフィル材料のパターンラインおよびジグザグインフィルはレイヤーごとに方向を入れ替え、材料コストを削減します。グリッド、トライアングル、トライヘキサゴン、キュービック、オクテット、クォーターキュービック、クロスおよび同心円パターンはレイヤーごとに完全にプリントされます。ジャイロイド、キュービック、クォーターキュービックおよびオクテットインフィルはレイヤーごとに変化し、各方向にかけてより均一な強度分布を実現します。ライトニングインフィルは造形物の天井のみを支えることで、インフィルを最低限にするよう試みます。" - -#: fdmprinter.def.json -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "グリッド" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "ライン" - -#: fdmprinter.def.json -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "トライアングル" - -#: fdmprinter.def.json -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "トライヘキサゴン" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "キュービック" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "キュービックサブディビジョン" - -#: fdmprinter.def.json -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "オクテット" - -#: fdmprinter.def.json -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "クォーターキュービック" - -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "同心円" - -#: fdmprinter.def.json -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "クロス" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "3Dクロス" - -#: fdmprinter.def.json -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "ジャイロイド" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "ライトニング" - -#: fdmprinter.def.json -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "インフィルライン接合" - -#: fdmprinter.def.json -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 "内壁の形状に沿ったラインを使用してインフィルパターンと内壁が合うところで接合します。この設定を有効にすると、インフィルが壁により密着するようになり、垂直面の品質に対するインフィルの影響が軽減します。この設定を無効にすると、材料の使用量が減ります。" - -#: fdmprinter.def.json -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "インフィルポリゴン接合" - -#: fdmprinter.def.json -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 "互いに次に実行するインフィルパスに接合します。いくつかの閉じられたポリゴンを含むインフィルパターンの場合、この設定を有効にすることにより、移動時間が大幅に短縮されます。" - -#: fdmprinter.def.json -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度を使用)。" #: fdmprinter.def.json msgctxt "infill_angles description" @@ -1896,49 +58,44 @@ msgid "A list of integer line directions to use. Elements from the list are used msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストです。これは、従来のデフォルト角度(線とジグザグのパターンでは45と135度、他のすべてのパターンでは45度)を使用することを意味します。" #: fdmprinter.def.json -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 "ノズルが入ることができない領域を持つポリゴンのリスト。" #: fdmprinter.def.json -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 "プリントヘッドの領域を持つポリゴンのリストは入力できません。" #: fdmprinter.def.json -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "インフィルYオフセット" +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "別の部品内に完全に囲まれた部品は、別の部品の内側に接触する外側縁ができることがあります。この設定によって、内部の穴からこの間隔内のすべての縁が除去されます。" #: fdmprinter.def.json -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 "エクストルーダーの絶対位置" #: fdmprinter.def.json -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "インフィル開始のランダム化" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "適応レイヤー最大差分" #: fdmprinter.def.json -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 "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "適応レイヤーのトポグラフィーサイズ" #: fdmprinter.def.json -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "インフィルライン乗算" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "適応レイヤー差分ステップサイズ" #: fdmprinter.def.json -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 "各インフィルラインをこの多重ラインに変換します。余分なラインが互いに交差せず、互いを避け合います。これによりインフィルが硬くなり、印刷時間と材料使用量が増えます。" - -#: fdmprinter.def.json -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 "適応レイヤーは、レイヤーの高さをモデルの形状に合わせて計算します。" #: fdmprinter.def.json msgctxt "infill_wall_line_count description" @@ -1950,286 +107,9 @@ msgstr "" "この機能は、インフィルポリゴン接合と組み合わせて、構成が正しい場合、移動または引き戻しが必要なく、すべてのインフィルを1つの押出経路に接続することができます。" #: fdmprinter.def.json -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "キュービックサブディビジョンシェル" - -#: fdmprinter.def.json -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 "この立方体を細分するかどうかを決定するために、各立方体の中心から半径に加えてモデルの境界を調べます。値を大きくすると、モデルの境界付近に小さな立方体のより厚いシェルができます。" - -#: fdmprinter.def.json -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "インフィル公差量" - -#: fdmprinter.def.json -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 "インフィルと壁のオーバーラップ量 (インフィルライン幅に対する%)。少しのオーバーラップによって壁がインフィルにしっかりつながります。" - -#: fdmprinter.def.json -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "インフィル公差" - -#: fdmprinter.def.json -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 "インフィルと壁が交差する量、わずかな交差によって壁がインフィルにしっかりつながります。" - -#: fdmprinter.def.json -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "インフィル移動距離" - -#: fdmprinter.def.json -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 "インフィルラインごとに挿入された移動距離は壁のインフィルへの接着をより良くします。このオプションは、インフィルオーバーラップに似ていますが、押出なく、インフィルラインの片側にのみあります。" - -#: fdmprinter.def.json -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "インフィル層の厚さ" - -#: fdmprinter.def.json -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 "インフィルマテリアルの層ごとの厚さ。この値は常にレイヤーの高さの倍数でなければなりません。" - -#: fdmprinter.def.json -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "インフィル半減回数" - -#: fdmprinter.def.json -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 "天井面の表面に近づく際にインフィル密度が半減する回数。天井面に近い領域ほど高い密度となり、インフィル密度まで達します。" - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "インフィル半減高さ" - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "密度が半分に切り替わる前の所定のインフィルの高さ。" - -#: fdmprinter.def.json -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "インフィル優先" - -#: fdmprinter.def.json -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 "" -"壁より前にインフィルをプリントします はじめに壁をプリントするとより精密な壁になりますが、オーバーハングのプリントは悪化します\n" -"はじめにインフィルをプリントすると丈夫な壁になりますが、インフィルの模様が時折表面から透けて表れます。" - -#: fdmprinter.def.json -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "最小インフィル領域" - -#: fdmprinter.def.json -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "これより小さいインフィルの領域を生成しないでください (代わりにスキンを使用してください)。" - -#: fdmprinter.def.json -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "インフィルサポート" - -#: fdmprinter.def.json -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 "面材構造を印刷するには、モデルの上部がサポートされている必要があります。これを有効にすると、印刷時間と材料の使用量が減少しますが、オブジェクトの強度が不均一になります。" - -#: fdmprinter.def.json -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "インフィルオーバーハング角度" - -#: fdmprinter.def.json -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° ではインフィルが提供されません。" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "スキンエッジサポートの厚さ" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "スキンエッジをサポートする追加のインフィルの厚さ。" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "スキンエッジサポートレイヤー" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "スキンエッジをサポートするインフィルレイヤーの数。" - -#: fdmprinter.def.json -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "ライトニングインフィルサポート角度" - -#: fdmprinter.def.json -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 "ライトニングインフィルレイヤーがその上の物を支える必要がある場合を決定します。レイヤーの厚さを考慮して角度で指定されます。" - -#: fdmprinter.def.json -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "ライトニングインフィルオーバーハング角度" - -#: fdmprinter.def.json -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 "ライトニングインフィルレイヤーがその上のモデルを支える必要がある場合を決定します。厚さを考慮して角度で指定されます。" - -#: fdmprinter.def.json -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "ライトニングインフィル刈り込み角度" - -#: fdmprinter.def.json -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 "インフィルラインのエンドポイントは短縮され、材料が節約されます。この設定は、これらのラインのエンドポイントにおけるオーバーハングの角度です。" - -#: fdmprinter.def.json -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "ライトニングインフィル矯正角度" - -#: fdmprinter.def.json -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 "インフィルラインは矯正され、プリント時間が節約されます。これは、インフィルラインの全長にわたって許可されるオーバーハングの最大角度です。" - -#: fdmprinter.def.json -msgctxt "material label" -msgid "Material" -msgstr "マテリアル" - -#: fdmprinter.def.json -msgctxt "material description" -msgid "Material" -msgstr "マテリアル" - -#: fdmprinter.def.json -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "デフォルト印刷温度" - -#: fdmprinter.def.json -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 "印刷中のデフォルトの温度。これはマテリアルの基本温度となります。他のすべての造形温度はこの値に基づいてオフセットする必要があります" - -#: fdmprinter.def.json -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "造形温度" - -#: fdmprinter.def.json -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) の場合、造形温度は調整できません。" - -#: fdmprinter.def.json -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "印刷温度" - -#: fdmprinter.def.json -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "印刷中の温度。" - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "初期レイヤー印刷温度" - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "最初のレイヤーを印刷する温度。初期レイヤーのみ特別設定が必要ない場合は 0 に設定します。" - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "初期印刷温度" - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "加熱中、印刷を開始することができる最低の温度。" - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "最終印刷温度" - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "印刷終了直前に冷却を開始する温度。" - -#: fdmprinter.def.json -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "押出クールダウン速度修飾子" - -#: fdmprinter.def.json -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 "印刷中にノズルが冷える際の速度。同じ値が、加熱する際の加熱速度に割当られます。" - -#: fdmprinter.def.json -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "ビルドプレートのデフォルト温度" - -#: fdmprinter.def.json -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 "加熱式ビルドプレートのデフォルト温度。これはビルドプレートの「基本」温度でます。他のすべての印刷温度はこの値に基づいてオフセットする必要があります" - -#: fdmprinter.def.json -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "ビルドプレート温度" - -#: fdmprinter.def.json -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の場合、ビルドプレートは加熱されないままになります。" - -#: fdmprinter.def.json -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "初期レイヤーのビルドプレート温度" - -#: fdmprinter.def.json -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 "密着性" #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" @@ -2237,1924 +117,19 @@ msgid "Adhesion Tendency" msgstr "接着傾向" #: fdmprinter.def.json -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%を超えると、スキンが壁を通過している可能性があります。これは、その時点で、スキン押出機のノズルの位置が、すでに壁の真ん中を過ぎている可能性があるためです。" #: fdmprinter.def.json -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 "壁とスキンの中央ライン(のエンドポイント)が交差する量を調整します。わずかな交差によって、壁がスキンにしっかりつながります。スキンと壁のライン幅が同じで、壁の幅が半分以上の値になると、スキンが壁を通過している可能性があります。これは、その時点で、スキン押出機のノズルの位置が、すでに壁の真ん中を過ぎている可能性があるためです。" #: fdmprinter.def.json -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "表面エネルギー。" - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "スケールファクタ収縮補正" - -#: fdmprinter.def.json -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 "材料の冷却時の収縮を補正するために、モデルはこのスケールファクタでスケールされます。" - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "水平スケールファクタ収縮補正" - -#: fdmprinter.def.json -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(水平)方向にこのファクタでスケールされます。" - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "垂直スケールファクタ収縮補正" - -#: fdmprinter.def.json -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(垂直)方向にこのファクタでスケールされます。" - -#: fdmprinter.def.json -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "結晶性材料" - -#: fdmprinter.def.json -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 "この材料は加熱時にきれいに分解するタイプ (結晶性) または長く絡み合ったポリマー鎖 (非結晶) を作り出すタイプのいずれですか?" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "滲出防止引戻し位置" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "滲出を止めるには材料をどこまで引き戻す必要があるか。" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "滲出防止引戻し速度" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "滲出を防止するにはフィラメントスイッチ中に材料をどの程度速く引き戻す必要があるか。" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "フィラメントの引き出し準備引戻し位置" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "加熱中にフィラメントの引き出しが生じる距離。" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "フィラメント引き出し準備引戻し速度" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "フィラメントの引き出しが起こるための引き戻しの距離。" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "フィラメント引き出し準備温度" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "材料のパージに使用する温度は、許容最高プリンティング温度とほぼ等しくなければなりません。" - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "フィラメント引き出しの引戻し位置" - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "フィラメントをきれいに引き出すにはフィラメントをどこまで引き戻すか。" - -#: fdmprinter.def.json -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "フィラメント引き出しの引戻し速度" - -#: fdmprinter.def.json -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "フィラメントをきれいに引き出すために維持すべきフィラメントの引戻し速度。" - -#: fdmprinter.def.json -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "フィラメント引き出し温度" - -#: fdmprinter.def.json -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "フィラメントがきれいに引き出される温度。" - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "フラッシュパージ速度" - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "材料を切り替えた後に、材料の下準備をする速度。" - -#: fdmprinter.def.json -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "フラッシュパージ長さ" - -#: fdmprinter.def.json -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 "材料を切り替えたときに、ノズルから前の材料をパージするために使用する材料の量(フィラメントの長さ)。" - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "フィラメントパージ速度の後" - -#: fdmprinter.def.json -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 "空のスプールを同じ材料の新しいスプールに交換した後に、材料の下準備をする速度。" - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "フィラメントパージ長さの後" - -#: fdmprinter.def.json -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 "空のスプールを同じ材料の新しいスプールに交換したときに、ノズルから前の材料をパージするために使用する材料の量(フィラメントの長さ)。" - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "最大留め期間" - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "材料を乾燥保管容器の外に置くことができる期間。" - -#: fdmprinter.def.json -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "無負荷移動係数" - -#: fdmprinter.def.json -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 "フィーダーとノズルチャンバーの間でフィラメントが圧縮される量を示す係数。フィラメントスイッチの材料を移動する距離を決めるために使用されます。" - -#: fdmprinter.def.json -msgctxt "material_flow label" -msgid "Flow" -msgstr "フロー" - -#: fdmprinter.def.json -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "流れの補修: 押出されるマテリアルの量は、この値から乗算されます。" - -#: fdmprinter.def.json -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "壁のフロー" - -#: fdmprinter.def.json -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "壁のフロー補正。" - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "外壁のフロー" - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "最外壁のフロー補正。" - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "内壁のフロー" - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "最外壁以外の壁のフロー補正。" - -#: fdmprinter.def.json -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "上面/下面フロー" - -#: fdmprinter.def.json -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "上面/下面のフロー補正。" - -#: fdmprinter.def.json -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "上部表面スキンフロー" - -#: fdmprinter.def.json -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "印刷物の上部表面のフロー補正。" - -#: fdmprinter.def.json -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "インフィルフロー" - -#: fdmprinter.def.json -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "インフィルのフロー補正。" - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "スカート/ブリムのフロー" - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "スカートまたはブリムのフロー補正。" - -#: fdmprinter.def.json -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "支持材のフロー" - -#: fdmprinter.def.json -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "支持材のフロー補正。" - -#: fdmprinter.def.json -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "支持材界面フロー" - -#: fdmprinter.def.json -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "支持材の天井面または床面のフロー補正。" - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "支持材天井面フロー" - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "支持材天井面のフロー補正。" - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "支持材床面フロー" - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "支持材床面のフロー補正。" - -#: fdmprinter.def.json -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "プライムタワーのフロー" - -#: fdmprinter.def.json -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "プライムタワーのフロー補正。" - -#: fdmprinter.def.json -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "初期レイヤーフロー" - -#: fdmprinter.def.json -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 "初期レイヤーの流量補修:初期レイヤーの マテリアル吐出量はこの値の乗算で計算されます。" - -#: fdmprinter.def.json -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "スタンバイ温度" - -#: fdmprinter.def.json -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "印刷していないノズルの温度(もう一方のノズルが印刷中)" - -#: fdmprinter.def.json -msgctxt "speed label" -msgid "Speed" -msgstr "スピード" - -#: fdmprinter.def.json -msgctxt "speed description" -msgid "Speed" -msgstr "スピード" - -#: fdmprinter.def.json -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "印刷速度" - -#: fdmprinter.def.json -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "印刷スピード。" - -#: fdmprinter.def.json -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "インフィル速度" - -#: fdmprinter.def.json -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "インフィルを印刷する速度。" - -#: fdmprinter.def.json -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "ウォール速度" - -#: fdmprinter.def.json -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "ウォールを印刷する速度。" - -#: fdmprinter.def.json -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "外壁速度" - -#: fdmprinter.def.json -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 "最も外側のウォールをプリントする速度。外側の壁を低速でプリントすると表面の質が改善しますが、内壁と外壁のプリント速度の差が大きすぎると、印刷の質が悪化します。" - -#: fdmprinter.def.json -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "内壁速度" - -#: fdmprinter.def.json -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 "内側のウォールをプリントする速度 外壁より内壁を高速でプリントすると、印刷時間の短縮になります。外壁のプリント速度とインフィルのプリント速度の中間に設定するのが適切です。" - -#: fdmprinter.def.json -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "最上面速度" - -#: fdmprinter.def.json -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "上部表面プリント時の速度。" - -#: fdmprinter.def.json -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "上面/底面速度" - -#: fdmprinter.def.json -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "トップ/ボトムのレイヤーのプリント速度。" - -#: fdmprinter.def.json -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "サポート速度" - -#: fdmprinter.def.json -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 "サポート材をプリントする速度です。高速でサポートをプリントすると、印刷時間を大幅に短縮できます。サポート材は印刷後に削除されますので、サポート構造の品質はそれほど重要ではありません。" - -#: fdmprinter.def.json -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "サポートインフィル速度" - -#: fdmprinter.def.json -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 "サポート材のインフィルをプリントする速度 低速でプリントすると安定性が向上します。" - -#: fdmprinter.def.json -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "サポートインタフェース速度" - -#: fdmprinter.def.json -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 "ルーフとフロアのサポート材をプリントする速度。低速でプリントするとオーバーハングの品質を向上できます。" - -#: fdmprinter.def.json -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "サポートルーフ速度" - -#: fdmprinter.def.json -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 "ルーフとフロアのサポート材をプリントする速度 これらを低速でプリントするとオーバーハングの品質を向上できます。" - -#: fdmprinter.def.json -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "サポートフロア速度" - -#: fdmprinter.def.json -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 "フロアのサポートがプリントされる速度。低速で印刷することで、サポートの接着性を向上させることができます。" - -#: fdmprinter.def.json -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "プライムタワー印刷速度" - -#: fdmprinter.def.json -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 "プライムタワーをプリントする速度です。異なるフィラメントの印刷で密着性が最適ではない場合、低速にてプライム タワーをプリントすることでより安定させることができます。" - -#: fdmprinter.def.json -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "移動速度" - -#: fdmprinter.def.json -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "移動中のスピード。" - -#: fdmprinter.def.json -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "初期レイヤー速度" - -#: fdmprinter.def.json -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 "初期レイヤーでの速度。ビルドプレートへの接着を改善するため低速を推奨します。ブリムやラフトなどのビルドプレート接着構造自体には影響しません。" - -#: fdmprinter.def.json -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "初期レイヤー印刷速度" - -#: fdmprinter.def.json -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 "一層目をプリントする速度 ビルトプレートへの接着を向上するため低速を推奨します。" - -#: fdmprinter.def.json -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "初期レイヤー移動速度" - -#: fdmprinter.def.json -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 "最初のレイヤーを印刷する際のトラベルスピード。低速の方が、ビルドプレート剥がれるリスクを軽減することができます。この設定の値は、移動速度と印刷速度の比から自動的に計算されます。" - -#: fdmprinter.def.json -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "スカート/ブリム速度" - -#: fdmprinter.def.json -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 "スカートとブリムのプリント速度 通常は一層目のスピードと同じですが、異なる速度でスカートやブリムをプリントしたい場合に設定してください。" - -#: fdmprinter.def.json -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Z 軸ホップ速度" - -#: fdmprinter.def.json -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 軸方向の動きが行われる速度。これは通常、ビルドプレートまたはマシンのガントリーが動きにくいため、印刷速度よりも低くなります。" - -#: fdmprinter.def.json -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "遅いレイヤーの数" - -#: fdmprinter.def.json -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 "最初の数層は印刷失敗の可能性を軽減させるために、設定した印刷スピードよりも遅く印刷されます。" - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "フロー均一化率" - -#: fdmprinter.def.json -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%より大きな値を設定すると、幅広のラインを押し出すのに必要な高い圧力を補うことができます。" - -#: fdmprinter.def.json -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "加速度制御を有効にする" - -#: fdmprinter.def.json -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 "プリントヘッドのスピード調整の有効化 加速度の増加は印刷時間を短縮しますが印刷の質を損ねます。" - -#: fdmprinter.def.json -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "印刷加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "印刷の加速スピードです。" - -#: fdmprinter.def.json -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "インフィル加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "インフィルの印刷の加速スピード。" - -#: fdmprinter.def.json -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "ウォール加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "ウォールをプリントする際の加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "外壁加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "最も外側の壁をプリントする際の加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "内壁加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "内側のウォールがが出力される際のスピード。" - -#: fdmprinter.def.json -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "最上面加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "上部表面プリント時の加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "上面/底面加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "トップとボトムのレイヤーの印刷加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "サポート加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "サポート材プリント時の加速スピード。" - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "サポートインフィル加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "インフィルのサポート材のプリント時の加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "サポートインタフェース加速度" - -#: fdmprinter.def.json -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 "サポートの上面と下面が印刷される加速度。低加速度で印刷するとオーバーハングの品質が向上します。" - -#: fdmprinter.def.json -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "サポートルーフ加速度" - -#: fdmprinter.def.json -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 "サポートの上面がプリントされる加速度、低加速度で印刷するとオーバーハングの品質が向上します。" - -#: fdmprinter.def.json -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "サポートフロア加速度" - -#: fdmprinter.def.json -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 "サポートのフロアが印刷される加速度。より低い加速度で印刷すると、モデル上のサポートの接着性を向上させることができます。" - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "プライムタワー加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "プライムタワーの印刷時のスピード。" - -#: fdmprinter.def.json -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "移動か速度" - -#: fdmprinter.def.json -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "移動中の加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "初期レイヤー加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "初期レイヤーの加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "初期レイヤー印刷加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "初期レイヤーの印刷中の加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "初期レイヤー移動加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "最初のレイヤー時の加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "スカート/ブリム加速度" - -#: fdmprinter.def.json -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 "スカートとブリム印刷時の加速度。通常、初期レイヤーの印刷スピードにて適用されるが、異なる速度でスカートやブリムを印刷したい場合使用できる。" - -#: fdmprinter.def.json -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "ジャーク制御を有効にする" - -#: fdmprinter.def.json -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 軸の速度が変更する際、プリントヘッドのジャークを調整することができます。ジャークを増やすことは、印刷時間を短縮できますがプリントの質を損ねます。" - -#: fdmprinter.def.json -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "印刷ジャーク" - -#: fdmprinter.def.json -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "プリントヘッドの最大瞬間速度の変更。" - -#: fdmprinter.def.json -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "インフィルジャーク" - -#: fdmprinter.def.json -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "インフィルの印刷時の瞬間速度の変更。" - -#: fdmprinter.def.json -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "ウォールジャーク" - -#: fdmprinter.def.json -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "ウォールのプリント時の最大瞬間速度を変更。" - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "外壁ジャーク" - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "外側のウォールが出力される際の最大瞬間速度の変更。" - -#: fdmprinter.def.json -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "内壁ジャーク" - -#: fdmprinter.def.json -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "内側のウォールがプリントされれう際の最大瞬間速度の変更。" - -#: fdmprinter.def.json -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "最上面ジャーク" - -#: fdmprinter.def.json -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "上部表面プリント時の最大加速度。" - -#: fdmprinter.def.json -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "上面/下面ジャーク" - -#: fdmprinter.def.json -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "トップとボトムのレイヤーを印刷する際の最大瞬間速度の変更。" - -#: fdmprinter.def.json -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "サポートジャーク" - -#: fdmprinter.def.json -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "サポート材の印刷時の最大瞬間速度の変更。" - -#: fdmprinter.def.json -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "サポートインフィルジャーク" - -#: fdmprinter.def.json -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "サポート材の印刷時、最大瞬間速度の変更。" - -#: fdmprinter.def.json -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "サポートインタフェースジャーク" - -#: fdmprinter.def.json -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "どのルーフとフロアのサポート部分を印刷するかによって最大瞬間速度は変化します。" - -#: fdmprinter.def.json -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "サポートルーフジャーク" - -#: fdmprinter.def.json -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "どのサポートのルーフ部分を印刷するかによって最大瞬間速度は変化します。" - -#: fdmprinter.def.json -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "サポートフロアジャーク" - -#: fdmprinter.def.json -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "どのサポートのフロア部分を印刷するかによって最大瞬間速度は変化します。" - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "プライムタワージャーク" - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "プライムタワーがプリントされる際の最大瞬間速度を変更します。" - -#: fdmprinter.def.json -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "移動ジャーク" - -#: fdmprinter.def.json -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "移動する際の最大瞬時速度の変更。" - -#: fdmprinter.def.json -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "初期レイヤージャーク" - -#: fdmprinter.def.json -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "初期レイヤーの最大瞬時速度の変更。" - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "初期レイヤー印刷ジャーク" - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "初期レイヤー印刷中の最大瞬時速度の変化。" - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "初期レイヤー移動ジャーク" - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "移動加速度は最初のレイヤーに適用されます。" - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "スカート/ブリムジャーク" - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "スカートとブリムがプリントされる最大瞬時速度の変更。" - -#: fdmprinter.def.json -msgctxt "travel label" -msgid "Travel" -msgstr "移動" - -#: fdmprinter.def.json -msgctxt "travel description" -msgid "travel" -msgstr "移動" - -#: fdmprinter.def.json -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "引き戻し有効" - -#: fdmprinter.def.json -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "ノズルが印刷しないで良い領域を移動する際にフィラメントを引き戻す。" - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "レイヤー変更時に引き戻す" - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "ノズルは次の層に移動するときフィラメントを引き戻します。" - -#: fdmprinter.def.json -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "引き戻し距離" - -#: fdmprinter.def.json -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "引き戻されるマテリアルの長さ。" - -#: fdmprinter.def.json -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "引き戻し速度" - -#: fdmprinter.def.json -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "フィラメントが引き戻される時のスピード。" - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "引き戻し速度の取り消し" - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "フィラメントが引き戻される時のスピード。" - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "押し戻し速度の取り消し" - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "フィラメントが引き戻される時のスピード。" - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "余分な押し戻し量の引き戻し" - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "マテリアルによっては、移動中に滲み出てきてしまうときがあり、ここで調整することができます。" - -#: fdmprinter.def.json -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "引き戻し最小移動距離" - -#: fdmprinter.def.json -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 "フィラメントを引き戻す際に必要な最小移動距離。これは、短い距離内での引き戻しの回数を減らすために役立ちます。" - -#: fdmprinter.def.json -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "最大引き戻し回数" - -#: fdmprinter.def.json -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 "この設定は、決められた距離の中で起こる引き戻しの回数を制限します。制限数以上の引き戻しは無視されます。これによりフィーダーでフィラメントを誤って削ってしまう問題を軽減させます。" - -#: fdmprinter.def.json -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "最小抽出距離範囲" - -#: fdmprinter.def.json -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 "最大の引き戻し回数。この値は引き戻す距離と同じであることで、引き戻しが効果的に行われます。" - -#: fdmprinter.def.json -msgctxt "limit_support_retractions label" -msgid "Limit Support Retractions" -msgstr "サポート引き戻し限界" - -#: fdmprinter.def.json -msgctxt "limit_support_retractions description" -msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -msgstr "支持材から支持材に直線移動する場合は、引戻しを省略します。この設定を有効にすると、印刷時間は節約できますが、支持材内で過剰な糸引きが発生する可能性があります。" - -#: fdmprinter.def.json -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "コーミングモード" - -#: fdmprinter.def.json -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 "コーミングは、走行時にすでに印刷された領域内にノズルを保ちます。その結果、移動距離はわずかに長くなりますが、引き込みの必要性は減ります。コーミングがオフの場合、フィラメントの引き戻しを行い、ノズルは次のポイントまで直線移動します。また、インフィルのみにてコーミングすることにより、トップとボトムのスキン領域上での櫛通りを回避できます。" - -#: fdmprinter.def.json -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "オフ" - -#: fdmprinter.def.json -msgctxt "retraction_combing option all" -msgid "All" -msgstr "すべて" - -#: fdmprinter.def.json -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "外側表面には適用しない" - -#: fdmprinter.def.json -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "スキン内にない" - -#: fdmprinter.def.json -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "インフィル内" - -#: fdmprinter.def.json -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "引き戻しのない最大コム距離" - -#: fdmprinter.def.json -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 "ゼロを超える場合、この距離より長い移動量をコーミングすると、引き戻しが使用されます。ゼロに設定した場合、最大値はなく、コーミング移動では引き戻しを使用しません。" - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "外壁の前に引き戻す" - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "移動して外側のウォールをプリントする際、毎回引き戻しをします。" - -#: fdmprinter.def.json -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "移動は印刷したパーツを回避する" - -#: fdmprinter.def.json -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 "ノズルは、移動時に既に印刷されたパーツを避けます。このオプションは、コーミングが有効な場合にのみ使用できます。" - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "移動はサポートを回避する" - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "ノズルは、移動時に既に印刷されたサポートを避けます。このオプションは、コーミングが有効な場合にのみ使用できます。" - -#: fdmprinter.def.json -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "移動回避距離" - -#: fdmprinter.def.json -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "ノズルが既に印刷された部分を移動する際の間隔。" - -#: fdmprinter.def.json -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "レイヤー始点X" - -#: fdmprinter.def.json -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座標。" - -#: fdmprinter.def.json -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "レイヤー始点Y" - -#: fdmprinter.def.json -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座標。" - -#: fdmprinter.def.json -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "引き戻し時のZホップ" - -#: fdmprinter.def.json -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 "引き戻しが完了すると、ビルドプレートが下降してノズルとプリントの間に隙間ができます。ノズルの走行中に造形物に当たるのを防ぎ、造形物をビルドプレートから剥がしてしまう現象を減らします。" - -#: fdmprinter.def.json -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "印刷パーツに対するZホップ" - -#: fdmprinter.def.json -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ホップを実行します。" - -#: fdmprinter.def.json -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Zホップ高さ" - -#: fdmprinter.def.json -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Zホップを実行するときの高さ。" - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "エクストルーダースイッチ後のZホップ" - -#: fdmprinter.def.json -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つのエクストルーダーからもう一つのエクストルーダーに切り替えられた際、ビルドプレートが下降して、ノズルと印刷物との間に隙間が形成される。これによりノズルが造形物の外側にはみ出たマテリアルを残さないためである。" - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "エクストルーダースイッチ高さ後のZホップ" - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "エクストルーダースイッチ後のZホップを実行するときの高さの違い。" - -#: fdmprinter.def.json -msgctxt "cooling label" -msgid "Cooling" -msgstr "冷却" - -#: fdmprinter.def.json -msgctxt "cooling description" -msgid "Cooling" -msgstr "冷却" - -#: fdmprinter.def.json -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "印刷中の冷却を有効にする" - -#: fdmprinter.def.json -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 "印刷中の冷却ファンを有効にします。ファンは、短いレイヤープリントやブリッジ/オーバーハングのレイヤーがある印刷物の品質を向上させます。" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "ファン速度" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "冷却ファンが回転する速度。" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "標準ファン速度" - -#: fdmprinter.def.json -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 "しきい値に達する前のファンの回転スピード。プリント速度がしきい値より速くなると、ファンの速度は上がっていきます。" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "最大ファン速度" - -#: fdmprinter.def.json -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 "最小積層時間でファンが回転する速度。しきい値に達すると、通常のファンの速度と最速の間でファン速度が徐々に加速しはじめます。" - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "標準/最大ファン速度のしきい値" - -#: fdmprinter.def.json -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 "通常速度と最速の間でしきい値を設定する積層時間。この時間よりも遅く印刷する積層は、通常速度を使用します。より速い層の場合、ファンは最高速度に向かって徐々に加速します。" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "初期ファン速度" - -#: fdmprinter.def.json -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 "プリント開始時にファンが回転する速度。後続のレイヤーでは、ファン速度は、高さに応じて早くなります。" - -#: fdmprinter.def.json -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "標準ファン速度時の高さ" - -#: fdmprinter.def.json -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 "通常速度でファンが回転するときの高さ。ここより下層レイヤーでは初期ファンのスピードから通常の速度まで徐々に増加します。" - -#: fdmprinter.def.json -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "標準ファン速度時のレイヤー" - -#: fdmprinter.def.json -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 "ファンが通常の速度で回転する時のレイヤー。通常速度のファンの高さが設定されている場合、この値が計算され、整数に変換されます。" - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "最小レイヤー時間" - -#: fdmprinter.def.json -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が無効になっていて、最小速度を下回った場合、最小レイヤー時間よりも短くなる場合があります。" - -#: fdmprinter.def.json -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "最低速度" - -#: fdmprinter.def.json -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 "最遅印刷速度。印刷の速度が遅すぎると、ノズル内の圧力が低すぎて印刷品質が低下します。" - -#: fdmprinter.def.json -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "ヘッド持ち上げ" - -#: fdmprinter.def.json -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 "レイヤーの最小プリント時間より早く印刷が終わった場合、ヘッド部分を持ち上げてレイヤーの最小プリント時間に到達するまで待機します。" - -#: fdmprinter.def.json -msgctxt "support label" -msgid "Support" -msgstr "サポート" - -#: fdmprinter.def.json -msgctxt "support description" -msgid "Support" -msgstr "サポート" - -#: fdmprinter.def.json -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "サポート開始" - -#: fdmprinter.def.json -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 "オーバーハングするモデルのサポートパーツの構造を形成します。これらのサポートがなければ、印刷は失敗します。" - -#: fdmprinter.def.json -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "サポート用エクストルーダー" - -#: fdmprinter.def.json -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "サポート材を印刷するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。" - -#: fdmprinter.def.json -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "サポート用インフィルエクストルーダー" - -#: fdmprinter.def.json -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 "サポート材のインフィルを印刷に使用するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。" - -#: fdmprinter.def.json -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "最初のレイヤー用サポートエクストルーダー" - -#: fdmprinter.def.json -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 "サポートのインフィルの最初の層を印刷に使用するエクストルーダー。複数のエクストルーダーがある場合に使用されます。" - -#: fdmprinter.def.json -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "サポートインタフェースエクストルーダー" - -#: fdmprinter.def.json -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 "サポートのルーフおよび底面を印刷するために使用するエクストルーダーの列。デュアルノズル時に使用されます。" - -#: fdmprinter.def.json -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "サポートルーフエクストルーダー" - -#: fdmprinter.def.json -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 "サポートのルーフ面をプリントする際のエクストルーダー列。デュアルノズル時に使用します。" - -#: fdmprinter.def.json -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "サポートフロアエクストルーダー" - -#: fdmprinter.def.json -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 "サポートのフロア面をプリントする際に使用するエクストルーダーの列。デュアルノズル時に使用します。" - -#: fdmprinter.def.json -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "サポート構造" - -#: fdmprinter.def.json -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 "サポートを生成するために利用できる技術を選択します。「標準」のサポート構造はオーバーハング部品のすぐ下に作成し、そのエリアを真下に生成します。「ツリー」サポートはオーバーハングエリアに向かって枝を作成し、モデルを枝の先端で支えます。枝をモデルのまわりにはわせて、できる限りビルドプレートから支えます。" - -#: fdmprinter.def.json -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "標準" - -#: fdmprinter.def.json -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "ツリー" - -#: fdmprinter.def.json -msgctxt "support_tree_angle label" -msgid "Tree Support Branch Angle" -msgstr "ツリーサポート枝角度" - -#: fdmprinter.def.json -msgctxt "support_tree_angle description" -msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "枝の角度。枝を垂直で安定したものにするためには小さい角度を使用します。高さを得るためには大きい角度を使用します。" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance label" -msgid "Tree Support Branch Distance" -msgstr "ツリーサポート枝間隔" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance description" -msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -msgstr "枝がモデルに接触するところで確保する枝の間隔。この間隔を小さくするとツリーサポートがモデルに接触する点が増え、支える効果が高まりますが、サポートの取り外しが難しくなります。" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter label" -msgid "Tree Support Branch Diameter" -msgstr "ツリーサポート枝直径" - -#: fdmprinter.def.json -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 "ツリーサポートの最も細い枝の直径。枝は太いほど丈夫です。基部に近いところでは、枝はこれよりも太くなります。" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter_angle label" -msgid "Tree Support Branch Diameter Angle" -msgstr "ツリーサポート枝直径角度" - -#: fdmprinter.def.json -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の場合、枝の太さは全長にわたって同じになります。少し角度を付けると、ツリーサポートの安定性が高まります。" - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution label" -msgid "Tree Support Collision Resolution" -msgstr "ツリーサポート衝突精細度" - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution description" -msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -msgstr "モデルに干渉しないようにする衝突計算の精細度。小さい値を設定すると、失敗の少ない正確なツリーが生成されますが、スライス時間は大きく増加します。" - -#: fdmprinter.def.json -msgctxt "support_type label" -msgid "Support Placement" -msgstr "サポート配置" - -#: fdmprinter.def.json -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に設定した場合、サポート材がモデルの上にもプリントされます。" - -#: fdmprinter.def.json -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "ビルドプレートにタッチ" - -#: fdmprinter.def.json -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "全対象" - -#: fdmprinter.def.json -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "サポートオーバーハング角度" - -#: fdmprinter.def.json -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° ではサポートが生成されません。" - -#: fdmprinter.def.json -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "サポートパターン" - -#: fdmprinter.def.json -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 "サポート材の形。サポート材の除去の方法を頑丈または容易にする設定が可能です。" - -#: fdmprinter.def.json -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "ライン" - -#: fdmprinter.def.json -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "グリッド" - -#: fdmprinter.def.json -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "トライアングル" - -#: fdmprinter.def.json -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "同心円" - -#: fdmprinter.def.json -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" - -#: fdmprinter.def.json -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "クロス" - -#: fdmprinter.def.json -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "ジャイロイド" - -#: fdmprinter.def.json -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "サポートウォールライン数" - -#: fdmprinter.def.json -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 "サポートインフィルを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" - -#: fdmprinter.def.json -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "サポートライン接続" - -#: fdmprinter.def.json -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 "サポートライン両端を接続します。この設定を有効にすると、より確実なサポートで抽出不足を解消しますが、材料の費用がかさみます。" - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "サポートジグザグ接続" - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "ジグザグを接続します。ジグザグ形のサポート材の強度が上がります。" - -#: fdmprinter.def.json -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "サポート密度" - -#: fdmprinter.def.json -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 "サポート材の密度を調整します。大きな値ではオーバーハングが良くなりますが、サポート材が除去しにくくなります。" - -#: fdmprinter.def.json -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "サポートライン距離" - -#: fdmprinter.def.json -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "印刷されたサポート材の間隔。この設定は、サポート材の密度によって算出されます。" - -#: fdmprinter.def.json -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "初期層サポートラインの距離" - -#: fdmprinter.def.json -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 "印刷した初期層間の距離が構造ライをサポートします。この設定は、対応濃度で算出されます。" - -#: fdmprinter.def.json -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "サポートインフィルラインの向き" - -#: fdmprinter.def.json -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度を使用します。" - -#: fdmprinter.def.json -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "サポートブリムを有効にする" - -#: fdmprinter.def.json -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 "最初の層のインフィルエリア内ブリムを生成します。このブリムは、サポートの周囲ではなく、サポートの下に印刷されます。この設定を有効にすると、サポートのビルドプレートへの吸着性が高まります。" - -#: fdmprinter.def.json -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "サポートブリムの幅" - -#: fdmprinter.def.json -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 "サポートの下に印刷されるブリムの幅。ブリムが大きいほど、追加材料の費用でビルドプレートへの接着性が強化されます。" - -#: fdmprinter.def.json -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "サポートブリムのライン数" - -#: fdmprinter.def.json -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 "サポートブリムに使用される線の数。ブリムの線数を増やすと、追加材料の費用でビルドプレートへの接着性が強化されます。" - -#: fdmprinter.def.json -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "サポートZ距離" - -#: fdmprinter.def.json -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. This value is rounded up to a multiple of the layer height." -msgstr "サポート材のトップ/ボトム部分と印刷物との距離。この幅がプリント後のサポート材を除去する隙間を作ります。値は積層ピッチの倍数にて計算されます。" - -#: fdmprinter.def.json -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "サポート上部距離" - -#: fdmprinter.def.json -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "サポートの上部から印刷物までの距離。" - -#: fdmprinter.def.json -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "サポート底部距離" - -#: fdmprinter.def.json -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "印刷物とサポート材底部までの距離。" - -#: fdmprinter.def.json -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "サポートX/Y距離" - -#: fdmprinter.def.json -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "印刷物からX/Y方向へのサポート材との距離。" - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "サポート距離優先順位" - -#: fdmprinter.def.json -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の距離を無効にすることで、無効にできる。" - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/YがZを上書き" - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "ZがX/Yを上書き" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "最小サポートX/Y距離" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "X/Y方向におけるオーバーハングからサポートまでの距離。" - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "サポート階段高さ" - -#: fdmprinter.def.json -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 "モデルにのっている階段状のサポートの底のステップの高さ。値を小さくするとサポートを除去するのが困難になりますが、値が大きすぎるとサポートの構造が不安定になる可能性があります。ゼロに設定すると、階段状の動作をオフにします。" - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "サポート階段最大幅" - -#: fdmprinter.def.json -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 "モデルにのっている階段のような下部のサポートのステップの最大幅。低い値にするサポートの除去が困難になり、高すぎる値は不安定なサポート構造につながります。" - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "サポートステアステップ最小傾斜角度" - -#: fdmprinter.def.json -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 "ステアステップ効果を発揮するための、エリアの最小スロープです。小さい値を指定すると勾配が緩くなりサポートを取り除きやすくなりますが、値が非常に小さいと、モデルの他の部品に直感的に非常にわかりにくい結果が表れる場合があります。" - -#: fdmprinter.def.json -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "サポート接合距離" - -#: fdmprinter.def.json -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 つにマージされます。" - -#: fdmprinter.def.json -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "サポート水平展開" - -#: fdmprinter.def.json -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 "各レイヤーのサポート用ポリゴンに適用されるオフセットの量。正の値はサポート領域を円滑にし、より丈夫なサポートにつながります。" - -#: fdmprinter.def.json -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "サポートインフィルレイヤー厚さ" - -#: fdmprinter.def.json -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 "サポートのインフィルの厚さ。この値はレイヤーの倍数にする必要があり、違う場合は倍数に近い値に設定されます。" - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "サポートインフィル半減回数" - -#: fdmprinter.def.json -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 "天井面より下に遠ざかる際にサポートのインフィル密度が半減する回数 天井面に近い領域ほど高い密度となり、サポートのインフィル密度になります。" - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "サポートインフィル半減前の高さ" - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "密度が半分に切り替える前の所定のサポートのインフィルの高さ。" - -#: fdmprinter.def.json -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "最小サポート領域" - -#: fdmprinter.def.json -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 "ポリゴンをサポートする最小領域サイズ。この領域よりポリゴンが小さい場合は生成されません。" - -#: fdmprinter.def.json -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "サポートインタフェースを有効にする" - -#: fdmprinter.def.json -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 "モデルとサポートの間に密なインターフェースを生成します。これにより、モデルが印刷されているサポートの上部、モデル上のサポートの下部にスキンが作成されます。" - -#: fdmprinter.def.json -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "サポートルーフを有効にする" - -#: fdmprinter.def.json -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 "サポートの上部とモデルの間に高密度の厚板を形成します。モデルとサポート材の間にスキンが作成されます。" - -#: fdmprinter.def.json -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "サポートフロアを有効にする" - -#: fdmprinter.def.json -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 "サポートの上部とモデルの間に高密度の厚板を形成します。モデルとサポート材の間にスキンが作成されます。" - -#: fdmprinter.def.json -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "サポートインタフェース厚さ" - -#: fdmprinter.def.json -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 "底面または上部のモデルと接触するサポートのインターフェイスの厚さ。" - -#: fdmprinter.def.json -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "サポートルーフ厚さ" - -#: fdmprinter.def.json -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 "サポートのルーフの厚さ。これは、モデルの下につくサポートの上部にある密度の量を制御します。" - -#: fdmprinter.def.json -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "サポートフロア厚さ" - -#: fdmprinter.def.json -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 "サポート材の底部の厚さ。これは、サポートが置かれるモデル上の積層密度を制御します。" - -#: fdmprinter.def.json -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "サポートインタフェース解像度" - -#: fdmprinter.def.json -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 "サポートの上下にモデルがあるかどうか確認するには、特定のサポートの高さを見ます。低い値はスライスに時間がかかり、高い値にするとサポートのインターフェイスがある場所に通常のサポートを印刷する可能性があります。" - -#: fdmprinter.def.json -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 "プリントのインフィルの密度を調整します。" #: fdmprinter.def.json msgctxt "support_interface_density description" @@ -4162,898 +137,19 @@ msgid "Adjusts the density of the roofs and floors of the support structure. A h msgstr "サポート材のルーフとフロアの密度を調整します 大きな値ではオーバーハングでの成功率があがりますが、サポート材が除去しにくくなります。" #: fdmprinter.def.json -msgctxt "support_roof_density label" -msgid "Support Roof 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 "サポート材の密度を調整します。大きな値ではオーバーハングが良くなりますが、サポート材が除去しにくくなります。" #: fdmprinter.def.json -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 "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。" #: fdmprinter.def.json -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "サポートルーフライン距離" - -#: fdmprinter.def.json -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 "印刷されたサポートルーフ線間の距離。この設定は、サポート密度によって計算されますが、個別に調整することもできます。" - -#: fdmprinter.def.json -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "サポートフロア密度" - -#: fdmprinter.def.json -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 "サポート構造のフロアの密度です。高い値は、サポートのよりよい接着を促します。" - -#: fdmprinter.def.json -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "サポートフロアライン距離" - -#: fdmprinter.def.json -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 "印刷されたサポートのフロアのライン間の距離。この設定は、密度によって計算されますが、個別に調整することもできます。" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "サポートインタフェースパターン" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "モデルとサポートのインタフェースが印刷されるパターン。" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "ライン" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "グリッド" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "トライアングル" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "同心円" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "サポートルーフパターン" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "サポートのルーフが印刷されるパターン。" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "ライン" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "グリッド" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "トライアングル" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "同心円" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "サポートフロアパターン" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "サポートのフロアが印刷されるパターン。" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "ライン" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "グリッド" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "トライアングル" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "同心円" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" - -#: fdmprinter.def.json -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "最小サポートインターフェイス領域" - -#: fdmprinter.def.json -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 "サポートインターフェイスポリゴンの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" - -#: fdmprinter.def.json -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "最小サポートルーフ領域" - -#: fdmprinter.def.json -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 "サポートのルーフの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" - -#: fdmprinter.def.json -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "最小サポートフロア領域" - -#: fdmprinter.def.json -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 "サポートのフロアの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" - -#: fdmprinter.def.json -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "サポートインターフェイス水平展開" - -#: fdmprinter.def.json -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "サポートインターフェイスポリゴンに適用されるオフセット量。" - -#: fdmprinter.def.json -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "サポートルーフ水平展開" - -#: fdmprinter.def.json -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "サポートのルーフに適用されるオフセット量。" - -#: fdmprinter.def.json -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "サポートフロア水平展開" - -#: fdmprinter.def.json -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "サポートのフロアに適用されるオフセット量。" - -#: fdmprinter.def.json -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "サポート面のライン方向" - -#: fdmprinter.def.json -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度を使用)。" - -#: fdmprinter.def.json -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "サポートルーフライン方向" - -#: fdmprinter.def.json -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度を使用)。" - -#: fdmprinter.def.json -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "サポートフロアライン方向" - -#: fdmprinter.def.json -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度を使用)。" - -#: fdmprinter.def.json -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "ファン速度上書き" - -#: fdmprinter.def.json -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "有効にすると、サポートを超えた直後に印刷冷却ファンの速度がスキン領域に対して変更されます。" - -#: fdmprinter.def.json -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "サポート対象スキンファン速度" - -#: fdmprinter.def.json -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 "サポートを超えた直後にスキン領域に印字するときに使用するファン速度を割合で示します。高速ファンを使用すると、サポートが取り外しやすくなります。" - -#: fdmprinter.def.json -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "使用タワー" - -#: fdmprinter.def.json -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 "特殊なタワーを使用して、小さなオーバーハングしているエリアをサポートします。これらの塔は、サポートできる領域より大きな直径を支えれます。オーバーハング付近では塔の直径が減少し、ルーフを形成します。" - -#: fdmprinter.def.json -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "タワー直径" - -#: fdmprinter.def.json -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "特別な塔の直径。" - -#: fdmprinter.def.json -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "最大タワーサポート直径" - -#: fdmprinter.def.json -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方向の最小直径。" - -#: fdmprinter.def.json -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "タワールーフ角度" - -#: fdmprinter.def.json -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 "タワーの屋上の角度。値が高いほど尖った屋根が得られ、値が低いほど屋根が平らになります。" - -#: fdmprinter.def.json -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "サポートメッシュの下処理" - -#: fdmprinter.def.json -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 "サポートメッシュの下のサポート材を全箇所に作ります、これはサポートメッシュ下にてオーバーハングしないようにするためです。" - -#: fdmprinter.def.json -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "シーンにサポートメッシュがある" - -#: fdmprinter.def.json -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "シーンにはサポートメッシュがあります。この設定はCuraで制御されます。" - -#: fdmprinter.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "ビルドプレート密着性" - -#: fdmprinter.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "密着性" - -#: fdmprinter.def.json -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "プライムボルブを有効にする" - -#: fdmprinter.def.json -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 "印刷する前にフィラメントの小さな塊を作るかどうか。この設定をオンにすると、エクストルーダーがノズルにおいて印刷予定のマテリアルの下準備をします。印刷後ブリムまたはスカートも、上記と同じような意味を持ちます。この設定をオフにすると時間の節約にはなります。" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "エクストルーダープライムX位置" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "プリント開始時のノズルの位置を表すX座標。" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "エクストルーダープライムY位置" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "プリント開始時にノズル位置を表すY座標。" - -#: fdmprinter.def.json -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "ビルドプレート接着タイプ" - -#: fdmprinter.def.json -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は、モデルの下に太いグリッドを追加します。スカートはモデルの周りに印刷されたラインですが、モデルには接続されていません。" - -#: fdmprinter.def.json -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "スカート" - -#: fdmprinter.def.json -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "ブリム" - -#: fdmprinter.def.json -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "ラフト" - -#: fdmprinter.def.json -msgctxt "adhesion_type option none" -msgid "None" -msgstr "なし" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "ビルドプレート接着エクストルーダー" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "スカート/ブリム/ラフトをプリントする際のエクストルーダー。これはマルチエクストルージョン時に使用されます。" - -#: fdmprinter.def.json -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "スカート/ブリムエクストルーダー" - -#: fdmprinter.def.json -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 "スカートまたはブリムをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" - -#: fdmprinter.def.json -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "ラフトベースエクストルーダー" - -#: fdmprinter.def.json -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 "ラフトの最初のレイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" - -#: fdmprinter.def.json -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "ラフト中間エクストルーダー" - -#: fdmprinter.def.json -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 "ラフトの中間レイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" - -#: fdmprinter.def.json -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "ラフトトップエクストルーダー" - -#: fdmprinter.def.json -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 "ラフトのトップレイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" - -#: fdmprinter.def.json -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "スカートライン数" - -#: fdmprinter.def.json -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に設定するとスカートが無効になります。" - -#: fdmprinter.def.json -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "スカート距離" - -#: fdmprinter.def.json -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" -"これは最小距離です。複数のスカートラインがこの距離から外側に展開されます。" - -#: fdmprinter.def.json -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "スカート/ブリム最小長さ" - -#: fdmprinter.def.json -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に設定されている場合、これは無視されます。" - -#: fdmprinter.def.json -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "ブリム幅" - -#: fdmprinter.def.json -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 "モデルから最外線のブリムまでの距離。大きなブリムは、ビルドプレートへの接着を高めますが、有効な印刷面積も減少させます。" - -#: fdmprinter.def.json -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "ブリムライン数" - -#: fdmprinter.def.json -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 "ブリムに使用される線数。ブリムの線数は、ビルドプレートへの接着性を向上させるだけでなく、有効な印刷面積を減少させる。" - -#: fdmprinter.def.json -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "ブリム距離" - -#: fdmprinter.def.json -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 "最初のブリムラインとプリントの最初のレイヤーの輪郭との間の水平距離。小さなギャップがあると、ブリムの取り外しが容易になり、断熱性の面でもメリットがあります。" - -#: fdmprinter.def.json -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "ブリム交換サポート" - -#: fdmprinter.def.json -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 "スペースがサポートで埋まっている場合でも、モデルの周辺にブリムを印刷します。これにより、サポートの最初の層の一部のエリアがブリムになります。" - -#: fdmprinter.def.json -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "外側にブリムのみ印刷" - -#: fdmprinter.def.json -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 "モデルの外側のみにブリムを印刷します。これにより、後で取り除くブリムの量が減少します。またプレートへの接着力はそれほど低下しません。" - -#: fdmprinter.def.json -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "ラフトの余分なマージン" - -#: fdmprinter.def.json -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 "ラフトが有効になっている場合、モデルの周りに余分なラフト領域ができます。値を大きくするとより強力なラフトができますが、多くの材料を使用し、造形範囲は少なくなります。" - -#: fdmprinter.def.json -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "ラフト補整" - -#: fdmprinter.def.json -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 "この設定は、ラフトの輪郭の内側の角がどの程度丸められるかを制御します。内側の角は、ここで指定した値と等しい半径の半円に丸められます。この設定は、そのような円よりも小さいラフトの輪郭の穴を削除します。" - -#: fdmprinter.def.json -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "ラフト間のラップ" - -#: fdmprinter.def.json -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層のみを上げることで、ラフトとモデルとの間の結合を低下させる。結果ラフトを剥がしやすくします。" - -#: fdmprinter.def.json -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "初期レイヤーZのオーバーラップ" - -#: fdmprinter.def.json -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 "エアギャップ内で失われたフィラメントを補うために、モデルの第1層と第2層をZ方向にオーバーラップさせます。この値によって、最初のモデルレイヤーがシフトダウンされます。" - -#: fdmprinter.def.json -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "ラフト最上層" - -#: fdmprinter.def.json -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よりも滑らかな上面をもたらす。" - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "ラフト最上層厚さ" - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "トップラフト層の層厚。" - -#: fdmprinter.def.json -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "ラフト最上ライン幅" - -#: fdmprinter.def.json -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 "ラフトの上面の線の幅。これらは細い線で、ラフトの頂部が滑らかになります。" - -#: fdmprinter.def.json -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "ラフト最上面スペース" - -#: fdmprinter.def.json -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 "上のラフト層とラフト線の間の距離。間隔は線の幅と同じにして、サーフェスがソリッドになるようにします。" - -#: fdmprinter.def.json -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "ラフト中間レイヤー" - -#: fdmprinter.def.json -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 "ラフトのベースと表面の間にあるレイヤーの数。これらのレイヤーがラフトの厚さの主要部分を占めています。この値を増やすと、より厚さのある丈夫なラフトになります。" - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "ラフト中央厚さ" - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "中間のラフト層の層の厚さ。" - -#: fdmprinter.def.json -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "ラフト中央ライン幅" - -#: fdmprinter.def.json -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層をより押し出すと、ラインがビルドプレートに固着します。" - -#: fdmprinter.def.json -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "ラフト中間スペース" - -#: fdmprinter.def.json -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 "中間ラフト層とラフト線の間の距離。中央の間隔はかなり広くなければならず、トップラフト層を支えるために十分な密度でなければならない。" - -#: fdmprinter.def.json -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "ラフトベース厚さ" - -#: fdmprinter.def.json -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 "ベースラフト層の層厚さ。プリンタのビルドプレートにしっかりと固着する厚い層でなければなりません。" - -#: fdmprinter.def.json -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "ラフトベースライン幅" - -#: fdmprinter.def.json -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 "ベースラフト層の線幅。ビルドプレートの接着のため太い線でなければなりません。" - -#: fdmprinter.def.json -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "ラフトベースラインスペース" - -#: fdmprinter.def.json -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 "ベースラフト層のラフトライン間の距離。広い間隔は、ブルドプレートからのラフトの除去を容易にする。" - -#: fdmprinter.def.json -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "ラフト印刷速度" - -#: fdmprinter.def.json -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "ラフトが印刷される速度。" - -#: fdmprinter.def.json -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "ラフト上層印刷速度" - -#: fdmprinter.def.json -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 "トップラフト層が印刷される速度。この値はノズルが隣接するサーフェスラインをゆっくりと滑らかにするために、少し遅く印刷する必要があります。" - -#: fdmprinter.def.json -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "ラフト中間印刷速度" - -#: fdmprinter.def.json -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 "ミドルラフト層が印刷される速度。ノズルから出てくるマテリアルの量がかなり多いので、ゆっくりと印刷されるべきである。" - -#: fdmprinter.def.json -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "ラフトベース印刷速度" - -#: fdmprinter.def.json -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 "ベースラフト層が印刷される速度。これは、ノズルから出てくるマテリアルの量がかなり多いので、ゆっくりと印刷されるべきである。" - -#: fdmprinter.def.json -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "ラフト印刷加速度" - -#: fdmprinter.def.json -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "ラフト印刷時の加速度。" - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "ラフト上層層印刷加速度" - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "ラフトのトップ印刷時の加速度。" - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "ラフト中間層印刷加速度" - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "ラフトの中間層印刷時の加速度。" - -#: fdmprinter.def.json -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "ラフトベース印刷加速度" - -#: fdmprinter.def.json -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "ラフトの底面印刷時の加速度。" - -#: fdmprinter.def.json -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "ラフト印刷ジャーク" - -#: fdmprinter.def.json -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "ラフトが印刷時のジャーク。" - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "ラフト上層印刷ジャーク" - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "トップラフト層印刷時のジャーク。" - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "ラフト中間層印刷ジャーク" - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "ミドルラフト層印刷時のジャーク。" - -#: fdmprinter.def.json -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "ラフトベース印刷ジャーク" - -#: fdmprinter.def.json -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "ベースラフト層印刷時のジャーク。" - -#: fdmprinter.def.json -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "ラフトファン速度" - -#: fdmprinter.def.json -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "ラフト印刷時のファンの速度。" - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "ラフト上層ファン速度" - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "トップラフト印刷時のファンの速度。" - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "ラフト中間層ファン速度" - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "ミドルラフト印刷時のファンの速度。" - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "ラフトベースファン速度" - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "ベースラフト層印刷時のファン速度。" - -#: fdmprinter.def.json -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "デュアルエクストルーダー" - -#: fdmprinter.def.json -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "デュアルエクストルーダーで印刷するための設定。" - -#: fdmprinter.def.json -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "プライムタワーを有効にする" - -#: fdmprinter.def.json -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "印刷物の横にタワーを造形して、ノズル交換後にフィラメントの調整をします。" - -#: fdmprinter.def.json -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "プライムタワーのサイズ" - -#: fdmprinter.def.json -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "プライムタワーの幅。" - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "プライムタワー最小容積" - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "プライムタワーの各層の最小容積。" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "プライムタワーX位置" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "プライムタワーの位置のx座標。" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "プライムタワーY位置" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "プライムタワーの位置のy座標。" - -#: fdmprinter.def.json -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 "サポート材の配置を調整します。配置はTouching BuildplateまたはEveryWhereに設定することができます。EveryWhereに設定した場合、サポート材がモデルの上にもプリントされます。" #: fdmprinter.def.json msgctxt "prime_tower_wipe_enabled description" @@ -5061,244 +157,14 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "1本のノズルでプライムタワーを印刷した後、もう片方のノズルから滲み出した材料をプライムタワーが拭き取ります。" #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -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 "マシーンが1つのエクストルーダーからもう一つのエクストルーダーに切り替えられた際、ビルドプレートが下降して、ノズルと印刷物との間に隙間が形成される。これによりノズルが造形物の外側にはみ出たマテリアルを残さないためである。" #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "モデルがない場合でも、プライムタワーには、ブリムによって与えられる追加の付着が必要なことがあります。現在は「ラフト」密着型では使用できません。" - -#: fdmprinter.def.json -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Ooze Shieldを有効にする" - -#: fdmprinter.def.json -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つ目のノズルを綺麗にします。" - -#: fdmprinter.def.json -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Ooze Shield角度" - -#: fdmprinter.def.json -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度は水平である。角度を小さくすると、壁が少なくなりますが、より多くの材料が使用されます。" - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Ooze Shield距離" - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "壁(ooze shield)の造形物からの距離。" - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "ノズルスイッチ引き戻し距離" - -#: fdmprinter.def.json -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に設定します。これは通常、ヒートゾーンの長さと同じに設定します。" - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "ノズルスイッチ引き戻し速度" - -#: fdmprinter.def.json -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 "フィラメントを引き戻す速度。速度が早い程良いが早すぎるとフィラメントを削ってしまう可能性があります。" - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "ノズルスイッチ引き込み速度" - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "ノズル切り替え中のフィラメントの引き込み速度。" - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "ノズルスイッチ押し戻し速度" - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "ノズル スイッチ後にフィラメントが押し戻される速度。" - -#: fdmprinter.def.json -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "ノズル切替え後のプライムに必要な余剰量" - -#: fdmprinter.def.json -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "ノズル切替え後のプライムに必要な余剰材料。" - -#: fdmprinter.def.json -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "メッシュ修正" - -#: fdmprinter.def.json -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "3Dプリンティングにさらに適したメッシュを作成します。" - -#: fdmprinter.def.json -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "重複量" - -#: fdmprinter.def.json -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つとして印刷します。これにより、意図しない内部空洞が消えることがあります。" - -#: fdmprinter.def.json -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "全穴除去" - -#: fdmprinter.def.json -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 "各レイヤーの穴を消し、外形のみを保持します。これにより、見えない部分の不要な部分が無視されますが、表面上にある穴も全て造形されなくなります。" - -#: fdmprinter.def.json -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "強めのスティッチング" - -#: fdmprinter.def.json -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 "強めのスティッチングは、穴をメッシュで塞いでデータを作成します。このオプションは、長い処理時間が必要となります。" - -#: fdmprinter.def.json -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "スティッチできない部分を保持" - -#: fdmprinter.def.json -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を生成できない場合の最後の手段として使用する必要があります。" - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "重複メッシュのマージ" - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "触れているメッシュを少し重ねてください。これによって、より良い接着をします。" - -#: fdmprinter.def.json -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "重複メッシュの削除" - -#: fdmprinter.def.json -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つのマテリアルのオブジェクトが互いに重なっている場合に使用されます。" - -#: fdmprinter.def.json -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "代替メッシュの削除" - -#: fdmprinter.def.json -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 "交差するメッシュがどのレイヤーに属しているかを切り替えることで、オーバーラップしているメッシュを絡み合うようにします。この設定をオフにすると、一方のメッシュはオーバーラップ内のすべてのボリュームを取得し、他方のメッシュは他から削除されます。" - -#: fdmprinter.def.json -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "空の最初のメッシュの削除" - -#: fdmprinter.def.json -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 "最初に印刷したレイヤーの下に空のレイヤーがある場合は取り除きます。この設定を無効にすると、スライストレランスが「排他」または「中間」に設定されている場合に最初のレイヤーが空になる原因になります。" - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "最大解像度" - -#: fdmprinter.def.json -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 コードの処理速度に追いつくことができ、処理できないメッシュの詳細を取り除いてスライス速度を速めます。" - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "最大移動解像度" - -#: fdmprinter.def.json -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 コードの処理速度に追いつくことができますが、精度が低下します。" - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "最大偏差" - -#: fdmprinter.def.json -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となります。" - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "最大押出領域偏差" - -#: fdmprinter.def.json -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は小さくなります。" - -#: fdmprinter.def.json -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "特別モード" - -#: fdmprinter.def.json -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "これまでにないモデルの印刷方法です。" - -#: fdmprinter.def.json -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "印刷頻度" - -#: fdmprinter.def.json -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 "retraction_combing option all" +msgid "All" +msgstr "すべて" #: fdmprinter.def.json msgctxt "print_sequence option all_at_once" @@ -5306,1271 +172,19 @@ msgid "All at Once" msgstr "一度にすべて" #: fdmprinter.def.json -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "1つずつ" +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 "プリントの解像度に影響を与えるすべての設定。これらの設定は、品質(および印刷時間)に大きな影響を与えます。" #: fdmprinter.def.json -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "インフィルメッシュ" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "代替予備壁" #: fdmprinter.def.json -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は使用しないことをお勧めします。" - -#: fdmprinter.def.json -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "メッシュ処理ランク" - -#: fdmprinter.def.json -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 "インフィルメッシュの重なりが複数生じた場合のこのメッシュの優先度を決定します。複数のインフィルメッシュの重なりがあるエリアでは、最もランクが高いメッシュの設定になります。ランクが高いインフィルメッシュは、ランクが低いインフィルメッシュのインフィルと通常のメッシュを変更します。" - -#: fdmprinter.def.json -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "メッシュ切断" - -#: fdmprinter.def.json -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つの特定のメッシュ領域の設定を、、全く別のエクストルーダーで作成することができます。" - -#: fdmprinter.def.json -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "型" - -#: fdmprinter.def.json -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 "型を取るため印刷し、ビルドプレート上の同じようなモデルを得るためにキャスト用の印刷をします。" - -#: fdmprinter.def.json -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "最小型幅" - -#: fdmprinter.def.json -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "型の外側とモデルの外側との間の最小距離です。" - -#: fdmprinter.def.json -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "型ルーフ高さ" - -#: fdmprinter.def.json -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "型を印刷するためのモデルの水平部分上の高さ。" - -#: fdmprinter.def.json -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "型角度" - -#: fdmprinter.def.json -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度は輪郭に従いモデルの外側の外殻をつくります。" - -#: fdmprinter.def.json -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "サポートメッシュ" - -#: fdmprinter.def.json -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "このメッシュを使用してサポート領域を指定します。これは、サポート構造を生成するために使用できます。" - -#: fdmprinter.def.json -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "メッシュオーバーハング例外" - -#: fdmprinter.def.json -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 "このメッシュを使用して、モデルのどの部分をオーバーハングとして検出する必要がないかを指定します。これは、不要なサポート構造を削除するために使用できます。" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "表面モード" - -#: fdmprinter.def.json -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\"は通常と同様に囲まれた内部を印刷し残りのポリゴンをサーフェスとして印刷します。" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "標準" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "表面" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "両方" - -#: fdmprinter.def.json -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "滑らかな外側輪郭" - -#: fdmprinter.def.json -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の動きを促し、この機能によりソリッドのモデルを固定した底辺と単一のウォールの印刷にします。この機能は各レイヤーが単一の部品を含んでいる場合のみに有効です。" - -#: fdmprinter.def.json -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "滑らかな輪郭" - -#: fdmprinter.def.json -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シームは印刷物上でほとんどみえませんが、層ビューでは確認できます)。スムージングは、細かい表面の詳細をぼかす傾向があることに注意してください。" - -#: fdmprinter.def.json -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "相対押出" - -#: fdmprinter.def.json -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スクリプトが出力される前にエクストルーダーのモードは常に絶対値にて設定されています。" - -#: fdmprinter.def.json -msgctxt "experimental label" -msgid "Experimental" -msgstr "実験" - -#: fdmprinter.def.json -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "これからもっと充実させていく機能です。" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "スライス公差" - -#: fdmprinter.def.json -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 "スライスされたレイヤーにおける垂直方向の公差です。レイヤーの輪郭は通常、各レイヤーの厚さの中間を通る断面で生成されます(中間)。代わりに、レイヤーごとに、ボリューム内にレイヤーの厚さの分だけ入り込んだエリアにしたり(排他)、レイヤー内の任意の位置まで入り込んだエリアにしたりする(包括)こともできます。排他は最も細かく、包括は最もフィットし、中間は元の表面に最も近くなります。" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "中間" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "排他" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "包括" - -#: fdmprinter.def.json -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "最上面のライン幅" - -#: fdmprinter.def.json -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "プリントの上部の 線の幅。" - -#: fdmprinter.def.json -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "上部表面パターン" - -#: fdmprinter.def.json -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "上層のパターン。" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "直線" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "同心円" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" - -#: fdmprinter.def.json -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "上面方向一貫性" - -#: fdmprinter.def.json -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 "上面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" - -#: fdmprinter.def.json -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "最上面のラインの向き" - -#: fdmprinter.def.json -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 度)になっています。" - -#: fdmprinter.def.json -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "インフィル移動最適化" - -#: fdmprinter.def.json -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 "有効化すると、移動距離が減少するようにインフィルラインをプリントする順序が最適化されます。移動時間の削減は、スライスするモデル、インフィルパターン、密度などに大きく依存します。特に、インフィルを行う小さなエリアが多数あるモデルの場合、モデルをスライスする時間が大きく増えることがあります。" - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature label" -msgid "Auto Temperature" -msgstr "自動温度" - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature description" -msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -msgstr "その画層の平均流速で自動的にレイヤーごとに温度を変更します。" - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "フロー温度グラフ" - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "マテリアルフロー(毎秒 3mm) と温度 (° c) をリンクします。" - -#: fdmprinter.def.json -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "最小ポリゴン円周" - -#: fdmprinter.def.json -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 モデルです。" - -#: fdmprinter.def.json -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "接続部分のサポート分割" - -#: fdmprinter.def.json -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 "サポートラインの接続部分をスキップし、サポート材部分を壊れやすくします。この設定はジグザクのサポートインフィル材のパターンにて適用できます。" - -#: fdmprinter.def.json -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "サポート分割サイズ" - -#: fdmprinter.def.json -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ミリ時に、サポートの接続をわざと外し、後のサポート材の構造をもろくし、壊れやすくする。" - -#: fdmprinter.def.json -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "サポート分割ライン数" - -#: fdmprinter.def.json -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ミリ時に、サポートの接続をわざとスキップし、後のサポート材の構造をもろくし、壊れやすくする。" - -#: fdmprinter.def.json -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "ドラフトシールドを有効にする" - -#: fdmprinter.def.json -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 "これにより、モデルの周囲に壁ができ、熱を閉じ込め、外気の流れを遮蔽します。特に反りやすい材料に有効です。" - -#: fdmprinter.def.json -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "ドラフトシールドとX/Yの距離" - -#: fdmprinter.def.json -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "ドラフトシールドと造形物のX / Y方向の距離。" - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "ドラフトシールドの制限" - -#: fdmprinter.def.json -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 "ドラフトシールドの高さを設定します。ドラフトシールドは、モデルの全高、または限られた高さで印刷するように選択します。" - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "制限なし" - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "制限あり" - -#: fdmprinter.def.json -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "ドラフトシールドの高さ" - -#: fdmprinter.def.json -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "ドラフトシールドの高さ制限。この高さを超えるとドラフトシールドが印刷されません。" - -#: fdmprinter.def.json -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "オーバーハング印刷可能" - -#: fdmprinter.def.json -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 "最小限のサポートが必要となるように印刷モデルのジオメトリを変更します。急なオーバーハングは浅いオーバーハングになります。オーバーハングした領域は、より垂直になるように下がります。" - -#: fdmprinter.def.json -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "最大モデル角度" - -#: fdmprinter.def.json -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°では、モデルは決して変更されません。" - -#: fdmprinter.def.json -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "オーバーハングした穴の最大領域" - -#: fdmprinter.def.json -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²の場合、モデル底部にあるすべての穴は充填されます。" - -#: fdmprinter.def.json -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "コースティングを有効にする" - -#: fdmprinter.def.json -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 "コースティングは、それぞれの造形ラインの最後の部分をトラベルパスで置き換えます。はみ出た材料は、糸引きを減らすために造形ライン最後の部分を印刷するために使用される。" - -#: fdmprinter.def.json -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "コースティングのボリューム" - -#: fdmprinter.def.json -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "はみ出るフィラメントのボリューム。この値は、一般に、ノズル直径の3乗に近い値でなければならない。" - -#: fdmprinter.def.json -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "コースティング前の最小ボリューム" - -#: fdmprinter.def.json -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 "コースティングに必要な最小の容積。より小さい押出経路の場合、ボーデンチューブにはより少ない圧力しか蓄積されないので、コースティングの容積は比例する。この値は、常に、コースティングのボリュームよりも大きな必要があります。" - -#: fdmprinter.def.json -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "コースティング速度" - -#: fdmprinter.def.json -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%よりわずかに低い値が推奨される。" - -#: fdmprinter.def.json -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "3Dクロスポケットのサイズ" - -#: fdmprinter.def.json -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パターンが交差するポケットの大きさはそのパターンが触れている高さ。" - -#: fdmprinter.def.json -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "クロス画像のインフィル密度" - -#: fdmprinter.def.json -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 "画像ファイルの位置。この画像の輝度値で印刷のインフィル内の対象箇所における最小密度が決まります。" - -#: fdmprinter.def.json -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "サポート用クロス画像のインフィル密度" - -#: fdmprinter.def.json -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 "画像ファイルの位置。この画像の輝度値でサポートの対象箇所における最小密度が決まります。" - -#: fdmprinter.def.json -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "円錐サポートを有効にする" - -#: fdmprinter.def.json -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "オーバーハング部分よりも底面の支持領域を小さくする。" - -#: fdmprinter.def.json -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "円錐サポートの角度" - -#: fdmprinter.def.json -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度は水平である。角度が小さいと、サポートはより頑丈になりますが、より多くのマテリアルが必要になります。負の角度は、サポートのベースがトップよりも広くなります。" - -#: fdmprinter.def.json -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "円錐サポートの最大幅" - -#: fdmprinter.def.json -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 "円錐形のサポート領域のベースが縮小される最小幅。幅が狭いと、サポートが不安定になる可能性があります。" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "ファジースキン" - -#: fdmprinter.def.json -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 "外壁を印刷する際に振動が起こり、表面が粗くてぼやける。" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "ファジースキン外のみ" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "部品の輪郭のみに振動が起こり、部品の穴には起こりません。" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "ファジースキンの厚さ" - -#: fdmprinter.def.json -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 "振動が起こる幅。内壁は変更されていないので、これを外壁の幅より小さく設定することをお勧めします。" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "ファジースキンの密度" - -#: fdmprinter.def.json -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 "レイヤー内の各ポリゴンに導入されたポイントの平均密度。ポリゴンの元の点は破棄されるため、密度が低いと解像度が低下します。" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "ファジースキン点間距離" - -#: fdmprinter.def.json -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 "各線分に導入されたランダム点間の平均距離。ポリゴンの元の点は破棄されるので、積層の値を低くすることで、なめらかな仕上がりになります。この値は、ファジースキンの厚さの半分よりも大きくなければなりません。" - -#: fdmprinter.def.json -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "流量補正時の最大抽出オフセット" - -#: fdmprinter.def.json -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)。" - -#: fdmprinter.def.json -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "流量補正要因" - -#: fdmprinter.def.json -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秒の押出で移動する距離の割合として指定します。" - -#: fdmprinter.def.json -msgctxt "wireframe_enabled label" -msgid "Wire Printing" -msgstr "ワイヤ印刷" - -#: fdmprinter.def.json -msgctxt "wireframe_enabled description" -msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -msgstr "薄い空気中に印刷し、疎なウエブ構造で外面のみを印刷します。これは、上向きおよび斜め下向きの線を介して接続された所定のZ間隔でモデルの輪郭を水平に印刷することによって実現される。" - -#: fdmprinter.def.json -msgctxt "wireframe_height label" -msgid "WP Connection Height" -msgstr "WPの高さ" - -#: fdmprinter.def.json -msgctxt "wireframe_height description" -msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -msgstr "2つの水平なパーツ間の、上向きおよび斜め下向きの線の高さ。これは、ネット構造の全体密度を決定します。ワイヤ印刷のみに適用されます。" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset label" -msgid "WP Roof Inset Distance" -msgstr "WPルーフ距離のオフセット" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset description" -msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -msgstr "ルーフから内側に輪郭を描くときの距離。ワイヤ印刷のみに適用されます。" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed label" -msgid "WP Speed" -msgstr "WP速度" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed description" -msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -msgstr "マテリアルを押し出すときにノズルが動く速度。ワイヤ印刷のみに適用されます。" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom label" -msgid "WP Bottom Printing Speed" -msgstr "WP底面印字速度" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom description" -msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -msgstr "ブルドプラットフォームに接触する第1層の印刷速度。ワイヤ印刷のみに適用されます。" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up label" -msgid "WP Upward Printing Speed" -msgstr "WP上向き印字速度" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up description" -msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -msgstr "薄い空気の中で上向きに線を印刷する速度。ワイヤ印刷のみに適用されます。" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down label" -msgid "WP Downward Printing Speed" -msgstr "WP下向き印字速度" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down description" -msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -msgstr "斜め下方に線を印刷する速度。ワイヤ印刷のみに適用されます。" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat label" -msgid "WP Horizontal Printing Speed" -msgstr "WP水平印字速度" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat description" -msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -msgstr "モデルの水平輪郭を印刷する速度。ワイヤ印刷のみに適用されます。" - -#: fdmprinter.def.json -msgctxt "wireframe_flow label" -msgid "WP Flow" -msgstr "WPフロー" - -#: fdmprinter.def.json -msgctxt "wireframe_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -msgstr "流れ補正:押出されたマテリアルの量はこの値の乗算になります。ワイヤ印刷のみに適用されます。" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection label" -msgid "WP Connection Flow" -msgstr "WP接続フロー" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection description" -msgid "Flow compensation when going up or down. Only applies to Wire Printing." -msgstr "上下に動くときの吐出補正。ワイヤ印刷のみに適用されます。" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat label" -msgid "WP Flat Flow" -msgstr "WPフラットフロー" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat description" -msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -msgstr "フラットラインを印刷する際の吐出補正。ワイヤ印刷のみに適用されます。" - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay label" -msgid "WP Top Delay" -msgstr "WP上面遅延" - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay description" -msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -msgstr "上向きの線が硬くなるように、上向きの動きの後の時間を遅らせる。ワイヤ印刷のみに適用されます。" - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay label" -msgid "WP Bottom Delay" -msgstr "WP底面遅延" - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay description" -msgid "Delay time after a downward move. Only applies to Wire Printing." -msgstr "下降後の遅延時間。ワイヤ印刷のみに適用されます。" - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay label" -msgid "WP Flat Delay" -msgstr "WP水平遅延" - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay description" -msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -msgstr "2つの水平セグメント間の遅延時間。このような遅延を挿入すると、前のレイヤーとの接着性が向上することがありますが、遅延が長すぎると垂れ下がりが発生します。ワイヤ印刷のみに適用されます。" - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed label" -msgid "WP Ease Upward" -msgstr "WP低速移動距離" - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed description" -msgid "" -"Distance of an upward move which is extruded with half speed.\n" -"This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "半分の速度で押出される上方への移動距離。過度にマテリアルを加熱することなく、前の層とのより良い接着を作ります。ワイヤ印刷のみに適用されます。" - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump label" -msgid "WP Knot Size" -msgstr "WPノットサイズ" - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump description" -msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -msgstr "上向きの線の上端に小さな結び目を作成し、連続する水平レイヤーを接着力を高めます。ワイヤ印刷のみに適用されます。" - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down label" -msgid "WP Fall Down" -msgstr "WP落下距離" - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down description" -msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "上向き押出後にマテリアルが落下する距離。この距離は補正される。ワイヤ印刷のみに適用されます。" - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along label" -msgid "WP Drag Along" -msgstr "WP引きづり距離" - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along description" -msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "斜め下方への押出に伴い上向き押出しているマテリアルが引きずられる距離。この距離は補正される。ワイヤ印刷のみに適用されます。" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy label" -msgid "WP Strategy" -msgstr "WPストラテジー" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy description" -msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -msgstr "各接続ポイントで2つの連続したレイヤーが密着していることを確認するためのストラテジー。収縮すると上向きの線が正しい位置で硬化しますが、フィラメントの研削が行われる可能性があります。上向きの線の終わりに結び目をつけて接続する機会を増やし、線を冷やすことができます。ただし、印刷速度が遅くなることがあります。別の方法は、上向きの線の上端のたるみを補償することである。しかし、予測どおりにラインが必ずしも落ちるとは限りません。" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option compensate" -msgid "Compensate" -msgstr "補正" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option knot" -msgid "Knot" -msgstr "ノット" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option retract" -msgid "Retract" -msgstr "引き戻し" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down label" -msgid "WP Straighten Downward Lines" -msgstr "WP下向き直線ライン" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down description" -msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -msgstr "水平方向の直線部分で覆われた斜めに下降線の割合です。これは上向きラインのほとんどのポイント、上部のたるみを防ぐことができます。ワイヤ印刷にのみ適用されます。" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down label" -msgid "WP Roof Fall Down" -msgstr "WPルーフ落下距離" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down description" -msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -msgstr "水平ルーフが ”薄い空気”に印刷され落ちる距離。この距離は補正されています。ワイヤ印刷に適用されます。" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along label" -msgid "WP Roof Drag Along" -msgstr "WPルーフ引きずり距離" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along description" -msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -msgstr "ルーフの外側の輪郭に戻る際に引きずる内側ラインの終わり部分の距離。この距離は補正されていてワイヤ印刷のみ適用されます。" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay label" -msgid "WP Roof Outer Delay" -msgstr "WPルーフ外側処理時間" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay description" -msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -msgstr "トップレイヤーにある穴の外側に掛ける時間。長い時間の方はより良い密着を得られます。ワイヤ印刷にのみ適用されます。" - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance label" -msgid "WP Nozzle Clearance" -msgstr "WPノズル隙間" - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance description" -msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -msgstr "ノズルと水平方向に下向きの線間の距離。大きな隙間がある場合、急な角度で斜め下方線となり、次の層が上方接続しずらくなる。ワイヤ印刷にのみ適用されます。" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "適応レイヤーの使用" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "適応レイヤーは、レイヤーの高さをモデルの形状に合わせて計算します。" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "適応レイヤー最大差分" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "基準レイヤー高さと比較して許容される最大の高さ。" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "適応レイヤー差分ステップサイズ" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "次のレイヤーの高さを前のレイヤーの高さと比べた差。" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "適応レイヤーのトポグラフィーサイズ" - -#: fdmprinter.def.json -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つのレイヤー間の目標水平距離。この設定を小さくすると、レイヤーのエッジが近づくように薄いレイヤーが使用されます。" - -#: fdmprinter.def.json -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "張り出し壁アングル" - -#: fdmprinter.def.json -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の場合は、オーバーハング壁として処理されません。サポートによってサポートされているオーバーハングも、オーバーハングとして処理されません。" - -#: fdmprinter.def.json -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "張り出し壁速度" - -#: fdmprinter.def.json -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "張り出し壁は、この割合で通常の印刷速度で印刷されます。" - -#: fdmprinter.def.json -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "ブリッジ設定を有効にする" - -#: fdmprinter.def.json -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "ブリッジを検出し、ブリッジを印刷しながらて印刷速度、フロー、ファンの設定を変更します。" - -#: fdmprinter.def.json -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "ブリッジ壁の最小長さ" - -#: fdmprinter.def.json -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 "この値より短いサポートされていない壁が通常の壁設定で印刷されます。長いサポートされていない壁は、ブリッジ壁設定で印刷されます。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "ブリッジスキンサポートのしきい値" - -#: fdmprinter.def.json -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 "対象領域に対してこのパーセンテージ未満のスキン領域がサポートされている場合、ブリッジ設定で印刷します。それ以外の場合は、通常のスキン設定で印刷します。" - -#: fdmprinter.def.json -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "ブリッジスパースインフィル最大密度" - -#: fdmprinter.def.json -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 "スパース(疎)であると見なされるインフィルの最大密度。スパースインフィル上のスキンは、サポートされていないと見なされるため、ブリッジスキンとして扱われる可能性があります。" - -#: fdmprinter.def.json -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "ブリッジ壁コースティング" - -#: fdmprinter.def.json -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 "この設定は、ブリッジ壁が始まる直前に、エクストルーダーを動かす距離を制御します。ブリッジが始まる前にコースティングすることにより、ノズル内が減圧され、ブリッジがより平らになります。" - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "ブリッジ壁速度" - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "ブリッジ壁を印刷する速度。" - -#: fdmprinter.def.json -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "ブリッジ壁フロー" - -#: fdmprinter.def.json -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "ブリッジ壁を印刷するときは、材料の吐出量をこの値で乗算します。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "ブリッジスキン速度" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "ブリッジスキン領域が印刷される速度。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "ブリッジスキンフロー" - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "ブリッジスキン領域を印刷するときは、材料の吐出量をこの値で乗算します。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "ブリッジスキンの密度" - -#: fdmprinter.def.json -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 以下の場合は、スキンライン間のギャップを増やします。" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "ブリッジファン速度" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "ブリッジ壁とスキンを印刷する際に使用するファン速度の割合。" - -#: fdmprinter.def.json -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "ブリッジを構成する多重レイヤー" - -#: fdmprinter.def.json -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 "有効な場合、空気上部の第二および第三レイヤーは以下の設定で印刷されます。それ以外の場合は、それらのレイヤーは通常の設定で印刷されます。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "ブリッジセカンドスキンの速度" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "セカンドブリッジのスキンレイヤーを印刷する際に使用する印刷速度。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "ブリッジセカンドスキンのフロー" - -#: fdmprinter.def.json -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 "セカンドブリッジスキンレイヤーを印刷するときは、材料の吐出量をこの値で乗算します。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "ブリッジセカンドスキンの密度" - -#: fdmprinter.def.json -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 以下の場合は、スキンライン間のギャップを増やします。" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "ブリッジセカンドスキンのファン速度" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "セカンドブリッジのスキンレイヤーを印刷する際に使用するファン速度の割合。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "ブリッジサードスキンの速度" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "サードブリッジのスキンレイヤーを印刷する際に使用する印刷速度。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "ブリッジサードスキンのフロー" - -#: fdmprinter.def.json -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 "サードブリッジスキンレイヤーを印刷するときは、材料の吐出量をこの値で乗算します。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "ブリッジサードスキンの密度" - -#: fdmprinter.def.json -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 以下の場合は、スキンライン間のギャップを増やします。" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "ブリッジサードスキンのファン速度" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "サードブリッジのスキンレイヤーを印刷する際に使用するファン速度の割合。" - -#: fdmprinter.def.json -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "レイヤー間のノズル拭き取り" - -#: fdmprinter.def.json -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つ)。この設定を有効にすると、レイヤー変更時の引き戻し動作に影響する可能性があります。拭き取りスクリプトが動作するレイヤーでの押し戻しを制御するには、ワイプ引き戻し設定を使用してください。" - -#: fdmprinter.def.json -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "ワイプ間の材料の量" - -#: fdmprinter.def.json -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つの拭き取りに制限されます。" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "ワイプリトラクト有効" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "ノズルが印刷しないで良い領域を移動する際にフィラメントを引き戻す。" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "ワイプリトラクト無効" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "拭き取りシーケンス中に出ないように押し戻すフィラメントの量。" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "ワイプ引き戻し時の余分押し戻し量" - -#: fdmprinter.def.json -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 "いくつかの材料は、ワイプ移動中ににじみ出るためここで補償することができます。" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "ワイプリトラクト速度" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "ワイプ引き戻し中にフィラメントが引き戻される時の速度。" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "ワイプ引き戻し速度" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "ワイプ引き戻し移動時にフィラメントが引き戻される速度。" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "ワイプ引き戻し下準備速度" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "ワイプ引き戻し移動時にフィラメントが押し戻されるスピード。" - -#: fdmprinter.def.json -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "ワイプ一時停止" - -#: fdmprinter.def.json -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "引き戻し前に一時停止します。" - -#: fdmprinter.def.json -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "ワイプZホップ" - -#: fdmprinter.def.json -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 "拭き取りの際、ビルドプレートが下降してノズルとプリントの間に隙間ができます。これは、ノズルの走行中にプリントに当たるのを防ぎ、プリントをビルドプレートから剥がしてしまう可能性を減らします。" - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "ワイプZホップ高さ" - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Zホップを実行するときの高さ。" - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "ワイプホップ速度" - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "ホップ中に z 軸を移動する速度。" - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "ワイプブラシXの位置" - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "ワイプスクリプトを開始するX位置。" - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "ワイプ繰り返し回数" - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "ブラシ全体をノズルが移動する回数。" - -#: fdmprinter.def.json -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "ワイプ移動距離" - -#: fdmprinter.def.json -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "ブラシ全体でヘッド前後に動かす距離。" - -#: fdmprinter.def.json -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "小さい穴の最大サイズ" - -#: fdmprinter.def.json -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を使用して印刷されます。" - -#: fdmprinter.def.json -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "小型形体の最大長さ" - -#: fdmprinter.def.json -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を使用して印刷されます。" - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Small Feature Speed" - -#: fdmprinter.def.json -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 "小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。" - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "小型形体の初期レイヤー速度" - -#: fdmprinter.def.json -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 "代替メッシュの削除" #: fdmprinter.def.json msgctxt "material_alternate_walls label" @@ -6583,34 +197,349 @@ msgid "Alternate wall directions every other layer and inset. Useful for materia msgstr "レイヤーやインセットについて1つおきに適用されるウォールの代替の向き。金属プリンティングの場合など、応力が蓄積される可能性がある材料に有用です。" #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "ラフト内側コーナーの削除" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "アルミニウム" #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "ラフトから内側コーナーを削除し、ラフトが凸になるようにします。" +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "常にアクティブなツールを書き込む" #: fdmprinter.def.json -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "ラフトベースウォール数" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "移動して外側のウォールをプリントする際、毎回引き戻しをします。" #: fdmprinter.def.json -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 "hole_xy_offset description" +msgid "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." +msgstr "各穴のすべてのポリゴンに適用されるオフセットの量。正の値は穴のサイズを大きくします。負の値は穴のサイズを小さくします。" #: fdmprinter.def.json -msgctxt "command_line_settings label" -msgid "Command Line Settings" -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 "各レイヤーのすべてのポリゴンに適用されるオフセットの量。正の値は大きすぎる穴を補うことができます。負の値は小さすぎる穴を補うことができます。" #: fdmprinter.def.json -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "CuraエンジンがCuraフロントエンドから呼び出されない場合のみ使用される設定。" +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と呼ばれる第一層が潰れるを現象を軽減させます。" + +#: fdmprinter.def.json +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 "各レイヤーのサポート用ポリゴンに適用されるオフセットの量。正の値はサポート領域を円滑にし、より丈夫なサポートにつながります。" + +#: fdmprinter.def.json +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "サポートのフロアに適用されるオフセット量。" + +#: fdmprinter.def.json +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "サポートのルーフに適用されるオフセット量。" + +#: fdmprinter.def.json +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "サポートインターフェイスポリゴンに適用されるオフセット量。" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "拭き取りシーケンス中に出ないように押し戻すフィラメントの量。" + +#: fdmprinter.def.json +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 "この立方体を細分するかどうかを決定するために、各立方体の中心から半径に加えてモデルの境界を調べます。値を大きくすると、モデルの境界付近に小さな立方体のより厚いシェルができます。" + +#: fdmprinter.def.json +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "メッシュオーバーハング例外" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "滲出防止引戻し位置" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "滲出防止引戻し速度" + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "エクストルーダーのオフセットを座標システムに適用します。すべてのエクストルーダーが影響を受けます。" + +#: fdmprinter.def.json +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 "モデルが接触する箇所に、インターロックビーム構造を生成します。その結果、モデル、特に異なる材料でプリントされたモデル間の密着性が向上します。" + +#: fdmprinter.def.json +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "移動は印刷したパーツを回避する" + +#: fdmprinter.def.json +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "移動はサポートを回避する" + +#: fdmprinter.def.json +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "戻る" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "後方左" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "後方右" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "両方" + +#: fdmprinter.def.json +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "底面レイヤー" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "底層初期レイヤー" + +#: fdmprinter.def.json +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "底面展開距離" + +#: fdmprinter.def.json +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "底面除去幅" + +#: fdmprinter.def.json +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "底面厚さ" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "フィラメントの引き出し準備引戻し位置" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "フィラメント引き出し準備引戻し速度" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "フィラメント引き出し準備温度" + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "フィラメント引き出しの引戻し位置" + +#: fdmprinter.def.json +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "フィラメント引き出しの引戻し速度" + +#: fdmprinter.def.json +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "フィラメント引き出し温度" + +#: fdmprinter.def.json +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "接続部分のサポート分割" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "ブリッジファン速度" + +#: fdmprinter.def.json +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "ブリッジを構成する多重レイヤー" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "ブリッジセカンドスキンの密度" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "ブリッジセカンドスキンのファン速度" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "ブリッジセカンドスキンのフロー" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "ブリッジセカンドスキンの速度" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "ブリッジスキンの密度" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "ブリッジスキンフロー" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "ブリッジスキン速度" + +#: fdmprinter.def.json +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "ブリッジスキンサポートのしきい値" + +#: fdmprinter.def.json +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "ブリッジスパースインフィル最大密度" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "ブリッジサードスキンの密度" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "ブリッジサードスキンのファン速度" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "ブリッジサードスキンのフロー" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "ブリッジサードスキンの速度" + +#: fdmprinter.def.json +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "ブリッジ壁コースティング" + +#: fdmprinter.def.json +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "ブリッジ壁フロー" + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "ブリッジ壁速度" + +#: fdmprinter.def.json +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "ブリム" + +#: fdmprinter.def.json +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "ブリム距離" + +#: fdmprinter.def.json +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "内側縁がマージンに接触しないようにする" + +#: fdmprinter.def.json +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "ブリムライン数" + +#: fdmprinter.def.json +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "外側にブリムのみ印刷" + +#: fdmprinter.def.json +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "ブリム交換サポート" + +#: fdmprinter.def.json +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "ブリム幅" + +#: fdmprinter.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "ビルドプレート密着性" + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "ビルドプレート接着エクストルーダー" + +#: fdmprinter.def.json +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "ビルドプレート接着タイプ" + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "ビルドプレートの材料" + +#: fdmprinter.def.json +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "ビルドプレートの形状" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "ビルドプレート温度" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "初期レイヤーのビルドプレート温度" + +#: fdmprinter.def.json +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "造形温度" #: fdmprinter.def.json msgctxt "center_object label" @@ -6618,1010 +547,6213 @@ msgid "Center Object" msgstr "オブジェクト中心配置" #: fdmprinter.def.json -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 "最小限のサポートが必要となるように印刷モデルのジオメトリを変更します。急なオーバーハングは浅いオーバーハングになります。オーバーハングした領域は、より垂直になるように下がります。" + +#: fdmprinter.def.json +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 "サポートを生成するために利用できる技術を選択します。「標準」のサポート構造はオーバーハング部品のすぐ下に作成し、そのエリアを真下に生成します。「ツリー」サポートはオーバーハングエリアに向かって枝を作成し、モデルを枝の先端で支えます。枝をモデルのまわりにはわせて、できる限りビルドプレートから支えます。" + +#: fdmprinter.def.json +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "コースティング速度" + +#: fdmprinter.def.json +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "コースティングのボリューム" + +#: fdmprinter.def.json +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 "コースティングは、それぞれの造形ラインの最後の部分をトラベルパスで置き換えます。はみ出た材料は、糸引きを減らすために造形ライン最後の部分を印刷するために使用される。" + +#: fdmprinter.def.json +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "コーミングモード" + +#: fdmprinter.def.json +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 "コーミングは、走行時にすでに印刷された領域内にノズルを保ちます。その結果、移動距離はわずかに長くなりますが、引き込みの必要性は減ります。コーミングがオフの場合、フィラメントの引き戻しを行い、ノズルは次のポイントまで直線移動します。また、インフィルのみにてコーミングすることにより、トップとボトムのスキン領域上での櫛通りを回避できます。" + +#: fdmprinter.def.json +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "コマンドライン設定" + +#: fdmprinter.def.json +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "同心円" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "同心円" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "同心円" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "同心円" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "同心円" + +#: fdmprinter.def.json +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "同心円" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "同心円" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "同心円" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "同心円" + +#: fdmprinter.def.json +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "円錐サポートの角度" + +#: fdmprinter.def.json +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "円錐サポートの最大幅" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "インフィルライン接合" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "インフィルポリゴン接合" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "サポートライン接続" + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "サポートジグザグ接続" + +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "上層/底層ポリゴンに接合" + +#: fdmprinter.def.json +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 "互いに次に実行するインフィルパスに接合します。いくつかの閉じられたポリゴンを含むインフィルパターンの場合、この設定を有効にすることにより、移動時間が大幅に短縮されます。" + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "ジグザグを接続します。ジグザグ形のサポート材の強度が上がります。" + +#: fdmprinter.def.json +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 "サポートライン両端を接続します。この設定を有効にすると、より確実なサポートで抽出不足を解消しますが、材料の費用がかさみます。" + +#: fdmprinter.def.json +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 "内壁の形状に沿ったラインを使用してインフィルパターンと内壁が合うところで接合します。この設定を有効にすると、インフィルが壁により密着するようになり、垂直面の品質に対するインフィルの影響が軽減します。この設定を無効にすると、材料の使用量が減ります。" + +#: fdmprinter.def.json +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 "互いに次に実行する上層/底層スキンパスに接合します。同心円のパターンの場合、この設定を有効にすることにより、移動時間が短縮されますが、インフィルまでの途中で接合があるため、この機能で上層面の品質が損なわれることがあります。" + +#: fdmprinter.def.json +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 "モデル輪郭の角がシームの位置に影響を及ぼすかどうかを制御します。[なし] は、角がシームの位置に影響を及ぼさないことを意味します。シームを隠すにすると、シームが内側の角に生じる可能性が高くなります。シームを外側にすると、シームが外側の角に生じる可能性が高くなります。シームを隠す/外側に出すは、シームが内側または外側の角に生じる可能性が高くなります。スマート・シームを使用すると、内外両側の角を使用できますが、適切な場合には内側の角が選択される頻度が高まります。" + +#: fdmprinter.def.json +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 "各インフィルラインをこの多重ラインに変換します。余分なラインが互いに交差せず、互いを避け合います。これによりインフィルが硬くなり、印刷時間と材料使用量が増えます。" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "冷却速度" + +#: fdmprinter.def.json +msgctxt "cooling description" +msgid "Cooling" +msgstr "冷却" + +#: fdmprinter.def.json +msgctxt "cooling label" +msgid "Cooling" +msgstr "冷却" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "クロス" + +#: fdmprinter.def.json +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "クロス" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "3Dクロス" + +#: fdmprinter.def.json +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "3Dクロスポケットのサイズ" + +#: fdmprinter.def.json +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "サポート用クロス画像のインフィル密度" + +#: fdmprinter.def.json +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "クロス画像のインフィル密度" + +#: fdmprinter.def.json +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "結晶性材料" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "キュービック" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "キュービックサブディビジョン" + +#: fdmprinter.def.json +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "キュービックサブディビジョンシェル" + +#: fdmprinter.def.json +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "メッシュ切断" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "マテリアルフロー(毎秒 3mm) と温度 (° c) をリンクします。" + +#: fdmprinter.def.json +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "デフォルト加速度" + +#: fdmprinter.def.json +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "ビルドプレートのデフォルト温度" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "フィラメントデフォルトジャーク" + +#: fdmprinter.def.json +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "デフォルト印刷温度" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "X-Yデフォルトジャーク" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Zデフォルトジャーク" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "水平面内での移動のデフォルトジャーク。" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Z方向のモーターのデフォルトジャーク。" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "フィラメントのモーターのデフォルトジャーク。" + +#: fdmprinter.def.json +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "ブリッジを検出し、ブリッジを印刷しながらて印刷速度、フロー、ファンの設定を変更します。" + +#: fdmprinter.def.json +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 "ウォールをプリントする順序を決定します。アウターウォールを先にプリントすると、インナーウォールの不具合が外側に影響しないため、寸法精度が向上します。一方、アウターウォールを後からプリントすると、オーバーハングをプリントする際にうまく積み重ねることができます。インナーウォールの合計が奇数の場合、「中央の最後のライン」は必ず最後にプリントされます。" + +#: fdmprinter.def.json +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 "インフィルメッシュの重なりが複数生じた場合のこのメッシュの優先度を決定します。複数のインフィルメッシュの重なりがあるエリアでは、最もランクが高いメッシュの設定になります。ランクが高いインフィルメッシュは、ランクが低いインフィルメッシュのインフィルと通常のメッシュを変更します。" + +#: fdmprinter.def.json +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 "ライトニングインフィルレイヤーがその上の物を支える必要がある場合を決定します。レイヤーの厚さを考慮して角度で指定されます。" + +#: fdmprinter.def.json +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 "ライトニングインフィルレイヤーがその上のモデルを支える必要がある場合を決定します。厚さを考慮して角度で指定されます。" + +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直径" + +#: fdmprinter.def.json +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は、モデルの下に太いグリッドを追加します。スカートはモデルの周りに印刷されたラインですが、モデルには接続されていません。" + +#: fdmprinter.def.json +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "拒否エリア" + +#: fdmprinter.def.json +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 "造形されたインフィルラインの距離。この設定は、インフィル密度およびライン幅によって計算される。" + +#: fdmprinter.def.json +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 "印刷した初期層間の距離が構造ライをサポートします。この設定は、対応濃度で算出されます。" + +#: fdmprinter.def.json +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 "印刷されたサポートのフロアのライン間の距離。この設定は、密度によって計算されますが、個別に調整することもできます。" + +#: fdmprinter.def.json +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 "印刷されたサポートルーフ線間の距離。この設定は、サポート密度によって計算されますが、個別に調整することもできます。" + +#: fdmprinter.def.json +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "印刷されたサポート材の間隔。この設定は、サポート材の密度によって算出されます。" + +#: fdmprinter.def.json +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support." +msgstr "印刷物とサポート材底部までの距離。" + +#: fdmprinter.def.json +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "サポートの上部から印刷物までの距離。" + +#: fdmprinter.def.json +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. This value is rounded up to a multiple of the layer height." +msgstr "サポート材のトップ/ボトム部分と印刷物との距離。この幅がプリント後のサポート材を除去する隙間を作ります。値は積層ピッチの倍数にて計算されます。" + +#: fdmprinter.def.json +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 "インフィルラインごとに挿入された移動距離は壁のインフィルへの接着をより良くします。このオプションは、インフィルオーバーラップに似ていますが、押出なく、インフィルラインの片側にのみあります。" + +#: fdmprinter.def.json +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シームをよりよく隠します。" + +#: fdmprinter.def.json +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "ドラフトシールドと造形物のX / Y方向の距離。" + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "壁(ooze shield)の造形物からの距離。" + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "X/Y方向におけるオーバーハングからサポートまでの距離。" + +#: fdmprinter.def.json +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "印刷物からX/Y方向へのサポート材との距離。" + +#: fdmprinter.def.json +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "これより小さいインフィルの領域を生成しないでください (代わりにスキンを使用してください)。" + +#: fdmprinter.def.json +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "ドラフトシールドの高さ" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "ドラフトシールドの制限" + +#: fdmprinter.def.json +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "ドラフトシールドとX/Yの距離" + +#: fdmprinter.def.json +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "サポートメッシュの下処理" + +#: fdmprinter.def.json +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "デュアルエクストルーダー" + +#: fdmprinter.def.json +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "楕円形" + +#: fdmprinter.def.json +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "加速度制御を有効にする" + +#: fdmprinter.def.json +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "ブリッジ設定を有効にする" + +#: fdmprinter.def.json +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "コースティングを有効にする" + +#: fdmprinter.def.json +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "円錐サポートを有効にする" + +#: fdmprinter.def.json +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "ドラフトシールドを有効にする" + +#: fdmprinter.def.json +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "アイロン有効" + +#: fdmprinter.def.json +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "ジャーク制御を有効にする" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "ノズルの温度管理を有効にする" + +#: fdmprinter.def.json +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Ooze Shieldを有効にする" + +#: fdmprinter.def.json +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "プライムボルブを有効にする" + +#: fdmprinter.def.json +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "プライムタワーを有効にする" + +#: fdmprinter.def.json +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "印刷中の冷却を有効にする" + +#: fdmprinter.def.json +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "引き戻し有効" + +#: fdmprinter.def.json +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "サポートブリムを有効にする" + +#: fdmprinter.def.json +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "サポートフロアを有効にする" + +#: fdmprinter.def.json +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "サポートインタフェースを有効にする" + +#: fdmprinter.def.json +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "サポートルーフを有効にする" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "プリントヘッド加速(トラベルアクセラレーション)を有効にする" + +#: fdmprinter.def.json +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "トラベルジャークを有効にする" + +#: fdmprinter.def.json +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つ目のノズルを綺麗にします。" + +#: fdmprinter.def.json +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 軸の速度が変更する際、プリントヘッドのジャークを調整することができます。ジャークを増やすことは、印刷時間を短縮できますがプリントの質を損ねます。" + +#: fdmprinter.def.json +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 "プリントヘッドのスピード調整の有効化 加速度の増加は印刷時間を短縮しますが印刷の質を損ねます。" + +#: fdmprinter.def.json +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 "印刷中の冷却ファンを有効にします。ファンは、短いレイヤープリントやブリッジ/オーバーハングのレイヤーがある印刷物の品質を向上させます。" + +#: fdmprinter.def.json +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "G-codeの終了" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "フィラメントパージ長さの後" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "フィラメントパージ速度の後" + +#: fdmprinter.def.json +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 "スペースがサポートで埋まっている場合でも、モデルの周辺にブリムを印刷します。これにより、サポートの最初の層の一部のエリアがブリムになります。" + +#: fdmprinter.def.json +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "全対象" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "排他" + +#: fdmprinter.def.json +msgctxt "experimental label" +msgid "Experimental" +msgstr "実験" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "シーム表示" + +#: fdmprinter.def.json +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "強めのスティッチング" + +#: fdmprinter.def.json +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 "強めのスティッチングは、穴をメッシュで塞いでデータを作成します。このオプションは、長い処理時間が必要となります。" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "外側インフィル壁の数" + +#: fdmprinter.def.json +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "外側表面の数" + +#: fdmprinter.def.json +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "ノズル切替え後のプライムに必要な余剰材料。" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "エクストルーダープライムX位置" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "エクストルーダープライムY位置" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "エクストルーダーのZ座標" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "エクストルーダーのヒーター共有" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "エクストルーダーの共有ノズル" + +#: fdmprinter.def.json +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "押出クールダウン速度修飾子" + +#: fdmprinter.def.json +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%より大きな値を設定すると、幅広のラインを押し出すのに必要な高い圧力を補うことができます。" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "ファン速度" + +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "ファン速度上書き" + +#: fdmprinter.def.json +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を使用して印刷されます。" + +#: fdmprinter.def.json +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "これからもっと充実させていく機能です。" + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "フィーダーホイール直径" + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "最終印刷温度" + +#: fdmprinter.def.json +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "ファームウェア引き戻し" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "最初のレイヤー用サポートエクストルーダー" + +#: fdmprinter.def.json +msgctxt "material_flow label" +msgid "Flow" +msgstr "フロー" + +#: fdmprinter.def.json +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "フロー均一化率" + +#: fdmprinter.def.json +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "流量補正要因" + +#: fdmprinter.def.json +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "流量補正時の最大抽出オフセット" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "フロー温度グラフ" + +#: fdmprinter.def.json +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 "初期レイヤーの流量補修:初期レイヤーの マテリアル吐出量はこの値の乗算で計算されます。" + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "最初のレイヤーの底面ラインのフロー補正" + +#: fdmprinter.def.json +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "インフィルのフロー補正。" + +#: fdmprinter.def.json +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "支持材の天井面または床面のフロー補正。" + +#: fdmprinter.def.json +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "印刷物の上部表面のフロー補正。" + +#: fdmprinter.def.json +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "プライムタワーのフロー補正。" + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "スカートまたはブリムのフロー補正。" + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "支持材床面のフロー補正。" + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "支持材天井面のフロー補正。" + +#: fdmprinter.def.json +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "支持材のフロー補正。" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "最初のレイヤーの最も外側のウォールライン上のフロー補正。" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "最外壁のフロー補正。" + +#: fdmprinter.def.json +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "上面/下面のフロー補正。" + +#: fdmprinter.def.json +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 "最も外側のウォールラインを除くすべてのウォールラインのフロー補正(ただし、最初のレイヤーのみ)" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "最外壁以外の壁のフロー補正。" + +#: fdmprinter.def.json +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "壁のフロー補正。" + +#: fdmprinter.def.json +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "流れの補修: 押出されるマテリアルの量は、この値から乗算されます。" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "フラッシュパージ長さ" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "フラッシュパージ速度" + +#: fdmprinter.def.json +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倍です。" + +#: fdmprinter.def.json +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "前" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "前左" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "前方右" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "制限なし" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "ファジースキン" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "ファジースキンの密度" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "ファジースキン外のみ" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "ファジースキン点間距離" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "ファジースキンの厚さ" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "G-codeフレーバー" + +#: fdmprinter.def.json +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "" +"最後に実行するG-codeコマンドは、\n" +"で区切ります。" + +#: fdmprinter.def.json +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" +"最初に実行するG-codeコマンドは、\n" +"で区切ります。" + +#: fdmprinter.def.json +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "マテリアルのGUID。これは自動的に設定されます。" + +#: fdmprinter.def.json +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "ガントリーの高さ" + +#: fdmprinter.def.json +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "インターロック構造の生成" + +#: fdmprinter.def.json +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "サポート開始" + +#: fdmprinter.def.json +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 "最初の層のインフィルエリア内ブリムを生成します。このブリムは、サポートの周囲ではなく、サポートの下に印刷されます。この設定を有効にすると、サポートのビルドプレートへの吸着性が高まります。" + +#: fdmprinter.def.json +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 "モデルとサポートの間に密なインターフェースを生成します。これにより、モデルが印刷されているサポートの上部、モデル上のサポートの下部にスキンが作成されます。" + +#: fdmprinter.def.json +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 "サポートの上部とモデルの間に高密度の厚板を形成します。モデルとサポート材の間にスキンが作成されます。" + +#: fdmprinter.def.json +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 "サポートの上部とモデルの間に高密度の厚板を形成します。モデルとサポート材の間にスキンが作成されます。" + +#: fdmprinter.def.json +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 "オーバーハングするモデルのサポートパーツの構造を形成します。これらのサポートがなければ、印刷は失敗します。" + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "ガラス" + +#: fdmprinter.def.json +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 "微量の材料のみを吐出して、再度上部表面を動きます。これにより上部のプラスティックが溶かされ、よりスムースな表面になります。ノズルチャンバーには高い圧力が保たれるため、表面上のしわが材料で埋められます。" + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "インフィル半減高さ" + +#: fdmprinter.def.json +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "インフィル半減回数" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "サポートインフィル半減前の高さ" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "サポートインフィル半減回数" + +#: fdmprinter.def.json +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "レイヤー時間が最小であるため、速度を落としてプリントする場合は、この温度まで徐々に下げてください。" + +#: fdmprinter.def.json +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "グリッド" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "グリッド" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "グリッド" + +#: fdmprinter.def.json +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "グリッド" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "グリッド" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +#: fdmprinter.def.json +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "ジャイロイド" + +#: fdmprinter.def.json +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "ジャイロイド" + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "造形温度安定化処理有り" + +#: fdmprinter.def.json +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "加熱式ビルドプレートあり" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "加熱速度" + +#: fdmprinter.def.json +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "ノズル加熱長さ" + +#: fdmprinter.def.json +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "ドラフトシールドの高さ制限。この高さを超えるとドラフトシールドが印刷されません。" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "シーム非表示" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "シーム表示/非表示" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "穴の水平展開" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "" + +#: fdmprinter.def.json +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を使用して印刷されます。" + +#: fdmprinter.def.json +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "水平展開" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "水平スケールファクタ収縮補正" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance description" +msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." +msgstr "枝がモデルに接触するところで確保する枝の間隔。この間隔を小さくするとツリーサポートがモデルに接触する点が増え、支える効果が高まりますが、サポートの取り外しが難しくなります。" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "加熱中にフィラメントの引き出しが生じる距離。" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "滲出を止めるには材料をどこまで引き戻す必要があるか。" + +#: fdmprinter.def.json +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秒の押出で移動する距離の割合として指定します。" + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "フィラメントをきれいに引き出すにはフィラメントをどこまで引き戻すか。" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "フィラメントの引き出しが起こるための引き戻しの距離。" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "滲出を防止するにはフィラメントスイッチ中に材料をどの程度速く引き戻す必要があるか。" + +#: fdmprinter.def.json +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 "空のスプールを同じ材料の新しいスプールに交換した後に、材料の下準備をする速度。" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "材料を切り替えた後に、材料の下準備をする速度。" + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "材料を乾燥保管容器の外に置くことができる期間。" + +#: fdmprinter.def.json +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 ミリメートルの移動でステップモーターが行うステップの数を示します。" + +#: fdmprinter.def.json +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 ミリメートルの移動でステップモーターが行うステップの数を示します。" + +#: fdmprinter.def.json +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 ミリメートルの移動でステップモーターが行うステップの数を示します。" + +#: fdmprinter.def.json +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ミリメートル移動させるのに、ステップモーターが行うステップの数を示します。" + +#: fdmprinter.def.json +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 "空のスプールを同じ材料の新しいスプールに交換したときに、ノズルから前の材料をパージするために使用する材料の量(フィラメントの長さ)。" + +#: fdmprinter.def.json +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 "材料を切り替えたときに、ノズルから前の材料をパージするために使用する材料の量(フィラメントの長さ)。" + +#: fdmprinter.def.json +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スクリプト完了時に、各エクストルーダーのフィラメントが共有ノズルの先端部分から引き戻されていると想定される量。この値は、ノズルのダクトの共通部分の長さ以上にする必要があります。" + +#: fdmprinter.def.json +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 "対象領域に対してこのパーセンテージ未満のスキン領域がサポートされている場合、ブリッジ設定で印刷します。それ以外の場合は、通常のスキン設定で印刷します。" + +#: fdmprinter.def.json +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 "有効な場合、空気上部の第二および第三レイヤーは以下の設定で印刷されます。それ以外の場合は、それらのレイヤーは通常の設定で印刷されます。" + +#: fdmprinter.def.json +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 "異なる数のウォール間を相次いで行き来する場合は、まったく移行しないようにします。移行同士がこの距離よりも近い場合は、それらの移行を削除します。" + +#: fdmprinter.def.json +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 "ラフトが有効になっている場合、モデルの周りに余分なラフト領域ができます。値を大きくするとより強力なラフトができますが、多くの材料を使用し、造形範囲は少なくなります。" + +#: fdmprinter.def.json +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つとして印刷します。これにより、意図しない内部空洞が消えることがあります。" + +#: fdmprinter.def.json +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "ビルドプレート温度を含む" + +#: fdmprinter.def.json +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "マテリアル温度を含む" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "包括" + +#: fdmprinter.def.json +msgctxt "infill description" +msgid "Infill" +msgstr "インフィル" + +#: fdmprinter.def.json +msgctxt "infill label" +msgid "Infill" +msgstr "インフィル" + +#: fdmprinter.def.json +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "インフィル加速度" + +#: fdmprinter.def.json +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "インフィル優先" + +#: fdmprinter.def.json +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "インフィル密度" + +#: fdmprinter.def.json +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "インフィルエクストルーダー" + +#: fdmprinter.def.json +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "インフィルフロー" + +#: fdmprinter.def.json +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "インフィルジャーク" + +#: fdmprinter.def.json +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "インフィル層の厚さ" + +#: fdmprinter.def.json +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "インフィルラインの向き" + +#: fdmprinter.def.json +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "インフィルライン距離" + +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "インフィルライン乗算" + +#: fdmprinter.def.json +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "インフィルラインの幅" + +#: fdmprinter.def.json +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "インフィルメッシュ" + +#: fdmprinter.def.json +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "インフィルオーバーハング角度" + +#: fdmprinter.def.json +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "インフィル公差" + +#: fdmprinter.def.json +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "インフィル公差量" + +#: fdmprinter.def.json +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "インフィルパターン" + +#: fdmprinter.def.json +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "インフィル速度" + +#: fdmprinter.def.json +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "インフィルサポート" + +#: fdmprinter.def.json +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "インフィル移動最適化" + +#: fdmprinter.def.json +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "インフィル移動距離" + +#: fdmprinter.def.json +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "インフィルXオフセット" + +#: fdmprinter.def.json +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "インフィルYオフセット" + +#: fdmprinter.def.json +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "初期底面レイヤー" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "初期ファン速度" + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "初期レイヤー加速度" + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "初期レイヤーの底面フロー" + +#: fdmprinter.def.json +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "初期レイヤーフロー" + +#: fdmprinter.def.json +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "初期レイヤー高さ" + +#: fdmprinter.def.json +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "初期層水平展開" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "初期レイヤーインナーウォールのフロー" + +#: fdmprinter.def.json +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "初期レイヤージャーク" + +#: fdmprinter.def.json +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "初期レイヤーのライン幅" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "初期レイヤーアウターウォールのフロー" + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "初期レイヤー印刷加速度" + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "初期レイヤー印刷ジャーク" + +#: fdmprinter.def.json +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "初期レイヤー印刷速度" + +#: fdmprinter.def.json +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "初期レイヤー速度" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "初期層サポートラインの距離" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "初期レイヤー移動加速度" + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "初期レイヤー移動ジャーク" + +#: fdmprinter.def.json +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "初期レイヤー移動速度" + +#: fdmprinter.def.json +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "初期レイヤーZのオーバーラップ" + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "初期印刷温度" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "内壁加速度" + +#: fdmprinter.def.json +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "内壁用エクストルーダー" + +#: fdmprinter.def.json +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "内壁ジャーク" + +#: fdmprinter.def.json +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "内壁速度" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "内壁のフロー" + +#: fdmprinter.def.json +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "内側ウォールライン幅" + +#: fdmprinter.def.json +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 "外壁の経路にはめ込む。外壁がノズルよりも小さく、内壁の後に造形されている場合は、オフセットを使用して、ノズルの穴をモデルの外側ではなく内壁と重なるようにします。" + +#: fdmprinter.def.json +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "内側から外側へ" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "インターロックビームレイヤー数" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "インターロックビーム幅" + +#: fdmprinter.def.json +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "インターロック境界回避" + +#: fdmprinter.def.json +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "インターロックの奥行" + +#: fdmprinter.def.json +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "インターロック構造の向き" + +#: fdmprinter.def.json +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "最上層のみアイロン" + +#: fdmprinter.def.json +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "アイロン加速度" + +#: fdmprinter.def.json +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "アイロンフロー" + +#: fdmprinter.def.json +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "アイロンインセット" + +#: fdmprinter.def.json +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "アイロンジャーク" + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "アイロン線のスペース" + +#: fdmprinter.def.json +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "アイロンパターン" + +#: fdmprinter.def.json +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "アイロン速度" + +#: fdmprinter.def.json +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "中心位置" + +#: fdmprinter.def.json +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 "この材料は加熱時にきれいに分解するタイプ (結晶性) または長く絡み合ったポリマー鎖 (非結晶) を作り出すタイプのいずれですか?" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "部品の輪郭のみに振動が起こり、部品の穴には起こりません。" + +#: fdmprinter.def.json +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "スティッチできない部分を保持" + +#: fdmprinter.def.json +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "レイヤー高さ" + +#: fdmprinter.def.json +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "レイヤー始点X" + +#: fdmprinter.def.json +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "レイヤー始点Y" + +#: fdmprinter.def.json +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 "ベースラフト層の層厚さ。プリンタのビルドプレートにしっかりと固着する厚い層でなければなりません。" + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "中間のラフト層の層の厚さ。" + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "トップラフト層の層厚。" + +#: fdmprinter.def.json +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ミリ時に、サポートの接続をわざと外し、後のサポート材の構造をもろくし、壊れやすくする。" + +#: fdmprinter.def.json +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "左" + +#: fdmprinter.def.json +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "ヘッド持ち上げ" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "ライトニング" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "ライトニングインフィルオーバーハング角度" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "ライトニングインフィル刈り込み角度" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "ライトニングインフィル矯正角度" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "ライトニングインフィルサポート角度" + +#: fdmprinter.def.json +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つの特定のメッシュ領域の設定を、、全く別のエクストルーダーで作成することができます。" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "制限あり" + +#: fdmprinter.def.json +msgctxt "line_width label" +msgid "Line Width" +msgstr "ライン幅" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "ライン" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "直線" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "ライン" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "ライン" + +#: fdmprinter.def.json +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "ライン" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "ライン" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "直線" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "直線" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +#: fdmprinter.def.json +msgctxt "machine_settings label" +msgid "Machine" +msgstr "プリンター" + +#: fdmprinter.def.json +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "プリンターの奥行" + +#: fdmprinter.def.json +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "プリントヘッドとファンポリゴン" + +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "プリンターの高さ" + +#: fdmprinter.def.json +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "プリンターのタイプ" + +#: fdmprinter.def.json +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "プリンターの幅" + +#: fdmprinter.def.json +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "プリンター詳細設定" + +#: fdmprinter.def.json +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "オーバーハング印刷可能" + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "触れているメッシュを少し重ねてください。これによって、より良い接着をします。" + +#: fdmprinter.def.json +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "オーバーハング部分よりも底面の支持領域を小さくする。" + +#: fdmprinter.def.json +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 "サポートメッシュの下のサポート材を全箇所に作ります、これはサポートメッシュ下にてオーバーハングしないようにするためです。" + +#: fdmprinter.def.json +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 "最後のヘッドの既知位置からではなく、エクストルーダー現在位置を絶対位置にします。" + +#: fdmprinter.def.json +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 "エアギャップ内で失われたフィラメントを補うために、モデルの第1層と第2層をZ方向にオーバーラップさせます。この値によって、最初のモデルレイヤーがシフトダウンされます。" + +#: fdmprinter.def.json +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "3Dプリンティングにさらに適したメッシュを作成します。" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumetric)" + +#: fdmprinter.def.json +msgctxt "material description" +msgid "Material" +msgstr "マテリアル" + +#: fdmprinter.def.json +msgctxt "material label" +msgid "Material" +msgstr "マテリアル" + +#: fdmprinter.def.json +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "マテリアルGUID" + +#: fdmprinter.def.json +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "ワイプ間の材料の量" + +#: fdmprinter.def.json +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "引き戻しのない最大コム距離" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "最大加速度X" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "最大加速度Y" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "最大加速度Z" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "最大偏差" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "最大押出領域偏差" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "最大ファン速度" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "フィラメント最大加速度" + +#: fdmprinter.def.json +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "最大モデル角度" + +#: fdmprinter.def.json +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "オーバーハングした穴の最大領域" + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "最大留め期間" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "最大解像度" + +#: fdmprinter.def.json +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "最大引き戻し回数" + +#: fdmprinter.def.json +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "表面展開最大角" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "最大速度E" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "最大速度X" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "最大速度Y" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "最大速度Z" + +#: fdmprinter.def.json +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "最大タワーサポート直径" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "最大移動解像度" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "X方向のモーターの最大速度" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Y方向のモーターの最大加速度。" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Z方向のモーターの最大加速度。" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "フィラメントのモーターの最大加速度。" + +#: fdmprinter.def.json +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 "スパース(疎)であると見なされるインフィルの最大密度。スパースインフィル上のスキンは、サポートされていないと見なされるため、ブリッジスキンとして扱われる可能性があります。" + +#: fdmprinter.def.json +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方向の最小直径。" + +#: fdmprinter.def.json +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つの拭き取りに制限されます。" + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "重複メッシュのマージ" + +#: fdmprinter.def.json +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "メッシュ修正" #: fdmprinter.def.json msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "メッシュ位置X" -#: fdmprinter.def.json -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "オブジェクトの X 方向に適用されたオフセット。" - #: fdmprinter.def.json msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "メッシュ位置Y" -#: fdmprinter.def.json -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "オブジェクトのY 方向適用されたオフセット。" - #: fdmprinter.def.json msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "メッシュ位置Z" #: fdmprinter.def.json -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 "メッシュ処理ランク" #: fdmprinter.def.json msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "メッシュ回転マトリックス" +#: fdmprinter.def.json +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "中間" + +#: fdmprinter.def.json +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "最小型幅" + +#: fdmprinter.def.json +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "スタンバイ温度までの最短時間" + +#: fdmprinter.def.json +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "ブリッジ壁の最小長さ" + +#: fdmprinter.def.json +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "最小偶数ウォールライン幅" + +#: fdmprinter.def.json +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "最小抽出距離範囲" + +#: fdmprinter.def.json +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "最小フィーチャーサイズ" + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "最小送り速度" + +#: fdmprinter.def.json +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "最小インフィル領域" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "最小レイヤー時間" + +#: fdmprinter.def.json +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "最小奇数ウォールライン幅" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "最小ポリゴン円周" + +#: fdmprinter.def.json +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "表面展開最小角" + +#: fdmprinter.def.json +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "最低速度" + +#: fdmprinter.def.json +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "最小サポート領域" + +#: fdmprinter.def.json +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "最小サポートフロア領域" + +#: fdmprinter.def.json +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "最小サポートインターフェイス領域" + +#: fdmprinter.def.json +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "最小サポートルーフ領域" + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "最小サポートX/Y距離" + +#: fdmprinter.def.json +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "最小薄肉ウォールライン幅" + +#: fdmprinter.def.json +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "コースティング前の最小ボリューム" + +#: fdmprinter.def.json +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "最小ウォールライン幅" + +#: fdmprinter.def.json +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 "サポートインターフェイスポリゴンの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" + +#: fdmprinter.def.json +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 "ポリゴンをサポートする最小領域サイズ。この領域よりポリゴンが小さい場合は生成されません。" + +#: fdmprinter.def.json +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 "サポートのフロアの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" + +#: fdmprinter.def.json +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 "サポートのルーフの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" + +#: fdmprinter.def.json +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 "薄いフィーチャーの最小厚さ。この値より薄いモデルフィーチャーはプリントされず、最小フィーチャーサイズより厚いフィーチャーは最小ウォールライン幅に広げられます。" + +#: fdmprinter.def.json +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 "円錐形のサポート領域のベースが縮小される最小幅。幅が狭いと、サポートが不安定になる可能性があります。" + +#: fdmprinter.def.json +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "型" + +#: fdmprinter.def.json +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "型角度" + +#: fdmprinter.def.json +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "型ルーフ高さ" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "アイロン方向一貫性" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "上面方向一貫性" + +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "上面/底面の方向一貫性" + +#: fdmprinter.def.json +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に設定するとスカートが無効になります。" + +#: fdmprinter.def.json +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "最初のレイヤーに線幅の乗数です。この値を増やすと、ベッドの接着性が向上します。" + +#: fdmprinter.def.json +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "無負荷移動係数" + +#: fdmprinter.def.json +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Z 軸ギャップにスキンなし" + +#: fdmprinter.def.json +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "これまでにないモデルの印刷方法です。" + +#: fdmprinter.def.json +msgctxt "adhesion_type option none" +msgid "None" +msgstr "なし" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "なし" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "標準" + +#: fdmprinter.def.json +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "標準" + +#: fdmprinter.def.json +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を生成できない場合の最後の手段として使用する必要があります。" + +#: fdmprinter.def.json +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "スキン内にない" + +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "外側表面には適用しない" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "ノズル角度" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "ノズル内径" + +#: fdmprinter.def.json +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "ノズル拒否エリア" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ノズルID" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "ノズル長さ" + +#: fdmprinter.def.json +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "ノズル切替え後のプライムに必要な余剰量" + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "ノズルスイッチ押し戻し速度" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "ノズルスイッチ引き込み速度" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "ノズルスイッチ引き戻し距離" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "ノズルスイッチ引き戻し速度" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "エクストルーダーの数" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "有効なエクストルーダーの数" + +#: fdmprinter.def.json +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "遅いレイヤーの数" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "有効なエクストルーダートレインの数(ソフトウェアが自動設定)" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "エクストルーダーの数。エクストルーダーの単位は、フィーダー、ボーデンチューブ、およびノズルを組合せたもの。" + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "ブラシ全体をノズルが移動する回数。" + +#: fdmprinter.def.json +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 "天井面の表面に近づく際にインフィル密度が半減する回数。天井面に近い領域ほど高い密度となり、インフィル密度まで達します。" + +#: fdmprinter.def.json +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 "天井面より下に遠ざかる際にサポートのインフィル密度が半減する回数 天井面に近い領域ほど高い密度となり、サポートのインフィル密度になります。" + +#: fdmprinter.def.json +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "オクテット" + +#: fdmprinter.def.json +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "オフ" + +#: fdmprinter.def.json +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "オブジェクトの X 方向に適用されたオフセット。" + +#: fdmprinter.def.json +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "オブジェクトのY 方向適用されたオフセット。" + +#: fdmprinter.def.json +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 方向に適用されたオフセット。この 'オブジェクト シンク' と呼ばれていたものを再現できます。" + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "エクストルーダーのオフセット" + +#: fdmprinter.def.json +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "1つずつ" + +#: fdmprinter.def.json +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ホップを実行します。" + +#: fdmprinter.def.json +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 "メッシュの最後のレイヤーでのみアイロンをかけます。下層にて滑らかな表面仕上げを必要としない場合、時間を節約します。" + +#: fdmprinter.def.json +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 "モデルの外側のみにブリムを印刷します。これにより、後で取り除くブリムの量が減少します。またプレートへの接着力はそれほど低下しません。" + +#: fdmprinter.def.json +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Ooze Shield角度" + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Ooze Shield距離" + +#: fdmprinter.def.json +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "壁印刷順序の最適化" + +#: fdmprinter.def.json +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 "撤回と移動距離を減らすために、壁のプリント順序を最適化します。ほとんどの部品がこの設定を有効にしている方が良い印刷結果につながりますが、実際には時間がかかることがありますので、最適化の有無に関わらず印刷時間を比較してください。ビルドプレートの接着タイプにブリムを選択すると最初のレイヤーは最適化されません。" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "ノズル外径" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "外壁加速度" + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "外壁用エクストルーダー" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "外壁のフロー" + +#: fdmprinter.def.json +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "外壁はめ込み" + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "外壁ジャーク" + +#: fdmprinter.def.json +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "外側ウォールライン幅" + +#: fdmprinter.def.json +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "外壁速度" + +#: fdmprinter.def.json +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "外壁移動距離" + +#: fdmprinter.def.json +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "外側から内側へ" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "張り出し壁アングル" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "張り出し壁速度" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "張り出し壁は、この割合で通常の印刷速度で印刷されます。" + +#: fdmprinter.def.json +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "引き戻し前に一時停止します。" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "ブリッジ壁とスキンを印刷する際に使用するファン速度の割合。" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "セカンドブリッジのスキンレイヤーを印刷する際に使用するファン速度の割合。" + +#: fdmprinter.def.json +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 "サポートを超えた直後にスキン領域に印字するときに使用するファン速度を割合で示します。高速ファンを使用すると、サポートが取り外しやすくなります。" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "サードブリッジのスキンレイヤーを印刷する際に使用するファン速度の割合。" + +#: fdmprinter.def.json +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 モデルです。" + +#: fdmprinter.def.json +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 * 最小ウォールライン幅 + マージン]に拡張します。このマージンを増やすと移行の回数が減り、押出の開始/停止回数が減少し、移動時間が短縮されます。ただし、ライン幅の変化が大きいと、押出不足や押出過多の問題が発生することがあります。" + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "プライムタワー加速度" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Brim" +msgstr "プライムタワーブリム" + +#: fdmprinter.def.json +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "プライムタワーのフロー" + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "プライムタワージャーク" + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "プライムタワーのライン幅" + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "プライムタワー最小容積" + +#: fdmprinter.def.json +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "プライムタワーのサイズ" + +#: fdmprinter.def.json +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "プライムタワー印刷速度" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "プライムタワーX位置" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "プライムタワーY位置" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +msgstr "モデルがない場合でも、プライムタワーには、ブリムによって与えられる追加の付着が必要なことがあります。現在は「ラフト」密着型では使用できません。" + +#: fdmprinter.def.json +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "印刷加速度" + +#: fdmprinter.def.json +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "印刷ジャーク" + +#: fdmprinter.def.json +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "印刷頻度" + +#: fdmprinter.def.json +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "印刷速度" + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "薄壁印刷" + +#: fdmprinter.def.json +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "印刷物の横にタワーを造形して、ノズル交換後にフィラメントの調整をします。" + +#: fdmprinter.def.json +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 "面材構造を印刷するには、モデルの上部がサポートされている必要があります。これを有効にすると、印刷時間と材料の使用量が減少しますが、オブジェクトの強度が不均一になります。" + +#: fdmprinter.def.json +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 "アイロンラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" + +#: fdmprinter.def.json +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 "型を取るため印刷し、ビルドプレート上の同じようなモデルを得るためにキャスト用の印刷をします。" + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "ノズルサイズよりも細い壁を作ります。" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "セカンドブリッジのスキンレイヤーを印刷する際に使用する印刷速度。" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "サードブリッジのスキンレイヤーを印刷する際に使用する印刷速度。" + +#: fdmprinter.def.json +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 "" +"壁より前にインフィルをプリントします はじめに壁をプリントするとより精密な壁になりますが、オーバーハングのプリントは悪化します\n" +"はじめにインフィルをプリントすると丈夫な壁になりますが、インフィルの模様が時折表面から透けて表れます。" + +#: fdmprinter.def.json +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 "上面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" + +#: fdmprinter.def.json +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 "上面/底面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" + +#: fdmprinter.def.json +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "印刷温度" + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "初期レイヤー印刷温度" + +#: fdmprinter.def.json +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "" + +#: fdmprinter.def.json +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 "すべてのレイヤーごとに予備の壁を印刷します。このようにして、インフィルは余分な壁の間に挟まれ、より強い印刷物が得られる。" + +#: fdmprinter.def.json +msgctxt "resolution label" +msgid "Quality" +msgstr "品質" + +#: fdmprinter.def.json +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "クォーターキュービック" + +#: fdmprinter.def.json +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "ラフト" + +#: fdmprinter.def.json +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "ラフト間のラップ" + +#: fdmprinter.def.json +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "ラフトベースエクストルーダー" + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "ラフトベースファン速度" + +#: fdmprinter.def.json +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "ラフトベースラインスペース" + +#: fdmprinter.def.json +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "ラフトベースライン幅" + +#: fdmprinter.def.json +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "ラフトベース印刷加速度" + +#: fdmprinter.def.json +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "ラフトベース印刷ジャーク" + +#: fdmprinter.def.json +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "ラフトベース印刷速度" + +#: fdmprinter.def.json +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "ラフトベース厚さ" + +#: fdmprinter.def.json +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "ラフトベースウォール数" + +#: fdmprinter.def.json +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "ラフトの余分なマージン" + +#: fdmprinter.def.json +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "ラフトファン速度" + +#: fdmprinter.def.json +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "ラフト中間エクストルーダー" + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "ラフト中間層ファン速度" + +#: fdmprinter.def.json +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "ラフト中間レイヤー" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "ラフト中央ライン幅" + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "ラフト中間層印刷加速度" + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "ラフト中間層印刷ジャーク" + +#: fdmprinter.def.json +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "ラフト中間印刷速度" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "ラフト中間スペース" + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "ラフト中央厚さ" + +#: fdmprinter.def.json +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "ラフト印刷加速度" + +#: fdmprinter.def.json +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "ラフト印刷ジャーク" + +#: fdmprinter.def.json +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "ラフト印刷速度" + +#: fdmprinter.def.json +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "ラフト補整" + +#: fdmprinter.def.json +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "ラフトトップエクストルーダー" + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "ラフト上層ファン速度" + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "ラフト最上層厚さ" + +#: fdmprinter.def.json +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "ラフト最上層" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "ラフト最上ライン幅" + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "ラフト上層層印刷加速度" + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "ラフト上層印刷ジャーク" + +#: fdmprinter.def.json +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "ラフト上層印刷速度" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "ラフト最上面スペース" + +#: fdmprinter.def.json +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "ランダム" + +#: fdmprinter.def.json +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "インフィル開始のランダム化" + +#: fdmprinter.def.json +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つのセグメントが強くなることを回避しますが、追加の移動距離が必要となります。" + +#: fdmprinter.def.json +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 "外壁を印刷する際に振動が起こり、表面が粗くてぼやける。" + +#: fdmprinter.def.json +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "長方形" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "標準ファン速度" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "標準ファン速度時の高さ" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "標準ファン速度時のレイヤー" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "標準/最大ファン速度のしきい値" + +#: fdmprinter.def.json +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "相対押出" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "全穴除去" + +#: fdmprinter.def.json +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "空の最初のメッシュの削除" + +#: fdmprinter.def.json +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "重複メッシュの削除" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "ラフト内側コーナーの削除" + +#: fdmprinter.def.json +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つのマテリアルのオブジェクトが互いに重なっている場合に使用されます。" + +#: fdmprinter.def.json +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 "最初に印刷したレイヤーの下に空のレイヤーがある場合は取り除きます。この設定を無効にすると、スライストレランスが「排他」または「中間」に設定されている場合に最初のレイヤーが空になる原因になります。" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "ラフトから内側コーナーを削除し、ラフトが凸になるようにします。" + +#: fdmprinter.def.json +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 "各レイヤーの穴を消し、外形のみを保持します。これにより、見えない部分の不要な部分が無視されますが、表面上にある穴も全て造形されなくなります。" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +#: fdmprinter.def.json +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つの線を使用すると、トップ部分の造形が改善されます。" + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution description" +msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." +msgstr "モデルに干渉しないようにする衝突計算の精細度。小さい値を設定すると、失敗の少ない正確なツリーが生成されますが、スライス時間は大きく増加します。" + +#: fdmprinter.def.json +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "外壁の前に引き戻す" + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "レイヤー変更時に引き戻す" + +#: fdmprinter.def.json +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "ノズルが印刷しないで良い領域を移動する際にフィラメントを引き戻す。" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "ノズルが印刷しないで良い領域を移動する際にフィラメントを引き戻す。" + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "ノズルは次の層に移動するときフィラメントを引き戻します。" + +#: fdmprinter.def.json +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "引き戻し距離" + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "余分な押し戻し量の引き戻し" + +#: fdmprinter.def.json +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "引き戻し最小移動距離" + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "押し戻し速度の取り消し" + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "引き戻し速度の取り消し" + +#: fdmprinter.def.json +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "引き戻し速度" + +#: fdmprinter.def.json +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "右" + +#: fdmprinter.def.json +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "ファン速度を0~1にスケール" + +#: fdmprinter.def.json +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になるようスケールします。" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "スケールファクタ収縮補正" + +#: fdmprinter.def.json +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "シーンにサポートメッシュがある" + +#: fdmprinter.def.json +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "シームコーナー設定" + +#: fdmprinter.def.json +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 "ドラフトシールドの高さを設定します。ドラフトシールドは、モデルの全高、または限られた高さで印刷するように選択します。" + +#: fdmprinter.def.json +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "デュアルエクストルーダーで印刷するための設定。" + +#: fdmprinter.def.json +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "CuraエンジンがCuraフロントエンドから呼び出されない場合のみ使用される設定。" + +#: fdmprinter.def.json +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "共有ノズルの初期引き戻し" + +#: fdmprinter.def.json +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "鋭い角" + +#: fdmprinter.def.json +msgctxt "shell description" +msgid "Shell" +msgstr "外郭" + +#: fdmprinter.def.json +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "最短" + +#: fdmprinter.def.json +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "プリンターのバリエーションの表示" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "スキンエッジサポートレイヤー" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "スキンエッジサポートの厚さ" + +#: fdmprinter.def.json +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "表面展開距離" + +#: fdmprinter.def.json +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "表面公差" + +#: fdmprinter.def.json +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "表面公差量" + +#: fdmprinter.def.json +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "表面除去幅" + +#: fdmprinter.def.json +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 "これより狭いスキン領域は展開されません。モデル表面に、垂直に近い斜面がある場合に作成される狭いスキン領域の拡大を回避するためです。" + +#: fdmprinter.def.json +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ミリ時に、サポートの接続をわざとスキップし、後のサポート材の構造をもろくし、壊れやすくする。" + +#: fdmprinter.def.json +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 "サポートラインの接続部分をスキップし、サポート材部分を壊れやすくします。この設定はジグザクのサポートインフィル材のパターンにて適用できます。" + +#: fdmprinter.def.json +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "スカート" + +#: fdmprinter.def.json +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "スカート距離" + +#: fdmprinter.def.json +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "スカートライン数" + +#: fdmprinter.def.json +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "スカート/ブリム加速度" + +#: fdmprinter.def.json +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "スカート/ブリムエクストルーダー" + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "スカート/ブリムのフロー" + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "スカート/ブリムジャーク" + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "スカート/ブリムラインの幅" + +#: fdmprinter.def.json +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "スカート/ブリム最小長さ" + +#: fdmprinter.def.json +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "スカート/ブリム速度" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "スライス公差" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "小型形体の初期レイヤー速度" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "小型形体の最大長さ" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "小さい穴の最大サイズ" + +#: fdmprinter.def.json +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "小さいレイヤーのプリント温度" + +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + +#: fdmprinter.def.json +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 "最初のレイヤーの小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。" + +#: fdmprinter.def.json +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 "小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。" + +#: fdmprinter.def.json +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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "スマート・シーム" + +#: fdmprinter.def.json +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "滑らかな輪郭" + +#: fdmprinter.def.json +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シームは印刷物上でほとんどみえませんが、層ビューでは確認できます)。スムージングは、細かい表面の詳細をぼかす傾向があることに注意してください。" + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "マテリアルによっては、移動中に滲み出てきてしまうときがあり、ここで調整することができます。" + +#: fdmprinter.def.json +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 "いくつかの材料は、ワイプ移動中ににじみ出るためここで補償することができます。" + +#: fdmprinter.def.json +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "特別モード" + +#: fdmprinter.def.json +msgctxt "speed description" +msgid "Speed" +msgstr "スピード" + +#: fdmprinter.def.json +msgctxt "speed label" +msgid "Speed" +msgstr "スピード" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "ホップ中に z 軸を移動する速度。" + +#: fdmprinter.def.json +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "滑らかな外側輪郭" + +#: fdmprinter.def.json +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の動きを促し、この機能によりソリッドのモデルを固定した底辺と単一のウォールの印刷にします。この機能は各レイヤーが単一の部品を含んでいる場合のみに有効です。" + +#: fdmprinter.def.json +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "スタンバイ温度" + +#: fdmprinter.def.json +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "G-Codeの開始" + +#: fdmprinter.def.json +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 "レイヤーの経路始点。連続するレイヤー経路が同じポイントで開始すると、縦のシームが印刷に表示されることがあります。ユーザーが指定した場所の近くでこれらを整列させる場合、継ぎ目は最も簡単に取り除くことができます。無作為に配置すると、経路開始時の粗さが目立たなくなります。最短経路をとると、印刷が速くなります。" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "ミリメートルあたりのステップ (E)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "ミリメートルあたりのステップ (X)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "ミリメートルあたりのステップ (Y)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "ミリメートルあたりのステップ (Z)" + +#: fdmprinter.def.json +msgctxt "support description" +msgid "Support" +msgstr "サポート" + +#: fdmprinter.def.json +msgctxt "support label" +msgid "Support" +msgstr "サポート" + +#: fdmprinter.def.json +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "サポート加速度" + +#: fdmprinter.def.json +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "サポート底部距離" + +#: fdmprinter.def.json +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "サポート底面ウォールライン数" + +#: fdmprinter.def.json +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "サポートブリムのライン数" + +#: fdmprinter.def.json +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "サポートブリムの幅" + +#: fdmprinter.def.json +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "サポート分割ライン数" + +#: fdmprinter.def.json +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "サポート分割サイズ" + +#: fdmprinter.def.json +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "サポート密度" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "サポート距離優先順位" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "サポート用エクストルーダー" + +#: fdmprinter.def.json +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "サポートフロア加速度" + +#: fdmprinter.def.json +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "サポートフロア密度" + +#: fdmprinter.def.json +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "サポートフロアエクストルーダー" + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "支持材床面フロー" + +#: fdmprinter.def.json +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "サポートフロア水平展開" + +#: fdmprinter.def.json +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "サポートフロアジャーク" + +#: fdmprinter.def.json +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "サポートフロアライン方向" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "サポートフロアライン距離" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "サポートフロアのライン幅" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "サポートフロアパターン" + +#: fdmprinter.def.json +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "サポートフロア速度" + +#: fdmprinter.def.json +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "サポートフロア厚さ" + +#: fdmprinter.def.json +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "支持材のフロー" + +#: fdmprinter.def.json +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "サポート水平展開" + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "サポートインフィル加速度" + +#: fdmprinter.def.json +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "サポート用インフィルエクストルーダー" + +#: fdmprinter.def.json +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "サポートインフィルジャーク" + +#: fdmprinter.def.json +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "サポートインフィルレイヤー厚さ" + +#: fdmprinter.def.json +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "サポートインフィルラインの向き" + +#: fdmprinter.def.json +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "サポートインフィル速度" + +#: fdmprinter.def.json +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "サポートインタフェース加速度" + +#: fdmprinter.def.json +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "サポートインタフェース密度" + +#: fdmprinter.def.json +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "サポートインタフェースエクストルーダー" + +#: fdmprinter.def.json +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "支持材界面フロー" + +#: fdmprinter.def.json +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "サポートインターフェイス水平展開" + +#: fdmprinter.def.json +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "サポートインタフェースジャーク" + +#: fdmprinter.def.json +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "サポート面のライン方向" + +#: fdmprinter.def.json +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "サポート面のライン幅" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "サポートインタフェースパターン" + +#: fdmprinter.def.json +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "サポートインタフェース解像度" + +#: fdmprinter.def.json +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "サポートインタフェース速度" + +#: fdmprinter.def.json +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "サポートインタフェース厚さ" + +#: fdmprinter.def.json +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "サポートインターフェースのウォールライン数" + +#: fdmprinter.def.json +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "サポートジャーク" + +#: fdmprinter.def.json +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "サポート接合距離" + +#: fdmprinter.def.json +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "サポートライン距離" + +#: fdmprinter.def.json +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "サポートライン幅" + +#: fdmprinter.def.json +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "サポートメッシュ" + +#: fdmprinter.def.json +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "サポートオーバーハング角度" + +#: fdmprinter.def.json +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "サポートパターン" + +#: fdmprinter.def.json +msgctxt "support_type label" +msgid "Support Placement" +msgstr "サポート配置" + +#: fdmprinter.def.json +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "サポートルーフ加速度" + +#: fdmprinter.def.json +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "サポートルーフ密度" + +#: fdmprinter.def.json +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "サポートルーフエクストルーダー" + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "支持材天井面フロー" + +#: fdmprinter.def.json +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "サポートルーフ水平展開" + +#: fdmprinter.def.json +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "サポートルーフジャーク" + +#: fdmprinter.def.json +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "サポートルーフライン方向" + +#: fdmprinter.def.json +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "サポートルーフライン距離" + +#: fdmprinter.def.json +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "サポートルーフのライン幅" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "サポートルーフパターン" + +#: fdmprinter.def.json +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "サポートルーフ速度" + +#: fdmprinter.def.json +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "サポートルーフ厚さ" + +#: fdmprinter.def.json +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "サポートルーフウォールライン数" + +#: fdmprinter.def.json +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "サポート速度" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "サポート階段高さ" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "サポート階段最大幅" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "サポートステアステップ最小傾斜角度" + +#: fdmprinter.def.json +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "サポート構造" + +#: fdmprinter.def.json +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "サポート上部距離" + +#: fdmprinter.def.json +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "サポートウォールライン数" + +#: fdmprinter.def.json +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "サポートX/Y距離" + +#: fdmprinter.def.json +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "サポートZ距離" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "サポート対象スキンファン速度" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "表面" + +#: fdmprinter.def.json +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "表面エネルギー" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "表面モード" + +#: fdmprinter.def.json +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "表面の接着傾向。" + +#: fdmprinter.def.json +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "表面エネルギー。" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + +#: fdmprinter.def.json +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 "交差するメッシュがどのレイヤーに属しているかを切り替えることで、オーバーラップしているメッシュを絡み合うようにします。この設定をオフにすると、一方のメッシュはオーバーラップ内のすべてのボリュームを取得し、他方のメッシュは他から削除されます。" + +#: fdmprinter.def.json +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つのレイヤー間の目標水平距離。この設定を小さくすると、レイヤーのエッジが近づくように薄いレイヤーが使用されます。" + +#: fdmprinter.def.json +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座標。" + +#: fdmprinter.def.json +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "" +"レイヤー内の各印刷を開始するX座\n" +"標の位置。" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時のノズルの位置を表すX座標。" + +#: fdmprinter.def.json +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座標。" + +#: fdmprinter.def.json +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "レイヤー内の各パーツの印刷を開始する場所の近くのY座標。" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時にノズル位置を表すY座標。" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "印刷開始時にノズルがポジションを確認するZ座標。" + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "初期レイヤーの印刷中の加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "初期レイヤーの加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "最初のレイヤー時の加速度。" + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "移動加速度は最初のレイヤーに適用されます。" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "内側のウォールがが出力される際のスピード。" + +#: fdmprinter.def.json +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "インフィルの印刷の加速スピード。" + +#: fdmprinter.def.json +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "アイロン時の加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "印刷の加速スピードです。" + +#: fdmprinter.def.json +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "ラフトの底面印刷時の加速度。" + +#: fdmprinter.def.json +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 "サポートのフロアが印刷される加速度。より低い加速度で印刷すると、モデル上のサポートの接着性を向上させることができます。" + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "インフィルのサポート材のプリント時の加速度。" + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "ラフトの中間層印刷時の加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "最も外側の壁をプリントする際の加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "プライムタワーの印刷時のスピード。" + +#: fdmprinter.def.json +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "ラフト印刷時の加速度。" + +#: fdmprinter.def.json +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 "サポートの上面と下面が印刷される加速度。低加速度で印刷するとオーバーハングの品質が向上します。" + +#: fdmprinter.def.json +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 "サポートの上面がプリントされる加速度、低加速度で印刷するとオーバーハングの品質が向上します。" + +#: fdmprinter.def.json +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 "スカートとブリム印刷時の加速度。通常、初期レイヤーの印刷スピードにて適用されるが、異なる速度でスカートやブリムを印刷したい場合使用できる。" + +#: fdmprinter.def.json +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "サポート材プリント時の加速スピード。" + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "ラフトのトップ印刷時の加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "ウォールをプリントする際の加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "上部表面プリント時の加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "トップとボトムのレイヤーの印刷加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "移動中の加速度。" + +#: fdmprinter.def.json +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 "アイロン時にノズルから出しておくフィラメントの量。多少出しておくと裂け目を綺麗にします。ただ出し過ぎると吐出過多になり、端が荒れます。" + +#: fdmprinter.def.json +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 "インフィルと壁のオーバーラップ量 (インフィルライン幅に対する%)。少しのオーバーラップによって壁がインフィルにしっかりつながります。" + +#: fdmprinter.def.json +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 "インフィルと壁が交差する量、わずかな交差によって壁がインフィルにしっかりつながります。" + +#: fdmprinter.def.json +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に設定します。これは通常、ヒートゾーンの長さと同じに設定します。" + +#: fdmprinter.def.json +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 "水平面とノズル直上の円錐部分との間の角度。" + +#: fdmprinter.def.json +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 "タワーの屋上の角度。値が高いほど尖った屋根が得られ、値が低いほど屋根が平らになります。" + +#: fdmprinter.def.json +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度は輪郭に従いモデルの外側の外殻をつくります。" + +#: fdmprinter.def.json +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の場合、枝の太さは全長にわたって同じになります。少し角度を付けると、ツリーサポートの安定性が高まります。" + +#: fdmprinter.def.json +msgctxt "support_tree_angle description" +msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "枝の角度。枝を垂直で安定したものにするためには小さい角度を使用します。高さを得るためには大きい角度を使用します。" + +#: fdmprinter.def.json +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度は水平である。角度が小さいと、サポートはより頑丈になりますが、より多くのマテリアルが必要になります。負の角度は、サポートのベースがトップよりも広くなります。" + +#: fdmprinter.def.json +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 "レイヤー内の各ポリゴンに導入されたポイントの平均密度。ポリゴンの元の点は破棄されるため、密度が低いと解像度が低下します。" + +#: fdmprinter.def.json +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 "各線分に導入されたランダム点間の平均距離。ポリゴンの元の点は破棄されるので、積層の値を低くすることで、なめらかな仕上がりになります。この値は、ファジースキンの厚さの半分よりも大きくなければなりません。" + +#: fdmprinter.def.json +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "プリントヘッド移動のデフォルトの加速度。" + +#: fdmprinter.def.json +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 "印刷中のデフォルトの温度。これはマテリアルの基本温度となります。他のすべての造形温度はこの値に基づいてオフセットする必要があります" + +#: fdmprinter.def.json +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 "加熱式ビルドプレートのデフォルト温度。これはビルドプレートの「基本」温度でます。他のすべての印刷温度はこの値に基づいてオフセットする必要があります" + +#: fdmprinter.def.json +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 以下の場合は、スキンライン間のギャップを増やします。" + +#: fdmprinter.def.json +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 "サポート構造のフロアの密度です。高い値は、サポートのよりよい接着を促します。" + +#: fdmprinter.def.json +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 "サポート材のルーフの部分の密度を調整します 大きな値ではオーバーハングの成功率があがりますが、サポート材が除去しにくくなります。" + +#: fdmprinter.def.json +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 以下の場合は、スキンライン間のギャップを増やします。" + +#: fdmprinter.def.json +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 以下の場合は、スキンライン間のギャップを増やします。" + +#: fdmprinter.def.json +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "造形可能領域の幅(Y方向)。" + +#: fdmprinter.def.json +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "特別な塔の直径。" + +#: fdmprinter.def.json +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 "ツリーサポートの最も細い枝の直径。枝は太いほど丈夫です。基部に近いところでは、枝はこれよりも太くなります。" + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "材料をフィーダーに送るホイールの直径。" + +#: fdmprinter.def.json +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 "ツリーサポートの最も広い枝の直径。本体が太いほど丈夫です。本体が細いほど、ビルドプレートを占有するスペースが少なくなります。" + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "次のレイヤーの高さを前のレイヤーの高さと比べた差。" + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "アイロンライン同士の距離。" + +#: fdmprinter.def.json +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "ノズルが既に印刷された部分を移動する際の間隔。" + +#: fdmprinter.def.json +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 "ベースラフト層のラフトライン間の距離。広い間隔は、ブルドプレートからのラフトの除去を容易にする。" + +#: fdmprinter.def.json +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 "中間ラフト層とラフト線の間の距離。中央の間隔はかなり広くなければならず、トップラフト層を支えるために十分な密度でなければならない。" + +#: fdmprinter.def.json +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 "上のラフト層とラフト線の間の距離。間隔は線の幅と同じにして、サーフェスがソリッドになるようにします。" + +#: fdmprinter.def.json +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 "インターロック構造を生成するモデル間の境界からの距離(セル単位)。セルが少なすぎると密着性が低下します。" + +#: fdmprinter.def.json +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 "モデルから最外線のブリムまでの距離。大きなブリムは、ビルドプレートへの接着を高めますが、有効な印刷面積も減少させます。" + +#: fdmprinter.def.json +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 "インターロック構造が生成されないモデルの外側からの距離(セル単位で測定)。" + +#: fdmprinter.def.json +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 "ノズルからの熱がフィラメントに伝達される距離。" + +#: fdmprinter.def.json +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 "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" + +#: fdmprinter.def.json +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 "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" + +#: fdmprinter.def.json +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 "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" + +#: fdmprinter.def.json +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "ブラシ全体でヘッド前後に動かす距離。" + +#: fdmprinter.def.json +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 "インフィルラインのエンドポイントは短縮され、材料が節約されます。この設定は、これらのラインのエンドポイントにおけるオーバーハングの角度です。" + +#: fdmprinter.def.json +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 "印刷中にノズルが冷える際の速度。同じ値が、加熱する際の加熱速度に割当られます。" + +#: fdmprinter.def.json +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 "サポートのインフィルの最初の層を印刷に使用するエクストルーダー。複数のエクストルーダーがある場合に使用されます。" + +#: fdmprinter.def.json +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 "ラフトの最初のレイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" + +#: fdmprinter.def.json +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 "サポートのフロア面をプリントする際に使用するエクストルーダーの列。デュアルノズル時に使用します。" + +#: fdmprinter.def.json +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 "サポート材のインフィルを印刷に使用するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。" + +#: fdmprinter.def.json +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 "ラフトの中間レイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" + +#: fdmprinter.def.json +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 "サポートのルーフおよび底面を印刷するために使用するエクストルーダーの列。デュアルノズル時に使用されます。" + +#: fdmprinter.def.json +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 "サポートのルーフ面をプリントする際のエクストルーダー列。デュアルノズル時に使用します。" + +#: fdmprinter.def.json +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 "スカートまたはブリムをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "スカート/ブリム/ラフトをプリントする際のエクストルーダー。これはマルチエクストルージョン時に使用されます。" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "サポート材を印刷するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。" + +#: fdmprinter.def.json +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 "ラフトのトップレイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" + +#: fdmprinter.def.json +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "インフィル造形時に使われるExtruder。デュアルノズルの場合に利用します。" + +#: fdmprinter.def.json +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "内壁印刷用のエクストルーダー。デュアルノズル印刷時に使用。" + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "外壁印刷用のエクストルーダー。デュアルノズル印刷時に使用。" + +#: fdmprinter.def.json +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 "上部と下部の表面を印刷する時に使われるエクストルーダー。デュアルノズル印刷時に使用。" + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "上部の表面印刷用のエクストルーダー。デュアルノズル印刷時に使用。" + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "壁造形用のエクストルーダー。デュアルノズル印刷時に使用。" + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "ベースラフト層印刷時のファン速度。" + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "ミドルラフト印刷時のファンの速度。" + +#: fdmprinter.def.json +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "ラフト印刷時のファンの速度。" + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "トップラフト印刷時のファンの速度。" + +#: fdmprinter.def.json +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 "画像ファイルの位置。この画像の輝度値で印刷のインフィル内の対象箇所における最小密度が決まります。" + +#: fdmprinter.def.json +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 "画像ファイルの位置。この画像の輝度値でサポートの対象箇所における最小密度が決まります。" + +#: fdmprinter.def.json +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 "最初の数層は印刷失敗の可能性を軽減させるために、設定した印刷スピードよりも遅く印刷されます。" + +#: fdmprinter.def.json +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層のみを上げることで、ラフトとモデルとの間の結合を低下させる。結果ラフトを剥がしやすくします。" + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "造形可能領域の幅(Z方向)。" + +#: fdmprinter.def.json +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "型を印刷するためのモデルの水平部分上の高さ。" + +#: fdmprinter.def.json +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 "通常速度でファンが回転するときの高さ。ここより下層レイヤーでは初期ファンのスピードから通常の速度まで徐々に増加します。" + +#: fdmprinter.def.json +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軸)。" + +#: fdmprinter.def.json +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 "ノズル先端とプリントヘッドの最下部との高さの差。" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "エクストルーダースイッチ後のZホップを実行するときの高さの違い。" + +#: fdmprinter.def.json +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Zホップを実行するときの高さ。" + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Zホップを実行するときの高さ。" + +#: fdmprinter.def.json +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)。値を大きくすると早く印刷しますが荒くなり、小さくすると印刷が遅くなりますが造形が綺麗になります。" + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "密度が半分に切り替わる前の所定のインフィルの高さ。" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "密度が半分に切り替える前の所定のサポートのインフィルの高さ。" + +#: fdmprinter.def.json +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 "インターロック構造のビームの高さ(レイヤー数単位)。レイヤーが少ないほど強度は高くなりますが、欠陥が発生しやすくなります。" + +#: fdmprinter.def.json +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 "インターロック構造のビームの高さ(レイヤー数単位)。レイヤーが少ないほど強度は高くなりますが、欠陥が発生しやすくなります。" + +#: fdmprinter.def.json +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)。厚い初期層はビルドプレートへの接着を容易にする。" + +#: fdmprinter.def.json +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 "モデルにのっている階段状のサポートの底のステップの高さ。値を小さくするとサポートを除去するのが困難になりますが、値が大きすぎるとサポートの構造が不安定になる可能性があります。ゼロに設定すると、階段状の動作をオフにします。" + +#: fdmprinter.def.json +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 "最初のブリムラインとプリントの最初のレイヤーの輪郭との間の水平距離。小さなギャップがあると、ブリムの取り外しが容易になり、断熱性の面でもメリットがあります。" + +#: fdmprinter.def.json +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" +"これは最小距離です。複数のスカートラインがこの距離から外側に展開されます。" + +#: fdmprinter.def.json +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 "インフィルラインは矯正され、プリント時間が節約されます。これは、インフィルラインの全長にわたって許可されるオーバーハングの最大角度です。" + +#: fdmprinter.def.json +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "インフィルパターンはX軸に沿ってこの距離を移動します。" + +#: fdmprinter.def.json +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "インフィルパターンはY軸に沿ってこの距離を移動します。" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。" + +#: fdmprinter.def.json +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "ベースラフト層印刷時のジャーク。" + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "ミドルラフト層印刷時のジャーク。" + +#: fdmprinter.def.json +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "ラフトが印刷時のジャーク。" + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "トップラフト層印刷時のジャーク。" + +#: fdmprinter.def.json +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 "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。" + +#: fdmprinter.def.json +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 "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。" + +#: fdmprinter.def.json +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 "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。" + +#: fdmprinter.def.json +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 "ファンが通常の速度で回転する時のレイヤー。通常速度のファンの高さが設定されている場合、この値が計算され、整数に変換されます。" + +#: fdmprinter.def.json +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 "通常速度と最速の間でしきい値を設定する積層時間。この時間よりも遅く印刷する積層は、通常速度を使用します。より速い層の場合、ファンは最高速度に向かって徐々に加速します。" + +#: fdmprinter.def.json +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "引き戻されるマテリアルの長さ。" + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "プリンターに取り付けられているビルドプレートの材料です。" + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "基準レイヤー高さと比較して許容される最大の高さ。" + +#: fdmprinter.def.json +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度は水平である。角度を小さくすると、壁が少なくなりますが、より多くの材料が使用されます。" + +#: fdmprinter.def.json +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°では、モデルは決して変更されません。" + +#: fdmprinter.def.json +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²の場合、モデル底部にあるすべての穴は充填されます。" + +#: fdmprinter.def.json +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となります。" + +#: fdmprinter.def.json +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 つにマージされます。" + +#: fdmprinter.def.json +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)。" + +#: fdmprinter.def.json +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は小さくなります。" + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "初期レイヤー印刷中の最大瞬時速度の変化。" + +#: fdmprinter.def.json +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "プリントヘッドの最大瞬間速度の変更。" + +#: fdmprinter.def.json +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "アイロン時の最大加速度。" + +#: fdmprinter.def.json +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "内側のウォールがプリントされれう際の最大瞬間速度の変更。" + +#: fdmprinter.def.json +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "インフィルの印刷時の瞬間速度の変更。" + +#: fdmprinter.def.json +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "どのサポートのフロア部分を印刷するかによって最大瞬間速度は変化します。" + +#: fdmprinter.def.json +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "サポート材の印刷時、最大瞬間速度の変更。" + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "外側のウォールが出力される際の最大瞬間速度の変更。" + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "プライムタワーがプリントされる際の最大瞬間速度を変更します。" + +#: fdmprinter.def.json +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "どのルーフとフロアのサポート部分を印刷するかによって最大瞬間速度は変化します。" + +#: fdmprinter.def.json +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "どのサポートのルーフ部分を印刷するかによって最大瞬間速度は変化します。" + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "スカートとブリムがプリントされる最大瞬時速度の変更。" + +#: fdmprinter.def.json +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "サポート材の印刷時の最大瞬間速度の変更。" + +#: fdmprinter.def.json +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "ウォールのプリント時の最大瞬間速度を変更。" + +#: fdmprinter.def.json +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "上部表面プリント時の最大加速度。" + +#: fdmprinter.def.json +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "トップとボトムのレイヤーを印刷する際の最大瞬間速度の変更。" + +#: fdmprinter.def.json +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "移動する際の最大瞬時速度の変更。" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "X方向のモーターの最大速度。" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Y方向のモーターの最大速度。" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Z方向のモーターの最大速度。" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "フィラメントの最大速度。" + +#: fdmprinter.def.json +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 "モデルにのっている階段のような下部のサポートのステップの最大幅。低い値にするサポートの除去が困難になり、高すぎる値は不安定なサポート構造につながります。" + +#: fdmprinter.def.json +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "型の外側とモデルの外側との間の最小距離です。" + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "プリントヘッドの最小移動速度。" + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "加熱中、印刷を開始することができる最低の温度。" + +#: fdmprinter.def.json +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 "ノズルが冷却される前にエクストルーダーが静止しなければならない最短時間。この時間より長時間エクストルーダーを使用しない場合にのみ、スタンバイ温度に冷却することができます。" + +#: fdmprinter.def.json +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° ではインフィルが提供されません。" + +#: fdmprinter.def.json +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° ではサポートが生成されません。" + +#: fdmprinter.def.json +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 "フィラメントを引き戻す際に必要な最小移動距離。これは、短い距離内での引き戻しの回数を減らすために役立ちます。" + +#: fdmprinter.def.json +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に設定されている場合、これは無視されます。" + +#: fdmprinter.def.json +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×最小偶数ウォールライン幅として計算されます。" + +#: fdmprinter.def.json +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 * 最小奇数ウォールライン幅として計算されます。" + +#: fdmprinter.def.json +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 "最遅印刷速度。印刷の速度が遅すぎると、ノズル内の圧力が低すぎて印刷品質が低下します。" + +#: fdmprinter.def.json +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 コードの処理速度に追いつくことができ、処理できないメッシュの詳細を取り除いてスライス速度を速めます。" + +#: fdmprinter.def.json +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 コードの処理速度に追いつくことができますが、精度が低下します。" + +#: fdmprinter.def.json +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 "ステアステップ効果を発揮するための、エリアの最小スロープです。小さい値を指定すると勾配が緩くなりサポートを取り除きやすくなりますが、値が非常に小さいと、モデルの他の部品に直感的に非常にわかりにくい結果が表れる場合があります。" + +#: fdmprinter.def.json +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が無効になっていて、最小速度を下回った場合、最小レイヤー時間よりも短くなる場合があります。" + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "プライムタワーの各層の最小容積。" + +#: fdmprinter.def.json +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "3Dプリンターの機種名。" + +#: fdmprinter.def.json +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。" + +#: fdmprinter.def.json +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 "ノズルは、移動時に既に印刷されたパーツを避けます。このオプションは、コーミングが有効な場合にのみ使用できます。" + +#: fdmprinter.def.json +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "ノズルは、移動時に既に印刷されたサポートを避けます。このオプションは、コーミングが有効な場合にのみ使用できます。" + +#: fdmprinter.def.json +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 "最底面のレイヤー数。下の厚さで計算すると、この値は整数に変換されます。" + +#: fdmprinter.def.json +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 "ラフトのベースレイヤーにある線状パターンの周囲にプリントする輪郭の数。" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "スキンエッジをサポートするインフィルレイヤーの数。" + +#: fdmprinter.def.json +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 "ビルドプレートから上にある初期底面レイヤーの数。下の厚さで計算すると、この値は整数に変換されます。" + +#: fdmprinter.def.json +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 "ラフトのベースと表面の間にあるレイヤーの数。これらのレイヤーがラフトの厚さの主要部分を占めています。この値を増やすと、より厚さのある丈夫なラフトになります。" + +#: fdmprinter.def.json +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 "ブリムに使用される線数。ブリムの線数は、ビルドプレートへの接着性を向上させるだけでなく、有効な印刷面積を減少させる。" + +#: fdmprinter.def.json +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 "サポートブリムに使用される線の数。ブリムの線数を増やすと、追加材料の費用でビルドプレートへの接着性が強化されます。" + +#: fdmprinter.def.json +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よりも滑らかな上面をもたらす。" + +#: fdmprinter.def.json +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 "最上面のレイヤー数。トップの厚さを計算する場合、この値は整数になります。" + +#: fdmprinter.def.json +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 "上部表面のレイヤー数。通常一層で綺麗に出来上がります。" + +#: fdmprinter.def.json +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 "サポートインフィルを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" + +#: fdmprinter.def.json +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 "サポートインターフェースフロアを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" + +#: fdmprinter.def.json +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 "サポートインターフェースルーフを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" + +#: fdmprinter.def.json +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 "サポートインターフェースを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" + +#: fdmprinter.def.json +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 "中心から数えて、変化を広げる必要のあるウォールの数。値が小さいほど、アウターウォールの幅が変化しないことを意味します。" + +#: fdmprinter.def.json +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 "ウォールの数。厚さから計算された場合、この値は整数になります。" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "ノズルの外径。" + +#: fdmprinter.def.json +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 "プリントのインフィル材料のパターンラインおよびジグザグインフィルはレイヤーごとに方向を入れ替え、材料コストを削減します。グリッド、トライアングル、トライヘキサゴン、キュービック、オクテット、クォーターキュービック、クロスおよび同心円パターンはレイヤーごとに完全にプリントされます。ジャイロイド、キュービック、クォーターキュービックおよびオクテットインフィルはレイヤーごとに変化し、各方向にかけてより均一な強度分布を実現します。ライトニングインフィルは造形物の天井のみを支えることで、インフィルを最低限にするよう試みます。" + +#: fdmprinter.def.json +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 "サポート材の形。サポート材の除去の方法を頑丈または容易にする設定が可能です。" + +#: fdmprinter.def.json +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "上層のパターン。" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "上層/底層のパターン。" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "第1層のプリントの底部のパターン。" + +#: fdmprinter.def.json +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "アイロンのパターン。" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "サポートのフロアが印刷されるパターン。" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "モデルとサポートのインタフェースが印刷されるパターン。" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "サポートのルーフが印刷されるパターン。" + +#: fdmprinter.def.json +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "レイヤー内の各パーツの印刷を開始する場所付近の位置。" + +#: fdmprinter.def.json +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "初期レイヤーの最大瞬時速度の変更。" + +#: fdmprinter.def.json +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "造形不可領域を考慮しないビルドプレートの形状。" + +#: fdmprinter.def.json +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 "プリントヘッドの形状。これらはプリントヘッドの位置を基準とした座標です。プリントヘッドの位置は通常、その最初のエクストルーダーの位置です。プリントヘッドの左側と手前側の寸法は、負の座標である必要があります。" + +#: fdmprinter.def.json +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パターンが交差するポケットの大きさはそのパターンが触れている高さ。" + +#: fdmprinter.def.json +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 "コースティングに必要な最小の容積。より小さい押出経路の場合、ボーデンチューブにはより少ない圧力しか蓄積されないので、コースティングの容積は比例する。この値は、常に、コースティングのボリュームよりも大きな必要があります。" + +#: fdmprinter.def.json +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)は、通常の印刷温度とスタンバイ温度のウィンドウにわたって平均化されています。" + +#: fdmprinter.def.json +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)は、通常の印刷時温度とスタンバイ時温度にて平均化されています。" + +#: fdmprinter.def.json +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 "内側のウォールをプリントする速度 外壁より内壁を高速でプリントすると、印刷時間の短縮になります。外壁のプリント速度とインフィルのプリント速度の中間に設定するのが適切です。" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "ブリッジスキン領域が印刷される速度。" + +#: fdmprinter.def.json +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "インフィルを印刷する速度。" + +#: fdmprinter.def.json +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "印刷スピード。" + +#: fdmprinter.def.json +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 "ベースラフト層が印刷される速度。これは、ノズルから出てくるマテリアルの量がかなり多いので、ゆっくりと印刷されるべきである。" + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "ブリッジ壁を印刷する速度。" + +#: fdmprinter.def.json +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 "プリント開始時にファンが回転する速度。後続のレイヤーでは、ファン速度は、高さに応じて早くなります。" + +#: fdmprinter.def.json +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 "しきい値に達する前のファンの回転スピード。プリント速度がしきい値より速くなると、ファンの速度は上がっていきます。" + +#: fdmprinter.def.json +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 "最小積層時間でファンが回転する速度。しきい値に達すると、通常のファンの速度と最速の間でファン速度が徐々に加速しはじめます。" + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "フィラメントが引き戻される時のスピード。" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "ワイプ引き戻し移動時にフィラメントが押し戻されるスピード。" + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "ノズル スイッチ後にフィラメントが押し戻される速度。" + +#: fdmprinter.def.json +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "フィラメントが引き戻される時のスピード。" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "ワイプ引き戻し中にフィラメントが引き戻される時の速度。" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "ノズル切り替え中のフィラメントの引き込み速度。" + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "フィラメントが引き戻される時のスピード。" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "ワイプ引き戻し移動時にフィラメントが引き戻される速度。" + +#: fdmprinter.def.json +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 "フィラメントを引き戻す速度。速度が早い程良いが早すぎるとフィラメントを削ってしまう可能性があります。" + +#: fdmprinter.def.json +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 "フロアのサポートがプリントされる速度。低速で印刷することで、サポートの接着性を向上させることができます。" + +#: fdmprinter.def.json +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 "サポート材のインフィルをプリントする速度 低速でプリントすると安定性が向上します。" + +#: fdmprinter.def.json +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 "ミドルラフト層が印刷される速度。ノズルから出てくるマテリアルの量がかなり多いので、ゆっくりと印刷されるべきである。" + +#: fdmprinter.def.json +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 "最も外側のウォールをプリントする速度。外側の壁を低速でプリントすると表面の質が改善しますが、内壁と外壁のプリント速度の差が大きすぎると、印刷の質が悪化します。" + +#: fdmprinter.def.json +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 "プライムタワーをプリントする速度です。異なるフィラメントの印刷で密着性が最適ではない場合、低速にてプライム タワーをプリントすることでより安定させることができます。" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "冷却ファンが回転する速度。" + +#: fdmprinter.def.json +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "ラフトが印刷される速度。" + +#: fdmprinter.def.json +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 "ルーフとフロアのサポート材をプリントする速度。低速でプリントするとオーバーハングの品質を向上できます。" + +#: fdmprinter.def.json +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 "ルーフとフロアのサポート材をプリントする速度 これらを低速でプリントするとオーバーハングの品質を向上できます。" + +#: fdmprinter.def.json +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 "スカートとブリムのプリント速度 通常は一層目のスピードと同じですが、異なる速度でスカートやブリムをプリントしたい場合に設定してください。" + +#: fdmprinter.def.json +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 "サポート材をプリントする速度です。高速でサポートをプリントすると、印刷時間を大幅に短縮できます。サポート材は印刷後に削除されますので、サポート構造の品質はそれほど重要ではありません。" + +#: fdmprinter.def.json +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 "トップラフト層が印刷される速度。この値はノズルが隣接するサーフェスラインをゆっくりと滑らかにするために、少し遅く印刷する必要があります。" + +#: fdmprinter.def.json +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 軸方向の動きが行われる速度。これは通常、ビルドプレートまたはマシンのガントリーが動きにくいため、印刷速度よりも低くなります。" + +#: fdmprinter.def.json +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "ウォールを印刷する速度。" + +#: fdmprinter.def.json +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "上部表面通過時の速度。" + +#: fdmprinter.def.json +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "フィラメントをきれいに引き出すために維持すべきフィラメントの引戻し速度。" + +#: fdmprinter.def.json +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "上部表面プリント時の速度。" + +#: fdmprinter.def.json +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "トップ/ボトムのレイヤーのプリント速度。" + +#: fdmprinter.def.json +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "移動中のスピード。" + +#: fdmprinter.def.json +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%よりわずかに低い値が推奨される。" + +#: fdmprinter.def.json +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 "初期レイヤーでの速度。ビルドプレートへの接着を改善するため低速を推奨します。ブリムやラフトなどのビルドプレート接着構造自体には影響しません。" + +#: fdmprinter.def.json +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 "一層目をプリントする速度 ビルトプレートへの接着を向上するため低速を推奨します。" + +#: fdmprinter.def.json +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 "最初のレイヤーを印刷する際のトラベルスピード。低速の方が、ビルドプレート剥がれるリスクを軽減することができます。この設定の値は、移動速度と印刷速度の比から自動的に計算されます。" + +#: fdmprinter.def.json +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "フィラメントがきれいに引き出される温度。" + +#: fdmprinter.def.json +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) の場合、造形温度は調整できません。" + +#: fdmprinter.def.json +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "印刷していないノズルの温度(もう一方のノズルが印刷中)" + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "印刷終了直前に冷却を開始する温度。" + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +msgstr "最初のレイヤーを印刷する温度。初期レイヤーのみ特別設定が必要ない場合は 0 に設定します。" + +#: fdmprinter.def.json +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "印刷中の温度。" + +#: fdmprinter.def.json +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の場合、最初のレイヤー印刷時のビルドプレートは加熱されないままになります。" + +#: fdmprinter.def.json +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の場合、ビルドプレートは加熱されないままになります。" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "材料のパージに使用する温度は、許容最高プリンティング温度とほぼ等しくなければなりません。" + +#: fdmprinter.def.json +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 "プリント時の最底面の厚み。これを積層ピッチで割った値で最低面のレイヤーの数を定義します。" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "スキンエッジをサポートする追加のインフィルの厚さ。" + +#: fdmprinter.def.json +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 "底面または上部のモデルと接触するサポートのインターフェイスの厚さ。" + +#: fdmprinter.def.json +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 "サポート材の底部の厚さ。これは、サポートが置かれるモデル上の積層密度を制御します。" + +#: fdmprinter.def.json +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 "サポートのルーフの厚さ。これは、モデルの下につくサポートの上部にある密度の量を制御します。" + +#: fdmprinter.def.json +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 "プリント時の最上面の厚み。これを積層ピッチで割った値で最上面のレイヤーの数を定義します。" + +#: fdmprinter.def.json +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 "プリント時の最上面、最底面の厚み。これを積層ピッチで割った値で最上面、最低面のレイヤーの数を定義します。" + +#: fdmprinter.def.json +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 "壁の厚さ。この値をラインの幅で割ることで壁の数が決まります。" + +#: fdmprinter.def.json +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 "インフィルマテリアルの層ごとの厚さ。この値は常にレイヤーの高さの倍数でなければなりません。" + +#: fdmprinter.def.json +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 "サポートのインフィルの厚さ。この値はレイヤーの倍数にする必要があり、違う場合は倍数に近い値に設定されます。" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "生成するG-codeの種類です。" + +#: fdmprinter.def.json +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "はみ出るフィラメントのボリューム。この値は、一般に、ノズル直径の3乗に近い値でなければならない。" + +#: fdmprinter.def.json +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "造形可能領域の幅(X方向)。" + +#: fdmprinter.def.json +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 "サポートの下に印刷されるブリムの幅。ブリムが大きいほど、追加材料の費用でビルドプレートへの接着性が強化されます。" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "インターロック構造ビームの幅。" + +#: fdmprinter.def.json +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "プライムタワーの幅。" + +#: fdmprinter.def.json +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 "振動が起こる幅。内壁は変更されていないので、これを外壁の幅より小さく設定することをお勧めします。" + +#: fdmprinter.def.json +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 "最大の引き戻し回数。この値は引き戻す距離と同じであることで、引き戻しが効果的に行われます。" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "プライムタワーの位置のx座標。" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "プライムタワーの位置のy座標。" + +#: fdmprinter.def.json +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "シーンにはサポートメッシュがあります。この設定はCuraで制御されます。" + +#: fdmprinter.def.json +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 "この設定は、ブリッジ壁が始まる直前に、エクストルーダーを動かす距離を制御します。ブリッジが始まる前にコースティングすることにより、ノズル内が減圧され、ブリッジがより平らになります。" + +#: fdmprinter.def.json +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 "この設定は、ラフトの輪郭の内側の角がどの程度丸められるかを制御します。内側の角は、ここで指定した値と等しい半径の半円に丸められます。この設定は、そのような円よりも小さいラフトの輪郭の穴を削除します。" + +#: fdmprinter.def.json +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 "この設定は、決められた距離の中で起こる引き戻しの回数を制限します。制限数以上の引き戻しは無視されます。これによりフィーダーでフィラメントを誤って削ってしまう問題を軽減させます。" + +#: fdmprinter.def.json +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 "これにより、モデルの周囲に壁ができ、熱を閉じ込め、外気の流れを遮蔽します。特に反りやすい材料に有効です。" + +#: fdmprinter.def.json +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(水平)方向にこのファクタでスケールされます。" + +#: fdmprinter.def.json +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(垂直)方向にこのファクタでスケールされます。" + +#: fdmprinter.def.json +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 "材料の冷却時の収縮を補正するために、モデルはこのスケールファクタでスケールされます。" + +#: fdmprinter.def.json +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "上部レイヤー" + +#: fdmprinter.def.json +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "上面展開距離" + +#: fdmprinter.def.json +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "上面除去幅" + +#: fdmprinter.def.json +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "最上面加速度" + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "上部表面用エクストルーダー" + +#: fdmprinter.def.json +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "上部表面スキンフロー" + +#: fdmprinter.def.json +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "最上面ジャーク" + +#: fdmprinter.def.json +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "上部表面レイヤー" + +#: fdmprinter.def.json +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "最上面のラインの向き" + +#: fdmprinter.def.json +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "最上面のライン幅" + +#: fdmprinter.def.json +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "上部表面パターン" + +#: fdmprinter.def.json +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "最上面速度" + +#: fdmprinter.def.json +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "上部厚さ" + +#: fdmprinter.def.json +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°の角度は垂直方向で、すべてのスキンが拡大します。" + +#: fdmprinter.def.json +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "トップ/ボトム" + +#: fdmprinter.def.json +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "トップ/ボトム" + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "上面/底面加速度" + +#: fdmprinter.def.json +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "上部/底面エクストルーダー" + +#: fdmprinter.def.json +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "上面/下面フロー" + +#: fdmprinter.def.json +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "上面/下面ジャーク" + +#: fdmprinter.def.json +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "上層/底層ラインの向き" + +#: fdmprinter.def.json +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "上下面ライン幅" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "上層/底層パターン" + +#: fdmprinter.def.json +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "上面/底面速度" + +#: fdmprinter.def.json +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "上部/底面の厚さ" + +#: fdmprinter.def.json +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "ビルドプレートにタッチ" + +#: fdmprinter.def.json +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "タワー直径" + +#: fdmprinter.def.json +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "タワールーフ角度" + #: fdmprinter.def.json msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "ファイルから読み込むときに、モデルに適用するトランスフォーメーションマトリックス。" -#~ msgctxt "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "プリントヘッドの2Dシルエット(ファンキャップが含まれています)。" - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "外壁優先" - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "有効にすると、壁は外側から内側に順番に印刷します。これは、ABSのような高粘度のプラスチックを使用する際、XとYの寸法精度を改善するのに役立ちます。しかし、特にオーバーハング時に、外面の印刷品質を低下させる可能性があります。" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "壁補正" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "すでに壁が設置されている部品の壁の流れを補正します。" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "外壁補正" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "すでに壁が設置されている場所にプリントされている外壁の部分の流れを補う。" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "内壁補正" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "すでに壁が設置されている場所にプリントされている内壁の部分の流れを補正します。" - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "最小壁フロー" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "ウォールラインに対する流れを最小割合にします。既存の壁に近い場合に、壁補正により壁の流れが減少します。壁の流れがこの値より低い場合は、移動に置き換えられます。この設定を使用する場合は、壁補正を有効にして、内装の前に外装を印刷する必要があります。" - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "引き戻し優先" - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "有効にすると、フローが最小フローしきい値を下回っている壁を置き換える移動量より多い場合は、引き戻しを使用します。" - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "隙間充填" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "壁が入らない壁の隙間を埋める。" - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "対象外" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "全対象" - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "小さなギャップのフィルターアウト" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "モデル外部の塊を減らすために小さなギャップをフィルターアウトします。" - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "フィラメント均一速度" - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "通常より細いラインを高速プリントするので、時間当たりのフィラメント押出量は同じです。薄いモデル部品は、設定よりも細い線幅でプリントすることが要求される場合があり、本設定はそのような線の速度を変更します。" - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "均一フローの最大速度" - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "吐出を均一にするための調整時の最高スピード。" - -#~ msgctxt "machine_start_gcode description" -#~ msgid "G-code commands to be executed at the very start - separated by \\n." -#~ msgstr "最初に実行するG-codeコマンドは、\\n で区切ります。" - -#~ msgctxt "machine_end_gcode description" -#~ msgid "G-code commands to be executed at the very end - separated by \\n." -#~ msgstr "最後に実行するG-codeコマンドは、\\n で区切ります。" - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ 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 (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ msgstr "プリントのインフィル材料のパターンラインおよびジグザグインフィルはレイヤーごとに方向を入れ替え、材料コストを削減します。グリッド、トライアングル、トライヘキサゴン、キュービック、オクテット、クォーターキュービック、クロスおよび同心円パターンはレイヤーごとに完全にプリントされます。ジャイロイド、キュービック、クォーターキュービックおよびオクテットインフィルはレイヤーごとに変化し、各方向にかけてより均一な強度分布を実現します。ライトニングインフィルは造形物の(内部)ルーフのみを支えることで、インフィルを最低限にするよう試みます。そのため、インフィル率はモデル内で支える必要がある物の1つ下のレイヤーでのみ有効です。" - -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "ツリーの外側末端の刈り込みに関して、ライトニングインフィルレイヤーとそのすぐ上にあるレイヤーとの間に存在することのできる差異です。厚さを考慮して角度で指定されます。" - -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ 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." -#~ msgstr "印刷用インフィル材料のパターン。代替層のラインとジグザグの面詰めスワップ方向、材料コストを削減します。グリッド、トライアングル、トライ六角、キュービック、オクテット、クォーターキュービック、クロスと同心円のパターンは、すべてのレイヤーを完全に印刷されます。ジャイロイド、キュービック、クォーターキュービック、オクテットのインフィルは、各レイヤーを変更して各方向の強度をより均等な分布にします。" - -# msgstr "最小のモールド幅" -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "型用とモデルの外側の最短距離。" - -#~ msgctxt "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "1 ミリメートルの押出でステップモーターが行うステップの数を示します。" - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "ゼロ以外の場合、この距離より移動量が多い場合は、引き戻しを使用します。" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "エクストルーダーのオフセットを座標システムに適用します。" - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ 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, while an angle of 90° is vertical." -#~ msgstr "この設定より大きい角を持つオブジェクトの上部または底部の表面、その表面のスキンはを拡大しません。これは、モデルのサーフェスに近い垂直斜面がある場合に作成される狭いスキン領域の拡大を回避します。0 ° の角度は水平方向、90 ° の角度が垂直方向です。" - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ 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 lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "インフィルメッシュの重なりが複数生じた場合のこのメッシュの優先度を決定します。複数のインフィルメッシュの重なりがあるエリアでは、最もランクが低いメッシュの設定になります。順序が高いインフィルメッシュは、順序が低いインフィルメッシュのインフィルと通常のメッシュを変更します。" - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "加熱式ビルドプレート温度。これが 0 の場合、ベッド温度は調整されません。" - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "最初のレイヤー印刷時のビルドプレートの温度。" - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "収縮率" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "収縮率をパーセントで示す。" - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ 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 "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "インフィルメッシュの順序" - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "他のインフィルメッシュのインフィル内にあるインフィルメッシュを決定します。優先度の高いのインフィルメッシュは、低いメッシュと通常のメッシュのインフィルを変更します。" - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "ツリーサポート" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "プリントを支えるために枝のついた木のようなサポートを生成します。材料とプリント時間が減る可能性がありますが、スライス時間が大きく増加します。" - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "表面を斜めにスライスする方法を指定します。レイヤーの領域は、レイヤーの中央がサーフェス(中央)と交差する位置に基づいて生成できます。また、各層は、レイヤーの高さを通してボリュームの内側に収まる領域を持つ(排他)か、またはレイヤー内の任意の場所内に収まる領域を持っています(包括)。排他は最も細かく、包括は最もフィットし、中間は時間がかかります。" - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "スパゲッティインフィル" - -# msgstr "スパゲッティ・インフィル" -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "時々インフィルを印刷してください、オブジェクト内でフィラメントがぐちゃぐちゃに巻き上がります。印刷時間は短縮できるが、フィラメントの動きは予想不可能となります。" - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "スパゲッティインフィルの手順" - -# msgstr "スパゲッティのインフィルステッピング" -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "スパゲッティインフィルをプリントするか印刷の最後に全てのインフィルフィラメントを押し出すか。" - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "スパゲッティインフィル最大角度" - -# msgstr "スパゲッティの最大のインフィルの角度" -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "最大角度 w.r.t.-印刷範囲内がスパゲッティ・インフィルで埋まるZ軸。この値を下げることでモデルの斜め部分にインフィルが各レイヤーに付着します。" - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "スパゲッティインフィル最大高さ" - -# msgstr "スパゲッティインフィルの最大高さ" -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "内部空間の上から結合して埋め込むことができる最大の高さ。" - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "スパゲッティインフィルのオフセット" - -# msgstr "スパゲティをセットする" -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "スパゲッティ・インフィルがプリントされる壁からのオフセット。" - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "スパゲッティインフィルフロー" - -# msgstr "スパゲッティのフロー" -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "スパゲッティ・インフィルの密度を調整します。インフィルの密度は、行間枠のパターンを決めるだけで、スパゲッティ・インフィルの押出量は制御しないことにご注意ください。" - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "スパゲッティインフィル余剰調整" - -# msgstr "スパゲッティ・インフィルの余分量" -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "スパゲッティをプリントする際に毎回行なう吐出量の調整。" - -# msgstr "マテリアルGUID" -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "マテリアルのGUID。これは自動的に設定されます。 " - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "フィラメント留め位置" - -#~ msgctxt "machine_filament_park_distance description" -#~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used." -#~ msgstr "エクストルーダーが使用していない時、フィラメントを留めている場所からノズルまでの距離。" - -#~ msgctxt "material_flush_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Material Station内部値" - -#~ msgctxt "material_flush_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Material Station内部値" - -#~ msgctxt "material_end_of_filament_purge_speed label" -#~ msgid "End Of Filament Purge Speed" -#~ msgstr "フィラメント端パージ速度" - -#~ msgctxt "material_end_of_filament_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Material Station内部値" - -#~ msgctxt "material_end_of_filament_purge_length label" -#~ msgid "End Of Filament Purge Length" -#~ msgstr "フィラメント端パージ長さ" - -#~ msgctxt "material_end_of_filament_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Material Station内部値" - -#~ msgctxt "material_maximum_park_duration description" -#~ msgid "Material Station internal value" -#~ msgstr "Material Station内部値" - -#~ msgctxt "material_no_load_move_factor description" -#~ msgid "Material Station internal value" -#~ msgstr "Material Station内部値" - -#~ msgctxt "retraction_enable description" -#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " -#~ 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 "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "カテゴリー_メッシュ修正" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "カテゴリー_ブラックマジック" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "実験的!" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "プリントヘッドポリゴン" - -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "プリントヘッドの2Dシルエット(ファンキャップは除く)。" - -#~ 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 only possible if 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つのモデルがプリント完了するのを待ち次のモデルに移動するかどうか。造形物の間にヘッドが通るだけのスペースがある場合のみ、一つずつ印刷する事が出来ます。" - -#~ msgctxt "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "ツリーサポート壁厚" - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "ツリーサポートの枝の壁の厚さ。壁が厚いほどプリント時間が長くなりますが、崩れにくくなります。" - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "ツリーサポートウォールライン数" - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "ツリーサポートの枝の壁の数。壁が厚いほどプリント時間が長くなりますが、崩れにくくなります。" - -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. 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 を含むかどうか指定します。この設定を有効にすると、レイヤ変更時の引き戻し動作に影響する可能性があります。拭き取りスクリプトが動作するレイヤでの押し戻しを制御するには、ワイプリトラクト設定を使用してください。" - -#~ msgctxt "max_extrusion_before_wipe description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "別のノズル拭き取りを行う前に押し出せる材料の最大量。" - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "押し戻し速度の取り消し" - -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "引き戻し時のワイプZホップ" - -#~ msgctxt "wipe_hop_enable 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 "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ 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 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 not be generated." -#~ msgstr "サポートのフロアに対する最小領域サイズ。この領域よりポリゴンが小さい場合は生成されません。" - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "レイヤー回転変更" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "トップ/ボトムのレイヤーが印刷される方向を変更します。通常、それらは斜めに印刷されます。この設定では、X方向のみとY方向のみが追加されます。" - -#~ 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 compensate." -#~ msgstr "補正の最大距離をミリ単位で指定します。" - -#~ msgctxt "flow_rate_extrusion_offset_factor label" -#~ msgid "Flow rate compensation factor" -#~ msgstr "流量補正要因" - -#~ msgctxt "flow_rate_extrusion_offset_factor description" -#~ msgid "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "流量を距離に変換する際の要因。" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "適応レイヤーしきい値" - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ 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." -#~ msgstr "この角度以上に張り出した壁は、オーバーハング壁設定を使用して印刷されます。値が 90 の場合は、オーバーハング壁として処理されません。" - -#~ 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 adhestion and accuracy." -#~ msgstr "小型形体は通常の印刷速度よりこの割合で印刷されます。低速の印刷によって、接着と精度が向上します。" - -#~ msgctxt "small_feature_speed_factor_0 label" -#~ msgid "First 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 adhestion and accuracy." -#~ msgstr "小型形体の最初のレイヤーは通常の印刷速度よりこの割合で印刷されます。低速の印刷によって、接着と精度が向上します。" - -# msgstr "アイロンを有効にする" -#~ msgctxt "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "ノズルから吐出せずに上部表面を再度動く機能。表面を溶かしてよりスムースにします。" - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "同じパーツでレイヤーを開始する" - -#, fuzzy -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "各レイヤーの印刷は決まった場所近い距離のポイントにて印刷を始めます。そのため、前のレイヤーが終わった部分から新しいレイヤーのプリントを開始しません。これによりオーバーハングや小さなパーツの印刷改善されますが、その代わり印刷時間が長くなります。" - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ 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." -#~ msgstr "最大解像度設定の解像度を下げるときに許容される最大偏差です。これを大きくすると、印刷の精度は低くなりますが、g-code は小さくなります。" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "G-codeフレーバー" - -# 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." -#~ msgstr "モデル輪郭のコーナーがシーム(縫い目)の位置に影響するかどうかを制御します。 Noneはコーナーがシームの位置に影響を与えないことを意味します。 Seam(縫い目)を非表示にすると、内側のコーナーでシームが発生しやすくなります。 Seamを表示すると、外側の角にシームが発生する可能性が高くなります。 シームを隠す、または表示するを選択することにより、内側または外側コーナーでシームを発生させる可能性が高くなります。" - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "小さいZギャップは無視" - -# msgstr "小さなZギャップを無視する" -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "モデルに垂直方向のギャップが小さくある場合、これらの狭いスペースにおいて上部および下部スキンを生成するために、約5%の計算時間が追加されます。そのような場合は、設定を無効にしてください。" - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "造形に使用した温度。これがゼロ (0) の場合、造形温度は調整できません。" - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." -#~ msgstr "サポートからサポートに直線移動する場合は、引き戻しを省略します。この設定を有効にすると、印刷時間が短縮されますが、サポート構造内部の糸引きが多くなります。" - -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "最大Z速度" - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "ビルトプレートが移動する最高速度 この値を0に設定すると、ファームウェアのデフォルト値のZの最高速度が適用されます。" - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." -#~ msgstr "X/Y方向のサポート構造間の最大距離。別の構造がこの値より近づいた場合、構造は 1 つにマージします。" - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "最小直径" - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "特殊なサポート塔によって支持される小さな領域のX / Y方向の最小直径。" - -#~ msgctxt "prime_tower_circular label" -#~ msgid "Circular Prime Tower" -#~ msgstr "円形プライムタワー" - -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "プライムタワーを円形にします。" - -#~ msgctxt "prime_tower_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." -#~ msgstr "吐出量: マテリアルの吐出量はこの値の乗算で計算されます。" - -# 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 "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "実験的機能:オーバーハング部分よりも底面のサポート領域を小さくする。" - -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "有効なエクストルーダーの数" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "ノズル外径" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "ノズル長さ" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "ノズル角度" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "ノズル加熱長さ" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "加熱速度" - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "冷却速度" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "G-codeフレーバー" - -# msgstr "Repetier" -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "拒否エリア" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "プリントヘッドポリゴン" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "プリントヘッドとファンポリゴン" - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "ガントリー高さ" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "エクストルーダーのオフセット" - -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "適応レイヤーの使用" - -#~ msgctxt "adaptive_layer_height_variation label" -#~ msgid "Adaptive layers maximum variation" -#~ msgstr "適応レイヤー最大差分" - -#~ msgctxt "adaptive_layer_height_variation_step label" -#~ msgid "Adaptive layers variation step size" -#~ msgstr "適応レイヤー差分ステップサイズ" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "適応レイヤー閾値" - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "スキンと壁のオーバーラップ量 (スキンライン幅に対する%)。少しのオーバーラップによって壁がスキンにしっかりつながります。これは、スキンライン幅の平均ライン幅と最内壁の%です。" - -# msgstr "スキンオーバーラップ" -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "スキンと壁の間の交差した量 わずかなオーバーラップによって壁がスキンにしっかりつながります。" - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." -#~ msgstr "引き込み量:引き込みを行わない場合は0に設定します。これは通常、ヒートゾーンの長さと同じに設定します。" - -#~ 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 and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." -#~ msgstr "コーミングは、移動時に印刷済みエリア内にノズルを保持します。この結果、移動距離が長くなりますが、引き戻しの必要性が軽減されます。コーミングがオフの場合は、材料を引き戻して、ノズルを次のポイントまで直線に移動します。コーミングが上層/底層スキンエリアを超えずに、インフィル内のみコーミングするようにできます。「インフィル内」オプションは、Cura の旧版の「スキン内にない」オプションと全く同じ動作をします。" - -#~ 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 happend midway over infill this feature can reduce the top surface quality." -#~ 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. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "印刷用インフィル材料のパターン。代替層のラインとジグザグの面詰めスワップ方向、材料コストを削減します。グリッド、トライアングル、トライ六角、キュービック、オクテット、クォーターキュービック、クロスと同心円のパターンは、すべてのレイヤーを完全に印刷されます。キュービック、クォーターキュービック、オクテットのインフィルは、各レイヤーを変更して各方向の強度をより均等な分布にします。" - -# msgstr "同心円" -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "3D同心円" - -#~ 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 by combing within the infill only." -#~ msgstr "コーミングは、走行時にすでに印刷された領域内にノズルを保ちます。その結果、移動距離はわずかに長くなりますが、引き込みの必要性は減ります。コーミングがオフの場合、フィラメントの引き戻しを行い、ノズルは次のポイントまで直線移動します。また、インフィルのみにてコーミングすることにより、トップとボトムのスキン領域上での櫛通りを回避します。" - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "3D同心円" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "3D同心円" - -# msgstr "同心" -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "3D同心円" - -# msgstr "同心円" -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "3D同心円" - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "ラフトラインスペース" - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "プライムタワーの厚さ" - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "中空プライムタワーの厚さ。プライムタワーの半分を超える厚さは、密集したプライムタワーになります。" - -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "スイッチ後のノズル拭き取り" - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "エクストルーダーを切り替えた後、最初に印刷したものの上にあるノズルから滲み出したマテリアルを拭き取ってください。余分に出たマテリアルがプリントの表面品質に与える影響が最も少ない場所で、ゆっくりと払拭を行います。" - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "プライムタワーのパージ量" - -# msgstr "プライムタワーのパージ時のボリューム" -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "プライムタワーの上を拭くときにパージするフィラメントの量。パージは、ノズルの不活動時にじみ出たフィラメントを補修するため便利です。" - -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "ブリッジ壁最大オーバーハング" - -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ msgstr "ブリッジ設定でウォールを印刷する前に、壁の線の下の空気の領域で可能な最大幅。空気ギャップがこれより広い場合は、壁の線はブリッジ設定で印刷されます。それ以外は、通常の設定で印刷されます。この値より低い場合は、オーバーハング壁線がブリッジ設定で印刷されます。" - -# 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." -#~ msgstr "撤回と移動距離を減らすために、壁のプリント順序を最適化します。ほとんどの部品がこの設定を有効にしている方が良い印刷結果につながりますが、実際には時間がかかることがありますので、最適化の有無に関わらず印刷時間を比較してください。" - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "表面なし" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "3Dクロスポケットの変更" - -# msgstr "クロス3Dポケットと交差させる" -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "四方がクロスする、クロス3Dパターン交差時には半分のみポケットを適用し、パターンが接触している高さとポケットの位置にて交互します。" - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "オブジェクトの空洞化" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "すべてのインフィルを取り除き、オブジェクトの内部をサポート可能にします。" - -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "基準レイヤー高さと比較して許容される最大の高さ (mm)。" - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ 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 "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "GCode開始" - -# msgstr "GCodeを開始する" -#~ msgctxt "machine_start_gcode description" +#: fdmprinter.def.json +msgctxt "travel label" +msgid "Travel" +msgstr "移動" + +#: fdmprinter.def.json +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "移動か速度" + +#: fdmprinter.def.json +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "移動回避距離" + +#: fdmprinter.def.json +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "移動ジャーク" + +#: fdmprinter.def.json +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "移動速度" + +#: fdmprinter.def.json +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\"は通常と同様に囲まれた内部を印刷し残りのポリゴンをサーフェスとして印刷します。" + +#: fdmprinter.def.json +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "ツリー" + +#: fdmprinter.def.json +msgctxt "support_tree_angle label" +msgid "Tree Support Branch Angle" +msgstr "ツリーサポート枝角度" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter label" +msgid "Tree Support Branch Diameter" +msgstr "ツリーサポート枝直径" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter_angle label" +msgid "Tree Support Branch Diameter Angle" +msgstr "ツリーサポート枝直径角度" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance label" +msgid "Tree Support Branch Distance" +msgstr "ツリーサポート枝間隔" + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution label" +msgid "Tree Support Collision Resolution" +msgstr "ツリーサポート衝突精細度" + +#: fdmprinter.def.json +msgctxt "support_tree_max_diameter label" +msgid "Tree Support Trunk Diameter" +msgstr "ツリーをサポートする本体の直径" + +#: fdmprinter.def.json +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "トライヘキサゴン" + +#: fdmprinter.def.json +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "トライアングル" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "トライアングル" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "トライアングル" + +#: fdmprinter.def.json +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "トライアングル" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "トライアングル" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "重複量" + +#: fdmprinter.def.json +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 "この値より短いサポートされていない壁が通常の壁設定で印刷されます。長いサポートされていない壁は、ブリッジ壁設定で印刷されます。" + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "適応レイヤーの使用" + +#: fdmprinter.def.json +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "使用タワー" + +#: fdmprinter.def.json +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 "プリントヘッド移動に異なる加速度レートを使用します。これを無効にすると、プリントヘッドの移動速度は印刷範囲で加速されずに同じ速度が使用されます。" + +#: fdmprinter.def.json +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 "プリントヘッドの移動に異なるジャーク値を使用します。これを無効にすると、印刷範囲で設定されたジャーク値を使用します。" + +#: fdmprinter.def.json +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スクリプトが出力される前にエクストルーダーのモードは常に絶対値にて設定されています。" + +#: fdmprinter.def.json +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 "特殊なタワーを使用して、小さなオーバーハングしているエリアをサポートします。これらの塔は、サポートできる領域より大きな直径を支えれます。オーバーハング付近では塔の直径が減少し、ルーフを形成します。" + +#: fdmprinter.def.json +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は使用しないことをお勧めします。" + +#: fdmprinter.def.json +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "このメッシュを使用してサポート領域を指定します。これは、サポート構造を生成するために使用できます。" + +#: fdmprinter.def.json +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 "このメッシュを使用して、モデルのどの部分をオーバーハングとして検出する必要がないかを指定します。これは、不要なサポート構造を削除するために使用できます。" + +#: fdmprinter.def.json +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "ユーザー指定" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "垂直スケールファクタ収縮補正" + +#: fdmprinter.def.json +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 "スライスされたレイヤーにおける垂直方向の公差です。レイヤーの輪郭は通常、各レイヤーの厚さの中間を通る断面で生成されます(中間)。代わりに、レイヤーごとに、ボリューム内にレイヤーの厚さの分だけ入り込んだエリアにしたり(排他)、レイヤー内の任意の位置まで入り込んだエリアにしたりする(包括)こともできます。排他は最も細かく、包括は最もフィットし、中間は元の表面に最も近くなります。" + +#: fdmprinter.def.json +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "ビルドプレート加熱待ち時間" + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "ノズル加熱待ち時間" + +#: fdmprinter.def.json +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "ウォール加速度" + +#: fdmprinter.def.json +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "ウォール分配数" + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "ウォールエクストルーダー" + +#: fdmprinter.def.json +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "壁のフロー" + +#: fdmprinter.def.json +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "ウォールジャーク" + +#: fdmprinter.def.json +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "ウォールライン数" + +#: fdmprinter.def.json +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "ウォールライン幅" + +#: fdmprinter.def.json +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "ウォール順序" + +#: fdmprinter.def.json +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "ウォール速度" + +#: fdmprinter.def.json +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "壁の厚さ" + +#: fdmprinter.def.json +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "ウォール移行長さ" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "ウォール移行フィルター距離" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "ウォール移行フィルターマージン" + +#: fdmprinter.def.json +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "ウォール移行しきい値角度" + +#: fdmprinter.def.json +msgctxt "shell label" +msgid "Walls" +msgstr "ウォール" + +#: fdmprinter.def.json +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の場合は、オーバーハング壁として処理されません。サポートによってサポートされているオーバーハングも、オーバーハングとして処理されません。" + +#: fdmprinter.def.json +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 "サポートの上下にモデルがあるかどうか確認するには、特定のサポートの高さを見ます。低い値はスライスに時間がかかり、高い値にするとサポートのインターフェイスがある場所に通常のサポートを印刷する可能性があります。" + +#: fdmprinter.def.json +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 "有効化すると、移動距離が減少するようにインフィルラインをプリントする順序が最適化されます。移動時間の削減は、スライスするモデル、インフィルパターン、密度などに大きく依存します。特に、インフィルを行う小さなエリアが多数あるモデルの場合、モデルをスライスする時間が大きく増えることがあります。" + +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "有効にすると、サポートを超えた直後に印刷冷却ファンの速度がスキン領域に対して変更されます。" + +#: fdmprinter.def.json +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シームは各パーツの真ん中に設定されます。無効時はプラットフォームのサイズによって設定されます。" + +#: fdmprinter.def.json +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 "ゼロを超える場合、この距離より長い移動量をコーミングすると、引き戻しが使用されます。ゼロに設定した場合、最大値はなく、コーミング移動では引き戻しを使用しません。" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "ブリッジスキン領域を印刷するときは、材料の吐出量をこの値で乗算します。" + +#: fdmprinter.def.json +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "ブリッジ壁を印刷するときは、材料の吐出量をこの値で乗算します。" + +#: fdmprinter.def.json +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 "セカンドブリッジスキンレイヤーを印刷するときは、材料の吐出量をこの値で乗算します。" + +#: fdmprinter.def.json +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 "サードブリッジスキンレイヤーを印刷するときは、材料の吐出量をこの値で乗算します。" + +#: fdmprinter.def.json +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 "レイヤーの最小プリント時間より早く印刷が終わった場合、ヘッド部分を持ち上げてレイヤーの最小プリント時間に到達するまで待機します。" + +#: fdmprinter.def.json +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 "モデルの垂直方向に少数層のみの小さなギャップがある場合、通常は、その狭いスペース内にある層の周囲にスキンが存在する必要があります。垂直方向のギャップが非常に小さい場合は、この設定を有効にしてスキンが生成されないようにします。これにより、印刷時間とスライス時間が向上しますが、技術的には空気にさらされたインフィルを残します。" + +#: fdmprinter.def.json +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 "偶数個と奇数個のウォールの間で移行を行うタイミング。この設定より大きい角度のくさび形状では移行が行われず、残りのスペースを埋めるために中心にウォールがプリントされることはありません。この設定を小さくすると、これらの中心にあるウォールの数と長さが減りますが、隙間ができたり、押し出されすぎたりすることがあります。" + +#: fdmprinter.def.json +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 "部品が薄くなるにつれて異なる数のウォール間を移行する場合に、ウォールラインを分割または結合するために一定のスペースが割り当てられます。" + +#: fdmprinter.def.json +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 "拭き取りの際、ビルドプレートが下降してノズルとプリントの間に隙間ができます。これは、ノズルの走行中にプリントに当たるのを防ぎ、プリントをビルドプレートから剥がしてしまう可能性を減らします。" + +#: fdmprinter.def.json +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 "引き戻しが完了すると、ビルドプレートが下降してノズルとプリントの間に隙間ができます。ノズルの走行中に造形物に当たるのを防ぎ、造形物をビルドプレートから剥がしてしまう現象を減らします。" + +#: fdmprinter.def.json +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の距離を無効にすることで、無効にできる。" + +#: fdmprinter.def.json +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座標が印刷可能領域の中心にあるかどうか。" + +#: fdmprinter.def.json +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 座標)のいずれかを示します。" + +#: fdmprinter.def.json +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 座標)のいずれかを示します。" + +#: fdmprinter.def.json +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 座標)のいずれかを示します。" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "各エクストルーダーが独自のヒーターを持つのではなく、単一のヒーターを共有するかどうか。" + +#: fdmprinter.def.json +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」パラメーターによってエクストルーダーごとに規定されます。" + +#: fdmprinter.def.json +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "プリンターに加熱式ビルドプレートが付属しているかどうか。" + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "機器が造形温度を安定化処理できるかどうかです。" + +#: fdmprinter.def.json +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)にオブジェクトを配置するかどうか。" + +#: fdmprinter.def.json +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外からノズル温度を制御することで無効化。" + +#: fdmprinter.def.json +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フロントエンドは自動的にこの設定を無効にします。" + +#: fdmprinter.def.json +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フロントエンドは自動的にこの設定を無効にします。" + +#: fdmprinter.def.json +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つ)。この設定を有効にすると、レイヤー変更時の引き戻し動作に影響する可能性があります。拭き取りスクリプトが動作するレイヤーでの押し戻しを制御するには、ワイプ引き戻し設定を使用してください。" + +#: fdmprinter.def.json +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 "開始時にビルドプレートが温度に達するまで待つコマンドを挿入するかどうか。" + +#: fdmprinter.def.json +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 "印刷する前にフィラメントの小さな塊を作るかどうか。この設定をオンにすると、エクストルーダーがノズルにおいて印刷予定のマテリアルの下準備をします。印刷後ブリムまたはスカートも、上記と同じような意味を持ちます。この設定をオフにすると時間の節約にはなります。" + +#: fdmprinter.def.json +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つずつ印刷する事ができます。" + +#: fdmprinter.def.json +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "このプリンターのバリエーションを表示するかどうかは、別のjsonファイルに記述されています。" + +#: fdmprinter.def.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) を使用するかどうか。" + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "開始時にノズルの温度が達するまで待つかどうか。" + +#: fdmprinter.def.json +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "インフィル線の幅。" + +#: fdmprinter.def.json +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "サポートのルーフ、フロアのライン幅。" + +#: fdmprinter.def.json +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "プリントの上部の 線の幅。" + +#: fdmprinter.def.json +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ラインの幅。一般に、各ラインの幅は、ノズルの幅に対応する必要があります。ただし、この値を少し小さくすると、より良い造形が得られます。" + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "単一のプライムタワーラインの幅。" + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "単一のスカートまたはブリムラインの幅。" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "サポートのフロアのラインの一幅。" + +#: fdmprinter.def.json +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "サポートルーフのライン一幅。" + +#: fdmprinter.def.json +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "単一のサポート構造のライン幅。" + +#: fdmprinter.def.json +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "上辺/底辺線のライン幅。" + +#: fdmprinter.def.json +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "一番外側のウォールラインを除くすべてのウォールラインのラインの幅。" + +#: fdmprinter.def.json +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "ウォールラインの幅。" + +#: fdmprinter.def.json +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 "ベースラフト層の線幅。ビルドプレートの接着のため太い線でなければなりません。" + +#: fdmprinter.def.json +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層をより押し出すと、ラインがビルドプレートに固着します。" + +#: fdmprinter.def.json +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 "ラフトの上面の線の幅。これらは細い線で、ラフトの頂部が滑らかになります。" + +#: fdmprinter.def.json +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 "最も外側のウォールラインの幅。この値を下げると、より詳細な印刷できます。" + +#: fdmprinter.def.json +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 "モデルの薄いフィーチャーを(最小フィーチャーサイズに従って)置き換えるウォールの幅。最小ウォールライン幅がフィーチャーの厚さより薄い場合、ウォールの厚さはフィーチャー自体の厚さと同じになります。" + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "ワイプブラシXの位置" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "ワイプホップ速度" + +#: fdmprinter.def.json +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "プライムタワーノズル拭き取り" + +#: fdmprinter.def.json +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "ワイプ移動距離" + +#: fdmprinter.def.json +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "レイヤー間のノズル拭き取り" + +#: fdmprinter.def.json +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "ワイプ一時停止" + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "ワイプ繰り返し回数" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "ワイプリトラクト無効" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "ワイプリトラクト有効" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "ワイプ引き戻し時の余分押し戻し量" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "ワイプ引き戻し下準備速度" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "ワイプ引き戻し速度" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "ワイプリトラクト速度" + +#: fdmprinter.def.json +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "ワイプZホップ" + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "ワイプZホップ高さ" + +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "インフィル内" + +#: fdmprinter.def.json +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またはその他のモーダルツールコマンドを使用するファームウェアを使用したデュアルエクストルーダープリントに必要です。" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "プラス方向の X エンドストップ" + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "ワイプスクリプトを開始するX位置。" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/YがZを上書き" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "プラス方向の Y エンドストップ" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "プラス方向の Z エンドストップ" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "エクストルーダースイッチ後のZホップ" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "エクストルーダースイッチ高さ後のZホップ" + +#: fdmprinter.def.json +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Zホップ高さ" + +#: fdmprinter.def.json +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "印刷パーツに対するZホップ" + +#: fdmprinter.def.json +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Z 軸ホップ速度" + +#: fdmprinter.def.json +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "引き戻し時のZホップ" + +#: fdmprinter.def.json +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Zシーム合わせ" + +#: fdmprinter.def.json +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Zシーム位置" + +#: fdmprinter.def.json +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "相対Zシーム" + +#: fdmprinter.def.json +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "ZシームX" + +#: fdmprinter.def.json +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "ZシームY" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "ZがX/Yを上書き" + +#: fdmprinter.def.json +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" + +#: fdmprinter.def.json +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" + +#: fdmprinter.def.json +msgctxt "travel description" +msgid "travel" +msgstr "移動" + +#~ msgctxt "wireframe_strategy option compensate" +#~ msgid "Compensate" +#~ msgstr "補正" + +#~ msgctxt "wireframe_top_jump description" +#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." +#~ msgstr "上向きの線の上端に小さな結び目を作成し、連続する水平レイヤーを接着力を高めます。ワイヤ印刷のみに適用されます。" + +#~ msgctxt "wireframe_bottom_delay description" +#~ msgid "Delay time after a downward move. Only applies to Wire Printing." +#~ msgstr "下降後の遅延時間。ワイヤ印刷のみに適用されます。" + +#~ msgctxt "wireframe_top_delay description" +#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." +#~ msgstr "上向きの線が硬くなるように、上向きの動きの後の時間を遅らせる。ワイヤ印刷のみに適用されます。" + +#~ msgctxt "wireframe_flat_delay description" +#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." +#~ msgstr "2つの水平セグメント間の遅延時間。このような遅延を挿入すると、前のレイヤーとの接着性が向上することがありますが、遅延が長すぎると垂れ下がりが発生します。ワイヤ印刷のみに適用されます。" + +#~ msgctxt "wireframe_nozzle_clearance description" +#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." +#~ msgstr "ノズルと水平方向に下向きの線間の距離。大きな隙間がある場合、急な角度で斜め下方線となり、次の層が上方接続しずらくなる。ワイヤ印刷にのみ適用されます。" + +#~ msgctxt "wireframe_up_half_speed description" #~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." -#~ msgstr "" -#~ "Gcodeのコマンドは −で始まり\n" -#~ "で区切られます。" +#~ "Distance of an upward move which is extruded with half speed.\n" +#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." +#~ msgstr "半分の速度で押出される上方への移動距離。過度にマテリアルを加熱することなく、前の層とのより良い接着を作ります。ワイヤ印刷のみに適用されます。" -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "GCode終了" +#~ msgctxt "wireframe_fall_down description" +#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "上向き押出後にマテリアルが落下する距離。この距離は補正される。ワイヤ印刷のみに適用されます。" -# msgstr "GCodeを終了する" -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "Gcodeのコマンドは −で始まり\n" -#~ "で区切られます。" +#~ msgctxt "wireframe_drag_along description" +#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "斜め下方への押出に伴い上向き押出しているマテリアルが引きずられる距離。この距離は補正される。ワイヤ印刷のみに適用されます。" -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "Gcodeフレーバー" +#~ msgctxt "wireframe_flow_connection description" +#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." +#~ msgstr "上下に動くときの吐出補正。ワイヤ印刷のみに適用されます。" -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "生成するGコードの種類" +#~ msgctxt "wireframe_flow_flat description" +#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." +#~ 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 GCode." -#~ msgstr "通常、Curaはメッシュ内の小さな穴をスティッチし、大きな穴のあるレイヤーの部分を削除しようとします。このオプションを有効にすると、スティッチできない部分が保持されます。このオプションは、他のすべてが適切なGCodeを生成できない場合の最後の手段として使用する必要があります。" +#~ msgctxt "wireframe_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." +#~ msgstr "流れ補正:押出されたマテリアルの量はこの値の乗算になります。ワイヤ印刷のみに適用されます。" -# msgstr "相対エクストルージョン" -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. 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 Gcode script is output." -#~ msgstr "絶対押出ではなく、相対押出を使用します。相対Eステップを使用すると、Gcodeの後処理が容易になります。ただし、すべてのプリンタでサポートされているわけではありません。絶対的Eステップと比較して、材料の量にごくわずかな偏差が生じることがあります。この設定に関係なく、Gcodeスクリプトが出力される前にエクストルーダーのモードは常に絶対値にて設定されています。" +#~ msgctxt "wireframe_strategy option knot" +#~ msgid "Knot" +#~ msgstr "ノット" -#~ msgctxt "infill_offset_x description" -#~ msgid "The infill pattern is offset this distance along the X axis." -#~ msgstr "インフィルパターンはX軸に沿ってこの距離を移動します。" +#~ msgctxt "wireframe_straight_before_down description" +#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." +#~ msgstr "水平方向の直線部分で覆われた斜めに下降線の割合です。これは上向きラインのほとんどのポイント、上部のたるみを防ぐことができます。ワイヤ印刷にのみ適用されます。" -#~ msgctxt "infill_offset_y description" -#~ msgid "The infill pattern is offset this distance along the Y axis." -#~ msgstr "インフィルパターンはY軸に沿ってこの距離を移動します。" +#~ msgctxt "wireframe_enabled description" +#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." +#~ msgstr "薄い空気中に印刷し、疎なウエブ構造で外面のみを印刷します。これは、上向きおよび斜め下向きの線を介して接続された所定のZ間隔でモデルの輪郭を水平に印刷することによって実現される。" -# msgstr "インフィルのオーバーラップ率" -#~ msgctxt "infill_overlap 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 "wireframe_strategy option retract" +#~ msgid "Retract" +#~ msgstr "引き戻し" -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "表面と壁の交わる量。ラインの幅の%で設定。少しの接触でしっかりと繋がります。表面と内壁の交わる量の平均値になります。" +#~ msgctxt "wireframe_printspeed description" +#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." +#~ msgstr "マテリアルを押し出すときにノズルが動く速度。ワイヤ印刷のみに適用されます。" -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "加熱式ビルドプレート温度。これが 0 の場合、ベッドは加熱しません。" +#~ msgctxt "wireframe_printspeed_down description" +#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." +#~ 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, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "印刷物のインフィルのパターン。線とジグザグのインフィルはレイヤーごとに交互に方向を変え、材料費を削減します。グリッド、三角形、キュービック、オクテット、クォーターキュービック、同心円のパターンは、すべてのレイヤーにて完全に印刷されます。キュービック、クォーターキュービック、オクテットのインフィルは各レイヤーごとに変化し、各方向の強度が均等になるように分布します。" +#~ msgctxt "wireframe_printspeed_up description" +#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." +#~ msgstr "薄い空気の中で上向きに線を印刷する速度。ワイヤ印刷のみに適用されます。" -# msgstr "インフィルの線をつなげる" -#~ msgctxt "zig_zaggify_infill description" -#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -#~ msgstr "内壁の形状に沿った線を使用して、インフィルのパターンが内壁と接する端を接続します。この設定を有効にすると、インフィルを壁面に密着させることができ、充填材が垂直面の品質に与える影響を低減できます。この設定を無効にすると、使用される材料の量が減ります。" +#~ msgctxt "wireframe_printspeed_bottom description" +#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." +#~ msgstr "ブルドプラットフォームに接触する第1層の印刷速度。ワイヤ印刷のみに適用されます。" -#~ 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 "スカートとプリントの最初のレイヤーの間の水平距離。これが最小距離であり、複数のスカートラインがこの距離から外側に延びている。" +#~ msgctxt "wireframe_printspeed_flat description" +#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." +#~ msgstr "モデルの水平輪郭を印刷する速度。ワイヤ印刷のみに適用されます。" -# msgstr "初期レイヤーのZオフセット" -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "エクストルーダーは、最初のレイヤーの通常の高さからこの値でオフセットされます。それは、正 (上昇) または負 (低下)。エクストルーダーを少しだけ上昇させた方が、フィラメントによってはビルドプレートに付着しやすくなります。" +#~ msgctxt "wireframe_strategy description" +#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." +#~ msgstr "各接続ポイントで2つの連続したレイヤーが密着していることを確認するためのストラテジー。収縮すると上向きの線が正しい位置で硬化しますが、フィラメントの研削が行われる可能性があります。上向きの線の終わりに結び目をつけて接続する機会を増やし、線を冷やすことができます。ただし、印刷速度が遅くなることがあります。別の方法は、上向きの線の上端のたるみを補償することである。しかし、予測どおりにラインが必ずしも落ちるとは限りません。" -# msgstr "Z オフセット テーパーレイヤー" -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "0 以外の場合、Z オフセットは多くのレイヤーを介して 0 に減らされます。0 の値は そのZ オフセットがプリント中すべてのレイヤーにてコンスタントを維持することを意味します。" +#~ msgctxt "wireframe_roof_inset description" +#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." +#~ msgstr "ルーフから内側に輪郭を描くときの距離。ワイヤ印刷のみに適用されます。" -# msgstr "ラフトスムージング" -#~ msgctxt "raft_smoothing description" -#~ msgid "This setting control 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 "wireframe_roof_drag_along description" +#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." +#~ 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, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "印刷物のインフィルのパターン。ラインとジグザグのインフィルは交互のレイヤー方向をずらし、材料費を削減します。グリッド、三角形、キュービック、四面体、同心円のパターンは、各レイヤーに完全に印刷されます。立方体および四面体のインフィルは各層ごとに変化し、各方向に沿ってより均等な強度分布を提供する。" +#~ msgctxt "wireframe_roof_fall_down description" +#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "水平ルーフが ”薄い空気”に印刷され落ちる距離。この距離は補正されています。ワイヤ印刷に適用されます。" -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "平らな面の上部または底部のスキン部の及びその領域を展開します。既定では、スキンインフィルの周りの壁の線で停止しますが、これはインフィル密度が低いときに現れる穴につながることがあります。この設定は、次の層の面材が皮膚にかかっているので、壁の線を超えてスキンを拡張します。" +#~ msgctxt "wireframe_height description" +#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." +#~ msgstr "2つの水平なパーツ間の、上向きおよび斜め下向きの線の高さ。これは、ネット構造の全体密度を決定します。ワイヤ印刷のみに適用されます。" -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "インフィルをトップの面部分 (空気に触れる領域) を広げることで、上のインフィルを支えます。" +#~ msgctxt "wireframe_roof_outer_delay description" +#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." +#~ msgstr "トップレイヤーにある穴の外側に掛ける時間。長い時間の方はより良い密着を得られます。ワイヤ印刷にのみ適用されます。" -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "下面(下に空気がある領域)を拡大して、上と下のインフィルによって支えるようにします。" +#~ msgctxt "wireframe_bottom_delay label" +#~ msgid "WP Bottom Delay" +#~ msgstr "WP底面遅延" -#~ msgctxt "expand_skins_expand_distance description" -#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." -#~ msgstr "スキンがインフィルに展開される距離。デフォルトの距離は、インフィルの密度が低いときにスキンに現れる穴とインフィルの行間とギャップを埋めるのにに十分です。大抵の場合、距離は小さくても問題ありません。" +#~ msgctxt "wireframe_printspeed_bottom label" +#~ msgid "WP Bottom Printing Speed" +#~ msgstr "WP底面印字速度" -#~ msgctxt "support_skip_some_zags description" -#~ msgid "Skip some ZigZags connections to make the support structure easier to break." -#~ msgstr "サポートを取りやすくするため、一部のジグザグ造形をスキップする" +#~ msgctxt "wireframe_flow_connection label" +#~ msgid "WP Connection Flow" +#~ msgstr "WP接続フロー" -#~ msgctxt "support_zag_skip_count description" -#~ msgid "Skip one in every N connection lines to make the support structure easier to break." -#~ msgstr "サポートを取りやすくするため、この値毎のラインと壁の接続をスキップする" +#~ msgctxt "wireframe_height label" +#~ msgid "WP Connection Height" +#~ msgstr "WPの高さ" -#~ msgctxt "machine_show_variants label" -#~ msgid "Show machine variants" -#~ msgstr "プリンターのバリエーションを表示する" +#~ msgctxt "wireframe_printspeed_down label" +#~ msgid "WP Downward Printing Speed" +#~ msgstr "WP下向き印字速度" -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Wait for build plate heatup" -#~ msgstr "ビルドプレート加熱時の待機" +#~ msgctxt "wireframe_drag_along label" +#~ msgid "WP Drag Along" +#~ msgstr "WP引きづり距離" -#~ msgctxt "material_print_temp_wait label" -#~ msgid "Wait for nozzle heatup" -#~ msgstr "ノズル加熱時の待機" +#~ msgctxt "wireframe_up_half_speed label" +#~ msgid "WP Ease Upward" +#~ msgstr "WP低速移動距離" -#~ msgctxt "material_print_temp_prepend label" -#~ msgid "Include material temperatures" -#~ msgstr "ノズル温度設定の挿入" +#~ msgctxt "wireframe_fall_down label" +#~ msgid "WP Fall Down" +#~ msgstr "WP落下距離" -#~ msgctxt "material_bed_temp_prepend label" -#~ msgid "Include build plate temperature" -#~ msgstr "ビルドプレート温度設定の挿入" +#~ msgctxt "wireframe_flat_delay label" +#~ msgid "WP Flat Delay" +#~ msgstr "WP水平遅延" -#~ msgctxt "machine_width label" -#~ msgid "Machine width" -#~ msgstr "造形サイズ(X)" +#~ msgctxt "wireframe_flow_flat label" +#~ msgid "WP Flat Flow" +#~ msgstr "WPフラットフロー" -#~ msgctxt "machine_depth label" -#~ msgid "Machine depth" -#~ msgstr "造形サイズ(Y)" +#~ msgctxt "wireframe_flow label" +#~ msgid "WP Flow" +#~ msgstr "WPフロー" -#~ msgctxt "machine_shape label" -#~ msgid "Build plate shape" -#~ msgstr "ビルドプレートの形" +#~ msgctxt "wireframe_printspeed_flat label" +#~ msgid "WP Horizontal Printing Speed" +#~ msgstr "WP水平印字速度" -#~ msgctxt "machine_height label" -#~ msgid "Machine height" -#~ msgstr "造形サイズ(Z)" +#~ msgctxt "wireframe_top_jump label" +#~ msgid "WP Knot Size" +#~ msgstr "WPノットサイズ" -#~ msgctxt "machine_heated_bed label" -#~ msgid "Has heated build plate" -#~ msgstr "ヒートベッドの有無" +#~ msgctxt "wireframe_nozzle_clearance label" +#~ msgid "WP Nozzle Clearance" +#~ msgstr "WPノズル隙間" -#~ msgctxt "machine_center_is_zero label" -#~ msgid "Is center origin" -#~ msgstr "原点" +#~ msgctxt "wireframe_roof_drag_along label" +#~ msgid "WP Roof Drag Along" +#~ msgstr "WPルーフ引きずり距離" -#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -#~ msgid "RepRap (Marlin/Sprinter)" -#~ msgstr "RepRap (Marlin/Sprinter)" +#~ msgctxt "wireframe_roof_fall_down label" +#~ msgid "WP Roof Fall Down" +#~ msgstr "WPルーフ落下距離" -#~ msgctxt "wall_thickness description" -#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -#~ msgstr "水平方向の外壁厚さ この値をウォールライン幅で割ることで、ウォール数を定義します。" +#~ msgctxt "wireframe_roof_inset label" +#~ msgid "WP Roof Inset Distance" +#~ msgstr "WPルーフ距離のオフセット" -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "スキンと壁の間のオーバーラップ量 わずかなオーバーラップによって壁がスキンにしっかりつながります。" +#~ msgctxt "wireframe_roof_outer_delay label" +#~ msgid "WP Roof Outer Delay" +#~ msgstr "WPルーフ外側処理時間" -#~ msgctxt "support_interface_line_width description" -#~ msgid "Width of a single support interface line." -#~ msgstr "単一のサポートインタフェースラインの幅。" +#~ msgctxt "wireframe_printspeed label" +#~ msgid "WP Speed" +#~ msgstr "WP速度" -#~ msgctxt "sub_div_rad_mult description" -#~ msgid "A multiplier on 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 more subdivisions, i.e. more small cubes." -#~ msgstr "各立方体の中心からの半径上の乗数で、モデルの境界をチェックし、この立方体を細分するかどうかを決定します。値を大きくすると細分化が増えます。つまり、より小さなキューブになります。" +#~ msgctxt "wireframe_straight_before_down label" +#~ msgid "WP Straighten Downward Lines" +#~ msgstr "WP下向き直線ライン" -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." -#~ msgstr "上部のインフィルをサポートするので、スキン面 (上記の空気を含んだ領域) を展開します。" +#~ msgctxt "wireframe_strategy label" +#~ msgid "WP Strategy" +#~ msgstr "WPストラテジー" -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "彼らは上と下の面材のレイヤーによって固定されますので、低い肌の部分 (空気を含んだ領域) を展開します。" +#~ msgctxt "wireframe_top_delay label" +#~ msgid "WP Top Delay" +#~ msgstr "WP上面遅延" -#~ msgctxt "speed_support_interface description" -#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality." -#~ msgstr "天井と底面のサポート材をプリントする速度 これらを低速でプリントするとオーバーハング部分の品質を向上できます。" +#~ msgctxt "wireframe_printspeed_up label" +#~ msgid "WP Upward Printing Speed" +#~ msgstr "WP上向き印字速度" -#~ msgctxt "acceleration_support_interface description" -#~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality." -#~ msgstr "サポート材の上面と底面が印刷されるスピード 低速度で印刷するとオーバーハングの品質が向上します。" - -#~ msgctxt "jerk_support_interface description" -#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." -#~ msgstr "サポート材の屋根とボトムのプリント時、最大瞬間速度の変更。" - -#~ msgctxt "support_enable description" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "サポート材を印刷可能にします。これは、モデル上のオーバーハング部分にサポート材を構築します。" - -#~ msgctxt "support_interface_extruder_nr description" -#~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion." -#~ 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." -#~ msgstr "モデルにかかる階段形サポートの下部の高さです。低い値のサポートの除去は難しく、高すぎる値は不安定なサポート構造につながります。" - -#~ msgctxt "support_bottom_height description" -#~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests." -#~ msgstr "サポート材の底部の厚さ。これは、サモデルの上に印刷されるサポートの積層密度を制御します。" - -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above 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 "サポート上にモデルがあることを確認するときは、指定された高さのステップを実行します。値が小さいほどスライスが遅くなりますが、値が大きくなるとサポートインターフェイスが必要な場所で通常のサポートが印刷されることがあります。" - -#~ msgctxt "support_interface_density description" -#~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -#~ msgstr "サポート材の屋根と底部の密度を調整します 大きな値ではオーバーハングでの成功率があがりますが、サポート材が除去しにくくなります" - -#~ msgctxt "support_interface_line_distance description" -#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." -#~ msgstr "印刷されたサポートインタフェースラインの間隔。この設定はSupport Interface Densityで計算されますが、個別に調整することができます。" - -#~ 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 used to be called Joris in older versions." -#~ msgstr "Spiralizeは外縁のZ移動を平滑化します。これにより、プリント全体にわたって安定したZ値が得られます。この機能は、ソリッドモデルを単一のウォールプリントに変換し、底面と側面のみ印刷します。この機能は以前のバージョンではJorisと呼ばれていました。" +#~ msgctxt "wireframe_enabled label" +#~ msgid "Wire Printing" +#~ msgstr "ワイヤ印刷" diff --git a/resources/i18n/ko_KR/cura.po b/resources/i18n/ko_KR/cura.po index 0b514a135d..c18e927801 100644 --- a/resources/i18n/ko_KR/cura.po +++ b/resources/i18n/ko_KR/cura.po @@ -1,12 +1,14 @@ # Cura -# Copyright (C) 2022 Ultimaker B.V. +# Copyright (C) 2022 UltiMaker. # This file is distributed under the same license as the Cura package. +# Ultimaker , 2022. # +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0200\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-04-06 15:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,236 +18,114 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -msgctxt "@label" -msgid "Unknown" -msgstr "알 수 없는" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "아래 프린터는 그룹에 속해 있기 때문에 연결할 수 없습니다" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "사용 가능한 네트워크 프린터" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "재정의되지 않음" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Connected printers" -msgstr "연결된 프린터" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Preset printers" -msgstr "프린터 사전 설정" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:143 -#, 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}을(를) 제거하시겠습니까? 이 작업을 실행 취소할 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:61 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 -msgctxt "@label" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:65 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "뛰어난 외관" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:66 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "시각적 프로파일은 높은 시각적 및 표면 품질의 의도를 지니고 시각적 프로토타입과 모델을 인쇄하기 위해 설계되었습니다." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:70 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "엔지니어링 프로파일은 정확도를 개선하고 허용 오차를 좁히려는 의도로 기능 프로토타입 및 최종 사용 부품을 인쇄하도록 설계되었습니다." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:75 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "초안" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:76 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "초안 프로파일은 인쇄 시간을 상당히 줄이려는 의도로 초기 프로토타입과 컨셉트 확인을 인쇄하도록 설계되었습니다." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:232 -msgctxt "@label" -msgid "Custom Material" -msgstr "사용자 정의 소재" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:233 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 -msgctxt "@label" -msgid "Custom" -msgstr "사용자 정의" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:391 -msgctxt "@label" -msgid "Custom profiles" -msgstr "사용자 정의 프로파일" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:426 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "지원되는 모든 유형 ({0})" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "모든 파일 (*)" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 -msgctxt "@info:status" -msgid "Calculated" -msgstr "계산된" - -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 +#: cura/API/Account.py:199 msgctxt "@info:title" msgid "Login failed" msgstr "로그인 실패" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: cura/Arranging/ArrangeObjectsJob.py:25 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "객체의 새 위치 찾기" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: cura/Arranging/ArrangeObjectsJob.py:29 msgctxt "@info:title" msgid "Finding Location" msgstr "위치 찾기" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "모든 개체가 출력할 수 있는 최대 사이즈 내에 위치할 수 없습니다" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: cura/Arranging/ArrangeObjectsJob.py:43 msgctxt "@info:title" msgid "Can't Find Location" msgstr "위치를 찾을 수 없음" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:115 +#: cura/Backups/Backup.py:115 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "사용자 데이터 디렉터리에서 압축 파일을 만들 수 없습니다: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:159 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +#: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159 +#: plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: plugins/CuraDrive/src/DrivePluginExtension.py:126 msgctxt "@info:title" msgid "Backup" msgstr "백업" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:134 +#: cura/Backups/Backup.py:134 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "적절한 데이터 또는 메타 데이터 없이 Cura 백업을 복원하려고 시도했습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:145 +#: cura/Backups/Backup.py:145 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that is higher than the current version." msgstr "현재 버전보다 높은 Cura 백업을 복원하려고 시도했습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:158 +#: cura/Backups/Backup.py:158 msgctxt "@info:backup_failed" msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "The following error occurred while trying to restore a Cura backup:" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: cura/BuildVolume.py:100 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." msgstr "\"프린팅 순서\"설정 값으로 인해 갠트리가 프린팅 된 모델과 충돌하지 않도록 출력물 높이가 줄어 들었습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 +#: cura/BuildVolume.py:103 msgctxt "@info:title" msgid "Build Volume" msgstr "출력물 크기" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "큐라를 시작할 수 없습니다" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" -"

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

    \n" +"

    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가 정상적이지 않습니다. </ p> </ b>\n" +"

    죄송합니다, UltiMaker Cura가 정상적이지 않습니다. </ p> </ b>\n" "                    

    시작할 때 복구 할 수없는 오류가 발생했습니다. 이 오류는 잘못된 구성 파일로 인해 발생할 수 있습니다. 설정을 백업하고 재설정하는 것이 좋습니다. </ p>\n" "                    

    백업은 설정 폴더에서 찾을 수 있습니다. </ p>\n" "                    

    문제를 해결하기 위해이 오류 보고서를 보내주십시오. </ p>\n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: cura/CrashHandler.py:122 msgctxt "@action:button" -msgid "Send crash report to Ultimaker" -msgstr "충돌 보고서를 Ultimaker에 보내기" +msgid "Send crash report to UltiMaker" +msgstr "충돌 보고서를 UltiMaker에 보내기" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "충돌 리포트 보기" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "설정 폴더 보기" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "백업 및 리셋 설정" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "충돌 보고서" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

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

    \n" @@ -256,573 +136,2239 @@ msgstr "" "

    "보고서 전송" 버튼을 사용하면 버그 보고서가 서버에 자동으로 전달됩니다

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "시스템 정보" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "알 수 없음" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura 버전" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Cura 언어" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "OS 언어" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "플랫폼" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qt 버전" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQt 버전" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized" -msgstr "" +msgstr "아직 초기화되지 않음" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL 버전: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL 공급업체: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL Renderer: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 +#: cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "오류 추적" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 +#: cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "로그" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 +#: cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "보고서 전송" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:531 +#: cura/CuraApplication.py:540 msgctxt "@info:progress" msgid "Loading machines..." msgstr "기기로드 중 ..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +#: cura/CuraApplication.py:547 msgctxt "@info:progress" msgid "Setting up preferences..." msgstr "환경 설정을 설정하는 중..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +#: cura/CuraApplication.py:692 msgctxt "@info:progress" msgid "Initializing Active Machine..." msgstr "활성 기기 초기화 중..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +#: cura/CuraApplication.py:839 msgctxt "@info:progress" msgid "Initializing machine manager..." msgstr "패키지 관리자 초기화 중..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +#: cura/CuraApplication.py:853 msgctxt "@info:progress" msgid "Initializing build volume..." msgstr "출력 사이즈 초기화 중..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +#: cura/CuraApplication.py:921 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "장면 설정 중..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +#: cura/CuraApplication.py:957 msgctxt "@info:progress" msgid "Loading interface..." msgstr "인터페이스 로드 중 ..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +#: cura/CuraApplication.py:962 msgctxt "@info:progress" msgid "Initializing engine..." msgstr "엔진 초기화 중..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#: cura/CuraApplication.py:1290 #, 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" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1798 +#: cura/CuraApplication.py:1816 #, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "한 번에 하나의 G-코드 파일만 로드 할 수 있습니다. {0} 가져 오기를 건너 뛰었습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 +#: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 msgctxt "@info:title" msgid "Warning" msgstr "경고" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#: cura/CuraApplication.py:1828 #, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "G-코드가 로드되어 있으면 다른 파일을 열 수 없습니다. {0} 가져 오기를 건너 뛰었습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1812 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156 +#: cura/Settings/CuraContainerRegistry.py:166 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 msgctxt "@info:title" msgid "Error" msgstr "오류" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 +#: cura/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "알 수 없는" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "아래 프린터는 그룹에 속해 있기 때문에 연결할 수 없습니다" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "사용 가능한 네트워크 프린터" + +#: cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "재정의되지 않음" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:28 +msgctxt "@label" +msgid "Connected printers" +msgstr "연결된 프린터" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +msgctxt "@label" +msgid "Preset printers" +msgstr "프린터 사전 설정" + +#: cura/Machines/Models/GlobalStacksModel.py:165 +#, 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}을(를) 제거하시겠습니까? 이 작업을 실행 취소할 수 없습니다." + +#: cura/Machines/Models/IntentCategoryModel.py:42 +#: cura/Machines/Models/IntentSelectionModel.py:61 +#: cura/Machines/Models/IntentTranslations.py:11 +#: cura/Machines/Models/QualityManagementModel.py:347 +msgctxt "@label" +msgid "Default" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:45 +#: cura/Machines/Models/IntentSelectionModel.py:65 +#: cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "뛰어난 외관" + +#: cura/Machines/Models/IntentCategoryModel.py:46 +#: cura/Machines/Models/IntentSelectionModel.py:66 +#: cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "시각적 프로파일은 높은 시각적 및 표면 품질의 의도를 지니고 시각적 프로토타입과 모델을 인쇄하기 위해 설계되었습니다." + +#: cura/Machines/Models/IntentCategoryModel.py:49 +#: cura/Machines/Models/IntentSelectionModel.py:70 +#: cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:50 +#: cura/Machines/Models/IntentSelectionModel.py:71 +#: cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "엔지니어링 프로파일은 정확도를 개선하고 허용 오차를 좁히려는 의도로 기능 프로토타입 및 최종 사용 부품을 인쇄하도록 설계되었습니다." + +#: cura/Machines/Models/IntentCategoryModel.py:53 +#: cura/Machines/Models/IntentSelectionModel.py:75 +#: cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "초안" + +#: cura/Machines/Models/IntentCategoryModel.py:54 +#: cura/Machines/Models/IntentSelectionModel.py:76 +#: cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "초안 프로파일은 인쇄 시간을 상당히 줄이려는 의도로 초기 프로토타입과 컨셉트 확인을 인쇄하도록 설계되었습니다." + +#: cura/Machines/Models/MaterialManagementModel.py:232 +msgctxt "@label" +msgid "Custom Material" +msgstr "사용자 정의 소재" + +#: cura/Machines/Models/MaterialManagementModel.py:233 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 +msgctxt "@label" +msgid "Custom" +msgstr "사용자 정의" + +#: cura/Machines/Models/QualityManagementModel.py:400 +msgctxt "@label" +msgid "Custom profiles" +msgstr "사용자 정의 프로파일" + +#: cura/Machines/Models/QualityManagementModel.py:435 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "지원되는 모든 유형 ({0})" + +#: cura/Machines/Models/QualityManagementModel.py:436 +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "모든 파일 (*)" + +#: cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "계산된" + +#: cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "객체를 증가시키고 배치" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 +#: cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "개체 배치 중" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 +#: cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "개체 배치 중" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +#: cura/OAuth2/AuthorizationHelpers.py:89 msgctxt "@message" msgid "Could not read response." msgstr "응답을 읽을 수 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +#: cura/OAuth2/AuthorizationRequestHandler.py:75 msgctxt "@message" msgid "The provided state is not correct." msgstr "입력한 상태가 올바르지 않습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +#: cura/OAuth2/AuthorizationRequestHandler.py:80 msgctxt "@message" msgid "Timeout when authenticating with the account server." msgstr "계정 서버 인증 시간이 초과되었습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +#: cura/OAuth2/AuthorizationRequestHandler.py:97 msgctxt "@message" msgid "Please give the required permissions when authorizing this application." msgstr "이 응용 프로그램을 인증할 때 필요한 권한을 제공하십시오." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +#: cura/OAuth2/AuthorizationRequestHandler.py:104 msgctxt "@message" msgid "Something unexpected happened when trying to log in, please try again." msgstr "로그인을 시도할 때 예기치 못한 문제가 발생했습니다. 다시 시도하십시오." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:216 +#: cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "새 로그인 작업을 시작할 수 없습니다. 다른 로그인 작업이 진행 중인지 확인하십시오." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:277 +#: cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "Ultimaker 계정 서버에 도달할 수 없음." +msgid "Unable to reach the UltiMaker account server." +msgstr "UltiMaker 계정 서버에 도달할 수 없음." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 +#: cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" msgid "Log-in failed" msgstr "로그인 실패" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +#: cura/PrinterOutput/UploadMaterialsJob.py:104 msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "프린터와 동기화할 재료의 아카이브 저장에 실패했습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +#: cura/PrinterOutput/UploadMaterialsJob.py:111 +#: cura/PrinterOutput/UploadMaterialsJob.py:165 msgctxt "@text:error" msgid "Failed to load the archive of materials to sync it with printers." msgstr "프린터와 동기화할 재료의 아카이브 로드에 실패했습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +#: cura/PrinterOutput/UploadMaterialsJob.py:143 msgctxt "@text:error" msgid "The response from Digital Factory appears to be corrupted." msgstr "Digital Factory의 응답이 손상된 것 같습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +#: cura/PrinterOutput/UploadMaterialsJob.py:147 +#: cura/PrinterOutput/UploadMaterialsJob.py:151 +#: cura/PrinterOutput/UploadMaterialsJob.py:155 msgctxt "@text:error" msgid "The response from Digital Factory is missing important information." msgstr "Digital Factory의 응답에 중요한 정보가 누락되었습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +#: cura/PrinterOutput/UploadMaterialsJob.py:218 msgctxt "@text:error" msgid "Failed to connect to Digital Factory to sync materials with some of the printers." msgstr "일부 프린터와 재료를 동기화하기 위한 Digital Factory 연결에 실패했습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +#: cura/PrinterOutput/UploadMaterialsJob.py:232 msgctxt "@text:error" msgid "Failed to connect to Digital Factory." msgstr "Digital Factory 연결에 실패했습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:207 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: cura/Settings/ActiveQuality.py:43 +msgctxt "@label" +msgid "Experimental" +msgstr "실험적 설정" + +#: cura/Settings/ContainerManager.py:207 +#: cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "파일이 이미 있습니다" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: cura/Settings/ContainerManager.py:208 +#: cura/Settings/CuraContainerRegistry.py:141 #, 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}이 이미 있습니다. 덮어 쓰시겠습니까?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 +#: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "유효하지 않은 파일 URL:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "프로파일을 {0}: {1}로 내보내는데 실패했습니다" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: cura/Settings/CuraContainerRegistry.py:163 #, 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}로 내보내지 못했습니다. Writer 플러그인이 오류를 보고했습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "프로파일을 {0} 에 내보냅니다" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "내보내기 완료" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "{0}에서 프로파일을 가져오지 못했습니다 {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: cura/Settings/CuraContainerRegistry.py:209 #, 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}에서 프로파일을 가져올 수 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "{0}(으)로 가져올 사용자 정의 프로파일이 없습니다" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "{0}에서 프로파일을 가져오지 못했습니다:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: cura/Settings/CuraContainerRegistry.py:252 +#: cura/Settings/CuraContainerRegistry.py:262 #, 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}에는 정확하지 않은 데이터가 포함되어 있으므로, 불러올 수 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "{0}에서 프로파일을 가져오지 못했습니다:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "프로파일 {0}을(를) 성공적으로 가져왔습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "파일 {0}에 유효한 프로파일이 포함되어 있지 않습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "프로파일 {0}에 알 수 없는 파일 유형이 있거나 손상되었습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "사용자 정의 프로파일" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "프로파일에 품질 타입이 누락되었습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "아직 활성화된 프린터가 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "프로파일을 추가할 수 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "'{0}' 품질 타입은 현재 활성 기기 정의 '{1}'와(과) 호환되지 않습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: cura/Settings/CuraContainerRegistry.py:488 #, 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}' 품질 타입을 현재 구성에 이용할 수 없기 때문에 찾을 수 없습니다. 이 품질 타입을 사용할 수 있는 재료/노즐 조합으로 전환하십시오." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "지원되지 않음" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:219 +#: cura/Settings/MachineManager.py:746 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:221 msgctxt "@label" msgid "Nozzle" msgstr "노즐" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +#: cura/Settings/MachineManager.py:890 msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "익스트루더의 현재 가용성과 일치하도록 설정이 변경되었습니다:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: cura/Settings/MachineManager.py:891 msgctxt "@info:title" msgid "Settings updated" msgstr "설정이 업데이트되었습니다" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 +#: cura/Settings/MachineManager.py:1514 msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "익스트루더 비활성화됨" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 +#: cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "지원되지 않음" + +#: cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "" + +#: cura/UI/AddPrinterPagesModel.py:17 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" msgid "Add" msgstr "추가" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:290 +#: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290 msgctxt "@action:button" msgid "Finish" msgstr "종료" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:508 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:323 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:291 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:74 +#: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386 +#: plugins/ImageReader/ConfigUI.qml:323 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 +#: resources/qml/ColorDialog.qml:143 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: resources/qml/Dialogs/RenameDialog.qml:103 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 msgctxt "@action:button" msgid "Cancel" msgstr "취소" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: cura/UI/ObjectsModel.py:69 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "그룹 #{group_nr}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 +#: cura/UI/PrintInformation.py:87 msgctxt "@tooltip" msgid "Outer Wall" msgstr "외벽" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +#: cura/UI/PrintInformation.py:88 msgctxt "@tooltip" msgid "Inner Walls" msgstr "내벽" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +#: cura/UI/PrintInformation.py:89 msgctxt "@tooltip" msgid "Skin" msgstr "스킨" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +#: cura/UI/PrintInformation.py:90 msgctxt "@tooltip" msgid "Infill" msgstr "내부채움" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +#: cura/UI/PrintInformation.py:91 msgctxt "@tooltip" msgid "Support Infill" msgstr "내부채움 서포트" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +#: cura/UI/PrintInformation.py:92 msgctxt "@tooltip" msgid "Support Interface" msgstr "지원하는 인터페이스" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +#: cura/UI/PrintInformation.py:93 msgctxt "@tooltip" msgid "Support" msgstr "서포트" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +#: cura/UI/PrintInformation.py:94 msgctxt "@tooltip" msgid "Skirt" msgstr "스커트" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +#: cura/UI/PrintInformation.py:95 msgctxt "@tooltip" msgid "Prime Tower" msgstr "프라임 타워" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +#: cura/UI/PrintInformation.py:96 msgctxt "@tooltip" msgid "Travel" msgstr "움직임 경로" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +#: cura/UI/PrintInformation.py:97 msgctxt "@tooltip" msgid "Retractions" msgstr "리트랙션" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +#: cura/UI/PrintInformation.py:98 msgctxt "@tooltip" msgid "Other" msgstr "다른" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:63 +#: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63 msgctxt "@text:window" msgid "The release notes could not be opened." msgstr "릴리즈 노트를 열 수 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:277 +#: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277 msgctxt "@action:button" msgid "Next" msgstr "다음" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68 msgctxt "@action:button" msgid "Skip" msgstr "건너뛰기" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:443 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:186 +#: cura/UI/WhatsNewPagesModel.py:76 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444 +#: resources/qml/Dialogs/AboutDialog.qml:188 msgctxt "@action:button" msgid "Close" msgstr "닫기" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: cura/UltimakerCloud/CloudMaterialSync.py:66 msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "프린트를 시작하기 전에 재료 프로파일을 프린터와 동기화하십시오." -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: cura/UltimakerCloud/CloudMaterialSync.py:67 msgctxt "@action:button" msgid "New materials installed" msgstr "새로운 재료가 설치됨" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: cura/UltimakerCloud/CloudMaterialSync.py:74 msgctxt "@action:button" msgid "Sync materials" msgstr "재료 동기화" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:397 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:80 +#: cura/UltimakerCloud/CloudMaterialSync.py:82 +#: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80 msgctxt "@action:button" msgid "Learn more" msgstr "자세히 알아보기" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +#: cura/UltimakerCloud/CloudMaterialSync.py:135 msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "재료 아카이브를 {}에 저장할 수 없음:" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +#: cura/UltimakerCloud/CloudMaterialSync.py:136 msgctxt "@message:title" msgid "Failed to save material archive" msgstr "재료 아카이브를 저장하는 데 실패함" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +#: cura/UltimakerCloud/CloudMaterialSync.py:188 msgctxt "@text" msgid "Unknown error." msgstr "알 수 없는 오류입니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:558 +#, 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}이(가) 포함되어 있습니다. 기기를 가져올 수 없습니다. 대신 모델을 가져옵니다." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:561 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "프로젝트 파일 열기" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: plugins/3MFReader/WorkspaceDialog.qml:99 +#: plugins/3MFReader/WorkspaceDialog.qml:127 +#: plugins/3MFReader/WorkspaceDialog.qml:134 +msgctxt "@button" +msgid "Create new" +msgstr "" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:692 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "프로젝트 파일 {0}에 갑자기 접근할 수 없습니다: {1}." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:720 +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "프로젝트 파일 열 수 없음" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:700 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:718 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "프로젝트 파일 {0}이 손상됨: {1}." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:765 +#, 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에서 확인할 수 없는 프로파일을 사용하였습니다." + +#: plugins/3MFReader/WorkspaceDialog.py:233 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "추천" + +#: plugins/3MFReader/WorkspaceDialog.py:235 +msgctxt "@title:tab" +msgid "Custom" +msgstr "사용자 정의" + +#: plugins/3MFReader/WorkspaceDialog.py:411 +msgctxt "@info:status" +msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." +msgstr "이 프로젝트에 사용된 재료는 Cura에서 지원하지 않는 재료로 원하지 않는 3D 출력물을 생산할 수도 있습니다. Marketplace의 전체 재료 패키지를 설치하는 것을 권장합니다." + +#: plugins/3MFReader/WorkspaceDialog.py:413 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "재료 프로파일이 설치되지 않음" + +#: plugins/3MFReader/WorkspaceDialog.py:426 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "재료 설치" + +#: plugins/3MFReader/WorkspaceDialog.qml:15 +msgctxt "@title:window" +msgid "Open Project" +msgstr "프로젝트 열기" + +#: plugins/3MFReader/WorkspaceDialog.qml:31 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61 +msgctxt "@action:title" +msgid "Summary - Cura Project" +msgstr "요약 - Cura 프로젝트" + +#: plugins/3MFReader/WorkspaceDialog.qml:65 +msgctxt "@action:ComboBox Update/override existing profile" +msgid "Update existing" +msgstr "기존 업데이트" + +#: plugins/3MFReader/WorkspaceDialog.qml:66 +msgctxt "@action:ComboBox Save settings in a new profile" +msgid "Create new" +msgstr "새로 만들기" + +#: plugins/3MFReader/WorkspaceDialog.qml:83 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97 +msgctxt "@action:label" +msgid "Printer settings" +msgstr "프린터 설정" + +#: plugins/3MFReader/WorkspaceDialog.qml:92 +#: plugins/3MFReader/WorkspaceRow.qml:23 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106 +msgctxt "@action:label" +msgid "Type" +msgstr "유형" + +#: plugins/3MFReader/WorkspaceDialog.qml:98 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +msgctxt "@action:label" +msgid "Printer Group" +msgstr "프린터 그룹" + +#: plugins/3MFReader/WorkspaceDialog.qml:103 +msgctxt "@action:label" +msgid "Open With" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:104 +msgctxt "@info:tooltip" +msgid "Printer settings will be updated to match the settings saved with the project." +msgstr "프린터 설정은 프로젝트에 저장된 설정과 일치하도록 업데이트됩니다." + +#: plugins/3MFReader/WorkspaceDialog.qml:156 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222 +msgctxt "@action:label" +msgid "Profile settings" +msgstr "프로파일 설정" + +#: plugins/3MFReader/WorkspaceDialog.qml:166 +#: plugins/3MFReader/WorkspaceDialog.qml:238 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246 +msgctxt "@action:label" +msgid "Name" +msgstr "이름" + +#: plugins/3MFReader/WorkspaceDialog.qml:172 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263 +msgctxt "@action:label" +msgid "Intent" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:178 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230 +msgctxt "@action:label" +msgid "Not in profile" +msgstr "프로파일에 없음" + +#: plugins/3MFReader/WorkspaceDialog.qml:179 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235 +msgctxt "@action:label" +msgid "%1 override" +msgid_plural "%1 overrides" +msgstr[0] "%1 무시" + +#: plugins/3MFReader/WorkspaceDialog.qml:185 +msgctxt "@action:label" +msgid "Derivative from" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:186 +msgctxt "@action:label" +msgid "%1, %2 override" +msgid_plural "%1, %2 overrides" +msgstr[0] "%1, %2 무시" + +#: plugins/3MFReader/WorkspaceDialog.qml:226 +msgctxt "@action:label" +msgid "Material settings" +msgstr "재료 설정" + +#: plugins/3MFReader/WorkspaceDialog.qml:280 +msgctxt "@action:label" +msgid "Setting visibility" +msgstr "표시 설정" + +#: plugins/3MFReader/WorkspaceDialog.qml:290 +msgctxt "@action:label" +msgid "Mode" +msgstr "종류" + +#: plugins/3MFReader/WorkspaceDialog.qml:296 +msgctxt "@action:label" +msgid "%1 out of %2" +msgstr "1 out of %2" + +#: plugins/3MFReader/WorkspaceDialog.qml:321 +msgctxt "@action:warning" +msgid "Loading a project will clear all models on the build plate." +msgstr "프로젝트를 로드하면 빌드 플레이트의 모든 모델이 지워집니다." + +#: plugins/3MFReader/WorkspaceDialog.qml:367 +msgctxt "@label" +msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." +msgstr "이 프로젝트에 사용된 재료는 현재 Cura에 설치되지 않았습니다.
    재료 프로파일을 설치하고 프로젝트를 다시 여십시오." + +#: plugins/3MFReader/WorkspaceDialog.qml:392 +msgctxt "@action:button" +msgid "Open" +msgstr "열기" + +#: plugins/3MFReader/WorkspaceDialog.qml:398 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "무시하고 프로젝트 열기" + +#: plugins/3MFReader/WorkspaceDialog.qml:407 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "누락된 재료 설치하기" + +#: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33 +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "3MF 파일" + +#: plugins/3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF 리더" + +#: plugins/3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "3MF 파일 읽기 지원." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "3MF 기록기 플러그인이 손상되었습니다." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "작성할 작업 환경이 없습니다. 프린터를 먼저 추가하십시오." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "여기서 작업 환경을 작성할 권한이 없습니다." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "운영 체제가 프로젝트 파일을 이 위치로 또는 이 파일명으로 저장하지 못합니다." + +#: plugins/3MFWriter/ThreeMFWriter.py:240 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "3MF 파일 작성 중 오류." + +#: plugins/3MFWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "3MF 파일" + +#: plugins/3MFWriter/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Cura 프로젝트 3MF 파일" + +#: plugins/3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF 기록기" + +#: plugins/3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "3MF 파일 작성 지원을 제공합니다." + +#: plugins/AMFReader/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "AMF 파일" + +#: plugins/AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF 리더" + +#: plugins/AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "AMF 파일 읽기가 지원됩니다." + +#: plugins/CuraDrive/plugin.json +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "구성을 백업하고 복원합니다." + +#: plugins/CuraDrive/plugin.json +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura 백업" + +#: plugins/CuraDrive/src/CreateBackupJob.py:25 +msgctxt "@info:title" +msgid "Backups" +msgstr "백업" + +#: plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "백업을 업로드하는 도중 오류가 있었습니다." + +#: plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "백업 생성 중..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "백업을 생성하는 도중 오류가 있었습니다." + +#: plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "백업 업로드 중..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "백업이 업로드를 완료했습니다." + +#: plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "백업이 최대 파일 크기를 초과했습니다." + +#: plugins/CuraDrive/src/DriveApiService.py:86 +#: plugins/CuraDrive/src/RestoreBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "백업 복원 시도 중 오류가 있었습니다." + +#: plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "백업 관리" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "무엇을 더 하시겠습니까?" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "지금 백업" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "자동 백업" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Cura가 시작되는 날마다 자동으로 백업을 생성하십시오." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 +msgctxt "@button" +msgid "Restore" +msgstr "복원" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "백업 삭제" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "이 백업을 삭제하시겠습니까? 이 작업을 완료할 수 없습니다." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "백업 복원" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 +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를 닫으시겠습니까?" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Cura 버전" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "기기" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "재료" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "프로파일" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "플러그인" + +#: plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Cura 백업" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "내 백업" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "현재 백업이 없습니다. ‘지금 백업’ 버튼을 사용하여 생성하십시오." + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "미리 보기 단계 중에는 보이는 백업 5개로 제한됩니다. 기존 백업을 보려면 백업을 제거하십시오." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Cura 설정을 백업, 동기화하십시오." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 +#: plugins/Marketplace/resources/qml/Marketplace.qml:312 +#: resources/qml/Account/GeneralOperations.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180 +#: resources/qml/WelcomePages/CloudContent.qml:212 +msgctxt "@button" +msgid "Sign in" +msgstr "로그인" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "예기치 않은 오류로 인해 슬라이싱에 실패했습니다. 이슈 트래커에 버그를 보고하는 것을 고려하십시오." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:163 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "슬라이싱 실패" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "버그 보고" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:169 +msgctxt "@message:description" +msgid "Report a bug on UltiMaker Cura's issue tracker." +msgstr "" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:416 +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "선택한 소재 또는 구성과 호환되지 않기 때문에 현재 소재로 슬라이스 할 수 없습니다." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:417 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:450 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:477 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:501 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:514 +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "슬라이스 할 수 없습니다" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:449 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "현재 설정으로 슬라이스 할 수 없습니다. 다음 설정에는 오류가 있습니다 : {0}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:476 +#, 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 "일부 모델별 설정으로 인해 슬라이스할 수 없습니다. 하나 이상의 모델에서 다음 설정에 오류가 있습니다. {error_labels}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:488 +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "프라임 타워 또는 위치가 유효하지 않아 슬라이스 할 수 없습니다." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:500 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "비활성화된 익스트루더 %s(와)과 연결된 개체가 있기 때문에 슬라이스할 수 없습니다." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:510 +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 "" +"설정을 검토하고 모델이 다음 사항에 해당하는지 확인하십시오.\n" +"- 출력 사이즈 내에 맞춤화됨\n" +"- 활성화된 익스트루더로 할당됨\n" +"- 수정자 메쉬로 전체 설정되지 않음" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "레이어 처리 중" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "정보" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine 백엔드" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "CuraEngine 슬라이스 백엔드 링크를 제공합니다." + +#: plugins/CuraProfileReader/__init__.py:14 +#: plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Cura 프로파일" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura 프로파일 리더" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Cura 프로파일 가져 오기 지원을 제공합니다." + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura 프로파일 작성자" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Cura 프로파일 내보내기 지원을 제공합니다." + +#: plugins/DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "디지털 라이브러리와 연결하여 Cura에서 디지털 라이브러리를 통해 파일을 열고 저장할 수 있도록 합니다." + +#: plugins/DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "UltiMaker 디지털 라이브러리" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 +msgctxt "@option" +msgid "Save Cura project and print file" +msgstr "Cura 프로젝트 저장하고 파일 프린팅하기" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Cura 프로젝트 저장하기" + +#: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19 +msgctxt "@text Placeholder for the username if it has been deleted" +msgid "deleted user" +msgstr "삭제된 사용자" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "업데이트 정보에 액세스 할 수 없습니다." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, 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}으로 업데이트하는 것이 좋습니다." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "안정적인 신규 %s 펌웨어를 사용할 수 있습니다" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "업데이트하는 방법" + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "펌웨어 업데이트를 확인합니다." + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "펌웨어 업데이트 검사기" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "펌웨어 업데이트" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "펌웨어 업데이트" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 +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 프린터에서 직접 실행되는 소프트웨어입니다. 이 펌웨어는 스텝 모터를 제어하고 온도를 조절하며 프린터를 작동시킵니다." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "새 프린터와 함께 제공되는 펌웨어는 작동하지만 새로운 버전은 더 많은 기능과 향상된 기능을 제공하는 경향이 있습니다." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "펌웨어 자동 업그레이드" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "사용자 정의 펌웨어 업로드" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "프린터와 연결되지 않아 펌웨어를 업데이트할 수 없습니다." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "프린터와 연결이 펌웨어 업그레이드를 지원하지 않아 펌웨어를 업데이트할 수 없습니다." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "사용자 정의 펌웨어 선택" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "펌웨어 업데이트" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 +msgctxt "@label" +msgid "Updating firmware." +msgstr "펌웨어 업데이트 중." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "펌웨어 업데이트가 완료되었습니다." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "알 수 없는 오류로 인해 펌웨어 업데이트에 실패했습니다." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "통신 오류로 인해 펌웨어 업데이트에 실패했습니다." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "입/출력 오류로 인해 펌웨어 업데이트에 실패했습니다." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "펌웨어 누락으로 인해 펌웨어 업데이트에 실패했습니다." + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "name" +msgid "Firmware Updater" +msgstr "펌웨어 업데이터" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "펌웨어 업데이트를 위한 기계 동작을 제공합니다." + +#: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "압축된 G-code 파일" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "압축 된 G 코드 리더기" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "압축 된 아카이브로 부터 g-code를 읽습니다." + +#: plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "GCodeGzWriter는 텍스트 모드는 지원하지 않습니다." + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "압축 된 G 코드 작성기" + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "압축 된 아카이브에 g-code를 씁니다." + +#: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14 +#: plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "G-code 파일" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "GCode 프로파일 리더기" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "G-코드 파일에서 프로파일 가져 오기를 지원합니다." + +#: plugins/GCodeReader/FlavorParser.py:359 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "G 코드 파싱" + +#: plugins/GCodeReader/FlavorParser.py:361 +#: plugins/GCodeReader/FlavorParser.py:515 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "G-코드 세부 정보" + +#: plugins/GCodeReader/FlavorParser.py:513 +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-코드가 정확하지 않을 수 있습니다." + +#: plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "G 파일" + +#: plugins/GCodeReader/plugin.json +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "G-코드 파일을 로드하고 표시 할 수 있습니다." + +#: plugins/GCodeReader/plugin.json +msgctxt "name" +msgid "G-code Reader" +msgstr "G-코드 리더" + +#: plugins/GCodeWriter/GCodeWriter.py:75 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "GCodeWriter는 텍스트가 아닌 모드는 지원하지 않습니다." + +#: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "내보내기 전에 G-code를 준비하십시오." + +#: plugins/GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "GCode 작성자" + +#: plugins/GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "G Code를 파일에 씁니다." + +#: plugins/ImageReader/ConfigUI.qml:14 +msgctxt "@title:window" +msgid "Convert Image" +msgstr "이미지 변환" + +#: plugins/ImageReader/ConfigUI.qml:33 +msgctxt "@action:label" +msgid "Height (mm)" +msgstr "높이 (mm)" + +#: plugins/ImageReader/ConfigUI.qml:56 +msgctxt "@info:tooltip" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "\"Base\"에서 각 픽셀까지의 최대 거리." + +#: plugins/ImageReader/ConfigUI.qml:66 +msgctxt "@action:label" +msgid "Base (mm)" +msgstr "바닥 (mm)" + +#: plugins/ImageReader/ConfigUI.qml:90 +msgctxt "@info:tooltip" +msgid "The base height from the build plate in millimeters." +msgstr "밀리미터 단위의 빌드 플레이트에서 기저부 높이." + +#: plugins/ImageReader/ConfigUI.qml:100 +msgctxt "@action:label" +msgid "Width (mm)" +msgstr "너비 (mm)" + +#: plugins/ImageReader/ConfigUI.qml:124 +msgctxt "@info:tooltip" +msgid "The width in millimeters on the build plate" +msgstr "빌드 플레이트의 폭 (밀리미터)" + +#: plugins/ImageReader/ConfigUI.qml:134 +msgctxt "@action:label" +msgid "Depth (mm)" +msgstr "깊이 (mm)" + +#: plugins/ImageReader/ConfigUI.qml:158 +msgctxt "@info:tooltip" +msgid "The depth in millimeters on the build plate" +msgstr "빌드 플레이트의 깊이 (밀리미터)" + +#: plugins/ImageReader/ConfigUI.qml:187 +msgctxt "@item:inlistbox" +msgid "Darker is higher" +msgstr "어두울수록 높음" + +#: plugins/ImageReader/ConfigUI.qml:188 +msgctxt "@item:inlistbox" +msgid "Lighter is higher" +msgstr "밝을수록 높음" + +#: plugins/ImageReader/ConfigUI.qml:195 +msgctxt "@info:tooltip" +msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." +msgstr "리쏘페인(투각)의 경우 들어오는 더 많은 빛을 차단하기 위해서는 다크 픽셀이 더 두꺼운 위치에 해당해야 합니다. 높이 지도의 경우 더 밝은 픽셀이 더 높은 지역을 나타냅니다. 따라서 생성된 3D 모델에서 더 밝은 픽셀이 더 두꺼운 위치에 해당해야 합니다." + +#: plugins/ImageReader/ConfigUI.qml:205 +msgctxt "@action:label" +msgid "Color Model" +msgstr "색상 모델" + +#: plugins/ImageReader/ConfigUI.qml:224 +msgctxt "@item:inlistbox" +msgid "Linear" +msgstr "직선 모양" + +#: plugins/ImageReader/ConfigUI.qml:225 +msgctxt "@item:inlistbox" +msgid "Translucency" +msgstr "반투명성" + +#: plugins/ImageReader/ConfigUI.qml:232 +msgctxt "@info:tooltip" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "리쏘페인의 경우 반투명성을 위한 간단한 로그 모델을 사용할 수 있습니다. 높이 지도의 경우, 픽셀 값은 높이에 선형적으로 부합합니다." + +#: plugins/ImageReader/ConfigUI.qml:242 +msgctxt "@action:label" +msgid "1mm Transmittance (%)" +msgstr "1mm의 투과율(%)" + +#: plugins/ImageReader/ConfigUI.qml:263 +msgctxt "@info:tooltip" +msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." +msgstr "두께가 1mm인 출력물을 관통하는 빛의 비율 이 값을 낮추면 어두운 부분의 대조가 증가하고 이미지의 밝은 부분의 대조가 감소합니다." + +#: plugins/ImageReader/ConfigUI.qml:274 +msgctxt "@action:label" +msgid "Smoothing" +msgstr "스무딩(smoothing)" + +#: plugins/ImageReader/ConfigUI.qml:298 +msgctxt "@info:tooltip" +msgid "The amount of smoothing to apply to the image." +msgstr "이미지에 적용할 스무딩(smoothing)의 정도." + +#: plugins/ImageReader/ConfigUI.qml:329 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 +#: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25 +msgctxt "@action:button" +msgid "OK" +msgstr "확인" + +#: plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "JPG 이미지" + +#: plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "JPEG 이미지" + +#: plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "PNG 이미지" + +#: plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "BMP 이미지" + +#: plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "GIF 이미지" + +#: plugins/ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "2D 이미지 파일에서 프린팅 가능한 지오메트리를 생성 할 수 있습니다." + +#: plugins/ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "이미지 리더" + +#: plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Cura 15.04 프로파일" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "레거시 Cura 프로파일 리더" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "레거시 Cura 버전에서 프로파일 가져 오기를 지원합니다." + +#: plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "기기 설정" + +#: plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "프린터" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "노즐 설정" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 +msgctxt "@label" +msgid "Nozzle size" +msgstr "노즐 크기" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "호환되는 재료의 직경" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "노즐 오프셋 X" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "노즐 오프셋 Y" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "냉각 팬 번호" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "익스트루더 시작 Gcode" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "익스트루더 종료 Gcode" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "프린터 설정" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (너비)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (깊이)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (높이)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 +msgctxt "@label" +msgid "Build plate shape" +msgstr "빌드 플레이트 모양" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 +msgctxt "@label" +msgid "Origin at center" +msgstr "중앙이 원점" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 +msgctxt "@label" +msgid "Heated bed" +msgstr "히트 베드" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 +msgctxt "@label" +msgid "Heated build volume" +msgstr "히팅 빌드 사이즈" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 +msgctxt "@label" +msgid "G-code flavor" +msgstr "Gcode 유형" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "프린트헤드 설정" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 +msgctxt "@label" +msgid "X min" +msgstr "X 최소값" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 +msgctxt "@label" +msgid "Y min" +msgstr "Y 최소값" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 +msgctxt "@label" +msgid "X max" +msgstr "X 최대값" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 +msgctxt "@label" +msgid "Y max" +msgstr "Y 최대값" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 +msgctxt "@label" +msgid "Gantry Height" +msgstr "갠트리 높이" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "익스트루더의 수" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:342 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "익스트루더 오프셋을 GCode에 적용" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:390 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "시작 GCode" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:401 +msgctxt "@title:label" +msgid "End G-code" +msgstr "End GCode" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "name" +msgid "Machine Settings Action" +msgstr "컴퓨터 설정 작업" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "기계 설정 (예 : 빌드 볼륨, 노즐 크기 등)을 변경하는 방법을 제공합니다." + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "귀하의 계정으로 재료와 소프트웨어 패키지를 동기화하시겠습니까?" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:95 +msgctxt "@info:title" +msgid "Changes detected from your UltiMaker account" +msgstr "UltiMaker 계정에서 변경 사항이 감지되었습니다" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 +msgctxt "@action:button" +msgid "Sync" +msgstr "동기화" + +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "동기화 중..." + +#: plugins/Marketplace/CloudSync/LicenseModel.py:12 +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:79 +msgctxt "@button" +msgid "Decline" +msgstr "거절" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:13 +#: resources/qml/WelcomePages/UserAgreementContent.qml:53 +msgctxt "@button" +msgid "Agree" +msgstr "동의" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:77 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "플러그인 사용 계약" + +#: plugins/Marketplace/CloudSync/LicensePresenter.py:42 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "계정에서 거절 및 제거" + +#: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "변경 사항이 적용되기 전에 {}을(를) 멈추고 다시 시작해야 합니다." + +#: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "{}개의 플러그인을 다운로드하지 못했습니다" + +#: plugins/Marketplace/LocalPackageList.py:28 +msgctxt "@label" +msgid "Installed Plugins" +msgstr "설치된 플러그인" + +#: plugins/Marketplace/LocalPackageList.py:29 +msgctxt "@label" +msgid "Installed Materials" +msgstr "설치된 재료" + +#: plugins/Marketplace/LocalPackageList.py:33 +msgctxt "@label" +msgid "Bundled Plugins" +msgstr "번들 플러그인" + +#: plugins/Marketplace/LocalPackageList.py:34 +msgctxt "@label" +msgid "Bundled Materials" +msgstr "번들 재료" + +#: plugins/Marketplace/PackageModel.py:43 +msgctxt "@label:property" +msgid "Unknown Package" +msgstr "알 수 없는 패키지" + +#: plugins/Marketplace/PackageModel.py:66 +msgctxt "@label:property" +msgid "Unknown Author" +msgstr "알 수 없는 원작자" + +#: plugins/Marketplace/PackageModel.py:95 +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 "Ultimaker Marketplace에서 Cura 프로젝트와 관련된 재료 패키지를 찾을 수 없습니다. Cura 프로젝트 파일에 저장된 부분적인 재료 프로필 정의를 사용할 시 이로 인한 문제는 사용자 책임입니다." + +#: plugins/Marketplace/RemotePackageList.py:117 +msgctxt "@info:error" +msgid "Could not interpret the server's response." +msgstr "서버의 응답을 해석할 수 없습니다." + +#: plugins/Marketplace/RemotePackageList.py:148 +msgctxt "@info:error" +msgid "Could not reach Marketplace." +msgstr "마켓플레이스에 도달할 수 없습니다." + +#: plugins/Marketplace/plugin.json +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "응용 프로그램의 확장을 관리하고 UltiMaker 웹 사이트에서 확장을 검색할 수 있습니다." + +#: plugins/Marketplace/plugin.json +msgctxt "name" +msgid "Marketplace" +msgstr "마켓플레이스" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 +msgctxt "@title" +msgid "Changes from your account" +msgstr "계정의 변경 사항" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +msgctxt "@button" +msgid "Dismiss" +msgstr "취소" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +#: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 +#: resources/qml/WelcomePages/WhatsNewContent.qml:175 +msgctxt "@button" +msgid "Next" +msgstr "다음 것" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "다음 패키지가 추가됩니다:" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "호환되지 않는 Cura 버전이기 때문에 다음 패키지를 설치할 수 없습니다:" + +#: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "누락된 재료 설치하기" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "플러그인 라이센스 계약" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:47 +msgctxt "@text" +msgid "Please read and agree with the plugin licence." +msgstr "플러그인 라이센스를 읽고 동의하십시오." + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "동의" + +#: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "패키지 관리" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:12 +msgctxt "@header" +msgid "Manage packages" +msgstr "패키지 관리" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:16 +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 플러그인 및 재료 프로파일을 관리하십시오. 플러그인을 최신 상태로 유지하고 설정을 정기적으로 백업하십시오." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" +msgid "Loading..." +msgstr "로딩 중..." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "플러그인" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "재료" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "브라우저에서 검색" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:271 +msgctxt "@button" +msgid "In order to use the package you will need to restart Cura" +msgstr "패키지를 사용하려면 Cura를 재시작해야 합니다." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:279 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "%1 종료" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:300 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" +msgstr "UltiMaker Cura Enterprise용으로 검증된 플러그인 및 재료를 받으려면 로그인하십시오." + +#: plugins/Marketplace/resources/qml/Materials.qml:8 +#: plugins/Marketplace/resources/qml/MissingPackages.qml:8 +msgctxt "@header" +msgid "Install Materials" +msgstr "재료 설치" + +#: plugins/Marketplace/resources/qml/Materials.qml:12 +msgctxt "@text" +msgid "Select and install material profiles optimised for your UltiMaker 3D printers." +msgstr "UltiMaker 3D 프린터에 최적화된 재료 프로파일을 선택하고 설치하십시오." + +#: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "패키지를 설치하려면 라이선스를 수락해야 합니다" + +#: plugins/Marketplace/resources/qml/OnboardBanner.qml:101 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205 +msgctxt "@button:label" +msgid "Learn More" +msgstr "자세히 알아보기" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170 +msgctxt "@label Is followed by the name of an author" +msgid "By" +msgstr "사용" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Disable" +msgstr "해제됨" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Enable" +msgstr "실행됨" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242 +msgctxt "@button" +msgid "Downgrading..." +msgstr "다운그레이드 중..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243 +msgctxt "@button" +msgid "Downgrade" +msgstr "다운그레이드" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247 +msgctxt "@button" +msgid "Installing..." +msgstr "설치 중..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248 +msgctxt "@button" +msgid "Install" +msgstr "설치" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252 +msgctxt "@button" +msgid "Uninstall" +msgstr "설치 제거" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Update" +msgstr "업데이트" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Updating..." +msgstr "업데이트 중" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "패키지 세부 사항" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "뒤로" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "설명" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "호환 가능한 프린터" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "호환성 정보 없음" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "호환 서포트 재료" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "없음" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:193 +msgctxt "@header" +msgid "Compatible with Material Station" +msgstr "Material Station과 호환 가능" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "No" +msgstr "아니요" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "Yes" +msgstr "예" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:219 +msgctxt "@header" +msgid "Optimized for Air Manager" +msgstr "Air Manager에 최적화" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Visit plug-in website" +msgstr "플러그인 웹사이트 방문" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Website" +msgstr "웹사이트" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:252 +msgctxt "@button" +msgid "Buy spool" +msgstr "스풀 구입" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:261 +msgctxt "@button" +msgid "Safety datasheet" +msgstr "안전성 데이터시트" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:270 +msgctxt "@button" +msgid "Technical datasheet" +msgstr "기술 데이터시트" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Failed to load packages:" +msgstr "패키지를 로드하지 못했습니다:" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Retry?" +msgstr "재시도하시겠습니까?" + +#: plugins/Marketplace/resources/qml/Packages.qml:167 +msgctxt "@button" +msgid "Loading" +msgstr "로딩중" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No more results to load" +msgstr "더 이상 로드할 결과 없음" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No results found with current filter" +msgstr "현재 필터로는 결과를 찾을 수 없음" + +#: plugins/Marketplace/resources/qml/Packages.qml:226 +msgctxt "@button" +msgid "Load more" +msgstr "더 많이 로드" + +#: plugins/Marketplace/resources/qml/Plugins.qml:8 +msgctxt "@header" +msgid "Install Plugins" +msgstr "플러그인 설치" + +#: plugins/Marketplace/resources/qml/Plugins.qml:12 +msgctxt "@text" +msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." +msgstr "당사의 놀라운 사용자 커뮤니티에서 기여한 플러그인으로 워크 플로를 간소화하고 UltiMaker Cura 경험을 맞춤화하세요." + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 +msgctxt "@info" +msgid "UltiMaker Verified Plug-in" +msgstr "UltiMaker 검증된 플러그인" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "UltiMaker Certified Material" +msgstr "UltiMaker 인증된 재료" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 +msgctxt "@info" +msgid "UltiMaker Verified Package" +msgstr "UltiMaker 검증된 패키지" + +#: plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "3D 모델 도우미" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -836,819 +2382,1088 @@ msgstr "" "

    인쇄 품질 및 안정성을 최고로 높이는 방법을 알아보십시오.

    \n" "

    인쇄 품질 가이드 보기

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 -#, 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}이(가) 포함되어 있습니다. 기기를 가져올 수 없습니다. 대신 모델을 가져옵니다." +#: plugins/ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "가능한 프린팅 문제를 위해 모델 및 인쇄 구성을 확인하고 제안합니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "프로젝트 파일 열기" +#: plugins/ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "모델 검사기" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "프로젝트 파일 {0}에 갑자기 접근할 수 없습니다: {1}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:659 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "프로젝트 파일 열 수 없음" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:658 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "프로젝트 파일 {0}이 손상됨: {1}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:711 -#, 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에서 확인할 수 없는 프로파일을 사용하였습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "추천" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:214 -msgctxt "@title:tab" -msgid "Custom" -msgstr "사용자 정의" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:390 -msgctxt "@info:status" -msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 -msgctxt "@info:title" -msgid "Material profiles not installed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 -msgctxt "@action:button" -msgid "Install Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "3MF 파일" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "3MF 기록기 플러그인이 손상되었습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "작성할 작업 환경이 없습니다. 프린터를 먼저 추가하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "여기서 작업 환경을 작성할 권한이 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "운영 체제가 프로젝트 파일을 이 위치로 또는 이 파일명으로 저장하지 못합니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:238 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "3MF 파일 작성 중 오류." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:282 -#, python-brace-format -msgctxt "@error:material" -msgid "It was not possible to store material package information in project file: {material}. This project may not open correctly on other systems." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 -msgctxt "@info:title" -msgid "Failed to save material package information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF 파일" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura 프로젝트 3MF 파일" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF 파일" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 -msgctxt "@info:title" -msgid "Backups" -msgstr "백업" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "백업을 업로드하는 도중 오류가 있었습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "백업 생성 중..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "백업을 생성하는 도중 오류가 있었습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "백업 업로드 중..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "백업이 업로드를 완료했습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "백업이 최대 파일 크기를 초과했습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "백업 복원 시도 중 오류가 있었습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "백업 관리" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "예기치 않은 오류로 인해 슬라이싱에 실패했습니다. 이슈 트래커에 버그를 보고하는 것을 고려하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "슬라이싱 실패" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 -msgctxt "@message:button" -msgid "Report a bug" -msgstr "버그 보고" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 -msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." -msgstr "Report a bug on Ultimaker Cura's issue tracker." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:400 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "선택한 소재 또는 구성과 호환되지 않기 때문에 현재 소재로 슬라이스 할 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:401 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:434 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:461 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:473 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:485 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:498 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "슬라이스 할 수 없습니다" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:433 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "현재 설정으로 슬라이스 할 수 없습니다. 다음 설정에는 오류가 있습니다 : {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:460 -#, 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 "일부 모델별 설정으로 인해 슬라이스할 수 없습니다. 하나 이상의 모델에서 다음 설정에 오류가 있습니다. {error_labels}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:472 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "프라임 타워 또는 위치가 유효하지 않아 슬라이스 할 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:484 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "비활성화된 익스트루더 %s(와)과 연결된 개체가 있기 때문에 슬라이스할 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 -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 "" -"설정을 검토하고 모델이 다음 사항에 해당하는지 확인하십시오.\n" -"- 출력 사이즈 내에 맞춤화됨\n" -"- 활성화된 익스트루더로 할당됨\n" -"- 수정자 메쉬로 전체 설정되지 않음" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "레이어 처리 중" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 -msgctxt "@info:title" -msgid "Information" -msgstr "정보" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura 프로파일" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" -msgid "Could not access update information." -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" +"- 프린터가 네트워크에 연결되어 있는지 확인하십시오.⏎- 클라우드로 연결된 프린터를 탐색할 수 있도록 로그인되어 있는지 확인하십시오." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, 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}으로 업데이트하는 것이 좋습니다." +#: plugins/MonitorStage/MonitorMain.qml:113 +msgctxt "@info" +msgid "Please connect your printer to the network." +msgstr "프린터를 네트워크에 연결하십시오." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s stable firmware available" -msgstr "안정적인 신규 %s 펌웨어를 사용할 수 있습니다" +#: plugins/MonitorStage/MonitorMain.qml:148 +msgctxt "@label link to technical assistance" +msgid "View user manuals online" +msgstr "사용자 매뉴얼 온라인 보기" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "업데이트하는 방법" +#: plugins/MonitorStage/MonitorMain.qml:164 +msgctxt "@info" +msgid "In order to monitor your print from Cura, please connect the printer." +msgstr "Cura에서 프린트를 모니터링하려면 프린터를 연결하십시오." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "펌웨어 업데이트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "압축된 G-code 파일" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter는 텍스트 모드는 지원하지 않습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "G-code 파일" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:350 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "G 코드 파싱" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:506 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-코드 세부 정보" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 -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-코드가 정확하지 않을 수 있습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G 파일" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter는 텍스트가 아닌 모드는 지원하지 않습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "내보내기 전에 G-code를 준비하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG 이미지" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG 이미지" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG 이미지" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP 이미지" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF 이미지" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04 프로파일" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "기기 설정" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "귀하의 계정으로 재료와 소프트웨어 패키지를 동기화하시겠습니까?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Ultimaker 계정에서 변경 사항이 감지되었습니다" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 -msgctxt "@action:button" -msgid "Sync" -msgstr "동기화" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "동기화 중..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:12 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:79 -msgctxt "@button" -msgid "Decline" -msgstr "거절" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:13 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53 -msgctxt "@button" -msgid "Agree" -msgstr "동의" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "플러그인 사용 계약" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "계정에서 거절 및 제거" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "변경 사항이 적용되기 전에 {}을(를) 멈추고 다시 시작해야 합니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{}개의 플러그인을 다운로드하지 못했습니다" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:28 -msgctxt "@label" -msgid "Installed Plugins" -msgstr "설치된 플러그인" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:29 -msgctxt "@label" -msgid "Installed Materials" -msgstr "설치된 재료" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:33 -msgctxt "@label" -msgid "Bundled Plugins" -msgstr "번들 플러그인" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:34 -msgctxt "@label" -msgid "Bundled Materials" -msgstr "번들 재료" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:43 -msgctxt "@label:property" -msgid "Unknown Package" -msgstr "알 수 없는 패키지" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:66 -msgctxt "@label:property" -msgid "Unknown Author" -msgstr "알 수 없는 원작자" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:117 -msgctxt "@info:error" -msgid "Could not interpret the server's response." -msgstr "서버의 응답을 해석할 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:148 -msgctxt "@info:error" -msgid "Could not reach Marketplace." -msgstr "마켓플레이스에 도달할 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 +#: plugins/MonitorStage/__init__.py:14 msgctxt "@item:inmenu" msgid "Monitor" msgstr "모니터" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: plugins/MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "모니터 단계" + +#: plugins/MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Cura에서 모니터 단계 제공." + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 +msgctxt "@label" +msgid "Mesh Type" +msgstr "메쉬 유형" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 +msgctxt "@label" +msgid "Normal model" +msgstr "일반 모델" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 +msgctxt "@label" +msgid "Print as support" +msgstr "서포터로 프린팅" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "오버랩 설정 수정" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "오버랩 지원 안함" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 +msgctxt "@item:inlistbox" +msgid "Infill mesh only" +msgstr "매쉬 내부채움 전용" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161 +msgctxt "@item:inlistbox" +msgid "Cutting mesh" +msgstr "커팅 메쉬" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386 +msgctxt "@action:button" +msgid "Select settings" +msgstr "설정 선택" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "이 모델에 맞게 사용자 정의 설정을 선택하십시오" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "필터..." + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "모두 보이기" + +#: plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" msgid "Per Model Settings" msgstr "모델 별 설정" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +#: plugins/PerObjectSettingsTool/__init__.py:15 msgctxt "@info:tooltip" msgid "Configure Per Model Settings" msgstr "모델 별 설정 구성" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "모델 별 설정 도구" + +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "모델 별 설정을 제공합니다." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" msgstr "후 처리" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "G 코드 수정" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "후처리 플러그인" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 +msgctxt "@label" +msgid "Post Processing Scripts" +msgstr "후처리 스크립트" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "스크립트 추가" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 +msgctxt "@label" +msgid "Settings" +msgstr "설정" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "활성 사후 처리 스크립트를 변경하십시오." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "다음 스크립트들이 활성화됩니다:" + +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "후처리를 위해 사용자가 만든 스크립트를 허용하는 확장 프로그램" + +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "후처리" + +#: plugins/PrepareStage/PrepareMenu.qml:74 +msgctxt "@button" +msgid "Add printer" +msgstr "프린터 추가" + +#: plugins/PrepareStage/PrepareMenu.qml:90 +msgctxt "@button" +msgid "Manage printers" +msgstr "프린터 관리" + +#: plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "준비" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 +#: plugins/PrepareStage/plugin.json +msgctxt "name" +msgid "Prepare Stage" +msgstr "준비 단계" + +#: plugins/PrepareStage/plugin.json +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Cura에서 준비 단계 제공." + +#: plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" msgid "Preview" msgstr "미리 보기" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +#: plugins/PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "미리 보기 단계" + +#: plugins/PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Cura에서 미리 보기 단계를 제공합니다." + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "이동식 드라이브에 저장" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "이동식 드라이브 {0}에 저장" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "쓸 수있는 파일 형식이 없습니다!" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 #, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "이동식 드라이브 {0}에 저장" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 msgctxt "@info:title" msgid "Saving" msgstr "저장" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "{0}: {1} 에 저장할 수 없습니다" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 #, 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} 장치에 쓸 때 파일 이름을 찾을 수 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 #, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "이동식 드라이브 {0}: {1} 에 저장할 수 없습니다 :" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 #, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "이동식 드라이브 {0}에 {1}로 저장되었습니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 msgctxt "@info:title" msgid "File Saved" msgstr "파일이 저장됨" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 msgctxt "@action:button" msgid "Eject" msgstr "꺼내기" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 #, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "이동식 장치 {0} 꺼내기" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 #, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "{0}가 배출됐습니다. 이제 드라이브를 안전하게 제거 할 수 있습니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 msgctxt "@info:title" msgid "Safely Remove Hardware" msgstr "하드웨어 안전하게 제거" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 #, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "{0}를 배출하지 못했습니다. 다른 프로그램이 드라이브를 사용 중일 수 있습니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +#: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 msgctxt "@item:intext" msgid "Removable Drive" msgstr "이동식 드라이브" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "와이어 프린팅이 활성화되어 있을 때 Cura는 레이어를 정확하게 표시하지 않습니다." +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "이동식 드라이브를 제공합니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "시뮬레이션 뷰" +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "이동식 드라이브 출력 장치 플러그인" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 +#: plugins/SentryLogger/plugin.json +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "충돌을 보고하는 리포터가 사용할 수 있도록 특정 이벤트를 기록합니다" + +#: plugins/SentryLogger/plugin.json +msgctxt "name" +msgid "Sentry Logger" +msgstr "보초 로거" + +#: plugins/SimulationView/SimulationView.py:129 msgctxt "@info:status" msgid "Nothing is shown because you need to slice first." msgstr "먼저 슬라이스해야 하기 때문에 아무것도 표시되지 않습니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 +#: plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "No layers to show" msgstr "표시할 레이어 없음" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 +#: plugins/SimulationView/SimulationView.py:132 +#: plugins/SolidView/SolidView.py:74 msgctxt "@info:option_text" msgid "Do not show this message again" msgstr "다시 메시지 표시 안 함" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:18 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:47 +msgctxt "@label" +msgid "Color scheme" +msgstr "색 구성표" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "재료 색상" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "라인 유형" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:112 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "속도" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:116 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "레이어 두께" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:120 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "선 두께" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:124 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "유량" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:164 +msgctxt "@label" +msgid "Compatibility Mode" +msgstr "호환 모드" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:231 +msgctxt "@label" +msgid "Travels" +msgstr "이동" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:237 +msgctxt "@label" +msgid "Helpers" +msgstr "도움말" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:243 +msgctxt "@label" +msgid "Shell" +msgstr "외곽" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:249 +msgctxt "@label" +msgid "Infill" +msgstr "내부채움" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:257 +msgctxt "@label" +msgid "Starts" +msgstr "시작" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:304 +msgctxt "@label" +msgid "Only Show Top Layers" +msgstr "상단 레이어 만 표시" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:313 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "상단에 5 개의 세부 레이어 표시" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:326 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "위 / 아래" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:330 +msgctxt "@label" +msgid "Inner Wall" +msgstr "내벽" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:397 +msgctxt "@label" +msgid "min" +msgstr "최소" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:462 +msgctxt "@label" +msgid "max" +msgstr "최대" + +#: plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "레이어 뷰" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +#: plugins/SimulationView/plugin.json +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "슬라이스된 레이어 데이터의 미리보기를 제공합니다." + +#: plugins/SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "시뮬레이션 뷰" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "익명 데이터 수집에 대한 추가 정보" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 +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는 인쇄 품질과 사용자 경험을 개선하기 위해 익명 데이터를 수집합니다. 공유되는 모든 데이터의 예는 다음과 같습니다:" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "익명 데이터 전송을 원하지 않습니다" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "익명 데이터 전송 허용" + +#: plugins/SliceInfoPlugin/SliceInfo.py:95 msgctxt "@text" msgid "Unable to read example data file." msgstr "예시 데이터 파일을 읽을 수 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "슬라이스 정보" + +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "익명의 슬라이스 정보를 제출하십시오. 환경 설정을 통해 비활성화 할 수 있습니다." + +#: plugins/SolidView/SolidView.py:71 msgctxt "@info:status" msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." msgstr "강조 표시된 영역은 누락되거나 관련 없는 표면을 표시합니다. 모델을 수정하고 Cura에서 다시 엽니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +#: plugins/SolidView/SolidView.py:73 msgctxt "@info:title" msgid "Model Errors" msgstr "모델 에러" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +#: plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" msgstr "솔리드 뷰" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +#: plugins/SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "일반 솔리드 메쉬보기를 제공합니다." + +#: plugins/SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "솔리드 뷰" + +#: plugins/SupportEraser/__init__.py:12 msgctxt "@label" msgid "Support Blocker" msgstr "서포트 차단기" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 +#: plugins/SupportEraser/__init__.py:13 msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "서포트가 프린팅되지 않는 볼륨을 만듭니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 +#: plugins/SupportEraser/plugin.json +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "특정 장소에서 서포트 프린팅을 막는 지우개 메쉬(eraser mesh)를 만듭니다" + +#: plugins/SupportEraser/plugin.json +msgctxt "name" +msgid "Support Eraser" +msgstr "" + +#: plugins/TrimeshReader/__init__.py:15 msgctxt "@item:inlistbox 'Open' is part of the name of this file format." msgid "Open Compressed Triangle Mesh" msgstr "Open Compressed Triangle Mesh" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: plugins/TrimeshReader/__init__.py:19 msgctxt "@item:inlistbox" msgid "COLLADA Digital Asset Exchange" msgstr "COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: plugins/TrimeshReader/__init__.py:23 msgctxt "@item:inlistbox" msgid "glTF Binary" msgstr "glTF Binary" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: plugins/TrimeshReader/__init__.py:27 msgctxt "@item:inlistbox" msgid "glTF Embedded JSON" msgstr "glTF Embedded JSON" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: plugins/TrimeshReader/__init__.py:36 msgctxt "@item:inlistbox" msgid "Stanford Triangle Format" msgstr "Stanford Triangle Format" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: plugins/TrimeshReader/__init__.py:40 msgctxt "@item:inlistbox" msgid "Compressed COLLADA Digital Asset Exchange" msgstr "Compressed COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker 포맷 패키지" +#: plugins/TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "모델 파일 읽기 기능을 제공합니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 +#: plugins/TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh 리더" + +#: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "UltiMaker Format Package" +msgstr "UltiMaker 포맷 패키지" + +#: plugins/UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Ultimaker 포맷 패키지 읽기를 지원합니다." + +#: plugins/UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP 리더기" + +#: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80 +#: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115 +#: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180 msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "UFP 파일에 쓸 수 없음:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "레벨 빌드 플레이트" +#: plugins/UFPWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Ultimaker 포맷 패키지 작성을 지원합니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "업그레이드 선택" +#: plugins/UFPWriter/plugin.json +msgctxt "name" +msgid "UFP Writer" +msgstr "UFP 작성자" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "UltiMaker 네트워크 연결 프린터에 대한 네트워크 연결을 관리합니다." + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "UltiMaker 네트워크 연결" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "네트워크 프린터에 연결" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "아래 목록에서 프린터를 선택하십시오:" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +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-코드 파일을 프린터로 전송할 수 있습니다." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 +msgctxt "@action:button" +msgid "Edit" +msgstr "편집" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 +#: resources/qml/Preferences/MachinesPage.qml:153 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:186 +#: resources/qml/Preferences/ProfilesPage.qml:321 +msgctxt "@action:button" +msgid "Remove" +msgstr "제거" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 +msgctxt "@action:button" +msgid "Refresh" +msgstr "새로고침" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "프린터가 목록에 없으면 네트워크 프린팅 문제 해결 가이드를 읽어보십시오" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 +msgctxt "@label" +msgid "Type" +msgstr "유형" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 +msgctxt "@label" +msgid "Firmware version" +msgstr "펌웨어 버전" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 +msgctxt "@label" +msgid "Address" +msgstr "주소" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "이 프린터는 프린터 그룹을 호스트하도록 설정되어 있지 않습니다." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "이 프린터는 %1개 프린터 그룹의 호스트입니다." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "이 주소의 프린터가 아직 응답하지 않았습니다." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" +msgid "Connect" +msgstr "연결" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "잘못된 IP 주소" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "유효한 IP 주소를 입력하십시오." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "프린터 주소" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "네트워크에 있는 프린터의 IP 주소를 입력하십시오." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "구성 변경" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 +msgctxt "@action:button" +msgid "Override" +msgstr "무시하기" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "할당된 프린터 %1의 구성을 다음과 같이 변경해야 합니다:" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "프린터 %1이(가) 할당되었으나 작업에 알 수 없는 재료 구성이 포함되어 있습니다." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "재료 %1을(를) %2에서 %3(으)로 변경합니다." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "%3을(를) 재료 %1(으)로 로드합니다(이 작업은 무효화할 수 없음)." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "PrintCore %1을(를) %2에서 %3(으)로 변경합니다." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "무시하기는 기존 프린터 구성과 함께 지정된 설정을 사용하게 됩니다. 이는 인쇄 실패로 이어질 수 있습니다." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@label" +msgid "Move to top" +msgstr "맨 위로 이동" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155 +msgctxt "@label" +msgid "Delete" +msgstr "삭제" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186 +#: resources/qml/MonitorButton.qml:284 +msgctxt "@label" +msgid "Resume" +msgstr "재개" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188 +msgctxt "@label" +msgid "Pausing..." +msgstr "일시 정지 중..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190 +msgctxt "@label" +msgid "Resuming..." +msgstr "다시 시작..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192 +#: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288 +msgctxt "@label" +msgid "Pause" +msgstr "중지" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Abort" +msgstr "중단" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Aborting..." +msgstr "중지 중..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218 +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(을)를 대기열의 맨 위로 이동하시겠습니까?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "인쇄 작업을 맨 위로 이동" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "%1(을)를 삭제하시겠습니까?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "인쇄 작업 삭제" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "%1(을)를 정말로 중지하시겠습니까?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237 +#: resources/qml/MonitorButton.qml:326 +msgctxt "@window:title" +msgid "Abort print" +msgstr "프린팅 중단" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "사용할 수 없는 프린터" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 +msgctxt "@label" +msgid "First available" +msgstr "첫 번째로 사용 가능" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "대기열을 원격으로 관리하려면 프린터 펌웨어를 업데이트하십시오." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +msgctxt "@label:status" +msgid "Aborted" +msgstr "중단됨" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 +msgctxt "@label:status" +msgid "Finished" +msgstr "끝마친" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "준비 중..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "중지 중..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +msgctxt "@label:status" +msgid "Failed" +msgstr "실패" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "일시 정지 중..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Paused" +msgstr "일시 중지됨" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "다시 시작..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Action required" +msgstr "조치가 필요함" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "%2에서 %1 완료" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "프린터 관리" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280 +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 "클라우드 프린터용 Webcam 피드는 UltiMaker Cura에서 볼 수 없습니다. '프린터 관리'를 클릭하여 Ultimaker Digital Factory를 방문하고 이 웹캠을 확인하십시오." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340 +msgctxt "@label:status" +msgid "Loading..." +msgstr "로딩 중..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "사용불가" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "연결할 수 없음" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Idle" +msgstr "대기 상태" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361 +msgctxt "@label:status" +msgid "Printing" +msgstr "프린팅" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402 +msgctxt "@label" +msgid "Untitled" +msgstr "제목 없음" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417 +msgctxt "@label" +msgid "Anonymous" +msgstr "익명" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "구성 변경 필요" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452 +msgctxt "@action:button" +msgid "Details" +msgstr "세부 사항" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 +msgctxt "@label" +msgid "Queued" +msgstr "대기 중" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "브라우저에서 관리" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "대기열에 프린팅 작업이 없습니다. 작업을 추가하려면 슬라이스하여 전송하십시오." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "Print jobs" +msgstr "인쇄 작업" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108 +msgctxt "@label" +msgid "Total print time" +msgstr "총 인쇄 시간" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117 +msgctxt "@label" +msgid "Waiting for" +msgstr "대기" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117 +msgctxt "@info" +msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" +msgstr "Ultimaker Digital Factory를 사용하여 어디서든 프린터를 모니터링하십시오" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129 +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Digital Factory에서 프린터 보기" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 +msgctxt "@title:window" +msgid "Print over network" +msgstr "네트워크를 통해 프린팅" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 +msgctxt "@action:button" +msgid "Print" +msgstr "프린트" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 +msgctxt "@label" +msgid "Printer selection" +msgstr "프린터 선택" + +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162 msgctxt "@action:button" msgid "Print via cloud" msgstr "Cloud를 통해 프린팅" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Cloud를 통해 프린팅" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Cloud를 통해 연결됨" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276 msgctxt "@action:button" msgid "Monitor print" msgstr "프린트 모니터링" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278 msgctxt "@action:tooltip" msgid "Track the print in Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory에서 프린트 추적" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "프린트 작업 업로드 시 알 수 없는 오류 코드: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "Ultimaker 계정에서 새 프린터가 감지되었습니다" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:242 -#, 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}) 추가" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:261 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "... 및 기타 {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:266 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "Digital Factory에서 프린터 추가:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:334 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "A cloud connection is not available for some printers" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:343 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "다음 프린터는 Digital Factory에 연결되어 있지 않습니다:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:348 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:440 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:352 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "연결을 설정하려면 {website_link}에 방문하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:356 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "프린터 구성 유지" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "프린터 제거" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:442 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425 #, 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}이(가) 제거됩니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:443 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426 #, 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}을(를) 방문하십시오." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:444 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427 #, 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}을(를) 제거하시겠습니까?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474 msgctxt "@title:window" msgid "Remove printers?" msgstr "프린터를 제거하시겠습니까?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477 #, python-brace-format msgctxt "@label" msgid "" @@ -1661,7 +3476,7 @@ msgstr[0] "" "Cura에서 {0} 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. \n" "정말로 계속하시겠습니까?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be undone.\n" @@ -1670,7 +3485,7 @@ msgstr "" "Cura에서 모든 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. \n" "정말로 계속하시겠습니까?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, python-brace-format msgctxt "@info:status" msgid "" @@ -1680,2487 +3495,1371 @@ msgstr "" "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" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 msgctxt "@info:title" msgid "Are you ready for cloud printing?" msgstr "클라우드 프린팅이 준비되었습니까?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 msgctxt "@action" msgid "Get started" msgstr "시작하기" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24 msgctxt "@action" msgid "Learn more" msgstr "자세히 알아보기" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 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를 실행하지 않는 프린터에 연결하려 합니다. 프린터를 최신 펌웨어로 업데이트해 주십시오." +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를 실행하지 않는 프린터에 연결하려 합니다. 프린터를 최신 펌웨어로 업데이트해 주십시오." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 msgctxt "@info:title" msgid "Update your printer" msgstr "프린터 업데이트" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 #, 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} 그룹의 호스트 프린터에 설치되지 않은 재료 프로파일을 감지했습니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 msgctxt "@info:title" msgid "Sending materials to printer" msgstr "재료를 프린터로 전송 중" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "UltiMaker 계정에서 새 프린터가 감지되었습니다" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29 +#, 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}) 추가" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "... 및 기타 {0}" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "Digital Factory에서 프린터 추가:" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 #, 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}이(가) 그룹의 호스트가 아닙니다. 웹 페이지에서 그룹 호스트로 설정할 수 있습니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 msgctxt "@info:title" msgid "Not a group host" msgstr "그룹 호스트 아님" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 msgctxt "@action" msgid "Configure group" msgstr "그룹 설정" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18 +msgctxt "@info:status" +msgid "You will receive a confirmation via email when the print job is approved" +msgstr "프린트 작업이 승인되면 확인 이메일이 발송됩니다" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19 +msgctxt "@info:title" +msgid "The print job was successfully submitted" +msgstr "프린트 작업이 성공적으로 제출되었습니다" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22 +msgctxt "@action" +msgid "Manage print jobs" +msgstr "프린트 작업 관리" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 msgctxt "@info:status" msgid "Please wait until the current job has been sent." msgstr "현재 작업이 전송될 때까지 기다려주십시오." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 msgctxt "@info:title" msgid "Print error" msgstr "프린트 오류" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "데이터를 프린터로 업로드할 수 없음." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 msgctxt "@info:title" msgid "Network error" msgstr "네트워크 오류" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 msgctxt "@info:status" msgid "Sending Print Job" msgstr "인쇄 작업 전송" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 msgctxt "@info:status" msgid "Uploading print job to printer." msgstr "프린트 작업을 프린터로 업로드하고 있습니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 msgctxt "@info:status" msgid "Print job queue is full. The printer can't accept a new job." msgstr "프린트 작업 대기열이 가득 찼습니다. 프린터가 새 작업을 수락할 수 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 msgctxt "@info:title" msgid "Queue Full" msgstr "대기열 가득 참" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "출력 작업이 프린터에 성공적으로 보내졌습니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 msgctxt "@info:title" msgid "Data Sent" msgstr "데이터 전송 됨" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "다음 프린터는 Digital Factory에 연결되어 있지 않습니다:" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "연결을 설정하려면 {website_link}에 방문하십시오." + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "A cloud connection is not available for some printers" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "프린터 구성 유지" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "프린터 제거" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "네트워크를 통해 프린팅" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "네트워크를 통해 프린팅" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64 msgctxt "@info:status" msgid "Connected over the network" msgstr "네트워크를 통해 연결됨" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 msgctxt "@action" msgid "Connect via Network" msgstr "네트워크를 통해 연결" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +#: plugins/UM3NetworkPrinting/src/Utils.py:27 msgctxt "@info:status" msgid "tomorrow" msgstr "내일" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +#: plugins/UM3NetworkPrinting/src/Utils.py:30 msgctxt "@info:status" msgid "today" msgstr "오늘" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:42 msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB 프린팅" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:43 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print via USB" msgstr "USB를 통해 프린팅" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:44 msgctxt "@info:tooltip" msgid "Print via USB" msgstr "USB를 통해 프린팅" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:80 msgctxt "@info:status" msgid "Connected via USB" msgstr "USB를 통해 연결" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:110 msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" msgstr "USB 인쇄가 진행 중입니다. Cura를 닫으면 인쇄도 중단됩니다. 계속하시겠습니까?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:135 msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "프린트가 아직 진행 중입니다. Cura는 이전 프린트가 완료될 때까지는 USB를 통해 다른 프린트를 시작할 수 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:136 msgctxt "@message" msgid "Print in Progress" msgstr "프린트 진행 중" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D 파일" +#: plugins/USBPrinting/plugin.json +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "G-코드를 수신하고 프린터로 보냅니다. 플러그인은 또한 펌웨어를 업데이트 할 수 있습니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "엑스레이 뷰" +#: plugins/USBPrinting/plugin.json +msgctxt "name" +msgid "USB printing" +msgstr "USB 프린팅" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 -msgctxt "@title:window" -msgid "Open Project" -msgstr "프로젝트 열기" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "기존 업데이트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "새로 만들기" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:59 -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "요약 - Cura 프로젝트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108 -msgctxt "@info:tooltip" -msgid "How should the conflict in the machine be resolved?" -msgstr "기기의 충돌을 어떻게 해결해야합니까?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:95 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "프린터 설정" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:104 -msgctxt "@action:label" -msgid "Type" -msgstr "유형" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:192 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -msgctxt "@action:label" -msgid "Printer Group" -msgstr "프린터 그룹" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:217 -msgctxt "@info:tooltip" -msgid "How should the conflict in the profile be resolved?" -msgstr "프로파일의 충돌을 어떻게 해결해야합니까?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:220 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "프로파일 설정" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:250 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:375 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:244 -msgctxt "@action:label" -msgid "Name" -msgstr "이름" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:268 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:261 -msgctxt "@action:label" -msgid "Intent" -msgstr "Intent" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:286 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:228 -msgctxt "@action:label" -msgid "Not in profile" -msgstr "프로파일에 없음" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:292 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:233 -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "%1 무시" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 -msgctxt "@action:label" -msgid "Derivative from" -msgstr "Derivative from" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:311 -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "%1, %2 무시" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:333 -msgctxt "@info:tooltip" -msgid "How should the conflict in the material be resolved?" -msgstr "재료의 충돌은 어떻게 해결되어야합니까?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:360 -msgctxt "@action:label" -msgid "Material settings" -msgstr "재료 설정" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:396 -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "표시 설정" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 -msgctxt "@action:label" -msgid "Mode" -msgstr "종류" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 -msgctxt "@action:label" -msgid "Visible settings:" -msgstr "표시 설정 :" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "1 out of %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:447 -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "프로젝트를 로드하면 빌드 플레이트의 모든 모델이 지워집니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 -msgctxt "@action:button" -msgid "Open" -msgstr "열기" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 -msgctxt "@action:button" -msgid "Open project anyway" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 -msgctxt "@action:button" -msgid "Install missing material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "무엇을 더 하시겠습니까?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "지금 백업" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "자동 백업" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Cura가 시작되는 날마다 자동으로 백업을 생성하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 -msgctxt "@button" -msgid "Restore" -msgstr "복원" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "백업 삭제" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "이 백업을 삭제하시겠습니까? 이 작업을 완료할 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "백업 복원" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 -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를 닫으시겠습니까?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura 버전" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "기기" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "재료" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "프로파일" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "플러그인" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura 백업" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "내 백업" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "현재 백업이 없습니다. ‘지금 백업’ 버튼을 사용하여 생성하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "미리 보기 단계 중에는 보이는 백업 5개로 제한됩니다. 기존 백업을 보려면 백업을 제거하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Cura 설정을 백업, 동기화하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:212 -msgctxt "@button" -msgid "Sign in" -msgstr "로그인" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 -msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 -msgctxt "@option" -msgid "Save Cura project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "펌웨어 업데이트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 -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 프린터에서 직접 실행되는 소프트웨어입니다. 이 펌웨어는 스텝 모터를 제어하고 온도를 조절하며 프린터를 작동시킵니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 -msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "새 프린터와 함께 제공되는 펌웨어는 작동하지만 새로운 버전은 더 많은 기능과 향상된 기능을 제공하는 경향이 있습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "펌웨어 자동 업그레이드" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "사용자 정의 펌웨어 업로드" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "프린터와 연결되지 않아 펌웨어를 업데이트할 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "프린터와 연결이 펌웨어 업그레이드를 지원하지 않아 펌웨어를 업데이트할 수 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "사용자 정의 펌웨어 선택" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "펌웨어 업데이트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 -msgctxt "@label" -msgid "Updating firmware." -msgstr "펌웨어 업데이트 중." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "펌웨어 업데이트가 완료되었습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "알 수 없는 오류로 인해 펌웨어 업데이트에 실패했습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "통신 오류로 인해 펌웨어 업데이트에 실패했습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "입/출력 오류로 인해 펌웨어 업데이트에 실패했습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "펌웨어 누락으로 인해 펌웨어 업데이트에 실패했습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:14 -msgctxt "@title:window" -msgid "Convert Image" -msgstr "이미지 변환" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 -msgctxt "@action:label" -msgid "Height (mm)" -msgstr "높이 (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "\"Base\"에서 각 픽셀까지의 최대 거리." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 -msgctxt "@action:label" -msgid "Base (mm)" -msgstr "바닥 (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 -msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "밀리미터 단위의 빌드 플레이트에서 기저부 높이." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 -msgctxt "@action:label" -msgid "Width (mm)" -msgstr "너비 (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 -msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate" -msgstr "빌드 플레이트의 폭 (밀리미터)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 -msgctxt "@action:label" -msgid "Depth (mm)" -msgstr "깊이 (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 -msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "빌드 플레이트의 깊이 (밀리미터)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 -msgctxt "@item:inlistbox" -msgid "Darker is higher" -msgstr "어두울수록 높음" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -msgctxt "@item:inlistbox" -msgid "Lighter is higher" -msgstr "밝을수록 높음" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 -msgctxt "@info:tooltip" -msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." -msgstr "리쏘페인(투각)의 경우 들어오는 더 많은 빛을 차단하기 위해서는 다크 픽셀이 더 두꺼운 위치에 해당해야 합니다. 높이 지도의 경우 더 밝은 픽셀이 더 높은 지역을 나타냅니다. 따라서 생성된 3D 모델에서 더 밝은 픽셀이 더 두꺼운 위치에 해당해야 합니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:205 -msgctxt "@action:label" -msgid "Color Model" -msgstr "색상 모델" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:224 -msgctxt "@item:inlistbox" -msgid "Linear" -msgstr "직선 모양" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 -msgctxt "@item:inlistbox" -msgid "Translucency" -msgstr "반투명성" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 -msgctxt "@info:tooltip" -msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." -msgstr "리쏘페인의 경우 반투명성을 위한 간단한 로그 모델을 사용할 수 있습니다. 높이 지도의 경우, 픽셀 값은 높이에 선형적으로 부합합니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 -msgctxt "@action:label" -msgid "1mm Transmittance (%)" -msgstr "1mm의 투과율(%)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 -msgctxt "@info:tooltip" -msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." -msgstr "두께가 1mm인 출력물을 관통하는 빛의 비율 이 값을 낮추면 어두운 부분의 대조가 증가하고 이미지의 밝은 부분의 대조가 감소합니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 -msgctxt "@action:label" -msgid "Smoothing" -msgstr "스무딩(smoothing)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:298 -msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "이미지에 적용할 스무딩(smoothing)의 정도." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:143 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:80 -msgctxt "@action:button" -msgid "OK" -msgstr "확인" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "프린터" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "노즐 설정" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 -msgctxt "@label" -msgid "Nozzle size" -msgstr "노즐 크기" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "호환되는 재료의 직경" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "노즐 오프셋 X" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "노즐 오프셋 Y" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "냉각 팬 번호" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "익스트루더 시작 Gcode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "익스트루더 종료 Gcode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "프린터 설정" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (너비)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (깊이)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (높이)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 -msgctxt "@label" -msgid "Build plate shape" -msgstr "빌드 플레이트 모양" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 -msgctxt "@label" -msgid "Origin at center" -msgstr "중앙이 원점" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 -msgctxt "@label" -msgid "Heated bed" -msgstr "히트 베드" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 -msgctxt "@label" -msgid "Heated build volume" -msgstr "히팅 빌드 사이즈" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 -msgctxt "@label" -msgid "G-code flavor" -msgstr "Gcode 유형" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "프린트헤드 설정" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 -msgctxt "@label" -msgid "X min" -msgstr "X 최소값" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 -msgctxt "@label" -msgid "Y min" -msgstr "Y 최소값" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 -msgctxt "@label" -msgid "X max" -msgstr "X 최대값" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 -msgctxt "@label" -msgid "Y max" -msgstr "Y 최대값" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 -msgctxt "@label" -msgid "Gantry Height" -msgstr "갠트리 높이" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "익스트루더의 수" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "익스트루더 오프셋을 GCode에 적용" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "시작 GCode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400 -msgctxt "@title:label" -msgid "End G-code" -msgstr "End GCode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 -msgctxt "@title" -msgid "Changes from your account" -msgstr "계정의 변경 사항" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -msgctxt "@button" -msgid "Dismiss" -msgstr "취소" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:118 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:175 -msgctxt "@button" -msgid "Next" -msgstr "다음 것" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "다음 패키지가 추가됩니다:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "호환되지 않는 Cura 버전이기 때문에 다음 패키지를 설치할 수 없습니다:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 -msgctxt "@title" -msgid "Install missing Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 -msgctxt "@button" -msgid "Plugin license agreement" -msgstr "플러그인 라이센스 계약" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47 -msgctxt "@text" -msgid "Please read and agree with the plugin licence." -msgstr "플러그인 라이센스를 읽고 동의하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 -msgctxt "@button" -msgid "Accept" -msgstr "동의" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 -msgctxt "@header" -msgid "Manage packages" -msgstr "패키지 관리" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15 -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 플러그인 및 재료 프로파일을 관리하십시오. 플러그인을 최신 상태로 유지하고 설정을 정기적으로 백업하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 -msgctxt "@info:tooltip" -msgid "Manage packages" -msgstr "패키지 관리" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 -msgctxt "@title" -msgid "Loading..." -msgstr "로딩 중..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 -msgctxt "@button" -msgid "Plugins" -msgstr "플러그인" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 -msgctxt "@button" -msgid "Materials" -msgstr "재료" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 -msgctxt "@info" -msgid "Search in the browser" -msgstr "브라우저에서 검색" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:271 -msgctxt "@button" -msgid "In order to use the package you will need to restart Cura" -msgstr "패키지를 사용하려면 Cura를 재시작해야 합니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:279 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "%1 종료" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:8 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MissingPackages.qml:8 -msgctxt "@header" -msgid "Install Materials" -msgstr "재료 설치" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 -msgctxt "@text" -msgid "Select and install material profiles optimised for your Ultimaker 3D printers." -msgstr "Ultimaker 3D 프린터에 최적화된 재료 프로파일을 선택하고 설치하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "패키지를 설치하려면 라이선스를 수락해야 합니다" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:101 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:207 -msgctxt "@button:label" -msgid "Learn More" -msgstr "자세히 알아보기" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:172 -msgctxt "@label Is followed by the name of an author" -msgid "By" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Enable" -msgstr "실행됨" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Disable" -msgstr "해제됨" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 -msgctxt "@button" -msgid "Downgrading..." -msgstr "다운그레이드 중..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 -msgctxt "@button" -msgid "Downgrade" -msgstr "다운그레이드" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 -msgctxt "@button" -msgid "Installing..." -msgstr "설치 중..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 -msgctxt "@button" -msgid "Install" -msgstr "설치" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 -msgctxt "@button" -msgid "Uninstall" -msgstr "설치 제거" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Updating..." -msgstr "업데이트 중" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Update" -msgstr "업데이트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 -msgctxt "@header" -msgid "Package details" -msgstr "패키지 세부 사항" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 -msgctxt "@button:tooltip" -msgid "Back" -msgstr "뒤로" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 -msgctxt "@header" -msgid "Description" -msgstr "설명" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 -msgctxt "@header" -msgid "Compatible printers" -msgstr "호환 가능한 프린터" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:134 -msgctxt "@info" -msgid "No compatibility information" -msgstr "호환성 정보 없음" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:152 -msgctxt "@header" -msgid "Compatible support materials" -msgstr "호환 서포트 재료" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176 -msgctxt "@info No materials" -msgid "None" -msgstr "없음" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:193 -msgctxt "@header" -msgid "Compatible with Material Station" -msgstr "Material Station과 호환 가능" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "Yes" -msgstr "예" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "No" -msgstr "아니요" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:219 -msgctxt "@header" -msgid "Optimized for Air Manager" -msgstr "Air Manager에 최적화" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Visit plug-in website" -msgstr "플러그인 웹사이트 방문" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Website" -msgstr "웹사이트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:252 -msgctxt "@button" -msgid "Buy spool" -msgstr "스풀 구입" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:261 -msgctxt "@button" -msgid "Safety datasheet" -msgstr "안전성 데이터시트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:270 -msgctxt "@button" -msgid "Technical datasheet" -msgstr "기술 데이터시트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Failed to load packages:" -msgstr "패키지를 로드하지 못했습니다:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Retry?" -msgstr "재시도하시겠습니까?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:167 -msgctxt "@button" -msgid "Loading" -msgstr "로딩중" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No more results to load" -msgstr "더 이상 로드할 결과 없음" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No results found with current filter" -msgstr "현재 필터로는 결과를 찾을 수 없음" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:226 -msgctxt "@button" -msgid "Load more" -msgstr "더 많이 로드" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8 -msgctxt "@header" -msgid "Install Plugins" -msgstr "플러그인 설치" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12 -msgctxt "@text" -msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users." -msgstr "당사의 놀라운 사용자 커뮤니티에서 기여한 플러그인으로 워크 플로를 간소화하고 Ultimaker Cura 경험을 맞춤화하세요." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 -msgctxt "@info" -msgid "Ultimaker Verified Plug-in" -msgstr "Ultimaker 검증된 플러그인" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 -msgctxt "@info" -msgid "Ultimaker Certified Material" -msgstr "Ultimaker 인증된 재료" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 -msgctxt "@info" -msgid "Ultimaker Verified Package" -msgstr "Ultimaker 검증된 패키지" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 -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 "" -"프린터에 연결이 있는지 확인하십시오.⏎- 프린터가 켜져 있는지 확인하십시오.\n" -"- 프린터가 네트워크에 연결되어 있는지 확인하십시오.⏎- 클라우드로 연결된 프린터를 탐색할 수 있도록 로그인되어 있는지 확인하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 -msgctxt "@info" -msgid "Please connect your printer to the network." -msgstr "프린터를 네트워크에 연결하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 -msgctxt "@label link to technical assistance" -msgid "View user manuals online" -msgstr "사용자 매뉴얼 온라인 보기" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:163 -msgctxt "@info" -msgid "In order to monitor your print from Cura, please connect the printer." -msgstr "Cura에서 프린트를 모니터링하려면 프린터를 연결하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 -msgctxt "@label" -msgid "Mesh Type" -msgstr "메쉬 유형" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 -msgctxt "@label" -msgid "Normal model" -msgstr "일반 모델" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 -msgctxt "@label" -msgid "Print as support" -msgstr "서포터로 프린팅" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "오버랩 설정 수정" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "오버랩 지원 안함" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "매쉬 내부채움 전용" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "커팅 메쉬" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385 -msgctxt "@action:button" -msgid "Select settings" -msgstr "설정 선택" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "이 모델에 맞게 사용자 정의 설정을 선택하십시오" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "필터..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "모두 보이기" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "후처리 플러그인" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "후처리 스크립트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" -msgid "Add a script" -msgstr "스크립트 추가" +msgid "Level build plate" +msgstr "레벨 빌드 플레이트" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 -msgctxt "@label" -msgid "Settings" -msgstr "설정" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:459 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "활성 사후 처리 스크립트를 변경하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:463 -msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "다음 스크립트들이 활성화됩니다:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:47 -msgctxt "@label" -msgid "Color scheme" -msgstr "색 구성표" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "재료 색상" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "라인 유형" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "속도" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "레이어 두께" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "선 두께" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "유량" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "호환 모드" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 -msgctxt "@label" -msgid "Travels" -msgstr "이동" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 -msgctxt "@label" -msgid "Helpers" -msgstr "도움말" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 -msgctxt "@label" -msgid "Shell" -msgstr "외곽" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:64 -msgctxt "@label" -msgid "Infill" -msgstr "내부채움" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Starts" -msgstr "시작" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "상단 레이어 만 표시" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "상단에 5 개의 세부 레이어 표시" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "위 / 아래" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 -msgctxt "@label" -msgid "Inner Wall" -msgstr "내벽" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 -msgctxt "@label" -msgid "min" -msgstr "최소" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 -msgctxt "@label" -msgid "max" -msgstr "최대" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "익명 데이터 수집에 대한 추가 정보" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 -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는 인쇄 품질과 사용자 경험을 개선하기 위해 익명 데이터를 수집합니다. 공유되는 모든 데이터의 예는 다음과 같습니다:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "익명 데이터 전송을 원하지 않습니다" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "익명 데이터 전송 허용" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 msgctxt "@title" msgid "Build Plate Leveling" msgstr "빌드 플레이트 레벨링" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 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 "프린팅이 잘 되도록 빌드 플레이트를 조정할 수 있습니다. '다음 위치로 이동'을 클릭하면 노즐이 조정할 수있는 다른 위치로 이동합니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 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 "모든 자리에; 노즐 아래에 종이 한 장을 넣고 프린팅 빌드 플레이트 높이를 조정하십시오. 빌드플레이드의 높이는 종이의 끝 부분이 노즐의 끝부분으로 살짝 닿을 때의 높이입니다." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 msgctxt "@action:button" msgid "Start Build Plate Leveling" msgstr "빌드플레이트 레벨링 시작하기" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 msgctxt "@action:button" msgid "Move to Next Position" msgstr "다음 위치로 이동" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "이 Ultimaker Original에 업그레이드 할 항목을 선택하십시오" +#: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "업그레이드 선택" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this UltiMaker Original" +msgstr "이 UltiMaker Original에 업그레이드 할 항목을 선택하십시오" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 msgctxt "@label" msgid "Heated Build Plate (official kit or self-built)" msgstr "히팅 빌드 플레이트 (공식 키트 또는 자체 조립식)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "네트워크 프린터에 연결" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -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-코드 파일을 프린터로 전송할 수 있습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "아래 목록에서 프린터를 선택하십시오:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 -msgctxt "@action:button" -msgid "Edit" -msgstr "편집" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:140 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:321 -msgctxt "@action:button" -msgid "Remove" -msgstr "제거" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 -msgctxt "@action:button" -msgid "Refresh" -msgstr "새로고침" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "프린터가 목록에 없으면 네트워크 프린팅 문제 해결 가이드를 읽어보십시오" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 -msgctxt "@label" -msgid "Type" -msgstr "유형" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 -msgctxt "@label" -msgid "Firmware version" -msgstr "펌웨어 버전" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 -msgctxt "@label" -msgid "Address" -msgstr "주소" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "이 프린터는 프린터 그룹을 호스트하도록 설정되어 있지 않습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "이 프린터는 %1개 프린터 그룹의 호스트입니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "이 주소의 프린터가 아직 응답하지 않았습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 -msgctxt "@action:button" -msgid "Connect" -msgstr "연결" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "잘못된 IP 주소" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "유효한 IP 주소를 입력하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "프린터 주소" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "네트워크에 있는 프린터의 IP 주소를 입력하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "구성 변경" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 -msgctxt "@action:button" -msgid "Override" -msgstr "무시하기" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "할당된 프린터 %1의 구성을 다음과 같이 변경해야 합니다:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "프린터 %1이(가) 할당되었으나 작업에 알 수 없는 재료 구성이 포함되어 있습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "재료 %1을(를) %2에서 %3(으)로 변경합니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "%3을(를) 재료 %1(으)로 로드합니다(이 작업은 무효화할 수 없음)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "PrintCore %1을(를) %2에서 %3(으)로 변경합니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "빌드 플레이트를 %1(으)로 변경합니다(이 작업은 무효화할 수 없음)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "무시하기는 기존 프린터 구성과 함께 지정된 설정을 사용하게 됩니다. 이는 인쇄 실패로 이어질 수 있습니다." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:178 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:175 -msgctxt "@label" -msgid "Glass" -msgstr "유리" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154 -msgctxt "@label" -msgid "Aluminum" -msgstr "알루미늄" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "맨 위로 이동" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "삭제" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:284 -msgctxt "@label" -msgid "Resume" -msgstr "재개" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "일시 정지 중..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "다시 시작..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:288 -msgctxt "@label" -msgid "Pause" -msgstr "중지" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "중지 중..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "중단" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:142 -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(을)를 대기열의 맨 위로 이동하시겠습니까?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "인쇄 작업을 맨 위로 이동" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:151 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "%1(을)를 삭제하시겠습니까?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "인쇄 작업 삭제" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:160 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "%1(을)를 정말로 중지하시겠습니까?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@window:title" -msgid "Abort print" -msgstr "프린팅 중단" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "프린터 관리" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:239 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "대기열을 원격으로 관리하려면 프린터 펌웨어를 업데이트하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:275 -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 "클라우드 프린터용 Webcam 피드는 Ultimaker Cura에서 볼 수 없습니다. '프린터 관리'를 클릭하여 Ultimaker Digital Factory를 방문하고 이 웹캠을 확인하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335 -msgctxt "@label:status" -msgid "Loading..." -msgstr "로딩 중..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "사용불가" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "연결할 수 없음" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347 -msgctxt "@label:status" -msgid "Idle" -msgstr "대기 상태" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "준비 중..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Printing" -msgstr "프린팅" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397 -msgctxt "@label" -msgid "Untitled" -msgstr "제목 없음" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:412 -msgctxt "@label" -msgid "Anonymous" -msgstr "익명" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:433 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "구성 변경 필요" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:447 -msgctxt "@action:button" -msgid "Details" -msgstr "세부 사항" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "사용할 수 없는 프린터" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 -msgctxt "@label" -msgid "First available" -msgstr "첫 번째로 사용 가능" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborted" -msgstr "중단됨" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 -msgctxt "@label:status" -msgid "Finished" -msgstr "끝마친" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "중지 중..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Failed" -msgstr "실패" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "일시 정지 중..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Paused" -msgstr "일시 중지됨" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "다시 시작..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Action required" -msgstr "조치가 필요함" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "%2에서 %1 완료" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 -msgctxt "@label" -msgid "Queued" -msgstr "대기 중" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "브라우저에서 관리" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:90 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "대기열에 프린팅 작업이 없습니다. 작업을 추가하려면 슬라이스하여 전송하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:98 -msgctxt "@label" -msgid "Print jobs" -msgstr "인쇄 작업" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107 -msgctxt "@label" -msgid "Total print time" -msgstr "총 인쇄 시간" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116 -msgctxt "@label" -msgid "Waiting for" -msgstr "대기" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 -msgctxt "@title:window" -msgid "Print over network" -msgstr "네트워크를 통해 프린팅" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 -msgctxt "@action:button" -msgid "Print" -msgstr "프린트" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 -msgctxt "@label" -msgid "Printer selection" -msgstr "프린터 선택" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Ultimaker 기계에 대한 기계 작동 제공(예 : 침대 수평 조정 마법사, 업그레이드 선택 등)" + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "UltiMaker 기기 동작" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Cura 2.1에서 Cura 2.2로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "2.1에서 2.2로 버전 업그레이드" + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Cura 2.2에서 Cura 2.4로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "2.2에서 2.4로 버전 업그레이드" + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Cura 2.5에서 Cura 2.6으로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "2.5에서 2.6으로 버전 업그레이드" + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Cura 2.6에서 Cura 2.7로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "2.6에서 2.7으로 버전 업그레이드" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Cura 2.7에서 Cura 3.0으로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "2.7에서 3.0으로 버전 업그레이드" + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Cura 3.0에서 Cura 3.1로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "3.0에서 3.1로 버전 업그레이드" + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Cura 3.2에서 Cura 3.3으로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "3.2에서 3.3으로 버전 업그레이드" + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Cura 3.3에서 Cura 3.4로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "버전 업그레이드 3.3에서 3.4" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Cura 3.4에서 Cura 3.5로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "3.4에서 3.5로 버전 업그레이드" + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Cura 3.5에서 Cura 4.0으로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "버전 업그레이드 3.5에서 4.0" + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Cura 4.0에서 Cura 4.1로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "버전 업그레이드 4.0에서 4.1" + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Cura 4.11에서 Cura 4.12로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "4.11에서 4.12로 버전 업그레이드" + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Cura 4.13에서 Cura 5.0으로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "4.13에서 5.0으로 버전 업그레이드" + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Cura 4.1에서 Cura 4.2로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "4.1에서 4.2로 버전 업그레이드" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Cura 4.2에서 Cura 4.3으로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "4.2에서 4.3로 버전 업그레이드" + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Cura 4.3에서 Cura 4.4로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "4.3에서 4.4로 버전 업그레이드" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Cura 4.4에서 Cura 4.5로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "4.4에서 4.5로 버전 업그레이드" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Cura 4.5에서 Cura 4.6으로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "4.5에서 4.6으로 버전 업그레이드" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Cura 4.6.0에서 Cura 4.6.2로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "4.6.0에서 4.6.2로 버전 업그레이드" + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Cura 4.6.2에서 Cura 4.7로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "4.6.2에서 4.7로 버전 업그레이드" + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Cura 4.7에서 Cura 4.8로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "4.7에서 4.8로 버전 업그레이드" + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Cura 4.8에서 Cura 4.9로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "4.8에서 4.9로 버전 업그레이드" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Cura 4.9에서 Cura 4.10으로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "4.9에서 4.10으로 버전 업그레이드" + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Cura 5.2에서 Cura 5.3으로 구성을 업그레이드합니다." + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "5.2에서 5.3으로 버전 업그레이드" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "" + +#: plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3D 파일" + +#: plugins/X3DReader/plugin.json +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "X3D 파일을 읽을 수 있도록 지원합니다." + +#: plugins/X3DReader/plugin.json +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D 리더" + +#: plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "엑스레이 뷰" + +#: plugins/XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "엑스레이 뷰를 제공합니다." + +#: plugins/XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "엑스레이 뷰" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "재료 프로파일" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "XML 기반 재료 프로파일을 읽고 쓸 수있는 기능을 제공합니다." + +#: resources/qml/Account/AccountWidget.qml:24 msgctxt "@action:button" msgid "Sign in" msgstr "로그인" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: resources/qml/Account/GeneralOperations.qml:19 +#: resources/qml/WelcomePages/CloudContent.qml:64 msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Ultimaker 플랫폼에 로그인" +msgid "Sign in to the UltiMaker platform" +msgstr "UltiMaker 플랫폼에 로그인" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 +#: resources/qml/Account/GeneralOperations.qml:39 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" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" msgstr "" "- 재료 설정 및 Marketplace 플러그인 추가\n" "- 재료 설정과 플러그인 백업 및 동기화\n" -"- Ultimaker 커뮤니티에서 48,000명 이상의 사용자와 아이디어를 공유하고 도움 받기" +"- UltiMaker 커뮤니티에서 48,000명 이상의 사용자와 아이디어를 공유하고 도움 받기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 +#: resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "Ultimaker 계정 무료 생성" +msgid "Create a free UltiMaker account" +msgstr "UltiMaker 계정 무료 생성" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 +#: resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "확인 중..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 +#: resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "계정 동기화됨" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 +#: resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "오류가 발생하였습니다..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 +#: resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "보류된 업데이트 설치" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 +#: resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "계정 업데이트 확인" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +#: resources/qml/Account/UserOperations.qml:78 msgctxt "@label The argument is a timestamp" msgid "Last update: %1" msgstr "마지막 업데이트: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +#: resources/qml/Account/UserOperations.qml:107 msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimaker 계정" +msgid "UltiMaker Account" +msgstr "UltiMaker 계정" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +#: resources/qml/Account/UserOperations.qml:126 msgctxt "@button" msgid "Sign Out" msgstr "로그아웃" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" msgid "No time estimation available" msgstr "시간 추산 이용 불가" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:77 msgctxt "@label" msgid "No cost estimation available" msgstr "비용 추산 이용 불가" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:127 msgctxt "@button" msgid "Preview" msgstr "미리 보기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" msgid "Time estimation" msgstr "시간 추산" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 +#: resources/qml/ActionPanel/PrintJobInformation.qml:107 msgctxt "@label" msgid "Material estimation" msgstr "재료 추산" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:156 +#: resources/qml/ActionPanel/PrintJobInformation.qml:156 msgctxt "@label m for meter" msgid "%1m" msgstr "%1m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:157 +#: resources/qml/ActionPanel/PrintJobInformation.qml:157 msgctxt "@label g for grams" msgid "%1g" msgstr "%1g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:54 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "슬라이싱..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:78 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:78 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "슬라이스 할 수 없습니다" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Processing" msgstr "처리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Slice" msgstr "슬라이스" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:115 msgctxt "@label" msgid "Start the slicing process" msgstr "슬라이싱 프로세스 시작" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:132 msgctxt "@button" msgid "Cancel" msgstr "취소" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 +#: resources/qml/Actions.qml:81 msgctxt "@action:inmenu" msgid "Show Online Troubleshooting" msgstr "온라인 문제 해결 표시" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 +#: resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "전채 화면 전환" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 +#: resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "전체 화면 종료" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 +#: resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "되돌리기(&U)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 +#: resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "다시하기(&R)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 +#: resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "종료(&Q)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 +#: resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "3D 보기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 +#: resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "앞에서 보기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 +#: resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "위에서 보기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 +#: resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "하단 뷰" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 +#: resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "왼쪽에서 보기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 +#: resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "오른쪽에서 보기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 +#: resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Cura 구성 ..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 +#: resources/qml/Actions.qml:197 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "프린터 추가..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 +#: resources/qml/Actions.qml:203 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "프린터 관리 ..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 +#: resources/qml/Actions.qml:210 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "재료 관리..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:216 -msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate." +#: resources/qml/Actions.qml:218 +msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." msgid "Add more materials from Marketplace" msgstr "마켓플레이스에서 더 많은 재료 추가" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 +#: resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "현재 설정으로로 프로파일 업데이트" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 +#: resources/qml/Actions.qml:233 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "현재 변경 사항 무시" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 +#: resources/qml/Actions.qml:245 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "현재 설정으로 프로파일 생성..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 +#: resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "프로파일 관리..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 +#: resources/qml/Actions.qml:259 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "온라인 문서 표시" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 +#: resources/qml/Actions.qml:267 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "버그 리포트" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 +#: resources/qml/Actions.qml:275 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "새로운 기능" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 +#: resources/qml/Actions.qml:289 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "소개..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 +#: resources/qml/Actions.qml:296 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "선택 항목 삭제" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 +#: resources/qml/Actions.qml:306 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "선택 항목 가운데 정렬" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 +#: resources/qml/Actions.qml:315 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "선택 항목 복제" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 +#: resources/qml/Actions.qml:324 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "모델 삭제" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 +#: resources/qml/Actions.qml:332 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "플랫폼중심에 모델 위치하기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 +#: resources/qml/Actions.qml:338 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "모델 그룹화" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 +#: resources/qml/Actions.qml:358 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "모델 그룹 해제" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 +#: resources/qml/Actions.qml:368 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "모델 합치기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 +#: resources/qml/Actions.qml:378 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "모델 복제..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 +#: resources/qml/Actions.qml:385 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "모든 모델 선택" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 +#: resources/qml/Actions.qml:395 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "빌드 플레이트 지우기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 +#: resources/qml/Actions.qml:405 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "모든 모델 다시 로드" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 +#: resources/qml/Actions.qml:414 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "모든 모델 정렬" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 +#: resources/qml/Actions.qml:422 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "선택한 모델 정렬" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 +#: resources/qml/Actions.qml:429 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "모든 모델의 위치 재설정" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 +#: resources/qml/Actions.qml:436 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "모든 모델의 변환 재설정" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 +#: resources/qml/Actions.qml:445 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "파일 열기..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 +#: resources/qml/Actions.qml:455 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "새로운 프로젝트..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 +#: resources/qml/Actions.qml:462 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "설정 폴더 표시" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 +#: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "설정 보기..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 msgctxt "@label:button" msgid "My printers" msgstr "내 프린터" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 msgctxt "@tooltip:button" msgid "Monitor printers in Ultimaker Digital Factory." msgstr "Ultimaker Digital Factory의 프린터를 모니터링하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Digital Library에서 프린트 프로젝트를 생성하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 msgctxt "@label:button" msgid "Print jobs" msgstr "인쇄 작업" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 msgctxt "@tooltip:button" msgid "Monitor print jobs and reprint from your print history." msgstr "프린트 작업을 모니터링하고 프린트 기록에서 다시 프린트하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." -msgstr "플러그인 및 재료 프로파일을 사용하여 Ultimaker Cura를 확장하십시오." +msgid "Extend UltiMaker Cura with plugins and material profiles." +msgstr "플러그인 및 재료 프로파일을 사용하여 UltiMaker Cura를 확장하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." -msgstr "Ultimaker e-러닝을 통해 3D 프린팅 전문가로 거듭나십시오." +msgid "Become a 3D printing expert with UltiMaker e-learning." +msgstr "UltiMaker e-러닝을 통해 3D 프린팅 전문가로 거듭나십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Ultimaker support" +msgid "UltiMaker support" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." -msgstr "Ultimaker Cura로 시작하는 방법을 알아보십시오." +msgid "Learn how to get started with UltiMaker Cura." +msgstr "UltiMaker Cura로 시작하는 방법을 알아보십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 msgctxt "@label:button" msgid "Ask a question" msgstr "질문하기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Ultimaker 커뮤니티에 문의하십시오." +msgid "Consult the UltiMaker Community." +msgstr "UltiMaker 커뮤니티에 문의하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 msgctxt "@label:button" msgid "Report a bug" msgstr "버그 리포트" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "개발자에게 문제를 알려주십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Ultimaker 웹 사이트를 방문하십시오." +msgid "Visit the UltiMaker website." +msgstr "UltiMaker 웹 사이트를 방문하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 +#: resources/qml/ColorDialog.qml:110 msgctxt "@label" msgid "Hex" msgstr "6각" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 +#: resources/qml/Cura.qml:256 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "다시 시작한 후에 이 패키지가 설치됩니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +#: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14 msgctxt "@title:tab" msgid "General" msgstr "일반" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +#: resources/qml/Cura.qml:470 msgctxt "@title:tab" msgid "Settings" msgstr "설정" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:468 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:17 +#: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17 msgctxt "@title:tab" msgid "Printers" msgstr "프린터" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:470 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70 +#: resources/qml/Cura.qml:474 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:70 msgctxt "@title:tab" msgid "Materials" msgstr "재료" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:472 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:57 +#: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57 msgctxt "@title:tab" msgid "Profiles" msgstr "프로파일" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +#: resources/qml/Cura.qml:581 msgctxt "@title:window %1 is the application name" msgid "Closing %1" msgstr "%1 닫기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:590 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:599 +#: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591 msgctxt "@label %1 is the application name" msgid "Are you sure you want to exit %1?" msgstr "%1을(를) 정말로 종료하시겠습니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:637 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 +#: resources/qml/Cura.qml:629 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 msgctxt "@title:window" msgid "Open file(s)" msgstr "파일 열기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +#: resources/qml/Cura.qml:734 msgctxt "@window:title" msgid "Install Package" msgstr "패키지 설치" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +#: resources/qml/Cura.qml:741 msgctxt "@title:window" msgid "Open File(s)" msgstr "파일 열기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +#: resources/qml/Cura.qml:743 msgctxt "@text:window" msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." msgstr "선택한 파일 내에 하나 이상의 G-코드 파일이 있습니다. 한 번에 하나의 G-코드 파일 만 열 수 있습니다. G-코드 파일을 열려면 하나만 선택하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:831 +#: resources/qml/Cura.qml:828 msgctxt "@title:window" msgid "Add Printer" msgstr "프린터 추가" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +#: resources/qml/Cura.qml:836 msgctxt "@title:window" msgid "What's New" msgstr "새로운 기능" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: resources/qml/Cura.qml:890 +msgctxt "@title:window" +msgid "Save Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:891 +msgctxt "@textfield:placeholder" +msgid "New Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:892 +msgctxt "@info" +msgid "Custom profile name:" +msgstr "" + +#: resources/qml/Cura.qml:909 +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의 속성을 상속합니다." + +#: resources/qml/Cura.qml:917 +msgctxt "@action:button" +msgid "Learn more about Cura print profiles" +msgstr "Cura 프린트 프로필에 대해 자세히 알아보기" + +#: resources/qml/Cura.qml:926 +msgctxt "@button" +msgid "Save new profile" +msgstr "" + +#: resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "%1 정보" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: resources/qml/Dialogs/AboutDialog.qml:59 msgctxt "@label" msgid "version: %1" msgstr "버전: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: resources/qml/Dialogs/AboutDialog.qml:74 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "3D 프린팅을 위한 엔드 투 엔트 솔루션." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: resources/qml/Dialogs/AboutDialog.qml:87 msgctxt "@info:credit" msgid "" -"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura is developed by UltiMaker in cooperation with the community.\n" "Cura proudly uses the following open source projects:" msgstr "" -"Cura는 커뮤니티와 공동으로 Ultimaker B.V.에 의해 개발되었습니다.\n" +"Cura는 커뮤니티와 공동으로 UltiMaker 에 의해 개발되었습니다.\n" "Cura는 다음의 오픈 소스 프로젝트를 사용합니다:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label Description for application component" msgid "Graphical user interface" msgstr "그래픽 사용자 인터페이스" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label Description for application component" msgid "Application framework" msgstr "애플리케이션 프레임 워크" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label Description for application component" msgid "G-code generator" msgstr "GCode 생성기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label Description for application component" msgid "Interprocess communication library" msgstr "프로세스간 통신 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:142 +msgctxt "@label Description for application component" msgid "Python bindings for libnest2d" msgstr "libnest2d용 Python 바인딩" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label Description for application component" msgid "Polygon packing library, developed by Prusa Research" msgstr "폴리곤 패킹 라이브러리, Prusa Research 개발" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:144 +msgctxt "@label Description for application component" msgid "Support library for handling 3MF files" msgstr "3MF 파일 처리를 위한 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:145 +msgctxt "@label Description for application component" msgid "Support library for file metadata and streaming" msgstr "파일 메타데이터 및 스트리밍을 위한 지원 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "프로그래밍 언어" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label Description for application dependency" msgid "GUI framework" msgstr "GUI 프레임 워크" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label Description for application dependency" msgid "GUI framework bindings" msgstr "GUI 프레임 워크 바인딩" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label Description for application dependency" msgid "C/C++ Binding library" msgstr "C/C ++ 바인딩 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:152 +msgctxt "@label Description for application dependency" msgid "Data interchange format" msgstr "데이터 교환 형식" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "Font" msgstr "폰트" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label Description for application dependency" msgid "Polygon clipping library" msgstr "다각형 클리핑 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label Description for application dependency" msgid "JSON parser" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:158 +msgctxt "@label Description for application dependency" msgid "Utility functions, including an image loader" -msgstr "" +msgstr "이미지 로더를 포함한 유틸리티 기능" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:159 +msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" -msgstr "" +msgstr "Voronoi 세대를 포함한 유틸리티 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:162 +#: resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label Description for application dependency" msgid "Root Certificates for validating SSL trustworthiness" -msgstr "" +msgstr "SSL 신뢰성 검증용 루트 인증서" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label Description for application dependency" msgid "Compatibility between Python 2 and 3" -msgstr "" +msgstr "Python 2 및 3 간의 호환성" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label Description for application dependency" msgid "Support library for system keyring access" msgstr "시스템 키링 액세스를 위한 서포트 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label Description for application dependency" msgid "Support library for faster math" msgstr "더 빠른 수학연산을 위한 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label Description for application dependency" msgid "Support library for handling STL files" msgstr "STL 파일 처리를 위한 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label Description for application dependency" msgid "Python bindings for Clipper" msgstr "Clipper용 Python 바인딩" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "직렬 통신 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label Description for application dependency" msgid "Support library for scientific computing" msgstr "과학 컴퓨팅을 위한 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 -msgctxt "@Label" +#: resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@Label Description for application dependency" msgid "Python Error tracking library" msgstr "Python 오류 추적 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:172 +msgctxt "@label Description for application dependency" msgid "Support library for handling triangular meshes" msgstr "삼각형 메쉬 처리를 위한 지원 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:173 +msgctxt "@label Description for application dependency" msgid "ZeroConf discovery library" msgstr "ZeroConf discovery 라이브러리" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label Description for development tool" msgid "Universal build system configuration" -msgstr "" +msgstr "범용 빌드 시스템 설정" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label Description for development tool" msgid "Dependency and package manager" -msgstr "" +msgstr "의존성 및 패키지 관리자" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label Description for development tool" msgid "Packaging Python-applications" -msgstr "" +msgstr "Python 애플리케이션 패키지 생성 중" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:179 +msgctxt "@label Description for development tool" msgid "Linux cross-distribution application deployment" msgstr "Linux 교차 배포 응용 프로그램 배포" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:180 +msgctxt "@label Description for development tool" msgid "Generating Windows installers" -msgstr "" +msgstr "Windows 설치 관리자 생성 중" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 msgctxt "@title:window" msgid "Open project file" msgstr "프로젝트 파일 열기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84 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 프로젝트 파일입니다. 프로젝트로 열거나 모델을 가져 오시겠습니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:90 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91 msgctxt "@text:window" msgid "Remember my choice" msgstr "선택 기억하기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105 msgctxt "@action:button" msgid "Open as project" msgstr "프로젝트로 열기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110 msgctxt "@action:button" msgid "Import models" msgstr "모델 가져 오기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:17 +msgctxt "@title:window" +msgid "Select Printer" +msgstr "프린터 선택" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:54 +msgctxt "@title:label" +msgid "Compatible Printers" +msgstr "호환 가능한 프린터" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:110 +msgctxt "@description" +msgid "No compatible printers, that are currently online, were found." +msgstr "현재 온라인 상태인 호환 가능 프린터를 찾을 수 없습니다." + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "변경 사항 삭제 또는 유지" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:49 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64 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 "" @@ -4168,1428 +4867,1288 @@ msgstr "" "프로파일 전환 후에도 변경된 설정을 유지하시겠습니까?\n" "또는 변경 사항을 버리고 '%1'에서 기본값을 로드할 수 있습니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90 msgctxt "@title:column" msgid "Profile settings" msgstr "프로파일 설정" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92 msgctxt "@title:column" msgid "Current changes" msgstr "현재 변경 사항" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:799 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123 +#: resources/qml/Preferences/GeneralPage.qml:820 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "항상 묻기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "최소하고 다시 묻지않기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "계속하고 다시 묻지않기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157 msgctxt "@action:button" msgid "Discard changes" msgstr "변경 사항 삭제" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164 msgctxt "@action:button" msgid "Keep changes" msgstr "변경 사항 유지" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171 +msgctxt "@action:button" +msgid "Save as new custom profile" +msgstr "" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178 +msgctxt "@action:button" +msgid "Save changes" +msgstr "" + +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 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 "선택한 파일 내에 하나 이상의 프로젝트 파일이 있습니다. 한 번에 하나의 프로젝트 파일 만 열 수 있습니다. 해당 파일에서 모델 만 가져 오기를 권장합니다. 계속 하시겠습니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 msgctxt "@action:button" msgid "Import all as models" msgstr "모두 모델로 가져 오기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 +#: resources/qml/Dialogs/RenameDialog.qml:23 +msgctxt "@title:window" +msgid "Rename" +msgstr "이름 바꾸기" + +#: resources/qml/Dialogs/RenameDialog.qml:24 +msgctxt "@info" +msgid "Please provide a new name." +msgstr "새 이름을 입력하십시오." + +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 msgctxt "@title:window" msgid "Save Project" msgstr "프로젝트 저장" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177 msgctxt "@action:label" msgid "Extruder %1" msgstr "%1익스트루더" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & 재료" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195 msgctxt "@action:label" msgid "Material" msgstr "재료" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "프로젝트 요약을 다시 저장하지 마십시오" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298 msgctxt "@action:button" msgid "Save" msgstr "저장" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -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" -msgstr[0] "선택한 모델을 %1로 프린팅하십시오" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:93 +#: resources/qml/JobSpecs.qml:93 msgctxt "@text Print job name" msgid "Untitled" msgstr "제목 없음" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 +#: resources/qml/MainWindow/ApplicationMenu.qml:63 +#: resources/qml/Menus/SettingsMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "설정" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 +#: resources/qml/MainWindow/ApplicationMenu.qml:87 msgctxt "@title:window" msgid "New project" msgstr "새 프로젝트" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88 +#: resources/qml/MainWindow/ApplicationMenu.qml:88 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 "새 프로젝트를 시작 하시겠습니까? 빌드 플레이트 및 저장하지 않은 설정이 지워집니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135 +#: resources/qml/MainWindow/MainWindowHeader.qml:135 msgctxt "@action:button" msgid "Marketplace" msgstr "시장" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +#: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 msgctxt "@header" msgid "Configurations" msgstr "구성" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 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에 방문하여 올바른 재료 프로파일을 다운로드하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 msgctxt "@label" msgid "Marketplace" msgstr "시장" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 msgctxt "@label" msgid "Loading available configurations from the printer..." msgstr "프린터에서 사용 가능한 구성 로딩 중..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 msgctxt "@label" msgid "The configurations are not available because the printer is disconnected." msgstr "프린터가 연결되어 있지 않기 때문에 구성을 사용할 수 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 msgctxt "@tooltip" msgid "The configuration of this extruder is not allowed, and prohibits slicing." msgstr "이 익스트루더의 구성이 허용되지 않았으며, 슬라이싱이 금지됩니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 msgctxt "@tooltip" msgid "There are no profiles matching the configuration of this extruder." msgstr "이 익스트루더 구성에 일치하는 프로파일이 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 msgctxt "@label" msgid "Select configuration" msgstr "구성 선택" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 msgctxt "@label" msgid "Configurations" msgstr "구성" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 msgctxt "@header" msgid "Custom" msgstr "사용자 정의" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:62 -msgctxt "@label" -msgid "Printer" -msgstr "프린터" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:217 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173 msgctxt "@label" msgid "Enabled" msgstr "실행됨" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222 msgctxt "@label" msgid "Material" msgstr "재료" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348 msgctxt "@label" msgid "Use glue for better adhesion with this material combination." msgstr "더 나은 접착력을 위해 이 재료 조합과 함께 접착제를 사용하십시오.." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:29 +#: resources/qml/Menus/ContextMenu.qml:29 msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "선택된 모델 프린팅 :" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:92 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "선택한 모델 복" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:123 msgctxt "@label" msgid "Number of Copies" msgstr "복제할 수" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/EditMenu.qml:12 +#: resources/qml/Menus/EditMenu.qml:12 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "편집(&E)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ExtensionMenu.qml:13 +#: resources/qml/Menus/ExtensionMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "확장 프로그램(&X)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 +#: resources/qml/Menus/FileMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "파일" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:45 +#: resources/qml/Menus/FileMenu.qml:45 msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "프로젝트 저장(&S)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:78 +#: resources/qml/Menus/FileMenu.qml:78 msgctxt "@title:menu menubar:file" msgid "&Export..." msgstr "내보내기(&E)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:89 +#: resources/qml/Menus/FileMenu.qml:89 msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "내보내기 선택..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/HelpMenu.qml:14 +#: resources/qml/Menus/HelpMenu.qml:14 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "도움말(&H)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +#: resources/qml/Menus/MaterialMenu.qml:13 msgctxt "@label:category menu label" msgid "Material" msgstr "재료" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:53 +#: resources/qml/Menus/MaterialMenu.qml:53 msgctxt "@label:category menu label" msgid "Favorites" msgstr "즐겨찾기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:78 +#: resources/qml/Menus/MaterialMenu.qml:78 msgctxt "@label:category menu label" msgid "Generic" msgstr "일반" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +#: resources/qml/Menus/OpenFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open File(s)..." msgstr "파일 여는 중..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PreferencesMenu.qml:21 +#: resources/qml/Menus/PreferencesMenu.qml:21 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "환경설정(&R)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:13 +#: resources/qml/Menus/PrinterMenu.qml:13 msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "프린터(&P)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:17 +#: resources/qml/Menus/PrinterMenu.qml:17 msgctxt "@label:category menu label" msgid "Network enabled printers" msgstr "네트워크 프린터" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:50 +#: resources/qml/Menus/PrinterMenu.qml:50 msgctxt "@label:category menu label" msgid "Local printers" msgstr "로컬 프린터" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +#: resources/qml/Menus/RecentFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open &Recent" msgstr "최근 열어본 파일 열기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +#: resources/qml/Menus/SaveProjectMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Save Project..." msgstr "프로젝트 저장 중..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:34 -msgctxt "@title:menu" -msgid "&Material" -msgstr "재료(&M)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:49 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "활성 익스트루더로 설정" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:55 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "익스트루더 사용" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:63 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "익스트루더 사용하지 않음" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 msgctxt "@action:inmenu" msgid "Visible Settings" msgstr "표시 설정" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 msgctxt "@action:inmenu" msgid "Collapse All Categories" msgstr "모든 카테고리 붕괴" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 msgctxt "@action:inmenu" msgid "Manage Setting Visibility..." msgstr "보기 설정 관리..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:13 +#: resources/qml/Menus/SettingsMenu.qml:34 +msgctxt "@title:menu" +msgid "&Material" +msgstr "재료(&M)" + +#: resources/qml/Menus/SettingsMenu.qml:49 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "활성 익스트루더로 설정" + +#: resources/qml/Menus/SettingsMenu.qml:55 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "익스트루더 사용" + +#: resources/qml/Menus/SettingsMenu.qml:63 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "익스트루더 사용하지 않음" + +#: resources/qml/Menus/ViewMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&View" msgstr "보기(&V)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:17 +#: resources/qml/Menus/ViewMenu.qml:17 msgctxt "@action:inmenu menubar:view" msgid "&Camera position" msgstr "카메라 위치(&C)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:30 +#: resources/qml/Menus/ViewMenu.qml:30 msgctxt "@action:inmenu menubar:view" msgid "Camera view" msgstr "카메라 뷰" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 +#: resources/qml/Menus/ViewMenu.qml:48 msgctxt "@action:inmenu menubar:view" msgid "Perspective" msgstr "원근" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +#: resources/qml/Menus/ViewMenu.qml:59 msgctxt "@action:inmenu menubar:view" msgid "Orthographic" msgstr "직교" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:115 +#: resources/qml/MonitorButton.qml:115 msgctxt "@label:MonitorStatus" msgid "Not connected to a printer" msgstr "프린터에 연결되지 않음" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 +#: resources/qml/MonitorButton.qml:119 msgctxt "@label:MonitorStatus" msgid "Printer does not accept commands" msgstr "프린터가 명령을 받아들이지 않습니다" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:129 +#: resources/qml/MonitorButton.qml:129 msgctxt "@label:MonitorStatus" msgid "In maintenance. Please check the printer" msgstr "유지 보수 중. 프린터를 확인하십시오" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:140 +#: resources/qml/MonitorButton.qml:140 msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "프린터와의 연결이 끊어졌습니다" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +#: resources/qml/MonitorButton.qml:142 msgctxt "@label:MonitorStatus" msgid "Printing..." msgstr "프린팅..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +#: resources/qml/MonitorButton.qml:145 msgctxt "@label:MonitorStatus" msgid "Paused" msgstr "일시 중지됨" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +#: resources/qml/MonitorButton.qml:148 msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "준비 중..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +#: resources/qml/MonitorButton.qml:150 msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "프린트물을 제거하십시오" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +#: resources/qml/MonitorButton.qml:318 msgctxt "@label" msgid "Abort Print" msgstr "프린팅 중단" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:327 +#: resources/qml/MonitorButton.qml:327 msgctxt "@label" msgid "Are you sure you want to abort the print?" msgstr "프린팅를 중단 하시겠습니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:109 +#: resources/qml/ObjectItemButton.qml:109 msgctxt "@label" msgid "Is printed as support." msgstr "지원으로 프린팅됩니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:112 +#: resources/qml/ObjectItemButton.qml:112 msgctxt "@label" msgid "Other models overlapping with this model are modified." msgstr "이 모델과 중복되는 다른 모델은 수정됩니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:115 +#: resources/qml/ObjectItemButton.qml:115 msgctxt "@label" msgid "Infill overlapping with this model is modified." msgstr "이 모델과 중복되는 내부채움은 수정됩니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:118 +#: resources/qml/ObjectItemButton.qml:118 msgctxt "@label" msgid "Overlaps with this model are not supported." msgstr "이 모델과의 중복은 지원되지 않습니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:125 +#: resources/qml/ObjectItemButton.qml:125 msgctxt "@label %1 is the number of settings it overrides." msgid "Overrides %1 setting." msgid_plural "Overrides %1 settings." msgstr[0] "%1 설정을 덮어씁니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 +#: resources/qml/ObjectSelector.qml:59 msgctxt "@label" msgid "Object list" msgstr "개체 목록" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:131 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:24 +#: resources/qml/Preferences/GeneralPage.qml:134 +#: resources/qml/Preferences/SettingVisibilityPage.qml:24 msgctxt "@action:button" msgid "Defaults" msgstr "기본값" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +#: resources/qml/Preferences/GeneralPage.qml:172 msgctxt "@label" msgid "Interface" msgstr "인터페이스" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +#: resources/qml/Preferences/GeneralPage.qml:215 msgctxt "@heading" msgid "-- incomplete --" msgstr "-- 미완료 --" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +#: resources/qml/Preferences/GeneralPage.qml:261 msgctxt "@label" msgid "Currency:" msgstr "통화:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:274 +#: resources/qml/Preferences/GeneralPage.qml:277 msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." msgid "Theme*:" msgstr "테마*:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +#: resources/qml/Preferences/GeneralPage.qml:323 msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "설정이 변경되면 자동으로 슬라이싱 합니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +#: resources/qml/Preferences/GeneralPage.qml:331 msgctxt "@option:check" msgid "Slice automatically" msgstr "자동으로 슬라이싱" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:337 +#: resources/qml/Preferences/GeneralPage.qml:340 +msgctxt "@info:tooltip" +msgid "Show an icon and notifications in the system notification area." +msgstr "시스템 알림 영역에 아이콘과 알림을 표시합니다." + +#: resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Add icon to system tray *" +msgstr "시스템 트레이에 아이콘 추가 *" + +#: resources/qml/Preferences/GeneralPage.qml:357 msgctxt "@label" msgid "*You will need to restart the application for these changes to have effect." msgstr "*이러한 변경 사항을 적용하려면 응용 프로그램을 재시작해야 합니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +#: resources/qml/Preferences/GeneralPage.qml:373 msgctxt "@label" msgid "Viewport behavior" msgstr "뷰포트 동작" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +#: resources/qml/Preferences/GeneralPage.qml:381 msgctxt "@info:tooltip" msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." msgstr "지원되지 않는 모델 영역을 빨간색으로 강조 표시하십시오. 서포트가 없으면 이 영역이 제대로 프린팅되지 않습니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:369 +#: resources/qml/Preferences/GeneralPage.qml:390 msgctxt "@option:check" msgid "Display overhang" msgstr "오버행 표시" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +#: resources/qml/Preferences/GeneralPage.qml:400 msgctxt "@info:tooltip" msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." msgstr "경고 기호를 사용해 모델에서 누락되거나 관계 없는 표면을 강조 표시합니다. 도구 경로에서는 종종 의도한 형상의 일부가 누락됩니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:388 +#: resources/qml/Preferences/GeneralPage.qml:409 msgctxt "@option:check" msgid "Display model errors" msgstr "모델 오류 표시" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +#: resources/qml/Preferences/GeneralPage.qml:417 msgctxt "@info:tooltip" msgid "Moves the camera so the model is in the center of the view when a model is selected" msgstr "모델을 선택하면 모델이 뷰의 가운데에 오도록 카메라를 이동합니다" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:401 +#: resources/qml/Preferences/GeneralPage.qml:422 msgctxt "@action:button" msgid "Center camera when item is selected" msgstr "항목을 선택하면 카메라를 중앙에 위치" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +#: resources/qml/Preferences/GeneralPage.qml:432 msgctxt "@info:tooltip" msgid "Should the default zoom behavior of cura be inverted?" msgstr "큐라의 기본 확대 동작을 반전시켜야 합니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:416 +#: resources/qml/Preferences/GeneralPage.qml:437 msgctxt "@action:button" msgid "Invert the direction of camera zoom." msgstr "카메라 줌의 방향을 반전시키기." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Should zooming move in the direction of the mouse?" msgstr "확대가 마우스 방향으로 이동해야 합니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Zooming towards the mouse is not supported in the orthographic perspective." msgstr "정투영법 시점에서는 마우스 방향으로 확대가 지원되지 않습니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:437 +#: resources/qml/Preferences/GeneralPage.qml:458 msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "마우스 방향으로 확대" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +#: resources/qml/Preferences/GeneralPage.qml:484 msgctxt "@info:tooltip" msgid "Should models on the platform be moved so that they no longer intersect?" msgstr "모델을 더 이상 교차시키지 않도록 이동해야합니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:468 +#: resources/qml/Preferences/GeneralPage.qml:489 msgctxt "@option:check" msgid "Ensure models are kept apart" msgstr "모델이 분리되어 있는지 확인" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +#: resources/qml/Preferences/GeneralPage.qml:498 msgctxt "@info:tooltip" msgid "Should models on the platform be moved down to touch the build plate?" msgstr "모델을 빌드 플레이트에 닿도록 아래로 움직여야합니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:482 +#: resources/qml/Preferences/GeneralPage.qml:503 msgctxt "@option:check" msgid "Automatically drop models to the build plate" msgstr "모델을 빌드 플레이트에 자동으로 놓기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +#: resources/qml/Preferences/GeneralPage.qml:515 msgctxt "@info:tooltip" msgid "Show caution message in g-code reader." msgstr "g-code 리더에 주의 메시지를 표시하기." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503 +#: resources/qml/Preferences/GeneralPage.qml:524 msgctxt "@option:check" msgid "Caution message in g-code reader" msgstr "g-code 리더의 주의 메시지" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +#: resources/qml/Preferences/GeneralPage.qml:532 msgctxt "@info:tooltip" msgid "Should layer be forced into compatibility mode?" msgstr "레이어가 호환 모드로 강제 설정되어야합니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +#: resources/qml/Preferences/GeneralPage.qml:537 msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "레이어 뷰 호환성 모드로 전환 (다시 시작해야 함)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +#: resources/qml/Preferences/GeneralPage.qml:547 msgctxt "@info:tooltip" msgid "Should Cura open at the location it was closed?" msgstr "닫힌 위치에서 Cura를 열어야 합니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:531 +#: resources/qml/Preferences/GeneralPage.qml:552 msgctxt "@option:check" msgid "Restore window position on start" msgstr "시작 시 창 위치 복원" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +#: resources/qml/Preferences/GeneralPage.qml:562 msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "어떤 유형의 카메라 렌더링을 사용해야 합니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +#: resources/qml/Preferences/GeneralPage.qml:569 msgctxt "@window:text" msgid "Camera rendering:" msgstr "카메라 렌더링:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +#: resources/qml/Preferences/GeneralPage.qml:576 msgid "Perspective" msgstr "원근" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +#: resources/qml/Preferences/GeneralPage.qml:577 msgid "Orthographic" msgstr "정투영" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +#: resources/qml/Preferences/GeneralPage.qml:617 msgctxt "@label" msgid "Opening and saving files" msgstr "파일 열기 및 저장" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +#: resources/qml/Preferences/GeneralPage.qml:624 msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "데스크톱 또는 외부 애플리케이션의 파일을 동일한 Cura 인스턴스에서 엽니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:608 +#: resources/qml/Preferences/GeneralPage.qml:629 msgctxt "@option:check" msgid "Use a single instance of Cura" msgstr "Cura의 단일 인스턴스 사용" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +#: resources/qml/Preferences/GeneralPage.qml:640 msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Cura의 단일 인스턴스에서 새 모델을 로드하기 전에 빌드 플레이트를 지워야 합니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +#: resources/qml/Preferences/GeneralPage.qml:646 msgctxt "@option:check" msgid "Clear buildplate before loading model into the single instance" msgstr "모델을 단일 인스턴스로 로드하기 전에 빌드 플레이트 지우기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 +#: resources/qml/Preferences/GeneralPage.qml:656 msgctxt "@info:tooltip" msgid "Should models be scaled to the build volume if they are too large?" msgstr "크기가 너무 큰 경우 모델을 빌드 볼륨에 맞게 조정해야합니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +#: resources/qml/Preferences/GeneralPage.qml:661 msgctxt "@option:check" msgid "Scale large models" msgstr "큰 모델의 사이즈 수정" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +#: resources/qml/Preferences/GeneralPage.qml:671 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 "단위가 밀리미터가 아닌 미터 단위 인 경우 모델이 매우 작게 나타날 수 있습니다. 이 모델을 확대할까요?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:655 +#: resources/qml/Preferences/GeneralPage.qml:676 msgctxt "@option:check" msgid "Scale extremely small models" msgstr "매우 작은 모델의 크기 조정" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +#: resources/qml/Preferences/GeneralPage.qml:686 msgctxt "@info:tooltip" msgid "Should models be selected after they are loaded?" msgstr "모델을 로드한 후에 선택해야 합니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: resources/qml/Preferences/GeneralPage.qml:691 msgctxt "@option:check" msgid "Select models when loaded" msgstr "로드된 경우 모델 선택" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +#: resources/qml/Preferences/GeneralPage.qml:701 msgctxt "@info:tooltip" msgid "Should a prefix based on the printer name be added to the print job name automatically?" msgstr "프린터 이름에 기반한 접두어가 프린팅 작업 이름에 자동으로 추가되어야합니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:685 +#: resources/qml/Preferences/GeneralPage.qml:706 msgctxt "@option:check" msgid "Add machine prefix to job name" msgstr "작업 이름에 기기 접두어 추가" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +#: resources/qml/Preferences/GeneralPage.qml:716 msgctxt "@info:tooltip" msgid "Should a summary be shown when saving a project file?" msgstr "프로젝트 파일을 저장할 때 요약이 표시되어야합니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: resources/qml/Preferences/GeneralPage.qml:720 msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "프로젝트 저장시 요약 대화 상자 표시" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +#: resources/qml/Preferences/GeneralPage.qml:730 msgctxt "@info:tooltip" msgid "Default behavior when opening a project file" msgstr "프로젝트 파일을 열 때 기본 동작" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +#: resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@window:text" msgid "Default behavior when opening a project file: " msgstr "프로젝트 파일을 열 때 기본 동작 " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +#: resources/qml/Preferences/GeneralPage.qml:753 msgctxt "@option:openProject" msgid "Always ask me this" msgstr "항상 묻기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: resources/qml/Preferences/GeneralPage.qml:754 msgctxt "@option:openProject" msgid "Always open as a project" msgstr "항상 프로젝트로 열기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +#: resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:openProject" msgid "Always import models" msgstr "항상 모델 가져 오기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +#: resources/qml/Preferences/GeneralPage.qml:792 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 "프로파일을 변경하고 다른 프로파일로 전환하면 수정 사항을 유지할지 여부를 묻는 대화 상자가 표시됩니다. 기본 행동을 선택하면 해당 대화 상자를 다시 표시 하지 않을 수 있습니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:780 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:36 +#: resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46 msgctxt "@label" msgid "Profiles" msgstr "프로파일" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +#: resources/qml/Preferences/GeneralPage.qml:806 msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "다른 프로파일로 변경하는 경우 변경된 설정값에 대한 기본 동작 " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:800 +#: resources/qml/Preferences/GeneralPage.qml:821 msgctxt "@option:discardOrKeep" msgid "Always discard changed settings" msgstr "항상 변경된 설정 삭제" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/Preferences/GeneralPage.qml:822 msgctxt "@option:discardOrKeep" msgid "Always transfer changed settings to new profile" msgstr "항상 변경된 설정을 새 프로파일로 전송" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +#: resources/qml/Preferences/GeneralPage.qml:856 msgctxt "@label" msgid "Privacy" msgstr "보안" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +#: resources/qml/Preferences/GeneralPage.qml:862 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 주소 또는 기타 개인 식별 정보는 전송되거나 저장되지 않습니다." +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 주소 또는 기타 개인 식별 정보는 전송되거나 저장되지 않습니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +#: resources/qml/Preferences/GeneralPage.qml:867 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "(익명) 프린터 정보 보내기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +#: resources/qml/Preferences/GeneralPage.qml:897 msgctxt "@label" msgid "Updates" msgstr "업데이트" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +#: resources/qml/Preferences/GeneralPage.qml:904 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "Cura가 프로그램이 시작될 때 업데이트를 확인할까요?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:888 +#: resources/qml/Preferences/GeneralPage.qml:909 msgctxt "@option:check" msgid "Check for updates on start" msgstr "시작시 업데이트 확인" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +#: resources/qml/Preferences/GeneralPage.qml:925 msgctxt "@info:tooltip" msgid "When checking for updates, only check for stable releases." msgstr "업데이트 사항을 확인할 때 안정적인 릴리즈만 확인하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:910 +#: resources/qml/Preferences/GeneralPage.qml:931 msgctxt "@option:radio" msgid "Stable releases only" msgstr "안정적인 릴리즈만 해당" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +#: resources/qml/Preferences/GeneralPage.qml:941 msgctxt "@info:tooltip" msgid "When checking for updates, check for both stable and for beta releases." msgstr "업데이트 사항을 확인할 때 안정적인 베타 릴리즈를 확인하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:926 +#: resources/qml/Preferences/GeneralPage.qml:947 msgctxt "@option:radio" msgid "Stable and Beta releases" msgstr "안정적인 베타 릴리즈" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +#: resources/qml/Preferences/GeneralPage.qml:957 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가 시작될 때마다 새로운 플러그인을 자동 확인해야 합니까? 사용 안 함으로 설정하지 않는 것이 좋습니다!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:941 +#: resources/qml/Preferences/GeneralPage.qml:962 msgctxt "@option:check" msgid "Get notifications for plugin updates" msgstr "플러그인 업데이트 알림 받기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:50 +#: resources/qml/Preferences/MachinesPage.qml:50 msgctxt "@action:button" msgid "Add New" msgstr "새로 추가" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:134 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +#: resources/qml/Preferences/MachinesPage.qml:147 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:160 +#: resources/qml/Preferences/ProfilesPage.qml:294 msgctxt "@action:button" msgid "Activate" msgstr "활성화" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:146 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:331 +#: resources/qml/Preferences/MachinesPage.qml:159 +#: resources/qml/Preferences/ProfilesPage.qml:331 msgctxt "@action:button" msgid "Rename" msgstr "이름 바꾸기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:72 msgctxt "@label" msgid "Materials compatible with active printer:" msgstr "활성화된 프린터와 호환되는 재료:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:94 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:78 +#: resources/qml/Preferences/ProfilesPage.qml:94 msgctxt "@action:button" msgid "Create new" msgstr "새로 만들기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:88 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:90 +#: resources/qml/Preferences/ProfilesPage.qml:88 msgctxt "@action:button" msgid "Import" msgstr "가져오기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:101 msgctxt "@action:button" msgid "Sync with Printers" msgstr "프린터와 동기화" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:311 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:174 +#: resources/qml/Preferences/ProfilesPage.qml:311 msgctxt "@action:button" msgid "Duplicate" msgstr "복제" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:342 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:198 +#: resources/qml/Preferences/ProfilesPage.qml:342 msgctxt "@action:button" msgid "Export" msgstr "내보내기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:392 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:212 +#: resources/qml/Preferences/ProfilesPage.qml:392 msgctxt "@title:window" msgid "Confirm Remove" msgstr "제거 확인" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:393 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:215 +#: resources/qml/Preferences/ProfilesPage.qml:393 msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "%1을 제거 하시겠습니까? 이것은 취소 할 수 없습니다!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:228 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:238 msgctxt "@title:window" msgid "Import Material" msgstr "재료 가져 오기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:242 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "재료를 성공적으로 가져왔습니다" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:245 msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not import material %1: %2" msgstr "재료를 가져올 수 없습니다" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:267 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:256 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:267 msgctxt "@title:window" msgid "Export Material" msgstr "재료 내보내기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:272 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:272 msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "재료를 내보내는데 실패했습니다" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:275 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:275 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "재료를 성공적으로 내보냈습니다" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 msgctxt "@title:window" msgid "Sync materials with printers" msgstr "재료를 프린터와 동기화" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 msgctxt "@title:header" msgid "Sync materials with printers" msgstr "재료를 프린터와 동기화" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 msgctxt "@text" msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "몇 가지 간단한 단계를 수행하면 모든 재료 프로파일과 프린터를 동기화할 수 있습니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 msgctxt "@button" msgid "Why do I need to sync material profiles?" msgstr "재료 프로파일을 동기화해야 하는 이유는 무엇입니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 msgctxt "@button" msgid "Start" msgstr "시작" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144 msgctxt "@title:header" msgid "Sign in" msgstr "로그인" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150 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에 가입되어 있어야 합니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:446 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:586 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602 msgctxt "@button" msgid "Sync materials with USB" msgstr "재료를 USB로 동기화" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 msgctxt "@title:header" msgid "The following printers will receive the new material profiles:" -msgstr "The following printers will receive the new material profiles:" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:198 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 msgctxt "@title:header" msgid "Something went wrong when sending the materials to the printers." msgstr "재료를 프린터로 전송할 때 어떤 문제가 발생했습니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:205 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221 msgctxt "@title:header" msgid "Material profiles successfully synced with the following printers:" -msgstr "Material profiles successfully synced with the following printers:" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:429 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445 msgctxt "@button" msgid "Troubleshooting" msgstr "문제 해결" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422 msgctxt "@text Asking the user whether printers are missing in a list." msgid "Printers missing?" msgstr "프린터가 없습니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:408 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424 msgctxt "@text" msgid "Make sure all your printers are turned ON and connected to Digital Factory." msgstr "모든 프린터가 켜져 있고 Digital Factory에 연결되어 있는지 확인하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:417 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433 msgctxt "@button" msgid "Refresh List" msgstr "목록 새로고침" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473 msgctxt "@button" msgid "Try again" msgstr "다시 시도" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:461 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Done" msgstr "완료" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:606 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622 msgctxt "@button" msgid "Sync" msgstr "동기화" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535 msgctxt "@button" msgid "Syncing" msgstr "동기화 중" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553 msgctxt "@title:header" msgid "No printers found" msgstr "프린터를 찾을 수 없음" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574 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에 호환되는 프린터가 연결되지 않은 것 같습니다. 프린터가 연결되어 있고 최신 펌웨어가 설치되어 있는지 확인하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:569 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585 msgctxt "@button" msgid "Learn how to connect your printer to Digital Factory" msgstr "Digital Factory에 프린터를 연결하는 방법 알아보기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:597 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613 msgctxt "@button" msgid "Refresh" msgstr "새로고침" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642 msgctxt "@title:header" msgid "Sync material profiles via USB" msgstr "재료 프로파일을 USB로 동기화" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:632 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648 msgctxt "@text In the UI this is followed by a list of steps the user needs to take." msgid "Follow the following steps to load the new material profiles to your printer." msgstr "새로운 재료 프로파일을 프린터로 로드하기 위해 다음 단계를 수행합니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 msgctxt "@text" msgid "Click the export material archive button." msgstr "재료 아카이브 내보내기 버튼을 클릭합니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr ".umm 파일을 USB 스틱에 저장합니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 msgctxt "@text" msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." msgstr "USB 스틱을 프린터에 삽입하고 새로운 재료 프로파일 로드 절차를 진행합니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:673 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689 msgctxt "@button" msgid "How to load new material profiles to my printer" msgstr "새로운 재료 프로파일을 내 프린터로 로드하는 방법" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:687 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 msgctxt "@button" msgid "Back" msgstr "뒤로" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Export material archive" msgstr "재료 아카이브 내보내기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747 msgctxt "@title:window" msgid "Export All Materials" msgstr "모든 재료 내보내기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121 +#: resources/qml/Preferences/Materials/MaterialsView.qml:121 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "직경 변경 확인" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122 +#: resources/qml/Preferences/Materials/MaterialsView.qml:122 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로 설정되었으며, 현재 압출기와 호환되지 않습니다. 계속하시겠습니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152 +#: resources/qml/Preferences/Materials/MaterialsView.qml:152 msgctxt "@label" msgid "Display Name" msgstr "표시 이름" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 +#: resources/qml/Preferences/Materials/MaterialsView.qml:171 msgctxt "@label" msgid "Brand" msgstr "상표" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190 +#: resources/qml/Preferences/Materials/MaterialsView.qml:190 msgctxt "@label" msgid "Material Type" msgstr "재료 유형" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +#: resources/qml/Preferences/Materials/MaterialsView.qml:210 msgctxt "@label" msgid "Color" msgstr "색깔" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:262 +#: resources/qml/Preferences/Materials/MaterialsView.qml:262 msgctxt "@title" msgid "Material color picker" msgstr "재료 색상 선택기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:275 +#: resources/qml/Preferences/Materials/MaterialsView.qml:275 msgctxt "@label" msgid "Properties" msgstr "속성" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +#: resources/qml/Preferences/Materials/MaterialsView.qml:286 msgctxt "@label" msgid "Density" msgstr "밀도" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +#: resources/qml/Preferences/Materials/MaterialsView.qml:319 msgctxt "@label" msgid "Diameter" msgstr "직경" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:369 +#: resources/qml/Preferences/Materials/MaterialsView.qml:369 msgctxt "@label" msgid "Filament Cost" msgstr "필라멘트 비용" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:401 +#: resources/qml/Preferences/Materials/MaterialsView.qml:401 msgctxt "@label" msgid "Filament weight" msgstr "필라멘트 무게" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:433 +#: resources/qml/Preferences/Materials/MaterialsView.qml:433 msgctxt "@label" msgid "Filament length" msgstr "필라멘트 길이" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:451 +#: resources/qml/Preferences/Materials/MaterialsView.qml:451 msgctxt "@label" msgid "Cost per Meter" msgstr "미터 당 비용" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:465 +#: resources/qml/Preferences/Materials/MaterialsView.qml:465 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "이 재료는 %1에 연결되어 있으며 일부 속성을 공유합니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:472 +#: resources/qml/Preferences/Materials/MaterialsView.qml:472 msgctxt "@label" msgid "Unlink Material" msgstr "재료 연결 해제" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +#: resources/qml/Preferences/Materials/MaterialsView.qml:485 msgctxt "@label" msgid "Description" msgstr "설명" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:503 +#: resources/qml/Preferences/Materials/MaterialsView.qml:503 msgctxt "@label" msgid "Adhesion Information" msgstr "접착 정보" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642 +#: resources/qml/Preferences/Materials/MaterialsView.qml:642 msgctxt "@title" msgid "Information" msgstr "정보" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:647 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:82 +#: resources/qml/Preferences/Materials/MaterialsView.qml:647 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 msgctxt "@label" msgid "Print settings" msgstr "프린팅 설정" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:59 +#: resources/qml/Preferences/ProfilesPage.qml:59 msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "활성화된 프린터와 호환되는 프로파일:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:98 +#: resources/qml/Preferences/ProfilesPage.qml:98 msgctxt "@action:tooltip" msgid "Create new profile from current settings/overrides" msgstr "현재 설정/재정의로부터 새 프로파일 만들기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:125 +#: resources/qml/Preferences/ProfilesPage.qml:125 msgctxt "@action:label" msgid "Some settings from current profile were overwritten." msgstr "현재 프로파일의 일부 설정을 덮어썼습니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:140 +#: resources/qml/Preferences/ProfilesPage.qml:140 msgctxt "@action:button" msgid "Update profile." msgstr "프로파일을 업데이트하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:143 +#: resources/qml/Preferences/ProfilesPage.qml:143 msgctxt "@action:tooltip" msgid "Update profile with current settings/overrides" msgstr "현재 설정 / 재정의 프로파일 업데이트" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:148 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256 +#: resources/qml/Preferences/ProfilesPage.qml:148 msgctxt "@action:button" msgid "Discard current changes" msgstr "현재 변경 사항 삭제" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:158 +#: resources/qml/Preferences/ProfilesPage.qml:158 msgctxt "@action:label" msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." msgstr "이 프로파일은 프린터에서 지정한 기본값을 사용하므로 아래 목록에 아무런 설정/재정의가 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:165 +#: resources/qml/Preferences/ProfilesPage.qml:165 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "현재 설정이 선택한 프로파일과 일치합니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +#: resources/qml/Preferences/ProfilesPage.qml:175 msgctxt "@title:tab" msgid "Global Settings" msgstr "전역 설정" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: resources/qml/Preferences/ProfilesPage.qml:278 msgctxt "@title:window" msgid "Create Profile" msgstr "프로파일 생성하기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:280 +#: resources/qml/Preferences/ProfilesPage.qml:280 msgctxt "@info" msgid "Please provide a name for this profile." msgstr "이 프로파일에 대한 이름을 제공하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:368 +#: resources/qml/Preferences/ProfilesPage.qml:352 +#: resources/qml/Preferences/ProfilesPage.qml:368 msgctxt "@title:window" msgid "Export Profile" msgstr "프로파일 내보내기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +#: resources/qml/Preferences/ProfilesPage.qml:382 msgctxt "@title:window" msgid "Duplicate Profile" msgstr "프로파일 복제하기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:409 +#: resources/qml/Preferences/ProfilesPage.qml:409 msgctxt "@title:window" msgid "Rename Profile" msgstr "프로파일 이름 바꾸기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:422 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:429 +#: resources/qml/Preferences/ProfilesPage.qml:422 +#: resources/qml/Preferences/ProfilesPage.qml:429 msgctxt "@title:window" msgid "Import Profile" msgstr "프로파일 가져 오기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:22 -msgctxt "@title:window" -msgid "Rename" -msgstr "이름 바꾸기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:23 -msgctxt "@info" -msgid "Please provide a new name." -msgstr "새 이름을 입력하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56 +#: resources/qml/Preferences/SettingVisibilityItem.qml:56 msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." msgstr "이 설정은 활성 기기에 의해 숨겨졌으며 보이지 않습니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73 +#: resources/qml/Preferences/SettingVisibilityItem.qml:73 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 값으로 숨겨져 있습니다. 이 설정을 볼 수 있게 설정 값을 변경하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13 +#: resources/qml/Preferences/SettingVisibilityPage.qml:13 msgctxt "@title:tab" msgid "Setting Visibility" msgstr "보기 설정" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 +#: resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" msgid "Check all" msgstr "모두 확인" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 -msgctxt "@label" -msgid "Extruder" -msgstr "익스트루더" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70 -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." -msgstr "핫 엔드의 설정 온도입니다. 핫 엔드는 이 온도를 향해 가열되거나 냉각됩니다. 이 값이 0이면 온열 가열이 꺼집니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "이 익스트루더의 현재 온도." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "노즐을 예열하기 위한 온도." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "취소" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263 -msgctxt "@button" -msgid "Pre-heat" -msgstr "예열" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "프린팅하기 전에 노즐을 미리 가열하십시오. 가열되는 동안 계속해서 프린팅물을 조정할 수 있으며, 프린팅 준비가 되면 노즐이 가열 될 때까지 기다릴 필요가 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "이 익스트루더의 재료 색." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "이 익스트루더의 재료." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "이 익스트루더에 삽입 된 노즐." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -msgctxt "@label" -msgid "Build plate" -msgstr "빌드 플레이트" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55 -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이면 베드 가열이 꺼집니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "가열 된 베드의 현재 온도." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "베드를 예열하기 위한 온도." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "프린팅하기 전에 베드를 미리 가열하십시오. 가열되는 동안 계속해서 프린팅물을 조정할 수 있으며, 프린팅 준비가 되면 베드가 가열 될 때까지 기다릴 필요가 없습니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51 -msgctxt "@label" -msgid "Printer control" -msgstr "프린터 제어" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66 -msgctxt "@label" -msgid "Jog Position" -msgstr "조그 위치" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217 -msgctxt "@label" -msgid "Jog Distance" -msgstr "조그 거리" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Send G-code" -msgstr "Gcode 보내기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "연결된 프린터에 사용자 정의 G 코드 명령을 보냅니다. ‘Enter’키를 눌러 명령을 전송하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "프린터가 연결되어 있지 않습니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "클라우드 프린터가 오프라인 상태입니다. 프린터가 켜져 있고 인터넷과 연결되어 있는지 확인하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "해당 프린터가 사용자의 계정에 연결되어 있지 않습니다. Ultimaker Digital Factory에 방문하여 연결을 설정하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "현재 클라우드 연결을 사용할 수 없습니다. 클라우드 프린터에 연결하려면 로그인하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "현재 클라우드 연결을 사용할 수 없습니다. 사용자의 인터넷 연결을 확인하십시오." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:235 -msgctxt "@button" -msgid "Add printer" -msgstr "프린터 추가" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Manage printers" -msgstr "프린터 관리" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Active print" msgstr "활성화된 프린트" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Job Name" msgstr "작업 이름" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +#: resources/qml/PrintMonitor.qml:172 msgctxt "@label" msgid "Printing Time" msgstr "프린팅 시간" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +#: resources/qml/PrintMonitor.qml:180 msgctxt "@label" msgid "Estimated time left" msgstr "예상 남은 시간" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 msgctxt "@label" msgid "Profile" msgstr "프로파일" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5600,132 +6159,379 @@ msgstr "" "\n" "프로파일 매니저를 열려면 클릭하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 +#: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 msgctxt "@label:header" msgid "Custom profiles" msgstr "사용자 정의 프로파일" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 msgctxt "@label shown when we load a Gcode file" msgid "Print setup disabled. G-code file can not be modified." msgstr "인쇄 설정 비활성화됨. G 코드 파일을 수정할 수 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:179 msgctxt "@button" msgid "Recommended" msgstr "추천" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156 -msgctxt "@button" -msgid "Custom" -msgstr "사용자 정의" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 msgctxt "@label:Should be short" msgid "On" msgstr "유효한" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 msgctxt "@label:Should be short" msgid "Off" msgstr "비활성" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "실험적 설정" +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is active and you overwrote some settings." +msgstr "%1개의 사용자 정의 프로파일을 활성화하고 일부 설정을 덮어썼습니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:54 -msgctxt "@info" -msgid "custom profile is active and you overwrote some settings." +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is overriding some settings." +msgstr "%1개의 사용자 정의 프로파일이 일부 설정을 무시합니다." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92 +msgctxt "@info %1 is the name of a profile" +msgid "Recommended settings (for %1) were altered." +msgstr "(%1)에 대한 권장 설정이 변경되었습니다." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106 +msgctxt "@info %1 is the name of a profile" +msgid "Some setting-values defined in %1 were overridden." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137 msgctxt "@info" -msgid "custom profile is overriding some settings." -msgstr "" +msgid "Reset to defaults." +msgstr "기본값으로 재설정합니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178 msgctxt "@info" -msgid "Some settings were changed." -msgstr "" +msgid "Compare and save." +msgstr "비교하고 저장합니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15 msgctxt "@label" msgid "Adhesion" msgstr "부착" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20 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 "브림이나 라프트를 사용합니다. 이렇게하면 출력물 주변이나 아래에 평평한 영역이 추가되어 나중에 쉽게 자를 수 있습니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:198 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102 msgctxt "@label" -msgid "Gradual infill" -msgstr "점진적 내부채움" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:236 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "점차적인 내부채움은 점차적으로 빈 공간 채우기의 양을 증가시킵니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 -msgctxt "@label" -msgid "Resolution" +msgid "Recommended print settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111 +msgctxt "@button" +msgid "Show Custom" +msgstr "사용자 지정 표시" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27 +msgctxt "@label" +msgid "Resolution" +msgstr "해상도" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16 +msgctxt "@label" +msgid "Strength" +msgstr "강도" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20 +msgctxt "@label" +msgid "The following settings define the strength of your part." +msgstr "다음 설정은 부품의 강도를 정의합니다." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34 +msgctxt "infill_sparse_density description" +msgid "Infill Density" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35 +msgctxt "@label" +msgid "Adjusts the density of infill of the print." +msgstr "출력물의 내부채움을 조절합니다." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54 +msgctxt "@action:label" +msgid "Infill Pattern" +msgstr "내부채움 패턴" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56 +msgctxt "@label" +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 객체의 경우에는 큐빅, 세분된 큐빅, 쿼터 큐빅, 옥텟 및 자이로이드를 사용합니다." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67 +msgctxt "@action:label" +msgid "Shell Thickness" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68 +msgctxt "@label" +msgid "Defines the thickness of your part side walls, roof and floor." +msgstr "부품 측벽, 지붕 및 바닥의 두께를 정의합니다." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16 msgctxt "@label" msgid "Support" msgstr "서포트" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21 msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "오버행이 있는 모델 서포트를 생성합니다. 이러한 구조가 없으면 이러한 부분이 프린팅 중에 붕괴됩니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40 +msgctxt "@action:label" +msgid "Support Type" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41 +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 "서포트를 생성하는 데 사용할 수 있는 기술 중 하나를 선택합니다. '표준' 서포트는 오버행(경사면) 파트 바로 아래에 서포트 구조물을 생성하고 해당 영역을 바로 아래로 떨어뜨립니다. '트리' 서포트는 모델을 지지하는 브랜치 끝에서 오버행(경사면) 영역을 향해 브랜치를 만들고 빌드 플레이트에서 모델을 지지할 수 있도록 모델을 브랜치로 최대한 감쌉니다." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53 +msgctxt "@action:label" +msgid "Print with" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54 +msgctxt "@label" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "서포트 프린팅에 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67 +msgctxt "@action:label" +msgid "Placement" +msgstr "배치" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68 +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 "서포트 구조의 배치를 조정합니다. 배치는 빌드 플레이트 또는 모든 곳을 터치하도록 설정할 수 있습니다. 모든 곳에 설정하면 모델에 서포트 구조가 프린팅됩니다." + +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 msgctxt "@error" msgid "Configuration not supported" -msgstr "" +msgstr "지원되지 않는 설정" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." -msgstr "" +msgstr "선택한 재료/%1 설정에 대해 사용할 수 있는 프로파일이 없습니다. 설정을 변경하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 msgctxt "@button:label" msgid "Learn more" -msgstr "" +msgstr "자세히 알아보기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +#: resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "익스트루더" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:70 +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." +msgstr "핫 엔드의 설정 온도입니다. 핫 엔드는 이 온도를 향해 가열되거나 냉각됩니다. 이 값이 0이면 온열 가열이 꺼집니다." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:105 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "이 익스트루더의 현재 온도." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:182 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "노즐을 예열하기 위한 온도." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:271 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:259 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "취소" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:274 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:263 +msgctxt "@button" +msgid "Pre-heat" +msgstr "예열" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:297 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "프린팅하기 전에 노즐을 미리 가열하십시오. 가열되는 동안 계속해서 프린팅물을 조정할 수 있으며, 프린팅 준비가 되면 노즐이 가열 될 때까지 기다릴 필요가 없습니다." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:335 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "이 익스트루더의 재료 색." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:367 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "이 익스트루더의 재료." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:400 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "이 익스트루더에 삽입 된 노즐." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:25 +msgctxt "@label" +msgid "Build plate" +msgstr "빌드 플레이트" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:55 +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이면 베드 가열이 꺼집니다." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "가열 된 베드의 현재 온도." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:162 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "베드를 예열하기 위한 온도." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:286 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "프린팅하기 전에 베드를 미리 가열하십시오. 가열되는 동안 계속해서 프린팅물을 조정할 수 있으며, 프린팅 준비가 되면 베드가 가열 될 때까지 기다릴 필요가 없습니다." + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:51 +msgctxt "@label" +msgid "Printer control" +msgstr "프린터 제어" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:66 +msgctxt "@label" +msgid "Jog Position" +msgstr "조그 위치" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:82 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:162 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:217 +msgctxt "@label" +msgid "Jog Distance" +msgstr "조그 거리" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Send G-code" +msgstr "Gcode 보내기" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:319 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "연결된 프린터에 사용자 정의 G 코드 명령을 보냅니다. ‘Enter’키를 눌러 명령을 전송하십시오." + +#: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "프린터가 연결되어 있지 않습니다." + +#: resources/qml/PrinterSelector/MachineListButton.qml:34 +msgctxt "@label" +msgid "Hide all connected printers" +msgstr "연결된 프린터 모두 숨기기" + +#: resources/qml/PrinterSelector/MachineListButton.qml:47 +msgctxt "@label" +msgid "Show all connected printers" +msgstr "연결된 프린터 모두 표시" + +#: resources/qml/PrinterSelector/MachineSelector.qml:64 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "클라우드 프린터가 오프라인 상태입니다. 프린터가 켜져 있고 인터넷과 연결되어 있는지 확인하십시오." + +#: resources/qml/PrinterSelector/MachineSelector.qml:68 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "해당 프린터가 사용자의 계정에 연결되어 있지 않습니다. Ultimaker Digital Factory에 방문하여 연결을 설정하십시오." + +#: resources/qml/PrinterSelector/MachineSelector.qml:73 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "현재 클라우드 연결을 사용할 수 없습니다. 클라우드 프린터에 연결하려면 로그인하십시오." + +#: resources/qml/PrinterSelector/MachineSelector.qml:78 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "현재 클라우드 연결을 사용할 수 없습니다. 사용자의 인터넷 연결을 확인하십시오." + +#: resources/qml/PrinterSelector/MachineSelectorList.qml:30 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:32 +msgctxt "@label" +msgid "Other printers" +msgstr "기타 프린터" + +#: resources/qml/ProfileOverview.qml:36 msgctxt "@title:column" msgid "Setting" msgstr "설정" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +#: resources/qml/ProfileOverview.qml:37 msgctxt "@title:column" msgid "Profile" msgstr "프로파일" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +#: resources/qml/ProfileOverview.qml:38 msgctxt "@title:column" msgid "Current" msgstr "현재 설정" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +#: resources/qml/ProfileOverview.qml:39 msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "단위" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +#: resources/qml/SearchBar.qml:17 msgctxt "@placeholder" msgid "Search" msgstr "검색" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 +#: resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5736,32 +6542,32 @@ msgstr "" "\n" "이 설정을 표시하려면 클릭하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 +#: resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "영향을 미치는 모든 설정이 무효화되기 때문에 이 설정을 사용하지 않습니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +#: resources/qml/Settings/SettingItem.qml:89 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "영향" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +#: resources/qml/Settings/SettingItem.qml:94 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "영향을 받다" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:190 +#: resources/qml/Settings/SettingItem.qml:196 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "이 설정은 항상 모든 익스트루더 사이에 공유됩니다. 여기서 변경하면 모든 익스트루더에 대한 값이 변경됩니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +#: resources/qml/Settings/SettingItem.qml:200 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "이 설정은 충돌하는 압출기별 값으로 결정됩니다:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +#: resources/qml/Settings/SettingItem.qml:240 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5772,7 +6578,7 @@ msgstr "" "\n" "프로파일 값을 복원하려면 클릭하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:334 +#: resources/qml/Settings/SettingItem.qml:340 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5783,3918 +6589,327 @@ msgstr "" "\n" "계산 된 값을 복원하려면 클릭하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +#: resources/qml/Settings/SettingView.qml:48 msgctxt "@label:textbox" msgid "Search settings" msgstr "검색 설정" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:395 +#: resources/qml/Settings/SettingView.qml:395 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "모든 익스트루더에 값 복사" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:404 +#: resources/qml/Settings/SettingView.qml:404 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "변경된 사항을 모든 익스트루더에 복사" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:440 +#: resources/qml/Settings/SettingView.qml:440 msgctxt "@action:menu" msgid "Hide this setting" msgstr "이 설정 숨기기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:453 +#: resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "이 설정을 표시하지 않음" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:457 +#: resources/qml/Settings/SettingView.qml:457 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "이 설정을 계속 표시하십시오" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +#: resources/qml/Toolbar.qml:142 +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" +msgstr[0] "선택한 모델을 %1로 프린팅하십시오" + +#: resources/qml/ViewOrientationControls.qml:25 msgctxt "@info:tooltip" msgid "3D View" msgstr "3D 보기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +#: resources/qml/ViewOrientationControls.qml:38 msgctxt "@info:tooltip" msgid "Front View" msgstr "앞에서 보기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +#: resources/qml/ViewOrientationControls.qml:51 msgctxt "@info:tooltip" msgid "Top View" msgstr "위에서 보기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +#: resources/qml/ViewOrientationControls.qml:64 msgctxt "@info:tooltip" msgid "Left View" msgstr "왼쪽 보기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +#: resources/qml/ViewOrientationControls.qml:77 msgctxt "@info:tooltip" msgid "Right View" msgstr "오른쪽 보기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: resources/qml/ViewsSelector.qml:50 msgctxt "@label" msgid "View type" msgstr "유형 보기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:47 msgctxt "@label" msgid "Add a Cloud printer" msgstr "클라우드 프린터 추가" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:73 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:73 msgctxt "@label" msgid "Waiting for Cloud response" msgstr "클라우드 응답 대기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:83 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:83 msgctxt "@label" msgid "No printers found in your account?" msgstr "사용자의 계정에 프린터가 없습니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:117 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:117 msgctxt "@label" msgid "The following printers in your account have been added in Cura:" -msgstr "The following printers in your account have been added in Cura:" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:186 msgctxt "@button" msgid "Add printer manually" msgstr "수동으로 프린터 추가" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 msgctxt "@label" msgid "Manufacturer" msgstr "제조업체" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Profile author" msgstr "프로파일 원작자" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 msgctxt "@label" msgid "Printer name" msgstr "프린터 이름" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 msgctxt "@text" msgid "Please name your printer" msgstr "프린터의 이름을 설정하십시오" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "프린터 추가" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:38 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "네트워크 프린터 추가" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:87 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "비 네트워크 프린터 추가" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 msgctxt "@label" msgid "There is no printer found over your network." msgstr "네트워크에서 검색된 프린터가 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 msgctxt "@label" msgid "Refresh" msgstr "새로고침" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 msgctxt "@label" msgid "Add printer by IP" msgstr "IP로 프린터 추가" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "클라우드 프린터 추가" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205 msgctxt "@label" msgid "Troubleshooting" msgstr "문제 해결" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 msgctxt "@label" msgid "Add printer by IP address" msgstr "IP 주소로 프린터 추가" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 msgctxt "@text" msgid "Enter your printer's IP address." msgstr "프린터의 IP 주소를 입력하십시오." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 msgctxt "@button" msgid "Add" msgstr "추가" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 msgctxt "@label" msgid "Could not connect to device." msgstr "장치에 연결할 수 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Ultimaker 프린터로 연결할 수 없습니까?" +msgid "Can't connect to your UltiMaker printer?" +msgstr "UltiMaker 프린터로 연결할 수 없습니까?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 msgctxt "@label" msgid "The printer at this address has not responded yet." msgstr "이 주소의 프린터가 아직 응답하지 않았습니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 msgctxt "@label" msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." msgstr "알 수 없는 프린터이거나 그룹의 호스트가 아니기 때문에 이 프린터를 추가할 수 없습니다." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 msgctxt "@button" msgid "Connect" msgstr "연결" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "네트워크 프린터 추가" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "비 네트워크 프린터 추가" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102 +msgctxt "@button" +msgid "Add UltiMaker printer via Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "In order to start using Cura you will need to configure a printer." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36 +msgctxt "@label" +msgid "What printer would you like to setup?" +msgstr "어떤 프린터를 설정하시겠습니까?" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55 +msgctxt "@button" +msgid "UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64 +msgctxt "@button" +msgid "Non UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73 +msgctxt "@button" +msgid "Learn more about adding printers to Cura" +msgstr "Cura에 프린터를 추가하는 방법 자세히 알아보기" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29 +msgctxt "@label" +msgid "Add printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33 +msgctxt "@label" +msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70 +msgctxt "@label" +msgid "If you are trying to add a new UltiMaker printer to Cura" +msgstr "Cura에 새 UltiMaker 프린터를 추가하려는 경우" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80 +msgctxt "@info" +msgid "Sign in into UltiMaker Digital Factory" +msgstr "UltiMaker Digital Factory에 로그인합니다." + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81 +msgctxt "@info" +msgid "Follow the procedure to add a new printer" +msgstr "절차를 따라 새 프린터를 추가합니다." + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82 +msgctxt "@info" +msgid "Your new printer will automatically appear in Cura" +msgstr "새 프린터가 Cura에 자동으로 나타납니다." + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100 +msgctxt "@button" +msgid "Learn more" +msgstr "자세히 알아보기" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121 +msgctxt "@button" +msgid "Add local printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129 +msgctxt "@button" +msgid "Sign in to Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133 +msgctxt "@button" +msgid "Waiting for new printers" +msgstr "" + +#: resources/qml/WelcomePages/ChangelogContent.qml:24 msgctxt "@label" msgid "Release Notes" msgstr "릴리즈 노트" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:123 +#: resources/qml/WelcomePages/CloudContent.qml:123 msgctxt "@text" msgid "Add material settings and plugins from the Marketplace" msgstr "재료 설정 및 Marketplace 플러그인 추가" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:149 +#: resources/qml/WelcomePages/CloudContent.qml:149 msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "재료 설정과 플러그인 백업 및 동기화" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:175 +#: resources/qml/WelcomePages/CloudContent.qml:175 msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Ultimaker 커뮤니티에서 48,000명 이상의 사용자와 아이디어를 공유하고 도움 받기" +msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" +msgstr "UltiMaker 커뮤니티에서 48,000명 이상의 사용자와 아이디어를 공유하고 도움 받기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +#: resources/qml/WelcomePages/CloudContent.qml:189 msgctxt "@button" msgid "Skip" msgstr "건너뛰기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +#: resources/qml/WelcomePages/CloudContent.qml:201 msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Ultimaker 계정 무료 생성" +msgid "Create a free UltiMaker Account" +msgstr "UltiMaker 계정 무료 생성" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Ultimaker Cura를 개선하는 데 도움을 주십시오" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:56 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura는 인쇄 품질과 사용자 경험을 개선하기 위해 다음과 같은 익명 데이터를 수집합니다:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:68 -msgctxt "@text" -msgid "Machine types" -msgstr "기기 유형" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:74 -msgctxt "@text" -msgid "Material usage" -msgstr "재료 사용" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:80 -msgctxt "@text" -msgid "Number of slices" -msgstr "슬라이드 수" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:86 -msgctxt "@text" -msgid "Print settings" -msgstr "인쇄 설정" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:99 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Ultimaker Cura가 수집하는 데이터에는 개인 정보가 포함되어 있지 않습니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:100 -msgctxt "@text" -msgid "More information" -msgstr "추가 정보" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +#: resources/qml/WelcomePages/DropDownWidget.qml:93 msgctxt "@label" msgid "Empty" msgstr "비어 있음" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +#: resources/qml/WelcomePages/UserAgreementContent.qml:23 msgctxt "@label" msgid "User Agreement" msgstr "사용자 계약" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67 +#: resources/qml/WelcomePages/UserAgreementContent.qml:67 msgctxt "@button" msgid "Decline and close" msgstr "거절 및 닫기" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Ultimaker Cura에 오신 것을 환영합니다" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:67 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "Ultimaker Cura를 설정하려면 다음 단계로 이동하세요. 오래 걸리지 않습니다." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:82 -msgctxt "@button" -msgid "Get started" -msgstr "시작하기" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: resources/qml/WelcomePages/WhatsNewContent.qml:28 msgctxt "@label" msgid "What's New" msgstr "새로운 기능" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: resources/qml/Widgets/ComboBox.qml:18 msgctxt "@label" msgid "No items to select from" msgstr "선택할 항목 없음" -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "가능한 프린팅 문제를 위해 모델 및 인쇄 구성을 확인하고 제안합니다." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "모델 검사기" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "3MF 파일 읽기 지원." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF 리더" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "3MF 파일 작성 지원을 제공합니다." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF 기록기" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "AMF 파일 읽기가 지원됩니다." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF 리더" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "구성을 백업하고 복원합니다." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura 백업" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "CuraEngine 슬라이스 백엔드 링크를 제공합니다." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine 백엔드" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Cura 프로파일 가져 오기 지원을 제공합니다." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura 프로파일 리더" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Cura 프로파일 내보내기 지원을 제공합니다." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura 프로파일 작성자" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "디지털 라이브러리와 연결하여 Cura에서 디지털 라이브러리를 통해 파일을 열고 저장할 수 있도록 합니다." - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker 디지털 라이브러리" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "펌웨어 업데이트를 확인합니다." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "펌웨어 업데이트 검사기" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "펌웨어 업데이트를 위한 기계 동작을 제공합니다." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "펌웨어 업데이터" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "압축 된 아카이브로 부터 g-code를 읽습니다." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "압축 된 G 코드 리더기" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "압축 된 아카이브에 g-code를 씁니다." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "압축 된 G 코드 작성기" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "G-코드 파일에서 프로파일 가져 오기를 지원합니다." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "GCode 프로파일 리더기" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "G-코드 파일을 로드하고 표시 할 수 있습니다." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "G-코드 리더" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "G Code를 파일에 씁니다." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "GCode 작성자" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "2D 이미지 파일에서 프린팅 가능한 지오메트리를 생성 할 수 있습니다." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "이미지 리더" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "레거시 Cura 버전에서 프로파일 가져 오기를 지원합니다." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "레거시 Cura 프로파일 리더" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "기계 설정 (예 : 빌드 볼륨, 노즐 크기 등)을 변경하는 방법을 제공합니다." - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "컴퓨터 설정 작업" - -#: Marketplace/plugin.json -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the Ultimaker website." -msgstr "응용 프로그램의 확장을 관리하고 Ultimaker 웹 사이트에서 확장을 검색할 수 있습니다." - -#: Marketplace/plugin.json -msgctxt "name" -msgid "Marketplace" -msgstr "마켓플레이스" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Cura에서 모니터 단계 제공." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "모니터 단계" - -#: PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "모델 별 설정을 제공합니다." - -#: PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "모델 별 설정 도구" - -#: PostProcessingPlugin/plugin.json -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "후처리를 위해 사용자가 만든 스크립트를 허용하는 확장 프로그램" - -#: PostProcessingPlugin/plugin.json -msgctxt "name" -msgid "Post Processing" -msgstr "후처리" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Cura에서 준비 단계 제공." - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "준비 단계" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Cura에서 미리 보기 단계를 제공합니다." - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "미리 보기 단계" - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "이동식 드라이브를 제공합니다." - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "이동식 드라이브 출력 장치 플러그인" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "충돌을 보고하는 리포터가 사용할 수 있도록 특정 이벤트를 기록합니다" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "보초 로거" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "슬라이스된 레이어 데이터의 미리보기를 제공합니다." - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "시뮬레이션 뷰" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "익명의 슬라이스 정보를 제출하십시오. 환경 설정을 통해 비활성화 할 수 있습니다." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "슬라이스 정보" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "일반 솔리드 메쉬보기를 제공합니다." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "솔리드 뷰" - -#: SupportEraser/plugin.json -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "특정 장소에서 서포트 프린팅을 막는 지우개 메쉬(eraser mesh)를 만듭니다" - -#: SupportEraser/plugin.json -msgctxt "name" -msgid "Support Eraser" -msgstr "Support Eraser" - -#: TrimeshReader/plugin.json -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "모델 파일 읽기 기능을 제공합니다." - -#: TrimeshReader/plugin.json -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh 리더" - -#: UFPReader/plugin.json -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Ultimaker 포맷 패키지 읽기를 지원합니다." - -#: UFPReader/plugin.json -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP 리더기" - -#: UFPWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Ultimaker 포맷 패키지 작성을 지원합니다." - -#: UFPWriter/plugin.json -msgctxt "name" -msgid "UFP Writer" -msgstr "UFP 작성자" - -#: UltimakerMachineActions/plugin.json -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Ultimaker 기계에 대한 기계 작동 제공(예 : 침대 수평 조정 마법사, 업그레이드 선택 등)" - -#: UltimakerMachineActions/plugin.json -msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Ultimaker 기기 동작" - -#: UM3NetworkPrinting/plugin.json -msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Ultimaker 네트워크 연결 프린터에 대한 네트워크 연결을 관리합니다." - -#: UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Ultimaker 네트워크 연결" - -#: USBPrinting/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "G-코드를 수신하고 프린터로 보냅니다. 플러그인은 또한 펌웨어를 업데이트 할 수 있습니다." - -#: USBPrinting/plugin.json -msgctxt "name" -msgid "USB printing" -msgstr "USB 프린팅" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Cura 2.1에서 Cura 2.2로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "2.1에서 2.2로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Cura 2.2에서 Cura 2.4로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "2.2에서 2.4로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Cura 2.5에서 Cura 2.6으로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "2.5에서 2.6으로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Cura 2.6에서 Cura 2.7로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "2.6에서 2.7으로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Cura 2.7에서 Cura 3.0으로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "2.7에서 3.0으로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Cura 3.0에서 Cura 3.1로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "3.0에서 3.1로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Cura 3.2에서 Cura 3.3으로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "3.2에서 3.3으로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Cura 3.3에서 Cura 3.4로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "버전 업그레이드 3.3에서 3.4" - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Cura 3.4에서 Cura 3.5로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "3.4에서 3.5로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Cura 3.5에서 Cura 4.0으로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "버전 업그레이드 3.5에서 4.0" - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Cura 4.0에서 Cura 4.1로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "버전 업그레이드 4.0에서 4.1" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Cura 4.11에서 Cura 4.12로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "4.11에서 4.12로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Cura 4.13에서 Cura 5.0으로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "4.13에서 5.0으로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Cura 4.1에서 Cura 4.2로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "4.1에서 4.2로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Cura 4.2에서 Cura 4.3으로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "4.2에서 4.3로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Cura 4.3에서 Cura 4.4로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "4.3에서 4.4로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Cura 4.4에서 Cura 4.5로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "4.4에서 4.5로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Cura 4.5에서 Cura 4.6으로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "4.5에서 4.6으로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Cura 4.6.0에서 Cura 4.6.2로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "4.6.0에서 4.6.2로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Cura 4.6.2에서 Cura 4.7로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "4.6.2에서 4.7로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Cura 4.7에서 Cura 4.8로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "4.7에서 4.8로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Cura 4.8에서 Cura 4.9로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "4.8에서 4.9로 버전 업그레이드" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Cura 4.9에서 Cura 4.10으로 구성을 업그레이드합니다." - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "4.9에서 4.10으로 버전 업그레이드" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "X3D 파일을 읽을 수 있도록 지원합니다." - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D 리더" - -#: XmlMaterialProfile/plugin.json -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "XML 기반 재료 프로파일을 읽고 쓸 수있는 기능을 제공합니다." - -#: XmlMaterialProfile/plugin.json -msgctxt "name" -msgid "Material Profiles" -msgstr "재료 프로파일" - -#: XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "엑스레이 뷰를 제공합니다." - -#: XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "엑스레이 뷰" - -#~ msgctxt "@label" -#~ msgid "Not yet initialized
    " -#~ msgstr "아직 초기화되지 않음
    " - -#~ msgctxt "@label" -#~ msgid "By" -#~ msgstr "에 의해" - -#~ msgctxt "@Label" -#~ msgid "Static type checker for Python" -#~ msgstr "Python용 정적 유형 검사기" - -#~ msgctxt "@Label" -#~ msgid "Root Certificates for validating SSL trustworthiness" -#~ msgstr "SSL 신뢰성 검증용 루트 인증서" - -#~ msgctxt "@label" -#~ msgid "Python extensions for Microsoft Windows" -#~ msgstr "Microsoft Windows용 Python 확장" - -#~ msgctxt "@label" -#~ msgid "SVG icons" -#~ msgstr "SVG 아이콘" - -#~ msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" -#~ msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" -#~ msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" -#~ msgstr[0] "압출기 %2의 구성에 대한 %1 프로파일이 없습니다. 대신 기본 의도가 사용됩니다" - -#~ msgctxt "@tooltip" -#~ msgid "You have modified some profile settings. If you want to change these go to custom mode." -#~ msgstr "일부 프로파일 설정을 수정했습니다. 이러한 설정을 변경하려면 사용자 지정 모드로 이동하십시오." - -#~ msgctxt "@action:button" -#~ msgid "Sync materials with printers" -#~ msgstr "재료를 프린터와 동기화" - -#~ msgctxt "@title:window" -#~ msgid "Convert Image..." -#~ msgstr "이미지 변환 ..." - -#~ msgctxt "@info:tooltip" -#~ msgid "The width in millimeters on the build plate." -#~ msgstr "빌드 플레이트의 폭 (밀리미터)." - -#~ msgctxt "@title" -#~ msgid "Marketplace" -#~ msgstr "시장" - -#~ msgctxt "@info" -#~ msgid "You will need to restart Cura before changes in packages have effect." -#~ msgstr "패키지의 변경 사항이 적용되기 전에 Cura를 다시 시작해야 합니다." - -#~ msgctxt "@action:button" -#~ msgid "Install" -#~ msgstr "설치" - -#~ msgctxt "@action:button" -#~ msgid "Installed" -#~ msgstr "설치됨" - -#~ msgctxt "@label" -#~ msgid "Premium" -#~ msgstr "프리미엄" - -#~ msgctxt "@info:tooltip" -#~ msgid "Go to Web Marketplace" -#~ msgstr "웹 마켓플레이스로 이동" - -#~ msgctxt "@label" -#~ msgid "Search materials" -#~ msgstr "재료 검색" - -#~ msgctxt "@label" -#~ msgid "Compatibility" -#~ msgstr "호환성" - -#~ msgctxt "@label:table_header" -#~ msgid "Machine" -#~ msgstr "기기" - -#~ msgctxt "@label:table_header" -#~ msgid "Build Plate" -#~ msgstr "빌드 플레이트" - -#~ msgctxt "@label:table_header" -#~ msgid "Support" -#~ msgstr "서포트" - -#~ msgctxt "@label:table_header" -#~ msgid "Quality" -#~ msgstr "품질" - -#~ msgctxt "@action:label" -#~ msgid "Technical Data Sheet" -#~ msgstr "기술 데이터 시트" - -#~ msgctxt "@action:label" -#~ msgid "Safety Data Sheet" -#~ msgstr "안전 데이터 시트" - -#~ msgctxt "@action:label" -#~ msgid "Printing Guidelines" -#~ msgstr "인쇄 가이드라인" - -#~ msgctxt "@action:label" -#~ msgid "Website" -#~ msgstr "웹 사이트" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to install or update" -#~ msgstr "설치 또는 업데이트에 로그인 필요" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Buy material spools" -#~ msgstr "재료 스플 구입" - -#~ msgctxt "@action:button" -#~ msgid "Update" -#~ msgstr "업데이트" - -#~ msgctxt "@action:button" -#~ msgid "Updating" -#~ msgstr "업데이트 중" - -#~ msgctxt "@action:button" -#~ msgid "Updated" -#~ msgstr "업데이트됨" - -#~ msgctxt "@action:button" -#~ msgid "Back" -#~ msgstr "뒤로" - -#~ msgctxt "@title:tab" -#~ msgid "Plugins" -#~ msgstr "플러그인" - -#~ msgctxt "@title:tab" -#~ msgid "Installed" -#~ msgstr "설치됨" - -#~ msgctxt "@label" -#~ msgid "Will install upon restarting" -#~ msgstr "다시 시작 시 설치 예정" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to update" -#~ msgstr "업데이트에 로그인 필요" - -#~ msgctxt "@action:button" -#~ msgid "Downgrade" -#~ msgstr "다운그레이드" - -#~ msgctxt "@action:button" -#~ msgid "Uninstall" -#~ msgstr "설치 제거" - -#~ msgctxt "@label" -#~ msgid "Community Contributions" -#~ msgstr "커뮤니티 기여" - -#~ msgctxt "@label" -#~ msgid "Community Plugins" -#~ msgstr "커뮤니티 플러그인" - -#~ msgctxt "@label" -#~ msgid "Generic Materials" -#~ msgstr "일반 재료" - -#~ msgctxt "@info" -#~ msgid "Fetching packages..." -#~ msgstr "패키지 가져오는 중..." - -#~ msgctxt "@label" -#~ msgid "Website" -#~ msgstr "웹 사이트" - -#~ msgctxt "@label" -#~ msgid "Email" -#~ msgstr "이메일" - -#~ msgctxt "@description" -#~ msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -#~ msgstr "Ultimaker Cura Enterprise용으로 검증된 플러그인 및 재료를 받으려면 로그인하십시오" - -#~ msgctxt "@label" -#~ msgid "Version" -#~ msgstr "버전" - -#~ msgctxt "@label" -#~ msgid "Last updated" -#~ msgstr "마지막으로 업데이트한 날짜" - -#~ msgctxt "@label" -#~ msgid "Downloads" -#~ msgstr "다운로드" - -#~ msgctxt "@title:tab" -#~ msgid "Installed plugins" -#~ msgstr "설치된 플러그인" - -#~ msgctxt "@info" -#~ msgid "No plugin has been installed." -#~ msgstr "설치된 플러그인이 없습니다." - -#~ msgctxt "@title:tab" -#~ msgid "Installed materials" -#~ msgstr "설치된 재료" - -#~ msgctxt "@info" -#~ msgid "No material has been installed." -#~ msgstr "설치된 재료가 없습니다." - -#~ msgctxt "@title:tab" -#~ msgid "Bundled plugins" -#~ msgstr "번들 플러그인" - -#~ msgctxt "@title:tab" -#~ msgid "Bundled materials" -#~ msgstr "번들 재료" - -#~ msgctxt "@info" -#~ msgid "Could not connect to the Cura Package database. Please check your connection." -#~ msgstr "Cura 패키지 데이터베이스에 연결할 수 없습니다. 연결을 확인하십시오." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall" -#~ msgstr "제거 확인" - -#~ msgctxt "@text:window" -#~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -#~ msgstr "아직 사용 중인 재료 및/또는 프로파일을 제거합니다. 확인하면 다음 재료/프로파일이 기본값으로 재설정됩니다." - -#~ msgctxt "@text:window" -#~ msgid "Materials" -#~ msgstr "재료" - -#~ msgctxt "@text:window" -#~ msgid "Profiles" -#~ msgstr "프로파일" - -#~ msgctxt "@action:button" -#~ msgid "Confirm" -#~ msgstr "확인" - -#~ msgctxt "@info:tooltip" -#~ msgid "Some things could be problematic in this print. Click to see tips for adjustment." -#~ msgstr "이 출력물에는 문제가있을 수 있습니다. 조정을 위한 도움말을 보려면 클릭하십시오." - -#~ msgctxt "@label" -#~ msgid "Support library for handling planar objects" -#~ msgstr "평면 개체 처리를 위한 지원 라이브러리" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "일부 프로파일 설정을 사용자 정의했습니다.\n" -#~ "프로파일 전환 후에도 변경된 설정을 유지하시겠습니까?\n" -#~ "또는 변경 사항을 버리고 '%1'에서 기본값을 로드할 수 있습니다." - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Build plate" -#~ msgstr "빌드 플레이트(&B)" - -#~ msgctxt "@label" -#~ msgid "Create" -#~ msgstr "생성" - -#~ msgctxt "@label" -#~ msgid "Duplicate" -#~ msgstr "복제" - -#~ msgctxt "@label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "프린터: %1" - -#~ msgctxt "@action:button" -#~ msgid "Update profile with current settings/overrides" -#~ msgstr "현재 설정 / 재정의 프로파일 업데이트" - -#~ msgctxt "@label" -#~ msgid "Theme:" -#~ msgstr "테마:" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for these changes to have effect." -#~ msgstr "이러한 변경 사항을 적용하려면 응용 프로그램을 다시 시작해야합니다." - -#~ msgctxt "@action:button" -#~ msgid "More information" -#~ msgstr "추가 정보" - -#~ msgctxt "@action:button" -#~ msgid "Create" -#~ msgstr "생성" - -#~ msgctxt "@action:button Sending materials to printers" -#~ msgid "Sync with Printers" -#~ msgstr "프린터와 동기화" - -#~ msgctxt "@action:label" -#~ msgid "Printer" -#~ msgstr "프린터" - -#~ msgctxt "@title:column" -#~ msgid "Unit" -#~ msgstr "단위" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting Guide" -#~ msgstr "온라인 문제 해결 가이드 표시" - -#~ msgctxt "@action:inmenu" -#~ msgid "Add more materials from Marketplace" -#~ msgstr "마켓플레이스에서 더 많은 재료 추가" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange All Models To All Build Plates" -#~ msgstr "모든 모델을 모든 빌드 플레이트에 정렬" - -#~ msgctxt "@action:menu" -#~ msgid "&Marketplace" -#~ msgstr "&시장" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new Cura packages." -#~ msgstr "새 Cura 패키지를 찾고, 관리하고 설치하십시오." - -#~ msgctxt "name" -#~ msgid "Toolbox" -#~ msgstr "도구 상자" - -#~ msgctxt "description" -#~ msgid "Provides the Simulation view." -#~ msgstr "시뮬레이션 뷰를 제공합니다." - #~ msgctxt "@info:status" -#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Ultimaker 계정을 사용하여 어디에서든 인쇄 작업을 전송하고 모니터링하십시오." - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Digital Factory" -#~ msgstr "Ultimaker Digital Factory에 연결" - -#~ msgctxt "@info" -#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." -#~ msgstr "클라우드 프린터용 Webcam 피드는 Ultimaker Cura에서 볼 수 없습니다." - -#~ 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 not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -#~ msgstr "사용자의 {machine_name}에서 새로운 기능 또는 버그 수정 사항을 사용할 수 있습니다! 최신 버전이 아닌 경우 프린터의 펌웨어를 버전 {latest_version}으로 업데이트하는 것이 좋습니다." - -#~ msgctxt "@info:title The %s gets replaced with the printer name." -#~ msgid "New %s firmware available" -#~ msgstr "새로운 %s 펌웨어를 사용할 수 있습니다" - -#~ msgctxt "@info:status" -#~ msgid "Global stack is missing." -#~ msgstr "전체 스택이 누락되었습니다." - -#~ msgctxt "@info:status" -#~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces." -#~ msgstr "매니폴드 모델이 아닙니다. 강조 표시된 영역은 누락되거나 관련 없는 표면을 표시합니다." +#~ msgid "Cura does not accurately display layers when Wire Printing is enabled." +#~ msgstr "와이어 프린팅이 활성화되어 있을 때 Cura는 레이어를 정확하게 표시하지 않습니다." #~ msgctxt "@info:title" -#~ msgid "Model errors" -#~ msgstr "모델 오류" - -#~ msgctxt "@label:listbox" -#~ msgid "Layer thickness" -#~ msgstr "레이어 두께" - -#~ msgctxt "@label" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "연결된 3D 프린팅의 핵심" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Customize your experience with more print profiles and plugins\n" -#~ "- Stay flexible by syncing your setup and loading it anywhere\n" -#~ "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "" -#~ "- 보다 많은 프린트 프로파일과 플러그인으로 자신에게 맞게 환경 조정\n" -#~ "- 어디서든지 유연하게 설정을 동기화하고 로딩\n" -#~ "- Ultimaker 프린터에서 원격 워크플로로 효율성 증대" - -#~ msgctxt "@button" -#~ msgid "Create account" -#~ msgstr "계정 생성" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete Selected Model" -#~ msgid_plural "Delete Selected Models" -#~ msgstr[0] "선택한 모델 삭제" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Center Selected Model" -#~ msgid_plural "Center Selected Models" -#~ msgstr[0] "선택한 모델 중심에 놓기" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Multiply Selected Model" -#~ msgid_plural "Multiply Selected Models" -#~ msgstr[0] "선택한 모델 복제" - -#~ msgctxt "@button" -#~ msgid "Finish" -#~ msgstr "종료" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Account" -#~ msgstr "Ultimaker 계정" - -#~ msgctxt "@text" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "연결된 3D 프린팅의 핵심" - -#~ msgctxt "@text" -#~ msgid "- Customize your experience with more print profiles and plugins" -#~ msgstr "- 보다 많은 프린트 프로파일과 플러그인으로 자신에게 맞게 환경 조정" - -#~ msgctxt "@text" -#~ msgid "- Stay flexible by syncing your setup and loading it anywhere" -#~ msgstr "- 어디서든지 유연하게 설정을 동기화하고 로딩" - -#~ msgctxt "@text" -#~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "- Ultimaker 프린터에서 원격 워크플로로 효율성 증대" - -#~ msgctxt "@text" -#~ msgid "" -#~ "Please follow these steps to set up\n" -#~ "Ultimaker Cura. This will only take a few moments." -#~ msgstr "Ultimaker Cura를 설정하려면 다음 단계를 따르십시오. 오래 걸리지 않습니다." - -#~ msgctxt "@label" -#~ msgid "What's new in Ultimaker Cura" -#~ msgstr "Ultimaker Cura의 새로운 기능" - -#~ msgctxt "@label ({} is object name)" -#~ msgid "Are you sure you wish to remove {}? This cannot be undone!" -#~ msgstr "정말로 {}을(를) 제거하시겠습니까? 이 작업을 실행 취소할 수 없습니다." - -#~ msgctxt "@info:status" -#~ msgid "The selected model was too small to load." -#~ msgstr "선택한 모델이 너무 작아서 로드할 수 없습니다." - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profile {0}" -#~ msgstr "프로파일 {0}을 성공적으로 가져 왔습니다." - -#~ msgctxt "@info:status" -#~ msgid "Could not find a quality type {0} for the current configuration." -#~ msgstr "현재 구성에 대해 품질 타입 {0}을 찾을 수 없습니다." - -#~ msgctxt "info:status" -#~ msgid "Adding printer {} ({}) from your account" -#~ msgstr "사용자 계정에서 프린터 {} ({}) 추가" - -#~ msgctxt "info:hidden list items" -#~ msgid "
  • ... and {} others
  • " -#~ msgstr "
  • ... 및 기타 {}
  • " - -#~ msgctxt "info:status" -#~ msgid "Printers added from Digital Factory:
      {}
    " -#~ msgstr "Digital Factory에서 프린터 추가:
      {}
    " - -#~ msgctxt "info:status" -#~ msgid "
      {}
    To establish a connection, please visit the Ultimaker Digital Factory." -#~ msgstr "
      {}
    연결을 설정하려면 Ultimaker Digital Factory에 방문하십시오." - -#~ msgctxt "@label ({} is printer name)" -#~ msgid "{} will be removed until the next account sync.
    To remove {} permanently, visit Ultimaker Digital Factory.

    Are you sure you want to remove {} temporarily?" -#~ msgstr "다음 계정 동기화 시까지 {}이(가) 제거됩니다.
    {}을(를) 영구적으로 제거하려면 Ultimaker Digital Factory를 방문하십시오.

    일시적으로 {}을(를) 제거하시겠습니까?" - -#~ msgctxt "@label" -#~ msgid "" -#~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n" -#~ "Are you sure you want to continue?" -#~ msgstr "" -#~ "Cura에서 {} 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. \n" -#~ "정말로 계속하시겠습니까?" - -#~ msgctxt "@label" -#~ 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" -#~ "정말로 계속하시겠습니까?" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update" -#~ msgstr "업데이트" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Create new" -#~ msgstr "새로 만들기" - -#~ msgctxt "@label" -#~ msgid "Shared Heater" -#~ msgstr "공유된 히터" - -#~ msgctxt "@info" -#~ msgid "The webcam is not available because you are monitoring a cloud printer." -#~ msgstr "Cloud 프린터를 모니터링하고 있기 때문에 웹캠을 사용할 수 없습니다." - -#~ msgctxt "@button" -#~ msgid "Ultimaker Digital Factory" -#~ msgstr "Ultimaker Digital Factory" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can Discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "일부 프로파일 설정을 사용자 정의했습니다.\n" -#~ "프로파일 전환 후에도 변경된 설정을 유지하시겠습니까?\n" -#~ "또는 변경 사항을 버리고 '%1'에서 기본값을 로드할 수 있습니다." - -#~ msgctxt "@label" -#~ msgid "Overrides %1 setting." -#~ msgid_plural "Overrides %1 settings." -#~ msgstr[0] "%1 설정을 덮어씁니다." - -#~ msgctxt "@text" -#~ msgid "Please give your printer a name" -#~ msgstr "프린터의 이름을 설정하십시오" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." -#~ msgstr "{machine_name}의 새로운 기능을 사용할 수 있습니다! 프린터의 펌웨어를 업데이트하는 것이 좋습니다." - -#~ msgctxt "@action:button" -#~ msgid "Print via Cloud" -#~ msgstr "Cloud를 통해 인쇄" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print via Cloud" -#~ msgstr "Cloud를 통해 인쇄" - -#~ msgctxt "@info:status" -#~ msgid "Connected via Cloud" -#~ msgstr "Cloud를 통해 연결됨" - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud에 연결" - -#~ msgctxt "@label" -#~ msgid "You need to login first before you can rate" -#~ msgstr "평가하기 전 먼저 로그인해야 함" - -#~ msgctxt "@label" -#~ msgid "You need to install the package before you can rate" -#~ msgstr "평가하기 전 패키지를 설치해야 함" - -#~ msgctxt "@label" -#~ msgid "ratings" -#~ msgstr "평가" - -#~ msgctxt "@label" -#~ msgid "Featured" -#~ msgstr "추천" - -#~ msgctxt "@label" -#~ msgid "Your rating" -#~ msgstr "귀하의 평가" - -#~ msgctxt "@label" -#~ msgid "Author" -#~ msgstr "원작자" - -#~ msgctxt "@description" -#~ msgid "Get plugins and materials verified by Ultimaker" -#~ msgstr "Ultimaker의 확인을 받은 플러그인과 재료를 경험해보십시오" - -#~ msgctxt "@label The argument is a username." -#~ msgid "Hi %1" -#~ msgstr "안녕하세요 %1" - -#~ msgctxt "@button" -#~ msgid "Ultimaker account" -#~ msgstr "Ultimaker 계정" - -#~ msgctxt "@button" -#~ msgid "Sign out" -#~ msgstr "로그아웃" - -#~ msgctxt "@label" -#~ msgid "Support library for analysis of complex networks" -#~ msgstr "복잡한 네트워크 분석을 위한 지원 라이브러리" - -#~ msgctxt "@Label" -#~ msgid "Python HTTP library" -#~ msgstr "Python HTTP 라이브러리" - -#~ msgctxt "@text:window" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to keep or discard those settings?" -#~ msgstr "" -#~ "일부 프로파일 설정을 수정했습니다.\n" -#~ "이러한 설정을 유지하거나 삭제 하시겠습니까?" - -#~ msgctxt "@title:column" -#~ msgid "Default" -#~ msgstr "기본값" - -#~ msgctxt "@title:column" -#~ msgid "Customized" -#~ msgstr "사용자 정의" - -#~ msgctxt "@action:button" -#~ msgid "Discard" -#~ msgstr "버리기" - -#~ msgctxt "@action:button" -#~ msgid "Keep" -#~ msgstr "유지" - -#~ msgctxt "@action:button" -#~ msgid "Create New Profile" -#~ msgstr "새 프로파일 만들기" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "&Save..." -#~ msgstr "저장(&S)..." - -#~ msgctxt "@text" -#~ msgid "Place enter your printer's IP address." -#~ msgstr "프린터의 IP 주소를 입력하십시오." - -#~ msgctxt "@button" -#~ msgid "Create an account" -#~ msgstr "계정 생성" - -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Do you want to sync material and software packages with your account?" -#~ msgstr "" -#~ "\n" -#~ "귀하의 계정으로 재료와 소프트웨어 패키지를 동기화하시겠습니까?" - -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Syncing..." -#~ msgstr "" -#~ "\n" -#~ "동기화 중..." - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder." -#~ msgstr "어떤 모델도 빌드 볼륨에 맞지 않으므로 슬라이스 할 수 없습니다. 크기에 맞게 모델을 위치시키거나 회전하거나, 또는 익스트루더를 활성화하십시오." - -#~ msgctxt "@info:backup_status" -#~ msgid "There was an error listing your backups." -#~ msgstr "백업 열거 중 오류가 있었습니다." - -#~ msgctxt "@title:groupbox" -#~ msgid "User description (Note: Developers may not speak your language, please use English if possible)" -#~ msgstr "사용자 설명(참고: 개발자가 다른 언어 사용자일 수 있으므로 가능하면 영어를 사용하십시오.)" - -#~ msgctxt "@title:window" -#~ msgid "Closing Cura" -#~ msgstr "Cura 닫기" - -#~ msgctxt "@label" -#~ msgid "Are you sure you want to exit Cura?" -#~ msgstr "Cura를 정말로 종료하시겠습니까?" - -#~ msgctxt "@label" -#~ msgid "Language:" -#~ msgstr "언어:" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud" - -#~ msgctxt "@text" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "차세대 3D 인쇄 워크플로" - -#~ msgctxt "@text" -#~ msgid "- Send print jobs to Ultimaker printers outside your local network" -#~ msgstr "- 로컬 네트워크 외부의 Ultimaker 프린터로 인쇄 작업 전송" - -#~ msgctxt "@text" -#~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere" -#~ msgstr "- 어디에서든 사용할 수 있도록 클라우드에 Ultimaker Cura 설정 저장" - -#~ msgctxt "@text" -#~ msgid "- Get exclusive access to print profiles from leading brands" -#~ msgstr "- 유수 브랜드의 인쇄 프로파일에 대한 독점적인 액세스 권한 얻기" - -#~ msgctxt "@label" -#~ msgid "The value is resolved from per-extruder values " -#~ msgstr "이 값은 익스트루더마다 결정됩니다 " - -#~ msgctxt "@label" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "차세대 3D 인쇄 워크플로" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to print profiles from leading brands" -#~ msgstr "" -#~ "- 인쇄 작업을 로컬 네트워크 외부의 Ultimaker 프린터로 전송하십시오\n" -#~ "- Ultimaker Cura 설정을 어디에서든 사용할 수 있도록 Cloud에 저장하십시오\n" -#~ "- 유수 브랜드의 인쇄 프로파일에 대한 독점적 액세스 권한을 얻으십시오" - -#~ msgctxt "@title:window" -#~ msgid "About " -#~ msgstr "정보 " - -#~ msgctxt "@info:button" -#~ msgid "Quit Cura" -#~ msgstr "Cura 끝내기" - -#~ msgctxt "@action:checkbox" -#~ msgid "Infill only" -#~ msgstr "내부채움 전용" - -#~ msgctxt "@info:tooltip" -#~ msgid "Change active post-processing scripts" -#~ msgstr "활성 사후 처리 스크립트 변경" - -#~ msgctxt "@label:listbox" -#~ msgid "Feedrate" -#~ msgstr "이송 속도" - -#~ msgctxt "name" -#~ msgid "Machine Settings action" -#~ msgstr "컴퓨터 설정 작업" - -#~ msgctxt "@info:title" -#~ msgid "New cloud printers found" -#~ msgstr "새 프린터를 찾을 수 없음" - -#~ msgctxt "@info:message" -#~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers." -#~ msgstr "새 프린터가 계정에 연결되어 있습니다. 발견한 프린터를 목록에서 찾을 수 있습니다." - -#~ msgctxt "@info:status" -#~ msgid "Cura does not accurately display layers when Wire Printing is enabled" -#~ msgstr "와이어 프린팅이 활성화되어 있을 때 Cura는 레이어를 정확하게 표시하지 않습니다" - -#~ msgctxt "@label" -#~ msgid "Pre-sliced file {0}" -#~ msgstr "미리 슬라이싱한 파일 {0}" - -#~ msgctxt "@label" -#~ msgid "" -#~ "This plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ "이 플러그인에는 라이선스가 포함되어 있습니다.\n" -#~ "이 플러그인을 설치하려면 이 라이선스를 수락해야 합니다.\n" -#~ "아래의 약관에 동의하시겠습니까?" - -#~ msgctxt "@action:button" -#~ msgid "Accept" -#~ msgstr "동의" - -#~ msgctxt "@action:button" -#~ msgid "Decline" -#~ msgstr "거절" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show All Settings" -#~ msgstr "모든 설정 보기" - -#~ msgctxt "@title:window" -#~ msgid "Ultimaker Cura" -#~ msgstr "Ultimaker Cura" - -#~ msgctxt "@title:window" -#~ msgid "About Cura" -#~ msgstr "Cura 소개" - -#~ msgctxt "@item:inmenu" -#~ msgid "Flatten active settings" -#~ msgstr "활성 설정 병합" - -#~ msgctxt "@info:status" -#~ msgid "Profile has been flattened & activated." -#~ msgstr "프로파일이 병합되고 활성화되었습니다." - -#~ msgctxt "X3g Writer Plugin Description" -#~ msgid "Writes X3g to files" -#~ msgstr "파일에 X3g 쓰기" - -#~ msgctxt "X3g Writer File Description" -#~ msgid "X3g File" -#~ msgstr "X3g 파일" - -#~ msgctxt "X3G Writer File Description" -#~ msgid "X3G File" -#~ msgstr "X3G 파일" - -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "프로파일 어시스턴트" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "프로파일 어시스턴트" - -#~ msgctxt "@action:button" -#~ msgid "Retry" -#~ msgstr "재시도" - -#~ msgctxt "@label:table_header" -#~ msgid "Print Core" -#~ msgstr "프린트 코어" - -#~ msgctxt "@label" -#~ msgid "Don't support overlap with other models" -#~ msgstr "다른 모델과 오버랩되도록 지원하지 않음" - -#~ msgctxt "@label" -#~ msgid "Modify settings for overlap with other models" -#~ msgstr "다른 모델과의 오버랩에 대한 설정 수정" - -#~ msgctxt "@label" -#~ msgid "Modify settings for infill of other models" -#~ msgstr "다른 모델의 내부채움에 대한 설정 수정" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update existing" -#~ msgstr "기존 업데이트" - -#~ msgctxt "@label" -#~ msgid "Not supported" -#~ msgstr "지원되지 않음" - -#~ msgctxt "@action:button" -#~ msgid "Previous" -#~ msgstr "이전" - -#~ msgctxt "@label" -#~ msgid "Tip" -#~ msgstr "팁" - -#~ msgctxt "@label" -#~ msgid "Print experiment" -#~ msgstr "인쇄 실험" - -#~ msgctxt "@label" -#~ msgid "Checklist" -#~ msgstr "체크리스트" - -#~ msgctxt "@label" -#~ msgid "Please select any upgrades made to this Ultimaker 2." -#~ msgstr "이 Ultimaker 2 업그레이드를 선택하십시오." - -#~ msgctxt "@label" -#~ msgid "Olsson Block" -#~ msgstr "Olsson Block" - -#~ msgctxt "@window:text" -#~ msgid "Camera rendering: " -#~ msgstr "카메라 렌더링: " - -#~ msgctxt "@info:tooltip" -#~ msgid "Use multi build plate functionality" -#~ msgstr "다수의 빌드 플레이트 사용하기" - -#~ msgctxt "@option:check" -#~ msgid "Use multi build plate functionality (restart required)" -#~ msgstr "다수의 빌드 플레이트 사용하기(다시 시작해야 합니다)" - -#~ msgctxt "@label" -#~ msgid "Default profiles" -#~ msgstr "기본 프로파일" - -#~ msgctxt "@label:textbox" -#~ msgid "search settings" -#~ msgstr "검색 설정" - -#~ msgctxt "@label" -#~ msgid "Layer Height" -#~ msgstr "레이어 높이" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile." -#~ msgstr "현재 재료 및 노즐 구성에 대해 이 품질 프로파일을 사용할 수 없습니다. 이 품질 프로파일을 활성화하려면 이를 변경하십시오." - -#~ msgctxt "@tooltip" -#~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" -#~ msgstr "사용자 지정 프로파일이 현재 활성 상태입니다. 품질 슬라이더를 실행하려면 사용자 지정 탭에서 기본 품질 프로파일을 선택하십시오" - -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "빌드 플레이트(&B)" - -#~ msgctxt "@title:settings" -#~ msgid "&Profile" -#~ msgstr "프로파일(&P)" - -#~ msgctxt "@action:label" -#~ msgid "Build plate" -#~ msgstr "빌드 플레이트" - -#~ msgctxt "description" -#~ msgid "Dump the contents of all settings to a HTML file." -#~ msgstr "모든 설정의 내용을 HTML 파일로 덤프하십시오." - -#~ msgctxt "name" -#~ msgid "God Mode" -#~ msgstr "God 모드" - -#~ msgctxt "description" -#~ msgid "Create a flattened quality changes profile." -#~ msgstr "평평한 품질 변경 프로필을 만듭니다." - -#~ msgctxt "name" -#~ msgid "Profile Flattener" -#~ msgstr "프로필 플래트너" - -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "재료 제조사가 드롭 인 UI를 사용하여 새로운 재료와 품질 프로파일을 만들 수 있게 합니다." - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "프린트 프로파일 어시스턴트" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network." -#~ msgstr "네트워크를 통해 연결됨." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. Please approve the access request on the printer." -#~ msgstr "네트워크를 통해 연결되었습니다. 프린터의 접근 요청을 승인하십시오." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. No access to control the printer." -#~ msgstr "네트워크를 통해 연결되었습니다. 프린터를 제어할 수 있는 권한이 없습니다." - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer requested. Please approve the request on the printer" -#~ msgstr "요청된 프린터에 대한 액세스. 프린터에서 요청을 승인하십시오" - -#~ msgctxt "@info:title" -#~ msgid "Authentication status" -#~ msgstr "인증 상태" - -#~ msgctxt "@info:title" -#~ msgid "Authentication Status" -#~ msgstr "인증 상태" - -#~ msgctxt "@info:tooltip" -#~ msgid "Re-send the access request" -#~ msgstr "접근 요청 다시 보내기" - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer accepted" -#~ msgstr "허용 된 프린터에 대한 접근 허용" - -#~ msgctxt "@info:status" -#~ msgid "No access to print with this printer. Unable to send print job." -#~ msgstr "이 프린터로 프린팅 할 수 없습니다. 프린팅 작업을 보낼 수 없습니다." - -#~ msgctxt "@action:button" -#~ msgid "Request Access" -#~ msgstr "접근 요청" - -#~ msgctxt "@info:tooltip" -#~ msgid "Send access request to the printer" -#~ msgstr "프린터에 접근 요청 보내기" - -#~ msgctxt "@label" -#~ msgid "Unable to start a new print job." -#~ msgstr "새 프린팅 작업을 시작할 수 없습니다." - -#~ msgctxt "@label" -#~ msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." -#~ msgstr "Ultimaker의 설정에 문제가 있어 프린팅을 시작할 수 없습니다. 계속하기 전에 이 문제를 해결하십시오." - -#~ msgctxt "@window:title" -#~ msgid "Mismatched configuration" -#~ msgstr "일치하지 않는 구성" - -#~ msgctxt "@label" -#~ msgid "Are you sure you wish to print with the selected configuration?" -#~ msgstr "선택한 구성으로 프린팅 하시겠습니까?" - -#~ msgctxt "@label" -#~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "프린터와 Cura의 설정이 일치하지 않습니다. 최상의 결과를 얻으려면 프린터에 삽입 된 PrintCores 및 재료로 슬라이싱을 하십시오." - -#~ msgctxt "@info:status" -#~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." -#~ msgstr "새로운 작업 전송 (일시적)이 차단되어 이전 프린팅 작업을 계속 보냅니다." - -#~ msgctxt "@info:status" -#~ msgid "Sending data to printer" -#~ msgstr "프린터로 데이터 보내기" - -#~ msgctxt "@info:title" -#~ msgid "Sending Data" -#~ msgstr "데이터 전송 중" - -#~ msgctxt "@info:status" -#~ msgid "No Printcore loaded in slot {slot_number}" -#~ msgstr "{slot_number} 슬롯에 로드 된 프린터코어가 없음" - -#~ msgctxt "@info:status" -#~ msgid "No material loaded in slot {slot_number}" -#~ msgstr "{slot_number}에 로드 된 재료가 없음" - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" -#~ msgstr "익스트루더 {extruder_id}에 대해 다른 프린터코어 (Cura : {cura_printcore_name}, 프린터 : {remote_printcore_name})가 선택되었습니다." - -#~ msgctxt "@label" -#~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "익스트루더 {2}에 다른 재료 (Cura : {0}, Printer : {1})가 선택됨" - -#~ msgctxt "@window:title" -#~ msgid "Sync with your printer" -#~ msgstr "프린터와 동기화" - -#~ msgctxt "@label" -#~ msgid "Would you like to use your current printer configuration in Cura?" -#~ msgstr "Cura에서 현재 프린터 구성을 사용 하시겠습니까?" - -#~ msgctxt "@label" -#~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "프린터의 PrintCores와 재료는 현재 프로젝트 내의 재료와 다릅니다. 최상의 결과를 얻으려면 프린터에 삽입 된 PrintCores 및 재료로 슬라이싱 하십시오." - -#~ msgctxt "@action:button" -#~ msgid "View in Monitor" -#~ msgstr "모니터에서 보기" - -#~ msgctxt "@info:status" -#~ msgid "Printer '{printer_name}' has finished printing '{job_name}'." -#~ msgstr "'{printer_name} 프린터가 '{job_name}' 프린팅을 완료했습니다." - -#~ msgctxt "@info:status" -#~ msgid "The print job '{job_name}' was finished." -#~ msgstr "인쇄 작업 ‘{job_name}’이 완료되었습니다." - -#~ msgctxt "@info:status" -#~ msgid "Print finished" -#~ msgstr "프린팅이 완료됨" - -#~ msgctxt "@label:material" -#~ msgid "Empty" -#~ msgstr "비어 있음" - -#~ msgctxt "@label:material" -#~ msgid "Unknown" -#~ msgstr "알 수 없음" - -#~ msgctxt "@info:title" -#~ msgid "Cloud error" -#~ msgstr "Cloud 오류" - -#~ msgctxt "@info:status" -#~ msgid "Could not export print job." -#~ msgstr "인쇄 작업을 내보낼 수 없음." - -#~ msgctxt "@info:description" -#~ msgid "There was an error connecting to the cloud." -#~ msgstr "Cloud 연결 시 오류가 있었습니다." - -#~ msgctxt "@info:status" -#~ msgid "Uploading via Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud를 통해 업로드하는 중" - -#~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud에 연결" - -#~ msgctxt "@action" -#~ msgid "Don't ask me again for this printer." -#~ msgstr "이 프린터에 대해 다시 물어보지 마십시오." - -#~ msgctxt "@info:status" -#~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "이제 Ultimaker 계정을 사용하여 어디에서든 인쇄 작업을 전송하고 모니터링할 수 있습니다." - -#~ msgctxt "@info:status" -#~ msgid "Connected!" -#~ msgstr "연결됨!" - -#~ msgctxt "@action" -#~ msgid "Review your connection" -#~ msgstr "연결 검토" - -#~ msgctxt "@info:status Don't translate the XML tags !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "프로필 {0}({1})에 정의된 제품이 현재 제품({2})과 일치하지 않으므로, 불러올 수 없습니다." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}:" -#~ msgstr "{0}에서 프로파일을 가져오지 못했습니다:" - -#~ msgctxt "@window:title" -#~ msgid "Existing Connection" -#~ msgstr "기존 연결" - -#~ msgctxt "@message:text" -#~ msgid "This printer/group is already added to Cura. Please select another printer/group." -#~ msgstr "이 프린터/그룹은 이미 Cura에 추가되었습니다. 다른 프린터/그룹을 선택하십시오." - -#~ msgctxt "@label" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "네트워크에 프린터의 IP 주소 또는 호스트 이름을 입력하십시오." - -#~ msgctxt "@info:tooltip" -#~ msgid "Connect to a printer" -#~ msgstr "프린터에 연결" - -#~ msgctxt "@title" -#~ msgid "Cura Settings Guide" -#~ msgstr "Cura 설정 가이드" - -#~ msgctxt "@info:tooltip" -#~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective." -#~ msgstr "직교 시점에서는 마우스 방향으로 확대가 지원되지 않습니다." - -#~ msgid "Orthogonal" -#~ msgstr "직교" - -#~ msgctxt "description" -#~ msgid "Manages network connections to Ultimaker 3 printers." -#~ msgstr "Ultimaker 3 프린터에 대한 네트워크 연결을 관리합니다." - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection" -#~ msgstr "UM3 네트워크 연결" - -#~ msgctxt "description" -#~ msgid "Provides extra information and explanations about settings in Cura, with images and animations." -#~ msgstr "이미지 및 애니메이션과 함께 Cura 설정에 대한 추가 정보와 설명을 제공합니다." - -#~ msgctxt "name" -#~ msgid "Settings Guide" -#~ msgstr "설정 가이드" - -#~ msgctxt "@item:inmenu" -#~ msgid "Cura Settings Guide" -#~ msgstr "Cura 설정 가이드" - -#~ msgctxt "@info:generic" -#~ msgid "Settings have been changed to match the current availability of extruders: [%s]" -#~ msgstr "현재 사용가능한 익스트루더: [% s]에 맞도록 설정이 변경되었습니다" - -#~ msgctxt "@title:groupbox" -#~ msgid "User description" -#~ msgstr "사용자 설명" - -#~ msgctxt "@info" -#~ msgid "These options are not available because you are monitoring a cloud printer." -#~ msgstr "Cloud 프린터를 모니터링하고 있기 때문에 이 옵션을 사용할 수 없습니다." - -#~ msgctxt "@label link to connect manager" -#~ msgid "Go to Cura Connect" -#~ msgstr "Cura Connect로 이동" - -#~ msgctxt "@info" -#~ msgid "All jobs are printed." -#~ msgstr "모든 작업이 인쇄됩니다." - -#~ msgctxt "@label link to connect manager" -#~ msgid "View print history" -#~ 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.\n" -#~ "\n" -#~ "Select your printer from the list below:" -#~ msgstr "" -#~ "네트워크를 통해 프린터로 직접 프린팅하려면 네트워크 케이블을 사용하거나 프린터를 WIFI 네트워크에 연결하여 프린터가 네트워크에 연결되어 있는지 확인하십시오. Cura를 프린터에 연결하지 않은 경우에도 USB 드라이브를 사용하여 g 코드 파일을 프린터로 전송할 수 있습니다\n" -#~ "\n" -#~ "아래 목록에서 프린터를 선택하십시오:" - -#~ 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." -#~ msgstr "" -#~ "프린터에 연결이 있는지 확인하십시오.\n" -#~ "- 프린터가 켜져 있는지 확인하십시오.\n" -#~ "- 프린터가 네트워크에 연결되어 있는지 확인하십시오." - -#~ msgctxt "@option:check" -#~ msgid "See only current build plate" -#~ msgstr "현재의 빌드 플레이트만 보기" - -#~ msgctxt "@action:button" -#~ msgid "Arrange to all build plates" -#~ msgstr "모든 빌드 플레이트 정렬" - -#~ msgctxt "@action:button" -#~ msgid "Arrange current build plate" -#~ msgstr "현재의 빌드 플레이트 정렬" - -#~ msgctxt "description" -#~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)." -#~ msgstr "결과로 생성된 슬라이스를 X3G 파일로 저장해, 이 형식을 읽는 프린터를 지원합니다(Malyan, Makerbot 및 다른 Sailfish 기반 프린터)." - -#~ msgctxt "name" -#~ msgid "X3GWriter" -#~ msgstr "X3GWriter" - -#~ msgctxt "description" -#~ msgid "Reads SVG files as toolpaths, for debugging printer movements." -#~ msgstr "프린터 이동 디버깅을 위해 Toolpath로 SVG 파일을 읽습니다." - -#~ msgctxt "name" -#~ msgid "SVG Toolpath Reader" -#~ msgstr "SVG Toolpath 리더기" - -#~ msgctxt "@item:inmenu" -#~ msgid "Changelog" -#~ msgstr "변경 내역" - -#~ msgctxt "@item:inmenu" -#~ msgid "Show Changelog" -#~ msgstr "변경 내역 표시" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to remote cluster" -#~ msgstr "원격 클러스터로 데이터 전송 중" - -#~ msgctxt "@info:status" -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud에 연결" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymized usage statistics." -#~ msgstr "Cura는 익명의 사용 통계를 수집합니다." - -#~ msgctxt "@info:title" -#~ msgid "Collecting Data" -#~ msgstr "데이터 수집" - -#~ msgctxt "@action:button" -#~ msgid "More info" -#~ msgstr "추가 정보" - -#~ msgctxt "@action:tooltip" -#~ msgid "See more information on what data Cura sends." -#~ msgstr "Cura가 전송하는 데이터에 대한 추가 정보를 확인하십시오." - -#~ msgctxt "@action:button" -#~ msgid "Allow" -#~ msgstr "허용" - -#~ msgctxt "@action:tooltip" -#~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." -#~ msgstr "Cura가 익명의 사용 통계를 보내 Cura에 대한 향후 개선을 우선화하는 데 도움을 줍니다. Cura 버전과 슬라이싱하는 모델의 해쉬 등 일부 환경설정 값이 발송됩니다." - -#~ msgctxt "@item:inmenu" -#~ msgid "Evaluation" -#~ msgstr "평가" - -#~ msgctxt "@info:title" -#~ msgid "Network enabled printers" -#~ msgstr "네트워크 프린터" - -#~ msgctxt "@info:title" -#~ msgid "Local printers" -#~ msgstr "로컬 프린터" - -#~ msgctxt "@info:backup_failed" -#~ msgid "Tried to restore a Cura backup that does not match your current version." -#~ msgstr "현재 버전과 일치하지 않는 Cura 백업을 복원하려고 시도했습니다." - -#~ msgctxt "@title" -#~ msgid "Machine Settings" -#~ msgstr "기기 설정" - -#~ msgctxt "@label" -#~ msgid "Printer Settings" -#~ msgstr "프린터 설정" - -#~ msgctxt "@option:check" -#~ msgid "Origin at center" -#~ msgstr "중앙이 원점" - -#~ msgctxt "@option:check" -#~ msgid "Heated bed" -#~ msgstr "히트 베드" - -#~ msgctxt "@label" -#~ msgid "Printhead Settings" -#~ msgstr "프린트헤드 설정" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "프린트 헤드 왼쪽에서 노즐 중심까지의 거리. \"한 번에 하나\"를 프린팅 할 때 이전 프린팅물과 프린팅 헤드 사이의 충돌을 방지하는 데 사용됩니다." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "프린트 헤드 전면에서 노즐 중앙까지의 거리. \"한 번에 하나\"를 프린팅 할 때 이전 프린팅물과 프린팅 헤드 사이의 충돌을 방지하는 데 사용됩니다." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "프린트 헤드의 오른쪽에서 노즐 중앙까지의 거리. \"한 번에 하나\"를 프린팅 할 때 이전 프린팅물과 프린팅 헤드 사이의 충돌을 방지하는 데 사용됩니다." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "프린트 헤드의 뒤쪽에서 노즐 중심까지의 거리. \"한 번에 하나\"를 프린팅 할 때 이전 프린팅물과 프린팅 헤드 사이의 충돌을 방지하는 데 사용됩니다." - -#~ msgctxt "@label" -#~ msgid "Gantry height" -#~ msgstr "갠트리 높이" - -#~ msgctxt "@tooltip" -#~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." -#~ msgstr "노즐 끝과 갠트리 시스템 사이의 높이 차이 (X 및 Y 축). \"한 번에 하나\"를 프린팅 할 때 이전 프린팅물과 갠트리 사이의 충돌을 방지하는 데 사용됩니다." - -#~ msgctxt "@label" -#~ msgid "Start G-code" -#~ msgstr "시작 Gcode" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very start." -#~ msgstr "시작시 Gcode 명령이 실행됩니다." - -#~ msgctxt "@label" -#~ msgid "End G-code" -#~ msgstr "종료 Gcode" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very end." -#~ msgstr "Gcode 명령어가 맨 마지막에 실행됩니다." - -#~ msgctxt "@label" -#~ msgid "Nozzle Settings" -#~ msgstr "노즐 설정" - -#~ msgctxt "@tooltip" -#~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." -#~ msgstr "프린터가 지원하는 필라멘트의 직경. 정확한 직경은 소재 및 / 또는 프로파일에 의해 덮어써집니다." - -#~ msgctxt "@label" -#~ msgid "Extruder Start G-code" -#~ msgstr "익스트루더 시작 Gcode" - -#~ msgctxt "@label" -#~ msgid "Extruder End G-code" -#~ msgstr "익스트루더 종료 Gcode" - -#~ msgctxt "@label" -#~ msgid "Changelog" -#~ msgstr "변경 내역" - -#~ msgctxt "@title:window" -#~ msgid "User Agreement" -#~ msgstr "사용자 계약" - -#~ msgctxt "@alabel" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "네트워크에 프린터의 IP 주소 또는 호스트 이름을 입력하십시오." - -#~ msgctxt "@info" -#~ msgid "Please select a network connected printer to monitor." -#~ msgstr "네트워크 연결 프린터를 선택하여 모니터링하십시오." - -#~ msgctxt "@info" -#~ msgid "Please connect your Ultimaker printer to your local network." -#~ msgstr "Ultimaker 프린터를 로컬 네트워크에 연결하십시오." - -#~ msgctxt "@text:window" -#~ msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent." -#~ msgstr "Cura는 인쇄 품질 및 사용자 환경을 개선하기 위해 익명 데이터를 Ultimaker로 전송합니다. 전송되는 모든 데이터에 대한 예는 다음과 같습니다." - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send this data" -#~ msgstr "이 데이터 전송을 원하지 않습니다" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending this data to Ultimaker and help us improve Cura" -#~ msgstr "이 데이터를 Ultimaker에 전송해 Cura 개선에 도움을 주고 싶습니다" - -#~ msgctxt "@label" -#~ msgid "No print selected" -#~ msgstr "선택한 인쇄 없음" - -#~ msgctxt "@info:tooltip" -#~ 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 "@title" -#~ msgid "Select Printer Upgrades" -#~ msgstr "프린터 업그레이드 선택" - -#~ msgctxt "@label" -#~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "서포트에 사용할 익스트루더를 선택하십시오. 이렇게 하면 모형 아래에 지지 구조가 만들어져 모델이 중간 공기에서 처지거나 프린팅되는 것을 방지합니다." - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "현재 재료 및 노즐 구성에 대해 이 품질 프로파일을 사용할 수 없습니다. 이 품질 프로파일을 활성화하려면 이를 변경하십시오" - -#~ msgctxt "@label shown when we load a Gcode file" -#~ msgid "Print setup disabled. G code file can not be modified." -#~ msgstr "인쇄 설정 비활성화됨. G 코드 파일을 수정할 수 없습니다." - -#~ msgctxt "@label" -#~ msgid "See the material compatibility chart" -#~ msgstr "재료 호환성 차트 보기" - -#~ msgctxt "@label" -#~ msgid "View types" -#~ msgstr "유형 보기" - -#~ msgctxt "@label" -#~ msgid "Hi " -#~ msgstr "안녕하세요 " - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to material profiles from leading brands" -#~ msgstr "" -#~ "- 인쇄 작업을 로컬 네트워크 외부의 Ultimaker 프린터로 전송하십시오\n" -#~ "- Ultimaker Cura 설정을 어디에서든 사용할 수 있도록 Cloud에 저장하십시오\n" -#~ "- 유수 브랜드의 재료 프로파일에 대한 독점적 액세스 권한을 얻으십시오" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Unable to Slice" -#~ msgstr "슬라이스 할 수 없음" - -#~ msgctxt "@label" -#~ msgid "Time specification" -#~ msgstr "시간 사양" - -#~ msgctxt "@label" -#~ msgid "Material specification" -#~ msgstr "재료 사양" - -#~ msgctxt "@title:tab" -#~ msgid "Add a printer to Cura" -#~ msgstr "Cura에 프린터 추가" - -#~ msgctxt "@title:tab" -#~ msgid "" -#~ "Select the printer you want to use from the list below.\n" -#~ "\n" -#~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog." -#~ msgstr "" -#~ "아래 목록에서 사용하고자 하는 프린터를 선택하십시오.\n" -#~ "\n" -#~ "프린터가 목록에 없을 경우 “사용자 정의” 범주에서 “사용자 정의 FFF 프린터\"를 사용하고 다음 대화 상자의 프린터와 일치하도록 설정을 조정하십시오." - -#~ msgctxt "@label" -#~ msgid "Printer Name" -#~ msgstr "프린터 이름" - -#~ msgctxt "@action:button" -#~ msgid "Add Printer" -#~ msgstr "프린터 추가" - -#~ msgid "Modify G-Code" -#~ msgstr "G 코드 수정" - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." -#~ msgstr "어떤 모델도 빌드 볼륨에 맞지 않으므로 슬라이스 할 수 없습니다. 크기에 맞게 모델을 회전하거나 회전하십시오." - -#~ msgctxt "@info:status" -#~ msgid "The selected material is incompatible with the selected machine or configuration." -#~ msgstr "선택한 재료가 선택한 기기 또는 구성과 호환되지 않습니다." - -#~ msgctxt "@info:title" -#~ msgid "Incompatible Material" -#~ msgstr "호환되지 않는 재료" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "{0}: {1} 에서 프로파일을 가져 오지 못했습니다" - -#~ msgctxt "@title" -#~ msgid "Toolbox" -#~ msgstr "도구 상자" - -#~ msgctxt "@label" -#~ msgid "Not available" -#~ msgstr "사용 불가" - -#~ msgctxt "@label" -#~ msgid "Unreachable" -#~ msgstr "연결할 수 없음" - -#~ msgctxt "@label" -#~ msgid "Available" -#~ msgstr "유효한" - -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "준비중인" - -#~ msgctxt "@label:status" -#~ msgid "Pausing" -#~ msgstr "일시 정지 중" - -#~ msgctxt "@label:status" -#~ msgid "Resuming" -#~ msgstr "다시 시작" - -#~ msgctxt "@label" -#~ msgid "Waiting for: Unavailable printer" -#~ msgstr "대기: 사용할 수 없는 프린터" - -#~ msgctxt "@label" -#~ msgid "Waiting for: First available" -#~ msgstr "대기: 첫 번째로 사용 가능" - -#~ msgctxt "@label" -#~ msgid "Waiting for: " -#~ msgstr "대기: " - -#~ msgctxt "@label" -#~ msgid "Configuration change" -#~ msgstr "구성 변경" - -#~ msgctxt "@label" -#~ msgid "The assigned printer, %1, requires the following configuration change(s):" -#~ msgstr "할당된 프린터 %1의 구성을 다음과 같이 변경해야 합니다:" - -#~ msgctxt "@label" -#~ msgid "Override" -#~ msgstr "무시하기" - -#~ msgctxt "@label" -#~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?" -#~ msgstr "호환되지 않는 구성이 있는 인쇄 작업을 시작하면 3D 프린터가 손상될 수 있습니다. 구성을 재정의하고 %1을(를) 인쇄하시겠습니까?" - -#~ msgctxt "@window:title" -#~ msgid "Override configuration configuration and start print" -#~ msgstr "구성 재정의 및 인쇄 시작" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage queue" -#~ msgstr "대기열 관리" - -#~ msgctxt "@label" -#~ msgid "Printing" -#~ msgstr "프린팅" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage printers" -#~ msgstr "프린터 관리" - -#~ msgctxt "@action:button" -#~ msgid "Activate Configuration" -#~ msgstr "설정 활성화" - -#~ msgctxt "@info:tooltip" -#~ msgid "Load the configuration of the printer into Cura" -#~ msgstr "Cura에 프린터 설정 로드" - -#~ msgctxt "@label" -#~ msgid "Show Travels" -#~ msgstr "이동 표시" - -#~ msgctxt "@label" -#~ msgid "Show Helpers" -#~ msgstr "도움말 보이기" - -#~ msgctxt "@label" -#~ msgid "Show Shell" -#~ msgstr "셸 표시" - -#~ msgctxt "@label" -#~ msgid "Show Infill" -#~ msgstr "내부채움 표시" - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send these data" -#~ msgstr "이러한 데이터 전송을 원하지 않습니다" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending these data to Ultimaker and help us improve Cura" -#~ msgstr "이러한 데이터를 Ultimaker에 전송해 Cura 개선에 도움을 주고 싶습니다" - -#~ msgctxt "@label" -#~ msgid "Printer type:" -#~ msgstr "프린터 유형 :" - -#~ msgctxt "@label" -#~ msgid "Connection:" -#~ msgstr "연결:" - -#~ msgctxt "@label" -#~ msgid "State:" -#~ msgstr "상태:" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for a printjob" -#~ msgstr "프린팅작업을 기다리는 중" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for someone to clear the build plate" -#~ msgstr "누군가가 빌드 플레이트를 치울 때까지 기다리는 중입니다" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Aborting print..." -#~ msgstr "프린팅 중단 중 ..." - -#~ msgctxt "@label" -#~ msgid "Protected profiles" -#~ msgstr "보호 된 프로파일" - -#~ msgctxt "@label" -#~ msgid "Printer Name:" -#~ msgstr "프린터 이름 :" - -#~ msgctxt "@label" -#~ msgid "Profile:" -#~ msgstr "프로파일:" - -#~ msgctxt "@label:textbox" -#~ msgid "Search..." -#~ msgstr "찾기..." - -#~ msgctxt "@action:inmenu" -#~ msgid "Collapse All" -#~ msgstr "모두 축소" - -#~ msgctxt "@action:inmenu" -#~ msgid "Expand All" -#~ msgstr "모두 확장" - -#~ msgctxt "@label:header configurations" -#~ msgid "Available configurations" -#~ msgstr "설정 활성화" - -#~ msgctxt "@label:extruder label" -#~ msgid "Extruder" -#~ msgstr "익스트루더" - -#~ msgctxt "@label:extruder label" -#~ msgid "Yes" -#~ msgstr "예" - -#~ msgctxt "@label:extruder label" -#~ msgid "No" -#~ msgstr "아니요" - -#~ msgctxt "@label:listbox" -#~ msgid "Print Setup" -#~ msgstr "프린팅 설정" - -#~ msgctxt "@label:listbox" -#~ msgid "" -#~ "Print Setup disabled\n" -#~ "G-code files cannot be modified" -#~ msgstr "" -#~ "프린팅 설정 사용 안 함\n" -#~ "G-코드 파일은 수정할 수 없습니다" - -#~ msgctxt "@label Hours and minutes" -#~ msgid "00h 00min" -#~ msgstr "00시간 00분" - -#~ msgctxt "@tooltip" -#~ msgid "Time specification" -#~ msgstr "시간 사양" - -#~ msgctxt "@label" -#~ msgid "Cost specification" -#~ msgstr "비용 사양" - -#~ msgctxt "@label" -#~ msgid "Total:" -#~ msgstr "총계:" - -#~ msgctxt "@tooltip" -#~ msgid "Recommended Print Setup

    Print with the recommended settings for the selected printer, material and quality." -#~ msgstr "권장 프린팅 설정

    선택한 프린터, 재료 및 품질에 대한 권장 설정으로 프린팅하십시오." - -#~ msgctxt "@tooltip" -#~ msgid "Custom Print Setup

    Print with finegrained control over every last bit of the slicing process." -#~ msgstr "사용자 정의 프린팅 설정

    미세하게 슬라이싱 설정을 조절하여 프린팅하십시오." - -#~ msgctxt "@action:inmenu menubar:help" -#~ msgid "Show Engine &Log..." -#~ msgstr "엔진 로그 표시..." - -#~ msgctxt "@action:menu" -#~ msgid "Browse packages..." -#~ msgstr "패키지 찾아보기..." - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "Expand/Collapse Sidebar" -#~ msgstr "사이드바 확장/축소" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3D model" -#~ msgstr "3D 모델을 로드하십시오" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Ready to slice" -#~ msgstr "슬라이스 준비 완료" - -#~ msgctxt "@label:PrintjobStatus %1 is target operation" -#~ msgid "Ready to %1" -#~ msgstr "%1 준비 완료" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Slicing unavailable" -#~ msgstr "슬라이스 사용 불가" - -#~ msgctxt "@info:tooltip" -#~ msgid "Slice current printjob" -#~ msgstr "현재 프린트작업 슬라이스" - -#~ msgctxt "@info:tooltip" -#~ msgid "Cancel slicing process" -#~ msgstr "슬라이싱 프로세스 취소" - -#~ msgctxt "@label:Printjob" -#~ msgid "Prepare" -#~ msgstr "준비" - -#~ msgctxt "@label:Printjob" -#~ msgid "Cancel" -#~ msgstr "취소" - -#~ msgctxt "@info:tooltip" -#~ msgid "Select the active output device" -#~ msgstr "활성 출력 장치 선택" - -#~ msgctxt "@title:menu" -#~ msgid "&View" -#~ msgstr "보기(&V)" - -#~ msgctxt "@title:menu" -#~ msgid "&Settings" -#~ msgstr "설정(&S)" - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "&Toolbox" -#~ msgstr "도구 상자(&T)" - -#~ msgctxt "@action:button" -#~ msgid "Open File" -#~ msgstr "파일 열기" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "이 품질 프로파일은 현재 재료 및 노즐 설정에 사용할 수 없습니다. 이 품질 프로파일을 사용하려면 이 값을 변경하십시오" - -#~ msgctxt "@label" -#~ msgid "Print Speed" -#~ msgstr "프린팅 속도" - -#~ msgctxt "@label" -#~ msgid "Slower" -#~ msgstr "천천히" - -#~ msgctxt "@label" -#~ msgid "Faster" -#~ msgstr "빨리" - -#~ msgctxt "@label" -#~ msgid "Enable gradual" -#~ msgstr "점진적으로 사용" - -#~ msgctxt "@label" -#~ msgid "Generate Support" -#~ msgstr "서포트 생성" - -#~ msgctxt "@label" -#~ msgid "Build Plate Adhesion" -#~ msgstr "빌드 플레이트 고정" - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints?
    Read the Ultimaker Troubleshooting Guides" -#~ msgstr "프린팅물 개선에 도움이 필요하십니까?Ultimaker Troubleshooting Guides 읽기" - -#~ msgctxt "@title:window" -#~ msgid "Engine Log" -#~ msgstr "엔진 로그" - -#~ msgctxt "@label" -#~ msgid "Printer type" -#~ msgstr "프린터 유형" - -#~ msgctxt "@label" -#~ msgid "Use glue with this material combination" -#~ msgstr "이 재료 조합과 함께 접착제를 사용하십시오" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "호환성 확인" - -#~ msgctxt "@tooltip" -#~ msgid "Click to check the material compatibility on Ultimaker.com." -#~ msgstr "Ultimaker.com의 재료 호환성을 확인하려면 클릭하십시오." - -#~ msgctxt "description" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "최신 체크 버전 이후로 변경 사항을 표시합니다." - -#~ msgctxt "name" -#~ msgid "Changelog" -#~ msgstr "변경 내역" - -#~ msgctxt "description" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "Create a flattend quality changes profile." - -#~ msgctxt "name" -#~ msgid "Profile flatener" -#~ msgstr "Profile flatener" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license." -#~ msgstr "사용자에게 라이선스에 동의하는지 한 번 묻습니다." - -#~ msgctxt "name" -#~ msgid "UserAgreement" -#~ msgstr "사용자 계약" - -#~ msgctxt "@warning:status" -#~ msgid "Please generate G-code before saving." -#~ msgstr "저장하기 전에 G-code를 생성하십시오." - -#~ msgctxt "@action" -#~ msgid "Upgrade Firmware" -#~ msgstr "펌웨어 업그레이드" - -#~ msgctxt "@label unknown material" -#~ msgid "Unknown" -#~ msgstr "알 수 없음" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "No custom profile to import in file {0}" -#~ msgstr "{0} 로 가져올 사용자 정의 프로파일이 없습니다" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "This profile {0} contains incorrect data, could not import it." -#~ msgstr "프로파일 {0} 에는 정확하지 않은 데이터가 포함되어 있으므로, 불러올 수 없습니다." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "The machine defined in profile {0} ({1}) doesn’t match with your current machine ({2}), could not import it." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall " -#~ msgstr "제거 확인 " - -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - -#~ msgctxt "@title" -#~ msgid "Upgrade Firmware" -#~ msgstr "펌웨어 업그레이드" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Doodle3D WiFi-Box로 프린팅" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Doodle3D WiFi-Box로 프린팅" - -#~ msgctxt "@info:status" -#~ msgid "Connecting to Doodle3D Connect" -#~ msgstr "Doodle3D Connect에 연결" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to Doodle3D Connect" -#~ msgstr "Doodle3D Connect에 데이터 보내기" - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -#~ msgstr "Doodle3D Connect에 데이터를 보낼 수 없습니다. 다른 작업이 진행중인가요?" - -#~ msgctxt "@info:status" -#~ msgid "Storing data on Doodle3D Connect" -#~ msgstr "Doodle3D Connect에 데이터 저장" - -#~ msgctxt "@info:status" -#~ msgid "File sent to Doodle3D Connect" -#~ msgstr "Doodle3D Connect에 파일 전송" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect..." -#~ msgstr "Connect 열기..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Open the Doodle3D Connect web interface" -#~ msgstr "Doodle3D Connect 웹 인터페이스 열기" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Blender file" -#~ msgstr "Blender 파일" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Could not export using \"{}\" quality!\n" -#~ "Felt back to \"{}\"." -#~ msgstr "" -#~ "\"{}\" 품질을 사용하여 내보낼 수 없습니다!\n" -#~ " \"{}\"(으)로 돌아갑니다." - -#~ msgctxt "@label" -#~ msgid "Contact" -#~ msgstr "연락처" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." -#~ msgstr "이 프린터는 Ultimaker 3 프린터 그룹을 호스트하도록 설정되지 않았습니다." - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -#~ msgstr "이 프린터는 %1 Ultimaker 3 프린터 그룹의 호스트입니다." - -#~ msgctxt "@label: arg 1 is group name" -#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "%1은 연결된 Ultimaker 3에 연결된 프린터 그룹을 호스트하도록 설정되지 않았습니다" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Add/Remove printers" -#~ msgstr "프린터 추가/제거" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "프린팅 작업 페이지를 기본 웹 브라우저로 엽니다." - -#~ msgctxt "@action:button" -#~ msgid "View print jobs" -#~ msgstr "프린팅 작업보기" - -#~ msgctxt "@label:status" -#~ msgid "Preparing to print" -#~ msgstr "프린팅 준비" - -#~ msgctxt "@label:status" -#~ msgid "Available" -#~ msgstr "유효한" - -#~ msgctxt "@label:status" -#~ msgid "Lost connection with the printer" -#~ msgstr "프린터와의 연결이 끊어졌습니다" - -#~ msgctxt "@label:status" -#~ msgid "Unknown" -#~ msgstr "알 수 없음" - -#~ msgctxt "@label:status" -#~ msgid "Disabled" -#~ msgstr "사용 중지됨" - -#~ msgctxt "@label:status" -#~ msgid "Reserved" -#~ msgstr "예약된" - -#~ msgctxt "@label" -#~ msgid "Preparing to print" -#~ msgstr "프린팅 준비" - -#~ msgctxt "@label:status" -#~ msgid "Print aborted" -#~ msgstr "프린터가 중단됨" - -#~ msgctxt "@label" -#~ msgid "Not accepting print jobs" -#~ msgstr "프린팅 작업을 수락하지 않음" - -#~ msgctxt "@label" -#~ msgid "Finishes at: " -#~ msgstr "종료시간 : " - -#~ msgctxt "@label" -#~ msgid "Clear build plate" -#~ msgstr "빌드 플레이트를 정리하십시오" - -#~ msgctxt "@label" -#~ msgid "Waiting for configuration change" -#~ msgstr "설정 변경 대기중" - -#~ msgctxt "@title" -#~ msgid "Print jobs" -#~ msgstr "프린팅 작업" - -#~ msgctxt "@label:title" -#~ msgid "Printers" -#~ msgstr "프린터" - -#~ msgctxt "@action:button" -#~ msgid "View printers" -#~ msgstr "프린터 보기" - -#~ msgctxt "@label:" -#~ msgid "Pause" -#~ msgstr "중지" - -#~ msgctxt "@label:" -#~ msgid "Resume" -#~ msgstr "재개" - -#~ msgctxt "@label:" -#~ msgid "Abort Print" -#~ msgstr "프린팅 중단" - -#~ msgctxt "@option:openProject" -#~ msgid "Always ask" -#~ msgstr "항상 물어보기" - -#~ msgctxt "@label" -#~ msgid "Override Profile" -#~ msgstr "프로파일 덮어쓰기" - -#~ msgctxt "@info:tooltip" -#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -#~ msgstr "새롭게 로드한 모델을 빌드 플레이트에 정렬할까요? 다수의 빌드 플레이트 사용(실험적 설정)" - -#~ msgctxt "@option:check" -#~ msgid "Do not arrange objects on load" -#~ msgstr "로드 중인 대상물을 정렬하지 마십시오" - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Save Selection to File" -#~ msgstr "선택 사항을 파일에 저장" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &As..." -#~ msgstr "다른 이름으로 저장..." - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &Project..." -#~ msgstr "프로젝트 저장(&P)..." - -#~ msgctxt "@label" -#~ msgid "Use adhesion sheet or glue with this material combination" -#~ msgstr "이 재료 조합과 함께 접착 시트 또는 접착제를 사용하십시오" - -#~ msgctxt "description" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "G-코드를 받아서 WiFi를 통해 Doodle3D WiFi-Box로 보냅니다." - -#~ msgctxt "name" -#~ msgid "Doodle3D WiFi-Box" -#~ msgstr "Doodle 3D WiFi-Box" - -#~ msgctxt "description" -#~ msgid "Provides an edit window for direct script editing." -#~ msgstr "직접 스크립트 편집을 위한 편집창 제공." - -#~ msgctxt "name" -#~ msgid "Live scripting tool" -#~ msgstr "라이브 스크립팅 도구" - -#~ msgctxt "description" -#~ msgid "Helps to open Blender files directly in Cura." -#~ msgstr "Cura에서 직접 Blender 파일을 열도록 도와줍니다." - -#~ msgctxt "name" -#~ msgid "Blender Integration (experimental)" -#~ msgstr "Blender 통합(실험 중)" - -#~ msgctxt "@info:title" -#~ msgid "Model Checker Warning" -#~ msgstr "모델 검사기 경고" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n" -#~ "Tips that may be useful to improve the print quality:\n" -#~ "1) Use rounded corners.\n" -#~ "2) Turn the fan off (only if there are no tiny details on the model).\n" -#~ "3) Use a different material." -#~ msgstr "" -#~ "모델의 크기 및 재질 {model_names} 때문에 일부 모델이 최적으로 인쇄되지 않을 수 있습니다.\n" -#~ "인쇄 품질을 향상시키는 데 유용한 팁 :\n" -#~ "1) 둥근 모서리를 사용하십시오.\n" -#~ "2) 팬을 끄십시오 (모델에 작은 세부 사항이없는 경우에만).\n" -#~ "3) 다른 재료를 사용하십시오." - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "파일을 여는 도중 SolidWorks가 오류 보고를 했습니다. SolidWorks 자체에서 이 문제를 해결하도록 권장합니다." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ "Thanks!" -#~ msgstr "" -#~ "도면에 모델이 없습니다. 내부에 하나의 부품이나 조립만 있는지 확인하시겠습니까?\n" -#~ "\n" -#~ " 감사합니다!" - -#~ 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" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "도면에 하나 이상의 부품 또는 조립이 있습니다. 현재 버전은 하나의 부품 또는 조립만 있는 도면을 지원합니다.\n" -#~ "\n" -#~ "죄송합니다!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks part file" -#~ msgstr "SolidWorks 부품 파일" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks assembly file" -#~ msgstr "SolidWorks 어셈블리 파일" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks drawing file" -#~ msgstr "SolidWorks 도면 파일" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "안녕하십니까,\n" -#~ "귀하의 시스템에 유효한 SolidWorks를 찾을 수 없습니다. 이는 곧 SolidWorks가 설치되어 있지 않거나 유효한 라이센스가 없음을 의미합니다. SolidWorks가 문제없이 실행될 수 있도록 해주시고 그리고/또는 귀사의 ICT에 연락해 주십시오.\n" -#~ "\n" -#~ "감사합니다.\n" -#~ " - Thomas Karl Pietrowski" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "안녕하십니까,\n" -#~ "귀하는 현재 Windows가 아닌 다른 운영 시스템에서 이 플러그인을 실행 중입니다. 이 플러그인은 유효한 라이센스가 있는 SolidWorks가 설치된 Windows에서만 사용 가능합니다. 이 플러그인을 SolidWorks가 설치된 Windows 컴퓨터에 설치하십시오.\n" -#~ "\n" -#~ "감사합니다\n" -#~ " - Thomas Karl Pietrowski" - -#~ msgid "Configure" -#~ msgstr "구성" - -#~ msgid "Installation guide for SolidWorks macro" -#~ msgstr "SolidWorks 매크로 설치 가이드" - -#~ msgctxt "@action:button" -#~ msgid "Disable" -#~ msgstr "사용 안함" - -#~ msgctxt "@action:tooltip" -#~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences." -#~ msgstr "Cura가 익명의 사용 통계를 보내지 않게 합니다. 환경 설정에서 다시 활성화 시킬 수 있습니다." - -#~ msgid "Install" -#~ msgstr "설치" - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory." -#~ msgstr "Siemens NX 플러그인 파일을 복사하지 못했습니다. UGII_USER_DIR을 확인하십시오. 디렉터리에 할당되지 않았습니다." - -#~ msgid "Successfully installed Siemens NX Cura plugin." -#~ msgstr "Siemens NX Cura 플러그인을 성공적으로 설치했습니다." - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR." -#~ msgstr "Siemens NX 플러그인 파일을 복사하지 못했습니다. UGII_USER_DIR을 확인하십시오." - -#~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX." -#~ msgstr "Siemens NX 플러그인을 설치하지 못했습니다. Siemens NX의 환경 변수 UGII_USER_DIR을 설정할 수 없습니다." - -#~ msgctxt "@info:status" -#~ msgid "Failed to get plugin ID from {0}" -#~ msgstr "{0} 에서 플러그인 ID를 가져 오는 데 실패했습니다" - -#~ msgctxt "@info:tile" -#~ msgid "Warning" -#~ msgstr "경고" - -#~ msgctxt "@window:title" -#~ msgid "Plugin browser" -#~ msgstr "플러그인 브라우저" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 확장판" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks: Export wizard" -#~ msgstr "SolidWorks: 내보내기 마법사" - -#~ msgctxt "@action:label" -#~ msgid "Quality:" -#~ msgstr "품질:" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (3D-printing)" -#~ msgstr "고품질 (3D-프린팅)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (3D-printing)" -#~ msgstr "저품질 (3D-프린팅)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (SolidWorks)" -#~ msgstr "고품질 (SolidWorks)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (SolidWorks)" -#~ msgstr "저품질 (SolidWorks)" - -#~ msgctxt "@text:window" -#~ msgid "Show this dialog again" -#~ msgstr "이 대화창을 다시 표시" - -#~ msgctxt "@action:button" -#~ msgid "Continue" -#~ msgstr "계속" - -#~ msgctxt "@action:button" -#~ msgid "Abort" -#~ msgstr "중단" - -#~ msgctxt "@title:window" -#~ msgid "How to install Cura SolidWorks macro" -#~ msgstr "Cura SolidWorks 매크로 설치 방법" - -#~ msgctxt "@description:label" -#~ msgid "Steps:" -#~ msgstr "단계:" - -#~ msgctxt "@action:button" -#~ msgid "" -#~ "Open the directory\n" -#~ "with macro and icon" -#~ msgstr "" -#~ "매크로와 아이콘으로\n" -#~ "디렉토리 열기" - -#~ msgctxt "@description:label" -#~ msgid "Instructions:" -#~ msgstr "안내:" - -#~ msgctxt "@action:playpause" -#~ msgid "Play" -#~ msgstr "재생" - -#~ msgctxt "@action:playpause" -#~ msgid "Pause" -#~ msgstr "중지" - -#~ msgctxt "@action:button" -#~ msgid "Previous Step" -#~ msgstr "이전 단계" - -#~ msgctxt "@action:button" -#~ msgid "Done" -#~ msgstr "완료" - -#~ msgctxt "@action:button" -#~ msgid "Next Step" -#~ msgstr "다음 단계" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks plugin: Configuration" -#~ msgstr "SolidWorks 플러그인: 구성" - -#~ msgctxt "@title:tab" -#~ msgid "Conversion settings" -#~ msgstr "변환 설정" - -#~ msgctxt "@label" -#~ msgid "First choice:" -#~ msgstr "첫 번째 선택:" - -#~ msgctxt "@text:menu" -#~ msgid "Latest installed version (Recommended)" -#~ msgstr "가장 최근 설치 버전(권장)" - -#~ msgctxt "@text:menu" -#~ msgid "Default version" -#~ msgstr "기본 버전" - -#~ msgctxt "@label" -#~ msgid "Show wizard before opening SolidWorks files" -#~ msgstr "SolidWorks 파일을 열기 전 마법사 표시" - -#~ msgctxt "@label" -#~ msgid "Automatically rotate opened file into normed orientation" -#~ msgstr "열린 파일을 규정된 방향으로 자동 회전" - -#~ msgctxt "@title:tab" -#~ msgid "Installation(s)" -#~ msgstr "설치" - -#~ msgctxt "@label" -#~ msgid "COM service found" -#~ msgstr "COM 서비스 발견" - -#~ msgctxt "@label" -#~ msgid "Executable found" -#~ msgstr "실행가능 발견" - -#~ msgctxt "@label" -#~ msgid "COM starting" -#~ msgstr "COM 시작" - -#~ msgctxt "@label" -#~ msgid "Revision number" -#~ msgstr "수정 번호" - -#~ msgctxt "@label" -#~ msgid "Functions available" -#~ msgstr "사용가능한 기능" - -#~ msgctxt "@label (%1 is object name)" -#~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?" -#~ msgstr "새 재료의 지름은 현재 기기와 호환되지 않는 % 1mm입니다. 계속 하시겠습니까?" - -#~ msgctxt "@action:menu" -#~ msgid "Browse plugins..." -#~ msgstr "플러그인 찾아보기..." - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "P&lugins" -#~ msgstr "플러그인" - -#~ msgctxt "@window:title" -#~ msgid "Install Plugin" -#~ msgstr "플러그인 설치" - -#~ msgctxt "description" -#~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)" -#~ msgstr "기기 설정 (예 : 빌드 볼륨, 노즐 크기 등)을 변경하는 방법을 제공합니다." - -#~ msgctxt "description" -#~ msgid "Manages network connections to Ultimaker 3 printers" -#~ msgstr "Ultimaker 3 프린터에 대한 네트워크 연결을 관리합니다" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations." -#~ msgstr "SolidWorks를 사용하여 특정 파일을 열 수 있는 가능성을 제공합니다. 이 플러그인과 추가적인 최적화를 통해 변환합니다." - -#~ msgctxt "name" -#~ msgid "SolidWorks Integration" -#~ msgstr "SolidWorks 통합" - -#~ msgctxt "description" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "변경 후 환경 설정, 기기 및 프로파일을 자동으로 저장합니다." - -#~ msgctxt "name" -#~ msgid "Auto Save" -#~ msgstr "자동 저장" - -#~ msgctxt "description" -#~ msgid "Helps you to install an 'export to Cura' button in Siemens NX." -#~ msgstr "Siemens NX에서 'Cura로 내보내기' 버튼을 설치할 수 있습니다." - -#~ msgctxt "name" -#~ msgid "Siemens NX Integration" -#~ msgstr "Siemens NX 통합" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new plugins." -#~ msgstr "새 플러그인을 찾고, 관리하고 설치하십시오." - -#~ msgctxt "name" -#~ msgid "Plugin Browser" -#~ msgstr "플러그인 브라우저" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license" -#~ msgstr "사용자에게 라이선스에 동의하는지 한 번 묻습니다" - -#~ msgctxt "description" -#~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)" -#~ msgstr "Ultimaker에 대한 기기 동작 제공(예 : 베드 수평조정 마법사, 업그레이드 선택 등)" - -#~ msgctxt "@item:inlistbox" -#~ msgid "GCode File" -#~ msgstr "GCode 파일" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer is busy or not connected." -#~ msgstr "프린터가 사용 중이거나 연결되어 있지 않아 작업을 시작할 수 없습니다." - -#~ msgctxt "@info:title" -#~ msgid "Printer Unavailable" -#~ msgstr "프린터 사용 불가" - -#~ msgctxt "@info:status" -#~ msgid "This printer does not support USB printing because it uses UltiGCode flavor." -#~ msgstr "이 프린터는 UltiGCode flavor를 사용하기 때문에 USB 프린팅를 지원하지 않습니다." - -#~ msgctxt "@info:title" -#~ msgid "USB Printing" -#~ msgstr "USB 프린팅" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer does not support usb printing." -#~ msgstr "프린터가 USB 프린팅를 지원하지 않기 때문에 새 작업을 시작할 수 없습니다." - -#~ msgctxt "@info" -#~ msgid "Unable to update firmware because there are no printers connected." -#~ msgstr "프린터가 연결되어 있지 않팅으므로 펌웨어를 업데이트 할 수 없습니다." - -#~ msgctxt "@info" -#~ msgid "Could not find firmware required for the printer at %s." -#~ msgstr "%s 프린터에 필요한 펌웨어를 찾을 수 없습니다." - -#~ msgctxt "@info:title" -#~ msgid "Printer Firmware" -#~ msgstr "프린터 펌웨어" - -#~ msgctxt "@info:title" -#~ msgid "Connection status" -#~ msgstr "연결 상태" - -#~ msgctxt "@info:title" -#~ msgid "Connection Status" -#~ msgstr "연결 상태" - -#~ msgctxt "@info:status" -#~ msgid "Access request was denied on the printer." -#~ msgstr "접근 요청이 프린터에서 거부되었습니다." - -#~ msgctxt "@info:status" -#~ msgid "Access request failed due to a timeout." -#~ msgstr "접근 요청이 시간 초과로 인해 실패했습니다." - -#~ msgctxt "@info:status" -#~ msgid "The connection with the network was lost." -#~ msgstr "네트워크 연결이 끊어졌습니다." - -#~ msgctxt "@info:status" -#~ msgid "The connection with the printer was lost. Check your printer to see if it is connected." -#~ msgstr "프린터와의 연결이 끊어졌습니다. 프린터가 연결되어 있는지 확인하십시오." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s." -#~ msgstr "프린터가 사용중이라 새 프린팅 작업을 시작할 수 없습니다. 현재 프린터 상태는 %s 입니다." - -#~ msgctxt "@info:title" -#~ msgid "Printer Status" -#~ msgstr "프린터 상태" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}" -#~ msgstr "새 프린팅 작업을 시작할 수 없습니다. 슬롯 {0}에 로드된 Printcore가 없습니다." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No material loaded in slot {0}" -#~ msgstr "새 프린팅 작업을 시작할 수 없습니다. 슬롯 {0}에 로드 된 재료 없음" - -#~ msgctxt "@label" -#~ msgid "Not enough material for spool {0}." -#~ msgstr "스풀 {0}의 재료가 충분하지 않습니다." - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "익스트루더 {2}에 다른 PrintCore (Cura : {0}, Printer : {1})가 선택됨" - -#~ msgctxt "@label" -#~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "PrintCore {0}가 올바르게 조정되지 않았습니다. XY 교정은 프린터에서 수행해야 합니다." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to printer. Is another job still active?" -#~ msgstr "프린터로 데이터를 보낼 수 없습니다. 다른 작업이 여전히 작동중인가요?" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Print aborted. Please check the printer" -#~ msgstr "프린팅가 중단되었습니다. 프린터를 확인하십시오" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Pausing print..." -#~ msgstr "프린팅 일시 중지 중 ..." - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Resuming print..." -#~ msgstr "프린팅 재개 중 ..." - -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "이 프린터는 연결된 Ultimaker 3 프린터 그룹을 호스트하도록 설정되어 있지 않습니다." - -#~ msgctxt "Count is number of printers." -#~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers." -#~ msgstr "이 프린터는 연결된 Ultimaker 3 프린터 {count} 그룹을 호스트하도록 설정되어 있습니다." - -#~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate." -#~ msgstr "{printer_name} 프린터가 ‘{job_name}’ 프린팅을 완료했습니다. 프린팅물을 수거하고 빌드 플레이트를 치우십시오." - -#~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing." -#~ msgstr "'{job_name}'을 프린팅하기 위해 {printer_name}이 예약되어 있습니다. 프린팅를 시작하려면 프린터의 구성을 작업에 맞게 변경하십시오." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "새로운 프린팅 작업을 보낼 수 없습니다 :이 3D 프린터는 아직 연결된 Ultimaker 3 프린터 그룹을 호스트하도록 설정되지 않았습니다." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send print job to group {cluster_name}." -#~ msgstr "{cluster_name} 그룹에 프린팅 작업을 보낼 수 없습니다." - -#~ msgctxt "@info:status" -#~ msgid "Sent {file_name} to group {cluster_name}." -#~ msgstr "{file_name}을 {cluster_name} 그룹에 보냈습니다." - -#~ msgctxt "@action:button" -#~ msgid "Show print jobs" -#~ msgstr "프린팅 작업 표시" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs interface in your browser." -#~ msgstr "브라우저에서 프린팅 작업 인터페이스를 엽니다." - -#~ msgctxt "@label Printer name" -#~ msgid "Unknown" -#~ msgstr "알 수 없음" - -#~ msgctxt "@info:progress" -#~ msgid "Sending {file_name} to group {cluster_name}" -#~ msgstr "{file_name} 을 {cluster_name} 그룹에 보냄" - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "파일을 여는 도중 SolidWorks가 오류 보고. SolidWorks 자체에서 이 문제를 해결하도록 권장합니다." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ " Thanks!." -#~ msgstr "" -#~ "도면에 모델이 없습니다. 내용을 다시 확인하시고 내부에 하나의 부품이나 조립만 있는지 확인하시겠습니까?\n" -#~ "\n" -#~ " 감사합니다!." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "도면에 하나 이상의 부품 또는 조립이 있습니다. 저희는 현재 정확하게 하나의 부품 또는 조립만 있는 도면을 지원합니다.\n" -#~ "\n" -#~ "죄송합니다!" - -#~ msgctxt "@item:material" -#~ msgid "No material loaded" -#~ msgstr "로드 된 재료가 없음" - -#~ msgctxt "@item:material" -#~ msgid "Unknown material" -#~ msgstr "알 수 없는 재료" - -#~ msgctxt "@info:status Has a cancel button next to it." -#~ msgid "The selected material diameter causes the material to become incompatible with the current printer." -#~ msgstr "선택한 재료 직경으로 인해 재료가 현재 프린터와 호환되지 않습니다." - -#~ msgctxt "@action:button" -#~ msgid "Undo" -#~ msgstr "되돌리기" - -#~ msgctxt "@action" -#~ msgid "Undo changing the material diameter." -#~ msgstr "변경한 재료의 직경 되돌리기." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} doesn't match with your current machine, could not import it." -#~ msgstr "프로파일 {0}에 정의된 기기가 현재 기기와 일치하지 않으므로, 불러올 수 없습니다." - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal error has occurred. 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" -#~ "

    \"보고서 전송\" 버튼을 사용하면 버그 보고서가 서버에 자동으로 게시됩니다

    \n" -#~ " " - -#~ msgctxt "@label" -#~ msgid "not yet initialised
    " -#~ msgstr "아직 초기화되지 않음
    " - -#~ msgctxt "@label" -#~ msgid "Gcode flavor" -#~ msgstr "Gcode 유형" - -#~ msgctxt "@label" -#~ msgid "Start Gcode" -#~ msgstr "스타트 Gcode" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very start." -#~ msgstr "시작시 Gcode 명령이 실행됩니다." - -#~ msgctxt "@label" -#~ msgid "End Gcode" -#~ msgstr "Gcode 끝내기" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very end." -#~ msgstr "Gcode 명령어가 맨 마지막에 실행됩니다." - -#~ msgctxt "@label" -#~ msgid "Extruder Start Gcode" -#~ msgstr "익스트루더 스타트 Gcode" - -#~ msgctxt "@label" -#~ msgid "Extruder End Gcode" -#~ msgstr "익스트루더 종료 Gcode" - -#~ msgctxt "@label" -#~ msgid "Starting firmware update, this may take a while." -#~ msgstr "펌웨어 업데이트를 시작하는 데 시간이 걸릴 수 있습니다." - -#~ msgctxt "@label" -#~ msgid "Unknown error code: %1" -#~ msgstr "알 수 없는 오류 코드 : % 1" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@label Printer status" -#~ msgid "Unknown" -#~ msgstr "알 수 없음" - -#~ msgctxt "@title:window" -#~ msgid "Find & Update plugins" -#~ msgstr "플러그인 찾기 및 업데이트" - -#~ msgctxt "@label" -#~ msgid "Here you can find a list of Third Party plugins." -#~ msgstr "여기서 써드파타 플러그인 목록을 찾을 수 있습니다." - -#~ msgctxt "@action:button" -#~ msgid "Upgrade" -#~ msgstr "업그레이드" - -#~ msgctxt "@action:button" -#~ msgid "Download" -#~ msgstr "다운로드" - -#~ msgctxt "@info:tooltip" -#~ msgid "Show caution message in gcode reader." -#~ msgstr "g code 리더에 주의 메시지를 표시하기." - -#~ msgctxt "@option:check" -#~ msgid "Caution message in gcode reader" -#~ msgstr "gcode 리더의 주의 메시지" - -#~ msgctxt "@window:title" -#~ msgid "Import Profile" -#~ msgstr "프로파일 가져 오기" - -#~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name" -#~ msgid "Printer: %1, %2: %3" -#~ msgstr "프린터: %1, %2: %3" - -#~ msgctxt "@action:label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "프린터: %1" - -#~ msgctxt "@label" -#~ msgid "GCode generator" -#~ msgstr "GCode 생성기" - -#~ msgctxt "@action:menu" -#~ msgid "Configure setting visiblity..." -#~ msgstr "표시 설정..." - -#~ msgctxt "@title:menuitem %1 is the automatically selected material" -#~ msgid "Automatic: %1" -#~ msgstr "자동: %1" - -#~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer" -#~ msgid "Automatic: %1" -#~ msgstr "자동: %1" - -#~ msgctxt "@info:status" -#~ msgid "No printer connected" -#~ msgstr "연결된 프린터 없음" - -#~ msgctxt "@tooltip" -#~ msgid "The current temperature of this extruder." -#~ msgstr "이 익스트루더의 현재 온도." - -#~ msgctxt "@action:menu" -#~ msgid "Installed plugins..." -#~ msgstr "설치된 플러그인..." - -#~ msgctxt "@label" -#~ msgid "Support Extruder" -#~ msgstr "서포트용 익스트루더" - -#~ msgctxt "description" -#~ msgid "Writes GCode to a file." -#~ msgstr "GCode를 파일에 씁니다." - -#~ msgctxt "name" -#~ msgid "GCode Writer" -#~ msgstr "GCode 작성자" - -#~ msgctxt "name" -#~ msgid "GCode Profile Reader" -#~ msgstr "GCode 프로파일 리더" - -#~ msgctxt "@info:status" -#~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" -#~ msgstr "SolidWorks 파일을 여는 중 오류가 발생했습니다! 문제없이 SolidWorks에서 파일을 열 수 있는지 확인하십시오" - -#~ msgctxt "@info:status" -#~ msgid "Error while starting %s!" -#~ msgstr "시작하는 도중 오류가 발생했습니다!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Simulation view" +#~ msgid "Simulation View" #~ msgstr "시뮬레이션 뷰" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences." -#~ msgstr "Cura는 익명의 슬라이싱 통계를 수집합니다. 환경 설정에서 이 기능을 비활성화 할 수 있습니다." - -#~ msgctxt "@action:button" -#~ msgid "Dismiss" -#~ msgstr "버리기" - -#~ msgctxt "@menuitem" -#~ msgid "Global" -#~ msgstr "전역" - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal exception has occurred. 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" -#~ "

    \"보고서 전송\" 버튼을 사용하면 버그 보고서가 서버에 자동으로 보고됩니다.

    \n" -#~ " " - -#~ msgctxt "@label Cura version" -#~ msgid "Cura version: {version}
    " -#~ msgstr "Cura 버전: {version}
    " - -#~ msgctxt "@label Platform" -#~ msgid "Platform: {platform}
    " -#~ msgstr "플랫폼: {platform}
    " - -#~ msgctxt "@label Qt version" -#~ msgid "Qt version: {qt}
    " -#~ msgstr "Qt 버전: {qt}
    " - -#~ msgctxt "@label PyQt version" -#~ msgid "PyQt version: {pyqt}
    " -#~ msgstr "PyQt 버전: {pyqt}
    " - -#~ msgctxt "@label OpenGL" -#~ msgid "OpenGL: {opengl}
    " -#~ msgstr "OpenGL: {opengl}
    " - -#~ msgctxt "@title:groupbox" -#~ msgid "Exception traceback" -#~ msgstr "예외 역추적" - -#~ msgctxt "@label" -#~ msgid "Material diameter" -#~ msgstr "재료 직경" - -#~ msgctxt "@title:window" -#~ msgid "Cura SolidWorks Plugin Configuration" -#~ msgstr "Cura SolidWorks Plugin 설정" - -#~ msgctxt "@action:label" -#~ msgid "Default quality of the exported STL:" -#~ msgstr "내 보낸 STL의 기본 품질 :" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always ask" -#~ msgstr "항상 물어보기" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Fine quality" -#~ msgstr "항상 좋은 품질을 사용하십시오" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Coarse quality" -#~ msgstr "거친 품질을 항상 사용하십시오" - -#~ msgctxt "@title:window" -#~ msgid "Import SolidWorks File as STL..." -#~ msgstr "SolidWorks 파일을 STL로 가져 오기..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Quality of the Exported STL" -#~ msgstr "내보낸 STL의 품질" - -#~ msgctxt "@action:label" -#~ msgid "Quality" -#~ msgstr "품질" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse" -#~ msgstr "거친" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine" -#~ msgstr "정밀한" - -#~ msgctxt "@" -#~ msgid "No Profile Available" -#~ msgstr "프로파일을 사용할 수 없음" - -#~ msgctxt "@label" -#~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders" -#~ msgstr "이 설정은 항상 모든 익스트루더간에 공유됩니다. 여기에서 변경하면 모든 익스트루더의 값이 변경됩니다" - -#~ msgctxt "@tooltip" -#~ msgid "Time specification
    " -#~ msgstr "시간 사양
    " - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Reset camera position" -#~ msgstr "카메라 위치 재설정(&R)" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save project" -#~ msgstr "프로젝트 저장" - -#~ msgctxt "@title:tab" -#~ msgid "Prepare" -#~ msgstr "준비하다" - -#~ msgctxt "@title:tab" -#~ msgid "Monitor" -#~ msgstr "감시 장치" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "호환성 확인" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura" -#~ msgstr "SolidWorks 자체를 통해 특정 파일을 열 수 있습니다. 이것들은 변환되어 Cura에 로드됩니다" - -#~ msgctxt "@label:status" -#~ msgid "Blocked" -#~ msgstr "막힘" - -#~ msgctxt "@label:status" -#~ msgid "Can't start print" -#~ msgstr "프린팅를 시작할 수 없습니다" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect.." -#~ msgstr "연결 열기.." - -#~ msgctxt "@info:title" -#~ msgid "Print Details" -#~ msgstr "프린팅 세부 정보" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB." -#~ msgstr "{machine_name}에 최신 기능이 탑재되어 있는지 확인하려면 정기적으로 펌웨어를 업데이트하는 것이 좋습니다. 이 작업은 {machine_name} (네트워크에 연결된 경우) 또는 USB를 통해 수행 할 수 있습니다." - -#~ msgctxt "@info:title" -#~ msgid "Layer View" -#~ msgstr "레이어 뷰" - -#~ msgctxt "@menuitem" -#~ msgid "Browse plugins" -#~ msgstr "플러그인 찾아보기" - -#~ msgctxt "@info:title" -#~ msgid "Export Details" -#~ msgstr "세부 정보 내보내기" - -#~ msgctxt "@label" -#~ msgid "" -#~ "

    A fatal exception has occurred that we could not recover from!

    \n" -#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " -#~ msgstr "" -#~ "복구 할 수없는 치명적인 예외가 발생했습니다!\n" -#~ "http://github.com/Ultimaker/Cura/issues에 버그 보고서를 게시하십시오. " - -#~ msgctxt "@action:button" -#~ msgid "Open Web Page" -#~ msgstr "웹 페이지 열기" - -#~ msgctxt "@action:button" -#~ msgid "Ok" -#~ msgstr "승인" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "이 프린터는 Ultimaker 3 프린터에 연결된 그룹을 호스트하도록 설정되지 않았습니다" - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" -#~ msgstr "이 프린터는 Ultimaker 3에 연결된 프린터 그룹의 호스트입니다" - -#~ msgctxt "@label" -#~ msgid "Completed on: " -#~ msgstr "완료일: " - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "기본 웹 브라우저로 프린팅 작업 페이지를 엽니다." - -#~ msgctxt "@label" -#~ msgid "PRINTER GROUP" -#~ msgstr "프린터 그룹" - -#~ msgctxt "@action:warning" -#~ msgid "Loading a project will clear all models on the buildplate" -#~ msgstr "프로젝트를 로드하면 빌드 플레이트의 모든 모델이 지워집니다" - -#~ msgctxt "@label" -#~ msgid "" -#~ " plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ "플러그인에는 라이센스가 포함되어 있습니다.\n" -#~ "이 플러그인을 설치하려면이 라이센스를 수락해야합니다.\n" -#~ "아래 약관에 동의하십니까?" - -#~ msgctxt "@label" -#~ msgid "00h 00min" -#~ msgstr "00시간 00분" - -#~ msgctxt "@tooltip" -#~ msgid "Time information" -#~ msgstr "시간 정보" - -#~ msgctxt "@description" -#~ msgid "Print time" -#~ msgstr "프린팅 시간" - -#~ msgctxt "@title:window" -#~ msgid "Cura" -#~ msgstr "큐라" - -#~ msgctxt "@label" -#~ msgid "Check material compatibility" -#~ msgstr "재료 호환성 확인" - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection (Cluster)" -#~ msgstr "UM3 네트워크 연결 (클러스터)" - -#~ msgctxt "description" -#~ msgid "Provides the Layer view." -#~ msgstr "레이어 뷰를 제공합니다." - -#~ msgctxt "name" -#~ msgid "Layer View" -#~ msgstr "레이어 뷰" diff --git a/resources/i18n/ko_KR/fdmextruder.def.json.po b/resources/i18n/ko_KR/fdmextruder.def.json.po index 6903037801..23e507075f 100644 --- a/resources/i18n/ko_KR/fdmextruder.def.json.po +++ b/resources/i18n/ko_KR/fdmextruder.def.json.po @@ -1,12 +1,9 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-08 09:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -15,6 +12,96 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: fdmextruder.def.json +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "고정" + +#: fdmextruder.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용 필라멘트의 직경과 일치시킵니다." + +#: fdmextruder.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "빌드 플레이트 고정" + +#: fdmextruder.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "직경" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "이 익스트루더에서 전환 시 실행할 G 코드를 종료하십시오." + +#: fdmextruder.def.json +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "익스트루더" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code label" +msgid "Extruder End G-Code" +msgstr "익스트루더 엔드 G 코드" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_abs label" +msgid "Extruder End Position Absolute" +msgstr "익스트루더 끝 절대 위치" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x label" +msgid "Extruder End Position X" +msgstr "익스트루더 끝 X 위치" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y label" +msgid "Extruder End Position Y" +msgstr "익스트루더 끝 Y 위치" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "익스트루더 프라임 X 위치" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "익스트루더 프라임 Y 위치" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "익스트루더 프라임 Z 위치" + +#: fdmextruder.def.json +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "익스트루더 프린팅 냉각 팬" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_code label" +msgid "Extruder Start G-Code" +msgstr "익스트루더 스타트 G 코드" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_abs label" +msgid "Extruder Start Position Absolute" +msgstr "익스트루더 시작 위치의 절대 값" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "익스트루더 시작 X의 위치" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "익스트루더 시작 위치 Y" + #: fdmextruder.def.json msgctxt "machine_settings label" msgid "Machine" @@ -26,69 +113,9 @@ msgid "Machine specific settings" msgstr "기기 세부 설정" #: fdmextruder.def.json -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "익스트루더" - -#: fdmextruder.def.json -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "노즐 ID" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "노즐 직경" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때, 이 설정을 변경하십시오." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x label" -msgid "Nozzle X Offset" -msgstr "노즐 X 오프셋" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "노즐 오프셋의 x 좌표." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "노즐 Y 오프셋" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "노즐 오프셋의 y 좌표." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code label" -msgid "Extruder Start G-Code" -msgstr "익스트루더 스타트 G 코드" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "이 익스트루더로 전환 시 실행할 G 코드를 시작하십시오." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_abs label" -msgid "Extruder Start 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 "익스트루더가 헤드의 마지막으로 알려진 위치에 상대값이 아닌 절대 위치로 끝나도록 하십시오." #: fdmextruder.def.json msgctxt "machine_extruder_start_pos_abs description" @@ -96,114 +123,9 @@ msgid "Make the extruder starting position absolute rather than relative to the msgstr "익스트루더 시작 위치를 헤드의 마지막으로 알려진 위치에 상대적이 아닌 절대 위치로 만듭니다." #: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "익스트루더 시작 X의 위치" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "익스트루더를 켤 때 시작 위치의 x 좌표." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "익스트루더 시작 위치 Y" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "익스트루더를 켤 때 시작 위치의 y 좌표." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code label" -msgid "Extruder End G-Code" -msgstr "익스트루더 엔드 G 코드" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "이 익스트루더에서 전환 시 실행할 G 코드를 종료하십시오." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_abs label" -msgid "Extruder End Position Absolute" -msgstr "익스트루더 끝 절대 위치" - -#: fdmextruder.def.json -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 "익스트루더가 헤드의 마지막으로 알려진 위치에 상대값이 아닌 절대 위치로 끝나도록 하십시오." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x label" -msgid "Extruder End Position X" -msgstr "익스트루더 끝 X 위치" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "익스트루더를 끌 때 끝 위치의 x 좌표." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y label" -msgid "Extruder End Position Y" -msgstr "익스트루더 끝 Y 위치" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "익스트루더를 끌 때 종료 위치의 y 좌표." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "익스트루더 프라임 Z 위치" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Z 좌표입니다." - -#: fdmextruder.def.json -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "익스트루더 프린팅 냉각 팬" - -#: fdmextruder.def.json -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에서 변경하십시오." - -#: fdmextruder.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "빌드 플레이트 고정" - -#: fdmextruder.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "고정" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "익스트루더 프라임 X 위치" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 X 좌표." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "익스트루더 프라임 Y 위치" - -#: fdmextruder.def.json -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 "material description" +msgid "Material" +msgstr "재료" #: fdmextruder.def.json msgctxt "material label" @@ -211,24 +133,91 @@ msgid "Material" msgstr "재료" #: fdmextruder.def.json -msgctxt "material description" -msgid "Material" -msgstr "재료" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "노즐 직경" #: fdmextruder.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "직경" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "노즐 ID" #: fdmextruder.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용 필라멘트의 직경과 일치시킵니다." +msgctxt "machine_nozzle_offset_x label" +msgid "Nozzle X Offset" +msgstr "노즐 X 오프셋" -#~ msgctxt "machine_extruder_start_code description" -#~ msgid "Start g-code to execute whenever turning the extruder on." -#~ msgstr "익스트루더를 켤 때마다 실행할 스타드 g 코드." +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "노즐 Y 오프셋" -#~ msgctxt "machine_extruder_end_code description" -#~ msgid "End g-code to execute whenever turning the extruder off." -#~ msgstr "익스트루더를 끌 때마다 실행할 엔드 g 코드." +#: fdmextruder.def.json +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "이 익스트루더로 전환 시 실행할 G 코드를 시작하십시오." + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 X 좌표." + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Y 좌표." + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Z 좌표입니다." + +#: fdmextruder.def.json +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때, 이 설정을 변경하십시오." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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에서 변경하십시오." + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "익스트루더를 끌 때 끝 위치의 x 좌표." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "노즐 오프셋의 x 좌표." + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "익스트루더를 켤 때 시작 위치의 x 좌표." + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "익스트루더를 끌 때 종료 위치의 y 좌표." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "노즐 오프셋의 y 좌표." + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "익스트루더를 켤 때 시작 위치의 y 좌표." diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index 9558e8171b..2e9135c113 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -1,12 +1,9 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-28 11:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -16,1497 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: fdmprinter.def.json -msgctxt "machine_settings label" -msgid "Machine" -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 "모델 브림에서 떨어서포트 않는 거리. 메쉬 브림까지 다림질하면 출력물의 브림가 고르지 않을 수 있습니다." #: fdmprinter.def.json -msgctxt "machine_settings description" -msgid "Machine specific settings" -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 "피더와 노즐 챔버 사이에 필라멘트가 압축되는 양을 나타내는 요소, 필라멘트 전환을 위해 재료를 움직이는 범위를 결정하는 데 사용됨." #: fdmprinter.def.json -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "기기 유형" - -#: fdmprinter.def.json -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "3D 프린터 모델의 이름." - -#: fdmprinter.def.json -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "기기 세부 설정 표시" - -#: fdmprinter.def.json -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "별도의 json 파일에 설명된 기기의 다양한 세부 설정을 표시할지 여부." - -#: fdmprinter.def.json -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "시작 GCode" - -#: fdmprinter.def.json -msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." -msgstr "" -"시작과 동시에형실행될 G 코드 명령어 \n" -"." - -#: fdmprinter.def.json -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "End GCode" - -#: fdmprinter.def.json -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." -msgstr "" -"맨 마지막에 실행될 G 코드 명령 \n" -"." - -#: fdmprinter.def.json -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "재료 GUID" - -#: fdmprinter.def.json -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "재료의 GUID. 자동으로 설정됩니다." - -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "직경" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용될 필라멘트의 직경과 일치시킵니다." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "빌드 플레이트가 가열될 때까지 기다리십시오" - -#: fdmprinter.def.json -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 "시작 시, 빌드 플레이트가 가열될 때까지 대기하라는 명령을 삽입할지 여부." - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "노즐이 가열될 때까지 기다리기" - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "시작 시, 노즐이 가열될 때까지 대기할지 여부." - -#: fdmprinter.def.json -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "재료의 온도 포함하기" - -#: fdmprinter.def.json -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는 이 설정을 자동으로 비활성화 합니다." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "빌드 플레이트 온도 포함" - -#: fdmprinter.def.json -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는 이 설정을 자동으로 비활성화 합니다." - -#: fdmprinter.def.json -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "기기 너비" - -#: fdmprinter.def.json -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "프린팅 가능 영역의 폭 (X 방향)." - -#: fdmprinter.def.json -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "기기 깊이" - -#: fdmprinter.def.json -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "프린팅 가능 영역의 깊이 (Y 방향)" - -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "기기 높이" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "프린팅 가능 영역의 높이 (Z 방향)입니다." - -#: fdmprinter.def.json -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "빌드 플레이트 모양" - -#: fdmprinter.def.json -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "프린팅 할 수 없는 영역을 고려하지 않은 빌드 플레이트의 모양." - -#: fdmprinter.def.json -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "직사각형" - -#: fdmprinter.def.json -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "타원" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "빌드 플레이트 재질" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "프린터에 설치된 빌드 플레이트의 재질." - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "유리" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "알루미늄" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "히팅 빌드 플레이트가 있음" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "기기에 히팅 빌드 플레이트가 있는지 여부." - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "빌드 볼륨 온도 안정화" - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "기기의 빌드 볼륨 온도 안정화 지원 여부입니다." - -#: fdmprinter.def.json -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "항상 활성 도구 쓰기" - -#: fdmprinter.def.json -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 또는 모달 도구 명령어를 사용하는 다른 펌웨어를 사용해 프린팅하는 듀얼 압출기용 프린팅에 필요합니다." - -#: fdmprinter.def.json -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "센터 원점" - -#: fdmprinter.def.json -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 좌표가 프린팅 가능 영역의 중앙에 있는지 여부." - -#: fdmprinter.def.json -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "익스트루더의 수" - -#: fdmprinter.def.json -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "익스트루더의 수. 익스트루더는 피더, 보우 덴 튜브 및 노즐의 조합입니다." - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "활성화된 익스트루더의 수" - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "사용 가능한 익스트루더 수; 소프트웨어로 자동 설정" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "외부 노즐의 외경" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "노즐 끝의 외경." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "노즐 길이" - -#: fdmprinter.def.json -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 "노즐의 끝과 프린트 헤드의 가장 낮은 부분 사이의 높이 차이입니다." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "노즐 각도" - -#: fdmprinter.def.json -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 "노즐 끝 바로 위의 수평면과 원뿔 부분 사이의 각도입니다." - -#: fdmprinter.def.json -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "가열 영역 길이" - -#: fdmprinter.def.json -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 "노즐의 열이 필라멘트로 전달되는 노즐의 끝에서부터의 거리." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "노즐 온도 조절 활성화" - -#: fdmprinter.def.json -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 외부에서 노즐 온도를 제어하려면 이 기능을 끄십시오." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "가열 속도" - -#: fdmprinter.def.json -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)는 일반적인 프린팅 온도와 대기 온도에서 평균을 냅니다." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "냉각 속도" - -#: fdmprinter.def.json -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)는 일반적인 프린팅 온도 및 대기 온도에서 평균을 냅니다." - -#: fdmprinter.def.json -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "최소 대기 시간" - -#: fdmprinter.def.json -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 "노즐이 냉각되기 전에 익스트루더가 비활성이어야하는 최소 시간. 이 시간보다 오래 익스트루더를 사용하지 않을 경우에만 대기 온도로 냉각시킬 수 있습니다." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Gcode 유형" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "생성 될 gcode의 유형." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (부피 측정법)" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -#: fdmprinter.def.json -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "펌웨어 리트렉션" - -#: fdmprinter.def.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)를 사용할 지 여부." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "압출기의 히터 공유" - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "압출기가 자체 히터를 가지고 있지 않고 단일 히터를 공유하는지에 대한 여부." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "익스트루더의 노즐 공유" - -#: fdmprinter.def.json -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' 매개 변수에 의해 익스트루더마다 표시됩니다." - -#: fdmprinter.def.json -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "공유된 노즐 초기 수축" - -#: fdmprinter.def.json -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 스크립트가 완료될 때 공유된 노즐 끝에서 각 익스트루더의 필라멘트가 수축된 것으로 가정하는 정도입니다. 이 값은 노즐 덕트의 공통 부분의 길이와 같거나 커야 합니다." - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "허용되지 않는 지역" - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "프린팅 헤드가 위치할 수 없는 구역의 목록입니다." - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "노즐이 위치할 수 없는 구역" - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "노즐이 위치할 수 없는 구역의 목록입니다." - -#: fdmprinter.def.json -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "머신 헤드 및 팬 폴리곤" - -#: fdmprinter.def.json -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 "프린트 헤드의 모양. 일반적으로 첫 번째 압출기의 위치인 프린트 헤드의 위치와 관련된 좌표입니다. 프린트 헤드의 왼쪽 및 앞쪽 치수는 음수 좌표여야 합니다." - -#: fdmprinter.def.json -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "갠트리 높이" - -#: fdmprinter.def.json -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 축)." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "노즐 ID" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "노즐 지름" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때 이 설정을 변경하십시오." - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "익스트루더로 오프셋" - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "익스트루더 오프셋을 좌표계에 적용하십시오. 모든 익스트루더에 적용됩니다." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "익스트루더 프라임 Z 포지션" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅가 시작될 때 노즐 위치의 Z 좌표입니다." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "독립 익스트루더 프라임 포지션" - -#: fdmprinter.def.json -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 "익스투루더의 위치를 헤드의 마지막으로 알려진 위치에 상대위치가 아닌 절대 위치로 만듭니다." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "X 방향 최대 속도" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "X 방향의 모터 최대 속도입니다." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Y 방향 최대 속도" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Y 방향 모터의 최대 속도입니다." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Z 방향 최대 속도" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Z 방향의 모터 최대 속도입니다." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "최대 속도 E" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "필라멘트의 최대 속도." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "최대 가속도 X" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "X 방향 모터의 최대 가속도" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Y 방향 최대 가속도" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Y 방향 모터의 최대 가속도." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Z 방향 최대 가속도" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Z 방향 모터의 최대 가속도." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "최대 필라멘트 가속도" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "필라멘트를 구동하는 모터의 최대 가속도." - -#: fdmprinter.def.json -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "기본 가속도" - -#: fdmprinter.def.json -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "프린트 헤드 이동시 기본 가속도." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "기본 X-Y Jerk" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "수평면에서의 이동을 위한 기본 Jerk." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "기본 Z Jerk" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Z 방향 모터의 기본 Jerk." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "기본 필라멘트 Jerk" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "필라멘트를 구동하는 모터의 기본 Jerk." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "밀리미터 당 스텝 수 (X)" - -#: fdmprinter.def.json -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 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "밀리미터 당 스텝 수 (Y)" - -#: fdmprinter.def.json -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 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "밀리미터 당 스텝 수 (Z)" - -#: fdmprinter.def.json -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 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "밀리미터 당 스텝 수 (E)" - -#: fdmprinter.def.json -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밀리미터씩 피더 휠을 움직이는 스텝 모터의 스텝 수." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "양의 방향 X 엔드 스톱" - -#: fdmprinter.def.json -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 좌표)인지 여부." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "양의 방향 Y 엔드 스톱" - -#: fdmprinter.def.json -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 좌표)인지 여부." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "양의 방향 Z 엔드 스톱" - -#: fdmprinter.def.json -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 좌표)인지 여부." - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "최소 이송 속도" - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "프린트 헤드의 최소 이동 속도." - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "피더 휠 지름" - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "피더에서 재료를 구동시키는 휠의 지름." - -#: fdmprinter.def.json -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "팬 속도를 0-1로 조정" - -#: fdmprinter.def.json -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로 조정합니다." - -#: fdmprinter.def.json -msgctxt "resolution label" -msgid "Quality" -msgstr "품질" - -#: fdmprinter.def.json -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 "출력물의 해상도에 영향을 미치는 모든 설정. 이러한 설정은 품질 (및 프린팅 시간)에 큰 영향을 미칩니다." - -#: fdmprinter.def.json -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "층 높이" - -#: fdmprinter.def.json -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)입니다. 값이 클수록 해상도가 낮고 프린팅 속도가 빨라지며, 값이 작을수록 해상도가 높고 프린팅 속도가 느려집니다." - -#: fdmprinter.def.json -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "첫번째 레이어 높이" - -#: fdmprinter.def.json -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)입니다. 첫번째 레이어를 두껍게하면 빌드 플레이트에 쉽게 부착됩니다." - -#: fdmprinter.def.json -msgctxt "line_width label" -msgid "Line Width" -msgstr "선의 두께" - -#: fdmprinter.def.json -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 "한 줄의 두께. 일반적으로 각 라인의 너비는 노즐 폭과 일치해야합니다. 그러나 이 값을 약간 줄이면 더 나은 인쇄를 할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "벽 선 너비" - -#: fdmprinter.def.json -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "단일 벽 선의 너비입니다." - -#: fdmprinter.def.json -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "바깥 선 선폭" - -#: fdmprinter.def.json -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 "가장 바깥 쪽 벽 선의 너비. 이 값을 낮춤으로써 높은 수준의 디테일을 프린팅 할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "내부 벽 선 너비" - -#: fdmprinter.def.json -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "가장 바깥 쪽 벽 선을 제외한 모든 벽 선에 대해 단일 벽 선의 폭입니다." - -#: fdmprinter.def.json -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "상단/하단 라인 폭" - -#: fdmprinter.def.json -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "한 라인의 단일 위쪽/아래쪽 선의 너비입니다." - -#: fdmprinter.def.json -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "내부채움 선 폭" - -#: fdmprinter.def.json -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "단일 내부채움 라인의 너비." - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "스커트/브림 선 너비" - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "단일 스커트 또는 브림의 너비." - -#: fdmprinter.def.json -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "서포트의 폭" - -#: fdmprinter.def.json -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "단일 서포트 구조 선의 폭입니다." - -#: fdmprinter.def.json -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "서포트 인터페이스의 폭" - -#: fdmprinter.def.json -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "서포트의 지붕, 바닥의 폭." - -#: fdmprinter.def.json -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "서포트 루프 라인 폭" - -#: fdmprinter.def.json -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "단일 서포트 지붕 라인 폭." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "서포트 바닥 라인 폭" - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "단일 서포트 플로어 라인의 폭." - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "프라임 타워 라인 폭" - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "단일 주요 타워 라인의 폭." - -#: fdmprinter.def.json -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "초기 레이어 라인 폭" - -#: fdmprinter.def.json -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "첫 번째 레이어의 라인 폭 승수입니다. 이것을 늘리면 베드 접착력을 향상시킬 수 있습니다." - -#: fdmprinter.def.json -msgctxt "shell label" -msgid "Walls" -msgstr "벽" - -#: fdmprinter.def.json -msgctxt "shell description" -msgid "Shell" -msgstr "외곽" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "벽 익스트루더" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "벽을 프린팅하는 데 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "외벽 익스트루더" - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "외벽 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." - -#: fdmprinter.def.json -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "내벽 익스트루더" - -#: fdmprinter.def.json -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "내벽 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." - -#: fdmprinter.def.json -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "벽 두께" - -#: fdmprinter.def.json -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 "가로 방향의 벽 두께입니다. 이 값을 벽 선 너비로 나눈 값은 벽의 수 입니다." - -#: fdmprinter.def.json -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "벽 라인의 수" - -#: fdmprinter.def.json -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 "벽의 수. 벽 두께로 계산할 때 이 값은 반올림됩니다." - -#: fdmprinter.def.json -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "벽 전환 길이" - -#: fdmprinter.def.json -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 "부품이 얇아지면서 서로 다른 수의 벽 사이에서 전환될 때 벽 선을 분할하거나 결합하기 위해 일정 양의 공간이 할당됩니다." - -#: fdmprinter.def.json -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "벽 배포 개수" - -#: fdmprinter.def.json -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 "중앙에서부터 계산되는 벽의 수로, 이를 통해 오차가 분산되어야 합니다. 값이 작다고 해서 외벽의 너비가 변경되지 않는 것은 아닙니다." - -#: fdmprinter.def.json -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "벽 전환 임계각" - -#: fdmprinter.def.json -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 "짝수 벽과 홀수 벽 사이에 전환을 생성할 때입니다. 이 설정보다 더 큰 각도의 웨지 모양은 전환이 없으며 나머지 공간을 채우기 위해 벽이 중앙에 프린트되지는 않습니다. 이 설정을 줄이면 이러한 중앙 벽의 수와 길이가 줄어들지만, 간격이 생기거나 과잉 압출될 수 있습니다." - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "벽 전환 필터 거리" - -#: fdmprinter.def.json -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 "서로 다른 수의 벽들 사이를 빠르게 연속적으로 왔다 갔다 하며 전환되는 경우에는 전환하지 마십시오. 이 거리보다 서로 더 가까운 경우에는 전환을 제거하십시오." - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "벽 전환 필터 여백" - -#: fdmprinter.def.json -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 * 최소 벽 선 너비 + 여백]을 따르는 선 너비의 범위를 확장합니다. 이 여백을 늘리면 전환 횟수가 줄어들어, 압출 시작/중지 및 이동 시간이 줄어듭니다. 그러나 선 너비 변동이 크면 압출 미달 또는 과잉 문제가 발생할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "외벽 이동 거리" - -#: fdmprinter.def.json -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 층의 경계면을 더 잘 가리기 위해 바깥쪽 벽 뒤에 삽입되어 이동한 거리." - -#: fdmprinter.def.json -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "외벽 삽입" - -#: fdmprinter.def.json -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 "외벽의 경로에 삽입이 적용됩니다. 외벽이 노즐보다 작고 내벽 다음에 프린팅 된 경우 이 옵셋을 사용하여 노즐의 구멍이 모델 외부가 아닌 내벽과 겹치도록하십시오." - -#: fdmprinter.def.json -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "벽면 프린팅 순서 명령 최적화" - -#: fdmprinter.def.json -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으로 선택하는 경우 첫 번째 층이 최적화되지 않습니다." - -#: fdmprinter.def.json -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "벽 순서 지정" - -#: fdmprinter.def.json -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." -msgstr "벽이 프린트되는 순서를 정의합니다. 이전에 외벽을 프린팅하면 내벽의 오류가 외부로 전파될 수 없으므로 치수 정확도가 향상됩니다. 그러나 나중에 프린팅하면 오버행(경사면)이 프린트될 때 더 잘 쌓일 수 있습니다." - -#: fdmprinter.def.json -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "내부에서 외부로" - -#: fdmprinter.def.json -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "외부에서 내부로" - -#: fdmprinter.def.json -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "대체 여분 벽" - -#: fdmprinter.def.json -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 "다른 모든 레이어에 여분의 벽을 프린팅합니다. 이렇게하면 내부채움이 여분의 벽 사이에 끼어 더 강하게 프린팅됩니다." - -#: fdmprinter.def.json -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "최소 벽 선 너비" - -#: fdmprinter.def.json -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개의 벽으로 전환하기 때문에, 최소 선 너비가 내재적으로 최대 선 너비를 결정합니다. 가장 넓을 가능성이 있는 벽 선은 최소 벽 선 너비의 두 배입니다." - -#: fdmprinter.def.json -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "최소 짝수 벽 선 너비" - -#: fdmprinter.def.json -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 * 최소 홀수 벽 선 너비로 계산됩니다." - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold label" -msgid "Split Middle Line Threshold" -msgstr "중간 선 임계값 분할" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "일반적인 선 너비의 요인으로서 가장 작은 선 너비이며, 그 이상이면 중간 선(있는 경우)이 둘로 분할됩니다. 더 많고 얇은 선을 사용하려면 이 설정을 줄이십시오. 더 적고 넓은 선을 사용하려면 이 설정을 늘리십시오. 이 설정은 전체 모양이 벽으로 채워져야 하는 것처럼 적용된다는 점을 유념하십시오. 따라서 실제로 채워져 있거나 벽 대신 (다른) 스킨이 3D 객체에 있더라도, 여기에서 중간은 모양의 두 바깥쪽 가장자리 사이에 있는 객체의 중간을 나타냅니다." - -#: fdmprinter.def.json -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "최소 홀수 벽 선 너비" - -#: fdmprinter.def.json -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 * 최소 짝수 벽 선 너비로 계산됩니다." - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold label" -msgid "Add Middle Line Threshold" -msgstr "중간 선 임계값 추가" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "일반적인 선 너비의 요인으로서 가장 작은 선 너비이며, 그 이상이면 중간 선(아직 없는 경우)이 추가됩니다. 더 많고 얇은 선을 사용하려면 이 설정을 줄이십시오. 더 적고 넓은 선을 사용하려면 이 설정을 늘리십시오. 이 설정은 전체 모양이 벽으로 채워져야 하는 것처럼 적용된다는 점을 유념하십시오. 따라서 실제로 채워져 있거나 벽 대신 (다른) 스킨이 3D 객체에 있더라도, 여기에서 중간은 모양의 두 바깥쪽 가장자리 사이에 있는 객체의 중간을 나타냅니다." - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "얇은 벽 프린팅" - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "노즐 크기보다 수평으로 더 얇은 모델 조각을 프린팅하십시오." - -#: fdmprinter.def.json -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "최소 피처 크기" - -#: fdmprinter.def.json -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 "얇은 피처의 최소 두께 이 값보다 더 얇은 모델 피처는 프린트되지 않으며, 최소 피처 크기보다 더 두꺼운 피처는 최소 벽 선 너비로 넓어집니다." - -#: fdmprinter.def.json -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "얇은 벽 선 최소 너비" - -#: fdmprinter.def.json -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 "모델의 (최소 피처 크기에 따라) 얇은 피처를 대체할 벽의 너비 최소 벽 선 너비가 피처의 두께보다 더 얇다면 벽은 피처 자체만큼 두꺼워집니다." - -#: fdmprinter.def.json -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "수평 확장" - -#: fdmprinter.def.json -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 "각 레이어의 모든 다각형에 적용된 오프셋의 양입니다. 양수 값은 아주 큰 구멍을 보완 할 수 있습니다. 음수 값은 아주 작은 구멍을 보완 할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "첫번째 레이어 수평 확장" - -#: fdmprinter.def.json -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\"이라고 알려진 현상을 보완 할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "구멍 수평 확장" - -#: fdmprinter.def.json -msgctxt "hole_xy_offset description" -msgid "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." -msgstr "각 레이어의 모든 구멍에 적용된 오프셋의 양. 양수 값은 구멍 크기를 증가시키며, 음수 값은 구멍 크기를 줄입니다." - -#: fdmprinter.def.json -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Z Seam Alignment" - -#: fdmprinter.def.json -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 "레이어의 각 패스의 시작점입니다. 연속 레이어의 패스가 같은 지점에서 시작되면 세로 솔기가 출력물에 표시 될 수 있습니다. 사용자가 지정한 위치 근처에서 이들을 정렬 할 때 이음선을 제거하는 것이 가장 쉽습니다. 무작위로 배치 될 때 경로의 시작점은 눈에 잘 띄지 않습니다. 최단 경로를 취할 때 프린팅이 빨라집니다." - -#: fdmprinter.def.json -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "사용자 지정" - -#: fdmprinter.def.json -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "최단경로" - -#: fdmprinter.def.json -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "랜덤" - -#: fdmprinter.def.json -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "날카로운 모서리" - -#: fdmprinter.def.json -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Z 경계 위치" - -#: fdmprinter.def.json -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "레이어에서 각 부품의 프린팅이 시작할 위치 근처입니다." - -#: fdmprinter.def.json -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "후면 왼쪽" - -#: fdmprinter.def.json -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "뒤로" - -#: fdmprinter.def.json -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "후면 오른쪽" - -#: fdmprinter.def.json -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "오른쪽" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "전면 오른쪽" - -#: fdmprinter.def.json -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "전면" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "전면 왼쪽" - -#: fdmprinter.def.json -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "왼쪽" - -#: fdmprinter.def.json -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z 솔기 X" - -#: fdmprinter.def.json -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "레이어에서 프린팅이 시작할 위치 근처의 X 좌표입니다." - -#: fdmprinter.def.json -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z 솔기 Y" - -#: fdmprinter.def.json -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "레이어에서 프린팅이 시작할 위치 근처의 Y 좌표입니다." - -#: fdmprinter.def.json -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "솔기 코너 환경 설정" - -#: fdmprinter.def.json -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 "모델 외곽선의 모서리가 이음선의 위치에 영향을 주는지 여부를 제어합니다. 이것은 모서리가 이음선 위치에 영향을 미치지 않는다는 것을 의미하지 않습니다. 이음선 숨김은 이음선이 안쪽 모서리에서 발생할 가능성을 높입니다. 이음선 노출은 이음선이 외부 모서리에서 발생할 가능성을 높입니다. 이음선 숨김 또는 노출은 이음선이 내부나 외부 모서리에서 발생할 가능성을 높입니다. 스마트 숨김은 내외부 모서리 모두 가능하지만, 적절하다면 내부 모서리를 더욱 빈번하게 선택합니다." - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "없음" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "솔기 숨기기" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "솔기 노출" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "솔기 숨기기 또는 노출" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "스마트 숨김" - -#: fdmprinter.def.json -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "상대적 Z 솔기" - -#: fdmprinter.def.json -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 솔기 좌표는 각 부품의 중심을 기준으로합니다. 비활성화 된 경우 좌표는 빌드 플레이트의 절대 위치를 정의합니다." - -#: fdmprinter.def.json -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "위 / 아래" - -#: fdmprinter.def.json -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "위 / 아래" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "상단 표면 익스트루더" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "익스트루더는 최상층을 프린팅하는 데 사용됩니다. 이것은 다중 압출에 사용됩니다." - -#: fdmprinter.def.json -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "상단 표면 스킨 레이어" - -#: fdmprinter.def.json -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 "최상층의 스킨 층의 수. 일반적으로 고품질의 표면을 생성하기 위해 맨위의 레이어 하나만 있으면 충분합니다." - -#: fdmprinter.def.json -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "상단/하단 익스트루더" - -#: fdmprinter.def.json -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 "상단 및 하단 스킨 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." - -#: fdmprinter.def.json -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "상단/하단 두께" - -#: fdmprinter.def.json -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 "출력물의 상단/하단 레이어의 두께. 이 값을 레이어 높이로 나눈 값은 위쪽/아래쪽 레이어의 수 입니다." - -#: fdmprinter.def.json -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "상단 두께" - -#: fdmprinter.def.json -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 "출력물의 상단 레이어의 두께. 이 값을 레이어 높이로 나눈 값이 최상위 레이어 수 입니다." - -#: fdmprinter.def.json -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "상단 레이어" - -#: fdmprinter.def.json -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 "출력물의 상단 레이어의 수. 상단 두깨로 계산을 할때 이 값은 벽 두께로 계산할 때 이 값은 반올림됩니다." - -#: fdmprinter.def.json -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "바닥 두께" - -#: fdmprinter.def.json -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 "출력물의 아래쪽 레이어의 두께. 이 값을 레이어 높이로 나눈 값은 맨 아래 레이어의 수 입니다." - -#: fdmprinter.def.json -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "하단 레이어" - -#: fdmprinter.def.json -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 "아래층의 수. 바닥 두께로 계산을 할때 이 값은 벽 두께로 계산할 때 이 값은 반올림됩니다." - -#: fdmprinter.def.json -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "초기 하단 레이어" - -#: fdmprinter.def.json -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 "빌드 플레이트에서 위를 향하는 초기 하단 레이어 수. 하단 두께로 계산할 경우, 이 값이 전체 값으로 반올림됩니다." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "상단/하단 패턴" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "상단/하단 레이어의 패턴." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "라인" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "동심원 형태" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "하단 패턴 초기 레이어" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "첫 번째 레이어의 프린팅 아래쪽에 있는 패턴입니다." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "윤곽" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "동심원의" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "지그재그" - -#: fdmprinter.def.json -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "상단/하단 다각형 연결" - -#: fdmprinter.def.json -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 "스킨 경로가 나란히 이어지는 상단/하단 스킨 경로를 연결합니다. 동심원 패턴의 경우 이 설정을 사용하면 이동 시간이 크게 감소하지만, 내부채움의 중간에 연결될 수 있기 때문에 이 기능은 상단 표면 품질을 저하시킬 수 있습니다." - -#: fdmprinter.def.json -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "단면 상단/하단 순서" - -#: fdmprinter.def.json -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 "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 상단/하단 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." - -#: fdmprinter.def.json -msgctxt "skin_angles label" -msgid "Top/Bottom 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도)를 사용하는 빈 리스트입니다." #: fdmprinter.def.json msgctxt "skin_angles description" @@ -1514,379 +33,24 @@ msgid "A list of integer line directions to use when the top/bottom layers use t msgstr "상단/하단 레이어가 선 또는 지그재그 패턴을 사용할 때 사용할 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록이고, 기본 각도(45도 및 135도)를 사용합니다." #: fdmprinter.def.json -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Z 간격에 스킨 없음" +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도를 사용합니다." #: fdmprinter.def.json -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 "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도를 번갈아 사용)." #: fdmprinter.def.json -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -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도를 번갈아 사용)." #: fdmprinter.def.json -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 "위쪽/아래쪽 패턴의 가장 바깥 쪽 부분을 여러 동심 선으로 바꿉니다. 하나 또는 두 개의 선을 사용하면 내부채움 재료로 시작하는 지붕면이 향상됩니다." - -#: fdmprinter.def.json -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "다림질 사용" - -#: fdmprinter.def.json -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 "상단 표면을 한 번 더 이동하지만 재료를 아주 약간만 압출 성형합니다. 따라서 맨 위의 플라스틱이 녹아 부드러운 표면을 만듭니다. 노즐 챔버 내의 압력이 고압으로 유지되므로 표면상의 주름이 재료로 채워집니다." - -#: fdmprinter.def.json -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "최상위 레이어에 다림질" - -#: fdmprinter.def.json -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 "메쉬의 마지막 레이어에서만 다림질을 수행합니다. 이것은 낮은 레이어에서 매끄러운 표면 처리가 필요하지 않은 경우 시간을 절약 할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "다림질 패턴" - -#: fdmprinter.def.json -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "윗면을 다림질 할 때 사용하는 패턴." - -#: fdmprinter.def.json -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "동심원" - -#: fdmprinter.def.json -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" - -#: fdmprinter.def.json -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "단면 다림질 순서" - -#: fdmprinter.def.json -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 "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 다림질 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "다림질 라인 간격" - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "다림질 라인 사이의 거리." - -#: fdmprinter.def.json -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "다림질 압출량" - -#: fdmprinter.def.json -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 "다림질하는 동안 기본 스킨 라인을 기준으로 한 재료의 압출량. 노즐을 가득 채우면 윗면의 틈새를 채울 수 있지만 표면에 과도한 압출과 필라멘트 덩어리가 생길 수 있습니다." - -#: fdmprinter.def.json -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "다림질 삽입" - -#: fdmprinter.def.json -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 "모델 브림에서 떨어서포트 않는 거리. 메쉬 브림까지 다림질하면 출력물의 브림가 고르지 않을 수 있습니다." - -#: fdmprinter.def.json -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "다림질 속도" - -#: fdmprinter.def.json -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "상단 표면을 통과하는 속도." - -#: fdmprinter.def.json -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "다림질 가속" - -#: fdmprinter.def.json -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "다림질이 수행되는 가속도." - -#: fdmprinter.def.json -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "다림질 저크(Jerk)" - -#: fdmprinter.def.json -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "다림질을하는 동안 최대 순간 속도 변화." - -#: fdmprinter.def.json -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "스킨 겹침 비율" - -#: fdmprinter.def.json -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%가 넘는다면, 그 지점에서 스킨-익스트루더의 노즐 위치가 이미 벽 중앙을 지나 도달할 수 있기 때문에 이미 스킨이 벽을 지나치고 있을 수 있습니다." - -#: fdmprinter.def.json -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "스킨 겹침" - -#: fdmprinter.def.json -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 "벽과 스킨-센터라인(종점) 사이의 겹침 양을 조정하십시오. 약간의 겹침으로 벽이 스킨에 확실하게 연결될 수 있습니다. 동일한 스킨 및 벽 라인-폭을 고려할 때 값이 벽 폭의 절반을 넘는다면, 그 지점에서 스킨-익스트루더의 노즐 위치가 이미 벽 중앙을 지나 도달할 수 있기 때문에 이미 스킨이 벽을 지나치고 있을 수 있습니다." - -#: fdmprinter.def.json -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "스킨 제거 폭" - -#: fdmprinter.def.json -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 "제거 할 외부스킨 영역의 가장 큰 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게하면 모델의 경사면에서 위쪽 / 아래쪽 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이 됩니다." - -#: fdmprinter.def.json -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "상단 스킨 제거 폭" - -#: fdmprinter.def.json -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 "제거 할 상단 스킨 영역의 가장 큰 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게 하면 모델의 경사면에서 상단 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이됩니다." - -#: fdmprinter.def.json -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "밑면 스킨 제거 폭" - -#: fdmprinter.def.json -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 "제거 할 바닥 스킨 영역의 최대 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게하면 모델의 경사면에서 밑면 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이됩니다." - -#: fdmprinter.def.json -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "스킨 확장 거리" - -#: fdmprinter.def.json -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 "스킨이 내부채움으로 확장되는 거리입니다. 값이 높을수록 스킨이 내부채움 패턴에 더 잘 부착되고 인접 레이어의 벽이 스킨에 잘 밀착됩니다. 값이 낮을수록 사용 될 재료의 양이 절약됩니다." - -#: fdmprinter.def.json -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "윗면 스킨 확장 거리" - -#: fdmprinter.def.json -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 "상단 스킨의 거리가 내부채움으로 확장됩니다. 값이 높을수록 스킨이 내부채움 패턴에 더 잘 부착되며 위 레이어의 벽이 스킨에 잘 밀착됩니다. 값이 낮을수록 사용 된 재료의 양이 절약됩니다." - -#: fdmprinter.def.json -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "밑면 스킨 확장 거리" - -#: fdmprinter.def.json -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 "바닥 스킨의 거리가 내부채움으로 확장됩니다. 값이 높을수록 스킨가 내부채움 패턴에 더 잘 붙어 스킨가 아래 층의 벽에 잘 밀착됩니다. 값이 낮을수록 사용 된 재료의 양이 절약됩니다." - -#: fdmprinter.def.json -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "확장을 위한 최대 스킨 각" - -#: fdmprinter.def.json -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도의 각도는 수직이며 모든 스킨의 확장을 유발합니다." - -#: fdmprinter.def.json -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "확장을 위한 최소 스킨 폭" - -#: fdmprinter.def.json -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 "이보다 좁은 스킨 영역은 확장되지 않습니다. 이렇게하면 모델 표면이 수직에 가까운 기울기를 가질 때 생성되는 좁은 스킨 영역을 확장하지 않아도됩니다." - -#: fdmprinter.def.json -msgctxt "infill label" -msgid "Infill" -msgstr "내부채움" - -#: fdmprinter.def.json -msgctxt "infill description" -msgid "Infill" -msgstr "내부채움" - -#: fdmprinter.def.json -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "내부채움 익스트루더" - -#: fdmprinter.def.json -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "내부채움용 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." - -#: fdmprinter.def.json -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "내부채움 밀도" - -#: fdmprinter.def.json -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "출력물의 내부채움을 조절합니다." - -#: fdmprinter.def.json -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "내부채움 선간 거리" - -#: fdmprinter.def.json -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 "프린팅 된 내부채움 선 사이의 거리. 이 설정은 내부채움 밀도 및 내부채움 선 너비로 계산됩니다." - -#: fdmprinter.def.json -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "내부채움 패턴" - -#: fdmprinter.def.json -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) 내부채움이 레이어마다 변경되므로 각 방향으로 힘이 더 균등하게 분산됩니다. 라이트닝 내부채움이 객체의 천장만 서포트하여 내부채움을 최소화합니다." - -#: fdmprinter.def.json -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "그리드" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "라인" - -#: fdmprinter.def.json -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "삼각형" - -#: fdmprinter.def.json -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "삼-육각형" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "입방체" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "입방체 세분" - -#: fdmprinter.def.json -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "옥텟" - -#: fdmprinter.def.json -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "쿼터 큐빅" - -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "동심원" - -#: fdmprinter.def.json -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "십자형" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "십자형 3D" - -#: fdmprinter.def.json -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "자이로이드" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "라이트닝" - -#: fdmprinter.def.json -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "내부채움 선 연결" - -#: fdmprinter.def.json -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 "내벽의 형태를 따라가는 선을 사용하여 내부채움 패턴과 내벽이 만나는 끝을 연결합니다. 이 설정을 사용하면 내부채움이 벽에 더 잘 붙게되어 내부채움이 수직면의 품질에 미치는 영향을 줄일 수 있습니다. 이 설정을 해제하면 사용되는 재료의 양이 줄어듭니다." - -#: fdmprinter.def.json -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "내부채움 다각형 연결" - -#: fdmprinter.def.json -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 "스킨 경로가 나란히 이어지는 내부채움 경로를 연결합니다. 여러 개의 폐다각형으로 구성되는 내부채움 패턴의 경우 이 설정을 사용하면 이동 시간이 크게 감소합니다." - -#: fdmprinter.def.json -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도를 번갈아 사용)." #: fdmprinter.def.json msgctxt "infill_angles description" @@ -1894,49 +58,44 @@ msgid "A list of integer line directions to use. Elements from the list are used msgstr "사용할 라인 방향 리스트. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트은 대괄호 안에 들어 있습니다. 기본값은 기본 각도 (선 및 지그재그 패턴의 경우 45 및 135도, 다른 모든 패턴의 경우 45도)를 사용하는 빈 리스트입니다." #: fdmprinter.def.json -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 "노즐이 위치할 수 없는 구역의 목록입니다." #: fdmprinter.def.json -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 "프린팅 헤드가 위치할 수 없는 구역의 목록입니다." #: fdmprinter.def.json -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "내부채움 Y 오프셋" +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "다른 부품 내부에 완전히 둘러싸인 부품은 다른 부품의 내부에 닿는 외부 브림을 생성할 수 있습니다. 이렇게 하면 내부 구멍에서 이 거리 내에 있는 모든 브림이 제거됩니다." #: fdmprinter.def.json -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 "독립 익스트루더 프라임 포지션" #: fdmprinter.def.json -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "무작위 충전 시작" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "어댑티브 레이어 최대 변화" #: fdmprinter.def.json -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 "어댑티브 레이어 지형 크기" #: fdmprinter.def.json -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "내부채움 선 승수" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "어댑티브 레이어 변화 단계 크기" #: fdmprinter.def.json -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 "각 내부채움 선을 여러 개의 선으로 변환합니다. 추가되는 선은 다른 선을 교차하지 않고, 다른 선을 피해 변환됩니다. 내부채움을 빽빽하게 만들지만, 인쇄 및 재료 사용이 증가합니다." - -#: fdmprinter.def.json -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 "어댑티브 레이어는 모델의 모양에 따라 레이어의 높이를 계산합니다." #: fdmprinter.def.json msgctxt "infill_wall_line_count description" @@ -1948,284 +107,9 @@ msgstr "" "이 기능을 올바르게 구성하는 경우 내부채움 다각형 연결과 함께 사용해 이동 또는 리트랙션없이 모든 내부채움을 단일 돌출 경로에 연결할 수 있습니다." #: fdmprinter.def.json -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "입방 세분 쉘" - -#: fdmprinter.def.json -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 "모델의 경계를 확인하기 위해 각 큐브의 중심에서 반경을 더하여 이 큐브를 세분화할지 여부를 결정합니다. 값이 클수록 모델의 경계 근처에 작은 큐브가 더 두껍게 나옵니다." - -#: fdmprinter.def.json -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "내부채움 오버랩 비율" - -#: fdmprinter.def.json -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 "내부채움 라인 폭의 비율로 나타낸 내부채움재와 벽 사이의 오버랩 양. 약간의 오버랩으로 벽이 내부채움과 확실하게 연결됩니다." - -#: fdmprinter.def.json -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "내부채움 오버랩" - -#: fdmprinter.def.json -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 "내부채움과 벽 사이의 겹침 정도. 약간 겹치면 벽이 내부채움에 단단히 연결됩니다." - -#: fdmprinter.def.json -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "내부채움 거리" - -#: fdmprinter.def.json -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 "각 내부채움 라인 다음에 삽입 된 이동 거리. 내부채움 스틱을 벽에 더 잘 붙게 합니다. 이 옵션은 내부채움 겹침과 유사하지만 압출이 없고 충전 선의 한쪽 끝에서만 사용됩니다." - -#: fdmprinter.def.json -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "내부채움 층 두께" - -#: fdmprinter.def.json -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 "내부채움물 층의 두께. 이 값은 항상 레이어 높이의 배수이어야 하며 반올림됩니다." - -#: fdmprinter.def.json -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "점진적인 내부채움 단계" - -#: fdmprinter.def.json -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 "상단면 아래로 갈 때 내부채움 밀도를 반으로 줄이는 횟수입니다. 상단면에 더 가까운 영역은 내부채움율 농도가 더 높은 밀도를 갖습니다." - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "점진적인 내부채움 단계 높이" - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "밀도의 절반으로 전환하기 전에 주어진 밀도에서 내부채움의 높이." - -#: fdmprinter.def.json -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "벽 앞에 내부채움" - -#: fdmprinter.def.json -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 "벽을 프린팅하기 전에 내부채움물을 프린팅하기. 벽을 먼저 프린팅하면 벽이 더 정확해질 수 있지만 겹침으로 프린팅이 매끄럽지 않습니다. 내부채움을 먼저 프린팅하면 더 튼튼한 벽이 생기지만 내부채움 패턴이 때로 표면을 통해 보일 수 있습니다." - -#: fdmprinter.def.json -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "최소 내부채움 지역" - -#: fdmprinter.def.json -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "이보다 작은 내부채움 영역을 생성하지 마십시오 (대신 스킨 사용)." - -#: fdmprinter.def.json -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "충진물 지지대" - -#: fdmprinter.def.json -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 "모델 상단이 지지가 되어야 하는 경우에만 충진물 구조를 인쇄합니다. 이 기능을 사용하면 인쇄 시간 및 재료 사용이 감소하지만, 개체 강도가 균일하지 않습니다." - -#: fdmprinter.def.json -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "충진물 오버행 각도" - -#: fdmprinter.def.json -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°에서는 충진물이 공급되지 않습니다." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "스킨 에지의 두께 지원" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "스킨 에지를 지원하는 추가 내부채움의 두께." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "스킨 에지의 레이어 지원" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "스킨 에지를 지원하는 내부채움 레이어의 수." - -#: fdmprinter.def.json -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "라이트닝 내부채움 서포트 각도" - -#: fdmprinter.def.json -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 "라이트닝 내부채움 레이어가 그 위에 있는 것을 서포트해야 할 부분을 결정합니다. 레이어 두께가 주어진 각도로 측정됩니다." - -#: fdmprinter.def.json -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "라이트닝 내부채움 오버행 각도" - -#: fdmprinter.def.json -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 "라이트닝 내부채움 레이어가 레이어 위에 있는 모델을 서포트해야 할 부분을 결정합니다. 두께가 주어진 각도로 측정됩니다." - -#: fdmprinter.def.json -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "라이트닝 내부채움 가지치기 각도" - -#: fdmprinter.def.json -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 "내부채움 선의 종점이 재료를 절약하기 위해 단축됩니다. 이 설정은 해당 선의 종점에 대한 오버행(경사면)의 각도입니다." - -#: fdmprinter.def.json -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "라이트닝 내부채움 정리 각도" - -#: fdmprinter.def.json -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 "내부채움 선이 인쇄 시간을 절약하기 위해 정리됩니다. 이는 내부채움 선 길이 전체에 허용되는 오버행(경사면)의 최대 각도입니다." - -#: fdmprinter.def.json -msgctxt "material label" -msgid "Material" -msgstr "재료" - -#: fdmprinter.def.json -msgctxt "material description" -msgid "Material" -msgstr "재료" - -#: fdmprinter.def.json -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "기본 프린팅 온도" - -#: fdmprinter.def.json -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 "프린팅에 사용되는 기본 온도입니다. 이것은 재료의 \"기본\"온도 이여야 합니다. 다른 모든 프린팅 온도는 이 값을 기준으로 오프셋을 사용해야합니다" - -#: fdmprinter.def.json -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "빌드 볼륨 온도" - -#: fdmprinter.def.json -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인 경우 빌드 볼륨 온도는 조정되지 않습니다." - -#: fdmprinter.def.json -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "프린팅 온도" - -#: fdmprinter.def.json -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "프린팅에 사용되는 온도." - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "첫번째 레이어의 프린팅 온도" - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "첫 번째 레이어에 프린팅에 사용되는 온도입니다. 초기 레이어의 특수 처리를 사용하지 않으려면 0으로 설정합니다." - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "초기 프린팅 온도" - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "프린팅이 시작될 수 있는 프린팅 온도까지 가열하는 동안의 최소 온도." - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "최종 프린팅 온도" - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "프린팅 종료 직전에 냉각이 시작될 온도입니다." - -#: fdmprinter.def.json -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "압출 냉각 속도 조절기" - -#: fdmprinter.def.json -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 "압출하는 동안 노즐이 냉각되는 추가적인 속도. 압출하는 동안 가열 될 때 상실되는 열 상승 속도를 나타 내기 위해 동일한 값이 사용됩니다." - -#: fdmprinter.def.json -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "기본 빌드 플레이트 온도" - -#: fdmprinter.def.json -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 "히팅 빌드 플레이트에 사용되는 기본 온도입니다. 이것은 재료의 \"기본\"온도입니다. 다른 모든 프린팅 온도는 이 값을 기준으로 오프셋을 사용해야합니다" - -#: fdmprinter.def.json -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "빌드 플레이트 온도" - -#: fdmprinter.def.json -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인 경우 빌드 플레이트가 가열되지 않습니다." - -#: fdmprinter.def.json -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "초기 레이어의 빌드 플레이트 온도" - -#: fdmprinter.def.json -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 "부착" #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" @@ -2233,1924 +117,19 @@ msgid "Adhesion Tendency" msgstr "점착 성항" #: fdmprinter.def.json -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%가 넘는다면, 그 지점에서 스킨-익스트루더의 노즐 위치가 이미 벽 중앙을 지나 도달할 수 있기 때문에 이미 스킨이 벽을 지나치고 있을 수 있습니다." #: fdmprinter.def.json -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 "벽과 스킨-센터라인(종점) 사이의 겹침 양을 조정하십시오. 약간의 겹침으로 벽이 스킨에 확실하게 연결될 수 있습니다. 동일한 스킨 및 벽 라인-폭을 고려할 때 값이 벽 폭의 절반을 넘는다면, 그 지점에서 스킨-익스트루더의 노즐 위치가 이미 벽 중앙을 지나 도달할 수 있기 때문에 이미 스킨이 벽을 지나치고 있을 수 있습니다." #: fdmprinter.def.json -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "표면의 에너지입니다." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "확장 배율 수축 보상" - -#: fdmprinter.def.json -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 "냉각됨에 따라 재료 수축을 보상하기 위해 모델이 이 배율로 확장됩니다." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "수평 확장 배율 수축 보정" - -#: fdmprinter.def.json -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 방향으로(수평으로) 확장됩니다." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "수직 확장 배율 수축 보정" - -#: fdmprinter.def.json -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 방향으로(수직으로) 확장됩니다." - -#: fdmprinter.def.json -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "결정형 소재" - -#: fdmprinter.def.json -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 "이 소재는 가열 시 깔끔하게 분리되는 유형(결정형)입니까? 아니면 길게 얽힌 폴리머 체인을 생성하는 유형(비결정형)입니까?" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "흐름 방지 리트랙션 위치" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "흐름이 멈추기 전에 소재가 후퇴해야 하는 거리입니다." - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "흐름 방지 리트랙션 속도" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "흐름을 방지하기 위해 필라멘트 스위치 중 소재가 후퇴해야 하는 속도입니다." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "파단 준비 리트랙션 위치" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "가열 시 파단되기 전까지 필라멘트가 늘어날 수 있는 거리입니다." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "파단 준비 리트랙션 속도" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "리트랙션 시 파단되기 직전까지 필라멘트가 후퇴해야 하는 속도입니다." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "준비 온도 파단" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "재료를 퍼지하는 데 사용하는 온도는 가능한 한 가장 높은 프린팅 온도와 대략 같아야 합니다." - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "파단 리트랙션 위치" - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "필라멘트가 깔끔하게 파단되기 위해 후퇴해야 하는 거리입니다." - -#: fdmprinter.def.json -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "파단 리트랙션 속도" - -#: fdmprinter.def.json -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "필라멘트가 깔끔하게 파단되기 위해 후퇴해야 하는 속도입니다." - -#: fdmprinter.def.json -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "파단 온도" - -#: fdmprinter.def.json -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "필라멘트가 깔끔하게 파단되는 온도입니다." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "수평 퍼지 속도" - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "다른 재료로 전환 후 재료를 압출하는 속도." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "수평 퍼지 길이" - -#: fdmprinter.def.json -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 "다른 재료로 전환할 때 (필라멘트를 지나며) 노즐에서 이전 재료를 퍼지하기 위해 사용하는 재료 양." - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "필라멘트 끝의 퍼지 속도" - -#: fdmprinter.def.json -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 "빈 스풀을 동일한 재료의 새로운 스풀로 교체한 후 재료를 압출하는 속도." - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "필라멘트 끝의 퍼지 길이" - -#: fdmprinter.def.json -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 "빈 스풀을 동일한 재료의 새로운 스풀로 교체할 때 (필라멘트를 지나며) 노즐에서 이전 재료를 퍼지하기 위해 사용하는 재료 양." - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "최대 파크 기간" - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "재료를 안전하게 건식 보관함에 보관할 수 있는 기간." - -#: fdmprinter.def.json -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "로드 이동 요인 없음" - -#: fdmprinter.def.json -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 "피더와 노즐 챔버 사이에 필라멘트가 압축되는 양을 나타내는 요소, 필라멘트 전환을 위해 재료를 움직이는 범위를 결정하는 데 사용됨." - -#: fdmprinter.def.json -msgctxt "material_flow label" -msgid "Flow" -msgstr "공급량" - -#: fdmprinter.def.json -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "압출량 보상: 압출 된 재료의 양에 이 값을 곱합니다." - -#: fdmprinter.def.json -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "벽 압출량" - -#: fdmprinter.def.json -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "벽 라인의 압출 보상입니다." - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "외벽 압출량" - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "가장 외측 벽 라인의 압출 보상입니다." - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "내벽 압출량" - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "가장 외측 벽을 제외한 모든 벽 라인의 압출 보상입니다." - -#: fdmprinter.def.json -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "상단/하단 압출량" - -#: fdmprinter.def.json -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "상단/하단 라인의 압출 보상입니다." - -#: fdmprinter.def.json -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "상단 표면 스킨 압출량" - -#: fdmprinter.def.json -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "프린트 상단 부분 라인의 압출 보상입니다." - -#: fdmprinter.def.json -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "내부채움 압출량" - -#: fdmprinter.def.json -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "내부채움 라인의 압출 보상입니다." - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "스커트/브림 압출량" - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "스커트 또는 브림 라인의 압출 보상입니다." - -#: fdmprinter.def.json -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "지지대 압출량" - -#: fdmprinter.def.json -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "지지대 구조 라인의 압출 보상입니다." - -#: fdmprinter.def.json -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "지지대 인터페이스 압출량" - -#: fdmprinter.def.json -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "지지대 지붕 또는 바닥 라인의 압출 보상입니다." - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "지지대 지붕 압출량" - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "지지대 지붕 라인의 압출 보상입니다." - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "지지대 바닥 압출량" - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "지지대 바닥 라인의 압출 보상입니다." - -#: fdmprinter.def.json -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "프라임 타워 압출량" - -#: fdmprinter.def.json -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "프라임 타워 라인의 압출 보상입니다." - -#: fdmprinter.def.json -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "첫번째 레이어 압출량" - -#: fdmprinter.def.json -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 "첫번째 레이어에 대한 압출량 보상: 압출 된 재료의 양에 이 값을 곱합니다." - -#: fdmprinter.def.json -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "대기 온도" - -#: fdmprinter.def.json -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "다른 노즐이 현재 프린팅에 사용될 경우 노즐 온도." - -#: fdmprinter.def.json -msgctxt "speed label" -msgid "Speed" -msgstr "속도" - -#: fdmprinter.def.json -msgctxt "speed description" -msgid "Speed" -msgstr "속도" - -#: fdmprinter.def.json -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "프린팅 속도" - -#: fdmprinter.def.json -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "프린팅 속도." - -#: fdmprinter.def.json -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "내부채움 속도" - -#: fdmprinter.def.json -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "내부채움이 프린팅되는 속도." - -#: fdmprinter.def.json -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "벽 속도" - -#: fdmprinter.def.json -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "벽이 프린팅되는 속도입니다." - -#: fdmprinter.def.json -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "외벽 속도" - -#: fdmprinter.def.json -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 "가장 바깥 쪽 벽이 프린팅되는 속도입니다. 외벽을 더 낮은 속도로 프린팅하면 최종 스킨 품질이 향상됩니다. 그러나 내벽 속도와 외벽 속도 사이에 큰 차이가있을 경우 부정적인 방식으로 품질에 영향을 미칩니다." - -#: fdmprinter.def.json -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "내벽 속도" - -#: fdmprinter.def.json -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 "모든 내부 벽이 프린팅되는 속도입니다. 내벽을 외벽보다 빠르게 프린팅하면 프린팅 시간이 단축됩니다. 외벽 속도와 충전 속도 사이에서 이것을 설정하는 것이 효과적입니다." - -#: fdmprinter.def.json -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "상단 표면 스킨 속도" - -#: fdmprinter.def.json -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "상단 표면 스킨 층이 프린팅되는 속도." - -#: fdmprinter.def.json -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "상단/하단 속도" - -#: fdmprinter.def.json -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "위쪽/아래쪽 레이어가 프린팅되는 속도입니다." - -#: fdmprinter.def.json -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "서포트 속도" - -#: fdmprinter.def.json -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 "서포트 구조가 프린팅되는 속도입니다. 서포트를 고속으로 프린팅하면 프린팅 시간을 크게 단축시킵니다. 서포트 구조체의 표면 품질은 프린팅 후에 제거되므로 중요하지 않습니다." - -#: fdmprinter.def.json -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "서포트 내부채움 속도" - -#: fdmprinter.def.json -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 "서포트의 내부채움이 프린팅되는 속도. 내부채움을 저속으로 프린팅하면 안정성이 향상됩니다." - -#: fdmprinter.def.json -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "서포트 인터페이스 속도" - -#: fdmprinter.def.json -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 "서포트의 지붕과 바닥이 프린팅되는 속도. 프린팅 속도를 느리게하면 오버행 품질이 향상 될 수 있습니다." - -#: fdmprinter.def.json -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "서포트 상단 속도" - -#: fdmprinter.def.json -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 "서포트의 지붕이 프린팅되는 속도입니다. 프린팅 속도를 느리게하면 오버행 품질이 향상 될 수 있습니다." - -#: fdmprinter.def.json -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "서포트 바닥 속도" - -#: fdmprinter.def.json -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 "서포트 바닥 프린팅 속도. 더 낮은 속도로 프린팅하면 모델 상단의 서포트력이 향상됩니다." - -#: fdmprinter.def.json -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "프라임 타워 속도" - -#: fdmprinter.def.json -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 "프라임 타워가 프린팅되는 속도. 프라임 타워를 더 천천히 프린팅하면 다른 필라멘트 사이의 접착을 더 안정적으로 만들 수 있습니다." - -#: fdmprinter.def.json -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "이동 속도" - -#: fdmprinter.def.json -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "움직일때의 이동 속도." - -#: fdmprinter.def.json -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "초기 레이어 속도" - -#: fdmprinter.def.json -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 "초기 레이어의 속도입니다. 빌드 플레이트에 대한 접착력을 향상시키려면 낮은 값을 권장합니다. 브림과 래프트 같은 빌드 플레이트 접착 구조 자체에 영향을 미치지 않습니다." - -#: fdmprinter.def.json -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "초기 레이어 프린팅 속도" - -#: fdmprinter.def.json -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 "초기 레이어의 프린팅 속도입니다. 빌드 플레이트에 대한 접착력을 향상 시키려면 낮은 값을 권합니다." - -#: fdmprinter.def.json -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "초기 레이어 이동 속도" - -#: fdmprinter.def.json -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 "이동 속도는 초기 레이어에서 이동합니다. 이전에 프린팅 된 부품을 빌드 플레이트에서 떨어지는 것을 방지하려면 더 낮은 값을 권합니다. 이 설정의 값은 이동 속도와 프린팅 속도 사이의 비율로부터 자동으로 계산 될 수 있습니다." - -#: fdmprinter.def.json -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "스커트/브림 속도" - -#: fdmprinter.def.json -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 "스커트와 브림이 프린팅되는 속도입니다. 일반적으로 이것은 초기 레이어 속도에서 수행되지만 때로는 스커트나 브림을 다른 속도로 프린팅하려고 할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Z 홉 속도" - -#: fdmprinter.def.json -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 이동이 이루어지는 속도입니다. 빌드 플레이트 또는 기기의 갠트리를 움직이기가 더 어렵기 때문에 프린트 속도보다 낮은 것이 일반적입니다." - -#: fdmprinter.def.json -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "느리게 프린팅할 레이어의 수" - -#: fdmprinter.def.json -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 "처음 몇 개의 레이어는 모델의 나머지 부분보다 느리게 프린팅되어 빌드 플레이트에 대한보다 나은 접착력을 얻고 출력물의 전체 성공률을 향상시킵니다. 속도는 이 층 위로 점진적으로 증가합니다." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "흐름 균일화 비율" - -#: fdmprinter.def.json -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%보다 큰 값은 넓은 선을 압출하기 위해 요구되는 더 높은 압력을 보정하는 데 도움이 될 수 있습니다." - -#: fdmprinter.def.json -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "가속 제어 활성화" - -#: fdmprinter.def.json -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 "프린트 헤드 가속도를 활성화 합니다. 가속도를 높이면 프린팅 품질을 저하시키지만 프린팅 시간을 줄일 수 있습니다." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "프린팅 가속도" - -#: fdmprinter.def.json -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "프린팅 속도가 빨라집니다." - -#: fdmprinter.def.json -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "내부채움 가속도" - -#: fdmprinter.def.json -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "내부채움물이 프린팅되는 가속도." - -#: fdmprinter.def.json -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "벽 가속도" - -#: fdmprinter.def.json -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "벽이 프린팅되는 가속도." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "외벽 가속도" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "가장 바깥 쪽 벽이 프린팅되는 가속도입니다." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "내벽 가속도" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "모든 내부 벽이 프린팅되는 가속도입니다." - -#: fdmprinter.def.json -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "상단 표면 스킨 가속도" - -#: fdmprinter.def.json -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "상단 표면 스킨 층이 프린팅되는 가속도." - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "상단/하단 가속도" - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "위쪽/아래쪽 레이어가 프린팅되는 가속도입니다." - -#: fdmprinter.def.json -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "서포트 가속도" - -#: fdmprinter.def.json -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "서포트 구조가 프린팅되는 가속도." - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "서포트 내부채움 가속도" - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "서포트의 내부채움이 프린팅되는 가속도." - -#: fdmprinter.def.json -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "서포트 인터페이스 가속도" - -#: fdmprinter.def.json -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 "서포트의 지붕과 바닥이 프린팅되는 가속도. 낮은 가속도로 프린팅하면 오버행 품질이 향상 될 수 있습니다." - -#: fdmprinter.def.json -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "서포트 상단 가속도" - -#: fdmprinter.def.json -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 "서포트의 지붕이 프린팅되는 가속도. 낮은 가속도로 프린팅하면 오버행 품질이 향상 될 수 있습니다." - -#: fdmprinter.def.json -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "서포트 바닥 가속도" - -#: fdmprinter.def.json -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 "지면의 가속도가 프린팅됩니다. 보다 낮은 가속도로 프린팅하면 모델 상단에 서포트력을 향상시킬 수 있습니다." - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "프라임 타워 가속" - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "프라임 타워가 프린팅되는 가속도." - -#: fdmprinter.def.json -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "이동 가속" - -#: fdmprinter.def.json -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "헤드가 움직일때의 가속도." - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "초기 레이어 가속" - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "초기 레이어의 가속도입니다." - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "초기 레이어 프린팅 가속" - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "초기 레이어 프린팅 중 가속도." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "초기 레이어 이동 가속도" - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "헤드가 초기 레이어에서 이동할 때의 가속도." - -#: fdmprinter.def.json -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Skirt/Brim 가속도" - -#: fdmprinter.def.json -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 "스커트와 브림이 프린팅되는 가속도. 일반적으로 이것은 초기 레이어 가속으로 이루어 서포트만 때로는 스커트나 브림을 다른 가속으로 프린팅 할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Jerk 컨트롤 사용" - -#: fdmprinter.def.json -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를 높이면 프린팅 품질을 저하시키면서 프린팅 시간을 줄일 수 있습니다." - -#: fdmprinter.def.json -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Jerk 프린팅" - -#: fdmprinter.def.json -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "프린트 헤드의 최대 순간 속도 변화." - -#: fdmprinter.def.json -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Jerk 내부채움" - -#: fdmprinter.def.json -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "내부채움이 프린팅되는 최대 순간 속도 변화." - -#: fdmprinter.def.json -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "벽 Jerk" - -#: fdmprinter.def.json -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "벽이 프린팅되는 최대 순간 속도 변화." - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "외벽 Jerk" - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "가장 바깥 쪽 벽이 프린팅되는 최대 순간 속도 변화." - -#: fdmprinter.def.json -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "내벽 Jerk" - -#: fdmprinter.def.json -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "모든 내부 벽이 프린팅되는 최대 순간 속도 변화." - -#: fdmprinter.def.json -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "스킨 표면 Jerk" - -#: fdmprinter.def.json -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "상단 표면 스킨 층이 프린팅되는 최대 순간 속도 변화." - -#: fdmprinter.def.json -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "위/아래 Jerk" - -#: fdmprinter.def.json -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "상단 / 하단 레이어가 프린팅되는 최대 순간 속도 변화." - -#: fdmprinter.def.json -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "서포트 Jerk" - -#: fdmprinter.def.json -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "서포트 구조가 프린팅되는 최대 순간 속도 변화." - -#: fdmprinter.def.json -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "서포트 내부채움 Jerk" - -#: fdmprinter.def.json -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "서포트가 채워지는 최대 순간 속도 변화." - -#: fdmprinter.def.json -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "서포트 인터페이스 Jerk" - -#: fdmprinter.def.json -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "서포트의 지붕과 바닥이 프린팅되는 최대 순간 속도 변화." - -#: fdmprinter.def.json -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "서포트 위 Jerk" - -#: fdmprinter.def.json -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "서포트의 지붕이 프린팅되는 최대 순간 속도 변화." - -#: fdmprinter.def.json -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "서포트 바닥 Jerk" - -#: fdmprinter.def.json -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "서포트의 바닥이 프린팅되는 최대 순간 속도 변화." - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "프라임 타워 Jerk" - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "프라임 타워가 프린팅되는 최대 순간 속도 변화." - -#: fdmprinter.def.json -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "이동 Jerk" - -#: fdmprinter.def.json -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "헤드가 이동하는 최대 순간 속도 변화." - -#: fdmprinter.def.json -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "초기 레이어 Jerk" - -#: fdmprinter.def.json -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "초기 레이어의 프린팅 최대 순간 속도 변화." - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "초기 레이어 프린팅 Jerk" - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "초기 층의 프린팅 중 최대 순간 속도 변화." - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "초기 레이어 이동 Jerk" - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "헤드가 초기 레이어에서 이동할 때의 가속도." - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Skirt/Brim Jerk" - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "스커트와 브림이 프린팅되는 최대 순간 속도 변화." - -#: fdmprinter.def.json -msgctxt "travel label" -msgid "Travel" -msgstr "이동" - -#: fdmprinter.def.json -msgctxt "travel description" -msgid "travel" -msgstr "이동" - -#: fdmprinter.def.json -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "리트렉션 활성화" - -#: fdmprinter.def.json -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "노즐이 프린팅되지 않은 영역 위로 움직일 때 필라멘트를 리트렉션합니다." - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "레이어 변경시 리트렉션" - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "노즐이 다음 층으로 이동할 때 필라멘트를 리트렉션 시킵니다." - -#: fdmprinter.def.json -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "리트렉션 거리" - -#: fdmprinter.def.json -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "리트렉션 이동 중에 수축 된 재료의 길이입니다." - -#: fdmprinter.def.json -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "리트렉션 속도" - -#: fdmprinter.def.json -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "리트렉션 속도입니다." - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "리트렉션 속도" - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "리트렉션 속도입니다." - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "리트렉션 초기 속도" - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "리트렉션 이동 중에 필라멘트가 프라이밍되는 속도입니다." - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "추가적인 리트렉션 정도" - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "이동중에 재료가 새어나올 수 있습니다. 이 재료는 여기에서 보상될 수 있습니다." - -#: fdmprinter.def.json -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "리트렉션 최소 이동" - -#: fdmprinter.def.json -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 "리트렉션이 가능하기 위해 필요한 최소한의 이동 거리. 작은 영역에서 더 적은 리트렉션이 가능합니다." - -#: fdmprinter.def.json -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "최대 리트렉션 수" - -#: fdmprinter.def.json -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 "이 설정은 최소 압출 거리에서 발생하는 리트렉션 수를 제한합니다. 이 거리내에서 더 이상의 리트렉션은 무시됩니다. 이렇게 하면 필라멘트를 평평하게하고 갈리는 문제를 일으킬 수 있으므로 동일한 필라멘트에서 반복적으로 리트렉션하지 않습니다." - -#: fdmprinter.def.json -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "최소 압출 영역" - -#: fdmprinter.def.json -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 "최대 리트렉션 횟수가 시행되는 영역 입니다. 이 값은 수축 거리와 거의 같아야 하므로 같은 수축 패치가 통과하는 횟수가 효과적으로 제한됩니다." - -#: fdmprinter.def.json -msgctxt "limit_support_retractions label" -msgid "Limit Support Retractions" -msgstr "지지대 후퇴 제한" - -#: fdmprinter.def.json -msgctxt "limit_support_retractions description" -msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -msgstr "직선으로 지지대 사이를 이동하는 경우 리트랙션은 생략합니다. 이 설정을 사용하면 프린팅 시간은 절약할 수 있지만, 지지대 구조물 내에 스트링이 과도하게 증가할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Combing 모드" - -#: fdmprinter.def.json -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하거나 내부채움 내에서만 빗질하는 것을 피할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "끔" - -#: fdmprinter.def.json -msgctxt "retraction_combing option all" -msgid "All" -msgstr "모두" - -#: fdmprinter.def.json -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "외부 표면에 없음" - -#: fdmprinter.def.json -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "스킨에 없음" - -#: fdmprinter.def.json -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "내부채움 내" - -#: fdmprinter.def.json -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "수축이 없을 때 최대 빗질 거리" - -#: fdmprinter.def.json -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을 사용하지 않습니다." - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "외벽 전에 리트렉션" - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "외벽을 프린팅하기 위해 이동할 때 항상 리트렉션합니다." - -#: fdmprinter.def.json -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "움직일 때 프린팅한 부분을 피하기" - -#: fdmprinter.def.json -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이 활성화 된 경우에만 사용할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "이동하는 경우 지지대 피함" - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "노즐은 이동하는 경우 이미 인쇄된 지지대를 피합니다. 빗질을 사용하는 경우에만 사용할 수 있는 옵션입니다." - -#: fdmprinter.def.json -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "이동중 피하는 거리" - -#: fdmprinter.def.json -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "이동 중 출력물을 피할 때 노즐과 이미 프린팅 된 부분 사이의 거리." - -#: fdmprinter.def.json -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "레이어 시작 X" - -#: fdmprinter.def.json -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 좌표입니다." - -#: fdmprinter.def.json -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "레이어 시작 Y" - -#: fdmprinter.def.json -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 좌표입니다." - -#: fdmprinter.def.json -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "리트렉션했을 때의 Z Hop" - -#: fdmprinter.def.json -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 "리트렉션이 일어날 때마다 빌드 플레이트가 낮아져 노즐과 출력물 사이에 여유 공간이 생깁니다. 이동 중에 노즐이 출력물에 부딪치지 않도록 합니다." - -#: fdmprinter.def.json -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "프린팅 된 부분에만 Z Hop" - -#: fdmprinter.def.json -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 홉을 수행하십시오." - -#: fdmprinter.def.json -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Z 홉 높이" - -#: fdmprinter.def.json -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Z 홉을 수행 할 때의 높이 차이." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "익스트루더 스위치 후 Z 홉" - -#: fdmprinter.def.json -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 "기기가 하나의 익스트루더에서 다른 익스트루더로 전환 된 후, 빌드 플레이트가 내려가 노즐과 출력물 사이에 간격이 생깁니다. 이렇게 하면 프린트 물 바깥쪽에서 노즐로 부터 필라멘트가 흐르는 것을 방지합니다." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "익스트루더 스위치 높이 후 Z 홉" - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "익스트루더 스위치 후 Z 홉을 수행할 때의 높이 차이." - -#: fdmprinter.def.json -msgctxt "cooling label" -msgid "Cooling" -msgstr "냉각" - -#: fdmprinter.def.json -msgctxt "cooling description" -msgid "Cooling" -msgstr "냉각" - -#: fdmprinter.def.json -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "프린팅 냉각 사용" - -#: fdmprinter.def.json -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 "프린팅 중에 프린팅 냉각 팬을 활성화합니다. 팬은 짧은 레이어 시간 및 브리징 / 오버행으로 레이어의 프린팅 품질을 향상시킵니다." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "팬 속도" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "프린팅 냉각 팬이 회전하는 속도입니다." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "표준 팬 속도" - -#: fdmprinter.def.json -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 "팬이 임계 값에 도달하기 전에 회전하는 속도입니다. 레이어가 임계값보다 빠르게 프린팅되면 팬 속도가 최대 팬 속도쪽으로 점차 기울어집니다." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "최대 팬 속도" - -#: fdmprinter.def.json -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 "최소 레이어 시간에 팬이 회전하는 속도입니다. 임계 값에 도달하면 표준 팬 속도와 최대 팬 속도 사이에서 팬 속도가 서서히 증가합니다." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "표준/최대 팬 속도 임계 값" - -#: fdmprinter.def.json -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 "표준 팬 속도와 최대 팬 속도 사이의 임계 값을 설정하는 레이어 시간입니다. 이 시간보다 느리게 프린팅되는 레이어는 표준 팬 속도를 사용합니다. 빠른 레이어의 경우 팬 속도가 최대 팬 속도쪽으로 점차 증가합니다." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "초기 팬 속도" - -#: fdmprinter.def.json -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 "프린팅 시작시 팬이 회전하는 속도입니다. 후속 레이어에서는 팬 속도가 높이의 표준 팬 속도에 해당하는 레이어까지 점차 증가합니다." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "표준 팬 속도시의 높이" - -#: fdmprinter.def.json -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 "표준 팬 속도로 팬이 회전하는 높이입니다. 이 높이의 아래 레이어에서 팬 속도는 초기 팬 속도에서 표준 팬 속도로 점차 증가합니다." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "표준 팬 속도시의 레이어" - -#: fdmprinter.def.json -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 "팬이 표준 팬 속도로 회전하는 레이어입니다. 표준 팬 속도시의 높이가 설정이 되어있으면, 이 값이 계산되고 정수로 반올림됩니다." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "최소 레이어 시간" - -#: fdmprinter.def.json -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 "레이어에 소요 된 최소 시간입니다. 이렇게 하면 프린터가 한 레이어에서 여기에 설정된 시간을 소비하게됩니다. 이렇게하면 다음 레이어를 프린팅하기 전에 출력물을 적절히 냉각시킬 수 있습니다. 리프트 헤드가 비활성화되고 최소 속도가 위반되는 경우 레이어가 최소 레이어 시간보다 짧게 걸릴 수 있습니다." - -#: fdmprinter.def.json -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "최저 속도" - -#: fdmprinter.def.json -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 "최소 프린팅 속도. 프린터의 속도가 너무 느려지면 노즐의 압력이 너무 낮아 프린팅 품질이 나빠질 수 있습니다." - -#: fdmprinter.def.json -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "리프트 헤드" - -#: fdmprinter.def.json -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 "최소 레이어 시간으로 인해 최소 속도에 도달하면 헤드를 출력물에서 들어 올려 최소 레이어 시간에 도달 할 때까지 시간을 기다립니다." - -#: fdmprinter.def.json -msgctxt "support label" -msgid "Support" -msgstr "서포트" - -#: fdmprinter.def.json -msgctxt "support description" -msgid "Support" -msgstr "서포트" - -#: fdmprinter.def.json -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "서포트 생성" - -#: fdmprinter.def.json -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 "오버행이 있는 모델 부분을 서포트하는 구조를 생성합니다. 이러한 구조가 없으면 이런 부분이 프린팅 중에 붕괴됩니다." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "서포트 익스트루더" - -#: fdmprinter.def.json -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "서포트 프린팅에 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." - -#: fdmprinter.def.json -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "서포트 내부채움 익스트루더" - -#: fdmprinter.def.json -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 "서포트의 내부채움을 프린팅하는 데 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "첫 번째 레이어 서포트 익스트루더" - -#: fdmprinter.def.json -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 "첫번째 층의 서포트 채움에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." - -#: fdmprinter.def.json -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "서포트 인터페이스 익스트루더" - -#: fdmprinter.def.json -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 "서포트의 지붕과 바닥을 프린팅 할 때 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다." - -#: fdmprinter.def.json -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "서포트 지붕 익스트루더" - -#: fdmprinter.def.json -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 "서포트의 지붕을 프린팅 할 때 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다." - -#: fdmprinter.def.json -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "서포트 바닥 익스트루더" - -#: fdmprinter.def.json -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 "서포트의 바닥을 프린팅하는 데 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." - -#: fdmprinter.def.json -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "서포트 구조" - -#: fdmprinter.def.json -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 "서포트를 생성하는 데 사용할 수 있는 기술 중 하나를 선택합니다. '표준' 서포트는 오버행(경사면) 파트 바로 아래에 서포트 구조물을 생성하고 해당 영역을 바로 아래로 떨어뜨립니다. '트리' 서포트는 모델을 지지하는 브랜치 끝에서 오버행(경사면) 영역을 향해 브랜치를 만들고 빌드 플레이트에서 모델을 지지할 수 있도록 모델을 브랜치로 최대한 감쌉니다." - -#: fdmprinter.def.json -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "표준" - -#: fdmprinter.def.json -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "트리" - -#: fdmprinter.def.json -msgctxt "support_tree_angle label" -msgid "Tree Support Branch Angle" -msgstr "트리 서포트 브랜치 각도" - -#: fdmprinter.def.json -msgctxt "support_tree_angle description" -msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "브랜치의 각도. 적은 각도를 사용하면 더 수직이 되어 더 안정됩니다. 높은 각도를 사용하면 더 많이 도달할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance label" -msgid "Tree Support Branch Distance" -msgstr "트리 서포트 브랜치 거리" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance description" -msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -msgstr "모델에 붙는 브랜치를 떨어뜨리는 거리. 이 거리를 짧게 하면 트리 서포트이 더 많은 접점에서 모델에 접촉하여, 오버행이 더 좋아지지만 서포트를 제거하기가 더 어렵게 됩니다." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter label" -msgid "Tree Support Branch Diameter" -msgstr "트리 서포트 브랜치 직경" - -#: fdmprinter.def.json -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 "트리 서포트의 가장 얇은 브랜치의 직경. 브랜치가 두꺼울수록 더 견고해집니다. 바닥을 향한 브랜치는 이보다 더 두꺼워집니다." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter_angle label" -msgid "Tree Support Branch Diameter Angle" -msgstr "트리 서포트 브랜치 직경 각도" - -#: fdmprinter.def.json -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이면 브랜치는 길이 전체에 균일한 두께를 갖게 됩니다. 약간의 각도가 있으면 트리 서포트의 안정성을 높여 줍니다." - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution label" -msgid "Tree Support Collision Resolution" -msgstr "트리 서포트 충돌 정밀도" - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution description" -msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -msgstr "모델에 부딪히는 것을 피하기 위해 충돌을 계산하는 정밀도. 이 값을 낮게 설정하면 실패도가 낮은 더 정확한 트리를 생성하지만, 슬라이싱 시간이 현격하게 늘어납니다." - -#: fdmprinter.def.json -msgctxt "support_type label" -msgid "Support Placement" -msgstr "서포트 배치" - -#: fdmprinter.def.json -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 "서포트 구조의 배치를 조정합니다. 배치는 빌드 플레이트 또는 모든 곳을 터치하도록 설정할 수 있습니다. 모든 곳에 설정하면 모델에 서포트 구조가 프린팅됩니다." - -#: fdmprinter.def.json -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "빌드 플레이트 위" - -#: fdmprinter.def.json -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "어디에나" - -#: fdmprinter.def.json -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "오버행 각도" - -#: fdmprinter.def.json -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 °는 지원하지 않습니다." - -#: fdmprinter.def.json -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "서포트 패턴" - -#: fdmprinter.def.json -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 "서포트 구조의 패턴. 사용 가능한 여러 가지 옵션을 사용하면 튼튼하고 쉽게 제거 할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "라인" - -#: fdmprinter.def.json -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "격자" - -#: fdmprinter.def.json -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "삼각형" - -#: fdmprinter.def.json -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "동심원의" - -#: fdmprinter.def.json -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" - -#: fdmprinter.def.json -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "십자" - -#: fdmprinter.def.json -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "자이로이드" - -#: fdmprinter.def.json -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "지지대 벽 라인 카운트" - -#: fdmprinter.def.json -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 "지지대 충진물을 둘러싸는 벽의 개수. 벽을 추가하면 지지물 인쇄 안정성을 높일 수 있고 오버행 지지를 개선할 수 있지만, 인쇄 시간과 사용되는 재료가 늘어납니다." - -#: fdmprinter.def.json -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "서포트 선 연결" - -#: fdmprinter.def.json -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 "서포트의 끝을 서로 연결하십시오. 이 설정을 사용하면 서포트가 보다 견고해지지만 더 많은 재료가 소모됩니다." - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "ZigZags 서포트 연결" - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "지그재그를 연결하십시오. 이것은 지그재그 서포트 구조의 강도를 증가시킵니다." - -#: fdmprinter.def.json -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "서포트 밀도" - -#: fdmprinter.def.json -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 "서포트 구조의 밀도를 조정합니다. 값이 높을수록 오버행이 좋아 서포트만 서포트를 제거하기가 더 어렵습니다." - -#: fdmprinter.def.json -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "서포트 선 거리" - -#: fdmprinter.def.json -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "프린팅 된 서포트 구조 선 사이의 거리. 이 설정은 서포트 밀도로 계산됩니다." - -#: fdmprinter.def.json -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "초기 레이어 서포트 선 거리" - -#: fdmprinter.def.json -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 "인쇄된 초기 레이어 서포트 구조 선 사이의 거리. 이 설정은 서포트 밀도로 계산됩니다." - -#: fdmprinter.def.json -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "서포트 내부채움 선 방향" - -#: fdmprinter.def.json -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도를 사용합니다." - -#: fdmprinter.def.json -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "서포트 브림 사용" - -#: fdmprinter.def.json -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 "첫 번째 레이어의 서포트 내부채움 영역 내에서 브림을 생성합니다. 이 브림은 서포트 주변이 아니라 아래에 인쇄됩니다. 이 설정을 사용하면 빌드 플레이트에 대한 서포트력이 향상됩니다." - -#: fdmprinter.def.json -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "서포트 브림 폭" - -#: fdmprinter.def.json -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 "서포트 아래를 인쇄하기 위한 브림 폭. 브림이 커질수록 추가 재료가 소요되지만 빌드 플레이트에 대한 접착력이 향상됩니다." - -#: fdmprinter.def.json -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "서포트 브림 라인 수" - -#: fdmprinter.def.json -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 "서포트 브림에 사용되는 라인의 수. 브림 라인이 많아질수록 추가 재료가 소요되지만 빌드 플레이트에 대한 접착력이 향상됩니다." - -#: fdmprinter.def.json -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "서포트 Z 거리" - -#: fdmprinter.def.json -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. This value is rounded up to a multiple of the layer height." -msgstr "서포트 구조의 위/아래에서 프린팅까지의 거리. 이 틈새는 모형 프린팅 후 서포트를 제거하기 위한 공간을 제공합니다. 이 값은 레이어 높이의 배수로 반올림됩니다." - -#: fdmprinter.def.json -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "서포트 상단 거리" - -#: fdmprinter.def.json -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "서포트 상단에서 프린팅까지의 거리." - -#: fdmprinter.def.json -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "서포트 바닥 거리" - -#: fdmprinter.def.json -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "출력물에서 서포트의 바닥까지의 거리." - -#: fdmprinter.def.json -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "X/Y 서포트 거리" - -#: fdmprinter.def.json -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "X/Y 방향에서 출력물로과 서포트까지의 거리." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "서포트 거리 우선 순위" - -#: fdmprinter.def.json -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 거리를 적용하지 않음으로써이 기능을 비활성화 할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y가 Z를 무시합니다" - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z가 X/Y를 무시합니다" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "최소 서포트 X/Y 거리" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "X/Y 방향에서 오버행으로부터 서포트까지의 거리." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "계단 Step Height 서포트" - -#: fdmprinter.def.json -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으로 설정하십시오." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "서포트 계단 스텝 최대 폭" - -#: fdmprinter.def.json -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 "모델에있는 서포트의 계단 모양 바닥의 최대 폭. 값이 낮으면 서포트을 제거하기가 어려워 서포트만 값이 너무 높으면 불안정한 서포트 구조가 생길 수 있습니다." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "서포트 계단 스텝 최소 경사 각도" - -#: fdmprinter.def.json -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 "계단 스텝이 적용되는 영역의 최소 경사입니다. 값이 낮을수록 낮은 각도 서포트 제거가 쉬워지지만 값을 너무 낮게 지정하면 모델의 다른 부분에서 적절하지 않은 결과가 발생할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "서포트 Join 거리" - -#: fdmprinter.def.json -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 방향으로 지지대 구조물 사이의 최대 거리입니다. 별도의 구조가 이 값보다 가깝게 있으면 구조가 하나로 합쳐집니다." - -#: fdmprinter.def.json -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "수평 확장 서포트" - -#: fdmprinter.def.json -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 "각 레이어의 모든 서포트 다각형에 적용된 오프셋의 양입니다. 양수 값을 사용하면 서포트 영역이 원활 해지며 보다 견고한 서포트가 됩니다." - -#: fdmprinter.def.json -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "서포트 내부채움 레이어 두께" - -#: fdmprinter.def.json -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 "서포트 내부채의 레이어당 두께. 이 값은 항상 레이어 높이의 배수이 어야하며 그렇지 않으면 반올림됩니다." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "점진적 서포트 내부채움 단계" - -#: fdmprinter.def.json -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 "상단 표면 아래로 올라갈 때 서포트 채움 밀도를 반으로 줄이는 횟수입니다. 상단 표면에 더 가까운 영역은 서포트 채움 밀도까지 더 높은 밀도를 갖습니다." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "점진적 서포트 내부채움 단계 높이" - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "밀도의 절반으로 전환하기 전에 주어진 밀도의 서포트 채움 높이." - -#: fdmprinter.def.json -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "최소 서포트 지역" - -#: fdmprinter.def.json -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 "서포트 영역에 대한 최소 지역 크기. 이 값보다 작은 지역을 갖는 영역은 생성되지 않습니다." - -#: fdmprinter.def.json -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "서포트 인터페이스 사용" - -#: fdmprinter.def.json -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 "모델과 서포트 사이에 조밀 한 인터페이스를 생성합니다. 이렇게 하면 모델이 프린팅 된 서포트 맨 위의 스킨과 모델의 위에있는 서포트 맨 아래에 스킨이 만들어집니다." - -#: fdmprinter.def.json -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "서포트 지붕 사용" - -#: fdmprinter.def.json -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 "서포트 상단과 모델 사이에 조밀 한 슬래브를 생성하십시오. 그러면 모델과 서포트 사이에 스킨이 만들어집니다." - -#: fdmprinter.def.json -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "서포트 바닥 사용" - -#: fdmprinter.def.json -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 "서포트 바닥과 모델 사이에 조밀 한 슬래브를 생성하십시오. 그러면 모델과 지원 사이에 스킨이 만들어집니다." - -#: fdmprinter.def.json -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "서포트 인터페이스 두께" - -#: fdmprinter.def.json -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 "밑면 또는 상단의 모델과 접촉하는 서포트 인터페이스 두께입니다." - -#: fdmprinter.def.json -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "서포트 지붕 두께" - -#: fdmprinter.def.json -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 "받침 지붕의 두께. 이것은 모델이 놓이는 받침대 상단의 조밀 한 층의 양을 제어합니다." - -#: fdmprinter.def.json -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "서포트 바닥 두께" - -#: fdmprinter.def.json -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 "서포트 바닥의 두께. 이것은 서포트가 놓여있는 모델의 상단에 프린팅되는 조밀 한 층의 수를 제어합니다." - -#: fdmprinter.def.json -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "서포트 인터페이스 해상도" - -#: fdmprinter.def.json -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 "서포트가 모델의 위와 아래에 있는지 확인하려면 주어진 높이의 단계를 수행하십시오. 값이 낮을수록 슬라이스가 느려지고, 값이 높을수록 서포트 인터페이스가 있어야하는 곳에서는 정상적인 서포트다 프린팅 될 수 있습니다." - -#: fdmprinter.def.json -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 "출력물의 내부채움을 조절합니다." #: fdmprinter.def.json msgctxt "support_interface_density description" @@ -4158,898 +137,19 @@ msgid "Adjusts the density of the roofs and floors of the support structure. A h msgstr "서포트의 지붕 및 바닥 밀도를 조정합니다. 값이 높을수록 오버행에서 좋지만 서포트를 제거하기가 더 어렵습니다." #: fdmprinter.def.json -msgctxt "support_roof_density label" -msgid "Support Roof 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 "서포트 구조의 밀도를 조정합니다. 값이 높을수록 오버행이 좋아 서포트만 서포트를 제거하기가 더 어렵습니다." #: fdmprinter.def.json -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 "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용될 필라멘트의 직경과 일치시킵니다." #: fdmprinter.def.json -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "서포트 지붕 선 거리" - -#: fdmprinter.def.json -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 "프린팅 된 지붕 루프 사이의 거리. 이 설정은 서포트 지붕 밀도에 의해 계산되지만 별도로 조정할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "서포트 바닥 밀도" - -#: fdmprinter.def.json -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 "서포트 구조체의 바닥 밀도. 값이 높을수록 서포트가 모델 위에 더 잘 접착됩니다." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "서포트 바닥 선 거리" - -#: fdmprinter.def.json -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 "프린팅 된 서포트 플로어 사이의 거리. 이 설정은 서포트 바닥 밀도로 계산되지만 별도로 조정할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "서포트 인터페이스 패턴" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "모델과 서포트 인터페이스를 프린팅하는 패턴입니다." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "라인" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "그리드" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "삼각형" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "동심원의" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "서포트 지붕 패턴" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "서포트의 지붕이 프린팅되는 패턴." - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "라인" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "그리드" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "삼각형" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "동심원의" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "서포트 바닥 패턴" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "서포트의 바닥이 프린팅되는 패턴." - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "라인" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "그리드" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "삼각형" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "동심원의" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" - -#: fdmprinter.def.json -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "최소 서포트 인터페이스 지역" - -#: fdmprinter.def.json -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 "지원 인터페이스 다각형의 최소 영역 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." - -#: fdmprinter.def.json -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "최소 서포트 지붕 지역" - -#: fdmprinter.def.json -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 "서포트 지붕에 대한 최소 면적 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." - -#: fdmprinter.def.json -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "최소 서포트 바닥 지역" - -#: fdmprinter.def.json -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 "지원 바닥의 최소 면적 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." - -#: fdmprinter.def.json -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "서포트 인터페이스 수평 확장" - -#: fdmprinter.def.json -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "서포트 인터페이스 영역에 적용되는 오프셋 양." - -#: fdmprinter.def.json -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "서포트 지붕 수평 확장" - -#: fdmprinter.def.json -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "서포트 지붕에 적용되는 오프셋 양." - -#: fdmprinter.def.json -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "서포트 바닥 수평 확장" - -#: fdmprinter.def.json -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "서포트 바닥에 적용되는 오프셋 양." - -#: fdmprinter.def.json -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "서포트 인터페이스 선 방향" - -#: fdmprinter.def.json -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도를 번갈아 사용)." - -#: fdmprinter.def.json -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "서포트 지붕 선 방향" - -#: fdmprinter.def.json -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도를 번갈아 사용)." - -#: fdmprinter.def.json -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "바닥 지붕 선 방향" - -#: fdmprinter.def.json -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도를 번갈아 사용)." - -#: fdmprinter.def.json -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "팬 속도 무시" - -#: fdmprinter.def.json -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "활성화되면 서포트 바로 위의 스킨 영역에 대한 프린팅 냉각 팬 속도가 변경됩니다." - -#: fdmprinter.def.json -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "지원되는 스킨 팬 속도" - -#: fdmprinter.def.json -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 "서포트 바로 위의 스킨 영역을 인쇄할 때 사용할 팬 속도 백분율 빠른 팬 속도를 사용하면 서포트를 더 쉽게 제거할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "타워 사용" - -#: fdmprinter.def.json -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 "작은 오버행에 서포트를 생성하기 위해 특수한 타워를 사용. 이 타워들은 그들이 서포트하는 지역보다 더 큰 지름을 가지고 있습니다. 오버행 부근에서 타워의 직경이 감소하여 지붕을 형성합니다." - -#: fdmprinter.def.json -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "타워 지름" - -#: fdmprinter.def.json -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "특수 타워의 지름." - -#: fdmprinter.def.json -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "최대 타워 지지 직경" - -#: fdmprinter.def.json -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 방향의 최대 직경입니다." - -#: fdmprinter.def.json -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "타워 지붕 각도" - -#: fdmprinter.def.json -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 "타워 옥상의 각도. 높은 값을 지정하면 뾰족한 타워 지붕이되고, 값이 낮을수록 평평한 타워 지붕이됩니다." - -#: fdmprinter.def.json -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "드롭 다운 서포트 메쉬" - -#: fdmprinter.def.json -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 "서포트 메쉬 아래의 모든 부분을 지원하여서 서포트 메쉬에 오버행이 없습니다." - -#: fdmprinter.def.json -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "장면에 서포트 메쉬가 있습니다" - -#: fdmprinter.def.json -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "장면에 서포트 메쉬가 있습니다. 이 설정은 Cura가 제어합니다." - -#: fdmprinter.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "빌드 플레이트 부착" - -#: fdmprinter.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "부착" - -#: fdmprinter.def.json -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "프라임 블롭 활성화" - -#: fdmprinter.def.json -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 "프린팅하기 전에 프라이밍할지 여부. 이 설정을 켜면 프린팅하기 전에 익스트루더가 노즐에서 재료를 준비 할 수 있습니다. 브림 또는 스커트 프린팅는 프라이밍처럼 작동 할 수 있습니다.이 경우이 설정을 해제하면 시간이 절약됩니다." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "익스트루더 프라임 X 위치" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐의 X 좌표입니다." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "익스트루더 프라임 Y 위치" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐의 Y 좌표입니다." - -#: fdmprinter.def.json -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "빌드 플레이트 고정 유형" - -#: fdmprinter.def.json -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 "빌드 플레이트에 대한 접착력을 향상시키는 데 도움이되는 다양한 옵션. 브림은 뒤틀림을 방지하기 위해 모델 바닥 주위에 단층 평면 영역을 추가합니다. 래프트는 모델 아래에 지붕이있는 두꺼운 격자를 추가합니다. 스커트는 모델 주변에 프린팅 된 선이지만 모델에는 연결되어 있지 않습니다." - -#: fdmprinter.def.json -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "스커트" - -#: fdmprinter.def.json -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "브림" - -#: fdmprinter.def.json -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "래프트" - -#: fdmprinter.def.json -msgctxt "adhesion_type option none" -msgid "None" -msgstr "None" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "빌드 플레이트 고정 익스트루더" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "스커트 / 브림 / 래프트 프린팅에 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다." - -#: fdmprinter.def.json -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "스커트/브림 익스트루더" - -#: fdmprinter.def.json -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 "스커트 또는 브림 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." - -#: fdmprinter.def.json -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "래프트 베이스 익스트루더" - -#: fdmprinter.def.json -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 "스커트 또는 브림 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." - -#: fdmprinter.def.json -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "래프트 중간 익스트루더" - -#: fdmprinter.def.json -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 "래프트의 중간 레이어 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." - -#: fdmprinter.def.json -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "래프트 상단 익스트루더" - -#: fdmprinter.def.json -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 "래프트의 상단 레이어 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." - -#: fdmprinter.def.json -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "스커트 선 수" - -#: fdmprinter.def.json -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으로 설정하면 스커트가 비활성화됩니다." - -#: fdmprinter.def.json -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "스커트 거리" - -#: fdmprinter.def.json -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" -"이것은 최소 거리입니다. 여러 개의 스커트 선이 이 거리에서 바깥쪽으로 연장됩니다." - -#: fdmprinter.def.json -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "스커트/브림 최소 길이" - -#: fdmprinter.def.json -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으로 설정하면 무시됩니다." - -#: fdmprinter.def.json -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "브림 너비" - -#: fdmprinter.def.json -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 "모델에서 가장 바깥 쪽 브림까지의 거리. 큰 테두리는 빌드 플레이트에 대한 접착력을 향상 시키지만 효과적인 프린팅 영역도 감소시킵니다." - -#: fdmprinter.def.json -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "브림 선 수" - -#: fdmprinter.def.json -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 "브림에 사용되는 선의 수입니다. 더 많은 브림 선이 빌드 플레이트에 대한 접착력을 향상 시키지만 유효 프린트 영역도 감소시킵니다." - -#: fdmprinter.def.json -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "브림 거리" - -#: fdmprinter.def.json -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 "첫 번째 브림 선과 첫 번째 레이어 프린팅의 윤곽 사이의 수평 거리입니다. 작은 간격은 브림을 제거하기 쉽도록 하면서 내열성의 이점을 제공할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "브림이 서포트를 대체" - -#: fdmprinter.def.json -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 "서포트가 차지할 공간이더라도 모델 주변에 브림이 인쇄되도록 합니다. 이렇게 하면 서포트의 첫 번째 레이어 영역 일부가 브림 영역으로 대체됩니다." - -#: fdmprinter.def.json -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "밖에서만 브림 생성" - -#: fdmprinter.def.json -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 "모델 바깥 쪽 브림에만 프린팅합니다. 나중에 제거해야하는 브림의 양이 줄어들지만 베드 접착력은 그렇게 많이 줄어들지 않습니다." - -#: fdmprinter.def.json -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "래프트 추가 여백" - -#: fdmprinter.def.json -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 "래프트가 활성화 된 경우 래프트가 주어진 모델 주변의 추가 래프트 지역입니다. 이 여백을 늘리면 재료를 더 많이 사용하고 출력물을 적게 차지하면서 더 강력한 래프트가 만들어집니다." - -#: fdmprinter.def.json -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "래프트 부드럽게하기" - -#: fdmprinter.def.json -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 "이 설정은 래프트 윤곽의 안쪽 구석의 곡률을 제어합니다. 안쪽 구석이 여기에 지정된 값과 동일한 반경으로 반원 모양으로 휘어집니다. 또한 이 설정을 사용하면 래프트 윤곽에서 그러한 원보다 작은 구멍이 제거됩니다." - -#: fdmprinter.def.json -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "래프트 에어 갭" - -#: fdmprinter.def.json -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 "최종 래프트 층과 모델의 첫 번째 층 사이의 틈새. 래프트 층과 모델 사이의 결합을 낮추기 위해 이 양만큼 첫 번째 층만 올립니다. 래프트를 쉽게 떼어 낼 수 있습니다." - -#: fdmprinter.def.json -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "초기 레이어 Z 겹침" - -#: fdmprinter.def.json -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 "에어 갭에서 손실 된 필라멘트를 보완하기 위해 Z 방향으로 모델의 첫 번째와 두 번째 레이어가 중첩되도록 합니다. 첫 번째 모델 레이어 위의 모든 모델은이 양만큼 아래로 이동합니다." - -#: fdmprinter.def.json -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "래프트 탑 레이어" - -#: fdmprinter.def.json -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보다 부드러운 표면을 만듭니다." - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "래프트 상단 레이어 두께" - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "상단 래프트 레이어의 레이어 두께." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "래프트 상단 선 너비" - -#: fdmprinter.def.json -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 "래프트의 윗면에 있는 선의 폭. 래프트의 상단이 매끄럽도록 얇은 선으로 구성 될 수 있습니다." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "래프트 상단 간격" - -#: fdmprinter.def.json -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 "상단 래프트 레이어에 대한 래프트 사이의 거리. 간격은 선 너비와 동일해야 표면이 단색입니다." - -#: fdmprinter.def.json -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "래프트 중간 레이어" - -#: fdmprinter.def.json -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 "래프트의 베이스와 표면 사이에 있는 레이어의 수. 이 수가 래프트의 주요 두께를 구성합니다. 이 수가 증가하면 래프트가 더 두껍고 튼튼해집니다." - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "래프트 중간 두께" - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "중간 래프트 층의 층 두께." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "래프트 중간 선 너비" - -#: fdmprinter.def.json -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 "중간 래프트 층의 선폭. 두 번째 레이어를 더 돌출 시키면 선이 빌드 플레이트에 달라 붙습니다." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "래프트 중간 간격" - -#: fdmprinter.def.json -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 "중간 래프트 층에 대한 래프트 사이의 거리. 중간 틈새는 매우 넓어야하며 래프트 상부 층을서포트 할만큼 충분히 촘촘해야합니다." - -#: fdmprinter.def.json -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "래프트 기준 두께" - -#: fdmprinter.def.json -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 "기본 래프트 레이어의 레이어 두께. 이것은 프린터 빌드 플레이트에 단단히 붙어있는 두꺼운 층이어야합니다." - -#: fdmprinter.def.json -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "래프트 기준 선 너비" - -#: fdmprinter.def.json -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 "기본 래프트 층에있는 선의 너비. 이것은 빌드 플레이트 접착을 돕기 위해 두꺼운 선 이어야 합니다." - -#: fdmprinter.def.json -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "래프트 기준 선 간격" - -#: fdmprinter.def.json -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 "기본 래프트 층에 대한 래프트 사이의 거리. 넓은 간격으로 빌드 플레이트에서 래프트를 쉽게 제거 할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "래프트 프린팅 속도" - -#: fdmprinter.def.json -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "래프트가 프린팅되는 속도." - -#: fdmprinter.def.json -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "래프트 상단 프린팅 속도" - -#: fdmprinter.def.json -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 "상단 래프트 레이어가 프린팅되는 속도입니다. 이 노즐은 조금 더 느리게 프린팅해야 노즐이 인접한 표면 선을 천천히 부드럽게 할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "래프트 중앙 프린팅 속도" - -#: fdmprinter.def.json -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 "중간 래프트 층이 프린팅되는 속도. 이것은 노즐에서 나오는 재료의 양이 상당히 많기 때문에 아주 천천히 프린팅되어야합니다." - -#: fdmprinter.def.json -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "래프트 기본 프린팅 속도" - -#: fdmprinter.def.json -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 "기본 래프트 레이어가 프린팅되는 속도입니다. 이것은 노즐에서 나오는 재료의 양이 상당히 많기 때문에 아주 천천히 프린팅되어야 합니다." - -#: fdmprinter.def.json -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "래프트 프린팅 가속도" - -#: fdmprinter.def.json -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "래프트가 프린팅되는 가속도." - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "래프트 상단 프린팅 가속도" - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "상단 래프트 레이어가 프린팅되는 가속도입니다." - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "래프트 중앙 프린팅 가속도" - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "중간 래프트 층이 프린팅되는 가속도." - -#: fdmprinter.def.json -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "래프트 기본 프린팅 가속도" - -#: fdmprinter.def.json -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "기본 래프트 레이어가 프린팅되는 가속도입니다." - -#: fdmprinter.def.json -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "래프트 프린팅 Jerk" - -#: fdmprinter.def.json -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "래프트가 프린팅 될 때의 Jerk입니다." - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "래프트 상단 프린팅 Jerk" - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "상단 래프트 레이어가 프린팅 될 때의 Jerk입니다." - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "래프트 중앙 프린팅 Jerk" - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "중간 래프트 층이 프린팅 될 때의 Jerk입니다." - -#: fdmprinter.def.json -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "래프트 기본 프린팅 Jerk" - -#: fdmprinter.def.json -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "기본 래프트 레이어가 프린팅 될 때의 Jerk입니다." - -#: fdmprinter.def.json -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "래프트 팬 속도" - -#: fdmprinter.def.json -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "래프트의 팬 속도." - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "래프트 상단 팬 속도" - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "상단 래프트 레이어의 팬 속도입니다." - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "래프트 중앙 팬 속도" - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "중간 래프트 레이어의 팬 속도입니다." - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "래프트 기본 팬 속도" - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "기본 래프트 레이어의 팬 속도입니다." - -#: fdmprinter.def.json -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "이중 압출" - -#: fdmprinter.def.json -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "여러 익스트루더로 프린팅 할 때 사용되는 설정입니다." - -#: fdmprinter.def.json -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "프라임 타워 사용" - -#: fdmprinter.def.json -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)하는 프린팅 옆에 타워를 프린팅하십시오." - -#: fdmprinter.def.json -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "프라임 타워 사이즈" - -#: fdmprinter.def.json -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "프라임 타워의 너비." - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "프라임 타워 최소 볼륨" - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "충분한 재료를 퍼지하기 위해 프라임 타워 각 층의 최소 부피." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "프라임 타워 X 위치" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "프라임 타워 위치의 x 좌표입니다." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "프라임 타워 Y 위치" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "프라임 타워 위치의 y 좌표입니다." - -#: fdmprinter.def.json -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 "서포트 구조의 배치를 조정합니다. 배치는 빌드 플레이트 또는 모든 곳을 터치하도록 설정할 수 있습니다. 모든 곳에 설정하면 모델에 서포트 구조가 프린팅됩니다." #: fdmprinter.def.json msgctxt "prime_tower_wipe_enabled description" @@ -5057,244 +157,14 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "하나의 노즐로 프라임 타워를 프린팅 한 후, 다른 타워의 이물질을 프라임 타워에서 닦아냅니다." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -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 "기기가 하나의 익스트루더에서 다른 익스트루더로 전환 된 후, 빌드 플레이트가 내려가 노즐과 출력물 사이에 간격이 생깁니다. 이렇게 하면 프린트 물 바깥쪽에서 노즐로 부터 필라멘트가 흐르는 것을 방지합니다." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "프라임 타워는 모델이 제공하지 않더라도 브림이 제공하는 추가 접착이 필요할 수 있습니다. 현재 '래프트' 접착 유형을 사용할 수 없습니다." - -#: fdmprinter.def.json -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Ooze 쉴드 사용" - -#: fdmprinter.def.json -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 쉴드를 활성화. 이렇게하면 첫 번째 노즐과 동일한 높이에 두 번째 노즐을 닦을 가능성이 있는 모델 주위에 쉘이 생깁니다." - -#: fdmprinter.def.json -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Ooze 쉴드 각" - -#: fdmprinter.def.json -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 쉴드가 덜 파손되지만 재료는 더 많이 소모됩니다." - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Ooze 쉴드 거리" - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "X/Y 방향으로 출력물에서 Ooze 쉴드까지의 거리." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "노즐 스위치 리트렉션 거리" - -#: fdmprinter.def.json -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으로 설정하십시오. 이는 일반적으로 열 영역의 길이와 같아야 합니다." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "노즐 스위치 리트렉션 속도" - -#: fdmprinter.def.json -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 "필라멘트가 리트렉션 되는 속도입니다. 리트렉션 속도가 빠르면 좋지만 리트렉션 속도가 높으면 필라멘트가 갈릴 수 있습니다." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "노즐 스위치 후퇴 속도" - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "노즐 스위치 리트렉션시 필라멘트가 리트렉션하는 속도." - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "노즐 스위치 프라임 속도" - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "노즐 스위치 리트렉션 후 필라멘트가 뒤로 밀리는 속도." - -#: fdmprinter.def.json -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "노즐 스위치 엑스트라 프라임 양" - -#: fdmprinter.def.json -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "노즐 스위치 후 프라이밍하는 추가 소재의 양입니다." - -#: fdmprinter.def.json -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "메쉬 수정" - -#: fdmprinter.def.json -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "메쉬를 3D 프린팅에 보다 맞춤화시킵니다." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "유니언 오버랩 볼륨" - -#: fdmprinter.def.json -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 "메쉬 내의 겹치는 볼륨으로 인해 발생하는 내부 지오메트리를 무시하고 볼륨을 하나로 프린팅합니다. 이로 인해 의도하지 않은 내부 공동이 사라질 수 있습니다." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "모든 구멍 제거" - -#: fdmprinter.def.json -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 "각 레이어의 구멍을 제거하고 바깥 쪽 모양 만 유지합니다. 이것은 보이지 않는 내부 지오메트리를 무시합니다. 그러나 위 또는 아래에서 볼 수있는 레이어 구멍도 무시합니다." - -#: fdmprinter.def.json -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "광범위한 스티칭" - -#: fdmprinter.def.json -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 "광범위한 스티칭은 다각형을 만지면서 구멍을 닫음으로써 메쉬의 열린 구멍을 꿰매려합니다. 이 옵션은 많은 처리 시간을 초래할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "끊긴 면 유지" - -#: fdmprinter.def.json -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를 생성하지 못할 때 최후의 수단으로 사용해야 합니다." - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "중복된 메쉬 합치기" - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "서로 닿는 메쉬가 조금 겹치게 만듭니다. 이것은 그들을 더 잘 묶는 것입니다." - -#: fdmprinter.def.json -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "교차된 메쉬 제거" - -#: fdmprinter.def.json -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개의 재료가 서로 중첩되는 경우 사용될 수 있습니다." - -#: fdmprinter.def.json -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "대체 메쉬 제거" - -#: fdmprinter.def.json -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 "교차하는 메쉬로 교차하는 볼륨으로 전환하면 겹치는 메쉬가 서로 얽히게됩니다. 이 설정을 해제하면 메시 중 하나가 다른 메시에서 제거되는 동안 오버랩의 모든 볼륨을 가져옵니다." - -#: fdmprinter.def.json -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "비어 있는 첫 번째 레이어 제거" - -#: fdmprinter.def.json -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 "첫 번째로 프린팅된 레이어 바로 아래의 비어 있는 레이어를 제거합니다. 이 설정을 해제하면 슬라이싱 허용 오차 설정을 배타 또는 중간으로 설정할 경우 첫 번째 레이어가 비어 있게 될 수 있습니다." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "최대 해상도" - -#: fdmprinter.def.json -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 코드를 처리하는 데 필요한 속도를 유지할 수 있으며 처리할 수 없는 메쉬의 디테일이 제거되므로 슬라이드 속도가 높아집니다." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "최대 이동 해상도" - -#: fdmprinter.def.json -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 코드를 처리하는 데 필요한 속도를 유지할 수 있지만, 모델을 피하기 때문에 정확도가 감소합니다." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "최대 편차" - -#: fdmprinter.def.json -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 코드도 감소합니다. 최대 편차는 최대 해상도의 한계이며, 따라서 두 항목이 충돌하면 항상 최대 편차가 우선합니다." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "최대 압출 영역 편차" - -#: fdmprinter.def.json -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 코드도 감소합니다." - -#: fdmprinter.def.json -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "특수 모드" - -#: fdmprinter.def.json -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "모델을 프린팅하는 새로운 방법들." - -#: fdmprinter.def.json -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "프린팅 순서" - -#: fdmprinter.def.json -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 "모두" #: fdmprinter.def.json msgctxt "print_sequence option all_at_once" @@ -5302,1271 +172,19 @@ msgid "All at Once" msgstr "모두 한꺼번에" #: fdmprinter.def.json -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -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 "출력물의 해상도에 영향을 미치는 모든 설정. 이러한 설정은 품질 (및 프린팅 시간)에 큰 영향을 미칩니다." #: fdmprinter.def.json -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "메쉬 내부채움" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "대체 여분 벽" #: fdmprinter.def.json -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 "겹치는 다른 메쉬의 내부채움율을 수정합니다. 다른 메쉬의 내부채움 영역을 이 메쉬의 영역으로 대체합니다. 하나의 벽과 상단/바닥 스킨만을 프린팅하는 것이 추천합니다." - -#: fdmprinter.def.json -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "메쉬 처리 랭크" - -#: fdmprinter.def.json -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 "여러 내부채움 매쉬 오버랩을 고려할 때 메쉬의 우선 순위를 결정합니다. 여러 내부채움 메쉬가 오버랩하는 영역은 최고 랭크의 메쉬 설정에 착수하게 됩니다. 높은 내부채움 메쉬는 낮은 내부채움 메쉬와 표준 메쉬의 내부채움을 수정합니다." - -#: fdmprinter.def.json -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "커팅 메쉬" - -#: fdmprinter.def.json -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 "이 메쉬의 볼륨을 다른 메쉬 내로 제한합니다. 이 기능을 사용하면 다른 설정과 전체 익스트루더로 하나의 메쉬 프린팅 영역을 만들 수 있습니다." - -#: fdmprinter.def.json -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "몰드" - -#: fdmprinter.def.json -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 "모형을 몰드으로 프린팅하여 모형에 몰드과 유사한 모형을 만들 수 있습니다." - -#: fdmprinter.def.json -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "최소 몰드 너비" - -#: fdmprinter.def.json -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "몰드의 바깥쪽과 모델의 바깥쪽 사이의 최소 거리입니다." - -#: fdmprinter.def.json -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "몰드 지붕 높이" - -#: fdmprinter.def.json -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "모델의 수평 부분 위의 높이로 몰드를 프린팅합니다." - -#: fdmprinter.def.json -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "몰드 각도" - -#: fdmprinter.def.json -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도의 각은 모형의 외형을 모델의 외형으로 만듭니다." - -#: fdmprinter.def.json -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "서포트 메쉬" - -#: fdmprinter.def.json -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "본 메시를 사용하여 서포트 영역을 지정하십시오. 이것은 서포트 구조를 생성하는 데 사용할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "안티 오버행 메쉬" - -#: fdmprinter.def.json -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 "본 메쉬를 사용하여 모델에서 오버행부로 감지되지 않을 부분을 지정합니다. 이것은 원하지 않는 서포트 구조를 제거하는 데 사용될 수 있습니다." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "표면 모드" - -#: fdmprinter.def.json -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 "모델을 표면만, 볼륨 또는 느슨한 표면이있는 볼륨으로 취급합니다. 일반 프린팅 모드는 볼륨만 프린팅합니다. \"표면\"은 아무런 내부채움없이 상단 / 하단 스킨없이 메쉬 표면을 추적하는 단일 벽을 프린팅합니다. \"둘 다\"는 정상 및 나머지 폴리곤과 같은 닫힌 볼륨을 서피스로 프린팅합니다." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "표준" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "표면" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "모두" - -#: fdmprinter.def.json -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "외부 윤곽선을 나선형으로 만듦" - -#: fdmprinter.def.json -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가 증가합니다. 이 기능은 솔리드 모델을 단단한 바닥이있는 단일 벽으로 프린팅합니다. 이 기능은 각 레이어에 단일 부품 만 포함되어 있을 때만 활성화 해야 합니다." - -#: fdmprinter.def.json -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "부드러운 나선형 윤곽" - -#: fdmprinter.def.json -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- 이음선은 출력물에서는 거의 보이지 않지만 레이어 뷰에서는 여전히 보임). 매끄러움은 표면의 세부 묘사를 흐릿하게 만드는 경향이 있습니다." - -#: fdmprinter.def.json -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "상대적 압출" - -#: fdmprinter.def.json -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 스크립트가 출력되기 전에 항상 절대 값으로 설정됩니다." - -#: fdmprinter.def.json -msgctxt "experimental label" -msgid "Experimental" -msgstr "실험적인" - -#: fdmprinter.def.json -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "아직 구체화되지 않은 기능들." - -#: fdmprinter.def.json -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "슬라이싱 허용 오차" - -#: fdmprinter.def.json -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 "슬라이스 레이어의 수직 허용 오차입니다. 레이어의 윤곽선은 일반적으로 각 레이어의 두께 중간(중간)을 교차하는 부분을 기준으로 생성됩니다. 또는 각 레이어가 레이어의 높이 전체의 볼륨에 들어가는 영역(포함하지 않음)이 있거나 레이어 안의 어느 지점에 들어가는 영역(포함)이 있을 수 있습니다. 포함된 영역에서 가장 많은 디테일이 포함되고 포함되지 않은 영역을 통해 가장 맞게 만들 수 있으며 중간을 통해 원래 표면과 가장 유사하게 만들어냅니다." - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "중간" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "배타적" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "중복" - -#: fdmprinter.def.json -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "상단 표면 스킨 선 너비" - -#: fdmprinter.def.json -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "프린팅 상단 부분의 한 줄 너비." - -#: fdmprinter.def.json -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "탑 표면 스킨 패턴" - -#: fdmprinter.def.json -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "최상위 레이어의 패턴." - -#: fdmprinter.def.json -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "윤곽" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "동심원의" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" - -#: fdmprinter.def.json -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "단면 상단 표면 순서" - -#: fdmprinter.def.json -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 "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 상단 표면 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." - -#: fdmprinter.def.json -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "상단 표면 스킨 라인 방향" - -#: fdmprinter.def.json -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도)를 사용하는 빈 리스트입니다." - -#: fdmprinter.def.json -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "내부채움재 이동 최적화" - -#: fdmprinter.def.json -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 "활성화되면, 내부채움 라인 프린팅 순서가 최적화되어 이동 거리를 줄입니다. 이동 시간의 감소는 슬라이스되는 모델, 내부채움 패턴, 밀도 등에 따라 달라집니다. 작은 내부채움 영역이 많은 일부 모델의 경우, 모델을 슬라이스하는 시간이 상당히 늘어납니다." - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature label" -msgid "Auto Temperature" -msgstr "자동 온도" - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature description" -msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -msgstr "해당 레이어의 평균 유속으로 각 레이어의 온도를 자동으로 변경." - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "재료 공급 온도 그래프" - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "재료 공급 데이터 (mm3 / 초) - 온도 (섭씨)." - -#: fdmprinter.def.json -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "최소 다각형 둘레" - -#: fdmprinter.def.json -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 모델에 적합합니다." - -#: fdmprinter.def.json -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Chunk에서 서포트 중단" - -#: fdmprinter.def.json -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 "서포트 구조가 쉽게 끊어 지도록 서포트 라인 연결을 건너 뜁니다. 이 설정은 지그재그 서포트 충전 패턴에 적용됩니다." - -#: fdmprinter.def.json -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "서포트 Chunk 크기" - -#: fdmprinter.def.json -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 밀리미터마다 서포트선 사이를 연결합니다." - -#: fdmprinter.def.json -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Chunk 라인 카운트 서포트" - -#: fdmprinter.def.json -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 개의 연결 라인을 건너 뜁니다." - -#: fdmprinter.def.json -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "드래프트 쉴드 사용" - -#: fdmprinter.def.json -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 "모델 주위에 벽이 생겨 외부 공기 흐름을 막아 (뜨거운) 공기를 막을 수 있습니다. 왜곡이 쉬운 소재에 특히 유용합니다." - -#: fdmprinter.def.json -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "드래프트 쉴드 X/Y 거리" - -#: fdmprinter.def.json -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "X/Y 방향으로 프린트와 드래프트 쉴드까지의 거리입니다." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "드래프트 쉴드 제한" - -#: fdmprinter.def.json -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 "드래프트 쉴드의 높이를 설정합니다. 모델의 전체 높이 또는 제한된 높이에서 드래프트 쉴드를 프린팅하도록 선택합니다." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "가득찬" - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "제한된" - -#: fdmprinter.def.json -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "드래프트 쉴드 높이" - -#: fdmprinter.def.json -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "드래프트 쉴드의 높이 제한. 이 높이 이상에서는 드래프트 쉴드가 프린팅되지 않습니다." - -#: fdmprinter.def.json -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "오버행이 프린팅되도록 설정" - -#: fdmprinter.def.json -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 "최소한의 서포트가 필요하도록 프린팅 된 모델의 형상을 변경합니다. 가파른 오버행은 얕은 오버행이됩니다. 오버행 영역이 더 수직으로 떨어집니다." - -#: fdmprinter.def.json -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "최대 모델 각도" - -#: fdmprinter.def.json -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도는 모델을 변경하지 않습니다." - -#: fdmprinter.def.json -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "최대 오버행 홀 영역" - -#: fdmprinter.def.json -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² 값은 모델 베이스의 모든 홀을 채웁니다." - -#: fdmprinter.def.json -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "코스팅(Coasting) 사용" - -#: fdmprinter.def.json -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)은 압출 경로의 마지막 부분을 이동 경로로 바꿉니다. 누출된 재료는 스트링을 줄이기 위해 압출 경로의 마지막 부분을 프린팅하는 데 사용됩니다." - -#: fdmprinter.def.json -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "코스팅(Coasting) 양" - -#: fdmprinter.def.json -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "그렇지 않으면 볼륨이 흘러 나옵니다. 이 값은 일반적으로 노즐 직경 입방체에 가깝습니다." - -#: fdmprinter.def.json -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "코스팅(Coasting) 최소 양" - -#: fdmprinter.def.json -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) 양보다 커야합니다." - -#: fdmprinter.def.json -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "코스팅(Coasting) 속도" - -#: fdmprinter.def.json -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% 보다 약간 작은 값을 권합니다." - -#: fdmprinter.def.json -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "크로스 3D 포켓 크기" - -#: fdmprinter.def.json -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 방향 교차점에있는 포켓의 크기입니다." - -#: fdmprinter.def.json -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "교차 충진 밀도 이미지" - -#: fdmprinter.def.json -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 "인쇄 충진물의 해당 위치에서 밝기 값으로 최소 밀도를 결정하는 이미지의 파일 위치." - -#: fdmprinter.def.json -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "지지대에 대한 교차 충진 밀도 이미지" - -#: fdmprinter.def.json -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 "지지대의 해당 위치에서 밝기 값으로 최소 밀도를 결정하는 이미지의 파일 위치." - -#: fdmprinter.def.json -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "원추형 서포트 사용" - -#: fdmprinter.def.json -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "오버행보다 하단에서 지지대 영역을 작게 만듭니다." - -#: fdmprinter.def.json -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "원추서포트 각" - -#: fdmprinter.def.json -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도가 수평입니다. 각도가 작 으면 서포트가 더 튼튼하지만 더 많은 재료로 구성됩니다. 음수 각도는 서포트의 받침대가 상단보다 넓게 만듭니다." - -#: fdmprinter.def.json -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "원뿔형 서포트 최소 너비" - -#: fdmprinter.def.json -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 "원추형서포트 영역의 베이스가 축소되는 최소 너비. 폭이 좁으면 불안정한 서포트 구조가 생길 수 있습니다." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "퍼지 스킨" - -#: fdmprinter.def.json -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 "외벽을 프린팅하는 동안 무작위로 지터가 발생하여 표면이 거칠고 흐릿해 보입니다." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "부용 퍼지 스킨" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "부품의 윤곽만 지터하고 부품의 구멍은 지터하지 않습니다." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "퍼지 스킨 두께" - -#: fdmprinter.def.json -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 "지터가 발생할 너비. 내벽이 변경되지 않으므로 외벽 너비 아래로 유지하는 것이 좋습니다." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "퍼지 스킨 밀도" - -#: fdmprinter.def.json -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 "레이어의 각 다각형에 있는 점의 평균 밀도입니다. 다각형의 원래 점은 버려지므로 밀도가 낮으면 해상도가 감소합니다." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "퍼지 스킨 포인트 거리" - -#: fdmprinter.def.json -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 "각 선분에 있는 임의의 점 사이의 평균 거리입니다. 다각형의 원래 점은 버려지므로 해상도가 감소합니다. 이 값은 퍼지 스킨 두께의 절반보다 커야합니다." - -#: fdmprinter.def.json -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "압출 속도 보상 최대 압출 오프셋" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "압출 속도 보상 배율" - -#: fdmprinter.def.json -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초 압출 시 필라멘트가 이동할 수 있는 거리의 백분율)." - -#: fdmprinter.def.json -msgctxt "wireframe_enabled label" -msgid "Wire Printing" -msgstr "와이어 프린팅" - -#: fdmprinter.def.json -msgctxt "wireframe_enabled description" -msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -msgstr "외벽의 표면만 거미줄 같은 형태로 공중에서 프린팅합니다. 이것은 상향 및 대각선 하향 라인을 통해 연결된 Z 간격으로 모형의 윤곽을 수평으로 인쇄함으로써 구현됩니다." - -#: fdmprinter.def.json -msgctxt "wireframe_height label" -msgid "WP Connection Height" -msgstr "WP 연결 높이" - -#: fdmprinter.def.json -msgctxt "wireframe_height description" -msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -msgstr "두 개의 수평 부분 사이의 상향 및 대각선 방향의 높이입니다. 이것은 네트 구조의 전체 밀도를 결정합니다. 와이어 프린팅에만 적용됩니다." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset label" -msgid "WP Roof Inset Distance" -msgstr "WP 지붕 인셋 거리" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset description" -msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -msgstr "지붕에서 연결을 할 때 안쪽까지 윤곽선을 그립니다. 와이어 프린팅에만 적용됩니다." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed label" -msgid "WP Speed" -msgstr "WP 속도" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed description" -msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -msgstr "재료를 압출 할 때 노즐이 움직이는 속도. 와이어 프린팅에만 적용됩니다." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom label" -msgid "WP Bottom Printing Speed" -msgstr "WP 하단 프린팅 속도" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom description" -msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -msgstr "첫 번째 레이어 프린팅 속도. 와이어 프린팅에만 적용됩니다." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up label" -msgid "WP Upward Printing Speed" -msgstr "WP 상향 프린팅 속도" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up description" -msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -msgstr "공중에서 위쪽으로 선을 프린팅하는 속도. 와이어 프린팅에만 적용됩니다." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down label" -msgid "WP Downward Printing Speed" -msgstr "WP 하향 프린팅 속도" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down description" -msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -msgstr "대각선 방향으로 선을 프린팅하는 속도. 와이어 프린팅에만 적용됩니다." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat label" -msgid "WP Horizontal Printing Speed" -msgstr "WP 가로 프린팅 속도" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat description" -msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -msgstr "모델의 수평 윤곽 프린팅 속도입니다. 와이어 프린팅에만 적용됩니다." - -#: fdmprinter.def.json -msgctxt "wireframe_flow label" -msgid "WP Flow" -msgstr "WP 흐름" - -#: fdmprinter.def.json -msgctxt "wireframe_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -msgstr "압출량 보상 : 압출 된 재료의 양에 이 값을 곱합니다. 와이어 프린팅에만 적용됩니다." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection label" -msgid "WP Connection Flow" -msgstr "WP 연결 흐름" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection description" -msgid "Flow compensation when going up or down. Only applies to Wire Printing." -msgstr "위 또는 아래로 이동할 때 압출량 보정. 와이어 프린팅에만 적용됩니다." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat label" -msgid "WP Flat Flow" -msgstr "WP 플랫 플로우" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat description" -msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -msgstr "평평한 선을 프린팅 할 때 압출량 보정. 와이어 프린팅에만 적용됩니다." - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay label" -msgid "WP Top Delay" -msgstr "WP 상단 지연" - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay description" -msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -msgstr "상향 라인이 강화 될 수 있도록 상향 이동 후 지연 시간. 와이어 프린팅에만 적용됩니다." - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay label" -msgid "WP Bottom Delay" -msgstr "WP 최저 지연" - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay description" -msgid "Delay time after a downward move. Only applies to Wire Printing." -msgstr "하강 후 지연 시간. 와이어 프린팅에만 적용됩니다." - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay label" -msgid "WP Flat Delay" -msgstr "WP 평탄한 지연" - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay description" -msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -msgstr "두 개의 수평 세그먼트 사이의 지연 시간. 이러한 지연을 도입하면 연결 지점에서 이전 레이어와의 접착력이 향상 될 수 있으며 너무 긴 지연으로 인해 처짐이 발생할 수 있습니다. 와이어 프린팅에만 적용됩니다." - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed label" -msgid "WP Ease Upward" -msgstr "WP 상향 조정" - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed description" -msgid "" -"Distance of an upward move which is extruded with half speed.\n" -"This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "기본 속도의 반으로 압출 된 상향 이동 거리. 이로 인해 이전 레이어에 더 나은 접착력을 유발할 수 있지만 레이어에 있는 소재는 너무 많이 가열하지 않습니다. 와이어 프린팅에만 적용됩니다." - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump label" -msgid "WP Knot Size" -msgstr "WP 매듭 크기" - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump description" -msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -msgstr "상향 선의 상단에 작은 매듭을 만들어 연속적인 수평 레이어에 연결할 수 있게 합니다. 와이어 프린팅에만 적용됩니다." - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down label" -msgid "WP Fall Down" -msgstr "WP Fall Down" - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down description" -msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "위쪽으로 밀어 낸 후 재료가 떨어지는 거리. 이 거리는 보상됩니다. 와이어 프린팅에만 적용됩니다." - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along label" -msgid "WP Drag Along" -msgstr "WP 드래그를 따라" - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along description" -msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "대각선 방향으로 압출 된 압출부의 재료가 위쪽으로 밀어내는 거리. 이 거리는 보상됩니다. 와이어 프린팅에만 적용됩니다." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy label" -msgid "WP Strategy" -msgstr "WP 전략" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy description" -msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -msgstr "각 연결 지점에서 두 개의 연속 된 레이어가 연결되도록 하는 전략입니다. 리트렉션을 하면 상향 선이 올바른 위치에서 경화되지만 필라멘트가 갈릴 수 있습니다. 상향 선의 끝에 매듭을 만들어 연결 기회를 높이고 선을 차게 할 수 있습니다. 그러나 느린 프린팅 속도가 필요할 수 있습니다. 또 다른 전략은 상향 라인의 윗부분의 처짐을 보충하는 것입니다. 그러나 선은 항상 예측대로 떨어지지는 않습니다." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option compensate" -msgid "Compensate" -msgstr "보상" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option knot" -msgid "Knot" -msgstr "매듭" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option retract" -msgid "Retract" -msgstr "리트렉트" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down label" -msgid "WP Straighten Downward Lines" -msgstr "WP 직선화 하향 라인" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down description" -msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -msgstr "수평선 조각에 의해 덮여있는 비스듬한 하향 선의 백분율. 이렇게 하면 상향 선의 맨 위 지점이 처지는 것을 방지 할 수 있습니다. 와이어 프린팅에만 적용됩니다." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down label" -msgid "WP Roof Fall Down" -msgstr "WP 지붕 Fall Down" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down description" -msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -msgstr "공중에서 프린팅된 수평 지붕 라인의 거리는 프린팅 될 때 떨어집니다. 이 거리는 보상됩니다. 와이어 프린팅에만 적용됩니다." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along label" -msgid "WP Roof Drag Along" -msgstr "WP 지붕 끌기" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along description" -msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -msgstr "루프의 외곽 윤곽으로 돌아갈 때 끌린 내향 선의 끝 부분 거리. 이 거리는 보상됩니다. 와이어 프린팅에만 적용됩니다." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay label" -msgid "WP Roof Outer Delay" -msgstr "WP 지붕 외부 지연" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay description" -msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -msgstr "지붕이 될 구멍의 바깥 둘레에서의 시간. 시간이 길면 연결이 더 잘됩니다. 와이어 프린팅에만 적용됩니다." - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance label" -msgid "WP Nozzle Clearance" -msgstr "WP 노즐 유격" - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance description" -msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -msgstr "노즐과 수평 아래쪽 라인 사이의 거리. 거리가 클수록 비스듬한 각도에서 비스듬히 아래쪽으로 선이 그어져 다음 층과의 연결이보다 적어집니다. 와이어 프린팅에만 적용됩니다." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "어댑티브 레이어 사용" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "어댑티브 레이어는 모델의 모양에 따라 레이어의 높이를 계산합니다." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "어댑티브 레이어 최대 변화" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "기본 레이어 높이와 다른 최대 허용 높이." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "어댑티브 레이어 변화 단계 크기" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "이전 높이와 비교되는 다음 레이어 높이의 차이." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "어댑티브 레이어 지형 크기" - -#: fdmprinter.def.json -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 "두 개의 인접 레이어 사이의 대상 수평 거리. 이러한 설정을 줄이면 레이어들의 가장자리를 더 가깝게 하도록 보다 얇은 레이어들을 사용하게 됩니다." - -#: fdmprinter.def.json -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "오버행된 벽 각도" - -#: fdmprinter.def.json -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이면 오버행(경사면)으로 처리되는 벽이 없습니다. 서포트로 지지되는 오버행(경사면)도 오버행(경사면)으로 처리되지 않습니다." - -#: fdmprinter.def.json -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "오버행된 벽 속도" - -#: fdmprinter.def.json -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "오버행된 벽은 정상적인 인쇄 속도의 이 비율로 인쇄됩니다." - -#: fdmprinter.def.json -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "브릿지 설정 사용" - -#: fdmprinter.def.json -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "브릿지가 출력되는 중에 브리지를 감지하고 인쇄 속도, 흐름 및 팬 설정을 수정합니다." - -#: fdmprinter.def.json -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "최소 브리지 벽 길이" - -#: fdmprinter.def.json -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 "이보다 짧은 벽은 일반 벽 설정을 사용하여 인쇄됩니다. 더 이상 지원되지 않는 벽은 브리지 벽 설정을 사용하여 인쇄됩니다." - -#: fdmprinter.def.json -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "브릿지 스킨 서포트 임계값" - -#: fdmprinter.def.json -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 "스킨 영역이 해당 영역의 비율 미만으로 생성되면 브릿지 설정을 사용하여 인쇄하십시오. 그렇지 않으면 일반 스킨 설정을 사용하여 인쇄됩니다." - -#: fdmprinter.def.json -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "브리지의 희박한 내부채움 최대 밀도" - -#: fdmprinter.def.json -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 "희박하다고 여겨지는 내부채움의 최대 밀도 희박한 내부채움의 스킨은 지원되지 않는 것으로 간주되므로 브릿지 스킨으로 취급할 수 있습니다." - -#: fdmprinter.def.json -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "브릿지 벽 코스팅(Coasting)" - -#: fdmprinter.def.json -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)을 하면 노즐의 압력을 낮추고 보다 평평한 브릿지를 만들 수 있습니다." - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "브릿지 벽 속도" - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "브릿지 벽이 프린팅되는 속도." - -#: fdmprinter.def.json -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "브리지 벽 압출량" - -#: fdmprinter.def.json -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "브릿지 스킨 벽 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "브릿지 스킨 속도" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "브릿지 스킨 층이 프린팅되는 속도." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "브리지 스킨 압출량" - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "브릿지 스킨 밀도" - -#: fdmprinter.def.json -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보다 작으면 스킨 라인 사이의 간격이 증가합니다." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "브릿지 팬 속도" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." - -#: fdmprinter.def.json -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "여러 개의 레이어가있는 브릿지" - -#: fdmprinter.def.json -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 "이 옵션을 사용하면 다음 설정을 사용하여 에어 위의 두 번째 및 세 번째 레이어가 인쇄됩니다. 그렇지 않으면 해당 레이어는 일반 설정을 사용하여 인쇄됩니다." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "브릿지 두번째 스킨 속도" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "두번째 브릿지 스킨 레이어를 인쇄 할 때 사용할 인쇄 속도." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "브리지 두 번째 스킨 압출량" - -#: fdmprinter.def.json -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 "두번째 브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "브리지 두 번째 스킨 밀도" - -#: fdmprinter.def.json -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보다 작으면 스킨 라인 사이의 간격이 증가합니다." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "브릿지 두번째 스킨 팬 속도" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "두번째 브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "브릿지 세번째 스킨 속도" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "세번째 브릿지 스킨 레이어를 인쇄 할 때 사용할 인쇄 속도." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "브리지 세 번째 스킨 압출량" - -#: fdmprinter.def.json -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 "세번째 브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "브릿지 세번째 스킨 밀도" - -#: fdmprinter.def.json -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보다 작으면 스킨 라인 사이의 간격이 증가합니다." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "브릿지 세번째 스킨 팬 속도" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "세번째 브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." - -#: fdmprinter.def.json -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "레이어 사이의 와이프 노즐" - -#: fdmprinter.def.json -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개) 이 설정을 활성화하면 레이어 변경 시 리트렉트 동작에 영향을 미칠 수 있습니다. 와이프 스크립트가 작동할 레이어의 감속을 제어하려면 와이프 리트랙션 설정을 사용하십시오." - -#: fdmprinter.def.json -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "와이프 사이의 재료 볼륨" - -#: fdmprinter.def.json -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 "다른 노즐 와이프를 시작하기 전에 압출 성형할 수 있는 최대 재료입니다. 이 값이 레이어에 필요한 재료의 양보다 작으면 이 레이어에서는 아무런 효과가 없습니다. 즉, 레이어당 한번 와이프하는 것으로 제한됩니다." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "와이프 리트랙션 활성화" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "노즐이 프린팅되지 않은 영역 위로 움직일 때 필라멘트를 리트렉션합니다." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "와이프 리트랙션 거리" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "필라멘트를 리트렉션하는 양으로 와이프 순서 동안 새어 나오지 않습니다." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "와이프 리트랙션 추가 초기 양" - -#: fdmprinter.def.json -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 "와이프 이동 중에 재료가 새어 나올 수 있습니다. 이 재료는 여기에서 보상받을 수 있습니다." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "와이프 리트랙션 속도" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "와이프 리트랙션 이동 중에 필라멘트가 리트렉션 및 준비되는 속도입니다." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "와이프 리트랙션 리트렉트 속도" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "와이프 리트랙션 이동 중에 필라멘트가 리트렉트되는 속도입니다." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "와이프 리트렉션 초기 속도" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "와이프 리트랙션 이동 중에 필라멘트가 초기화되는 속도입니다." - -#: fdmprinter.def.json -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "와이프 일시 정지" - -#: fdmprinter.def.json -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "리트랙트를 실행 취소한 후 일시 정지합니다." - -#: fdmprinter.def.json -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "와이프 Z 홉" - -#: fdmprinter.def.json -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 "와이프할 때, 노즐과 출력물 사이에 간격이 생기도록 빌드 플레이트를 내립니다. 이동 중에 노즐이 출력물에 부딪히는 것을 방지하여 제조판에서 출력물을 칠 가능성을 줄입니다." - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "화이프 Z 홉 높이" - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Z 홉을 수행할 때의 높이 차이." - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "와이프 홉 속도" - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "홉 중에 z축을 이동하는 속도입니다." - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "와이프 브러시 X 위치" - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "와이프 스크립트가 시작되는 X 위치입니다." - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "와이프 반복 횟수" - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "브러시 전체에 노즐을 이동하는 횟수입니다." - -#: fdmprinter.def.json -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "와이프 이동 거리" - -#: fdmprinter.def.json -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "브러시 전체에 헤드를 앞뒤로 이동하는 거리입니다." - -#: fdmprinter.def.json -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "소형 구멍 최대 크기" - -#: fdmprinter.def.json -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 "이 수치보다 직경이 작은 구멍 및 부품 윤곽은 소형 피처 속도 기능을 이용해 프린트합니다." - -#: fdmprinter.def.json -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "소형 피처 최대 길이" - -#: fdmprinter.def.json -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "이 수치보다 길이가 짧은 피처 윤곽은 소형 피처 속도 기능을 이용해 프린트합니다." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "소형 피처 속도" - -#: fdmprinter.def.json -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 "소형 피처는 정상적인 프린트 속도의 이 비율로 프린팅됩니다. 프린트 속도가 느리면 부착과 정확도가 개선됩니다." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "소형 피처 초기 레이어 속도" - -#: fdmprinter.def.json -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 "대체 메쉬 제거" #: fdmprinter.def.json msgctxt "material_alternate_walls label" @@ -6579,34 +197,349 @@ msgid "Alternate wall directions every other layer and inset. Useful for materia msgstr "다른 레이어마다 벽 방향을 대체하고 삽입합니다. 금속 프린팅의 경우와 같이 응력을 증강시킬 수 있는 재료에 유용." #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "래프트 내부 모서리 제거" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "알루미늄" #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "래프트가 볼록해지도록 래프트에서 내부 모서리를 제거합니다." +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "항상 활성 도구 쓰기" #: fdmprinter.def.json -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "래프트 베이스 벽 개수" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "외벽을 프린팅하기 위해 이동할 때 항상 리트렉션합니다." #: fdmprinter.def.json -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 "hole_xy_offset description" +msgid "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." +msgstr "각 레이어의 모든 구멍에 적용된 오프셋의 양. 양수 값은 구멍 크기를 증가시키며, 음수 값은 구멍 크기를 줄입니다." #: fdmprinter.def.json -msgctxt "command_line_settings label" -msgid "Command Line Settings" -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 "각 레이어의 모든 다각형에 적용된 오프셋의 양입니다. 양수 값은 아주 큰 구멍을 보완 할 수 있습니다. 음수 값은 아주 작은 구멍을 보완 할 수 있습니다." #: fdmprinter.def.json -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "큐라(Cura) 프론트 엔드에서 큐라엔진(CuraEngine)이 호출되지 않은 경우에만 사용되는 설정입니다." +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\"이라고 알려진 현상을 보완 할 수 있습니다." + +#: fdmprinter.def.json +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 "각 레이어의 모든 서포트 다각형에 적용된 오프셋의 양입니다. 양수 값을 사용하면 서포트 영역이 원활 해지며 보다 견고한 서포트가 됩니다." + +#: fdmprinter.def.json +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "서포트 바닥에 적용되는 오프셋 양." + +#: fdmprinter.def.json +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "서포트 지붕에 적용되는 오프셋 양." + +#: fdmprinter.def.json +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "서포트 인터페이스 영역에 적용되는 오프셋 양." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "필라멘트를 리트렉션하는 양으로 와이프 순서 동안 새어 나오지 않습니다." + +#: fdmprinter.def.json +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 "모델의 경계를 확인하기 위해 각 큐브의 중심에서 반경을 더하여 이 큐브를 세분화할지 여부를 결정합니다. 값이 클수록 모델의 경계 근처에 작은 큐브가 더 두껍게 나옵니다." + +#: fdmprinter.def.json +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "안티 오버행 메쉬" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "흐름 방지 리트랙션 위치" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "흐름 방지 리트랙션 속도" + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "익스트루더 오프셋을 좌표계에 적용하십시오. 모든 익스트루더에 적용됩니다." + +#: fdmprinter.def.json +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 "모델이 닿는 위치에 연동 빔 구조를 생성합니다. 이렇게 하면 모델, 특히 다른 재료로 프린트된 모델 간의 접착력이 개선됩니다." + +#: fdmprinter.def.json +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "움직일 때 프린팅한 부분을 피하기" + +#: fdmprinter.def.json +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "이동하는 경우 지지대 피함" + +#: fdmprinter.def.json +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "뒤로" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "후면 왼쪽" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "후면 오른쪽" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "모두" + +#: fdmprinter.def.json +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "하단 레이어" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "하단 패턴 초기 레이어" + +#: fdmprinter.def.json +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "밑면 스킨 확장 거리" + +#: fdmprinter.def.json +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "밑면 스킨 제거 폭" + +#: fdmprinter.def.json +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "바닥 두께" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "파단 준비 리트랙션 위치" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "파단 준비 리트랙션 속도" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "준비 온도 파단" + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "파단 리트랙션 위치" + +#: fdmprinter.def.json +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "파단 리트랙션 속도" + +#: fdmprinter.def.json +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "파단 온도" + +#: fdmprinter.def.json +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Chunk에서 서포트 중단" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "브릿지 팬 속도" + +#: fdmprinter.def.json +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "여러 개의 레이어가있는 브릿지" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "브리지 두 번째 스킨 밀도" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "브릿지 두번째 스킨 팬 속도" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "브리지 두 번째 스킨 압출량" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "브릿지 두번째 스킨 속도" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "브릿지 스킨 밀도" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "브리지 스킨 압출량" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "브릿지 스킨 속도" + +#: fdmprinter.def.json +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "브릿지 스킨 서포트 임계값" + +#: fdmprinter.def.json +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "브리지의 희박한 내부채움 최대 밀도" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "브릿지 세번째 스킨 밀도" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "브릿지 세번째 스킨 팬 속도" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "브리지 세 번째 스킨 압출량" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "브릿지 세번째 스킨 속도" + +#: fdmprinter.def.json +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "브릿지 벽 코스팅(Coasting)" + +#: fdmprinter.def.json +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "브리지 벽 압출량" + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "브릿지 벽 속도" + +#: fdmprinter.def.json +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "브림" + +#: fdmprinter.def.json +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "브림 거리" + +#: fdmprinter.def.json +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "내부 브림의 여백 회피" + +#: fdmprinter.def.json +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "브림 선 수" + +#: fdmprinter.def.json +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "밖에서만 브림 생성" + +#: fdmprinter.def.json +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "브림이 서포트를 대체" + +#: fdmprinter.def.json +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "브림 너비" + +#: fdmprinter.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "빌드 플레이트 부착" + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "빌드 플레이트 고정 익스트루더" + +#: fdmprinter.def.json +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "빌드 플레이트 고정 유형" + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "빌드 플레이트 재질" + +#: fdmprinter.def.json +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "빌드 플레이트 모양" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "빌드 플레이트 온도" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "초기 레이어의 빌드 플레이트 온도" + +#: fdmprinter.def.json +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "빌드 볼륨 온도" #: fdmprinter.def.json msgctxt "center_object label" @@ -6614,884 +547,6205 @@ msgid "Center Object" msgstr "가운데 객체" #: fdmprinter.def.json -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 "최소한의 서포트가 필요하도록 프린팅 된 모델의 형상을 변경합니다. 가파른 오버행은 얕은 오버행이됩니다. 오버행 영역이 더 수직으로 떨어집니다." + +#: fdmprinter.def.json +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 "서포트를 생성하는 데 사용할 수 있는 기술 중 하나를 선택합니다. '표준' 서포트는 오버행(경사면) 파트 바로 아래에 서포트 구조물을 생성하고 해당 영역을 바로 아래로 떨어뜨립니다. '트리' 서포트는 모델을 지지하는 브랜치 끝에서 오버행(경사면) 영역을 향해 브랜치를 만들고 빌드 플레이트에서 모델을 지지할 수 있도록 모델을 브랜치로 최대한 감쌉니다." + +#: fdmprinter.def.json +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "코스팅(Coasting) 속도" + +#: fdmprinter.def.json +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "코스팅(Coasting) 양" + +#: fdmprinter.def.json +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)은 압출 경로의 마지막 부분을 이동 경로로 바꿉니다. 누출된 재료는 스트링을 줄이기 위해 압출 경로의 마지막 부분을 프린팅하는 데 사용됩니다." + +#: fdmprinter.def.json +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Combing 모드" + +#: fdmprinter.def.json +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하거나 내부채움 내에서만 빗질하는 것을 피할 수 있습니다." + +#: fdmprinter.def.json +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "커맨드 라인 설정" + +#: fdmprinter.def.json +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "동심원" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "동심원" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "동심원의" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "동심원의" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "동심원의" + +#: fdmprinter.def.json +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "동심원의" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "동심원의" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "동심원 형태" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "동심원의" + +#: fdmprinter.def.json +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "원추서포트 각" + +#: fdmprinter.def.json +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "원뿔형 서포트 최소 너비" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "내부채움 선 연결" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "내부채움 다각형 연결" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "서포트 선 연결" + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "ZigZags 서포트 연결" + +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "상단/하단 다각형 연결" + +#: fdmprinter.def.json +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 "스킨 경로가 나란히 이어지는 내부채움 경로를 연결합니다. 여러 개의 폐다각형으로 구성되는 내부채움 패턴의 경우 이 설정을 사용하면 이동 시간이 크게 감소합니다." + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "지그재그를 연결하십시오. 이것은 지그재그 서포트 구조의 강도를 증가시킵니다." + +#: fdmprinter.def.json +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 "서포트의 끝을 서로 연결하십시오. 이 설정을 사용하면 서포트가 보다 견고해지지만 더 많은 재료가 소모됩니다." + +#: fdmprinter.def.json +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 "내벽의 형태를 따라가는 선을 사용하여 내부채움 패턴과 내벽이 만나는 끝을 연결합니다. 이 설정을 사용하면 내부채움이 벽에 더 잘 붙게되어 내부채움이 수직면의 품질에 미치는 영향을 줄일 수 있습니다. 이 설정을 해제하면 사용되는 재료의 양이 줄어듭니다." + +#: fdmprinter.def.json +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 "스킨 경로가 나란히 이어지는 상단/하단 스킨 경로를 연결합니다. 동심원 패턴의 경우 이 설정을 사용하면 이동 시간이 크게 감소하지만, 내부채움의 중간에 연결될 수 있기 때문에 이 기능은 상단 표면 품질을 저하시킬 수 있습니다." + +#: fdmprinter.def.json +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 "모델 외곽선의 모서리가 이음선의 위치에 영향을 주는지 여부를 제어합니다. 이것은 모서리가 이음선 위치에 영향을 미치지 않는다는 것을 의미하지 않습니다. 이음선 숨김은 이음선이 안쪽 모서리에서 발생할 가능성을 높입니다. 이음선 노출은 이음선이 외부 모서리에서 발생할 가능성을 높입니다. 이음선 숨김 또는 노출은 이음선이 내부나 외부 모서리에서 발생할 가능성을 높입니다. 스마트 숨김은 내외부 모서리 모두 가능하지만, 적절하다면 내부 모서리를 더욱 빈번하게 선택합니다." + +#: fdmprinter.def.json +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 "각 내부채움 선을 여러 개의 선으로 변환합니다. 추가되는 선은 다른 선을 교차하지 않고, 다른 선을 피해 변환됩니다. 내부채움을 빽빽하게 만들지만, 인쇄 및 재료 사용이 증가합니다." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "냉각 속도" + +#: fdmprinter.def.json +msgctxt "cooling description" +msgid "Cooling" +msgstr "냉각" + +#: fdmprinter.def.json +msgctxt "cooling label" +msgid "Cooling" +msgstr "냉각" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "십자형" + +#: fdmprinter.def.json +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "십자" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "십자형 3D" + +#: fdmprinter.def.json +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "크로스 3D 포켓 크기" + +#: fdmprinter.def.json +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "지지대에 대한 교차 충진 밀도 이미지" + +#: fdmprinter.def.json +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "교차 충진 밀도 이미지" + +#: fdmprinter.def.json +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "결정형 소재" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "입방체" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "입방체 세분" + +#: fdmprinter.def.json +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "입방 세분 쉘" + +#: fdmprinter.def.json +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "커팅 메쉬" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "재료 공급 데이터 (mm3 / 초) - 온도 (섭씨)." + +#: fdmprinter.def.json +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "기본 가속도" + +#: fdmprinter.def.json +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "기본 빌드 플레이트 온도" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "기본 필라멘트 Jerk" + +#: fdmprinter.def.json +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "기본 프린팅 온도" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "기본 X-Y Jerk" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "기본 Z Jerk" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "수평면에서의 이동을 위한 기본 Jerk." + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Z 방향 모터의 기본 Jerk." + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "필라멘트를 구동하는 모터의 기본 Jerk." + +#: fdmprinter.def.json +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "브릿지가 출력되는 중에 브리지를 감지하고 인쇄 속도, 흐름 및 팬 설정을 수정합니다." + +#: fdmprinter.def.json +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 "벽이 프린팅되는 순서를 정의합니다. 외벽을 먼저 프린팅하면 내벽의 오류가 외부로 전파될 수 없으므로 치수 정확도가 향상됩니다. 그러나 나중에 프린팅하면 오버행(경사면)이 프린트팅 될 때 더 잘 쌓일 수 있습니다. 전체 내벽의 총량이 불균일할 경우, '가운데 마지막 선'이 항상 마지막에 인쇄됩니다." + +#: fdmprinter.def.json +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 "여러 내부채움 매쉬 오버랩을 고려할 때 메쉬의 우선 순위를 결정합니다. 여러 내부채움 메쉬가 오버랩하는 영역은 최고 랭크의 메쉬 설정에 착수하게 됩니다. 높은 내부채움 메쉬는 낮은 내부채움 메쉬와 표준 메쉬의 내부채움을 수정합니다." + +#: fdmprinter.def.json +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 "라이트닝 내부채움 레이어가 그 위에 있는 것을 서포트해야 할 부분을 결정합니다. 레이어 두께가 주어진 각도로 측정됩니다." + +#: fdmprinter.def.json +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 "라이트닝 내부채움 레이어가 레이어 위에 있는 모델을 서포트해야 할 부분을 결정합니다. 두께가 주어진 각도로 측정됩니다." + +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "직경" + +#: fdmprinter.def.json +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 "빌드 플레이트에 대한 접착력을 향상시키는 데 도움이되는 다양한 옵션. 브림은 뒤틀림을 방지하기 위해 모델 바닥 주위에 단층 평면 영역을 추가합니다. 래프트는 모델 아래에 지붕이있는 두꺼운 격자를 추가합니다. 스커트는 모델 주변에 프린팅 된 선이지만 모델에는 연결되어 있지 않습니다." + +#: fdmprinter.def.json +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "허용되지 않는 지역" + +#: fdmprinter.def.json +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 "프린팅 된 내부채움 선 사이의 거리. 이 설정은 내부채움 밀도 및 내부채움 선 너비로 계산됩니다." + +#: fdmprinter.def.json +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 "인쇄된 초기 레이어 서포트 구조 선 사이의 거리. 이 설정은 서포트 밀도로 계산됩니다." + +#: fdmprinter.def.json +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 "프린팅 된 서포트 플로어 사이의 거리. 이 설정은 서포트 바닥 밀도로 계산되지만 별도로 조정할 수 있습니다." + +#: fdmprinter.def.json +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 "프린팅 된 지붕 루프 사이의 거리. 이 설정은 서포트 지붕 밀도에 의해 계산되지만 별도로 조정할 수 있습니다." + +#: fdmprinter.def.json +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "프린팅 된 서포트 구조 선 사이의 거리. 이 설정은 서포트 밀도로 계산됩니다." + +#: fdmprinter.def.json +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support." +msgstr "출력물에서 서포트의 바닥까지의 거리." + +#: fdmprinter.def.json +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "서포트 상단에서 프린팅까지의 거리." + +#: fdmprinter.def.json +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. This value is rounded up to a multiple of the layer height." +msgstr "서포트 구조의 위/아래에서 프린팅까지의 거리. 이 틈새는 모형 프린팅 후 서포트를 제거하기 위한 공간을 제공합니다. 이 값은 레이어 높이의 배수로 반올림됩니다." + +#: fdmprinter.def.json +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 "각 내부채움 라인 다음에 삽입 된 이동 거리. 내부채움 스틱을 벽에 더 잘 붙게 합니다. 이 옵션은 내부채움 겹침과 유사하지만 압출이 없고 충전 선의 한쪽 끝에서만 사용됩니다." + +#: fdmprinter.def.json +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 층의 경계면을 더 잘 가리기 위해 바깥쪽 벽 뒤에 삽입되어 이동한 거리." + +#: fdmprinter.def.json +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "X/Y 방향으로 프린트와 드래프트 쉴드까지의 거리입니다." + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "X/Y 방향으로 출력물에서 Ooze 쉴드까지의 거리." + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "X/Y 방향에서 오버행으로부터 서포트까지의 거리." + +#: fdmprinter.def.json +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "X/Y 방향에서 출력물로과 서포트까지의 거리." + +#: fdmprinter.def.json +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "이보다 작은 내부채움 영역을 생성하지 마십시오 (대신 스킨 사용)." + +#: fdmprinter.def.json +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "드래프트 쉴드 높이" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "드래프트 쉴드 제한" + +#: fdmprinter.def.json +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "드래프트 쉴드 X/Y 거리" + +#: fdmprinter.def.json +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "드롭 다운 서포트 메쉬" + +#: fdmprinter.def.json +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "이중 압출" + +#: fdmprinter.def.json +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "타원" + +#: fdmprinter.def.json +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "가속 제어 활성화" + +#: fdmprinter.def.json +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "브릿지 설정 사용" + +#: fdmprinter.def.json +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "코스팅(Coasting) 사용" + +#: fdmprinter.def.json +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "원추형 서포트 사용" + +#: fdmprinter.def.json +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "드래프트 쉴드 사용" + +#: fdmprinter.def.json +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "다림질 사용" + +#: fdmprinter.def.json +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Jerk 컨트롤 사용" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "노즐 온도 조절 활성화" + +#: fdmprinter.def.json +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Ooze 쉴드 사용" + +#: fdmprinter.def.json +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "프라임 블롭 활성화" + +#: fdmprinter.def.json +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "프라임 타워 사용" + +#: fdmprinter.def.json +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "프린팅 냉각 사용" + +#: fdmprinter.def.json +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "리트렉션 활성화" + +#: fdmprinter.def.json +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "서포트 브림 사용" + +#: fdmprinter.def.json +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "서포트 바닥 사용" + +#: fdmprinter.def.json +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "서포트 인터페이스 사용" + +#: fdmprinter.def.json +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "서포트 지붕 사용" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "이동 가속 활성화" + +#: fdmprinter.def.json +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "이동 저크 활성화" + +#: fdmprinter.def.json +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 쉴드를 활성화. 이렇게하면 첫 번째 노즐과 동일한 높이에 두 번째 노즐을 닦을 가능성이 있는 모델 주위에 쉘이 생깁니다." + +#: fdmprinter.def.json +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를 높이면 프린팅 품질을 저하시키면서 프린팅 시간을 줄일 수 있습니다." + +#: fdmprinter.def.json +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 "프린트 헤드 가속도를 활성화 합니다. 가속도를 높이면 프린팅 품질을 저하시키지만 프린팅 시간을 줄일 수 있습니다." + +#: fdmprinter.def.json +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 "프린팅 중에 프린팅 냉각 팬을 활성화합니다. 팬은 짧은 레이어 시간 및 브리징 / 오버행으로 레이어의 프린팅 품질을 향상시킵니다." + +#: fdmprinter.def.json +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "End GCode" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "필라멘트 끝의 퍼지 길이" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "필라멘트 끝의 퍼지 속도" + +#: fdmprinter.def.json +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 "서포트가 차지할 공간이더라도 모델 주변에 브림이 인쇄되도록 합니다. 이렇게 하면 서포트의 첫 번째 레이어 영역 일부가 브림 영역으로 대체됩니다." + +#: fdmprinter.def.json +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "어디에나" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "배타적" + +#: fdmprinter.def.json +msgctxt "experimental label" +msgid "Experimental" +msgstr "실험적인" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "솔기 노출" + +#: fdmprinter.def.json +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "광범위한 스티칭" + +#: fdmprinter.def.json +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 "광범위한 스티칭은 다각형을 만지면서 구멍을 닫음으로써 메쉬의 열린 구멍을 꿰매려합니다. 이 옵션은 많은 처리 시간을 초래할 수 있습니다." + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "여분의 내부채움 벽 수" + +#: fdmprinter.def.json +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "여분의 스킨 벽 수" + +#: fdmprinter.def.json +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "노즐 스위치 후 프라이밍하는 추가 소재의 양입니다." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "익스트루더 프라임 X 위치" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "익스트루더 프라임 Y 위치" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "익스트루더 프라임 Z 포지션" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "압출기의 히터 공유" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "익스트루더의 노즐 공유" + +#: fdmprinter.def.json +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "압출 냉각 속도 조절기" + +#: fdmprinter.def.json +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%보다 큰 값은 넓은 선을 압출하기 위해 요구되는 더 높은 압력을 보정하는 데 도움이 될 수 있습니다." + +#: fdmprinter.def.json +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "팬 속도" + +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "팬 속도 무시" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "이 수치보다 길이가 짧은 피처 윤곽은 소형 피처 속도 기능을 이용해 프린트합니다." + +#: fdmprinter.def.json +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "아직 구체화되지 않은 기능들." + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "피더 휠 지름" + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "최종 프린팅 온도" + +#: fdmprinter.def.json +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "펌웨어 리트렉션" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "첫 번째 레이어 서포트 익스트루더" + +#: fdmprinter.def.json +msgctxt "material_flow label" +msgid "Flow" +msgstr "공급량" + +#: fdmprinter.def.json +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "흐름 균일화 비율" + +#: fdmprinter.def.json +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "압출 속도 보상 배율" + +#: fdmprinter.def.json +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "압출 속도 보상 최대 압출 오프셋" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "재료 공급 온도 그래프" + +#: fdmprinter.def.json +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 "첫번째 레이어에 대한 압출량 보상: 압출 된 재료의 양에 이 값을 곱합니다." + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "첫 번째 레이어 하단 라인의 압출 보상" + +#: fdmprinter.def.json +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "내부채움 라인의 압출 보상입니다." + +#: fdmprinter.def.json +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "지지대 지붕 또는 바닥 라인의 압출 보상입니다." + +#: fdmprinter.def.json +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "프린트 상단 부분 라인의 압출 보상입니다." + +#: fdmprinter.def.json +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "프라임 타워 라인의 압출 보상입니다." + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "스커트 또는 브림 라인의 압출 보상입니다." + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "지지대 바닥 라인의 압출 보상입니다." + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "지지대 지붕 라인의 압출 보상입니다." + +#: fdmprinter.def.json +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "지지대 구조 라인의 압출 보상입니다." + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "첫 번째 레이어의 가장 외측 벽 라인의 압출 보상입니다." + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "가장 외측 벽 라인의 압출 보상입니다." + +#: fdmprinter.def.json +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "상단/하단 라인의 압출 보상입니다." + +#: fdmprinter.def.json +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 "가장 외측 벽을 제외한 모든 벽 라인의 압출 보상입니다(단, 첫 번째 레이어에 한정)." + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "가장 외측 벽을 제외한 모든 벽 라인의 압출 보상입니다." + +#: fdmprinter.def.json +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "벽 라인의 압출 보상입니다." + +#: fdmprinter.def.json +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "압출량 보상: 압출 된 재료의 양에 이 값을 곱합니다." + +#: fdmprinter.def.json +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "수평 퍼지 길이" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "수평 퍼지 속도" + +#: fdmprinter.def.json +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개의 벽으로 전환하기 때문에, 최소 선 너비가 내재적으로 최대 선 너비를 결정합니다. 가장 넓을 가능성이 있는 벽 선은 최소 벽 선 너비의 두 배입니다." + +#: fdmprinter.def.json +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "전면" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "전면 왼쪽" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "전면 오른쪽" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "가득찬" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "퍼지 스킨" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "퍼지 스킨 밀도" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "부용 퍼지 스킨" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "퍼지 스킨 포인트 거리" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "퍼지 스킨 두께" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Gcode 유형" + +#: fdmprinter.def.json +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "" +"맨 마지막에 실행될 G 코드 명령 \n" +"." + +#: fdmprinter.def.json +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" +"시작과 동시에형실행될 G 코드 명령어 \n" +"." + +#: fdmprinter.def.json +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "재료의 GUID. 자동으로 설정됩니다." + +#: fdmprinter.def.json +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "갠트리 높이" + +#: fdmprinter.def.json +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "연동 구조 생성" + +#: fdmprinter.def.json +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "서포트 생성" + +#: fdmprinter.def.json +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 "첫 번째 레이어의 서포트 내부채움 영역 내에서 브림을 생성합니다. 이 브림은 서포트 주변이 아니라 아래에 인쇄됩니다. 이 설정을 사용하면 빌드 플레이트에 대한 서포트력이 향상됩니다." + +#: fdmprinter.def.json +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 "모델과 서포트 사이에 조밀 한 인터페이스를 생성합니다. 이렇게 하면 모델이 프린팅 된 서포트 맨 위의 스킨과 모델의 위에있는 서포트 맨 아래에 스킨이 만들어집니다." + +#: fdmprinter.def.json +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 "서포트 바닥과 모델 사이에 조밀 한 슬래브를 생성하십시오. 그러면 모델과 지원 사이에 스킨이 만들어집니다." + +#: fdmprinter.def.json +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 "서포트 상단과 모델 사이에 조밀 한 슬래브를 생성하십시오. 그러면 모델과 서포트 사이에 스킨이 만들어집니다." + +#: fdmprinter.def.json +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 "오버행이 있는 모델 부분을 서포트하는 구조를 생성합니다. 이러한 구조가 없으면 이런 부분이 프린팅 중에 붕괴됩니다." + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "유리" + +#: fdmprinter.def.json +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 "상단 표면을 한 번 더 이동하지만 재료를 아주 약간만 압출 성형합니다. 따라서 맨 위의 플라스틱이 녹아 부드러운 표면을 만듭니다. 노즐 챔버 내의 압력이 고압으로 유지되므로 표면상의 주름이 재료로 채워집니다." + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "점진적인 내부채움 단계 높이" + +#: fdmprinter.def.json +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "점진적인 내부채움 단계" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "점진적 서포트 내부채움 단계 높이" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "점진적 서포트 내부채움 단계" + +#: fdmprinter.def.json +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "최소 레이어 시간 때문에 늦춰진 속도로 프린트하는 경우 점차 이 온도로 낮춥니다." + +#: fdmprinter.def.json +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "그리드" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "그리드" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "그리드" + +#: fdmprinter.def.json +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "격자" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "그리드" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +#: fdmprinter.def.json +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "자이로이드" + +#: fdmprinter.def.json +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "자이로이드" + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "빌드 볼륨 온도 안정화" + +#: fdmprinter.def.json +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "히팅 빌드 플레이트가 있음" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "가열 속도" + +#: fdmprinter.def.json +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "가열 영역 길이" + +#: fdmprinter.def.json +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "드래프트 쉴드의 높이 제한. 이 높이 이상에서는 드래프트 쉴드가 프린팅되지 않습니다." + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "솔기 숨기기" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "솔기 숨기기 또는 노출" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "구멍 수평 확장" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "" + +#: fdmprinter.def.json +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 "이 수치보다 직경이 작은 구멍 및 부품 윤곽은 소형 피처 속도 기능을 이용해 프린트합니다." + +#: fdmprinter.def.json +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "수평 확장" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "수평 확장 배율 수축 보정" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance description" +msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." +msgstr "모델에 붙는 브랜치를 떨어뜨리는 거리. 이 거리를 짧게 하면 트리 서포트이 더 많은 접점에서 모델에 접촉하여, 오버행이 더 좋아지지만 서포트를 제거하기가 더 어렵게 됩니다." + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "가열 시 파단되기 전까지 필라멘트가 늘어날 수 있는 거리입니다." + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "흐름이 멈추기 전에 소재가 후퇴해야 하는 거리입니다." + +#: fdmprinter.def.json +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초 압출 시 필라멘트가 이동할 수 있는 거리의 백분율)." + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "필라멘트가 깔끔하게 파단되기 위해 후퇴해야 하는 거리입니다." + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "리트랙션 시 파단되기 직전까지 필라멘트가 후퇴해야 하는 속도입니다." + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "흐름을 방지하기 위해 필라멘트 스위치 중 소재가 후퇴해야 하는 속도입니다." + +#: fdmprinter.def.json +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 "빈 스풀을 동일한 재료의 새로운 스풀로 교체한 후 재료를 압출하는 속도." + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "다른 재료로 전환 후 재료를 압출하는 속도." + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "재료를 안전하게 건식 보관함에 보관할 수 있는 기간." + +#: fdmprinter.def.json +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 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." + +#: fdmprinter.def.json +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 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." + +#: fdmprinter.def.json +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 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." + +#: fdmprinter.def.json +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밀리미터씩 피더 휠을 움직이는 스텝 모터의 스텝 수." + +#: fdmprinter.def.json +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 "빈 스풀을 동일한 재료의 새로운 스풀로 교체할 때 (필라멘트를 지나며) 노즐에서 이전 재료를 퍼지하기 위해 사용하는 재료 양." + +#: fdmprinter.def.json +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 "다른 재료로 전환할 때 (필라멘트를 지나며) 노즐에서 이전 재료를 퍼지하기 위해 사용하는 재료 양." + +#: fdmprinter.def.json +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 스크립트가 완료될 때 공유된 노즐 끝에서 각 익스트루더의 필라멘트가 수축된 것으로 가정하는 정도입니다. 이 값은 노즐 덕트의 공통 부분의 길이와 같거나 커야 합니다." + +#: fdmprinter.def.json +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 "스킨 영역이 해당 영역의 비율 미만으로 생성되면 브릿지 설정을 사용하여 인쇄하십시오. 그렇지 않으면 일반 스킨 설정을 사용하여 인쇄됩니다." + +#: fdmprinter.def.json +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 "이 옵션을 사용하면 다음 설정을 사용하여 에어 위의 두 번째 및 세 번째 레이어가 인쇄됩니다. 그렇지 않으면 해당 레이어는 일반 설정을 사용하여 인쇄됩니다." + +#: fdmprinter.def.json +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 "서로 다른 수의 벽들 사이를 빠르게 연속적으로 왔다 갔다 하며 전환되는 경우에는 전환하지 마십시오. 이 거리보다 서로 더 가까운 경우에는 전환을 제거하십시오." + +#: fdmprinter.def.json +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 "래프트가 활성화 된 경우 래프트가 주어진 모델 주변의 추가 래프트 지역입니다. 이 여백을 늘리면 재료를 더 많이 사용하고 출력물을 적게 차지하면서 더 강력한 래프트가 만들어집니다." + +#: fdmprinter.def.json +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 "메쉬 내의 겹치는 볼륨으로 인해 발생하는 내부 지오메트리를 무시하고 볼륨을 하나로 프린팅합니다. 이로 인해 의도하지 않은 내부 공동이 사라질 수 있습니다." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "빌드 플레이트 온도 포함" + +#: fdmprinter.def.json +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "재료의 온도 포함하기" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "중복" + +#: fdmprinter.def.json +msgctxt "infill description" +msgid "Infill" +msgstr "내부채움" + +#: fdmprinter.def.json +msgctxt "infill label" +msgid "Infill" +msgstr "내부채움" + +#: fdmprinter.def.json +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "내부채움 가속도" + +#: fdmprinter.def.json +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "벽 앞에 내부채움" + +#: fdmprinter.def.json +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "내부채움 밀도" + +#: fdmprinter.def.json +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "내부채움 익스트루더" + +#: fdmprinter.def.json +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "내부채움 압출량" + +#: fdmprinter.def.json +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Jerk 내부채움" + +#: fdmprinter.def.json +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "내부채움 층 두께" + +#: fdmprinter.def.json +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "내부채움 선 방향" + +#: fdmprinter.def.json +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "내부채움 선간 거리" + +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "내부채움 선 승수" + +#: fdmprinter.def.json +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "내부채움 선 폭" + +#: fdmprinter.def.json +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "메쉬 내부채움" + +#: fdmprinter.def.json +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "충진물 오버행 각도" + +#: fdmprinter.def.json +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "내부채움 오버랩" + +#: fdmprinter.def.json +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "내부채움 오버랩 비율" + +#: fdmprinter.def.json +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "내부채움 패턴" + +#: fdmprinter.def.json +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "내부채움 속도" + +#: fdmprinter.def.json +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "충진물 지지대" + +#: fdmprinter.def.json +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "내부채움재 이동 최적화" + +#: fdmprinter.def.json +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "내부채움 거리" + +#: fdmprinter.def.json +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "내부채움 X 오프셋" + +#: fdmprinter.def.json +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "내부채움 Y 오프셋" + +#: fdmprinter.def.json +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "초기 하단 레이어" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "초기 팬 속도" + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "초기 레이어 가속" + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "첫 번째 레이어 하단 압출량" + +#: fdmprinter.def.json +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "첫번째 레이어 압출량" + +#: fdmprinter.def.json +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "첫번째 레이어 높이" + +#: fdmprinter.def.json +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "첫번째 레이어 수평 확장" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "첫 번째 레이어 내벽 압출량" + +#: fdmprinter.def.json +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "초기 레이어 Jerk" + +#: fdmprinter.def.json +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "초기 레이어 라인 폭" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "첫 번째 레이어 외벽 압출량" + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "초기 레이어 프린팅 가속" + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "초기 레이어 프린팅 Jerk" + +#: fdmprinter.def.json +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "초기 레이어 프린팅 속도" + +#: fdmprinter.def.json +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "초기 레이어 속도" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "초기 레이어 서포트 선 거리" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "초기 레이어 이동 가속도" + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "초기 레이어 이동 Jerk" + +#: fdmprinter.def.json +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "초기 레이어 이동 속도" + +#: fdmprinter.def.json +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "초기 레이어 Z 겹침" + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "초기 프린팅 온도" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "내벽 가속도" + +#: fdmprinter.def.json +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "내벽 익스트루더" + +#: fdmprinter.def.json +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "내벽 Jerk" + +#: fdmprinter.def.json +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "내벽 속도" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "내벽 압출량" + +#: fdmprinter.def.json +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "내부 벽 선 너비" + +#: fdmprinter.def.json +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 "외벽의 경로에 삽입이 적용됩니다. 외벽이 노즐보다 작고 내벽 다음에 프린팅 된 경우 이 옵셋을 사용하여 노즐의 구멍이 모델 외부가 아닌 내벽과 겹치도록하십시오." + +#: fdmprinter.def.json +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "내부에서 외부로" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "연동 빔 레이어 수" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "연동 빔 너비" + +#: fdmprinter.def.json +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "연동 경계 회피" + +#: fdmprinter.def.json +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "연동 깊이" + +#: fdmprinter.def.json +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "연동 구조 방향" + +#: fdmprinter.def.json +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "최상위 레이어에 다림질" + +#: fdmprinter.def.json +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "다림질 가속" + +#: fdmprinter.def.json +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "다림질 압출량" + +#: fdmprinter.def.json +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "다림질 삽입" + +#: fdmprinter.def.json +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "다림질 저크(Jerk)" + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "다림질 라인 간격" + +#: fdmprinter.def.json +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "다림질 패턴" + +#: fdmprinter.def.json +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "다림질 속도" + +#: fdmprinter.def.json +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "센터 원점" + +#: fdmprinter.def.json +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 "이 소재는 가열 시 깔끔하게 분리되는 유형(결정형)입니까? 아니면 길게 얽힌 폴리머 체인을 생성하는 유형(비결정형)입니까?" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "부품의 윤곽만 지터하고 부품의 구멍은 지터하지 않습니다." + +#: fdmprinter.def.json +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "끊긴 면 유지" + +#: fdmprinter.def.json +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "층 높이" + +#: fdmprinter.def.json +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "레이어 시작 X" + +#: fdmprinter.def.json +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "레이어 시작 Y" + +#: fdmprinter.def.json +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 "기본 래프트 레이어의 레이어 두께. 이것은 프린터 빌드 플레이트에 단단히 붙어있는 두꺼운 층이어야합니다." + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "중간 래프트 층의 층 두께." + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "상단 래프트 레이어의 레이어 두께." + +#: fdmprinter.def.json +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 밀리미터마다 서포트선 사이를 연결합니다." + +#: fdmprinter.def.json +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "왼쪽" + +#: fdmprinter.def.json +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "리프트 헤드" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "라이트닝" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "라이트닝 내부채움 오버행 각도" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "라이트닝 내부채움 가지치기 각도" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "라이트닝 내부채움 정리 각도" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "라이트닝 내부채움 서포트 각도" + +#: fdmprinter.def.json +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 "이 메쉬의 볼륨을 다른 메쉬 내로 제한합니다. 이 기능을 사용하면 다른 설정과 전체 익스트루더로 하나의 메쉬 프린팅 영역을 만들 수 있습니다." + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "제한된" + +#: fdmprinter.def.json +msgctxt "line_width label" +msgid "Line Width" +msgstr "선의 두께" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "라인" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "윤곽" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "라인" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "라인" + +#: fdmprinter.def.json +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "라인" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "라인" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "라인" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "윤곽" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +#: fdmprinter.def.json +msgctxt "machine_settings label" +msgid "Machine" +msgstr "기기" + +#: fdmprinter.def.json +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "기기 깊이" + +#: fdmprinter.def.json +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "머신 헤드 및 팬 폴리곤" + +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "기기 높이" + +#: fdmprinter.def.json +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "기기 유형" + +#: fdmprinter.def.json +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "기기 너비" + +#: fdmprinter.def.json +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "기기 세부 설정" + +#: fdmprinter.def.json +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "오버행이 프린팅되도록 설정" + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "서로 닿는 메쉬가 조금 겹치게 만듭니다. 이것은 그들을 더 잘 묶는 것입니다." + +#: fdmprinter.def.json +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "오버행보다 하단에서 지지대 영역을 작게 만듭니다." + +#: fdmprinter.def.json +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 "서포트 메쉬 아래의 모든 부분을 지원하여서 서포트 메쉬에 오버행이 없습니다." + +#: fdmprinter.def.json +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 "익스투루더의 위치를 헤드의 마지막으로 알려진 위치에 상대위치가 아닌 절대 위치로 만듭니다." + +#: fdmprinter.def.json +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 "에어 갭에서 손실 된 필라멘트를 보완하기 위해 Z 방향으로 모델의 첫 번째와 두 번째 레이어가 중첩되도록 합니다. 첫 번째 모델 레이어 위의 모든 모델은이 양만큼 아래로 이동합니다." + +#: fdmprinter.def.json +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "메쉬를 3D 프린팅에 보다 맞춤화시킵니다." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (부피 측정법)" + +#: fdmprinter.def.json +msgctxt "material description" +msgid "Material" +msgstr "재료" + +#: fdmprinter.def.json +msgctxt "material label" +msgid "Material" +msgstr "재료" + +#: fdmprinter.def.json +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "재료 GUID" + +#: fdmprinter.def.json +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "와이프 사이의 재료 볼륨" + +#: fdmprinter.def.json +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "수축이 없을 때 최대 빗질 거리" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "최대 가속도 X" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Y 방향 최대 가속도" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Z 방향 최대 가속도" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "최대 편차" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "최대 압출 영역 편차" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "최대 팬 속도" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "최대 필라멘트 가속도" + +#: fdmprinter.def.json +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "최대 모델 각도" + +#: fdmprinter.def.json +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "최대 오버행 홀 영역" + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "최대 파크 기간" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "최대 해상도" + +#: fdmprinter.def.json +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "최대 리트렉션 수" + +#: fdmprinter.def.json +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "확장을 위한 최대 스킨 각" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "최대 속도 E" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "X 방향 최대 속도" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Y 방향 최대 속도" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Z 방향 최대 속도" + +#: fdmprinter.def.json +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "최대 타워 지지 직경" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "최대 이동 해상도" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "X 방향 모터의 최대 가속도" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Y 방향 모터의 최대 가속도." + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Z 방향 모터의 최대 가속도." + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "필라멘트를 구동하는 모터의 최대 가속도." + +#: fdmprinter.def.json +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 "희박하다고 여겨지는 내부채움의 최대 밀도 희박한 내부채움의 스킨은 지원되지 않는 것으로 간주되므로 브릿지 스킨으로 취급할 수 있습니다." + +#: fdmprinter.def.json +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 방향의 최대 직경입니다." + +#: fdmprinter.def.json +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 "다른 노즐 와이프를 시작하기 전에 압출 성형할 수 있는 최대 재료입니다. 이 값이 레이어에 필요한 재료의 양보다 작으면 이 레이어에서는 아무런 효과가 없습니다. 즉, 레이어당 한번 와이프하는 것으로 제한됩니다." + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "중복된 메쉬 합치기" + +#: fdmprinter.def.json +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "메쉬 수정" #: fdmprinter.def.json msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "메쉬 위치 X" -#: fdmprinter.def.json -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "x 방향으로 객체에 적용된 오프셋입니다." - #: fdmprinter.def.json msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "메쉬 위치 Y" -#: fdmprinter.def.json -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "y 방향으로 객체에 적용된 오프셋입니다." - #: fdmprinter.def.json msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "메쉬 위치 Z" #: fdmprinter.def.json -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 "메쉬 처리 랭크" #: fdmprinter.def.json msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "메쉬 회전 행렬" +#: fdmprinter.def.json +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "중간" + +#: fdmprinter.def.json +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "최소 몰드 너비" + +#: fdmprinter.def.json +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "최소 대기 시간" + +#: fdmprinter.def.json +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "최소 브리지 벽 길이" + +#: fdmprinter.def.json +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "최소 짝수 벽 선 너비" + +#: fdmprinter.def.json +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "최소 압출 영역" + +#: fdmprinter.def.json +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "최소 피처 크기" + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "최소 이송 속도" + +#: fdmprinter.def.json +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "최소 내부채움 지역" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "최소 레이어 시간" + +#: fdmprinter.def.json +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "최소 홀수 벽 선 너비" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "최소 다각형 둘레" + +#: fdmprinter.def.json +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "확장을 위한 최소 스킨 폭" + +#: fdmprinter.def.json +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "최저 속도" + +#: fdmprinter.def.json +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "최소 서포트 지역" + +#: fdmprinter.def.json +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "최소 서포트 바닥 지역" + +#: fdmprinter.def.json +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "최소 서포트 인터페이스 지역" + +#: fdmprinter.def.json +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "최소 서포트 지붕 지역" + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "최소 서포트 X/Y 거리" + +#: fdmprinter.def.json +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "얇은 벽 선 최소 너비" + +#: fdmprinter.def.json +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "코스팅(Coasting) 최소 양" + +#: fdmprinter.def.json +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "최소 벽 선 너비" + +#: fdmprinter.def.json +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 "지원 인터페이스 다각형의 최소 영역 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." + +#: fdmprinter.def.json +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 "서포트 영역에 대한 최소 지역 크기. 이 값보다 작은 지역을 갖는 영역은 생성되지 않습니다." + +#: fdmprinter.def.json +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 "지원 바닥의 최소 면적 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." + +#: fdmprinter.def.json +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 "서포트 지붕에 대한 최소 면적 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." + +#: fdmprinter.def.json +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 "얇은 피처의 최소 두께 이 값보다 더 얇은 모델 피처는 프린트되지 않으며, 최소 피처 크기보다 더 두꺼운 피처는 최소 벽 선 너비로 넓어집니다." + +#: fdmprinter.def.json +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 "원추형서포트 영역의 베이스가 축소되는 최소 너비. 폭이 좁으면 불안정한 서포트 구조가 생길 수 있습니다." + +#: fdmprinter.def.json +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "몰드" + +#: fdmprinter.def.json +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "몰드 각도" + +#: fdmprinter.def.json +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "몰드 지붕 높이" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "단면 다림질 순서" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "단면 상단 표면 순서" + +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "단면 상단/하단 순서" + +#: fdmprinter.def.json +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으로 설정하면 스커트가 비활성화됩니다." + +#: fdmprinter.def.json +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "첫 번째 레이어의 라인 폭 승수입니다. 이것을 늘리면 베드 접착력을 향상시킬 수 있습니다." + +#: fdmprinter.def.json +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "로드 이동 요인 없음" + +#: fdmprinter.def.json +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Z 간격에 스킨 없음" + +#: fdmprinter.def.json +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "모델을 프린팅하는 새로운 방법들." + +#: fdmprinter.def.json +msgctxt "adhesion_type option none" +msgid "None" +msgstr "None" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "없음" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "표준" + +#: fdmprinter.def.json +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "표준" + +#: fdmprinter.def.json +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를 생성하지 못할 때 최후의 수단으로 사용해야 합니다." + +#: fdmprinter.def.json +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "스킨에 없음" + +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "외부 표면에 없음" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "노즐 각도" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "노즐 지름" + +#: fdmprinter.def.json +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "노즐이 위치할 수 없는 구역" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "노즐 ID" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "노즐 길이" + +#: fdmprinter.def.json +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "노즐 스위치 엑스트라 프라임 양" + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "노즐 스위치 프라임 속도" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "노즐 스위치 후퇴 속도" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "노즐 스위치 리트렉션 거리" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "노즐 스위치 리트렉션 속도" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "익스트루더의 수" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "활성화된 익스트루더의 수" + +#: fdmprinter.def.json +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "느리게 프린팅할 레이어의 수" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "사용 가능한 익스트루더 수; 소프트웨어로 자동 설정" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "익스트루더의 수. 익스트루더는 피더, 보우 덴 튜브 및 노즐의 조합입니다." + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "브러시 전체에 노즐을 이동하는 횟수입니다." + +#: fdmprinter.def.json +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 "상단면 아래로 갈 때 내부채움 밀도를 반으로 줄이는 횟수입니다. 상단면에 더 가까운 영역은 내부채움율 농도가 더 높은 밀도를 갖습니다." + +#: fdmprinter.def.json +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 "상단 표면 아래로 올라갈 때 서포트 채움 밀도를 반으로 줄이는 횟수입니다. 상단 표면에 더 가까운 영역은 서포트 채움 밀도까지 더 높은 밀도를 갖습니다." + +#: fdmprinter.def.json +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "옥텟" + +#: fdmprinter.def.json +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "끔" + +#: fdmprinter.def.json +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "x 방향으로 객체에 적용된 오프셋입니다." + +#: fdmprinter.def.json +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "y 방향으로 객체에 적용된 오프셋입니다." + +#: fdmprinter.def.json +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)'라고 불렀던 것을 수행 할 수 있습니다." + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "익스트루더로 오프셋" + +#: fdmprinter.def.json +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "한번에 하나씩" + +#: fdmprinter.def.json +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 홉을 수행하십시오." + +#: fdmprinter.def.json +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 "메쉬의 마지막 레이어에서만 다림질을 수행합니다. 이것은 낮은 레이어에서 매끄러운 표면 처리가 필요하지 않은 경우 시간을 절약 할 수 있습니다." + +#: fdmprinter.def.json +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 "모델 바깥 쪽 브림에만 프린팅합니다. 나중에 제거해야하는 브림의 양이 줄어들지만 베드 접착력은 그렇게 많이 줄어들지 않습니다." + +#: fdmprinter.def.json +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Ooze 쉴드 각" + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Ooze 쉴드 거리" + +#: fdmprinter.def.json +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "벽면 프린팅 순서 명령 최적화" + +#: fdmprinter.def.json +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으로 선택하는 경우 첫 번째 층이 최적화되지 않습니다." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "외부 노즐의 외경" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "외벽 가속도" + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "외벽 익스트루더" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "외벽 압출량" + +#: fdmprinter.def.json +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "외벽 삽입" + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "외벽 Jerk" + +#: fdmprinter.def.json +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "바깥 선 선폭" + +#: fdmprinter.def.json +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "외벽 속도" + +#: fdmprinter.def.json +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "외벽 이동 거리" + +#: fdmprinter.def.json +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "외부에서 내부로" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "오버행된 벽 각도" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "오버행된 벽 속도" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "오버행된 벽은 정상적인 인쇄 속도의 이 비율로 인쇄됩니다." + +#: fdmprinter.def.json +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "리트랙트를 실행 취소한 후 일시 정지합니다." + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "두번째 브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." + +#: fdmprinter.def.json +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 "서포트 바로 위의 스킨 영역을 인쇄할 때 사용할 팬 속도 백분율 빠른 팬 속도를 사용하면 서포트를 더 쉽게 제거할 수 있습니다." + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "세번째 브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." + +#: fdmprinter.def.json +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 모델에 적합합니다." + +#: fdmprinter.def.json +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 * 최소 벽 선 너비 + 여백]을 따르는 선 너비의 범위를 확장합니다. 이 여백을 늘리면 전환 횟수가 줄어들어, 압출 시작/중지 및 이동 시간이 줄어듭니다. 그러나 선 너비 변동이 크면 압출 미달 또는 과잉 문제가 발생할 수 있습니다." + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "프라임 타워 가속" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Brim" +msgstr "프라임 타워 브림" + +#: fdmprinter.def.json +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "프라임 타워 압출량" + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "프라임 타워 Jerk" + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "프라임 타워 라인 폭" + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "프라임 타워 최소 볼륨" + +#: fdmprinter.def.json +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "프라임 타워 사이즈" + +#: fdmprinter.def.json +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "프라임 타워 속도" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "프라임 타워 X 위치" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "프라임 타워 Y 위치" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +msgstr "프라임 타워는 모델이 제공하지 않더라도 브림이 제공하는 추가 접착이 필요할 수 있습니다. 현재 '래프트' 접착 유형을 사용할 수 없습니다." + +#: fdmprinter.def.json +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "프린팅 가속도" + +#: fdmprinter.def.json +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Jerk 프린팅" + +#: fdmprinter.def.json +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "프린팅 순서" + +#: fdmprinter.def.json +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "프린팅 속도" + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "얇은 벽 프린팅" + +#: fdmprinter.def.json +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)하는 프린팅 옆에 타워를 프린팅하십시오." + +#: fdmprinter.def.json +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 "모델 상단이 지지가 되어야 하는 경우에만 충진물 구조를 인쇄합니다. 이 기능을 사용하면 인쇄 시간 및 재료 사용이 감소하지만, 개체 강도가 균일하지 않습니다." + +#: fdmprinter.def.json +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 "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 다림질 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." + +#: fdmprinter.def.json +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 "모형을 몰드으로 프린팅하여 모형에 몰드과 유사한 모형을 만들 수 있습니다." + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "노즐 크기보다 수평으로 더 얇은 모델 조각을 프린팅하십시오." + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "두번째 브릿지 스킨 레이어를 인쇄 할 때 사용할 인쇄 속도." + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "세번째 브릿지 스킨 레이어를 인쇄 할 때 사용할 인쇄 속도." + +#: fdmprinter.def.json +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 "벽을 프린팅하기 전에 내부채움물을 프린팅하기. 벽을 먼저 프린팅하면 벽이 더 정확해질 수 있지만 겹침으로 프린팅이 매끄럽지 않습니다. 내부채움을 먼저 프린팅하면 더 튼튼한 벽이 생기지만 내부채움 패턴이 때로 표면을 통해 보일 수 있습니다." + +#: fdmprinter.def.json +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 "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 상단 표면 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." + +#: fdmprinter.def.json +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 "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 상단/하단 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." + +#: fdmprinter.def.json +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "프린팅 온도" + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "첫번째 레이어의 프린팅 온도" + +#: fdmprinter.def.json +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "" + +#: fdmprinter.def.json +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 "다른 모든 레이어에 여분의 벽을 프린팅합니다. 이렇게하면 내부채움이 여분의 벽 사이에 끼어 더 강하게 프린팅됩니다." + +#: fdmprinter.def.json +msgctxt "resolution label" +msgid "Quality" +msgstr "품질" + +#: fdmprinter.def.json +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "쿼터 큐빅" + +#: fdmprinter.def.json +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "래프트" + +#: fdmprinter.def.json +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "래프트 에어 갭" + +#: fdmprinter.def.json +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "래프트 베이스 익스트루더" + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "래프트 기본 팬 속도" + +#: fdmprinter.def.json +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "래프트 기준 선 간격" + +#: fdmprinter.def.json +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "래프트 기준 선 너비" + +#: fdmprinter.def.json +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "래프트 기본 프린팅 가속도" + +#: fdmprinter.def.json +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "래프트 기본 프린팅 Jerk" + +#: fdmprinter.def.json +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "래프트 기본 프린팅 속도" + +#: fdmprinter.def.json +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "래프트 기준 두께" + +#: fdmprinter.def.json +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "래프트 베이스 벽 개수" + +#: fdmprinter.def.json +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "래프트 추가 여백" + +#: fdmprinter.def.json +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "래프트 팬 속도" + +#: fdmprinter.def.json +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "래프트 중간 익스트루더" + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "래프트 중앙 팬 속도" + +#: fdmprinter.def.json +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "래프트 중간 레이어" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "래프트 중간 선 너비" + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "래프트 중앙 프린팅 가속도" + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "래프트 중앙 프린팅 Jerk" + +#: fdmprinter.def.json +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "래프트 중앙 프린팅 속도" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "래프트 중간 간격" + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "래프트 중간 두께" + +#: fdmprinter.def.json +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "래프트 프린팅 가속도" + +#: fdmprinter.def.json +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "래프트 프린팅 Jerk" + +#: fdmprinter.def.json +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "래프트 프린팅 속도" + +#: fdmprinter.def.json +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "래프트 부드럽게하기" + +#: fdmprinter.def.json +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "래프트 상단 익스트루더" + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "래프트 상단 팬 속도" + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "래프트 상단 레이어 두께" + +#: fdmprinter.def.json +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "래프트 탑 레이어" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "래프트 상단 선 너비" + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "래프트 상단 프린팅 가속도" + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "래프트 상단 프린팅 Jerk" + +#: fdmprinter.def.json +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "래프트 상단 프린팅 속도" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "래프트 상단 간격" + +#: fdmprinter.def.json +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "랜덤" + +#: fdmprinter.def.json +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "무작위 충전 시작" + +#: fdmprinter.def.json +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 "가장 먼저 프린트되는 충전 선을 무작위로 결정합니다. 이렇게 하면 특정 세그먼트가 가장 강한 세그먼트가 되는 일이 없지만, 추가 이동이 발생하지 않게 됩니다." + +#: fdmprinter.def.json +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 "외벽을 프린팅하는 동안 무작위로 지터가 발생하여 표면이 거칠고 흐릿해 보입니다." + +#: fdmprinter.def.json +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "직사각형" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "표준 팬 속도" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "표준 팬 속도시의 높이" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "표준 팬 속도시의 레이어" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "표준/최대 팬 속도 임계 값" + +#: fdmprinter.def.json +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "상대적 압출" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "모든 구멍 제거" + +#: fdmprinter.def.json +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "비어 있는 첫 번째 레이어 제거" + +#: fdmprinter.def.json +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "교차된 메쉬 제거" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "래프트 내부 모서리 제거" + +#: fdmprinter.def.json +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개의 재료가 서로 중첩되는 경우 사용될 수 있습니다." + +#: fdmprinter.def.json +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 "첫 번째로 프린팅된 레이어 바로 아래의 비어 있는 레이어를 제거합니다. 이 설정을 해제하면 슬라이싱 허용 오차 설정을 배타 또는 중간으로 설정할 경우 첫 번째 레이어가 비어 있게 될 수 있습니다." + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "래프트가 볼록해지도록 래프트에서 내부 모서리를 제거합니다." + +#: fdmprinter.def.json +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 "각 레이어의 구멍을 제거하고 바깥 쪽 모양 만 유지합니다. 이것은 보이지 않는 내부 지오메트리를 무시합니다. 그러나 위 또는 아래에서 볼 수있는 레이어 구멍도 무시합니다." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +#: fdmprinter.def.json +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 "위쪽/아래쪽 패턴의 가장 바깥 쪽 부분을 여러 동심 선으로 바꿉니다. 하나 또는 두 개의 선을 사용하면 내부채움 재료로 시작하는 지붕면이 향상됩니다." + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution description" +msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." +msgstr "모델에 부딪히는 것을 피하기 위해 충돌을 계산하는 정밀도. 이 값을 낮게 설정하면 실패도가 낮은 더 정확한 트리를 생성하지만, 슬라이싱 시간이 현격하게 늘어납니다." + +#: fdmprinter.def.json +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "외벽 전에 리트렉션" + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "레이어 변경시 리트렉션" + +#: fdmprinter.def.json +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "노즐이 프린팅되지 않은 영역 위로 움직일 때 필라멘트를 리트렉션합니다." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "노즐이 프린팅되지 않은 영역 위로 움직일 때 필라멘트를 리트렉션합니다." + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "노즐이 다음 층으로 이동할 때 필라멘트를 리트렉션 시킵니다." + +#: fdmprinter.def.json +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "리트렉션 거리" + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "추가적인 리트렉션 정도" + +#: fdmprinter.def.json +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "리트렉션 최소 이동" + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "리트렉션 초기 속도" + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "리트렉션 속도" + +#: fdmprinter.def.json +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "리트렉션 속도" + +#: fdmprinter.def.json +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "오른쪽" + +#: fdmprinter.def.json +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "팬 속도를 0-1로 조정" + +#: fdmprinter.def.json +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로 조정합니다." + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "확장 배율 수축 보상" + +#: fdmprinter.def.json +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "장면에 서포트 메쉬가 있습니다" + +#: fdmprinter.def.json +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "솔기 코너 환경 설정" + +#: fdmprinter.def.json +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 "드래프트 쉴드의 높이를 설정합니다. 모델의 전체 높이 또는 제한된 높이에서 드래프트 쉴드를 프린팅하도록 선택합니다." + +#: fdmprinter.def.json +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "여러 익스트루더로 프린팅 할 때 사용되는 설정입니다." + +#: fdmprinter.def.json +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "큐라(Cura) 프론트 엔드에서 큐라엔진(CuraEngine)이 호출되지 않은 경우에만 사용되는 설정입니다." + +#: fdmprinter.def.json +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "공유된 노즐 초기 수축" + +#: fdmprinter.def.json +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "날카로운 모서리" + +#: fdmprinter.def.json +msgctxt "shell description" +msgid "Shell" +msgstr "외곽" + +#: fdmprinter.def.json +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "최단경로" + +#: fdmprinter.def.json +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "기기 세부 설정 표시" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "스킨 에지의 레이어 지원" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "스킨 에지의 두께 지원" + +#: fdmprinter.def.json +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "스킨 확장 거리" + +#: fdmprinter.def.json +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "스킨 겹침" + +#: fdmprinter.def.json +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "스킨 겹침 비율" + +#: fdmprinter.def.json +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "스킨 제거 폭" + +#: fdmprinter.def.json +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 "이보다 좁은 스킨 영역은 확장되지 않습니다. 이렇게하면 모델 표면이 수직에 가까운 기울기를 가질 때 생성되는 좁은 스킨 영역을 확장하지 않아도됩니다." + +#: fdmprinter.def.json +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 개의 연결 라인을 건너 뜁니다." + +#: fdmprinter.def.json +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 "서포트 구조가 쉽게 끊어 지도록 서포트 라인 연결을 건너 뜁니다. 이 설정은 지그재그 서포트 충전 패턴에 적용됩니다." + +#: fdmprinter.def.json +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "스커트" + +#: fdmprinter.def.json +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "스커트 거리" + +#: fdmprinter.def.json +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "스커트 선 수" + +#: fdmprinter.def.json +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Skirt/Brim 가속도" + +#: fdmprinter.def.json +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "스커트/브림 익스트루더" + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "스커트/브림 압출량" + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "스커트/브림 선 너비" + +#: fdmprinter.def.json +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "스커트/브림 최소 길이" + +#: fdmprinter.def.json +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "스커트/브림 속도" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "슬라이싱 허용 오차" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "소형 피처 초기 레이어 속도" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "소형 피처 최대 길이" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "소형 피처 속도" + +#: fdmprinter.def.json +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "소형 구멍 최대 크기" + +#: fdmprinter.def.json +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "소형 레이어 프린팅 온도" + +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + +#: fdmprinter.def.json +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 "첫 번째 레이어의 소형 피처는 정상적인 프린트 속도의 이 비율로 프린팅됩니다. 프린트 속도가 느리면 부착과 정확도가 개선됩니다." + +#: fdmprinter.def.json +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 "소형 피처는 정상적인 프린트 속도의 이 비율로 프린팅됩니다. 프린트 속도가 느리면 부착과 정확도가 개선됩니다." + +#: fdmprinter.def.json +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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "스마트 숨김" + +#: fdmprinter.def.json +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "부드러운 나선형 윤곽" + +#: fdmprinter.def.json +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- 이음선은 출력물에서는 거의 보이지 않지만 레이어 뷰에서는 여전히 보임). 매끄러움은 표면의 세부 묘사를 흐릿하게 만드는 경향이 있습니다." + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "이동중에 재료가 새어나올 수 있습니다. 이 재료는 여기에서 보상될 수 있습니다." + +#: fdmprinter.def.json +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 "와이프 이동 중에 재료가 새어 나올 수 있습니다. 이 재료는 여기에서 보상받을 수 있습니다." + +#: fdmprinter.def.json +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "특수 모드" + +#: fdmprinter.def.json +msgctxt "speed description" +msgid "Speed" +msgstr "속도" + +#: fdmprinter.def.json +msgctxt "speed label" +msgid "Speed" +msgstr "속도" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "홉 중에 z축을 이동하는 속도입니다." + +#: fdmprinter.def.json +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "외부 윤곽선을 나선형으로 만듦" + +#: fdmprinter.def.json +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가 증가합니다. 이 기능은 솔리드 모델을 단단한 바닥이있는 단일 벽으로 프린팅합니다. 이 기능은 각 레이어에 단일 부품 만 포함되어 있을 때만 활성화 해야 합니다." + +#: fdmprinter.def.json +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "대기 온도" + +#: fdmprinter.def.json +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "시작 GCode" + +#: fdmprinter.def.json +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 "레이어의 각 패스의 시작점입니다. 연속 레이어의 패스가 같은 지점에서 시작되면 세로 솔기가 출력물에 표시 될 수 있습니다. 사용자가 지정한 위치 근처에서 이들을 정렬 할 때 이음선을 제거하는 것이 가장 쉽습니다. 무작위로 배치 될 때 경로의 시작점은 눈에 잘 띄지 않습니다. 최단 경로를 취할 때 프린팅이 빨라집니다." + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "밀리미터 당 스텝 수 (E)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "밀리미터 당 스텝 수 (X)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "밀리미터 당 스텝 수 (Y)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "밀리미터 당 스텝 수 (Z)" + +#: fdmprinter.def.json +msgctxt "support description" +msgid "Support" +msgstr "서포트" + +#: fdmprinter.def.json +msgctxt "support label" +msgid "Support" +msgstr "서포트" + +#: fdmprinter.def.json +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "서포트 가속도" + +#: fdmprinter.def.json +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "서포트 바닥 거리" + +#: fdmprinter.def.json +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "지지대 하단 벽 라인 수" + +#: fdmprinter.def.json +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "서포트 브림 라인 수" + +#: fdmprinter.def.json +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "서포트 브림 폭" + +#: fdmprinter.def.json +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Chunk 라인 카운트 서포트" + +#: fdmprinter.def.json +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "서포트 Chunk 크기" + +#: fdmprinter.def.json +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "서포트 밀도" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "서포트 거리 우선 순위" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "서포트 익스트루더" + +#: fdmprinter.def.json +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "서포트 바닥 가속도" + +#: fdmprinter.def.json +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "서포트 바닥 밀도" + +#: fdmprinter.def.json +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "서포트 바닥 익스트루더" + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "지지대 바닥 압출량" + +#: fdmprinter.def.json +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "서포트 바닥 수평 확장" + +#: fdmprinter.def.json +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "서포트 바닥 Jerk" + +#: fdmprinter.def.json +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "바닥 지붕 선 방향" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "서포트 바닥 선 거리" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "서포트 바닥 라인 폭" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "서포트 바닥 패턴" + +#: fdmprinter.def.json +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "서포트 바닥 속도" + +#: fdmprinter.def.json +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "서포트 바닥 두께" + +#: fdmprinter.def.json +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "지지대 압출량" + +#: fdmprinter.def.json +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "수평 확장 서포트" + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "서포트 내부채움 가속도" + +#: fdmprinter.def.json +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "서포트 내부채움 익스트루더" + +#: fdmprinter.def.json +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "서포트 내부채움 Jerk" + +#: fdmprinter.def.json +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "서포트 내부채움 레이어 두께" + +#: fdmprinter.def.json +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "서포트 내부채움 선 방향" + +#: fdmprinter.def.json +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "서포트 내부채움 속도" + +#: fdmprinter.def.json +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "서포트 인터페이스 가속도" + +#: fdmprinter.def.json +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "서포트 인터페이스 밀도" + +#: fdmprinter.def.json +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "서포트 인터페이스 익스트루더" + +#: fdmprinter.def.json +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "지지대 인터페이스 압출량" + +#: fdmprinter.def.json +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "서포트 인터페이스 수평 확장" + +#: fdmprinter.def.json +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "서포트 인터페이스 Jerk" + +#: fdmprinter.def.json +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "서포트 인터페이스 선 방향" + +#: fdmprinter.def.json +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "서포트 인터페이스의 폭" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "서포트 인터페이스 패턴" + +#: fdmprinter.def.json +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "서포트 인터페이스 해상도" + +#: fdmprinter.def.json +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "서포트 인터페이스 속도" + +#: fdmprinter.def.json +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "서포트 인터페이스 두께" + +#: fdmprinter.def.json +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "지지대 인터페이스 벽 라인 수" + +#: fdmprinter.def.json +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "서포트 Jerk" + +#: fdmprinter.def.json +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "서포트 Join 거리" + +#: fdmprinter.def.json +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "서포트 선 거리" + +#: fdmprinter.def.json +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "서포트의 폭" + +#: fdmprinter.def.json +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "서포트 메쉬" + +#: fdmprinter.def.json +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "오버행 각도" + +#: fdmprinter.def.json +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "서포트 패턴" + +#: fdmprinter.def.json +msgctxt "support_type label" +msgid "Support Placement" +msgstr "서포트 배치" + +#: fdmprinter.def.json +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "서포트 상단 가속도" + +#: fdmprinter.def.json +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "서포트 지붕 밀도" + +#: fdmprinter.def.json +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "서포트 지붕 익스트루더" + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "지지대 지붕 압출량" + +#: fdmprinter.def.json +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "서포트 지붕 수평 확장" + +#: fdmprinter.def.json +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "서포트 위 Jerk" + +#: fdmprinter.def.json +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "서포트 지붕 선 방향" + +#: fdmprinter.def.json +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "서포트 지붕 선 거리" + +#: fdmprinter.def.json +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "서포트 루프 라인 폭" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "서포트 지붕 패턴" + +#: fdmprinter.def.json +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "서포트 상단 속도" + +#: fdmprinter.def.json +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "서포트 지붕 두께" + +#: fdmprinter.def.json +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "지지대 지붕 벽 라인 수" + +#: fdmprinter.def.json +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "서포트 속도" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "계단 Step Height 서포트" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "서포트 계단 스텝 최대 폭" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "서포트 계단 스텝 최소 경사 각도" + +#: fdmprinter.def.json +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "서포트 구조" + +#: fdmprinter.def.json +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "서포트 상단 거리" + +#: fdmprinter.def.json +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "지지대 벽 라인 카운트" + +#: fdmprinter.def.json +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "X/Y 서포트 거리" + +#: fdmprinter.def.json +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "서포트 Z 거리" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "지원되는 스킨 팬 속도" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "표면" + +#: fdmprinter.def.json +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "서피스 에너지" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "표면 모드" + +#: fdmprinter.def.json +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "표면에 점착되는 성항입니다." + +#: fdmprinter.def.json +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "표면의 에너지입니다." + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + +#: fdmprinter.def.json +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 "교차하는 메쉬로 교차하는 볼륨으로 전환하면 겹치는 메쉬가 서로 얽히게됩니다. 이 설정을 해제하면 메시 중 하나가 다른 메시에서 제거되는 동안 오버랩의 모든 볼륨을 가져옵니다." + +#: fdmprinter.def.json +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 "두 개의 인접 레이어 사이의 대상 수평 거리. 이러한 설정을 줄이면 레이어들의 가장자리를 더 가깝게 하도록 보다 얇은 레이어들을 사용하게 됩니다." + +#: fdmprinter.def.json +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 좌표입니다." + +#: fdmprinter.def.json +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "레이어에서 프린팅이 시작할 위치 근처의 X 좌표입니다." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐의 X 좌표입니다." + +#: fdmprinter.def.json +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 좌표입니다." + +#: fdmprinter.def.json +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "레이어에서 프린팅이 시작할 위치 근처의 Y 좌표입니다." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐의 Y 좌표입니다." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅가 시작될 때 노즐 위치의 Z 좌표입니다." + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "초기 레이어 프린팅 중 가속도." + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "초기 레이어의 가속도입니다." + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "헤드가 초기 레이어에서 이동할 때의 가속도." + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "헤드가 초기 레이어에서 이동할 때의 가속도." + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "모든 내부 벽이 프린팅되는 가속도입니다." + +#: fdmprinter.def.json +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "내부채움물이 프린팅되는 가속도." + +#: fdmprinter.def.json +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "다림질이 수행되는 가속도." + +#: fdmprinter.def.json +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "프린팅 속도가 빨라집니다." + +#: fdmprinter.def.json +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "기본 래프트 레이어가 프린팅되는 가속도입니다." + +#: fdmprinter.def.json +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 "지면의 가속도가 프린팅됩니다. 보다 낮은 가속도로 프린팅하면 모델 상단에 서포트력을 향상시킬 수 있습니다." + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "서포트의 내부채움이 프린팅되는 가속도." + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "중간 래프트 층이 프린팅되는 가속도." + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "가장 바깥 쪽 벽이 프린팅되는 가속도입니다." + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "프라임 타워가 프린팅되는 가속도." + +#: fdmprinter.def.json +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "래프트가 프린팅되는 가속도." + +#: fdmprinter.def.json +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 "서포트의 지붕과 바닥이 프린팅되는 가속도. 낮은 가속도로 프린팅하면 오버행 품질이 향상 될 수 있습니다." + +#: fdmprinter.def.json +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 "서포트의 지붕이 프린팅되는 가속도. 낮은 가속도로 프린팅하면 오버행 품질이 향상 될 수 있습니다." + +#: fdmprinter.def.json +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 "스커트와 브림이 프린팅되는 가속도. 일반적으로 이것은 초기 레이어 가속으로 이루어 서포트만 때로는 스커트나 브림을 다른 가속으로 프린팅 할 수 있습니다." + +#: fdmprinter.def.json +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "서포트 구조가 프린팅되는 가속도." + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "상단 래프트 레이어가 프린팅되는 가속도입니다." + +#: fdmprinter.def.json +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "벽이 프린팅되는 가속도." + +#: fdmprinter.def.json +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "상단 표면 스킨 층이 프린팅되는 가속도." + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "위쪽/아래쪽 레이어가 프린팅되는 가속도입니다." + +#: fdmprinter.def.json +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "헤드가 움직일때의 가속도." + +#: fdmprinter.def.json +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 "다림질하는 동안 기본 스킨 라인을 기준으로 한 재료의 압출량. 노즐을 가득 채우면 윗면의 틈새를 채울 수 있지만 표면에 과도한 압출과 필라멘트 덩어리가 생길 수 있습니다." + +#: fdmprinter.def.json +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 "내부채움 라인 폭의 비율로 나타낸 내부채움재와 벽 사이의 오버랩 양. 약간의 오버랩으로 벽이 내부채움과 확실하게 연결됩니다." + +#: fdmprinter.def.json +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 "내부채움과 벽 사이의 겹침 정도. 약간 겹치면 벽이 내부채움에 단단히 연결됩니다." + +#: fdmprinter.def.json +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으로 설정하십시오. 이는 일반적으로 열 영역의 길이와 같아야 합니다." + +#: fdmprinter.def.json +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 "노즐 끝 바로 위의 수평면과 원뿔 부분 사이의 각도입니다." + +#: fdmprinter.def.json +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 "타워 옥상의 각도. 높은 값을 지정하면 뾰족한 타워 지붕이되고, 값이 낮을수록 평평한 타워 지붕이됩니다." + +#: fdmprinter.def.json +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도의 각은 모형의 외형을 모델의 외형으로 만듭니다." + +#: fdmprinter.def.json +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이면 브랜치는 길이 전체에 균일한 두께를 갖게 됩니다. 약간의 각도가 있으면 트리 서포트의 안정성을 높여 줍니다." + +#: fdmprinter.def.json +msgctxt "support_tree_angle description" +msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "브랜치의 각도. 적은 각도를 사용하면 더 수직이 되어 더 안정됩니다. 높은 각도를 사용하면 더 많이 도달할 수 있습니다." + +#: fdmprinter.def.json +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도가 수평입니다. 각도가 작 으면 서포트가 더 튼튼하지만 더 많은 재료로 구성됩니다. 음수 각도는 서포트의 받침대가 상단보다 넓게 만듭니다." + +#: fdmprinter.def.json +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 "레이어의 각 다각형에 있는 점의 평균 밀도입니다. 다각형의 원래 점은 버려지므로 밀도가 낮으면 해상도가 감소합니다." + +#: fdmprinter.def.json +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 "각 선분에 있는 임의의 점 사이의 평균 거리입니다. 다각형의 원래 점은 버려지므로 해상도가 감소합니다. 이 값은 퍼지 스킨 두께의 절반보다 커야합니다." + +#: fdmprinter.def.json +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "프린트 헤드 이동시 기본 가속도." + +#: fdmprinter.def.json +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 "프린팅에 사용되는 기본 온도입니다. 이것은 재료의 \"기본\"온도 이여야 합니다. 다른 모든 프린팅 온도는 이 값을 기준으로 오프셋을 사용해야합니다" + +#: fdmprinter.def.json +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 "히팅 빌드 플레이트에 사용되는 기본 온도입니다. 이것은 재료의 \"기본\"온도입니다. 다른 모든 프린팅 온도는 이 값을 기준으로 오프셋을 사용해야합니다" + +#: fdmprinter.def.json +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보다 작으면 스킨 라인 사이의 간격이 증가합니다." + +#: fdmprinter.def.json +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 "서포트 구조체의 바닥 밀도. 값이 높을수록 서포트가 모델 위에 더 잘 접착됩니다." + +#: fdmprinter.def.json +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 "서포트의 지붕의 밀도. 값이 높을수록 오버행에서 좋지만 서포트를 제거하기가 더 어렵습니다." + +#: fdmprinter.def.json +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보다 작으면 스킨 라인 사이의 간격이 증가합니다." + +#: fdmprinter.def.json +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보다 작으면 스킨 라인 사이의 간격이 증가합니다." + +#: fdmprinter.def.json +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "프린팅 가능 영역의 깊이 (Y 방향)" + +#: fdmprinter.def.json +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "특수 타워의 지름." + +#: fdmprinter.def.json +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 "트리 서포트의 가장 얇은 브랜치의 직경. 브랜치가 두꺼울수록 더 견고해집니다. 바닥을 향한 브랜치는 이보다 더 두꺼워집니다." + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "피더에서 재료를 구동시키는 휠의 지름." + +#: fdmprinter.def.json +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 "트리 서포트의 가장 굵은 브랜치의 직경. 트렁크가 두꺼울수록 더 견고해집니다. 얇은 트렁크는 빌드 플레이트에서 차지하는 공간이 보다 적습니다." + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "이전 높이와 비교되는 다음 레이어 높이의 차이." + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "다림질 라인 사이의 거리." + +#: fdmprinter.def.json +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "이동 중 출력물을 피할 때 노즐과 이미 프린팅 된 부분 사이의 거리." + +#: fdmprinter.def.json +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 "기본 래프트 층에 대한 래프트 사이의 거리. 넓은 간격으로 빌드 플레이트에서 래프트를 쉽게 제거 할 수 있습니다." + +#: fdmprinter.def.json +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 "중간 래프트 층에 대한 래프트 사이의 거리. 중간 틈새는 매우 넓어야하며 래프트 상부 층을서포트 할만큼 충분히 촘촘해야합니다." + +#: fdmprinter.def.json +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 "상단 래프트 레이어에 대한 래프트 사이의 거리. 간격은 선 너비와 동일해야 표면이 단색입니다." + +#: fdmprinter.def.json +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 "연동 구조를 생성하기 위한 모델 간 경계로부터의 거리로, 셀 단위로 측정됩니다. 셀 수가 너무 적으면 접착력이 떨어집니다." + +#: fdmprinter.def.json +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 "모델에서 가장 바깥 쪽 브림까지의 거리. 큰 테두리는 빌드 플레이트에 대한 접착력을 향상 시키지만 효과적인 프린팅 영역도 감소시킵니다." + +#: fdmprinter.def.json +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 "연동 구조가 생성되지 않는 모델 외부로부터의 거리로, 셀 단위로 측정됩니다." + +#: fdmprinter.def.json +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 "노즐의 열이 필라멘트로 전달되는 노즐의 끝에서부터의 거리." + +#: fdmprinter.def.json +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 "바닥 스킨의 거리가 내부채움으로 확장됩니다. 값이 높을수록 스킨가 내부채움 패턴에 더 잘 붙어 스킨가 아래 층의 벽에 잘 밀착됩니다. 값이 낮을수록 사용 된 재료의 양이 절약됩니다." + +#: fdmprinter.def.json +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 "스킨이 내부채움으로 확장되는 거리입니다. 값이 높을수록 스킨이 내부채움 패턴에 더 잘 부착되고 인접 레이어의 벽이 스킨에 잘 밀착됩니다. 값이 낮을수록 사용 될 재료의 양이 절약됩니다." + +#: fdmprinter.def.json +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 "상단 스킨의 거리가 내부채움으로 확장됩니다. 값이 높을수록 스킨이 내부채움 패턴에 더 잘 부착되며 위 레이어의 벽이 스킨에 잘 밀착됩니다. 값이 낮을수록 사용 된 재료의 양이 절약됩니다." + +#: fdmprinter.def.json +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "브러시 전체에 헤드를 앞뒤로 이동하는 거리입니다." + +#: fdmprinter.def.json +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 "내부채움 선의 종점이 재료를 절약하기 위해 단축됩니다. 이 설정은 해당 선의 종점에 대한 오버행(경사면)의 각도입니다." + +#: fdmprinter.def.json +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 "압출하는 동안 노즐이 냉각되는 추가적인 속도. 압출하는 동안 가열 될 때 상실되는 열 상승 속도를 나타 내기 위해 동일한 값이 사용됩니다." + +#: fdmprinter.def.json +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 "첫번째 층의 서포트 채움에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." + +#: fdmprinter.def.json +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 "스커트 또는 브림 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." + +#: fdmprinter.def.json +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 "서포트의 바닥을 프린팅하는 데 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." + +#: fdmprinter.def.json +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 "서포트의 내부채움을 프린팅하는 데 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." + +#: fdmprinter.def.json +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 "래프트의 중간 레이어 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." + +#: fdmprinter.def.json +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 "서포트의 지붕과 바닥을 프린팅 할 때 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다." + +#: fdmprinter.def.json +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 "서포트의 지붕을 프린팅 할 때 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다." + +#: fdmprinter.def.json +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 "스커트 또는 브림 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "스커트 / 브림 / 래프트 프린팅에 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다." + +#: fdmprinter.def.json +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "서포트 프린팅에 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." + +#: fdmprinter.def.json +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 "래프트의 상단 레이어 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." + +#: fdmprinter.def.json +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "내부채움용 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." + +#: fdmprinter.def.json +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "내벽 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "외벽 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." + +#: fdmprinter.def.json +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 "상단 및 하단 스킨 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "익스트루더는 최상층을 프린팅하는 데 사용됩니다. 이것은 다중 압출에 사용됩니다." + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "벽을 프린팅하는 데 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "기본 래프트 레이어의 팬 속도입니다." + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "중간 래프트 레이어의 팬 속도입니다." + +#: fdmprinter.def.json +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "래프트의 팬 속도." + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "상단 래프트 레이어의 팬 속도입니다." + +#: fdmprinter.def.json +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 "인쇄 충진물의 해당 위치에서 밝기 값으로 최소 밀도를 결정하는 이미지의 파일 위치." + +#: fdmprinter.def.json +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 "지지대의 해당 위치에서 밝기 값으로 최소 밀도를 결정하는 이미지의 파일 위치." + +#: fdmprinter.def.json +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 "처음 몇 개의 레이어는 모델의 나머지 부분보다 느리게 프린팅되어 빌드 플레이트에 대한보다 나은 접착력을 얻고 출력물의 전체 성공률을 향상시킵니다. 속도는 이 층 위로 점진적으로 증가합니다." + +#: fdmprinter.def.json +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 "최종 래프트 층과 모델의 첫 번째 층 사이의 틈새. 래프트 층과 모델 사이의 결합을 낮추기 위해 이 양만큼 첫 번째 층만 올립니다. 래프트를 쉽게 떼어 낼 수 있습니다." + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "프린팅 가능 영역의 높이 (Z 방향)입니다." + +#: fdmprinter.def.json +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "모델의 수평 부분 위의 높이로 몰드를 프린팅합니다." + +#: fdmprinter.def.json +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 "표준 팬 속도로 팬이 회전하는 높이입니다. 이 높이의 아래 레이어에서 팬 속도는 초기 팬 속도에서 표준 팬 속도로 점차 증가합니다." + +#: fdmprinter.def.json +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 축)." + +#: fdmprinter.def.json +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 "노즐의 끝과 프린트 헤드의 가장 낮은 부분 사이의 높이 차이입니다." + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "익스트루더 스위치 후 Z 홉을 수행할 때의 높이 차이." + +#: fdmprinter.def.json +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Z 홉을 수행 할 때의 높이 차이." + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Z 홉을 수행할 때의 높이 차이." + +#: fdmprinter.def.json +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)입니다. 값이 클수록 해상도가 낮고 프린팅 속도가 빨라지며, 값이 작을수록 해상도가 높고 프린팅 속도가 느려집니다." + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "밀도의 절반으로 전환하기 전에 주어진 밀도에서 내부채움의 높이." + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "밀도의 절반으로 전환하기 전에 주어진 밀도의 서포트 채움 높이." + +#: fdmprinter.def.json +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 "연동 구조의 빔 높이로, 레이어 수로 측정됩니다. 레이어가 적을수록 강하지만 결함이 발생하기 쉽습니다." + +#: fdmprinter.def.json +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 "연동 구조의 빔 높이로, 레이어 수로 측정됩니다. 레이어가 적을수록 강하지만 결함이 발생하기 쉽습니다." + +#: fdmprinter.def.json +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)입니다. 첫번째 레이어를 두껍게하면 빌드 플레이트에 쉽게 부착됩니다." + +#: fdmprinter.def.json +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으로 설정하십시오." + +#: fdmprinter.def.json +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 "첫 번째 브림 선과 첫 번째 레이어 프린팅의 윤곽 사이의 수평 거리입니다. 작은 간격은 브림을 제거하기 쉽도록 하면서 내열성의 이점을 제공할 수 있습니다." + +#: fdmprinter.def.json +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" +"이것은 최소 거리입니다. 여러 개의 스커트 선이 이 거리에서 바깥쪽으로 연장됩니다." + +#: fdmprinter.def.json +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 "내부채움 선이 인쇄 시간을 절약하기 위해 정리됩니다. 이는 내부채움 선 길이 전체에 허용되는 오버행(경사면)의 최대 각도입니다." + +#: fdmprinter.def.json +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "내부채움 패턴이 X축을 따라 이 거리만큼 이동합니다." + +#: fdmprinter.def.json +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "내부채움 패턴이 Y축을 따라 이 거리만큼 이동합니다." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때 이 설정을 변경하십시오." + +#: fdmprinter.def.json +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "기본 래프트 레이어가 프린팅 될 때의 Jerk입니다." + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "중간 래프트 층이 프린팅 될 때의 Jerk입니다." + +#: fdmprinter.def.json +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "래프트가 프린팅 될 때의 Jerk입니다." + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "상단 래프트 레이어가 프린팅 될 때의 Jerk입니다." + +#: fdmprinter.def.json +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 "제거 할 바닥 스킨 영역의 최대 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게하면 모델의 경사면에서 밑면 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이됩니다." + +#: fdmprinter.def.json +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 "제거 할 외부스킨 영역의 가장 큰 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게하면 모델의 경사면에서 위쪽 / 아래쪽 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이 됩니다." + +#: fdmprinter.def.json +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 "제거 할 상단 스킨 영역의 가장 큰 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게 하면 모델의 경사면에서 상단 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이됩니다." + +#: fdmprinter.def.json +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 "팬이 표준 팬 속도로 회전하는 레이어입니다. 표준 팬 속도시의 높이가 설정이 되어있으면, 이 값이 계산되고 정수로 반올림됩니다." + +#: fdmprinter.def.json +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 "표준 팬 속도와 최대 팬 속도 사이의 임계 값을 설정하는 레이어 시간입니다. 이 시간보다 느리게 프린팅되는 레이어는 표준 팬 속도를 사용합니다. 빠른 레이어의 경우 팬 속도가 최대 팬 속도쪽으로 점차 증가합니다." + +#: fdmprinter.def.json +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "리트렉션 이동 중에 수축 된 재료의 길이입니다." + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "프린터에 설치된 빌드 플레이트의 재질." + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "기본 레이어 높이와 다른 최대 허용 높이." + +#: fdmprinter.def.json +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 쉴드가 덜 파손되지만 재료는 더 많이 소모됩니다." + +#: fdmprinter.def.json +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도는 모델을 변경하지 않습니다." + +#: fdmprinter.def.json +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² 값은 모델 베이스의 모든 홀을 채웁니다." + +#: fdmprinter.def.json +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 코드도 감소합니다. 최대 편차는 최대 해상도의 한계이며, 따라서 두 항목이 충돌하면 항상 최대 편차가 우선합니다." + +#: fdmprinter.def.json +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 방향으로 지지대 구조물 사이의 최대 거리입니다. 별도의 구조가 이 값보다 가깝게 있으면 구조가 하나로 합쳐집니다." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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 코드도 감소합니다." + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "초기 층의 프린팅 중 최대 순간 속도 변화." + +#: fdmprinter.def.json +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "프린트 헤드의 최대 순간 속도 변화." + +#: fdmprinter.def.json +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "다림질을하는 동안 최대 순간 속도 변화." + +#: fdmprinter.def.json +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "모든 내부 벽이 프린팅되는 최대 순간 속도 변화." + +#: fdmprinter.def.json +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "내부채움이 프린팅되는 최대 순간 속도 변화." + +#: fdmprinter.def.json +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "서포트의 바닥이 프린팅되는 최대 순간 속도 변화." + +#: fdmprinter.def.json +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "서포트가 채워지는 최대 순간 속도 변화." + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "가장 바깥 쪽 벽이 프린팅되는 최대 순간 속도 변화." + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "프라임 타워가 프린팅되는 최대 순간 속도 변화." + +#: fdmprinter.def.json +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "서포트의 지붕과 바닥이 프린팅되는 최대 순간 속도 변화." + +#: fdmprinter.def.json +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "서포트의 지붕이 프린팅되는 최대 순간 속도 변화." + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "스커트와 브림이 프린팅되는 최대 순간 속도 변화." + +#: fdmprinter.def.json +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "서포트 구조가 프린팅되는 최대 순간 속도 변화." + +#: fdmprinter.def.json +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "벽이 프린팅되는 최대 순간 속도 변화." + +#: fdmprinter.def.json +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "상단 표면 스킨 층이 프린팅되는 최대 순간 속도 변화." + +#: fdmprinter.def.json +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "상단 / 하단 레이어가 프린팅되는 최대 순간 속도 변화." + +#: fdmprinter.def.json +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "헤드가 이동하는 최대 순간 속도 변화." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "X 방향의 모터 최대 속도입니다." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Y 방향 모터의 최대 속도입니다." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Z 방향의 모터 최대 속도입니다." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "필라멘트의 최대 속도." + +#: fdmprinter.def.json +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 "모델에있는 서포트의 계단 모양 바닥의 최대 폭. 값이 낮으면 서포트을 제거하기가 어려워 서포트만 값이 너무 높으면 불안정한 서포트 구조가 생길 수 있습니다." + +#: fdmprinter.def.json +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "몰드의 바깥쪽과 모델의 바깥쪽 사이의 최소 거리입니다." + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "프린트 헤드의 최소 이동 속도." + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "프린팅이 시작될 수 있는 프린팅 온도까지 가열하는 동안의 최소 온도." + +#: fdmprinter.def.json +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 "노즐이 냉각되기 전에 익스트루더가 비활성이어야하는 최소 시간. 이 시간보다 오래 익스트루더를 사용하지 않을 경우에만 대기 온도로 냉각시킬 수 있습니다." + +#: fdmprinter.def.json +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°에서는 충진물이 공급되지 않습니다." + +#: fdmprinter.def.json +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 °는 지원하지 않습니다." + +#: fdmprinter.def.json +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 "리트렉션이 가능하기 위해 필요한 최소한의 이동 거리. 작은 영역에서 더 적은 리트렉션이 가능합니다." + +#: fdmprinter.def.json +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으로 설정하면 무시됩니다." + +#: fdmprinter.def.json +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 * 최소 짝수 벽 선 너비로 계산됩니다." + +#: fdmprinter.def.json +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 * 최소 홀수 벽 선 너비로 계산됩니다." + +#: fdmprinter.def.json +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 "최소 프린팅 속도. 프린터의 속도가 너무 느려지면 노즐의 압력이 너무 낮아 프린팅 품질이 나빠질 수 있습니다." + +#: fdmprinter.def.json +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 코드를 처리하는 데 필요한 속도를 유지할 수 있으며 처리할 수 없는 메쉬의 디테일이 제거되므로 슬라이드 속도가 높아집니다." + +#: fdmprinter.def.json +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 코드를 처리하는 데 필요한 속도를 유지할 수 있지만, 모델을 피하기 때문에 정확도가 감소합니다." + +#: fdmprinter.def.json +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 "계단 스텝이 적용되는 영역의 최소 경사입니다. 값이 낮을수록 낮은 각도 서포트 제거가 쉬워지지만 값을 너무 낮게 지정하면 모델의 다른 부분에서 적절하지 않은 결과가 발생할 수 있습니다." + +#: fdmprinter.def.json +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 "레이어에 소요 된 최소 시간입니다. 이렇게 하면 프린터가 한 레이어에서 여기에 설정된 시간을 소비하게됩니다. 이렇게하면 다음 레이어를 프린팅하기 전에 출력물을 적절히 냉각시킬 수 있습니다. 리프트 헤드가 비활성화되고 최소 속도가 위반되는 경우 레이어가 최소 레이어 시간보다 짧게 걸릴 수 있습니다." + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "충분한 재료를 퍼지하기 위해 프라임 타워 각 층의 최소 부피." + +#: fdmprinter.def.json +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "3D 프린터 모델의 이름." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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이 활성화 된 경우에만 사용할 수 있습니다." + +#: fdmprinter.def.json +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "노즐은 이동하는 경우 이미 인쇄된 지지대를 피합니다. 빗질을 사용하는 경우에만 사용할 수 있는 옵션입니다." + +#: fdmprinter.def.json +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 "아래층의 수. 바닥 두께로 계산을 할때 이 값은 벽 두께로 계산할 때 이 값은 반올림됩니다." + +#: fdmprinter.def.json +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 "래프트의 베이스 레이어에 있는 선형 패턴 주위에 프린팅 할 윤곽의 수." + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "스킨 에지를 지원하는 내부채움 레이어의 수." + +#: fdmprinter.def.json +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 "빌드 플레이트에서 위를 향하는 초기 하단 레이어 수. 하단 두께로 계산할 경우, 이 값이 전체 값으로 반올림됩니다." + +#: fdmprinter.def.json +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 "래프트의 베이스와 표면 사이에 있는 레이어의 수. 이 수가 래프트의 주요 두께를 구성합니다. 이 수가 증가하면 래프트가 더 두껍고 튼튼해집니다." + +#: fdmprinter.def.json +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 "브림에 사용되는 선의 수입니다. 더 많은 브림 선이 빌드 플레이트에 대한 접착력을 향상 시키지만 유효 프린트 영역도 감소시킵니다." + +#: fdmprinter.def.json +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 "서포트 브림에 사용되는 라인의 수. 브림 라인이 많아질수록 추가 재료가 소요되지만 빌드 플레이트에 대한 접착력이 향상됩니다." + +#: fdmprinter.def.json +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보다 부드러운 표면을 만듭니다." + +#: fdmprinter.def.json +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 "출력물의 상단 레이어의 수. 상단 두깨로 계산을 할때 이 값은 벽 두께로 계산할 때 이 값은 반올림됩니다." + +#: fdmprinter.def.json +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 "최상층의 스킨 층의 수. 일반적으로 고품질의 표면을 생성하기 위해 맨위의 레이어 하나만 있으면 충분합니다." + +#: fdmprinter.def.json +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 "지지대 충진물을 둘러싸는 벽의 개수. 벽을 추가하면 지지물 인쇄 안정성을 높일 수 있고 오버행 지지를 개선할 수 있지만, 인쇄 시간과 사용되는 재료가 늘어납니다." + +#: fdmprinter.def.json +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 "지지대 인터페이스 바닥을 둘러쌀 벽의 수입니다. 벽을 추가하면 지지대 프린트를 더 안정적으로 만들고 오버행(경사면)을 더 잘 지원할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다." + +#: fdmprinter.def.json +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 "지지대 인터페이스 지붕을 둘러쌀 벽의 수입니다. 벽을 추가하면 지지대 프린트를 더 안정적으로 만들고 오버행(경사면)을 더 잘 지원할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다." + +#: fdmprinter.def.json +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 "지지대 인터페이스를 둘러쌀 벽의 수입니다. 벽을 추가하면 지지대 프린트를 더 안정적으로 만들고 오버행(경사면)을 더 잘 지원할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다." + +#: fdmprinter.def.json +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 "중앙에서부터 계산되는 벽의 수로, 이를 통해 오차가 분산되어야 합니다. 값이 작다고 해서 외벽의 너비가 변경되지 않는 것은 아닙니다." + +#: fdmprinter.def.json +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 "벽의 수. 벽 두께로 계산할 때 이 값은 반올림됩니다." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "노즐 끝의 외경." + +#: fdmprinter.def.json +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) 내부채움이 레이어마다 변경되므로 각 방향으로 힘이 더 균등하게 분산됩니다. 라이트닝 내부채움이 객체의 천장만 서포트하여 내부채움을 최소화합니다." + +#: fdmprinter.def.json +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 "서포트 구조의 패턴. 사용 가능한 여러 가지 옵션을 사용하면 튼튼하고 쉽게 제거 할 수 있습니다." + +#: fdmprinter.def.json +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "최상위 레이어의 패턴." + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "상단/하단 레이어의 패턴." + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "첫 번째 레이어의 프린팅 아래쪽에 있는 패턴입니다." + +#: fdmprinter.def.json +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "윗면을 다림질 할 때 사용하는 패턴." + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "서포트의 바닥이 프린팅되는 패턴." + +#: fdmprinter.def.json +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "모델과 서포트 인터페이스를 프린팅하는 패턴입니다." + +#: fdmprinter.def.json +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "서포트의 지붕이 프린팅되는 패턴." + +#: fdmprinter.def.json +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "레이어에서 각 부품의 프린팅이 시작할 위치 근처입니다." + +#: fdmprinter.def.json +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "초기 레이어의 프린팅 최대 순간 속도 변화." + +#: fdmprinter.def.json +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "프린팅 할 수 없는 영역을 고려하지 않은 빌드 플레이트의 모양." + +#: fdmprinter.def.json +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 "프린트 헤드의 모양. 일반적으로 첫 번째 압출기의 위치인 프린트 헤드의 위치와 관련된 좌표입니다. 프린트 헤드의 왼쪽 및 앞쪽 치수는 음수 좌표여야 합니다." + +#: fdmprinter.def.json +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 방향 교차점에있는 포켓의 크기입니다." + +#: fdmprinter.def.json +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) 양보다 커야합니다." + +#: fdmprinter.def.json +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)는 일반적인 프린팅 온도 및 대기 온도에서 평균을 냅니다." + +#: fdmprinter.def.json +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)는 일반적인 프린팅 온도와 대기 온도에서 평균을 냅니다." + +#: fdmprinter.def.json +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 "모든 내부 벽이 프린팅되는 속도입니다. 내벽을 외벽보다 빠르게 프린팅하면 프린팅 시간이 단축됩니다. 외벽 속도와 충전 속도 사이에서 이것을 설정하는 것이 효과적입니다." + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "브릿지 스킨 층이 프린팅되는 속도." + +#: fdmprinter.def.json +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "내부채움이 프린팅되는 속도." + +#: fdmprinter.def.json +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "프린팅 속도." + +#: fdmprinter.def.json +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 "기본 래프트 레이어가 프린팅되는 속도입니다. 이것은 노즐에서 나오는 재료의 양이 상당히 많기 때문에 아주 천천히 프린팅되어야 합니다." + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "브릿지 벽이 프린팅되는 속도." + +#: fdmprinter.def.json +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 "프린팅 시작시 팬이 회전하는 속도입니다. 후속 레이어에서는 팬 속도가 높이의 표준 팬 속도에 해당하는 레이어까지 점차 증가합니다." + +#: fdmprinter.def.json +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 "팬이 임계 값에 도달하기 전에 회전하는 속도입니다. 레이어가 임계값보다 빠르게 프린팅되면 팬 속도가 최대 팬 속도쪽으로 점차 기울어집니다." + +#: fdmprinter.def.json +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 "최소 레이어 시간에 팬이 회전하는 속도입니다. 임계 값에 도달하면 표준 팬 속도와 최대 팬 속도 사이에서 팬 속도가 서서히 증가합니다." + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "리트렉션 이동 중에 필라멘트가 프라이밍되는 속도입니다." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "와이프 리트랙션 이동 중에 필라멘트가 초기화되는 속도입니다." + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "노즐 스위치 리트렉션 후 필라멘트가 뒤로 밀리는 속도." + +#: fdmprinter.def.json +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "리트렉션 속도입니다." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "와이프 리트랙션 이동 중에 필라멘트가 리트렉션 및 준비되는 속도입니다." + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "노즐 스위치 리트렉션시 필라멘트가 리트렉션하는 속도." + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "리트렉션 속도입니다." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "와이프 리트랙션 이동 중에 필라멘트가 리트렉트되는 속도입니다." + +#: fdmprinter.def.json +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 "필라멘트가 리트렉션 되는 속도입니다. 리트렉션 속도가 빠르면 좋지만 리트렉션 속도가 높으면 필라멘트가 갈릴 수 있습니다." + +#: fdmprinter.def.json +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 "서포트 바닥 프린팅 속도. 더 낮은 속도로 프린팅하면 모델 상단의 서포트력이 향상됩니다." + +#: fdmprinter.def.json +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 "서포트의 내부채움이 프린팅되는 속도. 내부채움을 저속으로 프린팅하면 안정성이 향상됩니다." + +#: fdmprinter.def.json +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 "중간 래프트 층이 프린팅되는 속도. 이것은 노즐에서 나오는 재료의 양이 상당히 많기 때문에 아주 천천히 프린팅되어야합니다." + +#: fdmprinter.def.json +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 "가장 바깥 쪽 벽이 프린팅되는 속도입니다. 외벽을 더 낮은 속도로 프린팅하면 최종 스킨 품질이 향상됩니다. 그러나 내벽 속도와 외벽 속도 사이에 큰 차이가있을 경우 부정적인 방식으로 품질에 영향을 미칩니다." + +#: fdmprinter.def.json +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 "프라임 타워가 프린팅되는 속도. 프라임 타워를 더 천천히 프린팅하면 다른 필라멘트 사이의 접착을 더 안정적으로 만들 수 있습니다." + +#: fdmprinter.def.json +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "프린팅 냉각 팬이 회전하는 속도입니다." + +#: fdmprinter.def.json +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "래프트가 프린팅되는 속도." + +#: fdmprinter.def.json +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 "서포트의 지붕과 바닥이 프린팅되는 속도. 프린팅 속도를 느리게하면 오버행 품질이 향상 될 수 있습니다." + +#: fdmprinter.def.json +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 "서포트의 지붕이 프린팅되는 속도입니다. 프린팅 속도를 느리게하면 오버행 품질이 향상 될 수 있습니다." + +#: fdmprinter.def.json +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 "스커트와 브림이 프린팅되는 속도입니다. 일반적으로 이것은 초기 레이어 속도에서 수행되지만 때로는 스커트나 브림을 다른 속도로 프린팅하려고 할 수 있습니다." + +#: fdmprinter.def.json +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 "서포트 구조가 프린팅되는 속도입니다. 서포트를 고속으로 프린팅하면 프린팅 시간을 크게 단축시킵니다. 서포트 구조체의 표면 품질은 프린팅 후에 제거되므로 중요하지 않습니다." + +#: fdmprinter.def.json +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 "상단 래프트 레이어가 프린팅되는 속도입니다. 이 노즐은 조금 더 느리게 프린팅해야 노즐이 인접한 표면 선을 천천히 부드럽게 할 수 있습니다." + +#: fdmprinter.def.json +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 이동이 이루어지는 속도입니다. 빌드 플레이트 또는 기기의 갠트리를 움직이기가 더 어렵기 때문에 프린트 속도보다 낮은 것이 일반적입니다." + +#: fdmprinter.def.json +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "벽이 프린팅되는 속도입니다." + +#: fdmprinter.def.json +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "상단 표면을 통과하는 속도." + +#: fdmprinter.def.json +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "필라멘트가 깔끔하게 파단되기 위해 후퇴해야 하는 속도입니다." + +#: fdmprinter.def.json +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "상단 표면 스킨 층이 프린팅되는 속도." + +#: fdmprinter.def.json +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "위쪽/아래쪽 레이어가 프린팅되는 속도입니다." + +#: fdmprinter.def.json +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "움직일때의 이동 속도." + +#: fdmprinter.def.json +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% 보다 약간 작은 값을 권합니다." + +#: fdmprinter.def.json +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 "초기 레이어의 속도입니다. 빌드 플레이트에 대한 접착력을 향상시키려면 낮은 값을 권장합니다. 브림과 래프트 같은 빌드 플레이트 접착 구조 자체에 영향을 미치지 않습니다." + +#: fdmprinter.def.json +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 "초기 레이어의 프린팅 속도입니다. 빌드 플레이트에 대한 접착력을 향상 시키려면 낮은 값을 권합니다." + +#: fdmprinter.def.json +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 "이동 속도는 초기 레이어에서 이동합니다. 이전에 프린팅 된 부품을 빌드 플레이트에서 떨어지는 것을 방지하려면 더 낮은 값을 권합니다. 이 설정의 값은 이동 속도와 프린팅 속도 사이의 비율로부터 자동으로 계산 될 수 있습니다." + +#: fdmprinter.def.json +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "필라멘트가 깔끔하게 파단되는 온도입니다." + +#: fdmprinter.def.json +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인 경우 빌드 볼륨 온도는 조정되지 않습니다." + +#: fdmprinter.def.json +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "다른 노즐이 현재 프린팅에 사용될 경우 노즐 온도." + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "프린팅 종료 직전에 냉각이 시작될 온도입니다." + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +msgstr "첫 번째 레이어에 프린팅에 사용되는 온도입니다. 초기 레이어의 특수 처리를 사용하지 않으려면 0으로 설정합니다." + +#: fdmprinter.def.json +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "프린팅에 사용되는 온도." + +#: fdmprinter.def.json +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인 경우, 빌드 플레이트가 첫 번째 레이어에서 가열되지 않습니다." + +#: fdmprinter.def.json +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인 경우 빌드 플레이트가 가열되지 않습니다." + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "재료를 퍼지하는 데 사용하는 온도는 가능한 한 가장 높은 프린팅 온도와 대략 같아야 합니다." + +#: fdmprinter.def.json +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 "출력물의 아래쪽 레이어의 두께. 이 값을 레이어 높이로 나눈 값은 맨 아래 레이어의 수 입니다." + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "스킨 에지를 지원하는 추가 내부채움의 두께." + +#: fdmprinter.def.json +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 "밑면 또는 상단의 모델과 접촉하는 서포트 인터페이스 두께입니다." + +#: fdmprinter.def.json +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 "서포트 바닥의 두께. 이것은 서포트가 놓여있는 모델의 상단에 프린팅되는 조밀 한 층의 수를 제어합니다." + +#: fdmprinter.def.json +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 "받침 지붕의 두께. 이것은 모델이 놓이는 받침대 상단의 조밀 한 층의 양을 제어합니다." + +#: fdmprinter.def.json +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 "출력물의 상단 레이어의 두께. 이 값을 레이어 높이로 나눈 값이 최상위 레이어 수 입니다." + +#: fdmprinter.def.json +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 "출력물의 상단/하단 레이어의 두께. 이 값을 레이어 높이로 나눈 값은 위쪽/아래쪽 레이어의 수 입니다." + +#: fdmprinter.def.json +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 "가로 방향의 벽 두께입니다. 이 값을 벽 선 너비로 나눈 값은 벽의 수 입니다." + +#: fdmprinter.def.json +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 "내부채움물 층의 두께. 이 값은 항상 레이어 높이의 배수이어야 하며 반올림됩니다." + +#: fdmprinter.def.json +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 "서포트 내부채의 레이어당 두께. 이 값은 항상 레이어 높이의 배수이 어야하며 그렇지 않으면 반올림됩니다." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "생성 될 gcode의 유형." + +#: fdmprinter.def.json +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "그렇지 않으면 볼륨이 흘러 나옵니다. 이 값은 일반적으로 노즐 직경 입방체에 가깝습니다." + +#: fdmprinter.def.json +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "프린팅 가능 영역의 폭 (X 방향)." + +#: fdmprinter.def.json +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 "서포트 아래를 인쇄하기 위한 브림 폭. 브림이 커질수록 추가 재료가 소요되지만 빌드 플레이트에 대한 접착력이 향상됩니다." + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "연동 구조 빔의 너비입니다." + +#: fdmprinter.def.json +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "프라임 타워의 너비." + +#: fdmprinter.def.json +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 "지터가 발생할 너비. 내벽이 변경되지 않으므로 외벽 너비 아래로 유지하는 것이 좋습니다." + +#: fdmprinter.def.json +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 "최대 리트렉션 횟수가 시행되는 영역 입니다. 이 값은 수축 거리와 거의 같아야 하므로 같은 수축 패치가 통과하는 횟수가 효과적으로 제한됩니다." + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "프라임 타워 위치의 x 좌표입니다." + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "프라임 타워 위치의 y 좌표입니다." + +#: fdmprinter.def.json +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "장면에 서포트 메쉬가 있습니다. 이 설정은 Cura가 제어합니다." + +#: fdmprinter.def.json +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)을 하면 노즐의 압력을 낮추고 보다 평평한 브릿지를 만들 수 있습니다." + +#: fdmprinter.def.json +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 "이 설정은 래프트 윤곽의 안쪽 구석의 곡률을 제어합니다. 안쪽 구석이 여기에 지정된 값과 동일한 반경으로 반원 모양으로 휘어집니다. 또한 이 설정을 사용하면 래프트 윤곽에서 그러한 원보다 작은 구멍이 제거됩니다." + +#: fdmprinter.def.json +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 "이 설정은 최소 압출 거리에서 발생하는 리트렉션 수를 제한합니다. 이 거리내에서 더 이상의 리트렉션은 무시됩니다. 이렇게 하면 필라멘트를 평평하게하고 갈리는 문제를 일으킬 수 있으므로 동일한 필라멘트에서 반복적으로 리트렉션하지 않습니다." + +#: fdmprinter.def.json +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 "모델 주위에 벽이 생겨 외부 공기 흐름을 막아 (뜨거운) 공기를 막을 수 있습니다. 왜곡이 쉬운 소재에 특히 유용합니다." + +#: fdmprinter.def.json +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 방향으로(수평으로) 확장됩니다." + +#: fdmprinter.def.json +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 방향으로(수직으로) 확장됩니다." + +#: fdmprinter.def.json +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 "냉각됨에 따라 재료 수축을 보상하기 위해 모델이 이 배율로 확장됩니다." + +#: fdmprinter.def.json +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "상단 레이어" + +#: fdmprinter.def.json +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "윗면 스킨 확장 거리" + +#: fdmprinter.def.json +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "상단 스킨 제거 폭" + +#: fdmprinter.def.json +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "상단 표면 스킨 가속도" + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "상단 표면 익스트루더" + +#: fdmprinter.def.json +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "상단 표면 스킨 압출량" + +#: fdmprinter.def.json +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "스킨 표면 Jerk" + +#: fdmprinter.def.json +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "상단 표면 스킨 레이어" + +#: fdmprinter.def.json +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "상단 표면 스킨 라인 방향" + +#: fdmprinter.def.json +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "상단 표면 스킨 선 너비" + +#: fdmprinter.def.json +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "탑 표면 스킨 패턴" + +#: fdmprinter.def.json +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "상단 표면 스킨 속도" + +#: fdmprinter.def.json +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "상단 두께" + +#: fdmprinter.def.json +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도의 각도는 수직이며 모든 스킨의 확장을 유발합니다." + +#: fdmprinter.def.json +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "위 / 아래" + +#: fdmprinter.def.json +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "위 / 아래" + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "상단/하단 가속도" + +#: fdmprinter.def.json +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "상단/하단 익스트루더" + +#: fdmprinter.def.json +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "상단/하단 압출량" + +#: fdmprinter.def.json +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "위/아래 Jerk" + +#: fdmprinter.def.json +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "상단/하단 라인 길 방향" + +#: fdmprinter.def.json +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "상단/하단 라인 폭" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "상단/하단 패턴" + +#: fdmprinter.def.json +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "상단/하단 속도" + +#: fdmprinter.def.json +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "상단/하단 두께" + +#: fdmprinter.def.json +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "빌드 플레이트 위" + +#: fdmprinter.def.json +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "타워 지름" + +#: fdmprinter.def.json +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "타워 지붕 각도" + #: fdmprinter.def.json msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "파일로부터 로드 하는 경유, 모델에 적용될 변환 행렬입니다." -#~ msgctxt "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "프린트 헤드의 2D 실루엣 (팬 뚜껑 포함)." - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "내벽 앞부분 바깥 쪽" - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "활성화 되었을 때 외부에서 내부로 벽을 프린팅합니다. 이것은 ABS와 같은 고점도 플라스틱을 사용할 때 X와 Y의 치수 정확도를 향상시키는 데 도움이 됩니다. 그러나 특히 오버행의 경우 표면 프린팅 품질을 떨어 뜨릴 수 있습니다." - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "벽 겹침 보정" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "이미 벽이있는 곳에 프린팅중인 벽의 부분에 대한 흐름을 보정하십시오." - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "외벽 겹침 보정" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "이미 벽이있는 곳에 프린팅되는 외벽 부분에 대한 흐름을 보정합니다." - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "내부 벽 겹침 보정" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "이미 벽이있는 곳에 프린팅되는 내부 벽 부분에 대한 흐름을 보정하십시오." - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "최소 압출량" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "벽 라인에 대한 최소 허용 백분율 흐름 벽 오버랩 보상이 기존 벽과 가까울 때 벽의 흐름을 줄입니다. 흐름이 이 값보다 작은 벽은 이동으로 대체됩니다. 이 설정을 사용하는 경우 벽 오버랩 보상을 사용하고 내벽 전에 외벽을 인쇄해야 합니다." - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "리트렉션 선호" - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "이 옵션을 사용하면 흐름이 최소 흐름 임계 값보다 낮은 벽을 교체하는 이동에 대해 빗질 대신에 리트렉션을 사용합니다." - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "벽 사이의 간격 채우기" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "벽이 딱 맞지 않는 벽 사이의 간격을 채웁니다." - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "아무데도" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "어디에나" - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "매우 작은 간격 차단" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "매우 작은 간격을 차단하여 모델 외부의 얼룩을 줄입니다." - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "필라멘트 흐름 균일화" - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "일반 라인보다 얇게 프린팅하여 초당 압출되는 재료의 양이 동일하게 유지되도록 하십시오. 모델의 얇은 부분에는 설정에서 제공 한 것보다 작은 선 너비로 선이 프린팅되어야 할 수 있습니다. 이 설정은 이러한 선의 속도 변경을 제어합니다." - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "압출량 균등화를위한 최대 속도" - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "흐름을 균등하게 유지하기위해 조정되는 최대 프린팅 속도." - -#~ msgctxt "machine_start_gcode description" -#~ msgid "G-code commands to be executed at the very start - separated by \\n." -#~ msgstr "시작과 동시에형실행될 G 코드 명령어 \\n." - -#~ msgctxt "machine_end_gcode description" -#~ msgid "G-code commands to be executed at the very end - separated by \\n." -#~ msgstr "맨 마지막에 실행될 G 코드 명령 \\n." - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ 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 (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ msgstr "프린트 내부채움 재료의 패턴입니다. 선과 지그재그형 내부채움이 레이어를 하나 걸러서 방향을 바꾸므로 재료비가 절감됩니다. 격자, 삼각형, 삼육각형, 큐빅, 옥텟, 쿼터 큐빅, 크로스, 동심원 패턴이 레이어마다 완전히 프린트됩니다. 자이로이드, 큐빅, 쿼터 큐빅, 옥텟 내부채움이 레이어마다 변경되므로 각 방향으로 힘이 더 균등하게 분산됩니다. 라이트닝 내부채움이 객체의 (내부) 지붕만 서포트하여 내부채움을 최소화합니다. 따라서 내부채움 비율은 모델을 서포트하는 데 필요한 것에 상관없이 한 레이어 아래에만 '유효'합니다." - -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "나무의 바깥쪽 가지치기에 대해 라이트닝 내부채움 레이어와 바로 위 레이어의 차이점입니다. 두께가 주어진 각도로 측정됩니다." - -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ 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." -#~ msgstr "프린트 충진 재료의 패턴입니다. 선과 갈지자형 충진이 레이어를 하나 걸러서 방향을 바꾸므로 재료비가 절감됩니다. 격자, 삼각형, 삼육각형, 입방체, 옥텟, 4분 입방체, 십자, 동심원 패턴이 레이어마다 완전히 인쇄됩니다. 자이로이드, 입방체, 4분 입방체, 옥텟 충진이 레이어마다 변경되므로 각 방향으로 힘이 더 균등하게 분산됩니다." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "몰드의 바깥 쪽과 모델의 바깥 쪽 사이의 최소 거리입니다." - -#~ msgctxt "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "0이 아닌 경우 이 거리보다 긴 빗질 이동은 후퇴를 사용합니다." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "익스트루더 오프셋을 좌표계에 적용하십시오." - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ 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, while an angle of 90° is vertical." -#~ msgstr "이 설정보다 큰 각도로 객체의 상단 및 또는 하단 표면은 위쪽/아래쪽 스킨이 확장되지 않습니다. 이렇게하면 모델 표면이 수직 경사가 거의 없을 때 생성되는 좁은 스킨 영역을 확장하지 않아도됩니다. 0도의 각도는 수평이며, 90도의 각도는 수직입니다." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ 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 lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "여러 오버랩 메쉬 내부채움을 고려할 때 메쉬의 우선 순위를 결정합니다. 여러 메쉬 내부채움이 오버랩하는 영역은 최저 랭크의 메쉬 설정에 착수하게 됩니다. 우선 순위가 높은 내부채움 메쉬는 우선 순위가 낮은 내부채움 메쉬와 표준 메쉬의 내부채움을 수정합니다." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "플레이트를 가열하기 위해 사용되는 온도. 이것이 0이면, 베드 온도가 조정되지 않습니다." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "첫 번째 레이어에서 가열 된 빌드 플레이트에 사용되는 온도." - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "수축률" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "수축 비율 퍼센트." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ 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 "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "메쉬 순서 내부채움" - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "어떤 내부채움 메쉬가 다른 내부채움 메쉬의 내부에 있는지 결정합니다. 더 높은 차수의 내부채움 메쉬는 더 낮은 차수와 일반적인 메쉬로 내부채움 메쉬의 내부채움을 수정합니다." - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "트리구조 서포트" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "가지가 달린 나무 모양의 서포트을 생성합니다. 이것이 재료 사용과 프린팅 시간을 줄여줄 수 있지만, 슬라이싱 시간이 상당히 늘어납니다." - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "레이어를 대각선 방향으로 슬라이스하는 방법. 레이어 영역은 레이어의 중앙이 서피스와 교차하는 부분(중간)을 기준으로 생성됩니다. 또는 각 레이어에 레이어의 높이 전체의 볼륨에 들어가는 영역(배타적)이나 레이어 안의 어느 지점에 들어가는 영역(중복)이 있을 수 있습니다. 배타적은 가장 많은 디테일을 포함하고, 중복은 가장 잘 맞게 만들 수 있으며, 중간은 처리 시간이 가장 짧습니다." - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "스파게티 내부채움" - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "필라멘트가 물체 내부에서 혼란스럽게 뒤 틀릴 수 있도록 필러를 너무 자주 프린팅합니다. 이렇게하면 프린팅 시간이 줄어들지만 예측할 수 없는 행동입니다." - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "스파게티 내부채움 단계" - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "스파게티 필링을 단계별로 프린팅할지 또는 프린팅가 끝날 때 모든 필 필라멘트를 압출시킬지 여부." - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "스파게티 최대 내부채움 각" - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "최대 각도 w.r.t. 나중에 스파게티가 채워질 영역에 대한 프린팅 내부의 Z 축. 이 값을 낮추면 모델의 각진 부분이 각 레이어에 채워집니다." - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "스파게티 내부채움 최대 높이" - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "상단에서 결합하여 채울 수 있는 내부 공간의 최대 높이입니다." - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "스파게티 삽입" - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "스파게티가 채워지는 벽의 오프셋." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "스파게티 흐름" - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "스파게티 내부채움의 밀도를 조정합니다. 내부채움 밀도는 스파게티 압출 량이 아니라 채워자는 패턴의 줄 간격 만 제어합니다." - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "스파게티 내부채움 추가 양" - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "스파게티를 채울 때마다 압출되는 총 부피를 조정하는 보정 용어." - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "재료의 GUID. 자동으로 설정됩니다. " - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "필라멘트 park 거리" - -#~ msgctxt "machine_filament_park_distance description" -#~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used." -#~ msgstr "익스트루더가 더 이상 사용되지 않을 때 필라멘트를 파킹 할 노즐의 끝에서부터의 거리." - -#~ msgctxt "material_flush_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Material Station의 내부 값" - -#~ msgctxt "material_flush_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Material Station의 내부 값" - -#~ msgctxt "material_end_of_filament_purge_speed label" -#~ msgid "End Of Filament Purge Speed" -#~ msgstr "필라멘트 끝의 퍼지 속도" - -#~ msgctxt "material_end_of_filament_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Material Station의 내부 값" - -#~ msgctxt "material_end_of_filament_purge_length label" -#~ msgid "End Of Filament Purge Length" -#~ msgstr "필라멘트 끝의 퍼지 길이" - -#~ msgctxt "material_end_of_filament_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Material Station의 내부 값" - -#~ msgctxt "material_maximum_park_duration description" -#~ msgid "Material Station internal value" -#~ msgstr "Material Station의 내부 값" - -#~ msgctxt "material_no_load_move_factor description" -#~ msgid "Material Station internal value" -#~ msgstr "Material Station의 내부 값" - -#~ msgctxt "retraction_enable description" -#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " -#~ 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 "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "카테고리 수정" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "블랙매직 카테고리" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "실험적인!" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "머신 헤드 폴리곤" - -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "프린트 헤드의 2D 실루엣 (팬 캡 제외)." - -#~ 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 only possible if 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 "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "트리 서포트 벽 두께" - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "트리 서포트의 브랜치 벽의 두께. 벽이 두꺼울수록 프린팅 시간이 오래 걸리지만 쉽게 넘어지지 않습니다." - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "트리 서포트 벽 라인 카운트" - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "트리 서포트의 브랜치 벽의 개수. 벽이 두꺼울수록 프린팅 시간이 오래 걸리지만 쉽게 넘어지지 않습니다." - -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. 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 description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "다른 노즐 와이프를 시작하기 전에 압출할 수 있는 최대 재료입니다." - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "리트렉션 초기 속도" - -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "리트렉션했을 때의 와이프 Z 홉" - -#~ msgctxt "wipe_hop_enable 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 "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ 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 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 not be generated." -#~ msgstr "서포트 바닥에 대한 최소 지역 크기. 이 값보다 작은 지역을 갖는 영역은 생성되지 않습니다." - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "대체 스킨 회전" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "위쪽/아래쪽 레이어가 프린팅되는 방향을 바꿉니다. 보통 대각선으로 만 프린팅됩니다. 이 설정은 X 전용 및 Y 전용 방향을 추가합니다." - -#~ 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 compensate." -#~ msgstr "최대 보상 거리입니다(단위: mm)." - -#~ msgctxt "flow_rate_extrusion_offset_factor label" -#~ msgid "Flow rate compensation factor" -#~ msgstr "압출 속도 보상 배율" - -#~ msgctxt "flow_rate_extrusion_offset_factor description" -#~ msgid "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "압출 속도를 거리로 변환하는 증배율입니다." - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "어댑티브 레이어 임계 값" - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ 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." -#~ msgstr "이 각도를 초과해 오버행된 벽은 오버행된 벽 설정을 사용해 인쇄됩니다. 값이 90인 경우 벽이 오버행된 것으로 간주하지 않습니다." - -#~ 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 adhestion and accuracy." -#~ msgstr "소형 피처는 정상적인 프린트 속도의 이 비율로 프린팅됩니다. 프린트 속도가 느리면 착력과 정확도가 개선됩니다." - -#~ msgctxt "small_feature_speed_factor_0 label" -#~ msgid "First 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 adhestion and accuracy." -#~ msgstr "첫 번째 레이어의 소형 피처는 정상적인 프린트 속도의 이 비율로 프린팅됩니다. 프린트 속도가 느리면 접착력과 정확도가 개선됩니다." - -#~ msgctxt "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "상단 표면을 한 번 더 이동하지만 재료를 익스트루딩 시키지 않습니다. 이것은 맨 위의 플라스틱을 녹여 부드러운 표면을 만듭니다." - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "같은 부분으로 레이어 시작" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "각 레이어에서 같은 지점 근처에서 개체를 프린팅, 새 레이어는 이전 레이어가 끝난 부분에서 프린팅을 하지 않는다.. 이것은 오버행 및 작은 부분을 개선하지만 프린팅 시간을 증가시킵니다." - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ 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." -#~ msgstr "최대 해상도 설정에 대한 해상도를 낮추면 최대 편차를 사용할 수 있습니다. 최대 편차를 높이면 프린트의 정확도는 감소하지만, G 코드도 감소합니다." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "G-code Flavour" - -#~ 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." -#~ msgstr "모델 외곽선의 모서리가 솔기의 위치에 영향을 줄지 여부를 제어합니다. 이것은 코너가 솔기 위치에 영향을 미치지 않는다는 것을 의미하지 않습니다. 솔기 숨기기는 이음새가 안쪽 모서리에서 발생할 가능성을 높입니다. 솔기 노출은 솔기이 외부 모서리에서 발생할 가능성을 높입니다. 솔기 숨기기 또는 노출은 솔기이 내부나 외부 모서리에서 발생할 가능성을 높입니다." - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "작은 Z 간격 무시" - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "모델에 수직 간격이 작으면 이 좁은 공간에서 상단 및 하단 스킨을 생성하는 데 약 5%의 추가적인 계산시간을 소비 할 수 있습니다. 이 경우 설정을 해제하십시오." - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "빌드 볼륨에 사용되는 온도입니다. 0인 경우 빌드 볼륨 온도는 조정되지 않습니다." - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." -#~ msgstr "직선으로 지지대 사이를 이동하는 경우 후퇴는 불가능합니다. 이 설정을 사용하면 인쇄 시간은 절약할 수 있지만, 지지 구조물 내에 스트링이 과도하게 증가할 수 있습니다." - -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "최대 Z 속도" - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "빌드 플레이트가 움직이는 최대 속도. 이 값을 0으로 설정하면 프린팅시 최대 z 속도의 펌웨어 기본값이 사용됩니다." - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." -#~ msgstr "X/Y 방향으로서포트 구조물 사이의 최대 거리. 별도의 구조가 이 값보다 가깝게 있으면 구조가 하나로 합쳐집니다." - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "최소 지름" - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "특수 서포트 타워에 의해서 서포트 될 작은 영역의 X/Y 방향의 최소 직경." - -#~ msgctxt "prime_tower_circular label" -#~ msgid "Circular Prime Tower" -#~ msgstr "원형 프라임 타워" - -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "프라임 타워를 원형으로 만들기." - -#~ msgctxt "prime_tower_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." -#~ 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 "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "실험적 기능 : 오버행보다 하단에서 서포트 영역을 작게 만듭니다." - -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "활성화된 익스트루더의 수" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "노즐의 외경" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "노즐 길이" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "노즐 각도" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "가열 영역 길이" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "가열 속도" - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "냉각 속도" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "Gcode 유형" - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "허용되지 않는 지역" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "머신 헤드 폴리곤" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "머신 헤드 및 팬 폴리곤" - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "갠트리 높이" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "익스트루더로 오프셋" - -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "어댑티브 레이어 사용" - -#~ msgctxt "adaptive_layer_height_variation label" -#~ msgid "Adaptive layers maximum variation" -#~ msgstr "어댑티브 레이어 최대 변화" - -#~ msgctxt "adaptive_layer_height_variation_step label" -#~ msgid "Adaptive layers variation step size" -#~ msgstr "어댑티브 레이어 변화 단계 크기" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "어댑티브 레이어 임계 값" - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "스킨 라인 폭의 비율인 스킨과 벽 사이의 오버랩 양. 약간의 오버랩으로 벽이 스킨과 확실하게 체결됩니다. 이것은 스킨 라인과 가장 안쪽 벽과의 평균 라인 폭의 비율입니다." - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "스킨와 벽 사이의 겹침 정도. 약간 겹치면 벽이 스킨에 단단히 연결됩니다." - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." -#~ msgstr "리트렉션 양 : 리트렉션이 전혀없는 경우 0으로 설정합니다. 일반적으로 히팅 영역의 길이와 같아야합니다." - -#~ 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 and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." -#~ msgstr "Combing은 이동할 때 이미 인쇄 된 영역 내에 노즐을 유지합니다. 이로 인해 이동이 약간 더 길어 지지만 리트렉션의 필요성은 줄어 듭니다. Combing이 꺼져 있으면 재료가 후퇴하고 노즐이 직선으로 다음 점으로 이동합니다. 또한 내부채움 내에서만 빗질하여 상단/하단 스킨 영역을 Combing하는 것을 피할 수 있습니다. '내부채움 내' 옵션은 이전 Cura 릴리즈에서 '스킨에 없음' 옵션과 정확하게 동일한 동작을 합니다." - -#~ 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 happend midway over infill this feature can reduce the top surface quality." -#~ 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. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "프린트 내부채움 재료의 패턴입니다. 선과 지그재그 내부채움이 레이어를 하나 걸러서 방향을 바꾸므로 재료비가 절감됩니다. 격자, 삼각형, 삼-육각형, 입방체, 옥텟, 쿼터 큐빅, 십자, 동심원 패턴이 레이어마다 프린팅됩니다. 입방체, 4분 입방체, 옥텟 내부채움이 레이어마다 변경되므로 각 방향으로 힘이 더 균등하게 분산됩니다." - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "동심원 3D" - -#~ 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 by combing within the infill only." -#~ msgstr "빗질은 여행 할 때 이미 인쇄 된 영역 내에 노즐을 유지합니다. 이로 인해 여행 이동이 약간 더 길어 지지만 수축의 필요성은 줄어 듭니다. 빗질이 꺼져 있으면 재료가 후퇴하고 노즐이 직선으로 다음 점으로 이동합니다. 또한 infill 내에서만 빗질하여 상 / 하 피부 영역을 빗질하는 것을 피할 수 있습니다." - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "동심원 3D" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "동심원 3D" - -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "동심원의 3D" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "동심원 3D" - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "래프트 선 간격" - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "프라임 타워 두께" - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "속이 빈 프라임 타워의 두께. 프라임 타워의 최소 볼륨의 절반보다 큰 두께는 조밀 한 소수 타워가 됩니다." - -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "전환 후 노즐 닦기" - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "익스트루더를 전환한 후, 프린팅을 한 노즐에서 흐르는 재료를 닦아냅니다. 이렇게 하면 흘러 나온 물질이 출력물의 표면 품질에 영향을 주지 않는 위치에서 천천히 닦아줍니다." - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "프라임 타워 퍼지 볼륨" - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "프라임 타워에서 닦을 때 제거 할 필라멘트의 양. 퍼지는 노즐이 작동하지 않을 때 새어 나온 필라멘트를 보정하는 데 유용합니다." - -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "브리지 벽 최대 오버행" - -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ 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." -#~ msgstr "리트렉션 및 이동 거리를 줄이도록 벽이 프린팅되는 순서를 최적화하십시오. 대부분 이 기능을 사용하면 도움이되지만, 실제로는 시간이 오래 걸릴 수 있으므로, 최적화 여부에 관계없이 프린팅 시간을 비교하십시오." - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "스킨이 없음" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "대체 교차 3D 포켓" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "십자형 3D 패턴에서 4방향 교차점의 절반에만 포켓을 적용하고 패턴이 만지는 높이 사이의 포켓 위치를 교체합니다." - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "개체가 텅 빈 것" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "모든 내부채움을 제거하고 물체의 내부를 지탱할 수있게 합니다." - -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "기본 레이어 높이와 다른 최대 허용 높이 (mm)." - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ 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 "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "Start GCode" - -#~ msgctxt "machine_start_gcode description" +#: fdmprinter.def.json +msgctxt "travel label" +msgid "Travel" +msgstr "이동" + +#: fdmprinter.def.json +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "이동 가속" + +#: fdmprinter.def.json +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "이동중 피하는 거리" + +#: fdmprinter.def.json +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "이동 Jerk" + +#: fdmprinter.def.json +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "이동 속도" + +#: fdmprinter.def.json +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 "모델을 표면만, 볼륨 또는 느슨한 표면이있는 볼륨으로 취급합니다. 일반 프린팅 모드는 볼륨만 프린팅합니다. \"표면\"은 아무런 내부채움없이 상단 / 하단 스킨없이 메쉬 표면을 추적하는 단일 벽을 프린팅합니다. \"둘 다\"는 정상 및 나머지 폴리곤과 같은 닫힌 볼륨을 서피스로 프린팅합니다." + +#: fdmprinter.def.json +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "트리" + +#: fdmprinter.def.json +msgctxt "support_tree_angle label" +msgid "Tree Support Branch Angle" +msgstr "트리 서포트 브랜치 각도" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter label" +msgid "Tree Support Branch Diameter" +msgstr "트리 서포트 브랜치 직경" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter_angle label" +msgid "Tree Support Branch Diameter Angle" +msgstr "트리 서포트 브랜치 직경 각도" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance label" +msgid "Tree Support Branch Distance" +msgstr "트리 서포트 브랜치 거리" + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution label" +msgid "Tree Support Collision Resolution" +msgstr "트리 서포트 충돌 정밀도" + +#: fdmprinter.def.json +msgctxt "support_tree_max_diameter label" +msgid "Tree Support Trunk Diameter" +msgstr "트리 서포트 트렁크 직경" + +#: fdmprinter.def.json +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "삼-육각형" + +#: fdmprinter.def.json +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "삼각형" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "삼각형" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "삼각형" + +#: fdmprinter.def.json +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "삼각형" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "삼각형" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "유니언 오버랩 볼륨" + +#: fdmprinter.def.json +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 "이보다 짧은 벽은 일반 벽 설정을 사용하여 인쇄됩니다. 더 이상 지원되지 않는 벽은 브리지 벽 설정을 사용하여 인쇄됩니다." + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "어댑티브 레이어 사용" + +#: fdmprinter.def.json +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "타워 사용" + +#: fdmprinter.def.json +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 "이동할 때 별도의 가속도를 사용합니다. 비활성화된 경우 이동 시 프린팅된 라인의 목적지 기준 가속도 값을 사용합니다." + +#: fdmprinter.def.json +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 "이동할 때 별도의 저크 속도를 사용합니다. 비활성화된 경우 이동 시 프린팅된 라인의 목적지 기준 저크 값을 사용합니다." + +#: fdmprinter.def.json +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 스크립트가 출력되기 전에 항상 절대 값으로 설정됩니다." + +#: fdmprinter.def.json +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 "작은 오버행에 서포트를 생성하기 위해 특수한 타워를 사용. 이 타워들은 그들이 서포트하는 지역보다 더 큰 지름을 가지고 있습니다. 오버행 부근에서 타워의 직경이 감소하여 지붕을 형성합니다." + +#: fdmprinter.def.json +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 "겹치는 다른 메쉬의 내부채움율을 수정합니다. 다른 메쉬의 내부채움 영역을 이 메쉬의 영역으로 대체합니다. 하나의 벽과 상단/바닥 스킨만을 프린팅하는 것이 추천합니다." + +#: fdmprinter.def.json +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "본 메시를 사용하여 서포트 영역을 지정하십시오. 이것은 서포트 구조를 생성하는 데 사용할 수 있습니다." + +#: fdmprinter.def.json +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 "본 메쉬를 사용하여 모델에서 오버행부로 감지되지 않을 부분을 지정합니다. 이것은 원하지 않는 서포트 구조를 제거하는 데 사용될 수 있습니다." + +#: fdmprinter.def.json +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "사용자 지정" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "수직 확장 배율 수축 보정" + +#: fdmprinter.def.json +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 "슬라이스 레이어의 수직 허용 오차입니다. 레이어의 윤곽선은 일반적으로 각 레이어의 두께 중간(중간)을 교차하는 부분을 기준으로 생성됩니다. 또는 각 레이어가 레이어의 높이 전체의 볼륨에 들어가는 영역(포함하지 않음)이 있거나 레이어 안의 어느 지점에 들어가는 영역(포함)이 있을 수 있습니다. 포함된 영역에서 가장 많은 디테일이 포함되고 포함되지 않은 영역을 통해 가장 맞게 만들 수 있으며 중간을 통해 원래 표면과 가장 유사하게 만들어냅니다." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "빌드 플레이트가 가열될 때까지 기다리십시오" + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "노즐이 가열될 때까지 기다리기" + +#: fdmprinter.def.json +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "벽 가속도" + +#: fdmprinter.def.json +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "벽 배포 개수" + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "벽 익스트루더" + +#: fdmprinter.def.json +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "벽 압출량" + +#: fdmprinter.def.json +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "벽 Jerk" + +#: fdmprinter.def.json +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "벽 라인의 수" + +#: fdmprinter.def.json +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "벽 선 너비" + +#: fdmprinter.def.json +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "벽 순서 지정" + +#: fdmprinter.def.json +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "벽 속도" + +#: fdmprinter.def.json +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "벽 두께" + +#: fdmprinter.def.json +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "벽 전환 길이" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "벽 전환 필터 거리" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "벽 전환 필터 여백" + +#: fdmprinter.def.json +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "벽 전환 임계각" + +#: fdmprinter.def.json +msgctxt "shell label" +msgid "Walls" +msgstr "벽" + +#: fdmprinter.def.json +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이면 오버행(경사면)으로 처리되는 벽이 없습니다. 서포트로 지지되는 오버행(경사면)도 오버행(경사면)으로 처리되지 않습니다." + +#: fdmprinter.def.json +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 "서포트가 모델의 위와 아래에 있는지 확인하려면 주어진 높이의 단계를 수행하십시오. 값이 낮을수록 슬라이스가 느려지고, 값이 높을수록 서포트 인터페이스가 있어야하는 곳에서는 정상적인 서포트다 프린팅 될 수 있습니다." + +#: fdmprinter.def.json +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 "활성화되면, 내부채움 라인 프린팅 순서가 최적화되어 이동 거리를 줄입니다. 이동 시간의 감소는 슬라이스되는 모델, 내부채움 패턴, 밀도 등에 따라 달라집니다. 작은 내부채움 영역이 많은 일부 모델의 경우, 모델을 슬라이스하는 시간이 상당히 늘어납니다." + +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "활성화되면 서포트 바로 위의 스킨 영역에 대한 프린팅 냉각 팬 속도가 변경됩니다." + +#: fdmprinter.def.json +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 솔기 좌표는 각 부품의 중심을 기준으로합니다. 비활성화 된 경우 좌표는 빌드 플레이트의 절대 위치를 정의합니다." + +#: fdmprinter.def.json +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을 사용하지 않습니다." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." + +#: fdmprinter.def.json +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "브릿지 스킨 벽 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." + +#: fdmprinter.def.json +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 "두번째 브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." + +#: fdmprinter.def.json +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 "세번째 브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." + +#: fdmprinter.def.json +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 "최소 레이어 시간으로 인해 최소 속도에 도달하면 헤드를 출력물에서 들어 올려 최소 레이어 시간에 도달 할 때까지 시간을 기다립니다." + +#: fdmprinter.def.json +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 "모델의 몇 가지 레이어에만 수직 간격이 작을 경우 보통 좁은 공간의 본 레이어 주위에도 스킨이 있어야 합니다. 수직 간격이 매우 작을 경우 스킨을 생성하지 않도록 이 설정을 활성화합니다. 이렇게 하면 프린팅 시간과 슬라이싱 시간은 개선되지만 기술적으로 내부채움이 공기 중에 노출된 상태로 남게 됩니다." + +#: fdmprinter.def.json +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 "짝수 벽과 홀수 벽 사이에 전환을 생성할 때입니다. 이 설정보다 더 큰 각도의 웨지 모양은 전환이 없으며 나머지 공간을 채우기 위해 벽이 중앙에 프린트되지는 않습니다. 이 설정을 줄이면 이러한 중앙 벽의 수와 길이가 줄어들지만, 간격이 생기거나 과잉 압출될 수 있습니다." + +#: fdmprinter.def.json +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 "부품이 얇아지면서 서로 다른 수의 벽 사이에서 전환될 때 벽 선을 분할하거나 결합하기 위해 일정 양의 공간이 할당됩니다." + +#: fdmprinter.def.json +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 "와이프할 때, 노즐과 출력물 사이에 간격이 생기도록 빌드 플레이트를 내립니다. 이동 중에 노즐이 출력물에 부딪히는 것을 방지하여 제조판에서 출력물을 칠 가능성을 줄입니다." + +#: fdmprinter.def.json +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 "리트렉션이 일어날 때마다 빌드 플레이트가 낮아져 노즐과 출력물 사이에 여유 공간이 생깁니다. 이동 중에 노즐이 출력물에 부딪치지 않도록 합니다." + +#: fdmprinter.def.json +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 거리를 적용하지 않음으로써이 기능을 비활성화 할 수 있습니다." + +#: fdmprinter.def.json +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 좌표가 프린팅 가능 영역의 중앙에 있는지 여부." + +#: fdmprinter.def.json +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 좌표)인지 여부." + +#: fdmprinter.def.json +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 좌표)인지 여부." + +#: fdmprinter.def.json +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 좌표)인지 여부." + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "압출기가 자체 히터를 가지고 있지 않고 단일 히터를 공유하는지에 대한 여부." + +#: fdmprinter.def.json +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' 매개 변수에 의해 익스트루더마다 표시됩니다." + +#: fdmprinter.def.json +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "기기에 히팅 빌드 플레이트가 있는지 여부." + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "기기의 빌드 볼륨 온도 안정화 지원 여부입니다." + +#: fdmprinter.def.json +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)를 중심으로 할지 여부." + +#: fdmprinter.def.json +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 외부에서 노즐 온도를 제어하려면 이 기능을 끄십시오." + +#: fdmprinter.def.json +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는 이 설정을 자동으로 비활성화 합니다." + +#: fdmprinter.def.json +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는 이 설정을 자동으로 비활성화 합니다." + +#: fdmprinter.def.json +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개) 이 설정을 활성화하면 레이어 변경 시 리트렉트 동작에 영향을 미칠 수 있습니다. 와이프 스크립트가 작동할 레이어의 감속을 제어하려면 와이프 리트랙션 설정을 사용하십시오." + +#: fdmprinter.def.json +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 "시작 시, 빌드 플레이트가 가열될 때까지 대기하라는 명령을 삽입할지 여부." + +#: fdmprinter.def.json +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 "프린팅하기 전에 프라이밍할지 여부. 이 설정을 켜면 프린팅하기 전에 익스트루더가 노즐에서 재료를 준비 할 수 있습니다. 브림 또는 스커트 프린팅는 프라이밍처럼 작동 할 수 있습니다.이 경우이 설정을 해제하면 시간이 절약됩니다." + +#: fdmprinter.def.json +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 축 사이의 거리보다 낮습니다." + +#: fdmprinter.def.json +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "별도의 json 파일에 설명된 기기의 다양한 세부 설정을 표시할지 여부." + +#: fdmprinter.def.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)를 사용할 지 여부." + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "시작 시, 노즐이 가열될 때까지 대기할지 여부." + +#: fdmprinter.def.json +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "단일 내부채움 라인의 너비." + +#: fdmprinter.def.json +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "서포트의 지붕, 바닥의 폭." + +#: fdmprinter.def.json +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "프린팅 상단 부분의 한 줄 너비." + +#: fdmprinter.def.json +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 "한 줄의 두께. 일반적으로 각 라인의 너비는 노즐 폭과 일치해야합니다. 그러나 이 값을 약간 줄이면 더 나은 인쇄를 할 수 있습니다." + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "단일 주요 타워 라인의 폭." + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "단일 스커트 또는 브림의 너비." + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "단일 서포트 플로어 라인의 폭." + +#: fdmprinter.def.json +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "단일 서포트 지붕 라인 폭." + +#: fdmprinter.def.json +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "단일 서포트 구조 선의 폭입니다." + +#: fdmprinter.def.json +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "한 라인의 단일 위쪽/아래쪽 선의 너비입니다." + +#: fdmprinter.def.json +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "가장 바깥 쪽 벽 선을 제외한 모든 벽 선에 대해 단일 벽 선의 폭입니다." + +#: fdmprinter.def.json +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "단일 벽 선의 너비입니다." + +#: fdmprinter.def.json +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 "기본 래프트 층에있는 선의 너비. 이것은 빌드 플레이트 접착을 돕기 위해 두꺼운 선 이어야 합니다." + +#: fdmprinter.def.json +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 "중간 래프트 층의 선폭. 두 번째 레이어를 더 돌출 시키면 선이 빌드 플레이트에 달라 붙습니다." + +#: fdmprinter.def.json +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 "래프트의 윗면에 있는 선의 폭. 래프트의 상단이 매끄럽도록 얇은 선으로 구성 될 수 있습니다." + +#: fdmprinter.def.json +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 "가장 바깥 쪽 벽 선의 너비. 이 값을 낮춤으로써 높은 수준의 디테일을 프린팅 할 수 있습니다." + +#: fdmprinter.def.json +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 "모델의 (최소 피처 크기에 따라) 얇은 피처를 대체할 벽의 너비 최소 벽 선 너비가 피처의 두께보다 더 얇다면 벽은 피처 자체만큼 두꺼워집니다." + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "와이프 브러시 X 위치" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "와이프 홉 속도" + +#: fdmprinter.def.json +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "프라임 타워에서 비활성 노즐 닦기" + +#: fdmprinter.def.json +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "와이프 이동 거리" + +#: fdmprinter.def.json +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "레이어 사이의 와이프 노즐" + +#: fdmprinter.def.json +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "와이프 일시 정지" + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "와이프 반복 횟수" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "와이프 리트랙션 거리" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "와이프 리트랙션 활성화" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "와이프 리트랙션 추가 초기 양" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "와이프 리트렉션 초기 속도" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "와이프 리트랙션 리트렉트 속도" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "와이프 리트랙션 속도" + +#: fdmprinter.def.json +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "와이프 Z 홉" + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "화이프 Z 홉 높이" + +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "내부채움 내" + +#: fdmprinter.def.json +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 또는 모달 도구 명령어를 사용하는 다른 펌웨어를 사용해 프린팅하는 듀얼 압출기용 프린팅에 필요합니다." + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "양의 방향 X 엔드 스톱" + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "와이프 스크립트가 시작되는 X 위치입니다." + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y가 Z를 무시합니다" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "양의 방향 Y 엔드 스톱" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "양의 방향 Z 엔드 스톱" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "익스트루더 스위치 후 Z 홉" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "익스트루더 스위치 높이 후 Z 홉" + +#: fdmprinter.def.json +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Z 홉 높이" + +#: fdmprinter.def.json +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "프린팅 된 부분에만 Z Hop" + +#: fdmprinter.def.json +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Z 홉 속도" + +#: fdmprinter.def.json +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "리트렉션했을 때의 Z Hop" + +#: fdmprinter.def.json +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Z 경계 위치" + +#: fdmprinter.def.json +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "상대적 Z 솔기" + +#: fdmprinter.def.json +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z 솔기 X" + +#: fdmprinter.def.json +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z 솔기 Y" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z가 X/Y를 무시합니다" + +#: fdmprinter.def.json +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" + +#: fdmprinter.def.json +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "지그재그" + +#: fdmprinter.def.json +msgctxt "travel description" +msgid "travel" +msgstr "이동" + +#~ msgctxt "wireframe_strategy option compensate" +#~ msgid "Compensate" +#~ msgstr "보상" + +#~ msgctxt "wireframe_top_jump description" +#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." +#~ msgstr "상향 선의 상단에 작은 매듭을 만들어 연속적인 수평 레이어에 연결할 수 있게 합니다. 와이어 프린팅에만 적용됩니다." + +#~ msgctxt "wireframe_bottom_delay description" +#~ msgid "Delay time after a downward move. Only applies to Wire Printing." +#~ msgstr "하강 후 지연 시간. 와이어 프린팅에만 적용됩니다." + +#~ msgctxt "wireframe_top_delay description" +#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." +#~ msgstr "상향 라인이 강화 될 수 있도록 상향 이동 후 지연 시간. 와이어 프린팅에만 적용됩니다." + +#~ msgctxt "wireframe_flat_delay description" +#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." +#~ msgstr "두 개의 수평 세그먼트 사이의 지연 시간. 이러한 지연을 도입하면 연결 지점에서 이전 레이어와의 접착력이 향상 될 수 있으며 너무 긴 지연으로 인해 처짐이 발생할 수 있습니다. 와이어 프린팅에만 적용됩니다." + +#~ msgctxt "wireframe_nozzle_clearance description" +#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." +#~ msgstr "노즐과 수평 아래쪽 라인 사이의 거리. 거리가 클수록 비스듬한 각도에서 비스듬히 아래쪽으로 선이 그어져 다음 층과의 연결이보다 적어집니다. 와이어 프린팅에만 적용됩니다." + +#~ msgctxt "wireframe_up_half_speed description" #~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." -#~ msgstr "" -#~ "시작과 동시에 실행될 G 코드 명령어 \n" -#~ "." +#~ "Distance of an upward move which is extruded with half speed.\n" +#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." +#~ msgstr "기본 속도의 반으로 압출 된 상향 이동 거리. 이로 인해 이전 레이어에 더 나은 접착력을 유발할 수 있지만 레이어에 있는 소재는 너무 많이 가열하지 않습니다. 와이어 프린팅에만 적용됩니다." -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "End GCode" +#~ msgctxt "wireframe_fall_down description" +#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "위쪽으로 밀어 낸 후 재료가 떨어지는 거리. 이 거리는 보상됩니다. 와이어 프린팅에만 적용됩니다." -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "맨 마지막에 실행될 G 코드 명령 \n" -#~ "." +#~ msgctxt "wireframe_drag_along description" +#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "대각선 방향으로 압출 된 압출부의 재료가 위쪽으로 밀어내는 거리. 이 거리는 보상됩니다. 와이어 프린팅에만 적용됩니다." -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "Gcode flavour" +#~ msgctxt "wireframe_flow_connection description" +#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." +#~ msgstr "위 또는 아래로 이동할 때 압출량 보정. 와이어 프린팅에만 적용됩니다." -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "생성 될 gcode의 유형." +#~ msgctxt "wireframe_flow_flat description" +#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." +#~ 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 GCode." -#~ msgstr "일반적으로 큐라(Cura)는 메쉬의 작은 구멍을 꿰매 붙이고 큰 구멍이있는 레이어의 부분을 제거하려고합니다. 이 옵션을 활성화하면 스티칭 할 수 없는 파트가 유지됩니다. 이 옵션은 다른 모든 설정으로 올바른 GCode를 생성하지 못할 때 최후의 수단으로 사용해야 합니다." +#~ msgctxt "wireframe_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." +#~ msgstr "압출량 보상 : 압출 된 재료의 양에 이 값을 곱합니다. 와이어 프린팅에만 적용됩니다." -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. 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 Gcode script is output." -#~ msgstr "절대 압출 대신 상대 압출을 사용합니다. 상대적인 E-steps을 사용하면 Gcode를 보다 쉽게 후처리 할 수 있습니다. 그러나 모든 프린터에서 지원되는 것은 아니며 절대 압출의 E 스텝값과 비교할 때 출력된 재료의 양이 근소하게 다를 수 있습니다. 이 설정과 관계없이 압출 모드는 Gcode 스크립트가 출력되기 전에 항상 절댓값으로 설정됩니다." +#~ msgctxt "wireframe_strategy option knot" +#~ msgid "Knot" +#~ msgstr "매듭" -#~ msgctxt "infill_offset_x description" -#~ msgid "The infill pattern is offset this distance along the X axis." -#~ msgstr "내부채움 패턴이 X축을 따라 이 거리만큼 이동합니다." +#~ msgctxt "wireframe_straight_before_down description" +#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." +#~ msgstr "수평선 조각에 의해 덮여있는 비스듬한 하향 선의 백분율. 이렇게 하면 상향 선의 맨 위 지점이 처지는 것을 방지 할 수 있습니다. 와이어 프린팅에만 적용됩니다." -#~ msgctxt "infill_offset_y description" -#~ msgid "The infill pattern is offset this distance along the Y axis." -#~ msgstr "내부채움 패턴이 Y축을 따라 이 거리만큼 이동합니다." +#~ msgctxt "wireframe_enabled description" +#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." +#~ msgstr "외벽의 표면만 거미줄 같은 형태로 공중에서 프린팅합니다. 이것은 상향 및 대각선 하향 라인을 통해 연결된 Z 간격으로 모형의 윤곽을 수평으로 인쇄함으로써 구현됩니다." -#~ msgctxt "infill_overlap 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 "wireframe_strategy option retract" +#~ msgid "Retract" +#~ msgstr "리트렉트" -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "선 두께의 백분율로 스킨과 벽 사이의 겹치는 정도입니다. 약간 겹치면 벽이 스킨에 단단히 연결됩니다. 이것은 스킨 라인과 가장 안쪽 벽의 평균 라인 폭의 백분율입니다." +#~ msgctxt "wireframe_printspeed description" +#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." +#~ msgstr "재료를 압출 할 때 노즐이 움직이는 속도. 와이어 프린팅에만 적용됩니다." -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "가열 된 빌드 플레이트에 사용되는 온도. 이 값이 0이면이 출력물에 베드가 가열되지 않습니다." +#~ msgctxt "wireframe_printspeed_down description" +#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." +#~ msgstr "대각선 방향으로 선을 프린팅하는 속도. 와이어 프린팅에만 적용됩니다." -#~ msgctxt "wall_x_extruder_nr label" -#~ msgid "Inner Walls Extruder" -#~ msgstr "내벽 압출" +#~ msgctxt "wireframe_printspeed_up description" +#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." +#~ 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, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "출력물의 내부채움 패턴. 라인과 지그재그는 레이어별로 방향을 바꾸어 재료비를 줄입니다. 그리드, 삼각형, 큐빅, 옥텟, 쿼터 큐빅 및 동심원 패턴이 모든 레이어에 완전히 프린팅됩니다. 큐빅, 쿼터 큐빅 및 옥 테트 내부채움 각 레이어에 따라 변경되어 각 방향에 대해 보다 균등한 강도 분포를 제공합니다." +#~ msgctxt "wireframe_printspeed_bottom description" +#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." +#~ msgstr "첫 번째 레이어 프린팅 속도. 와이어 프린팅에만 적용됩니다." -#~ msgctxt "zig_zaggify_infill description" -#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -#~ msgstr "내부 벽의 모양을 따르는 선을 사용하여 충전 패턴이 내부 벽과 만나는 끝을 연결하십시오. 이 설정을 사용하면 벽에 충전재가 잘 밀착되고 수직 표면의 품질에 영향을 줄 수 있습니다. 이 설정을 사용하지 않으면 사용되는 재료의 양이 줄어 듭니다." +#~ msgctxt "wireframe_printspeed_flat description" +#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." +#~ 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 "스커트와 출력물의 첫 번째 레이어 사이의 수평 거리입니다. 이것은 최소 거리이며, 여러 스커트 라인이 거리에서 바깥쪽으로 확장됩니다. " +#~ msgctxt "wireframe_strategy description" +#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." +#~ msgstr "각 연결 지점에서 두 개의 연속 된 레이어가 연결되도록 하는 전략입니다. 리트렉션을 하면 상향 선이 올바른 위치에서 경화되지만 필라멘트가 갈릴 수 있습니다. 상향 선의 끝에 매듭을 만들어 연결 기회를 높이고 선을 차게 할 수 있습니다. 그러나 느린 프린팅 속도가 필요할 수 있습니다. 또 다른 전략은 상향 라인의 윗부분의 처짐을 보충하는 것입니다. 그러나 선은 항상 예측대로 떨어지지는 않습니다." -#~ msgctxt "z_offset_layer_0 label" -#~ msgid "Initial Layer Z Offset" -#~ msgstr "초기 레이어 Z 오프셋" +#~ msgctxt "wireframe_roof_inset description" +#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." +#~ msgstr "지붕에서 연결을 할 때 안쪽까지 윤곽선을 그립니다. 와이어 프린팅에만 적용됩니다." -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "익스트루더는 이 양만큼 첫번때 층의 정상 높이로부터 오프셋된다. 양수(높임) 또는 음수(낮춤) 일 수 있습니다. 익스트루더를 약간 올리면 일부 필라멘트는 빌드 플레이트에 잘 밀착됩니다." +#~ msgctxt "wireframe_roof_drag_along description" +#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "루프의 외곽 윤곽으로 돌아갈 때 끌린 내향 선의 끝 부분 거리. 이 거리는 보상됩니다. 와이어 프린팅에만 적용됩니다." -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Z 오프셋 테이퍼 레이어" +#~ msgctxt "wireframe_roof_fall_down description" +#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "공중에서 프린팅된 수평 지붕 라인의 거리는 프린팅 될 때 떨어집니다. 이 거리는 보상됩니다. 와이어 프린팅에만 적용됩니다." -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "0이 아니면 Z 오프셋은 많은 레이어에서 0으로 줄어 듭니다. 값 0은 출력물의 모든 레이어에 대해 Z 오프셋이 일정하게 유지됨을 의미합니다." +#~ msgctxt "wireframe_height description" +#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." +#~ msgstr "두 개의 수평 부분 사이의 상향 및 대각선 방향의 높이입니다. 이것은 네트 구조의 전체 밀도를 결정합니다. 와이어 프린팅에만 적용됩니다." -#~ msgctxt "raft_smoothing description" -#~ msgid "This setting control 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 "wireframe_roof_outer_delay description" +#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." +#~ 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, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "프린트의 충전재 패턴. 라인과 지그는 매층에서 방향을 바꾸어 재료비를 줄입니다. 그리드, 삼각형, 큐빅, 사면체 및 동심원 패턴은 모든 레이어에 완전히 프린팅됩니다. 입방체 및 사면체 충전재는 각 방향마다 강도가 균등하게 분포되도록 모든 층을 변경합니다." +#~ msgctxt "wireframe_bottom_delay label" +#~ msgid "WP Bottom Delay" +#~ msgstr "WP 최저 지연" -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "평면의 상단 및/또는 하단 스킨 영역을 확장합니다. 기본적으로 스킨은 내부채움을 둘러싸는 벽 선 아래에서 멈 춥니다. 그러나 이는 내부채움 밀도가 낮을 때 나타나는 구멍으로 이어질 수 있습니다. 이 설정은 스킨을 벽 선 너머로 확장하여 다음 레이어의 필이 스킨에 놓이도록 합니다. " +#~ msgctxt "wireframe_printspeed_bottom label" +#~ msgid "WP Bottom Printing Speed" +#~ msgstr "WP 하단 프린팅 속도" -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "상단 스킨 영역 (위의 공기가 있는 영역)을 확장하여 위의 내부채움물을 지탱하도록하십시오." +#~ msgctxt "wireframe_flow_connection label" +#~ msgid "WP Connection Flow" +#~ msgstr "WP 연결 흐름" -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "아래 스킨 영역 (공기가 있는 부분)을 확장하여 위와 아래의 내부채움층으로 고정시킵니다." +#~ msgctxt "wireframe_height label" +#~ msgid "WP Connection Height" +#~ msgstr "WP 연결 높이" -#~ msgctxt "expand_skins_expand_distance description" -#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." -#~ msgstr "스킨이 내부 채움 될 거리입니다. 기본 거리는 내부채움 선 사이의 간격을 메우기에 충분하며 내부채움 밀도가 낮을 때 벽과 만나는 스킨에 나타나는 구멍을 막습니다. 보통 거리가 짧아도 충분합니다. " +#~ msgctxt "wireframe_printspeed_down label" +#~ msgid "WP Downward Printing Speed" +#~ msgstr "WP 하향 프린팅 속도" -#~ msgctxt "support_skip_some_zags description" -#~ msgid "Skip some ZigZags connections to make the support structure easier to break." -#~ msgstr "지그재그 연결을 건너 뛰면 서포트 구조를 쉽게 끊을 수 있습니다." +#~ msgctxt "wireframe_drag_along label" +#~ msgid "WP Drag Along" +#~ msgstr "WP 드래그를 따라" -#~ msgctxt "support_zag_skip_count description" -#~ msgid "Skip one in every N connection lines to make the support structure easier to break." -#~ msgstr "서포트 구조를 쉽게 깨뜨릴 수 있도록 N 개의 연결 라인마다 하나씩 건너 뜁니다." +#~ msgctxt "wireframe_up_half_speed label" +#~ msgid "WP Ease Upward" +#~ msgstr "WP 상향 조정" -#~ msgctxt "wall_thickness description" -#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -#~ msgstr "외벽의 수평 방향의 두께. 이 값을 벽 선 너비로 나눈 값은 벽의 수를 정의합니다." +#~ msgctxt "wireframe_flat_delay label" +#~ msgid "WP Flat Delay" +#~ msgstr "WP 평탄한 지연" -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "스킨와 벽 사이의 겹침 정도입니다. 약간 겹치면 벽이 스킨에 단단히 연결됩니다." +#~ msgctxt "wireframe_flow_flat label" +#~ msgid "WP Flat Flow" +#~ msgstr "WP 플랫 플로우" + +#~ msgctxt "wireframe_flow label" +#~ msgid "WP Flow" +#~ msgstr "WP 흐름" + +#~ msgctxt "wireframe_printspeed_flat label" +#~ msgid "WP Horizontal Printing Speed" +#~ msgstr "WP 가로 프린팅 속도" + +#~ msgctxt "wireframe_top_jump label" +#~ msgid "WP Knot Size" +#~ msgstr "WP 매듭 크기" + +#~ msgctxt "wireframe_nozzle_clearance label" +#~ msgid "WP Nozzle Clearance" +#~ msgstr "WP 노즐 유격" + +#~ msgctxt "wireframe_roof_drag_along label" +#~ msgid "WP Roof Drag Along" +#~ msgstr "WP 지붕 끌기" + +#~ msgctxt "wireframe_roof_fall_down label" +#~ msgid "WP Roof Fall Down" +#~ msgstr "WP 지붕 Fall Down" + +#~ msgctxt "wireframe_roof_inset label" +#~ msgid "WP Roof Inset Distance" +#~ msgstr "WP 지붕 인셋 거리" + +#~ msgctxt "wireframe_roof_outer_delay label" +#~ msgid "WP Roof Outer Delay" +#~ msgstr "WP 지붕 외부 지연" + +#~ msgctxt "wireframe_printspeed label" +#~ msgid "WP Speed" +#~ msgstr "WP 속도" + +#~ msgctxt "wireframe_straight_before_down label" +#~ msgid "WP Straighten Downward Lines" +#~ msgstr "WP 직선화 하향 라인" + +#~ msgctxt "wireframe_strategy label" +#~ msgid "WP Strategy" +#~ msgstr "WP 전략" + +#~ msgctxt "wireframe_top_delay label" +#~ msgid "WP Top Delay" +#~ msgstr "WP 상단 지연" + +#~ msgctxt "wireframe_printspeed_up label" +#~ msgid "WP Upward Printing Speed" +#~ msgstr "WP 상향 프린팅 속도" + +#~ msgctxt "wireframe_enabled label" +#~ msgid "Wire Printing" +#~ msgstr "와이어 프린팅" diff --git a/resources/i18n/nl_NL/cura.po b/resources/i18n/nl_NL/cura.po index f9947cef85..47df2d83a5 100644 --- a/resources/i18n/nl_NL/cura.po +++ b/resources/i18n/nl_NL/cura.po @@ -1,12 +1,14 @@ # Cura -# Copyright (C) 2022 Ultimaker B.V. +# Copyright (C) 2022 UltiMaker. # This file is distributed under the same license as the Cura package. +# Ultimaker , 2022. # +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0200\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-04-06 15:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,236 +18,114 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -msgctxt "@label" -msgid "Unknown" -msgstr "Onbekend" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "Kan de onderstaande printer(s) niet verbinden omdat deze deel uitmaakt/uitmaken van een groep" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Beschikbare netwerkprinters" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Niet overschreven" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Connected printers" -msgstr "Verbonden printers" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Preset printers" -msgstr "Vooraf ingestelde printers" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:143 -#, 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 "Weet u zeker dat u {0} wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt!" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:61 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 -msgctxt "@label" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:65 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Visueel" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:66 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "Het visuele profiel is ontworpen om visuele prototypen en modellen te printen met als doel een hoge visuele en oppervlaktekwaliteit te creëren." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:70 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "Het engineeringprofiel is ontworpen om functionele prototypen en onderdelen voor eindgebruik te printen met als doel een grotere precisie en nauwere toleranties." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:75 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Ontwerp" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:76 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "Het ontwerpprofiel is ontworpen om initiële prototypen en conceptvalidatie te printen met als doel de printtijd aanzienlijk te verkorten." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:232 -msgctxt "@label" -msgid "Custom Material" -msgstr "Aangepast materiaal" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:233 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 -msgctxt "@label" -msgid "Custom" -msgstr "Aangepast" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:391 -msgctxt "@label" -msgid "Custom profiles" -msgstr "Aangepaste profielen" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:426 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Alle Ondersteunde Typen ({0})" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Alle Bestanden (*)" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Berekend" - -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 +#: cura/API/Account.py:199 msgctxt "@info:title" msgid "Login failed" msgstr "Inloggen mislukt" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: cura/Arranging/ArrangeObjectsJob.py:25 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Nieuwe locatie vinden voor objecten" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: cura/Arranging/ArrangeObjectsJob.py:29 msgctxt "@info:title" msgid "Finding Location" msgstr "Locatie vinden" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Kan binnen het werkvolume niet voor alle objecten een locatie vinden" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: cura/Arranging/ArrangeObjectsJob.py:43 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Kan locatie niet vinden" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:115 +#: cura/Backups/Backup.py:115 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Kan geen archief maken van gegevensmap van gebruiker: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:159 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +#: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159 +#: plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: plugins/CuraDrive/src/DrivePluginExtension.py:126 msgctxt "@info:title" msgid "Backup" msgstr "Back-up" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:134 +#: cura/Backups/Backup.py:134 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." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:145 +#: cura/Backups/Backup.py:145 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that is higher than the current version." msgstr "Geprobeerd een Cura-back-up te herstellen van een versie die hoger is dan de huidige versie." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:158 +#: cura/Backups/Backup.py:158 msgctxt "@info:backup_failed" msgid "The following error occurred while trying to restore a Cura backup:" msgstr "De volgende fout is opgetreden bij het herstellen van een Cura-backup:" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: cura/BuildVolume.py:100 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." -msgstr "De hoogte van het bouwvolume is verminderd wegens de waarde van de instelling “Printvolgorde”, om te voorkomen dat de rijbrug tegen geprinte modellen botst." +msgstr "De hoogte van het bouwvolume is verminderd wegens de waarde van de instelling \"Printvolgorde\", om te voorkomen dat de rijbrug tegen geprinte modellen botst." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 +#: cura/BuildVolume.py:103 msgctxt "@info:title" msgid "Build Volume" msgstr "Werkvolume" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura kan niet worden gestart" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" -"

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

    \n" +"

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

    Oeps, Ultimaker Cura heeft een probleem gedetecteerd.

    \n" +"

    Oeps, UltiMaker Cura heeft een probleem gedetecteerd.

    \n" "

    Tijdens het opstarten is een onherstelbare fout opgetreden. Deze fout is mogelijk veroorzaakt door enkele onjuiste configuratiebestanden. Het wordt aanbevolen een back-up te maken en de standaardinstelling van uw configuratie te herstellen.

    \n" "

    Back-ups bevinden zich in de configuratiemap.

    \n" "

    Stuur ons dit crashrapport om het probleem op te lossen.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: cura/CrashHandler.py:122 msgctxt "@action:button" -msgid "Send crash report to Ultimaker" -msgstr "Het crashrapport naar Ultimaker verzenden" +msgid "Send crash report to UltiMaker" +msgstr "Het crashrapport naar UltiMaker verzenden" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Gedetailleerd crashrapport weergeven" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Open Configuratiemap" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Back-up maken en herstellen van configuratie" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Crashrapport" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

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

    \n" @@ -256,573 +136,2241 @@ msgstr "" "

    Druk op de knop "Rapport verzenden" om het foutenrapport automatisch naar onze servers te verzenden

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Systeeminformatie" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Onbekend" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura-versie" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Taal van Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Taal van besturingssysteem" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Platform" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qt version" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQt version" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized" -msgstr "" +msgstr "Nog niet geïnitialiseerd" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL-versie: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL-leverancier: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL-renderer: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 +#: cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Traceback van fout" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 +#: cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Logboeken" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 +#: cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Rapport verzenden" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:531 +#: cura/CuraApplication.py:540 msgctxt "@info:progress" msgid "Loading machines..." msgstr "Machines laden..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +#: cura/CuraApplication.py:547 msgctxt "@info:progress" msgid "Setting up preferences..." msgstr "Voorkeuren instellen..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +#: cura/CuraApplication.py:692 msgctxt "@info:progress" msgid "Initializing Active Machine..." msgstr "Actieve machine initialiseren ..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +#: cura/CuraApplication.py:839 msgctxt "@info:progress" msgid "Initializing machine manager..." msgstr "Machinebeheer initialiseren ..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +#: cura/CuraApplication.py:853 msgctxt "@info:progress" msgid "Initializing build volume..." msgstr "Werkvolume initialiseren ..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +#: cura/CuraApplication.py:921 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "Scene instellen..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +#: cura/CuraApplication.py:957 msgctxt "@info:progress" msgid "Loading interface..." msgstr "Interface laden..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +#: cura/CuraApplication.py:962 msgctxt "@info:progress" msgid "Initializing engine..." msgstr "Engine initialiseren ..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#: cura/CuraApplication.py:1290 #, 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" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1798 +#: cura/CuraApplication.py:1816 #, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Er kan slechts één G-code-bestand tegelijkertijd worden geladen. Het importeren van {0} is overgeslagen" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 +#: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 msgctxt "@info:title" msgid "Warning" msgstr "Waarschuwing" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#: cura/CuraApplication.py:1828 #, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "Kan geen ander bestand openen als G-code wordt geladen. Het importeren van {0} is overgeslagen" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1812 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156 +#: cura/Settings/CuraContainerRegistry.py:166 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 msgctxt "@info:title" msgid "Error" msgstr "Fout" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 +#: cura/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Onbekend" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "Kan de onderstaande printer(s) niet verbinden omdat deze deel uitmaakt/uitmaken van een groep" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Beschikbare netwerkprinters" + +#: cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Niet overschreven" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:28 +msgctxt "@label" +msgid "Connected printers" +msgstr "Verbonden printers" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +msgctxt "@label" +msgid "Preset printers" +msgstr "Vooraf ingestelde printers" + +#: cura/Machines/Models/GlobalStacksModel.py:165 +#, 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 "Weet u zeker dat u {0} wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt!" + +#: cura/Machines/Models/IntentCategoryModel.py:42 +#: cura/Machines/Models/IntentSelectionModel.py:61 +#: cura/Machines/Models/IntentTranslations.py:11 +#: cura/Machines/Models/QualityManagementModel.py:347 +msgctxt "@label" +msgid "Default" +msgstr "Default" + +#: cura/Machines/Models/IntentCategoryModel.py:45 +#: cura/Machines/Models/IntentSelectionModel.py:65 +#: cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "Visueel" + +#: cura/Machines/Models/IntentCategoryModel.py:46 +#: cura/Machines/Models/IntentSelectionModel.py:66 +#: cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "Het visuele profiel is ontworpen om visuele prototypen en modellen te printen met als doel een hoge visuele en oppervlaktekwaliteit te creëren." + +#: cura/Machines/Models/IntentCategoryModel.py:49 +#: cura/Machines/Models/IntentSelectionModel.py:70 +#: cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "Engineering" + +#: cura/Machines/Models/IntentCategoryModel.py:50 +#: cura/Machines/Models/IntentSelectionModel.py:71 +#: cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "Het engineeringprofiel is ontworpen om functionele prototypen en onderdelen voor eindgebruik te printen met als doel een grotere precisie en nauwere toleranties." + +#: cura/Machines/Models/IntentCategoryModel.py:53 +#: cura/Machines/Models/IntentSelectionModel.py:75 +#: cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "Ontwerp" + +#: cura/Machines/Models/IntentCategoryModel.py:54 +#: cura/Machines/Models/IntentSelectionModel.py:76 +#: cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "Het ontwerpprofiel is ontworpen om initiële prototypen en conceptvalidatie te printen met als doel de printtijd aanzienlijk te verkorten." + +#: cura/Machines/Models/MaterialManagementModel.py:232 +msgctxt "@label" +msgid "Custom Material" +msgstr "Aangepast materiaal" + +#: cura/Machines/Models/MaterialManagementModel.py:233 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 +msgctxt "@label" +msgid "Custom" +msgstr "Aangepast" + +#: cura/Machines/Models/QualityManagementModel.py:400 +msgctxt "@label" +msgid "Custom profiles" +msgstr "Aangepaste profielen" + +#: cura/Machines/Models/QualityManagementModel.py:435 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Alle Ondersteunde Typen ({0})" + +#: cura/Machines/Models/QualityManagementModel.py:436 +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Alle Bestanden (*)" + +#: cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Berekend" + +#: cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Objecten verveelvoudigen en plaatsen" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 +#: cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "Objecten plaatsen" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 +#: cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Object plaatsen" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +#: cura/OAuth2/AuthorizationHelpers.py:89 msgctxt "@message" msgid "Could not read response." msgstr "Kan het antwoord niet lezen." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +#: cura/OAuth2/AuthorizationRequestHandler.py:75 msgctxt "@message" msgid "The provided state is not correct." msgstr "De opgegeven status is niet juist." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +#: cura/OAuth2/AuthorizationRequestHandler.py:80 msgctxt "@message" msgid "Timeout when authenticating with the account server." msgstr "Time-out tijdens verificatie bij de accountserver." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +#: cura/OAuth2/AuthorizationRequestHandler.py:97 msgctxt "@message" msgid "Please give the required permissions when authorizing this application." msgstr "Verleen de vereiste toestemmingen toe bij het autoriseren van deze toepassing." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +#: cura/OAuth2/AuthorizationRequestHandler.py:104 msgctxt "@message" msgid "Something unexpected happened when trying to log in, please try again." msgstr "Er heeft een onverwachte gebeurtenis plaatsgevonden bij het aanmelden. Probeer het opnieuw." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:216 +#: cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Er kan geen nieuw aanmeldingsproces worden gestart. Controleer of een andere aanmeldingspoging nog actief is." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:277 +#: cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "Kan de Ultimaker-accountserver niet bereiken." +msgid "Unable to reach the UltiMaker account server." +msgstr "Kan de UltiMaker-accountserver niet bereiken." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 +#: cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" msgid "Log-in failed" msgstr "Aanmelden mislukt" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +#: cura/PrinterOutput/UploadMaterialsJob.py:104 msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Kan geen materiaalarchief maken voor synchronisatie met printers." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +#: cura/PrinterOutput/UploadMaterialsJob.py:111 +#: cura/PrinterOutput/UploadMaterialsJob.py:165 msgctxt "@text:error" msgid "Failed to load the archive of materials to sync it with printers." msgstr "Kan het materiaalarchief niet laden voor synchronisatie met printers." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +#: cura/PrinterOutput/UploadMaterialsJob.py:143 msgctxt "@text:error" msgid "The response from Digital Factory appears to be corrupted." msgstr "Antwoord van Digital Factor is mogelijk beschadigd." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +#: cura/PrinterOutput/UploadMaterialsJob.py:147 +#: cura/PrinterOutput/UploadMaterialsJob.py:151 +#: cura/PrinterOutput/UploadMaterialsJob.py:155 msgctxt "@text:error" msgid "The response from Digital Factory is missing important information." msgstr "In het antwoord van Digital Factory ontbreekt belangrijke informatie." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +#: cura/PrinterOutput/UploadMaterialsJob.py:218 msgctxt "@text:error" msgid "Failed to connect to Digital Factory to sync materials with some of the printers." msgstr "Kan geen verbinding maken met Digital Factory voor de synchronisatie van materialen met enkele printers." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +#: cura/PrinterOutput/UploadMaterialsJob.py:232 msgctxt "@text:error" msgid "Failed to connect to Digital Factory." msgstr "Kan geen verbinding maken met Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:207 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: cura/Settings/ActiveQuality.py:43 +msgctxt "@label" +msgid "Experimental" +msgstr "Experimenteel" + +#: cura/Settings/ContainerManager.py:207 +#: cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "Het Bestand Bestaat Al" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: cura/Settings/ContainerManager.py:208 +#: cura/Settings/CuraContainerRegistry.py:141 #, 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 "Het bestand {0} bestaat al. Weet u zeker dat u dit bestand wilt overschrijven?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 +#: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "Ongeldige bestands-URL:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Kan het profiel niet exporteren als {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Kan het profiel niet exporteren als {0}: Plug-in voor de schrijver heeft een fout gerapporteerd." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Het profiel is geëxporteerd als {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "De export is voltooid" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Kan het profiel niet importeren uit {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: cura/Settings/CuraContainerRegistry.py:209 #, 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 "Kan het profiel niet importeren uit {0} voordat een printer toegevoegd is." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Er is geen aangepast profiel om in het bestand {0} te importeren" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Kan het profiel niet importeren uit {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: cura/Settings/CuraContainerRegistry.py:252 +#: cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Dit profiel {0} bevat incorrecte gegevens. Kan het profiel niet importeren." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Kan het profiel niet importeren uit {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Het profiel {0} is geïmporteerd." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Het bestand {0} bevat geen geldig profiel." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Het profiel {0} heeft een onbekend bestandstype of is beschadigd." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Aangepast profiel" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Er ontbreekt een kwaliteitstype in het profiel." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Er is nog geen actieve printer." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Kan het profiel niet toevoegen." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "Kwaliteitstype '{0}' is niet compatibel met de huidige actieve machinedefinitie '{1}'." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: cura/Settings/CuraContainerRegistry.py:488 #, 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 "Waarschuwing: het profiel is niet zichtbaar omdat het kwaliteitstype '{0}' van het profiel niet beschikbaar is voor de huidige configuratie. Schakel naar een materiaal-nozzle-combinatie waarvoor dit kwaliteitstype geschikt is." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Niet ondersteund" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:219 +#: cura/Settings/MachineManager.py:746 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:221 msgctxt "@label" msgid "Nozzle" -msgstr "Nozzle" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +#: cura/Settings/MachineManager.py:890 msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "De instellingen zijn gewijzigd zodat deze overeenkomen met de huidige beschikbaarheid van extruders:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: cura/Settings/MachineManager.py:891 msgctxt "@info:title" msgid "Settings updated" msgstr "De instellingen zijn bijgewerkt" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 +#: cura/Settings/MachineManager.py:1514 msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extruder(s) uitgeschakeld" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 +#: cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Niet ondersteund" + +#: cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Default" + +#: cura/UI/AddPrinterPagesModel.py:17 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" msgid "Add" msgstr "Toevoegen" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:290 +#: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290 msgctxt "@action:button" msgid "Finish" msgstr "Voltooien" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:508 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:323 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:291 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:74 +#: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386 +#: plugins/ImageReader/ConfigUI.qml:323 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 +#: resources/qml/ColorDialog.qml:143 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: resources/qml/Dialogs/RenameDialog.qml:103 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 msgctxt "@action:button" msgid "Cancel" msgstr "Annuleren" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: cura/UI/ObjectsModel.py:69 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Groepsnummer #{group_nr}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 +#: cura/UI/PrintInformation.py:87 msgctxt "@tooltip" msgid "Outer Wall" msgstr "Buitenwand" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +#: cura/UI/PrintInformation.py:88 msgctxt "@tooltip" msgid "Inner Walls" msgstr "Binnenwanden" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +#: cura/UI/PrintInformation.py:89 msgctxt "@tooltip" msgid "Skin" -msgstr "Skin" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +#: cura/UI/PrintInformation.py:90 msgctxt "@tooltip" msgid "Infill" msgstr "Vulling" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +#: cura/UI/PrintInformation.py:91 msgctxt "@tooltip" msgid "Support Infill" msgstr "Supportvulling" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +#: cura/UI/PrintInformation.py:92 msgctxt "@tooltip" msgid "Support Interface" msgstr "Verbindingsstructuur" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +#: cura/UI/PrintInformation.py:93 msgctxt "@tooltip" msgid "Support" msgstr "Supportstructuur" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +#: cura/UI/PrintInformation.py:94 msgctxt "@tooltip" msgid "Skirt" -msgstr "Skirt" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +#: cura/UI/PrintInformation.py:95 msgctxt "@tooltip" msgid "Prime Tower" msgstr "Primepijler" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +#: cura/UI/PrintInformation.py:96 msgctxt "@tooltip" msgid "Travel" msgstr "Beweging" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +#: cura/UI/PrintInformation.py:97 msgctxt "@tooltip" msgid "Retractions" msgstr "Intrekkingen" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +#: cura/UI/PrintInformation.py:98 msgctxt "@tooltip" msgid "Other" msgstr "Overig(e)" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:63 +#: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63 msgctxt "@text:window" msgid "The release notes could not be opened." msgstr "De release notes konden niet worden geopend." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:277 +#: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277 msgctxt "@action:button" msgid "Next" msgstr "Volgende" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68 msgctxt "@action:button" msgid "Skip" msgstr "Overslaan" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:443 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:186 +#: cura/UI/WhatsNewPagesModel.py:76 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444 +#: resources/qml/Dialogs/AboutDialog.qml:188 msgctxt "@action:button" msgid "Close" msgstr "Sluiten" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: cura/UltimakerCloud/CloudMaterialSync.py:66 msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Synchroniseer de materiaalprofielen met uw printer voordat u gaat printen." -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: cura/UltimakerCloud/CloudMaterialSync.py:67 msgctxt "@action:button" msgid "New materials installed" msgstr "Nieuwe materialen geïnstalleerd" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: cura/UltimakerCloud/CloudMaterialSync.py:74 msgctxt "@action:button" msgid "Sync materials" msgstr "Materialen synchroniseren..." -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:397 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:80 +#: cura/UltimakerCloud/CloudMaterialSync.py:82 +#: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80 msgctxt "@action:button" msgid "Learn more" msgstr "Meer informatie" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +#: cura/UltimakerCloud/CloudMaterialSync.py:135 msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Kan materiaalarchief niet opslaan op {}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +#: cura/UltimakerCloud/CloudMaterialSync.py:136 msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Opslaan materiaalarchief mislukt" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +#: cura/UltimakerCloud/CloudMaterialSync.py:188 msgctxt "@text" msgid "Unknown error." msgstr "Onbekende fout." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:558 +#, 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 "Projectbestand {0} bevat een onbekend type machine {1}. Kan de machine niet importeren. In plaats daarvan worden er modellen geïmporteerd." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:561 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "Projectbestand Openen" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: plugins/3MFReader/WorkspaceDialog.qml:99 +#: plugins/3MFReader/WorkspaceDialog.qml:127 +#: plugins/3MFReader/WorkspaceDialog.qml:134 +msgctxt "@button" +msgid "Create new" +msgstr "Nieuw maken" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:692 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "Projectbestand {0} is plotseling ontoegankelijk: {1}." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:720 +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "Kan projectbestand niet openen" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:700 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:718 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "Projectbestand {0} is corrupt: {1}." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:765 +#, 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 "Projectbestand {0} wordt gemaakt met behulp van profielen die onbekend zijn bij deze versie van UltiMaker Cura." + +#: plugins/3MFReader/WorkspaceDialog.py:233 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Aanbevolen" + +#: plugins/3MFReader/WorkspaceDialog.py:235 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Aangepast" + +#: plugins/3MFReader/WorkspaceDialog.py:411 +msgctxt "@info:status" +msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." +msgstr "Het materiaal dat in dit project wordt gebruikt, vertrouwt op materiaaldefinities die niet beschikbaar zijn in Cura, waardoor dit mogelijk tot ongewenste printresultaten leidt. We raden u ten zeerste aan om het volledige materiaalpakket te installeren van de marktplaats." + +#: plugins/3MFReader/WorkspaceDialog.py:413 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "Materiaalprofielen niet geïnstalleerd" + +#: plugins/3MFReader/WorkspaceDialog.py:426 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "Materialen installeren" + +#: plugins/3MFReader/WorkspaceDialog.qml:15 +msgctxt "@title:window" +msgid "Open Project" +msgstr "Project openen" + +#: plugins/3MFReader/WorkspaceDialog.qml:31 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61 +msgctxt "@action:title" +msgid "Summary - Cura Project" +msgstr "Samenvatting - Cura-project" + +#: plugins/3MFReader/WorkspaceDialog.qml:65 +msgctxt "@action:ComboBox Update/override existing profile" +msgid "Update existing" +msgstr "Bestaand(e) bijwerken" + +#: plugins/3MFReader/WorkspaceDialog.qml:66 +msgctxt "@action:ComboBox Save settings in a new profile" +msgid "Create new" +msgstr "Nieuw maken" + +#: plugins/3MFReader/WorkspaceDialog.qml:83 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97 +msgctxt "@action:label" +msgid "Printer settings" +msgstr "Printerinstellingen" + +#: plugins/3MFReader/WorkspaceDialog.qml:92 +#: plugins/3MFReader/WorkspaceRow.qml:23 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106 +msgctxt "@action:label" +msgid "Type" +msgstr "Type" + +#: plugins/3MFReader/WorkspaceDialog.qml:98 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +msgctxt "@action:label" +msgid "Printer Group" +msgstr "Printergroep" + +#: plugins/3MFReader/WorkspaceDialog.qml:103 +msgctxt "@action:label" +msgid "Open With" +msgstr "Openen" + +#: plugins/3MFReader/WorkspaceDialog.qml:104 +msgctxt "@info:tooltip" +msgid "Printer settings will be updated to match the settings saved with the project." +msgstr "Printerinstellingen worden bijgewerkt zodat deze overeenkomen met de instellingen die zijn opgeslagen met het project." + +#: plugins/3MFReader/WorkspaceDialog.qml:156 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222 +msgctxt "@action:label" +msgid "Profile settings" +msgstr "Profielinstellingen" + +#: plugins/3MFReader/WorkspaceDialog.qml:166 +#: plugins/3MFReader/WorkspaceDialog.qml:238 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246 +msgctxt "@action:label" +msgid "Name" +msgstr "Naam" + +#: plugins/3MFReader/WorkspaceDialog.qml:172 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263 +msgctxt "@action:label" +msgid "Intent" +msgstr "Intent" + +#: plugins/3MFReader/WorkspaceDialog.qml:178 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230 +msgctxt "@action:label" +msgid "Not in profile" +msgstr "Niet in profiel" + +#: plugins/3MFReader/WorkspaceDialog.qml:179 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235 +msgctxt "@action:label" +msgid "%1 override" +msgid_plural "%1 overrides" +msgstr[0] "%1 overschrijving" +msgstr[1] "%1 overschrijvingen" + +#: plugins/3MFReader/WorkspaceDialog.qml:185 +msgctxt "@action:label" +msgid "Derivative from" +msgstr "Afgeleide van" + +#: plugins/3MFReader/WorkspaceDialog.qml:186 +msgctxt "@action:label" +msgid "%1, %2 override" +msgid_plural "%1, %2 overrides" +msgstr[0] "%1, %2 overschrijving" +msgstr[1] "%1, %2 overschrijvingen" + +#: plugins/3MFReader/WorkspaceDialog.qml:226 +msgctxt "@action:label" +msgid "Material settings" +msgstr "Materiaalinstellingen" + +#: plugins/3MFReader/WorkspaceDialog.qml:280 +msgctxt "@action:label" +msgid "Setting visibility" +msgstr "Zichtbaarheid instellen" + +#: plugins/3MFReader/WorkspaceDialog.qml:290 +msgctxt "@action:label" +msgid "Mode" +msgstr "Modus" + +#: plugins/3MFReader/WorkspaceDialog.qml:296 +msgctxt "@action:label" +msgid "%1 out of %2" +msgstr "%1 van %2" + +#: plugins/3MFReader/WorkspaceDialog.qml:321 +msgctxt "@action:warning" +msgid "Loading a project will clear all models on the build plate." +msgstr "Als u een project laadt, worden alle modellen van het platform gewist." + +#: plugins/3MFReader/WorkspaceDialog.qml:367 +msgctxt "@label" +msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." +msgstr "Het materiaal dat in dit project wordt gebruikt, is momenteel niet geïnstalleerd in Cura.
    Installeer het materiaalprofiel en open het project opnieuw." + +#: plugins/3MFReader/WorkspaceDialog.qml:392 +msgctxt "@action:button" +msgid "Open" +msgstr "Openen" + +#: plugins/3MFReader/WorkspaceDialog.qml:398 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "Project toch openen" + +#: plugins/3MFReader/WorkspaceDialog.qml:407 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "Ontbrekend materiaal installeren" + +#: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33 +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "3MF-bestand" + +#: plugins/3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF-lezer" + +#: plugins/3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Biedt ondersteuning voor het lezen van 3MF-bestanden." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "3MF-schrijverplug-in is beschadigd." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Er is nog geen werkruimte om te schrijven. Voeg eerst een printer toe." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "Geen bevoegdheid om de werkruimte hier te schrijven." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "Het besturingssysteem staat niet toe dat u een projectbestand opslaat op deze locatie of met deze bestandsnaam." + +#: plugins/3MFWriter/ThreeMFWriter.py:240 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Fout bij het schrijven van het 3mf-bestand." + +#: plugins/3MFWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "3MF-bestand" + +#: plugins/3MFWriter/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Cura-project 3MF-bestand" + +#: plugins/3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF-schrijver" + +#: plugins/3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Biedt ondersteuning voor het schrijven van 3MF-bestanden." + +#: plugins/AMFReader/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "AMF-bestand" + +#: plugins/AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF-lezer" + +#: plugins/AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Biedt ondersteuning voor het lezen van AMF-bestanden." + +#: plugins/CuraDrive/plugin.json +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Een back-up maken van uw configuratie en deze herstellen." + +#: plugins/CuraDrive/plugin.json +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura-back-ups" + +#: plugins/CuraDrive/src/CreateBackupJob.py:25 +msgctxt "@info:title" +msgid "Backups" +msgstr "Back-ups" + +#: plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Er is een fout opgetreden tijdens het uploaden van uw back-up." + +#: plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "Uw back-up maken..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "Er is een fout opgetreden bij het maken van de back-up." + +#: plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Uw back-up wordt geüpload..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Uw back-up is geüpload." + +#: plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "De back-up is groter dan de maximale bestandsgrootte." + +#: plugins/CuraDrive/src/DriveApiService.py:86 +#: plugins/CuraDrive/src/RestoreBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Er is een fout opgetreden tijdens het herstellen van uw back-up." + +#: plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Back-ups beheren" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "Wilt u meer?" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Nu back-up maken" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Auto back-up" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Maak elke dag dat Cura wordt gestart, automatisch een back-up." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 +msgctxt "@button" +msgid "Restore" +msgstr "Herstellen" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Back-up verwijderen" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Weet u zeker dat u deze back-up wilt verwijderen? Dit kan niet ongedaan worden gemaakt." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Back-up herstellen" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "U moet Cura opnieuw starten voordat uw back-up wordt hersteld. Wilt u Cura nu sluiten?" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Cura-versie" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Machines" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Materialen" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Profielen" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Plug-ins" + +#: plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Cura-back-ups" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "Mijn back-ups" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "U hebt momenteel geen back-ups. Gebruik de knop 'Nu back-up maken' om een back-up te maken." + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Tijdens de voorbeeldfase zijn er maximaal 5 back-ups zichtbaar. Verwijder een back-up als u oudere back-ups wilt bekijken." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Maak een back-up van uw Cura-instellingen en synchroniseer deze." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 +#: plugins/Marketplace/resources/qml/Marketplace.qml:312 +#: resources/qml/Account/GeneralOperations.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180 +#: resources/qml/WelcomePages/CloudContent.qml:212 +msgctxt "@button" +msgid "Sign in" +msgstr "Aanmelden" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "Slicen is mislukt door een onverwachte fout. Overweeg om de fout te melden via onze issue tracker." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:163 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "Slicen mislukt" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Een fout melden" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:169 +msgctxt "@message:description" +msgid "Report a bug on UltiMaker Cura's issue tracker." +msgstr "Meld een fout via de issue tracker van UltiMaker Cura." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:416 +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "Met het huidige materiaal is slicen niet mogelijk, omdat het materiaal niet compatibel is met de geselecteerde machine of configuratie." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:417 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:450 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:477 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:501 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:514 +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "Kan niet slicen" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:449 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "Met de huidige instellingen is slicing niet mogelijk. De volgende instellingen bevatten fouten: {0}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:476 +#, 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 "Slicing is niet mogelijk vanwege enkele instellingen per model. De volgende instellingen bevatten fouten voor een of meer modellen: {error_labels}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:488 +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "Slicen is niet mogelijk omdat de terugduwpijler of terugduwpositie(s) ongeldig zijn." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:500 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "Slicen is niet mogelijk omdat er objecten gekoppeld zijn aan uitgeschakelde Extruder %s." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:510 +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 "" +"Controleer de instellingen en zorg ervoor dat uw modellen:\n" +"- binnen het werkvolume passen\n" +"- zijn toegewezen aan een ingeschakelde extruder\n" +"- niet allemaal zijn ingesteld als modificatierasters" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Lagen verwerken" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Informatie" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine-back-end" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Voorziet in de koppeling naar het slicing-back-end van de CuraEngine." + +#: plugins/CuraProfileReader/__init__.py:14 +#: plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Cura-profiel" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura-profiellezer" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Biedt ondersteuning bij het importeren van Cura-profielen." + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura-profielschrijver" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Biedt ondersteuning voor het exporteren van Cura-profielen." + +#: plugins/DigitalLibrary/plugin.json +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." + +#: plugins/DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 +msgctxt "@option" +msgid "Save Cura project and print file" +msgstr "Cura-project opslaan en bestand printen" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Cura-project opslaan" + +#: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19 +msgctxt "@text Placeholder for the username if it has been deleted" +msgid "deleted user" +msgstr "verwijderde gebruiker" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Geen toegang tot update-informatie." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, 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 "Er zijn mogelijk nieuwe functies of foutoplossingen beschikbaar voor uw {machine_name}. Als u dit nog niet hebt gedaan, is het raadzaam om de firmware op uw printer bij te werken naar versie {latest_version}." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "Nieuwe stabiele firmware voor %s beschikbaar" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Instructies voor bijwerken" + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Controleert op firmware-updates." + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Firmware-updatecontrole" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Firmware bijwerken" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "Firmware bijwerken" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 +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 "Firmware is de software die direct op de 3D-printer wordt uitgevoerd. Deze firmware bedient de stappenmotoren, regelt de temperatuur en zorgt er in feite voor dat de printer doet wat deze moet doen." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "De firmware die bij nieuwe printers wordt geleverd, werkt wel, maar nieuwe versies hebben vaak meer functies en verbeteringen." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Firmware-upgrade Automatisch Uitvoeren" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Aangepaste Firmware Uploaden" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "Kan de firmware niet bijwerken omdat er geen verbinding met de printer is." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 +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." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Aangepaste firmware selecteren" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Firmware-update" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 +msgctxt "@label" +msgid "Updating firmware." +msgstr "De firmware wordt bijgewerkt." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "De firmware-update is voltooid." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "Firmware-update mislukt door een onbekende fout." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "Firmware-update mislukt door een communicatiefout." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "Firmware-update mislukt door een invoer-/uitvoerfout." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "Firmware-update mislukt door ontbrekende firmware." + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "name" +msgid "Firmware Updater" +msgstr "Firmware-updater" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Biedt machineacties voor het bijwerken van de firmware." + +#: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "Gecomprimeerd G-code-bestand" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lezer voor gecomprimeerde G-code" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Hiermee leest u G-code uit een gecomprimeerd archief." + +#: plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "GCodeGzWriter ondersteunt geen tekstmodus." + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Schrijver voor gecomprimeerde G-code" + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Met deze optie schrijft u G-code naar een gecomprimeerd archief." + +#: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14 +#: plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "G-code-bestand" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "G-code-profiellezer" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Biedt ondersteuning voor het importeren van profielen uit G-code-bestanden." + +#: plugins/GCodeReader/FlavorParser.py:359 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "G-code parseren" + +#: plugins/GCodeReader/FlavorParser.py:361 +#: plugins/GCodeReader/FlavorParser.py:515 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "Details van de G-code" + +#: plugins/GCodeReader/FlavorParser.py:513 +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 "Zorg ervoor dat de G-code geschikt is voor uw printer en de printerconfiguratie voordat u het bestand verzendt. Mogelijk is de weergave van de G-code niet nauwkeurig." + +#: plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "G-bestand" + +#: plugins/GCodeReader/plugin.json +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Hiermee kunt u G-code-bestanden laden en weergeven." + +#: plugins/GCodeReader/plugin.json +msgctxt "name" +msgid "G-code Reader" +msgstr "G-code-lezer" + +#: plugins/GCodeWriter/GCodeWriter.py:75 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "GCodeWriter ondersteunt geen non-tekstmodus." + +#: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Bereid voorafgaand aan het exporteren G-code voor." + +#: plugins/GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "G-code-schrijver" + +#: plugins/GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Met deze optie schrijft u G-code naar een bestand." + +#: plugins/ImageReader/ConfigUI.qml:14 +msgctxt "@title:window" +msgid "Convert Image" +msgstr "Afbeelding converteren..." + +#: plugins/ImageReader/ConfigUI.qml:33 +msgctxt "@action:label" +msgid "Height (mm)" +msgstr "Hoogte (mm)" + +#: plugins/ImageReader/ConfigUI.qml:56 +msgctxt "@info:tooltip" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "De maximale afstand van elke pixel tot de \"Basis\"." + +#: plugins/ImageReader/ConfigUI.qml:66 +msgctxt "@action:label" +msgid "Base (mm)" +msgstr "Basis (mm)" + +#: plugins/ImageReader/ConfigUI.qml:90 +msgctxt "@info:tooltip" +msgid "The base height from the build plate in millimeters." +msgstr "De basishoogte van het platform in millimeters." + +#: plugins/ImageReader/ConfigUI.qml:100 +msgctxt "@action:label" +msgid "Width (mm)" +msgstr "Breedte (mm)" + +#: plugins/ImageReader/ConfigUI.qml:124 +msgctxt "@info:tooltip" +msgid "The width in millimeters on the build plate" +msgstr "De breedte op het platform in millimeters" + +#: plugins/ImageReader/ConfigUI.qml:134 +msgctxt "@action:label" +msgid "Depth (mm)" +msgstr "Diepte (mm)" + +#: plugins/ImageReader/ConfigUI.qml:158 +msgctxt "@info:tooltip" +msgid "The depth in millimeters on the build plate" +msgstr "De diepte op het platform in millimeters" + +#: plugins/ImageReader/ConfigUI.qml:187 +msgctxt "@item:inlistbox" +msgid "Darker is higher" +msgstr "Donkerder is hoger" + +#: plugins/ImageReader/ConfigUI.qml:188 +msgctxt "@item:inlistbox" +msgid "Lighter is higher" +msgstr "Lichter is hoger" + +#: plugins/ImageReader/ConfigUI.qml:195 +msgctxt "@info:tooltip" +msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." +msgstr "Bij lithofanen dienen donkere pixels overeen te komen met de dikkere plekken om meer licht tegen te houden. Bij hoogtekaarten geven lichtere pixels hoger terrein aan. Lichtere pixels dienen daarom overeen te komen met dikkere plekken in het gegenereerde 3D-model." + +#: plugins/ImageReader/ConfigUI.qml:205 +msgctxt "@action:label" +msgid "Color Model" +msgstr "Kleur model" + +#: plugins/ImageReader/ConfigUI.qml:224 +msgctxt "@item:inlistbox" +msgid "Linear" +msgstr "Lineair" + +#: plugins/ImageReader/ConfigUI.qml:225 +msgctxt "@item:inlistbox" +msgid "Translucency" +msgstr "Doorschijnendheid" + +#: plugins/ImageReader/ConfigUI.qml:232 +msgctxt "@info:tooltip" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "Voor lithofanen is een eenvoudig logaritmisch model voor doorschijnendheid beschikbaar. Voor hoogtekaarten corresponderen de pixelwaarden lineair met hoogten." + +#: plugins/ImageReader/ConfigUI.qml:242 +msgctxt "@action:label" +msgid "1mm Transmittance (%)" +msgstr "Transmissie 1 mm (%)" + +#: plugins/ImageReader/ConfigUI.qml:263 +msgctxt "@info:tooltip" +msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." +msgstr "Het percentage licht dat doordringt in een print met een dikte van 1 millimeter. Een lagere waarde verhoogt het contrast in donkere gebieden en verlaagt het contrast in lichte gebieden van de afbeelding." + +#: plugins/ImageReader/ConfigUI.qml:274 +msgctxt "@action:label" +msgid "Smoothing" +msgstr "Effenen" + +#: plugins/ImageReader/ConfigUI.qml:298 +msgctxt "@info:tooltip" +msgid "The amount of smoothing to apply to the image." +msgstr "De mate van effening die op de afbeelding moet worden toegepast." + +#: plugins/ImageReader/ConfigUI.qml:329 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 +#: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25 +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + +#: plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "JPG-afbeelding" + +#: plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "JPEG-afbeelding" + +#: plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "PNG-afbeelding" + +#: plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "BMP-afbeelding" + +#: plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "GIF-afbeelding" + +#: plugins/ImageReader/plugin.json +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." + +#: plugins/ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Afbeeldinglezer" + +#: plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Cura 15.04-profielen" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Lezer voor Profielen van oudere Cura-versies" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Biedt ondersteuning voor het importeren van profielen uit oudere Cura-versies." + +#: plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Machine-instellingen" + +#: plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Printer" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Nozzle-instellingen" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Maat nozzle" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Compatibele materiaaldiameter" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Nozzle-offset X" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Nozzle-offset Y" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Nummer van koelventilator" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "Start-G-code van extruder" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "Eind-G-code van extruder" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Printerinstellingen" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (Breedte)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Diepte)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Hoogte)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Vorm van het platform" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 +msgctxt "@label" +msgid "Origin at center" +msgstr "Centraal oorsprongpunt" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 +msgctxt "@label" +msgid "Heated bed" +msgstr "Verwarmd bed" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Verwarmde werkvolume" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 +msgctxt "@label" +msgid "G-code flavor" +msgstr "Versie G-code" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Printkopinstellingen" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 +msgctxt "@label" +msgid "X min" +msgstr "X min" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 +msgctxt "@label" +msgid "Y min" +msgstr "Y min" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 +msgctxt "@label" +msgid "X max" +msgstr "X max" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 +msgctxt "@label" +msgid "Y max" +msgstr "Y max" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Rijbrughoogte" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Aantal extruders" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:342 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Pas extruderoffsets toe op GCode" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:390 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "Start G-code" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:401 +msgctxt "@title:label" +msgid "End G-code" +msgstr "Eind G-code" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Actie machine-instellingen" + +#: plugins/MachineSettingsAction/plugin.json +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." + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "Wilt u materiaal- en softwarepackages synchroniseren met uw account?" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:95 +msgctxt "@info:title" +msgid "Changes detected from your UltiMaker account" +msgstr "Wijzigingen gedetecteerd van uw UltiMaker-account" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 +msgctxt "@action:button" +msgid "Sync" +msgstr "Synchroniseren" + +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "Synchroniseren ..." + +#: plugins/Marketplace/CloudSync/LicenseModel.py:12 +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:79 +msgctxt "@button" +msgid "Decline" +msgstr "Nee, ik ga niet akkoord" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:13 +#: resources/qml/WelcomePages/UserAgreementContent.qml:53 +msgctxt "@button" +msgid "Agree" +msgstr "Akkoord" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:77 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Licentieovereenkomst plug-in" + +#: plugins/Marketplace/CloudSync/LicensePresenter.py:42 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Weigeren en verwijderen uit account" + +#: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "U moet {} afsluiten en herstarten voordat de wijzigingen van kracht worden." + +#: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "{} plug-ins zijn niet gedownload" + +#: plugins/Marketplace/LocalPackageList.py:28 +msgctxt "@label" +msgid "Installed Plugins" +msgstr "Geïnstalleerde plug-ins" + +#: plugins/Marketplace/LocalPackageList.py:29 +msgctxt "@label" +msgid "Installed Materials" +msgstr "Geïnstalleerde materialen" + +#: plugins/Marketplace/LocalPackageList.py:33 +msgctxt "@label" +msgid "Bundled Plugins" +msgstr "Gebundelde plug-ins" + +#: plugins/Marketplace/LocalPackageList.py:34 +msgctxt "@label" +msgid "Bundled Materials" +msgstr "Gebundelde materialen" + +#: plugins/Marketplace/PackageModel.py:43 +msgctxt "@label:property" +msgid "Unknown Package" +msgstr "Onbekend pakket" + +#: plugins/Marketplace/PackageModel.py:66 +msgctxt "@label:property" +msgid "Unknown Author" +msgstr "Onbekende auteur" + +#: plugins/Marketplace/PackageModel.py:95 +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 "Het materiaalpakket dat is gekoppeld aan het Cura-project kan niet worden gevonden op de Ultimaker Marketplace. Gebruik de definitie van het gedeeltelijke materiaalprofiel die is opgeslagen in het Cura-projectbestand op eigen risico." + +#: plugins/Marketplace/RemotePackageList.py:117 +msgctxt "@info:error" +msgid "Could not interpret the server's response." +msgstr "Antwoord van de server is niet duidelijk." + +#: plugins/Marketplace/RemotePackageList.py:148 +msgctxt "@info:error" +msgid "Could not reach Marketplace." +msgstr "Kan Marketplace niet bereiken." + +#: plugins/Marketplace/plugin.json +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." + +#: plugins/Marketplace/plugin.json +msgctxt "name" +msgid "Marketplace" +msgstr "Marktplaats" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 +msgctxt "@title" +msgid "Changes from your account" +msgstr "Wijzigingen van uw account" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +msgctxt "@button" +msgid "Dismiss" +msgstr "Verwijderen" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +#: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 +#: resources/qml/WelcomePages/WhatsNewContent.qml:175 +msgctxt "@button" +msgid "Next" +msgstr "Volgende" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "De volgende packages worden toegevoegd:" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "De volgende packages kunnen niet worden geïnstalleerd omdat de Cura-versie niet compatibel is:" + +#: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "Ontbrekend materiaal installeren" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "Licentieovereenkomst plug-in" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:47 +msgctxt "@text" +msgid "Please read and agree with the plugin licence." +msgstr "Lees de plug-in-licentie en stem hiermee in." + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "Ja, ik ga akkoord" + +#: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Pakketten beheren" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:12 +msgctxt "@header" +msgid "Manage packages" +msgstr "Pakketten beheren" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:16 +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." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" +msgid "Loading..." +msgstr "Laden..." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "Plug-ins" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "Materialen" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "Zoeken in browser" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:271 +msgctxt "@button" +msgid "In order to use the package you will need to restart Cura" +msgstr "Om het pakket te gebruiken moet u Cura opnieuw opstarten" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:279 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "Sluit %1" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:300 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" +msgstr "Meld u aan voor geverifieerde plug-ins en materialen voor UltiMaker Cura Enterprise" + +#: plugins/Marketplace/resources/qml/Materials.qml:8 +#: plugins/Marketplace/resources/qml/MissingPackages.qml:8 +msgctxt "@header" +msgid "Install Materials" +msgstr "Materialen installeren" + +#: plugins/Marketplace/resources/qml/Materials.qml:12 +msgctxt "@text" +msgid "Select and install material profiles optimised for your UltiMaker 3D printers." +msgstr "Selecteer en installeer materiaalprofielen die zijn geoptimaliseerd voor uw UltiMaker 3D-printers." + +#: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "U moet de licentie accepteren om de package te installeren" + +#: plugins/Marketplace/resources/qml/OnboardBanner.qml:101 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205 +msgctxt "@button:label" +msgid "Learn More" +msgstr "Meer Informatie" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170 +msgctxt "@label Is followed by the name of an author" +msgid "By" +msgstr "Door" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Disable" +msgstr "Uitschakelen" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Enable" +msgstr "Inschakelen" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242 +msgctxt "@button" +msgid "Downgrading..." +msgstr "Downgraden..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243 +msgctxt "@button" +msgid "Downgrade" +msgstr "Downgraden" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247 +msgctxt "@button" +msgid "Installing..." +msgstr "Installeren..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248 +msgctxt "@button" +msgid "Install" +msgstr "Installeren" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252 +msgctxt "@button" +msgid "Uninstall" +msgstr "De-installeren" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Update" +msgstr "Bijwerken" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Updating..." +msgstr "Updaten..." + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "Pakketgegevens" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Terug" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "Beschrijving" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "Compatibele printers" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "Geen compatibiliteitsinformatie" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "Compatibele ondersteuningsmaterialen" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "Geen" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:193 +msgctxt "@header" +msgid "Compatible with Material Station" +msgstr "Compatibel met Material Station" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "No" +msgstr "Nee" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "Yes" +msgstr "Ja" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:219 +msgctxt "@header" +msgid "Optimized for Air Manager" +msgstr "Geoptimaliseerd voor Air Manager" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Visit plug-in website" +msgstr "Bezoek de plug-in-website" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Website" +msgstr "Website" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:252 +msgctxt "@button" +msgid "Buy spool" +msgstr "Koop spoel" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:261 +msgctxt "@button" +msgid "Safety datasheet" +msgstr "Informatieblad veiligheid" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:270 +msgctxt "@button" +msgid "Technical datasheet" +msgstr "Technisch informatieblad" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Failed to load packages:" +msgstr "Kan pakketten niet laden:" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Retry?" +msgstr "Opnieuw proberen?" + +#: plugins/Marketplace/resources/qml/Packages.qml:167 +msgctxt "@button" +msgid "Loading" +msgstr "Laden" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No more results to load" +msgstr "Geen resultaten meer om te laden" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No results found with current filter" +msgstr "Geen resultaten gevonden met huidige filter" + +#: plugins/Marketplace/resources/qml/Packages.qml:226 +msgctxt "@button" +msgid "Load more" +msgstr "Meer laden" + +#: plugins/Marketplace/resources/qml/Plugins.qml:8 +msgctxt "@header" +msgid "Install Plugins" +msgstr "Plugins installeren" + +#: plugins/Marketplace/resources/qml/Plugins.qml:12 +msgctxt "@text" +msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." +msgstr "Stroomlijn uw workflow en pas uw UltiMaker Cura-ervaring aan de eisen aan met plugins die zijn geleverd door onze fantastische gebruikersgemeenschap." + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 +msgctxt "@info" +msgid "UltiMaker Verified Plug-in" +msgstr "Geverifieerde UltiMaker-plug-in" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "UltiMaker Certified Material" +msgstr "Gecertificeerd UltiMaker-materiaal" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 +msgctxt "@info" +msgid "UltiMaker Verified Package" +msgstr "Geverifieerd UltiMaker-pakket" + +#: plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "3D-modelassistent" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -836,823 +2384,1092 @@ msgstr "" "

    Ontdek hoe u de best mogelijke printkwaliteit en betrouwbaarheid verkrijgt.

    \n" "

    Handleiding printkwaliteit bekijken

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 -#, 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 "Projectbestand {0} bevat een onbekend type machine {1}. Kan de machine niet importeren. In plaats daarvan worden er modellen geïmporteerd." +#: plugins/ModelChecker/plugin.json +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." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "Projectbestand Openen" +#: plugins/ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Modelcontrole" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "Projectbestand {0} is plotseling ontoegankelijk: {1}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:659 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "Kan projectbestand niet openen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:658 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "Projectbestand {0} is corrupt: {1}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:711 -#, 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 "Projectbestand {0} wordt gemaakt met behulp van profielen die onbekend zijn bij deze versie van Ultimaker Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Aanbevolen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:214 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Aangepast" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:390 -msgctxt "@info:status" -msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 -msgctxt "@info:title" -msgid "Material profiles not installed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 -msgctxt "@action:button" -msgid "Install Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "3MF-bestand" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "3MF-schrijverplug-in is beschadigd." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "Er is nog geen werkruimte om te schrijven. Voeg eerst een printer toe." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "Geen bevoegdheid om de werkruimte hier te schrijven." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "Het besturingssysteem staat niet toe dat u een projectbestand opslaat op deze locatie of met deze bestandsnaam." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:238 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Fout bij het schrijven van het 3mf-bestand." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:282 -#, python-brace-format -msgctxt "@error:material" -msgid "It was not possible to store material package information in project file: {material}. This project may not open correctly on other systems." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 -msgctxt "@info:title" -msgid "Failed to save material package information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF-bestand" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura-project 3MF-bestand" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF-bestand" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 -msgctxt "@info:title" -msgid "Backups" -msgstr "Back-ups" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Er is een fout opgetreden tijdens het uploaden van uw back-up." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Uw back-up maken..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "Er is een fout opgetreden bij het maken van de back-up." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Uw back-up wordt geüpload..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Uw back-up is geüpload." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "De back-up is groter dan de maximale bestandsgrootte." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Er is een fout opgetreden tijdens het herstellen van uw back-up." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Back-ups beheren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "Slicen is mislukt door een onverwachte fout. Overweeg om de fout te melden via onze issue tracker." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "Slicen mislukt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 -msgctxt "@message:button" -msgid "Report a bug" -msgstr "Een fout melden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 -msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." -msgstr "Meld een fout via de issue tracker van Ultimaker Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:400 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "Met het huidige materiaal is slicen niet mogelijk, omdat het materiaal niet compatibel is met de geselecteerde machine of configuratie." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:401 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:434 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:461 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:473 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:485 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:498 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "Kan niet slicen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:433 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "Met de huidige instellingen is slicing niet mogelijk. De volgende instellingen bevatten fouten: {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:460 -#, 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 "Slicing is niet mogelijk vanwege enkele instellingen per model. De volgende instellingen bevatten fouten voor een of meer modellen: {error_labels}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:472 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "Slicen is niet mogelijk omdat de terugduwpijler of terugduwpositie(s) ongeldig zijn." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:484 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "Slicen is niet mogelijk omdat er objecten gekoppeld zijn aan uitgeschakelde Extruder %s." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 -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 "" -"Controleer de instellingen en zorg ervoor dat uw modellen:\n" -"- binnen het werkvolume passen\n" -"- zijn toegewezen aan een ingeschakelde extruder\n" -"- niet allemaal zijn ingesteld als modificatierasters" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Lagen verwerken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 -msgctxt "@info:title" -msgid "Information" -msgstr "Informatie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura-profiel" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" -msgid "Could not access update information." -msgstr "Geen toegang tot update-informatie." +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 "" +"Controleer of de printer verbonden is:\n" +"- Controleer of de printer ingeschakeld is.\n" +"- Controleer of de printer verbonden is met het netwerk.\n" +"- Controleer of u bent aangemeld om met de cloud verbonden printers te detecteren." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, 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 "Er zijn mogelijk nieuwe functies of foutoplossingen beschikbaar voor uw {machine_name}. Als u dit nog niet hebt gedaan, is het raadzaam om de firmware op uw printer bij te werken naar versie {latest_version}." +#: plugins/MonitorStage/MonitorMain.qml:113 +msgctxt "@info" +msgid "Please connect your printer to the network." +msgstr "Verbind uw printer met het netwerk." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s stable firmware available" -msgstr "Nieuwe stabiele firmware voor %s beschikbaar" +#: plugins/MonitorStage/MonitorMain.qml:148 +msgctxt "@label link to technical assistance" +msgid "View user manuals online" +msgstr "Gebruikershandleidingen online weergegeven" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "Instructies voor bijwerken" +#: plugins/MonitorStage/MonitorMain.qml:164 +msgctxt "@info" +msgid "In order to monitor your print from Cura, please connect the printer." +msgstr "Sluit de printer aan om uw printopdracht vanuit Cura te volgen." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Firmware bijwerken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Gecomprimeerd G-code-bestand" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter ondersteunt geen tekstmodus." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "G-code-bestand" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:350 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "G-code parseren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:506 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "Details van de G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 -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 "Zorg ervoor dat de G-code geschikt is voor uw printer en de printerconfiguratie voordat u het bestand verzendt. Mogelijk is de weergave van de G-code niet nauwkeurig." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G-bestand" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter ondersteunt geen non-tekstmodus." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Bereid voorafgaand aan het exporteren G-code voor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG-afbeelding" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG-afbeelding" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG-afbeelding" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP-afbeelding" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF-afbeelding" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04-profielen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Machine-instellingen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Wilt u materiaal- en softwarepackages synchroniseren met uw account?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Wijzigingen gedetecteerd van uw Ultimaker-account" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 -msgctxt "@action:button" -msgid "Sync" -msgstr "Synchroniseren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Synchroniseren ..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:12 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:79 -msgctxt "@button" -msgid "Decline" -msgstr "Nee, ik ga niet akkoord" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:13 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53 -msgctxt "@button" -msgid "Agree" -msgstr "Akkoord" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Licentieovereenkomst plug-in" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Weigeren en verwijderen uit account" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "U moet {} afsluiten en herstarten voordat de wijzigingen van kracht worden." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{} plug-ins zijn niet gedownload" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:28 -msgctxt "@label" -msgid "Installed Plugins" -msgstr "Geïnstalleerde plug-ins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:29 -msgctxt "@label" -msgid "Installed Materials" -msgstr "Geïnstalleerde materialen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:33 -msgctxt "@label" -msgid "Bundled Plugins" -msgstr "Gebundelde plug-ins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:34 -msgctxt "@label" -msgid "Bundled Materials" -msgstr "Gebundelde materialen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:43 -msgctxt "@label:property" -msgid "Unknown Package" -msgstr "Onbekend pakket" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:66 -msgctxt "@label:property" -msgid "Unknown Author" -msgstr "Onbekende auteur" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:117 -msgctxt "@info:error" -msgid "Could not interpret the server's response." -msgstr "Antwoord van de server is niet duidelijk." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:148 -msgctxt "@info:error" -msgid "Could not reach Marketplace." -msgstr "Kan Marketplace niet bereiken." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 +#: plugins/MonitorStage/__init__.py:14 msgctxt "@item:inmenu" msgid "Monitor" msgstr "Controleren" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: plugins/MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Controlestadium" + +#: plugins/MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Deze optie biedt een controlestadium in Cura." + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 +msgctxt "@label" +msgid "Mesh Type" +msgstr "Rastertype" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 +msgctxt "@label" +msgid "Normal model" +msgstr "Normaal model" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 +msgctxt "@label" +msgid "Print as support" +msgstr "Printen als supportstructuur" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Instellingen aanpassen voor overlapping" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "Supportstructuur niet laten overlappen" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 +msgctxt "@item:inlistbox" +msgid "Infill mesh only" +msgstr "Alleen vulraster" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161 +msgctxt "@item:inlistbox" +msgid "Cutting mesh" +msgstr "Snijdend raster" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386 +msgctxt "@action:button" +msgid "Select settings" +msgstr "Instellingen selecteren" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Instellingen Selecteren om Dit Model Aan te Passen" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filteren..." + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Alles weergeven" + +#: plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" msgid "Per Model Settings" msgstr "Instellingen per Model" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +#: plugins/PerObjectSettingsTool/__init__.py:15 msgctxt "@info:tooltip" msgid "Configure Per Model Settings" msgstr "Instellingen per Model configureren" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Gereedschap voor Instellingen per Model" + +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Biedt de Instellingen per Model." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Nabewerking" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "G-code wijzigen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Plug-in voor Nabewerking" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 +msgctxt "@label" +msgid "Post Processing Scripts" +msgstr "Scripts voor Nabewerking" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "Een script toevoegen" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 +msgctxt "@label" +msgid "Settings" +msgstr "Instellingen" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Actieve scripts voor nabewerking wijzigen." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "Het volgende script is actief:" +msgstr[1] "De volgende scripts zijn actief:" + +#: plugins/PostProcessingPlugin/plugin.json +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" + +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Nabewerking" + +#: plugins/PrepareStage/PrepareMenu.qml:74 +msgctxt "@button" +msgid "Add printer" +msgstr "Printer toevoegen" + +#: plugins/PrepareStage/PrepareMenu.qml:90 +msgctxt "@button" +msgid "Manage printers" +msgstr "Printers beheren" + +#: plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "Voorbereiden" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 +#: plugins/PrepareStage/plugin.json +msgctxt "name" +msgid "Prepare Stage" +msgstr "Stadium voorbereiden" + +#: plugins/PrepareStage/plugin.json +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Deze optie biedt een voorbereidingsstadium in Cura." + +#: plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" msgid "Preview" msgstr "Voorbeeld" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +#: plugins/PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Voorbeeldstadium" + +#: plugins/PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Deze optie biedt een voorbeeldstadium in Cura." + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Opslaan op verwisselbaar station" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Opslaan op Verwisselbaar Station {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "Er zijn geen bestandsindelingen beschikbaar om te schrijven!" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 #, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Opslaan op Verwisselbaar Station {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 msgctxt "@info:title" msgid "Saving" msgstr "Opslaan" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "Kan niet opslaan als {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 #, 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 "Kan geen bestandsnaam vinden tijdens het schrijven naar {device}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 #, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Kan niet opslaan op verwisselbaar station {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 #, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Opgeslagen op Verwisselbaar Station {0} als {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 msgctxt "@info:title" msgid "File Saved" msgstr "Bestand opgeslagen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 msgctxt "@action:button" msgid "Eject" msgstr "Uitwerpen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 #, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Verwisselbaar station {0} uitwerpen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 #, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "{0} is uitgeworpen. U kunt het station nu veilig verwijderen." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 msgctxt "@info:title" msgid "Safely Remove Hardware" msgstr "Hardware veilig verwijderen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 #, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Uitwerpen van {0} is niet gelukt. Mogelijk wordt het station door een ander programma gebruikt." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +#: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 msgctxt "@item:intext" msgid "Removable Drive" msgstr "Verwisselbaar Station" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "Als Draadprinten is ingeschakeld, geeft Cura lagen niet goed weer." +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Biedt hotplug- en schrijfondersteuning voor verwisselbare stations." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Simulatieweergave" +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Plug-in voor Verwijderbaar Uitvoerapparaat" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 +#: plugins/SentryLogger/plugin.json +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" + +#: plugins/SentryLogger/plugin.json +msgctxt "name" +msgid "Sentry Logger" +msgstr "Sentrylogger" + +#: plugins/SimulationView/SimulationView.py:129 msgctxt "@info:status" msgid "Nothing is shown because you need to slice first." msgstr "Er wordt niets weergegeven omdat u eerst moet slicen." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 +#: plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "No layers to show" msgstr "Geen lagen om weer te geven" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 +#: plugins/SimulationView/SimulationView.py:132 +#: plugins/SolidView/SolidView.py:74 msgctxt "@info:option_text" msgid "Do not show this message again" msgstr "Dit bericht niet meer weergeven" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:18 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:47 +msgctxt "@label" +msgid "Color scheme" +msgstr "Kleurenschema" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Materiaalkleur" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Lijntype" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:112 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Snelheid" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:116 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Laagdikte" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:120 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Lijnbreedte" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:124 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Doorvoer" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:164 +msgctxt "@label" +msgid "Compatibility Mode" +msgstr "Compatibiliteitsmodus" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:231 +msgctxt "@label" +msgid "Travels" +msgstr "Bewegingen" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:237 +msgctxt "@label" +msgid "Helpers" +msgstr "Helpers" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:243 +msgctxt "@label" +msgid "Shell" +msgstr "Shell" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:249 +msgctxt "@label" +msgid "Infill" +msgstr "Vulling" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:257 +msgctxt "@label" +msgid "Starts" +msgstr "Wordt gestart" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:304 +msgctxt "@label" +msgid "Only Show Top Layers" +msgstr "Alleen bovenlagen weergegeven" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:313 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "5 gedetailleerde lagen bovenaan weergeven" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:326 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Boven-/onderkant" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:330 +msgctxt "@label" +msgid "Inner Wall" +msgstr "Binnenwand" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:397 +msgctxt "@label" +msgid "min" +msgstr "min" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:462 +msgctxt "@label" +msgid "max" +msgstr "max" + +#: plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Laagweergave" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +#: plugins/SimulationView/plugin.json +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Biedt voorbeeld van geslicete laaggegevens." + +#: plugins/SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "Simulatieweergave" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Meer informatie over anonieme gegevensverzameling" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 +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 verzamelt anonieme gegevens om de printkwaliteit en gebruikerservaring te verbeteren. Hieronder ziet u een voorbeeld van alle gegevens die worden gedeeld:" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Ik wil geen anonieme gegevens verzenden" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Verzenden van anonieme gegevens toestaan" + +#: plugins/SliceInfoPlugin/SliceInfo.py:95 msgctxt "@text" msgid "Unable to read example data file." msgstr "Kan het voorbeeldgegevensbestand niet lezen." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Slice-informatie" + +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Verzendt anonieme slice-informatie. Dit kan bij de voorkeuren worden uitgeschakeld." + +#: plugins/SolidView/SolidView.py:71 msgctxt "@info:status" msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." msgstr "De gemarkeerde gebieden geven ofwel ontbrekende of ongebruikelijke oppervlakken aan. Corrigeer het model en open het opnieuw in Cura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +#: plugins/SolidView/SolidView.py:73 msgctxt "@info:title" msgid "Model Errors" msgstr "Modelfouten" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +#: plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" msgstr "Solide weergave" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +#: plugins/SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Biedt een normale, solide rasterweergave." + +#: plugins/SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Solide weergave" + +#: plugins/SupportEraser/__init__.py:12 msgctxt "@label" msgid "Support Blocker" msgstr "Supportblokkering" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 +#: plugins/SupportEraser/__init__.py:13 msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "Maak een volume waarin supportstructuren niet worden geprint." -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 +#: plugins/SupportEraser/plugin.json +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" + +#: plugins/SupportEraser/plugin.json +msgctxt "name" +msgid "Support Eraser" +msgstr "Supportwisser" + +#: plugins/TrimeshReader/__init__.py:15 msgctxt "@item:inlistbox 'Open' is part of the name of this file format." msgid "Open Compressed Triangle Mesh" msgstr "Gecomprimeerde driehoeksnet openen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: plugins/TrimeshReader/__init__.py:19 msgctxt "@item:inlistbox" msgid "COLLADA Digital Asset Exchange" msgstr "COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: plugins/TrimeshReader/__init__.py:23 msgctxt "@item:inlistbox" msgid "glTF Binary" msgstr "glTF-binair" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: plugins/TrimeshReader/__init__.py:27 msgctxt "@item:inlistbox" msgid "glTF Embedded JSON" msgstr "glTF-ingesloten JSON" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: plugins/TrimeshReader/__init__.py:36 msgctxt "@item:inlistbox" msgid "Stanford Triangle Format" msgstr "Stanford-driehoeksformaat" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: plugins/TrimeshReader/__init__.py:40 msgctxt "@item:inlistbox" msgid "Compressed COLLADA Digital Asset Exchange" msgstr "Gecomprimeerde COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker Format Package" +#: plugins/TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Biedt ondersteuning voor het lezen van modelbestanden." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 +#: plugins/TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh-lezer" + +#: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "UltiMaker Format Package" +msgstr "UltiMaker Format Package" + +#: plugins/UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Deze optie biedt ondersteuning voor het lezen van UltiMaker Format Packages." + +#: plugins/UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP-lezer" + +#: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80 +#: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115 +#: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180 msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "Kan niet naar UFP-bestand schrijven:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Platform kalibreren" +#: plugins/UFPWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Deze optie biedt ondersteuning voor het schrijven van UltiMaker Format Packages." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Upgrades selecteren" +#: plugins/UFPWriter/plugin.json +msgctxt "name" +msgid "UFP Writer" +msgstr "UFP-schrijver" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Hiermee beheert u netwerkverbindingen naar UltiMaker-netwerkprinters." + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "UltiMaker-netwerkverbinding" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Verbinding Maken met Printer in het Netwerk" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Selecteer uw printer in de onderstaande lijst:" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +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 "Als u rechtstreeks via het netwerk wilt printen naar de printer, moet u ervoor zorgen dat de printer met een netwerkkabel is verbonden met het netwerk of moet u verbinding maken met de printer via het wifi-netwerk. Als u geen verbinding maakt tussen Cura en de printer, kunt u een USB-station gebruiken om G-code-bestanden naar de printer over te zetten." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 +msgctxt "@action:button" +msgid "Edit" +msgstr "Bewerken" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 +#: resources/qml/Preferences/MachinesPage.qml:153 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:186 +#: resources/qml/Preferences/ProfilesPage.qml:321 +msgctxt "@action:button" +msgid "Remove" +msgstr "Verwijderen" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Vernieuwen" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 +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" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 +msgctxt "@label" +msgid "Type" +msgstr "Type" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 +msgctxt "@label" +msgid "Firmware version" +msgstr "Firmwareversie" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 +msgctxt "@label" +msgid "Address" +msgstr "Adres" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Deze printer is niet ingesteld voor het hosten van een groep printers." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Deze printer is de host voor een groep van %1 printers." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "De printer op dit adres heeft nog niet gereageerd." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" +msgid "Connect" +msgstr "Verbinden" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Ongeldig IP-adres" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Voer een geldig IP-adres in." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Printeradres" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Voer het IP-adres van uw printer in het netwerk in." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Configuratiewijzigingen" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 +msgctxt "@action:button" +msgid "Override" +msgstr "Overschrijven" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "Voor de toegewezen printer, %1, is de volgende configuratiewijziging vereist:" +msgstr[1] "Voor de toegewezen printer, %1, zijn de volgende configuratiewijzigingen vereist:" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "De printer %1 is toegewezen. De taak bevat echter een onbekende materiaalconfiguratie." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Wijzig het materiaal %1 van %2 in %3." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "Laad %3 als materiaal %1 (kan niet worden overschreven)." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Wijzig de print core %1 van %2 in %3." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "Met het overschrijven worden de opgegeven instellingen gebruikt met de bestaande printerconfiguratie. De print kan hierdoor mislukken." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@label" +msgid "Move to top" +msgstr "Plaats bovenaan" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155 +msgctxt "@label" +msgid "Delete" +msgstr "Verwijderen" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186 +#: resources/qml/MonitorButton.qml:284 +msgctxt "@label" +msgid "Resume" +msgstr "Hervatten" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188 +msgctxt "@label" +msgid "Pausing..." +msgstr "Pauzeren..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190 +msgctxt "@label" +msgid "Resuming..." +msgstr "Hervatten..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192 +#: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288 +msgctxt "@label" +msgid "Pause" +msgstr "Pauzeren" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Abort" +msgstr "Afbreken" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Aborting..." +msgstr "Afbreken..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218 +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 "Weet u zeker dat u %1 bovenaan de wachtrij wilt plaatsen?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Plaats printtaak bovenaan" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "Weet u zeker dat u %1 wilt verwijderen?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Printtaak verwijderen" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "Weet u zeker dat u %1 wilt afbreken?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237 +#: resources/qml/MonitorButton.qml:326 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Printen afbreken" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Niet‑beschikbare printer" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 +msgctxt "@label" +msgid "First available" +msgstr "Eerst beschikbaar" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Werk de firmware van uw printer bij om de wachtrij op afstand te beheren." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +msgctxt "@label:status" +msgid "Aborted" +msgstr "Afgebroken" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 +msgctxt "@label:status" +msgid "Finished" +msgstr "Gereed" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Voorbereiden..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "Afbreken..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +msgctxt "@label:status" +msgid "Failed" +msgstr "Mislukt" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Pauzeren..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Paused" +msgstr "Gepauzeerd" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Hervatten..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Action required" +msgstr "Handeling nodig" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Voltooit %1 om %2" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Printer beheren" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280 +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 "Vanuit UltiMaker Cura kunt u de webcamfeeds voor cloudprinters niet bekijken. Klik op 'Printer beheren' om Ultimaker Digital Factory te bezoeken en deze webcam te bekijken." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Laden..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Niet beschikbaar" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Onbereikbaar" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Idle" +msgstr "Inactief" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361 +msgctxt "@label:status" +msgid "Printing" +msgstr "Printen" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402 +msgctxt "@label" +msgid "Untitled" +msgstr "Zonder titel" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417 +msgctxt "@label" +msgid "Anonymous" +msgstr "Anoniem" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Hiervoor zijn configuratiewijzigingen vereist" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452 +msgctxt "@action:button" +msgid "Details" +msgstr "Details" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 +msgctxt "@label" +msgid "Queued" +msgstr "In wachtrij" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Beheren in browser" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "Er staan geen afdruktaken in de wachtrij. Slice een taak en verzend deze om er een toe te voegen." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "Print jobs" +msgstr "Printtaken" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108 +msgctxt "@label" +msgid "Total print time" +msgstr "Totale printtijd" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117 +msgctxt "@label" +msgid "Waiting for" +msgstr "Wachten op" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117 +msgctxt "@info" +msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" +msgstr "Monitor uw printers overal met Ultimaker Digital Factory" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129 +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Printers weergeven in Digital Factory" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Printen via netwerk" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 +msgctxt "@action:button" +msgid "Print" +msgstr "Printen" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 +msgctxt "@label" +msgid "Printer selection" +msgstr "Printerselectie" + +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162 msgctxt "@action:button" msgid "Print via cloud" msgstr "Printen via Cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Printen via Cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Verbonden via Cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276 msgctxt "@action:button" msgid "Monitor print" msgstr "Printen in de gaten houden" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278 msgctxt "@action:tooltip" msgid "Track the print in Ultimaker Digital Factory" msgstr "Volg het printen in Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Onbekende foutcode bij uploaden printtaak: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "Nieuwe printer gedetecteerd van uw Ultimaker-account" -msgstr[1] "Nieuwe printers gedetecteerd van uw Ultimaker-account" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:242 -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "Printer {name} ({model}) toevoegen vanaf uw account" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:261 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "... en {0} andere" -msgstr[1] "... en {0} andere" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:266 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "Printers toegevoegd vanuit Digital Factory:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:334 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "Een cloudverbinding is niet beschikbaar voor een printer" -msgstr[1] "Een cloudverbinding is niet beschikbaar voor meerdere printers" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:343 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "Deze printer is niet gekoppeld aan de Digital Factory:" -msgstr[1] "Deze printers zijn niet gekoppeld aan de Digital Factory:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:348 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:440 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:352 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "Ga naar {website_link} om een verbinding tot stand te brengen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:356 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "Printerconfiguraties behouden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "Printers verwijderen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:442 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425 #, 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} wordt verwijderd tot de volgende accountsynchronisatie." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:443 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426 #, 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 "Bezoek {digital_factory_link} om {printer_name} permanent te verwijderen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:444 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427 #, 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 "Weet u zeker dat u {printer_name} tijdelijk wilt verwijderen?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474 msgctxt "@title:window" msgid "Remove printers?" msgstr "Printers verwijderen?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477 #, python-brace-format msgctxt "@label" msgid "" @@ -1668,7 +3485,7 @@ msgstr[1] "" "U staat op het punt om {0} printers uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt.\n" "Weet u zeker dat u door wilt gaan?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be undone.\n" @@ -1677,7 +3494,7 @@ msgstr "" "U staat op het punt om alle printers uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt.\n" "Weet u zeker dat u door wilt gaan?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, python-brace-format msgctxt "@info:status" msgid "" @@ -1687,2493 +3504,1375 @@ msgstr "" "U kunt uw printer {printer_name} via de cloud verbinden.\n" " Beheer uw printerwachtrij en controleer uw prints vanaf elke plek door uw printer te verbinden met Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 msgctxt "@info:title" msgid "Are you ready for cloud printing?" msgstr "Bent u klaar voor printen via de cloud?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 msgctxt "@action" msgid "Get started" msgstr "Aan de slag" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24 msgctxt "@action" msgid "Learn more" msgstr "Meer informatie" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 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 "U probeert verbinding te maken met een printer waarop Ultimaker Connect niet wordt uitgevoerd. Werk de printer bij naar de nieuwste firmware." +msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." +msgstr "U probeert verbinding te maken met een printer waarop UltiMaker Connect niet wordt uitgevoerd. Werk de printer bij naar de nieuwste firmware." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 msgctxt "@info:title" msgid "Update your printer" msgstr "Uw printer bijwerken" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 #, 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 heeft materiaalprofielen gedetecteerd die nog niet op de hostprinter van groep {0} zijn geïnstalleerd." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 msgctxt "@info:title" msgid "Sending materials to printer" msgstr "De materialen worden naar de printer verzonden" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "Nieuwe printer gedetecteerd van uw Ultimaker-account" +msgstr[1] "Nieuwe printers gedetecteerd van uw Ultimaker-account" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29 +#, python-brace-format +msgctxt "info:status Filled in with printer name and printer model." +msgid "Adding printer {name} ({model}) from your account" +msgstr "Printer {name} ({model}) toevoegen vanaf uw account" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "... en {0} andere" +msgstr[1] "... en {0} andere" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "Printers toegevoegd vanuit Digital Factory:" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 #, 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 "U probeert verbinding te maken met {0}, maar deze is niet de host van een groep. U kunt de webpagina bezoeken om deze als groephost te configureren." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 msgctxt "@info:title" msgid "Not a group host" msgstr "Geen groephost" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 msgctxt "@action" msgid "Configure group" msgstr "Groep configureren" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18 +msgctxt "@info:status" +msgid "You will receive a confirmation via email when the print job is approved" +msgstr "U ontvangt een bevestiging via e-mail wanneer de printtaak is goedgekeurd" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19 +msgctxt "@info:title" +msgid "The print job was successfully submitted" +msgstr "De printtaak is succesvol ingediend" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22 +msgctxt "@action" +msgid "Manage print jobs" +msgstr "Printtaken beheren" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 msgctxt "@info:status" msgid "Please wait until the current job has been sent." msgstr "Wacht tot de huidige taak is verzonden." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 msgctxt "@info:title" msgid "Print error" msgstr "Printfout" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Kan de gegevens niet uploaden naar de printer." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 msgctxt "@info:title" msgid "Network error" msgstr "Netwerkfout" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 msgctxt "@info:status" msgid "Sending Print Job" msgstr "Printtaak verzenden" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 msgctxt "@info:status" msgid "Uploading print job to printer." msgstr "Printtaak naar printer aan het uploaden." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 msgctxt "@info:status" msgid "Print job queue is full. The printer can't accept a new job." msgstr "Wachtrij voor afdruktaken is vol. De printer kan geen nieuwe taken accepteren." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 msgctxt "@info:title" msgid "Queue Full" msgstr "Wachtrij vol" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "De printtaak is naar de printer verzonden." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 msgctxt "@info:title" msgid "Data Sent" msgstr "Gegevens verzonden" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "Deze printer is niet gekoppeld aan de Digital Factory:" +msgstr[1] "Deze printers zijn niet gekoppeld aan de Digital Factory:" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "Ga naar {website_link} om een verbinding tot stand te brengen" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "Een cloudverbinding is niet beschikbaar voor een printer" +msgstr[1] "Een cloudverbinding is niet beschikbaar voor meerdere printers" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "Printerconfiguraties behouden" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "Printers verwijderen" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "Printen via netwerk" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "Printen via netwerk" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64 msgctxt "@info:status" msgid "Connected over the network" msgstr "Via het netwerk verbonden" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 msgctxt "@action" msgid "Connect via Network" msgstr "Verbinding Maken via Netwerk" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +#: plugins/UM3NetworkPrinting/src/Utils.py:27 msgctxt "@info:status" msgid "tomorrow" msgstr "morgen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +#: plugins/UM3NetworkPrinting/src/Utils.py:30 msgctxt "@info:status" msgid "today" msgstr "vandaag" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:42 msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB-printen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:43 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print via USB" msgstr "Printen via USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:44 msgctxt "@info:tooltip" msgid "Print via USB" msgstr "Via USB Printen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:80 msgctxt "@info:status" msgid "Connected via USB" msgstr "Aangesloten via USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:110 msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" msgstr "Er wordt momenteel via USB geprint. Wanneer u Cura afsluit, wordt het printen gestopt. Weet u zeker dat u wilt afsluiten?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:135 msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Er wordt nog een print afgedrukt. Cura kan pas een nieuwe print via USB starten zodra de vorige print is voltooid." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:136 msgctxt "@message" msgid "Print in Progress" msgstr "Bezig met printen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D-bestand" +#: plugins/USBPrinting/plugin.json +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." -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Röntgenweergave" +#: plugins/USBPrinting/plugin.json +msgctxt "name" +msgid "USB printing" +msgstr "USB-printen" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 -msgctxt "@title:window" -msgid "Open Project" -msgstr "Project openen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "Bestaand(e) bijwerken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "Nieuw maken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:59 -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "Samenvatting - Cura-project" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108 -msgctxt "@info:tooltip" -msgid "How should the conflict in the machine be resolved?" -msgstr "Hoe dient het conflict in de machine te worden opgelost?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:95 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Printerinstellingen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:104 -msgctxt "@action:label" -msgid "Type" -msgstr "Type" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:192 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -msgctxt "@action:label" -msgid "Printer Group" -msgstr "Printergroep" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:217 -msgctxt "@info:tooltip" -msgid "How should the conflict in the profile be resolved?" -msgstr "Hoe dient het conflict in het profiel te worden opgelost?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:220 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Profielinstellingen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:250 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:375 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:244 -msgctxt "@action:label" -msgid "Name" -msgstr "Naam" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:268 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:261 -msgctxt "@action:label" -msgid "Intent" -msgstr "Intent" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:286 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:228 -msgctxt "@action:label" -msgid "Not in profile" -msgstr "Niet in profiel" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:292 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:233 -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "%1 overschrijving" -msgstr[1] "%1 overschrijvingen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 -msgctxt "@action:label" -msgid "Derivative from" -msgstr "Afgeleide van" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:311 -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "%1, %2 overschrijving" -msgstr[1] "%1, %2 overschrijvingen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:333 -msgctxt "@info:tooltip" -msgid "How should the conflict in the material be resolved?" -msgstr "Hoe dient het materiaalconflict te worden opgelost?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:360 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Materiaalinstellingen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:396 -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "Zichtbaarheid instellen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 -msgctxt "@action:label" -msgid "Mode" -msgstr "Modus" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 -msgctxt "@action:label" -msgid "Visible settings:" -msgstr "Zichtbare instellingen:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "%1 van %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:447 -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "Als u een project laadt, worden alle modellen van het platform gewist." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 -msgctxt "@action:button" -msgid "Open" -msgstr "Openen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 -msgctxt "@action:button" -msgid "Open project anyway" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 -msgctxt "@action:button" -msgid "Install missing material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Wilt u meer?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Nu back-up maken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Auto back-up" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Maak elke dag dat Cura wordt gestart, automatisch een back-up." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 -msgctxt "@button" -msgid "Restore" -msgstr "Herstellen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Back-up verwijderen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Weet u zeker dat u deze back-up wilt verwijderen? Dit kan niet ongedaan worden gemaakt." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Back-up herstellen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "U moet Cura opnieuw starten voordat uw back-up wordt hersteld. Wilt u Cura nu sluiten?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura-versie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Machines" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materialen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profielen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Plug-ins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura-back-ups" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Mijn back-ups" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "U hebt momenteel geen back-ups. Gebruik de knop 'Nu back-up maken' om een back-up te maken." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Tijdens de voorbeeldfase zijn er maximaal 5 back-ups zichtbaar. Verwijder een back-up als u oudere back-ups wilt bekijken." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Maak een back-up van uw Cura-instellingen en synchroniseer deze." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:212 -msgctxt "@button" -msgid "Sign in" -msgstr "Aanmelden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 -msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 -msgctxt "@option" -msgid "Save Cura project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Firmware bijwerken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 -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 "Firmware is de software die direct op de 3D-printer wordt uitgevoerd. Deze firmware bedient de stappenmotoren, regelt de temperatuur en zorgt er in feite voor dat de printer doet wat deze moet doen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 -msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "De firmware die bij nieuwe printers wordt geleverd, werkt wel, maar nieuwe versies hebben vaak meer functies en verbeteringen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Firmware-upgrade Automatisch Uitvoeren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Aangepaste Firmware Uploaden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "Kan de firmware niet bijwerken omdat er geen verbinding met de printer is." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 -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." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Aangepaste firmware selecteren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Firmware-update" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 -msgctxt "@label" -msgid "Updating firmware." -msgstr "De firmware wordt bijgewerkt." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "De firmware-update is voltooid." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Firmware-update mislukt door een onbekende fout." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Firmware-update mislukt door een communicatiefout." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Firmware-update mislukt door een invoer-/uitvoerfout." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Firmware-update mislukt door ontbrekende firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:14 -msgctxt "@title:window" -msgid "Convert Image" -msgstr "Afbeelding converteren..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 -msgctxt "@action:label" -msgid "Height (mm)" -msgstr "Hoogte (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "De maximale afstand van elke pixel tot de \"Basis\"." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 -msgctxt "@action:label" -msgid "Base (mm)" -msgstr "Basis (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 -msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "De basishoogte van het platform in millimeters." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 -msgctxt "@action:label" -msgid "Width (mm)" -msgstr "Breedte (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 -msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate" -msgstr "De breedte op het platform in millimeters" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 -msgctxt "@action:label" -msgid "Depth (mm)" -msgstr "Diepte (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 -msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "De diepte op het platform in millimeters" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 -msgctxt "@item:inlistbox" -msgid "Darker is higher" -msgstr "Donkerder is hoger" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -msgctxt "@item:inlistbox" -msgid "Lighter is higher" -msgstr "Lichter is hoger" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 -msgctxt "@info:tooltip" -msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." -msgstr "Bij lithofanen dienen donkere pixels overeen te komen met de dikkere plekken om meer licht tegen te houden. Bij hoogtekaarten geven lichtere pixels hoger terrein aan. Lichtere pixels dienen daarom overeen te komen met dikkere plekken in het gegenereerde 3D-model." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:205 -msgctxt "@action:label" -msgid "Color Model" -msgstr "Kleur model" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:224 -msgctxt "@item:inlistbox" -msgid "Linear" -msgstr "Lineair" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 -msgctxt "@item:inlistbox" -msgid "Translucency" -msgstr "Doorschijnendheid" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 -msgctxt "@info:tooltip" -msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." -msgstr "Voor lithofanen is een eenvoudig logaritmisch model voor doorschijnendheid beschikbaar. Voor hoogtekaarten corresponderen de pixelwaarden lineair met hoogten." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 -msgctxt "@action:label" -msgid "1mm Transmittance (%)" -msgstr "Transmissie 1 mm (%)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 -msgctxt "@info:tooltip" -msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." -msgstr "Het percentage licht dat doordringt in een print met een dikte van 1 millimeter. Een lagere waarde verhoogt het contrast in donkere gebieden en verlaagt het contrast in lichte gebieden van de afbeelding." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 -msgctxt "@action:label" -msgid "Smoothing" -msgstr "Effenen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:298 -msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "De mate van effening die op de afbeelding moet worden toegepast." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:143 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:80 -msgctxt "@action:button" -msgid "OK" -msgstr "OK" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Printer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Nozzle-instellingen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Maat nozzle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Compatibele materiaaldiameter" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Nozzle-offset X" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Nozzle-offset Y" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Nummer van koelventilator" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Start-G-code van extruder" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Eind-G-code van extruder" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Printerinstellingen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (Breedte)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Diepte)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Hoogte)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Vorm van het platform" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 -msgctxt "@label" -msgid "Origin at center" -msgstr "Centraal oorsprongpunt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 -msgctxt "@label" -msgid "Heated bed" -msgstr "Verwarmd bed" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Verwarmde werkvolume" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 -msgctxt "@label" -msgid "G-code flavor" -msgstr "Versie G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Printkopinstellingen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 -msgctxt "@label" -msgid "X min" -msgstr "X min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 -msgctxt "@label" -msgid "Y min" -msgstr "Y min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 -msgctxt "@label" -msgid "X max" -msgstr "X max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 -msgctxt "@label" -msgid "Y max" -msgstr "Y max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Rijbrughoogte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Aantal extruders" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Pas extruderoffsets toe op GCode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "Start G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400 -msgctxt "@title:label" -msgid "End G-code" -msgstr "Eind G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 -msgctxt "@title" -msgid "Changes from your account" -msgstr "Wijzigingen van uw account" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -msgctxt "@button" -msgid "Dismiss" -msgstr "Verwijderen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:118 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:175 -msgctxt "@button" -msgid "Next" -msgstr "Volgende" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "De volgende packages worden toegevoegd:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "De volgende packages kunnen niet worden geïnstalleerd omdat de Cura-versie niet compatibel is:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 -msgctxt "@title" -msgid "Install missing Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 -msgctxt "@button" -msgid "Plugin license agreement" -msgstr "Licentieovereenkomst plug-in" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47 -msgctxt "@text" -msgid "Please read and agree with the plugin licence." -msgstr "Lees de plug-in-licentie en stem hiermee in." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 -msgctxt "@button" -msgid "Accept" -msgstr "Ja, ik ga akkoord" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 -msgctxt "@header" -msgid "Manage packages" -msgstr "Pakketten beheren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15 -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." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 -msgctxt "@info:tooltip" -msgid "Manage packages" -msgstr "Pakketten beheren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 -msgctxt "@title" -msgid "Loading..." -msgstr "Laden..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 -msgctxt "@button" -msgid "Plugins" -msgstr "Plug-ins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 -msgctxt "@button" -msgid "Materials" -msgstr "Materialen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 -msgctxt "@info" -msgid "Search in the browser" -msgstr "Zoeken in browser" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:271 -msgctxt "@button" -msgid "In order to use the package you will need to restart Cura" -msgstr "Om het pakket te gebruiken moet u Cura opnieuw opstarten" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:279 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Sluit %1" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:8 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MissingPackages.qml:8 -msgctxt "@header" -msgid "Install Materials" -msgstr "Materialen installeren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 -msgctxt "@text" -msgid "Select and install material profiles optimised for your Ultimaker 3D printers." -msgstr "Selecteer en installeer materiaalprofielen die zijn geoptimaliseerd voor uw Ultimaker 3D-printers." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "U moet de licentie accepteren om de package te installeren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:101 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:207 -msgctxt "@button:label" -msgid "Learn More" -msgstr "Meer Informatie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:172 -msgctxt "@label Is followed by the name of an author" -msgid "By" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Enable" -msgstr "Inschakelen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Disable" -msgstr "Uitschakelen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 -msgctxt "@button" -msgid "Downgrading..." -msgstr "Downgraden..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 -msgctxt "@button" -msgid "Downgrade" -msgstr "Downgraden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 -msgctxt "@button" -msgid "Installing..." -msgstr "Installeren..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 -msgctxt "@button" -msgid "Install" -msgstr "Installeren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 -msgctxt "@button" -msgid "Uninstall" -msgstr "De-installeren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Updating..." -msgstr "Updaten..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Update" -msgstr "Bijwerken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 -msgctxt "@header" -msgid "Package details" -msgstr "Pakketgegevens" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 -msgctxt "@button:tooltip" -msgid "Back" -msgstr "Terug" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 -msgctxt "@header" -msgid "Description" -msgstr "Beschrijving" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 -msgctxt "@header" -msgid "Compatible printers" -msgstr "Compatibele printers" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:134 -msgctxt "@info" -msgid "No compatibility information" -msgstr "Geen compatibiliteitsinformatie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:152 -msgctxt "@header" -msgid "Compatible support materials" -msgstr "Compatibele ondersteuningsmaterialen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176 -msgctxt "@info No materials" -msgid "None" -msgstr "Geen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:193 -msgctxt "@header" -msgid "Compatible with Material Station" -msgstr "Compatibel met Material Station" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "Yes" -msgstr "Ja" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "No" -msgstr "Nee" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:219 -msgctxt "@header" -msgid "Optimized for Air Manager" -msgstr "Geoptimaliseerd voor Air Manager" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Visit plug-in website" -msgstr "Bezoek de plug-in-website" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Website" -msgstr "Website" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:252 -msgctxt "@button" -msgid "Buy spool" -msgstr "Koop spoel" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:261 -msgctxt "@button" -msgid "Safety datasheet" -msgstr "Informatieblad veiligheid" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:270 -msgctxt "@button" -msgid "Technical datasheet" -msgstr "Technisch informatieblad" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Failed to load packages:" -msgstr "Kan pakketten niet laden:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Retry?" -msgstr "Opnieuw proberen?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:167 -msgctxt "@button" -msgid "Loading" -msgstr "Laden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No more results to load" -msgstr "Geen resultaten meer om te laden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No results found with current filter" -msgstr "Geen resultaten gevonden met huidige filter" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:226 -msgctxt "@button" -msgid "Load more" -msgstr "Meer laden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8 -msgctxt "@header" -msgid "Install Plugins" -msgstr "Plugins installeren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12 -msgctxt "@text" -msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users." -msgstr "Stroomlijn uw workflow en pas uw Ultimaker Cura-ervaring aan de eisen aan met plugins die zijn geleverd door onze fantastische gebruikersgemeenschap." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 -msgctxt "@info" -msgid "Ultimaker Verified Plug-in" -msgstr "Geverifieerde Ultimaker-plug-in" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 -msgctxt "@info" -msgid "Ultimaker Certified Material" -msgstr "Gecertificeerd Ultimaker-materiaal" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 -msgctxt "@info" -msgid "Ultimaker Verified Package" -msgstr "Geverifieerd Ultimaker-pakket" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 -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 "" -"Controleer of de printer verbonden is:\n" -"- Controleer of de printer ingeschakeld is.\n" -"- Controleer of de printer verbonden is met het netwerk.\n" -"- Controleer of u bent aangemeld om met de cloud verbonden printers te detecteren." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 -msgctxt "@info" -msgid "Please connect your printer to the network." -msgstr "Verbind uw printer met het netwerk." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 -msgctxt "@label link to technical assistance" -msgid "View user manuals online" -msgstr "Gebruikershandleidingen online weergegeven" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:163 -msgctxt "@info" -msgid "In order to monitor your print from Cura, please connect the printer." -msgstr "Sluit de printer aan om uw printopdracht vanuit Cura te volgen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Rastertype" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 -msgctxt "@label" -msgid "Normal model" -msgstr "Normaal model" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 -msgctxt "@label" -msgid "Print as support" -msgstr "Printen als supportstructuur" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Instellingen aanpassen voor overlapping" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Supportstructuur niet laten overlappen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Alleen vulraster" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Snijdend raster" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Instellingen selecteren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Instellingen Selecteren om Dit Model Aan te Passen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filteren..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Alles weergeven" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Plug-in voor Nabewerking" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Scripts voor Nabewerking" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" -msgid "Add a script" -msgstr "Een script toevoegen" +msgid "Level build plate" +msgstr "Platform kalibreren" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 -msgctxt "@label" -msgid "Settings" -msgstr "Instellingen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:459 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Actieve scripts voor nabewerking wijzigen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:463 -msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "Het volgende script is actief:" -msgstr[1] "De volgende scripts zijn actief:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:47 -msgctxt "@label" -msgid "Color scheme" -msgstr "Kleurenschema" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Materiaalkleur" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Lijntype" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Snelheid" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Laagdikte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Lijnbreedte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Doorvoer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Compatibiliteitsmodus" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 -msgctxt "@label" -msgid "Travels" -msgstr "Bewegingen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 -msgctxt "@label" -msgid "Helpers" -msgstr "Helpers" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 -msgctxt "@label" -msgid "Shell" -msgstr "Shell" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:64 -msgctxt "@label" -msgid "Infill" -msgstr "Vulling" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Starts" -msgstr "Wordt gestart" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Alleen bovenlagen weergegeven" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "5 gedetailleerde lagen bovenaan weergeven" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Boven-/onderkant" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Binnenwand" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 -msgctxt "@label" -msgid "min" -msgstr "min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 -msgctxt "@label" -msgid "max" -msgstr "max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Meer informatie over anonieme gegevensverzameling" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 -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 verzamelt anonieme gegevens om de printkwaliteit en gebruikerservaring te verbeteren. Hieronder ziet u een voorbeeld van alle gegevens die worden gedeeld:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Ik wil geen anonieme gegevens verzenden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Verzenden van anonieme gegevens toestaan" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 msgctxt "@title" msgid "Build Plate Leveling" msgstr "Platform Kalibreren" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 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 "Je kan nu je platform afstellen, zodat uw prints er altijd fantastisch uitzien. Als u op 'Naar de volgende positie bewegen' klikt, beweegt de nozzle naar de verschillende instelbare posities." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 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 "Voor elke positie legt u een stukje papier onder de nozzle en past u de hoogte van het printplatform aan. De hoogte van het printplatform is goed wanneer het papier net door de punt van de nozzle wordt meegenomen." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 msgctxt "@action:button" msgid "Start Build Plate Leveling" msgstr "Kalibratie Platform Starten" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 msgctxt "@action:button" msgid "Move to Next Position" msgstr "Beweeg Naar de Volgende Positie" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Selecteer eventuele upgrades die op deze Ultimaker Original zijn uitgevoerd" +#: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "Upgrades selecteren" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this UltiMaker Original" +msgstr "Selecteer eventuele upgrades die op deze UltiMaker Original zijn uitgevoerd" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 msgctxt "@label" msgid "Heated Build Plate (official kit or self-built)" msgstr "Verwarmd Platform (officiële kit of zelf gebouwd)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Verbinding Maken met Printer in het Netwerk" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -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 "Als u rechtstreeks via het netwerk wilt printen naar de printer, moet u ervoor zorgen dat de printer met een netwerkkabel is verbonden met het netwerk of moet u verbinding maken met de printer via het wifi-netwerk. Als u geen verbinding maakt tussen Cura en de printer, kunt u een USB-station gebruiken om G-code-bestanden naar de printer over te zetten." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Selecteer uw printer in de onderstaande lijst:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 -msgctxt "@action:button" -msgid "Edit" -msgstr "Bewerken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:140 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:321 -msgctxt "@action:button" -msgid "Remove" -msgstr "Verwijderen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Vernieuwen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 -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" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 -msgctxt "@label" -msgid "Type" -msgstr "Type" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 -msgctxt "@label" -msgid "Firmware version" -msgstr "Firmwareversie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 -msgctxt "@label" -msgid "Address" -msgstr "Adres" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Deze printer is niet ingesteld voor het hosten van een groep printers." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Deze printer is de host voor een groep van %1 printers." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "De printer op dit adres heeft nog niet gereageerd." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 -msgctxt "@action:button" -msgid "Connect" -msgstr "Verbinden" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Ongeldig IP-adres" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Voer een geldig IP-adres in." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Printeradres" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Voer het IP-adres van uw printer in het netwerk in." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Configuratiewijzigingen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 -msgctxt "@action:button" -msgid "Override" -msgstr "Overschrijven" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "Voor de toegewezen printer, %1, is de volgende configuratiewijziging vereist:" -msgstr[1] "Voor de toegewezen printer, %1, zijn de volgende configuratiewijzigingen vereist:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "De printer %1 is toegewezen. De taak bevat echter een onbekende materiaalconfiguratie." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Wijzig het materiaal %1 van %2 in %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Laad %3 als materiaal %1 (kan niet worden overschreven)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Wijzig de print core %1 van %2 in %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Wijzig het platform naar %1 (kan niet worden overschreven)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "Met het overschrijven worden de opgegeven instellingen gebruikt met de bestaande printerconfiguratie. De print kan hierdoor mislukken." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:178 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:175 -msgctxt "@label" -msgid "Glass" -msgstr "Glas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154 -msgctxt "@label" -msgid "Aluminum" -msgstr "Aluminium" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Plaats bovenaan" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Verwijderen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:284 -msgctxt "@label" -msgid "Resume" -msgstr "Hervatten" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Pauzeren..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Hervatten..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:288 -msgctxt "@label" -msgid "Pause" -msgstr "Pauzeren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Afbreken..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Afbreken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:142 -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 "Weet u zeker dat u %1 bovenaan de wachtrij wilt plaatsen?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Plaats printtaak bovenaan" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:151 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "Weet u zeker dat u %1 wilt verwijderen?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Printtaak verwijderen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:160 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "Weet u zeker dat u %1 wilt afbreken?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Printen afbreken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Printer beheren" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:239 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Werk de firmware van uw printer bij om de wachtrij op afstand te beheren." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:275 -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 "Vanuit Ultimaker Cura kunt u de webcamfeeds voor cloudprinters niet bekijken. Klik op 'Printer beheren' om Ultimaker Digital Factory te bezoeken en deze webcam te bekijken." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Laden..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Niet beschikbaar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Onbereikbaar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347 -msgctxt "@label:status" -msgid "Idle" -msgstr "Inactief" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Voorbereiden..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Printing" -msgstr "Printen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397 -msgctxt "@label" -msgid "Untitled" -msgstr "Zonder titel" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:412 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anoniem" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:433 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Hiervoor zijn configuratiewijzigingen vereist" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:447 -msgctxt "@action:button" -msgid "Details" -msgstr "Details" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Niet‑beschikbare printer" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 -msgctxt "@label" -msgid "First available" -msgstr "Eerst beschikbaar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Afgebroken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 -msgctxt "@label:status" -msgid "Finished" -msgstr "Gereed" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Afbreken..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Failed" -msgstr "Mislukt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Pauzeren..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Paused" -msgstr "Gepauzeerd" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Hervatten..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Action required" -msgstr "Handeling nodig" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Voltooit %1 om %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 -msgctxt "@label" -msgid "Queued" -msgstr "In wachtrij" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Beheren in browser" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:90 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "Er staan geen afdruktaken in de wachtrij. Slice een taak en verzend deze om er een toe te voegen." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:98 -msgctxt "@label" -msgid "Print jobs" -msgstr "Printtaken" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107 -msgctxt "@label" -msgid "Total print time" -msgstr "Totale printtijd" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116 -msgctxt "@label" -msgid "Waiting for" -msgstr "Wachten op" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Printen via netwerk" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 -msgctxt "@action:button" -msgid "Print" -msgstr "Printen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 -msgctxt "@label" -msgid "Printer selection" -msgstr "Printerselectie" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 +#: plugins/UltimakerMachineActions/plugin.json +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.)" + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Acties UltiMaker-machines" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Versie-upgrade van 2.1 naar 2.2" + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Versie-upgrade van 2.2 naar 2.4" + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Versie-upgrade van 2.5 naar 2.6" + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Versie-upgrade van 2.6 naar 2.7" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Versie-upgrade van 2.7 naar 3.0" + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Versie-upgrade van 3.0 naar 3.1" + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Versie-upgrade van 3.2 naar 3.3" + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Versie-upgrade van 3.3 naar 3.4" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Versie-upgrade van 3.4 naar 3.5" + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Versie-upgrade van 3.5 naar 4.0" + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Versie-upgrade van 4.0 naar 4.1" + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Versie-upgrade van 4.11 naar 4.12" + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Versie-upgrade 4.13 naar 5.0" + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Versie-upgrade van 4.1 naar 4.2" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Versie-upgrade van 4.2 naar 4.3" + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Versie-upgrade van 4.3 naar 4.4" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Versie-upgrade van 4.4 naar 4.5" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Versie-upgrade van 4.5 naar 4.6" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Versie-upgrade van 4.6.0 naar 4.6.2" + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Versie-upgrade van 4.6.2 naar 4.7" + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Versie-upgrade van 4.7 naar 4.8" + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Versie-upgrade van 4.8 naar 4.9" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Versie-upgrade 4.9 naar 4.10" + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Versie-upgrade van 5.2 naar 5.3" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "" + +#: plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3D-bestand" + +#: plugins/X3DReader/plugin.json +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Deze optie biedt ondersteuning voor het lezen van X3D-bestanden." + +#: plugins/X3DReader/plugin.json +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D-lezer" + +#: plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Röntgenweergave" + +#: plugins/XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Biedt de röntgenweergave." + +#: plugins/XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Röntgenweergave" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Materiaalprofielen" + +#: plugins/XmlMaterialProfile/plugin.json +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." + +#: resources/qml/Account/AccountWidget.qml:24 msgctxt "@action:button" msgid "Sign in" msgstr "Aanmelden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: resources/qml/Account/GeneralOperations.qml:19 +#: resources/qml/WelcomePages/CloudContent.qml:64 msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Meld u aan op het Ultimaker-platform" +msgid "Sign in to the UltiMaker platform" +msgstr "Meld u aan op het UltiMaker-platform" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 +#: resources/qml/Account/GeneralOperations.qml:39 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" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" msgstr "" -"- Voeg materiaalprofielen en plug-ins toe uit de Marketplace\n" +"- Voeg materiaalprofielen en plug-ins toe uit de Marktplaats\n" "- Maak back-ups van uw materiaalprofielen en plug-ins en synchroniseer deze\n" "- Deel ideeën met 48.000+ gebruikers in de Ultimaker-community of vraag hen om ondersteuning" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 +#: resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "Maak een gratis Ultimaker-account aan" +msgid "Create a free UltiMaker account" +msgstr "Maak een gratis UltiMaker-account aan" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 +#: resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "Aan het controleren..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 +#: resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "Account gesynchroniseerd" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 +#: resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "Er is een fout opgetreden..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 +#: resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "Updates in afwachting installeren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 +#: resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "Controleren op accountupdates" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +#: resources/qml/Account/UserOperations.qml:78 msgctxt "@label The argument is a timestamp" msgid "Last update: %1" msgstr "Laatste update: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +#: resources/qml/Account/UserOperations.qml:107 msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimaker-account" +msgid "UltiMaker Account" +msgstr "UltiMaker-account" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +#: resources/qml/Account/UserOperations.qml:126 msgctxt "@button" msgid "Sign Out" msgstr "Afmelden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" msgid "No time estimation available" msgstr "Geen tijdschatting beschikbaar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:77 msgctxt "@label" msgid "No cost estimation available" msgstr "Geen kostenraming beschikbaar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:127 msgctxt "@button" msgid "Preview" msgstr "Voorbeeld" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" msgid "Time estimation" msgstr "Tijdschatting" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 +#: resources/qml/ActionPanel/PrintJobInformation.qml:107 msgctxt "@label" msgid "Material estimation" msgstr "Materiaalschatting" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:156 +#: resources/qml/ActionPanel/PrintJobInformation.qml:156 msgctxt "@label m for meter" msgid "%1m" -msgstr "%1 m" +msgstr "%1m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:157 +#: resources/qml/ActionPanel/PrintJobInformation.qml:157 msgctxt "@label g for grams" msgid "%1g" -msgstr "%1 g" +msgstr "%1g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:54 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Slicen..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:78 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:78 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "Kan niet slicen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Processing" msgstr "Verwerken" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Slice" msgstr "Slicen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:115 msgctxt "@label" msgid "Start the slicing process" msgstr "Het sliceproces starten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:132 msgctxt "@button" msgid "Cancel" msgstr "Annuleren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 +#: resources/qml/Actions.qml:81 msgctxt "@action:inmenu" msgid "Show Online Troubleshooting" msgstr "Online probleemoplossing weergeven" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 +#: resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "Volledig Scherm In-/Uitschakelen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 +#: resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "Volledig scherm sluiten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 +#: resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "Ongedaan &Maken" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 +#: resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "&Opnieuw" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 +#: resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "&Afsluiten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 +#: resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "3D-weergave" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 +#: resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Weergave voorzijde" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 +#: resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "Weergave bovenzijde" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 +#: resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "Aanzicht onderzijde" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 +#: resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "Weergave linkerzijde" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 +#: resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "Weergave rechterzijde" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 +#: resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Cura Configureren..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 +#: resources/qml/Actions.qml:197 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "&Printer Toevoegen..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 +#: resources/qml/Actions.qml:203 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "Pr&inters Beheren..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 +#: resources/qml/Actions.qml:210 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Materialen Beheren..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:216 -msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate." +#: resources/qml/Actions.qml:218 +msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." msgid "Add more materials from Marketplace" msgstr "Meer materialen toevoegen van Marketplace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 +#: resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "Profiel bijwerken met h&uidige instellingen/overschrijvingen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 +#: resources/qml/Actions.qml:233 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "Hui&dige wijzigingen verwijderen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 +#: resources/qml/Actions.qml:245 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "Profiel maken op basis van huidige instellingen/overs&chrijvingen..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 +#: resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "Profielen Beheren..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 +#: resources/qml/Actions.qml:259 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Online &Documentatie Weergeven" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 +#: resources/qml/Actions.qml:267 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "Een &Bug Rapporteren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 +#: resources/qml/Actions.qml:275 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "Nieuwe functies" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 +#: resources/qml/Actions.qml:289 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "Over..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 +#: resources/qml/Actions.qml:296 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "Verwijder geselecteerde items" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 +#: resources/qml/Actions.qml:306 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "Centreer geselecteerde items" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 +#: resources/qml/Actions.qml:315 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "Verveelvoudig geselecteerde items" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 +#: resources/qml/Actions.qml:324 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Model Verwijderen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 +#: resources/qml/Actions.qml:332 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Model op Platform Ce&ntreren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 +#: resources/qml/Actions.qml:338 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "Modellen &Groeperen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 +#: resources/qml/Actions.qml:358 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Groeperen van Modellen Opheffen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 +#: resources/qml/Actions.qml:368 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "Modellen Samen&voegen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 +#: resources/qml/Actions.qml:378 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&Model verveelvoudigen..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 +#: resources/qml/Actions.qml:385 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "Alle Modellen Selecteren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 +#: resources/qml/Actions.qml:395 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "Platform Leegmaken" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 +#: resources/qml/Actions.qml:405 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "Alle Modellen Opnieuw Laden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 +#: resources/qml/Actions.qml:414 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Alle modellen schikken" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 +#: resources/qml/Actions.qml:422 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Selectie schikken" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 +#: resources/qml/Actions.qml:429 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Alle Modelposities Herstellen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 +#: resources/qml/Actions.qml:436 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "Alle Modeltransformaties Herstellen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 +#: resources/qml/Actions.qml:445 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "Bestand(en) &openen..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 +#: resources/qml/Actions.qml:455 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Nieuw project..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 +#: resources/qml/Actions.qml:462 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Open Configuratiemap" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 +#: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Zichtbaarheid Instelling Configureren..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 msgctxt "@label:button" msgid "My printers" msgstr "Mijn printers" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 msgctxt "@tooltip:button" msgid "Monitor printers in Ultimaker Digital Factory." msgstr "Volg uw printers in Ultimaker Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Maak printprojecten aan in Digital Library." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 msgctxt "@label:button" msgid "Print jobs" msgstr "Printtaken" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 msgctxt "@tooltip:button" msgid "Monitor print jobs and reprint from your print history." msgstr "Volg printtaken en print opnieuw vanuit uw printgeschiedenis." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." -msgstr "Breid Ultimaker Cura uit met plug-ins en materiaalprofielen." +msgid "Extend UltiMaker Cura with plugins and material profiles." +msgstr "Breid UltiMaker Cura uit met plug-ins en materiaalprofielen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." -msgstr "Word een 3D-printexpert met Ultimaker e-learning." +msgid "Become a 3D printing expert with UltiMaker e-learning." +msgstr "Word een 3D-printexpert met UltiMaker e-learning." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Ondersteuning van Ultimaker" +msgid "UltiMaker support" +msgstr "Ondersteuning van UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." -msgstr "Leer hoe u aan de slag gaat met Ultimaker Cura." +msgid "Learn how to get started with UltiMaker Cura." +msgstr "Leer hoe u aan de slag gaat met UltiMaker Cura." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 msgctxt "@label:button" msgid "Ask a question" msgstr "Stel een vraag" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Consulteer de Ultimaker Community." +msgid "Consult the UltiMaker Community." +msgstr "Consulteer de UltiMaker Community." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 msgctxt "@label:button" msgid "Report a bug" msgstr "Een fout melden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Laat ontwikkelaars weten dat er iets misgaat." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Bezoek de Ultimaker-website." +msgid "Visit the UltiMaker website." +msgstr "Bezoek de UltiMaker-website." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 +#: resources/qml/ColorDialog.qml:110 msgctxt "@label" msgid "Hex" msgstr "Inbus" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 +#: resources/qml/Cura.qml:256 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "Dit package wordt na opnieuw starten geïnstalleerd." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +#: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14 msgctxt "@title:tab" msgid "General" msgstr "Algemeen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +#: resources/qml/Cura.qml:470 msgctxt "@title:tab" msgid "Settings" msgstr "Instellingen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:468 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:17 +#: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17 msgctxt "@title:tab" msgid "Printers" msgstr "Printers" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:470 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70 +#: resources/qml/Cura.qml:474 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:70 msgctxt "@title:tab" msgid "Materials" msgstr "Materialen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:472 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:57 +#: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57 msgctxt "@title:tab" msgid "Profiles" msgstr "Profielen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +#: resources/qml/Cura.qml:581 msgctxt "@title:window %1 is the application name" msgid "Closing %1" msgstr "%1 wordt gesloten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:590 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:599 +#: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591 msgctxt "@label %1 is the application name" msgid "Are you sure you want to exit %1?" msgstr "Weet u zeker dat u %1 wilt afsluiten?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:637 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 +#: resources/qml/Cura.qml:629 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 msgctxt "@title:window" msgid "Open file(s)" msgstr "Bestand(en) openen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +#: resources/qml/Cura.qml:734 msgctxt "@window:title" msgid "Install Package" msgstr "Package installeren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +#: resources/qml/Cura.qml:741 msgctxt "@title:window" msgid "Open File(s)" msgstr "Bestand(en) openen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +#: resources/qml/Cura.qml:743 msgctxt "@text:window" msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." msgstr "Binnen de door u geselecteerde bestanden zijn een of meer G-code-bestanden aangetroffen. U kunt maximaal één G-code-bestand tegelijk openen. Selecteer maximaal één bestand als u dit wilt openen als G-code-bestand." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:831 +#: resources/qml/Cura.qml:828 msgctxt "@title:window" msgid "Add Printer" msgstr "Printer Toevoegen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +#: resources/qml/Cura.qml:836 msgctxt "@title:window" msgid "What's New" msgstr "Nieuwe functies" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: resources/qml/Cura.qml:890 +msgctxt "@title:window" +msgid "Save Custom Profile" +msgstr "Bewaar aangepast profiel" + +#: resources/qml/Cura.qml:891 +msgctxt "@textfield:placeholder" +msgid "New Custom Profile" +msgstr "Nieuw Aangepast Profiel" + +#: resources/qml/Cura.qml:892 +msgctxt "@info" +msgid "Custom profile name:" +msgstr "Naam van nieuw profiel:" + +#: resources/qml/Cura.qml:909 +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 "Alleen door de gebruiker gewijzigde instellingen worden opgeslagen in het aangepast profiel.
    Voor materialen die dit ondersteunen, neemt het nieuwe aangepaste profiel eigenschappen over van %1 ." + +#: resources/qml/Cura.qml:917 +msgctxt "@action:button" +msgid "Learn more about Cura print profiles" +msgstr "Meer informatie over Cura-printprofielen" + +#: resources/qml/Cura.qml:926 +msgctxt "@button" +msgid "Save new profile" +msgstr "Bewaar nieuw profiel" + +#: resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "Ongeveer %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: resources/qml/Dialogs/AboutDialog.qml:59 msgctxt "@label" msgid "version: %1" msgstr "versie: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: resources/qml/Dialogs/AboutDialog.qml:74 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "End-to-end-oplossing voor fused filament 3D-printen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: resources/qml/Dialogs/AboutDialog.qml:87 msgctxt "@info:credit" msgid "" -"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura is developed by UltiMaker in cooperation with the community.\n" "Cura proudly uses the following open source projects:" msgstr "" -"Cura is ontwikkeld door Ultimaker B.V. in samenwerking met de community.\n" +"Cura is ontwikkeld door UltiMaker in samenwerking met de community.\n" "Cura maakt met trots gebruik van de volgende opensourceprojecten:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label Description for application component" msgid "Graphical user interface" msgstr "Grafische gebruikersinterface (GUI)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label Description for application component" msgid "Application framework" msgstr "Toepassingskader" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label Description for application component" msgid "G-code generator" msgstr "G-code-generator" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label Description for application component" msgid "Interprocess communication library" msgstr "InterProcess Communication-bibliotheek" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:142 +msgctxt "@label Description for application component" msgid "Python bindings for libnest2d" msgstr "Pythonbindingen voor libnest2d" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label Description for application component" msgid "Polygon packing library, developed by Prusa Research" msgstr "Verpakkingsbibliotheek met veelhoeken, ontwikkeld door Prusa Research" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:144 +msgctxt "@label Description for application component" msgid "Support library for handling 3MF files" msgstr "Ondersteuningsbibliotheek voor het verwerken van 3MF-bestanden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:145 +msgctxt "@label Description for application component" msgid "Support library for file metadata and streaming" msgstr "Ondersteuningsbibliotheek voor bestandsmetadata en streaming" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Programmeertaal" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label Description for application dependency" msgid "GUI framework" msgstr "GUI-kader" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label Description for application dependency" msgid "GUI framework bindings" msgstr "Bindingen met GUI-kader" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label Description for application dependency" msgid "C/C++ Binding library" msgstr "Bindingenbibliotheek C/C++" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:152 +msgctxt "@label Description for application dependency" msgid "Data interchange format" msgstr "Indeling voor gegevensuitwisseling" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "Font" msgstr "Lettertype" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label Description for application dependency" msgid "Polygon clipping library" msgstr "Bibliotheek met veelhoeken" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label Description for application dependency" msgid "JSON parser" -msgstr "" +msgstr "JSON-parser" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:158 +msgctxt "@label Description for application dependency" msgid "Utility functions, including an image loader" -msgstr "" +msgstr "Gebruiksfuncties, waaronder een afbeeldinglader" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:159 +msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" -msgstr "" +msgstr "Gebruiksbibliotheek, waaronder Voronoi-generatie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:162 +#: resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label Description for application dependency" msgid "Root Certificates for validating SSL trustworthiness" -msgstr "" +msgstr "Rootcertificaten voor het valideren van SSL-betrouwbaarheid" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label Description for application dependency" msgid "Compatibility between Python 2 and 3" -msgstr "" +msgstr "Compatibiliteit tussen Python 2 en 3" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label Description for application dependency" msgid "Support library for system keyring access" msgstr "Ondersteuningsbibliotheek voor toegang tot systeemkeyring" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label Description for application dependency" msgid "Support library for faster math" msgstr "Ondersteuningsbibliotheek voor snellere berekeningen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label Description for application dependency" msgid "Support library for handling STL files" msgstr "Ondersteuningsbibliotheek voor het verwerken van STL-bestanden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label Description for application dependency" msgid "Python bindings for Clipper" msgstr "Pythonbindingen voor Clipper" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Seriële-communicatiebibliotheek" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label Description for application dependency" msgid "Support library for scientific computing" msgstr "Ondersteuningsbibliotheek voor wetenschappelijke berekeningen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 -msgctxt "@Label" +#: resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@Label Description for application dependency" msgid "Python Error tracking library" msgstr "Python fouttraceringsbibliotheek" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:172 +msgctxt "@label Description for application dependency" msgid "Support library for handling triangular meshes" msgstr "Ondersteuningsbibliotheek voor het verwerken van driehoekig rasters" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:173 +msgctxt "@label Description for application dependency" msgid "ZeroConf discovery library" msgstr "ZeroConf-detectiebibliotheek" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label Description for development tool" msgid "Universal build system configuration" -msgstr "" +msgstr "Universele configuratie bouwsysteem" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label Description for development tool" msgid "Dependency and package manager" -msgstr "" +msgstr "Afhankelijkheden- en pakketbeheer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label Description for development tool" msgid "Packaging Python-applications" -msgstr "" +msgstr "Verpakking Python-toepassingen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:179 +msgctxt "@label Description for development tool" msgid "Linux cross-distribution application deployment" msgstr "Implementatie van Linux-toepassing voor kruisdistributie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:180 +msgctxt "@label Description for development tool" msgid "Generating Windows installers" -msgstr "" +msgstr "Windows-installatieprogramma's genereren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 msgctxt "@title:window" msgid "Open project file" msgstr "Projectbestand openen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84 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 "Dit is een Cura-projectbestand. Wilt u dit openen als project of de modellen eruit importeren?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:90 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91 msgctxt "@text:window" msgid "Remember my choice" msgstr "Mijn keuze onthouden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105 msgctxt "@action:button" msgid "Open as project" msgstr "Openen als project" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110 msgctxt "@action:button" msgid "Import models" msgstr "Modellen importeren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:17 +msgctxt "@title:window" +msgid "Select Printer" +msgstr "Printer selecteren" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:54 +msgctxt "@title:label" +msgid "Compatible Printers" +msgstr "Compatibele printers" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:110 +msgctxt "@description" +msgid "No compatible printers, that are currently online, were found." +msgstr "Geen compatibele printers, die momenteel online zijn, indien gevonden." + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Wijzigingen verwijderen of behouden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:49 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64 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 "" @@ -4181,1433 +4880,1292 @@ msgstr "" "Wilt u deze gewijzigde instellingen behouden na het verwisselen van profielen?\n" "U kunt de wijzigingen ook verwijderen om de standaardinstellingen van '%1' te laden." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90 msgctxt "@title:column" msgid "Profile settings" msgstr "Profielinstellingen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92 msgctxt "@title:column" msgid "Current changes" msgstr "Huidige wijzigingen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:799 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123 +#: resources/qml/Preferences/GeneralPage.qml:820 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Altijd vragen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Verwijderen en nooit meer vragen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Behouden en nooit meer vragen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157 msgctxt "@action:button" msgid "Discard changes" msgstr "Wijzigingen verwijderen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164 msgctxt "@action:button" msgid "Keep changes" msgstr "Wijzigingen behouden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171 +msgctxt "@action:button" +msgid "Save as new custom profile" +msgstr "Behoud wijzigingen in een nieuw profiel" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178 +msgctxt "@action:button" +msgid "Save changes" +msgstr "Wijzigingen behouden" + +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 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 "Binnen de door u geselecteerde bestanden zijn een of meer projectbestanden aangetroffen. U kunt slechts één projectbestand tegelijk openen. Het wordt aangeraden alleen modellen uit deze bestanden te importeren. Wilt u verdergaan?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 msgctxt "@action:button" msgid "Import all as models" msgstr "Allemaal als model importeren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 +#: resources/qml/Dialogs/RenameDialog.qml:23 +msgctxt "@title:window" +msgid "Rename" +msgstr "Hernoemen" + +#: resources/qml/Dialogs/RenameDialog.qml:24 +msgctxt "@info" +msgid "Please provide a new name." +msgstr "Geef een nieuwe naam op." + +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 msgctxt "@title:window" msgid "Save Project" msgstr "Project opslaan" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177 msgctxt "@action:label" msgid "Extruder %1" msgstr "Extruder %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 &materiaal" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195 msgctxt "@action:label" msgid "Material" msgstr "Materiaal" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "Bij opnieuw opslaan projectsamenvatting niet weergeven" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298 msgctxt "@action:button" msgid "Save" msgstr "Opslaan" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -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" -msgstr[0] "Geselecteerd model printen met %1" -msgstr[1] "Geselecteerde modellen printen met %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:93 +#: resources/qml/JobSpecs.qml:93 msgctxt "@text Print job name" msgid "Untitled" msgstr "Zonder titel" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 +#: resources/qml/MainWindow/ApplicationMenu.qml:63 +#: resources/qml/Menus/SettingsMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "In&stellingen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 +#: resources/qml/MainWindow/ApplicationMenu.qml:87 msgctxt "@title:window" msgid "New project" msgstr "Nieuw project" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88 +#: resources/qml/MainWindow/ApplicationMenu.qml:88 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 "Weet u zeker dat u een nieuw project wilt starten? Hiermee wordt het platform leeggemaakt en worden eventuele niet-opgeslagen instellingen verwijderd." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135 +#: resources/qml/MainWindow/MainWindowHeader.qml:135 msgctxt "@action:button" msgid "Marketplace" -msgstr "Marketplace" +msgstr "Marktplaats" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +#: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 msgctxt "@header" msgid "Configurations" msgstr "Configuraties" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Deze configuratie is niet beschikbaar omdat %1 niet wordt herkend. Ga naar %2 om het juiste materiaalprofiel te downloaden." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 msgctxt "@label" msgid "Marketplace" -msgstr "Marketplace" +msgstr "Marktplaats" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 msgctxt "@label" msgid "Loading available configurations from the printer..." msgstr "Beschikbare configuraties laden vanaf de printer..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 msgctxt "@label" msgid "The configurations are not available because the printer is disconnected." msgstr "De configuraties zijn niet beschikbaar omdat de printer niet verbonden is." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 msgctxt "@tooltip" msgid "The configuration of this extruder is not allowed, and prohibits slicing." msgstr "De configuratie van deze extruder is niet toegestaan en verhindert slicen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 msgctxt "@tooltip" msgid "There are no profiles matching the configuration of this extruder." msgstr "Er zijn geen profielen die compatibel zijn met de configuratie van deze extruder." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 msgctxt "@label" msgid "Select configuration" msgstr "Configuratie selecteren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 msgctxt "@label" msgid "Configurations" msgstr "Configuraties" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 msgctxt "@header" msgid "Custom" msgstr "Aangepast" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:62 -msgctxt "@label" -msgid "Printer" -msgstr "Printer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:217 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173 msgctxt "@label" msgid "Enabled" msgstr "Ingeschakeld" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222 msgctxt "@label" msgid "Material" msgstr "Materiaal" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348 msgctxt "@label" msgid "Use glue for better adhesion with this material combination." msgstr "Gebruik lijm bij deze combinatie van materialen voor een betere hechting." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:29 +#: resources/qml/Menus/ContextMenu.qml:29 msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "Geselecteerd model printen met:" msgstr[1] "Geselecteerde modellen printen met:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:92 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Geselecteerd model verveelvoudigen" msgstr[1] "Geselecteerde modellen verveelvoudigen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:123 msgctxt "@label" msgid "Number of Copies" msgstr "Aantal exemplaren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/EditMenu.qml:12 +#: resources/qml/Menus/EditMenu.qml:12 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "B&ewerken" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ExtensionMenu.qml:13 +#: resources/qml/Menus/ExtensionMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "E&xtensies" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 +#: resources/qml/Menus/FileMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "&Bestand" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:45 +#: resources/qml/Menus/FileMenu.qml:45 msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Project opslaan..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:78 +#: resources/qml/Menus/FileMenu.qml:78 msgctxt "@title:menu menubar:file" msgid "&Export..." msgstr "&Exporteren..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:89 +#: resources/qml/Menus/FileMenu.qml:89 msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Selectie Exporteren..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/HelpMenu.qml:14 +#: resources/qml/Menus/HelpMenu.qml:14 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "&Help" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +#: resources/qml/Menus/MaterialMenu.qml:13 msgctxt "@label:category menu label" msgid "Material" msgstr "Materiaal" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:53 +#: resources/qml/Menus/MaterialMenu.qml:53 msgctxt "@label:category menu label" msgid "Favorites" msgstr "Favorieten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:78 +#: resources/qml/Menus/MaterialMenu.qml:78 msgctxt "@label:category menu label" msgid "Generic" msgstr "Standaard" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +#: resources/qml/Menus/OpenFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open File(s)..." msgstr "Bestand(en) openen..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PreferencesMenu.qml:21 +#: resources/qml/Menus/PreferencesMenu.qml:21 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "Voo&rkeuren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:13 +#: resources/qml/Menus/PrinterMenu.qml:13 msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "&Printer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:17 +#: resources/qml/Menus/PrinterMenu.qml:17 msgctxt "@label:category menu label" msgid "Network enabled printers" msgstr "Netwerkprinters" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:50 +#: resources/qml/Menus/PrinterMenu.qml:50 msgctxt "@label:category menu label" msgid "Local printers" msgstr "Lokale printers" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +#: resources/qml/Menus/RecentFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open &Recent" msgstr "&Recente bestanden openen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +#: resources/qml/Menus/SaveProjectMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Save Project..." msgstr "Project opslaan..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:34 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Materiaal" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:49 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Instellen als Actieve Extruder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:55 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Extruder inschakelen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:63 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Extruder uitschakelen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 msgctxt "@action:inmenu" msgid "Visible Settings" msgstr "Zichtbare instellingen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 msgctxt "@action:inmenu" msgid "Collapse All Categories" msgstr "Alle categorieën samenvouwen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 msgctxt "@action:inmenu" msgid "Manage Setting Visibility..." msgstr "Instelling voor zichtbaarheid beheren..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:13 +#: resources/qml/Menus/SettingsMenu.qml:34 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Materiaal" + +#: resources/qml/Menus/SettingsMenu.qml:49 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Instellen als Actieve Extruder" + +#: resources/qml/Menus/SettingsMenu.qml:55 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Extruder inschakelen" + +#: resources/qml/Menus/SettingsMenu.qml:63 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Extruder uitschakelen" + +#: resources/qml/Menus/ViewMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&View" msgstr "Beel&d" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:17 +#: resources/qml/Menus/ViewMenu.qml:17 msgctxt "@action:inmenu menubar:view" msgid "&Camera position" msgstr "&Camerapositie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:30 +#: resources/qml/Menus/ViewMenu.qml:30 msgctxt "@action:inmenu menubar:view" msgid "Camera view" msgstr "Camerabeeld" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 +#: resources/qml/Menus/ViewMenu.qml:48 msgctxt "@action:inmenu menubar:view" msgid "Perspective" msgstr "Perspectief" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +#: resources/qml/Menus/ViewMenu.qml:59 msgctxt "@action:inmenu menubar:view" msgid "Orthographic" msgstr "Orthografisch" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:115 +#: resources/qml/MonitorButton.qml:115 msgctxt "@label:MonitorStatus" msgid "Not connected to a printer" msgstr "Niet met een printer verbonden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 +#: resources/qml/MonitorButton.qml:119 msgctxt "@label:MonitorStatus" msgid "Printer does not accept commands" msgstr "Printer accepteert geen opdrachten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:129 +#: resources/qml/MonitorButton.qml:129 msgctxt "@label:MonitorStatus" msgid "In maintenance. Please check the printer" msgstr "In onderhoud. Controleer de printer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:140 +#: resources/qml/MonitorButton.qml:140 msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Verbinding met de printer is verbroken" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +#: resources/qml/MonitorButton.qml:142 msgctxt "@label:MonitorStatus" msgid "Printing..." msgstr "Printen..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +#: resources/qml/MonitorButton.qml:145 msgctxt "@label:MonitorStatus" msgid "Paused" msgstr "Gepauzeerd" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +#: resources/qml/MonitorButton.qml:148 msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Voorbereiden..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +#: resources/qml/MonitorButton.qml:150 msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Verwijder de print" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +#: resources/qml/MonitorButton.qml:318 msgctxt "@label" msgid "Abort Print" msgstr "Printen Afbreken" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:327 +#: resources/qml/MonitorButton.qml:327 msgctxt "@label" msgid "Are you sure you want to abort the print?" msgstr "Weet u zeker dat u het printen wilt afbreken?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:109 +#: resources/qml/ObjectItemButton.qml:109 msgctxt "@label" msgid "Is printed as support." msgstr "Is geprint als support." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:112 +#: resources/qml/ObjectItemButton.qml:112 msgctxt "@label" msgid "Other models overlapping with this model are modified." msgstr "Andere modellen die met dit model overlappen, zijn gewijzigd." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:115 +#: resources/qml/ObjectItemButton.qml:115 msgctxt "@label" msgid "Infill overlapping with this model is modified." msgstr "De vulling die met dit model overlapt, is aangepast." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:118 +#: resources/qml/ObjectItemButton.qml:118 msgctxt "@label" msgid "Overlaps with this model are not supported." msgstr "Overlappingen worden in dit model niet ondersteund." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:125 +#: resources/qml/ObjectItemButton.qml:125 msgctxt "@label %1 is the number of settings it overrides." msgid "Overrides %1 setting." msgid_plural "Overrides %1 settings." msgstr[0] "Overschrijft %1 instelling." msgstr[1] "Overschrijft %1 instellingen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 +#: resources/qml/ObjectSelector.qml:59 msgctxt "@label" msgid "Object list" msgstr "Lijst met objecten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:131 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:24 +#: resources/qml/Preferences/GeneralPage.qml:134 +#: resources/qml/Preferences/SettingVisibilityPage.qml:24 msgctxt "@action:button" msgid "Defaults" msgstr "Standaardwaarden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +#: resources/qml/Preferences/GeneralPage.qml:172 msgctxt "@label" msgid "Interface" msgstr "Interface" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +#: resources/qml/Preferences/GeneralPage.qml:215 msgctxt "@heading" msgid "-- incomplete --" msgstr "-- onvolledig --" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +#: resources/qml/Preferences/GeneralPage.qml:261 msgctxt "@label" msgid "Currency:" msgstr "Valuta:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:274 +#: resources/qml/Preferences/GeneralPage.qml:277 msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." msgid "Theme*:" msgstr "Thema*:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +#: resources/qml/Preferences/GeneralPage.qml:323 msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Automatisch slicen bij wijzigen van instellingen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +#: resources/qml/Preferences/GeneralPage.qml:331 msgctxt "@option:check" msgid "Slice automatically" msgstr "Automatisch slicen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:337 +#: resources/qml/Preferences/GeneralPage.qml:340 +msgctxt "@info:tooltip" +msgid "Show an icon and notifications in the system notification area." +msgstr "Toon een pictogram en meldingen in het systeemvak voor meldingen." + +#: resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Add icon to system tray *" +msgstr "Pictogram toevoegen aan systeemvak *" + +#: resources/qml/Preferences/GeneralPage.qml:357 msgctxt "@label" msgid "*You will need to restart the application for these changes to have effect." msgstr "*U moet de toepassing opnieuw starten voordat deze wijzigingen van kracht worden." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +#: resources/qml/Preferences/GeneralPage.qml:373 msgctxt "@label" msgid "Viewport behavior" msgstr "Gedrag kijkvenster" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +#: resources/qml/Preferences/GeneralPage.qml:381 msgctxt "@info:tooltip" msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." msgstr "Geef niet-ondersteunde gedeelten van het model een rode markering. Zonder ondersteuning zullen deze gedeelten niet goed worden geprint." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:369 +#: resources/qml/Preferences/GeneralPage.qml:390 msgctxt "@option:check" msgid "Display overhang" msgstr "Overhang weergeven" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +#: resources/qml/Preferences/GeneralPage.qml:400 msgctxt "@info:tooltip" msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." msgstr "Markeer ontbrekende of ongebruikelijke oppervlakken van het model met behulp van waarschuwingstekens. De toolpaths zullen vaak delen van de beoogde geometrie missen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:388 +#: resources/qml/Preferences/GeneralPage.qml:409 msgctxt "@option:check" msgid "Display model errors" msgstr "Modelfouten weergeven" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +#: resources/qml/Preferences/GeneralPage.qml:417 msgctxt "@info:tooltip" msgid "Moves the camera so the model is in the center of the view when a model is selected" msgstr "Verplaatst de camera zodanig dat wanneer een model wordt geselecteerd, het model in het midden van het beeld wordt weergegeven" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:401 +#: resources/qml/Preferences/GeneralPage.qml:422 msgctxt "@action:button" msgid "Center camera when item is selected" msgstr "Camera centreren wanneer een item wordt geselecteerd" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +#: resources/qml/Preferences/GeneralPage.qml:432 msgctxt "@info:tooltip" msgid "Should the default zoom behavior of cura be inverted?" msgstr "Moet het standaard zoomgedrag van Cura worden omgekeerd?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:416 +#: resources/qml/Preferences/GeneralPage.qml:437 msgctxt "@action:button" msgid "Invert the direction of camera zoom." msgstr "Keer de richting van de camerazoom om." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Should zooming move in the direction of the mouse?" msgstr "Moet het zoomen in de richting van de muis gebeuren?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Zooming towards the mouse is not supported in the orthographic perspective." msgstr "Zoomen in de richting van de muis wordt niet ondersteund in het orthografische perspectief." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:437 +#: resources/qml/Preferences/GeneralPage.qml:458 msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "Zoomen in de richting van de muis" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +#: resources/qml/Preferences/GeneralPage.qml:484 msgctxt "@info:tooltip" msgid "Should models on the platform be moved so that they no longer intersect?" msgstr "Moeten modellen op het platform zodanig worden verplaatst dat ze elkaar niet meer doorsnijden?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:468 +#: resources/qml/Preferences/GeneralPage.qml:489 msgctxt "@option:check" msgid "Ensure models are kept apart" msgstr "Modellen gescheiden houden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +#: resources/qml/Preferences/GeneralPage.qml:498 msgctxt "@info:tooltip" msgid "Should models on the platform be moved down to touch the build plate?" msgstr "Moeten modellen in het printgebied omlaag worden gebracht zodat ze het platform raken?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:482 +#: resources/qml/Preferences/GeneralPage.qml:503 msgctxt "@option:check" msgid "Automatically drop models to the build plate" msgstr "Modellen automatisch op het platform laten vallen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +#: resources/qml/Preferences/GeneralPage.qml:515 msgctxt "@info:tooltip" msgid "Show caution message in g-code reader." msgstr "Toon het waarschuwingsbericht in de G-code-lezer." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503 +#: resources/qml/Preferences/GeneralPage.qml:524 msgctxt "@option:check" msgid "Caution message in g-code reader" msgstr "Waarschuwingsbericht in de G-code-lezer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +#: resources/qml/Preferences/GeneralPage.qml:532 msgctxt "@info:tooltip" msgid "Should layer be forced into compatibility mode?" msgstr "Moet de laag in de compatibiliteitsmodus worden geforceerd?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +#: resources/qml/Preferences/GeneralPage.qml:537 msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Compatibiliteitsmodus voor laagweergave forceren (opnieuw opstarten vereist)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +#: resources/qml/Preferences/GeneralPage.qml:547 msgctxt "@info:tooltip" msgid "Should Cura open at the location it was closed?" msgstr "Moet Cura openen op de locatie waar het gesloten werd?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:531 +#: resources/qml/Preferences/GeneralPage.qml:552 msgctxt "@option:check" msgid "Restore window position on start" msgstr "Herstel de vensterpositie bij het opstarten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +#: resources/qml/Preferences/GeneralPage.qml:562 msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Welk type cameraweergave moet worden gebruikt?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +#: resources/qml/Preferences/GeneralPage.qml:569 msgctxt "@window:text" msgid "Camera rendering:" msgstr "Cameraweergave:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +#: resources/qml/Preferences/GeneralPage.qml:576 msgid "Perspective" msgstr "Perspectief" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +#: resources/qml/Preferences/GeneralPage.qml:577 msgid "Orthographic" msgstr "Orthografisch" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +#: resources/qml/Preferences/GeneralPage.qml:617 msgctxt "@label" msgid "Opening and saving files" msgstr "Bestanden openen en opslaan" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +#: resources/qml/Preferences/GeneralPage.qml:624 msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "Wilt u dat bestanden vanaf de desktop of externe toepassingen in dezelfde instantie van Cura worden geopend?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:608 +#: resources/qml/Preferences/GeneralPage.qml:629 msgctxt "@option:check" msgid "Use a single instance of Cura" msgstr "Gebruik één instantie van Cura" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +#: resources/qml/Preferences/GeneralPage.qml:640 msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Moet het platform worden leeggemaakt voordat u een nieuw model laadt in de dezelfde instantie van Cura?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +#: resources/qml/Preferences/GeneralPage.qml:646 msgctxt "@option:check" msgid "Clear buildplate before loading model into the single instance" msgstr "Maak platform leeg voordat u een model laadt in dezelfde instantie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 +#: resources/qml/Preferences/GeneralPage.qml:656 msgctxt "@info:tooltip" msgid "Should models be scaled to the build volume if they are too large?" msgstr "Moeten modellen worden geschaald naar het werkvolume als ze te groot zijn?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +#: resources/qml/Preferences/GeneralPage.qml:661 msgctxt "@option:check" msgid "Scale large models" msgstr "Grote modellen schalen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +#: resources/qml/Preferences/GeneralPage.qml:671 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 "Een model wordt mogelijk extreem klein weergegeven als de eenheden bijvoorbeeld in meters zijn in plaats van in millimeters. Moeten dergelijke modellen worden opgeschaald?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:655 +#: resources/qml/Preferences/GeneralPage.qml:676 msgctxt "@option:check" msgid "Scale extremely small models" msgstr "Extreem kleine modellen schalen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +#: resources/qml/Preferences/GeneralPage.qml:686 msgctxt "@info:tooltip" msgid "Should models be selected after they are loaded?" msgstr "Moeten modellen worden geselecteerd nadat ze zijn geladen?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: resources/qml/Preferences/GeneralPage.qml:691 msgctxt "@option:check" msgid "Select models when loaded" msgstr "Modellen selecteren wanneer ze geladen zijn" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +#: resources/qml/Preferences/GeneralPage.qml:701 msgctxt "@info:tooltip" msgid "Should a prefix based on the printer name be added to the print job name automatically?" msgstr "Moet er automatisch een op de printernaam gebaseerde voorvoegsel aan de naam van de printtaak worden toegevoegd?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:685 +#: resources/qml/Preferences/GeneralPage.qml:706 msgctxt "@option:check" msgid "Add machine prefix to job name" msgstr "Machinevoorvoegsel toevoegen aan taaknaam" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +#: resources/qml/Preferences/GeneralPage.qml:716 msgctxt "@info:tooltip" msgid "Should a summary be shown when saving a project file?" msgstr "Dient er een samenvatting te worden weergegeven wanneer een projectbestand wordt opgeslagen?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: resources/qml/Preferences/GeneralPage.qml:720 msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Dialoogvenster voor samenvatting weergeven tijdens het opslaan van een project" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +#: resources/qml/Preferences/GeneralPage.qml:730 msgctxt "@info:tooltip" msgid "Default behavior when opening a project file" msgstr "Standaardgedrag tijdens het openen van een projectbestand" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +#: resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@window:text" msgid "Default behavior when opening a project file: " msgstr "Standaardgedrag tijdens het openen van een projectbestand: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +#: resources/qml/Preferences/GeneralPage.qml:753 msgctxt "@option:openProject" msgid "Always ask me this" msgstr "Altijd vragen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: resources/qml/Preferences/GeneralPage.qml:754 msgctxt "@option:openProject" msgid "Always open as a project" msgstr "Altijd als project openen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +#: resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:openProject" msgid "Always import models" msgstr "Altijd modellen importeren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +#: resources/qml/Preferences/GeneralPage.qml:792 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 "Wanneer u wijzigingen hebt aangebracht aan een profiel en naar een ander profiel wisselt, wordt een dialoogvenster weergegeven waarin u wordt gevraagd of u de aanpassingen wilt behouden. U kunt ook een standaardgedrag kiezen en het dialoogvenster nooit meer laten weergeven." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:780 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:36 +#: resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46 msgctxt "@label" msgid "Profiles" msgstr "Profielen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +#: resources/qml/Preferences/GeneralPage.qml:806 msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Standaardgedrag voor gewijzigde instellingen wanneer er naar een ander profiel wordt overgeschakeld: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:800 +#: resources/qml/Preferences/GeneralPage.qml:821 msgctxt "@option:discardOrKeep" msgid "Always discard changed settings" msgstr "Gewijzigde instellingen altijd verwijderen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/Preferences/GeneralPage.qml:822 msgctxt "@option:discardOrKeep" msgid "Always transfer changed settings to new profile" msgstr "Gewijzigde instellingen altijd naar nieuw profiel overbrengen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +#: resources/qml/Preferences/GeneralPage.qml:856 msgctxt "@label" msgid "Privacy" msgstr "Privacy" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +#: resources/qml/Preferences/GeneralPage.qml:862 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 "Mogen anonieme gegevens over uw print naar Ultimaker worden verzonden? Opmerking: er worden geen modellen, IP-adressen of andere persoonlijk identificeerbare gegevens verzonden of opgeslagen." +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 "Mogen anonieme gegevens over uw print naar UltiMaker worden verzonden? Opmerking: er worden geen modellen, IP-adressen of andere persoonlijk identificeerbare gegevens verzonden of opgeslagen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +#: resources/qml/Preferences/GeneralPage.qml:867 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "(Anonieme) printgegevens verzenden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +#: resources/qml/Preferences/GeneralPage.qml:897 msgctxt "@label" msgid "Updates" msgstr "Updates" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +#: resources/qml/Preferences/GeneralPage.qml:904 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "Moet Cura op updates controleren wanneer het programma wordt gestart?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:888 +#: resources/qml/Preferences/GeneralPage.qml:909 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Bij starten op updates controleren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +#: resources/qml/Preferences/GeneralPage.qml:925 msgctxt "@info:tooltip" msgid "When checking for updates, only check for stable releases." msgstr "Kijk bij het controleren op updates alleen naar stabiele releases." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:910 +#: resources/qml/Preferences/GeneralPage.qml:931 msgctxt "@option:radio" msgid "Stable releases only" msgstr "Alleen stabiele releases" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +#: resources/qml/Preferences/GeneralPage.qml:941 msgctxt "@info:tooltip" msgid "When checking for updates, check for both stable and for beta releases." msgstr "Kijk bij het controleren op updates naar stabiele releases en bèta-releases." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:926 +#: resources/qml/Preferences/GeneralPage.qml:947 msgctxt "@option:radio" msgid "Stable and Beta releases" msgstr "Stabiele releases en bèta-releases" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +#: resources/qml/Preferences/GeneralPage.qml:957 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 "Moet er elke keer dat Cura wordt opgestart automatisch worden gecontroleerd op nieuwe plug-ins? Wij raden u ten zeerste aan dit niet uit te schakelen!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:941 +#: resources/qml/Preferences/GeneralPage.qml:962 msgctxt "@option:check" msgid "Get notifications for plugin updates" msgstr "Meldingen ontvangen als er updates zijn voor pug-ins" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:50 +#: resources/qml/Preferences/MachinesPage.qml:50 msgctxt "@action:button" msgid "Add New" msgstr "Nieuwe toevoegen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:134 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +#: resources/qml/Preferences/MachinesPage.qml:147 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:160 +#: resources/qml/Preferences/ProfilesPage.qml:294 msgctxt "@action:button" msgid "Activate" msgstr "Activeren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:146 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:331 +#: resources/qml/Preferences/MachinesPage.qml:159 +#: resources/qml/Preferences/ProfilesPage.qml:331 msgctxt "@action:button" msgid "Rename" msgstr "Hernoemen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:72 msgctxt "@label" msgid "Materials compatible with active printer:" msgstr "Materialen die compatibel zijn met actieve printer:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:94 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:78 +#: resources/qml/Preferences/ProfilesPage.qml:94 msgctxt "@action:button" msgid "Create new" msgstr "Nieuw maken" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:88 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:90 +#: resources/qml/Preferences/ProfilesPage.qml:88 msgctxt "@action:button" msgid "Import" msgstr "Importeren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:101 msgctxt "@action:button" msgid "Sync with Printers" msgstr "Synchroniseren met printers" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:311 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:174 +#: resources/qml/Preferences/ProfilesPage.qml:311 msgctxt "@action:button" msgid "Duplicate" msgstr "Dupliceren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:342 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:198 +#: resources/qml/Preferences/ProfilesPage.qml:342 msgctxt "@action:button" msgid "Export" msgstr "Exporteren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:392 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:212 +#: resources/qml/Preferences/ProfilesPage.qml:392 msgctxt "@title:window" msgid "Confirm Remove" msgstr "Verwijderen Bevestigen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:393 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:215 +#: resources/qml/Preferences/ProfilesPage.qml:393 msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "Weet u zeker dat u %1 wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:228 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:238 msgctxt "@title:window" msgid "Import Material" msgstr "Materiaal Importeren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:242 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Materiaal %1 is geïmporteerd" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:245 msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not import material %1: %2" msgstr "Kon materiaal %1 niet importeren: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:267 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:256 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:267 msgctxt "@title:window" msgid "Export Material" msgstr "Materiaal Exporteren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:272 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:272 msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Exporteren van materiaal naar %1 is mislukt: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:275 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:275 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Materiaal is geëxporteerd naar %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 msgctxt "@title:window" msgid "Sync materials with printers" msgstr "Synchroniseer materialen met printers" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 msgctxt "@title:header" msgid "Sync materials with printers" msgstr "Synchroniseer materialen met printers" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 msgctxt "@text" msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "Met een paar simpele stappen kunt u al uw materiaalprofielen synchroniseren met uw printers." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 msgctxt "@button" msgid "Why do I need to sync material profiles?" msgstr "Waarom moet ik materiaalprofielen synchroniseren?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 msgctxt "@button" msgid "Start" msgstr "Starten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144 msgctxt "@title:header" msgid "Sign in" msgstr "Aanmelden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150 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 "Om de materiaalprofielen automatisch te synchroniseren met alle printers die op Digital Factory zijn aangesloten, moet u zich aanmelden bij Cura." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:446 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:586 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602 msgctxt "@button" msgid "Sync materials with USB" msgstr "Materialen synchroniseren met USB" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 msgctxt "@title:header" msgid "The following printers will receive the new material profiles:" msgstr "De volgende printers ontvangen de nieuwe materiaalprofielen:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:198 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 msgctxt "@title:header" msgid "Something went wrong when sending the materials to the printers." msgstr "Er is iets misgegaan bij het verzenden van de materialen naar de printers." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:205 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221 msgctxt "@title:header" msgid "Material profiles successfully synced with the following printers:" msgstr "Materiaalprofielen zijn gesynchroniseerd met de volgende printers:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:429 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445 msgctxt "@button" msgid "Troubleshooting" msgstr "Probleemoplossing" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422 msgctxt "@text Asking the user whether printers are missing in a list." msgid "Printers missing?" msgstr "Ontbreken er printers?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:408 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424 msgctxt "@text" msgid "Make sure all your printers are turned ON and connected to Digital Factory." msgstr "Controleer of alle printers zijn ingeschakeld en zijn aangesloten op Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:417 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433 msgctxt "@button" msgid "Refresh List" msgstr "Lijst vernieuwen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473 msgctxt "@button" msgid "Try again" msgstr "Probeer het opnieuw" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:461 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Done" msgstr "Klaar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:606 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622 msgctxt "@button" msgid "Sync" msgstr "Synchroniseren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535 msgctxt "@button" msgid "Syncing" msgstr "Synchroniseren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553 msgctxt "@title:header" msgid "No printers found" msgstr "Geen printers gevonden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574 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 "Mogelijk zijn er geen compatibele printers op Digital Factory aangesloten. Controleer of de printer is aangesloten en de nieuwste firmware op de printer is geïnstalleerd." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:569 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585 msgctxt "@button" msgid "Learn how to connect your printer to Digital Factory" msgstr "Meer informatie over het aansluiten van de printer op Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:597 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613 msgctxt "@button" msgid "Refresh" msgstr "Vernieuwen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642 msgctxt "@title:header" msgid "Sync material profiles via USB" msgstr "Materiaalprofielen synchroniseren via USB" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:632 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648 msgctxt "@text In the UI this is followed by a list of steps the user needs to take." msgid "Follow the following steps to load the new material profiles to your printer." msgstr "Volg onderstaande stappen om nieuwe materiaalprofielen op uw printer te laden." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 msgctxt "@text" msgid "Click the export material archive button." msgstr "Klik op de knop Materiaalarchief exporteren." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Bewaar het .umm-bestand op een USB-stick." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 msgctxt "@text" msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." msgstr "Steek de USB-stick in de printer en start de procedure om nieuwe materiaalprofielen te laden." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:673 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689 msgctxt "@button" msgid "How to load new material profiles to my printer" msgstr "Hoe u nieuwe materiaalprofielen laadt op Mijn printer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:687 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 msgctxt "@button" msgid "Back" msgstr "Terug" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Export material archive" msgstr "Materiaalarchief exporteren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747 msgctxt "@title:window" msgid "Export All Materials" msgstr "Alle materialen exporteren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121 +#: resources/qml/Preferences/Materials/MaterialsView.qml:121 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Diameterwijziging bevestigen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122 +#: resources/qml/Preferences/Materials/MaterialsView.qml:122 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 "Het nieuwe filament is ingesteld op %1 mm. Dit is niet compatibel met de huidige extruder. Wilt u verder gaan?" +msgstr "Het nieuwe filament is ingesteld op %1mm. Dit is niet compatibel met de huidige extruder. Wilt u verder gaan?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152 +#: resources/qml/Preferences/Materials/MaterialsView.qml:152 msgctxt "@label" msgid "Display Name" msgstr "Naam" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 +#: resources/qml/Preferences/Materials/MaterialsView.qml:171 msgctxt "@label" msgid "Brand" msgstr "Merk" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190 +#: resources/qml/Preferences/Materials/MaterialsView.qml:190 msgctxt "@label" msgid "Material Type" msgstr "Type Materiaal" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +#: resources/qml/Preferences/Materials/MaterialsView.qml:210 msgctxt "@label" msgid "Color" msgstr "Kleur" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:262 +#: resources/qml/Preferences/Materials/MaterialsView.qml:262 msgctxt "@title" msgid "Material color picker" msgstr "Kleurkiezer materiaal" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:275 +#: resources/qml/Preferences/Materials/MaterialsView.qml:275 msgctxt "@label" msgid "Properties" msgstr "Eigenschappen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +#: resources/qml/Preferences/Materials/MaterialsView.qml:286 msgctxt "@label" msgid "Density" msgstr "Dichtheid" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +#: resources/qml/Preferences/Materials/MaterialsView.qml:319 msgctxt "@label" msgid "Diameter" msgstr "Diameter" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:369 +#: resources/qml/Preferences/Materials/MaterialsView.qml:369 msgctxt "@label" msgid "Filament Cost" msgstr "Kostprijs Filament" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:401 +#: resources/qml/Preferences/Materials/MaterialsView.qml:401 msgctxt "@label" msgid "Filament weight" msgstr "Gewicht filament" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:433 +#: resources/qml/Preferences/Materials/MaterialsView.qml:433 msgctxt "@label" msgid "Filament length" msgstr "Lengte filament" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:451 +#: resources/qml/Preferences/Materials/MaterialsView.qml:451 msgctxt "@label" msgid "Cost per Meter" msgstr "Kostprijs per meter" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:465 +#: resources/qml/Preferences/Materials/MaterialsView.qml:465 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "Dit materiaal is gekoppeld aan %1 en deelt hiermee enkele eigenschappen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:472 +#: resources/qml/Preferences/Materials/MaterialsView.qml:472 msgctxt "@label" msgid "Unlink Material" msgstr "Materiaal ontkoppelen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +#: resources/qml/Preferences/Materials/MaterialsView.qml:485 msgctxt "@label" msgid "Description" msgstr "Beschrijving" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:503 +#: resources/qml/Preferences/Materials/MaterialsView.qml:503 msgctxt "@label" msgid "Adhesion Information" msgstr "Gegevens Hechting" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642 +#: resources/qml/Preferences/Materials/MaterialsView.qml:642 msgctxt "@title" msgid "Information" msgstr "Informatie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:647 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:82 +#: resources/qml/Preferences/Materials/MaterialsView.qml:647 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 msgctxt "@label" msgid "Print settings" msgstr "Instellingen voor printen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:59 +#: resources/qml/Preferences/ProfilesPage.qml:59 msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "Profielen die compatibel zijn met actieve printer:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:98 +#: resources/qml/Preferences/ProfilesPage.qml:98 msgctxt "@action:tooltip" msgid "Create new profile from current settings/overrides" msgstr "Maak nieuw profiel op basis van huidige instellingen/overschrijvingen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:125 +#: resources/qml/Preferences/ProfilesPage.qml:125 msgctxt "@action:label" msgid "Some settings from current profile were overwritten." msgstr "Enkele instellingen van het huidige profiel zijn overschreven." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:140 +#: resources/qml/Preferences/ProfilesPage.qml:140 msgctxt "@action:button" msgid "Update profile." msgstr "Werk profiel bij." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:143 +#: resources/qml/Preferences/ProfilesPage.qml:143 msgctxt "@action:tooltip" msgid "Update profile with current settings/overrides" msgstr "Profiel bijwerken met huidige instellingen/overschrijvingen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:148 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256 +#: resources/qml/Preferences/ProfilesPage.qml:148 msgctxt "@action:button" msgid "Discard current changes" msgstr "Huidige wijzigingen verwijderen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:158 +#: resources/qml/Preferences/ProfilesPage.qml:158 msgctxt "@action:label" msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." msgstr "Dit profiel gebruikt de standaardinstellingen die door de printer zijn opgegeven, dus er zijn hiervoor geen instellingen/overschrijvingen in de onderstaande lijst." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:165 +#: resources/qml/Preferences/ProfilesPage.qml:165 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "Uw huidige instellingen komen overeen met het geselecteerde profiel." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +#: resources/qml/Preferences/ProfilesPage.qml:175 msgctxt "@title:tab" msgid "Global Settings" msgstr "Algemene Instellingen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: resources/qml/Preferences/ProfilesPage.qml:278 msgctxt "@title:window" msgid "Create Profile" msgstr "Profiel Maken" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:280 +#: resources/qml/Preferences/ProfilesPage.qml:280 msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Geef een naam op voor dit profiel." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:368 +#: resources/qml/Preferences/ProfilesPage.qml:352 +#: resources/qml/Preferences/ProfilesPage.qml:368 msgctxt "@title:window" msgid "Export Profile" msgstr "Profiel Exporteren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +#: resources/qml/Preferences/ProfilesPage.qml:382 msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Profiel Dupliceren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:409 +#: resources/qml/Preferences/ProfilesPage.qml:409 msgctxt "@title:window" msgid "Rename Profile" msgstr "Profiel Hernoemen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:422 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:429 +#: resources/qml/Preferences/ProfilesPage.qml:422 +#: resources/qml/Preferences/ProfilesPage.qml:429 msgctxt "@title:window" msgid "Import Profile" msgstr "Profiel Importeren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:22 -msgctxt "@title:window" -msgid "Rename" -msgstr "Hernoemen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:23 -msgctxt "@info" -msgid "Please provide a new name." -msgstr "Geef een nieuwe naam op." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56 +#: resources/qml/Preferences/SettingVisibilityItem.qml:56 msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." msgstr "Deze instelling is door de actieve machine verborgen en wordt niet zichtbaar." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73 +#: resources/qml/Preferences/SettingVisibilityItem.qml:73 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] "Deze instelling is verborgen vanwege de waarde van %1. Wijzig de waarde van die instelling om deze instelling zichtbaar te maken." msgstr[1] "Deze instelling is verborgen vanwege de waarden van %1. Wijzig de waarden van die instellingen om deze instelling zichtbaar te maken." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13 +#: resources/qml/Preferences/SettingVisibilityPage.qml:13 msgctxt "@title:tab" msgid "Setting Visibility" msgstr "Zichtbaarheid Instellen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 +#: resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" msgid "Check all" msgstr "Alles aanvinken" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 -msgctxt "@label" -msgid "Extruder" -msgstr "Extruder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70 -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." -msgstr "De doeltemperatuur van de hot-end. De hot-end wordt verwarmd of afgekoeld totdat deze temperatuur bereikt is. Als deze waarde ingesteld is op 0, wordt de verwarming van de hot-end uitgeschakeld." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "De huidige temperatuur van dit hotend." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "De temperatuur waarnaar het hotend moet worden voorverwarmd." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Annuleren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Voorverwarmen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Verwarm het hotend voordat u gaat printen. U kunt doorgaan met het aanpassen van uw print terwijl het hotend wordt verwarmd. Zo hoeft u niet te wachten totdat het hotend is opgewarmd wanneer u gereed bent om te printen." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "De kleur van het materiaal in deze extruder." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Het materiaal in deze extruder." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "De nozzle die in deze extruder geplaatst is." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -msgctxt "@label" -msgid "Build plate" -msgstr "Platform" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55 -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 "De doeltemperatuur van het verwarmde bed. Het bed wordt verwarmd of afgekoeld totdat deze temperatuur bereikt is. Als deze waarde ingesteld is op 0, wordt de verwarming van het bed uitgeschakeld." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "De huidige temperatuur van het verwarmde bed." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "De temperatuur waarnaar het bed moet worden voorverwarmd." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Verwarm het bed voordat u gaat printen. U kunt doorgaan met het aanpassen van uw print terwijl het bed wordt verwarmd. Zo hoeft u niet te wachten totdat het bed opgewarmd is wanneer u gereed bent om te printen." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51 -msgctxt "@label" -msgid "Printer control" -msgstr "Printerbediening" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66 -msgctxt "@label" -msgid "Jog Position" -msgstr "Jog-positie" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Jog-afstand" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Send G-code" -msgstr "G-code verzenden" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Verzend een aangepaste G-code-opdracht naar de verbonden printer. Druk op Enter om de opdracht te verzenden." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "Er is geen verbinding met de printer." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "De cloudprinter is offline. Controleer of de printer is ingeschakeld en verbonden is met internet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Deze printer is niet gekoppeld aan uw account. Ga naar de Ultimaker Digital Factory om een verbinding tot stand te brengen." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "De cloudverbinding is momenteel niet beschikbaar. Log in om verbinding te maken met de cloudprinter." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "De cloudverbinding is momenteel niet beschikbaar. Controleer uw internetverbinding." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:235 -msgctxt "@button" -msgid "Add printer" -msgstr "Printer toevoegen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Manage printers" -msgstr "Printers beheren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Active print" msgstr "Actieve print" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Job Name" msgstr "Taaknaam" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +#: resources/qml/PrintMonitor.qml:172 msgctxt "@label" msgid "Printing Time" msgstr "Printtijd" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +#: resources/qml/PrintMonitor.qml:180 msgctxt "@label" msgid "Estimated time left" msgstr "Geschatte resterende tijd" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 msgctxt "@label" msgid "Profile" msgstr "Profiel" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5618,132 +6176,379 @@ msgstr "" "\n" "Klik om het profielbeheer te openen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 +#: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 msgctxt "@label:header" msgid "Custom profiles" msgstr "Aangepaste profielen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 msgctxt "@label shown when we load a Gcode file" msgid "Print setup disabled. G-code file can not be modified." msgstr "De printinstelling is uitgeschakeld. Het G-code-bestand kan niet worden gewijzigd." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:179 msgctxt "@button" msgid "Recommended" msgstr "Aanbevolen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156 -msgctxt "@button" -msgid "Custom" -msgstr "Aangepast" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 msgctxt "@label:Should be short" msgid "On" msgstr "Aan" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 msgctxt "@label:Should be short" msgid "Off" msgstr "Uit" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "Experimenteel" +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is active and you overwrote some settings." +msgstr "%1 aangepast profiel is actief en u hebt bepaalde instellingen overschreven." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:54 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is overriding some settings." +msgstr "%1 aangepast profiel overschrijft sommige instellingen." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92 +msgctxt "@info %1 is the name of a profile" +msgid "Recommended settings (for %1) were altered." +msgstr "Aanbevolen instellingen (voor %1) zijn gewijzigd." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106 +msgctxt "@info %1 is the name of a profile" +msgid "Some setting-values defined in %1 were overridden." +msgstr "Enkele instellingen van het huidige profiel zijn overschreven." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137 msgctxt "@info" -msgid "custom profile is active and you overwrote some settings." -msgstr "" +msgid "Reset to defaults." +msgstr "Terug zetten naar standaardwaarden." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178 msgctxt "@info" -msgid "custom profile is overriding some settings." -msgstr "" +msgid "Compare and save." +msgstr "Vergelijken en opslaan." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 -msgctxt "@info" -msgid "Some settings were changed." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15 msgctxt "@label" msgid "Adhesion" msgstr "Hechting" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20 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 "Het printen van een brim of raft inschakelen. Deze optie zorgt ervoor dat er extra materiaal rondom of onder het object wordt neergelegd, dat er naderhand eenvoudig kan worden afgesneden." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:198 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102 msgctxt "@label" -msgid "Gradual infill" -msgstr "Geleidelijke vulling" +msgid "Recommended print settings" +msgstr "Aanbevolen print instellingen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:236 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "Met geleidelijke vulling neemt de hoeveelheid vulling naar boven toe." +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111 +msgctxt "@button" +msgid "Show Custom" +msgstr "Aangepast" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27 msgctxt "@label" msgid "Resolution" -msgstr "" +msgstr "Resolutie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16 +msgctxt "@label" +msgid "Strength" +msgstr "Kracht" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20 +msgctxt "@label" +msgid "The following settings define the strength of your part." +msgstr "De volgende instellingen bepalen de sterkte van uw onderdeel." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34 +msgctxt "infill_sparse_density description" +msgid "Infill Density" +msgstr "Vuldichtheid" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35 +msgctxt "@label" +msgid "Adjusts the density of infill of the print." +msgstr "Past de vuldichtheid van de print aan." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54 +msgctxt "@action:label" +msgid "Infill Pattern" +msgstr "Vulpatroon" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56 +msgctxt "@label" +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 "" +"Het patroon van het invulmateriaal van de print:\n" +"\n" +"Voor snelle prints van een niet-functioneel model kiest u een lijn-, zigzag- of lichtvulling.\n" +"\n" +"Voor functionele onderdelen die niet aan veel spanning worden blootgesteld, raden we raster of driehoek of tri-zeshoek aan.\n" +"\n" +"Gebruik kubieke, kubieke onderverdeling, kwartkubiek, octet en gyrod voor functionele 3D-prints die in meerdere richtingen een hoge sterkte vereisen." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67 +msgctxt "@action:label" +msgid "Shell Thickness" +msgstr "Wand Dikte" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68 +msgctxt "@label" +msgid "Defines the thickness of your part side walls, roof and floor." +msgstr "Definieert de dikte van de zijwanden, dak en vloer van uw onderdeel." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16 msgctxt "@label" msgid "Support" msgstr "Supportstructuur" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21 msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these 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." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40 +msgctxt "@action:label" +msgid "Support Type" +msgstr "Support Type" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41 +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." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53 +msgctxt "@action:label" +msgid "Print with" +msgstr "Print met" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54 +msgctxt "@label" +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." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67 +msgctxt "@action:label" +msgid "Placement" +msgstr "Plaatsing" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68 +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." + +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 msgctxt "@error" msgid "Configuration not supported" -msgstr "" +msgstr "Configuratie niet ondersteund" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." -msgstr "" +msgstr "Er zijn geen profielen beschikbaar voor de geselecteerde materiaal/%1-configuratie. Wijzig uw configuratie." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 msgctxt "@button:label" msgid "Learn more" -msgstr "" +msgstr "Meer informatie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +#: resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "Extruder" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:70 +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." +msgstr "De doeltemperatuur van de hot-end. De hot-end wordt verwarmd of afgekoeld totdat deze temperatuur bereikt is. Als deze waarde ingesteld is op 0, wordt de verwarming van de hot-end uitgeschakeld." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:105 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "De huidige temperatuur van dit hotend." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:182 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "De temperatuur waarnaar het hotend moet worden voorverwarmd." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:271 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:259 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Annuleren" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:274 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:263 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Voorverwarmen" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:297 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Verwarm het hotend voordat u gaat printen. U kunt doorgaan met het aanpassen van uw print terwijl het hotend wordt verwarmd. Zo hoeft u niet te wachten totdat het hotend is opgewarmd wanneer u gereed bent om te printen." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:335 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "De kleur van het materiaal in deze extruder." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:367 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "Het materiaal in deze extruder." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:400 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "De nozzle die in deze extruder geplaatst is." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:25 +msgctxt "@label" +msgid "Build plate" +msgstr "Platform" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:55 +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 "De doeltemperatuur van het verwarmde bed. Het bed wordt verwarmd of afgekoeld totdat deze temperatuur bereikt is. Als deze waarde ingesteld is op 0, wordt de verwarming van het bed uitgeschakeld." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "De huidige temperatuur van het verwarmde bed." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:162 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "De temperatuur waarnaar het bed moet worden voorverwarmd." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:286 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Verwarm het bed voordat u gaat printen. U kunt doorgaan met het aanpassen van uw print terwijl het bed wordt verwarmd. Zo hoeft u niet te wachten totdat het bed opgewarmd is wanneer u gereed bent om te printen." + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:51 +msgctxt "@label" +msgid "Printer control" +msgstr "Printerbediening" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:66 +msgctxt "@label" +msgid "Jog Position" +msgstr "Jog-positie" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:82 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:162 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:217 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Jog-afstand" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Send G-code" +msgstr "G-code verzenden" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:319 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Verzend een aangepaste G-code-opdracht naar de verbonden printer. Druk op Enter om de opdracht te verzenden." + +#: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "Er is geen verbinding met de printer." + +#: resources/qml/PrinterSelector/MachineListButton.qml:34 +msgctxt "@label" +msgid "Hide all connected printers" +msgstr "Alle aangesloten printers verbergen" + +#: resources/qml/PrinterSelector/MachineListButton.qml:47 +msgctxt "@label" +msgid "Show all connected printers" +msgstr "Alle aangesloten printers tonen" + +#: resources/qml/PrinterSelector/MachineSelector.qml:64 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "De cloudprinter is offline. Controleer of de printer is ingeschakeld en verbonden is met internet." + +#: resources/qml/PrinterSelector/MachineSelector.qml:68 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Deze printer is niet gekoppeld aan uw account. Ga naar de Ultimaker Digital Factory om een verbinding tot stand te brengen." + +#: resources/qml/PrinterSelector/MachineSelector.qml:73 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "De cloudverbinding is momenteel niet beschikbaar. Log in om verbinding te maken met de cloudprinter." + +#: resources/qml/PrinterSelector/MachineSelector.qml:78 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "De cloudverbinding is momenteel niet beschikbaar. Controleer uw internetverbinding." + +#: resources/qml/PrinterSelector/MachineSelectorList.qml:30 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:32 +msgctxt "@label" +msgid "Other printers" +msgstr "Andere printers" + +#: resources/qml/ProfileOverview.qml:36 msgctxt "@title:column" msgid "Setting" msgstr "Instelling" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +#: resources/qml/ProfileOverview.qml:37 msgctxt "@title:column" msgid "Profile" msgstr "Profiel" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +#: resources/qml/ProfileOverview.qml:38 msgctxt "@title:column" msgid "Current" msgstr "Huidig" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +#: resources/qml/ProfileOverview.qml:39 msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Eenheid" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +#: resources/qml/SearchBar.qml:17 msgctxt "@placeholder" msgid "Search" msgstr "Zoeken" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 +#: resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5754,32 +6559,32 @@ msgstr "" "\n" "Klik om deze instellingen zichtbaar te maken." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 +#: resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "Deze instelling wordt niet gebruikt omdat alle instellingen waarop deze invloed heeft, worden overschreven." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +#: resources/qml/Settings/SettingItem.qml:89 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Beïnvloedt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +#: resources/qml/Settings/SettingItem.qml:94 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "Beïnvloed door" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:190 +#: resources/qml/Settings/SettingItem.qml:196 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "Deze instelling wordt altijd door alle extruders gedeeld. Als u hier de instelling wijzigt, wordt de waarde voor alle extruders gewijzigd." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +#: resources/qml/Settings/SettingItem.qml:200 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Deze instelling wordt afgeleid van strijdige extruderspecifieke waarden:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +#: resources/qml/Settings/SettingItem.qml:240 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5790,7 +6595,7 @@ msgstr "" "\n" "Klik om de waarde van het profiel te herstellen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:334 +#: resources/qml/Settings/SettingItem.qml:340 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5801,4702 +6606,328 @@ msgstr "" "\n" "Klik om de berekende waarde te herstellen." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +#: resources/qml/Settings/SettingView.qml:48 msgctxt "@label:textbox" msgid "Search settings" msgstr "Instellingen zoeken" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:395 +#: resources/qml/Settings/SettingView.qml:395 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Waarde naar alle extruders kopiëren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:404 +#: resources/qml/Settings/SettingView.qml:404 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Alle gewijzigde waarden naar alle extruders kopiëren" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:440 +#: resources/qml/Settings/SettingView.qml:440 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Deze instelling verbergen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:453 +#: resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Deze instelling verbergen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:457 +#: resources/qml/Settings/SettingView.qml:457 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Deze instelling zichtbaar houden" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +#: resources/qml/Toolbar.qml:142 +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" +msgstr[0] "Geselecteerd model printen met %1" +msgstr[1] "Geselecteerde modellen printen met %1" + +#: resources/qml/ViewOrientationControls.qml:25 msgctxt "@info:tooltip" msgid "3D View" msgstr "3D-weergave" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +#: resources/qml/ViewOrientationControls.qml:38 msgctxt "@info:tooltip" msgid "Front View" msgstr "Weergave voorzijde" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +#: resources/qml/ViewOrientationControls.qml:51 msgctxt "@info:tooltip" msgid "Top View" msgstr "Weergave bovenzijde" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +#: resources/qml/ViewOrientationControls.qml:64 msgctxt "@info:tooltip" msgid "Left View" msgstr "Linkeraanzicht" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +#: resources/qml/ViewOrientationControls.qml:77 msgctxt "@info:tooltip" msgid "Right View" msgstr "Rechteraanzicht" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: resources/qml/ViewsSelector.qml:50 msgctxt "@label" msgid "View type" msgstr "Type weergeven" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:47 msgctxt "@label" msgid "Add a Cloud printer" msgstr "Een cloudprinter toevoegen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:73 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:73 msgctxt "@label" msgid "Waiting for Cloud response" msgstr "Wachten op cloudreactie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:83 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:83 msgctxt "@label" msgid "No printers found in your account?" msgstr "Geen printers gevonden in uw account?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:117 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:117 msgctxt "@label" msgid "The following printers in your account have been added in Cura:" msgstr "De volgende printers in uw account zijn toegevoegd in Cura:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:186 msgctxt "@button" msgid "Add printer manually" msgstr "Printer handmatig toevoegen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 msgctxt "@label" msgid "Manufacturer" msgstr "Fabrikant" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Profile author" msgstr "Profieleigenaar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 msgctxt "@label" msgid "Printer name" msgstr "Printernaam" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 msgctxt "@text" msgid "Please name your printer" msgstr "Geef uw printer een naam" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "Een printer toevoegen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:38 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Een netwerkprinter toevoegen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:87 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Een niet-netwerkprinter toevoegen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 msgctxt "@label" msgid "There is no printer found over your network." msgstr "Kan in uw netwerk geen printer vinden." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 msgctxt "@label" msgid "Refresh" msgstr "Vernieuwen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 msgctxt "@label" msgid "Add printer by IP" msgstr "Printer toevoegen op IP" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Een cloudprinter toevoegen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205 msgctxt "@label" msgid "Troubleshooting" msgstr "Probleemoplossing" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 msgctxt "@label" msgid "Add printer by IP address" msgstr "Een printer toevoegen op IP-adres" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Voer het IP-adres van uw printer in." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 msgctxt "@button" msgid "Add" msgstr "Toevoegen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 msgctxt "@label" msgid "Could not connect to device." msgstr "Kan geen verbinding maken met het apparaat." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Kunt u geen verbinding maken met uw Ultimaker-printer?" +msgid "Can't connect to your UltiMaker printer?" +msgstr "Kunt u geen verbinding maken met uw UltiMaker-printer?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 msgctxt "@label" msgid "The printer at this address has not responded yet." msgstr "De printer op dit adres heeft nog niet gereageerd." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 msgctxt "@label" msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." msgstr "Kan de printer niet toevoegen omdat het een onbekende printer is of omdat het niet de host in een groep is." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 msgctxt "@button" msgid "Connect" msgstr "Verbinding maken" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Een netwerkprinter toevoegen" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Een niet-netwerkprinter toevoegen" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102 +msgctxt "@button" +msgid "Add UltiMaker printer via Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "In order to start using Cura you will need to configure a printer." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36 +msgctxt "@label" +msgid "What printer would you like to setup?" +msgstr "Welke printer wilt u instellen?" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55 +msgctxt "@button" +msgid "UltiMaker printer" +msgstr "UltiMaker printer" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64 +msgctxt "@button" +msgid "Non UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73 +msgctxt "@button" +msgid "Learn more about adding printers to Cura" +msgstr "Meer informatie over het toevoegen van printers aan Cura" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29 +msgctxt "@label" +msgid "Add printer" +msgstr "Printer toevoegen" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33 +msgctxt "@label" +msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." +msgstr "Nieuwe UltiMaker printers kunnen toegevoegd worden aan Digital Factory om van afstand beheerd te worden" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70 +msgctxt "@label" +msgid "If you are trying to add a new UltiMaker printer to Cura" +msgstr "Als u een nieuwe UltiMaker-printer probeert toe te voegen aan Cura" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80 +msgctxt "@info" +msgid "Sign in into UltiMaker Digital Factory" +msgstr "Inloggen bij UltiMaker Digital Factory" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81 +msgctxt "@info" +msgid "Follow the procedure to add a new printer" +msgstr "Volg de procedure om een nieuwe printer toe te voegen" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82 +msgctxt "@info" +msgid "Your new printer will automatically appear in Cura" +msgstr "Uw nieuwe printer wordt automatisch weergegeven in Cura" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100 +msgctxt "@button" +msgid "Learn more" +msgstr "Meer informatie" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121 +msgctxt "@button" +msgid "Add local printer" +msgstr "Een printer toevoegen" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129 +msgctxt "@button" +msgid "Sign in to Digital Factory" +msgstr "Inloggen bij Digital Factory" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133 +msgctxt "@button" +msgid "Waiting for new printers" +msgstr "Wachten op nieuwe printers" + +#: resources/qml/WelcomePages/ChangelogContent.qml:24 msgctxt "@label" msgid "Release Notes" msgstr "Release notes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:123 +#: resources/qml/WelcomePages/CloudContent.qml:123 msgctxt "@text" msgid "Add material settings and plugins from the Marketplace" -msgstr "Voeg materiaalinstellingen en plugins uit de Marketplace toe" +msgstr "Voeg materiaalinstellingen en plugins uit de Marktplaats toe" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:149 +#: resources/qml/WelcomePages/CloudContent.qml:149 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" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:175 +#: resources/qml/WelcomePages/CloudContent.qml:175 msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Deel ideeën met 48,000+ gebruikers in de Ultimaker Community of vraag hen om ondersteuning" +msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" +msgstr "Deel ideeën met 48,000+ gebruikers in de UltiMaker Community of vraag hen om ondersteuning" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +#: resources/qml/WelcomePages/CloudContent.qml:189 msgctxt "@button" msgid "Skip" msgstr "Overslaan" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +#: resources/qml/WelcomePages/CloudContent.qml:201 msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Maak een gratis Ultimaker-account aan" +msgid "Create a free UltiMaker Account" +msgstr "Maak een gratis UltiMaker-account aan" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Help ons Ultimaker Cura te verbeteren" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:56 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura verzamelt anonieme gegevens om de printkwaliteit en gebruikerservaring te verbeteren, waaronder:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:68 -msgctxt "@text" -msgid "Machine types" -msgstr "Machinetypen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:74 -msgctxt "@text" -msgid "Material usage" -msgstr "Materiaalgebruik" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:80 -msgctxt "@text" -msgid "Number of slices" -msgstr "Aantal slices" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:86 -msgctxt "@text" -msgid "Print settings" -msgstr "Instellingen voor printen" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:99 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "De gegevens die Ultimaker Cura verzamelt, bevatten geen persoonlijke informatie." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:100 -msgctxt "@text" -msgid "More information" -msgstr "Meer informatie" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +#: resources/qml/WelcomePages/DropDownWidget.qml:93 msgctxt "@label" msgid "Empty" msgstr "Leeg" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +#: resources/qml/WelcomePages/UserAgreementContent.qml:23 msgctxt "@label" msgid "User Agreement" msgstr "Gebruikersovereenkomst" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67 +#: resources/qml/WelcomePages/UserAgreementContent.qml:67 msgctxt "@button" msgid "Decline and close" msgstr "Afwijzen en sluiten" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Welkom bij Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:67 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "" -"Volg deze stappen voor het instellen van\n" -"Ultimaker Cura. Dit duurt slechts even." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:82 -msgctxt "@button" -msgid "Get started" -msgstr "Aan de slag" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: resources/qml/WelcomePages/WhatsNewContent.qml:28 msgctxt "@label" msgid "What's New" msgstr "Nieuwe functies" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: resources/qml/Widgets/ComboBox.qml:18 msgctxt "@label" msgid "No items to select from" msgstr "Geen items om uit te kiezen" -#: ModelChecker/plugin.json -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." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "Modelcontrole" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Biedt ondersteuning voor het lezen van 3MF-bestanden." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF-lezer" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Biedt ondersteuning voor het schrijven van 3MF-bestanden." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF-schrijver" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Biedt ondersteuning voor het lezen van AMF-bestanden." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF-lezer" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Een back-up maken van uw configuratie en deze herstellen." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura-back-ups" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Voorziet in de koppeling naar het slicing-back-end van de CuraEngine." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine-back-end" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Biedt ondersteuning bij het importeren van Cura-profielen." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura-profiellezer" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Biedt ondersteuning voor het exporteren van Cura-profielen." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura-profielschrijver" - -#: DigitalLibrary/plugin.json -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." - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Controleert op firmware-updates." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Firmware-updatecontrole" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Biedt machineacties voor het bijwerken van de firmware." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Firmware-updater" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Hiermee leest u G-code uit een gecomprimeerd archief." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lezer voor gecomprimeerde G-code" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Met deze optie schrijft u G-code naar een gecomprimeerd archief." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Schrijver voor gecomprimeerde G-code" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Biedt ondersteuning voor het importeren van profielen uit G-code-bestanden." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-code-profiellezer" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Hiermee kunt u G-code-bestanden laden en weergeven." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "G-code-lezer" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Met deze optie schrijft u G-code naar een bestand." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "G-code-schrijver" - -#: ImageReader/plugin.json -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." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Afbeeldinglezer" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Biedt ondersteuning voor het importeren van profielen uit oudere Cura-versies." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lezer voor Profielen van oudere Cura-versies" - -#: MachineSettingsAction/plugin.json -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." - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Actie machine-instellingen" - -#: Marketplace/plugin.json -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." - -#: Marketplace/plugin.json -msgctxt "name" -msgid "Marketplace" -msgstr "Marketplace" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Deze optie biedt een controlestadium in Cura." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Controlestadium" - -#: PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Biedt de Instellingen per Model." - -#: PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Gereedschap voor Instellingen per Model" - -#: PostProcessingPlugin/plugin.json -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" - -#: PostProcessingPlugin/plugin.json -msgctxt "name" -msgid "Post Processing" -msgstr "Nabewerking" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Deze optie biedt een voorbereidingsstadium in Cura." - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "Stadium voorbereiden" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Deze optie biedt een voorbeeldstadium in Cura." - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "Voorbeeldstadium" - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Biedt hotplug- en schrijfondersteuning voor verwisselbare stations." - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Plug-in voor Verwijderbaar Uitvoerapparaat" - -#: SentryLogger/plugin.json -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" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentrylogger" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Biedt voorbeeld van geslicete laaggegevens." - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "Simulatieweergave" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Verzendt anonieme slice-informatie. Dit kan bij de voorkeuren worden uitgeschakeld." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Slice-informatie" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Biedt een normale, solide rasterweergave." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Solide weergave" - -#: SupportEraser/plugin.json -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" - -#: SupportEraser/plugin.json -msgctxt "name" -msgid "Support Eraser" -msgstr "Supportwisser" - -#: TrimeshReader/plugin.json -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Biedt ondersteuning voor het lezen van modelbestanden." - -#: TrimeshReader/plugin.json -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh-lezer" - -#: UFPReader/plugin.json -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Deze optie biedt ondersteuning voor het lezen van Ultimaker Format Packages." - -#: UFPReader/plugin.json -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP-lezer" - -#: UFPWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Deze optie biedt ondersteuning voor het schrijven van Ultimaker Format Packages." - -#: UFPWriter/plugin.json -msgctxt "name" -msgid "UFP Writer" -msgstr "UFP-schrijver" - -#: UltimakerMachineActions/plugin.json -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.)" - -#: UltimakerMachineActions/plugin.json -msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Acties Ultimaker-machines" - -#: UM3NetworkPrinting/plugin.json -msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Hiermee beheert u netwerkverbindingen naar Ultimaker-netwerkprinters." - -#: UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Ultimaker-netwerkverbinding" - -#: USBPrinting/plugin.json -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." - -#: USBPrinting/plugin.json -msgctxt "name" -msgid "USB printing" -msgstr "USB-printen" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Versie-upgrade van 2.1 naar 2.2" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Versie-upgrade van 2.2 naar 2.4" - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Versie-upgrade van 2.5 naar 2.6" - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Versie-upgrade van 2.6 naar 2.7" - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Versie-upgrade van 2.7 naar 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Versie-upgrade van 3.0 naar 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Versie-upgrade van 3.2 naar 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Versie-upgrade van 3.3 naar 3.4" - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Versie-upgrade van 3.4 naar 3.5" - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Versie-upgrade van 3.5 naar 4.0" - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Versie-upgrade van 4.0 naar 4.1" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Versie-upgrade van 4.11 naar 4.12" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Versie-upgrade 4.13 naar 5.0" - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Versie-upgrade van 4.1 naar 4.2" - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Versie-upgrade van 4.2 naar 4.3" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Versie-upgrade van 4.3 naar 4.4" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Versie-upgrade van 4.4 naar 4.5" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Versie-upgrade van 4.5 naar 4.6" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Versie-upgrade van 4.6.0 naar 4.6.2" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Versie-upgrade van 4.6.2 naar 4.7" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Versie-upgrade van 4.7 naar 4.8" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Versie-upgrade van 4.8 naar 4.9" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Versie-upgrade 4.9 naar 4.10" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Deze optie biedt ondersteuning voor het lezen van X3D-bestanden." - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D-lezer" - -#: XmlMaterialProfile/plugin.json -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." - -#: XmlMaterialProfile/plugin.json -msgctxt "name" -msgid "Material Profiles" -msgstr "Materiaalprofielen" - -#: XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Biedt de röntgenweergave." - -#: XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "Röntgenweergave" - -#~ msgctxt "@label" -#~ msgid "Not yet initialized
    " -#~ msgstr "Nog niet geïnitialiseerd
    " - -#~ msgctxt "@label" -#~ msgid "By" -#~ msgstr "Door" - -#~ msgctxt "@Label" -#~ msgid "Static type checker for Python" -#~ msgstr "Statische typecontrole voor Python" - -#~ msgctxt "@Label" -#~ msgid "Root Certificates for validating SSL trustworthiness" -#~ msgstr "Rootcertificaten voor het valideren van SSL-betrouwbaarheid" - -#~ msgctxt "@label" -#~ msgid "Python extensions for Microsoft Windows" -#~ msgstr "Pythonextensies voor Microsoft Windows" - -#~ msgctxt "@label" -#~ msgid "SVG icons" -#~ msgstr "SVG-pictogrammen" - -#~ msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" -#~ msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" -#~ msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" -#~ msgstr[0] "Er is geen %1 profiel voor de configuratie in extruder %2. In plaats daarvan wordt de standaardintentie gebruikt" -#~ msgstr[1] "Er is geen %1 profiel voor de configuraties in extruders %2. In plaats daarvan wordt de standaardintentie gebruikt" - -#~ msgctxt "@tooltip" -#~ msgid "You have modified some profile settings. If you want to change these go to custom mode." -#~ msgstr "U hebt enkele profielinstellingen aangepast. Ga naar de aangepaste modus als u deze wilt wijzigen." - -#~ msgctxt "@action:button" -#~ msgid "Sync materials with printers" -#~ msgstr "Synchroniseer materialen" - -#~ msgctxt "@title:window" -#~ msgid "Convert Image..." -#~ msgstr "Afbeelding Converteren..." - -#~ msgctxt "@info:tooltip" -#~ msgid "The width in millimeters on the build plate." -#~ msgstr "De breedte op het platform in millimeters." - -#~ msgctxt "@title" -#~ msgid "Marketplace" -#~ msgstr "Marketplace" - -#~ msgctxt "@info" -#~ msgid "You will need to restart Cura before changes in packages have effect." -#~ msgstr "U moet Cura opnieuw starten voordat wijzigingen in packages van kracht worden." - -#~ msgctxt "@action:button" -#~ msgid "Install" -#~ msgstr "Installeren" - -#~ msgctxt "@action:button" -#~ msgid "Installed" -#~ msgstr "Geïnstalleerd" - -#~ msgctxt "@label" -#~ msgid "Premium" -#~ msgstr "Premium" - -#~ msgctxt "@info:tooltip" -#~ msgid "Go to Web Marketplace" -#~ msgstr "Ga naar Marketplace op internet" - -#~ msgctxt "@label" -#~ msgid "Search materials" -#~ msgstr "Materialen zoeken" - -#~ msgctxt "@label" -#~ msgid "Compatibility" -#~ msgstr "Compatibiliteit" - -#~ msgctxt "@label:table_header" -#~ msgid "Machine" -#~ msgstr "Machine" - -#~ msgctxt "@label:table_header" -#~ msgid "Build Plate" -#~ msgstr "Platform" - -#~ msgctxt "@label:table_header" -#~ msgid "Support" -#~ msgstr "Supportstructuur" - -#~ msgctxt "@label:table_header" -#~ msgid "Quality" -#~ msgstr "Kwaliteit" - -#~ msgctxt "@action:label" -#~ msgid "Technical Data Sheet" -#~ msgstr "Technisch informatieblad" - -#~ msgctxt "@action:label" -#~ msgid "Safety Data Sheet" -#~ msgstr "Veiligheidsinformatieblad" - -#~ msgctxt "@action:label" -#~ msgid "Printing Guidelines" -#~ msgstr "Richtlijnen voor printen" - -#~ msgctxt "@action:label" -#~ msgid "Website" -#~ msgstr "Website" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to install or update" -#~ msgstr "Aanmelden is vereist voor installeren of bijwerken" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Buy material spools" -#~ msgstr "Materiaalspoelen kopen" - -#~ msgctxt "@action:button" -#~ msgid "Update" -#~ msgstr "Bijwerken" - -#~ msgctxt "@action:button" -#~ msgid "Updating" -#~ msgstr "Bijwerken" - -#~ msgctxt "@action:button" -#~ msgid "Updated" -#~ msgstr "Bijgewerkt" - -#~ msgctxt "@action:button" -#~ msgid "Back" -#~ msgstr "Terug" - -#~ msgctxt "@title:tab" -#~ msgid "Plugins" -#~ msgstr "Plug-ins" - -#~ msgctxt "@title:tab" -#~ msgid "Installed" -#~ msgstr "Geïnstalleerd" - -#~ msgctxt "@label" -#~ msgid "Will install upon restarting" -#~ msgstr "Wordt geïnstalleerd na opnieuw starten" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to update" -#~ msgstr "Aanmelden is vereist voor het bijwerken" - -#~ msgctxt "@action:button" -#~ msgid "Downgrade" -#~ msgstr "Downgraden" - -#~ msgctxt "@action:button" -#~ msgid "Uninstall" -#~ msgstr "De-installeren" - -#~ msgctxt "@label" -#~ msgid "Community Contributions" -#~ msgstr "Community-bijdragen" - -#~ msgctxt "@label" -#~ msgid "Community Plugins" -#~ msgstr "Community-plug-ins" - -#~ msgctxt "@label" -#~ msgid "Generic Materials" -#~ msgstr "Standaard materialen" - -#~ msgctxt "@info" -#~ msgid "Fetching packages..." -#~ msgstr "Packages ophalen..." - -#~ msgctxt "@label" -#~ msgid "Website" -#~ msgstr "Website" - -#~ msgctxt "@label" -#~ msgid "Email" -#~ msgstr "E-mail" - -#~ msgctxt "@description" -#~ msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -#~ msgstr "Meld u aan voor geverifieerde plug-ins en materialen voor Ultimaker Cura Enterprise" - -#~ msgctxt "@label" -#~ msgid "Version" -#~ msgstr "Versie" - -#~ msgctxt "@label" -#~ msgid "Last updated" -#~ msgstr "Laatst bijgewerkt" - -#~ msgctxt "@label" -#~ msgid "Downloads" -#~ msgstr "Downloads" - -#~ msgctxt "@title:tab" -#~ msgid "Installed plugins" -#~ msgstr "Geïnstalleerde plug-ins" - -#~ msgctxt "@info" -#~ msgid "No plugin has been installed." -#~ msgstr "Er zijn geen plug-ins geïnstalleerd." - -#~ msgctxt "@title:tab" -#~ msgid "Installed materials" -#~ msgstr "Geïnstalleerde materialen" - -#~ msgctxt "@info" -#~ msgid "No material has been installed." -#~ msgstr "Er zijn materialen geïnstalleerd." - -#~ msgctxt "@title:tab" -#~ msgid "Bundled plugins" -#~ msgstr "Gebundelde plug-ins" - -#~ msgctxt "@title:tab" -#~ msgid "Bundled materials" -#~ msgstr "Gebundelde materialen" - -#~ msgctxt "@info" -#~ msgid "Could not connect to the Cura Package database. Please check your connection." -#~ msgstr "Kan geen verbinding maken met de Cura Package-database. Controleer uw verbinding." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall" -#~ msgstr "De-installeren bevestigen" - -#~ msgctxt "@text:window" -#~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -#~ msgstr "U verwijdert materialen en/of profielen die nog in gebruik zijn. Wanneer u het verwijderen bevestigt, worden de volgende materialen/profielen teruggezet naar hun standaardinstellingen." - -#~ msgctxt "@text:window" -#~ msgid "Materials" -#~ msgstr "Materialen" - -#~ msgctxt "@text:window" -#~ msgid "Profiles" -#~ msgstr "Profielen" - -#~ msgctxt "@action:button" -#~ msgid "Confirm" -#~ msgstr "Bevestigen" - -#~ msgctxt "@info:tooltip" -#~ msgid "Some things could be problematic in this print. Click to see tips for adjustment." -#~ msgstr "In deze print kunnen problemen ontstaan. Klik om tips voor aanpassingen te bekijken." - -#~ msgctxt "@label" -#~ msgid "Support library for handling planar objects" -#~ msgstr "Ondersteuningsbibliotheek voor het verwerken van tweedimensionale objecten" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "U hebt enkele profielinstellingen aangepast.\n" -#~ "Wilt u deze gewijzigde instellingen behouden na het verwisselen van profielen?\n" -#~ "U kunt de wijzigingen ook verwijderen om de standaardinstellingen van '%1' te laden." - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Build plate" -#~ msgstr "&Platform" - -#~ msgctxt "@label" -#~ msgid "Create" -#~ msgstr "Maken" - -#~ msgctxt "@label" -#~ msgid "Duplicate" -#~ msgstr "Dupliceren" - -#~ msgctxt "@label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "Printer: %1" - -#~ msgctxt "@action:button" -#~ msgid "Update profile with current settings/overrides" -#~ msgstr "Profiel bijwerken met huidige instellingen/overschrijvingen" - -#~ msgctxt "@label" -#~ msgid "Theme:" -#~ msgstr "Thema:" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for these changes to have effect." -#~ msgstr "U moet de toepassing opnieuw starten voordat deze wijzigingen van kracht worden." - -#~ msgctxt "@action:button" -#~ msgid "More information" -#~ msgstr "Meer informatie" - -#~ msgctxt "@action:button" -#~ msgid "Create" -#~ msgstr "Maken" - -#~ msgctxt "@action:button Sending materials to printers" -#~ msgid "Sync with Printers" -#~ msgstr "Synchroniseren met printers" - -#~ msgctxt "@action:label" -#~ msgid "Printer" -#~ msgstr "Printer" - -#~ msgctxt "@title:column" -#~ msgid "Unit" -#~ msgstr "Eenheid" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting Guide" -#~ msgstr "Online gids voor probleemoplossing weergegeven" - -#~ msgctxt "@action:inmenu" -#~ msgid "Add more materials from Marketplace" -#~ msgstr "Meer materialen toevoegen van Marketplace" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange All Models To All Build Plates" -#~ msgstr "Alle modellen schikken op alle platformen" - -#~ msgctxt "@action:menu" -#~ msgid "&Marketplace" -#~ msgstr "&Marketplace" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new Cura packages." -#~ msgstr "Nieuwe Cura-packages zoeken, beheren en installeren." - -#~ msgctxt "name" -#~ msgid "Toolbox" -#~ msgstr "Werkset" - -#~ msgctxt "description" -#~ msgid "Provides the Simulation view." -#~ msgstr "Hiermee geeft u de simulatieweergave weer." - #~ msgctxt "@info:status" -#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Verzend en controleer overal printtaken met uw Ultimaker-account." - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Digital Factory" -#~ msgstr "Verbinden met Ultimaker Digital Factory" - -#~ msgctxt "@info" -#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." -#~ msgstr "Vanuit Ultimaker Cura kunt u de webcamfeeds voor cloudprinters niet bekijken." - -#~ 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 not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -#~ msgstr "Er zijn mogelijk nieuwe functies of bugfixes beschikbaar voor uw {machine_name}. Als u nog niet over de nieuwste versie beschikt, is het raadzaam om de firmware op uw printer bij te werken naar versie {latest_version}." - -#~ msgctxt "@info:title The %s gets replaced with the printer name." -#~ msgid "New %s firmware available" -#~ msgstr "Nieuwe firmware voor %s beschikbaar" - -#~ msgctxt "@info:status" -#~ msgid "Global stack is missing." -#~ msgstr "Algemene stapel ontbreekt." - -#~ msgctxt "@info:status" -#~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces." -#~ msgstr "Uw model is niet veelvoudig. De gemarkeerde gebieden geven ofwel ontbrekende of ongebruikelijke oppervlakken aan." +#~ msgid "Cura does not accurately display layers when Wire Printing is enabled." +#~ msgstr "Als Draadprinten is ingeschakeld, geeft Cura lagen niet goed weer." #~ msgctxt "@info:title" -#~ msgid "Model errors" -#~ msgstr "Modelfouten" - -#~ msgctxt "@label:listbox" -#~ msgid "Layer thickness" -#~ msgstr "Laagdikte" - -#~ msgctxt "@label" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "Uw sleutel tot verbonden 3D-printen" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Customize your experience with more print profiles and plugins\n" -#~ "- Stay flexible by syncing your setup and loading it anywhere\n" -#~ "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "" -#~ "- Pas uw ervaring aan met meer printprofielen en plug-ins\n" -#~ "- Blijf flexibel door uw instellingen te synchroniseren en overal te laden\n" -#~ "- Verhoog de efficiëntie met een externe workflow op Ultimaker-printers" - -#~ msgctxt "@button" -#~ msgid "Create account" -#~ msgstr "Account maken" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete Selected Model" -#~ msgid_plural "Delete Selected Models" -#~ msgstr[0] "Geselecteerd model verwijderen" -#~ msgstr[1] "Geselecteerde modellen verwijderen" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Center Selected Model" -#~ msgid_plural "Center Selected Models" -#~ msgstr[0] "Geselecteerd model centreren" -#~ msgstr[1] "Geselecteerde modellen centreren" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Multiply Selected Model" -#~ msgid_plural "Multiply Selected Models" -#~ msgstr[0] "Geselecteerd model verveelvoudigen" -#~ msgstr[1] "Geselecteerde modellen verveelvoudigen" - -#~ msgctxt "@button" -#~ msgid "Finish" -#~ msgstr "Voltooien" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Account" -#~ msgstr "Ultimaker-account" - -#~ msgctxt "@text" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "Uw sleutel tot verbonden 3D-printen" - -#~ msgctxt "@text" -#~ msgid "- Customize your experience with more print profiles and plugins" -#~ msgstr "- Pas uw ervaring aan met meer printprofielen en plug-ins" - -#~ msgctxt "@text" -#~ msgid "- Stay flexible by syncing your setup and loading it anywhere" -#~ msgstr "- Blijf flexibel door uw instellingen te synchroniseren en overal te laden" - -#~ msgctxt "@text" -#~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "- Verhoog de efficiëntie met een externe workflow op Ultimaker-printers" - -#~ msgctxt "@text" -#~ msgid "" -#~ "Please follow these steps to set up\n" -#~ "Ultimaker Cura. This will only take a few moments." -#~ msgstr "" -#~ "Volg deze stappen voor het instellen van\n" -#~ "Ultimaker Cura. Dit duurt slechts even." - -#~ msgctxt "@label" -#~ msgid "What's new in Ultimaker Cura" -#~ msgstr "Nieuwe functies in Ultimaker Cura" - -#~ msgctxt "@label ({} is object name)" -#~ msgid "Are you sure you wish to remove {}? This cannot be undone!" -#~ msgstr "Weet u zeker dat u {} wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt." - -#~ msgctxt "@info:status" -#~ msgid "The selected model was too small to load." -#~ msgstr "Het geselecteerde model is te klein om te laden." - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profile {0}" -#~ msgstr "Het profiel {0} is geïmporteerd" - -#~ msgctxt "@info:status" -#~ msgid "Could not find a quality type {0} for the current configuration." -#~ msgstr "Kan geen kwaliteitstype {0} vinden voor de huidige configuratie." - -#~ msgctxt "info:status" -#~ msgid "Adding printer {} ({}) from your account" -#~ msgstr "Printer {} ({}) toevoegen van uw account" - -#~ msgctxt "info:hidden list items" -#~ msgid "
  • ... and {} others
  • " -#~ msgstr "
  • ... en {} anderen
  • " - -#~ msgctxt "info:status" -#~ msgid "Printers added from Digital Factory:
      {}
    " -#~ msgstr "Printers toegevoegd van Digital Factory:
      {}
    " - -#~ msgctxt "info:status" -#~ msgid "
      {}
    To establish a connection, please visit the Ultimaker Digital Factory." -#~ msgstr "
      {}
    Bezoek de Ultimaker Digital Factory om een verbinding tot stand te brengen." - -#~ msgctxt "@label ({} is printer name)" -#~ msgid "{} will be removed until the next account sync.
    To remove {} permanently, visit Ultimaker Digital Factory.

    Are you sure you want to remove {} temporarily?" -#~ msgstr "{} wordt verwijderd tot de volgende accountsynchronisatie.
    Ga naar Ultimaker Digital Factory om {} permanent te verwijderen.

    Weet u zeker dat u {} tijdelijk wilt verwijderen?" - -#~ msgctxt "@label" -#~ msgid "" -#~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n" -#~ "Are you sure you want to continue?" -#~ msgstr "" -#~ "U staat op het punt om {} printer(s) uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt. \n" -#~ "Weet u zeker dat u door wilt gaan?" - -#~ msgctxt "@label" -#~ msgid "" -#~ "You are about to remove all printers from Cura. This action cannot be undone. \n" -#~ "Are you sure you want to continue?" -#~ msgstr "" -#~ "U staat op het punt om alle printers uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt. \n" -#~ "Weet u zeker dat u door wilt gaan?" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update" -#~ msgstr "Bijwerken" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Create new" -#~ msgstr "Nieuw maken" - -#~ msgctxt "@label" -#~ msgid "Shared Heater" -#~ msgstr "Gedeelde verwarming" - -#~ msgctxt "@info" -#~ msgid "The webcam is not available because you are monitoring a cloud printer." -#~ msgstr "De webcam is niet beschikbaar omdat u een cloudprinter controleert." - -#~ msgctxt "@button" -#~ msgid "Ultimaker Digital Factory" -#~ msgstr "Ultimaker Digital Factory" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can Discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "U hebt enkele profielinstellingen aangepast.\n" -#~ "Wilt u deze gewijzigde instellingen behouden na het wisselen tussen profielen?\n" -#~ "U kunt de wijzigingen ook Verwijderen om de standaardinstellingen van '%1' te laden." - -#~ msgctxt "@label" -#~ msgid "Overrides %1 setting." -#~ msgid_plural "Overrides %1 settings." -#~ msgstr[0] "Overschrijft %1 instelling." -#~ msgstr[1] "Overschrijft %1 instellingen." - -#~ msgctxt "@text" -#~ msgid "Please give your printer a name" -#~ msgstr "Voer een naam in voor uw printer" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." -#~ msgstr "Er zijn nieuwe functies beschikbaar voor uw {machine_name}! Het wordt aanbevolen de firmware van uw printer bij te werken." - -#~ msgctxt "@action:button" -#~ msgid "Print via Cloud" -#~ msgstr "Printen via Cloud" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print via Cloud" -#~ msgstr "Printen via Cloud" - -#~ msgctxt "@info:status" -#~ msgid "Connected via Cloud" -#~ msgstr "Verbonden via Cloud" - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Verbinden met Ultimaker Cloud" - -#~ msgctxt "@label" -#~ msgid "You need to login first before you can rate" -#~ msgstr "U moet zich aanmelden voordat u een beoordeling kunt geven" - -#~ msgctxt "@label" -#~ msgid "You need to install the package before you can rate" -#~ msgstr "U moet het package installeren voordat u een beoordeling kunt geven" - -#~ msgctxt "@label" -#~ msgid "ratings" -#~ msgstr "beoordelingen" - -#~ msgctxt "@label" -#~ msgid "Featured" -#~ msgstr "Functies" - -#~ msgctxt "@label" -#~ msgid "Your rating" -#~ msgstr "Uw beoordeling" - -#~ msgctxt "@label" -#~ msgid "Author" -#~ msgstr "Auteur" - -#~ msgctxt "@description" -#~ msgid "Get plugins and materials verified by Ultimaker" -#~ msgstr "Krijg plug-ins en materialen die door Ultimaker zijn geverifieerd" - -#~ msgctxt "@label The argument is a username." -#~ msgid "Hi %1" -#~ msgstr "Hallo %1" - -#~ msgctxt "@button" -#~ msgid "Ultimaker account" -#~ msgstr "Ultimaker-account" - -#~ msgctxt "@button" -#~ msgid "Sign out" -#~ msgstr "Afmelden" - -#~ msgctxt "@label" -#~ msgid "Support library for analysis of complex networks" -#~ msgstr "Ondersteuningsbibliotheek voor de analyse van complexe netwerken" - -#~ msgctxt "@Label" -#~ msgid "Python HTTP library" -#~ msgstr "Python HTTP-bibliotheek" - -#~ msgctxt "@text:window" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to keep or discard those settings?" -#~ msgstr "" -#~ "U hebt enkele profielinstellingen aangepast.\n" -#~ "Wilt u deze instellingen behouden of verwijderen?" - -#~ msgctxt "@title:column" -#~ msgid "Default" -#~ msgstr "Standaard" - -#~ msgctxt "@title:column" -#~ msgid "Customized" -#~ msgstr "Aangepast" - -#~ msgctxt "@action:button" -#~ msgid "Discard" -#~ msgstr "Verwijderen" - -#~ msgctxt "@action:button" -#~ msgid "Keep" -#~ msgstr "Behouden" - -#~ msgctxt "@action:button" -#~ msgid "Create New Profile" -#~ msgstr "Nieuw profiel maken" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "&Save..." -#~ msgstr "&Opslaan..." - -#~ msgctxt "@text" -#~ msgid "Place enter your printer's IP address." -#~ msgstr "Voer het IP-adres van uw printer in." - -#~ msgctxt "@button" -#~ msgid "Create an account" -#~ msgstr "Een account maken" - -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Do you want to sync material and software packages with your account?" -#~ msgstr "" -#~ "\n" -#~ "Wilt u materiaal- en softwarepackages synchroniseren met uw account?" - -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Syncing..." -#~ msgstr "" -#~ "\n" -#~ "Synchroniseren ..." - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder." -#~ msgstr "Er kan niets worden geslicet omdat geen van de modellen in het bouwvolume past of omdat de modellen toegewezen zijn aan een uitgeschakelde extruder. Schaal of roteer de modellen totdat deze passen of schakel een extruder in." - -#~ msgctxt "@info:backup_status" -#~ msgid "There was an error listing your backups." -#~ msgstr "Er is een fout opgetreden tijdens het vermelden van uw back-ups." - -#~ msgctxt "@title:groupbox" -#~ msgid "User description (Note: Developers may not speak your language, please use English if possible)" -#~ msgstr "Gebruikersbeschrijving (opmerking: ontwikkelaars spreken uw taal mogelijk niet; gebruik indien mogelijk Engels)" - -#~ msgctxt "@title:window" -#~ msgid "Closing Cura" -#~ msgstr "Cura afsluiten" - -#~ msgctxt "@label" -#~ msgid "Are you sure you want to exit Cura?" -#~ msgstr "Weet u zeker dat u Cura wilt verlaten?" - -#~ msgctxt "@label" -#~ msgid "Language:" -#~ msgstr "Taal:" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud" - -#~ msgctxt "@text" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "De 3D-printworkflow van de volgende generatie" - -#~ msgctxt "@text" -#~ msgid "- Send print jobs to Ultimaker printers outside your local network" -#~ msgstr "- Printtaken verzenden naar Ultimaker-printers buiten uw lokale netwerk" - -#~ msgctxt "@text" -#~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere" -#~ msgstr "- Ultimaker Cura-instellingen opslaan in de cloud zodat u ze overal kunt gebruiken" - -#~ msgctxt "@text" -#~ msgid "- Get exclusive access to print profiles from leading brands" -#~ msgstr "- Exclusieve toegang tot printprofielen van toonaangevende merken" - -#~ msgctxt "@label" -#~ msgid "The value is resolved from per-extruder values " -#~ msgstr "De waarde wordt afgeleid van de waarden per extruder " - -#~ msgctxt "@label" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "De 3D-printworkflow van de volgende generatie" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to print profiles from leading brands" -#~ msgstr "" -#~ "- Printtaken verzenden naar Ultimaker-printers buiten uw lokale netwerk\n" -#~ "- Ultimaker Cura-instellingen opslaan in de cloud zodat u ze overal kunt gebruiken\n" -#~ "- Exclusieve toegang verkrijgen tot printprofielen van toonaangevende merken" - -#~ msgctxt "@title:window" -#~ msgid "About " -#~ msgstr "Over " - -#~ msgctxt "@info:button" -#~ msgid "Quit Cura" -#~ msgstr "Cura sluiten" - -#~ msgctxt "@action:checkbox" -#~ msgid "Infill only" -#~ msgstr "Alleen vulling" - -#~ msgctxt "@info:tooltip" -#~ msgid "Change active post-processing scripts" -#~ msgstr "Actieve scripts voor nabewerking wijzigen" - -#~ msgctxt "@label:listbox" -#~ msgid "Feedrate" -#~ msgstr "Doorvoersnelheid" - -#~ msgctxt "name" -#~ msgid "Machine Settings action" -#~ msgstr "Actie machine-instellingen" - -#~ msgctxt "@info:title" -#~ msgid "New cloud printers found" -#~ msgstr "Nieuwe cloudprinters gevonden" - -#~ msgctxt "@info:message" -#~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers." -#~ msgstr "Er zijn nieuwe printers gedetecteerd die zijn verbonden met uw account. U kunt ze vinden in uw lijst met gedetecteerde printers." - -#~ msgctxt "@info:status" -#~ msgid "Cura does not accurately display layers when Wire Printing is enabled" -#~ msgstr "Als draadprinten is ingeschakeld, geeft Cura lagen niet nauwkeurig weer" - -#~ msgctxt "@label" -#~ msgid "Pre-sliced file {0}" -#~ msgstr "Vooraf geslicet bestand {0}" - -#~ msgctxt "@label" -#~ msgid "" -#~ "This plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ "Deze plug-in bevat een licentie.\n" -#~ "U moet akkoord gaan met deze licentie om deze plug-in te mogen installeren.\n" -#~ "Gaat u akkoord met de onderstaande voorwaarden?" - -#~ msgctxt "@action:button" -#~ msgid "Accept" -#~ msgstr "Ja, ik ga akkoord" - -#~ msgctxt "@action:button" -#~ msgid "Decline" -#~ msgstr "Nee, ik ga niet akkoord" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show All Settings" -#~ msgstr "Alle instellingen weergeven" - -#~ msgctxt "@title:window" -#~ msgid "Ultimaker Cura" -#~ msgstr "Ultimaker Cura" - -#~ msgctxt "@title:window" -#~ msgid "About Cura" -#~ msgstr "Over Cura" - -#~ msgctxt "@item:inmenu" -#~ msgid "Flatten active settings" -#~ msgstr "Actieve instellingen platmaken" - -#~ msgctxt "@info:status" -#~ msgid "Profile has been flattened & activated." -#~ msgstr "Profiel is platgemaakt en geactiveerd." - -#~ msgctxt "X3g Writer Plugin Description" -#~ msgid "Writes X3g to files" -#~ msgstr "Schrijft X3g naar bestanden" - -#~ msgctxt "X3g Writer File Description" -#~ msgid "X3g File" -#~ msgstr "X3g-bestand" - -#~ msgctxt "X3G Writer File Description" -#~ msgid "X3G File" -#~ msgstr "X3G-bestand" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Open Compressed Triangle Mesh" -#~ msgstr "Gecomprimeerde driehoeksnet openen" - -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "Profielassistent" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "Profielassistent" - -#~ msgctxt "@action:button" -#~ msgid "Retry" -#~ msgstr "Opnieuw proberen" - -#~ msgctxt "@label:table_header" -#~ msgid "Print Core" -#~ msgstr "Print core" - -#~ msgctxt "@label" -#~ msgid "Don't support overlap with other models" -#~ msgstr "Supportstructuur niet laten overlappen met andere modellen" - -#~ msgctxt "@label" -#~ msgid "Modify settings for overlap with other models" -#~ msgstr "Instellingen aanpassen voor overlapping met andere modellen" - -#~ msgctxt "@label" -#~ msgid "Modify settings for infill of other models" -#~ msgstr "Instellingen aanpassen voor vulling van andere modellen" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update existing" -#~ msgstr "Bestaand(e) bijwerken" - -#~ msgctxt "@label" -#~ msgid "Not supported" -#~ msgstr "Niet ondersteund" - -#~ msgctxt "@action:button" -#~ msgid "Previous" -#~ msgstr "Vorige" - -#~ msgctxt "@label" -#~ msgid "Tip" -#~ msgstr "Tip" - -#~ msgctxt "@label" -#~ msgid "Print experiment" -#~ msgstr "Print experiment" - -#~ msgctxt "@label" -#~ msgid "Checklist" -#~ msgstr "Checklist" - -#~ msgctxt "@label" -#~ msgid "Please select any upgrades made to this Ultimaker 2." -#~ msgstr "Selecteer eventuele upgrades die op deze Ultimaker 2 zijn uitgevoerd." - -#~ msgctxt "@label" -#~ msgid "Olsson Block" -#~ msgstr "Olsson-blok" - -#~ msgctxt "@window:text" -#~ msgid "Camera rendering: " -#~ msgstr "Cameraweergave: " - -#~ msgctxt "@info:tooltip" -#~ msgid "Use multi build plate functionality" -#~ msgstr "Functionaliteit voor meerdere platformen gebruiken" - -#~ msgctxt "@option:check" -#~ msgid "Use multi build plate functionality (restart required)" -#~ msgstr "Functionaliteit voor meerdere platformen gebruiken (opnieuw opstarten vereist)" - -#~ msgctxt "@label" -#~ msgid "Default profiles" -#~ msgstr "Standaardprofielen" - -#~ msgctxt "@label:textbox" -#~ msgid "search settings" -#~ msgstr "instellingen zoeken" - -#~ msgctxt "@label" -#~ msgid "Layer Height" -#~ msgstr "Laaghoogte" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile." -#~ msgstr "Dit kwaliteitsprofiel is niet beschikbaar voor uw huidige materiaal- en nozzleconfiguratie. Breng hierin wijzigingen aan om gebruik van dit kwaliteitsprofiel mogelijk te maken." - -#~ msgctxt "@tooltip" -#~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" -#~ msgstr "Er is momenteel een aangepast profiel actief. Als u de kwaliteitsschuifregelaar wilt gebruiken, kiest u een standaard kwaliteitsprofiel op het tabblad Aangepast" - -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "&Platform" - -#~ msgctxt "@title:settings" -#~ msgid "&Profile" -#~ msgstr "&Profiel" - -#~ msgctxt "@action:label" -#~ msgid "Build plate" -#~ msgstr "Platform" - -#~ msgctxt "description" -#~ msgid "Dump the contents of all settings to a HTML file." -#~ msgstr "Dump de inhoud van alle instellingen naar een HTML-bestand." - -#~ msgctxt "name" -#~ msgid "God Mode" -#~ msgstr "Godmodus" - -#~ msgctxt "description" -#~ msgid "Create a flattened quality changes profile." -#~ msgstr "Hiermee maakt u een afgevlakte versie van het gewijzigde profiel." - -#~ msgctxt "name" -#~ msgid "Profile Flattener" -#~ msgstr "Profielvlakker" - -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "Maakt het fabrikanten mogelijk nieuwe materiaal- en kwaliteitsprofielen aan te maken met behulp van een drop-in-gebruikersinterface." - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "Profielassistent afdrukken" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network." -#~ msgstr "Via het netwerk verbonden." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. Please approve the access request on the printer." -#~ msgstr "Via het netwerk verbonden. Keur de aanvraag goed op de printer." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. No access to control the printer." -#~ msgstr "Via het netwerk verbonden. Kan de printer niet beheren." - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer requested. Please approve the request on the printer" -#~ msgstr "Er is een toegangsaanvraag voor de printer verstuurd. Keur de aanvraag goed op de printer" - -#~ msgctxt "@info:title" -#~ msgid "Authentication status" -#~ msgstr "Verificatiestatus" - -#~ msgctxt "@info:title" -#~ msgid "Authentication Status" -#~ msgstr "Verificatiestatus" - -#~ msgctxt "@info:tooltip" -#~ msgid "Re-send the access request" -#~ msgstr "De toegangsaanvraag opnieuw verzenden" - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer accepted" -#~ msgstr "Toegang tot de printer is geaccepteerd" - -#~ msgctxt "@info:status" -#~ msgid "No access to print with this printer. Unable to send print job." -#~ msgstr "Kan geen toegang verkrijgen om met deze printer te printen. Kan de printtaak niet verzenden." - -#~ msgctxt "@action:button" -#~ msgid "Request Access" -#~ msgstr "Toegang aanvragen" - -#~ msgctxt "@info:tooltip" -#~ msgid "Send access request to the printer" -#~ msgstr "Toegangsaanvraag naar de printer verzenden" - -#~ msgctxt "@label" -#~ msgid "Unable to start a new print job." -#~ msgstr "Er kan geen nieuwe taak worden gestart." - -#~ msgctxt "@label" -#~ msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." -#~ msgstr "Er is een probleem met de configuratie van de Ultimaker waardoor het niet mogelijk is het printen te starten. Los het probleem op voordat u verder gaat." - -#~ msgctxt "@window:title" -#~ msgid "Mismatched configuration" -#~ msgstr "De configuratie komt niet overeen" - -#~ msgctxt "@label" -#~ msgid "Are you sure you wish to print with the selected configuration?" -#~ msgstr "Weet u zeker dat u met de geselecteerde configuratie wilt printen?" - -#~ msgctxt "@label" -#~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "De configuratie of kalibratie van de printer komt niet overeen met de configuratie van Cura. Slice voor het beste resultaat altijd voor de PrintCores en materialen die in de printer zijn ingevoerd." - -#~ msgctxt "@info:status" -#~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." -#~ msgstr "Het verzenden van nieuwe taken is (tijdelijk) geblokkeerd. Nog bezig met het verzenden van de vorige printtaak." - -#~ msgctxt "@info:status" -#~ msgid "Sending data to printer" -#~ msgstr "De gegevens worden naar de printer verzonden" - -#~ msgctxt "@info:title" -#~ msgid "Sending Data" -#~ msgstr "Gegevens Verzenden" - -#~ msgctxt "@info:status" -#~ msgid "No Printcore loaded in slot {slot_number}" -#~ msgstr "Er is geen PrintCore geladen in de sleuf {slot_number}" - -#~ msgctxt "@info:status" -#~ msgid "No material loaded in slot {slot_number}" -#~ msgstr "Er is geen materiaal geladen in de sleuf {slot_number}" - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" -#~ msgstr "Er is een afwijkende PrintCore (Cura: {cura_printcore_name}, printer: {remote_printcore_name}) geselecteerd voor de extruder {extruder_id}" - -#~ msgctxt "@label" -#~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Afwijkend materiaal (Cura: {0}, Printer: {1}) geselecteerd voor de extruder {2}" - -#~ msgctxt "@window:title" -#~ msgid "Sync with your printer" -#~ msgstr "Synchroniseren met de printer" - -#~ msgctxt "@label" -#~ msgid "Would you like to use your current printer configuration in Cura?" -#~ msgstr "Wilt u uw huidige printerconfiguratie gebruiken in Cura?" - -#~ msgctxt "@label" -#~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "De PrintCores en/of materialen in de printer wijken af van de PrintCores en/of materialen in uw huidige project. Slice voor het beste resultaat altijd voor de PrintCores en materialen die in de printer zijn ingevoerd." - -#~ msgctxt "@action:button" -#~ msgid "View in Monitor" -#~ msgstr "In monitor weergeven" - -#~ msgctxt "@info:status" -#~ msgid "Printer '{printer_name}' has finished printing '{job_name}'." -#~ msgstr "Printer '{printer_name}' is klaar met het printen van '{job_name}'." - -#~ msgctxt "@info:status" -#~ msgid "The print job '{job_name}' was finished." -#~ msgstr "De printtaak '{job_name}' is voltooid." - -#~ msgctxt "@info:status" -#~ msgid "Print finished" -#~ msgstr "Print klaar" - -#~ msgctxt "@label:material" -#~ msgid "Empty" -#~ msgstr "Leeg" - -#~ msgctxt "@label:material" -#~ msgid "Unknown" -#~ msgstr "Onbekend" - -#~ msgctxt "@info:title" -#~ msgid "Cloud error" -#~ msgstr "Cloud-fout" - -#~ msgctxt "@info:status" -#~ msgid "Could not export print job." -#~ msgstr "Kan de printtaak niet exporteren." - -#~ msgctxt "@info:description" -#~ msgid "There was an error connecting to the cloud." -#~ msgstr "Er is een fout opgetreden tijdens het verbinden met de cloud." - -#~ msgctxt "@info:status" -#~ msgid "Uploading via Ultimaker Cloud" -#~ msgstr "Uploaden via Ultimaker Cloud" - -#~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Verbinden met Ultimaker Cloud" - -#~ msgctxt "@action" -#~ msgid "Don't ask me again for this printer." -#~ msgstr "Niet opnieuw vragen voor deze printer." - -#~ msgctxt "@info:status" -#~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "U kunt nu overal vandaan printtaken verzenden en controleren met uw Ultimaker-account." - -#~ msgctxt "@info:status" -#~ msgid "Connected!" -#~ msgstr "Verbonden!" - -#~ msgctxt "@action" -#~ msgid "Review your connection" -#~ msgstr "Uw verbinding controleren" - -#~ msgctxt "@info:status Don't translate the XML tags !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "De machine die is vastgelegd in het profiel {0} ({1}), komt niet overeen met uw huidige machine ({2}). Kan het profiel niet importeren." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}:" -#~ msgstr "Kan het profiel niet importeren uit {0}:" - -#~ msgctxt "@window:title" -#~ msgid "Existing Connection" -#~ msgstr "Bestaande verbinding" - -#~ msgctxt "@message:text" -#~ msgid "This printer/group is already added to Cura. Please select another printer/group." -#~ msgstr "Deze printer/groep is al aan Cura toegevoegd. Selecteer een andere printer/groep." - -#~ msgctxt "@label" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "Voer het IP-adres of de hostnaam van de printer in het netwerk in." - -#~ msgctxt "@info:tooltip" -#~ msgid "Connect to a printer" -#~ msgstr "Verbinding maken met een printer" - -#~ msgctxt "@title" -#~ msgid "Cura Settings Guide" -#~ msgstr "Cura-instellingengids" - -#~ msgctxt "@info:tooltip" -#~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective." -#~ msgstr "Zoomen in de richting van de muis wordt niet ondersteund in het orthogonale perspectief." - -#~ msgid "Orthogonal" -#~ msgstr "Orthografisch" - -#~ msgctxt "description" -#~ msgid "Manages network connections to Ultimaker 3 printers." -#~ msgstr "Hiermee beheert u netwerkverbindingen naar Ultimaker 3-printers." - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection" -#~ msgstr "UM3-netwerkverbinding" - -#~ msgctxt "description" -#~ msgid "Provides extra information and explanations about settings in Cura, with images and animations." -#~ msgstr "Biedt extra informatie en uitleg over instellingen in Cura, voorzien van afbeeldingen en animaties." - -#~ msgctxt "name" -#~ msgid "Settings Guide" -#~ msgstr "Instellingengids" - -#~ msgctxt "@item:inmenu" -#~ msgid "Cura Settings Guide" -#~ msgstr "Cura-instellingengids" - -#~ msgctxt "@info:generic" -#~ msgid "Settings have been changed to match the current availability of extruders: [%s]" -#~ msgstr "De instellingen zijn gewijzigd zodat deze overeenkomen met de huidige beschikbaarheid van de extruders: [%s]" - -#~ msgctxt "@title:groupbox" -#~ msgid "User description" -#~ msgstr "Gebruikersbeschrijving" - -#~ msgctxt "@info" -#~ msgid "These options are not available because you are monitoring a cloud printer." -#~ msgstr "Deze opties zijn niet beschikbaar omdat u een cloudprinter controleert." - -#~ msgctxt "@label link to connect manager" -#~ msgid "Go to Cura Connect" -#~ msgstr "Ga naar Cura Connect" - -#~ msgctxt "@info" -#~ msgid "All jobs are printed." -#~ msgstr "Alle taken zijn geprint." - -#~ msgctxt "@label link to connect manager" -#~ msgid "View print history" -#~ msgstr "Printgeschiedenis weergeven" - -#~ 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.\n" -#~ "\n" -#~ "Select your printer from the list below:" -#~ msgstr "" -#~ "Als u rechtstreeks via het netwerk wilt printen naar de printer, moet u ervoor zorgen dat de printer met een netwerkkabel is verbonden met het netwerk of moet u verbinding maken met de printer via het wifi-netwerk. Als u geen verbinding maakt tussen Cura en de printer, kunt u een USB-station gebruiken om G-code-bestanden naar de printer over te zetten.\n" -#~ "\n" -#~ "Selecteer uw printer in de onderstaande lijst:" - -#~ 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." -#~ msgstr "" -#~ "Controleer of de printer verbonden is:\n" -#~ "- Controleer of de printer ingeschakeld is.\n" -#~ "- Controleer of de printer verbonden is met het netwerk." - -#~ msgctxt "@option:check" -#~ msgid "See only current build plate" -#~ msgstr "Alleen huidig platform weergeven" - -#~ msgctxt "@action:button" -#~ msgid "Arrange to all build plates" -#~ msgstr "Schikken naar alle platformen" - -#~ msgctxt "@action:button" -#~ msgid "Arrange current build plate" -#~ msgstr "Huidig platform schikken" - -#~ msgctxt "description" -#~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)." -#~ msgstr "Hiermee slaat u de resulterende slice op als X3G-bestand, om printers te ondersteunen die deze indeling lezen (Malyan, Makerbot en andere Sailfish-gebaseerde printers)." - -#~ msgctxt "name" -#~ msgid "X3GWriter" -#~ msgstr "X3G-schrijver" - -#~ msgctxt "description" -#~ msgid "Reads SVG files as toolpaths, for debugging printer movements." -#~ msgstr "Hiermee leest u SVG-bestanden als gereedschapsbanen, voor probleemoplossing in printerverplaatsingen." - -#~ msgctxt "name" -#~ msgid "SVG Toolpath Reader" -#~ msgstr "SVG-gereedschapsbaanlezer" - -#~ msgctxt "@item:inmenu" -#~ msgid "Changelog" -#~ msgstr "Wijzigingenlogboek" - -#~ msgctxt "@item:inmenu" -#~ msgid "Show Changelog" -#~ msgstr "Wijzigingenlogboek Weergeven" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to remote cluster" -#~ msgstr "Gegevens naar een extern cluster verzenden" - -#~ msgctxt "@info:status" -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Verbinden met Ultimaker Cloud" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymized usage statistics." -#~ msgstr "Cura verzamelt geanonimiseerde gebruiksstatistieken." - -#~ msgctxt "@info:title" -#~ msgid "Collecting Data" -#~ msgstr "Gegevens verzamelen" - -#~ msgctxt "@action:button" -#~ msgid "More info" -#~ msgstr "Meer informatie" - -#~ msgctxt "@action:tooltip" -#~ msgid "See more information on what data Cura sends." -#~ msgstr "Lees meer over welke gegevens Cura verzendt." - -#~ msgctxt "@action:button" -#~ msgid "Allow" -#~ msgstr "Toestaan" - -#~ msgctxt "@action:tooltip" -#~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." -#~ msgstr "Cura toestaan geanonimiseerde gebruiksstatistieken te verzenden om toekomstige verbeteringen aan Cura te helpen prioriteren. Onder de verzonden gegevens bevindt zich informatie over uw voorkeuren en instellingen, de Cura-versie en een selectie van de modellen die u slicet." - -#~ msgctxt "@item:inmenu" -#~ msgid "Evaluation" -#~ msgstr "Evaluatie" - -#~ msgctxt "@info:title" -#~ msgid "Network enabled printers" -#~ msgstr "Netwerkprinters" - -#~ msgctxt "@info:title" -#~ msgid "Local printers" -#~ msgstr "Lokale printers" - -#~ msgctxt "@info:backup_failed" -#~ msgid "Tried to restore a Cura backup that does not match your current version." -#~ msgstr "Geprobeerd een Cura-back-up te herstellen die niet overeenkomt met uw huidige versie." - -#~ msgctxt "@title" -#~ msgid "Machine Settings" -#~ msgstr "Machine-instellingen" - -#~ msgctxt "@label" -#~ msgid "Printer Settings" -#~ msgstr "Printerinstellingen" - -#~ msgctxt "@option:check" -#~ msgid "Origin at center" -#~ msgstr "Centraal oorsprongpunt" - -#~ msgctxt "@option:check" -#~ msgid "Heated bed" -#~ msgstr "Verwarmd bed" - -#~ msgctxt "@label" -#~ msgid "Printhead Settings" -#~ msgstr "Instellingen Printkop" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Afstand van de linkerkant van de printkop tot het midden van de nozzle. Wordt tijdens \"een voor een\"-printen gebruikt om botsingen tussen eerder geprinte voorwerpen en de printkop te voorkomen." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Afstand van de voorkant van de printkop tot het midden van de nozzle. Wordt tijdens \"een voor een\"-printen gebruikt om botsingen tussen eerder geprinte voorwerpen en de printkop te voorkomen." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Afstand van de rechterkant van de printkop tot het midden van de nozzle. Wordt tijdens \"een voor een\"-printen gebruikt om botsingen tussen eerder geprinte voorwerpen en de printkop te voorkomen." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Afstand van de achterkant van de printkop tot het midden van de nozzle. Wordt tijdens \"een voor een\"-printen gebruikt om botsingen tussen eerder geprinte voorwerpen en de printkop te voorkomen." - -#~ msgctxt "@label" -#~ msgid "Gantry height" -#~ msgstr "Hoogte rijbrug" - -#~ msgctxt "@tooltip" -#~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." -#~ msgstr "Het hoogteverschil tussen de punt van de nozzle en het rijbrugsysteem (X- en Y-as). Wordt tijdens \"een voor een\"-printen gebruikt om botsingen tussen eerder geprinte voorwerpen en het rijbrugsysteem te voorkomen." - -#~ msgctxt "@label" -#~ msgid "Start G-code" -#~ msgstr "Start G-code" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very start." -#~ msgstr "G-code-opdrachten die aan het begin worden uitgevoerd." - -#~ msgctxt "@label" -#~ msgid "End G-code" -#~ msgstr "Eind G-code" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very end." -#~ msgstr "G-code-opdrachten die aan het eind worden uitgevoerd." - -#~ msgctxt "@label" -#~ msgid "Nozzle Settings" -#~ msgstr "Nozzle-instellingen" - -#~ msgctxt "@tooltip" -#~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." -#~ msgstr "De nominale diameter van het filament dat wordt ondersteund door de printer. De exacte diameter wordt overschreven door het materiaal en/of het profiel." - -#~ msgctxt "@label" -#~ msgid "Extruder Start G-code" -#~ msgstr "Start-G-code van Extruder" - -#~ msgctxt "@label" -#~ msgid "Extruder End G-code" -#~ msgstr "Eind-G-code van Extruder" - -#~ msgctxt "@label" -#~ msgid "Changelog" -#~ msgstr "Wijzigingenlogboek" - -#~ msgctxt "@title:window" -#~ msgid "User Agreement" -#~ msgstr "Gebruikersovereenkomst" - -#~ msgctxt "@alabel" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "Voer het IP-adres of de hostnaam van de printer in het netwerk in." - -#~ msgctxt "@info" -#~ msgid "Please select a network connected printer to monitor." -#~ msgstr "Selecteer een met een netwerk verbonden printer om te controleren." - -#~ msgctxt "@info" -#~ msgid "Please connect your Ultimaker printer to your local network." -#~ msgstr "Verbind uw Ultimaker-printer met uw lokale netwerk." - -#~ msgctxt "@text:window" -#~ msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent." -#~ msgstr "Cura verzendt anonieme gegevens naar Ultimaker om de printkwaliteit en gebruikerservaring te verbeteren. Hieronder ziet u een voorbeeld van alle gegevens die worden verzonden." - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send this data" -#~ msgstr "Ik wil deze gegevens niet verzenden" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending this data to Ultimaker and help us improve Cura" -#~ msgstr "Verzenden van deze gegevens naar Ultimaker toestaan en ons helpen Cura te verbeteren" - -#~ msgctxt "@label" -#~ msgid "No print selected" -#~ msgstr "Er is geen print geselecteerd" - -#~ msgctxt "@info:tooltip" -#~ 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 "Standaard staan witte pixels voor hoge en zwarte pixels voor lage punten in het raster. U kunt dit omdraaien, zodat zwarte pixels voor hoge en witte pixels voor lage punten in het raster staan." - -#~ msgctxt "@title" -#~ msgid "Select Printer Upgrades" -#~ msgstr "Printerupgrades Selecteren" - -#~ msgctxt "@label" -#~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "Selecteren welke extruder voor support wordt gebruikt. Deze optie zorgt ervoor dat onder het model ondersteuning wordt geprint, om te voorkomen dat dit doorzakt of dat er midden in de lucht moet worden geprint." - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "Dit kwaliteitsprofiel is niet beschikbaar voor uw huidige materiaal- en nozzleconfiguratie. Breng hierin wijzigingen aan om gebruik van dit kwaliteitsprofiel mogelijk te maken" - -#~ msgctxt "@label shown when we load a Gcode file" -#~ msgid "Print setup disabled. G code file can not be modified." -#~ msgstr "Printinstelling is uitgeschakeld. Het G-code-bestand kan niet worden gewijzigd." - -#~ msgctxt "@label" -#~ msgid "See the material compatibility chart" -#~ msgstr "Zie de materiaalcompatibiliteitsgrafiek" - -#~ msgctxt "@label" -#~ msgid "View types" -#~ msgstr "Typen weergeven" - -#~ msgctxt "@label" -#~ msgid "Hi " -#~ msgstr "Hallo " - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to material profiles from leading brands" -#~ msgstr "" -#~ "- Printtaken verzenden naar Ultimaker-printers buiten uw lokale netwerk\n" -#~ "- Ultimaker Cura-instellingen opslaan in de cloud zodat u ze overal kunt gebruiken\n" -#~ "- Exclusieve toegang verkrijgen tot materiaalprofielen van toonaangevende merken" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Unable to Slice" -#~ msgstr "Kan Niet Slicen" - -#~ msgctxt "@label" -#~ msgid "Time specification" -#~ msgstr "Tijdspecificatie" - -#~ msgctxt "@label" -#~ msgid "Material specification" -#~ msgstr "Materiaalspecificatie" - -#~ msgctxt "@title:tab" -#~ msgid "Add a printer to Cura" -#~ msgstr "Een printer aan Cura toevoegen" - -#~ msgctxt "@title:tab" -#~ msgid "" -#~ "Select the printer you want to use from the list below.\n" -#~ "\n" -#~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog." -#~ msgstr "" -#~ "Selecteer de printer die u wilt gebruiken, uit de onderstaande lijst.\n" -#~ "\n" -#~ "Als uw printer niet in de lijst wordt weergegeven, gebruikt u de 'Custom FFF Printer' (Aangepaste FFF-printer) uit de categorie 'Custom' (Aangepast) en past u in het dialoogvenster dat wordt weergegeven, de instellingen aan zodat deze overeenkomen met uw printer." - -#~ msgctxt "@label" -#~ msgid "Printer Name" -#~ msgstr "Printernaam" - -#~ msgctxt "@action:button" -#~ msgid "Add Printer" -#~ msgstr "Printer Toevoegen" - -#~ msgid "Modify G-Code" -#~ msgstr "G-code wijzigen" - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." -#~ msgstr "Er valt niets te slicen omdat geen van de modellen in het bouwvolume past. Schaal of roteer de modellen totdat deze passen." - -#~ msgctxt "@info:status" -#~ msgid "The selected material is incompatible with the selected machine or configuration." -#~ msgstr "Het geselecteerde materiaal is niet compatibel met de geselecteerde machine of configuratie." - -#~ msgctxt "@info:title" -#~ msgid "Incompatible Material" -#~ msgstr "Niet-compatibel materiaal" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "Kan het profiel niet importeren uit {0}: {1}" - -#~ msgctxt "@title" -#~ msgid "Toolbox" -#~ msgstr "Werkset" - -#~ msgctxt "@label" -#~ msgid "Not available" -#~ msgstr "Niet beschikbaar" - -#~ msgctxt "@label" -#~ msgid "Unreachable" -#~ msgstr "Niet bereikbaar" - -#~ msgctxt "@label" -#~ msgid "Available" -#~ msgstr "Beschikbaar" - -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "Voorbereiden" - -#~ msgctxt "@label:status" -#~ msgid "Pausing" -#~ msgstr "Pauzeren" - -#~ msgctxt "@label:status" -#~ msgid "Resuming" -#~ msgstr "Hervatten" - -#~ msgctxt "@label" -#~ msgid "Waiting for: Unavailable printer" -#~ msgstr "Wachten op: Niet-beschikbare printer" - -#~ msgctxt "@label" -#~ msgid "Waiting for: First available" -#~ msgstr "Wachten op: Eerst beschikbare" - -#~ msgctxt "@label" -#~ msgid "Waiting for: " -#~ msgstr "Wachten op: " - -#~ msgctxt "@label" -#~ msgid "Configuration change" -#~ msgstr "Configuratiewijziging" - -#~ msgctxt "@label" -#~ msgid "The assigned printer, %1, requires the following configuration change(s):" -#~ msgstr "Voor de toegewezen printer, %1, is/zijn de volgende configuratiewijziging/configuratiewijzigingen vereist:" - -#~ msgctxt "@label" -#~ msgid "Override" -#~ msgstr "Overschrijven" - -#~ msgctxt "@label" -#~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?" -#~ msgstr "Als u een printtaak met een incompatibele configuratie start, kan dit leiden tot schade aan de 3D-printer. Weet u zeker dat u de configuratie en print %1 wilt overschrijven?" - -#~ msgctxt "@window:title" -#~ msgid "Override configuration configuration and start print" -#~ msgstr "Configuratie overschrijven en printen starten" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage queue" -#~ msgstr "Wachtrij beheren" - -#~ msgctxt "@label" -#~ msgid "Printing" -#~ msgstr "Printen" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage printers" -#~ msgstr "Printers beheren" - -#~ msgctxt "@action:button" -#~ msgid "Activate Configuration" -#~ msgstr "Configuratie Activeren" - -#~ msgctxt "@info:tooltip" -#~ msgid "Load the configuration of the printer into Cura" -#~ msgstr "De configuratie van de printer in Cura laden" - -#~ msgctxt "@label" -#~ msgid "Show Travels" -#~ msgstr "Bewegingen weergeven" - -#~ msgctxt "@label" -#~ msgid "Show Helpers" -#~ msgstr "Helpers weergeven" - -#~ msgctxt "@label" -#~ msgid "Show Shell" -#~ msgstr "Shell weergeven" - -#~ msgctxt "@label" -#~ msgid "Show Infill" -#~ msgstr "Vulling weergeven" - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send these data" -#~ msgstr "Ik wil deze gegevens niet verzenden" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending these data to Ultimaker and help us improve Cura" -#~ msgstr "Verzenden van deze gegevens naar Ultimaker toestaan en ons helpen Cura te verbeteren" - -#~ msgctxt "@label" -#~ msgid "Printer type:" -#~ msgstr "Type printer:" - -#~ msgctxt "@label" -#~ msgid "Connection:" -#~ msgstr "Verbinding:" - -#~ msgctxt "@label" -#~ msgid "State:" -#~ msgstr "Status:" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for a printjob" -#~ msgstr "Wachten op een printtaak" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for someone to clear the build plate" -#~ msgstr "Wachten totdat iemand het platform leegmaakt" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Aborting print..." -#~ msgstr "Printen afbreken..." - -#~ msgctxt "@label" -#~ msgid "Protected profiles" -#~ msgstr "Beschermde profielen" - -#~ msgctxt "@label" -#~ msgid "Printer Name:" -#~ msgstr "Printernaam:" - -#~ msgctxt "@label" -#~ msgid "Profile:" -#~ msgstr "Profiel:" - -#~ msgctxt "@label:textbox" -#~ msgid "Search..." -#~ msgstr "Zoeken..." - -#~ msgctxt "@action:inmenu" -#~ msgid "Collapse All" -#~ msgstr "Alles samenvouwen" - -#~ msgctxt "@action:inmenu" -#~ msgid "Expand All" -#~ msgstr "Alles uitvouwen" - -#~ msgctxt "@label:header configurations" -#~ msgid "Available configurations" -#~ msgstr "Beschikbare configuraties" - -#~ msgctxt "@label:extruder label" -#~ msgid "Extruder" -#~ msgstr "Extruder" - -#~ msgctxt "@label:extruder label" -#~ msgid "Yes" -#~ msgstr "Ja" - -#~ msgctxt "@label:extruder label" -#~ msgid "No" -#~ msgstr "Nee" - -#~ msgctxt "@label:listbox" -#~ msgid "Print Setup" -#~ msgstr "Instelling voor Printen" - -#~ msgctxt "@label:listbox" -#~ msgid "" -#~ "Print Setup disabled\n" -#~ "G-code files cannot be modified" -#~ msgstr "" -#~ "Instelling voor printen uitgeschakeld\n" -#~ "G-code-bestanden kunnen niet worden aangepast" - -#~ msgctxt "@label Hours and minutes" -#~ msgid "00h 00min" -#~ msgstr "00u 00min" - -#~ msgctxt "@tooltip" -#~ msgid "Time specification" -#~ msgstr "Tijdspecificatie" - -#~ msgctxt "@label" -#~ msgid "Cost specification" -#~ msgstr "Kostenspecificatie" - -#~ msgctxt "@label" -#~ msgid "Total:" -#~ msgstr "Totaal:" - -#~ msgctxt "@tooltip" -#~ msgid "Recommended Print Setup

    Print with the recommended settings for the selected printer, material and quality." -#~ msgstr "Aanbevolen instellingen voor printen

    Print met de aanbevolen instellingen voor de geselecteerde printer en kwaliteit, en het geselecteerde materiaal." - -#~ msgctxt "@tooltip" -#~ msgid "Custom Print Setup

    Print with finegrained control over every last bit of the slicing process." -#~ msgstr "Aangepaste instellingen voor printen

    Print met uiterst precieze controle over elk detail van het slice-proces." - -#~ msgctxt "@action:inmenu menubar:help" -#~ msgid "Show Engine &Log..." -#~ msgstr "Engine-&logboek Weergeven..." - -#~ msgctxt "@action:menu" -#~ msgid "Browse packages..." -#~ msgstr "Door packages bladeren..." - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "Expand/Collapse Sidebar" -#~ msgstr "Zijbalk uitbreiden/samenvouwen" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3D model" -#~ msgstr "Laad een 3D-model" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Ready to slice" -#~ msgstr "Gereed om te slicen" - -#~ msgctxt "@label:PrintjobStatus %1 is target operation" -#~ msgid "Ready to %1" -#~ msgstr "Gereed voor %1" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Slicing unavailable" -#~ msgstr "Slicen is niet beschikbaar" - -#~ msgctxt "@info:tooltip" -#~ msgid "Slice current printjob" -#~ msgstr "Huidige printtaak slicen" - -#~ msgctxt "@info:tooltip" -#~ msgid "Cancel slicing process" -#~ msgstr "Slicen annuleren" - -#~ msgctxt "@label:Printjob" -#~ msgid "Prepare" -#~ msgstr "Voorbereiden" - -#~ msgctxt "@label:Printjob" -#~ msgid "Cancel" -#~ msgstr "Annuleren" - -#~ msgctxt "@info:tooltip" -#~ msgid "Select the active output device" -#~ msgstr "Actief Uitvoerapparaat Selecteren" - -#~ msgctxt "@title:menu" -#~ msgid "&View" -#~ msgstr "Beel&d" - -#~ msgctxt "@title:menu" -#~ msgid "&Settings" -#~ msgstr "In&stellingen" - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "&Toolbox" -#~ msgstr "Werkse&t" - -#~ msgctxt "@action:button" -#~ msgid "Open File" -#~ msgstr "Bestand Openen" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "Dit kwaliteitsprofiel is niet beschikbaar voor uw huidige materiaal- en nozzleconfiguratie. Breng hierin wijzigingen aan om gebruik van dit kwaliteitsprofiel mogelijk te maken" - -#~ msgctxt "@label" -#~ msgid "Print Speed" -#~ msgstr "Printsnelheid" - -#~ msgctxt "@label" -#~ msgid "Slower" -#~ msgstr "Langzamer" - -#~ msgctxt "@label" -#~ msgid "Faster" -#~ msgstr "Sneller" - -#~ msgctxt "@label" -#~ msgid "Enable gradual" -#~ msgstr "Geleidelijke vulling" - -#~ msgctxt "@label" -#~ msgid "Generate Support" -#~ msgstr "Support genereren" - -#~ msgctxt "@label" -#~ msgid "Build Plate Adhesion" -#~ msgstr "Hechting aan platform" - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints?
    Read the Ultimaker Troubleshooting Guides" -#~ msgstr "Hebt u hulp nodig om betere prints te krijgen?
    Lees de Ultimaker Troubleshooting Guides (Handleiding voor probleemoplossing)" - -#~ msgctxt "@title:window" -#~ msgid "Engine Log" -#~ msgstr "Engine-logboek" - -#~ msgctxt "@label" -#~ msgid "Printer type" -#~ msgstr "Type printer" - -#~ msgctxt "@label" -#~ msgid "Use glue with this material combination" -#~ msgstr "Gebruik lijm bij deze combinatie van materialen" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "Compatibiliteit controleren" - -#~ msgctxt "@tooltip" -#~ msgid "Click to check the material compatibility on Ultimaker.com." -#~ msgstr "Klik om de materiaalcompatibiliteit te controleren op Ultimaker.com." - -#~ msgctxt "description" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "Hiermee geeft u de wijzigingen weer ten opzichte van de laatst gecontroleerde versie." - -#~ msgctxt "name" -#~ msgid "Changelog" -#~ msgstr "Wijzigingenlogboek" - -#~ msgctxt "description" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "Hiermee maakt u een afgevlakte versie van het gewijzigde profiel." - -#~ msgctxt "name" -#~ msgid "Profile flatener" -#~ msgstr "Profielvlakker" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license." -#~ msgstr "Vraag de gebruiker één keer of deze akkoord gaat met de licentie." - -#~ msgctxt "name" -#~ msgid "UserAgreement" -#~ msgstr "UserAgreement" - -#~ msgctxt "@warning:status" -#~ msgid "Please generate G-code before saving." -#~ msgstr "Genereer G-code voordat u het bestand opslaat." - -#~ msgctxt "@action" -#~ msgid "Upgrade Firmware" -#~ msgstr "Firmware-upgrade Uitvoeren" - -#~ msgctxt "@label unknown material" -#~ msgid "Unknown" -#~ msgstr "Onbekend" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "No custom profile to import in file {0}" -#~ msgstr "Er is geen aangepast profiel om in het bestand {0} te importeren" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "This profile {0} contains incorrect data, could not import it." -#~ msgstr "Dit profiel {0} bevat incorrecte gegevens. Kan het profiel niet importeren." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "De machine die is vastgelegd in het profiel {0} ({1}) komt niet overeen met uw huidige machine ({2}). Kan het profiel niet importeren." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall " -#~ msgstr "Bevestig de-installeren " - -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1 m / ~ %2 g / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1 m / ~ %2 g" - -#~ msgctxt "@title" -#~ msgid "Upgrade Firmware" -#~ msgstr "Firmware-upgrade Uitvoeren" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Printen via Doodle3D WiFi-Box" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Printen via Doodle3D WiFi-Box" - -#~ msgctxt "@info:status" -#~ msgid "Connecting to Doodle3D Connect" -#~ msgstr "Verbinding maken met Doodle3D Connect" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to Doodle3D Connect" -#~ msgstr "De gegevens worden naar Doodle3D Connect verzonden" - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -#~ msgstr "Kan geen gegevens naar Doodle3D Connect verzenden. Is er nog een andere taak actief?" - -#~ msgctxt "@info:status" -#~ msgid "Storing data on Doodle3D Connect" -#~ msgstr "Gegevens op Doodle3D Connect opslaan" - -#~ msgctxt "@info:status" -#~ msgid "File sent to Doodle3D Connect" -#~ msgstr "Het bestand is naar Doodle3D Connect verzonden" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect..." -#~ msgstr "Connect openen..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Open the Doodle3D Connect web interface" -#~ msgstr "De Doodle3D Connect-webinterface openen" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Blender file" -#~ msgstr "Blender-bestand" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Could not export using \"{}\" quality!\n" -#~ "Felt back to \"{}\"." -#~ msgstr "" -#~ "Kan niet exporteren met de kwaliteit \"{}\"!\n" -#~ "Instelling teruggezet naar \"{}\"." - -#~ msgctxt "@label" -#~ msgid "Contact" -#~ msgstr "Contact" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." -#~ msgstr "Deze printer is niet opgezet om een groep Ultimaker 3 printers te hosten." - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -#~ msgstr "Deze printer is de host voor een groep van %1 Ultimaker 3 printers." - -#~ msgctxt "@label: arg 1 is group name" -#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "%1 is niet ingesteld voor het hosten van een groep aangesloten Ultimaker 3-printers" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Add/Remove printers" -#~ msgstr "Printers toevoegen/verwijderen" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "Hiermee opent u de pagina met printtaken in uw standaard webbrowser." - -#~ msgctxt "@action:button" -#~ msgid "View print jobs" -#~ msgstr "Printtaken weergeven" - -#~ msgctxt "@label:status" -#~ msgid "Preparing to print" -#~ msgstr "Printen voorbereiden" - -#~ msgctxt "@label:status" -#~ msgid "Available" -#~ msgstr "Beschikbaar" - -#~ msgctxt "@label:status" -#~ msgid "Lost connection with the printer" -#~ msgstr "Verbinding met de printer is verbroken" - -#~ msgctxt "@label:status" -#~ msgid "Unknown" -#~ msgstr "Onbekend" - -#~ msgctxt "@label:status" -#~ msgid "Disabled" -#~ msgstr "Uitgeschakeld" - -#~ msgctxt "@label:status" -#~ msgid "Reserved" -#~ msgstr "Gereserveerd" - -#~ msgctxt "@label" -#~ msgid "Preparing to print" -#~ msgstr "Voorbereiden om te printen" - -#~ msgctxt "@label:status" -#~ msgid "Print aborted" -#~ msgstr "Print afgebroken" - -#~ msgctxt "@label" -#~ msgid "Not accepting print jobs" -#~ msgstr "Accepteert geen printtaken" - -#~ msgctxt "@label" -#~ msgid "Finishes at: " -#~ msgstr "Klaar om: " - -#~ msgctxt "@label" -#~ msgid "Clear build plate" -#~ msgstr "Platform leegmaken" - -#~ msgctxt "@label" -#~ msgid "Waiting for configuration change" -#~ msgstr "Wacht op wijziging van configuratie" - -#~ msgctxt "@title" -#~ msgid "Print jobs" -#~ msgstr "Printtaken" - -#~ msgctxt "@label:title" -#~ msgid "Printers" -#~ msgstr "Printers" - -#~ msgctxt "@action:button" -#~ msgid "View printers" -#~ msgstr "Printers weergeven" - -#~ msgctxt "@label:" -#~ msgid "Pause" -#~ msgstr "Pauzeren" - -#~ msgctxt "@label:" -#~ msgid "Resume" -#~ msgstr "Hervatten" - -#~ msgctxt "@label:" -#~ msgid "Abort Print" -#~ msgstr "Printen Afbreken" - -#~ msgctxt "@option:openProject" -#~ msgid "Always ask" -#~ msgstr "Altijd vragen" - -#~ msgctxt "@label" -#~ msgid "Override Profile" -#~ msgstr "Profiel overschrijven" - -#~ msgctxt "@info:tooltip" -#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -#~ msgstr "Moeten nieuw geladen modellen op het platform worden geschikt? Gebruikt in combinatie met meerdere platformen (EXPERIMENTEEL)" - -#~ msgctxt "@option:check" -#~ msgid "Do not arrange objects on load" -#~ msgstr "Objecten niet schikken na laden" - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Save Selection to File" -#~ msgstr "&Selectie Opslaan naar Bestand" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &As..." -#~ msgstr "Opslaan &als..." - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &Project..." -#~ msgstr "&Project opslaan..." - -# Added after the string freeze. -#~ msgctxt "@label" -#~ msgid "Use adhesion sheet or glue with this material combination" -#~ msgstr "Gebruik een hechtingsvel of lijm met deze materiaalcombinatie" - -#~ msgctxt "description" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "Accepteert G-code en verzendt deze code via wifi naar een Doodle3D WiFi-Box." - -#~ msgctxt "name" -#~ msgid "Doodle3D WiFi-Box" -#~ msgstr "Doodle3D WiFi-Box" - -#~ msgctxt "description" -#~ msgid "Provides an edit window for direct script editing." -#~ msgstr "Deze optie biedt een bewerkingsvenster voor rechtstreeks bewerken van scripts." - -#~ msgctxt "name" -#~ msgid "Live scripting tool" -#~ msgstr "Gereedschap voor live uitvoeren van scripts" - -#~ msgctxt "description" -#~ msgid "Helps to open Blender files directly in Cura." -#~ msgstr "Hiermee kunnen Blender-bestanden rechtstreeks in Cura worden geopend." - -#~ msgctxt "name" -#~ msgid "Blender Integration (experimental)" -#~ msgstr "Blender-integratie (experimenteel)" - -#~ msgctxt "@info:title" -#~ msgid "Model Checker Warning" -#~ msgstr "Waarschuwing modelcontrole" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n" -#~ "Tips that may be useful to improve the print quality:\n" -#~ "1) Use rounded corners.\n" -#~ "2) Turn the fan off (only if there are no tiny details on the model).\n" -#~ "3) Use a different material." -#~ msgstr "" -#~ "Sommige modellen worden mogelijk niet optimaal geprint vanwege de grootte van het object en de gekozen materialen voor modellen: {model_names}.\n" -#~ "Mogelijk nuttige tips om de printkwaliteit te verbeteren:\n" -#~ "1) Gebruik afgeronde hoeken.\n" -#~ "2) Schakel de ventilator uit (alleen als het model zeer kleine details bevat).\n" -#~ "3) Gebruik een ander materiaal." - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "SolidWorks heeft fouten gerapporteerd tijdens het openen van uw bestand. Het wordt aanbevolen deze problemen binnen SolidWorks zelf op te lossen." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ "Thanks!" -#~ msgstr "" -#~ "In uw tekening zijn geen modellen gevonden. Controleer de inhoud nogmaals en zorg ervoor dat één onderdeel of assemblage zich in de tekening bevindt.\n" -#~ "\n" -#~ "Hartelijk dank." - -#~ 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" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "In uw tekening is meer dan één onderdeel of assemblage gevonden. Momenteel worden alleen tekeningen met precies één onderdeel of assemblage ondersteund.\n" -#~ "\n" -#~ "Sorry." - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks part file" -#~ msgstr "Onderdelenbestand SolidWorks" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks assembly file" -#~ msgstr "Montagebestand SolidWorks" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks drawing file" -#~ msgstr "Tekenbestand SolidWorks" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "Beste klant,\n" -#~ "Op uw systeem is geen geldige installatie van SolidWorks aangetroffen. Dit betekent dat SolidWorks niet is geïnstalleerd of dat u niet over een geldige licentie beschikt. Controleer of SolidWorks zelf zonder problemen kan worden uitgevoerd en/of neem contact op met uw IT-afdeling.\n" -#~ "\n" -#~ "Met vriendelijke groeten\n" -#~ " - Thomas Karl Pietrowski" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "Beste klant,\n" -#~ "Momenteel voert u deze plug-in uit op een ander besturingssysteem dan Windows. Deze plug-in werkt alleen op systemen waarop Windows en SolidWorks met een geldige licentie zijn geïnstalleerd. Installeer deze plug-in op een Windows-systeem waarop SolidWorks is geïnstalleerd.\n" -#~ "\n" -#~ "Met vriendelijke groeten\n" -#~ " - Thomas Karl Pietrowski" - -#~ msgid "Configure" -#~ msgstr "Configureren" - -#~ msgid "Installation guide for SolidWorks macro" -#~ msgstr "Installatiegids voor SolidWorks-macro" - -#~ msgctxt "@action:button" -#~ msgid "Disable" -#~ msgstr "Uitschakelen" - -#~ msgctxt "@action:tooltip" -#~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences." -#~ msgstr "Cura niet toestaan geanonimiseerde gebruiksgegevens te verzenden. U kunt deze optie op een later tijdstip weer inschakelen in de voorkeuren." - -#~ msgid "Install" -#~ msgstr "Installeren" - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory." -#~ msgstr "Kan de bestanden voor de Siemens NX-plug-ins niet kopiëren. Controleer uw UGII_USER_DIR. Deze is niet ingesteld op een map." - -#~ msgid "Successfully installed Siemens NX Cura plugin." -#~ msgstr "De Siemens NX Cura-plug-in is geïnstalleerd." - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR." -#~ msgstr "Kan de bestanden voor de Siemens NX-plug-ins niet installeren. Controleer uw UGII_USER_DIR." - -#~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX." -#~ msgstr "Kan de Siemens NX-plug-in niet installeren. Het instellen van de omgevingsvariabele UGII_USER_DIR voor Siemens NX is mislukt." - -#~ msgctxt "@info:status" -#~ msgid "Failed to get plugin ID from {0}" -#~ msgstr "Kan de plug-in-ID van {0} niet vinden" - -#~ msgctxt "@info:tile" -#~ msgid "Warning" -#~ msgstr "Waarschuwing" - -#~ msgctxt "@window:title" -#~ msgid "Plugin browser" -#~ msgstr "plug-in-browser" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks: Export wizard" -#~ msgstr "SolidWorks: exportwizard" - -#~ msgctxt "@action:label" -#~ msgid "Quality:" -#~ msgstr "Kwaliteit:" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (3D-printing)" -#~ msgstr "Fijn (3D-printen)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (3D-printing)" -#~ msgstr "Grof (3D-printen)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (SolidWorks)" -#~ msgstr "Fijn (SolidWorks)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (SolidWorks)" -#~ msgstr "Grof (SolidWorks)" - -#~ msgctxt "@text:window" -#~ msgid "Show this dialog again" -#~ msgstr "Dit dialoogvenster opnieuw tonen" - -#~ msgctxt "@action:button" -#~ msgid "Continue" -#~ msgstr "Verder" - -#~ msgctxt "@action:button" -#~ msgid "Abort" -#~ msgstr "Afbreken" - -#~ msgctxt "@title:window" -#~ msgid "How to install Cura SolidWorks macro" -#~ msgstr "De Cura SolidWorks-macro installeren" - -#~ msgctxt "@description:label" -#~ msgid "Steps:" -#~ msgstr "Stappen:" - -#~ msgctxt "@action:button" -#~ msgid "" -#~ "Open the directory\n" -#~ "with macro and icon" -#~ msgstr "" -#~ "Open de map\n" -#~ "met macro en pictogram" - -#~ msgctxt "@description:label" -#~ msgid "Instructions:" -#~ msgstr "Instructies:" - -#~ msgctxt "@action:playpause" -#~ msgid "Play" -#~ msgstr "Afspelen" - -#~ msgctxt "@action:playpause" -#~ msgid "Pause" -#~ msgstr "Pauzeren" - -#~ msgctxt "@action:button" -#~ msgid "Previous Step" -#~ msgstr "Vorige stap" - -#~ msgctxt "@action:button" -#~ msgid "Done" -#~ msgstr "Gereed" - -#~ msgctxt "@action:button" -#~ msgid "Next Step" -#~ msgstr "Volgende stap" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks plugin: Configuration" -#~ msgstr "SolidWorks-plug-in: configuratie" - -#~ msgctxt "@title:tab" -#~ msgid "Conversion settings" -#~ msgstr "Conversie-instellingen" - -#~ msgctxt "@label" -#~ msgid "First choice:" -#~ msgstr "Eerste keuze:" - -#~ msgctxt "@text:menu" -#~ msgid "Latest installed version (Recommended)" -#~ msgstr "Recentst geïnstalleerde versie (aanbevolen)" - -#~ msgctxt "@text:menu" -#~ msgid "Default version" -#~ msgstr "Standaardversie" - -#~ msgctxt "@label" -#~ msgid "Show wizard before opening SolidWorks files" -#~ msgstr "Wizard tonen voordat SolidWorks-bestanden worden geopend" - -#~ msgctxt "@label" -#~ msgid "Automatically rotate opened file into normed orientation" -#~ msgstr "Geopend bestand automatisch roteren naar de genormaliseerde stand" - -#~ msgctxt "@title:tab" -#~ msgid "Installation(s)" -#~ msgstr "Installatie(s)" - -#~ msgctxt "@label" -#~ msgid "COM service found" -#~ msgstr "COM-service gevonden" - -#~ msgctxt "@label" -#~ msgid "Executable found" -#~ msgstr "Uitvoerbaar bestand gevonden" - -#~ msgctxt "@label" -#~ msgid "COM starting" -#~ msgstr "COM starten" - -#~ msgctxt "@label" -#~ msgid "Revision number" -#~ msgstr "Revisienummer" - -#~ msgctxt "@label" -#~ msgid "Functions available" -#~ msgstr "Beschikbare functies" - -#~ msgctxt "@label (%1 is object name)" -#~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?" -#~ msgstr "Het nieuwe materiaal is ingesteld op %1 mm. Dit is niet compatibel met de huidige machine. Wilt u verder gaan?" - -#~ msgctxt "@action:menu" -#~ msgid "Browse plugins..." -#~ msgstr "Door plug-ins bladeren..." - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "P&lugins" -#~ msgstr "&Plugins" - -#~ msgctxt "@window:title" -#~ msgid "Install Plugin" -#~ msgstr "plug-in installeren" - -#~ 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 "Manages network connections to Ultimaker 3 printers" -#~ msgstr "Hiermee beheert u netwerkverbindingen naar Ultimaker 3-printers" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations." -#~ msgstr "Deze optie biedt u de mogelijkheid bepaalde bestanden via SolidWorks te openen. De bestanden worden vervolgens via deze plug-in geconverteerd en geoptimaliseerd." - -#~ msgctxt "name" -#~ msgid "SolidWorks Integration" -#~ msgstr "SolidWorks-integratie" - -#~ msgctxt "description" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "Slaat na het aanbrengen van wijzigingen automatisch Voorkeuren, Machines en Profielen op." - -#~ msgctxt "name" -#~ msgid "Auto Save" -#~ msgstr "Automatisch Opslaan" - -#~ msgctxt "description" -#~ msgid "Helps you to install an 'export to Cura' button in Siemens NX." -#~ msgstr "Hiermee kunt u een knop installeren in Siemens NX om te 'exporteren naar Cura'." - -#~ msgctxt "name" -#~ msgid "Siemens NX Integration" -#~ msgstr "Siemens NX Integratie" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new plugins." -#~ msgstr "Zoek, beheer en installeer nieuwe plug-ins." - -#~ msgctxt "name" -#~ msgid "Plugin Browser" -#~ msgstr "plug-in-browser" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license" -#~ msgstr "Vraag de gebruiker één keer of deze akkoord gaat met de licentie" - -#~ 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 "@item:inlistbox" -#~ msgid "GCode File" -#~ msgstr "G-code-bestand" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer is busy or not connected." -#~ msgstr "Er kan geen nieuwe taak worden gestart omdat de printer bezig is of niet aangesloten is." - -#~ msgctxt "@info:title" -#~ msgid "Printer Unavailable" -#~ msgstr "Printer is niet beschikbaar" - -#~ msgctxt "@info:status" -#~ msgid "This printer does not support USB printing because it uses UltiGCode flavor." -#~ msgstr "De printer biedt geen ondersteuning voor USB-printen omdat deze de codeversie UltiGCode gebruikt." - -#~ msgctxt "@info:title" -#~ msgid "USB Printing" -#~ msgstr "USB-printen" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer does not support usb printing." -#~ msgstr "Er kan geen nieuwe taak worden gestart omdat de printer geen ondersteuning biedt voor USB-printen." - -#~ msgctxt "@info" -#~ msgid "Unable to update firmware because there are no printers connected." -#~ msgstr "De firmware kan niet worden bijgewerkt omdat er geen printers zijn aangesloten." - -#~ msgctxt "@info" -#~ msgid "Could not find firmware required for the printer at %s." -#~ msgstr "De voor de printer benodigde software is niet op %s te vinden." - -#~ msgctxt "@info:title" -#~ msgid "Printer Firmware" -#~ msgstr "Firmware van uw printer" - -#~ msgctxt "@info:title" -#~ msgid "Connection status" -#~ msgstr "Verbindingsstatus" - -#~ msgctxt "@info:title" -#~ msgid "Connection Status" -#~ msgstr "Verbindingsstatus" - -#~ msgctxt "@info:status" -#~ msgid "Access request was denied on the printer." -#~ msgstr "Toegang is op de printer geweigerd." - -#~ msgctxt "@info:status" -#~ msgid "Access request failed due to a timeout." -#~ msgstr "De toegangsaanvraag is mislukt vanwege een time-out." - -#~ msgctxt "@info:status" -#~ msgid "The connection with the network was lost." -#~ msgstr "De verbinding met het netwerk is verbroken." - -#~ msgctxt "@info:status" -#~ msgid "The connection with the printer was lost. Check your printer to see if it is connected." -#~ msgstr "De verbinding met de printer is verbroken. Controleer of de printer nog is aangesloten." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s." -#~ msgstr "Er kan geen nieuwe taak worden gestart omdat de printer bezig is. De huidige printerstatus is %s." - -#~ msgctxt "@info:title" -#~ msgid "Printer Status" -#~ msgstr "Printerstatus" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}" -#~ msgstr "Er kan geen nieuwe taak worden gestart. Er is geen PrintCore geladen in de sleuf {0}." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No material loaded in slot {0}" -#~ msgstr "Er kan geen nieuwe taak worden gestart. Er is geen materiaal geladen in de sleuf {0}." - -#~ msgctxt "@label" -#~ msgid "Not enough material for spool {0}." -#~ msgstr "Er is onvoldoende materiaal voor de spool {0}." - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Afwijkende PrintCore (Cura: {0}, Printer: {1}) geselecteerd voor de extruder {2}" - -#~ msgctxt "@label" -#~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "De PrintCore {0} is niet correct gekalibreerd. Op de printer moet XY-kalibratie worden uitgevoerd." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to printer. Is another job still active?" -#~ msgstr "Kan geen gegevens naar de printer verzenden. Is er nog een andere taak actief?" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Print aborted. Please check the printer" -#~ msgstr "Print afgebroken. Controleer de printer" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Pausing print..." -#~ msgstr "Print onderbreken..." - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Resuming print..." -#~ msgstr "Print hervatten..." - -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "Deze printer is niet ingesteld voor het hosten van een groep aangesloten Ultimaker 3-printers." - -#~ msgctxt "Count is number of printers." -#~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers." -#~ msgstr "Deze printer is de host voor een groep van {count} aangesloten Ultimaker 3-printers." - -#~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate." -#~ msgstr "{printer_name} heeft '{job_name}' voltooid. Haal de print op en bevestig dat het platform is leeggemaakt." - -#~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing." -#~ msgstr "{printer_name} is gereserveerd voor het printen van '{job_name}'. Wijzig de instellingen van de printer zodanig dat ze aansluiten bij de taak, zodat u kunt beginnen met printen." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "Kan geen nieuwe printtaak verzenden: deze 3D-printer is (nog) niet ingesteld voor het hosten van een groep aangesloten Ultimaker 3-printers." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send print job to group {cluster_name}." -#~ msgstr "Kan de printtaak niet naar groep {cluster_name} verzenden." - -#~ msgctxt "@info:status" -#~ msgid "Sent {file_name} to group {cluster_name}." -#~ msgstr "{file_name} is verzonden naar groep {cluster_name}." - -#~ msgctxt "@action:button" -#~ msgid "Show print jobs" -#~ msgstr "Printtaken weergeven" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs interface in your browser." -#~ msgstr "Opent de printtaken-interface in uw browser." - -#~ msgctxt "@label Printer name" -#~ msgid "Unknown" -#~ msgstr "Onbekend" - -#~ msgctxt "@info:progress" -#~ msgid "Sending {file_name} to group {cluster_name}" -#~ msgstr "Bezig met verzenden van {file_name} naar groep {cluster_name}" - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "SolidWorks heeft fouten gerapporteerd tijdens het openen van uw bestand. Het wordt aanbevolen deze problemen binnen SolidWorks zelf op te lossen." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ " Thanks!." -#~ msgstr "" -#~ "In uw tekening zijn geen modellen gevonden. Controleer de inhoud en zorg ervoor dat zich in de tekening een onderdeel of assemblage bevindt.\n" -#~ "\n" -#~ " Hartelijk dank." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "In uw tekening is meer dan één onderdeel of assemblage gevonden. Momenteel worden alleen tekeningen met precies één onderdeel of assemblage ondersteund.\n" -#~ "\n" -#~ "Sorry." - -#~ msgctxt "@item:material" -#~ msgid "No material loaded" -#~ msgstr "Geen materiaal ingevoerd" - -#~ msgctxt "@item:material" -#~ msgid "Unknown material" -#~ msgstr "Onbekend materiaal" - -#~ msgctxt "@info:status Has a cancel button next to it." -#~ msgid "The selected material diameter causes the material to become incompatible with the current printer." -#~ msgstr "Het materiaal is niet meer compatibel met de huidige printer vanwege de geselecteerde materiaaldiameter." - -#~ msgctxt "@action:button" -#~ msgid "Undo" -#~ msgstr "Ongedaan maken" - -#~ msgctxt "@action" -#~ msgid "Undo changing the material diameter." -#~ msgstr "Maak wijzigen van de materiaaldiameter ongedaan." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} doesn't match with your current machine, could not import it." -#~ msgstr "De machine die is vastgelegd in het profiel {0} komt niet overeen met uw huidige machine. Kan het profiel niet importeren." - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal error has occurred. 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 "" -#~ "

    Er is een fatale fout opgetreden. Stuur ons het Crashrapport om het probleem op te lossen

    \n" -#~ "

    Druk op de knop \"Rapport verzenden\" om het foutenrapport automatisch naar onze servers te verzenden

    \n" -#~ " " - -#~ msgctxt "@label" -#~ msgid "not yet initialised
    " -#~ msgstr "nog niet geïnitialiseerd
    " - -#~ msgctxt "@label" -#~ msgid "Gcode flavor" -#~ msgstr "Versie G-code" - -#~ msgctxt "@label" -#~ msgid "Start Gcode" -#~ msgstr "Start G-code" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very start." -#~ msgstr "G-code-opdrachten die aan het begin worden uitgevoerd." - -#~ msgctxt "@label" -#~ msgid "End Gcode" -#~ msgstr "Eind G-code" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very end." -#~ msgstr "G-code-opdrachten die aan het eind worden uitgevoerd." - -#~ msgctxt "@label" -#~ msgid "Extruder Start Gcode" -#~ msgstr "Start-G-code van extruder" - -#~ msgctxt "@label" -#~ msgid "Extruder End Gcode" -#~ msgstr "Eind-G-code van extruder" - -#~ msgctxt "@label" -#~ msgid "Starting firmware update, this may take a while." -#~ msgstr "De firmware-update wordt gestart; dit kan enige tijd duren." - -#~ msgctxt "@label" -#~ msgid "Unknown error code: %1" -#~ msgstr "Onbekende foutcode: %1" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@label Printer status" -#~ msgid "Unknown" -#~ msgstr "Onbekend" - -#~ msgctxt "@title:window" -#~ msgid "Find & Update plugins" -#~ msgstr "Plug-ins zoeken en bijwerken" - -#~ msgctxt "@label" -#~ msgid "Here you can find a list of Third Party plugins." -#~ msgstr "Hier vindt u een lijst met plug-ins van derden." - -#~ msgctxt "@action:button" -#~ msgid "Upgrade" -#~ msgstr "Upgrade" - -#~ msgctxt "@action:button" -#~ msgid "Download" -#~ msgstr "Downloaden" - -#~ msgctxt "@info:tooltip" -#~ msgid "Show caution message in gcode reader." -#~ msgstr "Toon het waarschuwingsbericht in de G-code-lezer." - -#~ msgctxt "@option:check" -#~ msgid "Caution message in gcode reader" -#~ msgstr "Waarschuwingsbericht in de G-code-lezer" - -#~ msgctxt "@window:title" -#~ msgid "Import Profile" -#~ msgstr "Profiel Importeren" - -#~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name" -#~ msgid "Printer: %1, %2: %3" -#~ msgstr "Printer: %1, %2: %3" - -#~ msgctxt "@action:label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "Printer: %1" - -#~ msgctxt "@label" -#~ msgid "GCode generator" -#~ msgstr "G-code-schrijver" - -#~ msgctxt "@action:menu" -#~ msgid "Configure setting visiblity..." -#~ msgstr "Zichtbaarheid van instelling configureren..." - -#~ msgctxt "@title:menuitem %1 is the automatically selected material" -#~ msgid "Automatic: %1" -#~ msgstr "Automatisch: %1" - -#~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer" -#~ msgid "Automatic: %1" -#~ msgstr "Automatisch: %1" - -#~ msgctxt "@info:status" -#~ msgid "No printer connected" -#~ msgstr "Er is geen printer aangesloten" - -#~ msgctxt "@tooltip" -#~ msgid "The current temperature of this extruder." -#~ msgstr "De huidige temperatuur van deze extruder." - -#~ msgctxt "@action:menu" -#~ msgid "Installed plugins..." -#~ msgstr "Geïnstalleerde plugins..." - -#~ msgctxt "@label" -#~ msgid "Support Extruder" -#~ msgstr "Extruder voor supportstructuur" - -#~ msgctxt "description" -#~ msgid "Writes GCode to a file." -#~ msgstr "Schrijft G-code naar een bestand." - -#~ msgctxt "name" -#~ msgid "GCode Writer" -#~ msgstr "G-code-schrijver" - -#~ msgctxt "name" -#~ msgid "GCode Profile Reader" -#~ msgstr "G-code-profiellezer" - -#~ msgctxt "@info:status" -#~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" -#~ msgstr "Er zijn fouten opgetreden tijdens het openen van het SolidWorks-bestand. Controleer of u het bestand zonder problemen in SolidWorks kunt openen." - -#~ msgctxt "@info:status" -#~ msgid "Error while starting %s!" -#~ msgstr "Er is een fout opgetreden tijdens het starten van %s!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Simulation view" +#~ msgid "Simulation View" #~ msgstr "Simulatieweergave" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences." -#~ msgstr "Cura verzamelt geanonimiseerde slicing-statistieken. Dit kan bij de voorkeuren worden uitgeschakeld." - -#~ msgctxt "@action:button" -#~ msgid "Dismiss" -#~ msgstr "Verwijderen" - -#~ msgctxt "@menuitem" -#~ msgid "Global" -#~ msgstr "Algemeen" - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal exception has occurred. 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 "" -#~ "

    Er is een fatale uitzondering opgetreden. Stuur ons het Crashrapport om het probleem op te lossen

    \n" -#~ "

    Druk op de knop \"Rapport verzenden\" om het foutenrapport automatisch naar onze servers te verzenden

    \n" -#~ " " - -#~ msgctxt "@label Cura version" -#~ msgid "Cura version: {version}
    " -#~ msgstr "Cura-versie: {version}
    " - -#~ msgctxt "@label Platform" -#~ msgid "Platform: {platform}
    " -#~ msgstr "Platform: {platform}
    " - -#~ msgctxt "@label Qt version" -#~ msgid "Qt version: {qt}
    " -#~ msgstr "Qt-versie: {qt}
    " - -#~ msgctxt "@label PyQt version" -#~ msgid "PyQt version: {pyqt}
    " -#~ msgstr "PyQt-versie: {pyqt}
    " - -#~ msgctxt "@label OpenGL" -#~ msgid "OpenGL: {opengl}
    " -#~ msgstr "OpenGL: {opengl}
    " - -#~ msgctxt "@title:groupbox" -#~ msgid "Exception traceback" -#~ msgstr "Traceback van uitzondering" - -#~ msgctxt "@label" -#~ msgid "Material diameter" -#~ msgstr "Materiaaldiameter" - -#~ msgctxt "@title:window" -#~ msgid "Cura SolidWorks Plugin Configuration" -#~ msgstr "Configuratie Cura SolidWorks-plug-in" - -#~ msgctxt "@action:label" -#~ msgid "Default quality of the exported STL:" -#~ msgstr "Standaard kwaliteit van de geëxporteerde STL:" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always ask" -#~ msgstr "Altijd vragen" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Fine quality" -#~ msgstr "Altijd Fijne kwaliteit gebruiken" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Coarse quality" -#~ msgstr "Altijd Grove kwaliteit gebruiken" - -#~ msgctxt "@title:window" -#~ msgid "Import SolidWorks File as STL..." -#~ msgstr "SolidWorks-bestand importeren als STL..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Quality of the Exported STL" -#~ msgstr "Kwaliteit van de geëxporteerde STL" - -#~ msgctxt "@action:label" -#~ msgid "Quality" -#~ msgstr "Kwaliteit" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse" -#~ msgstr "Grof" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine" -#~ msgstr "Fijn" - -#~ msgctxt "@" -#~ msgid "No Profile Available" -#~ msgstr "Er is geen profiel beschikbaar" - -#~ msgctxt "@label" -#~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders" -#~ msgstr "Deze instelling wordt altijd door alle extruders gedeeld. Als u hier de instelling wijzigt, wordt de waarde voor alle extruders gewijzigd" - -#~ msgctxt "@tooltip" -#~ msgid "Time specification
    " -#~ msgstr "Tijdspecificatie
    " - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Reset camera position" -#~ msgstr "Camerapositie he&rstellen" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save project" -#~ msgstr "Project opslaan" - -#~ msgctxt "@title:tab" -#~ msgid "Prepare" -#~ msgstr "Voorbereiden" - -#~ msgctxt "@title:tab" -#~ msgid "Monitor" -#~ msgstr "Controleren" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "Compatibiliteit controleren" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura" -#~ msgstr "Hiermee hebt u de mogelijkheid bepaalde bestanden via SolidWorks te openen. De bestanden worden vervolgens geconverteerd en in Cura geladen" - -#~ msgctxt "@label:status" -#~ msgid "Blocked" -#~ msgstr "Geblokkeerd" - -#~ msgctxt "@label:status" -#~ msgid "Can't start print" -#~ msgstr "Print start niet" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect.." -#~ msgstr "Connect openen" - -#~ msgctxt "@info:title" -#~ msgid "Print Details" -#~ msgstr "Printgegevens" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB." -#~ msgstr "Om ervoor te zorgen dat uw {machine_name} van de nieuwste functies is voorzien, wordt aanbevolen om de firmware regelmatig bij te werken. U kunt dit doen op de {machine_name} (wanneer deze is verbonden met het netwerk) of via USB." - -#~ msgctxt "@info:title" -#~ msgid "Layer View" -#~ msgstr "Laagweergave" - -#~ msgctxt "@menuitem" -#~ msgid "Browse plugins" -#~ msgstr "Door plug-ins bladeren" - -#~ msgctxt "@info:title" -#~ msgid "Export Details" -#~ msgstr "Exportgegevens" - -#~ msgctxt "@label" -#~ msgid "" -#~ "

    A fatal exception has occurred that we could not recover from!

    \n" -#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " -#~ msgstr "" -#~ "

    Er is een fatale fout opgetreden die niet kan worden hersteld!

    \n" -#~ "

    Gebruik de onderstaande informatie om een bugrapport te plaatsen op http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " - -#~ msgctxt "@action:button" -#~ msgid "Open Web Page" -#~ msgstr "Webpagina openen" - -#~ msgctxt "@action:button" -#~ msgid "Ok" -#~ msgstr "OK" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "Deze printer is niet ingesteld voor het hosten van een groep aaneengesloten Ultimaker 3-printers" - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" -#~ msgstr "Deze printer is de host voor een groep van %1 aaneengesloten Ultimaker 3-printers" - -#~ msgctxt "@label" -#~ msgid "Completed on: " -#~ msgstr "Voltooid op: " - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "Opent de pagina met printtaken in uw standaard webbrowser." - -#~ msgctxt "@label" -#~ msgid "PRINTER GROUP" -#~ msgstr "PRINTERGROEP" - -#~ msgctxt "@action:warning" -#~ msgid "Loading a project will clear all models on the buildplate" -#~ msgstr "Als u een project laadt, worden alle modellen van het platform gewist" - -#~ msgctxt "@label" -#~ msgid "" -#~ " plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ " plug-in bevat een licentie.\n" -#~ "U moet akkoord gaan met deze licentie om deze plug-ins te mogen installeren.\n" -#~ "Gaat u akkoord met onderstaande voorwaarden?" - -#~ msgctxt "@label" -#~ msgid "00h 00min" -#~ msgstr "00u 00min" - -#~ msgctxt "@tooltip" -#~ msgid "Time information" -#~ msgstr "Tijdsinformatie" - -#~ msgctxt "@description" -#~ msgid "Print time" -#~ msgstr "Printtijd" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - -#~ msgctxt "@title:window" -#~ msgid "Cura" -#~ msgstr "Cura" - -#~ msgctxt "@label" -#~ msgid "Check material compatibility" -#~ msgstr "Materiaalcompatibiliteit controleren" - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection (Cluster)" -#~ msgstr "UM3-netwerkverbinding (Cluster)" - -#~ msgctxt "description" -#~ msgid "Provides the Layer view." -#~ msgstr "Biedt een laagweergave." - -#~ msgctxt "name" -#~ msgid "Layer View" -#~ msgstr "Laagweergave" - -#~ msgctxt "@item:inlistbox" -#~ msgid "X-Ray" -#~ msgstr "Röntgen" - -#~ msgctxt "@label" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "Accepteert G-code en verzendt deze code via WiFi naar een Doodle3D WiFi-Box." - -#~ msgctxt "@item:inmenu" -#~ msgid "Doodle3D printing" -#~ msgstr "Doodle3D-printen" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D" -#~ msgstr "Printen via Doodle3D" - -#~ msgctxt "@info:tooltip" -#~ msgid "Print with " -#~ msgstr "Printen via" - -#~ msgctxt "@title:menu" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Enable Scan devices..." -#~ msgstr "Scanners inschakelen..." - -#~ msgctxt "@info:progress" -#~ msgid "Saving to Removable Drive {0}" -#~ msgstr "Opslaan op Verwisselbaar Station {0}" - -#~ msgctxt "@info:status" -#~ msgid "Could not save to {0}: {1}" -#~ msgstr "Kan niet opslaan als {0}: {1}" - -#~ msgctxt "@info:status" -#~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!" -#~ msgstr "Houd er rekening mee dat u het SolidWorks-bestand handmatig opnieuw moet openen. Het opnieuw laden van het bestand zal geen effect hebben." - -#~ msgctxt "@item:inlistbox" -#~ msgid "Layers" -#~ msgstr "Lagen" - -#~ msgid "Browse plugins" -#~ msgstr "Vind plug-ins" - -#~ msgctxt "@item:inmenu" -#~ msgid "Solid" -#~ msgstr "Solide" - -#~ msgctxt "@label" -#~ msgid "The file {0} already exists. Are you sure you want to overwrite it?" -#~ msgstr "Het bestand {0} bestaat al. Weet u zeker dat u dit bestand wilt overschrijven?" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export profile to {0}: {1}" -#~ msgstr "Kan het profiel niet exporteren als {0}: {1}" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export profile to {0}: Writer plugin reported failure." -#~ msgstr "Kan het profiel niet exporteren als {0}: de plug-in voor de schrijver heeft een fout gerapporteerd." - -#~ msgctxt "@info:status" -#~ msgid "Exported profile to {0}" -#~ msgstr "Het profiel is geëxporteerd als {0}" - -#~ msgctxt "@info:status" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "Kan het profiel niet importeren uit {0}: {1}" - -#~ msgctxt "@title:window" -#~ msgid "Doodle3D Settings" -#~ msgstr "Doodle3D-instellingen" - -#~ msgctxt "@title:window" -#~ msgid "Print to: %1" -#~ msgstr "Printen naar: %1" - -#~ msgctxt "@label" -#~ msgid "Extruder Temperature: %1/%2°C" -#~ msgstr "Extrudertemperatuur: %1/%2°C" - -#~ msgctxt "@label" -#~ msgid "Bed Temperature: %1/%2°C" -#~ msgstr "Printbedtemperatuur: %1/%2°C" - -#~ msgctxt "@label" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@label" -#~ msgid "View Mode: Layers" -#~ msgstr "Weergavemodus: lagen" - -#~ msgctxt "@info:status" -#~ msgid "Could not import material %1: %2" -#~ msgstr "Kon materiaal %1 niet importeren: %2" - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported material %1" -#~ msgstr "Materiaal %1 is geïmporteerd" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export material to %1: %2" -#~ msgstr "Exporteren van materiaal naar %1 is mislukt: %2" - -#~ msgctxt "@info:status" -#~ msgid "Successfully exported material to %1" -#~ msgstr "Materiaal is geëxporteerd naar %1" - -#~ msgctxt "@label" -#~ msgid "%1 m / ~ %2 g / ~ %4 %3" -#~ msgstr "%1 m / ~ %2 g / ~ %4 %3" - -#~ msgctxt "@label" -#~ msgid "%1 m / ~ %2 g" -#~ msgstr "%1 m / ~ %2 g" - -#~ msgctxt "@label" -#~ msgid "Hotend" -#~ msgstr "Hotend" - -#~ msgctxt "@action:button" -#~ msgid "View Mode" -#~ msgstr "Weergavemodus" - -#~ msgctxt "@title:tab" -#~ msgid "Print" -#~ msgstr "Printen" - -#~ msgctxt "@label" -#~ msgid "0%" -#~ msgstr "0%" - -#~ msgctxt "@label" -#~ msgid "Empty infill will leave your model hollow with low strength." -#~ msgstr "Zonder vulling blijft uw model hol en heeft deze weinig sterkte." - -#~ msgctxt "@label" -#~ msgid "20%" -#~ msgstr "20%" - -#~ msgctxt "@label" -#~ msgid "Light (20%) infill will give your model an average strength." -#~ msgstr "Met lichte vulling (20%) krijgt uw model een gemiddelde sterkte." - -#~ msgctxt "@label" -#~ msgid "50%" -#~ msgstr "50%" - -#~ msgctxt "@label" -#~ msgid "Dense (50%) infill will give your model an above average strength." -#~ msgstr "Met een dichte vulling (50%) krijgt uw model een bovengemiddelde sterkte." - -#~ msgctxt "@label" -#~ msgid "100%" -#~ msgstr "100%" - -#~ msgctxt "@label" -#~ msgid "Solid (100%) infill will make your model completely solid." -#~ msgstr "Met solide vulling (100%) is uw model volledig massief." - -#~ msgctxt "@label" -#~ msgid "Gradual" -#~ msgstr "Geleidelijk" - -#~ msgctxt "description" -#~ msgid "Provides support for writing X3G files" -#~ msgstr "Biedt ondersteuning voor het schrijven van X3G-bestanden." - -#~ msgctxt "name" -#~ msgid "X3G Writer" -#~ msgstr "X3G-schrijver" - -#~ msgctxt "@label" -#~ msgid "Machine Settings action" -#~ msgstr "Actie machine-instellingen" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "X-Ray View" -#~ msgstr "Röntgenweergave" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the X-Ray view." -#~ msgstr "Biedt de röntgenweergave." - -#~ msgctxt "@label" -#~ msgid "X3D Reader" -#~ msgstr "X3D-lezer" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for reading X3D files." -#~ msgstr "Deze optie biedt ondersteuning voor het lezen van X3D-bestanden." - -#~ msgctxt "@label" -#~ msgid "GCode Writer" -#~ msgstr "G-code-schrijver" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Writes GCode to a file." -#~ msgstr "Schrijft G-code naar een bestand." - -#~ msgctxt "@action:button Preceded by 'Ready to'." -#~ msgid "Print with Doodle3D" -#~ msgstr "Printen via Doodle3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "Geeft de wijzigingen weer ten opzichte van de laatst gecontroleerde versie." - -#~ msgctxt "@label" -#~ msgid "Profile flatener" -#~ msgstr "Profielvlakker" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "Hiermee maakt u een afgevlakte versie van het gewijzigde profiel." - -#~ msgctxt "@label" -#~ msgid "USB printing" -#~ msgstr "USB-printen" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -#~ msgstr "Accepteert G-code en verzendt deze code naar een printer. Via de plug-in kan tevens de firmware worden bijgewerkt." - -#~ msgctxt "X3G Writer Plugin Description" -#~ msgid "Writes X3G to a file" -#~ msgstr "Schrijft X3G-code naar een bestand." - -#~ msgctxt "@label" -#~ msgid "Removable Drive Output Device Plugin" -#~ msgstr "Plug-in voor Verwijderbaar Uitvoerapparaat" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides removable drive hotplugging and writing support." -#~ msgstr "Biedt hotplug- en schrijfondersteuning voor verwisselbare stations." - -#~ msgctxt "@info:whatsthis" -#~ msgid "Manages network connections to Ultimaker 3 printers" -#~ msgstr "Hiermee beheert u netwerkverbindingen naar Ultimaker 3-printers" - -#~ msgctxt "@label" -#~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Afwijkende PrintCore (Cura: {0}, Printer: {1}) geselecteerd voor de extruder {2}" - -#~ msgctxt "@label" -#~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "De PrintCore {0} is niet correct gekalibreerd. Op de printer moet XY-kalibratie worden uitgevoerd." - -#~ msgctxt "@label" -#~ msgid "The print cores and/or materials on your printer differ from those within your current project. For the best result, always slice for the print cores and materials that are inserted in your printer." -#~ msgstr "De PrintCores en/of materialen in de printer wijken af van de PrintCores en/of materialen in uw huidige project. Slice voor het beste resultaat altijd voor de PrintCores en materialen die in de printer zijn ingevoerd." - -#~ msgctxt "@label" -#~ msgid "Post Processing" -#~ msgstr "Nabewerking" - -#~ msgctxt "Description of plugin" -#~ 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 "Auto Save" -#~ msgstr "Automatisch Opslaan" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "Slaat na het aanbrengen van wijzigingen automatisch Voorkeuren, Machines en Profielen op." - -#~ msgctxt "@label" -#~ msgid "Slice info" -#~ msgstr "Slice-informatie" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Submits anonymous slice info. Can be disabled through preferences." -#~ msgstr "Verzendt anoniem slice-informatie. Dit kan in de voorkeuren worden uitgeschakeld." - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences" -#~ msgstr "Cura verzamelt geanonimiseerde slicing-statistieken. Dit kan in de voorkeuren worden uitgeschakeld" - -#~ msgctxt "@label" -#~ msgid "Material Profiles" -#~ msgstr "Materiaalprofielen" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "Legacy Cura Profile Reader" -#~ msgstr "Lezer voor Profielen van Oudere Cura-versies" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing profiles from legacy Cura versions." -#~ msgstr "Biedt ondersteuning voor het importeren van profielen uit oudere Cura-versies." - -#~ msgctxt "@label" -#~ msgid "GCode Profile Reader" -#~ msgstr "G-code-profiellezer" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing profiles from g-code files." -#~ msgstr "Deze optie biedt ondersteuning voor het importeren van profielen uit G-code-bestanden." - -#~ msgctxt "@label" -#~ msgid "Layer View" -#~ msgstr "Laagweergave" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the Layer view." -#~ msgstr "Biedt een laagweergave." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.5 to 2.6" -#~ msgstr "Versie-upgrade van 2.5 naar 2.6." - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "Version Upgrade 2.1 to 2.2" -#~ msgstr "Versie-upgrade van 2.1 naar 2.2" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -#~ msgstr "Werkt configuraties bij van Cura 2.1 naar Cura 2.2." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.2 to 2.4" -#~ msgstr "Versie-upgrade van 2.2 naar 2.4." - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -#~ msgstr "Werkt configuraties bij van Cura 2.2 naar Cura 2.4." - -#~ msgctxt "@label" -#~ msgid "Image Reader" -#~ msgstr "Afbeeldinglezer" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Enables ability to generate printable geometry from 2D image files." -#~ msgstr "Maakt het genereren van printbare geometrie van 2D-afbeeldingsbestanden mogelijk." - -#~ msgctxt "@label" -#~ msgid "CuraEngine Backend" -#~ msgstr "CuraEngine-back-end" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the link to the CuraEngine slicing backend." -#~ msgstr "Voorziet in de koppeling naar het slicing-back-end van de CuraEngine." - -#~ msgctxt "@label" -#~ msgid "Per Model Settings Tool" -#~ msgstr "Gereedschap voor Instellingen per Model" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the Per Model Settings." -#~ msgstr "Biedt de Instellingen per Model." - -#~ msgctxt "@label" -#~ msgid "3MF Reader" -#~ msgstr "3MF-lezer" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for reading 3MF files." -#~ msgstr "Biedt ondersteuning voor het lezen van 3MF-bestanden." - -#~ msgctxt "@label" -#~ msgid "Solid View" -#~ msgstr "Solide weergave" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides a normal solid mesh view." -#~ msgstr "Deze optie biedt een normaal, solide rasteroverzicht." - -#~ msgctxt "@label" -#~ msgid "G-code Reader" -#~ msgstr "G-code-lezer" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Allows loading and displaying G-code files." -#~ msgstr "Hiermee kunt u G-code-bestanden laden en weergeven." - -#~ msgctxt "@label" -#~ msgid "Cura Profile Writer" -#~ msgstr "Cura-profielschrijver" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for exporting Cura profiles." -#~ msgstr "Biedt ondersteuning voor het exporteren van Cura-profielen." - -#~ msgctxt "@label" -#~ msgid "3MF Writer" -#~ msgstr "3MF-schrijver" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for writing 3MF files." -#~ msgstr "Deze optie biedt ondersteuning voor het schrijven van 3MF-bestanden." - -#~ msgctxt "@label" -#~ msgid "Ultimaker machine actions" -#~ msgstr "Acties Ultimaker-machines" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)" -#~ msgstr "Biedt machine-acties voor Ultimaker-machines (zoals wizard voor bedkalibratie, selecteren van upgrades enz.)" - -#~ msgctxt "@label" -#~ msgid "Cura Profile Reader" -#~ msgstr "Cura-profiellezer" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing Cura profiles." -#~ msgstr "Biedt ondersteuning bij het importeren van Cura-profielen." - -#~ msgctxt "@info" -#~ msgid "%(width).1f x %(depth).1f x %(height).1f mm" -#~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#~ msgctxt "@label" -#~ msgid "Build Plate Shape" -#~ msgstr "Vorm van het platform" - -#~ msgctxt "@option:check" -#~ msgid "Machine Center is Zero" -#~ msgstr "Midden van Machine is Nul" - -#~ msgctxt "@option:check" -#~ msgid "Heated Bed" -#~ msgstr "Verwarmd bed" - -#~ msgctxt "@label" -#~ msgid "GCode Flavor" -#~ msgstr "Versie G-code" - -#~ msgctxt "@label" -#~ msgid "Material Diameter" -#~ msgstr "Materiaaldiameter" - -#~ 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 "@item:inlistbox" -#~ msgid "Ultimaker" -#~ msgstr "Ultimaker" - -#~ msgctxt "@label" -#~ msgid "Support library for scientific computing " -#~ msgstr "Ondersteuningsbibliotheek voor wetenschappelijke berekeningen " - -#~ msgctxt "@tooltip" -#~ msgid "Print Setup

    Edit or review the settings for the active print job." -#~ msgstr "Instelling voor printen

    Bewerk of controleer de instellingen voor de actieve printtaak." - -#~ msgctxt "@tooltip" -#~ msgid "Print Monitor

    Monitor the state of the connected printer and the print job in progress." -#~ msgstr "Printbewaking

    Bewaak de status van de aangesloten printer en de printtaak die wordt uitgevoerd." - -#~ msgctxt "@title:menuitem %1 is the value from the printer" -#~ msgid "Automatic: %1" -#~ msgstr "Automatisch: %1" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3d model" -#~ msgstr "Laad een 3D-model" - -#~ msgctxt "@label" -#~ msgid "Print Selected Model with %1" -#~ msgid_plural "Print Selected Models With %1" -#~ msgstr[0] "Geselecteerd model printen met %1" -#~ msgstr[1] "Geselecteerde modellen printen met %1" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}" -#~ msgstr "Er kan geen nieuwe taak worden gestart. Er is geen PrintCore geladen in de sleuf {0}." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.4 to 2.5" -#~ msgstr "Versie-upgrade van 2.4 naar 2.5." - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5." -#~ msgstr "Werkt configuraties bij van Cura 2.4 naar Cura 2.5." - -#~ msgctxt "@info:status" -#~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead." -#~ msgstr "Kan geen kwaliteitsprofiel vinden voor deze combinatie. In plaats daarvan worden de standaardinstellingen gebruikt." - -#~ msgctxt "@title:window" -#~ msgid "Oops!" -#~ msgstr "Oeps!" - -#~ msgctxt "@label" -#~ msgid "" -#~ "

    A fatal exception has occurred that we could not recover from!

    \n" -#~ "

    We hope this picture of a kitten helps you recover from the shock.

    \n" -#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " -#~ msgstr "" -#~ "

    Er is een fatale fout opgetreden die niet kan worden hersteld!

    \n" -#~ "

    Hopelijk komt u met de afbeelding van deze kitten wat bij van de schrik.

    \n" -#~ "

    Gebruik de onderstaande informatie om een bugrapport te plaatsen op http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " - -#~ msgctxt "@label" -#~ msgid "Please enter the correct settings for your printer below:" -#~ msgstr "Voer hieronder de juiste instellingen voor uw printer in:" - -#~ msgctxt "@label" -#~ msgid "Extruder %1" -#~ msgstr "Extruder %1" - -#~ msgctxt "@label Followed by extruder selection drop-down." -#~ msgid "Print model with" -#~ msgstr "Model printen met" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for language changes to have effect." -#~ msgstr "U moet de toepassing opnieuw opstarten voordat de taalwijzigingen van kracht worden." - -#~ msgctxt "@info:tooltip" -#~ msgid "Moves the camera so the model is in the center of the view when an model is selected" -#~ msgstr "Verplaatst de camera zodanig dat wanneer een model wordt geselecteerd, het model in het midden van het beeld wordt weergegeven" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete &Selection" -#~ msgstr "&Selectie Verwijderen" - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Open File..." -#~ msgstr "Bestand &Openen..." - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Open Project..." -#~ msgstr "Project &openen..." - -#~ msgctxt "@title:window" -#~ msgid "Multiply Model" -#~ msgstr "Model verveelvoudigen" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &All" -#~ msgstr "A&lles Opslaan" - -#~ msgctxt "@title:window" -#~ msgid "Open file" -#~ msgstr "Bestand openen" - -#~ msgctxt "@title:window" -#~ msgid "Open workspace" -#~ msgstr "Werkruimte openen" - -#~ msgctxt "@label" -#~ msgid "Hollow" -#~ msgstr "Hol" - -#~ msgctxt "@label" -#~ msgid "No (0%) infill will leave your model hollow at the cost of low strength" -#~ msgstr "Zonder vulling (0%) blijft uw model hol, wat ten koste gaat van de sterkte" - -#~ msgctxt "@label" -#~ msgid "Light" -#~ msgstr "Licht" - -#~ msgctxt "@label" -#~ msgid "Light (20%) infill will give your model an average strength" -#~ msgstr "Met lichte vulling (20%) krijgt uw model een gemiddelde sterkte" - -#~ msgctxt "@label" -#~ msgid "Dense" -#~ msgstr "Dicht" - -#~ msgctxt "@label" -#~ msgid "Dense (50%) infill will give your model an above average strength" -#~ msgstr "Met een dichte vulling (50%) krijgt uw model een bovengemiddelde sterkte" - -#~ msgctxt "@label" -#~ msgid "Solid" -#~ msgstr "Solide" - -#~ msgctxt "@label" -#~ msgid "Solid (100%) infill will make your model completely solid" -#~ msgstr "Met solide vulling (100%) is uw model volledig massief" - -#~ msgctxt "@label" -#~ msgid "Enable Support" -#~ msgstr "Supportstructuur inschakelen" - -#~ msgctxt "@label" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Schakel het printen van een supportstructuur in. Een supportstructuur ondersteunt delen van het model met een zeer grote overhang." - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints? Read the Ultimaker Troubleshooting Guides" -#~ msgstr "Hulp nodig om betere prints te krijgen? Lees de Ultimaker Troubleshooting Guides (handleiding voor probleemoplossing)" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}. Please approve the access request on the printer." -#~ msgstr "Via het netwerk verbonden met {0}. Keur de toegangsaanvraag goed op de printer." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}." -#~ msgstr "Via het netwerk verbonden met {0}." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}. No access to control the printer." -#~ msgstr "Via het netwerk verbonden met {0}. Kan de printer niet beheren." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job because the printer is busy. Please check the printer." -#~ msgstr "Er kan geen nieuwe taak worden gestart omdat de printer bezig is. Controleer de printer." - -#~ msgctxt "@label" -#~ msgid "You made changes to the following setting(s)/override(s):" -#~ msgstr "U hebt de volgende instelling(en) gewijzigd of overschrijving(en) gemaakt:" - -#~ msgctxt "@window:title" -#~ msgid "Switched profiles" -#~ msgstr "Profielen gewisseld" - -#~ msgctxt "@label" -#~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?" -#~ msgstr "Wilt u de %d gewijzigde instelling(en)/overschrijving(en) overbrengen naar dit profiel?" - -#~ msgctxt "@label" -#~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost." -#~ msgstr "Als u de instellingen overbrengt, zullen deze de instellingen in het profiel overschrijven. Als u deze instellingen niet overbrengt, gaan ze verloren." - -#~ msgctxt "@label" -#~ msgid "Cost per Meter (Approx.)" -#~ msgstr "Kostprijs per Meter (Circa)" - -#~ msgctxt "@label" -#~ msgid "%1/m" -#~ msgstr "%1/m" - -#~ msgctxt "@info:tooltip" -#~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information." -#~ msgstr "In de laagweergave de 5 bovenste lagen weergeven of alleen de bovenste laag. Het weergeven van 5 lagen kost meer tijd, maar laat mogelijk meer informatie zien." - -#~ msgctxt "@action:button" -#~ msgid "Display five top layers in layer view" -#~ msgstr "In laagweergave de vijf bovenste lagen weergeven" - -#~ msgctxt "@info:tooltip" -#~ msgid "Should only the top layers be displayed in layerview?" -#~ msgstr "Moeten in de laagweergave alleen de bovenste lagen worden weergegeven?" - -#~ msgctxt "@option:check" -#~ msgid "Only display top layer(s) in layer view" -#~ msgstr "In laagweergave alleen bovenste laag (lagen) weergeven" - -#~ msgctxt "@label" -#~ msgid "Opening files" -#~ msgstr "Openen van bestanden" - -#~ msgctxt "@label" -#~ msgid "Printer Monitor" -#~ msgstr "Printermonitor" - -#~ msgctxt "@label" -#~ msgid "Temperatures" -#~ msgstr "Temperaturen" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Preparing to slice..." -#~ msgstr "Voorbereiden om te slicen..." - -#~ msgctxt "@window:title" -#~ msgid "Changes on the Printer" -#~ msgstr "Wijzigingen aan de Printer" - -#~ msgctxt "@action:inmenu" -#~ msgid "&Duplicate Model" -#~ msgstr "Model &Dupliceren" - -#~ msgctxt "@label" -#~ msgid "Helper Parts:" -#~ msgstr "Hulponderdelen:" - -#~ msgctxt "@label" -#~ msgid "Enable printing support structures. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "Schakel het printen van een support structure in. Deze optie zorgt ervoor dat onder het model ondersteuning wordt geprint, om te voorkomen dat dit doorzakt of dat er midden in de lucht moet worden geprint." - -#~ msgctxt "@label" -#~ msgid "Don't print support" -#~ msgstr "Geen support printen" - -#~ msgctxt "@label" -#~ msgid "Print support using %1" -#~ msgstr "Support printen met %1" - -#~ msgctxt "@label:listbox" -#~ msgid "Printer:" -#~ msgstr "Printer:" - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profiles {0}" -#~ msgstr "De profielen {0} zijn geïmporteerd" - -#~ msgctxt "@label" -#~ msgid "Scripts" -#~ msgstr "Scripts" - -#~ msgctxt "@label" -#~ msgid "Active Scripts" -#~ msgstr "Actieve scripts" - -#~ msgctxt "@label" -#~ msgid "Done" -#~ msgstr "Gereed" - -#~ msgctxt "@item:inlistbox" -#~ msgid "English" -#~ msgstr "Engels" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Finnish" -#~ msgstr "Fins" - -#~ msgctxt "@item:inlistbox" -#~ msgid "French" -#~ msgstr "Frans" - -#~ msgctxt "@item:inlistbox" -#~ msgid "German" -#~ msgstr "Duits" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Italian" -#~ msgstr "Italiaans" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Dutch" -#~ msgstr "Nederlands" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Spanish" -#~ msgstr "Spaans" - -#~ msgctxt "@label" -#~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?" -#~ msgstr "Wilt u de PrintCores en materialen in Cura wijzigen zodat deze overeenkomen met de printer?" - -#~ msgctxt "@label:" -#~ msgid "Print Again" -#~ msgstr "Opnieuw Printen" diff --git a/resources/i18n/nl_NL/fdmextruder.def.json.po b/resources/i18n/nl_NL/fdmextruder.def.json.po index e51f3c3b18..a9243c12f4 100644 --- a/resources/i18n/nl_NL/fdmextruder.def.json.po +++ b/resources/i18n/nl_NL/fdmextruder.def.json.po @@ -1,12 +1,9 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-08 09:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -15,6 +12,96 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: fdmextruder.def.json +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Hechting" + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Hechting aan Platform" + +#: fdmextruder.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diameter" + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "Extruder" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code label" +msgid "Extruder End G-Code" +msgstr "Eind-G-code van Extruder" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_abs label" +msgid "Extruder End Position Absolute" +msgstr "Absolute Eindpositie Extruder" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x label" +msgid "Extruder End Position X" +msgstr "X-eindpositie Extruder" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y label" +msgid "Extruder End Position Y" +msgstr "Y-eindpositie Extruder" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "X-positie voor Primen Extruder" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Y-positie voor Primen Extruder" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z-positie voor Primen Extruder" + +#: fdmextruder.def.json +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Printkoelventilator van extruder" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_code label" +msgid "Extruder Start G-Code" +msgstr "Start-G-code van Extruder" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_abs label" +msgid "Extruder Start Position Absolute" +msgstr "Absolute Startpositie Extruder" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "X-startpositie Extruder" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "Y-startpositie Extruder" + #: fdmextruder.def.json msgctxt "machine_settings label" msgid "Machine" @@ -26,69 +113,9 @@ msgid "Machine specific settings" msgstr "Instellingen van de machine" #: fdmextruder.def.json -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "Extruder" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Nozzle-ID" - -#: fdmextruder.def.json -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\"." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Nozzlediameter" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x label" -msgid "Nozzle X Offset" -msgstr "X-Offset Nozzle" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "Y-Offset Nozzle" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code label" -msgid "Extruder Start G-Code" -msgstr "Start-G-code van Extruder" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_abs label" -msgid "Extruder Start Position Absolute" -msgstr "Absolute Startpositie 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." #: fdmextruder.def.json msgctxt "machine_extruder_start_pos_abs description" @@ -96,114 +123,9 @@ msgid "Make the extruder starting position absolute rather than relative to the 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." #: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "X-startpositie Extruder" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "Y-startpositie Extruder" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code label" -msgid "Extruder End G-Code" -msgstr "Eind-G-code van Extruder" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_abs label" -msgid "Extruder End Position Absolute" -msgstr "Absolute Eindpositie Extruder" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x label" -msgid "Extruder End Position X" -msgstr "X-eindpositie Extruder" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y label" -msgid "Extruder End Position Y" -msgstr "Y-eindpositie Extruder" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z-positie voor Primen Extruder" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Printkoelventilator van extruder" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Hechting aan Platform" - -#: fdmextruder.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Hechting" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "X-positie voor Primen Extruder" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Y-positie voor Primen Extruder" - -#: fdmextruder.def.json -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 "material description" +msgid "Material" +msgstr "Materiaal" #: fdmextruder.def.json msgctxt "material label" @@ -211,24 +133,91 @@ msgid "Material" msgstr "Materiaal" #: fdmextruder.def.json -msgctxt "material description" -msgid "Material" -msgstr "Materiaal" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Nozzlediameter" #: fdmextruder.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diameter" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Nozzle-ID" #: fdmextruder.def.json -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 "machine_nozzle_offset_x label" +msgid "Nozzle X Offset" +msgstr "X-Offset Nozzle" -#~ msgctxt "machine_extruder_start_code description" -#~ msgid "Start g-code to execute whenever turning the extruder on." -#~ msgstr "Start-g-code die wordt uitgevoerd wanneer de extruder wordt ingeschakeld." +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "Y-Offset Nozzle" -#~ msgctxt "machine_extruder_end_code description" -#~ msgid "End g-code to execute whenever turning the extruder off." -#~ msgstr "Eind-g-code die wordt uitgevoerd wanneer de extruder wordt uitgeschakeld." +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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\"." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index 025cf9ee0f..502256659e 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -1,12 +1,9 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-28 11:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -16,1497 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: fdmprinter.def.json -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Machine" +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." #: fdmprinter.def.json -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Instellingen van de machine" +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." #: fdmprinter.def.json -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Type Machine" - -#: fdmprinter.def.json -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "De naam van uw 3D-printermodel." - -#: fdmprinter.def.json -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Machinevarianten tonen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "Start G-code" - -#: fdmprinter.def.json -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 \n" -"." - -#: fdmprinter.def.json -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "Eind G-code" - -#: fdmprinter.def.json -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 \n" -"." - -#: fdmprinter.def.json -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "Materiaal-GUID" - -#: fdmprinter.def.json -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID van het materiaal. Deze optie wordt automatisch ingesteld." - -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diameter" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Wachten op verwarmen van platform" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Wachten op verwarmen van nozzle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Materiaaltemperatuur invoegen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Platformtemperatuur invoegen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Machinebreedte" - -#: fdmprinter.def.json -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "De breedte (X-richting) van het printbare gebied." - -#: fdmprinter.def.json -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Machinediepte" - -#: fdmprinter.def.json -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "De diepte (Y-richting) van het printbare gebied." - -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Machinehoogte" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "De hoogte (Z-richting) van het printbare gebied." - -#: fdmprinter.def.json -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Vorm van het platform" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Rechthoekig" - -#: fdmprinter.def.json -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Ovaal" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Materiaal van het platform" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Glas" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Aluminium" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Heeft verwarmd platform" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Heeft temperatuurstabilisatie van werkvolume" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "Tool voor altijd actief schrijven" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Is oorsprongpunt centraal" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Aantal extruders" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Aantal ingeschakelde extruders" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Buitendiameter nozzle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Nozzlelengte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Nozzlehoek" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Lengte verwarmingszone" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Regulering van de nozzletemperatuur inschakelen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Verwarmingssnelheid" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Afkoelsnelheid" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Minimale tijd stand-bytemperatuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Versie G-code" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "De G-code-versie die moet worden gegenereerd." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumetrisch)" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -#: fdmprinter.def.json -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Intrekken via firmware" - -#: fdmprinter.def.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 "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." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Extruders delen verwarming" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Extruders delen nozzle" - -#: fdmprinter.def.json -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'." - -#: fdmprinter.def.json -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Initiële terugtrekking gedeelde nozzle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Verboden gebieden" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Verboden gebieden voor de nozzle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Machinekop- en ventilatorpolygoon" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Rijbrughoogte" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Nozzle-ID" - -#: fdmprinter.def.json -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\"." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Nozzlediameter" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Offset met extruder" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z-positie voor Primen Extruder" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Absolute Positie voor Primen Extruder" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Maximale Snelheid X" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Maximale Snelheid Y" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Maximale Snelheid Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Maximale Snelheid E" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "De maximale snelheid voor de doorvoer van het filament." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Maximale Acceleratie X" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Maximale Acceleratie Y" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Maximale Acceleratie Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Maximale Filamentacceleratie" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Standaardacceleratie" - -#: fdmprinter.def.json -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "De standaardacceleratie van de printkopbeweging." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Standaard X-/Y-schok" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "De standaardschok voor beweging in het horizontale vlak." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Standaard Z-schok" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Standaard Filamentschok" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "De standaardschok voor de motor voor het filament." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Stappen per millimeter (X)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Stappen per millimeter (Y)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Stappen per millimeter (Z)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Stappen per millimeter (E)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "X-eindstop in positieve richting" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Y-eindstop in positieve richting" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Z-eindstop in positieve richting" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Minimale Doorvoersnelheid" - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "De minimale bewegingssnelheid van de printkop." - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diameter van het feedertandwiel" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Zet de ventilatorsnelheid op 0-1" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "resolution label" -msgid "Quality" -msgstr "Kwaliteit" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Laaghoogte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Hoogte Eerste Laag" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "line_width label" -msgid "Line Width" -msgstr "Lijnbreedte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Lijnbreedte Wand" - -#: fdmprinter.def.json -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Breedte van een enkele wandlijn." - -#: fdmprinter.def.json -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Lijnbreedte Buitenwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Lijnbreedte Binnenwand(en)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Lijnbreedte Boven-/onderkant" - -#: fdmprinter.def.json -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Breedte van een enkele lijn aan de boven-/onderkant." - -#: fdmprinter.def.json -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Lijnbreedte Vulling" - -#: fdmprinter.def.json -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Breedte van een enkele vullijn." - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Lijnbreedte Skirt/Brim" - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Breedte van een enkele skirt- of brimlijn." - -#: fdmprinter.def.json -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Lijnbreedte Supportstructuur" - -#: fdmprinter.def.json -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Breedte van een enkele lijn van de supportstructuur." - -#: fdmprinter.def.json -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Lijnbreedte Verbindingsstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Lijnbreedte supportdak" - -#: fdmprinter.def.json -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Breedte van een enkele lijn van het supportdak." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Lijnbreedte supportvloer" - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Breedte van een enkele lijn van de supportvloer." - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Lijnbreedte Primepijler" - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Breedte van een enkele lijn van de primepijler." - -#: fdmprinter.def.json -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Lijnbreedte eerste laag" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "shell label" -msgid "Walls" -msgstr "Wanden" - -#: fdmprinter.def.json -msgctxt "shell description" -msgid "Shell" -msgstr "Shell" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Wandextruder" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extruder buitenwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extruder binnenwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Wanddikte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Aantal Wandlijnen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Lengte wandovergang" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Aantal wanden voor distributie" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Drempelhoek wandovergang" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Filterafstand wandovergang" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Filtermarge wandovergang" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Veegafstand buitenwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Uitsparing Buitenwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Printvolgorde van wanden optimaliseren" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Wandvolgorde" - -#: fdmprinter.def.json -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." -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." - -#: fdmprinter.def.json -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "Van binnen naar buiten" - -#: fdmprinter.def.json -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "Van buiten naar binnen" - -#: fdmprinter.def.json -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Afwisselend Extra Wand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Minimumbreedte wandlijn" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Minimum lijnbreedte even wand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold label" -msgid "Split Middle Line Threshold" -msgstr "Drempel middelste lijn splitsen" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "De kleinste lijnbreedte als factor van de normale lijnbreedte waarboven de middenlijn (als deze aanwezig is) in tweeën wordt gesplitst. Maak deze instelling kleiner voor meer, dunnere lijnen. Maak deze instelling groter voor minder, bredere lijnen. Merk op dat dit geldt alsof de gehele vorm met wand moet worden gevuld. De middenlijn verwijst hier dus naar het midden van het object tussen twee buitenranden van de vorm, zelfs als er feitelijk vulling of (andere) skin in de print is in plaats van wand." - -#: fdmprinter.def.json -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Minimum breedte ongelijkmatige wandlijn" - -#: fdmprinter.def.json -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 maximum breedte ongelijkmatige wandlijn wordt berekend als 2 * de Minimum breedte gelijkmatige wandlijn." - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold label" -msgid "Add Middle Line Threshold" -msgstr "Drempel middelste lijn toevoegen" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "De kleinste lijnbreedte als factor van de normale lijnbreedte, waarboven een middenlijn (als die er nog niet was) wordt toegevoegd. Maak deze instelling kleiner voor meer, dunnere lijnen. Maak deze instelling groter voor minder, bredere lijnen. Merk op dat dit geldt alsof de gehele vorm met wand moet worden gevuld. De middenlijn verwijst hier dus naar het midden van het object tussen twee buitenranden van de vorm, zelfs als er feitelijk vulling of (andere) skin in de print is in plaats van wand." - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Dunne wanden printen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Minimum elementgrootte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Minimumbreedte dunne wandlijn" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Horizontale Uitbreiding" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Eerste laag Horizontale uitbreiding" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Horizontale uitbreiding gaten" - -#: fdmprinter.def.json -msgctxt "hole_xy_offset description" -msgid "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." -msgstr "De offset die wordt toegepast op alle gaten in elke laag. Met positieve waarden worden de gaten groter, met negatieve waarden worden de gaten kleiner." - -#: fdmprinter.def.json -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Uitlijning Z-naad" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Door de gebruiker opgegeven" - -#: fdmprinter.def.json -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Kortste" - -#: fdmprinter.def.json -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Willekeurig" - -#: fdmprinter.def.json -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Scherpste hoek" - -#: fdmprinter.def.json -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Z-naadpositie" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Linksachter" - -#: fdmprinter.def.json -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Achter" - -#: fdmprinter.def.json -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Rechtsachter" - -#: fdmprinter.def.json -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Rechts" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Rechtsvoor" - -#: fdmprinter.def.json -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Voor" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Linksvoor" - -#: fdmprinter.def.json -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Links" - -#: fdmprinter.def.json -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z-naad X" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z-naad Y" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Voorkeur van naad en hoek" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Geen" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Naad verbergen" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Naad zichtbaar maken" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Naad verbergen of zichtbaar maken" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Slim verbergen" - -#: fdmprinter.def.json -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Relatieve Z-naad" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Boven-/onderkant" - -#: fdmprinter.def.json -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Boven-/onderkant" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Extruder bovenskin" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Bovenste skinlagen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extruder Boven-/Onderkant" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Dikte Boven-/Onderkant" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Dikte Bovenkant" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Bovenlagen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Bodemdikte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Bodemlagen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Eerste onderste lagen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Patroon Boven-/Onderkant" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Het patroon van de boven-/onderlagen." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Lijnen" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Eerste laag patroon onderkant" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Lijnen" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concentrisch" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -#: fdmprinter.def.json -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Boven-/onderkant Polygonen Verbinden" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Monotone volgorde van boven naar beneden" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Lijnrichtingen boven-/onderkant" +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." #: fdmprinter.def.json msgctxt "skin_angles description" @@ -1514,379 +33,24 @@ msgid "A list of integer line directions to use when the top/bottom layers use t 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." #: fdmprinter.def.json -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Geen skin in Z-gaten" +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." #: fdmprinter.def.json -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 "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." #: fdmprinter.def.json -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Aantal Extra Wandlijnen Rond Skin" +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." #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Strijken inschakelen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Alleen hoogste laag strijken" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Strijkpatroon" - -#: fdmprinter.def.json -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Het patroon dat wordt gebruikt voor het strijken van oppervlakken." - -#: fdmprinter.def.json -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" - -#: fdmprinter.def.json -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -#: fdmprinter.def.json -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Monotone strijkvolgorde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Tussenruimte strijklijnen" - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "De afstand tussen de strijklijnen." - -#: fdmprinter.def.json -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Strijkdoorvoer" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Uitsparing strijken" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Strijksnelheid" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Strijkacceleratie" - -#: fdmprinter.def.json -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "De acceleratie tijdens het strijken." - -#: fdmprinter.def.json -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Schok strijken" - -#: fdmprinter.def.json -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het strijken." - -#: fdmprinter.def.json -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Overlappercentage Skin" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Overlap Skin" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Verwijderingsbreedte skin" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Verwijderingsbreedte bovenste skinlaag" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Verwijderingsbreedte onderste skinlaag" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Uitbreidingsafstand van skin" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Uitbreidingsafstand van bovenste skinlaag" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Uitbreidingsafstand van onderste skinlaag" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Maximale skinhoek voor uitbreiding" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Minimale skinbreedte voor uitbreiding" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill label" -msgid "Infill" -msgstr "Vulling" - -#: fdmprinter.def.json -msgctxt "infill description" -msgid "Infill" -msgstr "Vulling" - -#: fdmprinter.def.json -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Vullingextruder" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Dichtheid Vulling" - -#: fdmprinter.def.json -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Past de vuldichtheid van de print aan." - -#: fdmprinter.def.json -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Lijnafstand Vulling" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Vulpatroon" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Raster" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Lijnen" - -#: fdmprinter.def.json -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Driehoeken" - -#: fdmprinter.def.json -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Tri-hexagonaal" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Kubisch" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Kubische onderverdeling" - -#: fdmprinter.def.json -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octet" - -#: fdmprinter.def.json -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Afgeknotte kubus" - -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" - -#: fdmprinter.def.json -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Kruis" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Kruis 3D" - -#: fdmprinter.def.json -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroïde" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Bliksem" - -#: fdmprinter.def.json -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Vullijnen verbinden" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Vulpolygonen Verbinden" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "infill_angles description" @@ -1894,49 +58,44 @@ msgid "A list of integer line directions to use. Elements from the list are used 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." #: fdmprinter.def.json -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." #: fdmprinter.def.json -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." #: fdmprinter.def.json -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Vulling Y-offset" +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "Een deel dat volledig is ingesloten in een ander deel kan een buitenste brim genereren die de binnenkant van het andere deel raakt. Dit verwijdert alle brim binnen deze afstand van de interne gaten." #: fdmprinter.def.json -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" #: fdmprinter.def.json -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" #: fdmprinter.def.json -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" #: fdmprinter.def.json -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" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "infill_wall_line_count description" @@ -1948,284 +107,9 @@ msgstr "" "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." #: fdmprinter.def.json -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Kubische onderverdeling shell" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Overlappercentage vulling" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Overlap Vulling" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Veegafstand Vulling" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Dikte Vullaag" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Stappen Geleidelijke Vulling" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Staphoogte Geleidelijke Vulling" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Vulling vóór Wanden" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Minimumgebied vulling" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Supportvulling" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Overhanghoek vulling" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Dikte skinrandondersteuning" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Lagen skinrandondersteuning" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "Het aantal opvullagen dat skinranden ondersteunt." - -#: fdmprinter.def.json -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Hoek supportstructuur bliksemvulling" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Hoek overhang bliksemvulling" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Snoeihoek bliksemvulling" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Rechtbuighoek bliksemvulling" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material label" -msgid "Material" -msgstr "Materiaal" - -#: fdmprinter.def.json -msgctxt "material description" -msgid "Material" -msgstr "Materiaal" - -#: fdmprinter.def.json -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Standaard printtemperatuur" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatuur werkvolume" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Printtemperatuur" - -#: fdmprinter.def.json -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "De temperatuur waarmee wordt geprint." - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Printtemperatuur van de eerste laag" - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "De temperatuur waarmee de eerste laag wordt geprint. Stel deze optie in op 0 om speciale bewerkingen voor de eerste laag uit te schakelen." - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Starttemperatuur voor printen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Eindtemperatuur voor printen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Aanpassing Afkoelsnelheid Doorvoer" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Standaardtemperatuur platform" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Platformtemperatuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Platformtemperatuur voor de eerste laag" - -#: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" @@ -2233,1924 +117,19 @@ msgid "Adhesion Tendency" msgstr "Hechtingsgevoeligheid" #: fdmprinter.def.json -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." #: fdmprinter.def.json -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." #: fdmprinter.def.json -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Oppervlakte-energie." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Schaalfactor krimpcompensatie" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Horizontale schaalfactor krimpcompensatie" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Verticale schaalfactor krimpcompensatie" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Kristallijnmateriaal" - -#: fdmprinter.def.json -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)?" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Intrekpositie voor niet-uitlopen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Intreksnelheid voor niet-uitlopen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Intrekpositie voor voorbereiding van afbreken" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Intreksnelheid voor voorbereiding van afbreken" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatuur voor voorbereiding van afbreken" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Intrekpositie voor afbreken" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Intreksnelheid voor afbreken" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Temperatuur voor afbreken" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Afvoersnelheid flush" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Afvoerduur flush" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Afvoersnelheid einde van filament" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Afvoerduur einde van filament" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Maximale parkeerduur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Verplaatsingsfactor zonder lading" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flow label" -msgid "Flow" -msgstr "Doorvoer" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Wanddoorvoer" - -#: fdmprinter.def.json -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Doorvoercompensatie op wandlijnen." - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Buitenste wanddoorvoer" - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Doorvoercompensatie op de buitenste wandlijn." - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Doorvoer binnenwand(en)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Doorvoer boven/onder" - -#: fdmprinter.def.json -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Doorvoercompensatie op bovenste/onderste lijn." - -#: fdmprinter.def.json -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Bovenste oppervlak skindoorvoer" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Doorvoer vulling" - -#: fdmprinter.def.json -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Doorvoercompensatie op vullijnen." - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Doorvoer skirt/brim" - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Doorvoercompensatie op skirt- of brimlijnen." - -#: fdmprinter.def.json -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Doorvoer support" - -#: fdmprinter.def.json -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Doorvoercompensatie op de supportstructuurlijnen." - -#: fdmprinter.def.json -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Doorvoer supportinterface" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Doorvoer supportdak" - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Doorvoercompensatie op supportdaklijnen." - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Doorvoer supportvloer" - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Doorvoercompensatie op de supportvloerlijnen." - -#: fdmprinter.def.json -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Doorvoer Primepijler" - -#: fdmprinter.def.json -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Doorvoercompensatie op primepijlerlijnen." - -#: fdmprinter.def.json -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Doorvoer eerste laag" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Stand-bytemperatuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed label" -msgid "Speed" -msgstr "Snelheid" - -#: fdmprinter.def.json -msgctxt "speed description" -msgid "Speed" -msgstr "Snelheid" - -#: fdmprinter.def.json -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Printsnelheid" - -#: fdmprinter.def.json -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "De snelheid waarmee wordt geprint." - -#: fdmprinter.def.json -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Vulsnelheid" - -#: fdmprinter.def.json -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "De snelheid waarmee de vulling wordt geprint." - -#: fdmprinter.def.json -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Wandsnelheid" - -#: fdmprinter.def.json -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "De snelheid waarmee wanden worden geprint." - -#: fdmprinter.def.json -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Snelheid Buitenwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Snelheid Binnenwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Snelheid bovenskin" - -#: fdmprinter.def.json -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "De snelheid waarmee bovenste skinlagen worden geprint." - -#: fdmprinter.def.json -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Snelheid Boven-/Onderkant" - -#: fdmprinter.def.json -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "De snelheid waarmee boven-/onderlagen worden geprint." - -#: fdmprinter.def.json -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Snelheid Supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Vulsnelheid Supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Vulsnelheid Verbindingsstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Snelheid supportdak" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Snelheid supportvloer" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Snelheid Primepijler" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Bewegingssnelheid" - -#: fdmprinter.def.json -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "De snelheid waarmee bewegingen plaatsvinden." - -#: fdmprinter.def.json -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Snelheid Eerste Laag" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Printsnelheid Eerste Laag" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Bewegingssnelheid Eerste Laag" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Skirt-/Brimsnelheid" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Snelheid Z-sprong" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Aantal Lagen met Lagere Printsnelheid" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Verhouding voor afstemmen doorvoer" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Acceleratieregulering Inschakelen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Printacceleratie" - -#: fdmprinter.def.json -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "De acceleratie tijdens het printen." - -#: fdmprinter.def.json -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Vulacceleratie" - -#: fdmprinter.def.json -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "De acceleratie tijdens het printen van de vulling." - -#: fdmprinter.def.json -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Wandacceleratie" - -#: fdmprinter.def.json -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "De acceleratie tijdens het printen van de wanden." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Buitenwandacceleratie" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Binnenwandacceleratie" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "De acceleratie tijdens het printen van alle binnenwanden." - -#: fdmprinter.def.json -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Acceleratie bovenskin" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Acceleratie Boven-/Onderkant" - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "De acceleratie tijdens het printen van de boven-/onderlagen." - -#: fdmprinter.def.json -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Acceleratie Supportstructuur" - -#: fdmprinter.def.json -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "De acceleratie tijdens het printen van de supportstructuur." - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Acceleratie Supportvulling" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Acceleratie Verbindingsstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Acceleratie supportdak" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Acceleratie supportvloer" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Acceleratie Primepijler" - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "De acceleratie tijdens het printen van de primepijler." - -#: fdmprinter.def.json -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Bewegingsacceleratie" - -#: fdmprinter.def.json -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "De acceleratie tijdens het uitvoeren van bewegingen." - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Acceleratie Eerste Laag" - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "De acceleratie voor de eerste laag." - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Printacceleratie Eerste Laag" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Bewegingsacceleratie Eerste Laag" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Acceleratie Skirt/Brim" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Schokregulering Inschakelen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Printschok" - -#: fdmprinter.def.json -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "De maximale onmiddellijke snelheidsverandering van de printkop." - -#: fdmprinter.def.json -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Vulschok" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Wandschok" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Schok Buitenwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Schok Binnenwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Schok bovenskin" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Schok Boven-/Onderkant" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Schok Supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Schok Supportvulling" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Schok Verbindingsstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Schok supportdak" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Schok supportvloer" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Schok Primepijler" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Bewegingsschok" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Schok Eerste Laag" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Printschok Eerste Laag" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Bewegingsschok Eerste Laag" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Schok Skirt/Brim" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel label" -msgid "Travel" -msgstr "Beweging" - -#: fdmprinter.def.json -msgctxt "travel description" -msgid "travel" -msgstr "beweging" - -#: fdmprinter.def.json -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Intrekken Inschakelen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Intrekken bij laagwisseling" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Intrekafstand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Intreksnelheid" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Intreksnelheid (Intrekken)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Intreksnelheid (Primen)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Extra Primehoeveelheid na Intrekken" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Minimale Afstand voor Intrekken" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Maximaal Aantal Intrekbewegingen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Minimaal Afstandsgebied voor Intrekken" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "limit_support_retractions label" -msgid "Limit Support Retractions" -msgstr "Supportintrekkingen beperken" - -#: fdmprinter.def.json -msgctxt "limit_support_retractions description" -msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -msgstr "Sla intrekking over tijdens bewegingen in een rechte lijn van support naar support. Deze instelling verkort de printtijd, maar kan leiden tot overmatige draadvorming in de supportstructuur." - -#: fdmprinter.def.json -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Combing-modus" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Uit" - -#: fdmprinter.def.json -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Alles" - -#: fdmprinter.def.json -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Niet op buitenzijde" - -#: fdmprinter.def.json -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Niet in skin" - -#: fdmprinter.def.json -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Binnen Vulling" - -#: fdmprinter.def.json -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Max. combing-afstand zonder intrekken" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Intrekken voor buitenwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Geprinte delen mijden tijdens bewegingen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Supportstructuren mijden tijdens bewegingen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Mijdafstand Tijdens Bewegingen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "Begin laag X" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Begin laag Y" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Z-sprong wanneer ingetrokken" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Z-sprong Alleen over Geprinte Delen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Hoogte Z-sprong" - -#: fdmprinter.def.json -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Het hoogteverschil dat wordt aangehouden tijdens een Z-sprong." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Z-sprong na Wisselen Extruder" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Hoogte Z-sprong na wisselen extruder" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cooling label" -msgid "Cooling" -msgstr "Koelen" - -#: fdmprinter.def.json -msgctxt "cooling description" -msgid "Cooling" -msgstr "Koelen" - -#: fdmprinter.def.json -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Koelen van de Print Inschakelen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Ventilatorsnelheid" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "De snelheid waarmee de printventilatoren draaien." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Normale Ventilatorsnelheid" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Maximale Ventilatorsnelheid" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Drempelwaarde Normale/Maximale Ventilatorsnelheid" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Startsnelheid ventilator" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Normale Ventilatorsnelheid op Hoogte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Normale Ventilatorsnelheid op Laag" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Minimale Laagtijd" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Minimumsnelheid" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Printkop Optillen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support label" -msgid "Support" -msgstr "Supportstructuur" - -#: fdmprinter.def.json -msgctxt "support description" -msgid "Support" -msgstr "Supportstructuur" - -#: fdmprinter.def.json -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Support genereren" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extruder Supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extruder Supportvulling" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extruder Eerste Laag van Support" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extruder Verbindingsstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extruder supportdak" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extruder supportvloer" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normaal" - -#: fdmprinter.def.json -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Boom" - -#: fdmprinter.def.json -msgctxt "support_tree_angle label" -msgid "Tree Support Branch Angle" -msgstr "Hoek van takken van boomsupportstructuur" - -#: fdmprinter.def.json -msgctxt "support_tree_angle description" -msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "Hiermee stelt u de hoek van de takken in. Met een kleinere hoek worden de takken verticaler en stabieler. Met een grotere hoek hebben ze een groter bereik." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance label" -msgid "Tree Support Branch Distance" -msgstr "Takafstand van boomsupportstructuur" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance description" -msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -msgstr "Hiermee stelt u in hoe ver de takken moeten uitsteken als ze het model raken. Met een kleinere afstand raakt de boomsupportstructuur het model op meer plaatsen. Hierdoor creëert u een betere overhang maar is de supportstructuur moeilijker te verwijderen." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter label" -msgid "Tree Support Branch Diameter" -msgstr "Takdiameter van boomsupportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter_angle label" -msgid "Tree Support Branch Diameter Angle" -msgstr "Hoek van takdiameter van boomsupportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution label" -msgid "Tree Support Collision Resolution" -msgstr "Resolutie bij botsingen van de boomsupportstructuur" - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution description" -msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -msgstr "Resolutie voor het berekenen van botsingen om te voorkomen dat het model wordt geraakt. Als u deze optie op een lagere waarde instelt, creëert u nauwkeurigere bomen die minder vaak fouten vertonen, maar wordt de slicetijd aanzienlijk verlengd." - -#: fdmprinter.def.json -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Plaatsing Supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Platform Aanraken" - -#: fdmprinter.def.json -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Overal" - -#: fdmprinter.def.json -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Overhanghoek Supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Patroon Supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Lijnen" - -#: fdmprinter.def.json -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Raster" - -#: fdmprinter.def.json -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Driehoeken" - -#: fdmprinter.def.json -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" - -#: fdmprinter.def.json -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -#: fdmprinter.def.json -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Kruis" - -#: fdmprinter.def.json -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroïde" - -#: fdmprinter.def.json -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Aantal wandlijnen supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Supportstructuurlijnen verbinden" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Zigzaglijnen Supportstructuur Verbinden" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Dichtheid Supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Lijnafstand Supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Lijnafstand Supportstructuur Eerste Laag" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Lijnrichting Vulling Supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Supportbrim inschakelen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Breedte supportbrim" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Aantal supportbrimlijnen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Z-afstand Supportstructuur" - -#: fdmprinter.def.json -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. This value is rounded up to a multiple of the layer height." -msgstr "De afstand tussen de boven-/onderkant van de supportstructuur en de print. Deze afstand zorgt ervoor dat de supportstructuren na het printen van het model kunnen worden verwijderd. De waarde wordt naar boven afgerond op een veelvoud van de laaghoogte." - -#: fdmprinter.def.json -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Afstand van Bovenkant Supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Afstand van Onderkant Supportstructuur" - -#: fdmprinter.def.json -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "De afstand van de print tot de onderkant van de supportstructuur." - -#: fdmprinter.def.json -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "X-/Y-afstand Supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Prioriteit Afstand Supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y krijgt voorrang boven Z" - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z krijgt voorrang boven X/Y" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Minimale X-/Y-afstand Supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Hoogte Traptreden Supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Maximale breedte traptreden supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Minimale hellingshoek traptreden supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Samenvoegafstand Supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Horizontale Uitzetting Supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Dikte vullaag supportvulling" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Geleidelijke supportvulling traptreden" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Geleidelijke supportvulling hoogte traptreden" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Minimumgebied supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Verbindingsstructuur Inschakelen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Supportdak inschakelen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Supportvloer inschakelen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Dikte Verbindingsstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Dikte Supportdak" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Dikte supportvloer" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Resolutie Verbindingsstructuur" - -#: fdmprinter.def.json -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 "Maak treden van de opgegeven hoogte tijdens het controleren waar zich boven en onder de supportstructuur delen van het model bevinden. Lagere waarden slicen lager, terwijl door hogere waarden mogelijk normale supportstructuur wordt geprint op plekken waar een verbindingsstructuur had moeten zijn." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "support_interface_density description" @@ -4158,898 +137,19 @@ msgid "Adjusts the density of the roofs and floors of the support structure. A h 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." #: fdmprinter.def.json -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Dichtheid supportdak" +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." #: fdmprinter.def.json -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 "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." #: fdmprinter.def.json -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Lijnafstand supportdak" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Dichtheid supportvloer" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Lijnafstand supportvloer" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Patroon Verbindingsstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Lijnen" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Raster" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Driehoeken" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Patroon supportdak" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Lijnen" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Raster" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Driehoeken" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Patroon supportvloer" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Lijnen" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Raster" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Driehoeken" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -#: fdmprinter.def.json -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Minimumgebied verbindingsstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Minimumgebied supportdak" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Minimumgebied supportvloer" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Supportstructuur horizontale uitbreiding" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Supportdak horizontale uitbreiding" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Supportvloer horizontale uitbreiding" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Lijnrichting interface supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Lijnrichting supportdak" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Lijnrichting supportvloer" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Ventilatorsnelheid Overschrijven" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Ondersteunde Ventilatorsnelheid Skin" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Pijlers Gebruiken" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Pijlerdiameter" - -#: fdmprinter.def.json -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "De diameter van een speciale pijler." - -#: fdmprinter.def.json -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Maximale pijler-ondersteunde diameter" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Hoek van Pijlerdak" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Supportraster verlagen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "Scène heeft supportrasters" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Hechting aan Platform" - -#: fdmprinter.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Hechting" - -#: fdmprinter.def.json -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Primeblob inschakelen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "X-positie voor Primen Extruder" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Y-positie voor Primen Extruder" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Type Hechting aan Platform" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Skirt" - -#: fdmprinter.def.json -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Brim" - -#: fdmprinter.def.json -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" - -#: fdmprinter.def.json -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Geen" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Extruder Hechting aan Platform" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Extruder Skirt/Brim" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Raft basisextruder" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Raft middelste extruder" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Raft bovenste extruder" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Aantal Skirtlijnen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Skirtafstand" - -#: fdmprinter.def.json -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 "" -"De horizontale afstand tussen de skirt en de eerste laag van de print.\n" -"Dit is de minimumafstand. Als u meerdere skirtlijnen print, worden deze vanaf deze afstand naar buiten geprint." - -#: fdmprinter.def.json -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Minimale Skirt-/Brimlengte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Breedte Brim" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Aantal Brimlijnen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Brimafstand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Brim vervangt supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Brim Alleen aan Buitenkant" - -#: fdmprinter.def.json -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 "Print de brim alleen aan de buitenkant van het model. Hiermee verkleint u de hoeveelheid brim die u achteraf moet verwijderen, zonder dat dit de hechting aan het printbed te zeer vermindert." - -#: fdmprinter.def.json -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Extra Marge Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Raft effenen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Luchtruimte Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Z Overlap Eerste Laag" - -#: fdmprinter.def.json -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 "Laat de eerste en tweede laag van het model overlappen in de Z-richting om te compenseren voor verloren materiaal in de luchtlaag. Alle stukjes model boven de eerste laag worden met deze hoeveelheid naar beneden verschoven." - -#: fdmprinter.def.json -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Bovenlagen Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Dikte Bovenlaag Raft" - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Laagdikte van de bovenste lagen van de raft." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Breedte Bovenste Lijn Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Bovenruimte Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Raft middelste lagen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Lijndikte Midden Raft" - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "De laagdikte van de middelste laag van de raft." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Lijnbreedte Midden Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Tussenruimte Midden Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Dikte Grondvlak Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Lijnbreedte Grondvlak Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Tussenruimte Lijnen Grondvlak Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Printsnelheid Raft" - -#: fdmprinter.def.json -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "De snelheid waarmee de raft wordt geprint." - -#: fdmprinter.def.json -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Printsnelheid Bovenkant Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Printsnelheid Midden Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Printsnelheid Grondvlak Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Printacceleratie Raft" - -#: fdmprinter.def.json -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "De acceleratie tijdens het printen van de raft." - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Printacceleratie Bovenkant Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Printacceleratie Midden Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Printacceleratie Grondvlak Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Printschok Raft" - -#: fdmprinter.def.json -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "De schok tijdens het printen van de raft." - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Printschok Bovenkant Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Printschok Midden Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Printschok Grondvlak Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Ventilatorsnelheid Raft" - -#: fdmprinter.def.json -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "De ventilatorsnelheid tijdens het printen van de raft." - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Ventilatorsnelheid Bovenkant Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Ventilatorsnelheid Midden Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Ventilatorsnelheid Grondlaag Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Dubbele Doorvoer" - -#: fdmprinter.def.json -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Instellingen die worden gebruikt voor het printen met meerdere extruders." - -#: fdmprinter.def.json -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Primepijler Inschakelen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Formaat Primepijler" - -#: fdmprinter.def.json -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "De breedte van de primepijler." - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Minimumvolume primepijler" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "X-positie Primepijler" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Y-positie Primepijler" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "prime_tower_wipe_enabled description" @@ -5057,244 +157,14 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "Veeg na het printen van de primepijler met één nozzle het doorgevoerde materiaal van de andere nozzle af aan de primepijler." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Brim 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." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Primepijlers hebben mogelijk de extra hechting van een brim nodig, ook als het model dit niet nodig heeft. Kan momenteel niet worden gebruikt met het hechtingstype 'Raft'." - -#: fdmprinter.def.json -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Uitloopscherm Inschakelen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Hoek Uitloopscherm" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Afstand Uitloopscherm" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Intrekafstand bij Wisselen Nozzles" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Intreksnelheid bij Wisselen Nozzles" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Intrekkingssnelheid bij Wisselen Nozzles" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Primesnelheid bij Wisselen Nozzles" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Extra primehoeveelheid na wisselen van nozzle" - -#: fdmprinter.def.json -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Extra primemateriaal na het wisselen van de nozzle." - -#: fdmprinter.def.json -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Modelcorrecties" - -#: fdmprinter.def.json -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Maak de rasters beter geschikt voor 3D-printen." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Overlappende Volumes Samenvoegen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Alle Gaten Verwijderen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Uitgebreid Hechten" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Onderbroken Oppervlakken Behouden" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Samengevoegde rasters overlappen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Rastersnijpunt verwijderen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Verwijderen van afwisselend raster" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Lege eerste lagen verwijderen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Maximale resolutie" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Maximale bewegingsresolutie" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Maximale afwijking" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Maximale afwijking doorvoergebied" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Speciale Modi" - -#: fdmprinter.def.json -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Niet-traditionele manieren om uw modellen te printen." - -#: fdmprinter.def.json -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Printvolgorde" - -#: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "print_sequence option all_at_once" @@ -5302,1273 +172,19 @@ msgid "All at Once" msgstr "Alles Tegelijk" #: fdmprinter.def.json -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Eén voor Eén" +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)." #: fdmprinter.def.json -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Vulraster" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Afwisselend Extra Wand" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Rasterverwerkingsrang" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Snijdend raster" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Matrijs" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Minimale matrijsbreedte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Dakhoogte matrijs" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Matrijshoek" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Supportstructuur raster" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Raster tegen overhang" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Oppervlaktemodus" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normaal" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Oppervlak" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Beide" - -#: fdmprinter.def.json -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Buitencontour Spiraliseren" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Gespiraliseerde contouren effenen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Relatieve Extrusie" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "experimental label" -msgid "Experimental" -msgstr "Experimenteel" - -#: fdmprinter.def.json -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Functies die nog niet volledig zijn uitgewerkt." - -#: fdmprinter.def.json -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Slicetolerantie" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Midden" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exclusief" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusief" - -#: fdmprinter.def.json -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Lijnbreedte bovenskin" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Patroon bovenskin" - -#: fdmprinter.def.json -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "Het patroon van de bovenste lagen." - -#: fdmprinter.def.json -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Lijnen" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -#: fdmprinter.def.json -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Monotone volgorde bovenlaag" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Lijnrichting bovenskin" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Bewegingsoptimalisatie vulling" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature label" -msgid "Auto Temperature" -msgstr "Automatische Temperatuurinstelling" - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature description" -msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -msgstr "Pas de temperatuur voor elke laag automatisch aan aan de gemiddelde doorvoersnelheid van de laag." - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Grafiek Doorvoertemperatuur" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Minimale Polygoonomtrek" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Supportstructuur in Stukken Breken" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Grootte Supportstuk" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Aantal Lijnen Supportstuk" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Tochtscherm Inschakelen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Tochtscherm X-/Y-afstand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Beperking Tochtscherm" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Volledig" - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Beperkt" - -#: fdmprinter.def.json -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Hoogte Tochtscherm" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Overhang Printbaar Maken" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Maximale Modelhoek" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Maximale overhang oppervlak gat" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Coasting Inschakelen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Coasting-volume" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Minimaal Volume vóór Coasting" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Coasting-snelheid" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Luchtbelgrootte bij Kruis 3D" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Dichtheid kruisvulling afbeelding" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Dichtheid kruisvulling afbeelding voor supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Conische supportstructuur inschakelen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Hoek Conische Supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Minimale Breedte Conische Supportstructuur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Rafelig Oppervlak" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Alleen rafelig oppervlak buitenkant" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Dikte Rafelig Oppervlak" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Dichtheid Rafelig Oppervlak" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Puntafstand Rafelig Oppervlak" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Maximale extrusieoffset voor doorvoercompensatie" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Doorvoercompensatiefactor" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wireframe_enabled label" -msgid "Wire Printing" -msgstr "Draadprinten" - -#: fdmprinter.def.json -msgctxt "wireframe_enabled description" -msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -msgstr "Print alleen de buitenkant van het object in een dunne webstructuur, 'in het luchtledige'. Hiervoor worden de contouren van het model horizontaal geprint op bepaalde Z-intervallen die door middel van opgaande en diagonaal neergaande lijnen zijn verbonden." - -#: fdmprinter.def.json -msgctxt "wireframe_height label" -msgid "WP Connection Height" -msgstr "Verbindingshoogte Draadprinten" - -#: fdmprinter.def.json -msgctxt "wireframe_height description" -msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -msgstr "De hoogte van de opgaande en diagonaal neergaande lijnen tussen twee horizontale delen. Hiermee bepaalt u de algehele dichtheid van de webstructuur. Alleen van toepassing op Draadprinten." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset label" -msgid "WP Roof Inset Distance" -msgstr "Afstand Dakuitsparingen Draadprinten" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset description" -msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -msgstr "De afstand die wordt overbrugt wanneer vanaf een dakcontour een verbinding naar binnen wordt gemaakt. Alleen van toepassing op Draadprinten." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed label" -msgid "WP Speed" -msgstr "Snelheid Draadprinten" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed description" -msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -msgstr "De snelheid waarmee de nozzle beweegt tijdens het doorvoeren van materiaal. Alleen van toepassing op Draadprinten." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom label" -msgid "WP Bottom Printing Speed" -msgstr "Printsnelheid Bodem Draadprinten" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom description" -msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -msgstr "De snelheid waarmee de eerste laag wordt geprint. Dit is tevens de enige laag die het platform raakt. Alleen van toepassing op Draadprinten." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up label" -msgid "WP Upward Printing Speed" -msgstr "Opwaartse Printsnelheid Draadprinten" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up description" -msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -msgstr "De snelheid waarmee een lijn naar boven 'in het luchtledige' wordt geprint. Alleen van toepassing op Draadprinten." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down label" -msgid "WP Downward Printing Speed" -msgstr "Neerwaartse Printsnelheid Draadprinten" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down description" -msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -msgstr "De snelheid waarmee een lijn diagonaal naar beneden wordt geprint. Alleen van toepassing op Draadprinten." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat label" -msgid "WP Horizontal Printing Speed" -msgstr "Horizontale Printsnelheid Draadprinten" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat description" -msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -msgstr "De snelheid waarmee de contouren van een model worden geprint. Alleen van toepassing op draadprinten." - -#: fdmprinter.def.json -msgctxt "wireframe_flow label" -msgid "WP Flow" -msgstr "Doorvoer Draadprinten" - -#: fdmprinter.def.json -msgctxt "wireframe_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -msgstr "Doorvoercompensatie: de hoeveelheid materiaal die wordt doorgevoerd, wordt vermenigvuldigd met deze waarde. Alleen van toepassing op Draadprinten." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection label" -msgid "WP Connection Flow" -msgstr "Verbindingsdoorvoer Draadprinten" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection description" -msgid "Flow compensation when going up or down. Only applies to Wire Printing." -msgstr "Doorvoercompensatie tijdens bewegingen naar boven of beneden. Alleen van toepassing op Draadprinten." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat label" -msgid "WP Flat Flow" -msgstr "Doorvoer Platte Lijn Draadprinten" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat description" -msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -msgstr "Doorvoercompensatie tijdens het printen van platte lijnen. Alleen van toepassing op Draadprinten." - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay label" -msgid "WP Top Delay" -msgstr "Opwaartse Vertraging Draadprinten" - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay description" -msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -msgstr "Vertraging na een opwaartse beweging, zodat de opwaartse lijn kan uitharden. Alleen van toepassing op Draadprinten." - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay label" -msgid "WP Bottom Delay" -msgstr "Neerwaartse Vertraging Draadprinten" - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay description" -msgid "Delay time after a downward move. Only applies to Wire Printing." -msgstr "Vertraging na een neerwaartse beweging. Alleen van toepassing op Draadprinten." - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay label" -msgid "WP Flat Delay" -msgstr "Vertraging Platte Lijn Draadprinten" - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay description" -msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -msgstr "Vertragingstijd tussen twee horizontale segmenten. Een dergelijke vertraging zorgt voor een betere hechting aan voorgaande lagen op de verbindingspunten. Bij een te lange vertraging kan het object echter gaan doorzakken. Alleen van toepassing op Draadprinten." - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed label" -msgid "WP Ease Upward" -msgstr "Langzaam Opwaarts Draadprinten" - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed description" -msgid "" -"Distance of an upward move which is extruded with half speed.\n" -"This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "" -"De afstand van een opwaartse beweging waarbij de doorvoersnelheid wordt gehalveerd.\n" -"Hierdoor ontstaat een betere hechting aan voorgaande lagen, zonder dat het materiaal in die lagen te zeer wordt verwarmd. Alleen van toepassing op Draadprinten." - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump label" -msgid "WP Knot Size" -msgstr "Knoopgrootte Draadprinten" - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump description" -msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -msgstr "Maakt een kleine verdikking boven aan een opwaartse lijn, zodat de volgende horizontale laag hier beter op kan aansluiten. Alleen van toepassing op Draadprinten." - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down label" -msgid "WP Fall Down" -msgstr "Valafstand Draadprinten" - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down description" -msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "De afstand die het materiaal valt na een opwaartse doorvoer. Deze afstand wordt gecompenseerd. Alleen van toepassing op Draadprinten." - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along label" -msgid "WP Drag Along" -msgstr "Meeslepen Draadprinten" - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along description" -msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "De afstand waarover het materiaal van een opwaartse doorvoer wordt meegesleept tijdens een diagonaal neerwaartse doorvoer. Deze afstand wordt gecompenseerd. Alleen van toepassing op Draadprinten." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy label" -msgid "WP Strategy" -msgstr "Draadprintstrategie" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy description" -msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -msgstr "Strategie om ervoor te zorgen dat twee opeenvolgende lagen bij elk verbindingspunt op elkaar aansluiten. Met intrekken kunnen de opwaartse lijnen in de juiste positie uitharden, maar kan het filament gaan haperen. Aan het eind van een opwaartse lijn kan een verdikking worden gemaakt om een volgende lijn hierop eenvoudiger te kunnen laten aansluiten en om de lijn te laten afkoelen. Hiervoor is mogelijk een lage printsnelheid vereist. U kunt echter ook het doorzakken van de bovenkant van een opwaartse lijn compenseren. De lijnen vallen echter niet altijd zoals verwacht." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option compensate" -msgid "Compensate" -msgstr "Compenseren" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option knot" -msgid "Knot" -msgstr "Verdikken" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option retract" -msgid "Retract" -msgstr "Intrekken" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down label" -msgid "WP Straighten Downward Lines" -msgstr "Neerwaartse Lijnen Rechtbuigen Draadprinten" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down description" -msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -msgstr "Het percentage van een diagonaal neerwaartse lijn die wordt afgedekt door een deel van een horizontale lijn. Hiermee kunt u voorkomen dat het bovenste deel van een opwaartse lijn doorzakt. Alleen van toepassing op Draadprinten." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down label" -msgid "WP Roof Fall Down" -msgstr "Valafstand Dak Draadprinten" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down description" -msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -msgstr "De afstand die horizontale daklijnen die 'in het luchtledige' worden geprint, naar beneden vallen tijdens het printen. Deze afstand wordt gecompenseerd. Alleen van toepassing op Draadprinten." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along label" -msgid "WP Roof Drag Along" -msgstr "Meeslepen Dak Draadprinten" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along description" -msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -msgstr "De afstand die het eindstuk van een inwaartse lijn wordt meegesleept wanneer de nozzle terugkeert naar de buitencontouren van het dak. Deze afstand wordt gecompenseerd. Alleen van toepassing op Draadprinten." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay label" -msgid "WP Roof Outer Delay" -msgstr "Vertraging buitenzijde dak tijdens draadprinten" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay description" -msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -msgstr "De wachttijd aan de buitenkant van een gat dat een dak moet gaan vormen. Een langere wachttijd kan zorgen voor een betere aansluiting. Alleen van toepassing op Draadprinten." - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance label" -msgid "WP Nozzle Clearance" -msgstr "Tussenruimte Nozzle Draadprinten" - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance description" -msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -msgstr "De afstand tussen de nozzle en horizontaal neergaande lijnen. Een grotere tussenruimte zorgt voor diagonaal neerwaarts gaande lijnen met een minder steile hoek. Hierdoor ontstaan minder opwaartse verbindingen met de volgende laag. Alleen van toepassing op Draadprinten." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Adaptieve lagen gebruiken" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Maximale variatie adaptieve lagen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Stapgrootte variatie adaptieve lagen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Topografieformaat aanpasbare lagen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Hoek Overhangende Wand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Snelheid Overhangende Wand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Bruginstellingen inschakelen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Minimale brugwandlengte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Drempelwaarde voor brugskinsupport" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Maximale dichtheid van dunne vulling brugskin" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Coasting brugwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Snelheid brugwand" - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "De snelheid waarmee brugwanden worden geprint." - -#: fdmprinter.def.json -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Doorvoer brugwand" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Snelheid brugskin" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "De snelheid waarmee brugskinregio's worden geprint." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Doorvoer brugskin" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Dichtheid brugskin" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Ventilatorsnelheid brug" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Brug heeft meerdere lagen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Snelheid tweede brugskin" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Doorvoer tweede brugskin" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Dichtheid tweede brugskin" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Ventilatorsnelheid tweede brugskin" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Snelheid derde brugskin" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Doorvoer derde brugskin" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Dichtheid derde brugskin" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Ventilatorsnelheid derde brugskin" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Nozzle afvegen tussen lagen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Materiaalvolume tussen afvegen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Intrekken voor afvegen inschakelen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Intrekafstand voor afvegen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Extra primehoeveelheid na intrekken voor afvegen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Intreksnelheid voor afvegen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Intreksnelheid voor afvegen (intrekken)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Primesnelheid Intrekken voor afvegen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Afvegen pauzeren" - -#: fdmprinter.def.json -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pauzeren na het ongedaan maken van intrekken." - -#: fdmprinter.def.json -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Z-sprong afvegen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Hoogte Z-sprong voor afvegen" - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Het hoogteverschil dat wordt aangehouden tijdens een Z-sprong." - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Sprongsnelheid voor afvegen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "X-positie afveegborstel" - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "X-positie waar afveegscript start." - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Aantal afveegbewegingen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Verplaatsingsafstand voor afvegen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Maximale grootte kleine gaten" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Maximale lengte klein kenmerk" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Klein kenmerksnelheid" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Kleine kenmerken eerste laagsnelheid" - -#: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "material_alternate_walls label" @@ -6581,34 +197,349 @@ msgid "Alternate wall directions every other layer and inset. Useful for materia msgstr "Alternerende wandrichtingen na elke laag en instroming. Nuttig voor materialen die spanning op kunnen bouwen, bijvoorbeeld voor het printen van metaal." #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Binnenhoeken raft verwijderen" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Aluminium" #: fdmprinter.def.json -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 "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "Tool voor altijd actief schrijven" #: fdmprinter.def.json -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Aantal wanden grondvlak raft" +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." #: fdmprinter.def.json -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 "hole_xy_offset description" +msgid "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." +msgstr "De offset die wordt toegepast op alle gaten in elke laag. Met positieve waarden worden de gaten groter, met negatieve waarden worden de gaten kleiner." #: fdmprinter.def.json -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Instellingen opdrachtregel" +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." #: fdmprinter.def.json -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 "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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Raster tegen overhang" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Intrekpositie voor niet-uitlopen" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Intreksnelheid voor niet-uitlopen" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Geprinte delen mijden tijdens bewegingen" + +#: fdmprinter.def.json +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Supportstructuren mijden tijdens bewegingen" + +#: fdmprinter.def.json +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Achter" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Linksachter" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Rechtsachter" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Beide" + +#: fdmprinter.def.json +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Bodemlagen" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Eerste laag patroon onderkant" + +#: fdmprinter.def.json +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Uitbreidingsafstand van onderste skinlaag" + +#: fdmprinter.def.json +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Verwijderingsbreedte onderste skinlaag" + +#: fdmprinter.def.json +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Bodemdikte" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Intrekpositie voor voorbereiding van afbreken" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Intreksnelheid voor voorbereiding van afbreken" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatuur voor voorbereiding van afbreken" + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Intrekpositie voor afbreken" + +#: fdmprinter.def.json +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Intreksnelheid voor afbreken" + +#: fdmprinter.def.json +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Temperatuur voor afbreken" + +#: fdmprinter.def.json +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Supportstructuur in Stukken Breken" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Ventilatorsnelheid brug" + +#: fdmprinter.def.json +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Brug heeft meerdere lagen" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Dichtheid tweede brugskin" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Ventilatorsnelheid tweede brugskin" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Doorvoer tweede brugskin" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Snelheid tweede brugskin" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Dichtheid brugskin" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Doorvoer brugskin" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Snelheid brugskin" + +#: fdmprinter.def.json +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Drempelwaarde voor brugskinsupport" + +#: fdmprinter.def.json +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Maximale dichtheid van dunne vulling brugskin" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Dichtheid derde brugskin" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Ventilatorsnelheid derde brugskin" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Doorvoer derde brugskin" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Snelheid derde brugskin" + +#: fdmprinter.def.json +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Coasting brugwand" + +#: fdmprinter.def.json +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Doorvoer brugwand" + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Snelheid brugwand" + +#: fdmprinter.def.json +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Brim" + +#: fdmprinter.def.json +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Brimafstand" + +#: fdmprinter.def.json +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "Binnenste mijdmarge brim" + +#: fdmprinter.def.json +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Aantal Brimlijnen" + +#: fdmprinter.def.json +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Brim Alleen aan Buitenkant" + +#: fdmprinter.def.json +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Brim vervangt supportstructuur" + +#: fdmprinter.def.json +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Breedte Brim" + +#: fdmprinter.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Hechting aan Platform" + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Extruder Hechting aan Platform" + +#: fdmprinter.def.json +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Type Hechting aan Platform" + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Materiaal van het platform" + +#: fdmprinter.def.json +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Vorm van het platform" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Platformtemperatuur" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Platformtemperatuur voor de eerste laag" + +#: fdmprinter.def.json +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatuur werkvolume" #: fdmprinter.def.json msgctxt "center_object label" @@ -6616,1062 +547,6211 @@ msgid "Center Object" msgstr "Object centreren" #: fdmprinter.def.json -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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Coasting-snelheid" + +#: fdmprinter.def.json +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Coasting-volume" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Combing-modus" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Instellingen opdrachtregel" + +#: fdmprinter.def.json +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" + +#: fdmprinter.def.json +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concentrisch" + +#: fdmprinter.def.json +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Hoek Conische Supportstructuur" + +#: fdmprinter.def.json +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Minimale Breedte Conische Supportstructuur" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Vullijnen verbinden" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Vulpolygonen Verbinden" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Supportstructuurlijnen verbinden" + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Zigzaglijnen Supportstructuur Verbinden" + +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Boven-/onderkant Polygonen Verbinden" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Afkoelsnelheid" + +#: fdmprinter.def.json +msgctxt "cooling description" +msgid "Cooling" +msgstr "Koelen" + +#: fdmprinter.def.json +msgctxt "cooling label" +msgid "Cooling" +msgstr "Koelen" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Kruis" + +#: fdmprinter.def.json +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Kruis" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Kruis 3D" + +#: fdmprinter.def.json +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Luchtbelgrootte bij Kruis 3D" + +#: fdmprinter.def.json +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Dichtheid kruisvulling afbeelding voor supportstructuur" + +#: fdmprinter.def.json +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Dichtheid kruisvulling afbeelding" + +#: fdmprinter.def.json +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Kristallijnmateriaal" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Kubisch" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Kubische onderverdeling" + +#: fdmprinter.def.json +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Kubische onderverdeling shell" + +#: fdmprinter.def.json +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Snijdend raster" + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Standaardacceleratie" + +#: fdmprinter.def.json +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Standaardtemperatuur platform" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Standaard Filamentschok" + +#: fdmprinter.def.json +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Standaard printtemperatuur" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Standaard X-/Y-schok" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Standaard Z-schok" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "De standaardschok voor beweging in het horizontale vlak." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "De standaardschok voor de motor voor het filament." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diameter" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Verboden gebieden" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support." +msgstr "De afstand van de print tot de onderkant van de supportstructuur." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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. This value is rounded up to a multiple of the layer height." +msgstr "De afstand tussen de boven-/onderkant van de supportstructuur en de print. Deze afstand zorgt ervoor dat de supportstructuren na het printen van het model kunnen worden verwijderd. De waarde wordt naar boven afgerond op een veelvoud van de laaghoogte." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Hoogte Tochtscherm" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Beperking Tochtscherm" + +#: fdmprinter.def.json +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Tochtscherm X-/Y-afstand" + +#: fdmprinter.def.json +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Supportraster verlagen" + +#: fdmprinter.def.json +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Dubbele Doorvoer" + +#: fdmprinter.def.json +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Ovaal" + +#: fdmprinter.def.json +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Acceleratieregulering Inschakelen" + +#: fdmprinter.def.json +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Bruginstellingen inschakelen" + +#: fdmprinter.def.json +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Coasting Inschakelen" + +#: fdmprinter.def.json +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Conische supportstructuur inschakelen" + +#: fdmprinter.def.json +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Tochtscherm Inschakelen" + +#: fdmprinter.def.json +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Strijken inschakelen" + +#: fdmprinter.def.json +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Schokregulering Inschakelen" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Regulering van de nozzletemperatuur inschakelen" + +#: fdmprinter.def.json +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Uitloopscherm Inschakelen" + +#: fdmprinter.def.json +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Primeblob inschakelen" + +#: fdmprinter.def.json +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Primepijler Inschakelen" + +#: fdmprinter.def.json +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Koelen van de Print Inschakelen" + +#: fdmprinter.def.json +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Intrekken Inschakelen" + +#: fdmprinter.def.json +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Supportbrim inschakelen" + +#: fdmprinter.def.json +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Supportvloer inschakelen" + +#: fdmprinter.def.json +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Verbindingsstructuur Inschakelen" + +#: fdmprinter.def.json +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Supportdak inschakelen" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Bewegingsacceleratie inschakelen" + +#: fdmprinter.def.json +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Bewegingsschok inschakelen" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "Eind G-code" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Afvoerduur einde van filament" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Afvoersnelheid einde van filament" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Overal" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exclusief" + +#: fdmprinter.def.json +msgctxt "experimental label" +msgid "Experimental" +msgstr "Experimenteel" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Naad zichtbaar maken" + +#: fdmprinter.def.json +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Uitgebreid Hechten" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Aantal Extra Wanden Rond vulling" + +#: fdmprinter.def.json +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Aantal Extra Wandlijnen Rond Skin" + +#: fdmprinter.def.json +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Extra primemateriaal na het wisselen van de nozzle." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "X-positie voor Primen Extruder" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Y-positie voor Primen Extruder" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z-positie voor Primen Extruder" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Extruders delen verwarming" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Extruders delen nozzle" + +#: fdmprinter.def.json +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Aanpassing Afkoelsnelheid Doorvoer" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Ventilatorsnelheid" + +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Ventilatorsnelheid Overschrijven" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Functies die nog niet volledig zijn uitgewerkt." + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diameter van het feedertandwiel" + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Eindtemperatuur voor printen" + +#: fdmprinter.def.json +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Intrekken via firmware" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extruder Eerste Laag van Support" + +#: fdmprinter.def.json +msgctxt "material_flow label" +msgid "Flow" +msgstr "Doorvoer" + +#: fdmprinter.def.json +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Verhouding voor afstemmen doorvoer" + +#: fdmprinter.def.json +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Doorvoercompensatiefactor" + +#: fdmprinter.def.json +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Maximale extrusieoffset voor doorvoercompensatie" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Grafiek Doorvoertemperatuur" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Doorvoercompensatie op vullijnen." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Doorvoercompensatie op primepijlerlijnen." + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Doorvoercompensatie op skirt- of brimlijnen." + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Doorvoercompensatie op de supportvloerlijnen." + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Doorvoercompensatie op supportdaklijnen." + +#: fdmprinter.def.json +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Doorvoercompensatie op de supportstructuurlijnen." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Doorvoercompensatie op de buitenste wandlijn." + +#: fdmprinter.def.json +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Doorvoercompensatie op bovenste/onderste lijn." + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Doorvoercompensatie op wandlijnen." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Afvoerduur flush" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Afvoersnelheid flush" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Voor" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Linksvoor" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Rechtsvoor" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Volledig" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Rafelig Oppervlak" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Dichtheid Rafelig Oppervlak" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Alleen rafelig oppervlak buitenkant" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Puntafstand Rafelig Oppervlak" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Dikte Rafelig Oppervlak" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Versie G-code" + +#: fdmprinter.def.json +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 \n" +"." + +#: fdmprinter.def.json +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 \n" +"." + +#: fdmprinter.def.json +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID van het materiaal. Deze optie wordt automatisch ingesteld." + +#: fdmprinter.def.json +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Rijbrughoogte" + +#: fdmprinter.def.json +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Genereer in elkaar grijpende structuur" + +#: fdmprinter.def.json +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Support genereren" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Glas" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Staphoogte Geleidelijke Vulling" + +#: fdmprinter.def.json +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Stappen Geleidelijke Vulling" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Geleidelijke supportvulling hoogte traptreden" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Geleidelijke supportvulling traptreden" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Raster" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Raster" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Raster" + +#: fdmprinter.def.json +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Raster" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Raster" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +#: fdmprinter.def.json +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroïde" + +#: fdmprinter.def.json +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroïde" + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Heeft temperatuurstabilisatie van werkvolume" + +#: fdmprinter.def.json +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Heeft verwarmd platform" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Verwarmingssnelheid" + +#: fdmprinter.def.json +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Lengte verwarmingszone" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Naad verbergen" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Naad verbergen of zichtbaar maken" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Horizontale uitbreiding gaten" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Horizontale Uitbreiding" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Horizontale schaalfactor krimpcompensatie" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance description" +msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." +msgstr "Hiermee stelt u in hoe ver de takken moeten uitsteken als ze het model raken. Met een kleinere afstand raakt de boomsupportstructuur het model op meer plaatsen. Hierdoor creëert u een betere overhang maar is de supportstructuur moeilijker te verwijderen." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Platformtemperatuur invoegen" + +#: fdmprinter.def.json +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Materiaaltemperatuur invoegen" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusief" + +#: fdmprinter.def.json +msgctxt "infill description" +msgid "Infill" +msgstr "Vulling" + +#: fdmprinter.def.json +msgctxt "infill label" +msgid "Infill" +msgstr "Vulling" + +#: fdmprinter.def.json +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Vulacceleratie" + +#: fdmprinter.def.json +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Vulling vóór Wanden" + +#: fdmprinter.def.json +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Dichtheid Vulling" + +#: fdmprinter.def.json +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Vullingextruder" + +#: fdmprinter.def.json +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Doorvoer vulling" + +#: fdmprinter.def.json +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Vulschok" + +#: fdmprinter.def.json +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Dikte Vullaag" + +#: fdmprinter.def.json +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Lijnrichting vulling" + +#: fdmprinter.def.json +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Lijnafstand Vulling" + +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Vermenigvuldiging Vullijn" + +#: fdmprinter.def.json +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Lijnbreedte Vulling" + +#: fdmprinter.def.json +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Vulraster" + +#: fdmprinter.def.json +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Overhanghoek vulling" + +#: fdmprinter.def.json +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Overlap Vulling" + +#: fdmprinter.def.json +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Overlappercentage vulling" + +#: fdmprinter.def.json +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Vulpatroon" + +#: fdmprinter.def.json +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Vulsnelheid" + +#: fdmprinter.def.json +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Supportvulling" + +#: fdmprinter.def.json +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Bewegingsoptimalisatie vulling" + +#: fdmprinter.def.json +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Veegafstand Vulling" + +#: fdmprinter.def.json +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Vulling X-offset" + +#: fdmprinter.def.json +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Vulling Y-offset" + +#: fdmprinter.def.json +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Eerste onderste lagen" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Startsnelheid ventilator" + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Acceleratie Eerste Laag" + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Initiële laag onderste lijn" + +#: fdmprinter.def.json +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Doorvoer eerste laag" + +#: fdmprinter.def.json +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Hoogte Eerste Laag" + +#: fdmprinter.def.json +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Eerste laag Horizontale uitbreiding" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Initiële laag binnenwandstroom" + +#: fdmprinter.def.json +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Schok Eerste Laag" + +#: fdmprinter.def.json +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Lijnbreedte eerste laag" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Initiële laag buitenwandstroom" + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Printacceleratie Eerste Laag" + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Printschok Eerste Laag" + +#: fdmprinter.def.json +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Printsnelheid Eerste Laag" + +#: fdmprinter.def.json +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Snelheid Eerste Laag" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Lijnafstand Supportstructuur Eerste Laag" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Bewegingsacceleratie Eerste Laag" + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Bewegingsschok Eerste Laag" + +#: fdmprinter.def.json +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Bewegingssnelheid Eerste Laag" + +#: fdmprinter.def.json +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Z Overlap Eerste Laag" + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Starttemperatuur voor printen" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Binnenwandacceleratie" + +#: fdmprinter.def.json +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extruder binnenwand" + +#: fdmprinter.def.json +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Schok Binnenwand" + +#: fdmprinter.def.json +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Snelheid Binnenwand" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Doorvoer binnenwand(en)" + +#: fdmprinter.def.json +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Lijnbreedte Binnenwand(en)" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "Van binnen naar buiten" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Aantal in elkaar grijpende balklagen" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Breedte in elkaar grijpende balk" + +#: fdmprinter.def.json +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "In elkaar grijpende grensvermijding" + +#: fdmprinter.def.json +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "In elkaar grijpende diepte" + +#: fdmprinter.def.json +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "In elkaar grijpende structuuroriëntatie" + +#: fdmprinter.def.json +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Alleen hoogste laag strijken" + +#: fdmprinter.def.json +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Strijkacceleratie" + +#: fdmprinter.def.json +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Strijkdoorvoer" + +#: fdmprinter.def.json +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Uitsparing strijken" + +#: fdmprinter.def.json +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Schok strijken" + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Tussenruimte strijklijnen" + +#: fdmprinter.def.json +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Strijkpatroon" + +#: fdmprinter.def.json +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Strijksnelheid" + +#: fdmprinter.def.json +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Is oorsprongpunt centraal" + +#: fdmprinter.def.json +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)?" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Onderbroken Oppervlakken Behouden" + +#: fdmprinter.def.json +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Laaghoogte" + +#: fdmprinter.def.json +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "Begin laag X" + +#: fdmprinter.def.json +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Begin laag Y" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "De laagdikte van de middelste laag van de raft." + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Laagdikte van de bovenste lagen van de raft." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Links" + +#: fdmprinter.def.json +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Printkop Optillen" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Bliksem" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Hoek overhang bliksemvulling" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Snoeihoek bliksemvulling" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Rechtbuighoek bliksemvulling" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Hoek supportstructuur bliksemvulling" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Beperkt" + +#: fdmprinter.def.json +msgctxt "line_width label" +msgid "Line Width" +msgstr "Lijnbreedte" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Lijnen" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Lijnen" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Lijnen" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Lijnen" + +#: fdmprinter.def.json +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Lijnen" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Lijnen" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Lijnen" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Lijnen" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +#: fdmprinter.def.json +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Machine" + +#: fdmprinter.def.json +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Machinediepte" + +#: fdmprinter.def.json +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Machinekop- en ventilatorpolygoon" + +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Machinehoogte" + +#: fdmprinter.def.json +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Type Machine" + +#: fdmprinter.def.json +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Machinebreedte" + +#: fdmprinter.def.json +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Instellingen van de machine" + +#: fdmprinter.def.json +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Overhang Printbaar Maken" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Laat de eerste en tweede laag van het model overlappen in de Z-richting om te compenseren voor verloren materiaal in de luchtlaag. Alle stukjes model boven de eerste laag worden met deze hoeveelheid naar beneden verschoven." + +#: fdmprinter.def.json +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Maak de rasters beter geschikt voor 3D-printen." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumetrisch)" + +#: fdmprinter.def.json +msgctxt "material description" +msgid "Material" +msgstr "Materiaal" + +#: fdmprinter.def.json +msgctxt "material label" +msgid "Material" +msgstr "Materiaal" + +#: fdmprinter.def.json +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "Materiaal-GUID" + +#: fdmprinter.def.json +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Materiaalvolume tussen afvegen" + +#: fdmprinter.def.json +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Max. combing-afstand zonder intrekken" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Maximale Acceleratie X" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Maximale Acceleratie Y" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Maximale Acceleratie Z" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Maximale afwijking" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Maximale afwijking doorvoergebied" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Maximale Ventilatorsnelheid" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Maximale Filamentacceleratie" + +#: fdmprinter.def.json +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Maximale Modelhoek" + +#: fdmprinter.def.json +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Maximale overhang oppervlak gat" + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Maximale parkeerduur" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Maximale resolutie" + +#: fdmprinter.def.json +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Maximaal Aantal Intrekbewegingen" + +#: fdmprinter.def.json +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Maximale skinhoek voor uitbreiding" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Maximale Snelheid E" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Maximale Snelheid X" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Maximale Snelheid Y" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Maximale Snelheid Z" + +#: fdmprinter.def.json +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Maximale pijler-ondersteunde diameter" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Maximale bewegingsresolutie" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Samengevoegde rasters overlappen" + +#: fdmprinter.def.json +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Modelcorrecties" #: fdmprinter.def.json msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "Rasterpositie X" -#: fdmprinter.def.json -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." - #: fdmprinter.def.json msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "Rasterpositie Y" -#: fdmprinter.def.json -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." - #: fdmprinter.def.json msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "Rasterpositie Z" #: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "Matrix rasterrotatie" +#: fdmprinter.def.json +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Midden" + +#: fdmprinter.def.json +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Minimale matrijsbreedte" + +#: fdmprinter.def.json +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Minimale tijd stand-bytemperatuur" + +#: fdmprinter.def.json +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Minimale brugwandlengte" + +#: fdmprinter.def.json +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Minimum lijnbreedte even wand" + +#: fdmprinter.def.json +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Minimaal Afstandsgebied voor Intrekken" + +#: fdmprinter.def.json +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Minimum elementgrootte" + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Minimale Doorvoersnelheid" + +#: fdmprinter.def.json +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Minimumgebied vulling" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Minimale Laagtijd" + +#: fdmprinter.def.json +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Minimum breedte ongelijkmatige wandlijn" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Minimale Polygoonomtrek" + +#: fdmprinter.def.json +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Minimale skinbreedte voor uitbreiding" + +#: fdmprinter.def.json +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Minimumsnelheid" + +#: fdmprinter.def.json +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Minimumgebied supportstructuur" + +#: fdmprinter.def.json +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Minimumgebied supportvloer" + +#: fdmprinter.def.json +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Minimumgebied verbindingsstructuur" + +#: fdmprinter.def.json +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Minimumgebied supportdak" + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Minimale X-/Y-afstand Supportstructuur" + +#: fdmprinter.def.json +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Minimumbreedte dunne wandlijn" + +#: fdmprinter.def.json +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Minimaal Volume vóór Coasting" + +#: fdmprinter.def.json +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Minimumbreedte wandlijn" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Matrijs" + +#: fdmprinter.def.json +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Matrijshoek" + +#: fdmprinter.def.json +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Dakhoogte matrijs" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Monotone strijkvolgorde" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Monotone volgorde bovenlaag" + +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Monotone volgorde van boven naar beneden" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Verplaatsingsfactor zonder lading" + +#: fdmprinter.def.json +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Geen skin in Z-gaten" + +#: fdmprinter.def.json +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Niet-traditionele manieren om uw modellen te printen." + +#: fdmprinter.def.json +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Geen" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Geen" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normaal" + +#: fdmprinter.def.json +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normaal" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Niet in skin" + +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Niet op buitenzijde" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Nozzlehoek" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Nozzlediameter" + +#: fdmprinter.def.json +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Verboden gebieden voor de nozzle" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Nozzle-ID" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Nozzlelengte" + +#: fdmprinter.def.json +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Extra primehoeveelheid na wisselen van nozzle" + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Primesnelheid bij Wisselen Nozzles" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Intrekkingssnelheid bij Wisselen Nozzles" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Intrekafstand bij Wisselen Nozzles" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Intreksnelheid bij Wisselen Nozzles" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Aantal extruders" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Aantal ingeschakelde extruders" + +#: fdmprinter.def.json +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Aantal Lagen met Lagere Printsnelheid" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octet" + +#: fdmprinter.def.json +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Uit" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Offset met extruder" + +#: fdmprinter.def.json +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Eén voor Eén" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Print de brim alleen aan de buitenkant van het model. Hiermee verkleint u de hoeveelheid brim die u achteraf moet verwijderen, zonder dat dit de hechting aan het printbed te zeer vermindert." + +#: fdmprinter.def.json +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Hoek Uitloopscherm" + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Afstand Uitloopscherm" + +#: fdmprinter.def.json +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Printvolgorde van wanden optimaliseren" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Buitendiameter nozzle" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Buitenwandacceleratie" + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extruder buitenwand" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Buitenste wanddoorvoer" + +#: fdmprinter.def.json +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Uitsparing Buitenwand" + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Schok Buitenwand" + +#: fdmprinter.def.json +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Lijnbreedte Buitenwand" + +#: fdmprinter.def.json +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Snelheid Buitenwand" + +#: fdmprinter.def.json +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Veegafstand buitenwand" + +#: fdmprinter.def.json +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "Van buiten naar binnen" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Hoek Overhangende Wand" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Snelheid Overhangende Wand" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pauzeren na het ongedaan maken van intrekken." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Acceleratie Primepijler" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Brim" +msgstr "Brim primepijler" + +#: fdmprinter.def.json +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Doorvoer Primepijler" + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Schok Primepijler" + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Lijnbreedte Primepijler" + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Minimumvolume primepijler" + +#: fdmprinter.def.json +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Formaat Primepijler" + +#: fdmprinter.def.json +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Snelheid Primepijler" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "X-positie Primepijler" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Y-positie Primepijler" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +msgstr "Primepijlers hebben mogelijk de extra hechting van een brim nodig, ook als het model dit niet nodig heeft. Kan momenteel niet worden gebruikt met het hechtingstype 'Raft'." + +#: fdmprinter.def.json +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Printacceleratie" + +#: fdmprinter.def.json +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Printschok" + +#: fdmprinter.def.json +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Printvolgorde" + +#: fdmprinter.def.json +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Printsnelheid" + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Dunne wanden printen" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Printtemperatuur" + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Printtemperatuur van de eerste laag" + +#: fdmprinter.def.json +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "resolution label" +msgid "Quality" +msgstr "Kwaliteit" + +#: fdmprinter.def.json +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Afgeknotte kubus" + +#: fdmprinter.def.json +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" + +#: fdmprinter.def.json +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Luchtruimte Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Raft basisextruder" + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Ventilatorsnelheid Grondlaag Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Tussenruimte Lijnen Grondvlak Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Lijnbreedte Grondvlak Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Printacceleratie Grondvlak Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Printschok Grondvlak Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Printsnelheid Grondvlak Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Dikte Grondvlak Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Aantal wanden grondvlak raft" + +#: fdmprinter.def.json +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Extra Marge Raft" + +#: fdmprinter.def.json +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Ventilatorsnelheid Raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Raft middelste extruder" + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Ventilatorsnelheid Midden Raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Raft middelste lagen" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Lijnbreedte Midden Raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Printacceleratie Midden Raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Printschok Midden Raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Printsnelheid Midden Raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Tussenruimte Midden Raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Lijndikte Midden Raft" + +#: fdmprinter.def.json +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Printacceleratie Raft" + +#: fdmprinter.def.json +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Printschok Raft" + +#: fdmprinter.def.json +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Printsnelheid Raft" + +#: fdmprinter.def.json +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Raft effenen" + +#: fdmprinter.def.json +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Raft bovenste extruder" + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Ventilatorsnelheid Bovenkant Raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Dikte Bovenlaag Raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Bovenlagen Raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Breedte Bovenste Lijn Raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Printacceleratie Bovenkant Raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Printschok Bovenkant Raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Printsnelheid Bovenkant Raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Bovenruimte Raft" + +#: fdmprinter.def.json +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Willekeurig" + +#: fdmprinter.def.json +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Start willekeurig invullen" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Rechthoekig" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Normale Ventilatorsnelheid" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Normale Ventilatorsnelheid op Hoogte" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Normale Ventilatorsnelheid op Laag" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Drempelwaarde Normale/Maximale Ventilatorsnelheid" + +#: fdmprinter.def.json +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Relatieve Extrusie" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Alle Gaten Verwijderen" + +#: fdmprinter.def.json +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Lege eerste lagen verwijderen" + +#: fdmprinter.def.json +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Rastersnijpunt verwijderen" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Binnenhoeken raft verwijderen" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution description" +msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." +msgstr "Resolutie voor het berekenen van botsingen om te voorkomen dat het model wordt geraakt. Als u deze optie op een lagere waarde instelt, creëert u nauwkeurigere bomen die minder vaak fouten vertonen, maar wordt de slicetijd aanzienlijk verlengd." + +#: fdmprinter.def.json +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Intrekken voor buitenwand" + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Intrekken bij laagwisseling" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Intrekafstand" + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Extra Primehoeveelheid na Intrekken" + +#: fdmprinter.def.json +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Minimale Afstand voor Intrekken" + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Intreksnelheid (Primen)" + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Intreksnelheid (Intrekken)" + +#: fdmprinter.def.json +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Intreksnelheid" + +#: fdmprinter.def.json +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Rechts" + +#: fdmprinter.def.json +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Zet de ventilatorsnelheid op 0-1" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Schaalfactor krimpcompensatie" + +#: fdmprinter.def.json +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "Scène heeft supportrasters" + +#: fdmprinter.def.json +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Voorkeur van naad en hoek" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Instellingen die worden gebruikt voor het printen met meerdere extruders." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Initiële terugtrekking gedeelde nozzle" + +#: fdmprinter.def.json +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Scherpste hoek" + +#: fdmprinter.def.json +msgctxt "shell description" +msgid "Shell" +msgstr "Shell" + +#: fdmprinter.def.json +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Kortste" + +#: fdmprinter.def.json +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Machinevarianten tonen" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Lagen skinrandondersteuning" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Dikte skinrandondersteuning" + +#: fdmprinter.def.json +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Uitbreidingsafstand van skin" + +#: fdmprinter.def.json +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Overlap Skin" + +#: fdmprinter.def.json +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Overlappercentage Skin" + +#: fdmprinter.def.json +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Verwijderingsbreedte skin" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Skirt" + +#: fdmprinter.def.json +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Skirtafstand" + +#: fdmprinter.def.json +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Aantal Skirtlijnen" + +#: fdmprinter.def.json +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Acceleratie Skirt/Brim" + +#: fdmprinter.def.json +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Extruder Skirt/Brim" + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Doorvoer skirt/brim" + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Schok Skirt/Brim" + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Lijnbreedte Skirt/Brim" + +#: fdmprinter.def.json +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Minimale Skirt-/Brimlengte" + +#: fdmprinter.def.json +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Skirt-/Brimsnelheid" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Slicetolerantie" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Kleine kenmerken eerste laagsnelheid" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Maximale lengte klein kenmerk" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Klein kenmerksnelheid" + +#: fdmprinter.def.json +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Maximale grootte kleine gaten" + +#: fdmprinter.def.json +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Printtemperatuur van de kleine laag" + +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Slim verbergen" + +#: fdmprinter.def.json +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Gespiraliseerde contouren effenen" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Speciale Modi" + +#: fdmprinter.def.json +msgctxt "speed description" +msgid "Speed" +msgstr "Snelheid" + +#: fdmprinter.def.json +msgctxt "speed label" +msgid "Speed" +msgstr "Snelheid" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Buitencontour Spiraliseren" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Stand-bytemperatuur" + +#: fdmprinter.def.json +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "Start G-code" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Stappen per millimeter (E)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Stappen per millimeter (X)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Stappen per millimeter (Y)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Stappen per millimeter (Z)" + +#: fdmprinter.def.json +msgctxt "support description" +msgid "Support" +msgstr "Supportstructuur" + +#: fdmprinter.def.json +msgctxt "support label" +msgid "Support" +msgstr "Supportstructuur" + +#: fdmprinter.def.json +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Acceleratie Supportstructuur" + +#: fdmprinter.def.json +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Afstand van Onderkant Supportstructuur" + +#: fdmprinter.def.json +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Aantal wandlijnen van de ondersteuningsbodem" + +#: fdmprinter.def.json +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Aantal supportbrimlijnen" + +#: fdmprinter.def.json +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Breedte supportbrim" + +#: fdmprinter.def.json +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Aantal Lijnen Supportstuk" + +#: fdmprinter.def.json +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Grootte Supportstuk" + +#: fdmprinter.def.json +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Dichtheid Supportstructuur" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Prioriteit Afstand Supportstructuur" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extruder Supportstructuur" + +#: fdmprinter.def.json +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Acceleratie supportvloer" + +#: fdmprinter.def.json +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Dichtheid supportvloer" + +#: fdmprinter.def.json +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extruder supportvloer" + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Doorvoer supportvloer" + +#: fdmprinter.def.json +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Supportvloer horizontale uitbreiding" + +#: fdmprinter.def.json +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Schok supportvloer" + +#: fdmprinter.def.json +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Lijnrichting supportvloer" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Lijnafstand supportvloer" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Lijnbreedte supportvloer" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Patroon supportvloer" + +#: fdmprinter.def.json +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Snelheid supportvloer" + +#: fdmprinter.def.json +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Dikte supportvloer" + +#: fdmprinter.def.json +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Doorvoer support" + +#: fdmprinter.def.json +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Horizontale Uitzetting Supportstructuur" + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Acceleratie Supportvulling" + +#: fdmprinter.def.json +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extruder Supportvulling" + +#: fdmprinter.def.json +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Schok Supportvulling" + +#: fdmprinter.def.json +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Dikte vullaag supportvulling" + +#: fdmprinter.def.json +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Lijnrichting Vulling Supportstructuur" + +#: fdmprinter.def.json +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Vulsnelheid Supportstructuur" + +#: fdmprinter.def.json +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Acceleratie Verbindingsstructuur" + +#: fdmprinter.def.json +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Dichtheid Verbindingsstructuur" + +#: fdmprinter.def.json +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extruder Verbindingsstructuur" + +#: fdmprinter.def.json +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Doorvoer supportinterface" + +#: fdmprinter.def.json +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Supportstructuur horizontale uitbreiding" + +#: fdmprinter.def.json +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Schok Verbindingsstructuur" + +#: fdmprinter.def.json +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Lijnrichting interface supportstructuur" + +#: fdmprinter.def.json +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Lijnbreedte Verbindingsstructuur" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Patroon Verbindingsstructuur" + +#: fdmprinter.def.json +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Resolutie Verbindingsstructuur" + +#: fdmprinter.def.json +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Vulsnelheid Verbindingsstructuur" + +#: fdmprinter.def.json +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Dikte Verbindingsstructuur" + +#: fdmprinter.def.json +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Ondersteuning Interface Wandlijn" + +#: fdmprinter.def.json +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Schok Supportstructuur" + +#: fdmprinter.def.json +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Samenvoegafstand Supportstructuur" + +#: fdmprinter.def.json +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Lijnafstand Supportstructuur" + +#: fdmprinter.def.json +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Lijnbreedte Supportstructuur" + +#: fdmprinter.def.json +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Supportstructuur raster" + +#: fdmprinter.def.json +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Overhanghoek Supportstructuur" + +#: fdmprinter.def.json +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Patroon Supportstructuur" + +#: fdmprinter.def.json +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Plaatsing Supportstructuur" + +#: fdmprinter.def.json +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Acceleratie supportdak" + +#: fdmprinter.def.json +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Dichtheid supportdak" + +#: fdmprinter.def.json +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extruder supportdak" + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Doorvoer supportdak" + +#: fdmprinter.def.json +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Supportdak horizontale uitbreiding" + +#: fdmprinter.def.json +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Schok supportdak" + +#: fdmprinter.def.json +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Lijnrichting supportdak" + +#: fdmprinter.def.json +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Lijnafstand supportdak" + +#: fdmprinter.def.json +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Lijnbreedte supportdak" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Patroon supportdak" + +#: fdmprinter.def.json +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Snelheid supportdak" + +#: fdmprinter.def.json +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Dikte Supportdak" + +#: fdmprinter.def.json +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Aantal wandlijnen ondersteuningsdak" + +#: fdmprinter.def.json +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Snelheid Supportstructuur" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Hoogte Traptreden Supportstructuur" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Maximale breedte traptreden supportstructuur" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Minimale hellingshoek traptreden supportstructuur" + +#: fdmprinter.def.json +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Supportstructuur" + +#: fdmprinter.def.json +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Afstand van Bovenkant Supportstructuur" + +#: fdmprinter.def.json +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Aantal wandlijnen supportstructuur" + +#: fdmprinter.def.json +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "X-/Y-afstand Supportstructuur" + +#: fdmprinter.def.json +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Z-afstand Supportstructuur" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Ondersteunde Ventilatorsnelheid Skin" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Oppervlak" + +#: fdmprinter.def.json +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Oppervlakte-energie" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Oppervlaktemodus" + +#: fdmprinter.def.json +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Hechtingsgevoeligheid van het oppervlak." + +#: fdmprinter.def.json +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Oppervlakte-energie." + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "De acceleratie voor de eerste laag." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "De acceleratie tijdens het printen van alle binnenwanden." + +#: fdmprinter.def.json +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "De acceleratie tijdens het printen van de vulling." + +#: fdmprinter.def.json +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "De acceleratie tijdens het strijken." + +#: fdmprinter.def.json +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "De acceleratie tijdens het printen." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "De acceleratie tijdens het printen van de primepijler." + +#: fdmprinter.def.json +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "De acceleratie tijdens het printen van de raft." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "De acceleratie tijdens het printen van de supportstructuur." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "De acceleratie tijdens het printen van de wanden." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "De acceleratie tijdens het printen van de boven-/onderlagen." + +#: fdmprinter.def.json +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "De acceleratie tijdens het uitvoeren van bewegingen." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_tree_angle description" +msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "Hiermee stelt u de hoek van de takken in. Met een kleinere hoek worden de takken verticaler en stabieler. Met een grotere hoek hebben ze een groter bereik." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "De standaardacceleratie van de printkopbeweging." + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "De diepte (Y-richting) van het printbare gebied." + +#: fdmprinter.def.json +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "De diameter van een speciale pijler." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "De afstand tussen de strijklijnen." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "De ventilatorsnelheid tijdens het printen van de raft." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "De hoogte (Z-richting) van het printbare gebied." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Het hoogteverschil dat wordt aangehouden tijdens een Z-sprong." + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Het hoogteverschil dat wordt aangehouden tijdens een Z-sprong." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" +"De horizontale afstand tussen de skirt en de eerste laag van de print.\n" +"Dit is de minimumafstand. Als u meerdere skirtlijnen print, worden deze vanaf deze afstand naar buiten geprint." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "De schok tijdens het printen van de raft." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "De maximale onmiddellijke snelheidsverandering van de printkop." + +#: fdmprinter.def.json +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het strijken." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "De maximale snelheid voor de doorvoer van het filament." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "De minimale bewegingssnelheid van de printkop." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "De naam van uw 3D-printermodel." + +#: fdmprinter.def.json +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\"." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "Het aantal opvullagen dat skinranden ondersteunt." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "Het patroon van de bovenste lagen." + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Het patroon van de boven-/onderlagen." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Het patroon dat wordt gebruikt voor het strijken van oppervlakken." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "De snelheid waarmee brugskinregio's worden geprint." + +#: fdmprinter.def.json +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "De snelheid waarmee de vulling wordt geprint." + +#: fdmprinter.def.json +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "De snelheid waarmee wordt geprint." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "De snelheid waarmee brugwanden worden geprint." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "De snelheid waarmee de printventilatoren draaien." + +#: fdmprinter.def.json +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "De snelheid waarmee de raft wordt geprint." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "De snelheid waarmee wanden worden geprint." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "De snelheid waarmee bovenste skinlagen worden geprint." + +#: fdmprinter.def.json +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "De snelheid waarmee boven-/onderlagen worden geprint." + +#: fdmprinter.def.json +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "De snelheid waarmee bewegingen plaatsvinden." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +msgstr "De temperatuur waarmee de eerste laag wordt geprint. Stel deze optie in op 0 om speciale bewerkingen voor de eerste laag uit te schakelen." + +#: fdmprinter.def.json +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "De temperatuur waarmee wordt geprint." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "De G-code-versie die moet worden gegenereerd." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "De breedte (X-richting) van het printbare gebied." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "De breedte van de in elkaar grijpende structuurbalken." + +#: fdmprinter.def.json +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "De breedte van de primepijler." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Bovenlagen" + +#: fdmprinter.def.json +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Uitbreidingsafstand van bovenste skinlaag" + +#: fdmprinter.def.json +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Verwijderingsbreedte bovenste skinlaag" + +#: fdmprinter.def.json +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Acceleratie bovenskin" + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Extruder bovenskin" + +#: fdmprinter.def.json +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Bovenste oppervlak skindoorvoer" + +#: fdmprinter.def.json +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Schok bovenskin" + +#: fdmprinter.def.json +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Bovenste skinlagen" + +#: fdmprinter.def.json +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Lijnrichting bovenskin" + +#: fdmprinter.def.json +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Lijnbreedte bovenskin" + +#: fdmprinter.def.json +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Patroon bovenskin" + +#: fdmprinter.def.json +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Snelheid bovenskin" + +#: fdmprinter.def.json +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Dikte Bovenkant" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Boven-/onderkant" + +#: fdmprinter.def.json +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Boven-/onderkant" + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Acceleratie Boven-/Onderkant" + +#: fdmprinter.def.json +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extruder Boven-/Onderkant" + +#: fdmprinter.def.json +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Doorvoer boven/onder" + +#: fdmprinter.def.json +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Schok Boven-/Onderkant" + +#: fdmprinter.def.json +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Lijnrichtingen boven-/onderkant" + +#: fdmprinter.def.json +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Lijnbreedte Boven-/onderkant" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Patroon Boven-/Onderkant" + +#: fdmprinter.def.json +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Snelheid Boven-/Onderkant" + +#: fdmprinter.def.json +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Dikte Boven-/Onderkant" + +#: fdmprinter.def.json +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Platform Aanraken" + +#: fdmprinter.def.json +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Pijlerdiameter" + +#: fdmprinter.def.json +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Hoek van Pijlerdak" + #: fdmprinter.def.json 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 "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "Een 2D-silouette van de printkop (inclusief ventilatorkappen)." - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Buitenwanden vóór Binnenwanden" - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Wanneer deze optie is ingeschakeld, worden wanden van buiten naar binnen geprint. Hiermee kan de dimensionale nauwkeurigheid in X en Y worden verbeterd wanneer u kunststof met hoge viscositeit gebruikt, zoals ABS. Het kan echter leiden tot een verminderde kwaliteit van het oppervlak van de buitenwand, met name bij overhangen." - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Overlapping van Wanden Compenseren" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Compenseer de doorvoer van wanddelen die worden geprint op een plek waar zich al een wanddeel bevindt." - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Overlapping van Buitenwanden Compenseren" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Hiermee wordt de doorvoer gecompenseerd voor delen van buitenwanden die worden geprint op een plek waar zich al een wanddeel bevindt." - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Overlapping van Binnenwanden Compenseren" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Hiermee wordt de doorvoer gecompenseerd voor delen van binnenwanden die worden geprint op een plek waar zich al een wanddeel bevindt." - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Minimale Wand-doorvoer" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "Minimaal toegestane doorvoerpercentage voor een wandlijn. Compensatie van de overlapping van wanden zorgt voor een kleinere doorvoer tijdens het printen van een wand als deze dicht bij een bestaande wand ligt. Wanden waarbij de doorvoerwaarde lager is dan deze waarde, worden vervangen door een beweging. Wanneer u deze instelling gebruikt, moet u compensatie van overlapping van wanden inschakelen en de buitenwand printen voordat u de binnenwanden print." - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Bij Voorkeur Intrekken" - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Als deze optie ingeschakeld is, volgt er een intrekbeweging in plaats van een combing-beweging ter vervanging van wanden waarbij de doorvoer lager is dan de minimale doorvoerwaarde." - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Gaten tussen wanden vullen" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Hiermee worden de gaten tussen wanden gevuld op plekken waar geen wand past." - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Nergens" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Overal" - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "Kleine gaten wegfilteren" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "Kleine gaten wegfilteren om blobs aan de buitenzijde van het model te verminderen." - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Filamentdoorvoer Afstemmen" - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Print lijnen die dunner zijn dan normaal, sneller zodat de hoeveelheid doorgevoerd materiaal per seconde hetzelfde blijft. Voor dunne delen in het model dienen de lijnen mogelijk met een dunnere lijnbreedte te worden geprint dan is opgegeven in de instellingen. Met deze instelling worden de snelheidswisselingen voor dergelijke lijnen beheerd." - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Maximale Snelheid voor het Afstemmen van Doorvoer" - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "Maximale printsnelheid tijdens het aanpassen van de printsnelheid om de doorvoer af te stemmen." - -#~ 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 \\n." - -#~ 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 \\n." - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Maximale Doorvoersnelheid" - -#~ 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 (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ 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 de (interne) supportdaken ondersteunt. Daarom geldt het invulpercentage slechts voor één laag onder wat er nodig is om het model te ondersteunen." - -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "Het mogelijke verschil van een bliksemvullaag met de laag onmiddellijk daarboven m.b.t. het snoeien van de buitenste uiteinden van bomen. Gemeten in de hoek bepaald door de laagdikte." - -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ msgstr "Het mogelijke verschil van een bliksemvullaag met de laag onmiddellijk daarboven m.b.t. het effenen van bomen. Gemeten in de hoek bepaald door de laagdikte." - -#~ 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." -#~ msgstr "Het patroon van het vulmateriaal van de print. De lijn- en zigzagvulling veranderen per vullaag van richting, waardoor wordt bespaard op materiaalkosten. De raster-, driehoeks-, tri-hexagonale, kubische, achtvlaks-, afgeknotte kubus-, kruis- en concentrische patronen worden elke laag volledig geprint. Gyroïde, kubische, afgeknotte kubus- en achtvlaksvullingen veranderen elke laag voor een meer gelijke krachtverdeling in elke richting." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside 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_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een doorvoer van één millimeter." - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "Wanneer dit niet nul is, vindt bij een combing-beweging die langer is dan deze afstand, intrekking plaats." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Pas de extruderoffset toe op het coördinatensysteem." - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Shell" - -#~ 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, while an angle of 90° is vertical." -#~ msgstr "Van boven- en/of onderoppervlakken van het object met een hoek die groter is dan deze instelling, wordt de boven-/onderksin niet uitgebreid. Hiermee wordt de uitbreiding voorkomen van smalle skingebieden die worden gemaakt wanneer het modeloppervlak een nagenoeg verticale helling heeft. Een hoek van 0° is horizontaal en een hoek van 90° is verticaal." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed 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 "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 lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order 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 laagste rang. Met een vulraster dat voorrang heeft, wordt de vulling van andere vulrasters en normale rasters aangepast." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "De temperatuur van het verwarmde platform. Als deze waarde is ingesteld op 0, wordt de printbedtemperatuur niet aangepast." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "De temperatuur van het verwarmde platform voor de eerste laag." - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Krimpverhouding" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "Krimpverhouding in procenten." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Hiermee wordt de prioriteit van dit raster bepaald bij overlappende volumes. Gebieden met meerdere rasters worden overgenomen door het raster van lagere rang. Met een vulraster dat voorrang heeft, wordt de vulling van andere vulrasters en normale rasters aangepast." - -#~ 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 "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Volgorde Vulraster" - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Hiermee wordt bepaald welk vulraster wordt gebruikt binnen de vulling van een ander vulraster. Met een vulraster dat voorrang heeft, wordt de vulling van andere vulrasters en normale rasters aangepast." - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Boomsupportstructuur" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Genereer een boomachtige supportstructuur met takken die uw print ondersteunen. Hierdoor worden materiaalgebruik en printtijd mogelijk gereduceerd, maar wordt de slicetijd aanzienlijk verlengd." - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "Geeft aan hoe lagen met een diagonaal oppervlak worden geslicet. De gebieden van een laag kunnen worden gegenereerd op basis van de locatie waar het midden van de laag het oppervlak snijdt (Midden). Daarnaast kan elke laag gebieden hebben die over de gehele hoogte van de laag binnen het volume vallen (Exclusief), of kan een laag gebieden hebben die overal binnen de laag vallen (Inclusief). Met Exclusief worden de meeste details behouden, met Inclusief verkrijgt u de beste pasvorm en met Midden is de verwerkingstijd het kortst." - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Spaghettivulling" - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Print af en toe een deel vulling zodat het filament willekeurig opkrult binnen het object. Hiermee wordt de printtijd verkort. Het gedrag is echter nogal onvoorspelbaar." - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Spaghettivulling traptreden" - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Hiermee bepaalt u of u spaghettivulling print in de traptreden, of dat al het vulfilament aan het eind van de print wordt doorgevoerd." - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Maximale hoek spaghettivulling" - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "De maximale hoek ten opzichte van de Z-as van de binnenzijde van de print voor gedeelten die naderhand met spaghettivulling moeten worden gevuld. Wanneer deze waarde wordt verlaagd, worden er op elke laag meer hoekdelen gevuld." - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Maximale hoogte spaghettivulling" - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "De maximale hoogte van binnenruimte die kan worden gecombineerd en van bovenaf kan worden gevuld." - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Spaghetti-uitsparing" - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "De offset van de wanden van waaruit de spaghettivulling wordt geprint." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Spaghettidoorvoer" - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Past de dichtheid van de spaghettivulling aan. Houd er rekening mee dat de vuldichtheid alleen invloed heeft op de ruimte tussen de lijnen van het vulpatroon, niet op de hoeveelheid doorvoer voor spaghettivulling." - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Extra volume spaghettivulling" - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Een correctievoorwaarde voor het aanpassen van het totale volume dat elke keer dat spaghettivulling wordt geprint, wordt doorgevoerd." - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "GUID van het materiaal. Deze optie wordt automatisch ingesteld. " - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Parkeerafstand filament" - -#~ msgctxt "machine_filament_park_distance description" -#~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used." -#~ msgstr "De afstand vanaf de punt van de nozzle waar het filament moet worden geparkeerd wanneer een extruder niet meer wordt gebruikt." - -#~ msgctxt "material_flush_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Interne waarde materiaalstation" - -#~ msgctxt "material_flush_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Interne waarde materiaalstation" - -#~ 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 "Material Station internal value" -#~ msgstr "Interne waarde materiaalstation" - -#~ 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 "Material Station internal value" -#~ msgstr "Interne waarde materiaalstation" - -#~ msgctxt "material_maximum_park_duration description" -#~ msgid "Material Station internal value" -#~ msgstr "Interne waarde materiaalstation" - -#~ msgctxt "material_no_load_move_factor description" -#~ msgid "Material Station internal value" -#~ msgstr "Interne waarde materiaalstation" - -#~ 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 "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 "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "category_fixes" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "category_blackmagic" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "experimenteel!" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "Machinekoppolygoon" - -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "Een 2D-silouette van de printkop (exclusief ventilatorkappen)." - -#~ 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 only possible if 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 "Met deze optie bepaalt u of u alle modellen tegelijk, laag voor laag print, of dat u een model volledig print voordat u verdergaat naar het volgende model. De modus voor het één voor één printen van modellen is alleen beschikbaar als alle modellen dusdanig van elkaar zijn gescheiden dat de printkop tussen alle modellen kan bewegen en alle modellen lager zijn dan de afstand tussen de nozzle en de X- en Y-as." - -#~ msgctxt "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "Wanddikte boomsupportstructuur" - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "Hiermee stelt u de wanddikte in voor de takken van de boomsupportstructuur. Het printen van dikkere wanden duurt langer, maar deze vallen minder snel om." - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "Aantal wandlijnen boomsupportstructuur" - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "Hiermee stelt u het aantal wanden in voor de takken van de boomsupportstructuur. Het printen van dikkere wanden duurt langer, maar deze vallen minder snel om." - -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. 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 instelling kan het gedrag van het intrekken tijdens de laagwissel beïnvloeden. Gebruik de instelling voor intrekken bij afvegen om het intrekken te controleren bij lagen waarop afveegscript van toepassing is." - -#~ msgctxt "max_extrusion_before_wipe description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "Maximale materiaalhoeveelheid die kan worden doorgevoerd voordat de nozzle opnieuw wordt afgeveegd." - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "Intreksnelheid (primen)" - -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "Z-sprong wanneer ingetrokken voor afvegen" - -#~ msgctxt "wipe_hop_enable 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 "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Minimumgebied voor verbindingspolygonen. Polygonen met een gebied dat kleiner is dan deze waarde, worden niet gegenereerd." - -#~ 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 not be generated." -#~ msgstr "Minimumgebied voor de supportdaken. 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 not be generated." -#~ msgstr "Minimumgebied voor de supportvloeren. Polygonen met een gebied dat kleiner is dan deze waarde, worden niet gegenereerd." - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "Skinrotatie Wisselen" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "Wissel de richting af waarin de boven-/onderlagen worden geprint. Normaal worden deze alleen diagonaal geprint. Met deze instelling worden de alleen-X- en alleen-Y-richtingen toegevoegd." - -#~ 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 compensate." -#~ msgstr "De maximale afstand in mm die moet worden gecompenseerd." - -#~ msgctxt "flow_rate_extrusion_offset_factor label" -#~ msgid "Flow rate compensation factor" -#~ msgstr "Doorvoercompensatiefactor" - -#~ msgctxt "flow_rate_extrusion_offset_factor description" -#~ msgid "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "De vermenigvuldigingsfactor voor de vertaling doorvoer -> afstand." - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "Drempelwaarde adaptieve lagen" - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ msgstr "De drempel of er al dan niet een kleinere laag moet worden gebruikt. Deze waarde wordt vergeleken met de waarde van de steilste helling in een laag." - -#~ 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." -#~ 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." - -#~ 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 adhestion and accuracy." -#~ msgstr "Kleine kenmerken 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 "First Layer Speed" -#~ msgstr "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 adhestion 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 "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "Ga nog een extra keer over de bovenlaag, echter zonder materiaal door te voeren. Hierdoor wordt de kunststof aan de bovenkant verder gesmolten, waardoor een gladder oppervlak wordt verkregen." - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "Lagen beginnen met hetzelfde deel" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "Begin het printen van elke laag van het object bij hetzelfde punt, zodat we geen nieuwe laag beginnen met het printen van het deel waarmee de voorgaande laag is geëindigd. Hiermee wordt de kwaliteit van overhangende gedeelten en kleine delen verbeterd, maar duurt het printen langer." - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ msgstr "Richting van het vulpatroon voor supportstructuren. Het vulpatroon voor de supportstructuur wordt in het horizontale vlak gedraaid." - -#~ 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." -#~ 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." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "Versie G-code" - -#~ 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." -#~ 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." - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "Kleine Z-gaten Negeren" - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "Wanneer het model kleine verticale gaten heeft, kan er circa 5% berekeningstijd extra worden besteed aan het genereren van de boven- en onderskin in deze kleine ruimten. Indien u dit wenst, schakelt u de instelling uit." - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "De temperatuur van het werkvolume. Als deze waarde is ingesteld op 0, wordt de temperatuur van het werkvolume niet aangepast." - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." -#~ msgstr "Sla intrekking over tijdens bewegingen in een rechte lijn van support naar support. Deze instelling verkort de printtijd, maar kan leiden tot overmatige draadvorming in de supportstructuur." - -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "Maximale Z-snelheid" - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "De maximale snelheid waarmee het platform wordt bewogen. Wanneer u deze optie instelt op 0, worden voor het printen de standaardwaarden voor de maximale Z-snelheid gebruikt." - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate 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_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "Minimale Diameter" - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "De minimale diameter in de X- en Y-richting van een kleiner gebied dat moet worden ondersteund door een speciale steunpijler." - -#~ msgctxt "prime_tower_circular label" -#~ msgid "Circular Prime Tower" -#~ msgstr "Ronde primepijler" - -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "Geef de primepijler een ronde vorm." - -#~ msgctxt "prime_tower_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 "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 "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "Experimentele functie: maak draagvlakken aan de onderkant kleiner dan bij de overhang." - -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "Het aantal extruders dat ingeschakeld is" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "Buitendiameter nozzle" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "Nozzlelengte" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "Nozzlehoek" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "Lengte verwarmingszone" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "Verwarmingssnelheid" - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "Afkoelsnelheid" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "Versie G-code" - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "Verboden gebieden" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "Machinekoppolygoon" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "Machinekop- en Ventilatorpolygoon" - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "Rijbrughoogte" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "Offset met Extruder" - -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "Adaptieve lagen gebruiken" - -#~ msgctxt "adaptive_layer_height_variation label" -#~ msgid "Adaptive layers maximum variation" -#~ msgstr "Maximale variatie adaptieve lagen" - -#~ msgctxt "adaptive_layer_height_variation_step label" -#~ msgid "Adaptive layers variation step size" -#~ msgstr "Stapgrootte variatie adaptieve lagen" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "Drempel adaptieve lagen" - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "De mate van overlap tussen de skin en de wanden als percentage van de lijnbreedte van de skin. Met een lichte overlap kunnen de wanden goed hechten aan de skin. Dit is een percentage van de gemiddelde lijnbreedte van de skinlijnen en de binnenste wand." - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "De mate van overlap tussen de skin en de wanden. Met een lichte overlap kunnen de wanden goed hechten aan de skin." - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." -#~ msgstr "De intrekafstand: indien u deze optie instelt op 0, wordt er niet ingetrokken. Deze waarde dient doorgaans gelijk te zijn aan de lengte van de verwarmingszone." - -#~ 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 and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." -#~ 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 uitgeschakeld is, 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 en ook om alleen combing te gebruiken binnen de vulling. Houd er rekening mee dat de optie 'Binnen Vulling' precies dezelfde uitwerking heeft als de optie 'Niet in skin' in eerdere versies van Cura." - -#~ 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 happend midway over infill this feature can reduce the top surface quality." -#~ msgstr "Skinpaden aan boven-/onderkant verbinden 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 "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. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Het patroon van het vulmateriaal van de print. De lijn- en zigzagvulling veranderen per vullaag van richting, waardoor wordt bespaard op materiaalkosten. De raster-, driehoeks-, tri-hexagonale, kubische, achtvlaks-, afgeknotte kubus-, kruis- en concentrische patronen worden elke laag volledig geprint. Kubische, afgeknotte kubus- en achtvlaksvullingen veranderen elke laag voor een meer gelijke krachtsverdeling in elke richting." - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concentrisch 3D" - -#~ 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 by combing within the infill only." -#~ 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 door alleen combing te gebruiken over de vulling." - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concentrisch 3D" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concentrisch 3D" - -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concentrisch 3D" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concentrisch 3D" - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "Tussenruimte Lijnen Raft" - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "Dikte primepijler" - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "De dikte van de holle primepijler. Een dikte groter dan de helft van het minimale volume van de primepijler leidt tot een primepijler met een hoge dichtheid." - -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "Nozzle vegen na wisselen" - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "Veeg na het wisselen van de extruder het doorgevoerde materiaal van de nozzle af aan het eerste dat wordt geprint. Hiermee wordt met een langzame beweging het doorgevoerde materiaal veilig afgeveegd op een plek waar dit het minste kwaad kan voor de oppervlaktekwaliteit van de print." - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "Zuiveringsvolume primepijler" - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "De hoeveelheid filament die wordt gezuiverd tijdens afvegen aan de primepijler. Zuiveren wordt gebruikt om filament te compenseren dat tijdens inactiviteit van de nozzle wordt verloren via uitloop." - -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "Maximale overhang brugwand" - -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ msgstr "De maximaal toegestane breedte van de vrije ruimte onder een wandlijn voordat de wand wordt geprint met de bruginstellingen. Dit wordt uitgedrukt in een percentage van de lijnbreedte van de wand. Als de vrije ruimte breder is dan deze waarde, wordt de wandlijn geprint met de bruginstellingen. Anders wordt de wandlijn geprint met de normale instellingen. Hoe lager de waarde, hoe meer kans dat de overhangende wandlijnen met bruginstellingen worden geprint." - -#~ 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." -#~ 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." - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "Geen Skin" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "Afwisselend luchtbellen in kruis 3D" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "Laat alleen luchtbellen achter in de helft van de kruispunten in het Kruis 3D-patroon en wisselt de plaats van de luchtbellen op punten waar het patroon zichzelf raakt." - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "Objecten uithollen" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "Alle vulling verwijderen en de binnenkant van het object geschikt maken voor support." - -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "De maximaal toegestane hoogte ten opzichte van de grondlaaghoogte in mm." - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ msgstr "Object centreren" - -#~ msgctxt "mesh_position_x label" -#~ msgid "Mesh position x" -#~ msgstr "Rasterpositie x" - -#~ msgctxt "mesh_position_y label" -#~ msgid "Mesh position y" -#~ msgstr "Rasterpositie y" - -#~ msgctxt "mesh_position_z label" -#~ msgid "Mesh position z" -#~ msgstr "Rasterpositie z" - -#~ msgctxt "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "Begin G-code" - -#~ msgctxt "machine_start_gcode description" +#: fdmprinter.def.json +msgctxt "travel label" +msgid "Travel" +msgstr "Beweging" + +#: fdmprinter.def.json +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Bewegingsacceleratie" + +#: fdmprinter.def.json +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Mijdafstand Tijdens Bewegingen" + +#: fdmprinter.def.json +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Bewegingsschok" + +#: fdmprinter.def.json +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Bewegingssnelheid" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Boom" + +#: fdmprinter.def.json +msgctxt "support_tree_angle label" +msgid "Tree Support Branch Angle" +msgstr "Hoek van takken van boomsupportstructuur" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter label" +msgid "Tree Support Branch Diameter" +msgstr "Takdiameter van boomsupportstructuur" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter_angle label" +msgid "Tree Support Branch Diameter Angle" +msgstr "Hoek van takdiameter van boomsupportstructuur" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance label" +msgid "Tree Support Branch Distance" +msgstr "Takafstand van boomsupportstructuur" + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution label" +msgid "Tree Support Collision Resolution" +msgstr "Resolutie bij botsingen van de boomsupportstructuur" + +#: fdmprinter.def.json +msgctxt "support_tree_max_diameter label" +msgid "Tree Support Trunk Diameter" +msgstr "Takdiameter van boomsupportstructuur" + +#: fdmprinter.def.json +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Tri-hexagonaal" + +#: fdmprinter.def.json +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Driehoeken" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Driehoeken" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Driehoeken" + +#: fdmprinter.def.json +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Driehoeken" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Driehoeken" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Overlappende Volumes Samenvoegen" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Adaptieve lagen gebruiken" + +#: fdmprinter.def.json +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Pijlers Gebruiken" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Door de gebruiker opgegeven" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Verticale schaalfactor krimpcompensatie" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Wachten op verwarmen van platform" + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Wachten op verwarmen van nozzle" + +#: fdmprinter.def.json +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Wandacceleratie" + +#: fdmprinter.def.json +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Aantal wanden voor distributie" + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Wandextruder" + +#: fdmprinter.def.json +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Wanddoorvoer" + +#: fdmprinter.def.json +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Wandschok" + +#: fdmprinter.def.json +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Aantal Wandlijnen" + +#: fdmprinter.def.json +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Lijnbreedte Wand" + +#: fdmprinter.def.json +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Wandvolgorde" + +#: fdmprinter.def.json +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Wandsnelheid" + +#: fdmprinter.def.json +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Wanddikte" + +#: fdmprinter.def.json +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Lengte wandovergang" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Filterafstand wandovergang" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Filtermarge wandovergang" + +#: fdmprinter.def.json +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Drempelhoek wandovergang" + +#: fdmprinter.def.json +msgctxt "shell label" +msgid "Walls" +msgstr "Wanden" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Maak treden van de opgegeven hoogte tijdens het controleren waar zich boven en onder de supportstructuur delen van het model bevinden. Lagere waarden slicen lager, terwijl door hogere waarden mogelijk normale supportstructuur wordt geprint op plekken waar een verbindingsstructuur had moeten zijn." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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'." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.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 "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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Breedte van een enkele vullijn." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Breedte van een enkele lijn van de primepijler." + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Breedte van een enkele skirt- of brimlijn." + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Breedte van een enkele lijn van de supportvloer." + +#: fdmprinter.def.json +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Breedte van een enkele lijn van het supportdak." + +#: fdmprinter.def.json +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Breedte van een enkele lijn van de supportstructuur." + +#: fdmprinter.def.json +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Breedte van een enkele lijn aan de boven-/onderkant." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Breedte van een enkele wandlijn." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "X-positie afveegborstel" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Sprongsnelheid voor afvegen" + +#: fdmprinter.def.json +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Inactieve nozzle vegen op primepijler" + +#: fdmprinter.def.json +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Verplaatsingsafstand voor afvegen" + +#: fdmprinter.def.json +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Nozzle afvegen tussen lagen" + +#: fdmprinter.def.json +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Afvegen pauzeren" + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Aantal afveegbewegingen" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Intrekafstand voor afvegen" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Intrekken voor afvegen inschakelen" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Extra primehoeveelheid na intrekken voor afvegen" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Primesnelheid Intrekken voor afvegen" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Intreksnelheid voor afvegen (intrekken)" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Intreksnelheid voor afvegen" + +#: fdmprinter.def.json +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Z-sprong afvegen" + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Hoogte Z-sprong voor afvegen" + +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Binnen Vulling" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "X-eindstop in positieve richting" + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "X-positie waar afveegscript start." + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y krijgt voorrang boven Z" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Y-eindstop in positieve richting" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Z-eindstop in positieve richting" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Z-sprong na Wisselen Extruder" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Hoogte Z-sprong na wisselen extruder" + +#: fdmprinter.def.json +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Hoogte Z-sprong" + +#: fdmprinter.def.json +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Z-sprong Alleen over Geprinte Delen" + +#: fdmprinter.def.json +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Snelheid Z-sprong" + +#: fdmprinter.def.json +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Z-sprong wanneer ingetrokken" + +#: fdmprinter.def.json +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Uitlijning Z-naad" + +#: fdmprinter.def.json +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Z-naadpositie" + +#: fdmprinter.def.json +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Relatieve Z-naad" + +#: fdmprinter.def.json +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z-naad X" + +#: fdmprinter.def.json +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z-naad Y" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z krijgt voorrang boven X/Y" + +#: fdmprinter.def.json +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +#: fdmprinter.def.json +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +#: fdmprinter.def.json +msgctxt "travel description" +msgid "travel" +msgstr "beweging" + +#~ msgctxt "wireframe_strategy option compensate" +#~ msgid "Compensate" +#~ msgstr "Compenseren" + +#~ msgctxt "wireframe_top_jump description" +#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." +#~ msgstr "Maakt een kleine verdikking boven aan een opwaartse lijn, zodat de volgende horizontale laag hier beter op kan aansluiten. Alleen van toepassing op Draadprinten." + +#~ msgctxt "wireframe_bottom_delay description" +#~ msgid "Delay time after a downward move. Only applies to Wire Printing." +#~ msgstr "Vertraging na een neerwaartse beweging. Alleen van toepassing op Draadprinten." + +#~ msgctxt "wireframe_top_delay description" +#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." +#~ msgstr "Vertraging na een opwaartse beweging, zodat de opwaartse lijn kan uitharden. Alleen van toepassing op Draadprinten." + +#~ msgctxt "wireframe_flat_delay description" +#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." +#~ msgstr "Vertragingstijd tussen twee horizontale segmenten. Een dergelijke vertraging zorgt voor een betere hechting aan voorgaande lagen op de verbindingspunten. Bij een te lange vertraging kan het object echter gaan doorzakken. Alleen van toepassing op Draadprinten." + +#~ msgctxt "wireframe_nozzle_clearance description" +#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." +#~ msgstr "De afstand tussen de nozzle en horizontaal neergaande lijnen. Een grotere tussenruimte zorgt voor diagonaal neerwaarts gaande lijnen met een minder steile hoek. Hierdoor ontstaan minder opwaartse verbindingen met de volgende laag. Alleen van toepassing op Draadprinten." + +#~ msgctxt "wireframe_up_half_speed description" #~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." -#~ msgstr "G-code-opdrachten die aan het begin worden uitgevoerd, gescheiden door \\n." - -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "Eind g-code" - -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "G-code-opdrachten die aan het eind worden uitgevoerd, gescheiden door \\n." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "Type g-code" - -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "Het type g-code dat moet worden gegenereerd" - -#~ 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 GCode." -#~ 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 deze 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 "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. 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 Gcode 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 vertonen 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 "infill_offset_x description" -#~ msgid "The infill pattern is offset this distance along the X axis." -#~ msgstr "Het vulpatroon wordt over deze afstand verplaatst over de X-as." - -#~ msgctxt "infill_offset_y description" -#~ msgid "The infill pattern is offset this distance along the Y axis." -#~ msgstr "Het vulpatroon wordt over deze afstand verplaatst over de Y-as." - -#~ msgctxt "infill_overlap 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 "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "De mate van overlap tussen de skin en de wanden als percentage van de lijnbreedte. Met een lichte overlap kunnen de wanden goed hechten aan de skin. Dit is een percentage van de gemiddelde lijnbreedte van de skinlijnen en de binnenste wand." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "De temperatuur van het verwarmde platform. Als deze waarde ingesteld is op 0, wordt het bed voor deze print niet verwarmd." - -#~ msgctxt "wall_x_extruder_nr label" -#~ msgid "Inner Walls Extruder" -#~ msgstr "Extruder binnenwand" - -#~ 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, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Het patroon van het vulmateriaal van de print. De lijn- en zigzagvulling veranderen per vullaag van richting, waardoor wordt bespaard op materiaalkosten. De raster-, driehoeks-, kubische, achtvlaks-, afgeknotte kubus- en concentrische patronen worden elke laag volledig geprint. Kubische, afgeknotte kubus- en achtvlaksvullingen veranderen elke laag voor een meer gelijke krachtsverdeling in elke richting." - -#~ msgctxt "zig_zaggify_infill description" -#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on 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 "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." +#~ "Distance of an upward move which is extruded with half speed.\n" +#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." #~ msgstr "" -#~ "De horizontale afstand tussen de skirt en de eerste laag van de print.\n" -#~ "Dit is de minimumafstand; als u meerdere skirtlijnen print, worden deze vanaf deze afstand naar buiten geprint." +#~ "De afstand van een opwaartse beweging waarbij de doorvoersnelheid wordt gehalveerd.\n" +#~ "Hierdoor ontstaat een betere hechting aan voorgaande lagen, zonder dat het materiaal in die lagen te zeer wordt verwarmd. Alleen van toepassing op Draadprinten." -#~ msgctxt "z_offset_layer_0 label" -#~ msgid "Initial Layer Z Offset" -#~ msgstr "Z-offset Eerste Laag" +#~ msgctxt "wireframe_fall_down description" +#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "De afstand die het materiaal valt na een opwaartse doorvoer. Deze afstand wordt gecompenseerd. Alleen van toepassing op Draadprinten." -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "De extruder wordt in deze mate gecorrigeerd ten opzichte van de normale hoogte van de eerste laag. Dit kan plus (verhoogd) of min (verlaagd) zijn. Sommige soorten filament hechten beter op het platform als de extruder iets hoger staat." +#~ msgctxt "wireframe_drag_along description" +#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "De afstand waarover het materiaal van een opwaartse doorvoer wordt meegesleept tijdens een diagonaal neerwaartse doorvoer. Deze afstand wordt gecompenseerd. Alleen van toepassing op Draadprinten." -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Z-offset Aflopende Lagen" +#~ msgctxt "wireframe_flow_connection description" +#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." +#~ msgstr "Doorvoercompensatie tijdens bewegingen naar boven of beneden. Alleen van toepassing op Draadprinten." -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "Wanneer de waarde niet is ingesteld op 0, dan wordt de Z-offset over zoveel lagen verkleind tot 0. Wanneer de waarde op 0 is ingesteld, blijft de Z-offset voor alle lagen in de print gelijk." +#~ msgctxt "wireframe_flow_flat description" +#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." +#~ msgstr "Doorvoercompensatie tijdens het printen van platte lijnen. Alleen van toepassing op Draadprinten." -#~ msgctxt "raft_smoothing description" -#~ msgid "This setting control 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 "Deze instelling 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 "wireframe_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." +#~ msgstr "Doorvoercompensatie: de hoeveelheid materiaal die wordt doorgevoerd, wordt vermenigvuldigd met deze waarde. Alleen van toepassing op Draadprinten." -#~ 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, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Het patroon van het vulmateriaal van de print. De lijn- en zigzagvulling veranderen per vullaag van richting, waardoor wordt bespaard op materiaalkosten. De raster-, driekhoeks-, kubische, viervlaks- en concentrische patronen worden elke laag volledig geprint. Kubische en viervlaksvulling veranderen elke laag voor een meer gelijke krachtsverdeling in elke richting." +#~ msgctxt "wireframe_strategy option knot" +#~ msgid "Knot" +#~ msgstr "Verdikken" -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "Viervlaks" +#~ msgctxt "wireframe_straight_before_down description" +#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." +#~ msgstr "Het percentage van een diagonaal neerwaartse lijn die wordt afgedekt door een deel van een horizontale lijn. Hiermee kunt u voorkomen dat het bovenste deel van een opwaartse lijn doorzakt. Alleen van toepassing op Draadprinten." -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "Skin uitbreiden naar vulling" +#~ msgctxt "wireframe_enabled description" +#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." +#~ msgstr "Print alleen de buitenkant van het object in een dunne webstructuur, 'in het luchtledige'. Hiervoor worden de contouren van het model horizontaal geprint op bepaalde Z-intervallen die door middel van opgaande en diagonaal neergaande lijnen zijn verbonden." -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "Breid skingebieden van de boven- en/of onderskin van een plat oppervlak uit. Standaard stopt de skin onder de wandlijnen rond de vulling. Bij een lage dichtheid van de vulling kunnen hierdoor echter gaten ontstaan. Met deze instelling worden de skins uitgebreid tot onder de wandlijnen zodat de vulling op de volgende laag op de skin rust." +#~ msgctxt "wireframe_strategy option retract" +#~ msgid "Retract" +#~ msgstr "Intrekken" -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ msgstr "Bovenskin uitbreiden naar vulling" +#~ msgctxt "wireframe_printspeed description" +#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." +#~ msgstr "De snelheid waarmee de nozzle beweegt tijdens het doorvoeren van materiaal. Alleen van toepassing op Draadprinten." -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "Breid bovenskingebieden (gebieden waarboven zich lucht bevindt) uit, zodat deze de bovenliggende vulling ondersteunen." +#~ msgctxt "wireframe_printspeed_down description" +#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." +#~ msgstr "De snelheid waarmee een lijn diagonaal naar beneden wordt geprint. Alleen van toepassing op Draadprinten." -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "Onderskin uitbreiden naar vulling" +#~ msgctxt "wireframe_printspeed_up description" +#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." +#~ msgstr "De snelheid waarmee een lijn naar boven 'in het luchtledige' wordt geprint. Alleen van toepassing op Draadprinten." -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Breid onderskingebieden (gebieden waaronder zich lucht bevindt) uit, zodat deze worden verankerd door de boven- en onderliggende vullagen." +#~ msgctxt "wireframe_printspeed_bottom description" +#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." +#~ msgstr "De snelheid waarmee de eerste laag wordt geprint. Dit is tevens de enige laag die het platform raakt. Alleen van toepassing op Draadprinten." -#~ msgctxt "expand_skins_expand_distance description" -#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." -#~ msgstr "De afstand waarmee de skin wordt uitgebreid in de vulling. De standaardafstand is voldoende om het gat tussen de vullijnen te overbruggen. Bij een lage vuldichtheid wordt hiermee voorkomen dat gaten ontstaan in de skin waar deze bij de wand komt. Een kleinere afstand is over het algemeen voldoende." +#~ msgctxt "wireframe_printspeed_flat description" +#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." +#~ msgstr "De snelheid waarmee de contouren van een model worden geprint. Alleen van toepassing op draadprinten." -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "Enkele Zigzagverbindingen overslaan" +#~ msgctxt "wireframe_strategy description" +#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." +#~ msgstr "Strategie om ervoor te zorgen dat twee opeenvolgende lagen bij elk verbindingspunt op elkaar aansluiten. Met intrekken kunnen de opwaartse lijnen in de juiste positie uitharden, maar kan het filament gaan haperen. Aan het eind van een opwaartse lijn kan een verdikking worden gemaakt om een volgende lijn hierop eenvoudiger te kunnen laten aansluiten en om de lijn te laten afkoelen. Hiervoor is mogelijk een lage printsnelheid vereist. U kunt echter ook het doorzakken van de bovenkant van een opwaartse lijn compenseren. De lijnen vallen echter niet altijd zoals verwacht." -#~ msgctxt "support_skip_some_zags description" -#~ msgid "Skip some ZigZags connections to make the support structure easier to break." -#~ msgstr "Sla enkele Zigzagverbindingen over zodat de supportstructuur gemakkelijker kan worden verbroken." +#~ msgctxt "wireframe_roof_inset description" +#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." +#~ msgstr "De afstand die wordt overbrugt wanneer vanaf een dakcontour een verbinding naar binnen wordt gemaakt. Alleen van toepassing op Draadprinten." -#~ msgctxt "support_zag_skip_count label" -#~ msgid "ZigZag Connection Skip Count" -#~ msgstr "Aantal overslaan Zigzagverbinding" +#~ msgctxt "wireframe_roof_drag_along description" +#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "De afstand die het eindstuk van een inwaartse lijn wordt meegesleept wanneer de nozzle terugkeert naar de buitencontouren van het dak. Deze afstand wordt gecompenseerd. Alleen van toepassing op Draadprinten." -#~ msgctxt "support_zag_skip_count description" -#~ msgid "Skip one in every N connection lines to make the support structure easier to break." -#~ msgstr "Sla elke N verbindingslijnen één lijn over zodat de supportstructuur gemakkelijker kan worden verbroken." +#~ msgctxt "wireframe_roof_fall_down description" +#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "De afstand die horizontale daklijnen die 'in het luchtledige' worden geprint, naar beneden vallen tijdens het printen. Deze afstand wordt gecompenseerd. Alleen van toepassing op Draadprinten." -#~ msgctxt "machine_show_variants label" -#~ msgid "Show machine variants" -#~ msgstr "Machinevarianten tonen" +#~ msgctxt "wireframe_height description" +#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." +#~ msgstr "De hoogte van de opgaande en diagonaal neergaande lijnen tussen twee horizontale delen. Hiermee bepaalt u de algehele dichtheid van de webstructuur. Alleen van toepassing op Draadprinten." -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Wait for build plate heatup" -#~ msgstr "Wachten op verwarmen van platform" +#~ msgctxt "wireframe_roof_outer_delay description" +#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." +#~ msgstr "De wachttijd aan de buitenkant van een gat dat een dak moet gaan vormen. Een langere wachttijd kan zorgen voor een betere aansluiting. Alleen van toepassing op Draadprinten." -#~ msgctxt "material_print_temp_wait label" -#~ msgid "Wait for nozzle heatup" -#~ msgstr "Wachten op verwarmen van nozzle" +#~ msgctxt "wireframe_bottom_delay label" +#~ msgid "WP Bottom Delay" +#~ msgstr "Neerwaartse Vertraging Draadprinten" -#~ msgctxt "material_print_temp_prepend label" -#~ msgid "Include material temperatures" -#~ msgstr "Materiaaltemperatuur invoegen" +#~ msgctxt "wireframe_printspeed_bottom label" +#~ msgid "WP Bottom Printing Speed" +#~ msgstr "Printsnelheid Bodem Draadprinten" -#~ msgctxt "material_bed_temp_prepend label" -#~ msgid "Include build plate temperature" -#~ msgstr "Platformtemperatuur invoegen" +#~ msgctxt "wireframe_flow_connection label" +#~ msgid "WP Connection Flow" +#~ msgstr "Verbindingsdoorvoer Draadprinten" -#~ msgctxt "machine_width label" -#~ msgid "Machine width" -#~ msgstr "Machinebreedte" +#~ msgctxt "wireframe_height label" +#~ msgid "WP Connection Height" +#~ msgstr "Verbindingshoogte Draadprinten" -#~ msgctxt "machine_depth label" -#~ msgid "Machine depth" -#~ msgstr "Machinediepte" +#~ msgctxt "wireframe_printspeed_down label" +#~ msgid "WP Downward Printing Speed" +#~ msgstr "Neerwaartse Printsnelheid Draadprinten" -#~ msgctxt "machine_shape label" -#~ msgid "Build plate shape" -#~ msgstr "Vorm van het platform" +#~ msgctxt "wireframe_drag_along label" +#~ msgid "WP Drag Along" +#~ msgstr "Meeslepen Draadprinten" -#~ msgctxt "machine_height label" -#~ msgid "Machine height" -#~ msgstr "Machinehoogte" +#~ msgctxt "wireframe_up_half_speed label" +#~ msgid "WP Ease Upward" +#~ msgstr "Langzaam Opwaarts Draadprinten" -#~ msgctxt "machine_heated_bed label" -#~ msgid "Has heated build plate" -#~ msgstr "Heeft verwarmd platform" +#~ msgctxt "wireframe_fall_down label" +#~ msgid "WP Fall Down" +#~ msgstr "Valafstand Draadprinten" -#~ msgctxt "machine_center_is_zero label" -#~ msgid "Is center origin" -#~ msgstr "Is centraal beginpunt" +#~ msgctxt "wireframe_flat_delay label" +#~ msgid "WP Flat Delay" +#~ msgstr "Vertraging Platte Lijn Draadprinten" -#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -#~ msgid "RepRap (Marlin/Sprinter)" -#~ msgstr "RepRap (Marlin/Sprinter)" +#~ msgctxt "wireframe_flow_flat label" +#~ msgid "WP Flat Flow" +#~ msgstr "Doorvoer Platte Lijn Draadprinten" -#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" -#~ msgid "RepRap (Volumetric)" -#~ msgstr "RepRap (Volumetrisch)" +#~ msgctxt "wireframe_flow label" +#~ msgid "WP Flow" +#~ msgstr "Doorvoer Draadprinten" -#~ msgctxt "wall_thickness description" -#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -#~ msgstr "De dikte van de buitenwanden in horizontale richting. Het aantal wanden wordt bepaald door het delen van deze waarde door de breedte van de wandlijn." +#~ msgctxt "wireframe_printspeed_flat label" +#~ msgid "WP Horizontal Printing Speed" +#~ msgstr "Horizontale Printsnelheid Draadprinten" -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "De mate van overlap tussen de skin en de wanden. Met een lichte overlap kunnen de wanden goed hechten aan de skin." +#~ msgctxt "wireframe_top_jump label" +#~ msgid "WP Knot Size" +#~ msgstr "Knoopgrootte Draadprinten" -#~ msgctxt "support_interface_line_width description" -#~ msgid "Width of a single support interface line." -#~ msgstr "Breedte van een enkele lijn van de verbindingsstructuur." +#~ msgctxt "wireframe_nozzle_clearance label" +#~ msgid "WP Nozzle Clearance" +#~ msgstr "Tussenruimte Nozzle Draadprinten" -#~ msgctxt "sub_div_rad_mult label" -#~ msgid "Cubic Subdivision Radius" -#~ msgstr "Kubische onderverdeling straal" +#~ msgctxt "wireframe_roof_drag_along label" +#~ msgid "WP Roof Drag Along" +#~ msgstr "Meeslepen Dak Draadprinten" -#~ msgctxt "sub_div_rad_mult description" -#~ msgid "A multiplier on 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 more subdivisions, i.e. more small cubes." -#~ msgstr "Een vermenigvuldiging van 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 meer onderverdelingen en dus tot kleinere blokken." +#~ msgctxt "wireframe_roof_fall_down label" +#~ msgid "WP Roof Fall Down" +#~ msgstr "Valafstand Dak Draadprinten" -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Upper Skins" -#~ msgstr "Bovenskin uitbreiden" +#~ msgctxt "wireframe_roof_inset label" +#~ msgid "WP Roof Inset Distance" +#~ msgstr "Afstand Dakuitsparingen Draadprinten" -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." -#~ msgstr "Breid bovenskingebieden (gebieden waarboven zich lucht bevindt) uit, zodat deze de bovenliggende vulling ondersteunen." +#~ msgctxt "wireframe_roof_outer_delay label" +#~ msgid "WP Roof Outer Delay" +#~ msgstr "Vertraging buitenzijde dak tijdens draadprinten" -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Lower Skins" -#~ msgstr "Onderskin uitbreiden" +#~ msgctxt "wireframe_printspeed label" +#~ msgid "WP Speed" +#~ msgstr "Snelheid Draadprinten" -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Breid onderskingebieden (gebieden waaronder zich lucht bevindt) uit, zodat deze worden verankerd door de boven- en onderliggende vullagen." +#~ msgctxt "wireframe_straight_before_down label" +#~ msgid "WP Straighten Downward Lines" +#~ msgstr "Neerwaartse Lijnen Rechtbuigen Draadprinten" -#~ msgctxt "speed_support_interface description" -#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality." -#~ msgstr "De snelheid waarmee de supportdaken en -bodems worden geprint. Als u deze langzamer print, wordt de kwaliteit van de overhang verbeterd." +#~ msgctxt "wireframe_strategy label" +#~ msgid "WP Strategy" +#~ msgstr "Draadprintstrategie" -#~ msgctxt "acceleration_support_interface description" -#~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality." -#~ msgstr "De acceleratie tijdens het printen van de supportdaken en -bodems. Als u deze met een lagere acceleratie print, wordt de kwaliteit van de overhang verbeterd." +#~ msgctxt "wireframe_top_delay label" +#~ msgid "WP Top Delay" +#~ msgstr "Opwaartse Vertraging Draadprinten" -#~ msgctxt "jerk_support_interface description" -#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." -#~ msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportdaken- en bodems." +#~ msgctxt "wireframe_printspeed_up label" +#~ msgid "WP Upward Printing Speed" +#~ msgstr "Opwaartse Printsnelheid Draadprinten" -#~ msgctxt "support_enable label" -#~ msgid "Enable Support" -#~ msgstr "Supportstructuur Inschakelen" - -#~ msgctxt "support_enable description" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Schakel het printen van een supportstructuur in. Een supportstructuur ondersteunt delen van het model met een zeer grote overhang." - -#~ msgctxt "support_interface_extruder_nr description" -#~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion." -#~ msgstr "De extruder train die wordt gebruikt voor het printen van de daken en bodems van de supportstructuur. Deze optie wordt gebruikt in meervoudige doorvoer." - -#~ 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." -#~ 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." - -#~ msgctxt "support_bottom_height label" -#~ msgid "Support Bottom Thickness" -#~ msgstr "Dikte Supportbodem" - -#~ msgctxt "support_bottom_height description" -#~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests." -#~ msgstr "De dikte van de supportbodems. Hiermee wordt het aantal dichte lagen bepaald dat wordt geprint op plekken van een model waarop een supportstructuur rust." - -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above 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 "Maak, tijdens het controleren waar zich boven de supportstructuur delen van het model bevinden, treden van de opgegeven hoogte. Lagere waarden slicen lager, terwijl door hogere waarden mogelijk normale supportstructuur wordt geprint op plekken waar een verbindingsstructuur had moeten zijn." - -#~ msgctxt "support_interface_density description" -#~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -#~ msgstr "Hiermee past u de dichtheid van de daken en bodems van de supportstructuur aan. Met een hogere waarde krijgt u een betere overhang, maar is de supportstructuur moeilijker te verwijderen." - -#~ msgctxt "support_interface_line_distance label" -#~ msgid "Support Interface Line Distance" -#~ msgstr "Lijnafstand Verbindingsstructuur" - -#~ msgctxt "support_interface_line_distance description" -#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." -#~ msgstr "De afstand tussen de geprinte lijnen van de verbindingsstructuur. Deze instelling wordt berekend op basis van de dichtheid van de verbindingsstructuur, maar kan onafhankelijk worden aangepast." - -#~ 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 used to be called Joris in older versions." -#~ 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. In oudere versies heet deze functie 'Joris'." - -#~ msgctxt "material_print_temperature description" -#~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." -#~ msgstr "De temperatuur waarmee wordt geprint. Stel deze optie in op 0 om de printer handmatig voor te verwarmen." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually." -#~ msgstr "De temperatuur van het verwarmde platform. Stel deze optie in op 0 om de printer handmatig voor te verwarmen." - -#~ 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. This value is rounded down to a multiple of the layer height." -#~ msgstr "De afstand tussen de boven-/onderkant van de supportstructuur en de print. Deze afstand zorgt ervoor dat de supportstructuren na het printen van het model kunnen worden verwijderd. De waarde wordt afgerond op een veelvoud van de laaghoogte." - -#~ msgctxt "z_seam_type option back" -#~ msgid "Back" -#~ msgstr "Achterkant" - -#~ msgctxt "multiple_mesh_overlap label" -#~ msgid "Dual Extrusion Overlap" -#~ msgstr "Overlap Dubbele Doorvoer" +#~ msgctxt "wireframe_enabled label" +#~ msgid "Wire Printing" +#~ msgstr "Draadprinten" diff --git a/resources/i18n/pl_PL/cura.po b/resources/i18n/pl_PL/cura.po index 06c7fd647b..5cfeec0834 100644 --- a/resources/i18n/pl_PL/cura.po +++ b/resources/i18n/pl_PL/cura.po @@ -1,12 +1,13 @@ # Cura -# Copyright (C) 2022 Ultimaker B.V. +# Copyright (C) 2022 UltiMaker. # This file is distributed under the same license as the Cura package. +# Ultimaker , 2022. # msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-04-06 15:55+0000\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" @@ -18,199 +19,77 @@ msgstr "" "X-Generator: Poedit 3.0\n" "X-Poedit-SourceCharset: UTF-8\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -msgctxt "@label" -msgid "Unknown" -msgstr "Nieznany" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "Poniższa drukarka nie może być podłączona, ponieważ jest częścią grupy" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Dostępne drukarki sieciowe" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Nie zastąpione" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Connected printers" -msgstr "Podłączone drukarki" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Preset printers" -msgstr "Zdefiniowane drukarki" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:143 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:61 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 -msgctxt "@label" -msgid "Default" -msgstr "Domyślne" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:65 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Wizualny" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:66 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "Profil wizualny jest przeznaczony do drukowania prototypów i modeli z zamiarem podkreślenia wysokiej jakości wizualnej i powierzchni." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:70 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Inżynieria" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "Profil inżynieryjny jest przeznaczony do drukowania prototypów funkcjonalnych i części końcowych z naciskiem na lepszą dokładność i lepszą tolerancję." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:75 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Szkic" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:76 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "Profil szkicu służy do drukowania początkowych prototypów i weryfikacji koncepcji z naciskiem na krótki czasu drukowania." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:232 -msgctxt "@label" -msgid "Custom Material" -msgstr "Niestandardowy materiał" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:233 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 -msgctxt "@label" -msgid "Custom" -msgstr "Niestandardowy" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:391 -msgctxt "@label" -msgid "Custom profiles" -msgstr "Profile niestandardowe" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:426 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Wszystkie Wspierane Typy ({0})" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Wszystkie Pliki (*)" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Przeliczone" - -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 +#: cura/API/Account.py:199 msgctxt "@info:title" msgid "Login failed" msgstr "Logowanie nie powiodło się" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: cura/Arranging/ArrangeObjectsJob.py:25 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Znajdowanie nowej lokalizacji obiektów" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: cura/Arranging/ArrangeObjectsJob.py:29 msgctxt "@info:title" msgid "Finding Location" msgstr "Szukanie Lokalizacji" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Nie można znaleźć lokalizacji w obrębie obszaru roboczego dla wszystkich obiektów" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: cura/Arranging/ArrangeObjectsJob.py:43 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Nie można Znaleźć Lokalizacji" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:115 +#: cura/Backups/Backup.py:115 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Nie można utworzyć archiwum z folderu danych użytkownika: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:159 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +#: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159 +#: plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: plugins/CuraDrive/src/DrivePluginExtension.py:126 msgctxt "@info:title" msgid "Backup" msgstr "Kopia zapasowa" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:134 +#: cura/Backups/Backup.py:134 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Podjęto próbę przywrócenia kopii zapasowej Cura na podstawie niepoprawnych danych lub metadanych." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:145 +#: cura/Backups/Backup.py:145 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that is higher than the current version." msgstr "Próbowano przywrócić kopię zapasową Cura, nowszą od aktualnej wersji." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:158 +#: cura/Backups/Backup.py:158 msgctxt "@info:backup_failed" msgid "The following error occurred while trying to restore a Cura backup:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: cura/BuildVolume.py:100 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." msgstr "Wysokość obszaru roboczego została zmniejszona ze względu na wartość ustawienia Print Sequence (Sekwencja wydruku), aby zapobiec kolizji z wydrukowanymi modelami." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 +#: cura/BuildVolume.py:103 msgctxt "@info:title" msgid "Build Volume" msgstr "Obszar Roboczy" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura nie może się uruchomić" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" -"

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

    \n" +"

    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" @@ -222,32 +101,32 @@ msgstr "" "

    Proszę wyślij do nas ten Raport Błędu, aby rozwiązać problem.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: cura/CrashHandler.py:122 msgctxt "@action:button" -msgid "Send crash report to Ultimaker" -msgstr "Wyślij raport błędu do Ultimaker" +msgid "Send crash report to UltiMaker" +msgstr "Wyślij raport błędu do UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Pokaż szczegółowy raport błędu" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Pokaż folder konfiguracyjny" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Zrób Backup i Zresetuj Konfigurację" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Raport Błędu" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

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

    \n" @@ -258,573 +137,2237 @@ msgstr "" "

    Proszę użyj przycisku \"Wyślij raport\", aby wysłać raport błędu automatycznie na nasze serwery

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Informacje o systemie" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Nieznany" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Wersja Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Platforma" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Wersja Qt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Wersja PyQt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Wersja OpenGL: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • Wydawca OpenGL: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL Renderer: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 +#: cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Śledzenie błedu" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 +#: cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Logi" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 +#: cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Wyślij raport" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:531 +#: cura/CuraApplication.py:540 msgctxt "@info:progress" msgid "Loading machines..." msgstr "Ładowanie drukarek..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +#: cura/CuraApplication.py:547 msgctxt "@info:progress" msgid "Setting up preferences..." msgstr "Ustawianie preferencji..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +#: cura/CuraApplication.py:692 msgctxt "@info:progress" msgid "Initializing Active Machine..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +#: cura/CuraApplication.py:839 msgctxt "@info:progress" msgid "Initializing machine manager..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +#: cura/CuraApplication.py:853 msgctxt "@info:progress" msgid "Initializing build volume..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +#: cura/CuraApplication.py:921 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "Ustawianie sceny ..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +#: cura/CuraApplication.py:957 msgctxt "@info:progress" msgid "Loading interface..." msgstr "Ładowanie interfejsu ..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +#: cura/CuraApplication.py:962 msgctxt "@info:progress" msgid "Initializing engine..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#: cura/CuraApplication.py:1290 #, 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" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1798 +#: cura/CuraApplication.py:1816 #, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Jednocześnie można załadować tylko jeden plik G-code. Pominięto importowanie {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 +#: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 msgctxt "@info:title" msgid "Warning" msgstr "Ostrzeżenie" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#: cura/CuraApplication.py:1828 #, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "Nie można otworzyć żadnego innego pliku, jeśli ładuje się G-code. Pominięto importowanie {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1812 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156 +#: cura/Settings/CuraContainerRegistry.py:166 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 msgctxt "@info:title" msgid "Error" msgstr "Błąd" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 +#: cura/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Nieznany" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "Poniższa drukarka nie może być podłączona, ponieważ jest częścią grupy" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Dostępne drukarki sieciowe" + +#: cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Nie zastąpione" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:28 +msgctxt "@label" +msgid "Connected printers" +msgstr "Podłączone drukarki" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +msgctxt "@label" +msgid "Preset printers" +msgstr "Zdefiniowane drukarki" + +#: cura/Machines/Models/GlobalStacksModel.py:165 +#, 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 "" + +#: cura/Machines/Models/IntentCategoryModel.py:42 +#: cura/Machines/Models/IntentSelectionModel.py:61 +#: cura/Machines/Models/IntentTranslations.py:11 +#: cura/Machines/Models/QualityManagementModel.py:347 +msgctxt "@label" +msgid "Default" +msgstr "Domyślne" + +#: cura/Machines/Models/IntentCategoryModel.py:45 +#: cura/Machines/Models/IntentSelectionModel.py:65 +#: cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "Wizualny" + +#: cura/Machines/Models/IntentCategoryModel.py:46 +#: cura/Machines/Models/IntentSelectionModel.py:66 +#: cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "Profil wizualny jest przeznaczony do drukowania prototypów i modeli z zamiarem podkreślenia wysokiej jakości wizualnej i powierzchni." + +#: cura/Machines/Models/IntentCategoryModel.py:49 +#: cura/Machines/Models/IntentSelectionModel.py:70 +#: cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "Inżynieria" + +#: cura/Machines/Models/IntentCategoryModel.py:50 +#: cura/Machines/Models/IntentSelectionModel.py:71 +#: cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "Profil inżynieryjny jest przeznaczony do drukowania prototypów funkcjonalnych i części końcowych z naciskiem na lepszą dokładność i lepszą tolerancję." + +#: cura/Machines/Models/IntentCategoryModel.py:53 +#: cura/Machines/Models/IntentSelectionModel.py:75 +#: cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "Szkic" + +#: cura/Machines/Models/IntentCategoryModel.py:54 +#: cura/Machines/Models/IntentSelectionModel.py:76 +#: cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "Profil szkicu służy do drukowania początkowych prototypów i weryfikacji koncepcji z naciskiem na krótki czasu drukowania." + +#: cura/Machines/Models/MaterialManagementModel.py:232 +msgctxt "@label" +msgid "Custom Material" +msgstr "Niestandardowy materiał" + +#: cura/Machines/Models/MaterialManagementModel.py:233 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 +msgctxt "@label" +msgid "Custom" +msgstr "Niestandardowy" + +#: cura/Machines/Models/QualityManagementModel.py:400 +msgctxt "@label" +msgid "Custom profiles" +msgstr "Profile niestandardowe" + +#: cura/Machines/Models/QualityManagementModel.py:435 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Wszystkie Wspierane Typy ({0})" + +#: cura/Machines/Models/QualityManagementModel.py:436 +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Wszystkie Pliki (*)" + +#: cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Przeliczone" + +#: cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Zwielokrotnienie i umieszczanie przedmiotów" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 +#: cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "Umieść Obiekty" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 +#: cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Rozmieszczenie Obiektów" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +#: cura/OAuth2/AuthorizationHelpers.py:89 msgctxt "@message" msgid "Could not read response." msgstr "Nie można odczytać odpowiedzi." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +#: cura/OAuth2/AuthorizationRequestHandler.py:75 msgctxt "@message" msgid "The provided state is not correct." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +#: cura/OAuth2/AuthorizationRequestHandler.py:80 msgctxt "@message" msgid "Timeout when authenticating with the account server." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +#: cura/OAuth2/AuthorizationRequestHandler.py:97 msgctxt "@message" msgid "Please give the required permissions when authorizing this application." msgstr "Proszę nadać wymagane uprawnienia podczas autoryzacji tej aplikacji." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +#: cura/OAuth2/AuthorizationRequestHandler.py:104 msgctxt "@message" msgid "Something unexpected happened when trying to log in, please try again." msgstr "Coś nieoczekiwanego się stało, podczas próby logowania, spróbuj ponownie." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:216 +#: cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:277 +#: cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "Nie można uzyskać dostępu do serwera kont Ultimaker." +msgid "Unable to reach the UltiMaker account server." +msgstr "Nie można uzyskać dostępu do serwera kont UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 +#: cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" msgid "Log-in failed" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +#: cura/PrinterOutput/UploadMaterialsJob.py:104 msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +#: cura/PrinterOutput/UploadMaterialsJob.py:111 +#: cura/PrinterOutput/UploadMaterialsJob.py:165 msgctxt "@text:error" msgid "Failed to load the archive of materials to sync it with printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +#: cura/PrinterOutput/UploadMaterialsJob.py:143 msgctxt "@text:error" msgid "The response from Digital Factory appears to be corrupted." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +#: cura/PrinterOutput/UploadMaterialsJob.py:147 +#: cura/PrinterOutput/UploadMaterialsJob.py:151 +#: cura/PrinterOutput/UploadMaterialsJob.py:155 msgctxt "@text:error" msgid "The response from Digital Factory is missing important information." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +#: cura/PrinterOutput/UploadMaterialsJob.py:218 msgctxt "@text:error" msgid "Failed to connect to Digital Factory to sync materials with some of the printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +#: cura/PrinterOutput/UploadMaterialsJob.py:232 msgctxt "@text:error" msgid "Failed to connect to Digital Factory." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:207 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: cura/Settings/ActiveQuality.py:43 +msgctxt "@label" +msgid "Experimental" +msgstr "Eksperymentalne" + +#: cura/Settings/ContainerManager.py:207 +#: cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "Plik już istnieje" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: cura/Settings/ContainerManager.py:208 +#: cura/Settings/CuraContainerRegistry.py:141 #, 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 "Plik {0} już istnieje. Czy na pewno chcesz go nadpisać?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 +#: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "Nieprawidłowy adres URL pliku:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Nie udało się wyeksportować profilu do {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Nie można eksportować profilu do {0}: Wtyczka pisarza zgłosiła błąd." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Wyeksportowano profil do {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Eksport udany" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Nie powiódł się import profilu z {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: cura/Settings/CuraContainerRegistry.py:209 #, 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 "Nie można importować profilu z {0} przed dodaniem drukarki." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Brak niestandardowego profilu do importu w pliku {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Nie powiódł się import profilu z {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: cura/Settings/CuraContainerRegistry.py:252 +#: cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Profil {0} zawiera błędne dane, nie można go importować." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Błąd importu profilu z {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Plik {0} nie zawiera żadnego poprawnego profilu." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Profil {0} ma nieznany typ pliku lub jest uszkodzony." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Niestandardowy profil" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Profilowi brakuje typu jakości." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: cura/Settings/CuraContainerRegistry.py:488 #, 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 "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Niewspierany" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Domyślne" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:219 +#: cura/Settings/MachineManager.py:746 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:221 msgctxt "@label" msgid "Nozzle" msgstr "Dysza" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +#: cura/Settings/MachineManager.py:890 msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Ustawienia zostały zmienione w celu dopasowania do bieżącej dostępności ekstruderów:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: cura/Settings/MachineManager.py:891 msgctxt "@info:title" msgid "Settings updated" msgstr "Ustawienia zostały zaaktualizowane" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 +#: cura/Settings/MachineManager.py:1514 msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Ekstruder(y) wyłączony(/e)" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 +#: cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Niewspierany" + +#: cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Domyślne" + +#: cura/UI/AddPrinterPagesModel.py:17 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" msgid "Add" msgstr "Dodaj" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:290 +#: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290 msgctxt "@action:button" msgid "Finish" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:508 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:323 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:291 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:74 +#: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386 +#: plugins/ImageReader/ConfigUI.qml:323 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 +#: resources/qml/ColorDialog.qml:143 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: resources/qml/Dialogs/RenameDialog.qml:103 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 msgctxt "@action:button" msgid "Cancel" msgstr "Anuluj" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: cura/UI/ObjectsModel.py:69 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Grupa #{group_nr}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 +#: cura/UI/PrintInformation.py:87 msgctxt "@tooltip" msgid "Outer Wall" msgstr "Zewnętrzna ściana" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +#: cura/UI/PrintInformation.py:88 msgctxt "@tooltip" msgid "Inner Walls" msgstr "Ściany wewnętrzne" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +#: cura/UI/PrintInformation.py:89 msgctxt "@tooltip" msgid "Skin" msgstr "Skin" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +#: cura/UI/PrintInformation.py:90 msgctxt "@tooltip" msgid "Infill" msgstr "Wypełnienie" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +#: cura/UI/PrintInformation.py:91 msgctxt "@tooltip" msgid "Support Infill" msgstr "Wypełnienie podpór" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +#: cura/UI/PrintInformation.py:92 msgctxt "@tooltip" msgid "Support Interface" msgstr "Łączenie podpory" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +#: cura/UI/PrintInformation.py:93 msgctxt "@tooltip" msgid "Support" msgstr "Podpory" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +#: cura/UI/PrintInformation.py:94 msgctxt "@tooltip" msgid "Skirt" msgstr "Obwódka" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +#: cura/UI/PrintInformation.py:95 msgctxt "@tooltip" msgid "Prime Tower" msgstr "Wieża czyszcząca" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +#: cura/UI/PrintInformation.py:96 msgctxt "@tooltip" msgid "Travel" msgstr "Ruch jałowy" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +#: cura/UI/PrintInformation.py:97 msgctxt "@tooltip" msgid "Retractions" msgstr "Retrakcja" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +#: cura/UI/PrintInformation.py:98 msgctxt "@tooltip" msgid "Other" msgstr "Inny" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:63 +#: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63 msgctxt "@text:window" msgid "The release notes could not be opened." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:277 +#: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277 msgctxt "@action:button" msgid "Next" msgstr "Następny" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68 msgctxt "@action:button" msgid "Skip" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:443 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:186 +#: cura/UI/WhatsNewPagesModel.py:76 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444 +#: resources/qml/Dialogs/AboutDialog.qml:188 msgctxt "@action:button" msgid "Close" msgstr "Zamknij" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: cura/UltimakerCloud/CloudMaterialSync.py:66 msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: cura/UltimakerCloud/CloudMaterialSync.py:67 msgctxt "@action:button" msgid "New materials installed" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: cura/UltimakerCloud/CloudMaterialSync.py:74 msgctxt "@action:button" msgid "Sync materials" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:397 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:80 +#: cura/UltimakerCloud/CloudMaterialSync.py:82 +#: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80 msgctxt "@action:button" msgid "Learn more" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +#: cura/UltimakerCloud/CloudMaterialSync.py:135 msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +#: cura/UltimakerCloud/CloudMaterialSync.py:136 msgctxt "@message:title" msgid "Failed to save material archive" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +#: cura/UltimakerCloud/CloudMaterialSync.py:188 msgctxt "@text" msgid "Unknown error." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:558 +#, 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 "Plik projektu {0} zawiera nieznany typ maszyny {1}. Nie można zaimportować maszyny. Zostaną zaimportowane modele." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:561 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "Otwórz Plik Projektu" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: plugins/3MFReader/WorkspaceDialog.qml:99 +#: plugins/3MFReader/WorkspaceDialog.qml:127 +#: plugins/3MFReader/WorkspaceDialog.qml:134 +msgctxt "@button" +msgid "Create new" +msgstr "Utwórz nowy" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:692 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:720 +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:700 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:718 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:765 +#, 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 "" + +#: plugins/3MFReader/WorkspaceDialog.py:233 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Zalecane" + +#: plugins/3MFReader/WorkspaceDialog.py:235 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Niestandardowe" + +#: plugins/3MFReader/WorkspaceDialog.py:411 +msgctxt "@info:status" +msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.py:413 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.py:426 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:15 +msgctxt "@title:window" +msgid "Open Project" +msgstr "Otwórz projekt" + +#: plugins/3MFReader/WorkspaceDialog.qml:31 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61 +msgctxt "@action:title" +msgid "Summary - Cura Project" +msgstr "Podsumowanie - Projekt Cura" + +#: plugins/3MFReader/WorkspaceDialog.qml:65 +msgctxt "@action:ComboBox Update/override existing profile" +msgid "Update existing" +msgstr "Zaktualizuj istniejące" + +#: plugins/3MFReader/WorkspaceDialog.qml:66 +msgctxt "@action:ComboBox Save settings in a new profile" +msgid "Create new" +msgstr "Utwórz nowy" + +#: plugins/3MFReader/WorkspaceDialog.qml:83 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97 +msgctxt "@action:label" +msgid "Printer settings" +msgstr "Ustawienia drukarki" + +#: plugins/3MFReader/WorkspaceDialog.qml:92 +#: plugins/3MFReader/WorkspaceRow.qml:23 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106 +msgctxt "@action:label" +msgid "Type" +msgstr "Typ" + +#: plugins/3MFReader/WorkspaceDialog.qml:98 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +msgctxt "@action:label" +msgid "Printer Group" +msgstr "Grupa drukarek" + +#: plugins/3MFReader/WorkspaceDialog.qml:103 +msgctxt "@action:label" +msgid "Open With" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:104 +msgctxt "@info:tooltip" +msgid "Printer settings will be updated to match the settings saved with the project." +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:156 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222 +msgctxt "@action:label" +msgid "Profile settings" +msgstr "Ustawienia profilu" + +#: plugins/3MFReader/WorkspaceDialog.qml:166 +#: plugins/3MFReader/WorkspaceDialog.qml:238 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246 +msgctxt "@action:label" +msgid "Name" +msgstr "Nazwa" + +#: plugins/3MFReader/WorkspaceDialog.qml:172 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263 +msgctxt "@action:label" +msgid "Intent" +msgstr "Cel" + +#: plugins/3MFReader/WorkspaceDialog.qml:178 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230 +msgctxt "@action:label" +msgid "Not in profile" +msgstr "Nie w profilu" + +#: plugins/3MFReader/WorkspaceDialog.qml:179 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235 +msgctxt "@action:label" +msgid "%1 override" +msgid_plural "%1 overrides" +msgstr[0] "%1 nadpisanie" +msgstr[1] "%1 Zastępuje" + +#: plugins/3MFReader/WorkspaceDialog.qml:185 +msgctxt "@action:label" +msgid "Derivative from" +msgstr "Pochodna z" + +#: plugins/3MFReader/WorkspaceDialog.qml:186 +msgctxt "@action:label" +msgid "%1, %2 override" +msgid_plural "%1, %2 overrides" +msgstr[0] "%1, %2 nadpisanie" +msgstr[1] "%1, %2 zastępuje" + +#: plugins/3MFReader/WorkspaceDialog.qml:226 +msgctxt "@action:label" +msgid "Material settings" +msgstr "Ustawienia materiału" + +#: plugins/3MFReader/WorkspaceDialog.qml:280 +msgctxt "@action:label" +msgid "Setting visibility" +msgstr "Ustawienie widoczności" + +#: plugins/3MFReader/WorkspaceDialog.qml:290 +msgctxt "@action:label" +msgid "Mode" +msgstr "Tryb" + +#: plugins/3MFReader/WorkspaceDialog.qml:296 +msgctxt "@action:label" +msgid "%1 out of %2" +msgstr "%1 poza %2" + +#: plugins/3MFReader/WorkspaceDialog.qml:321 +msgctxt "@action:warning" +msgid "Loading a project will clear all models on the build plate." +msgstr "Ładowanie projektu usunie wszystkie modele z platformy roboczej." + +#: plugins/3MFReader/WorkspaceDialog.qml:367 +msgctxt "@label" +msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:392 +msgctxt "@action:button" +msgid "Open" +msgstr "Otwórz" + +#: plugins/3MFReader/WorkspaceDialog.qml:398 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:407 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "" + +#: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33 +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "Plik 3MF" + +#: plugins/3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "Czytnik 3MF" + +#: plugins/3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Zapewnia wsparcie dla czytania plików 3MF." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "" + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "" + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "" + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "" + +#: plugins/3MFWriter/ThreeMFWriter.py:240 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Błąd zapisu pliku 3mf." + +#: plugins/3MFWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "Plik 3MF" + +#: plugins/3MFWriter/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Plik Cura Project 3MF" + +#: plugins/3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF Writer" + +#: plugins/3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Zapewnia wsparcie dla tworzenia plików 3MF." + +#: plugins/AMFReader/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "Plik AMF" + +#: plugins/AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "Czytnik AMF" + +#: plugins/AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Zapewnia wsparcie dla czytania plików AMF." + +#: plugins/CuraDrive/plugin.json +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Utwórz kopię zapasową i przywróć konfigurację." + +#: plugins/CuraDrive/plugin.json +msgctxt "name" +msgid "Cura Backups" +msgstr "Kopie zapasowe Cura" + +#: plugins/CuraDrive/src/CreateBackupJob.py:25 +msgctxt "@info:title" +msgid "Backups" +msgstr "Kopie zapasowe" + +#: plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Wystąpił błąd podczas wgrywania kopii zapasowej." + +#: plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "" + +#: plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "" + +#: plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Wgrywanie kopii zapasowej..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Wgrywanie kopii zapasowej zakończone." + +#: plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "" + +#: plugins/CuraDrive/src/DriveApiService.py:86 +#: plugins/CuraDrive/src/RestoreBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Wystąpił błąd podczas próby przywrócenia kopii zapasowej." + +#: plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Zarządzaj kopiami zapasowymi" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "Chcesz więcej?" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Utwórz kopię zapasową" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Automatyczne tworzenie kopii zapasowej" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Automatycznie twórz kopie zapasowe każdego dnia, w którym uruchomiono Curę." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 +msgctxt "@button" +msgid "Restore" +msgstr "Przywróć" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Usuń kopię zapasową" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Czy na pewno chcesz usunąć tę kopię zapasową? Tej czynności nie można cofnąć." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Przywróć kopię zapasową" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "Musisz zrestartować Curę przed przywróceniem kopii zapasowej. Czy chcesz teraz zamknąć Curę?" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Wersja Cura" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Drukarki" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Materiały" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Profile" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Pluginy" + +#: plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Kopie zapasowe cura" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "Moje Kopie Zapasowe" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Nie masz żadnych kopii zapasowych. Użyj przycisku „Utwórz kopię zapasową”, aby go utworzyć." + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Podczas fazy podglądu będziesz ograniczony do 5 widocznych kopii zapasowych. Usuń kopię zapasową, aby zobaczyć starsze." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Wykonaj kopię zapasową i zsynchronizuj ustawienia Cura." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 +#: plugins/Marketplace/resources/qml/Marketplace.qml:312 +#: resources/qml/Account/GeneralOperations.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180 +#: resources/qml/WelcomePages/CloudContent.qml:212 +msgctxt "@button" +msgid "Sign in" +msgstr "Zaloguj" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:163 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:169 +msgctxt "@message:description" +msgid "Report a bug on UltiMaker Cura's issue tracker." +msgstr "" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:416 +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "Nie można pociąć z obecnym materiałem, ponieważ nie jest on kompatybilny z wybraną maszyną lub konfiguracją." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:417 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:450 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:477 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:501 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:514 +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "Nie można pociąć" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:449 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "Nie można pociąć z bieżącymi ustawieniami. Następujące ustawienia mają błędy: {0}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:476 +#, 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 "Nie można pokroić przez ustawienia osobne dla modelu. Następujące ustawienia mają błędy w jednym lub więcej modeli: {error_labels}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:488 +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "Nie można pociąć, ponieważ wieża czyszcząca lub jej pozycja(e) są niewłaściwe." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:500 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "Nie można pociąć, ponieważ obecne są obiekty powiązane z wyłączonym ekstruderem %s." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:510 +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 "" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Przetwarzanie warstw" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Informacja" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Zaplecze CuraEngine" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Zapewnia połączenie z tnącym zapleczem CuraEngine." + +#: plugins/CuraProfileReader/__init__.py:14 +#: plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Profile Cura" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Czytnik Profili Cura" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Zapewnia wsparcie dla importowania profili Cura." + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura Profile Writer" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Zapewnia wsparcie dla eksportowania profili Cura." + +#: plugins/DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "" + +#: plugins/DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 +msgctxt "@option" +msgid "Save Cura project and print file" +msgstr "" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "" + +#: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19 +msgctxt "@text Placeholder for the username if it has been deleted" +msgid "deleted user" +msgstr "" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Nie można uzyskać dostępu do informacji o aktualizacji." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, 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 "" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Jak zaktualizować" + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Sprawdź aktualizacje oprogramowania." + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Sprawdzacz Aktualizacji Oprogramowania" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Aktualizacja Oprogramowania Sprzętowego" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "Aktualizacja Oprogramowania Sprzętowego" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 +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 "Oprogramowanie ukłądowe jest częścią oprogramowania działającego bezpośrednio na drukarce 3D. Oprogramowanie to steruje silnikami krokowymi, reguluje temperaturę i ostatecznie sprawia, że drukarka działa." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "Oprogramowanie ukłądowe dostarczane z nowymi drukarkami działa, ale nowe wersje mają zazwyczaj więcej funkcji i ulepszeń." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Automatycznie uaktualnij oprogramowanie" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Prześlij niestandardowe oprogramowanie" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "Oprogramowanie sprzętowe nie może być zaktualizowane, ponieważ nie ma połączenia z drukarką." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "Oprogramowanie sprzętowe nie może być zaktualizowane, ponieważ połączenie z drukarką nie wspiera usługi." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Wybierz niestandardowe oprogramowanie" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Aktualizacja oprogramowania układowego" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 +msgctxt "@label" +msgid "Updating firmware." +msgstr "Aktualizowanie oprogramowania." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Aktualizacja oprogramowania zakończona." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "Aktualizacja oprogramowania nie powiodła się z powodu nieznanego błędu." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "Aktualizacja oprogramowania nie powiodła się z powodu błędu komunikacji." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "Aktualizacja oprogramowania nie powiodła się z powodu błędu wejścia / wyjścia." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "Aktualizacja oprogramowania nie powiodła się z powodu utraconego oprogramowania." + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "name" +msgid "Firmware Updater" +msgstr "Aktualizacja oprogramowania sprzętowego" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Dostarcza działanie, pozwalające na aktualizację oprogramowania sprzętowego." + +#: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "Skompresowany Plik G-code" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Czytnik Skompresowanego G-code" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Odczytuje g-code ze skompresowanych archiwum." + +#: plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "Zapisywacz skompresowanego G-code nie obsługuje trybu tekstowego." + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Zapisywacz Skompresowanego G-code" + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Zapisuje g-code do skompresowanego archiwum." + +#: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14 +#: plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "Pliki G-code" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Czytnik Profili G-code" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Zapewnia wsparcie dla importowania profili z plików g-code." + +#: plugins/GCodeReader/FlavorParser.py:359 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "Analizowanie G-code" + +#: plugins/GCodeReader/FlavorParser.py:361 +#: plugins/GCodeReader/FlavorParser.py:515 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "Szczegóły G-code" + +#: plugins/GCodeReader/FlavorParser.py:513 +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 "Przed wysłaniem pliku upewnij się, że G-code jest odpowiedni do konfiguracji drukarki. Przedstawienie G-kodu może nie być dokładne." + +#: plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "Plik G-code" + +#: plugins/GCodeReader/plugin.json +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Pozwala na ładowanie i wyświetlanie plików G-code." + +#: plugins/GCodeReader/plugin.json +msgctxt "name" +msgid "G-code Reader" +msgstr "Czytnik G-code" + +#: plugins/GCodeWriter/GCodeWriter.py:75 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "Zapisywacz G-code nie obsługuje trybu nietekstowego." + +#: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Przygotuj G-code przed eksportem." + +#: plugins/GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "Zapisywacz G-code" + +#: plugins/GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Zapisuje g-code do pliku." + +#: plugins/ImageReader/ConfigUI.qml:14 +msgctxt "@title:window" +msgid "Convert Image" +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:33 +msgctxt "@action:label" +msgid "Height (mm)" +msgstr "Wysokość (mm)" + +#: plugins/ImageReader/ConfigUI.qml:56 +msgctxt "@info:tooltip" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "Maksymalna odległość każdego piksela od \"Bazy.\"" + +#: plugins/ImageReader/ConfigUI.qml:66 +msgctxt "@action:label" +msgid "Base (mm)" +msgstr "Baza (mm)" + +#: plugins/ImageReader/ConfigUI.qml:90 +msgctxt "@info:tooltip" +msgid "The base height from the build plate in millimeters." +msgstr "Wysokość podstawy od stołu w milimetrach." + +#: plugins/ImageReader/ConfigUI.qml:100 +msgctxt "@action:label" +msgid "Width (mm)" +msgstr "Szerokość (mm)" + +#: plugins/ImageReader/ConfigUI.qml:124 +msgctxt "@info:tooltip" +msgid "The width in millimeters on the build plate" +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:134 +msgctxt "@action:label" +msgid "Depth (mm)" +msgstr "Głębokość (mm)" + +#: plugins/ImageReader/ConfigUI.qml:158 +msgctxt "@info:tooltip" +msgid "The depth in millimeters on the build plate" +msgstr "Głębokość w milimetrach na stole" + +#: plugins/ImageReader/ConfigUI.qml:187 +msgctxt "@item:inlistbox" +msgid "Darker is higher" +msgstr "Ciemniejsze jest wyższe" + +#: plugins/ImageReader/ConfigUI.qml:188 +msgctxt "@item:inlistbox" +msgid "Lighter is higher" +msgstr "Jaśniejszy jest wyższy" + +#: plugins/ImageReader/ConfigUI.qml:195 +msgctxt "@info:tooltip" +msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." +msgstr "Dla litofanów ciemne piksele powinny odpowiadać grubszym miejscom, aby zablokować więcej światła. Dla zaznaczenia wysokości map, jaśniejsze piksele oznaczają wyższy teren, więc jaśniejsze piksele powinny odpowiadać wyższym położeniom w wygenerowanym modelu 3D." + +#: plugins/ImageReader/ConfigUI.qml:205 +msgctxt "@action:label" +msgid "Color Model" +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:224 +msgctxt "@item:inlistbox" +msgid "Linear" +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:225 +msgctxt "@item:inlistbox" +msgid "Translucency" +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:232 +msgctxt "@info:tooltip" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:242 +msgctxt "@action:label" +msgid "1mm Transmittance (%)" +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:263 +msgctxt "@info:tooltip" +msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:274 +msgctxt "@action:label" +msgid "Smoothing" +msgstr "Wygładzanie" + +#: plugins/ImageReader/ConfigUI.qml:298 +msgctxt "@info:tooltip" +msgid "The amount of smoothing to apply to the image." +msgstr "Ilość wygładzania do zastosowania do obrazu." + +#: plugins/ImageReader/ConfigUI.qml:329 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 +#: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25 +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + +#: plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "Obraz JPG" + +#: plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "Obraz JPEG" + +#: plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "Obraz PNG" + +#: plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "Obraz BMP" + +#: plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "Obraz GIF" + +#: plugins/ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Włącza możliwość generowania drukowalnej geometrii z pliku obrazu 2D." + +#: plugins/ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Czytnik Obrazu" + +#: plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Profile Cura 15.04" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Czytnik Profili Starszej Cura" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Zapewnia wsparcie dla importowania profili ze starszych wersji Cura." + +#: plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Ustawienia drukarki" + +#: plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Drukarka" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Ustawienia dyszy" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Rozmiar dyszy" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Kompatybilna średnica materiału" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Korekcja dyszy X" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Korekcja dyszy Y" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Numer Wentylatora" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "Początkowy G-code ekstrudera" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "Końcowy G-code ekstrudera" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Ustawienia drukarki" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (Szerokość)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Głębokość)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Wysokość)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Kształt stołu roboczego" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 +msgctxt "@label" +msgid "Origin at center" +msgstr "Początek na środku" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 +msgctxt "@label" +msgid "Heated bed" +msgstr "Podgrzewany stół" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Grzany obszar roboczy" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 +msgctxt "@label" +msgid "G-code flavor" +msgstr "Wersja G-code" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Ustawienia głowicy" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 +msgctxt "@label" +msgid "X min" +msgstr "X min" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 +msgctxt "@label" +msgid "Y min" +msgstr "Y min" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 +msgctxt "@label" +msgid "X max" +msgstr "X max" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 +msgctxt "@label" +msgid "Y max" +msgstr "Y max" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Wysokość wózka" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Liczba ekstruderów" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:342 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:390 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "Początkowy G-code" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:401 +msgctxt "@title:label" +msgid "End G-code" +msgstr "Końcowy G-code" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "name" +msgid "Machine Settings Action" +msgstr "" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Zapewnia możliwość zmiany ustawień maszyny (takich jak objętość robocza, rozmiar dyszy itp.)." + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:95 +msgctxt "@info:title" +msgid "Changes detected from your UltiMaker account" +msgstr "" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 +msgctxt "@action:button" +msgid "Sync" +msgstr "" + +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:12 +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:79 +msgctxt "@button" +msgid "Decline" +msgstr "" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:13 +#: resources/qml/WelcomePages/UserAgreementContent.qml:53 +msgctxt "@button" +msgid "Agree" +msgstr "Zgadzam się" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:77 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Akceptowanie Licencji Wtyczki" + +#: plugins/Marketplace/CloudSync/LicensePresenter.py:42 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "" + +#: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "" + +#: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "" + +#: plugins/Marketplace/LocalPackageList.py:28 +msgctxt "@label" +msgid "Installed Plugins" +msgstr "" + +#: plugins/Marketplace/LocalPackageList.py:29 +msgctxt "@label" +msgid "Installed Materials" +msgstr "" + +#: plugins/Marketplace/LocalPackageList.py:33 +msgctxt "@label" +msgid "Bundled Plugins" +msgstr "" + +#: plugins/Marketplace/LocalPackageList.py:34 +msgctxt "@label" +msgid "Bundled Materials" +msgstr "" + +#: plugins/Marketplace/PackageModel.py:43 +msgctxt "@label:property" +msgid "Unknown Package" +msgstr "" + +#: plugins/Marketplace/PackageModel.py:66 +msgctxt "@label:property" +msgid "Unknown Author" +msgstr "" + +#: plugins/Marketplace/PackageModel.py:95 +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 "" + +#: plugins/Marketplace/RemotePackageList.py:117 +msgctxt "@info:error" +msgid "Could not interpret the server's response." +msgstr "" + +#: plugins/Marketplace/RemotePackageList.py:148 +msgctxt "@info:error" +msgid "Could not reach Marketplace." +msgstr "" + +#: plugins/Marketplace/plugin.json +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "" + +#: plugins/Marketplace/plugin.json +msgctxt "name" +msgid "Marketplace" +msgstr "" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 +msgctxt "@title" +msgid "Changes from your account" +msgstr "" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +msgctxt "@button" +msgid "Dismiss" +msgstr "" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +#: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 +#: resources/qml/WelcomePages/WhatsNewContent.qml:175 +msgctxt "@button" +msgid "Next" +msgstr "Dalej" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "" + +#: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:47 +msgctxt "@text" +msgid "Please read and agree with the plugin licence." +msgstr "" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "" + +#: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:12 +msgctxt "@header" +msgid "Manage packages" +msgstr "" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:16 +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 "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" +msgid "Loading..." +msgstr "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:271 +msgctxt "@button" +msgid "In order to use the package you will need to restart Cura" +msgstr "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:279 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:300 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" +msgstr "" + +#: plugins/Marketplace/resources/qml/Materials.qml:8 +#: plugins/Marketplace/resources/qml/MissingPackages.qml:8 +msgctxt "@header" +msgid "Install Materials" +msgstr "" + +#: plugins/Marketplace/resources/qml/Materials.qml:12 +msgctxt "@text" +msgid "Select and install material profiles optimised for your UltiMaker 3D printers." +msgstr "" + +#: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "" + +#: plugins/Marketplace/resources/qml/OnboardBanner.qml:101 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205 +msgctxt "@button:label" +msgid "Learn More" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170 +msgctxt "@label Is followed by the name of an author" +msgid "By" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Disable" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Enable" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242 +msgctxt "@button" +msgid "Downgrading..." +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243 +msgctxt "@button" +msgid "Downgrade" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247 +msgctxt "@button" +msgid "Installing..." +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248 +msgctxt "@button" +msgid "Install" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252 +msgctxt "@button" +msgid "Uninstall" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Update" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Updating..." +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:193 +msgctxt "@header" +msgid "Compatible with Material Station" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "No" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "Yes" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:219 +msgctxt "@header" +msgid "Optimized for Air Manager" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Visit plug-in website" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Website" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:252 +msgctxt "@button" +msgid "Buy spool" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:261 +msgctxt "@button" +msgid "Safety datasheet" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:270 +msgctxt "@button" +msgid "Technical datasheet" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Failed to load packages:" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Retry?" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:167 +msgctxt "@button" +msgid "Loading" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No more results to load" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No results found with current filter" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:226 +msgctxt "@button" +msgid "Load more" +msgstr "" + +#: plugins/Marketplace/resources/qml/Plugins.qml:8 +msgctxt "@header" +msgid "Install Plugins" +msgstr "" + +#: plugins/Marketplace/resources/qml/Plugins.qml:12 +msgctxt "@text" +msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." +msgstr "" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 +msgctxt "@info" +msgid "UltiMaker Verified Plug-in" +msgstr "" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "UltiMaker Certified Material" +msgstr "" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 +msgctxt "@info" +msgid "UltiMaker Verified Package" +msgstr "" + +#: plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "Asystent Modelu 3D" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -838,1922 +2381,17 @@ msgstr "" "

    Dowiedz się, jak zapewnić najlepszą możliwą jakość oraz niezawodnośc wydruku.

    \n" "

    Zobacz przewodnik po jakości wydruku (strona w języku angielskim)

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 -#, 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 "Plik projektu {0} zawiera nieznany typ maszyny {1}. Nie można zaimportować maszyny. Zostaną zaimportowane modele." +#: plugins/ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Sprawdza możliwe problemy drukowania modeli i konfiguracji wydruku i podaje porady." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "Otwórz Plik Projektu" +#: plugins/ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Sprawdzacz Modelu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:659 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:658 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:711 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Zalecane" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:214 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Niestandardowe" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:390 -msgctxt "@info:status" -msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 -msgctxt "@info:title" -msgid "Material profiles not installed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 -msgctxt "@action:button" -msgid "Install Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "Plik 3MF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:238 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Błąd zapisu pliku 3mf." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:282 -#, python-brace-format -msgctxt "@error:material" -msgid "It was not possible to store material package information in project file: {material}. This project may not open correctly on other systems." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 -msgctxt "@info:title" -msgid "Failed to save material package information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "Plik 3MF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Plik Cura Project 3MF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Plik AMF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 -msgctxt "@info:title" -msgid "Backups" -msgstr "Kopie zapasowe" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Wystąpił błąd podczas wgrywania kopii zapasowej." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Wgrywanie kopii zapasowej..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Wgrywanie kopii zapasowej zakończone." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Wystąpił błąd podczas próby przywrócenia kopii zapasowej." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Zarządzaj kopiami zapasowymi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 -msgctxt "@message:button" -msgid "Report a bug" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 -msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:400 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "Nie można pociąć z obecnym materiałem, ponieważ nie jest on kompatybilny z wybraną maszyną lub konfiguracją." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:401 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:434 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:461 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:473 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:485 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:498 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "Nie można pociąć" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:433 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "Nie można pociąć z bieżącymi ustawieniami. Następujące ustawienia mają błędy: {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:460 -#, 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 "Nie można pokroić przez ustawienia osobne dla modelu. Następujące ustawienia mają błędy w jednym lub więcej modeli: {error_labels}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:472 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "Nie można pociąć, ponieważ wieża czyszcząca lub jej pozycja(e) są niewłaściwe." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:484 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "Nie można pociąć, ponieważ obecne są obiekty powiązane z wyłączonym ekstruderem %s." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 -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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Przetwarzanie warstw" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 -msgctxt "@info:title" -msgid "Information" -msgstr "Informacja" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Profile Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "Nie można uzyskać dostępu do informacji o aktualizacji." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s stable firmware available" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "Jak zaktualizować" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Aktualizacja Oprogramowania Sprzętowego" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Skompresowany Plik G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "Zapisywacz skompresowanego G-code nie obsługuje trybu tekstowego." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Pliki G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:350 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Analizowanie G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:506 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "Szczegóły G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 -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 "Przed wysłaniem pliku upewnij się, że G-code jest odpowiedni do konfiguracji drukarki. Przedstawienie G-kodu może nie być dokładne." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Plik G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "Zapisywacz G-code nie obsługuje trybu nietekstowego." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Przygotuj G-code przed eksportem." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Obraz JPG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Obraz JPEG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Obraz PNG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Obraz BMP" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Obraz GIF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Profile Cura 15.04" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Ustawienia drukarki" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 -msgctxt "@action:button" -msgid "Sync" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:12 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:79 -msgctxt "@button" -msgid "Decline" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:13 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53 -msgctxt "@button" -msgid "Agree" -msgstr "Zgadzam się" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Akceptowanie Licencji Wtyczki" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:28 -msgctxt "@label" -msgid "Installed Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:29 -msgctxt "@label" -msgid "Installed Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:33 -msgctxt "@label" -msgid "Bundled Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:34 -msgctxt "@label" -msgid "Bundled Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:43 -msgctxt "@label:property" -msgid "Unknown Package" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:66 -msgctxt "@label:property" -msgid "Unknown Author" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:117 -msgctxt "@info:error" -msgid "Could not interpret the server's response." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:148 -msgctxt "@info:error" -msgid "Could not reach Marketplace." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Monitor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 -msgctxt "@label" -msgid "Per Model Settings" -msgstr "Ustawienia każdego modelu osobno" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Konfiguruj ustawienia każdego modelu z osobna" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "Przetwarzanie końcowe" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "Modyfikuj G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "Przygotuj" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Podgląd" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Zapisz na dysk wymienny" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Zapisz na dysk wymienny {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 -msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "Nie ma żadnych formatów plików do zapisania!" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "Zapisywanie na Dysk Wymienny {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 -msgctxt "@info:title" -msgid "Saving" -msgstr "Zapisywanie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Nie mogę zapisać do {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 -#, 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 "Nie mogę znaleźć nazwy pliku podczas próby zapisu do {device}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "Nie można zapisać na wymiennym dysku {0}: {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Zapisano na dysk wymienny {0} jako {1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Plik Zapisany" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -msgctxt "@action:button" -msgid "Eject" -msgstr "Wyjmij" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Wyjmij urządzenie wymienne {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "Wyjęto {0}. Możesz teraz bezpiecznie wyjąć dysk." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Bezpiecznie Odłącz Urządzenie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "Nie można wysunąć {0}. Inny program może używać dysku." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Dysk wymienny" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Widok symulacji" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "Nie pokazuj tego komunikatu ponownie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "Widok warstwy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 -msgctxt "@text" -msgid "Unable to read example data file." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Widok modelu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "Blokada Podpory" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "Stwórz obszar, w którym podpory nie będą drukowane." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "Otwórz skompresowaną siatkę trójkątów" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "Cyfrowa wymiana zasobów COLLADA" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "Biblioteka glTF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "Załączony JSON glTF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Format trójkątów Stanforda" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Skompresowana cyfrowa wymiana zasobów COLLADA" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Pakiet Formatu Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Wypoziomuj stół" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Wybierz aktualizacje" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 -msgctxt "@action:button" -msgid "Print via cloud" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 -msgctxt "@properties:tooltip" -msgid "Print via cloud" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 -msgctxt "@info:status" -msgid "Connected via cloud" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 -msgctxt "@action:button" -msgid "Monitor print" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 -msgctxt "@action:tooltip" -msgid "Track the print in Ultimaker Digital Factory" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 -#, python-brace-format -msgctxt "@error:send" -msgid "Unknown error code when uploading print job: {0}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:242 -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:261 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:266 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:334 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:343 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:348 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:440 -msgctxt "info:name" -msgid "Ultimaker Digital Factory" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:352 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:356 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:442 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:443 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:444 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 -msgctxt "@title:window" -msgid "Remove printers?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 -#, python-brace-format -msgctxt "@label" -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] "" -msgstr[1] "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 -msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 -#, 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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 -msgctxt "@info:title" -msgid "Are you ready for cloud printing?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 -msgctxt "@action" -msgid "Get started" -msgstr "Rozpocznij" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 -msgctxt "@action" -msgid "Learn more" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 -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 "Próbujesz połączyć się z drukarką, na której nie działa Ultimaker Connect. Zaktualizuj drukarkę do najnowszej wersji firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "Zaktualizuj swoją drukarkę" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 -#, 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 wykryła profile materiałów, które nie zostały jeszcze zainstalowane na gospodarzu grupy {0}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Wysyłanie materiałów do drukarki" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 -#, 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 "Próbujesz połączyć się z {0}, ale nie jest to gospodarz grupy. Możesz odwiedzić stronę internetową, aby skonfigurować jako gospodarza." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Nie jest gospodarzem grupy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 -msgctxt "@action" -msgid "Configure group" -msgstr "Konfiguruj grupę" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "Poczekaj, aż bieżące zadanie zostanie wysłane." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Błąd druku" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "Nie można wgrać danych do drukarki." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Błąd sieci" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Wysyłanie zadania druku" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Przesyłanie zadania do drukarki." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "Zadanie drukowania zostało pomyślnie wysłane do drukarki." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Dane Wysłane" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Drukuj przez sieć" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Drukuj przez sieć" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Połączone przez sieć" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "Połącz przez sieć" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "jutro" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "dziś" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "Drukowanie USB" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Drukuj przez USB" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Drukuj przez USB" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 -msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Połączono przez USB" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 -msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "Trwa drukowanie przez USB, zamknięcie Cura spowoduje jego zatrzymanie. Jesteś pewien?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "Nadal trwa drukowanie. Cura nie może rozpocząć kolejnego wydruku przez USB, dopóki poprzedni wydruk nie zostanie zakończony." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Drukowanie w toku" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D Plik" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Widok X-Ray" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 -msgctxt "@title:window" -msgid "Open Project" -msgstr "Otwórz projekt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "Zaktualizuj istniejące" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "Utwórz nowy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:59 -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "Podsumowanie - Projekt Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108 -msgctxt "@info:tooltip" -msgid "How should the conflict in the machine be resolved?" -msgstr "Jak powinny być rozwiązywane błędy w maszynie?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:95 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Ustawienia drukarki" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:104 -msgctxt "@action:label" -msgid "Type" -msgstr "Typ" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:192 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -msgctxt "@action:label" -msgid "Printer Group" -msgstr "Grupa drukarek" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:217 -msgctxt "@info:tooltip" -msgid "How should the conflict in the profile be resolved?" -msgstr "Jak powinien zostać rozwiązany problem z profilem?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:220 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Ustawienia profilu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:250 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:375 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:244 -msgctxt "@action:label" -msgid "Name" -msgstr "Nazwa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:268 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:261 -msgctxt "@action:label" -msgid "Intent" -msgstr "Cel" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:286 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:228 -msgctxt "@action:label" -msgid "Not in profile" -msgstr "Nie w profilu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:292 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:233 -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "%1 nadpisanie" -msgstr[1] "%1 Zastępuje" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 -msgctxt "@action:label" -msgid "Derivative from" -msgstr "Pochodna z" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:311 -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "%1, %2 nadpisanie" -msgstr[1] "%1, %2 zastępuje" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:333 -msgctxt "@info:tooltip" -msgid "How should the conflict in the material be resolved?" -msgstr "Jak powinien zostać rozwiązany problem z materiałem?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:360 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Ustawienia materiału" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:396 -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "Ustawienie widoczności" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 -msgctxt "@action:label" -msgid "Mode" -msgstr "Tryb" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 -msgctxt "@action:label" -msgid "Visible settings:" -msgstr "Widoczne ustawienie:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "%1 poza %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:447 -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "Ładowanie projektu usunie wszystkie modele z platformy roboczej." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 -msgctxt "@action:button" -msgid "Open" -msgstr "Otwórz" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 -msgctxt "@action:button" -msgid "Open project anyway" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 -msgctxt "@action:button" -msgid "Install missing material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Chcesz więcej?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Utwórz kopię zapasową" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Automatyczne tworzenie kopii zapasowej" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Automatycznie twórz kopie zapasowe każdego dnia, w którym uruchomiono Curę." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 -msgctxt "@button" -msgid "Restore" -msgstr "Przywróć" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Usuń kopię zapasową" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Czy na pewno chcesz usunąć tę kopię zapasową? Tej czynności nie można cofnąć." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Przywróć kopię zapasową" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "Musisz zrestartować Curę przed przywróceniem kopii zapasowej. Czy chcesz teraz zamknąć Curę?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Wersja Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Drukarki" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materiały" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profile" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Pluginy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Kopie zapasowe cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Moje Kopie Zapasowe" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Nie masz żadnych kopii zapasowych. Użyj przycisku „Utwórz kopię zapasową”, aby go utworzyć." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Podczas fazy podglądu będziesz ograniczony do 5 widocznych kopii zapasowych. Usuń kopię zapasową, aby zobaczyć starsze." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Wykonaj kopię zapasową i zsynchronizuj ustawienia Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:212 -msgctxt "@button" -msgid "Sign in" -msgstr "Zaloguj" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 -msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 -msgctxt "@option" -msgid "Save Cura project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Aktualizacja Oprogramowania Sprzętowego" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 -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 "Oprogramowanie ukłądowe jest częścią oprogramowania działającego bezpośrednio na drukarce 3D. Oprogramowanie to steruje silnikami krokowymi, reguluje temperaturę i ostatecznie sprawia, że drukarka działa." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 -msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "Oprogramowanie ukłądowe dostarczane z nowymi drukarkami działa, ale nowe wersje mają zazwyczaj więcej funkcji i ulepszeń." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Automatycznie uaktualnij oprogramowanie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Prześlij niestandardowe oprogramowanie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "Oprogramowanie sprzętowe nie może być zaktualizowane, ponieważ nie ma połączenia z drukarką." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "Oprogramowanie sprzętowe nie może być zaktualizowane, ponieważ połączenie z drukarką nie wspiera usługi." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Wybierz niestandardowe oprogramowanie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Aktualizacja oprogramowania układowego" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Aktualizowanie oprogramowania." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Aktualizacja oprogramowania zakończona." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Aktualizacja oprogramowania nie powiodła się z powodu nieznanego błędu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Aktualizacja oprogramowania nie powiodła się z powodu błędu komunikacji." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Aktualizacja oprogramowania nie powiodła się z powodu błędu wejścia / wyjścia." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Aktualizacja oprogramowania nie powiodła się z powodu utraconego oprogramowania." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:14 -msgctxt "@title:window" -msgid "Convert Image" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 -msgctxt "@action:label" -msgid "Height (mm)" -msgstr "Wysokość (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "Maksymalna odległość każdego piksela od \"Bazy.\"" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 -msgctxt "@action:label" -msgid "Base (mm)" -msgstr "Baza (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 -msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "Wysokość podstawy od stołu w milimetrach." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 -msgctxt "@action:label" -msgid "Width (mm)" -msgstr "Szerokość (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 -msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 -msgctxt "@action:label" -msgid "Depth (mm)" -msgstr "Głębokość (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 -msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "Głębokość w milimetrach na stole" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 -msgctxt "@item:inlistbox" -msgid "Darker is higher" -msgstr "Ciemniejsze jest wyższe" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -msgctxt "@item:inlistbox" -msgid "Lighter is higher" -msgstr "Jaśniejszy jest wyższy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 -msgctxt "@info:tooltip" -msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." -msgstr "Dla litofanów ciemne piksele powinny odpowiadać grubszym miejscom, aby zablokować więcej światła. Dla zaznaczenia wysokości map, jaśniejsze piksele oznaczają wyższy teren, więc jaśniejsze piksele powinny odpowiadać wyższym położeniom w wygenerowanym modelu 3D." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:205 -msgctxt "@action:label" -msgid "Color Model" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:224 -msgctxt "@item:inlistbox" -msgid "Linear" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 -msgctxt "@item:inlistbox" -msgid "Translucency" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 -msgctxt "@info:tooltip" -msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 -msgctxt "@action:label" -msgid "1mm Transmittance (%)" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 -msgctxt "@info:tooltip" -msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 -msgctxt "@action:label" -msgid "Smoothing" -msgstr "Wygładzanie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:298 -msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "Ilość wygładzania do zastosowania do obrazu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:143 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:80 -msgctxt "@action:button" -msgid "OK" -msgstr "OK" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Drukarka" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Ustawienia dyszy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Rozmiar dyszy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Kompatybilna średnica materiału" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Korekcja dyszy X" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Korekcja dyszy Y" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Numer Wentylatora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Początkowy G-code ekstrudera" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Końcowy G-code ekstrudera" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Ustawienia drukarki" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (Szerokość)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Głębokość)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Wysokość)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Kształt stołu roboczego" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 -msgctxt "@label" -msgid "Origin at center" -msgstr "Początek na środku" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 -msgctxt "@label" -msgid "Heated bed" -msgstr "Podgrzewany stół" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Grzany obszar roboczy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 -msgctxt "@label" -msgid "G-code flavor" -msgstr "Wersja G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Ustawienia głowicy" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 -msgctxt "@label" -msgid "X min" -msgstr "X min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 -msgctxt "@label" -msgid "Y min" -msgstr "Y min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 -msgctxt "@label" -msgid "X max" -msgstr "X max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 -msgctxt "@label" -msgid "Y max" -msgstr "Y max" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Wysokość wózka" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Liczba ekstruderów" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "Początkowy G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400 -msgctxt "@title:label" -msgid "End G-code" -msgstr "Końcowy G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 -msgctxt "@title" -msgid "Changes from your account" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -msgctxt "@button" -msgid "Dismiss" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:118 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:175 -msgctxt "@button" -msgid "Next" -msgstr "Dalej" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 -msgctxt "@title" -msgid "Install missing Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 -msgctxt "@button" -msgid "Plugin license agreement" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47 -msgctxt "@text" -msgid "Please read and agree with the plugin licence." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 -msgctxt "@button" -msgid "Accept" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 -msgctxt "@header" -msgid "Manage packages" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15 -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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 -msgctxt "@info:tooltip" -msgid "Manage packages" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 -msgctxt "@title" -msgid "Loading..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 -msgctxt "@button" -msgid "Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 -msgctxt "@button" -msgid "Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 -msgctxt "@info" -msgid "Search in the browser" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:271 -msgctxt "@button" -msgid "In order to use the package you will need to restart Cura" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:279 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:8 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MissingPackages.qml:8 -msgctxt "@header" -msgid "Install Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 -msgctxt "@text" -msgid "Select and install material profiles optimised for your Ultimaker 3D printers." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:101 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:207 -msgctxt "@button:label" -msgid "Learn More" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:172 -msgctxt "@label Is followed by the name of an author" -msgid "By" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Enable" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Disable" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 -msgctxt "@button" -msgid "Downgrading..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 -msgctxt "@button" -msgid "Downgrade" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 -msgctxt "@button" -msgid "Installing..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 -msgctxt "@button" -msgid "Install" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 -msgctxt "@button" -msgid "Uninstall" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Updating..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Update" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 -msgctxt "@header" -msgid "Package details" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 -msgctxt "@button:tooltip" -msgid "Back" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 -msgctxt "@header" -msgid "Description" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 -msgctxt "@header" -msgid "Compatible printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:134 -msgctxt "@info" -msgid "No compatibility information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:152 -msgctxt "@header" -msgid "Compatible support materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176 -msgctxt "@info No materials" -msgid "None" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:193 -msgctxt "@header" -msgid "Compatible with Material Station" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "Yes" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "No" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:219 -msgctxt "@header" -msgid "Optimized for Air Manager" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Visit plug-in website" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Website" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:252 -msgctxt "@button" -msgid "Buy spool" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:261 -msgctxt "@button" -msgid "Safety datasheet" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:270 -msgctxt "@button" -msgid "Technical datasheet" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Failed to load packages:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Retry?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:167 -msgctxt "@button" -msgid "Loading" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No more results to load" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No results found with current filter" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:226 -msgctxt "@button" -msgid "Load more" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8 -msgctxt "@header" -msgid "Install Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12 -msgctxt "@text" -msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 -msgctxt "@info" -msgid "Ultimaker Verified Plug-in" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 -msgctxt "@info" -msgid "Ultimaker Certified Material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 -msgctxt "@info" -msgid "Ultimaker Verified Package" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -2766,2832 +2404,3751 @@ msgstr "" "- Sprawdź, czy drukarka jest podłączona do sieci.\n" "- Sprawdź, czy jesteś zalogowany, aby znaleźć drukarki podłączone do chmury." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 +#: plugins/MonitorStage/MonitorMain.qml:113 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "Podłącz drukarkę do sieci." -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 +#: plugins/MonitorStage/MonitorMain.qml:148 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "Pokaż instrukcję użytkownika online" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:163 +#: plugins/MonitorStage/MonitorMain.qml:164 msgctxt "@info" msgid "In order to monitor your print from Cura, please connect the printer." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 +#: plugins/MonitorStage/__init__.py:14 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "" + +#: plugins/MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Etap Monitorowania" + +#: plugins/MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Zapewnia etap monitorowania w Cura." + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 msgctxt "@label" msgid "Mesh Type" msgstr "Typ siatki" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 msgctxt "@label" msgid "Normal model" msgstr "Normalny model" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 msgctxt "@label" msgid "Print as support" msgstr "Drukuj jako podpora" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 msgctxt "@label" msgid "Modify settings for overlaps" msgstr "Modyfikuj ustawienia nakładania" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 msgctxt "@label" msgid "Don't support overlaps" msgstr "Nie wspieraj nałożenia" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 msgctxt "@item:inlistbox" msgid "Infill mesh only" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161 msgctxt "@item:inlistbox" msgid "Cutting mesh" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386 msgctxt "@action:button" msgid "Select settings" msgstr "Wybierz ustawienia" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 msgctxt "@title:window" msgid "Select Settings to Customize for this model" msgstr "Wybierz Ustawienia, aby dostosować ten model" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: resources/qml/Preferences/SettingVisibilityPage.qml:102 msgctxt "@label:textbox" msgid "Filter..." msgstr "Filtr..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 msgctxt "@label:checkbox" msgid "Show all" msgstr "Pokaż wszystko" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +#: plugins/PerObjectSettingsTool/__init__.py:14 +msgctxt "@label" +msgid "Per Model Settings" +msgstr "Ustawienia każdego modelu osobno" + +#: plugins/PerObjectSettingsTool/__init__.py:15 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Konfiguruj ustawienia każdego modelu z osobna" + +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Narzędzie Ustawień dla Każdego Modelu" + +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Zapewnia Ustawienia dla Każdego Modelu." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +msgctxt "@item:inmenu" +msgid "Post Processing" +msgstr "Przetwarzanie końcowe" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +msgctxt "@item:inmenu" +msgid "Modify G-Code" +msgstr "Modyfikuj G-code" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Plugin post-processingu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 msgctxt "@label" msgid "Post Processing Scripts" msgstr "Skrypty post-processingu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 msgctxt "@action" msgid "Add a script" msgstr "Dodaj skrypt" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 msgctxt "@label" msgid "Settings" msgstr "Ustawienia" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:459 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460 msgctxt "@info:tooltip" msgid "Change active post-processing scripts." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:463 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 msgctxt "@info:tooltip" msgid "The following script is active:" msgid_plural "The following scripts are active:" msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:47 +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Dodatek, który pozwala użytkownikowi tworzenie skryptów do post processingu" + +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Przetwarzanie końcowe" + +#: plugins/PrepareStage/PrepareMenu.qml:74 +msgctxt "@button" +msgid "Add printer" +msgstr "Dodaj drukarkę" + +#: plugins/PrepareStage/PrepareMenu.qml:90 +msgctxt "@button" +msgid "Manage printers" +msgstr "Zarządzaj drukarkami" + +#: plugins/PrepareStage/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "Przygotuj" + +#: plugins/PrepareStage/plugin.json +msgctxt "name" +msgid "Prepare Stage" +msgstr "Etap Przygotowania" + +#: plugins/PrepareStage/plugin.json +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Zapewnia etap przygotowania w Cura." + +#: plugins/PreviewStage/__init__.py:13 +msgctxt "@item:inmenu" +msgid "Preview" +msgstr "Podgląd" + +#: plugins/PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Podgląd" + +#: plugins/PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Dostarcza podgląd w Cura." + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "Zapisz na dysk wymienny" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "Zapisz na dysk wymienny {0}" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "Nie ma żadnych formatów plików do zapisania!" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "Zapisywanie na Dysk Wymienny {0}" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 +msgctxt "@info:title" +msgid "Saving" +msgstr "Zapisywanie" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Nie mogę zapisać do {0}: {1}" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 +#, 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 "Nie mogę znaleźć nazwy pliku podczas próby zapisu do {device}." + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 +#, python-brace-format +msgctxt "@info:status" +msgid "Could not save to removable drive {0}: {1}" +msgstr "Nie można zapisać na wymiennym dysku {0}: {1}" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "Zapisano na dysk wymienny {0} jako {1}" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 +msgctxt "@info:title" +msgid "File Saved" +msgstr "Plik Zapisany" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +msgctxt "@action:button" +msgid "Eject" +msgstr "Wyjmij" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "Wyjmij urządzenie wymienne {0}" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "Wyjęto {0}. Możesz teraz bezpiecznie wyjąć dysk." + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Bezpiecznie Odłącz Urządzenie" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "Nie można wysunąć {0}. Inny program może używać dysku." + +#: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "Dysk wymienny" + +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Zapewnia wsparcie dla podłączania i zapisywania dysków zewnętrznych." + +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Wtyczka Urządzenia Wyjścia Dysku Zewnętrznego" + +#: plugins/SentryLogger/plugin.json +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "" + +#: plugins/SentryLogger/plugin.json +msgctxt "name" +msgid "Sentry Logger" +msgstr "" + +#: plugins/SimulationView/SimulationView.py:129 +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "" + +#: plugins/SimulationView/SimulationView.py:130 +msgctxt "@info:title" +msgid "No layers to show" +msgstr "" + +#: plugins/SimulationView/SimulationView.py:132 +#: plugins/SolidView/SolidView.py:74 +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "Nie pokazuj tego komunikatu ponownie" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:18 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:47 msgctxt "@label" msgid "Color scheme" msgstr "Schemat kolorów" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:104 msgctxt "@label:listbox" msgid "Material Color" msgstr "Kolor materiału" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:108 msgctxt "@label:listbox" msgid "Line Type" msgstr "Rodzaj linii" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:112 msgctxt "@label:listbox" msgid "Speed" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:116 msgctxt "@label:listbox" msgid "Layer Thickness" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:120 msgctxt "@label:listbox" msgid "Line Width" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:124 msgctxt "@label:listbox" msgid "Flow" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:164 msgctxt "@label" msgid "Compatibility Mode" msgstr "Tryb zgodności" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:231 msgctxt "@label" msgid "Travels" msgstr "Ruchy" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:237 msgctxt "@label" msgid "Helpers" msgstr "Pomoce" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:243 msgctxt "@label" msgid "Shell" msgstr "Obrys" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:64 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:249 msgctxt "@label" msgid "Infill" msgstr "Wypełnienie" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" msgid "Starts" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:304 msgctxt "@label" msgid "Only Show Top Layers" msgstr "Pokaż tylko najwyższe warstwy" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:313 msgctxt "@label" msgid "Show 5 Detailed Layers On Top" msgstr "Pokaż 5 Szczegółowych Warstw" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:326 msgctxt "@label" msgid "Top / Bottom" msgstr "Góra/ Dół" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:330 msgctxt "@label" msgid "Inner Wall" msgstr "Wewnętrzna ściana" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:397 msgctxt "@label" msgid "min" msgstr "min" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:462 msgctxt "@label" msgid "max" msgstr "max" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 +#: plugins/SimulationView/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "Widok warstwy" + +#: plugins/SimulationView/plugin.json +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "" + +#: plugins/SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "Widok Symulacji" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 msgctxt "@title:window" msgid "More information on anonymous data collection" msgstr "Wiećej informacji o zbieraniu anonimowych danych" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 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 zbiera anonimowe dane w celu poprawy jakości druku i komfortu użytkowania. Poniżej znajduje się przykład wszystkich udostępnianych danych:" +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 zbiera anonimowe dane w celu poprawy jakości druku i komfortu użytkowania. Poniżej znajduje się przykład wszystkich udostępnianych danych:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 msgctxt "@text:window" msgid "I don't want to send anonymous data" msgstr "Nie chcę wysyłać anonimowych danych" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Pozwól na wysyłanie anonimowych danych" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Poziomowanie stołu" +#: plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Informacje o cięciu" + +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Zatwierdza anonimowe informację o cięciu. Może być wyłączone w preferencjach." + +#: plugins/SolidView/SolidView.py:71 +msgctxt "@info:status" +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "" + +#: plugins/SolidView/SolidView.py:73 +msgctxt "@info:title" +msgid "Model Errors" +msgstr "" + +#: plugins/SolidView/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "Widok modelu" + +#: plugins/SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Zapewnia normalny widok siatki." + +#: plugins/SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Widok Bryły" + +#: plugins/SupportEraser/__init__.py:12 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 "Aby upewnić się, że wydruki będą wychodziły świetne, możesz teraz wyregulować stół. Po kliknięciu przycisku \"Przejdź do następnego położenia\" dysza będzie się poruszać do różnych pozycji, które można wyregulować." +msgid "Support Blocker" +msgstr "Blokada Podpory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 -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." +#: plugins/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "Stwórz obszar, w którym podpory nie będą drukowane." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Rozpocznij poziomowanie stołu roboczego" +#: plugins/SupportEraser/plugin.json +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Tworzy siatkę do blokowania drukowania podpór w określonych miejscach" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Przejdź do następnego położenia" +#: plugins/SupportEraser/plugin.json +msgctxt "name" +msgid "Support Eraser" +msgstr "Usuwacz Podpór" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Proszę wybrać ulepszenia wykonane w tym Ultimaker Original" +#: plugins/TrimeshReader/__init__.py:15 +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "Otwórz skompresowaną siatkę trójkątów" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Płyta grzewcza (zestaw oficjalny lub własnej roboty)" +#: plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "Cyfrowa wymiana zasobów COLLADA" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 +#: plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "Biblioteka glTF" + +#: plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "Załączony JSON glTF" + +#: plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Format trójkątów Stanforda" + +#: plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "Skompresowana cyfrowa wymiana zasobów COLLADA" + +#: plugins/TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Zapewnia wsparcie dla czytania plików modeli." + +#: plugins/TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Czytnik siatki trójkątów" + +#: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "UltiMaker Format Package" +msgstr "Pakiet Formatu UltiMaker" + +#: plugins/UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "" + +#: plugins/UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "Czytnik UFP" + +#: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80 +#: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115 +#: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180 +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "" + +#: plugins/UFPWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "" + +#: plugins/UFPWriter/plugin.json +msgctxt "name" +msgid "UFP Writer" +msgstr "Zapisywacz UFP" + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "" + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Połączenie sieciowe UltiMaker" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 msgctxt "@title:window" msgid "Connect to Networked Printer" msgstr "Połącz się z drukarką sieciową" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -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 "Aby drukować bezpośrednio na drukarce przez sieć, upewnij się, że drukarka jest podłączona do sieci za pomocą kabla sieciowego lub do sieci WIFI. Jeśli nie podłączysz Cury do drukarki, możesz nadal używać napędu USB do przesyłania plików G-Code do drukarki." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 msgctxt "@label" msgid "Select your printer from the list below:" msgstr "Wybierz swoją drukarkę z poniższej listy:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +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 "Aby drukować bezpośrednio na drukarce przez sieć, upewnij się, że drukarka jest podłączona do sieci za pomocą kabla sieciowego lub do sieci WIFI. Jeśli nie podłączysz Cury do drukarki, możesz nadal używać napędu USB do przesyłania plików G-Code do drukarki." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 msgctxt "@action:button" msgid "Edit" msgstr "Edycja" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:140 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:321 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 +#: resources/qml/Preferences/MachinesPage.qml:153 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:186 +#: resources/qml/Preferences/ProfilesPage.qml:321 msgctxt "@action:button" msgid "Remove" msgstr "Usunąć" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 msgctxt "@action:button" msgid "Refresh" msgstr "Odśwież" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Jeżeli twojej drukarki nie ma na liście, przeczytaj poradnik o problemach z drukowaniem przez sieć" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 msgctxt "@label" msgid "Type" msgstr "Rodzaj" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 msgctxt "@label" msgid "Firmware version" msgstr "Wersja oprogramowania" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 msgctxt "@label" msgid "Address" msgstr "Adres" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 msgctxt "@label" msgid "This printer is not set up to host a group of printers." msgstr "Ta drukarka nie jest skonfigurowana jako host dla grupy drukarek." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Ta drukarka jest hostem grupy %1 drukarek." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 msgctxt "@label" msgid "The printer at this address has not yet responded." msgstr "Drukarka pod tym adresem jeszcze nie odpowiedziała." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 msgctxt "@action:button" msgid "Connect" msgstr "Połącz" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 msgctxt "@title:window" msgid "Invalid IP address" msgstr "Nieprawidłowy adres IP" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 msgctxt "@text" msgid "Please enter a valid IP address." msgstr "Proszę podać poprawny adres IP." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 msgctxt "@title:window" msgid "Printer Address" msgstr "Adres drukarki" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 msgctxt "@label" msgid "Enter the IP address of your printer on the network." msgstr "Wprowadź adres IP drukarki." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 msgctxt "@title:window" msgid "Configuration Changes" msgstr "Zmiany konfiguracji" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 msgctxt "@action:button" msgid "Override" msgstr "Nadpisz" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 msgctxt "@label" msgid "The assigned printer, %1, requires the following configuration change:" msgid_plural "The assigned printer, %1, requires the following configuration changes:" msgstr[0] "Przypisana drukarka, %1, wymaga następującej zmiany konfiguracji:" msgstr[1] "Przypisana drukarka, %1, wymaga następujących zmian konfiguracji:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 msgctxt "@label" msgid "The printer %1 is assigned, but the job contains an unknown material configuration." msgstr "Drukarka %1 jest przypisana, ale zadanie zawiera nieznaną konfigurację materiału." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 msgctxt "@label" msgid "Change material %1 from %2 to %3." msgstr "Zmień materiał %1 z %2 na %3." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 msgctxt "@label" msgid "Load %3 as material %1 (This cannot be overridden)." msgstr "Załaduj %3 jako materiał %1 (Nie można nadpisać)." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 msgctxt "@label" msgid "Change print core %1 from %2 to %3." msgstr "Zmień rdzeń drukujący %1 z %2 na %3." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Zmień stół na %1 (Nie można nadpisać)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110 msgctxt "@label" msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." msgstr "Nadpisanie spowoduje użycie określonych ustawień w istniejącej konfiguracji drukarki. Może to spowodować niepowodzenie druku." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:178 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:175 -msgctxt "@label" -msgid "Glass" -msgstr "Szkło" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154 -msgctxt "@label" -msgid "Aluminum" -msgstr "Aluminum" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 msgctxt "@label" msgid "Move to top" msgstr "Przesuń na początek" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155 msgctxt "@label" msgid "Delete" msgstr "Usuń" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:284 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186 +#: resources/qml/MonitorButton.qml:284 msgctxt "@label" msgid "Resume" msgstr "Ponów" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188 msgctxt "@label" msgid "Pausing..." msgstr "Zatrzymywanie..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190 msgctxt "@label" msgid "Resuming..." msgstr "Przywracanie..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:288 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192 +#: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288 msgctxt "@label" msgid "Pause" msgstr "Wstrzymaj" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Przerywanie..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 msgctxt "@label" msgid "Abort" msgstr "Anuluj" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:142 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Aborting..." +msgstr "Przerywanie..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218 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 "Czy jesteś pewien, że chcesz przesunąć %1 na początek kolejki?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219 msgctxt "@window:title" msgid "Move print job to top" msgstr "Przesuń zadanie drukowania na początek" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:151 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227 msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to delete %1?" msgstr "Czy jesteś pewien, że chcesz usunąć %1?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228 msgctxt "@window:title" msgid "Delete print job" msgstr "Usuń zadanie drukowania" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:160 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236 msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to abort %1?" msgstr "Czy jesteś pewien, że chcesz anulować %1?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237 +#: resources/qml/MonitorButton.qml:326 msgctxt "@window:title" msgid "Abort print" msgstr "Anuluj wydruk" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Zarządzaj drukarkami" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:239 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Zaktualizuj oprogramowanie drukarki, aby zdalnie zarządzać kolejką." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:275 -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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Wczytywanie..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Niedostępne" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Nieosiągalna" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347 -msgctxt "@label:status" -msgid "Idle" -msgstr "Zajęta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Przygotowyję..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Printing" -msgstr "Drukowanie" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397 -msgctxt "@label" -msgid "Untitled" -msgstr "Bez tytułu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:412 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anonimowa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:433 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Wymaga zmian konfiguracji" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:447 -msgctxt "@action:button" -msgid "Details" -msgstr "Szczegóły" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 msgctxt "@label" msgid "Unavailable printer" msgstr "Drukarka niedostępna" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 msgctxt "@label" msgid "First available" msgstr "Pierwsza dostępna" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Zaktualizuj oprogramowanie drukarki, aby zdalnie zarządzać kolejką." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 msgctxt "@label:status" msgid "Aborted" msgstr "Anulowano" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 msgctxt "@label:status" msgid "Finished" msgstr "Zakończono" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Przygotowyję..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 msgctxt "@label:status" msgid "Aborting..." msgstr "Przerywanie..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 msgctxt "@label:status" msgid "Failed" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 msgctxt "@label:status" msgid "Pausing..." msgstr "Zatrzymywanie..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 msgctxt "@label:status" msgid "Paused" msgstr "Wstrzymana" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 msgctxt "@label:status" msgid "Resuming..." msgstr "Przywracanie..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 msgctxt "@label:status" msgid "Action required" msgstr "Konieczne są działania" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 msgctxt "@label:status" msgid "Finishes %1 at %2" msgstr "Zakończone %1 z %2" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Zarządzaj drukarkami" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280 +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 "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Wczytywanie..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Niedostępne" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Nieosiągalna" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Idle" +msgstr "Zajęta" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361 +msgctxt "@label:status" +msgid "Printing" +msgstr "Drukowanie" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402 +msgctxt "@label" +msgid "Untitled" +msgstr "Bez tytułu" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417 +msgctxt "@label" +msgid "Anonymous" +msgstr "Anonimowa" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Wymaga zmian konfiguracji" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452 +msgctxt "@action:button" +msgid "Details" +msgstr "Szczegóły" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 msgctxt "@label" msgid "Queued" msgstr "W kolejce" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64 msgctxt "@label link to connect manager" msgid "Manage in browser" msgstr "Zarządzaj w przeglądarce" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91 msgctxt "@label" msgid "There are no print jobs in the queue. Slice and send a job to add one." msgstr "W kolejce nie ma zadań drukowania. Potnij i wyślij zadanie, aby dodać." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:98 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 msgctxt "@label" msgid "Print jobs" msgstr "Zadania druku" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108 msgctxt "@label" msgid "Total print time" msgstr "Łączny czas druku" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117 msgctxt "@label" msgid "Waiting for" msgstr "Oczekiwanie na" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117 +msgctxt "@info" +msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129 +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 msgctxt "@title:window" msgid "Print over network" msgstr "Drukuj przez sieć" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 msgctxt "@action:button" msgid "Print" msgstr "Drukuj" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 msgctxt "@label" msgid "Printer selection" msgstr "Wybór drukarki" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162 +msgctxt "@action:button" +msgid "Print via cloud" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163 +msgctxt "@properties:tooltip" +msgid "Print via cloud" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164 +msgctxt "@info:status" +msgid "Connected via cloud" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276 +msgctxt "@action:button" +msgid "Monitor print" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278 +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298 +#, python-brace-format +msgctxt "@error:send" +msgid "Unknown error code when uploading print job: {0}" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23 +msgctxt "info:name" +msgid "Ultimaker Digital Factory" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425 +#, 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 "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426 +#, 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 "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427 +#, 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 "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474 +msgctxt "@title:window" +msgid "Remove printers?" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477 +#, python-brace-format +msgctxt "@label" +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] "" +msgstr[1] "" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +msgctxt "@label" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#, 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 "" + +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +msgctxt "@action" +msgid "Get started" +msgstr "Rozpocznij" + +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24 +msgctxt "@action" +msgid "Learn more" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +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 "Próbujesz połączyć się z drukarką, na której nie działa UltiMaker Connect. Zaktualizuj drukarkę do najnowszej wersji firmware." + +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Zaktualizuj swoją drukarkę" + +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#, 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 wykryła profile materiałów, które nie zostały jeszcze zainstalowane na gospodarzu grupy {0}." + +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "Wysyłanie materiałów do drukarki" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "" +msgstr[1] "" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29 +#, python-brace-format +msgctxt "info:status Filled in with printer name and printer model." +msgid "Adding printer {name} ({model}) from your account" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "" +msgstr[1] "" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#, 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 "Próbujesz połączyć się z {0}, ale nie jest to gospodarz grupy. Możesz odwiedzić stronę internetową, aby skonfigurować jako gospodarza." + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "Nie jest gospodarzem grupy" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +msgctxt "@action" +msgid "Configure group" +msgstr "Konfiguruj grupę" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18 +msgctxt "@info:status" +msgid "You will receive a confirmation via email when the print job is approved" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19 +msgctxt "@info:title" +msgid "The print job was successfully submitted" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22 +msgctxt "@action" +msgid "Manage print jobs" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "Poczekaj, aż bieżące zadanie zostanie wysłane." + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +msgctxt "@info:title" +msgid "Print error" +msgstr "Błąd druku" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "Nie można wgrać danych do drukarki." + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +msgctxt "@info:title" +msgid "Network error" +msgstr "Błąd sieci" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "Wysyłanie zadania druku" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Przesyłanie zadania do drukarki." + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "Zadanie drukowania zostało pomyślnie wysłane do drukarki." + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "Dane Wysłane" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "" +msgstr[1] "" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "" +msgstr[1] "" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "Drukuj przez sieć" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Drukuj przez sieć" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "Połączone przez sieć" + +#: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +msgctxt "@action" +msgid "Connect via Network" +msgstr "Połącz przez sieć" + +#: plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "jutro" + +#: plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "dziś" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "Drukowanie USB" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:43 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "Drukuj przez USB" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:44 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Drukuj przez USB" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:80 +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "Połączono przez USB" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:110 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "Trwa drukowanie przez USB, zamknięcie Cura spowoduje jego zatrzymanie. Jesteś pewien?" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:135 +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "Nadal trwa drukowanie. Cura nie może rozpocząć kolejnego wydruku przez USB, dopóki poprzedni wydruk nie zostanie zakończony." + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Drukowanie w toku" + +#: plugins/USBPrinting/plugin.json +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Akceptuje G-Code i wysyła je do drukarki. Wtyczka może też aktualizować oprogramowanie." + +#: plugins/USBPrinting/plugin.json +msgctxt "name" +msgid "USB printing" +msgstr "Drukowanie USB" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 +msgctxt "@action" +msgid "Level build plate" +msgstr "Wypoziomuj stół" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Poziomowanie stołu" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 +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 "Aby upewnić się, że wydruki będą wychodziły świetne, możesz teraz wyregulować stół. Po kliknięciu przycisku \"Przejdź do następnego położenia\" dysza będzie się poruszać do różnych pozycji, które można wyregulować." + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 +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." + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Rozpocznij poziomowanie stołu roboczego" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "Przejdź do następnego położenia" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "Wybierz aktualizacje" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this UltiMaker Original" +msgstr "Proszę wybrać ulepszenia wykonane w tym UltiMaker Original" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "Płyta grzewcza (zestaw oficjalny lub własnej roboty)" + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Zapewnia czynności maszyny dla urządzeń UltiMaker (na przykład kreator poziomowania stołu, wybór ulepszeń itp.)." + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Ulepsza konfigurację z Cura 2.1 do Cura 2.2." + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Ulepszenie Wersji z 2.1 do 2.2" + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Ulepsza konfigurację z Cura 2.2 do Cura 2.4." + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Ulepszenie Wersji z 2.2 do 2.4" + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Ulepsza konfigurację z Cura 2.5 do Cura 2.6." + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Ulepszenie Wersji z 2.5 do 2.6" + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Ulepsza konfigurację z Cura 2.6 do Cura 2.7." + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Ulepszenie Wersji z 2.6 do 2.7" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Ulepsza konfigurację z Cura 2.7 do Cura 3.0." + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Ulepszenie Wersji 2.7 do 3.0" + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Ulepsza konfigurację z Cura 3.0 do Cura 3.1." + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Ulepszenie Wersji 3.0 do 3.1" + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Ulepsza konfigurację z Cura 3.2 do Cura 3.3." + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Ulepszenie Wersji z 3.2 do 3.3" + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Ulepsza konfigurację z Cura 3.3 do Cura 3.4." + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Ulepszenie Wersji z 3.3 do 3.4" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Ulepsza konfigurację z Cura 3.4 do Cura 3.5." + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Ulepszenie Wersji z 3.4 do 3.5" + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Uaktualnia konfiguracje z Cura 3.5 to Cura 4.0." + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Uaktualnij wersję 3.5 do 4.0" + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Uaktualnia konfiguracje z Cura 4.0 to Cura 4.1." + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Uaktualnij wersję 4.0 do 4.1" + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Uaktualnia konfiguracje z Cura 4.11 to Cura 4.12." + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Uaktualnij wersję 4.11 do 4.12" + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Uaktualnia konfiguracje z Cura 4.13 to Cura 5.0." + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Uaktualnij wersję 4.13 do 5.0" + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Uaktualnia konfiguracje z Cura 4.1 to Cura 4.2." + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Uaktualnij wersję 4.1 do 4.2" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Uaktualnia konfiguracje z Cura 4.2 to Cura 4.3." + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Uaktualnij wersję 4.2 do 4.3" + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Uaktualnia konfiguracje z Cura 4.3 to Cura 4.4." + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Uaktualnij wersję 4.3 do 4.4" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Uaktualnia konfiguracje z Cura 4.4 to Cura 4.5." + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Uaktualnij wersję 4.4 do 4.5" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Uaktualnia konfiguracje z Cura 4.5 to Cura 4.6." + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Uaktualnij wersję 4.5 do 4.6" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Uaktualnia konfiguracje z Cura 4.6.0 to Cura 4.6.2." + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Uaktualnij wersję 4.6.0 do 4.6.2" + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Uaktualnia konfiguracje z Cura 4.6.2 to Cura 4.7." + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Uaktualnij wersję 4.6.2 do 4.7" + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Uaktualnia konfiguracje z Cura 4.7 to Cura 4.8." + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Uaktualnij wersję 4.7 do 4.8" + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Uaktualnia konfiguracje z Cura 4.8 to Cura 4.9." + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Uaktualnij wersję 4.8 do 4.9" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Uaktualnia konfiguracje z Cura 4.9 to Cura 4.10." + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Uaktualnij wersję 4.9 do 4.10" + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Ulepsza konfigurację z Cura 5.2 do Cura 5.3." + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Ulepszenie Wersji z 5.2 do 5.3" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "" + +#: plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3D Plik" + +#: plugins/X3DReader/plugin.json +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Zapewnia możliwość czytania plików X3D." + +#: plugins/X3DReader/plugin.json +msgctxt "name" +msgid "X3D Reader" +msgstr "Czytnik X3D" + +#: plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Widok X-Ray" + +#: plugins/XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Zapewnia widok rentgena." + +#: plugins/XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Widok Rentgena" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Profile Materiału" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Zapewnia możliwość czytania i tworzenia profili materiałów opartych o XML." + +#: resources/qml/Account/AccountWidget.qml:24 msgctxt "@action:button" msgid "Sign in" msgstr "Zaloguj" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: resources/qml/Account/GeneralOperations.qml:19 +#: resources/qml/WelcomePages/CloudContent.qml:64 msgctxt "@label" -msgid "Sign in to the Ultimaker platform" +msgid "Sign in to the UltiMaker platform" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 +#: resources/qml/Account/GeneralOperations.qml:39 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" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 +#: resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" -msgid "Create a free Ultimaker account" +msgid "Create a free UltiMaker account" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 +#: resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 +#: resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 +#: resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 +#: resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 +#: resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +#: resources/qml/Account/UserOperations.qml:78 msgctxt "@label The argument is a timestamp" msgid "Last update: %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +#: resources/qml/Account/UserOperations.qml:107 msgctxt "@button" -msgid "Ultimaker Account" +msgid "UltiMaker Account" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +#: resources/qml/Account/UserOperations.qml:126 msgctxt "@button" msgid "Sign Out" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" msgid "No time estimation available" msgstr "Szacunkowy czas niedostępny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:77 msgctxt "@label" msgid "No cost estimation available" msgstr "Szacunkowy koszt niedostępny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:127 msgctxt "@button" msgid "Preview" msgstr "Podgląd" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" msgid "Time estimation" msgstr "Szacunkowy czas" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 +#: resources/qml/ActionPanel/PrintJobInformation.qml:107 msgctxt "@label" msgid "Material estimation" msgstr "Szacunkowy materiał" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:156 +#: resources/qml/ActionPanel/PrintJobInformation.qml:156 msgctxt "@label m for meter" msgid "%1m" msgstr "%1m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:157 +#: resources/qml/ActionPanel/PrintJobInformation.qml:157 msgctxt "@label g for grams" msgid "%1g" msgstr "%1g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:54 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Cięcie..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:78 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:78 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "Nie można pociąć" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Processing" msgstr "Przetwarzanie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Slice" msgstr "Potnij" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:115 msgctxt "@label" msgid "Start the slicing process" msgstr "Rozpocznij proces cięcia" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:132 msgctxt "@button" msgid "Cancel" msgstr "Anuluj" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 +#: resources/qml/Actions.qml:81 msgctxt "@action:inmenu" msgid "Show Online Troubleshooting" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 +#: resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "Przełącz tryb pełnoekranowy" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 +#: resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "Wyłącz tryb pełnoekranowy" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 +#: resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "&Cofnij" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 +#: resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "&Ponów" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 +#: resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "&Zamknij" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 +#: resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "Widok 3D" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 +#: resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Widok z przodu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 +#: resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "Widok z góry" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 +#: resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 +#: resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "Widok z lewej strony" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 +#: resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "Widok z prawej strony" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 +#: resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Konfiguruj Cura..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 +#: resources/qml/Actions.qml:197 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "&Dodaj drukarkę..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 +#: resources/qml/Actions.qml:203 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "Zarządzaj drukarkami..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 +#: resources/qml/Actions.qml:210 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Zarządzaj materiałami..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:216 -msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate." +#: resources/qml/Actions.qml:218 +msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." msgid "Add more materials from Marketplace" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 +#: resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "&Aktualizuj profil z bieżącymi ustawieniami" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 +#: resources/qml/Actions.qml:233 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "&Odrzuć bieżące zmiany" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 +#: resources/qml/Actions.qml:245 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "&Utwórz profil z bieżących ustawień..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 +#: resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "Zarządzaj profilami..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 +#: resources/qml/Actions.qml:259 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Pokaż dokumentację internetową" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 +#: resources/qml/Actions.qml:267 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "Zgłoś błąd" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 +#: resources/qml/Actions.qml:275 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "Co nowego" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 +#: resources/qml/Actions.qml:289 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "O..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 +#: resources/qml/Actions.qml:296 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 +#: resources/qml/Actions.qml:306 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 +#: resources/qml/Actions.qml:315 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 +#: resources/qml/Actions.qml:324 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Usuń model" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 +#: resources/qml/Actions.qml:332 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Wyśrodkuj model na platformie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 +#: resources/qml/Actions.qml:338 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "&Grupuj modele" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 +#: resources/qml/Actions.qml:358 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Rozgrupuj modele" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 +#: resources/qml/Actions.qml:368 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "Połącz modele" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 +#: resources/qml/Actions.qml:378 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&Powiel model..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 +#: resources/qml/Actions.qml:385 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "Wybierz wszystkie modele" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 +#: resources/qml/Actions.qml:395 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "Wyczyść stół" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 +#: resources/qml/Actions.qml:405 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "Przeładuj wszystkie modele" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 +#: resources/qml/Actions.qml:414 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Ułóż wszystkie modele" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 +#: resources/qml/Actions.qml:422 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Wybór ułożenia" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 +#: resources/qml/Actions.qml:429 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Zresetuj wszystkie pozycje modelu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 +#: resources/qml/Actions.qml:436 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "Zresetuj wszystkie przekształcenia modelu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 +#: resources/qml/Actions.qml:445 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Otwórz plik(i)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 +#: resources/qml/Actions.qml:455 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Nowy projekt..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 +#: resources/qml/Actions.qml:462 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Pokaż folder konfiguracji" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 +#: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Skonfiguruj widoczność ustawień ..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 msgctxt "@label:button" msgid "My printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 msgctxt "@tooltip:button" msgid "Monitor printers in Ultimaker Digital Factory." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 msgctxt "@label:button" msgid "Print jobs" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 msgctxt "@tooltip:button" msgid "Monitor print jobs and reprint from your print history." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." +msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." +msgid "Become a 3D printing expert with UltiMaker e-learning." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 msgctxt "@label:button" -msgid "Ultimaker support" +msgid "UltiMaker support" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." +msgid "Learn how to get started with UltiMaker Cura." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 msgctxt "@label:button" msgid "Ask a question" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." +msgid "Consult the UltiMaker Community." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 msgctxt "@label:button" msgid "Report a bug" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." +msgid "Visit the UltiMaker website." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 +#: resources/qml/ColorDialog.qml:110 msgctxt "@label" msgid "Hex" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 +#: resources/qml/Cura.qml:256 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "Ten pakiet zostanie zainstalowany po ponownym uruchomieniu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +#: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14 msgctxt "@title:tab" msgid "General" msgstr "Ogólny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +#: resources/qml/Cura.qml:470 msgctxt "@title:tab" msgid "Settings" msgstr "Ustawienia" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:468 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:17 +#: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17 msgctxt "@title:tab" msgid "Printers" msgstr "Drukarki" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:470 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70 +#: resources/qml/Cura.qml:474 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:70 msgctxt "@title:tab" msgid "Materials" msgstr "Materiał" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:472 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:57 +#: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57 msgctxt "@title:tab" msgid "Profiles" msgstr "Profile" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +#: resources/qml/Cura.qml:581 msgctxt "@title:window %1 is the application name" msgid "Closing %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:590 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:599 +#: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591 msgctxt "@label %1 is the application name" msgid "Are you sure you want to exit %1?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:637 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 +#: resources/qml/Cura.qml:629 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 msgctxt "@title:window" msgid "Open file(s)" msgstr "Otwórz plik(i)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +#: resources/qml/Cura.qml:734 msgctxt "@window:title" msgid "Install Package" msgstr "Instaluj pakiety" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +#: resources/qml/Cura.qml:741 msgctxt "@title:window" msgid "Open File(s)" msgstr "Otwórz plik(i)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +#: resources/qml/Cura.qml:743 msgctxt "@text:window" msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." msgstr "Znaleziono jeden lub więcej plików G-code w wybranych plikach. Możesz otwierać tylko jeden plik G-code jednocześnie. Jeśli chcesz otworzyć plik G-code, proszę wybierz tylko jeden." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:831 +#: resources/qml/Cura.qml:828 msgctxt "@title:window" msgid "Add Printer" msgstr "Dodaj drukarkę" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +#: resources/qml/Cura.qml:836 msgctxt "@title:window" msgid "What's New" msgstr "Co nowego" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: resources/qml/Cura.qml:890 +msgctxt "@title:window" +msgid "Save Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:891 +msgctxt "@textfield:placeholder" +msgid "New Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:892 +msgctxt "@info" +msgid "Custom profile name:" +msgstr "" + +#: resources/qml/Cura.qml:909 +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 "" + +#: resources/qml/Cura.qml:917 +msgctxt "@action:button" +msgid "Learn more about Cura print profiles" +msgstr "" + +#: resources/qml/Cura.qml:926 +msgctxt "@button" +msgid "Save new profile" +msgstr "" + +#: resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: resources/qml/Dialogs/AboutDialog.qml:59 msgctxt "@label" msgid "version: %1" msgstr "version: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: resources/qml/Dialogs/AboutDialog.qml:74 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Kompletne rozwiązanie do druku przestrzennego." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: resources/qml/Dialogs/AboutDialog.qml:87 msgctxt "@info:credit" msgid "" -"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura is developed by UltiMaker in cooperation with the community.\n" "Cura proudly uses the following open source projects:" msgstr "" "Cura jest rozwijana przez firmę Ultimaker B.V. we współpracy ze społecznością.\n" "Cura z dumą korzysta z następujących projektów open source:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label Description for application component" msgid "Graphical user interface" msgstr "Graficzny interfejs użytkownika" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label Description for application component" msgid "Application framework" msgstr "Struktura aplikacji" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label Description for application component" msgid "G-code generator" msgstr "Generator g-code" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label Description for application component" msgid "Interprocess communication library" msgstr "Biblioteka komunikacji międzyprocesowej" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:142 +msgctxt "@label Description for application component" msgid "Python bindings for libnest2d" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label Description for application component" msgid "Polygon packing library, developed by Prusa Research" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:144 +msgctxt "@label Description for application component" msgid "Support library for handling 3MF files" msgstr "Wsparcie biblioteki do obsługi plików 3MF" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:145 +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" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Język programowania" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label Description for application dependency" msgid "GUI framework" msgstr "Framework GUI" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label Description for application dependency" msgid "GUI framework bindings" msgstr "Powiązania Frameworka GUI" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label Description for application dependency" msgid "C/C++ Binding library" msgstr "Biblioteka Powiązań C/C++" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:152 +msgctxt "@label Description for application dependency" msgid "Data interchange format" msgstr "Format wymiany danych" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "Font" msgstr "Czcionka" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label Description for application dependency" msgid "Polygon clipping library" msgstr "Biblioteka edytująca pola" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label Description for application dependency" msgid "JSON parser" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:158 +msgctxt "@label Description for application dependency" msgid "Utility functions, including an image loader" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:159 +msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:162 +#: resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label Description for application dependency" msgid "Root Certificates for validating SSL trustworthiness" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label Description for application dependency" msgid "Compatibility between Python 2 and 3" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label Description for application dependency" msgid "Support library for system keyring access" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label Description for application dependency" msgid "Support library for faster math" msgstr "Wsparcie biblioteki dla szybszej matematyki" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label Description for application dependency" msgid "Support library for handling STL files" msgstr "Wsparcie biblioteki do obsługi plików STL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label Description for application dependency" msgid "Python bindings for Clipper" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Biblioteka komunikacji szeregowej" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label Description for application dependency" msgid "Support library for scientific computing" msgstr "Wsparcie biblioteki do obliczeń naukowych" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 -msgctxt "@Label" +#: resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@Label Description for application dependency" msgid "Python Error tracking library" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:172 +msgctxt "@label Description for application dependency" msgid "Support library for handling triangular meshes" msgstr "Biblioteka pomocnicza do obsługi siatek trójkątów" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:173 +msgctxt "@label Description for application dependency" msgid "ZeroConf discovery library" msgstr "Bilbiotek poszukująca Zeroconf" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label Description for development tool" msgid "Dependency and package manager" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label Description for development tool" msgid "Packaging Python-applications" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:179 +msgctxt "@label Description for development tool" msgid "Linux cross-distribution application deployment" msgstr "Wdrożenie aplikacji pomiędzy dystrybucjami Linux" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:180 +msgctxt "@label Description for development tool" msgid "Generating Windows installers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 msgctxt "@title:window" msgid "Open project file" msgstr "Otwórz plik projektu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84 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 "Jest to plik projektu Cura. Czy chcesz otworzyć go jako projekt, czy zaimportować z niego modele?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:90 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91 msgctxt "@text:window" msgid "Remember my choice" msgstr "Zapamiętaj mój wybór" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105 msgctxt "@action:button" msgid "Open as project" msgstr "Otwórz jako projekt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110 msgctxt "@action:button" msgid "Import models" msgstr "Importuj modele" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:17 +msgctxt "@title:window" +msgid "Select Printer" +msgstr "" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:54 +msgctxt "@title:label" +msgid "Compatible Printers" +msgstr "" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:110 +msgctxt "@description" +msgid "No compatible printers, that are currently online, were found." +msgstr "" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Odrzuć lub zachowaj zmiany" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:49 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64 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 "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90 msgctxt "@title:column" msgid "Profile settings" msgstr "Ustawienia profilu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92 msgctxt "@title:column" msgid "Current changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:799 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123 +#: resources/qml/Preferences/GeneralPage.qml:820 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Zawsze pytaj o to" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Odrzuć i nigdy nie pytaj" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Zachowaj i nigdy nie pytaj" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157 msgctxt "@action:button" msgid "Discard changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164 msgctxt "@action:button" msgid "Keep changes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171 +msgctxt "@action:button" +msgid "Save as new custom profile" +msgstr "" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178 +msgctxt "@action:button" +msgid "Save changes" +msgstr "" + +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 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 "Znaleziono jeden lub więcej plików projektu w wybranych plikach. Możesz otwierać tylko jeden plik projektu na raz. Proponujemy importowanie tylko modeli z tych plików. Czy chcesz kontynuować?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 msgctxt "@action:button" msgid "Import all as models" msgstr "Importuj wszystkie jako modele" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 +#: resources/qml/Dialogs/RenameDialog.qml:23 +msgctxt "@title:window" +msgid "Rename" +msgstr "" + +#: resources/qml/Dialogs/RenameDialog.qml:24 +msgctxt "@info" +msgid "Please provide a new name." +msgstr "" + +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 msgctxt "@title:window" msgid "Save Project" msgstr "Zapisz projekt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177 msgctxt "@action:label" msgid "Extruder %1" msgstr "Ekstruder %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & materiał" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195 msgctxt "@action:label" msgid "Material" msgstr "Materiał" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "Nie pokazuj podsumowania projektu podczas ponownego zapisywania" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298 msgctxt "@action:button" msgid "Save" msgstr "Zapisz" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -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" -msgstr[0] "Drukuj Wybrany Model z %1" -msgstr[1] "Drukuj Wybrane Modele z %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:93 +#: resources/qml/JobSpecs.qml:93 msgctxt "@text Print job name" msgid "Untitled" msgstr "Bez tytułu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 +#: resources/qml/MainWindow/ApplicationMenu.qml:63 +#: resources/qml/Menus/SettingsMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "Opcje" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 +#: resources/qml/MainWindow/ApplicationMenu.qml:87 msgctxt "@title:window" msgid "New project" msgstr "Nowy projekt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88 +#: resources/qml/MainWindow/ApplicationMenu.qml:88 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 "Czy na pewno chcesz rozpocząć nowy projekt? Spowoduje to wyczyszczenie stołu i niezapisanych ustawień." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135 +#: resources/qml/MainWindow/MainWindowHeader.qml:135 msgctxt "@action:button" msgid "Marketplace" msgstr "Marketplace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +#: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 msgctxt "@header" msgid "Configurations" msgstr "Konfiguracje" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 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." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 msgctxt "@label" msgid "Marketplace" msgstr "Marketplace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 msgctxt "@label" msgid "Loading available configurations from the printer..." msgstr "Ładowanie dostępnych konfiguracji z drukarki..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 msgctxt "@label" msgid "The configurations are not available because the printer is disconnected." msgstr "Konfiguracje są niedostępne, ponieważ drukarka jest odłączona." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 msgctxt "@tooltip" msgid "The configuration of this extruder is not allowed, and prohibits slicing." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 msgctxt "@tooltip" msgid "There are no profiles matching the configuration of this extruder." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 msgctxt "@label" msgid "Select configuration" msgstr "Wybierz konfigurację" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 msgctxt "@label" msgid "Configurations" msgstr "Konfiguracje" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 msgctxt "@header" msgid "Custom" msgstr "Niestandardowe" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:62 -msgctxt "@label" -msgid "Printer" -msgstr "Drukarka" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:217 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173 msgctxt "@label" msgid "Enabled" msgstr "Włączona" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222 msgctxt "@label" msgid "Material" msgstr "Materiał" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348 msgctxt "@label" msgid "Use glue for better adhesion with this material combination." msgstr "Użyj kleju dla lepszej przyczepności dla tej kombinacji materiałów." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:29 +#: resources/qml/Menus/ContextMenu.qml:29 msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "Wydrukuj wybrany model z:" msgstr[1] "Wydrukuj wybrane modele z:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:92 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Zduplikuj wybrany model" msgstr[1] "Zduplikuj wybrane modele" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:123 msgctxt "@label" msgid "Number of Copies" msgstr "Liczba kopii" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/EditMenu.qml:12 +#: resources/qml/Menus/EditMenu.qml:12 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "&Edytuj" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ExtensionMenu.qml:13 +#: resources/qml/Menus/ExtensionMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "&Rozszerzenia" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 +#: resources/qml/Menus/FileMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "&Plik" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:45 +#: resources/qml/Menus/FileMenu.qml:45 msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:78 +#: resources/qml/Menus/FileMenu.qml:78 msgctxt "@title:menu menubar:file" msgid "&Export..." msgstr "&Eksportuj..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:89 +#: resources/qml/Menus/FileMenu.qml:89 msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Eksportuj Zaznaczenie..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/HelpMenu.qml:14 +#: resources/qml/Menus/HelpMenu.qml:14 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "P&omoc" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +#: resources/qml/Menus/MaterialMenu.qml:13 msgctxt "@label:category menu label" msgid "Material" msgstr "Materiał" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:53 +#: resources/qml/Menus/MaterialMenu.qml:53 msgctxt "@label:category menu label" msgid "Favorites" msgstr "Ulubione" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:78 +#: resources/qml/Menus/MaterialMenu.qml:78 msgctxt "@label:category menu label" msgid "Generic" msgstr "Podstawowe" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +#: resources/qml/Menus/OpenFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open File(s)..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PreferencesMenu.qml:21 +#: resources/qml/Menus/PreferencesMenu.qml:21 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "Preferencje" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:13 +#: resources/qml/Menus/PrinterMenu.qml:13 msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "&Drukarka" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:17 +#: resources/qml/Menus/PrinterMenu.qml:17 msgctxt "@label:category menu label" msgid "Network enabled printers" msgstr "Drukarki dostępne w sieci" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:50 +#: resources/qml/Menus/PrinterMenu.qml:50 msgctxt "@label:category menu label" msgid "Local printers" msgstr "Drukarki lokalne" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +#: resources/qml/Menus/RecentFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open &Recent" msgstr "Otwórz &ostatnio używane" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +#: resources/qml/Menus/SaveProjectMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Save Project..." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:34 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Materiał" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:49 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Ustaw jako aktywną głowicę" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:55 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Włącz Ekstruder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:63 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Wyłącz Ekstruder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 msgctxt "@action:inmenu" msgid "Visible Settings" msgstr "Widoczne Ustawienia" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 msgctxt "@action:inmenu" msgid "Collapse All Categories" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 msgctxt "@action:inmenu" msgid "Manage Setting Visibility..." msgstr "Ustaw Widoczność Ustawień..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:13 +#: resources/qml/Menus/SettingsMenu.qml:34 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Materiał" + +#: resources/qml/Menus/SettingsMenu.qml:49 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Ustaw jako aktywną głowicę" + +#: resources/qml/Menus/SettingsMenu.qml:55 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Włącz Ekstruder" + +#: resources/qml/Menus/SettingsMenu.qml:63 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Wyłącz Ekstruder" + +#: resources/qml/Menus/ViewMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&View" msgstr "&Widok" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:17 +#: resources/qml/Menus/ViewMenu.qml:17 msgctxt "@action:inmenu menubar:view" msgid "&Camera position" msgstr "&Pozycja kamery" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:30 +#: resources/qml/Menus/ViewMenu.qml:30 msgctxt "@action:inmenu menubar:view" msgid "Camera view" msgstr "Widok z kamery" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 +#: resources/qml/Menus/ViewMenu.qml:48 msgctxt "@action:inmenu menubar:view" msgid "Perspective" msgstr "Perspektywiczny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +#: resources/qml/Menus/ViewMenu.qml:59 msgctxt "@action:inmenu menubar:view" msgid "Orthographic" msgstr "Rzut ortograficzny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:115 +#: resources/qml/MonitorButton.qml:115 msgctxt "@label:MonitorStatus" msgid "Not connected to a printer" msgstr "Nie podłączono do drukarki" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 +#: resources/qml/MonitorButton.qml:119 msgctxt "@label:MonitorStatus" msgid "Printer does not accept commands" msgstr "Drukarka nie akceptuje poleceń" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:129 +#: resources/qml/MonitorButton.qml:129 msgctxt "@label:MonitorStatus" msgid "In maintenance. Please check the printer" msgstr "W naprawie. Sprawdź drukarkę" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:140 +#: resources/qml/MonitorButton.qml:140 msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Utracone połączenie z drukarką" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +#: resources/qml/MonitorButton.qml:142 msgctxt "@label:MonitorStatus" msgid "Printing..." msgstr "Drukowanie..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +#: resources/qml/MonitorButton.qml:145 msgctxt "@label:MonitorStatus" msgid "Paused" msgstr "Wstrzymano" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +#: resources/qml/MonitorButton.qml:148 msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Przygotowywanie ..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +#: resources/qml/MonitorButton.qml:150 msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Usuń wydruk" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +#: resources/qml/MonitorButton.qml:318 msgctxt "@label" msgid "Abort Print" msgstr "Anuluj Wydruk" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:327 +#: resources/qml/MonitorButton.qml:327 msgctxt "@label" msgid "Are you sure you want to abort the print?" msgstr "Czy na pewno chcesz przerwać drukowanie?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:109 +#: resources/qml/ObjectItemButton.qml:109 msgctxt "@label" msgid "Is printed as support." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:112 +#: resources/qml/ObjectItemButton.qml:112 msgctxt "@label" msgid "Other models overlapping with this model are modified." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:115 +#: resources/qml/ObjectItemButton.qml:115 msgctxt "@label" msgid "Infill overlapping with this model is modified." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:118 +#: resources/qml/ObjectItemButton.qml:118 msgctxt "@label" msgid "Overlaps with this model are not supported." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:125 +#: resources/qml/ObjectItemButton.qml:125 msgctxt "@label %1 is the number of settings it overrides." msgid "Overrides %1 setting." msgid_plural "Overrides %1 settings." msgstr[0] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 +#: resources/qml/ObjectSelector.qml:59 msgctxt "@label" msgid "Object list" msgstr "Lista obiektów" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:131 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:24 +#: resources/qml/Preferences/GeneralPage.qml:134 +#: resources/qml/Preferences/SettingVisibilityPage.qml:24 msgctxt "@action:button" msgid "Defaults" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +#: resources/qml/Preferences/GeneralPage.qml:172 msgctxt "@label" msgid "Interface" msgstr "Interfejs" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +#: resources/qml/Preferences/GeneralPage.qml:215 msgctxt "@heading" msgid "-- incomplete --" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +#: resources/qml/Preferences/GeneralPage.qml:261 msgctxt "@label" msgid "Currency:" msgstr "Waluta:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:274 +#: resources/qml/Preferences/GeneralPage.qml:277 msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." msgid "Theme*:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +#: resources/qml/Preferences/GeneralPage.qml:323 msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Tnij automatycznie podczas zmiany ustawień." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +#: resources/qml/Preferences/GeneralPage.qml:331 msgctxt "@option:check" msgid "Slice automatically" msgstr "Automatyczne Cięcie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:337 +#: resources/qml/Preferences/GeneralPage.qml:340 +msgctxt "@info:tooltip" +msgid "Show an icon and notifications in the system notification area." +msgstr "" + +#: resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Add icon to system tray *" +msgstr "" + +#: resources/qml/Preferences/GeneralPage.qml:357 msgctxt "@label" msgid "*You will need to restart the application for these changes to have effect." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +#: resources/qml/Preferences/GeneralPage.qml:373 msgctxt "@label" msgid "Viewport behavior" msgstr "Zachowanie okna edycji" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +#: resources/qml/Preferences/GeneralPage.qml:381 msgctxt "@info:tooltip" msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." msgstr "Zaznacz nieobsługiwane obszary modelu na czerwono. Bez wsparcia te obszary nie będą drukowane prawidłowo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:369 +#: resources/qml/Preferences/GeneralPage.qml:390 msgctxt "@option:check" msgid "Display overhang" msgstr "Wyświetl zwis" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +#: resources/qml/Preferences/GeneralPage.qml:400 msgctxt "@info:tooltip" msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:388 +#: resources/qml/Preferences/GeneralPage.qml:409 msgctxt "@option:check" msgid "Display model errors" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +#: resources/qml/Preferences/GeneralPage.qml:417 msgctxt "@info:tooltip" msgid "Moves the camera so the model is in the center of the view when a model is selected" msgstr "Przenosi kamerę, aby model był w centrum widoku, gdy wybrano model" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:401 +#: resources/qml/Preferences/GeneralPage.qml:422 msgctxt "@action:button" msgid "Center camera when item is selected" msgstr "Wyśrodkuj kamerę kiedy przedmiot jest zaznaczony" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +#: resources/qml/Preferences/GeneralPage.qml:432 msgctxt "@info:tooltip" msgid "Should the default zoom behavior of cura be inverted?" msgstr "Czy domyślne zachowanie zoomu powinno zostać odwrócone?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:416 +#: resources/qml/Preferences/GeneralPage.qml:437 msgctxt "@action:button" msgid "Invert the direction of camera zoom." msgstr "Odwróć kierunek zoomu kamery." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Should zooming move in the direction of the mouse?" msgstr "Czy przybliżanie powinno poruszać się w kierunku myszy?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Zooming towards the mouse is not supported in the orthographic perspective." msgstr "Powiększanie w kierunku myszy nie jest obsługiwane w danej perspektywie." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:437 +#: resources/qml/Preferences/GeneralPage.qml:458 msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "Przybliżaj w kierunku myszy" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +#: resources/qml/Preferences/GeneralPage.qml:484 msgctxt "@info:tooltip" msgid "Should models on the platform be moved so that they no longer intersect?" msgstr "Czy modele na platformie powinny być przenoszone w taki sposób, aby nie przecinały się?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:468 +#: resources/qml/Preferences/GeneralPage.qml:489 msgctxt "@option:check" msgid "Ensure models are kept apart" msgstr "Upewnij się, że modele są oddzielone" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +#: resources/qml/Preferences/GeneralPage.qml:498 msgctxt "@info:tooltip" msgid "Should models on the platform be moved down to touch the build plate?" msgstr "Czy modele na platformie powinny być przesunięte w dół, aby dotknęły stołu roboczego?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:482 +#: resources/qml/Preferences/GeneralPage.qml:503 msgctxt "@option:check" msgid "Automatically drop models to the build plate" msgstr "Automatycznie upuść modele na stół roboczy" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +#: resources/qml/Preferences/GeneralPage.qml:515 msgctxt "@info:tooltip" msgid "Show caution message in g-code reader." msgstr "Pokaż wiadomości ostrzegawcze w czytniku g-code." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503 +#: resources/qml/Preferences/GeneralPage.qml:524 msgctxt "@option:check" msgid "Caution message in g-code reader" msgstr "Wiadomość ostrzegawcza w czytniku g-code" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +#: resources/qml/Preferences/GeneralPage.qml:532 msgctxt "@info:tooltip" msgid "Should layer be forced into compatibility mode?" msgstr "Czy warstwa powinna być wymuszona w trybie zgodności?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +#: resources/qml/Preferences/GeneralPage.qml:537 msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Wymuszenie widoku warstw w trybie zgodności (wymaga ponownego uruchomienia)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +#: resources/qml/Preferences/GeneralPage.qml:547 msgctxt "@info:tooltip" msgid "Should Cura open at the location it was closed?" msgstr "Czy Cura powinna się otwierać w miejscu, w którym została zamknięta?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:531 +#: resources/qml/Preferences/GeneralPage.qml:552 msgctxt "@option:check" msgid "Restore window position on start" msgstr "Przywróć pozycję okna przy starcie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +#: resources/qml/Preferences/GeneralPage.qml:562 msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Jakiego rodzaju kamery należy użyć do renderowania?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +#: resources/qml/Preferences/GeneralPage.qml:569 msgctxt "@window:text" msgid "Camera rendering:" msgstr "Renderowanie z kamery:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +#: resources/qml/Preferences/GeneralPage.qml:576 msgid "Perspective" msgstr "Perspektywiczny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +#: resources/qml/Preferences/GeneralPage.qml:577 msgid "Orthographic" msgstr "Rzut ortograficzny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +#: resources/qml/Preferences/GeneralPage.qml:617 msgctxt "@label" msgid "Opening and saving files" msgstr "Otwieranie i zapisywanie plików" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +#: resources/qml/Preferences/GeneralPage.qml:624 msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:608 +#: resources/qml/Preferences/GeneralPage.qml:629 msgctxt "@option:check" msgid "Use a single instance of Cura" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +#: resources/qml/Preferences/GeneralPage.qml:640 msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +#: resources/qml/Preferences/GeneralPage.qml:646 msgctxt "@option:check" msgid "Clear buildplate before loading model into the single instance" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 +#: resources/qml/Preferences/GeneralPage.qml:656 msgctxt "@info:tooltip" msgid "Should models be scaled to the build volume if they are too large?" msgstr "Czy modele powinny być skalowane do wielkości obszaru roboczego, jeśli są zbyt duże?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +#: resources/qml/Preferences/GeneralPage.qml:661 msgctxt "@option:check" msgid "Scale large models" msgstr "Skaluj duże modele" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +#: resources/qml/Preferences/GeneralPage.qml:671 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 "Model może wydawać się bardzo mały, jeśli jego jednostka jest na przykład w metrach, a nie w milimetrach. Czy takie modele powinny być skalowane?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:655 +#: resources/qml/Preferences/GeneralPage.qml:676 msgctxt "@option:check" msgid "Scale extremely small models" msgstr "Skaluj bardzo małe modele" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +#: resources/qml/Preferences/GeneralPage.qml:686 msgctxt "@info:tooltip" msgid "Should models be selected after they are loaded?" msgstr "Czy modele powinny zostać zaznaczone po załadowaniu?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: resources/qml/Preferences/GeneralPage.qml:691 msgctxt "@option:check" msgid "Select models when loaded" msgstr "Zaznaczaj modele po załadowaniu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +#: resources/qml/Preferences/GeneralPage.qml:701 msgctxt "@info:tooltip" msgid "Should a prefix based on the printer name be added to the print job name automatically?" msgstr "Czy przedrostek oparty na nazwie drukarki powinien być automatycznie dodawany do nazwy zadania?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:685 +#: resources/qml/Preferences/GeneralPage.qml:706 msgctxt "@option:check" msgid "Add machine prefix to job name" msgstr "Dodaj przedrostek maszyny do nazwy zadania" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +#: resources/qml/Preferences/GeneralPage.qml:716 msgctxt "@info:tooltip" msgid "Should a summary be shown when saving a project file?" msgstr "Czy podsumowanie powinno być wyświetlane podczas zapisu projektu?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: resources/qml/Preferences/GeneralPage.qml:720 msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Pokaż okno podsumowania podczas zapisywaniu projektu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +#: resources/qml/Preferences/GeneralPage.qml:730 msgctxt "@info:tooltip" msgid "Default behavior when opening a project file" msgstr "Domyślne zachowanie podczas otwierania pliku projektu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +#: resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@window:text" msgid "Default behavior when opening a project file: " msgstr "Domyślne zachowanie podczas otwierania pliku projektu: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +#: resources/qml/Preferences/GeneralPage.qml:753 msgctxt "@option:openProject" msgid "Always ask me this" msgstr "Zawsze pytaj" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: resources/qml/Preferences/GeneralPage.qml:754 msgctxt "@option:openProject" msgid "Always open as a project" msgstr "Zawsze otwieraj jako projekt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +#: resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:openProject" msgid "Always import models" msgstr "Zawsze importuj modele" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +#: resources/qml/Preferences/GeneralPage.qml:792 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 "Kiedy dokonasz zmian w profilu i przełączysz się na inny, zostanie wyświetlone okno z pytaniem, czy chcesz zachować twoje zmiany, czy nie. Możesz też wybrać domyślne zachowanie, żeby to okno już nigdy nie było pokazywane." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:780 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:36 +#: resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46 msgctxt "@label" msgid "Profiles" msgstr "Profile" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +#: resources/qml/Preferences/GeneralPage.qml:806 msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Domyślne zachowanie dla zmienionych ustawień podczas zmiany profilu na inny: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:800 +#: resources/qml/Preferences/GeneralPage.qml:821 msgctxt "@option:discardOrKeep" msgid "Always discard changed settings" msgstr "Zawsze odrzucaj wprowadzone zmiany" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/Preferences/GeneralPage.qml:822 msgctxt "@option:discardOrKeep" msgid "Always transfer changed settings to new profile" msgstr "Zawsze przenoś wprowadzone zmiany do nowego profilu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +#: resources/qml/Preferences/GeneralPage.qml:856 msgctxt "@label" msgid "Privacy" msgstr "Prywatność" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +#: resources/qml/Preferences/GeneralPage.qml:862 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 "Czy anonimowe dane na temat wydruku mają być wysyłane do Ultimaker? Uwaga. Żadne modele, adresy IP, ani żadne inne dane osobiste nie będą wysyłane i/lub przechowywane." +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 "Czy anonimowe dane na temat wydruku mają być wysyłane do UltiMaker? Uwaga. Żadne modele, adresy IP, ani żadne inne dane osobiste nie będą wysyłane i/lub przechowywane." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +#: resources/qml/Preferences/GeneralPage.qml:867 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "Wyślij (anonimowe) informacje o drukowaniu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +#: resources/qml/Preferences/GeneralPage.qml:897 msgctxt "@label" msgid "Updates" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +#: resources/qml/Preferences/GeneralPage.qml:904 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "Czy Cura ma sprawdzać dostępność aktualizacji podczas uruchamiania programu?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:888 +#: resources/qml/Preferences/GeneralPage.qml:909 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Sprawdź, dostępność aktualizacji podczas uruchamiania" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +#: resources/qml/Preferences/GeneralPage.qml:925 msgctxt "@info:tooltip" msgid "When checking for updates, only check for stable releases." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:910 +#: resources/qml/Preferences/GeneralPage.qml:931 msgctxt "@option:radio" msgid "Stable releases only" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +#: resources/qml/Preferences/GeneralPage.qml:941 msgctxt "@info:tooltip" msgid "When checking for updates, check for both stable and for beta releases." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:926 +#: resources/qml/Preferences/GeneralPage.qml:947 msgctxt "@option:radio" msgid "Stable and Beta releases" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +#: resources/qml/Preferences/GeneralPage.qml:957 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 "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:941 +#: resources/qml/Preferences/GeneralPage.qml:962 msgctxt "@option:check" msgid "Get notifications for plugin updates" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:50 +#: resources/qml/Preferences/MachinesPage.qml:50 msgctxt "@action:button" msgid "Add New" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:134 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +#: resources/qml/Preferences/MachinesPage.qml:147 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:160 +#: resources/qml/Preferences/ProfilesPage.qml:294 msgctxt "@action:button" msgid "Activate" msgstr "Aktywuj" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:146 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:331 +#: resources/qml/Preferences/MachinesPage.qml:159 +#: resources/qml/Preferences/ProfilesPage.qml:331 msgctxt "@action:button" msgid "Rename" msgstr "Zmień nazwę" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:72 msgctxt "@label" msgid "Materials compatible with active printer:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:94 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:78 +#: resources/qml/Preferences/ProfilesPage.qml:94 msgctxt "@action:button" msgid "Create new" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:88 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:90 +#: resources/qml/Preferences/ProfilesPage.qml:88 msgctxt "@action:button" msgid "Import" msgstr "Importuj" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:101 msgctxt "@action:button" msgid "Sync with Printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:311 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:174 +#: resources/qml/Preferences/ProfilesPage.qml:311 msgctxt "@action:button" msgid "Duplicate" msgstr "Duplikuj" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:342 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:198 +#: resources/qml/Preferences/ProfilesPage.qml:342 msgctxt "@action:button" msgid "Export" msgstr "Eksportuj" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:392 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:212 +#: resources/qml/Preferences/ProfilesPage.qml:392 msgctxt "@title:window" msgid "Confirm Remove" msgstr "Potwierdź Usunięcie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:393 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:215 +#: resources/qml/Preferences/ProfilesPage.qml:393 msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "Czy na pewno chcesz usunąć %1? Nie można tego cofnąć!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:228 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:238 msgctxt "@title:window" msgid "Import Material" msgstr "Importuj Materiał" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:242 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Udało się zaimportować materiał %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:245 msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not import material %1: %2" msgstr "Nie można zaimportować materiału %1: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:267 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:256 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:267 msgctxt "@title:window" msgid "Export Material" msgstr "Eksportuj Materiał" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:272 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:272 msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Nie udało się wyeksportować materiału do %1: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:275 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:275 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Udało się wyeksportować materiał do %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 msgctxt "@title:window" msgid "Sync materials with printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 msgctxt "@title:header" msgid "Sync materials with printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 msgctxt "@text" msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 msgctxt "@button" msgid "Why do I need to sync material profiles?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 msgctxt "@button" msgid "Start" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144 msgctxt "@title:header" msgid "Sign in" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150 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 "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:446 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:586 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602 msgctxt "@button" msgid "Sync materials with USB" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 msgctxt "@title:header" msgid "The following printers will receive the new material profiles:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:198 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 msgctxt "@title:header" msgid "Something went wrong when sending the materials to the printers." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:205 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221 msgctxt "@title:header" msgid "Material profiles successfully synced with the following printers:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:429 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445 msgctxt "@button" msgid "Troubleshooting" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422 msgctxt "@text Asking the user whether printers are missing in a list." msgid "Printers missing?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:408 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424 msgctxt "@text" msgid "Make sure all your printers are turned ON and connected to Digital Factory." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:417 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433 msgctxt "@button" msgid "Refresh List" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473 msgctxt "@button" msgid "Try again" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:461 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Done" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:606 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622 msgctxt "@button" msgid "Sync" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535 msgctxt "@button" msgid "Syncing" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553 msgctxt "@title:header" msgid "No printers found" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574 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 "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:569 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585 msgctxt "@button" msgid "Learn how to connect your printer to Digital Factory" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:597 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613 msgctxt "@button" msgid "Refresh" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642 msgctxt "@title:header" msgid "Sync material profiles via USB" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:632 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648 msgctxt "@text In the UI this is followed by a list of steps the user needs to take." msgid "Follow the following steps to load the new material profiles to your printer." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 msgctxt "@text" msgid "Click the export material archive button." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 msgctxt "@text" msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:673 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689 msgctxt "@button" msgid "How to load new material profiles to my printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:687 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 msgctxt "@button" msgid "Back" msgstr "Wstecz" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Export material archive" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747 msgctxt "@title:window" msgid "Export All Materials" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121 +#: resources/qml/Preferences/Materials/MaterialsView.qml:121 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Potwierdź Zmianę Średnicy" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122 +#: resources/qml/Preferences/Materials/MaterialsView.qml:122 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 "Średnica nowego filamentu została ustawiona na %1mm, i nie jest kompatybilna z bieżącym ekstruderem. Czy chcesz kontynuować?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152 +#: resources/qml/Preferences/Materials/MaterialsView.qml:152 msgctxt "@label" msgid "Display Name" msgstr "Wyświetlana nazwa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 +#: resources/qml/Preferences/Materials/MaterialsView.qml:171 msgctxt "@label" msgid "Brand" msgstr "Marka" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190 +#: resources/qml/Preferences/Materials/MaterialsView.qml:190 msgctxt "@label" msgid "Material Type" msgstr "Typ Materiału" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +#: resources/qml/Preferences/Materials/MaterialsView.qml:210 msgctxt "@label" msgid "Color" msgstr "Kolor" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:262 +#: resources/qml/Preferences/Materials/MaterialsView.qml:262 msgctxt "@title" msgid "Material color picker" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:275 +#: resources/qml/Preferences/Materials/MaterialsView.qml:275 msgctxt "@label" msgid "Properties" msgstr "Właściwości" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +#: resources/qml/Preferences/Materials/MaterialsView.qml:286 msgctxt "@label" msgid "Density" msgstr "Gęstość" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +#: resources/qml/Preferences/Materials/MaterialsView.qml:319 msgctxt "@label" msgid "Diameter" msgstr "Średnica" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:369 +#: resources/qml/Preferences/Materials/MaterialsView.qml:369 msgctxt "@label" msgid "Filament Cost" msgstr "Koszt Filamentu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:401 +#: resources/qml/Preferences/Materials/MaterialsView.qml:401 msgctxt "@label" msgid "Filament weight" msgstr "Waga filamentu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:433 +#: resources/qml/Preferences/Materials/MaterialsView.qml:433 msgctxt "@label" msgid "Filament length" msgstr "Długość Filamentu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:451 +#: resources/qml/Preferences/Materials/MaterialsView.qml:451 msgctxt "@label" msgid "Cost per Meter" msgstr "Koszt na metr" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:465 +#: resources/qml/Preferences/Materials/MaterialsView.qml:465 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "Ten materiał jest powiązany z %1 i dzieli się niekórymi swoimi właściwościami." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:472 +#: resources/qml/Preferences/Materials/MaterialsView.qml:472 msgctxt "@label" msgid "Unlink Material" msgstr "Odłącz materiał" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +#: resources/qml/Preferences/Materials/MaterialsView.qml:485 msgctxt "@label" msgid "Description" msgstr "Opis" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:503 +#: resources/qml/Preferences/Materials/MaterialsView.qml:503 msgctxt "@label" msgid "Adhesion Information" msgstr "Informacje dotyczące przyczepności" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642 +#: resources/qml/Preferences/Materials/MaterialsView.qml:642 msgctxt "@title" msgid "Information" msgstr "Informacja" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:647 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:82 +#: resources/qml/Preferences/Materials/MaterialsView.qml:647 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 msgctxt "@label" msgid "Print settings" msgstr "Ustawienia druku" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:59 +#: resources/qml/Preferences/ProfilesPage.qml:59 msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:98 +#: resources/qml/Preferences/ProfilesPage.qml:98 msgctxt "@action:tooltip" msgid "Create new profile from current settings/overrides" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:125 +#: resources/qml/Preferences/ProfilesPage.qml:125 msgctxt "@action:label" msgid "Some settings from current profile were overwritten." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:140 +#: resources/qml/Preferences/ProfilesPage.qml:140 msgctxt "@action:button" msgid "Update profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:143 +#: resources/qml/Preferences/ProfilesPage.qml:143 msgctxt "@action:tooltip" msgid "Update profile with current settings/overrides" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:148 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256 +#: resources/qml/Preferences/ProfilesPage.qml:148 msgctxt "@action:button" msgid "Discard current changes" msgstr "Odrzuć bieżące zmiany" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:158 +#: resources/qml/Preferences/ProfilesPage.qml:158 msgctxt "@action:label" msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." msgstr "Ten profil używa ustawień domyślnych określonych przez drukarkę, dlatego nie ma żadnych ustawień z poniższej liście." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:165 +#: resources/qml/Preferences/ProfilesPage.qml:165 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "Aktualne ustawienia odpowiadają wybranemu profilowi." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +#: resources/qml/Preferences/ProfilesPage.qml:175 msgctxt "@title:tab" msgid "Global Settings" msgstr "Ustawienia ogólne" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: resources/qml/Preferences/ProfilesPage.qml:278 msgctxt "@title:window" msgid "Create Profile" msgstr "Stwórz profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:280 +#: resources/qml/Preferences/ProfilesPage.qml:280 msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Podaj nazwę tego profilu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:368 +#: resources/qml/Preferences/ProfilesPage.qml:352 +#: resources/qml/Preferences/ProfilesPage.qml:368 msgctxt "@title:window" msgid "Export Profile" msgstr "Eksportuj Profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +#: resources/qml/Preferences/ProfilesPage.qml:382 msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Duplikuj profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:409 +#: resources/qml/Preferences/ProfilesPage.qml:409 msgctxt "@title:window" msgid "Rename Profile" msgstr "Zmień nazwę profilu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:422 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:429 +#: resources/qml/Preferences/ProfilesPage.qml:422 +#: resources/qml/Preferences/ProfilesPage.qml:429 msgctxt "@title:window" msgid "Import Profile" msgstr "Importuj Profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:22 -msgctxt "@title:window" -msgid "Rename" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:23 -msgctxt "@info" -msgid "Please provide a new name." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56 +#: resources/qml/Preferences/SettingVisibilityItem.qml:56 msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73 +#: resources/qml/Preferences/SettingVisibilityItem.qml:73 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] "" msgstr[1] "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13 +#: resources/qml/Preferences/SettingVisibilityPage.qml:13 msgctxt "@title:tab" msgid "Setting Visibility" msgstr "Widoczność ustawienia" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 +#: resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" msgid "Check all" msgstr "Zaznacz wszystko" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 -msgctxt "@label" -msgid "Extruder" -msgstr "Ekstruder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70 -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." -msgstr "Docelowa temperatura głowicy. Głowica będzie się rozgrzewać lub chłodzić do tej temperatury. Jeżeli jest równe 0, grzanie głowicy będzie wyłączone." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Aktualna temperatura tej głowicy." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "Temperatura do wstępnego podgrzewania głowicy." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Anuluj" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Podgrzewanie wstępne" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Podgrzej głowicę przed drukowaniem. Możesz w dalszym ciągu dostosowywać drukowanie podczas podgrzewania i nie będziesz musiał czekać na podgrzanie głowicy kiedy będziesz gotowy." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Kolor materiału w tym ekstruderze." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Materiał w głowicy drukującej." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Dysza włożona do tego ekstrudera." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -msgctxt "@label" -msgid "Build plate" -msgstr "Stół roboczy" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55 -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 "Temperatura docelowa podgrzewanego stołu. Stół rozgrzeje się lub schłodzi w kierunku tej temperatury. Jeśli ustawione jest 0, grzanie stołu jest wyłączone." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "Bieżąca temperatura podgrzewanego stołu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "Temperatura do wstępnego podgrzewania stołu." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Przed drukowaniem podgrzej stół. W dalszym ciągu można dostosowywać druk podczas nagrzewania, a nie będziesz musiał czekać na rozgrzanie stołu, gdy będziesz gotowy do drukowania." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51 -msgctxt "@label" -msgid "Printer control" -msgstr "Kontrola drukarką" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66 -msgctxt "@label" -msgid "Jog Position" -msgstr "Pozycja Swobodnego Ruchu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Dystans Swobodnego Ruchu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Send G-code" -msgstr "Wyślij G-code" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Wyślij niestandardową komendę G-code do podłączonej drukarki. Naciśnij 'enter', aby wysłać komendę." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "Drukarka nie jest podłączona." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:235 -msgctxt "@button" -msgid "Add printer" -msgstr "Dodaj drukarkę" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Manage printers" -msgstr "Zarządzaj drukarkami" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Active print" msgstr "Aktywny wydruk" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Job Name" msgstr "Nazwa pracy" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +#: resources/qml/PrintMonitor.qml:172 msgctxt "@label" msgid "Printing Time" msgstr "Czas druku" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +#: resources/qml/PrintMonitor.qml:180 msgctxt "@label" msgid "Estimated time left" msgstr "Szacowany czas pozostały" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 msgctxt "@label" msgid "Profile" msgstr "Profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5602,132 +6159,372 @@ msgstr "" "\n" "Kliknij, aby otworzyć menedżer profili." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 +#: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 msgctxt "@label:header" msgid "Custom profiles" msgstr "Profile niestandardowe" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 msgctxt "@label shown when we load a Gcode file" msgid "Print setup disabled. G-code file can not be modified." msgstr "Ustawienia druku niedostępne. Plik .gcode nie może być modyfikowany." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:179 msgctxt "@button" msgid "Recommended" msgstr "Polecane" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156 -msgctxt "@button" -msgid "Custom" -msgstr "Niestandardowe" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 msgctxt "@label:Should be short" msgid "On" msgstr "Wł" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 msgctxt "@label:Should be short" msgid "Off" msgstr "Wył" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "Eksperymentalne" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:54 -msgctxt "@info" -msgid "custom profile is active and you overwrote some settings." +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is active and you overwrote some settings." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 -msgctxt "@info" -msgid "custom profile is overriding some settings." +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is overriding some settings." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 -msgctxt "@info" -msgid "Some settings were changed." +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92 +msgctxt "@info %1 is the name of a profile" +msgid "Recommended settings (for %1) were altered." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106 +msgctxt "@info %1 is the name of a profile" +msgid "Some setting-values defined in %1 were overridden." +msgstr "" + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137 +msgctxt "@info" +msgid "Reset to defaults." +msgstr "" + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178 +msgctxt "@info" +msgid "Compare and save." +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15 msgctxt "@label" msgid "Adhesion" msgstr "Przyczepność" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20 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 "Włącz drukowanie obrysu lub tratwy. Spowoduje to dodanie płaskiej powierzchni wokół lub pod Twoim obiektem, która jest łatwa do usunięcia po wydruku." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:198 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102 msgctxt "@label" -msgid "Gradual infill" -msgstr "Stopniowe wypełnienie" +msgid "Recommended print settings" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:236 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "Stopniowe wypełnienie stopniowo zwiększa ilość wypełnień w górę." +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111 +msgctxt "@button" +msgid "Show Custom" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27 msgctxt "@label" msgid "Resolution" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16 +msgctxt "@label" +msgid "Strength" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20 +msgctxt "@label" +msgid "The following settings define the strength of your part." +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34 +msgctxt "infill_sparse_density description" +msgid "Infill Density" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35 +msgctxt "@label" +msgid "Adjusts the density of infill of the print." +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54 +msgctxt "@action:label" +msgid "Infill Pattern" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56 +msgctxt "@label" +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 "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67 +msgctxt "@action:label" +msgid "Shell Thickness" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68 +msgctxt "@label" +msgid "Defines the thickness of your part side walls, roof and floor." +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16 msgctxt "@label" msgid "Support" msgstr "Podpory" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21 msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +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." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40 +msgctxt "@action:label" +msgid "Support Type" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41 +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 "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53 +msgctxt "@action:label" +msgid "Print with" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54 +msgctxt "@label" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67 +msgctxt "@action:label" +msgid "Placement" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68 +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 "" + +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 msgctxt "@error" msgid "Configuration not supported" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 msgctxt "@button:label" msgid "Learn more" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +#: resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "Ekstruder" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:70 +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." +msgstr "Docelowa temperatura głowicy. Głowica będzie się rozgrzewać lub chłodzić do tej temperatury. Jeżeli jest równe 0, grzanie głowicy będzie wyłączone." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:105 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "Aktualna temperatura tej głowicy." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:182 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "Temperatura do wstępnego podgrzewania głowicy." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:271 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:259 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Anuluj" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:274 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:263 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Podgrzewanie wstępne" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:297 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Podgrzej głowicę przed drukowaniem. Możesz w dalszym ciągu dostosowywać drukowanie podczas podgrzewania i nie będziesz musiał czekać na podgrzanie głowicy kiedy będziesz gotowy." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:335 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "Kolor materiału w tym ekstruderze." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:367 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "Materiał w głowicy drukującej." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:400 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "Dysza włożona do tego ekstrudera." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:25 +msgctxt "@label" +msgid "Build plate" +msgstr "Stół roboczy" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:55 +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 "Temperatura docelowa podgrzewanego stołu. Stół rozgrzeje się lub schłodzi w kierunku tej temperatury. Jeśli ustawione jest 0, grzanie stołu jest wyłączone." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "Bieżąca temperatura podgrzewanego stołu." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:162 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "Temperatura do wstępnego podgrzewania stołu." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:286 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Przed drukowaniem podgrzej stół. W dalszym ciągu można dostosowywać druk podczas nagrzewania, a nie będziesz musiał czekać na rozgrzanie stołu, gdy będziesz gotowy do drukowania." + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:51 +msgctxt "@label" +msgid "Printer control" +msgstr "Kontrola drukarką" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:66 +msgctxt "@label" +msgid "Jog Position" +msgstr "Pozycja Swobodnego Ruchu" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:82 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:162 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:217 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Dystans Swobodnego Ruchu" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Send G-code" +msgstr "Wyślij G-code" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:319 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Wyślij niestandardową komendę G-code do podłączonej drukarki. Naciśnij 'enter', aby wysłać komendę." + +#: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "Drukarka nie jest podłączona." + +#: resources/qml/PrinterSelector/MachineListButton.qml:34 +msgctxt "@label" +msgid "Hide all connected printers" +msgstr "" + +#: resources/qml/PrinterSelector/MachineListButton.qml:47 +msgctxt "@label" +msgid "Show all connected printers" +msgstr "" + +#: resources/qml/PrinterSelector/MachineSelector.qml:64 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "" + +#: resources/qml/PrinterSelector/MachineSelector.qml:68 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "" + +#: resources/qml/PrinterSelector/MachineSelector.qml:73 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "" + +#: resources/qml/PrinterSelector/MachineSelector.qml:78 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "" + +#: resources/qml/PrinterSelector/MachineSelectorList.qml:30 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:32 +msgctxt "@label" +msgid "Other printers" +msgstr "" + +#: resources/qml/ProfileOverview.qml:36 msgctxt "@title:column" msgid "Setting" msgstr "Ustawienie" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +#: resources/qml/ProfileOverview.qml:37 msgctxt "@title:column" msgid "Profile" msgstr "Profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +#: resources/qml/ProfileOverview.qml:38 msgctxt "@title:column" msgid "Current" msgstr "Aktualny" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +#: resources/qml/ProfileOverview.qml:39 msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +#: resources/qml/SearchBar.qml:17 msgctxt "@placeholder" msgid "Search" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 +#: resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5738,32 +6535,32 @@ msgstr "" "\n" "Kliknij, aby te ustawienia były widoczne." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 +#: resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "To ustawienie nie jest używane, ponieważ wszystkie ustawienia, na które wpływa, są nadpisane." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +#: resources/qml/Settings/SettingItem.qml:89 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Wpływać" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +#: resources/qml/Settings/SettingItem.qml:94 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "Pod wpływem" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:190 +#: resources/qml/Settings/SettingItem.qml:196 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "To ustawienie jest dzielone pomiędzy wszystkimi ekstruderami. Zmiana tutaj spowoduje zmianę dla wszystkich ekstruderów." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +#: resources/qml/Settings/SettingItem.qml:200 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +#: resources/qml/Settings/SettingItem.qml:240 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5774,7 +6571,7 @@ msgstr "" "\n" "Kliknij, aby przywrócić wartość z profilu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:334 +#: resources/qml/Settings/SettingItem.qml:340 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5785,4163 +6582,324 @@ msgstr "" "\n" "Kliknij, aby przywrócić wartość obliczoną." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +#: resources/qml/Settings/SettingView.qml:48 msgctxt "@label:textbox" msgid "Search settings" msgstr "Ustawienia wyszukiwania" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:395 +#: resources/qml/Settings/SettingView.qml:395 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Skopiuj wartość do wszystkich ekstruderów" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:404 +#: resources/qml/Settings/SettingView.qml:404 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Skopiuj wszystkie zmienione wartości do wszystkich ekstruderów" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:440 +#: resources/qml/Settings/SettingView.qml:440 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Ukryj tę opcję" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:453 +#: resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Nie pokazuj tej opcji" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:457 +#: resources/qml/Settings/SettingView.qml:457 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Pozostaw tę opcję widoczną" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +#: resources/qml/Toolbar.qml:142 +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" +msgstr[0] "Drukuj Wybrany Model z %1" +msgstr[1] "Drukuj Wybrane Modele z %1" + +#: resources/qml/ViewOrientationControls.qml:25 msgctxt "@info:tooltip" msgid "3D View" msgstr "Widok 3D" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +#: resources/qml/ViewOrientationControls.qml:38 msgctxt "@info:tooltip" msgid "Front View" msgstr "Widok z przodu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +#: resources/qml/ViewOrientationControls.qml:51 msgctxt "@info:tooltip" msgid "Top View" msgstr "Widok z góry" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +#: resources/qml/ViewOrientationControls.qml:64 msgctxt "@info:tooltip" msgid "Left View" msgstr "Widok z lewej strony" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +#: resources/qml/ViewOrientationControls.qml:77 msgctxt "@info:tooltip" msgid "Right View" msgstr "Widok z prawej strony" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: resources/qml/ViewsSelector.qml:50 msgctxt "@label" msgid "View type" msgstr "Typ widoku" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:47 msgctxt "@label" msgid "Add a Cloud printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:73 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:73 msgctxt "@label" msgid "Waiting for Cloud response" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:83 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:83 msgctxt "@label" msgid "No printers found in your account?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:117 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:117 msgctxt "@label" msgid "The following printers in your account have been added in Cura:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:186 msgctxt "@button" msgid "Add printer manually" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 msgctxt "@label" msgid "Manufacturer" msgstr "Producent" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Profile author" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 msgctxt "@label" msgid "Printer name" msgstr "Nazwa drukarki" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 msgctxt "@text" msgid "Please name your printer" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "Dodaj drukarkę" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:38 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Dodaj drukarkę sieciową" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:87 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Dodaj drukarkę niesieciową" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 msgctxt "@label" msgid "There is no printer found over your network." msgstr "Nie znaleziono drukarki w Twojej sieci." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 msgctxt "@label" msgid "Refresh" msgstr "Odśwież" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 msgctxt "@label" msgid "Add printer by IP" msgstr "Dodaj drukarkę przez IP" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205 msgctxt "@label" msgid "Troubleshooting" msgstr "Rozwiązywanie problemów" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 msgctxt "@label" msgid "Add printer by IP address" msgstr "Dodaj drukarkę przez IP" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 msgctxt "@text" msgid "Enter your printer's IP address." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 msgctxt "@button" msgid "Add" msgstr "Dodaj" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 msgctxt "@label" msgid "Could not connect to device." msgstr "Nie można połączyć się z urządzeniem." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" +msgid "Can't connect to your UltiMaker printer?" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 msgctxt "@label" msgid "The printer at this address has not responded yet." msgstr "Drukarka pod tym adresem jeszcze nie odpowiedziała." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 msgctxt "@label" msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." msgstr "Ta drukarka nie może zostać dodana, ponieważ jest nieznana lub nie jest hostem grupy." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 msgctxt "@button" msgid "Connect" msgstr "Połącz" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Dodaj drukarkę sieciową" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Dodaj drukarkę niesieciową" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102 +msgctxt "@button" +msgid "Add UltiMaker printer via Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "In order to start using Cura you will need to configure a printer." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36 +msgctxt "@label" +msgid "What printer would you like to setup?" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55 +msgctxt "@button" +msgid "UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64 +msgctxt "@button" +msgid "Non UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73 +msgctxt "@button" +msgid "Learn more about adding printers to Cura" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29 +msgctxt "@label" +msgid "Add printer" +msgstr "Dodaj drukarkę" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33 +msgctxt "@label" +msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70 +msgctxt "@label" +msgid "If you are trying to add a new UltiMaker printer to Cura" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80 +msgctxt "@info" +msgid "Sign in into UltiMaker Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81 +msgctxt "@info" +msgid "Follow the procedure to add a new printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82 +msgctxt "@info" +msgid "Your new printer will automatically appear in Cura" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100 +msgctxt "@button" +msgid "Learn more" +msgstr "Chcesz więcej?" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121 +msgctxt "@button" +msgid "Add local printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129 +msgctxt "@button" +msgid "Sign in to Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133 +msgctxt "@button" +msgid "Waiting for new printers" +msgstr "" + +#: resources/qml/WelcomePages/ChangelogContent.qml:24 msgctxt "@label" msgid "Release Notes" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:123 +#: resources/qml/WelcomePages/CloudContent.qml:123 msgctxt "@text" msgid "Add material settings and plugins from the Marketplace" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:149 +#: resources/qml/WelcomePages/CloudContent.qml:149 msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:175 +#: resources/qml/WelcomePages/CloudContent.qml:175 msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +#: resources/qml/WelcomePages/CloudContent.qml:189 msgctxt "@button" msgid "Skip" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +#: resources/qml/WelcomePages/CloudContent.qml:201 msgctxt "@text" -msgid "Create a free Ultimaker Account" +msgid "Create a free UltiMaker Account" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Pomóż nam ulepszyć Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:56 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura zbiera anonimowe dane w celu poprawy jakości druku i komfortu użytkownika, w tym:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:68 -msgctxt "@text" -msgid "Machine types" -msgstr "Typy maszyn" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:74 -msgctxt "@text" -msgid "Material usage" -msgstr "Zużycie materiału" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:80 -msgctxt "@text" -msgid "Number of slices" -msgstr "Ilość warstw" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:86 -msgctxt "@text" -msgid "Print settings" -msgstr "Ustawienia druku" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:99 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Dane zebrane przez Ultimaker Cura nie będą zawierać żadnych prywatnych danych osobowych." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:100 -msgctxt "@text" -msgid "More information" -msgstr "Więcej informacji" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +#: resources/qml/WelcomePages/DropDownWidget.qml:93 msgctxt "@label" msgid "Empty" msgstr "Pusty" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +#: resources/qml/WelcomePages/UserAgreementContent.qml:23 msgctxt "@label" msgid "User Agreement" msgstr "Umowa z użytkownikiem" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67 +#: resources/qml/WelcomePages/UserAgreementContent.qml:67 msgctxt "@button" msgid "Decline and close" msgstr "Odrzuć i zamknij" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Witaj w Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:67 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:82 -msgctxt "@button" -msgid "Get started" -msgstr "Rozpocznij" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: resources/qml/WelcomePages/WhatsNewContent.qml:28 msgctxt "@label" msgid "What's New" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: resources/qml/Widgets/ComboBox.qml:18 msgctxt "@label" msgid "No items to select from" msgstr "" -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Sprawdza możliwe problemy drukowania modeli i konfiguracji wydruku i podaje porady." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "Sprawdzacz Modelu" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Zapewnia wsparcie dla czytania plików 3MF." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "Czytnik 3MF" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Zapewnia wsparcie dla tworzenia plików 3MF." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF Writer" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Zapewnia wsparcie dla czytania plików AMF." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "Czytnik AMF" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Utwórz kopię zapasową i przywróć konfigurację." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Kopie zapasowe Cura" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Zapewnia połączenie z tnącym zapleczem CuraEngine." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Zaplecze CuraEngine" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Zapewnia wsparcie dla importowania profili Cura." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Czytnik Profili Cura" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Zapewnia wsparcie dla eksportowania profili Cura." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura Profile Writer" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "" - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Sprawdź aktualizacje oprogramowania." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Sprawdzacz Aktualizacji Oprogramowania" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Dostarcza działanie, pozwalające na aktualizację oprogramowania sprzętowego." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Aktualizacja oprogramowania sprzętowego" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Odczytuje g-code ze skompresowanych archiwum." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Czytnik Skompresowanego G-code" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Zapisuje g-code do skompresowanego archiwum." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Zapisywacz Skompresowanego G-code" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Zapewnia wsparcie dla importowania profili z plików g-code." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Czytnik Profili G-code" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Pozwala na ładowanie i wyświetlanie plików G-code." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "Czytnik G-code" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Zapisuje g-code do pliku." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "Zapisywacz G-code" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Włącza możliwość generowania drukowalnej geometrii z pliku obrazu 2D." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Czytnik Obrazu" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Zapewnia wsparcie dla importowania profili ze starszych wersji Cura." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Czytnik Profili Starszej Cura" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Zapewnia możliwość zmiany ustawień maszyny (takich jak objętość robocza, rozmiar dyszy itp.)." - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "" - -#: Marketplace/plugin.json -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the Ultimaker website." -msgstr "" - -#: Marketplace/plugin.json -msgctxt "name" -msgid "Marketplace" -msgstr "" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Zapewnia etap monitorowania w Cura." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Etap Monitorowania" - -#: PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Zapewnia Ustawienia dla Każdego Modelu." - -#: PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Narzędzie Ustawień dla Każdego Modelu" - -#: PostProcessingPlugin/plugin.json -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Dodatek, który pozwala użytkownikowi tworzenie skryptów do post processingu" - -#: PostProcessingPlugin/plugin.json -msgctxt "name" -msgid "Post Processing" -msgstr "Post Processing" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Zapewnia etap przygotowania w Cura." - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "Etap Przygotowania" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Dostarcza podgląd w Cura." - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "Podgląd" - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Zapewnia wsparcie dla podłączania i zapisywania dysków zewnętrznych." - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Wtyczka Urządzenia Wyjścia Dysku Zewnętrznego" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "" - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "Widok Symulacji" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Zatwierdza anonimowe informację o cięciu. Może być wyłączone w preferencjach." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Informacje o cięciu" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Zapewnia normalny widok siatki." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Widok Bryły" - -#: SupportEraser/plugin.json -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Tworzy siatkę do blokowania drukowania podpór w określonych miejscach" - -#: SupportEraser/plugin.json -msgctxt "name" -msgid "Support Eraser" -msgstr "Usuwacz Podpór" - -#: TrimeshReader/plugin.json -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Zapewnia wsparcie dla czytania plików modeli." - -#: TrimeshReader/plugin.json -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Czytnik siatki trójkątów" - -#: UFPReader/plugin.json -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Zapewnia obsługę odczytu pakietów formatu Ultimaker." - -#: UFPReader/plugin.json -msgctxt "name" -msgid "UFP Reader" -msgstr "Czytnik UFP" - -#: UFPWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Zapewnia wsparcie dla zapisywania Pakietów Formatów Ultimaker." - -#: UFPWriter/plugin.json -msgctxt "name" -msgid "UFP Writer" -msgstr "Zapisywacz UFP" - -#: UltimakerMachineActions/plugin.json -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Zapewnia czynności maszyny dla urządzeń Ultimaker (na przykład kreator poziomowania stołu, wybór ulepszeń itp.)." - -#: UltimakerMachineActions/plugin.json -msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Czynności maszyny Ultimaker" - -#: UM3NetworkPrinting/plugin.json -msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Zarządza połączeniami z sieciowymi drukarkami Ultimaker." - -#: UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Połączenie sieciowe Ultimaker" - -#: USBPrinting/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Akceptuje G-Code i wysyła je do drukarki. Wtyczka może też aktualizować oprogramowanie." - -#: USBPrinting/plugin.json -msgctxt "name" -msgid "USB printing" -msgstr "Drukowanie USB" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Ulepsza konfigurację z Cura 2.1 do Cura 2.2." - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Ulepszenie Wersji z 2.1 do 2.2" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Ulepsza konfigurację z Cura 2.2 do Cura 2.4." - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Ulepszenie Wersji z 2.2 do 2.4" - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Ulepsza konfigurację z Cura 2.5 do Cura 2.6." - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Ulepszenie Wersji z 2.5 do 2.6" - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Ulepsza konfigurację z Cura 2.6 do Cura 2.7." - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Ulepszenie Wersji z 2.6 do 2.7" - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Ulepsza konfigurację z Cura 2.7 do Cura 3.0." - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Ulepszenie Wersji 2.7 do 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Ulepsza konfigurację z Cura 3.0 do Cura 3.1." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Ulepszenie Wersji 3.0 do 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Ulepsza konfigurację z Cura 3.2 do Cura 3.3." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Ulepszenie Wersji z 3.2 do 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Ulepsza konfigurację z Cura 3.3 do Cura 3.4." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Ulepszenie Wersji z 3.3 do 3.4" - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Ulepsza konfigurację z Cura 3.4 do Cura 3.5." - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Ulepszenie Wersji z 3.4 do 3.5" - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Uaktualnia konfiguracje z Cura 3.5 to Cura 4.0." - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Uaktualnij wersję 3.5 do 4.0" - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Uaktualnia konfiguracje z Cura 4.0 to Cura 4.1." - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Uaktualnij wersję 4.0 do 4.1" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "" - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Uaktualnia konfiguracje z Cura 4.1 to Cura 4.2." - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Uaktualnij wersję 4.1 do 4.2" - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Uaktualnia konfiguracje z Cura 4.2 to Cura 4.3." - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Uaktualnij wersję 4.2 do 4.3" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Uaktualnia konfiguracje z Cura 4.3 to Cura 4.4." - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Uaktualnij wersję 4.3 do 4.4" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Zapewnia możliwość czytania plików X3D." - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "Czytnik X3D" - -#: XmlMaterialProfile/plugin.json -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Zapewnia możliwość czytania i tworzenia profili materiałów opartych o XML." - -#: XmlMaterialProfile/plugin.json -msgctxt "name" -msgid "Material Profiles" -msgstr "Profile Materiału" - -#: XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Zapewnia widok rentgena." - -#: XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "Widok Rentgena" - -#~ msgctxt "@label" -#~ msgid "Not yet initialized
    " -#~ msgstr "Jeszcze nie uruchomiono
    " - -#~ msgctxt "@label" -#~ msgid "SVG icons" -#~ msgstr "Ikony SVG" - -#~ msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" -#~ msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" -#~ msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" -#~ msgstr[0] "Nie ma profilu %1 dla konfiguracji w ekstruderze %2. Zamiast tego zostaną użyte domyślne cale" -#~ msgstr[1] "Nie ma profilu %1 dla konfiguracji w ekstruderach %2. Zamiast tego zostaną użyte domyślne cale" - -#~ msgctxt "@tooltip" -#~ msgid "You have modified some profile settings. If you want to change these go to custom mode." -#~ msgstr "Zmodyfikowałeś ustawienia profilu. Jeżeli chcesz je zmienić, przejdź do trybu niestandardowego." - -#~ msgctxt "@title:window" -#~ msgid "Convert Image..." -#~ msgstr "Konwertuj obraz ..." - -#~ msgctxt "@info:tooltip" -#~ msgid "The width in millimeters on the build plate." -#~ msgstr "Szerokość w milimetrach na stole." - -#~ msgctxt "@title" -#~ msgid "Marketplace" -#~ msgstr "Marketplace" - -#~ msgctxt "@info" -#~ msgid "You will need to restart Cura before changes in packages have effect." -#~ msgstr "Należy uruchomić ponownie Cura, aby zmiany w pakietach przyniosły efekt." - -#~ msgctxt "@action:button" -#~ msgid "Install" -#~ msgstr "Instaluj" - -#~ msgctxt "@action:button" -#~ msgid "Installed" -#~ msgstr "Zainstalowane" - -#~ msgctxt "@label" -#~ msgid "Compatibility" -#~ msgstr "Zgodność" - -#~ msgctxt "@label:table_header" -#~ msgid "Machine" -#~ msgstr "Drukarka" - -#~ msgctxt "@label:table_header" -#~ msgid "Build Plate" -#~ msgstr "Stół roboczy" - -#~ msgctxt "@label:table_header" -#~ msgid "Support" -#~ msgstr "Podpory" - -#~ msgctxt "@label:table_header" -#~ msgid "Quality" -#~ msgstr "Jakość" - -#~ msgctxt "@action:label" -#~ msgid "Technical Data Sheet" -#~ msgstr "Dane Techniczne" - -#~ msgctxt "@action:label" -#~ msgid "Safety Data Sheet" -#~ msgstr "Dane Bezpieczeństwa" - -#~ msgctxt "@action:label" -#~ msgid "Printing Guidelines" -#~ msgstr "Wskazówki Drukowania" - -#~ msgctxt "@action:label" -#~ msgid "Website" -#~ msgstr "Strona Internetowa" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to install or update" -#~ msgstr "Zaloguj aby zainstalować lub aktualizować" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Buy material spools" -#~ msgstr "Kup materiał na szpulach" - -#~ msgctxt "@action:button" -#~ msgid "Update" -#~ msgstr "Aktualizuj" - -#~ msgctxt "@action:button" -#~ msgid "Updating" -#~ msgstr "Aktualizowanie" - -#~ msgctxt "@action:button" -#~ msgid "Updated" -#~ msgstr "Zaktualizowano" - -#~ msgctxt "@action:button" -#~ msgid "Back" -#~ msgstr "Powrót" - -#~ msgctxt "@title:tab" -#~ msgid "Plugins" -#~ msgstr "Wtyczki" - -#~ msgctxt "@title:tab" -#~ msgid "Installed" -#~ msgstr "Zainstalowano" - -#~ msgctxt "@label" -#~ msgid "Will install upon restarting" -#~ msgstr "Zostanie zainstalowane po ponownym uruchomieniu" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to update" -#~ msgstr "Zaloguj aby aktualizować" - -#~ msgctxt "@action:button" -#~ msgid "Downgrade" -#~ msgstr "Zainstaluj poprzednią wersję" - -#~ msgctxt "@action:button" -#~ msgid "Uninstall" -#~ msgstr "Odinstaluj" - -#~ msgctxt "@label" -#~ msgid "Community Contributions" -#~ msgstr "Udział Społeczności" - -#~ msgctxt "@label" -#~ msgid "Community Plugins" -#~ msgstr "Wtyczki Społeczności" - -#~ msgctxt "@label" -#~ msgid "Generic Materials" -#~ msgstr "Materiały Podstawowe" - -#~ msgctxt "@info" -#~ msgid "Fetching packages..." -#~ msgstr "Uzyskiwanie pakietów..." - -#~ msgctxt "@label" -#~ msgid "Website" -#~ msgstr "Strona internetowa" - -#~ msgctxt "@label" -#~ msgid "Email" -#~ msgstr "E-mail" - -#~ msgctxt "@label" -#~ msgid "Version" -#~ msgstr "Wersja" - -#~ msgctxt "@label" -#~ msgid "Last updated" -#~ msgstr "Ostatnia aktualizacja" - -#~ msgctxt "@label" -#~ msgid "Downloads" -#~ msgstr "Pobrań" - -#~ msgctxt "@info" -#~ msgid "Could not connect to the Cura Package database. Please check your connection." -#~ msgstr "Nie można połączyć się z bazą danych pakietów Cura. Sprawdź swoje połączenie z internetem." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall" -#~ msgstr "Potwierdź deinstalację" - -#~ msgctxt "@text:window" -#~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -#~ msgstr "Odinstalowujesz materiały i/lub profile, które są aktualnie używane. Zatwierdzenie spowoduje przywrócenie bieżących ustawień materiału/profilu do ustawień domyślnych." - -#~ msgctxt "@text:window" -#~ msgid "Materials" -#~ msgstr "Materiały" - -#~ msgctxt "@text:window" -#~ msgid "Profiles" -#~ msgstr "Profile" - -#~ msgctxt "@action:button" -#~ msgid "Confirm" -#~ msgstr "Potwierdź" - -#~ msgctxt "@info:tooltip" -#~ msgid "Some things could be problematic in this print. Click to see tips for adjustment." -#~ msgstr "Niektóre rzeczy mogą być problematyczne podczas tego wydruku. Kliknij, aby zobaczyć porady dotyczące regulacji." - -#~ msgctxt "@label" -#~ msgid "Support library for handling planar objects" -#~ msgstr "Biblioteka pomocnicza do obsługi obiektów płaskich" - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Build plate" -#~ msgstr "P&ole robocze" - -#~ msgctxt "@label" -#~ msgid "Create" -#~ msgstr "Stwórz" - -#~ msgctxt "@label" -#~ msgid "Duplicate" -#~ msgstr "Duplikuj" - -#~ msgctxt "@label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "Drukarka: %1" - -#~ msgctxt "@action:button" -#~ msgid "Update profile with current settings/overrides" -#~ msgstr "Aktualizuj profil z bieżącymi ustawieniami" - -#~ msgctxt "@label" -#~ msgid "Theme:" -#~ msgstr "Motyw:" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for these changes to have effect." -#~ msgstr "Musisz zrestartować aplikację, aby te zmiany zaczęły obowiązywać." - -#~ msgctxt "@action:button" -#~ msgid "More information" -#~ msgstr "Więcej informacji" - -#~ msgctxt "@action:button" -#~ msgid "Create" -#~ msgstr "Stwórz" - -#~ msgctxt "@action:label" -#~ msgid "Printer" -#~ msgstr "Drukarka" - -#~ msgctxt "@title:column" -#~ msgid "Unit" -#~ msgstr "Jednostka" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting Guide" -#~ msgstr "Pokaż przewodnik rozwiązywania problemów online" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange All Models To All Build Plates" -#~ msgstr "Rozłóż Wszystkie Modele na Wszystkie Platformy Robocze" - -#~ msgctxt "@action:menu" -#~ msgid "&Marketplace" -#~ msgstr "&Marketplace" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new Cura packages." -#~ msgstr "Znajdź, zarządzaj i instaluj nowe pakiety Cura." - -#~ msgctxt "name" -#~ msgid "Toolbox" -#~ msgstr "Narzędzia" - -#~ msgctxt "description" -#~ msgid "Provides the Simulation view." -#~ msgstr "Zapewnia widok Symulacji." - -#~ msgctxt "@info:status" -#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Wyślij i nadzoruj zadania druku z każdego miejsca, używając konta Ultimaker." - -#~ msgctxt "@info:title The %s gets replaced with the printer name." -#~ msgid "New %s firmware available" -#~ msgstr "Nowe oprogramowanie %s jest dostępne" - -#~ msgctxt "@label:listbox" -#~ msgid "Layer thickness" -#~ msgstr "Grubość warstwy" - -#~ msgctxt "@button" -#~ msgid "Create account" -#~ msgstr "Utwórz konto" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete Selected Model" -#~ msgid_plural "Delete Selected Models" -#~ msgstr[0] "Usuń wybrany model" -#~ msgstr[1] "Usuń wybrane modele" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Center Selected Model" -#~ msgid_plural "Center Selected Models" -#~ msgstr[0] "Wyśrodkuj wybrany model" -#~ msgstr[1] "Wyśrodkuj wybrane modele" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Multiply Selected Model" -#~ msgid_plural "Multiply Selected Models" -#~ msgstr[0] "Rozmnóż wybrany model" -#~ msgstr[1] "Rozmnóż wybrane modele" - -#~ msgctxt "@button" -#~ msgid "Finish" -#~ msgstr "Koniec" - -#~ msgctxt "@text" -#~ msgid "" -#~ "Please follow these steps to set up\n" -#~ "Ultimaker Cura. This will only take a few moments." -#~ msgstr "" -#~ "Wykonaj poniższe kroki, aby skonfigurować\n" -#~ "Ultimaker Cura. To zajmie tylko kilka chwil." - -#~ msgctxt "@label" -#~ msgid "What's new in Ultimaker Cura" -#~ msgstr "Co nowego w Ultimaker Cura" - -#~ msgctxt "@info:status" -#~ msgid "The selected model was too small to load." -#~ msgstr "Wybrany model był zbyta mały do załadowania." - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profile {0}" -#~ msgstr "Profil zaimportowany {0}" - -#~ msgctxt "@info:status" -#~ msgid "Could not find a quality type {0} for the current configuration." -#~ msgstr "Nie można znaleźć typu jakości {0} dla bieżącej konfiguracji." - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update" -#~ msgstr "Aktualizacja" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Create new" -#~ msgstr "Utwórz nowy" - -#~ msgctxt "@info" -#~ msgid "The webcam is not available because you are monitoring a cloud printer." -#~ msgstr "Kamera nie jest dostępna, ponieważ nadzorujesz drukarkę w chmurze." - -#~ msgctxt "@text" -#~ msgid "Please give your printer a name" -#~ msgstr "Podaj nazwę drukarki" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." -#~ msgstr "Nowe funkcje są dostępne dla twojej {machine_name}! Rekomendowane jest zaktualizowanie oprogramowania drukarki." - -#~ msgctxt "@action:button" -#~ msgid "Print via Cloud" -#~ msgstr "Drukuj przez Chmurę" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print via Cloud" -#~ msgstr "Drukuj przez Chmurę" - -#~ msgctxt "@info:status" -#~ msgid "Connected via Cloud" -#~ msgstr "Połączony z Chmurą" - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Połacz z Ultimaker Cloud" - -#~ msgctxt "@label" -#~ msgid "You need to login first before you can rate" -#~ msgstr "Musisz być zalogowany aby ocenić" - -#~ msgctxt "@label" -#~ msgid "You need to install the package before you can rate" -#~ msgstr "Musisz zainstalować pakiety zanim będziesz mógł ocenić" - -#~ msgctxt "@label" -#~ msgid "ratings" -#~ msgstr "oceny" - -#~ msgctxt "@label" -#~ msgid "Featured" -#~ msgstr "Polecane" - -#~ msgctxt "@label" -#~ msgid "Your rating" -#~ msgstr "Twoja ocena" - -#~ msgctxt "@label" -#~ msgid "Author" -#~ msgstr "Autor" - -#~ msgctxt "@label The argument is a username." -#~ msgid "Hi %1" -#~ msgstr "Cześć %1" - -#~ msgctxt "@button" -#~ msgid "Ultimaker account" -#~ msgstr "Konto Ultimaker" - -#~ msgctxt "@button" -#~ msgid "Sign out" -#~ msgstr "Wyloguj" - -#~ msgctxt "@label" -#~ msgid "Support library for analysis of complex networks" -#~ msgstr "Biblioteka pomocnicza do analizy złożonych sieci" - -#~ msgctxt "@Label" -#~ msgid "Python HTTP library" -#~ msgstr "Biblioteka Python HTTP" - -#~ msgctxt "@text:window" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to keep or discard those settings?" -#~ msgstr "" -#~ "Dostosowałeś ustawienia profilu.\n" -#~ "Chcesz zachować, czy usunąć te ustawienia?" - -#~ msgctxt "@title:column" -#~ msgid "Default" -#~ msgstr "Domyślne" - -#~ msgctxt "@title:column" -#~ msgid "Customized" -#~ msgstr "Dostosowane" - -#~ msgctxt "@action:button" -#~ msgid "Discard" -#~ msgstr "Odrzuć" - -#~ msgctxt "@action:button" -#~ msgid "Keep" -#~ msgstr "Zachowaj" - -#~ msgctxt "@action:button" -#~ msgid "Create New Profile" -#~ msgstr "Utwórz nowy profil" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "&Save..." -#~ msgstr "&Zapisz..." - -#~ msgctxt "@text" -#~ msgid "Place enter your printer's IP address." -#~ msgstr "Wprowadź adres IP drukarki." - -#~ msgctxt "@button" -#~ msgid "Create an account" -#~ msgstr "Stwórz konto" - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder." -#~ msgstr "Nic do pocięcia, ponieważ żaden z modeli nie mieści się w obszarze roboczym lub jest przypisany do wyłączonego ekstrudera. Skaluj lub obróć modele, aby dopasować lub włącz ekstruder." - -#~ msgctxt "@info:backup_status" -#~ msgid "There was an error listing your backups." -#~ msgstr "Wystąpił błąd z listą kopii zapasowych." - -#~ msgctxt "@title:groupbox" -#~ msgid "User description (Note: Developers may not speak your language, please use English if possible)" -#~ msgstr "Opis użytkownika (Uwaga: programiści mogą nie mówić w Twoim języku, w miarę możliwości używaj angielskiego)" - -#~ msgctxt "@title:window" -#~ msgid "Closing Cura" -#~ msgstr "Zamykanie Cura" - -#~ msgctxt "@label" -#~ msgid "Are you sure you want to exit Cura?" -#~ msgstr "Czy jesteś pewien, że chcesz zakończyć Cura?" - -#~ msgctxt "@label" -#~ msgid "Language:" -#~ msgstr "Język:" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Cloud" -#~ msgstr "Chmura Ultimaker" - -#~ msgctxt "@text" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "Nowa generacja systemu drukowania 3D" - -#~ msgctxt "@text" -#~ msgid "- Send print jobs to Ultimaker printers outside your local network" -#~ msgstr "- Wysyłaj zadania druku do drukarek Ultimaker poza siecią lokalną" - -#~ msgctxt "@text" -#~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere" -#~ msgstr "- Przechowuj ustawienia Ultimaker Cura w chmurze, aby używać w każdym miejscu" - -#~ msgctxt "@text" -#~ msgid "- Get exclusive access to print profiles from leading brands" -#~ msgstr "- Uzyskaj wyłączny dostęp do profili materiałów wiodących marek" - -#~ msgctxt "@label" -#~ msgid "The value is resolved from per-extruder values " -#~ msgstr "Wartość jest pobierana z osobna dla każdego ekstrudera " - -#~ msgctxt "@label" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "Nowa generacja systemu drukowania 3D" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to print profiles from leading brands" -#~ msgstr "" -#~ "- Wysyłaj zadania druku do drukarek Ultimaker poza siecią lokalną\n" -#~ "- Przechowuj ustawienia Ultimaker Cura w chmurze, aby używać w każdym miejscu\n" -#~ "- Uzyskaj wyłączny dostęp do profili materiałów wiodących marek" - -#~ msgctxt "@info:button" -#~ msgid "Quit Cura" -#~ msgstr "Zakończ Cura" - -#~ msgctxt "@action:checkbox" -#~ msgid "Infill only" -#~ msgstr "Tylko wypełnienie" - -#~ msgctxt "@info:tooltip" -#~ msgid "Change active post-processing scripts" -#~ msgstr "Zmień aktywne skrypty post-processingu" - -#~ msgctxt "@label:listbox" -#~ msgid "Feedrate" -#~ msgstr "Szybkość Posuwu" - -#~ msgctxt "name" -#~ msgid "Machine Settings action" -#~ msgstr "Ustawienia Maszyny" - #~ msgctxt "@info:title" -#~ msgid "New cloud printers found" -#~ msgstr "Znaleziono nowe drukarki w chmurze" - -#~ msgctxt "@info:message" -#~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers." -#~ msgstr "Nowe drukarki podłączone do Twojego konta zostały znalezione, można je odszukać na liście wykrytych drukarek." - -#~ msgctxt "@info:status" -#~ msgid "Cura does not accurately display layers when Wire Printing is enabled" -#~ msgstr "Cura nie wyświetla dokładnie warstw kiedy drukowanie przewodowe jest włączone" - -#~ msgctxt "@label" -#~ msgid "Pre-sliced file {0}" -#~ msgstr "Plik pocięty wcześniej {0}" - -#~ msgctxt "@label" -#~ msgid "" -#~ "This plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ "Ten plugin zawiera licencje.\n" -#~ "Musisz zaakceptować tę licencję, aby zainstalować ten plugin.\n" -#~ "Akceptujesz poniższe postanowienia?" - -#~ msgctxt "@action:button" -#~ msgid "Accept" -#~ msgstr "Akceptuj" - -#~ msgctxt "@action:button" -#~ msgid "Decline" -#~ msgstr "Odrzuć" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show All Settings" -#~ msgstr "Pokaż Wszystkie Ustawienia" - -#~ msgctxt "@title:window" -#~ msgid "Ultimaker Cura" -#~ msgstr "Cura Ultimaker" - -#~ msgctxt "@title:window" -#~ msgid "About Cura" -#~ msgstr "O Cura" - -#~ msgctxt "@item:inmenu" -#~ msgid "Flatten active settings" -#~ msgstr "Spłaszczyć aktywne ustawienia" - -#~ msgctxt "@info:status" -#~ msgid "Profile has been flattened & activated." -#~ msgstr "Profil został spłaszczony i aktywowany." - -#~ msgctxt "X3g Writer Plugin Description" -#~ msgid "Writes X3g to files" -#~ msgstr "Zapisuje do plików X3g" - -#~ msgctxt "X3g Writer File Description" -#~ msgid "X3g File" -#~ msgstr "Plik X3g" - -#~ msgctxt "X3G Writer File Description" -#~ msgid "X3G File" -#~ msgstr "Plik X3G" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Open Compressed Triangle Mesh" -#~ msgstr "Otwórz skompresowaną siatkę trójkątów" - -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "Asystent Profilu" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "Asystent Profilu" - -#~ msgctxt "@action:button" -#~ msgid "Retry" -#~ msgstr "Spróbuj ponownie" - -#~ msgctxt "@label:table_header" -#~ msgid "Print Core" -#~ msgstr "Rdzeń drukujący" - -#~ msgctxt "@label" -#~ msgid "Don't support overlap with other models" -#~ msgstr "Nie wspieraj nałożeń z innymi modelami" - -#~ msgctxt "@label" -#~ msgid "Modify settings for overlap with other models" -#~ msgstr "Modyfikuj ustawienia nakładania z innymi modelami" - -#~ msgctxt "@label" -#~ msgid "Modify settings for infill of other models" -#~ msgstr "Modyfikuj ustawienia wypełnienia innych modeli" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update existing" -#~ msgstr "Zaktualizuj istniejące" - -#~ msgctxt "@label" -#~ msgid "Not supported" -#~ msgstr "Niewspierany" - -#~ msgctxt "@action:button" -#~ msgid "Previous" -#~ msgstr "Poprzedni" - -#~ msgctxt "@label" -#~ msgid "Tip" -#~ msgstr "Końcówka" - -#~ msgctxt "@label" -#~ msgid "Print experiment" -#~ msgstr "Próbny wydruk" - -#~ msgctxt "@label" -#~ msgid "Checklist" -#~ msgstr "Lista kontrolna" - -#~ msgctxt "@label" -#~ msgid "Please select any upgrades made to this Ultimaker 2." -#~ msgstr "Proszę wybrać ulepszenia w tym Ultimaker 2." - -#~ msgctxt "@label" -#~ msgid "Olsson Block" -#~ msgstr "Olsson Block" - -#~ msgctxt "@window:text" -#~ msgid "Camera rendering: " -#~ msgstr "Renderowanie z kamery: " - -#~ msgctxt "@info:tooltip" -#~ msgid "Use multi build plate functionality" -#~ msgstr "Użyj funkcji wielu pól roboczych" - -#~ msgctxt "@option:check" -#~ msgid "Use multi build plate functionality (restart required)" -#~ msgstr "Użyj funkcji wielu pól roboczych (wymagany restart)" - -#~ msgctxt "@label" -#~ msgid "Default profiles" -#~ msgstr "Domyślne profile" - -#~ msgctxt "@label:textbox" -#~ msgid "search settings" -#~ msgstr "ustawienia wyszukiwania" - -#~ msgctxt "@label" -#~ msgid "Layer Height" -#~ msgstr "Wysokość warstwy" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile." -#~ msgstr "Ten profil jakości nie jest dostępny dla bieżącej konfiguracji materiałów i dysz. Zmień ją, aby włączyć ten profil jakości." - -#~ msgctxt "@tooltip" -#~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" -#~ msgstr "Niestandardowy profil jest obecnie aktywny. Aby włączyć pasek jakości, wybierz domyślny profil w zakładce Niestandardowe" - -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "&Pole robocze" - -#~ msgctxt "@title:settings" -#~ msgid "&Profile" -#~ msgstr "&Profil" - -#~ msgctxt "@action:label" -#~ msgid "Build plate" -#~ msgstr "Pole robocze" - -#~ msgctxt "description" -#~ msgid "Dump the contents of all settings to a HTML file." -#~ msgstr "Wsypuje zawartość wszystkich ustawień do pliku HTML." - -#~ msgctxt "name" -#~ msgid "God Mode" -#~ msgstr "Tryb Boga" - -#~ msgctxt "description" -#~ msgid "Create a flattened quality changes profile." -#~ msgstr "Stwórz spłaszczony profil zmian jakości." - -#~ msgctxt "name" -#~ msgid "Profile Flattener" -#~ msgstr "Spłaszcz profil" - -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "Pozwala twórcą materiałów na tworzenie nowych profili materiałów i jakości używając rozwijanego menu." - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "Asystent Profilów Druku" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network." -#~ msgstr "Połączono przez sieć." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. Please approve the access request on the printer." -#~ msgstr "Połączono przez sieć. Proszę zatwierdzić żądanie dostępu na drukarce." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. No access to control the printer." -#~ msgstr "Połączono przez sieć. Brak dostępu do sterowania drukarką." - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer requested. Please approve the request on the printer" -#~ msgstr "Wymagany dostęp do drukarki. Proszę zatwierdzić prośbę na drukarce" - -#~ msgctxt "@info:title" -#~ msgid "Authentication status" -#~ msgstr "Status uwierzytelniania" - -#~ msgctxt "@info:title" -#~ msgid "Authentication Status" -#~ msgstr "Status Uwierzytelniania" - -#~ msgctxt "@info:tooltip" -#~ msgid "Re-send the access request" -#~ msgstr "Prześlij ponownie żądanie dostępu" - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer accepted" -#~ msgstr "Dostęp do drukarki został zaakceptowany" - -#~ msgctxt "@info:status" -#~ msgid "No access to print with this printer. Unable to send print job." -#~ msgstr "Brak dostępu do tej drukarki. Nie można wysłać zadania drukowania." - -#~ msgctxt "@action:button" -#~ msgid "Request Access" -#~ msgstr "Poproś o dostęp" - -#~ msgctxt "@info:tooltip" -#~ msgid "Send access request to the printer" -#~ msgstr "Wyślij żądanie dostępu do drukarki" - -#~ msgctxt "@label" -#~ msgid "Unable to start a new print job." -#~ msgstr "Nie można uruchomić nowego zadania drukowania." - -#~ msgctxt "@label" -#~ msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." -#~ msgstr "Wystąpił problem z konfiguracją twojego Ultimaker'a, przez który nie można rozpocząć wydruku. Proszę rozwiąż te problemy przed kontynuowaniem." - -#~ msgctxt "@window:title" -#~ msgid "Mismatched configuration" -#~ msgstr "Niedopasowana konfiguracja" - -#~ msgctxt "@label" -#~ msgid "Are you sure you wish to print with the selected configuration?" -#~ msgstr "Czy na pewno chcesz drukować z wybraną konfiguracją?" - -#~ msgctxt "@label" -#~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "Występuje niezgodność między konfiguracją lub kalibracją drukarki a Curą. Aby uzyskać najlepszy rezultat, zawsze tnij dla Print core'ów i materiałów włożonych do drukarki." - -#~ msgctxt "@info:status" -#~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." -#~ msgstr "Wysyłanie nowych zadań (tymczasowo) zostało zablokowane, dalej wysyłane jest poprzednie zadanie." - -#~ msgctxt "@info:status" -#~ msgid "Sending data to printer" -#~ msgstr "Wysyłanie danych do drukarki" - -#~ msgctxt "@info:title" -#~ msgid "Sending Data" -#~ msgstr "Wysyłanie danych" - -#~ msgctxt "@info:status" -#~ msgid "No Printcore loaded in slot {slot_number}" -#~ msgstr "Brak Printcore'a w slocie {slot_number}" - -#~ msgctxt "@info:status" -#~ msgid "No material loaded in slot {slot_number}" -#~ msgstr "Brak załadowanego materiału w slocie {slot_number}" - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" -#~ msgstr "Inny PrintCore (Cura: {cura_printcore_name}, Drukarka: {remote_printcore_name}) wybrany dla extrudera {extruder_id}" - -#~ msgctxt "@label" -#~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Różne materiały (Cura: {0}, Drukarka: {1}) wybrane do dzyszy {2}" - -#~ msgctxt "@window:title" -#~ msgid "Sync with your printer" -#~ msgstr "Synchronizuj się z drukarką" - -#~ msgctxt "@label" -#~ msgid "Would you like to use your current printer configuration in Cura?" -#~ msgstr "Czy chcesz używać bieżącej konfiguracji drukarki w programie Cura?" - -#~ msgctxt "@label" -#~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "PrintCore'y i/lub materiały w drukarce różnią się od tych w obecnym projekcie. Dla najlepszego rezultatu, zawsze tnij dla wybranych PrinCore'ów i materiałów, które są umieszczone w drukarce." - -#~ msgctxt "@action:button" -#~ msgid "View in Monitor" -#~ msgstr "Zobacz w Monitorze" - -#~ msgctxt "@info:status" -#~ msgid "Printer '{printer_name}' has finished printing '{job_name}'." -#~ msgstr "{printer_name} skończyła drukowanie '{job_name}'." - -#~ msgctxt "@info:status" -#~ msgid "The print job '{job_name}' was finished." -#~ msgstr "Zadanie '{job_name}' zostało zakończone." - -#~ msgctxt "@info:status" -#~ msgid "Print finished" -#~ msgstr "Drukowanie zakończone" - -#~ msgctxt "@label:material" -#~ msgid "Empty" -#~ msgstr "Pusty" - -#~ msgctxt "@label:material" -#~ msgid "Unknown" -#~ msgstr "Nieznany" - -#~ msgctxt "@info:title" -#~ msgid "Cloud error" -#~ msgstr "Błąd Chmury" - -#~ msgctxt "@info:status" -#~ msgid "Could not export print job." -#~ msgstr "Nie można eksportować zadania druku." - -#~ msgctxt "@info:description" -#~ msgid "There was an error connecting to the cloud." -#~ msgstr "Wystąpił błąd połączenia z chmurą." - -#~ msgctxt "@info:status" -#~ msgid "Uploading via Ultimaker Cloud" -#~ msgstr "Przesyłanie z Ultimaker Cloud" - -#~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Połącz z Ultimaker Cloud" - -#~ msgctxt "@action" -#~ msgid "Don't ask me again for this printer." -#~ msgstr "Nie pytaj więcej dla tej drukarki." - -#~ msgctxt "@info:status" -#~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Możesz teraz wysłać i nadzorować zadania druku z każdego miejsca, używając konta Ultimaker." - -#~ msgctxt "@info:status" -#~ msgid "Connected!" -#~ msgstr "Połączono!" - -#~ msgctxt "@action" -#~ msgid "Review your connection" -#~ msgstr "Odnów połączenie" - -#~ msgctxt "@info:status Don't translate the XML tags !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "Drukarka zdefiniowana w profilu {0} ({1}) nie jest zgodna z bieżącą drukarką ({2}), nie można jej importować." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}:" -#~ msgstr "Nie powiódł się import profilu z {0}:" - -#~ msgctxt "@window:title" -#~ msgid "Existing Connection" -#~ msgstr "Istniejące Połączenie" - -#~ msgctxt "@message:text" -#~ msgid "This printer/group is already added to Cura. Please select another printer/group." -#~ msgstr "Ta drukarka/grupa jest już dodana do Cura. Proszę wybierz inną drukarkę/grupę." - -#~ msgctxt "@label" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "Podaj adres IP lub nazwę hosta drukarki w sieci." - -#~ msgctxt "@info:tooltip" -#~ msgid "Connect to a printer" -#~ msgstr "Podłącz do drukarki" - -#~ msgctxt "@title" -#~ msgid "Cura Settings Guide" -#~ msgstr "Przewodnik po ustawieniach Cura" - -#~ msgctxt "description" -#~ msgid "Manages network connections to Ultimaker 3 printers." -#~ msgstr "Zarządza ustawieniami połączenia sieciowego z drukarkami Ultimaker 3." - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection" -#~ msgstr "Połączenie Sieciowe UM3" - -#~ msgctxt "description" -#~ msgid "Provides extra information and explanations about settings in Cura, with images and animations." -#~ msgstr "Zawiera dodatkowe informacje i objaśnienia dotyczące ustawień w Cura, z obrazami i animacjami." - -#~ msgctxt "name" -#~ msgid "Settings Guide" -#~ msgstr "Przewodnik po ustawieniach" - -#~ msgctxt "@item:inmenu" -#~ msgid "Cura Settings Guide" -#~ msgstr "Przewodnik po ustawieniach Cura" - -#~ msgctxt "@info:generic" -#~ msgid "Settings have been changed to match the current availability of extruders: [%s]" -#~ msgstr "Ustawienia został zmienione, aby pasowały do obecnej dostępności extruderów: [%s]" - -#~ msgctxt "@title:groupbox" -#~ msgid "User description" -#~ msgstr "Opis użytkownika" - -#~ msgctxt "@info" -#~ msgid "These options are not available because you are monitoring a cloud printer." -#~ msgstr "Te opcje nie są dostępne, ponieważ nadzorujesz drukarkę w chmurze." - -#~ msgctxt "@label link to connect manager" -#~ msgid "Go to Cura Connect" -#~ msgstr "Idź do Cura Connect" - -#~ msgctxt "@info" -#~ msgid "All jobs are printed." -#~ msgstr "Wszystkie zadania są drukowane." - -#~ msgctxt "@label link to connect manager" -#~ msgid "View print history" -#~ msgstr "Poważ historię druku" - -#~ 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.\n" -#~ "\n" -#~ "Select your printer from the list below:" -#~ msgstr "" -#~ "Aby drukować bezpośrednio w drukarce w sieci, upewnij się, że drukarka jest podłączona do sieci przy użyciu kabla sieciowego lub sieci WIFI. Jeśli nie podłączasz Cury do drukarki, możesz nadal używać dysku USB do przesyłania plików g-code do drukarki.\n" -#~ "\n" -#~ "Wybierz drukarkę z poniższej listy:" - -#~ 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." -#~ msgstr "" -#~ "Upewnij się czy drukarka jest połączona:\n" -#~ "- Sprawdź czy drukarka jest włączona.\n" -#~ "- Sprawdź czy drukarka jest podłączona do sieci." - -#~ msgctxt "@option:check" -#~ msgid "See only current build plate" -#~ msgstr "Pokaż tylko aktualną platformę roboczą" - -#~ msgctxt "@action:button" -#~ msgid "Arrange to all build plates" -#~ msgstr "Rozłóż na wszystkich platformach roboczych" - -#~ msgctxt "@action:button" -#~ msgid "Arrange current build plate" -#~ msgstr "Rozłóż na obecnej platformie roboczej" - -#~ msgctxt "description" -#~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)." -#~ msgstr "Umożliwia zapisanie wyników cięcia jako plik X3G, aby wspierać drukarki obsługujące ten format (Malyan, Makerbot oraz inne oparte o oprogramowanie Sailfish)." - -#~ msgctxt "name" -#~ msgid "X3GWriter" -#~ msgstr "Zapisywacz X3G" - -#~ msgctxt "description" -#~ msgid "Reads SVG files as toolpaths, for debugging printer movements." -#~ msgstr "Czyta pliki SVG jako ścieżki, do debugowania ruchów drukarki." - -#~ msgctxt "name" -#~ msgid "SVG Toolpath Reader" -#~ msgstr "Czytnik ścieżek SVG" - -#~ msgctxt "@item:inmenu" -#~ msgid "Changelog" -#~ msgstr "Lista zmian" - -#~ msgctxt "@item:inmenu" -#~ msgid "Show Changelog" -#~ msgstr "Pokaż Dziennik" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to remote cluster" -#~ msgstr "Wysyłanie danych do zdalnego klastra" - -#~ msgctxt "@info:status" -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Połącz z Ultimaker Cloud" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymized usage statistics." -#~ msgstr "Cura zbiera anonimowe dane statystyczne." - -#~ msgctxt "@info:title" -#~ msgid "Collecting Data" -#~ msgstr "Zbieranie Danych" - -#~ msgctxt "@action:button" -#~ msgid "More info" -#~ msgstr "Więcej informacji" - -#~ msgctxt "@action:tooltip" -#~ msgid "See more information on what data Cura sends." -#~ msgstr "Zobacz więcej informacji o tym, jakie dane przesyła Cura." - -#~ msgctxt "@action:button" -#~ msgid "Allow" -#~ msgstr "Zezwól" - -#~ msgctxt "@action:tooltip" -#~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." -#~ msgstr "Zezwól Cura na wysyłanie anonimowych danych statystycznych, aby pomóc w wyborze przyszłych usprawnień Cura. Część twoich ustawień i preferencji jest wysyłana, a także wersja Cury i kod modelu który tniesz." - -#~ msgctxt "@item:inmenu" -#~ msgid "Evaluation" -#~ msgstr "Obliczanie" - -#~ msgctxt "@info:title" -#~ msgid "Network enabled printers" -#~ msgstr "Drukarki dostępne w sieci" - -#~ msgctxt "@info:title" -#~ msgid "Local printers" -#~ msgstr "Drukarki lokalne" - -#~ msgctxt "@info:backup_failed" -#~ msgid "Tried to restore a Cura backup that does not match your current version." -#~ msgstr "Podjęto próbę przywrócenia kopii zapasowej Cura, która nie odpowiada obecnej wersji programu." - -#~ msgctxt "@title" -#~ msgid "Machine Settings" -#~ msgstr "Ustawienia Drukarki" - -#~ msgctxt "@label" -#~ msgid "Printer Settings" -#~ msgstr "Ustawienia drukarki" - -#~ msgctxt "@option:check" -#~ msgid "Origin at center" -#~ msgstr "Początek na środku" - -#~ msgctxt "@option:check" -#~ msgid "Heated bed" -#~ msgstr "Podgrzewany stół" - -#~ msgctxt "@label" -#~ msgid "Printhead Settings" -#~ msgstr "Ustawienia głowic drukujących" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Odległość od lewej strony głowicy do środka dyszy. Używane do unikania kolizji pomiędzy poprzednimi wydrukami a głowicą podczas drukowania \"Jeden na Raz\"." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Odległość od przedniej strony głowicy do środka dyszy. Używane do unikania kolizji pomiędzy poprzednimi wydrukami a głowicą podczas drukowania \"Jeden na Raz\"." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Odległość od prawej strony głowicy do środka dyszy. Używane do unikania kolizji pomiędzy poprzednimi wydrukami a głowicą podczas drukowania \"Jeden na Raz\"." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Odległość od tylnej strony głowicy do środka dyszy. Używane do unikania kolizji pomiędzy poprzednimi wydrukami a głowicą podczas drukowania \"Jeden na Raz\"." - -#~ msgctxt "@label" -#~ msgid "Gantry height" -#~ msgstr "Wysokość ramy" - -#~ msgctxt "@tooltip" -#~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." -#~ msgstr "Różnica w wysokości pomiędzy końcówką dyszy i systemem suwnym (osie X i Y). Używane do unikania kolizji z poprzednimi wydrukami podczas drukowania \"Jeden na Raz\"." - -#~ msgctxt "@label" -#~ msgid "Start G-code" -#~ msgstr "Początkowy G-code" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very start." -#~ msgstr "Komedy G-code, które są wykonywane na samym początku." - -#~ msgctxt "@label" -#~ msgid "End G-code" -#~ msgstr "Końcowy G-code" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very end." -#~ msgstr "Komendy G-code, które są wykonywane na samym końcu." - -#~ msgctxt "@label" -#~ msgid "Nozzle Settings" -#~ msgstr "Ustawienia dyszy" - -#~ msgctxt "@tooltip" -#~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." -#~ msgstr "Nominalna średnica filamentu wspierana przez drukarkę. Dokładna średnica będzie nadpisana przez materiał i/lub profil." - -#~ msgctxt "@label" -#~ msgid "Extruder Start G-code" -#~ msgstr "Początkowy G-code Ekstrudera" - -#~ msgctxt "@label" -#~ msgid "Extruder End G-code" -#~ msgstr "Końcowy G-code Ekstrudera" - -#~ msgctxt "@label" -#~ msgid "Changelog" -#~ msgstr "Dziennik" - -#~ msgctxt "@title:window" -#~ msgid "User Agreement" -#~ msgstr "Zgoda Użytkownika" - -#~ msgctxt "@alabel" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "Wpisz adres IP lub nazwę hosta drukarki w sieci." - -#~ msgctxt "@info" -#~ msgid "Please select a network connected printer to monitor." -#~ msgstr "Wybierz drukarkę połączoną z siecią, aby nadzorować." - -#~ msgctxt "@info" -#~ msgid "Please connect your Ultimaker printer to your local network." -#~ msgstr "Połącz drukarkę Ultimaker z twoją siecią lokalną." - -#~ msgctxt "@text:window" -#~ msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent." -#~ msgstr "Cura wysyła anonimowe dane do Ultimaker w celu polepszenia jakości wydruków oraz interakcji z użytkownikiem. Poniżej podano przykład wszystkich danych, jakie mogą być przesyłane." - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send this data" -#~ msgstr "Nie chcę wysyłać danych" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending this data to Ultimaker and help us improve Cura" -#~ msgstr "Pozwól wysłać te dane do Ultimakera i pomóż nam ulepszyć Curę" - -#~ msgctxt "@label" -#~ msgid "No print selected" -#~ msgstr "Żaden wydruk nie jest zaznaczony" - -#~ msgctxt "@info:tooltip" -#~ 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 "Domyślnie białe piksele przedstawiają wysokie punkty na siatce, a czarne piksele przedstawiają niskie punkty na siatce. Zmień tę opcję, aby odwrócić takie zachowanie, tak żeby czarne piksele przedstawiają wysokie punkty na siatce, a białe piksele przedstawiają niskie punkty na siatce." - -#~ msgctxt "@title" -#~ msgid "Select Printer Upgrades" -#~ msgstr "Wybierz ulepszenia drukarki" - -#~ msgctxt "@label" -#~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "Wybierz, który ekstruder ma służyć do drukowania podpór. Powoduje to tworzenie podpór poniżej modelu, aby zapobiec spadaniu lub drukowaniu modelu w powietrzu." - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "Ten profil jakości nie jest dostępny dla bieżącej konfiguracji materiałów i dysz. Zmień je, aby włączyć ten profil jakości" - -#~ msgctxt "@label shown when we load a Gcode file" -#~ msgid "Print setup disabled. G code file can not be modified." -#~ msgstr "Ustawienia druku niedostępne. Plik .gcode nie może być modyfikowany." - -#~ msgctxt "@label" -#~ msgid "See the material compatibility chart" -#~ msgstr "Zobacz tabelę kompatybilności materiałów" - -#~ msgctxt "@label" -#~ msgid "View types" -#~ msgstr "Typy widoków" - -#~ msgctxt "@label" -#~ msgid "Hi " -#~ msgstr "Cześć " - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to material profiles from leading brands" -#~ msgstr "" -#~ "- Wysyłaj zadania druku do drukarek Ultimaker poza siecią lokalną\n" -#~ "- Przechowuj ustawienia Ultimaker Cura w chmurze, aby używać w każdym miejscu\n" -#~ "- Uzyskaj wyłączny dostęp do profili materiałów wiodących marek" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Unable to Slice" -#~ msgstr "Nie można pociąć" - -#~ msgctxt "@label" -#~ msgid "Time specification" -#~ msgstr "Specyfikacja czasu" - -#~ msgctxt "@label" -#~ msgid "Material specification" -#~ msgstr "Specyfikacja materiału" - -#~ msgctxt "@title:tab" -#~ msgid "Add a printer to Cura" -#~ msgstr "Dodaj drukarkę do Cura" - -#~ msgctxt "@title:tab" -#~ msgid "" -#~ "Select the printer you want to use from the list below.\n" -#~ "\n" -#~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog." -#~ msgstr "" -#~ "Z poniższej listy wybierz drukarkę, której chcesz użyć.\n" -#~ "\n" -#~ "Jeśli drukarki nie ma na liście, użyj „Niestandardowa drukarka FFF” z kategorii „Niestandardowy” i dostosuj ustawienia, aby pasowały do drukarki w następnym oknie dialogowym." - -#~ msgctxt "@label" -#~ msgid "Printer Name" -#~ msgstr "Nazwa drukarki" - -#~ msgctxt "@action:button" -#~ msgid "Add Printer" -#~ msgstr "Dodaj drukarkę" - -#~ msgid "Modify G-Code" -#~ msgstr "Modyfikuj G-Code" - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." -#~ msgstr "Nic do pocięcia, ponieważ żaden z modeli nie pasuje do obszaru roboczego. Proszę o przeskalowanie lub obrócenie modelu, żeby pasował." - -#~ msgctxt "@info:status" -#~ msgid "The selected material is incompatible with the selected machine or configuration." -#~ msgstr "Wybrany materiał jest niezgodny z wybranym urządzeniem lub konfiguracją." - -#~ msgctxt "@info:title" -#~ msgid "Incompatible Material" -#~ msgstr "Niekompatybilny Materiał" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "Nie udało się zaimportować profilu z {0}: {1}" - -#~ msgctxt "@title" -#~ msgid "Toolbox" -#~ msgstr "Narzędzia" - -#~ msgctxt "@label" -#~ msgid "Not available" -#~ msgstr "Niedostępny" - -#~ msgctxt "@label" -#~ msgid "Unreachable" -#~ msgstr "Nieosiągalny" - -#~ msgctxt "@label" -#~ msgid "Available" -#~ msgstr "Dostępny" - -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "Przygotowywanie" - -#~ msgctxt "@label:status" -#~ msgid "Pausing" -#~ msgstr "Wstrzymywanie" - -#~ msgctxt "@label:status" -#~ msgid "Resuming" -#~ msgstr "Wznawianie" - -#~ msgctxt "@label" -#~ msgid "Waiting for: Unavailable printer" -#~ msgstr "Oczekiwanie na: Niedostępną drukarkę" - -#~ msgctxt "@label" -#~ msgid "Waiting for: First available" -#~ msgstr "Oczekiwanie na: Pierwszą dostępną" - -#~ msgctxt "@label" -#~ msgid "Waiting for: " -#~ msgstr "Oczekiwanie na: " - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage queue" -#~ msgstr "Zarządzaj kolejką" - -#~ msgctxt "@label" -#~ msgid "Printing" -#~ msgstr "Drukowanie" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage printers" -#~ msgstr "Zarządzaj drukarkami" - -#~ msgctxt "@action:button" -#~ msgid "Activate Configuration" -#~ msgstr "Uaktywnij konfigurację" - -#~ msgctxt "@info:tooltip" -#~ msgid "Load the configuration of the printer into Cura" -#~ msgstr "Załaduj konfigurację drukarki do Cura" - -#~ msgctxt "@label" -#~ msgid "Show Travels" -#~ msgstr "Pokaż ruch jałowy" - -#~ msgctxt "@label" -#~ msgid "Show Helpers" -#~ msgstr "Pokaż pomocnik" - -#~ msgctxt "@label" -#~ msgid "Show Shell" -#~ msgstr "Pokaż powłokę" - -#~ msgctxt "@label" -#~ msgid "Show Infill" -#~ msgstr "Pokaż wypełnienie" - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send these data" -#~ msgstr "Nie chcę przesyłać tych danych" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending these data to Ultimaker and help us improve Cura" -#~ msgstr "Zezwól na przesyłanie tych danych do Ultimaker i pomóż nam ulepszać Cura" - -#~ msgctxt "@label" -#~ msgid "Printer type:" -#~ msgstr "Typ drukarki:" - -#~ msgctxt "@label" -#~ msgid "Connection:" -#~ msgstr "Połączenie:" - -#~ msgctxt "@label" -#~ msgid "State:" -#~ msgstr "Stan:" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for a printjob" -#~ msgstr "Oczekiwanie na zadanie drukowania" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for someone to clear the build plate" -#~ msgstr "Oczekiwanie na wyczyszczenie stołu roboczego" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Aborting print..." -#~ msgstr "Przerywanie drukowania..." - -#~ msgctxt "@label" -#~ msgid "Protected profiles" -#~ msgstr "Chronione profile" - -#~ msgctxt "@label" -#~ msgid "Printer Name:" -#~ msgstr "Nazwa drukarki:" - -#~ msgctxt "@label" -#~ msgid "Profile:" -#~ msgstr "Profil:" - -#~ msgctxt "@label:textbox" -#~ msgid "Search..." -#~ msgstr "Szukanie..." - -#~ msgctxt "@action:inmenu" -#~ msgid "Collapse All" -#~ msgstr "Schowaj wszystkie" - -#~ msgctxt "@action:inmenu" -#~ msgid "Expand All" -#~ msgstr "Rozwiń wszystkie" - -#~ msgctxt "@label:header configurations" -#~ msgid "Available configurations" -#~ msgstr "Dostępne konfiguracje" - -#~ msgctxt "@label:extruder label" -#~ msgid "Extruder" -#~ msgstr "Ekstruder" - -#~ msgctxt "@label:extruder label" -#~ msgid "Yes" -#~ msgstr "Tak" - -#~ msgctxt "@label:extruder label" -#~ msgid "No" -#~ msgstr "Nie" - -#~ msgctxt "@label:listbox" -#~ msgid "Print Setup" -#~ msgstr "Ustawienia druku" - -#~ msgctxt "@label:listbox" -#~ msgid "" -#~ "Print Setup disabled\n" -#~ "G-code files cannot be modified" -#~ msgstr "" -#~ "Konfiguracja wydruku jest wyłączona\n" -#~ "Pliki G-code nie mogą zostać zmodyfikowane" - -#~ msgctxt "@label Hours and minutes" -#~ msgid "00h 00min" -#~ msgstr "00godz. 00min." - -#~ msgctxt "@tooltip" -#~ msgid "Time specification" -#~ msgstr "Specyfikacja czasu" - -#~ msgctxt "@label" -#~ msgid "Cost specification" -#~ msgstr "Szacowanie kosztów" - -#~ msgctxt "@label" -#~ msgid "Total:" -#~ msgstr "Razem:" - -#~ msgctxt "@tooltip" -#~ msgid "Recommended Print Setup

    Print with the recommended settings for the selected printer, material and quality." -#~ msgstr "Zalecana konfiguracja wydruku

    Drukowanie z zalecanymi ustawieniami dla wybranej drukarki, materiału i jakości." - -#~ msgctxt "@tooltip" -#~ msgid "Custom Print Setup

    Print with finegrained control over every last bit of the slicing process." -#~ msgstr "Niestandardowa konfiguracja wydruku

    Drukowanie z precyzyjną kontrolą nad każdym elementem procesu cięcia." - -#~ msgctxt "@action:inmenu menubar:help" -#~ msgid "Show Engine &Log..." -#~ msgstr "Pokaż &dziennik silnika..." - -#~ msgctxt "@action:menu" -#~ msgid "Browse packages..." -#~ msgstr "Przeglądaj pakiety..." - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "Expand/Collapse Sidebar" -#~ msgstr "Rozłóż/Schowaj Pasek Boczny" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3D model" -#~ msgstr "Proszę załaduj model 3D" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Ready to slice" -#~ msgstr "Gotowy do cięcia" - -#~ msgctxt "@label:PrintjobStatus %1 is target operation" -#~ msgid "Ready to %1" -#~ msgstr "Gotowy do %1" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Slicing unavailable" -#~ msgstr "Cięcie niedostępne" - -#~ msgctxt "@info:tooltip" -#~ msgid "Slice current printjob" -#~ msgstr "Potnij aktualny wydruk" - -#~ msgctxt "@info:tooltip" -#~ msgid "Cancel slicing process" -#~ msgstr "Przerwij proces cięcia" - -#~ msgctxt "@label:Printjob" -#~ msgid "Prepare" -#~ msgstr "Przygotuj" - -#~ msgctxt "@label:Printjob" -#~ msgid "Cancel" -#~ msgstr "Anuluj" - -#~ msgctxt "@info:tooltip" -#~ msgid "Select the active output device" -#~ msgstr "Wybierz aktywne urządzenie wyjściowe" - -#~ msgctxt "@title:menu" -#~ msgid "&View" -#~ msgstr "&Widok" - -#~ msgctxt "@title:menu" -#~ msgid "&Settings" -#~ msgstr "&Ustawienia" - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "&Toolbox" -#~ msgstr "&Narzędzia" - -#~ msgctxt "@action:button" -#~ msgid "Open File" -#~ msgstr "Otwórz plik" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "Ten profil jakości nie jest dostępny dla wybranego materiału i konfiguracji dyszy. Proszę to zmienić, aby włączyć ten profil jakości" - -#~ msgctxt "@label" -#~ msgid "Print Speed" -#~ msgstr "Prędkość Druku" - -#~ msgctxt "@label" -#~ msgid "Slower" -#~ msgstr "Wolniej" - -#~ msgctxt "@label" -#~ msgid "Faster" -#~ msgstr "Szybciej" - -#~ msgctxt "@label" -#~ msgid "Enable gradual" -#~ msgstr "Włącz stopniowane" - -#~ msgctxt "@label" -#~ msgid "Generate Support" -#~ msgstr "Generuj podpory" - -#~ msgctxt "@label" -#~ msgid "Build Plate Adhesion" -#~ msgstr "Popraw przycz. modelu" - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints?
    Read the Ultimaker Troubleshooting Guides" -#~ msgstr "Potrzebujesz pomocy w ulepszaniu wydruków?
    Przeczytaj instrukcje dotyczące rozwiązywania problemów" - -#~ msgctxt "@title:window" -#~ msgid "Engine Log" -#~ msgstr "Dziennik silnika" - -#~ msgctxt "@label" -#~ msgid "Printer type" -#~ msgstr "Typ drukarki" - -#~ msgctxt "@label" -#~ msgid "Use glue with this material combination" -#~ msgstr "Użyj kleju z tą kombinacją materiałów" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "Sprawdź kompatybilność" - -#~ msgctxt "@tooltip" -#~ msgid "Click to check the material compatibility on Ultimaker.com." -#~ msgstr "Kliknij, aby sprawdzić zgodność materiału na Ultimaker.com." - -#~ msgctxt "description" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "Pokazuje zmiany od ostatniej sprawdzonej wersji." - -#~ msgctxt "name" -#~ msgid "Changelog" -#~ msgstr "Lista zmian" - -#~ msgctxt "description" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "Utwórz charakterystyczny profil zmiany jakości." - -#~ msgctxt "name" -#~ msgid "Profile flatener" -#~ msgstr "Charakterystyka Profilu" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license." -#~ msgstr "Zapytaj użytkownika jednokrotnie, czy zgadza się z warunkami naszej licencji." - -#~ msgctxt "name" -#~ msgid "UserAgreement" -#~ msgstr "ZgodaUżytkownika" - -#~ msgctxt "@warning:status" -#~ msgid "Please generate G-code before saving." -#~ msgstr "Wygeneruj G-code przed zapisem." - -#~ msgctxt "@action" -#~ msgid "Upgrade Firmware" -#~ msgstr "Uaktualnij oprogramowanie układowe" - -#~ msgctxt "@label unknown material" -#~ msgid "Unknown" -#~ msgstr "Nieznany" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "No custom profile to import in file {0}" -#~ msgstr "Brak niestandardowego profilu do zaimportowania do pliku {0}" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "This profile {0} contains incorrect data, could not import it." -#~ msgstr "Ten profil {0} zawiera błędne dane, nie można go zaimportować." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "Maszyna zdefiniowana w profilu {0} ({1}) nie zgadza się z obecnie wybraną maszyną ({2}), nie można tego zaimportować." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall " -#~ msgstr "Potwierdź odinstalowanie " - -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - -#~ msgctxt "@title" -#~ msgid "Upgrade Firmware" -#~ msgstr "Uaktualnij oprogramowanie" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Drukuj z Doodle3D WiFi-Box" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Drukuj z Doodle3D WiFi-Box" - -#~ msgctxt "@info:status" -#~ msgid "Connecting to Doodle3D Connect" -#~ msgstr "Łączenie z Doodle3D Connect" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to Doodle3D Connect" -#~ msgstr "Wysyłanie danych do Doodle3D Connect" - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -#~ msgstr "Nie można wysłać danych do Doodle3D Connect. Czy inne zadanie jest aktywne?" - -#~ msgctxt "@info:status" -#~ msgid "Storing data on Doodle3D Connect" -#~ msgstr "Przetrzymywanie danych na Doodle3D Connect" - -#~ msgctxt "@info:status" -#~ msgid "File sent to Doodle3D Connect" -#~ msgstr "Plik wysłany do Doodle3D Connect" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect..." -#~ msgstr "Otwórz Connect..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Open the Doodle3D Connect web interface" -#~ msgstr "Otwórz interfejs Doodle3D Connect" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Blender file" -#~ msgstr "Plik Blender" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Could not export using \"{}\" quality!\n" -#~ "Felt back to \"{}\"." -#~ msgstr "" -#~ "Nie można wyeksportować używając \"{}\" jakości!\n" -#~ "Powrócono do \"{}\"." - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." -#~ msgstr "Ta drukarka nie jest skonfigurowana do zarządzania grupą drukarek Ultimaker 3." - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -#~ msgstr "Ta drukarka jest gospodarzem grupy %1 drukarek Ultimaker 3." - -#~ msgctxt "@label: arg 1 is group name" -#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "%1 nie została ustawiona do hostowania grupy podłączonych drukarek Ultimaker 3" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Add/Remove printers" -#~ msgstr "Dodaj/Usuń drukarki" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "Otwiera stronę zadań drukowania w twojej domyślnej przeglądarce sieciowej." - -#~ msgctxt "@action:button" -#~ msgid "View print jobs" -#~ msgstr "Zobacz zadania drukowania" - -#~ msgctxt "@label:status" -#~ msgid "Preparing to print" -#~ msgstr "Przygotowywanie do drukowania" - -#~ msgctxt "@label:status" -#~ msgid "Available" -#~ msgstr "Dostępna" - -#~ msgctxt "@label:status" -#~ msgid "Lost connection with the printer" -#~ msgstr "Utracono połączenie z drukarką" - -#~ msgctxt "@label:status" -#~ msgid "Unknown" -#~ msgstr "Nieznane" - -#~ msgctxt "@label:status" -#~ msgid "Disabled" -#~ msgstr "Wyłączona" - -#~ msgctxt "@label:status" -#~ msgid "Reserved" -#~ msgstr "Zajęta" - -#~ msgctxt "@label" -#~ msgid "Preparing to print" -#~ msgstr "Przygotowywanie do druku" - -#~ msgctxt "@label:status" -#~ msgid "Print aborted" -#~ msgstr "Drukowanie zostaje przerwane" - -#~ msgctxt "@label" -#~ msgid "Not accepting print jobs" -#~ msgstr "Nie akceptuje zadań drukowania" - -#~ msgctxt "@label" -#~ msgid "Finishes at: " -#~ msgstr "Wykończenia na: " - -#~ msgctxt "@label" -#~ msgid "Clear build plate" -#~ msgstr "Oczyść platformę roboczą" - -#~ msgctxt "@label" -#~ msgid "Waiting for configuration change" -#~ msgstr "Oczekuje na zmianę konfiguracji" - -#~ msgctxt "@title" -#~ msgid "Print jobs" -#~ msgstr "Zadania drukowania" - -#~ msgctxt "@label:title" -#~ msgid "Printers" -#~ msgstr "Drukarki" - -#~ msgctxt "@action:button" -#~ msgid "View printers" -#~ msgstr "Zobacz drukarki" - -#~ msgctxt "@label:" -#~ msgid "Pause" -#~ msgstr "Wstrzymaj" - -#~ msgctxt "@label:" -#~ msgid "Resume" -#~ msgstr "Wznów" - -#~ msgctxt "@label:" -#~ msgid "Abort Print" -#~ msgstr "Przerwij wydruk" - -#~ msgctxt "@option:openProject" -#~ msgid "Always ask" -#~ msgstr "Zawsze pytaj" - -#~ msgctxt "@label" -#~ msgid "Override Profile" -#~ msgstr "Nadpisz profil" - -#~ msgctxt "@info:tooltip" -#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -#~ msgstr "Czy nowo załadowane modele powinny zostać rozłożone na platformie roboczej? Używane w połączeniu z multi platformą roboczą (EKSPERYMENTALNE)" - -#~ msgctxt "@option:check" -#~ msgid "Do not arrange objects on load" -#~ msgstr "Nie układaj obiektów podczas ładowania" - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Save Selection to File" -#~ msgstr "Z&apisz wybór w pliku" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &As..." -#~ msgstr "Zapisz &jako..." - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &Project..." -#~ msgstr "Zapisz &Project..." - -#~ msgctxt "description" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "Akceptuje G-Code i wysyła go przez WiFi do Doodle3D WiFi-Box." - -#~ msgctxt "name" -#~ msgid "Doodle3D WiFi-Box" -#~ msgstr "Doodle3D WiFi-Box" - -#~ msgctxt "description" -#~ msgid "Provides an edit window for direct script editing." -#~ msgstr "Zapewnia okno edycji dla bezpośredniego edytowania skryptów." - -#~ msgctxt "name" -#~ msgid "Live scripting tool" -#~ msgstr "Narzędzie pisania skryptów na żywo." - -#~ msgctxt "description" -#~ msgid "Helps to open Blender files directly in Cura." -#~ msgstr "Pomaga w otwieraniu plików Blender bezpośrednio w Cura." - -#~ msgctxt "name" -#~ msgid "Blender Integration (experimental)" -#~ msgstr "Integracja z Blenderem (eksperymentalny)" - -#~ msgctxt "@info:title" -#~ msgid "Model Checker Warning" -#~ msgstr "Ostrzeżenie Sprawdzacza Modelu" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n" -#~ "Tips that may be useful to improve the print quality:\n" -#~ "1) Use rounded corners.\n" -#~ "2) Turn the fan off (only if there are no tiny details on the model).\n" -#~ "3) Use a different material." -#~ msgstr "" -#~ "Niektóre modele nie będą drukowane optymalnie z powodu rozmiaru obiektu i wybranych materiałów dla modeli: {model_names}.\n" -#~ "Porady, które mogą się przydać, aby poprawić jakość wydruku:\n" -#~ "1) Używaj zaokrąglonych narożników.\n" -#~ "2) Wyłącz wentylator (tylko jeśli model nie ma małych detali).\n" -#~ "3) Użyj innego materiału." - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "SolidWorks zgłosił błędy podczas otwierania twojego pliku. Zalecamy rozwiązanie tych problemów w samym SolidWorks." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ "Thanks!" -#~ msgstr "" -#~ "Nie znaleziono modeli wewnątrz twojego rysunku. Czy mógłbyś sprawdzić jego zawartość ponownie i upewnić się, że znajduje się tam jedna część lub złożenie?\n" -#~ "\n" -#~ "Dziękuję!." - -#~ 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" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "Znaleziono więcej niż jedną część lub złożenie wewnątrz rysunku. Obecnie obsługujemy tylko rysunki z dokładnie jedną częścią lub złożeniem.\n" -#~ "\n" -#~ "Przepraszamy!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks part file" -#~ msgstr "Plik części SolidWorks" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks assembly file" -#~ msgstr "Plik złożenia SolidWorks" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks drawing file" -#~ msgstr "Plik rysunku SolidWorks" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "Szanowny kliencie,\n" -#~ "Nie mogliśmy znaleźć poprawnej instalacji SolidWorks w twoim systemie. To oznacza, że albo nie masz zainstalowanego SolidWorks, albo nie masz ważnej licencji. Proszę upewnić się, że uruchomiony SolidWorks działa bez żadnych problemów i/lub skontaktuj się z ICT.\n" -#~ "\n" -#~ "Z wyrazami szacunku,\n" -#~ " - Thomas Karl Pietrowski" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "Szanowny kliencie,\n" -#~ "Używasz aktualnie tego pluginu na innym systemie niż Windows. Ten plugin działa tylko w Windows razem z zainstalowanym SolidWorks, włączając w to poprawną licencję. Proszę zainstalować ten plugin na maszynie z systemem Windows z zainstalowanym SolidWorks.\n" -#~ "Z wyrazami szacunku,\n" -#~ " - Thomas Karl Pietrowski" - -#~ msgid "Configure" -#~ msgstr "Konfiguruj" - -#~ msgid "Installation guide for SolidWorks macro" -#~ msgstr "Instalacja poradnika dla skrótów SolidWorks" - -#~ msgctxt "@action:button" -#~ msgid "Disable" -#~ msgstr "Wyłącz" - -#~ msgctxt "@action:tooltip" -#~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences." -#~ msgstr "Nie zezwalaj Cura na wysyłanie anonimowych danych statystycznych. Możesz to włączyć ponownie w preferencjach." - -#~ msgid "Install" -#~ msgstr "Zainstaluj" - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory." -#~ msgstr "Nie udało się skopiować plików pluginu Siemens NX. Proszę sprawdź twój UGII_USER_DIR. Nie jest ustawiony do folderu." - -#~ msgid "Successfully installed Siemens NX Cura plugin." -#~ msgstr "Udało się zainstalować plugin Cura Siemens NX." - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR." -#~ msgstr "Nie udało się skopiować plików pluginu Siemens NX. Proszę sprawdź twój UGII_USER_DIR." - -#~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX." -#~ msgstr "Nie udało się zainstalować pluginu Siemens NX. Nie można ustawić zmiennej środowiskowej UGII_USER_DIR dla Siemens NX." - -#~ msgctxt "@info:status" -#~ msgid "Failed to get plugin ID from {0}" -#~ msgstr "Nie udało się uzyskać ID wtyczki z {0}" - -#~ msgctxt "@info:tile" -#~ msgid "Warning" -#~ msgstr "Ostrzeżenie" - -#~ msgctxt "@window:title" -#~ msgid "Plugin browser" -#~ msgstr "Przeglądarka wtyczek" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks: Export wizard" -#~ msgstr "SolidWorks: Kreator eksportu" - -#~ msgctxt "@action:label" -#~ msgid "Quality:" -#~ msgstr "Jakość:" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (3D-printing)" -#~ msgstr "Dobra (druk 3D)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (3D-printing)" -#~ msgstr "Słaba (druk 3D)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (SolidWorks)" -#~ msgstr "Dobra (SolidWorks)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (SolidWorks)" -#~ msgstr "Słaba (Solidworks)" - -#~ msgctxt "@text:window" -#~ msgid "Show this dialog again" -#~ msgstr "Pokaż to okno ponownie" - -#~ msgctxt "@action:button" -#~ msgid "Continue" -#~ msgstr "Kontynuuj" - -#~ msgctxt "@action:button" -#~ msgid "Abort" -#~ msgstr "Przerwij" - -#~ msgctxt "@title:window" -#~ msgid "How to install Cura SolidWorks macro" -#~ msgstr "Jak zainstalować skróty SolidWorks dla Cura" - -#~ msgctxt "@description:label" -#~ msgid "Steps:" -#~ msgstr "Kroki:" - -#~ msgctxt "@action:button" -#~ msgid "" -#~ "Open the directory\n" -#~ "with macro and icon" -#~ msgstr "" -#~ "Otwórz folder\n" -#~ "ze skrótem i ikoną" - -#~ msgctxt "@description:label" -#~ msgid "Instructions:" -#~ msgstr "Instrukcje:" - -#~ msgctxt "@action:playpause" -#~ msgid "Play" -#~ msgstr "Odtwórz" - -#~ msgctxt "@action:playpause" -#~ msgid "Pause" -#~ msgstr "Zatrzymaj" - -#~ msgctxt "@action:button" -#~ msgid "Previous Step" -#~ msgstr "Poprzedni Krok" - -#~ msgctxt "@action:button" -#~ msgid "Done" -#~ msgstr "Zrobione" - -#~ msgctxt "@action:button" -#~ msgid "Next Step" -#~ msgstr "Następny Krok" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks plugin: Configuration" -#~ msgstr "Plugin SolidWorks: Konfiguracja" - -#~ msgctxt "@title:tab" -#~ msgid "Conversion settings" -#~ msgstr "Konwersja ustawień" - -#~ msgctxt "@label" -#~ msgid "First choice:" -#~ msgstr "Pierwszy wybór:" - -#~ msgctxt "@text:menu" -#~ msgid "Latest installed version (Recommended)" -#~ msgstr "Ostatnio zainstalowana wersja (Rekomendowana)" - -#~ msgctxt "@text:menu" -#~ msgid "Default version" -#~ msgstr "Domyślna wersja" - -#~ msgctxt "@label" -#~ msgid "Show wizard before opening SolidWorks files" -#~ msgstr "Pokaż konfigurator przed otworzeniem plików SolidWorks" - -#~ msgctxt "@label" -#~ msgid "Automatically rotate opened file into normed orientation" -#~ msgstr "Automatycznie obracaj otworzone pliki do unormowanej pozycji" - -#~ msgctxt "@title:tab" -#~ msgid "Installation(s)" -#~ msgstr "Instalacja(-e)" - -#~ msgctxt "@label" -#~ msgid "COM service found" -#~ msgstr "Usługa COM znaleziona" - -#~ msgctxt "@label" -#~ msgid "Executable found" -#~ msgstr "Znaleziono plik wykonywalny" - -#~ msgctxt "@label" -#~ msgid "COM starting" -#~ msgstr "Uruchamianie COM" - -#~ msgctxt "@label" -#~ msgid "Revision number" -#~ msgstr "Numer wydania" - -#~ msgctxt "@label" -#~ msgid "Functions available" -#~ msgstr "Dostępne funkcje" - -#~ msgctxt "@label (%1 is object name)" -#~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?" -#~ msgstr "Nowa średnica materiał jest ustawiona na %1 mm, co nie jest kompatybilne z obecną maszyną. Czy chciałbyś kontynuować?" - -#~ msgctxt "@action:menu" -#~ msgid "Browse plugins..." -#~ msgstr "Przeglądaj wtyczki..." - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "P&lugins" -#~ msgstr "W&tyczki" - -#~ msgctxt "@window:title" -#~ msgid "Install Plugin" -#~ msgstr "Zainstaluj Wtyczkę" - -#~ msgctxt "description" -#~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)" -#~ msgstr "Zapewnia możliwość zmiany ustawień maszyny (tj. obszaru roboczego, rozmiaru dyszy itd.)" - -#~ msgctxt "description" -#~ msgid "Manages network connections to Ultimaker 3 printers" -#~ msgstr "Zarządza połączeniem sieciowym z drukarką Ultimaker 3" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations." -#~ msgstr "Daje Tobie możliwość otwierania plików używają samego SolidWorks. Konwersja jest wykonywana przez ten plugin i dodatkowo optymalizowana." - -#~ msgctxt "name" -#~ msgid "SolidWorks Integration" -#~ msgstr "Integracja z SolidWorks" - -#~ msgctxt "description" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "Automatycznie zapisuje Preferencje, Maszyny i Profile po zmianie." - -#~ msgctxt "name" -#~ msgid "Auto Save" -#~ msgstr "Auto Zapis" - -#~ msgctxt "description" -#~ msgid "Helps you to install an 'export to Cura' button in Siemens NX." -#~ msgstr "Pomaga zainstalować przycisk 'eksportuj do Cura' w Siemens NX." - -#~ msgctxt "name" -#~ msgid "Siemens NX Integration" -#~ msgstr "Integracja z Siemens NX" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new plugins." -#~ msgstr "Szuka, zarządza i instaluje nowe wtyczki." - -#~ msgctxt "name" -#~ msgid "Plugin Browser" -#~ msgstr "Przeglądarka Wtyczek" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license" -#~ msgstr "Pyta użytkownika czy zgadza się z naszą licencją" - -#~ msgctxt "description" -#~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)" -#~ msgstr "Zapewnia czynności maszyny dla maszyn Ultimaker (tj. poziomowanie stołu, wybór ulepszeń, itd.)" - -#~ msgctxt "@item:inlistbox" -#~ msgid "GCode File" -#~ msgstr "Plik GCode" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer is busy or not connected." -#~ msgstr "Nie można uruchomić nowego zadania, ponieważ drukarka jest zajęta lub nie jest podłączona." - -#~ msgctxt "@info:title" -#~ msgid "Printer Unavailable" -#~ msgstr "Drukarka Niedostępna" - -#~ msgctxt "@info:status" -#~ msgid "This printer does not support USB printing because it uses UltiGCode flavor." -#~ msgstr "Ta drukarka nie obsługuje drukowania USB, ponieważ korzysta z UltiGCode." - -#~ msgctxt "@info:title" -#~ msgid "USB Printing" -#~ msgstr "Drukowanie przez USB" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer does not support usb printing." -#~ msgstr "Nie można uruchomić nowego zadania, ponieważ drukarka nie obsługuje drukowania poprzez USB." - -#~ msgctxt "@info" -#~ msgid "Unable to update firmware because there are no printers connected." -#~ msgstr "Nie można zaktualizować oprogramowania, ponieważ nie ma podłączonych drukarek." - -#~ msgctxt "@info" -#~ msgid "Could not find firmware required for the printer at %s." -#~ msgstr "Nie znaleziono oprogramowania wymaganego dla drukarki w %s." - -#~ msgctxt "@info:title" -#~ msgid "Printer Firmware" -#~ msgstr "Oprogramowanie Drukarki" - -#~ msgctxt "@info:title" -#~ msgid "Connection status" -#~ msgstr "Status połączenia" - -#~ msgctxt "@info:title" -#~ msgid "Connection Status" -#~ msgstr "Status połączenia" - -#~ msgctxt "@info:status" -#~ msgid "Access request was denied on the printer." -#~ msgstr "Żądanie dostępu zostało odrzucone na drukarce." - -#~ msgctxt "@info:status" -#~ msgid "Access request failed due to a timeout." -#~ msgstr "Żądanie dostępu nie powiodło się z powodu limitu czasu." - -#~ msgctxt "@info:status" -#~ msgid "The connection with the network was lost." -#~ msgstr "Połączenie z siecią zostało utracone." - -#~ msgctxt "@info:status" -#~ msgid "The connection with the printer was lost. Check your printer to see if it is connected." -#~ msgstr "Połączenie z drukarką zostało utracone. Sprawdź, czy drukarka jest podłączona." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s." -#~ msgstr "Nie można uruchomić nowego zadania, drukarka jest zajęta. Aktualny stan drukarki to %s." - -#~ msgctxt "@info:title" -#~ msgid "Printer Status" -#~ msgstr "Status Drukarki" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}" -#~ msgstr "Nie można uruchomić nowego zadania. Brak Printcore w slocie {0}" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No material loaded in slot {0}" -#~ msgstr "Nie można uruchomić nowego zadania. Brak materiału w slocie {0}" - -#~ msgctxt "@label" -#~ msgid "Not enough material for spool {0}." -#~ msgstr "Nie ma wystarczającej ilości materiału na szpuli {0}." - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Różne PrintCore (Cura: {0}, Drukarka: {1}) wybrane dla ekstrudera {2}" - -#~ msgctxt "@label" -#~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "PrintCore {0} nie jest poprawnie skalibrowany. Kalibracja XY musi zostać wykonana na tej drukarce." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to printer. Is another job still active?" -#~ msgstr "Nie można wysłać danych do drukarki. Czy inna praca jest nadal aktywna?" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Print aborted. Please check the printer" -#~ msgstr "Wydruk został przerwany. Sprawdź drukarkę" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Pausing print..." -#~ msgstr "Wstrzymywanie drukowania..." - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Resuming print..." -#~ msgstr "Wznawianie drukowania ..." - -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "Ta drukarka nie jest skonfigurowana do zarządzania grupą podłączonych drukarek Ultimaker 3." - -#~ msgctxt "Count is number of printers." -#~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers." -#~ msgstr "Ta drukarka jest gospodarzem grupy {count} podłączonych drukarek Ultimaker 3." - -#~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate." -#~ msgstr "{printer_name} skończyła drukowanie '{job_name}'. Proszę zabrać wydruk i potwierdzić oczyszczenie platformy roboczej." - -#~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing." -#~ msgstr "{printer_name} jest zarezerwowana do druku '{job_name}'. Proszę zmień konfigurację drukarki, żeby pasowała do zadania dla niej, aby rozpocząć drukowanie." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "Nie można wysłać nowego zadania: ta drukarka 3D nie jest (jeszcze) ustawiona jako gospodarz grupy podłączonych drukarek Ultimaker 3." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send print job to group {cluster_name}." -#~ msgstr "Nie można wysłać zadania do grupy {cluster_name}." - -#~ msgctxt "@info:status" -#~ msgid "Sent {file_name} to group {cluster_name}." -#~ msgstr "Wysłano {file_name} do grupy {cluster_name}." - -#~ msgctxt "@action:button" -#~ msgid "Show print jobs" -#~ msgstr "Pokaż zadania druku" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs interface in your browser." -#~ msgstr "Otwiera interfejs zadań druku w przeglądarce." - -#~ msgctxt "@label Printer name" -#~ msgid "Unknown" -#~ msgstr "Nieznana" - -#~ msgctxt "@info:progress" -#~ msgid "Sending {file_name} to group {cluster_name}" -#~ msgstr "Wysyłanie {file_name} do grupy {cluster_name}" - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "SolidWorks zgłosił błędy podczas otwierania twojego pliku. Zalecamy rozwiązanie tego problemu w samym SolidWorksie." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ " Thanks!." -#~ msgstr "" -#~ "Nie znaleziono modeli wewnątrz twojego rysunku. Czy mógłbyś sprawdzić jego zawartość ponownie i upewnić się, że znajduje się tam jedna część lub złożenie?\n" -#~ "\n" -#~ "Dziękuję!." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "Znaleziono więcej niż jedną część lub złożenie wewnątrz rysunku. Obecnie obsługujemy tylko rysunki z dokładnie jedną częścią lub złożeniem.\n" -#~ "\n" -#~ "Przepraszamy!" - -#~ msgctxt "@item:material" -#~ msgid "No material loaded" -#~ msgstr "Nie załadowano materiału" - -#~ msgctxt "@item:material" -#~ msgid "Unknown material" -#~ msgstr "Nieznany materiał" - -#~ msgctxt "@info:status Has a cancel button next to it." -#~ msgid "The selected material diameter causes the material to become incompatible with the current printer." -#~ msgstr "Wybrana średnica materiału powoduje, że materiał jest niekompatybilny z obecną drukarką." - -#~ msgctxt "@action:button" -#~ msgid "Undo" -#~ msgstr "Cofnij" - -#~ msgctxt "@action" -#~ msgid "Undo changing the material diameter." -#~ msgstr "Cofnij zmianę średnicy materiału." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} doesn't match with your current machine, could not import it." -#~ msgstr "Maszyna zdefiniowana w profilu {0} nie zgadza się z obecnie wybraną maszyną, nie można zaimportować." - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal error has occurred. 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 "" -#~ "

    Wystąpił błąd krytyczny. Proszę wysłać do nas ten Raport Błędu, aby rozwiązać ten problem

    \n" -#~ "

    Proszę użyć przycisku \"Wyślij raport\" aby wysłać raport automatycznie na nasze serwery

    \n" -#~ " " - -#~ msgctxt "@label" -#~ msgid "not yet initialised
    " -#~ msgstr "jeszcze nie uruchomiono
    " - -#~ msgctxt "@label" -#~ msgid "Gcode flavor" -#~ msgstr "Wersja Gcode" - -#~ msgctxt "@label" -#~ msgid "Start Gcode" -#~ msgstr "Początk. Gcode" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very start." -#~ msgstr "Komendy Gcode wykonywane na samym początku." - -#~ msgctxt "@label" -#~ msgid "End Gcode" -#~ msgstr "Końcowy Gcode" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very end." -#~ msgstr "Komendy Gcode wykonywane na samym początku." - -#~ msgctxt "@label" -#~ msgid "Extruder Start Gcode" -#~ msgstr "Początkowy Gcode ekstrudera" - -#~ msgctxt "@label" -#~ msgid "Extruder End Gcode" -#~ msgstr "Końcowy Gcode ekstrudera" - -#~ msgctxt "@label" -#~ msgid "Starting firmware update, this may take a while." -#~ msgstr "Uruchamianie aktualizacji oprogramowania, to może potrwać chwilę." - -#~ msgctxt "@label" -#~ msgid "Unknown error code: %1" -#~ msgstr "Nieznany kod błędu: %1" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@label Printer status" -#~ msgid "Unknown" -#~ msgstr "Nieznany" - -#~ msgctxt "@title:window" -#~ msgid "Find & Update plugins" -#~ msgstr "Znajdź i Zaktualizuj Wtyczki" - -#~ msgctxt "@label" -#~ msgid "Here you can find a list of Third Party plugins." -#~ msgstr "Tutaj możesz znaleźć listę wtyczek innych firm." - -#~ msgctxt "@action:button" -#~ msgid "Upgrade" -#~ msgstr "Ulepsz" - -#~ msgctxt "@action:button" -#~ msgid "Download" -#~ msgstr "Pobierz" - -#~ msgctxt "@info:tooltip" -#~ msgid "Show caution message in gcode reader." -#~ msgstr "Pokaż komunikat ostrzegawczy w tekście G-code." - -#~ msgctxt "@option:check" -#~ msgid "Caution message in gcode reader" -#~ msgstr "Komunikat ostrzegawczy w tekście G-code" - -#~ msgctxt "@window:title" -#~ msgid "Import Profile" -#~ msgstr "Importuj Profil" - -#~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name" -#~ msgid "Printer: %1, %2: %3" -#~ msgstr "Drukarka: %1, %2: %3" - -#~ msgctxt "@action:label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "Drukarka: %1" - -#~ msgctxt "@label" -#~ msgid "GCode generator" -#~ msgstr "Generator GCode" - -#~ msgctxt "@action:menu" -#~ msgid "Configure setting visiblity..." -#~ msgstr "Skonfiguruj widoczność ustawień..." - -#~ msgctxt "@title:menuitem %1 is the automatically selected material" -#~ msgid "Automatic: %1" -#~ msgstr "Automatyczny: %1" - -#~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer" -#~ msgid "Automatic: %1" -#~ msgstr "Automatyczny: %1" - -#~ msgctxt "@info:status" -#~ msgid "No printer connected" -#~ msgstr "Nie podłączono drukarki" - -#~ msgctxt "@tooltip" -#~ msgid "The current temperature of this extruder." -#~ msgstr "Bieżąca temperatura głowicy drukującej." - -#~ msgctxt "@action:menu" -#~ msgid "Installed plugins..." -#~ msgstr "Zainstalowane wtyczki..." - -#~ msgctxt "@label" -#~ msgid "Support Extruder" -#~ msgstr "Ekstruder od podpór" - -#~ msgctxt "description" -#~ msgid "Writes GCode to a file." -#~ msgstr "Zapisuje Gcode do pliku." - -#~ msgctxt "name" -#~ msgid "GCode Writer" -#~ msgstr "GCode Writer" - -#~ msgctxt "name" -#~ msgid "GCode Profile Reader" -#~ msgstr "Czytnik Profili GCode" - -#~ msgctxt "@info:status" -#~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" -#~ msgstr "Wystąpił błąd podczas otwierania pliku SolidWorks! Proszę sprawdź, czy możesz otworzyć plik SolidWorks bez żadnych problemów!" - -#~ msgctxt "@info:status" -#~ msgid "Error while starting %s!" -#~ msgstr "Błąd podczas rozpoczynania %s!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Simulation view" +#~ msgid "Simulation View" #~ msgstr "Widok symulacji" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences." -#~ msgstr "Cura zbiera anonimowe statystyki cięcia. Możesz wyłączyć to w ustawieniach." - -#~ msgctxt "@action:button" -#~ msgid "Dismiss" -#~ msgstr "Anuluj" - -#~ msgctxt "@menuitem" -#~ msgid "Global" -#~ msgstr "Globalny" - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal exception has occurred. 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 "" -#~ "

    Wystąpił fatalny błąd. Proszę wyślij do nas ten Raport Błędu, abyśmy mogli naprawić błąd

    \n" -#~ "

    Proszę użyj przycisku \"Wyślij raport\", aby wysłać raport błędu automatycznie na nasze serwery.

    \n" -#~ " " - -#~ msgctxt "@label Cura version" -#~ msgid "Cura version: {version}
    " -#~ msgstr "Wersja Cura: {version}
    " - -#~ msgctxt "@label Platform" -#~ msgid "Platform: {platform}
    " -#~ msgstr "Platforma: {platform}
    " - -#~ msgctxt "@label Qt version" -#~ msgid "Qt version: {qt}
    " -#~ msgstr "Wersja Qt: {qt}
    " - -#~ msgctxt "@label PyQt version" -#~ msgid "PyQt version: {pyqt}
    " -#~ msgstr "Wersja PyQt: {pyqt}
    " - -#~ msgctxt "@label OpenGL" -#~ msgid "OpenGL: {opengl}
    " -#~ msgstr "OpenGL: {opengl}
    " - -#~ msgctxt "@title:groupbox" -#~ msgid "Exception traceback" -#~ msgstr "Śledzenie błędów" - -#~ msgctxt "@label" -#~ msgid "Material diameter" -#~ msgstr "Średnica materiału" - -#~ msgctxt "@title:window" -#~ msgid "Cura SolidWorks Plugin Configuration" -#~ msgstr "Konfiguracja Wtyczki Cura SolidWorks" - -#~ msgctxt "@action:label" -#~ msgid "Default quality of the exported STL:" -#~ msgstr "Domyślna jakość eksportowanego STL:" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always ask" -#~ msgstr "Zawsze pytaj" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Fine quality" -#~ msgstr "Zawsze używaj Dobrej jakości" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Coarse quality" -#~ msgstr "Zawsze używaj Słabej jakości" - -#~ msgctxt "@title:window" -#~ msgid "Import SolidWorks File as STL..." -#~ msgstr "Importuj Plik SolidWorks jako STL..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Quality of the Exported STL" -#~ msgstr "Jakość Eksportowanego STL" - -#~ msgctxt "@action:label" -#~ msgid "Quality" -#~ msgstr "Jakość" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse" -#~ msgstr "Słaba" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine" -#~ msgstr "Dobra" - -#~ msgctxt "@" -#~ msgid "No Profile Available" -#~ msgstr "Brak Dostępnego Profilu" - -#~ msgctxt "@label" -#~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders" -#~ msgstr "To ustawienie jest zawsze dzielone między wszystkie ekstrudery. Zmiana jego wartości tutaj spowoduje zmianę dla wszystkich ekstruderów" - -#~ msgctxt "@tooltip" -#~ msgid "Time specification
    " -#~ msgstr "Szacowany czas
    " - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Reset camera position" -#~ msgstr "&Zresetuj pozycję kamery" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save project" -#~ msgstr "Zapisz projekt" - -#~ msgctxt "@title:tab" -#~ msgid "Prepare" -#~ msgstr "Przygotuj" - -#~ msgctxt "@title:tab" -#~ msgid "Monitor" -#~ msgstr "Monitor" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "Sprawdź kompatybilność" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura" -#~ msgstr "Daje tobie możliwość otwierania plików poprzez SolidWorks. Pliki są potem konwertowane i ładowane do Cura" - -#~ msgctxt "@label:status" -#~ msgid "Blocked" -#~ msgstr "Zablokowany" - -#~ msgctxt "@label:status" -#~ msgid "Can't start print" -#~ msgstr "Nie mogę rozpocząć drukowania" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect.." -#~ msgstr "Otwórz Connect.." - -#~ msgctxt "@info:title" -#~ msgid "Print Details" -#~ msgstr "Szczegółu druku" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB." -#~ msgstr "Aby upewnić się że twoja {machine_name} jest wyposażona w najnowsze opcje rekomendowane jest aktualizowanie oprogramowania regularnie. Może to być wykonane na {machine_name} (kiedy jest podłączona do sieci) lub przez USB." - -#~ msgctxt "@info:title" -#~ msgid "Layer View" -#~ msgstr "Widok warstwy" - -#~ msgctxt "@menuitem" -#~ msgid "Browse plugins" -#~ msgstr "Przeglądaj wtyczki" - -#~ msgctxt "@info:title" -#~ msgid "Export Details" -#~ msgstr "Szczegóły Eskportu" - -#~ msgctxt "@label" -#~ msgid "" -#~ "

    A fatal exception has occurred that we could not recover from!

    \n" -#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " -#~ msgstr "" -#~ "

    Pojawił się fatalny wyjątek, z którego nie możemy odzyskać!

    \n" -#~ "

    Aby przesłać zgłoszenie błędu, skorzystaj z poniższych informacji http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " - -#~ msgctxt "@action:button" -#~ msgid "Open Web Page" -#~ msgstr "Otwórz stronę sieci Web" - -#~ msgctxt "@action:button" -#~ msgid "Ok" -#~ msgstr "Ok" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "Ta drukarka nie została ustawiona do hostowania grupy podłączonych drukarek Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" -#~ msgstr "Ta drukarka nie została ustawiona do hostowania grupy %1 podłączonych drukarek Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "Completed on: " -#~ msgstr "Zakończono:" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "Otwiera stronę zadań drukowania za pomocą domyślnej przeglądarki." - -#~ msgctxt "@label" -#~ msgid "PRINTER GROUP" -#~ msgstr "GRUPA DRUKAREK" - -#~ msgctxt "@action:warning" -#~ msgid "Loading a project will clear all models on the buildplate" -#~ msgstr "Załadowanie projektu spowoduje usunięcie wszystkich modeli ze stołu" - -#~ msgctxt "@label" -#~ msgid "" -#~ " plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ " wtyczka zawiera licencje.\n" -#~ "Musisz zaakceptować tą licencję, aby zainstalować wtyczkę.\n" -#~ "Akceptujesz poniższe postanowienia?" - -#~ msgctxt "@label" -#~ msgid "00h 00min" -#~ msgstr "00h 00min" - -#~ msgctxt "@tooltip" -#~ msgid "Time information" -#~ msgstr "Informacje o czasie" - -#~ msgctxt "@description" -#~ msgid "Print time" -#~ msgstr "Czas druku" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - -#~ msgctxt "@title:window" -#~ msgid "Cura" -#~ msgstr "Cura" - -#~ msgctxt "@label" -#~ msgid "Check material compatibility" -#~ msgstr "Sprawdź kompatybilność materiału" - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection (Cluster)" -#~ msgstr "Połączenie Sieciowe UM3 (Grupa)" - -#~ msgctxt "description" -#~ msgid "Provides the Layer view." -#~ msgstr "Zapewnia widok warstw." - -#~ msgctxt "name" -#~ msgid "Layer View" -#~ msgstr "Widok Warstw" - -#~ msgctxt "@item:inlistbox" -#~ msgid "X-Ray" -#~ msgstr "Prześwietlenie" - -#~ msgctxt "@label" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "Akceptuje G-code i wysyła je przez WiFi do Doodle3D WiFi-Box." - -#~ msgctxt "@item:inmenu" -#~ msgid "Doodle3D printing" -#~ msgstr "Drukowanie Doodle3D" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D" -#~ msgstr "Drukuj z Doodle3D" - -#~ msgctxt "@info:tooltip" -#~ msgid "Print with " -#~ msgstr "Drukuj z " - -#~ msgctxt "@title:menu" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Enable Scan devices..." -#~ msgstr "Włącz skanowanie urządzeń ..." - -#~ msgctxt "@info:progress" -#~ msgid "Saving to Removable Drive {0}" -#~ msgstr "Zapisywanie na dysk wymienny {0}" - -#~ msgctxt "@info:status" -#~ msgid "Could not save to {0}: {1}" -#~ msgstr "Nie udało się zapisać do {0}: {1}" - -#~ msgctxt "@info:status" -#~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!" -#~ msgstr "Pamiętaj, że musisz ponownie otworzyć plik SolidWorks ręcznie! Przeładowanie modelu nie będzie działać!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Layers" -#~ msgstr "Warstwy" - -#~ msgid "Browse plugins" -#~ msgstr "Przeglądaj wtyczki" - -#~ msgctxt "@item:inmenu" -#~ msgid "Solid" -#~ msgstr "Bryła" - -#~ msgctxt "@label" -#~ msgid "The file {0} already exists. Are you sure you want to overwrite it?" -#~ msgstr "Plik {0} już istnieje. Czy na pewno chcesz go nadpisać?" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export profile to {0}: {1}" -#~ msgstr "Nie można wyeksportować profilu do {0}: {1}" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export profile to {0}: Writer plugin reported failure." -#~ msgstr "Nie można wyeksportować profilu do {0}: Wtyczka Cura zgłosiła błąd." - -#~ msgctxt "@info:status" -#~ msgid "Exported profile to {0}" -#~ msgstr "Wyeksportowano profil do {0}" - -#~ msgctxt "@info:status" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "Nie można zaimportować profilu z {0}: {1}" - -#~ msgctxt "@title:window" -#~ msgid "Doodle3D Settings" -#~ msgstr "Ustawienia Doodle3D" - -#~ msgctxt "@title:window" -#~ msgid "Print to: %1" -#~ msgstr "Drukuj do: %1" - -#~ msgctxt "@label" -#~ msgid "Extruder Temperature: %1/%2°C" -#~ msgstr "Temperatura dyszy: %1/%2°C" - -#~ msgctxt "@label" -#~ msgid "Bed Temperature: %1/%2°C" -#~ msgstr "Temperatura stołu: %1/%2°C" - -#~ msgctxt "@label" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@label" -#~ msgid "View Mode: Layers" -#~ msgstr "Tryb widoku: warstwy" - -#~ msgctxt "@info:status" -#~ msgid "Could not import material %1: %2" -#~ msgstr "Nie można zaimportować materiału %1: %2" - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported material %1" -#~ msgstr "Pomyślnie zaimportowano materiał %1" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export material to %1: %2" -#~ msgstr "Nie udało się wyeksportować materiału do %1: %2" - -#~ msgctxt "@info:status" -#~ msgid "Successfully exported material to %1" -#~ msgstr "Udało się wyeksportować materiał do %1" - -#~ msgctxt "@label" -#~ msgid "%1 m / ~ %2 g / ~ %4 %3" -#~ msgstr "%1 m / ~ %2 g / ~ %4 %3" - -#~ msgctxt "@label" -#~ msgid "%1 m / ~ %2 g" -#~ msgstr "%1 m / ~ %2 g" - -#~ msgctxt "@label" -#~ msgid "Hotend" -#~ msgstr "Głowica" - -#~ msgctxt "@action:button" -#~ msgid "View Mode" -#~ msgstr "Tryb podglądu" - -#~ msgctxt "@title:tab" -#~ msgid "Print" -#~ msgstr "Drukuj" - -#~ msgctxt "@label" -#~ msgid "0%" -#~ msgstr "0%" - -#~ msgctxt "@label" -#~ msgid "Empty infill will leave your model hollow with low strength." -#~ msgstr "Puste wypełnienie pozostawi twój model pusty z niską wytrzymałością." - -#~ msgctxt "@label" -#~ msgid "20%" -#~ msgstr "20%" - -#~ msgctxt "@label" -#~ msgid "Light (20%) infill will give your model an average strength." -#~ msgstr "Lekkie (20%) wypełnienie sprawi, że model będzie średniej wytrzymałości." - -#~ msgctxt "@label" -#~ msgid "50%" -#~ msgstr "50%" - -#~ msgctxt "@label" -#~ msgid "Dense (50%) infill will give your model an above average strength." -#~ msgstr "Gęste wypełnienie (50%) da modelowi wyższą niż średnia wytrzymałość." - -#~ msgctxt "@label" -#~ msgid "100%" -#~ msgstr "100%" - -#~ msgctxt "@label" -#~ msgid "Solid (100%) infill will make your model completely solid." -#~ msgstr "Pełne (100%) wypełnienie sprawi, że model będzie całkowicie wypełniony." - -#~ msgctxt "@label" -#~ msgid "Gradual" -#~ msgstr "Stopniowy" - -#~ msgctxt "description" -#~ msgid "Provides support for writing X3G files" -#~ msgstr "Zapewnia wsparcie w tworzeniu plików X3G" - -#~ msgctxt "name" -#~ msgid "X3G Writer" -#~ msgstr "X3G Writer" - -#~ msgctxt "@label" -#~ msgid "Machine Settings action" -#~ msgstr "Czynność ustawienia drukarki" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)" -#~ msgstr "Zapewnia sposób zmiany ustawień maszyn (takich jak objętość robocza, rozmiar dyszy itd.)" - -#~ msgctxt "@label" -#~ msgid "X-Ray View" -#~ msgstr "Widok rentgenowski" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the X-Ray view." -#~ msgstr "Zapewnia widok rentgenowski." - -#~ msgctxt "@label" -#~ msgid "X3D Reader" -#~ msgstr "Czytnik X3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for reading X3D files." -#~ msgstr "Zapewnia obsługę czytania plików X3D." - -#~ msgctxt "@label" -#~ msgid "GCode Writer" -#~ msgstr "GCode Autor" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Writes GCode to a file." -#~ msgstr "Zapisuje kod GCode do pliku." - -#~ msgctxt "@action:button Preceded by 'Ready to'." -#~ msgid "Print with Doodle3D" -#~ msgstr "Drukuj z Doodle3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "Pokazuje zmiany od ostatniej sprawdzonej wersji." - -#~ msgctxt "@label" -#~ msgid "Profile flatener" -#~ msgstr "Charakterystyka Profila" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "Utwórz charakterystyczny profil jakości" - -#~ msgctxt "@label" -#~ msgid "USB printing" -#~ msgstr "Drukowanie USB" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -#~ msgstr "Akceptuje G-code i wysyła je do drukarki. Wtyczka może również aktualizować oprogramowanie układowe." - -#~ msgctxt "X3G Writer Plugin Description" -#~ msgid "Writes X3G to a file" -#~ msgstr "Zapisuje do pliku X3G" - -#~ msgctxt "@label" -#~ msgid "Removable Drive Output Device Plugin" -#~ msgstr "Usuwana wtyczka urządzenia wyjściowego napędu" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides removable drive hotplugging and writing support." -#~ msgstr "Zapewnia podłączanie wymiennego dysku i zapisywania na bieżąco." - -#~ msgctxt "@info:whatsthis" -#~ msgid "Manages network connections to Ultimaker 3 printers" -#~ msgstr "Zarządza połączeniami sieciowymi z drukarkami Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Różne Print core (Cura: {0}, Drukarka: {1}) wybrane dla dyszy {2}" - -#~ msgctxt "@label" -#~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "Print core {0} nie jest poprawnie skalibrowany. Na drukarce powinna zostać przeprowadzona Kalibracja XY." - -#~ msgctxt "@label" -#~ msgid "The print cores and/or materials on your printer differ from those within your current project. For the best result, always slice for the print cores and materials that are inserted in your printer." -#~ msgstr "Print core'y i/lub materiały w twojej drukarce różnią się od tych, które zostały wybrane w obecnym projekcie. Dla najlepszego rezultatu, zawsze tnij modele dla pint core'ów i materiałów, które są umieszczone w twojej drukarce." - -#~ msgctxt "@label" -#~ msgid "Post Processing" -#~ msgstr "Przetwarzanie " - -#~ msgctxt "Description of plugin" -#~ msgid "Extension that allows for user created scripts for post processing" -#~ msgstr "Rozszerzenie, które pozwala tworzyć skrypty dla użytkowników po przetworzeniu" - -#~ msgctxt "@label" -#~ msgid "Auto Save" -#~ msgstr "Automatyczne zapisywanie" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "Automatycznie zapisuje ustawienia, maszyny i profile po zmianach." - -#~ msgctxt "@label" -#~ msgid "Slice info" -#~ msgstr "Cura informacja" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Submits anonymous slice info. Can be disabled through preferences." -#~ msgstr "Składa anonimową listę cięc. Można wyłączyć przez preferencje." - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences" -#~ msgstr "Cura zbiera anonimowe statystyki. Możesz wyłączyć to w preferencjach" - -#~ msgctxt "@label" -#~ msgid "Material Profiles" -#~ msgstr "Profile materiałów" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides capabilities to read and write XML-based material profiles." -#~ msgstr "Zapewnia możliwość odczytu i zapisu profili materiałów opartych na XML." - -#~ msgctxt "@label" -#~ msgid "Legacy Cura Profile Reader" -#~ msgstr "Starszy czytnik Cura" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing profiles from legacy Cura versions." -#~ msgstr "Zapewnia obsługę importowania profili w starszych wersjach Cura." - -#~ msgctxt "@label" -#~ msgid "GCode Profile Reader" -#~ msgstr "Czytnik profilu GCode" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing profiles from g-code files." -#~ msgstr "Zapewnia obsługę importowania profili z plików g-code." - -#~ msgctxt "@label" -#~ msgid "Layer View" -#~ msgstr "Widok warstwy" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the Layer view." -#~ msgstr "Zapewnia widok warstwy." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.5 to 2.6" -#~ msgstr "Aktualizacja wersji 2.5 do 2.6" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -#~ msgstr "Uaktualnia konfiguracji z Cura 2.5 do Cura 2.6." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.1 to 2.2" -#~ msgstr "Aktualizacja wersji 2.1 do 2.2" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -#~ msgstr "Uaktualnia konfiguracji z Cura 2.1 do Cura 2.2." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.2 to 2.4" -#~ msgstr "Aktualizacja wersji 2.2 do 2.4" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -#~ msgstr "Uaktualnia konfiguracji z Cura 2.2 do Cura 2.4." - -#~ msgctxt "@label" -#~ msgid "Image Reader" -#~ msgstr "Czytnik Obrazów" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Enables ability to generate printable geometry from 2D image files." -#~ msgstr "Umożliwia generowanie drukowanej geometrii z plików obrazów 2D." - -#~ msgctxt "@label" -#~ msgid "CuraEngine Backend" -#~ msgstr "CuraEngine Backend" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the link to the CuraEngine slicing backend." -#~ msgstr "Zapewnia połączenie do narzędzi cięcia CuraEngine." - -#~ msgctxt "@label" -#~ msgid "Per Model Settings Tool" -#~ msgstr "Narzędzie ustawień osobno dla każdego modelu" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the Per Model Settings." -#~ msgstr "Zapewnia ustawienia każdego modelu osobno." - -#~ msgctxt "@label" -#~ msgid "3MF Reader" -#~ msgstr "Czytnik 3MF" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for reading 3MF files." -#~ msgstr "Zapewnia obsługę czytania plików 3MF." - -#~ msgctxt "@label" -#~ msgid "Solid View" -#~ msgstr "Widok bryły" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides a normal solid mesh view." -#~ msgstr "Zapewnia normalny widok siatki." - -#~ msgctxt "@label" -#~ msgid "G-code Reader" -#~ msgstr "Czytnik G-code" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Allows loading and displaying G-code files." -#~ msgstr "Umożliwia ładowanie i wyświetlanie plików G-code." - -#~ msgctxt "@label" -#~ msgid "Cura Profile Writer" -#~ msgstr "Pisarz Profili Cura" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for exporting Cura profiles." -#~ msgstr "Zapewnia obsługę eksportowania profili Cura." - -#~ msgctxt "@label" -#~ msgid "3MF Writer" -#~ msgstr "3MF Writer" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for writing 3MF files." -#~ msgstr "Zapewnia obsługę pisania plików 3MF." - -#~ msgctxt "@label" -#~ msgid "Ultimaker machine actions" -#~ msgstr "Działania maszyny Ultimaker" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)" -#~ msgstr "Zapewnia działania maszyny Ultimaker (takie jak kreator poziomowania stołu, wybierania ulepszeń itd.)" - -#~ msgctxt "@label" -#~ msgid "Cura Profile Reader" -#~ msgstr "Czytnik profilu Cura" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing Cura profiles." -#~ msgstr "Zapewnia wsparcie dla importowania profili Cura." - -#~ msgctxt "@info" -#~ msgid "%(width).1f x %(depth).1f x %(height).1f mm" -#~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#~ msgctxt "@label" -#~ msgid "Build Plate Shape" -#~ msgstr "Kształt stołu" - -#~ msgctxt "@option:check" -#~ msgid "Machine Center is Zero" -#~ msgstr "Środek drukarki to zero" - -#~ msgctxt "@option:check" -#~ msgid "Heated Bed" -#~ msgstr "Stół podgrzewany" - -#~ msgctxt "@label" -#~ msgid "GCode Flavor" -#~ msgstr "GCode Flavor" - -#~ msgctxt "@label" -#~ msgid "Material Diameter" -#~ msgstr "Średnica filamentu" - -#~ msgctxt "@label" -#~ msgid "If your printer is not listed, read the network-printing troubleshooting guide" -#~ msgstr "Jeśli drukarka nie ma na liście, przeczytaj przewodnik o rozwiązywaniu problemów z drukowaniem sieciowym" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Ultimaker" -#~ msgstr "Ultimaker" - -#~ msgctxt "@label" -#~ msgid "Support library for scientific computing " -#~ msgstr "Wsparcie biblioteki dla obliczeń naukowych " - -#~ msgctxt "@tooltip" -#~ msgid "Print Setup

    Edit or review the settings for the active print job." -#~ msgstr "Ustawienia drukowania

    Edytuj lub przejrzyj ustawienia dla aktywnego zadania." - -#~ msgctxt "@tooltip" -#~ msgid "Print Monitor

    Monitor the state of the connected printer and the print job in progress." -#~ msgstr "Monitor wydruku

    Monitorowanie stanu podłączonej drukarki i aktualnego zadania." - -#~ msgctxt "@title:menuitem %1 is the value from the printer" -#~ msgid "Automatic: %1" -#~ msgstr "Automatyczny: %1" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3d model" -#~ msgstr "Proszę załaduj model 3d" - -#~ msgctxt "@label" -#~ msgid "Print Selected Model with %1" -#~ msgid_plural "Print Selected Models With %1" -#~ msgstr[0] "Wydrukuj wybrany model z %1" -#~ msgstr[1] "Wydrukuj wybrane modele z %1" diff --git a/resources/i18n/pl_PL/fdmextruder.def.json.po b/resources/i18n/pl_PL/fdmextruder.def.json.po index 739493b39d..d2a5f8ea50 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: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-08 09:03+0000\n" "PO-Revision-Date: 2019-03-13 14:00+0200\n" "Last-Translator: Mariusz 'Virgin71' Matłosz \n" "Language-Team: reprapy.pl\n" @@ -17,6 +17,96 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Poedit 2.1.1\n" +#: fdmextruder.def.json +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Przyczepność" + +#: fdmextruder.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Dostosuj średnicę użytego filamentu. Dopasuj tę wartość do średnicy używanego filamentu." + +#: fdmextruder.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Przyczepność do stołu" + +#: fdmextruder.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Średnica" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Końcowy G-code do wykonania przy przełączeniu na ten ekstruder." + +#: fdmextruder.def.json +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "Ekstruder" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code label" +msgid "Extruder End G-Code" +msgstr "Końcowy G-code Ekstrudera" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_abs label" +msgid "Extruder End Position Absolute" +msgstr "Bezwzgl. Końcowa Pozycja Ekstrudera" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x label" +msgid "Extruder End Position X" +msgstr "Końcowa Pozycja X Ekstrudera" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y label" +msgid "Extruder End Position Y" +msgstr "Końcowa Pozycja Y Ekstrudera" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Pozycja X Czyszczenia Dyszy" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Pozycja Y Czyszczenia Dyszy" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Pozycja Z Czyszczenia Dyszy" + +#: fdmextruder.def.json +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Wentylator ekstrudera" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_code label" +msgid "Extruder Start G-Code" +msgstr "Początkowy G-code Ekstrudera" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_abs label" +msgid "Extruder Start Position Absolute" +msgstr "Bezwzględna Pozycja Początkowa Ekstrudera" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "Początkowa Pozycja X Ekstrudera" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "Początkowa Pozycja Y Ekstrudera" + #: fdmextruder.def.json msgctxt "machine_settings label" msgid "Machine" @@ -28,69 +118,9 @@ msgid "Machine specific settings" msgstr "Specyficzne ustawienia maszyny" #: fdmextruder.def.json -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "Ekstruder" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID Dyszy" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "ID dyszy dla wózka ekstrudera np. \"AA 0.4\" i \"BB 0.8\"." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Średnica Dyszy" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x label" -msgid "Nozzle X Offset" -msgstr "Przesunięcie X Dyszy" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "Współrzędna X przesunięcia dyszy." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "Przesunięcie Y Dyszy" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "Współrzędna Y przesunięcia dyszy." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code label" -msgid "Extruder Start G-Code" -msgstr "Początkowy G-code Ekstrudera" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_abs label" -msgid "Extruder Start Position Absolute" -msgstr "Bezwzględna Pozycja Początkowa Ekstrudera" +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 "Zmień pozycję końcową ekstrudera na bezwzględną, zamiast względem ostatniej pozycji głowicy." #: fdmextruder.def.json msgctxt "machine_extruder_start_pos_abs description" @@ -98,114 +128,9 @@ msgid "Make the extruder starting position absolute rather than relative to the msgstr "Zmień pozycję początkową ekstrudera na bezwzględną, zamiast względem ostatniej pozycji głowicy." #: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "Początkowa Pozycja X Ekstrudera" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "Współrzędna X początkowej pozycji ekstrudera podczas jego włączania." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "Początkowa Pozycja Y Ekstrudera" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code label" -msgid "Extruder End G-Code" -msgstr "Końcowy G-code Ekstrudera" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Końcowy G-code do wykonania przy przełączeniu na ten ekstruder." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_abs label" -msgid "Extruder End Position Absolute" -msgstr "Bezwzgl. Końcowa Pozycja Ekstrudera" - -#: fdmextruder.def.json -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 "Zmień pozycję końcową ekstrudera na bezwzględną, zamiast względem ostatniej pozycji głowicy." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x label" -msgid "Extruder End Position X" -msgstr "Końcowa Pozycja X Ekstrudera" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "Współrzędna X końcowej pozycji ekstrudera podczas jego wyłączania." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y label" -msgid "Extruder End Position Y" -msgstr "Końcowa Pozycja Y Ekstrudera" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "Współrzędna Y końcowej pozycji ekstrudera podczas jego wyłączania." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Pozycja Z Czyszczenia Dyszy" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Współrzędna Z, w której dysza jest czyszczona na początku wydruku." - -#: fdmextruder.def.json -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Wentylator ekstrudera" - -#: fdmextruder.def.json -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 "Numer wentylatora przypisanego do ekstrudera. Zmień z domyślnej wartości 0, tylko w przypadku, kiedy posiadasz oddzielny wentylator dla każdego ekstrudera." - -#: fdmextruder.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Przyczepność do stołu" - -#: fdmextruder.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Przyczepność" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Pozycja X Czyszczenia Dyszy" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Współrzędna X, w której dysza jest czyszczona na początku wydruku." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Pozycja Y Czyszczenia Dyszy" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Współrzędna Y, w której dysza jest czyszczona na początku wydruku." +msgctxt "material description" +msgid "Material" +msgstr "Materiał" #: fdmextruder.def.json msgctxt "material label" @@ -213,24 +138,99 @@ msgid "Material" msgstr "Materiał" #: fdmextruder.def.json -msgctxt "material description" -msgid "Material" -msgstr "Materiał" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Średnica Dyszy" #: fdmextruder.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Średnica" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID Dyszy" #: fdmextruder.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Dostosuj średnicę użytego filamentu. Dopasuj tę wartość do średnicy używanego filamentu." +msgctxt "machine_nozzle_offset_x label" +msgid "Nozzle X Offset" +msgstr "Przesunięcie X Dyszy" -#~ msgctxt "machine_extruder_start_code description" -#~ msgid "Start g-code to execute whenever turning the extruder on." -#~ msgstr "Początkowy G-code wywoływany kiedy ekstruder uruchamia się." +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "Przesunięcie Y Dyszy" + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Współrzędna X, w której dysza jest czyszczona na początku wydruku." + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Współrzędna Y, w której dysza jest czyszczona na początku wydruku." + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Współrzędna Z, w której dysza jest czyszczona na początku wydruku." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "ID dyszy dla wózka ekstrudera np. \"AA 0.4\" i \"BB 0.8\"." + +#: fdmextruder.def.json +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 "Numer wentylatora przypisanego do ekstrudera. Zmień z domyślnej wartości 0, tylko w przypadku, kiedy posiadasz oddzielny wentylator dla każdego ekstrudera." + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "Współrzędna X końcowej pozycji ekstrudera podczas jego wyłączania." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "Współrzędna X przesunięcia dyszy." + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "Współrzędna X początkowej pozycji ekstrudera podczas jego włączania." + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "Współrzędna Y końcowej pozycji ekstrudera podczas jego wyłączania." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "Współrzędna Y przesunięcia dyszy." + +#: fdmextruder.def.json +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_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." + +#~ msgctxt "machine_extruder_start_code description" +#~ msgid "Start g-code to execute whenever turning the extruder on." +#~ msgstr "Początkowy G-code wywoływany kiedy ekstruder uruchamia się." diff --git a/resources/i18n/pl_PL/fdmprinter.def.json.po b/resources/i18n/pl_PL/fdmprinter.def.json.po index 4aa3984d90..8c6ba9a785 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: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-28 11:57+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" @@ -17,1497 +17,19 @@ msgstr "" "X-Generator: Poedit 2.2.4\n" #: fdmprinter.def.json -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Drukarka" +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 "Odległość utrzymywana od krawędzi modelu. Prasowanie do końca krawędzi siatki może powodować zadarte krawędzie na wydruku." #: fdmprinter.def.json -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Specyficzne ustawienia drukarki" - -#: fdmprinter.def.json -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Typ drukarki" - -#: fdmprinter.def.json -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Nazwa modelu twojej drukarki." - -#: fdmprinter.def.json -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Pokaż Warianty Maszyny" - -#: fdmprinter.def.json -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Określa czy wyświetlać różne warianty drukarki, które są opisane w oddzielnych plikach JSON." - -#: fdmprinter.def.json -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "Początkowy G-code" - -#: fdmprinter.def.json -msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." -msgstr "" -"Polecenia G-code, które są wykonywane na samym początku - oddzielone za pomocą \n" -"." - -#: fdmprinter.def.json -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "Końcowy G-code" - -#: fdmprinter.def.json -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." -msgstr "" -"Polecenia G-code, które są wykonywane na samym końcu - oddzielone za pomocą \n" -"." - -#: fdmprinter.def.json -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID Materiału" - -#: fdmprinter.def.json -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." +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 "" #: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Średnica" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Dostosowuje średnicę stosowanego filamentu. Dopasuj tę wartość do średnicy stosowanego filamentu." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Czekaj na Podgrzanie Stołu" - -#: fdmprinter.def.json -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 "Czy wstawić na początku komendę, czekającą aż temperatura stołu zostanie osiągnięta." - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Czekaj na Podgrzanie Dyszy" - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Poczekaj, aż temperatura dyszy zostanie osiągnięta na początku." - -#: fdmprinter.def.json -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Załącz Temperaturę Materiału" - -#: fdmprinter.def.json -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 "Możliwość wstawienia polecenia temperatury dyszy na początku G-code. Jeżeli start_gcode już zawiera polecenia temperatury dyszy, program Cura wyłączy tego ustawienie automatycznie." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Załącz Temperaturę Stołu" - -#: fdmprinter.def.json -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 "Możliwość wstawienia poleceń temperatury stołu na początku G-code. Jeśli start_gcode zawiera już polecenia dla temperatury stołu, program Cura wyłącza to ustawienie automatycznie." - -#: fdmprinter.def.json -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Szerokość Maszyny" - -#: fdmprinter.def.json -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "Szerokość (w kierunku X) obszaru roboczego." - -#: fdmprinter.def.json -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Głębokość Maszyny" - -#: fdmprinter.def.json -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "Głębokość (w kierunku Y) obszaru drukowania." - -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Wysokość Maszyny" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Wysokość (w kierunku Z) obszaru drukowania." - -#: fdmprinter.def.json -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Kształt Stołu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Prostokątny" - -#: fdmprinter.def.json -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Eliptyczny" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Materiał Platformy Roboczej" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Materiał platformy roboczej zainstalowanej w drukarce." - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Szkło" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Aluminium" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Posiada Podgrzewany Stół" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Określa czy maszyna posiada podgrzewany stół." - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Posiada komorę stabilizacji temperatury" - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Określa czy drukarka posiada zamkniętą komorę stabilizującą temperaturę." - -#: fdmprinter.def.json -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Środek to Początek" - -#: fdmprinter.def.json -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 "Określa, czy współrzędne zero X/Y znajdują się na środku pola wydruku." - -#: fdmprinter.def.json -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Liczba Ekstruderów" - -#: fdmprinter.def.json -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Liczba zespołów esktruderów. Zespół ekstrudera to kombinacja podajnika, rurki Bowden i dyszy." - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Liczba Ekstruderów, które są dostępne" - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Liczba zespołów ekstruderów, które są dostępne; automatycznie ustawiane w oprogramowaniu" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Zew. średnica dyszy" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Długość dyszy" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Kąt dyszy" - -#: fdmprinter.def.json -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 "Kąt pomiędzy poziomą powierzchnią a częścią stożkową bezpośrednio ponad dyszą." - -#: fdmprinter.def.json -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Długość strefy cieplnej" - -#: fdmprinter.def.json -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 "Odległość od końcówki dyszy, z której ciepło dyszy przenoszone jest do filamentu." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Włącz Kontrolę Temp. Dyszy" - -#: fdmprinter.def.json -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 "Czy kontrolować temperaturę przez Cura? Wyłącz tę funkcję, aby kontrolować temperaturę dyszy poza Cura." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Prędkość nagrzewania" - -#: fdmprinter.def.json -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 "Szybkość (° C/s.), z którą dysza ogrzewa się - średnia z normlanej temperatury druku i temperatury czuwania." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Prędkość chłodzenia" - -#: fdmprinter.def.json -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 "Szybkość (° C/s.), z którą dysza chłodzi się - średnia z normlanej temperatury druku i temperatury czuwania." - -#: fdmprinter.def.json -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Minimalny Czas Temp. Czuwania" - -#: fdmprinter.def.json -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 "Minimalny czas, w jakim ekstruder musi być nieużywany, aby schłodzić dyszę. Dopiero, gdy ekstruder nie jest używany dłużej niż przez ten czas, będzie można schłodzić dyszę do temp. czuwania." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Smak G-code" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Typ g-code, który ma być generowany." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Objętościowy)" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -#: fdmprinter.def.json -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Retrakcja Programowa" - -#: fdmprinter.def.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 "Używaj komend retrakcji (G10/G11) zamiast używać współrzędną E w komendzie G1, aby wycofać materiał." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "" - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "" - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Niedozwolone obszary" - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Lista obszarów, we których głowica nie może się poruszać." - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Niedozwolone Obszary Dyszy" - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "Lista obszarów, w które dysze nie mogą wjeżdżać." - -#: fdmprinter.def.json -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Obszar głowicy i wentylatora drukarki" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Wysokość wózka" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID Dyszy" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "ID dyszy dla wózka ekstrudera np. \"AA 0.4\" i \"BB 0.8\"." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Średnica dyszy" - -#: fdmprinter.def.json -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. Użyj tego ustawienia, jeśli używasz dyszę o niestandardowym rozmiarze." - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Przesunięcie ekstrudera" - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Pozycja Z Czyszczenia Dyszy" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Współrzędna Z, w której dysza jest czyszczona na początku wydruku." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Bezwzgl. Końcowa Pozycja Ekstrudera" - -#: fdmprinter.def.json -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 "Zmień pozycję końcową ekstrudera na bezwzględną, zamiast względem ostatniej pozycji głowicy." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Maksymalna Prędkość X" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "Maksymalna prędkość silnika osi X." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Maksymalna Prędkość Y" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Maksymalna prędkość silnika osi Y." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Maksymalna Prędkość Z" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Maksymalna prędkość silnika osi Z." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "Maksymalna prędkość filamentu." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Maksymalne Przyspieszenie X" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "Maksymalne przyspieszenie dla silnika osi X" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Maksymalne Przyspieszenie Y" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Maksymalne przyspieszenie dla silnika osi Y." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Maksymalnie Przyspieszenie Z" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Maksymalne przyspieszenie dla silnika osi Z." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Maksymalna Przysp. Filamentu" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Maksymalne przyspieszenie dla silnika filamentu." - -#: fdmprinter.def.json -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Domyślne Przyspieszenie" - -#: fdmprinter.def.json -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "Domyślną przyspieszenie ruchu głowicy." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Domyślny Zryw X-Y" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "Domyślny zryw dla ruchu w płaszczyźnie poziomej." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Domyślny Zryw Z" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Domyślny zryw do silnika osi Z." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Domyślny Zryw Filamentu" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Domyślny zryw dla silnika filamentu." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Kroki na milimetr (X)" - -#: fdmprinter.def.json -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 "Ile kroków silnika krokowego będzie skutkowało ruchem o 1mm w osi X." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Kroki na milimetr (Y)" - -#: fdmprinter.def.json -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 "Ile kroków silnika krokowego będzie skutkowało ruchem o 1mm w osi Y." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Kroki na milimetr (Z)" - -#: fdmprinter.def.json -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 "Ile kroków silnika krokowego będzie skutkowało ruchem o 1mm w osi Z." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Kroki na milimetr (E)" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Krańcówka X w Pozycji Dodatniej" - -#: fdmprinter.def.json -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 "Czy krańcówka osi X jest w pozycji dodatniej (wysokie współrzędne X) czy w ujemnej (niskie współrzędne X)." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Krańcówka Y w Pozycji Dodatniej" - -#: fdmprinter.def.json -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 "Czy krańcówka osi Y jest w pozycji dodatniej (wysokie współrzędne Y) czy w ujemnej (niskie współrzędne Y)." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Krańcówka Z w Pozycji Dodatniej" - -#: fdmprinter.def.json -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 "Czy krańcówka osi Z jest w pozycji dodatniej (wysokie współrzędne Z) czy w ujemnej (niskie współrzędne Z)." - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Minimalna Prędk. Posuwu" - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Minimalna prędkość ruchu głowicy drukującej." - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Średnica Koła Podajnika" - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "Średnica koła, które przesuwa materiał w podajniku." - -#: fdmprinter.def.json -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "resolution label" -msgid "Quality" -msgstr "Jakość" - -#: fdmprinter.def.json -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)" - -#: fdmprinter.def.json -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Wysokość Warstwy" - -#: fdmprinter.def.json -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 "Grubość każdej warstwy w mm. Wyższe wartości powodują szybszy wydruk w niskiej rozdzielczości, niższe wartości powodują wolniejszy wydruk w wyższej rozdzielczości." - -#: fdmprinter.def.json -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Wys. Początkowej Warstwy" - -#: fdmprinter.def.json -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 "Wysokość początkowej warstwy w mm. Grubsza początkowa warstwa powoduje lepszą przyczepność do stołu." - -#: fdmprinter.def.json -msgctxt "line_width label" -msgid "Line Width" -msgstr "Szerokość Linii" - -#: fdmprinter.def.json -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 "Szerokość jednej linii. Ogólnie, szerokość powinna być taka sama jak średnica dyszy. Jednak nieznaczne zmniejszenie tej wartości może prowadzić do lepszych wydruków." - -#: fdmprinter.def.json -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Szerokość Linii Ściany" - -#: fdmprinter.def.json -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Szerokość jednej linii ściany." - -#: fdmprinter.def.json -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Szerokość Linii Ścian(y) Zewnętrznych" - -#: fdmprinter.def.json -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 "Szerokość zewnętrznej linii ściany. Przez obniżenie tej wartości wyższe poziomy szczegółów mogą być drukowane." - -#: fdmprinter.def.json -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Szerokość Linii Ścian(y) Wewnętnych" - -#: fdmprinter.def.json -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Szerokość jednej linii dla wszystkich linii ściany z wyjątkiem jednej najbardziej zewnętrznej." - -#: fdmprinter.def.json -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Szerokość Górnej/Dolnej Linii" - -#: fdmprinter.def.json -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Szerokość pojedynczej górnej/dolnej linii." - -#: fdmprinter.def.json -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Szerokość Linii Wypełnienia" - -#: fdmprinter.def.json -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Szerokość pojedynczej linii wypełniania." - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Szer. Linii Obwódki/Obrysu" - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Szerokość pojedynczej linii Obwódki i Obrysu." - -#: fdmprinter.def.json -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Szerokość Linii Podpory" - -#: fdmprinter.def.json -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Szerokość jednej linii podpory." - -#: fdmprinter.def.json -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Szerokość Linii Połączenia Podpory" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Szerokość Linii Dachu Podpory" - -#: fdmprinter.def.json -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Szerokość pojedynczej linii dachu podpory." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Szerokość Linii Podłoża Podpory" - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Szerokość pojedynczej linii podłoża podpory." - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Szerokość Linii Wieży Czyszczczenia" - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Szerokość pojedynczej linii wieży." - -#: fdmprinter.def.json -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Szerokość Linii Początk. Warstwy" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "shell label" -msgid "Walls" -msgstr "" - -#: fdmprinter.def.json -msgctxt "shell description" -msgid "Shell" -msgstr "Powłoka" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Ekstruder Ściany" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "Ekstruder używany do drukowania ścian. Używane w multi-esktruzji." - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Esktruder Zew. Ściany" - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "Esktruder używany do drukowania zewn. ściany. Używane w multi-ekstruzji." - -#: fdmprinter.def.json -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Ekstruder Wew. Linii" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Grubość Ściany" - -#: fdmprinter.def.json -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 "Grubość ścian w kierunku poziomym. Ta wartość podzielona przez szerokość linii ściany, określa liczbę ścian." - -#: fdmprinter.def.json -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Ilość Ścian" - -#: fdmprinter.def.json -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 "Liczba ścian. Przy obliczaniu za pomocą grubości ściany, ta wartość jest zaokrąglana do liczby całkowitej." - -#: fdmprinter.def.json -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Długość Czyszczenia Zew. Ściana" - -#: fdmprinter.def.json -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Długość ruchu jałowego umieszczonego po wydrukowaniu zewnętrznej ściany, aby lepiej ukryć szew Z." - -#: fdmprinter.def.json -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Wkład Zew. Ściany" - -#: fdmprinter.def.json -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 "Wkład nałożony na ścieżkę zewnętrznej ściany. Jeśli zewnętrzna ścianka jest mniejsza niż dysza i jest drukowana po wewnętrznych ściankach, użyj tego przesunięcia, aby uzyskać otwór w dyszy, żeby nakładała się z wewnętrzną ścianą zamiast być na zewnątrz modelu." - -#: fdmprinter.def.json -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Optymalizuj Kolejność Drukowania Ścian" - -#: fdmprinter.def.json -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 "Optymalizuje kolejność, w jakiej będą drukowane ścianki w celu zredukowania ilości retrakcji oraz dystansu ruchów jałowych. Większość części skorzysta na załączeniu tej funkcji, jednak w niektórych przypadkach czas druku może się wydłużyć, proszę więc o porównanie oszacowanego czasu z funkcją załączoną oraz wyłączoną. Pierwsza warstwa nie zostanie zoptymalizowana, jeżeli jako poprawa przyczepności stołu zostanie wybrany obrys." - -#: fdmprinter.def.json -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "" - -#: fdmprinter.def.json -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." -msgstr "" - -#: fdmprinter.def.json -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "" - -#: fdmprinter.def.json -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "" - -#: fdmprinter.def.json -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Zastosuj Dodatkową Ścianę" - -#: fdmprinter.def.json -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 "Drukuje dodatkową ścianę na każdej warstwie. W ten sposób wypełnienie jest tworzone pomiędzy tymi dod. ścianami, co skutkuje mocniejszymi wydrukami." - -#: fdmprinter.def.json -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold label" -msgid "Split Middle Line Threshold" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "" - -#: fdmprinter.def.json -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold label" -msgid "Add Middle Line Threshold" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "" - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Drukuj Cienkie Linie" - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Drukuj części modelu, które są poziomo cieńsze niż rozmiar dyszy." - -#: fdmprinter.def.json -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Poziome Poszerzenie" - -#: fdmprinter.def.json -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 "Wartość przesunięcia zastosowana do wszystkich wielokątów na każdej warstwie. Dodatnie wartości mogą kompensować zbyt duże otwory; wartości ujemne mogą kompensować zbyt małe otwory." - -#: fdmprinter.def.json -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Poziome Poszerzenie Początk. Warstwy" - -#: fdmprinter.def.json -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 "Wartość przesunięcia dodawana do wszystkich powierzchni na pierwszej warstwie. Ujemna wartość może skompensować rozlewanie się pierwszej warstwy znane jako \"stopa słonia\"." - -#: fdmprinter.def.json -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "" - -#: fdmprinter.def.json -msgctxt "hole_xy_offset description" -msgid "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." -msgstr "" - -#: fdmprinter.def.json -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Wyrównanie Szwu Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Określone przez Użytkownika" - -#: fdmprinter.def.json -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Najkrótsze" - -#: fdmprinter.def.json -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Losowe" - -#: fdmprinter.def.json -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Najostrzejszy róg" - -#: fdmprinter.def.json -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Pozycja szwu osi Z" - -#: fdmprinter.def.json -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "Najbliższa pozycja startu druku każdej warstwy." - -#: fdmprinter.def.json -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Lewy tył" - -#: fdmprinter.def.json -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Tył" - -#: fdmprinter.def.json -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Prawy tył" - -#: fdmprinter.def.json -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Prawa" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Prawy przód" - -#: fdmprinter.def.json -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Przód" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Lewy przód" - -#: fdmprinter.def.json -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Lewa" - -#: fdmprinter.def.json -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Szew X" - -#: fdmprinter.def.json -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "Współrzędna X położenia, w pobliżu miejsca rozpoczęcia drukowania każdej warstwy." - -#: fdmprinter.def.json -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Szew Y" - -#: fdmprinter.def.json -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "Współrzędna Y położenia, w pobliżu miejsca rozpoczęcia drukowania każdej warstwy." - -#: fdmprinter.def.json -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Wybór Rogu Szwu" - -#: fdmprinter.def.json -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 "Kontroluj, czy narożniki obrysu wpływają na położenie szwu. Brak oznacza, że rogi nie mają wpływu na tę pozycję. Ukryj szew zwiększa prawdopodobieństwo pojawienia się szwu w wewnętrznym rogu. Ujawnij szew zwiększa prawdopodobieństwo pojawienia się szwu w narożniku zewnętrznym. Ukryj lub odsłoń szew zwiększa prawdopodobieństwo, że szew pojawi się w rogu wewnętrznym lub zewnętrznym. Inteligentne ukrywanie odsłania zarówno narożniki wewnętrzne, jak i zewnętrzne, ale w miarę potrzeby wybiera wewnętrzne narożniki." - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Brak" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Ukryj Szew" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Pokaż Szew" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Ukryj lub Pokaż Szew" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Inteligentne ukrywanie" - -#: fdmprinter.def.json -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Względny Szew Z" - -#: fdmprinter.def.json -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 "Kiedy włączone, współrzędne szwu są względne do każdego środka części. Kiedy wyłączone, współrzędne opisują bezwzględną pozycję na stole." - -#: fdmprinter.def.json -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "" - -#: fdmprinter.def.json -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Ekstruder Górnej Pow. Skóry" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "Esktruder używany do drukowania górnej skóry. Używane w multi-ekstruzji." - -#: fdmprinter.def.json -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Warstwy Górnej Pow. Skóry" - -#: fdmprinter.def.json -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 "Liczba warstw górnej skóry. Zazwyczaj tylko jedna górna warstwa poprawia jakość górnych powierzchni." - -#: fdmprinter.def.json -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Ekstruder Góra/Dół" - -#: fdmprinter.def.json -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 "Ekstruder używany do drukowania górnej i dolnej skóry. Używane w multi-ekstruzji." - -#: fdmprinter.def.json -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Grubość Góra/Dół" - -#: fdmprinter.def.json -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 "Grubość górnej/dolnej warstwy wydruku. Ta wartość podzielona przez wysokość warstwy definiuje liczbę warstw górnych/dolnych." - -#: fdmprinter.def.json -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Grubość Góra" - -#: fdmprinter.def.json -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 "Grubość górnych warstw na wydruku. Ta wartość podzielona przez wysokość warstwy definiuje liczbę warstw górnych." - -#: fdmprinter.def.json -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Górne warstwy" - -#: fdmprinter.def.json -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 "Liczba górnych warstw. Przy obliczaniu górnej grubości wartość ta jest zaokrąglana do liczby całkowitej." - -#: fdmprinter.def.json -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Grubość Dołu" - -#: fdmprinter.def.json -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 "Grubość dolnych warstw w wydruku. Ta wartość podzielona przez wysokość warstwy definiuje liczbę warstw dolnych." - -#: fdmprinter.def.json -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Dolne Warstwy" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Początkowej warstwy dolne" - -#: fdmprinter.def.json -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 "Liczba początkowych dolnych warstw, od stołu w górę. Obliczona na podstawie grubości spodu, wartość ta jest zaokrąglana do liczby całkowitej." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Wzór Góra/Dół" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Wzór górnej/dolnej warstwy." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Linie" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Koncentryczny" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zygzak" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Wzór Dolnej Początkowej Warstwy" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "Wzór na pierwszej warstwie na dole wydruku." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Linie" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Koncentryczny" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zygzak" - -#: fdmprinter.def.json -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Połącz Górne/Dolne Wieloboki" - -#: fdmprinter.def.json -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 "Połącz górne/dolne ścieżki, które przebiegają koło siebie. Włączenie tej opcji powoduje ograniczenie czasu ruchów jałowych dla wzorca koncentrycznego, ale ze względu na możliwość pojawienia się połączeń w połowie ścieżki wypełnienia, opcja ta może obniżyć jakość górnego wykończenia." - -#: fdmprinter.def.json -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Kierunki Linii Góra/Dół" +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)." #: fdmprinter.def.json msgctxt "skin_angles description" @@ -1515,379 +37,24 @@ msgid "A list of integer line directions to use when the top/bottom layers use t msgstr "Lista całkowitych kierunków linii używana kiedy górne/dolne warstwy używają wzoru linii i zygzaka. Elementy z listy są używane kolejno w miarę postępu warstw, a kiedy kończy się lista, zaczyna się od początku. Elementy listy są oddzielone przecinkami, a cała lista znajduje się w nawiasach kwadratowych. Domyślnie lista jest pusta, co oznacza tradycyjne, domyślne kąty (45 i 135 stopni)." #: fdmprinter.def.json -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Brak wypełnienia w lukach osi Z" +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 kierunków linii całkowitych do użycia. Elementy z listy są używane sekwencyjnie w miarę postępu warstw, a po osiągnięciu końca listy zaczyna się od początku. Elementy listy są oddzielone przecinkami, a cała lista jest zawarta w nawiasach kwadratowych. Domyślnie lista jest pusta, co oznacza użycie domyślnego kąta 0 stopni." #: fdmprinter.def.json -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 "Gdy model ma małe pionowe szczeliny składające się z kilku warstw, powinna pojawić się powierzchnia zewnętrzna wokół tych warstw w wąskiej przestrzeni. Włącz, aby nie generować powierzchni zewnętrznej, jeśli odstęp pionowy jest bardzo mały. Poprawia to czas drukowania i czas cięcia, ale technicznie pozostawia wypełnienie bez wykończenia." +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 kierunków linii całkowitych do użycia. Elementy z listy są używane sekwencyjnie w miarę postępu warstw, a po osiągnięciu końca listy zaczyna się od początku od nowa. Elementy listy są oddzielone przecinkami, a cała lista jest zawarta w nawiasach kwadratowych. Domyślnie lista jest pusta, co oznacza użycie domyślnych kątów (na przemian między 45 a 135 stopni, jeśli interfejsy są dość grube lub 90 stopni)." #: fdmprinter.def.json -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Liczba Dod. Ścian na Skórze" +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 kierunków linii całkowitych do użycia. Elementy z listy są używane sekwencyjnie w miarę postępu warstw, a po osiągnięciu końca listy zaczyna się od początku. Elementy listy są oddzielone przecinkami, a cała lista jest zawarta w nawiasach kwadratowych. Domyślnie lista jest pusta, co oznacza użycie domyślnych kątów (na przemian między 45 a 135 stopni, jeśli interfejsy są dość grube lub 90 stopni)." #: fdmprinter.def.json -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 "Zastępuje najbardziej zewnętrzną część wzoru górnego/dolnego za pomocą kilku koncentrycznych linii. Korzystanie z jednej lub dwóch linii poprawia dachy, które zaczynają się na wypełnieniu." - -#: fdmprinter.def.json -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Włącz Prasowanie" - -#: fdmprinter.def.json -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 "Ponowne przejście po górnej powierzchni, tym razem wytłaczając bardzo mało materiału. Ma to na celu lepsze stopienie tworzywa na wierzchu, tworząc gładsze wykończenie. Ciśnienie w dyszy jest utrzymywane na wysokim poziomie, aby szczeliny na powierzchni były wypełnione materiałem." - -#: fdmprinter.def.json -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Prasuj Tylko Najwyższą Warstwę" - -#: fdmprinter.def.json -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 "Przeprowadzaj prasowanie tylko na najwyższej warstwie siatki. Oszczędza to czas jeżeli niższe warstwy nie muszą mieć gładkie wykończenia powierzchni." - -#: fdmprinter.def.json -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Wzór Prasowania" - -#: fdmprinter.def.json -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Wzór używany dla górnych powierzchni prasowania." - -#: fdmprinter.def.json -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Koncentryczny" - -#: fdmprinter.def.json -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zygzak" - -#: fdmprinter.def.json -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Przerwy Linii Prasowania" - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "Odległość pomiędzy liniami prasowania." - -#: fdmprinter.def.json -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Przepływ Prasowania" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Margines Prasowania" - -#: fdmprinter.def.json -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 "Odległość utrzymywana od krawędzi modelu. Prasowanie do końca krawędzi siatki może powodować zadarte krawędzie na wydruku." - -#: fdmprinter.def.json -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Prędkość Prasowania" - -#: fdmprinter.def.json -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "Prędkość, z jaką drukarka przejeżdża nad górnymi powierzchniami." - -#: fdmprinter.def.json -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Przyspieszenie Prasowania" - -#: fdmprinter.def.json -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "Przyspieszenie, z jakim przeprowadzane jest prasowanie." - -#: fdmprinter.def.json -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Zryw Prasowania" - -#: fdmprinter.def.json -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Maksymalna nagła zmiana prędkości podczas przeprowadzania prasowania." - -#: fdmprinter.def.json -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Procent Nakładania się Skóry" - -#: fdmprinter.def.json -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 "Dostosuj zachodzenie pomiędzy ścianami, a (punktami końcowymi) linią obrysu, jako procent szerokości linii obrysu i najbardziej wewnętrznej ściany. Niewielkie zachodzenie na siebie pozwala ścianom połączyć się mocno z obrysem. Zauważ, że przy równej szerokości obrysu i szerokości ściany, każdy procent powyżej 50% może spowodować przekroczenie ściany przez obrys, ponieważ pozycja dyszy ekstrudera obrysu może sięgać poza środek ściany." - -#: fdmprinter.def.json -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Nakładanie się Skóry" - -#: fdmprinter.def.json -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 "Dostosuj zachodzenie pomiędzy ścianami, a (punktami końcowymi) linią obrysu. Niewielkie zachodzenie na siebie pozwala ścianom połączyć się mocno z obrysem. Zauważ, że przy równej szerokości obrysu i szerokości ściany, każdy procent powyżej 50% może spowodować przekroczenie ściany przez obrys, ponieważ pozycja dyszy ekstrudera obrysu może sięgać poza środek ściany." - -#: fdmprinter.def.json -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Szerokość Usuwania Skóry" - -#: fdmprinter.def.json -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 "Największa szerokość 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/dolnych skór na pochyłych powierzchniach modelu." - -#: fdmprinter.def.json -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Szer. Usuwania Górnej Skóry" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Szer. Usuwania Dolnej Skóry" - -#: fdmprinter.def.json -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 "Największa szerokość dolnych 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 dolnych skór na pochyłych powierzchniach modelu." - -#: fdmprinter.def.json -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Odległość Rozsz. Skóry" - -#: fdmprinter.def.json -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 "Odległość na jaką skóry są rozszerzane w kierunku wypełnienia. Wyższe wartości powodują lepsze łączenie się skóry i wypełnienia i powodują, że ściany sąsiednich warstw lepiej łączą się ze skórą. Niższe wartości oszczędzają materiał." - -#: fdmprinter.def.json -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Odległość Rozsz. Górnej Skóry" - -#: fdmprinter.def.json -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 "Odległość na jaką górne skóry są rozszerzane w kierunku wypełnienia. Wyższe wartości powodują lepsze łączenie się skóry i wypełnienia i powodują, że ściany sąsiednich warstw lepiej łączą się ze skórą. Niższe wartości oszczędzają materiał." - -#: fdmprinter.def.json -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Odległość Rozsz. Dolnej Skóry" - -#: fdmprinter.def.json -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 "Odległość na jaką dolne skóry są rozszerzane w kierunku wypełnienia. Wyższe wartości powodują lepsze łączenie się skóry i wypełnienia i powodują, że ściany sąsiednich warstw lepiej łączą się ze skórą. Niższe wartości oszczędzają materiał." - -#: fdmprinter.def.json -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Maks. Kąt Rozciągania Ścian" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Min. Szerok. Skóry do Poszerzenia" - -#: fdmprinter.def.json -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 "Obszary skóry, które są węższe niż to, nie zostaną poszerzone. W ten sposób unikamy rozszerzania wąskich skór, które są tworzone, kiedy powierzchnia jest blisko pionowi." - -#: fdmprinter.def.json -msgctxt "infill label" -msgid "Infill" -msgstr "Wypełnienie" - -#: fdmprinter.def.json -msgctxt "infill description" -msgid "Infill" -msgstr "Wypełnienie" - -#: fdmprinter.def.json -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Ekstruder Wypełnienia" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Gęstość Wypełnnienia" - -#: fdmprinter.def.json -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Dostosowuje gęstość wypełnienia wydruku." - -#: fdmprinter.def.json -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Odstęp Linii Wypełnienia" - -#: fdmprinter.def.json -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 "Odległość między drukowanymi liniami wypełnienia. To ustawienie jest obliczane za pomocą gęstości wypełnienia i szerokość linii wypełnienia." - -#: fdmprinter.def.json -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Wzorzec Wypełnienia" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Kratka" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Linie" - -#: fdmprinter.def.json -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Trójkąty" - -#: fdmprinter.def.json -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Tri-Sześciokąt" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Sześcienny" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Podział sześcienny" - -#: fdmprinter.def.json -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Czworościan" - -#: fdmprinter.def.json -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Ćwierć Sześcienny" - -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Koncentryczny" - -#: fdmprinter.def.json -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zygzak" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Krzyż" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Krzyż 3D" - -#: fdmprinter.def.json -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "" - -#: fdmprinter.def.json -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Połącz Linie Wypełnienia" - -#: fdmprinter.def.json -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 "Łączy końce gdzie wzór wypełnienia spotyka się z wewn. ścianą używając linii, która podąża za kształtem wewn. ściany. Włączenie tego ustawienia może spowodować lepszą przyczepność wypełnienia do ścian i zredukować efekty wypełnienia w jakości powierzchni. Wyłączenie tego ustawienia redukuje ilość potrzebnego materiału." - -#: fdmprinter.def.json -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Połącz Wieloboki Wypełnienia" - -#: fdmprinter.def.json -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 "Łączy ścieżki wypełnienia, gdy są one prowadzone obok siebie. Dla wzorów wypełnienia zawierających kilka zamkniętych wieloboków, załączenie tego ustawienia znacznie skróci czas ruchów jałowych." - -#: fdmprinter.def.json -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Kierunek Linii Wypełnienia" +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 "Lista kierunków linii całkowitych do użycia. Elementy z listy są używane sekwencyjnie w miarę postępu warstw, a po osiągnięciu końca listy zaczyna się od początku od nowa. Elementy listy są oddzielone przecinkami, a cała lista jest zawarta w nawiasach kwadratowych. Domyślnie lista jest pusta, co oznacza użycie domyślnych kątów (na przemian między 45 a 135 stopni, jeśli interfejsy są dość grube lub 90 stopni)." #: fdmprinter.def.json msgctxt "infill_angles description" @@ -1895,49 +62,44 @@ msgid "A list of integer line directions to use. Elements from the list are used msgstr "Lista całkowitych kierunków linii do użycia. Elementy z listy są używane kolejno w miarę postępu warstw, a kiedy kończy się lista, zaczyna się od początku. Elementy listy są oddzielone przecinkami, a cała lista znajduje się w nawiasach kwadratowych. Domyślnie lista jest pusta, co oznacza tradycyjne domyślne kąty (45 i 135 stopni dla linii i wzorów zygzakowych i 45 stopni dla wszystkich pozostałych wzorów)." #: fdmprinter.def.json -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Przesunięcie Wypełn. w Osi X" +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "Lista obszarów, w które dysze nie mogą wjeżdżać." #: fdmprinter.def.json -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "Wzór wypełnienia jest przesunięty o tę odległość wzdłuż osi X." +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Lista obszarów, we których głowica nie może się poruszać." #: fdmprinter.def.json -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Przesunięcie Wypełn. w Osi Y" +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "" #: fdmprinter.def.json -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "Wzór wypełnienia jest przesunięty o tę odległość wzdłuż osi Y." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Bezwzgl. Końcowa Pozycja Ekstrudera" #: fdmprinter.def.json -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Losowy punkt startu wypełnienia" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Maks. zmiana zmiennych warstw" #: fdmprinter.def.json -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 "Losuje, która linia wypełnienia jest drukowana jako pierwsza. Dzięki temu nie ma zjawiska, kiedy jeden segment jest mocniejszy. Kosztem jest dodatkowy ruchu jałowy." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Rozmiar topografii warstw adaptacyjnych" #: fdmprinter.def.json -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Mnożnik Linii Wypełnienia" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Krok zmian zmiennych warstw" #: fdmprinter.def.json -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 "Zmienia pojedynczą linię wypełnienia na zadaną ilość linii. Dodatkowe linie wypełnienia nie będą nad sobą przechodzić, ale będą się unikać. Sprawi to, że wypełnienie będzie sztywniejsze, ale czas druku oraz zużycie materiału zwiększą się." - -#: fdmprinter.def.json -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Ilość Dodatkowych Ścianek Wypełnienia" +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." #: fdmprinter.def.json msgctxt "infill_wall_line_count description" @@ -1949,284 +111,9 @@ msgstr "" "Ta funkcja może być używana razem z funkcją \"Połącz Wieloboki Wypełnienia\", aby połączyć całe wypełnienie w pojedynczą ścieżkę, co przy poprawnej konfiguracji wyelinimuje potrzebę wykonywania ruchów jałowych lub retrakcji." #: fdmprinter.def.json -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Sześcienny Podział Powłoki" - -#: fdmprinter.def.json -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 "Dodatek do promienia od środka każdej kostki, aby sprawdzić granicę modelu i podjąć decyzję, czy taka kostka powinna być podzielona. Większe wartości prowadzą do grubszej powłoki małych kostek w pobliżu granicy modelu." - -#: fdmprinter.def.json -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Procent Zachodzenia Wypełnienia" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Zachodzenie Wypełnienia" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Długość Czyszczenia Wypełnienia" - -#: fdmprinter.def.json -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 "Odległość ruchu jałowego pomiędzy każdą linią wypełnienia, aby lepiej przymocować linię wypełnienia do ścian. Ta opcja jest podobna do nakładania się wypełnienia, ale bez ekstruzji i tylko na jednym końcu linii wypełnienia." - -#: fdmprinter.def.json -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Grubość Warstwy Wypełnienia" - -#: fdmprinter.def.json -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 "Grubość na warstwe materiału wypełniającego. Ta wartość powinna zawsze być wielokrotnością wysokości warstwy i być zaokrąglana." - -#: fdmprinter.def.json -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Stopniowe Kroki Wypełnienia" - -#: fdmprinter.def.json -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 "Liczba redukcji wypełnienia o połowę podczas drukowania poniżej górnych powierzchni. Obszary, które są bliżej górnej powierzchni, mają większą gęstość, aż do Gęstości Wypełnienia." - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Wysokość Kroku Stopniowego Wypełnienia" - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "Wysokość wypełnienia o danej gęstości przed przejściem na połowę gęstości." - -#: fdmprinter.def.json -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Wypełn. przed Ścianami" - -#: fdmprinter.def.json -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 "Wydrukuj wypełnienie przed wydrukowaniem ścian. Drukowanie ścian jako pierwsze może prowadzić do bardziej dokładnych ścian, ale pogorszy zwisy. Drukowanie wypełnienia najpierw prowadzi do mocniejszych ścian, ale wzór wypełnienia może czasem być widoczny przez powierzchnię." - -#: fdmprinter.def.json -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Min. Obszar Wypełnienia" - -#: fdmprinter.def.json -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Nie generuj obszarów wypełnienia mniejszych niż to (zamiast tego używaj skóry)." - -#: fdmprinter.def.json -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Wypełnienie Podporowe" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Kąt Zwisu dla Wypełnienia" - -#: fdmprinter.def.json -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 "Minimalny kąt zwisu wewnętrznego, dla którego zostanie dodane wypełnienie. Przy wartości 0° obiekty zostaną wypełnione całkowicie, natomiast przy 90° wypełnienie nie zostanie wygenerowane." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "" - -#: fdmprinter.def.json -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material label" -msgid "Material" -msgstr "Materiał" - -#: fdmprinter.def.json -msgctxt "material description" -msgid "Material" -msgstr "Materiał" - -#: fdmprinter.def.json -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Domyślna Temperatura Druku" - -#: fdmprinter.def.json -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 "Domyślna temperatura używana do drukowania. Powinno to być \"podstawowa\" temperatura materiału. Wszystkie inne temperatury powinny wykorzystywać przesunięcie względem tej wartości" - -#: fdmprinter.def.json -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatura obszaru roboczego" - -#: fdmprinter.def.json -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 "Temperatura otoczenia druku. Jeśli ustawione jest 0, temperatura komory nie będzie ustawiana." - -#: fdmprinter.def.json -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Temperatura Druku" - -#: fdmprinter.def.json -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Temperatura stosowana do drukowania." - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Temp. Druku Początk. Warstwy" - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Temperatura stosowana do drukowania pierwszej warstwy. Ustaw wartość 0, aby wyłączyć szczególną obsługę początkowej warstwy." - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Początkowa Temp. Druku" - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "Minimalna temperatura podczas podgrzewania do temperatury drukowania, przy której można rozpocząć drukowanie." - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Końcowa Temp. Druku" - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "Temperatura, od której zaczyna się chłodzenie tuż przed końcem drukowania." - -#: fdmprinter.def.json -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Współczynnik chłodz. podczas Ekstruzji" - -#: fdmprinter.def.json -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 "Dodatkowa szybkość, w wyniku której dysze chłodzą się podczas ekstruzji. Ta sama wartość jest używana do oznaczania szybkości utraty ciepła podczas nagrzewania w czasie ekstruzji." - -#: fdmprinter.def.json -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Domyślna Temp. Platformy Roboczej" - -#: fdmprinter.def.json -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 "Domyślna temperatura używana dla podgrzewanej platformy roboczej. To powinna być \"bazowa\" temperatura platformy roboczej. Wszystkie inne temperatury drukowania powinny używać przesunięcia względem tej wartości" - -#: fdmprinter.def.json -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Temperatura Stołu" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Temp. Stołu na Pierw. Warstwie" - -#: fdmprinter.def.json -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 "" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Przyczepność" #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" @@ -2234,1924 +121,19 @@ msgid "Adhesion Tendency" msgstr "Tendencja Przyczepności" #: fdmprinter.def.json -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Tendencja przyczepności powierzchni." +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 "Dostosuj zachodzenie pomiędzy ścianami, a (punktami końcowymi) linią obrysu, jako procent szerokości linii obrysu i najbardziej wewnętrznej ściany. Niewielkie zachodzenie na siebie pozwala ścianom połączyć się mocno z obrysem. Zauważ, że przy równej szerokości obrysu i szerokości ściany, każdy procent powyżej 50% może spowodować przekroczenie ściany przez obrys, ponieważ pozycja dyszy ekstrudera obrysu może sięgać poza środek ściany." #: fdmprinter.def.json -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Energia Powierzchni" +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 "Dostosuj zachodzenie pomiędzy ścianami, a (punktami końcowymi) linią obrysu. Niewielkie zachodzenie na siebie pozwala ścianom połączyć się mocno z obrysem. Zauważ, że przy równej szerokości obrysu i szerokości ściany, każdy procent powyżej 50% może spowodować przekroczenie ściany przez obrys, ponieważ pozycja dyszy ekstrudera obrysu może sięgać poza środek ściany." #: fdmprinter.def.json -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Energia powierzchni." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Materiał krystaliczny" - -#: fdmprinter.def.json -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 "Czy ten rodzaj materiału odłamuje się łatwo po podgrzaniu (krystaliczny), czy też jest to tworzywo, które wytwarza długie splecione łańcuchy polimerowe (niekrystaliczne)?" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Odległość retrakcji anty-wyciekom" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "Jak daleko materiał musi zostać wycofany, aby przestał wyciekać." - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Szybkość retrakcji anty-wyciekom" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Jak szybko materiał musi zostać wycofany podczas zmiany filamentu, aby przestał wyciekać." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Odległość pęknięcia przy retrakcji" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Jak bardzo filament może być rozciągnięty, zanim pęknie, podczas ogrzewania." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Szybkość pękania przy retrakcji" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "Jak szybko filament musi zostać wycofany, aby pękł podczas cofania." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Odległość łamania retrakcji" - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "Jak daleko wycofać filament, aby go złamać na czysto." - -#: fdmprinter.def.json -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Szybkość łamania retrakcji" - -#: fdmprinter.def.json -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "Jak szybko wycofać filament, aby go złamać na czysto." - -#: fdmprinter.def.json -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Temperatura pękania" - -#: fdmprinter.def.json -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "Temperatura, w której filament można złamać na czysto." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_flow label" -msgid "Flow" -msgstr "Przepływ" - -#: fdmprinter.def.json -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Kompensacja przepływu: ilość ekstrudowanego materiału jest mnożona przez tę wartość." - -#: fdmprinter.def.json -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Przepływ ścianek" - -#: fdmprinter.def.json -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Ustawienie przepływu na liniach ścianek." - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Przepływu ścianek zewnętrznych" - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Ustawienie przepływu na liniach ścianek zewnętrznych." - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Przepływu ścianek wewnętrznych" - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Ustawienie przepływu na liniach ścianek wewnętrznych." - -#: fdmprinter.def.json -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Przepływ warstwy górnej i dolnej" - -#: fdmprinter.def.json -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Ustawienie przepływu na warstwie górnej i dolnej." - -#: fdmprinter.def.json -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Przepływ ostatniej warstwy górnej" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Przepływ wypełnienia" - -#: fdmprinter.def.json -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Ustawienie przepływu wypełnienia." - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Przepływ warstwy adhezyjnej" - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Ustawienie przepływu warstwy adhezyjnej." - -#: fdmprinter.def.json -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Przepływ podpór" - -#: fdmprinter.def.json -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Ustawienie przepływu podpór." - -#: fdmprinter.def.json -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Przepływ podłoża podpór" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Przepływ dachów podpór" - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Ustawienie przepływu podłoża ostatniej warstwy podpór." - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Przepływ podstawy podpór" - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Ustawienie przepływu pierwszej warstwy podpór." - -#: fdmprinter.def.json -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Przepływ Wieży Czyszczącej" - -#: fdmprinter.def.json -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Przepływ linii wieży podporowej." - -#: fdmprinter.def.json -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Przepływ Pierwszej Warstwy" - -#: fdmprinter.def.json -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 "Kompensacja przepływu dla pierwszej warstwy: ilość materiału ekstrudowanego na pierwszej warstwie jest mnożona przez tę wartość." - -#: fdmprinter.def.json -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Temperatura Czuwania" - -#: fdmprinter.def.json -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "Temperatura dyszy, gdy inne dysze są obecnie używane do drukowania." - -#: fdmprinter.def.json -msgctxt "speed label" -msgid "Speed" -msgstr "Prędkość" - -#: fdmprinter.def.json -msgctxt "speed description" -msgid "Speed" -msgstr "Prędkość" - -#: fdmprinter.def.json -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Prędkość Druku" - -#: fdmprinter.def.json -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Prędkość druku." - -#: fdmprinter.def.json -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Prędkość Wypełnienia" - -#: fdmprinter.def.json -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Prędkość, z jaką drukowane jest wypełnienie." - -#: fdmprinter.def.json -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Prędkość Ścian" - -#: fdmprinter.def.json -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Prędkość drukowania ścian." - -#: fdmprinter.def.json -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Prędkość Zew. Ściany" - -#: fdmprinter.def.json -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 "Szybkość, z jaką drukowane są ściany zewnętrzne. Drukując zewnętrzną ściankę z niższą prędkością, osiągana jest lepsza jakość skóry. Jednakże, posiadanie dużej różnicy pomiędzy prędkością zewnętrznej ściany, a wewnętrznej może skutkować negatywnie." - -#: fdmprinter.def.json -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Prędkość Wew. Ściany" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Prędk. Górnej Pow. Skóry" - -#: fdmprinter.def.json -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "Prędkość, z jaką drukowane są warstwy górnej powierzchni skóry." - -#: fdmprinter.def.json -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Prędkość Góra/Dół" - -#: fdmprinter.def.json -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Szybkość, z jaką drukowane są górne/dolne warstwy." - -#: fdmprinter.def.json -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Prędkość Podpór" - -#: fdmprinter.def.json -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 "Szybkość, z jaką drukowane są podpory. Drukując podpory przy wyższych prędkościach, całkowity czas drukowania może być znacznie zmniejszony. Jakość powierzchni podpory nie ma znaczenia, ponieważ jest ona usuwana po wydrukowaniu." - -#: fdmprinter.def.json -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Prędkość Wypełn. Podpór" - -#: fdmprinter.def.json -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 "Prędkość, z jaką drukowane jest wypełnienie podstawy. Drukowanie wypełnień przy niższych prędkościach poprawia stabilność." - -#: fdmprinter.def.json -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Prędk. Połączenia Podpór" - -#: fdmprinter.def.json -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 "Szybkość, z jaką drukowane są dachy i podłoża podpór. Drukując z mniejszą prędkością, można poprawić jakość nawisów." - -#: fdmprinter.def.json -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Prędkość Dachu Podpory" - -#: fdmprinter.def.json -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 "Prędkość, z jaką drukowane są dachy podpory. Drukowanie przy niższych prędkościach może poprawić jakość nawisów." - -#: fdmprinter.def.json -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Prędk. Podstawy Podpory" - -#: fdmprinter.def.json -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 "Prędkość, z jaką drukowane jest podłoże podpory. Drukowanie z niższą prędkością może poprawić przyczepność podpory na modelu." - -#: fdmprinter.def.json -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Prędkość Wieży Czyszczenia" - -#: fdmprinter.def.json -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 "Prędkość, z jaką drukowana jest wieża czyszcząca. Drukowanie wieży czyszczącej wolniej może sprawić, że będzie ona bardziej stabilna, gdy adhezja między różnymi filamentami jest nieoptymalna." - -#: fdmprinter.def.json -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Prędkość Ruchów Jałowych" - -#: fdmprinter.def.json -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Prędkość, z jaką wykonywane są ruchy jałowe." - -#: fdmprinter.def.json -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Prędk. Początk. Warstwy" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Prędk. Druku Początk. Warstwy" - -#: fdmprinter.def.json -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 "Szybkość drukowania dla pierwszej warstwy. Niższa wartość jest zalecane w celu poprawy przyczepności do stołu." - -#: fdmprinter.def.json -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Prędk. Ruchów Jał. na 1. Warstwie" - -#: fdmprinter.def.json -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 "Prędkość ruchów jałowych na pierwszej warstwie. Zaleca się niższą wartość, aby zapobiec ściągnięciu wcześniej wydrukowanych części ze stołu. Wartość tego ustawienia może być automatycznie obliczana na podstawie stosunku Prędkości Ruchów Jałowych i Prędkości Druku." - -#: fdmprinter.def.json -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Prędkość Obwódka/Obrys" - -#: fdmprinter.def.json -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 "Prędkość, z jaką jest drukowana obwódka i obrys. Zwykle jest to wykonywane przy szybkości początkowej warstwy, ale czasami możesz chcieć drukować obwódkę lub obrys z inną prędkością." - -#: fdmprinter.def.json -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Prędkość skoku Z" - -#: fdmprinter.def.json -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 "Szybkość, z jaką wykonuje się pionowy ruch skoku Z. Jest to zwykle mniej niż prędkość drukowania, ponieważ trudniej się porusza stołem drukarki." - -#: fdmprinter.def.json -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Ilość Wolnych Warstw" - -#: fdmprinter.def.json -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 "Pierwsze warstwy są drukowane wolniej niż w pozostałej części modelu, więc lepiej przylegają do stołu i zwiększa się prawdopodobieństwo sukcesu. Prędkość wzrasta stopniowo w czasie druku tych warstw." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Włącz Sterowanie Przyspieszeniem" - -#: fdmprinter.def.json -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 "Umożliwia regulację przyspieszenia głowicy drukującej. Wzrost przyspieszeń może skrócić czas drukowania kosztem jakości druku." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Przyspieszenie Druku" - -#: fdmprinter.def.json -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Przyspieszenie, z jakim odbywa się drukowanie." - -#: fdmprinter.def.json -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Przyspieszenie Wypełnienia" - -#: fdmprinter.def.json -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "Przyspieszenie, z którym drukowane jest wypełnienie." - -#: fdmprinter.def.json -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Przyspieszenie Ścian" - -#: fdmprinter.def.json -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Przyspieszenie, z jakim drukowane są ściany." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Przyspieszenie Ściany Zew" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "Przyspieszenia, z jakim drukowane są ściany zewn." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Przyspieszenie Ściany Wew" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "Przyspieszenie, z jakim drukowane są ściany wewn." - -#: fdmprinter.def.json -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Przysp. Górnej Pow. Skóry" - -#: fdmprinter.def.json -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "Przyspieszenie, z jakim drukowane są warstwy górnej powierzchni skóry." - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Przysp. Górnych/Dolnych Warstw" - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Przyspieszenie, z jakim drukowane są górne/dolne warstwy." - -#: fdmprinter.def.json -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Przyspieszenie Podpór" - -#: fdmprinter.def.json -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Przyspieszenie, z którym drukowane są podpory." - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Przyspieszenie Wypełnienia Podpory" - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Przyspieszenie, z których drukowane jest wypełnienie podpory." - -#: fdmprinter.def.json -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Przyspieszenie Pow. Styku Podpory" - -#: fdmprinter.def.json -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 "Przyspieszenie, z jakim drukowane są dachy i podłoża podpory. Drukowanie przy niższym przyspieszeniu może poprawić jakość zwisu." - -#: fdmprinter.def.json -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Przyspieszenie Dachu Podpory" - -#: fdmprinter.def.json -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 "Przyspieszenie, z jakim drukowane są dachy podpór. Drukowanie przy niższym przyspieszeniu może poprawić jakość zwisu." - -#: fdmprinter.def.json -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Przyspieszenie Podłoża Podpory" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Przyspieszenie Wieży Czyszczącej" - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "Przyspieszenie, z którym drukowana jest wieża czyszcząca." - -#: fdmprinter.def.json -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Przyspieszenie Ruchów Jałowych" - -#: fdmprinter.def.json -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Przyspieszenie, z jakim wykonywane są ruchy jałowe." - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Pierwsza warstwa przyspieszenie" - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Przyspieszenie dla początkowej warstwy." - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Przysp. Druku 1. Warstwy" - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "Przyspieszenie podczas drukowania pierwszej warstwy." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Przyspieszenie Ruchu Jał. 1. Warstwa" - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Przyspieszenie ruchów jałowych na pierwszej warstwie." - -#: fdmprinter.def.json -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Przyspieszenie Obwódki/Obrysu" - -#: fdmprinter.def.json -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 "Przyspieszenie z jakim drukowane są obwódka i obrys. Normalnie są one drukowane z przyspieszeniem pierwszej warstwy, ale czasami będziesz chciał wydrukować obwódkę i obrys z innym przyspieszeniem." - -#: fdmprinter.def.json -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Włącz Kontrole Zrywu" - -#: fdmprinter.def.json -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 "Umożliwia dostosowanie zwrywu głowicy w przypadku zmiany prędkości w osi X lub Y. Zwiększenie zrywu może skrócić czas drukowania kosztem jakości druku." - -#: fdmprinter.def.json -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Zryw Druku" - -#: fdmprinter.def.json -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "Maksymalna zmiana prędkości chwilowej głowicy drukującej." - -#: fdmprinter.def.json -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Zryw Wypełnienie" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Zryw Ściany" - -#: fdmprinter.def.json -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są ściany." - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Zryw Zew. Ścian" - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są zewnętrzne ściany." - -#: fdmprinter.def.json -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Zryw Wew. Ścian" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Zryw Górnej Pow. Skóry" - -#: fdmprinter.def.json -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "Maksymalna nagła zmiana prędkości, z jaką drukowane są warstwy górnej powierzchni skóry." - -#: fdmprinter.def.json -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Zryw Góra/Dół" - -#: fdmprinter.def.json -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są górne/dolne warstwy." - -#: fdmprinter.def.json -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Zryw Podpory" - -#: fdmprinter.def.json -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są podpory." - -#: fdmprinter.def.json -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Zryw Wypełnienia Podpory" - -#: fdmprinter.def.json -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane jest wypełnienie podpory." - -#: fdmprinter.def.json -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Zryw Połączenia Podpory" - -#: fdmprinter.def.json -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są podłoża i dachy podpory." - -#: fdmprinter.def.json -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Zryw Dachu Podpory" - -#: fdmprinter.def.json -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są dachy podpory." - -#: fdmprinter.def.json -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Zryw Podł. Podpór" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Zryw Wieży Czyszczącej" - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "Maksymalna zmiana chwilowej prędkości z jaką drukowana jest wieża czyszcząca." - -#: fdmprinter.def.json -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Zryw Ruch Jałowy" - -#: fdmprinter.def.json -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "Maksymalna zmiana prędkości chwilowej z jaką wykonywane są ruchy jałowe." - -#: fdmprinter.def.json -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Zryw Pierwsz. Warstwa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Zryw Początk. Warstwy" - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "Maksymalna zmiana prędkości chwilowej podczas drukowania pierwszej warstwy." - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Zryw Początk. Wartswa" - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Przyspieszenie dla ruchów jałowych na początkowej warstwie." - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Zryw Obwódki/Obrysu" - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są obwódka i obrys." - -#: fdmprinter.def.json -msgctxt "travel label" -msgid "Travel" -msgstr "Ruch Jałowy" - -#: fdmprinter.def.json -msgctxt "travel description" -msgid "travel" -msgstr "ruch jałowy" - -#: fdmprinter.def.json -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Włącz Retrakcję" - -#: fdmprinter.def.json -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "" - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Retrakcja podczas Zmiany Warstwy" - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "Cofnij filament, gdy dysza przesuwa się do następnej warstwy." - -#: fdmprinter.def.json -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Długość Retrakcji" - -#: fdmprinter.def.json -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "Długość materiału wycofanego podczas retrakcji." - -#: fdmprinter.def.json -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Prędkość Retrakcji" - -#: fdmprinter.def.json -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "Prędkość, z jaką jest wykonywana i dopełniana retrakcja." - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Prędk. Wycofania Retrakcji" - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "Prędkość, z jaką wykonywana jest retrakcja." - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Prędk. Dopełn. Retrakcji" - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "Prędkość, z jaką retrakcja jest dopełniana." - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Dod. Czyszcz. Wart. Retrakcji" - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Trochę materiału może wypływać podczas ruchu jałowego co może zostać skompensowane tutaj." - -#: fdmprinter.def.json -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Minimalny Przejazd dla Retrakcji" - -#: fdmprinter.def.json -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 "Minimalna odległość ruchu jałowego potrzebna do wykonania retrkacji. Pomaga to uzyskać mniej retrakcji w małym obszarze." - -#: fdmprinter.def.json -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Maksymalna Liczba Retrakcji" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Okno Min. Dług. Ekstruzji" - -#: fdmprinter.def.json -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 "Okno, w którym wymuszona jest maksymalna liczba retrakcji. Wartość ta powinna być w przybliżeniu taka sama jak odległość retrakcji, dzięki czemu skuteczna liczba retrakcji używająca tej samej cząstki materiału jest limitowana." - -#: fdmprinter.def.json -msgctxt "limit_support_retractions label" -msgid "Limit Support Retractions" -msgstr "Ogranicz Retrakcje Pomiędzy Podporami" - -#: fdmprinter.def.json -msgctxt "limit_support_retractions description" -msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -msgstr "Pomiń retrakcję, przechodząc od podpory do podpory w linii prostej. Włączenie tego ustawienia oszczędza czas drukowania, ale może prowadzić do nadmiernego ciągnięcia filamentu w strukturze nośnej." - -#: fdmprinter.def.json -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Tryb Kombinowania" - -#: fdmprinter.def.json -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 utrzymuje dyszę w obszarach wydruku podczas poruszania. Powoduje to nieco dłuższe ruchy, ale zmniejsza potrzebę retrakcji. Jeśli Combing jest wyłączone, następuje retrakcja, a dysza przesuwa się w linii prostej do następnego punktu. Możliwe jest wyłączenie opcji górnych / dolnych obszarach obrysu lub utrzymanie dyszy w obrębie wypełnienia." - -#: fdmprinter.def.json -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Wyłącz" - -#: fdmprinter.def.json -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Wszędzie" - -#: fdmprinter.def.json -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "" - -#: fdmprinter.def.json -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Nie w Powłoce" - -#: fdmprinter.def.json -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Wewnątrz Wypełnienia" - -#: fdmprinter.def.json -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Max. Dystans Kombinowania Bez Retrakcji" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Cofnij Przed Zew. Ścianą" - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Zawsze cofaj podczas przemieszczania się do początku zewnętrznej ściany." - -#: fdmprinter.def.json -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Unikaj Wydruk. Części Podczas Ruchu Jałowego" - -#: fdmprinter.def.json -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 "Dysza unika już wydrukowanych części podczas ruchu jałowego. Ta opcja jest dostępna tylko w przypadku włączonego trybu kombinowania." - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Unikaj Podpór Podczas Ruchu Jałowego" - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "Dysza będzie omijała już wydrukowane podpory podczas ruchu jałowego. Ta opcja jest dostępna jedynie, gdy kombinowanie jest włączone." - -#: fdmprinter.def.json -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Odległość Omijania Ruchu Jałowego" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "Początek Warstwy X" - -#: fdmprinter.def.json -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "Współrzędna X pozycji blisko miejsca gdzie ma rozpoczynać się drukowanie każdej warstwy." - -#: fdmprinter.def.json -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Początek Warstwy Y" - -#: fdmprinter.def.json -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "Współrzędna Y pozycji blisko miejsca gdzie ma rozpoczynać się drukowanie każdej warstwy." - -#: fdmprinter.def.json -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Skok Z Podczas Retrakcji" - -#: fdmprinter.def.json -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 "Zawsze, gdy następuje retrakcja, stół roboczy jest opuszczany w celu utworzenia luzu między dyszą a drukiem. Zapobiega to uderzeniu dyszy podczas ruchu jałowego, co zmniejsza szanse uderzenia wydruku na stole." - -#: fdmprinter.def.json -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Skok Z Tylko nad Druk. Częściami" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Wysokość Skoku Z" - -#: fdmprinter.def.json -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Różnica w wysokości podczas przeprowadzania Skoku Z." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Skok Z po Zmianie Ekstrudera" - -#: fdmprinter.def.json -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 "Po przełączeniu maszyny z jednego ekstrudera na drugi, stół jest opuszczany, aby utworzyć luz pomiędzy dyszą a drukiem. Zapobiega to pozostawianiu wypływającego materiału na powierzchni wydruku." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Skok Z po zmianie wysokości ekstrudera" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cooling label" -msgid "Cooling" -msgstr "Chłodzenie" - -#: fdmprinter.def.json -msgctxt "cooling description" -msgid "Cooling" -msgstr "Chłodzenie" - -#: fdmprinter.def.json -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Włącz Chłodzenie Wydruku" - -#: fdmprinter.def.json -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 "Włącza wentylatory chłodzące wydruk. Wentylatory poprawiają jakość wydruku na warstwach o krótkim czasie druku warstwy i mostów/zwisów." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Prędkość Wentylatora" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "Prędkość z jaką mają obracać się wentylatory." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Normalna Pręd. Wentylatora" - -#: fdmprinter.def.json -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 "Prędkość obrotowa wentylatorów przed osiągnięciem progu. Kiedy warstwa drukowana jest szybciej niż próg, prędkość wentylatora stopniowo przybliża się do maksymalnej prędkości wentylatora." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Maksymalna Pręd. Wentylatora" - -#: fdmprinter.def.json -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 "Prędkość, z jaką obracają się wentylatory w minimalnym czasie warstwy. Prędkość wentylatora stopniowo wzrasta między regularną prędkością wentylatora a maksymalną prędkością wentylatora, kiedy próg zostanie przekroczony." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Regularny/Maks. Próg Pręd. Wentylatora" - -#: fdmprinter.def.json -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 "Czas warstwy, który ustala próg pomiędzy regularną prędkością wentylatora a maksymalną prędkością wentylatora. Warstwy, które są drukowane wolniej niż ten czas, używają regularnej prędkości wentylatora. W przypadku szybszych warstw prędkość wentylatora stopniowo wzrasta w kierunku maksymalnej prędkości wentylatora." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Początkowa Prędk. Wentylatora" - -#: fdmprinter.def.json -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 "Prędkość, z jaką wentylatory obracają się na początku druku. W kolejnych warstwach prędkość wentylatora stopniowo wzrasta do warstwy odpowiadającej Regularnej Pręd. Went. na Wysokości." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Regularna Pręd. Went. na Wysokości" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Regularna Pręd. Went. na Wartswie" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Minimalny Czas Warstwy" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Minimalna Prędkość" - -#: fdmprinter.def.json -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 "Minimalna szybkość drukowania, pomimo spowolnienia z powodu minimalnego czasu warstwy. Gdy drukarka spowolnia zbyt dużo, ciśnienie w dyszy jest zbyt niskie co pogarsza jakość wydruków." - -#: fdmprinter.def.json -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Unieś Głowicę" - -#: fdmprinter.def.json -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 "Jeśli zostanie osiągnięta minimalna prędkość ze względu na minimalny czas warstwy, podnieś głowicę poza wydruk i poczekaj aż zostanie osiągnięty minimalny czas warstwy." - -#: fdmprinter.def.json -msgctxt "support label" -msgid "Support" -msgstr "Podpory" - -#: fdmprinter.def.json -msgctxt "support description" -msgid "Support" -msgstr "Podpory" - -#: fdmprinter.def.json -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Generuj Podpory" - -#: fdmprinter.def.json -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 "Generuj struktury wspierające części modelu, które zwisają. Bez tych struktur takie części mogłyby spaść podczas drukowania." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Ekstruder Podpory" - -#: fdmprinter.def.json -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "Ekstruder używany do drukowania podpory. Używane do multi-ekstruzji." - -#: fdmprinter.def.json -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Ekstruder Wypełnienia Podpory" - -#: fdmprinter.def.json -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 "Ekstruder wykorzystywany do drukowania wypełnienia podpory. Używane do multi-ekstruzji." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Ekstruder Pierwszej Warstwy Podpory" - -#: fdmprinter.def.json -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 "Ekstruder wykorzystywany do drukowania pierwszej warstwy wypełnienia podpory. Używane do multi-ekstruzji." - -#: fdmprinter.def.json -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Ekstruder Połączenia Podpory" - -#: fdmprinter.def.json -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 "Ekstruder wykorzystywany do drukowania dachów i podłoży podpory. Używane do multi-ekstruzji." - -#: fdmprinter.def.json -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Ekstruder Dachu Podpory" - -#: fdmprinter.def.json -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 "Ekstruder wykorzystywany do drukowania dachów podpory. Używany do multi-ekstruzji." - -#: fdmprinter.def.json -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Ekstruder Podłoża Podpory" - -#: fdmprinter.def.json -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 "Ekstruder używany do druku podłoża podpory. Służy do multi-ekstruzji." - -#: fdmprinter.def.json -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_tree_angle label" -msgid "Tree Support Branch Angle" -msgstr "Kąt Gałęzi Drzewnej Podpory" - -#: fdmprinter.def.json -msgctxt "support_tree_angle description" -msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "Kąt gałęzi. Użyj mniejszego kąta, aby były bardziej pionowe i stabilne. Użyj większego kąta, aby mieć większy zasięg." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance label" -msgid "Tree Support Branch Distance" -msgstr "Odległość Gałęzi Drzewiastej Podpory" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance description" -msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -msgstr "W jakich odległościach powinny znajdować się gałęzie kiedy dotykają modelu. Mały dystans spowoduje więcej punktów podparcia, co da lepsze nawisy, ale utrudni usuwanie podpór." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter label" -msgid "Tree Support Branch Diameter" -msgstr "Średnica Gałęzi Drzewiastej Podpory" - -#: fdmprinter.def.json -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 "Średnica najcieńszej gałęzi drzewiastej podpory. Grubsze gałęzie są bardziej sztywne. Gałęzie bliżej podłoża będą grubsze od tego." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter_angle label" -msgid "Tree Support Branch Diameter Angle" -msgstr "Kąt Średnicy Gałęzi Drzewiastej Podpory" - -#: fdmprinter.def.json -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 "Kąt średnicy gałęzi, które stają się grubsze bliżej podłoża. Kąt 0 spowoduje równą grubość na całej długości gałęzi. Delikatny kąt może spowodować lepszą stabilność podpór." - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution label" -msgid "Tree Support Collision Resolution" -msgstr "Rozdzielczość Kolizji Drzewiastej Podpory" - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution description" -msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -msgstr "Rozdzielczość przeliczania kolizji, aby unikać zderzeń z modelem. Ustawienie niższej wartości spowoduje bardziej dokładne drzewa, które rzadziej zawodzą, ale zwiększa to drastycznie czas cięcia." - -#: fdmprinter.def.json -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Rozmieszczenie Podpór" - -#: fdmprinter.def.json -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 "Reguluje rozmieszczenie podpór. Umiejscowienie można dostosować tak, aby dotykały tylko stołu roboczego lub były generowane wszędzie. Po ustawieniu na wszędzie struktury wydruku będą również drukowane na modelu." - -#: fdmprinter.def.json -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Dotykające Stołu" - -#: fdmprinter.def.json -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Wszędzie" - -#: fdmprinter.def.json -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Kąt Zwisu dla Podpory" - -#: fdmprinter.def.json -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 "Minimalny kąt zwisu, dla którego dodaje się podporę. Przy wartości 0 ° wszystkie zwisy są podparte, 90 ° nie zapewnia żadnego podparcia." - -#: fdmprinter.def.json -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Wzór Podpory" - -#: fdmprinter.def.json -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 "Wzór struktury podpory wydruku. Różne opcje zapewniają trwałe lub łatwe do usunięcia podpory." - -#: fdmprinter.def.json -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Linie" - -#: fdmprinter.def.json -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Kratka" - -#: fdmprinter.def.json -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Trójkąty" - -#: fdmprinter.def.json -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Koncentryczny" - -#: fdmprinter.def.json -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zygzak" - -#: fdmprinter.def.json -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Krzyż" - -#: fdmprinter.def.json -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" - -#: fdmprinter.def.json -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Ilość Ścianek Podpory" - -#: fdmprinter.def.json -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 "Liczba ścianek otaczających wypełnienie podpory. Dodanie ścianki może sprawić, że podpory będą drukowane solidniej i będą mogły lepiej podpierać nawisy, ale wydłuży to czas druku i zwiększy ilość użytego materiału." - -#: fdmprinter.def.json -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Łącz Linie Podpory" - -#: fdmprinter.def.json -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 "Łącz końce linii podpory razem. Włączenie tej opcji może tworzyć bardziej sztywne podpory i redukować podekstruzje, ale będzie to wymagało więcej materiału." - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Połącz Zygzaki Podpory" - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Połącz Zygzaki. To zwiększa wytrzymałość zygzakowatej podpory." - -#: fdmprinter.def.json -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Gęstość Podpory" - -#: fdmprinter.def.json -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 "Reguluje gęstość struktury podpory. Wyższa wartość powoduje lepsze zwisy, ale podpory są trudniejsze do usunięcia." - -#: fdmprinter.def.json -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Odstępy między Liniami Podpory" - -#: fdmprinter.def.json -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Odległość między drukowanymi liniami struktury podpory. To ustawienie jest obliczane przez gęstość podpory." - -#: fdmprinter.def.json -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Odstęp Między Liniami Podpory w Pocz. Warstwie" - -#: fdmprinter.def.json -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 "Odległość między drukowanymi liniami struktury podpory w początkowej warstwie. To ustawienie jest obliczane na podstawie gęstości podpory." - -#: fdmprinter.def.json -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Kierunek Linii Wypełnienia Podpory" - -#: fdmprinter.def.json -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 kierunków linii całkowitych do użycia. Elementy z listy są używane sekwencyjnie w miarę postępu warstw, a po osiągnięciu końca listy zaczyna się od początku. Elementy listy są oddzielone przecinkami, a cała lista jest zawarta w nawiasach kwadratowych. Domyślnie lista jest pusta, co oznacza użycie domyślnego kąta 0 stopni." - -#: fdmprinter.def.json -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Włącz Obrys Podpór" - -#: fdmprinter.def.json -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 "Generuj obrys w obszarach wypełnienia podpory pierwszej warstwy. Obrys jest drukowany pod podporą, a nie wokół. Włączenie tej opcji zwiększa przyczepność podpór do stołu." - -#: fdmprinter.def.json -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Szerokość Obrysu Podpór" - -#: fdmprinter.def.json -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 "Szerokość obrysu, który ma być wydrukowany pod podporami. Szerszy obrys to większa przyczepność do stołu, kosztem zużytego materiału." - -#: fdmprinter.def.json -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Ilość Linii Obrysu Podpór" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Odległość Podpory Z" - -#: fdmprinter.def.json -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. This value is rounded up to a multiple of the layer height." -msgstr "Odległość od góry/dołu podpory do wydruku. Ta luka zapewnia luz, aby usunąć wsporniki po wydrukowaniu modelu. Ta wartość jest zaokrąglana do wielokrotności wysokości warstwy." - -#: fdmprinter.def.json -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Odległość od Góry Podpory" - -#: fdmprinter.def.json -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Odległość od wierzchołka podpory do wydruku." - -#: fdmprinter.def.json -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Odległ. na Dole Podpory" - -#: fdmprinter.def.json -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Odległość od wydruku do dolnej części podpory." - -#: fdmprinter.def.json -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Odległość X/Y Podpory" - -#: fdmprinter.def.json -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Odległość podpory od wydruku w kierunkach X/Y." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Priorytet Odległości Podpory" - -#: fdmprinter.def.json -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 "Czy Odległość Podpory X/Y nadpisuje Odległość Podpory Z i vice versa. Kiedy X/Y nadpisuje Z, odległość X/Y może odepchnąć podporę od modelu, wpływając na rzeczywistą odległość Z do zwisu. Możemy to wyłączyć, nie stosując odległości X/Y wokół zwisów." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y nadpisuje Z" - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z nadpisuje X/Y" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Min. Odległość X/Y Podpory" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Wysokość Stopnia Podpory" - -#: fdmprinter.def.json -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 "Wysokość stopni w schodkowym dole podpory spoczywającej na modelu. Niska wartość utrudnia usunięcie podpory, ale zbyt duża wartość może prowadzić do niestabilnej podpory. Ustaw na zero, aby wyłączyć zachowanie schodkowe." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Maks. Szerokość Stopnia Podpory" - -#: fdmprinter.def.json -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 "Maksymalna szerokość stopni dołu schodkowego podpory opartej na modelu. Niska wartość sprawia, że podpora jest trudniejsza do usunięcia, ale zbyt wysokie wartości mogą prowadzić do niestabilnych podpór." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Odległość Łączenia Podpór" - -#: fdmprinter.def.json -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 "Maksymalna odległość między konstrukcjami wspornymi w kierunkach X/Y. Kiedy oddzielne struktury są bliżej siebie niż ta wartość, struktury łączą się w jedną." - -#: fdmprinter.def.json -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Poszerzenie Podpór Poziome" - -#: fdmprinter.def.json -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 "Wartość nakładania się stosowana do wszystkich podpór na każdej warstwie. Dodatnie wartości mogą wygładzić podpory co w rezultacie daje silne podpory." - -#: fdmprinter.def.json -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Wys. Warstwy Wypełn. Podpory" - -#: fdmprinter.def.json -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 "Wysokość warstwy materiału wypełniającego podpory. Ta wartość jest zawsze wielokrotnością wysokości warstwy i jest zaokrąglana." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Stopnie Stopniowego Wypełn. Podpór" - -#: fdmprinter.def.json -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 "Ilość zmniejszeń gęstości wypełnienia podpory o połowę podczas przesuwania się dalej pod górnymi powierzchniami. Obszary, które są bliżej górnych powierzchni mają większą gęstość, aż do Gęstości Wypełn. Podpory." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Wys. Stopnia Stopniowego Wypełn. Podpory" - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "Wysokość wypełnienia podpory o danej gęstości przed przełączeniem na połowę gęstości." - -#: fdmprinter.def.json -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Minimalna Powierzchnia Podpór" - -#: fdmprinter.def.json -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 "Minimalny rozmiar powierzchni dla podpór. Obszary, które mają mniejszą powierzchnię od tej wartości, nie będą generowane." - -#: fdmprinter.def.json -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Włącz Połączenie Podpory" - -#: fdmprinter.def.json -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 "Generuje szczelne połączenie pomiędzy modelem a podporą. Tworzy to skórę na górnej części podpory, na której model jest drukowany i na spodzie, gdzie podpora spoczywa na modelu." - -#: fdmprinter.def.json -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Włącz Dach Podpory" - -#: fdmprinter.def.json -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 "Wytwórz gęstą płytę materiału pomiędzy wierzchołkiem podpory a modelem. Powoduje to powstanie skóry między modelem a podporą." - -#: fdmprinter.def.json -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Włącz Podłoże Podpory" - -#: fdmprinter.def.json -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 "Generuj gęstą warstwę materiału pomiędzy spodem podpory a modelem. Tworzy to skórę pomiędzy modelem a podporą." - -#: fdmprinter.def.json -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Grubość Połączenia Podpory" - -#: fdmprinter.def.json -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 "Grubość połączenia podpory, gdzie styka się ona z modelem na górze i na dole." - -#: fdmprinter.def.json -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Grubość Dachu Podpory" - -#: fdmprinter.def.json -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 "Grubość dachu podpory. Steruje ilością gęstych warstw na górnej części podpory, na której osiada model." - -#: fdmprinter.def.json -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Grubość Podłoża Podpory" - -#: fdmprinter.def.json -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 "Grubość podłoża podpory. Steruje liczbę zwartych warstw, które są drukowane na modelu, na którym spoczywa podpora." - -#: fdmprinter.def.json -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Rozdzielczość Połączenia Podpory" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Gęstość Połączenia Podpory" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Dostosowuje gęstość wypełnienia wydruku." #: fdmprinter.def.json msgctxt "support_interface_density description" @@ -4159,898 +141,19 @@ msgid "Adjusts the density of the roofs and floors of the support structure. A h msgstr "Dostosowuje gęstość dachów i podłoży podpory. Wyższa wartość powoduje lepsze zwisy, ale podpory są trudniejsze do usunięcia." #: fdmprinter.def.json -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Gęstość Dachu Podpory" +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 "Reguluje gęstość struktury podpory. Wyższa wartość powoduje lepsze zwisy, ale podpory są trudniejsze do usunięcia." #: fdmprinter.def.json -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 "Gęstość dachów podpór. Wyższa wartość powoduje lepsze zwisy, ale podpory są trudniejsze do usunięcia." +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Dostosowuje średnicę stosowanego filamentu. Dopasuj tę wartość do średnicy stosowanego filamentu." #: fdmprinter.def.json -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Odległość Linii Dachu Podpory" - -#: fdmprinter.def.json -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 "Odległość pomiędzy drukowanymi liniami dachu podpory. Ta opcja jest obliczona na podstawie Gęstości Podpory, ale może być także ustawiona oddzielnie." - -#: fdmprinter.def.json -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Gęstość Podłoża Podpory" - -#: fdmprinter.def.json -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 "Gęstość podłoża podpory. Wyższa wartość powoduje lepszą adhezję podpory na górze modelu." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Odstęp między Liniami Podłoża Podpory" - -#: fdmprinter.def.json -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 "Odległość między drukowanymi liniami podłoża podpory. To ustawienie jest obliczane za pomocą Gęstość Podłoża Podpory, ale można je wyregulować oddzielnie." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Wzór Połączenia Podpory" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Wzór, z jakim drukowane jest połączenie podpory z modelem." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Linie" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Kratka" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Trójkąty" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Koncentryczny" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zygzak" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Wzór Dachu Podpory" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "Wzór, z jakim drukowane są dachy podpory." - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Linie" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Kratka" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Trójkąty" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Koncentryczny" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zygzak" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Wzór Podłoża Podpory" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "Wzór, według którego drukowane są podłoża podpory." - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Linie" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Kratka" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Trójkąty" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Koncentryczny" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zygzak" - -#: fdmprinter.def.json -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Minimalna Powierzchnia Interfejsu Podpór" - -#: fdmprinter.def.json -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 "Minimalny rozmiar obszaru dla wielokątów interfejsu podpór. Wielokąty, których powierzchnia jest mniejsza niż ta wartość, zostaną wydrukowane jako normalne podpory." - -#: fdmprinter.def.json -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Minimalna Powierzchnia Dachu Podpór" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Minimalna Powierzchnia Podłoża Podpór" - -#: fdmprinter.def.json -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 "Minimalny rozmiar obszaru dla podłoża podpór. Obszary, które mają powierzchnię mniejszą od tej wartości, zostaną wydrukowane jako normalne podpory." - -#: fdmprinter.def.json -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Rozrost Poziomy Interfejsu Podpór" - -#: fdmprinter.def.json -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Wartość przesunięcia zastosowana do obszaru interfejsu podpór." - -#: fdmprinter.def.json -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Rozrost Poziomy Dachu Podpór" - -#: fdmprinter.def.json -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Wartość przesunięcia zastosowana do obszaru dachu podpór." - -#: fdmprinter.def.json -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Rozrost Poziomy Podłoża Podpór" - -#: fdmprinter.def.json -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Wartość przesunięcia zastosowana do obszaru podłoża podpór." - -#: fdmprinter.def.json -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Kierunek linii podłoża podpór" - -#: fdmprinter.def.json -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 kierunków linii całkowitych do użycia. Elementy z listy są używane sekwencyjnie w miarę postępu warstw, a po osiągnięciu końca listy zaczyna się od początku. Elementy listy są oddzielone przecinkami, a cała lista jest zawarta w nawiasach kwadratowych. Domyślnie lista jest pusta, co oznacza użycie domyślnych kątów (na przemian między 45 a 135 stopni, jeśli interfejsy są dość grube lub 90 stopni)." - -#: fdmprinter.def.json -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Kierunek linii dachu podpór" - -#: fdmprinter.def.json -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 "Lista kierunków linii całkowitych do użycia. Elementy z listy są używane sekwencyjnie w miarę postępu warstw, a po osiągnięciu końca listy zaczyna się od początku od nowa. Elementy listy są oddzielone przecinkami, a cała lista jest zawarta w nawiasach kwadratowych. Domyślnie lista jest pusta, co oznacza użycie domyślnych kątów (na przemian między 45 a 135 stopni, jeśli interfejsy są dość grube lub 90 stopni)." - -#: fdmprinter.def.json -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Kierunek linii podstawy podpór" - -#: fdmprinter.def.json -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 kierunków linii całkowitych do użycia. Elementy z listy są używane sekwencyjnie w miarę postępu warstw, a po osiągnięciu końca listy zaczyna się od początku od nowa. Elementy listy są oddzielone przecinkami, a cała lista jest zawarta w nawiasach kwadratowych. Domyślnie lista jest pusta, co oznacza użycie domyślnych kątów (na przemian między 45 a 135 stopni, jeśli interfejsy są dość grube lub 90 stopni)." - -#: fdmprinter.def.json -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Nadpisanie Prędkości Wentylatora" - -#: fdmprinter.def.json -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Gdy włączone, prędkość wentylatora chłodzącego wydruk jest zmieniana dla obszarów leżących bezpośrednio ponad podporami." - -#: fdmprinter.def.json -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Prędkość Wentylatora Podpartej Powłoki" - -#: fdmprinter.def.json -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 "Procentowa prędkść wentylatora, która zostanie użyta podczas drukowania obszarów powłoki leżących bezpośrednio nad podstawami. Użycie wysokiej prędkości może ułatwić usuwanie podpór." - -#: fdmprinter.def.json -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Używaj Wież" - -#: fdmprinter.def.json -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 "Użyj specjalnych wież do wspierania malutkich nawisów. Te wieże mają średnicę większą niż wspierany obszar. W pobliżu nawisu, średnica wież zmniejsza się tworząc dach." - -#: fdmprinter.def.json -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Średnica Wieży" - -#: fdmprinter.def.json -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "Średnica wieży specjalnej." - -#: fdmprinter.def.json -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Maksymalna średnica obsługiwana przez wieżę podporową" - -#: fdmprinter.def.json -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 "Maksymalna średnica w kierunkach X/Y obszaru, który ma być podtrzymywana przez specjalistyczną wieżę podporową." - -#: fdmprinter.def.json -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Kąt Dachu Wieży" - -#: fdmprinter.def.json -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 "Kąt dachu wieży. Wyższa wartość powoduje punktowy dach wieży, a niższa wartość powoduje płaskie dachy wieży." - -#: fdmprinter.def.json -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Upuść Siatkę Podpory" - -#: fdmprinter.def.json -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 "Twórz podpory wszędzie pod siatką podpory, tak aby nie było zwisu w siatce podpory." - -#: fdmprinter.def.json -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "" - -#: fdmprinter.def.json -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "" - -#: fdmprinter.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Popraw Przycz. Stołu" - -#: fdmprinter.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Przyczepność" - -#: fdmprinter.def.json -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Włącz Czyszczenie \"Blob”ów" - -#: fdmprinter.def.json -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 "Czy wyczyścić filament z \"blobem\" przed drukowaniem? Włączenie tej opcji powoduje, że upewni się czy w materiał jest gotowy w ekstruderze przed drukowaniem. Drukowanie Obrysu lub Obwódki może działać także jako czyszczenie, w takim przypadku wyłączenie tej opcji oszczędzi trochę czasu." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Pozycja X Czyszczenia Dyszy" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Współrzędna X, w której dysza jest czyszczona na początku wydruku." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Pozycja Y Czyszczenia Dyszy" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Współrzędna Y, w której dysza jest czyszczona na początku wydruku." - -#: fdmprinter.def.json -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Typ Zwiększenia Przyczepności" - -#: fdmprinter.def.json -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 "Różne opcje, które pomagają na przyczepność do stołu. Obrys dodaje jednowarstwową płaską powierzchnię wokół podstawy modelu, aby zapobiec wypaczeniu. Tratwa dodaje grubą siatkę z dachem poniżej modelu. Obwódka to linia nadrukowana wokół modelu, ale nie połączona z modelem." - -#: fdmprinter.def.json -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Obwódka" - -#: fdmprinter.def.json -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Obrys" - -#: fdmprinter.def.json -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Tratwa" - -#: fdmprinter.def.json -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Brak" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Ekstruder Adhezji Pola Roboczego" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "Ekstruder używany do drukowania obwódki/obrysu/tratwy. Używane przy multi-ekstruzji." - -#: fdmprinter.def.json -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Liczba Linii Obwódki" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Odległ. Obwódki" - -#: fdmprinter.def.json -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 "" -"Pozioma odległość między obwódką a pierwszą warstwą nadruku.\n" -"Jest to o minimalnej odległości. Z tej odległości linie będą nakładane w kierunku zewnętrznym." - -#: fdmprinter.def.json -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Min. Dł. Obwódki/Obrysu" - -#: fdmprinter.def.json -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 "Minimalna długość obwódki lub obrysu. Jeśli ta długość nie zostanie osiągnięta przez całą linie obwódki lub obrysu, należy dodać więcej linii, aż do osiągnięcia minimalnej długości. Uwaga: Jeśli liczba linii jest ustawiona na 0, to opcja jest ignorowana." - -#: fdmprinter.def.json -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Szerokość Obrysu" - -#: fdmprinter.def.json -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 "Odległość od modelu do najbardziej wysuniętej na zewnątrz linii obrysu. Większy obrys zwiększa adhezję do stołu, ale również zmniejsza efektywny obszar wydruku." - -#: fdmprinter.def.json -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Liczba Linii Obrysu" - -#: fdmprinter.def.json -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 "Liczba linii używana dla obrysu. Więcej linii obrysu poprawia przyczepność do stołu, ale zmniejsza rzeczywiste pole wydruku." - -#: fdmprinter.def.json -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Podpory Zastąp Obrysem" - -#: fdmprinter.def.json -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 "Wymuś drukowanie obrysu wokół modelu, nawet jeśli powierzchnia byłaby zajęta przez podpory. Zastępuje obszary podpór przez obrys. Dotyczy pierwszej warstwy." - -#: fdmprinter.def.json -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Obrys Tylko na Zew" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Dod. Margines Tratwy" - -#: fdmprinter.def.json -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 "Jeśli tratwa jest włączona, jest to dodatkowy obszar tratwy wokół modelu, który ma również tratwę. Zwiększenie marginesu wzmocni tratwę przy wykorzystaniu z większej ilości materiału i pozostawi mniej miejsca na wydruk." - -#: fdmprinter.def.json -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Wygładzanie Tratwy" - -#: fdmprinter.def.json -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 "To ustawienie kontroluje jak bardzo wewn. narożniki w zewn. krawędzi tratwy mają być zaokrąglone. Wew. narożniki są zaokrąglane do półokręgów o promieniu równym wartości podanej tutaj. To ustawienie usuwa także otwory w zewn. krawędzi tratwy, które są mniejsze niż taki okrąg." - -#: fdmprinter.def.json -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Przerwa Tratwy" - -#: fdmprinter.def.json -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 "Przerwa pomiędzy ostatnią warstwą tratwy a pierwszą warstwą modelu. Tylko ta pierwsza warstwa jest podnoszona o tę wartość w celu zmniejszenia wiązania pomiędzy warstwą tratwy a modelem. Ułatwia to odrywanie tratwy." - -#: fdmprinter.def.json -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Pokryw. się Pierwsz. Warstwy w Z" - -#: fdmprinter.def.json -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 "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ść." - -#: fdmprinter.def.json -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Górne Warstwy Tartwy" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Grubość Warstwy Góra Tratwy" - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Grubość warstwy górnych warstw tratwy." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Szerokość Linii Góra Tratwy" - -#: fdmprinter.def.json -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 "Szerokość linii na górnej powierzchni tratwy. Mogą to być cienkie linie tak, aby góra tratwy była gładka." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Przerwy Góra Tratwy" - -#: fdmprinter.def.json -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 "Odległość między liniami na górnej warstwie tratwy. Rozstaw powinien być równy szerokości linii, tak że powierzchnia jest pełna." - -#: fdmprinter.def.json -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Grubość Środka Tratwy" - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Grubość środkowej warstwy tratwy." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Szerokość Linii Środka Tratwy" - -#: fdmprinter.def.json -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 "Szerokość linii na środkowej warstwie tratwy. Wytłaczanie drugiej warstwy powoduje, że linie przyklejają się do stołu." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Przerwy Środka Tratwy" - -#: fdmprinter.def.json -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 "Odległość między liniami na środkowej warstwie tratwy. Odległość środkowa powinna być dość szeroka, a jednocześnie wystarczająco gęsta, aby podtrzymywać górne warstwy tratwy." - -#: fdmprinter.def.json -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Grubość Podstawy Tratwy" - -#: fdmprinter.def.json -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 "Grubość podstawowej warstwy tratwy. Powinna to być gruba warstwa, która mocno przykleja się do stołu drukarki." - -#: fdmprinter.def.json -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Szerokość Linii Podst. Tratwy" - -#: fdmprinter.def.json -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 "Szerokość linii na podstawowej warstwie tratwy. Powinny być to grube linie, które pomogą w przyczepności do stołu." - -#: fdmprinter.def.json -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Rozstaw Linii Podstawy Tratwy" - -#: fdmprinter.def.json -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 "Odległość pomiędzy linami tratwy na podstawowej warstwie tratwy. Szerokie odstępy ułatwiają usuwanie tratwy ze stołu." - -#: fdmprinter.def.json -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Prędk. Druku Tratwy" - -#: fdmprinter.def.json -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "Prędkość, z jaką drukowana jest tratwa." - -#: fdmprinter.def.json -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Prędk. Druku Góry Tratwy" - -#: fdmprinter.def.json -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 "Prędkość, w jaką są drukowane górne warstwy tratwy. Powinny być drukowane nieco wolniej, dzięki czemu dysza może powoli wypolerować sąsiednie linie powierzchni." - -#: fdmprinter.def.json -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Prędk. Druku Środka Tratwy" - -#: fdmprinter.def.json -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 "Prędkość, z jaką drukowana jest środkowa warstwa tratwy. Powinno być drukowane dość wolno, ponieważ objętość materiału wydobywającego się z dyszy jest dość duża." - -#: fdmprinter.def.json -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Prędk. Druku Podst. Tratwy" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Przysp. Druku Tratwy" - -#: fdmprinter.def.json -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "Przyspieszenie, z jakim tratwa jest drukowana." - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Przysp. Druku Góry Tratwy" - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Przyspieszenie, z jakim drukowane są górne warstwy tratwy." - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Przysp. Druku Środka Tratwy" - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "Przyspieszenie, z jakim drukowana jest środkowa warstwa tratwy." - -#: fdmprinter.def.json -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Przysp. Podst. Warstwy Tratwy" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Zryw Tratwy" - -#: fdmprinter.def.json -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "Zryw, z jakim drukowana jest tratwa." - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Zryw Góry Tratwy" - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Zryw, z jakim drukowane są górne warstwy tratwy." - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Zryw Środek Tratwy" - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "Zryw, z którym drukowany jest środek tratwy." - -#: fdmprinter.def.json -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Zryw Podst. Tratwy" - -#: fdmprinter.def.json -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Zryw, z którym drukowana jest podstawowa warstwa tratwy." - -#: fdmprinter.def.json -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Prędk. Went. Tratwa" - -#: fdmprinter.def.json -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Prędkość wentylatora dla tratwy." - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Prędk. Went. Góra Tratwy" - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Prędkość wentylatora dla górnych warstw tratwy." - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Prędk. Went. Środek Tratwy" - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "Prędkość wentylatora dla środkowej warstwy tratwy." - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Prędk. Went. Podst. Tratwy" - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Prędkość wentylatora dla podstawowej warstwy tratwy." - -#: fdmprinter.def.json -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Podwójna ekstruzja" - -#: fdmprinter.def.json -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Ustawienia używane do drukowania wieloma głowicami." - -#: fdmprinter.def.json -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Włącz Wieżę Czyszczącą" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Rozmiar Wieży Czyszczącej" - -#: fdmprinter.def.json -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "Szerokość wieży czyszczącej." - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Min. Objętość Wieży Czyszczącej" - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "Minimalna objętość każdej warstwy wieży czyszczącej w celu oczyszczenia wystarczającej ilości materiału." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Pozycja Wieży Czyszcz. X" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "Współrzędna X położenia wieży czyszczącej." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Pozycja Wieży Czyszcz. Y" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "Współrzędna Y położenia wieży czyszczącej." - -#: fdmprinter.def.json -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Wytrzyj Nieużywaną Dyszę o Wieżę Czyszczącą" +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 "Reguluje rozmieszczenie podpór. Umiejscowienie można dostosować tak, aby dotykały tylko stołu roboczego lub były generowane wszędzie. Po ustawieniu na wszędzie struktury wydruku będą również drukowane na modelu." #: fdmprinter.def.json msgctxt "prime_tower_wipe_enabled description" @@ -5058,244 +161,14 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "Po wydrukowaniu podstawowej wieży jedną dyszą, wytrzyj wytłoczony materiał z drugiej dyszy o wieżę czyszczącą." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Obrys wieży czyszczącej" +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 "Po przełączeniu maszyny z jednego ekstrudera na drugi, stół jest opuszczany, aby utworzyć luz pomiędzy dyszą a drukiem. Zapobiega to pozostawianiu wypływającego materiału na powierzchni wydruku." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Wieże czyszczące mogą potrzebować dodatkowej adhezji zapewnionej przez obrys, nawet jeśli model nie potrzebuje. Nie można używać z typem przyczepności „tratwa”." - -#: fdmprinter.def.json -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Włącz Osłonę Wycierającą" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Kąt Osłony Wycierającej" - -#: fdmprinter.def.json -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 "Maksymalny kąt, jaki będzie mieć część w tarczy wycierającej. Przy 0 stopniach jest pionowa i 90 stopni jest pozioma. Mniejszy kąt prowadzi do mniej nieudanych osłon, ale używa więcej materiału." - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Odległ. Osłony Wycierającej" - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "Odległość od osłony wycierającej do wydruku, w kierunkach X/Y." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Długość Retrakcji przy Zmianie Dyszy" - -#: fdmprinter.def.json -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 "Wielkość retrakcji przy przełączaniu ekstruderów. Ustaw na 0, aby wyłączyć retrakcję. Powinno być ustawione tak samo jak długość strefy grzania." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Prędk. Retrakcji przy Zmianie Dyszy" - -#: fdmprinter.def.json -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 "Prędkość, z jaką filament jest wycofywany. Wyższa szybkość retrakcji działa lepiej, ale bardzo duża szybkość retrakcji może prowadzić do złych efektów." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Prędk. Cofania przy Zmianie Dyszy" - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "Prędkość, z jaką filament jest wycofywany podczas retrakcji przy zmianie dyszy." - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Prędk. Czyszcz. przy Zmianie Dyszy" - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "Prędkość, z jaką filament jest cofany podczas retrakcji po zmianie dyszy." - -#: fdmprinter.def.json -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Dodatkowa ekstruzja po zmianie dyszy" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Poprawki Siatki" - -#: fdmprinter.def.json -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "" - -#: fdmprinter.def.json -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Nakładanie się Związanych Brył" - -#: fdmprinter.def.json -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 "Zignoruj geometrię wewnętrzną wynikającą z nakładania się brył w siatce i wydrukuj ją jako jedną. Może to spowodować zniknięcie niezamierzonych wewnętrznych ubytków." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Usuń Wszystkie Otwory" - -#: fdmprinter.def.json -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 "Usuń otwory w każdej warstwie i zachowuj tylko zewnętrzny kształt. Zignoruje to niewidoczną wewnętrzną geometrię. Ignoruje jednak otwory warstw, które można zobaczyć z góry lub do dołu." - -#: fdmprinter.def.json -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Poszerzające Zszywanie" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Zachowaj Rozłączone Powierzchnie" - -#: fdmprinter.def.json -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 "Zwykle Cura próbuje zszywać małe dziury w siatce i usunąć części warstwy z dużymi otworami. Włączenie tej opcji powoduje zostawienie tych części, których nie da się zszyć. Ta opcja powinna być używana jako ostatnia deska ratunku, gdy wszystko inne nie dostarczy właściwego G-code." - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Połączone Siatki Pokrywają się" - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Spowoduj, że siatki, które się dotykają będą na siebie trochę nachodzić. To sprawia, że lepiej się łączą." - -#: fdmprinter.def.json -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Usuń Przecięcia Siatki" - -#: fdmprinter.def.json -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 "Usuń obszary gdzie kilka siatek nakłada się na siebie. Może zostać użyte, jeżeli dwa obiekty do druku 2 materiałami nachodzą na siebie." - -#: fdmprinter.def.json -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Zastosuj Usuwanie Siatki" - -#: fdmprinter.def.json -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 "Przełącz się, to której przecinającej się siatki będą należały z każdą warstwą, tak że nakładające się siatki przeplatają się. Wyłączenie tej opcji spowoduje, że jedna siatka uzyska całą objętość podczas nakładania się, kiedy jest usunięta z pozostałych siatek." - -#: fdmprinter.def.json -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Usuń Pustą Pierwsz. Warstwę" - -#: fdmprinter.def.json -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 "Usuń puste warstwy poniżej pierwszej drukowanej warstwy jeżeli takie występują. Wyłączenie tego ustawienia może powodować puste pierwsze warstwy jeżeli Tolerancja Cięcia jest ustawiona na Włącznie lub Środek." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Maksymalna Rozdzielczość" - -#: fdmprinter.def.json -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 "Minimalny rozmiar linii segmentu po pocięciu. Jeżeli to zwiększysz, siatka będzie miała mniejszą rozdzielczość. Może to spowodować przyspieszenie prędkości przetwarzania g-code i przyspieszenie prędkości cięcia poprzez usunięcie detali siatki, których tak czy tak nie można przetworzyć." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Maksymalna Rozdzielczość Ruchów Jałowych" - -#: fdmprinter.def.json -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 "Minimalny rozmiar segmentu linii ruchu jałowego po pocięciu. Jeżeli ta wartość zostanie zwiększona, ruch jałowy będzie miał mniej gładkie zakręty. Może to spowodować przyspieszenie prędkości przetwarzania g-code, ale unikanie modelu może być mniej dokładne." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Maksymalne odchylenie" - -#: fdmprinter.def.json -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 "Maksymalne odchylenie dozwolone przy zmniejszaniu rozdzielczości dla ustawienia maksymalnej rozdzielczości. Jeśli to zwiększysz, wydruk będzie mniej dokładny, ale g-code będzie mniejszy. Maksymalne odchylenie jest limitem dla maksymalnej rozdzielczości, więc wystąpi konflikt, maksymalne odchylenie zawsze będzie używane." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Specjalne Tryby" - -#: fdmprinter.def.json -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "" - -#: fdmprinter.def.json -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Sekwencja Wydruku" - -#: fdmprinter.def.json -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 "" +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Wszędzie" #: fdmprinter.def.json msgctxt "print_sequence option all_at_once" @@ -5303,1273 +176,19 @@ msgid "All at Once" msgstr "Wszystko na raz" #: fdmprinter.def.json -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Jeden na raz" +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)" #: fdmprinter.def.json -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Siatka Wypełnienia" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Zastosuj Dodatkową Ścianę" #: fdmprinter.def.json -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 "Użyj tej siatki, aby zmodyfikować wypełnienie innych siatek, z którymi się pokrywa. Zastępuje obszary wypełnienia innych siatek obszarami dla tej siatki. Proponuje się wydrukować tylko jedną ścianę bez górnej/dolnej powłoki dla tej siatki." - -#: fdmprinter.def.json -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Cięcie Siatki" - -#: fdmprinter.def.json -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 "Potnij siatkę na części. Możesz to zrobić, aby stworzyć określone miejsca w jednej siatce, które będą drukowane z innymi ustawieniami, a nawet innym ekstruderem." - -#: fdmprinter.def.json -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Forma" - -#: fdmprinter.def.json -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 "Wydrukuj modele jako formę, którą można wyrzucić w celu uzyskania odlewu, który przypomina modele na płycie." - -#: fdmprinter.def.json -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Min. Szerokość Formy" - -#: fdmprinter.def.json -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "" - -#: fdmprinter.def.json -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Wysokość Dachu Formy" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Kąt Formy" - -#: fdmprinter.def.json -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 "Kąt zwisania ścian zewnętrznych utworzonych dla formy. 0 ° spowoduje, że powłoka zewnętrzna formy będzie pionowa, a 90 ° sprawi, że na zewnątrz modelu podąży za konturem modelu." - -#: fdmprinter.def.json -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Siatka Podpory" - -#: fdmprinter.def.json -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Użyj tej siatki, aby określić obszary wsparcia. Można to wykorzystać do generowania struktury podpory." - -#: fdmprinter.def.json -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Siatka Anty-zwisowa" - -#: fdmprinter.def.json -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 "Użyj tej siatki, aby sprecyzować gdzie żadna z części modelu nie powinna być wykrywana jako zwis. Ta opcja może być używana do usuwania niepotrzebnych podpór." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Tryb Powierzchni" - -#: fdmprinter.def.json -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 "Traktuj model tylko jako powierzchnię, bryłę lub bryłę z luźnymi powierzchniami. Zwykły tryb drukowania drukuje tylko zamknięte bryły. \"Powierzchnia\" drukuje pojedynczą ścianę śledząc powierzchnię siatki bez wypełnienia i bez górnej/dolnej skóry. \"Oba\" drukuje zamknięte bryły takie jak zwykłe i wszelkie pozostałe wielokąty jako powierzchnie." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normalny" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Powierzchnia" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Oba" - -#: fdmprinter.def.json -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Spiralizuj Zew. Kontur" - -#: fdmprinter.def.json -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 "Spirala wygładzająca ruch w Z na zewnętrznej krawędzi. Powoduje to stały wzrost Z w całym druku. Ta funkcja zamienia pełny model w pojedynczo ścienny wydruk z pełnym dnem. Ta funkcja powinna być włączona tylko wtedy, gdy każda warstwa zawiera tylko jedną część." - -#: fdmprinter.def.json -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Wygładź Spiralne Kontury" - -#: fdmprinter.def.json -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 "Wygładź spiralne kontury, aby zmniejszyć widoczność szwu Z (szew Z powinien być ledwo widoczny na wydruku, ale nadal będzie widoczny w widoku warstwy). Pamiętaj, że wygładzanie będzie powodować rozmycie drobnych szczegółów powierzchni." - -#: fdmprinter.def.json -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Ekstruzja Względna" - -#: fdmprinter.def.json -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 "Używaj ekstruzji względnej zamiast ekstruzji bezwzględnej. Używanie względnych kroków E umożliwia łatwiejszy post-processing g-code'u. Jednakże nie jest to wspierane przez wszystkie drukarki i może to powodować delikatne wahania w ilości podawanego materiału w porównaniu z bezwzględnymi krokami E. Niezależnie od tego ustawienia, tryb ekstruzji będzie zawsze ustawiony na bezwględny zanim skrypt g-code będzie na wyjściu." - -#: fdmprinter.def.json -msgctxt "experimental label" -msgid "Experimental" -msgstr "Eksperymentalne" - -#: fdmprinter.def.json -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Tolerancja Cięcia" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Środek" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Wyłącznie" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Włącznie" - -#: fdmprinter.def.json -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Szerokość Linii Powierzchni Skóry" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Wzór Górnej Pow. Skóry" - -#: fdmprinter.def.json -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "Wzór najwyższych warstw." - -#: fdmprinter.def.json -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Linie" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Koncentryczny" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zygzak" - -#: fdmprinter.def.json -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Kierunki Linii Górnej Pow. Skóry" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Optymalizacja Ruchów Jałowych Wypełnienia" - -#: fdmprinter.def.json -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 "Kiedy włączone, kolejność drukowania linii wypełnienia jest optymalizowana tak, aby zredukować odległości ruchów jałowych. Osiągnięta redukcja czasu ruchów jałowych zależy od ciętego modelu, wzory wypełnienia, gęstości itd. Zauważ, że dla niektórych modeli, które mają małe obszary wypełnienia, czas ciecia modelu może się bardzo wydłużyć." - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature label" -msgid "Auto Temperature" -msgstr "Auto Temperatura" - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature description" -msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -msgstr "Zmień temperaturę każdej warstwy automatycznie przy średniej prędkości przepływu tej warstwy." - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Wykres Temp. Przepływu" - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Dane łączące przepływ materiału (w mm3 na sekundę) z temperaturą (stopnie Celsjusza)." - -#: fdmprinter.def.json -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Minimalny Obwód Wieloboku" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Podziel Podpory na Kawałki" - -#: fdmprinter.def.json -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 "Pomijaj niektóre połączenia linii podpory, aby struktura podpory była łatwiejsza do odłamania. To ustawienie dotyczy wypełn. podpory Zygzak." - -#: fdmprinter.def.json -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Wielkość Kawałka Podpory" - -#: fdmprinter.def.json -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 "Pomiń połączenie pomiędzy liniami podpory co N milimetrów, aby struktura podpory była łatwiejsza do odłamania." - -#: fdmprinter.def.json -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Liczba Linii Kawałka Podpory" - -#: fdmprinter.def.json -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Pomijaj jedną z każdych N linii, aby struktura podpory była łatwiejsza do odłamania." - -#: fdmprinter.def.json -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Włącz Osłonę Przeciwwiatrową" - -#: fdmprinter.def.json -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 "Powoduje to powstanie osłony wokół modelu, która wyłapuje (gorące) powietrze i osłania przed ruchami powietrza. Szczególnie przydatna w przypadku materiałów, które łatwo się rozwarstwiają." - -#: fdmprinter.def.json -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Odległość Osłony w X/Y" - -#: fdmprinter.def.json -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Odległość osłony przeciwwiatrowej od druku, we współrzędnych X/Y." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Ograniczenie Osłony" - -#: fdmprinter.def.json -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 "Ustaw wysokość osłony przeciwwiatrowej. Wybierz czy drukować osłonę do pełnej wysokości modelu czy do określonej wysokości." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Pełna" - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Ograniczona" - -#: fdmprinter.def.json -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Wysokość Osłony" - -#: fdmprinter.def.json -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Ograniczenie wysokości osłony przeciwwiatrowej. Powyżej tej wysokości nie będzie drukowana żadna osłona." - -#: fdmprinter.def.json -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Drukowalne Zwisy" - -#: fdmprinter.def.json -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 "Zmienia geometrię modelu tak, aby wymagał minimalnego podparcia. Strome zwisy staną się mniej strome. Zwisające obszary zostaną opuszczone by być bardziej pionowymi." - -#: fdmprinter.def.json -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Maksymalny Kąt Modelu" - -#: fdmprinter.def.json -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 "Maksymalny kąt zwisów po którym będą one drukowalne. Przy wartości 0 ° wszystkie zwisy są zastępowane przez fragment modelu połączony ze stołem, a 90 ° w żaden sposób nie zmienia modelu." - -#: fdmprinter.def.json -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Włącz Wypływanie" - -#: fdmprinter.def.json -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 "Wypływanie zastępuje ostatnią część ścieżki ekstruzji, ścieżką ruchu jałowego. Wyciekający materiał jest używany do wydrukowania ostatniego fragmentu ekstruzji, aby zmniejszyć nitkowanie." - -#: fdmprinter.def.json -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Objętość Wypływania" - -#: fdmprinter.def.json -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Objętość materiału wyciekającego jest inna. Wartość ta powinna być zasadniczo zbliżona do średnicy dyszy do sześcianu." - -#: fdmprinter.def.json -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Minimalna Objętość Przed Wypływaniem" - -#: fdmprinter.def.json -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 "Najmniejsza objętość jaką powinna mieć ścieżka ekstruzji przed pozwoleniem na Wypływanie. Dla mniejszych ścieżek ekstruzji pojawia się mniejsze ciśnienie we wbudowanej rurce bowden dzięki czemu ilość wypływającego materiału jest skalowana liniowo. Ta wartość powinna zawsze być większa niż Objętość Wypływania." - -#: fdmprinter.def.json -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Prędkość Wypływania" - -#: fdmprinter.def.json -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 "Prędkość poruszania się podczas Wypływania, w stosunku do prędkości ścieżki ekstruzji. Zaleca się wartość nieco poniżej 100%, ponieważ podczas Wypływania ciśnienie w rurce bowden spada." - -#: fdmprinter.def.json -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Rozmiar Kieszeni Krzyża 3D" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Gęstośc Wypełnienia Krzyżowego Według Obrazu" - -#: fdmprinter.def.json -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 "Lokalizacja pliku obrazu, którego jasność będzie determinowała minimalną gęstość wypełnienia wydruku w danym punkcie." - -#: fdmprinter.def.json -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Gęstości Wypełnienia Krzyżowego Podstaw Według Obrazu" - -#: fdmprinter.def.json -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 "Lokalizacja pliku obrazu, którego jasność będzie determinowała minimalną gęstość wypełnienia podstawy w danym punkcie." - -#: fdmprinter.def.json -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Włącz Podpory Stożkowe" - -#: fdmprinter.def.json -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Zmniejsz obszary podparcia na podłożu pod zwisem." - -#: fdmprinter.def.json -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Kąt Podpory Stożkowej" - -#: fdmprinter.def.json -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 "Kąt nachylenia podpory stożkowej. Przy 0 stopniach jest pionowa a przy 90 stopniach jest pozioma. Mniejsze kąty sprawiają, że podparcie jest bardziej wytrzymałe, ale składa się z większej ilości materiału. Kąty ujemne powodują, że podstawa wspornika jest szersza niż góra." - -#: fdmprinter.def.json -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Min. Szerokość Podpory Stożkowej" - -#: fdmprinter.def.json -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 "Minimalna szerokość, do której można zmniejszyć bazę podpory stożkowej. Małe szerokości mogą prowadzić do niestabilnych struktur nośnych." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Nierówna Skóra" - -#: fdmprinter.def.json -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 "Losowe drgania podczas drukowania zewnętrznej ściany, dzięki czemu powierzchnia ma szorstki i rozmyty wygląd." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Grubości Nierównej Skóry" - -#: fdmprinter.def.json -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 "Szerokość, w której będą wykonywane drgania. Zaleca się zachować ją poniżej zewnętrznej szerokości ścianki, ponieważ wewnętrzne ściany nie ulegają zmianie." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Gęstość Nierównej Skóry" - -#: fdmprinter.def.json -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 "Średnia gęstość punktów wprowadzonych na każdy wielokąt na warstwie. Zauważ, że oryginalne punkty wielokąta są odrzucane, a więc niska gęstość powoduje zmniejszenie rozdzielczości." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Odległ. między Punkt. Nierównej Skóry" - -#: fdmprinter.def.json -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 "Średnia odległość między losowymi punktami wprowadzonymi w każdym segmencie linii. Zwróć uwagę, że oryginalne punkty wielokąta są odrzucane, a zatem duża gładkość powoduje zmniejszenie rozdzielczości. Wartość ta musi być większa niż połowa Grubości Nierównej Skóry." - -#: fdmprinter.def.json -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Maksymalna kompensowania przepływu" - -#: fdmprinter.def.json -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 "Maksymalna odległość w mm do przesuwania filamentu w celu kompensacji zmian wielkości przepływu." - -#: fdmprinter.def.json -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Współczynnik kompensacji przepływu" - -#: fdmprinter.def.json -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 "Jak bardzo przesunąć filament, aby skompensować zmiany wielkości przepływu, jako procent odległości, o jaką filament poruszyłby się w ciągu jednej sekundy wytłaczania." - -#: fdmprinter.def.json -msgctxt "wireframe_enabled label" -msgid "Wire Printing" -msgstr "Drukowanie Drutu" - -#: fdmprinter.def.json -msgctxt "wireframe_enabled description" -msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -msgstr "Wydrukuj tylko zewnętrzną powierzchnię o słabej strukturze tkaniny, drukując \"w cienkim powietrzu\". Jest to realizowane poprzez poziomy wydruk konturów modelu w określonych przedziałach Z, które są połączone przez linie skierowane w górę i w dół po porzekątnej." - -#: fdmprinter.def.json -msgctxt "wireframe_height label" -msgid "WP Connection Height" -msgstr "DD Wysokość Połączenia" - -#: fdmprinter.def.json -msgctxt "wireframe_height description" -msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -msgstr "Wysokość linii w górę i po przekątnej w dół między dwiema częściami poziomymi. Określa ona całkowitą gęstość struktury siatki. Dotyczy tylko Drukowania Drutu." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset label" -msgid "WP Roof Inset Distance" -msgstr "DD Długość Wkładu Dachu" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset description" -msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -msgstr "Odległość jaka zostaje pokryta podczas tworzenia połączenia z wewnętrznego konturu dachu. Odnosi się tylko do Drukowania Drutu." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed label" -msgid "WP Speed" -msgstr "DD Prędkość" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed description" -msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -msgstr "Prędkość, z jaką porusza się dysza podczas wytłaczania materiału. Dotyczy tylko Drukowania Drutu." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom label" -msgid "WP Bottom Printing Speed" -msgstr "DD Prędk. Drukowania Dołu" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom description" -msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -msgstr "Prędkość drukowania pierwszej warstwy, która jest jedyną warstwą dotykającą stołu. Dotyczy tylko Drukowania Drutu." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up label" -msgid "WP Upward Printing Speed" -msgstr "DD Prędkość Drukowania do Góry" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up description" -msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -msgstr "Szybkość drukowania linii do góry „w powietrzu”. Odnosi się tylko do Drukowania Drutu." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down label" -msgid "WP Downward Printing Speed" -msgstr "DD Prędkość Drukowania w Dół" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down description" -msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -msgstr "Prędkość drukowania ukośnej linii w dół. Odnosi się tylko do Drukowania Drutu." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat label" -msgid "WP Horizontal Printing Speed" -msgstr "DD Prędkość Drukowania Poziomo" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat description" -msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -msgstr "Prędkość drukowania poziomych konturów modelu. Odnosi się tylko do Drukowania Drutu." - -#: fdmprinter.def.json -msgctxt "wireframe_flow label" -msgid "WP Flow" -msgstr "DD Przepływ" - -#: fdmprinter.def.json -msgctxt "wireframe_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -msgstr "Kompensacja przepływu: ilość wytłaczanego materiału jest mnożona przez tę wartość. Odnosi się tylko do Drukowania Drutu." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection label" -msgid "WP Connection Flow" -msgstr "DD Przepływ Połączenia" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection description" -msgid "Flow compensation when going up or down. Only applies to Wire Printing." -msgstr "Kompensacja przepływu w górę i w dół. Odnosi się tylko do Drukowania Drutu." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat label" -msgid "WP Flat Flow" -msgstr "DD Płaskie Przepływ" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat description" -msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -msgstr "Kompensacja przepływu podczas drukowania płaskich linii. Dotyczy tylko Drukowania Drutu." - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay label" -msgid "WP Top Delay" -msgstr "DD Opóźnienie Góry" - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay description" -msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -msgstr "Opóźnienie czasu po wzniesieniu w górę, tak aby linia idąca w górę mogła zesztywniać. Dotyczy tylko Drukowania Drutu." - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay label" -msgid "WP Bottom Delay" -msgstr "DD Dolne Opóźnienie" - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay description" -msgid "Delay time after a downward move. Only applies to Wire Printing." -msgstr "Opóźnienie po pochyłym ruchu. Dotyczy tylko Drukowania Drutu." - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay label" -msgid "WP Flat Delay" -msgstr "DD Płaskie Opóźnienie" - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay description" -msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -msgstr "Czas opóźnienia pomiędzy dwoma poziomymi segmentami. Dzięki takiemu opóźnieniu może powstać lepsza przyczepność do poprzedniej warstwy, przy zbyt dużym opóźnieniu może jednak prowadzić do opadania. Odnosi się tylko do Drukowania Drutu." - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed label" -msgid "WP Ease Upward" -msgstr "DD Łatwe Wzniesienie" - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed description" -msgid "" -"Distance of an upward move which is extruded with half speed.\n" -"This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "" -"Dystans przemieszczania się ku górze, który jest wytłaczany z połową szybkości.\n" -"Może to prowadzić do lepszej przyczepności do wcześniejszych warstw, bez zbytniego podgrzewania materiału na tych warstwach. Odnosi się tylko do Drukowania Drutu." - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump label" -msgid "WP Knot Size" -msgstr "DD Rozmiar Węzła" - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump description" -msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -msgstr "Tworzy mały węzeł u góry linii w górę, dzięki czemu kolejna pozioma warstwa ma większą szansę połączenia się z nią. Dotyczy tylko Drukowania Drutu." - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down label" -msgid "WP Fall Down" -msgstr "DD Spadek" - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down description" -msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "Odległość o jaką spada materiału przez wytłaczanie w górę. Długość ta jest kompensowana. Odnosi się tylko do Drukowania Drutu." - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along label" -msgid "WP Drag Along" -msgstr "DD Przeciągnij Wzdłuż" - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along description" -msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "Odległość, z jaką materiał wytłoczony z góry jest przeciągany równolegle do dolnej ekstruzji. Ta odległość jest kompensowana. Dotyczy tylko Drukowania Drutu." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy label" -msgid "WP Strategy" -msgstr "DD Strategia" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy description" -msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -msgstr "Strategia zapewniająca podłączenie dwóch kolejnych warstw w każdym punkcie połączenia. Wycofanie pozwala na utwardzenie linii idących w górę we właściwej pozycji, ale może powodować \"mielenie\" filamentu. Węzeł może być wykonany na końcu linii do góry, aby zwiększyć szanse na połączenie z nią i pozostawić dobrą linię; może to jednak wymagać wolnych prędkości druku. Inną strategią jest wyrównanie opadania górnej krawędzi. Jednak linie nie zawsze spadają zgodnie z przewidywaniami." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option compensate" -msgid "Compensate" -msgstr "Kompensuj" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option knot" -msgid "Knot" -msgstr "Węzeł" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option retract" -msgid "Retract" -msgstr "Wycofanie" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down label" -msgid "WP Straighten Downward Lines" -msgstr "DD Prostuj Linie w Dół" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down description" -msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -msgstr "Odsetek ukośnych linii ułożonych w dół, który jest przykryty poziomą linią. Może to uniemożliwić zwisanie górnej krawędzi linii ułożonejw górę. Dotyczy tylko Drukowania Drutu." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down label" -msgid "WP Roof Fall Down" -msgstr "DD Spadek Dachu" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down description" -msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -msgstr "Odległość, na jaką opadają linie dachu wydrukowane \"w powietrzu\" podczas druku. Ta odległość jest kompensowana. Dotyczy tylko Drukowania Drutu." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along label" -msgid "WP Roof Drag Along" -msgstr "DD Rozciągaj Dach" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along description" -msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -msgstr "Długość końcówki wewnętrznej linii, która jest rozciągana podczas powrotu do zewnętrznej linii dachu. Trasa ta jest kompensowana. Odnosi się tylko do Drukowania Drutu." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay label" -msgid "WP Roof Outer Delay" -msgstr "DD Opóźnienie Zew. Dachu" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay description" -msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -msgstr "Czas, który poświęca się na zewnętrznych obrzeżach otworu, który ma stać się dachem. Dłuższy czas może spowodować lepsze połączenie. Odnosi się tylko do Drukowania Drutu." - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance label" -msgid "WP Nozzle Clearance" -msgstr "DD Prześwit Dyszy" - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance description" -msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -msgstr "Odległość między dyszą a liniami skierowanymi w dół. Większe prześwity powodują ukośne linie skierowanie w dół o mniej stromym kącie, co z kolei skutkuje mniejszymi połączeniami z następną warstwą. Dotyczy tylko Drukowania Drutu." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Użyj zmiennych warstw" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Maks. zmiana zmiennych warstw" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "Maksymalna dozwolona różnica wysokości względem bazowej wysokości warstwy." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Krok zmian zmiennych warstw" - -#: fdmprinter.def.json -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ą." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Rozmiar topografii warstw adaptacyjnych" - -#: fdmprinter.def.json -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 "Docelowa odległość pozioma między dwiema sąsiadującymi warstwami. Zmniejszenie tego ustawienia powoduje użycie cieńszych warstw w celu przybliżenia krawędzi warstw." - -#: fdmprinter.def.json -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Kąt Nawisającej Ścianki" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Prędkość Ścianki Nawisającej" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Włącz Ustawienia Mostów" - -#: fdmprinter.def.json -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ó." - -#: fdmprinter.def.json -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Min. Długość Mostu" - -#: fdmprinter.def.json -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 "Niepodparte ściany krótsze niż to będą drukowane z normalnymi ustawieniami ściany. Dłuższe niepodparte ściany będą drukowane z ustawieniami mostów." - -#: fdmprinter.def.json -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Próg Podpory Skóry Mostu" - -#: fdmprinter.def.json -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 "Jeśli obszar skóry jest podpierany w mniejszym procencie jego powierzchni, drukuj to według ustawień mostu. W przeciwnym wypadku użyj normalnych ustawień skóry." - -#: fdmprinter.def.json -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Rozbieg Ściany Mostu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Prędkość Ścian Mostu" - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "Prędkość z jaką są drukowane ściany mostu." - -#: fdmprinter.def.json -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Przepływ Mostów" - -#: fdmprinter.def.json -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ść." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Prędk. Skóry Mostu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Przepływ Skóry Mostu" - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Kiedy drukowane są obszary skóry mostu, ilość ekstrudowanego materiału jest mnożona przez tę wartość." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Gęstość Skóry Mostu" - -#: fdmprinter.def.json -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 "Gęstość warstwy skóry mostu. Wartości mniejsze od 100 będą zwiększać przerwy pomiędzy liniami skóry." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Prędk. Wentylatora - Mosty" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Procent prędkości wentylatora używany podczas drukowania ścian i skóry mostów." - -#: fdmprinter.def.json -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Most Ma Wiele Warstw" - -#: fdmprinter.def.json -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 "Jeśli włączone, druga i trzecia warstwa ponad powietrzem są drukowane używając następujących ustawień. W przeciwnym wypadku te warstwy są drukowane z normalnymi ustawieniami." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Prędk. Drugiej Skóry Mostu" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Prędkość używana podczas drukowania drugiej warstwy skóry mostu." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Przepływ Drugiej Skóry Mostu" - -#: fdmprinter.def.json -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ść." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Gęstość Drugiej Skóry Mostu" - -#: fdmprinter.def.json -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 "Gęstość drugiej warstwy skóry mostu. Wartości mniejsze od 100 będą zwiększać przerwy pomiędzy liniami skóry." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Prędk. Wentylatora - Druga Skóra Mostu" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Procent prędkości wentylatora używany podczas drukowania drugiej warstwy skóry most." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Prędkość Trzeciej Skóry Mostu" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Prędkość używana podczas drukowania trzeciej warstwy skóry mostu." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Przepływ Trzeciej Skóry Mostu" - -#: fdmprinter.def.json -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 "Kiedy drukowana jest trzecia warstwa skóry mostu, ilość ekstrudowanego materiału jest mnożona przez tę wartość." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Gęstość Trzeciej Skóry Mostu" - -#: fdmprinter.def.json -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 "Gęstość trzeciej warstwy skóry mostu. Wartości mniejsze od 100 będą zwiększać przerwy pomiędzy liniami skóry." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Prędk. Wentylatora - Trzecia Skóra Mostu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Wytrzyj dyszę pomiędzy warstwami" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Objętość materiału między czyszczeniem" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Włącz Czyszczenie przy retrakcji" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Cofnij filament, gdy dysza porusza się nad obszarem, w którym nie ma drukować." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Długość czyszczenia przy retrakcji" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Ilość filamentu do retrakcji, aby nie wyciekał podczas czyszczenia." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Dodatkowa wartość czyszczenia dla Czyszczenia przy retrakcji" - -#: fdmprinter.def.json -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 "Niektóre materiały mogą wyciekać podczas ruchów czyszczenia, można to tutaj skompensować." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Prędkość Czyszczenia przy retrakcji" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "Prędkość, z jaką jest wykonywana i dopełniana retrakcja podczas ruchu czyszczenia przy retrakcji." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Prędkość retrakcji Czyszczenia przy retrakcji" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "Prędkość, z jaką jest wykonywana retrakcja podczas ruchu czyszczenia przy retrakcji." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "Prędkość, z jaką jest wykonywana dodatkowa retrakcja podczas ruchu czyszczenia przy retrakcji." - -#: fdmprinter.def.json -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Wstrzymaj czyszczenie" - -#: fdmprinter.def.json -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Wstrzymaj czyszczenie, jeśli brak retrakcji." - -#: fdmprinter.def.json -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Wysokość skoku Z przy czyszczeniu" - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Różnica w wysokości podczas przeprowadzania Skoku Z." - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Prędkość czyszczącego skoku Z" - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Szybkość przesuwania osi Z podczas skoku." - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "X pozycji czyszczenia" - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "Pozycja X, w której skrypt zaczyna." - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Ilość powtórzeń czyszczenia" - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Ilość powtórzeń przesunięcia dyszy po szczotce." - -#: fdmprinter.def.json -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Odległość ruchu czyszczenia" - -#: fdmprinter.def.json -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "Odległość, którą głowica musi pokonać w tę i z powrotem po szczotce." - -#: fdmprinter.def.json -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Maksymalny rozmiar małych otworów" - -#: fdmprinter.def.json -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 "Otwory i kontury części o średnicy mniejszej niż podana zostaną wydrukowane przy małej szybkości operacji." - -#: fdmprinter.def.json -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Maksymalna długość małych elementów" - -#: fdmprinter.def.json -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Kontury obiektów, które są krótsze niż podana długość, zostaną wydrukowane przy użyciu funkcji małej prędkości." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Prędkość małych elementów" - -#: fdmprinter.def.json -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 "Małe obiekty zostaną wydrukowane z zadanym procentem ich normalnej prędkości drukowania. Wolniejsze drukowanie może poprawić przyczepność i dokładność." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Prędkość początkowej warstwy małych obiektów" - -#: fdmprinter.def.json -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 "Pierwsza warstwa małych obiektów zostanie wydrukowana z zadanym procentem ich normalnej prędkości drukowania. Wolniejsze drukowanie może poprawić przyczepność i dokładność." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Zastosuj Usuwanie Siatki" #: fdmprinter.def.json msgctxt "material_alternate_walls label" @@ -6582,34 +201,349 @@ msgid "Alternate wall directions every other layer and inset. Useful for materia msgstr "" #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Aluminium" + +#: fdmprinter.def.json +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" msgstr "" #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Zawsze cofaj podczas przemieszczania się do początku zewnętrznej ściany." + +#: fdmprinter.def.json +msgctxt "hole_xy_offset description" +msgid "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." msgstr "" #: fdmprinter.def.json -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" +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 "Wartość przesunięcia zastosowana do wszystkich wielokątów na każdej warstwie. Dodatnie wartości mogą kompensować zbyt duże otwory; wartości ujemne mogą kompensować zbyt małe otwory." + +#: fdmprinter.def.json +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 "Wartość przesunięcia dodawana do wszystkich powierzchni na pierwszej warstwie. Ujemna wartość może skompensować rozlewanie się pierwszej warstwy znane jako \"stopa słonia\"." + +#: fdmprinter.def.json +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 "Wartość nakładania się stosowana do wszystkich podpór na każdej warstwie. Dodatnie wartości mogą wygładzić podpory co w rezultacie daje silne podpory." + +#: fdmprinter.def.json +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Wartość przesunięcia zastosowana do obszaru podłoża podpór." + +#: fdmprinter.def.json +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Wartość przesunięcia zastosowana do obszaru dachu podpór." + +#: fdmprinter.def.json +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Wartość przesunięcia zastosowana do obszaru interfejsu podpór." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Ilość filamentu do retrakcji, aby nie wyciekał podczas czyszczenia." + +#: fdmprinter.def.json +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 "Dodatek do promienia od środka każdej kostki, aby sprawdzić granicę modelu i podjąć decyzję, czy taka kostka powinna być podzielona. Większe wartości prowadzą do grubszej powłoki małych kostek w pobliżu granicy modelu." + +#: fdmprinter.def.json +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Siatka Anty-zwisowa" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Odległość retrakcji anty-wyciekom" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Szybkość retrakcji anty-wyciekom" + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." msgstr "" #: fdmprinter.def.json -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." +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 "" #: fdmprinter.def.json -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Ustawienia Wiersza Polecenia" +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Unikaj Wydruk. Części Podczas Ruchu Jałowego" #: fdmprinter.def.json -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Ustawienia, które są używane tylko wtedy, gdy CuraEngine nie jest wywoływana przez frontend Cura." +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Unikaj Podpór Podczas Ruchu Jałowego" + +#: fdmprinter.def.json +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Tył" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Lewy tył" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Prawy tył" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Oba" + +#: fdmprinter.def.json +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Dolne Warstwy" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Wzór Dolnej Początkowej Warstwy" + +#: fdmprinter.def.json +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Odległość Rozsz. Dolnej Skóry" + +#: fdmprinter.def.json +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Szer. Usuwania Dolnej Skóry" + +#: fdmprinter.def.json +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Grubość Dołu" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Odległość pęknięcia przy retrakcji" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Szybkość pękania przy retrakcji" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Odległość łamania retrakcji" + +#: fdmprinter.def.json +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Szybkość łamania retrakcji" + +#: fdmprinter.def.json +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Temperatura pękania" + +#: fdmprinter.def.json +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Podziel Podpory na Kawałki" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Prędk. Wentylatora - Mosty" + +#: fdmprinter.def.json +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Most Ma Wiele Warstw" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Gęstość Drugiej Skóry Mostu" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Prędk. Wentylatora - Druga Skóra Mostu" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Przepływ Drugiej Skóry Mostu" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Prędk. Drugiej Skóry Mostu" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Gęstość Skóry Mostu" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Przepływ Skóry Mostu" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Prędk. Skóry Mostu" + +#: fdmprinter.def.json +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Próg Podpory Skóry Mostu" + +#: fdmprinter.def.json +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Gęstość Trzeciej Skóry Mostu" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Prędk. Wentylatora - Trzecia Skóra Mostu" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Przepływ Trzeciej Skóry Mostu" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Prędkość Trzeciej Skóry Mostu" + +#: fdmprinter.def.json +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Rozbieg Ściany Mostu" + +#: fdmprinter.def.json +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Przepływ Mostów" + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Prędkość Ścian Mostu" + +#: fdmprinter.def.json +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Obrys" + +#: fdmprinter.def.json +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Liczba Linii Obrysu" + +#: fdmprinter.def.json +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Obrys Tylko na Zew" + +#: fdmprinter.def.json +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Podpory Zastąp Obrysem" + +#: fdmprinter.def.json +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Szerokość Obrysu" + +#: fdmprinter.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Popraw Przycz. Stołu" + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Ekstruder Adhezji Pola Roboczego" + +#: fdmprinter.def.json +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Typ Zwiększenia Przyczepności" + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Materiał Platformy Roboczej" + +#: fdmprinter.def.json +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Kształt Stołu" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Temperatura Stołu" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Temp. Stołu na Pierw. Warstwie" + +#: fdmprinter.def.json +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatura obszaru roboczego" #: fdmprinter.def.json msgctxt "center_object label" @@ -6617,361 +551,6055 @@ msgid "Center Object" msgstr "Wyśrodkuj obiekt" #: fdmprinter.def.json -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 "Czy wyśrodkować obiekt na środku stołu (0,0), zamiast używać układu współrzędnych, w którym został zapisany obiekt." +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 "Zmienia geometrię modelu tak, aby wymagał minimalnego podparcia. Strome zwisy staną się mniej strome. Zwisające obszary zostaną opuszczone by być bardziej pionowymi." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Prędkość Wypływania" + +#: fdmprinter.def.json +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Objętość Wypływania" + +#: fdmprinter.def.json +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 "Wypływanie zastępuje ostatnią część ścieżki ekstruzji, ścieżką ruchu jałowego. Wyciekający materiał jest używany do wydrukowania ostatniego fragmentu ekstruzji, aby zmniejszyć nitkowanie." + +#: fdmprinter.def.json +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Tryb Kombinowania" + +#: fdmprinter.def.json +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 utrzymuje dyszę w obszarach wydruku podczas poruszania. Powoduje to nieco dłuższe ruchy, ale zmniejsza potrzebę retrakcji. Jeśli Combing jest wyłączone, następuje retrakcja, a dysza przesuwa się w linii prostej do następnego punktu. Możliwe jest wyłączenie opcji górnych / dolnych obszarach obrysu lub utrzymanie dyszy w obrębie wypełnienia." + +#: fdmprinter.def.json +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Ustawienia Wiersza Polecenia" + +#: fdmprinter.def.json +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Koncentryczny" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Koncentryczny" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Koncentryczny" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Koncentryczny" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Koncentryczny" + +#: fdmprinter.def.json +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Koncentryczny" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Koncentryczny" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Koncentryczny" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Koncentryczny" + +#: fdmprinter.def.json +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Kąt Podpory Stożkowej" + +#: fdmprinter.def.json +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Min. Szerokość Podpory Stożkowej" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Połącz Linie Wypełnienia" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Połącz Wieloboki Wypełnienia" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Łącz Linie Podpory" + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Połącz Zygzaki Podpory" + +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Połącz Górne/Dolne Wieloboki" + +#: fdmprinter.def.json +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 "Łączy ścieżki wypełnienia, gdy są one prowadzone obok siebie. Dla wzorów wypełnienia zawierających kilka zamkniętych wieloboków, załączenie tego ustawienia znacznie skróci czas ruchów jałowych." + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Połącz Zygzaki. To zwiększa wytrzymałość zygzakowatej podpory." + +#: fdmprinter.def.json +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 "Łącz końce linii podpory razem. Włączenie tej opcji może tworzyć bardziej sztywne podpory i redukować podekstruzje, ale będzie to wymagało więcej materiału." + +#: fdmprinter.def.json +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 "Łączy końce gdzie wzór wypełnienia spotyka się z wewn. ścianą używając linii, która podąża za kształtem wewn. ściany. Włączenie tego ustawienia może spowodować lepszą przyczepność wypełnienia do ścian i zredukować efekty wypełnienia w jakości powierzchni. Wyłączenie tego ustawienia redukuje ilość potrzebnego materiału." + +#: fdmprinter.def.json +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 "Połącz górne/dolne ścieżki, które przebiegają koło siebie. Włączenie tej opcji powoduje ograniczenie czasu ruchów jałowych dla wzorca koncentrycznego, ale ze względu na możliwość pojawienia się połączeń w połowie ścieżki wypełnienia, opcja ta może obniżyć jakość górnego wykończenia." + +#: fdmprinter.def.json +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 "Kontroluj, czy narożniki obrysu wpływają na położenie szwu. Brak oznacza, że rogi nie mają wpływu na tę pozycję. Ukryj szew zwiększa prawdopodobieństwo pojawienia się szwu w wewnętrznym rogu. Ujawnij szew zwiększa prawdopodobieństwo pojawienia się szwu w narożniku zewnętrznym. Ukryj lub odsłoń szew zwiększa prawdopodobieństwo, że szew pojawi się w rogu wewnętrznym lub zewnętrznym. Inteligentne ukrywanie odsłania zarówno narożniki wewnętrzne, jak i zewnętrzne, ale w miarę potrzeby wybiera wewnętrzne narożniki." + +#: fdmprinter.def.json +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 "Zmienia pojedynczą linię wypełnienia na zadaną ilość linii. Dodatkowe linie wypełnienia nie będą nad sobą przechodzić, ale będą się unikać. Sprawi to, że wypełnienie będzie sztywniejsze, ale czas druku oraz zużycie materiału zwiększą się." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Prędkość chłodzenia" + +#: fdmprinter.def.json +msgctxt "cooling description" +msgid "Cooling" +msgstr "Chłodzenie" + +#: fdmprinter.def.json +msgctxt "cooling label" +msgid "Cooling" +msgstr "Chłodzenie" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Krzyż" + +#: fdmprinter.def.json +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Krzyż" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Krzyż 3D" + +#: fdmprinter.def.json +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Rozmiar Kieszeni Krzyża 3D" + +#: fdmprinter.def.json +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Gęstości Wypełnienia Krzyżowego Podstaw Według Obrazu" + +#: fdmprinter.def.json +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Gęstośc Wypełnienia Krzyżowego Według Obrazu" + +#: fdmprinter.def.json +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Materiał krystaliczny" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Sześcienny" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Podział sześcienny" + +#: fdmprinter.def.json +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Sześcienny Podział Powłoki" + +#: fdmprinter.def.json +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Cięcie Siatki" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Dane łączące przepływ materiału (w mm3 na sekundę) z temperaturą (stopnie Celsjusza)." + +#: fdmprinter.def.json +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Domyślne Przyspieszenie" + +#: fdmprinter.def.json +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Domyślna Temp. Platformy Roboczej" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Domyślny Zryw Filamentu" + +#: fdmprinter.def.json +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Domyślna Temperatura Druku" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Domyślny Zryw X-Y" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Domyślny Zryw Z" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "Domyślny zryw dla ruchu w płaszczyźnie poziomej." + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Domyślny zryw do silnika osi Z." + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Domyślny zryw dla silnika filamentu." + +#: fdmprinter.def.json +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ó." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Średnica" + +#: fdmprinter.def.json +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 "Różne opcje, które pomagają na przyczepność do stołu. Obrys dodaje jednowarstwową płaską powierzchnię wokół podstawy modelu, aby zapobiec wypaczeniu. Tratwa dodaje grubą siatkę z dachem poniżej modelu. Obwódka to linia nadrukowana wokół modelu, ale nie połączona z modelem." + +#: fdmprinter.def.json +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Niedozwolone obszary" + +#: fdmprinter.def.json +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 "Odległość między drukowanymi liniami wypełnienia. To ustawienie jest obliczane za pomocą gęstości wypełnienia i szerokość linii wypełnienia." + +#: fdmprinter.def.json +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 "Odległość między drukowanymi liniami struktury podpory w początkowej warstwie. To ustawienie jest obliczane na podstawie gęstości podpory." + +#: fdmprinter.def.json +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 "Odległość między drukowanymi liniami podłoża podpory. To ustawienie jest obliczane za pomocą Gęstość Podłoża Podpory, ale można je wyregulować oddzielnie." + +#: fdmprinter.def.json +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 "Odległość pomiędzy drukowanymi liniami dachu podpory. Ta opcja jest obliczona na podstawie Gęstości Podpory, ale może być także ustawiona oddzielnie." + +#: fdmprinter.def.json +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Odległość między drukowanymi liniami struktury podpory. To ustawienie jest obliczane przez gęstość podpory." + +#: fdmprinter.def.json +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support." +msgstr "Odległość od wydruku do dolnej części podpory." + +#: fdmprinter.def.json +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Odległość od wierzchołka podpory do wydruku." + +#: fdmprinter.def.json +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. This value is rounded up to a multiple of the layer height." +msgstr "Odległość od góry/dołu podpory do wydruku. Ta luka zapewnia luz, aby usunąć wsporniki po wydrukowaniu modelu. Ta wartość jest zaokrąglana do wielokrotności wysokości warstwy." + +#: fdmprinter.def.json +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 "Odległość ruchu jałowego pomiędzy każdą linią wypełnienia, aby lepiej przymocować linię wypełnienia do ścian. Ta opcja jest podobna do nakładania się wypełnienia, ale bez ekstruzji i tylko na jednym końcu linii wypełnienia." + +#: fdmprinter.def.json +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Długość ruchu jałowego umieszczonego po wydrukowaniu zewnętrznej ściany, aby lepiej ukryć szew Z." + +#: fdmprinter.def.json +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Odległość osłony przeciwwiatrowej od druku, we współrzędnych X/Y." + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "Odległość od osłony wycierającej do wydruku, w kierunkach X/Y." + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Odległość podpory od wydruku w kierunkach X/Y." + +#: fdmprinter.def.json +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Nie generuj obszarów wypełnienia mniejszych niż to (zamiast tego używaj skóry)." + +#: fdmprinter.def.json +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Wysokość Osłony" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Ograniczenie Osłony" + +#: fdmprinter.def.json +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Odległość Osłony w X/Y" + +#: fdmprinter.def.json +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Upuść Siatkę Podpory" + +#: fdmprinter.def.json +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Podwójna ekstruzja" + +#: fdmprinter.def.json +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Eliptyczny" + +#: fdmprinter.def.json +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Włącz Sterowanie Przyspieszeniem" + +#: fdmprinter.def.json +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Włącz Ustawienia Mostów" + +#: fdmprinter.def.json +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Włącz Wypływanie" + +#: fdmprinter.def.json +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Włącz Podpory Stożkowe" + +#: fdmprinter.def.json +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Włącz Osłonę Przeciwwiatrową" + +#: fdmprinter.def.json +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Włącz Prasowanie" + +#: fdmprinter.def.json +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Włącz Kontrole Zrywu" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Włącz Kontrolę Temp. Dyszy" + +#: fdmprinter.def.json +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Włącz Osłonę Wycierającą" + +#: fdmprinter.def.json +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Włącz Czyszczenie \"Blob”ów" + +#: fdmprinter.def.json +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Włącz Wieżę Czyszczącą" + +#: fdmprinter.def.json +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Włącz Chłodzenie Wydruku" + +#: fdmprinter.def.json +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Włącz Retrakcję" + +#: fdmprinter.def.json +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Włącz Obrys Podpór" + +#: fdmprinter.def.json +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Włącz Podłoże Podpory" + +#: fdmprinter.def.json +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Włącz Połączenie Podpory" + +#: fdmprinter.def.json +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Włącz Dach Podpory" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "" + +#: fdmprinter.def.json +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Umożliwia dostosowanie zwrywu głowicy w przypadku zmiany prędkości w osi X lub Y. Zwiększenie zrywu może skrócić czas drukowania kosztem jakości druku." + +#: fdmprinter.def.json +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 "Umożliwia regulację przyspieszenia głowicy drukującej. Wzrost przyspieszeń może skrócić czas drukowania kosztem jakości druku." + +#: fdmprinter.def.json +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 "Włącza wentylatory chłodzące wydruk. Wentylatory poprawiają jakość wydruku na warstwach o krótkim czasie druku warstwy i mostów/zwisów." + +#: fdmprinter.def.json +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "Końcowy G-code" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "" + +#: fdmprinter.def.json +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 "Wymuś drukowanie obrysu wokół modelu, nawet jeśli powierzchnia byłaby zajęta przez podpory. Zastępuje obszary podpór przez obrys. Dotyczy pierwszej warstwy." + +#: fdmprinter.def.json +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Wszędzie" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Wyłącznie" + +#: fdmprinter.def.json +msgctxt "experimental label" +msgid "Experimental" +msgstr "Eksperymentalne" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Pokaż Szew" + +#: fdmprinter.def.json +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Poszerzające Zszywanie" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Ilość Dodatkowych Ścianek Wypełnienia" + +#: fdmprinter.def.json +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Liczba Dod. Ścian na Skórze" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Pozycja X Czyszczenia Dyszy" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Pozycja Y Czyszczenia Dyszy" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Pozycja Z Czyszczenia Dyszy" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Współczynnik chłodz. podczas Ekstruzji" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Prędkość Wentylatora" + +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Nadpisanie Prędkości Wentylatora" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Kontury obiektów, które są krótsze niż podana długość, zostaną wydrukowane przy użyciu funkcji małej prędkości." + +#: fdmprinter.def.json +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Średnica Koła Podajnika" + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Końcowa Temp. Druku" + +#: fdmprinter.def.json +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Retrakcja Programowa" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Ekstruder Pierwszej Warstwy Podpory" + +#: fdmprinter.def.json +msgctxt "material_flow label" +msgid "Flow" +msgstr "Przepływ" + +#: fdmprinter.def.json +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "" + +#: fdmprinter.def.json +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Współczynnik kompensacji przepływu" + +#: fdmprinter.def.json +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Maksymalna kompensowania przepływu" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Wykres Temp. Przepływu" + +#: fdmprinter.def.json +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 "Kompensacja przepływu dla pierwszej warstwy: ilość materiału ekstrudowanego na pierwszej warstwie jest mnożona przez tę wartość." + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Ustawienie przepływu wypełnienia." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Przepływ linii wieży podporowej." + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Ustawienie przepływu warstwy adhezyjnej." + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Ustawienie przepływu pierwszej warstwy podpór." + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Ustawienie przepływu podłoża ostatniej warstwy podpór." + +#: fdmprinter.def.json +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Ustawienie przepływu podpór." + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Ustawienie przepływu na liniach ścianek zewnętrznych." + +#: fdmprinter.def.json +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Ustawienie przepływu na warstwie górnej i dolnej." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Ustawienie przepływu na liniach ścianek wewnętrznych." + +#: fdmprinter.def.json +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Ustawienie przepływu na liniach ścianek." + +#: fdmprinter.def.json +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Kompensacja przepływu: ilość ekstrudowanego materiału jest mnożona przez tę wartość." + +#: fdmprinter.def.json +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Przód" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Lewy przód" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Prawy przód" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Pełna" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Nierówna Skóra" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Gęstość Nierównej Skóry" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Odległ. między Punkt. Nierównej Skóry" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Grubości Nierównej Skóry" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Smak G-code" + +#: fdmprinter.def.json +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "" +"Polecenia G-code, które są wykonywane na samym końcu - oddzielone za pomocą \n" +"." + +#: fdmprinter.def.json +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" +"Polecenia G-code, które są wykonywane na samym początku - oddzielone za pomocą \n" +"." + +#: fdmprinter.def.json +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "" + +#: fdmprinter.def.json +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Wysokość wózka" + +#: fdmprinter.def.json +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Generuj Podpory" + +#: fdmprinter.def.json +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 "Generuj obrys w obszarach wypełnienia podpory pierwszej warstwy. Obrys jest drukowany pod podporą, a nie wokół. Włączenie tej opcji zwiększa przyczepność podpór do stołu." + +#: fdmprinter.def.json +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 "Generuje szczelne połączenie pomiędzy modelem a podporą. Tworzy to skórę na górnej części podpory, na której model jest drukowany i na spodzie, gdzie podpora spoczywa na modelu." + +#: fdmprinter.def.json +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 "Generuj gęstą warstwę materiału pomiędzy spodem podpory a modelem. Tworzy to skórę pomiędzy modelem a podporą." + +#: fdmprinter.def.json +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 "Wytwórz gęstą płytę materiału pomiędzy wierzchołkiem podpory a modelem. Powoduje to powstanie skóry między modelem a podporą." + +#: fdmprinter.def.json +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 "Generuj struktury wspierające części modelu, które zwisają. Bez tych struktur takie części mogłyby spaść podczas drukowania." + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Szkło" + +#: fdmprinter.def.json +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 "Ponowne przejście po górnej powierzchni, tym razem wytłaczając bardzo mało materiału. Ma to na celu lepsze stopienie tworzywa na wierzchu, tworząc gładsze wykończenie. Ciśnienie w dyszy jest utrzymywane na wysokim poziomie, aby szczeliny na powierzchni były wypełnione materiałem." + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Wysokość Kroku Stopniowego Wypełnienia" + +#: fdmprinter.def.json +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Stopniowe Kroki Wypełnienia" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Wys. Stopnia Stopniowego Wypełn. Podpory" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Stopnie Stopniowego Wypełn. Podpór" + +#: fdmprinter.def.json +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Kratka" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Kratka" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Kratka" + +#: fdmprinter.def.json +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Kratka" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Kratka" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +#: fdmprinter.def.json +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" + +#: fdmprinter.def.json +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Posiada komorę stabilizacji temperatury" + +#: fdmprinter.def.json +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Posiada Podgrzewany Stół" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Prędkość nagrzewania" + +#: fdmprinter.def.json +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Długość strefy cieplnej" + +#: fdmprinter.def.json +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Ograniczenie wysokości osłony przeciwwiatrowej. Powyżej tej wysokości nie będzie drukowana żadna osłona." + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Ukryj Szew" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Ukryj lub Pokaż Szew" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "" + +#: fdmprinter.def.json +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 "Otwory i kontury części o średnicy mniejszej niż podana zostaną wydrukowane przy małej szybkości operacji." + +#: fdmprinter.def.json +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Poziome Poszerzenie" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance description" +msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." +msgstr "W jakich odległościach powinny znajdować się gałęzie kiedy dotykają modelu. Mały dystans spowoduje więcej punktów podparcia, co da lepsze nawisy, ale utrudni usuwanie podpór." + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Jak bardzo filament może być rozciągnięty, zanim pęknie, podczas ogrzewania." + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "Jak daleko materiał musi zostać wycofany, aby przestał wyciekać." + +#: fdmprinter.def.json +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 "Jak bardzo przesunąć filament, aby skompensować zmiany wielkości przepływu, jako procent odległości, o jaką filament poruszyłby się w ciągu jednej sekundy wytłaczania." + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "Jak daleko wycofać filament, aby go złamać na czysto." + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "Jak szybko filament musi zostać wycofany, aby pękł podczas cofania." + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Jak szybko materiał musi zostać wycofany podczas zmiany filamentu, aby przestał wyciekać." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "" + +#: fdmprinter.def.json +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 "Ile kroków silnika krokowego będzie skutkowało ruchem o 1mm w osi X." + +#: fdmprinter.def.json +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 "Ile kroków silnika krokowego będzie skutkowało ruchem o 1mm w osi Y." + +#: fdmprinter.def.json +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 "Ile kroków silnika krokowego będzie skutkowało ruchem o 1mm w osi Z." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Jeśli obszar skóry jest podpierany w mniejszym procencie jego powierzchni, drukuj to według ustawień mostu. W przeciwnym wypadku użyj normalnych ustawień skóry." + +#: fdmprinter.def.json +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 "Jeśli włączone, druga i trzecia warstwa ponad powietrzem są drukowane używając następujących ustawień. W przeciwnym wypadku te warstwy są drukowane z normalnymi ustawieniami." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Jeśli tratwa jest włączona, jest to dodatkowy obszar tratwy wokół modelu, który ma również tratwę. Zwiększenie marginesu wzmocni tratwę przy wykorzystaniu z większej ilości materiału i pozostawi mniej miejsca na wydruk." + +#: fdmprinter.def.json +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 "Zignoruj geometrię wewnętrzną wynikającą z nakładania się brył w siatce i wydrukuj ją jako jedną. Może to spowodować zniknięcie niezamierzonych wewnętrznych ubytków." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Załącz Temperaturę Stołu" + +#: fdmprinter.def.json +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Załącz Temperaturę Materiału" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Włącznie" + +#: fdmprinter.def.json +msgctxt "infill description" +msgid "Infill" +msgstr "Wypełnienie" + +#: fdmprinter.def.json +msgctxt "infill label" +msgid "Infill" +msgstr "Wypełnienie" + +#: fdmprinter.def.json +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Przyspieszenie Wypełnienia" + +#: fdmprinter.def.json +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Wypełn. przed Ścianami" + +#: fdmprinter.def.json +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Gęstość Wypełnnienia" + +#: fdmprinter.def.json +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Ekstruder Wypełnienia" + +#: fdmprinter.def.json +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Przepływ wypełnienia" + +#: fdmprinter.def.json +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Zryw Wypełnienie" + +#: fdmprinter.def.json +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Grubość Warstwy Wypełnienia" + +#: fdmprinter.def.json +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Kierunek Linii Wypełnienia" + +#: fdmprinter.def.json +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Odstęp Linii Wypełnienia" + +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Mnożnik Linii Wypełnienia" + +#: fdmprinter.def.json +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Szerokość Linii Wypełnienia" + +#: fdmprinter.def.json +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Siatka Wypełnienia" + +#: fdmprinter.def.json +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Kąt Zwisu dla Wypełnienia" + +#: fdmprinter.def.json +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Zachodzenie Wypełnienia" + +#: fdmprinter.def.json +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Procent Zachodzenia Wypełnienia" + +#: fdmprinter.def.json +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Wzorzec Wypełnienia" + +#: fdmprinter.def.json +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Prędkość Wypełnienia" + +#: fdmprinter.def.json +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Wypełnienie Podporowe" + +#: fdmprinter.def.json +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Optymalizacja Ruchów Jałowych Wypełnienia" + +#: fdmprinter.def.json +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Długość Czyszczenia Wypełnienia" + +#: fdmprinter.def.json +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Przesunięcie Wypełn. w Osi X" + +#: fdmprinter.def.json +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Przesunięcie Wypełn. w Osi Y" + +#: fdmprinter.def.json +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Początkowej warstwy dolne" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Początkowa Prędk. Wentylatora" + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Pierwsza warstwa przyspieszenie" + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Przepływ Pierwszej Warstwy" + +#: fdmprinter.def.json +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Wys. Początkowej Warstwy" + +#: fdmprinter.def.json +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Poziome Poszerzenie Początk. Warstwy" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Zryw Pierwsz. Warstwa" + +#: fdmprinter.def.json +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Szerokość Linii Początk. Warstwy" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Przysp. Druku 1. Warstwy" + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Zryw Początk. Warstwy" + +#: fdmprinter.def.json +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Prędk. Druku Początk. Warstwy" + +#: fdmprinter.def.json +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Prędk. Początk. Warstwy" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Odstęp Między Liniami Podpory w Pocz. Warstwie" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Przyspieszenie Ruchu Jał. 1. Warstwa" + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Zryw Początk. Wartswa" + +#: fdmprinter.def.json +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Prędk. Ruchów Jał. na 1. Warstwie" + +#: fdmprinter.def.json +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Pokryw. się Pierwsz. Warstwy w Z" + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Początkowa Temp. Druku" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Przyspieszenie Ściany Wew" + +#: fdmprinter.def.json +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Ekstruder Wew. Linii" + +#: fdmprinter.def.json +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Zryw Wew. Ścian" + +#: fdmprinter.def.json +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Prędkość Wew. Ściany" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Przepływu ścianek wewnętrznych" + +#: fdmprinter.def.json +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Szerokość Linii Ścian(y) Wewnętnych" + +#: fdmprinter.def.json +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 "Wkład nałożony na ścieżkę zewnętrznej ściany. Jeśli zewnętrzna ścianka jest mniejsza niż dysza i jest drukowana po wewnętrznych ściankach, użyj tego przesunięcia, aby uzyskać otwór w dyszy, żeby nakładała się z wewnętrzną ścianą zamiast być na zewnątrz modelu." + +#: fdmprinter.def.json +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "" + +#: fdmprinter.def.json +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "" + +#: fdmprinter.def.json +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "" + +#: fdmprinter.def.json +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Prasuj Tylko Najwyższą Warstwę" + +#: fdmprinter.def.json +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Przyspieszenie Prasowania" + +#: fdmprinter.def.json +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Przepływ Prasowania" + +#: fdmprinter.def.json +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Margines Prasowania" + +#: fdmprinter.def.json +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Zryw Prasowania" + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Przerwy Linii Prasowania" + +#: fdmprinter.def.json +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Wzór Prasowania" + +#: fdmprinter.def.json +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Prędkość Prasowania" + +#: fdmprinter.def.json +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Środek to Początek" + +#: fdmprinter.def.json +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 "Czy ten rodzaj materiału odłamuje się łatwo po podgrzaniu (krystaliczny), czy też jest to tworzywo, które wytwarza długie splecione łańcuchy polimerowe (niekrystaliczne)?" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "" + +#: fdmprinter.def.json +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Zachowaj Rozłączone Powierzchnie" + +#: fdmprinter.def.json +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Wysokość Warstwy" + +#: fdmprinter.def.json +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "Początek Warstwy X" + +#: fdmprinter.def.json +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Początek Warstwy Y" + +#: fdmprinter.def.json +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 "Grubość podstawowej warstwy tratwy. Powinna to być gruba warstwa, która mocno przykleja się do stołu drukarki." + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Grubość środkowej warstwy tratwy." + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Grubość warstwy górnych warstw tratwy." + +#: fdmprinter.def.json +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 "Pomiń połączenie pomiędzy liniami podpory co N milimetrów, aby struktura podpory była łatwiejsza do odłamania." + +#: fdmprinter.def.json +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Lewa" + +#: fdmprinter.def.json +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Unieś Głowicę" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "" + +#: fdmprinter.def.json +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 "Potnij siatkę na części. Możesz to zrobić, aby stworzyć określone miejsca w jednej siatce, które będą drukowane z innymi ustawieniami, a nawet innym ekstruderem." + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Ograniczona" + +#: fdmprinter.def.json +msgctxt "line_width label" +msgid "Line Width" +msgstr "Szerokość Linii" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Linie" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Linie" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Linie" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Linie" + +#: fdmprinter.def.json +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Linie" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Linie" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Linie" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Linie" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +#: fdmprinter.def.json +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Drukarka" + +#: fdmprinter.def.json +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Głębokość Maszyny" + +#: fdmprinter.def.json +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Obszar głowicy i wentylatora drukarki" + +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Wysokość Maszyny" + +#: fdmprinter.def.json +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Typ drukarki" + +#: fdmprinter.def.json +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Szerokość Maszyny" + +#: fdmprinter.def.json +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Specyficzne ustawienia drukarki" + +#: fdmprinter.def.json +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Drukowalne Zwisy" + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Spowoduj, że siatki, które się dotykają będą na siebie trochę nachodzić. To sprawia, że lepiej się łączą." + +#: fdmprinter.def.json +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Zmniejsz obszary podparcia na podłożu pod zwisem." + +#: fdmprinter.def.json +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 "Twórz podpory wszędzie pod siatką podpory, tak aby nie było zwisu w siatce podpory." + +#: fdmprinter.def.json +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 "Zmień pozycję końcową ekstrudera na bezwzględną, zamiast względem ostatniej pozycji głowicy." + +#: fdmprinter.def.json +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 "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ść." + +#: fdmprinter.def.json +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Objętościowy)" + +#: fdmprinter.def.json +msgctxt "material description" +msgid "Material" +msgstr "Materiał" + +#: fdmprinter.def.json +msgctxt "material label" +msgid "Material" +msgstr "Materiał" + +#: fdmprinter.def.json +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID Materiału" + +#: fdmprinter.def.json +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Objętość materiału między czyszczeniem" + +#: fdmprinter.def.json +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Max. Dystans Kombinowania Bez Retrakcji" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Maksymalne Przyspieszenie X" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Maksymalne Przyspieszenie Y" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Maksymalnie Przyspieszenie Z" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Maksymalne odchylenie" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Maksymalna Pręd. Wentylatora" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Maksymalna Przysp. Filamentu" + +#: fdmprinter.def.json +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Maksymalny Kąt Modelu" + +#: fdmprinter.def.json +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Maksymalna Rozdzielczość" + +#: fdmprinter.def.json +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Maksymalna Liczba Retrakcji" + +#: fdmprinter.def.json +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Maks. Kąt Rozciągania Ścian" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Maksymalna Prędkość X" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Maksymalna Prędkość Y" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Maksymalna Prędkość Z" + +#: fdmprinter.def.json +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Maksymalna średnica obsługiwana przez wieżę podporową" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Maksymalna Rozdzielczość Ruchów Jałowych" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "Maksymalne przyspieszenie dla silnika osi X" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Maksymalne przyspieszenie dla silnika osi Y." + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Maksymalne przyspieszenie dla silnika osi Z." + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Maksymalne przyspieszenie dla silnika filamentu." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Maksymalna średnica w kierunkach X/Y obszaru, który ma być podtrzymywana przez specjalistyczną wieżę podporową." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Połączone Siatki Pokrywają się" + +#: fdmprinter.def.json +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Poprawki Siatki" #: fdmprinter.def.json msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "Pozycja Siatki w X" -#: fdmprinter.def.json -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Przesunięcie zastosowane dla obiektu w kierunku X." - #: fdmprinter.def.json msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "Pozycja Siatki w Y" -#: fdmprinter.def.json -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Przesunięcie zastosowane dla obiektu w kierunku Y." - #: fdmprinter.def.json msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "Pozycja Siatki w Z" #: fdmprinter.def.json -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 "Przesunięcie zastosowane dla obiektu w kierunku Z. Za pomocą tego możesz sprecyzować co nazywamy 'Zatopieniem Obiektu." +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "" #: fdmprinter.def.json msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "Forma Obrotu Siatki" +#: fdmprinter.def.json +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Środek" + +#: fdmprinter.def.json +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Min. Szerokość Formy" + +#: fdmprinter.def.json +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Minimalny Czas Temp. Czuwania" + +#: fdmprinter.def.json +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Min. Długość Mostu" + +#: fdmprinter.def.json +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "" + +#: fdmprinter.def.json +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Okno Min. Dług. Ekstruzji" + +#: fdmprinter.def.json +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Minimalna Prędk. Posuwu" + +#: fdmprinter.def.json +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Min. Obszar Wypełnienia" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Minimalny Czas Warstwy" + +#: fdmprinter.def.json +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Minimalny Obwód Wieloboku" + +#: fdmprinter.def.json +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Min. Szerok. Skóry do Poszerzenia" + +#: fdmprinter.def.json +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Minimalna Prędkość" + +#: fdmprinter.def.json +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Minimalna Powierzchnia Podpór" + +#: fdmprinter.def.json +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Minimalna Powierzchnia Podłoża Podpór" + +#: fdmprinter.def.json +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Minimalna Powierzchnia Interfejsu Podpór" + +#: fdmprinter.def.json +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Minimalna Powierzchnia Dachu Podpór" + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Min. Odległość X/Y Podpory" + +#: fdmprinter.def.json +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "" + +#: fdmprinter.def.json +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Minimalna Objętość Przed Wypływaniem" + +#: fdmprinter.def.json +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "" + +#: fdmprinter.def.json +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 "Minimalny rozmiar obszaru dla wielokątów interfejsu podpór. Wielokąty, których powierzchnia jest mniejsza niż ta wartość, zostaną wydrukowane jako normalne podpory." + +#: fdmprinter.def.json +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 "Minimalny rozmiar powierzchni dla podpór. Obszary, które mają mniejszą powierzchnię od tej wartości, nie będą generowane." + +#: fdmprinter.def.json +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 "Minimalny rozmiar obszaru dla podłoża podpór. Obszary, które mają powierzchnię mniejszą od tej wartości, zostaną wydrukowane jako normalne podpory." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Minimalna szerokość, do której można zmniejszyć bazę podpory stożkowej. Małe szerokości mogą prowadzić do niestabilnych struktur nośnych." + +#: fdmprinter.def.json +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Forma" + +#: fdmprinter.def.json +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Kąt Formy" + +#: fdmprinter.def.json +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Wysokość Dachu Formy" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Brak wypełnienia w lukach osi Z" + +#: fdmprinter.def.json +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "" + +#: fdmprinter.def.json +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Brak" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Brak" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normalny" + +#: fdmprinter.def.json +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "" + +#: fdmprinter.def.json +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 "Zwykle Cura próbuje zszywać małe dziury w siatce i usunąć części warstwy z dużymi otworami. Włączenie tej opcji powoduje zostawienie tych części, których nie da się zszyć. Ta opcja powinna być używana jako ostatnia deska ratunku, gdy wszystko inne nie dostarczy właściwego G-code." + +#: fdmprinter.def.json +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Nie w Powłoce" + +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Kąt dyszy" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Średnica dyszy" + +#: fdmprinter.def.json +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Niedozwolone Obszary Dyszy" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID Dyszy" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Długość dyszy" + +#: fdmprinter.def.json +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Dodatkowa ekstruzja po zmianie dyszy" + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Prędk. Czyszcz. przy Zmianie Dyszy" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Prędk. Cofania przy Zmianie Dyszy" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Długość Retrakcji przy Zmianie Dyszy" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Prędk. Retrakcji przy Zmianie Dyszy" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Liczba Ekstruderów" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Liczba Ekstruderów, które są dostępne" + +#: fdmprinter.def.json +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Ilość Wolnych Warstw" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Liczba zespołów ekstruderów, które są dostępne; automatycznie ustawiane w oprogramowaniu" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Liczba zespołów esktruderów. Zespół ekstrudera to kombinacja podajnika, rurki Bowden i dyszy." + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Ilość powtórzeń przesunięcia dyszy po szczotce." + +#: fdmprinter.def.json +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 "Liczba redukcji wypełnienia o połowę podczas drukowania poniżej górnych powierzchni. Obszary, które są bliżej górnej powierzchni, mają większą gęstość, aż do Gęstości Wypełnienia." + +#: fdmprinter.def.json +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 "Ilość zmniejszeń gęstości wypełnienia podpory o połowę podczas przesuwania się dalej pod górnymi powierzchniami. Obszary, które są bliżej górnych powierzchni mają większą gęstość, aż do Gęstości Wypełn. Podpory." + +#: fdmprinter.def.json +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Czworościan" + +#: fdmprinter.def.json +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Wyłącz" + +#: fdmprinter.def.json +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Przesunięcie zastosowane dla obiektu w kierunku X." + +#: fdmprinter.def.json +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Przesunięcie zastosowane dla obiektu w kierunku Y." + +#: fdmprinter.def.json +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 "Przesunięcie zastosowane dla obiektu w kierunku Z. Za pomocą tego możesz sprecyzować co nazywamy 'Zatopieniem Obiektu." + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Przesunięcie ekstrudera" + +#: fdmprinter.def.json +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Jeden na raz" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Przeprowadzaj prasowanie tylko na najwyższej warstwie siatki. Oszczędza to czas jeżeli niższe warstwy nie muszą mieć gładkie wykończenia powierzchni." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Kąt Osłony Wycierającej" + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Odległ. Osłony Wycierającej" + +#: fdmprinter.def.json +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Optymalizuj Kolejność Drukowania Ścian" + +#: fdmprinter.def.json +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 "Optymalizuje kolejność, w jakiej będą drukowane ścianki w celu zredukowania ilości retrakcji oraz dystansu ruchów jałowych. Większość części skorzysta na załączeniu tej funkcji, jednak w niektórych przypadkach czas druku może się wydłużyć, proszę więc o porównanie oszacowanego czasu z funkcją załączoną oraz wyłączoną. Pierwsza warstwa nie zostanie zoptymalizowana, jeżeli jako poprawa przyczepności stołu zostanie wybrany obrys." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Zew. średnica dyszy" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Przyspieszenie Ściany Zew" + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Esktruder Zew. Ściany" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Przepływu ścianek zewnętrznych" + +#: fdmprinter.def.json +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Wkład Zew. Ściany" + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Zryw Zew. Ścian" + +#: fdmprinter.def.json +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Szerokość Linii Ścian(y) Zewnętrznych" + +#: fdmprinter.def.json +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Prędkość Zew. Ściany" + +#: fdmprinter.def.json +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Długość Czyszczenia Zew. Ściana" + +#: fdmprinter.def.json +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Kąt Nawisającej Ścianki" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Prędkość Ścianki Nawisającej" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Wstrzymaj czyszczenie, jeśli brak retrakcji." + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Procent prędkości wentylatora używany podczas drukowania ścian i skóry mostów." + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Procent prędkości wentylatora używany podczas drukowania drugiej warstwy skóry most." + +#: fdmprinter.def.json +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 "Procentowa prędkść wentylatora, która zostanie użyta podczas drukowania obszarów powłoki leżących bezpośrednio nad podstawami. Użycie wysokiej prędkości może ułatwić usuwanie podpór." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Przyspieszenie Wieży Czyszczącej" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Brim" +msgstr "Obrys wieży czyszczącej" + +#: fdmprinter.def.json +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Przepływ Wieży Czyszczącej" + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Zryw Wieży Czyszczącej" + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Szerokość Linii Wieży Czyszczczenia" + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Min. Objętość Wieży Czyszczącej" + +#: fdmprinter.def.json +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Rozmiar Wieży Czyszczącej" + +#: fdmprinter.def.json +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Prędkość Wieży Czyszczenia" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Pozycja Wieży Czyszcz. X" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Pozycja Wieży Czyszcz. Y" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +msgstr "Wieże czyszczące mogą potrzebować dodatkowej adhezji zapewnionej przez obrys, nawet jeśli model nie potrzebuje. Nie można używać z typem przyczepności „tratwa”." + +#: fdmprinter.def.json +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Przyspieszenie Druku" + +#: fdmprinter.def.json +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Zryw Druku" + +#: fdmprinter.def.json +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Sekwencja Wydruku" + +#: fdmprinter.def.json +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Prędkość Druku" + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Drukuj Cienkie Linie" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Wydrukuj modele jako formę, którą można wyrzucić w celu uzyskania odlewu, który przypomina modele na płycie." + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Drukuj części modelu, które są poziomo cieńsze niż rozmiar dyszy." + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Prędkość używana podczas drukowania drugiej warstwy skóry mostu." + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Prędkość używana podczas drukowania trzeciej warstwy skóry mostu." + +#: fdmprinter.def.json +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 "Wydrukuj wypełnienie przed wydrukowaniem ścian. Drukowanie ścian jako pierwsze może prowadzić do bardziej dokładnych ścian, ale pogorszy zwisy. Drukowanie wypełnienia najpierw prowadzi do mocniejszych ścian, ale wzór wypełnienia może czasem być widoczny przez powierzchnię." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Temperatura Druku" + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Temp. Druku Początk. Warstwy" + +#: fdmprinter.def.json +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "" + +#: fdmprinter.def.json +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 "Drukuje dodatkową ścianę na każdej warstwie. W ten sposób wypełnienie jest tworzone pomiędzy tymi dod. ścianami, co skutkuje mocniejszymi wydrukami." + +#: fdmprinter.def.json +msgctxt "resolution label" +msgid "Quality" +msgstr "Jakość" + +#: fdmprinter.def.json +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Ćwierć Sześcienny" + +#: fdmprinter.def.json +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Tratwa" + +#: fdmprinter.def.json +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Przerwa Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "" + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Prędk. Went. Podst. Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Rozstaw Linii Podstawy Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Szerokość Linii Podst. Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Przysp. Podst. Warstwy Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Zryw Podst. Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Prędk. Druku Podst. Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Grubość Podstawy Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Dod. Margines Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Prędk. Went. Tratwa" + +#: fdmprinter.def.json +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "" + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Prędk. Went. Środek Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Szerokość Linii Środka Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Przysp. Druku Środka Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Zryw Środek Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Prędk. Druku Środka Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Przerwy Środka Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Grubość Środka Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Przysp. Druku Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Zryw Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Prędk. Druku Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Wygładzanie Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "" + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Prędk. Went. Góra Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Grubość Warstwy Góra Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Górne Warstwy Tartwy" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Szerokość Linii Góra Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Przysp. Druku Góry Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Zryw Góry Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Prędk. Druku Góry Tratwy" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Przerwy Góra Tratwy" + +#: fdmprinter.def.json +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Losowe" + +#: fdmprinter.def.json +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Losowy punkt startu wypełnienia" + +#: fdmprinter.def.json +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 "Losuje, która linia wypełnienia jest drukowana jako pierwsza. Dzięki temu nie ma zjawiska, kiedy jeden segment jest mocniejszy. Kosztem jest dodatkowy ruchu jałowy." + +#: fdmprinter.def.json +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 "Losowe drgania podczas drukowania zewnętrznej ściany, dzięki czemu powierzchnia ma szorstki i rozmyty wygląd." + +#: fdmprinter.def.json +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Prostokątny" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Normalna Pręd. Wentylatora" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Regularna Pręd. Went. na Wysokości" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Regularna Pręd. Went. na Wartswie" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Regularny/Maks. Próg Pręd. Wentylatora" + +#: fdmprinter.def.json +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Ekstruzja Względna" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Usuń Wszystkie Otwory" + +#: fdmprinter.def.json +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Usuń Pustą Pierwsz. Warstwę" + +#: fdmprinter.def.json +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Usuń Przecięcia Siatki" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "" + +#: fdmprinter.def.json +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 "Usuń obszary gdzie kilka siatek nakłada się na siebie. Może zostać użyte, jeżeli dwa obiekty do druku 2 materiałami nachodzą na siebie." + +#: fdmprinter.def.json +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 "Usuń puste warstwy poniżej pierwszej drukowanej warstwy jeżeli takie występują. Wyłączenie tego ustawienia może powodować puste pierwsze warstwy jeżeli Tolerancja Cięcia jest ustawiona na Włącznie lub Środek." + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "" + +#: fdmprinter.def.json +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 "Usuń otwory w każdej warstwie i zachowuj tylko zewnętrzny kształt. Zignoruje to niewidoczną wewnętrzną geometrię. Ignoruje jednak otwory warstw, które można zobaczyć z góry lub do dołu." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +#: fdmprinter.def.json +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 "Zastępuje najbardziej zewnętrzną część wzoru górnego/dolnego za pomocą kilku koncentrycznych linii. Korzystanie z jednej lub dwóch linii poprawia dachy, które zaczynają się na wypełnieniu." + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution description" +msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." +msgstr "Rozdzielczość przeliczania kolizji, aby unikać zderzeń z modelem. Ustawienie niższej wartości spowoduje bardziej dokładne drzewa, które rzadziej zawodzą, ale zwiększa to drastycznie czas cięcia." + +#: fdmprinter.def.json +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Cofnij Przed Zew. Ścianą" + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Retrakcja podczas Zmiany Warstwy" + +#: fdmprinter.def.json +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Cofnij filament, gdy dysza porusza się nad obszarem, w którym nie ma drukować." + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "Cofnij filament, gdy dysza przesuwa się do następnej warstwy." + +#: fdmprinter.def.json +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Długość Retrakcji" + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Dod. Czyszcz. Wart. Retrakcji" + +#: fdmprinter.def.json +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Minimalny Przejazd dla Retrakcji" + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Prędk. Dopełn. Retrakcji" + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Prędk. Wycofania Retrakcji" + +#: fdmprinter.def.json +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Prędkość Retrakcji" + +#: fdmprinter.def.json +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Prawa" + +#: fdmprinter.def.json +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Wybór Rogu Szwu" + +#: fdmprinter.def.json +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 "Ustaw wysokość osłony przeciwwiatrowej. Wybierz czy drukować osłonę do pełnej wysokości modelu czy do określonej wysokości." + +#: fdmprinter.def.json +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Ustawienia używane do drukowania wieloma głowicami." + +#: fdmprinter.def.json +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Ustawienia, które są używane tylko wtedy, gdy CuraEngine nie jest wywoływana przez frontend Cura." + +#: fdmprinter.def.json +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Najostrzejszy róg" + +#: fdmprinter.def.json +msgctxt "shell description" +msgid "Shell" +msgstr "Powłoka" + +#: fdmprinter.def.json +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Najkrótsze" + +#: fdmprinter.def.json +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Pokaż Warianty Maszyny" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "" + +#: fdmprinter.def.json +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Odległość Rozsz. Skóry" + +#: fdmprinter.def.json +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Nakładanie się Skóry" + +#: fdmprinter.def.json +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Procent Nakładania się Skóry" + +#: fdmprinter.def.json +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Szerokość Usuwania Skóry" + +#: fdmprinter.def.json +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 "Obszary skóry, które są węższe niż to, nie zostaną poszerzone. W ten sposób unikamy rozszerzania wąskich skór, które są tworzone, kiedy powierzchnia jest blisko pionowi." + +#: fdmprinter.def.json +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Pomijaj jedną z każdych N linii, aby struktura podpory była łatwiejsza do odłamania." + +#: fdmprinter.def.json +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 "Pomijaj niektóre połączenia linii podpory, aby struktura podpory była łatwiejsza do odłamania. To ustawienie dotyczy wypełn. podpory Zygzak." + +#: fdmprinter.def.json +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Obwódka" + +#: fdmprinter.def.json +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Odległ. Obwódki" + +#: fdmprinter.def.json +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Liczba Linii Obwódki" + +#: fdmprinter.def.json +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Przyspieszenie Obwódki/Obrysu" + +#: fdmprinter.def.json +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Przepływ warstwy adhezyjnej" + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Zryw Obwódki/Obrysu" + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Szer. Linii Obwódki/Obrysu" + +#: fdmprinter.def.json +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Min. Dł. Obwódki/Obrysu" + +#: fdmprinter.def.json +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Prędkość Obwódka/Obrys" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Tolerancja Cięcia" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Prędkość początkowej warstwy małych obiektów" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Maksymalna długość małych elementów" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Prędkość małych elementów" + +#: fdmprinter.def.json +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Maksymalny rozmiar małych otworów" + +#: fdmprinter.def.json +#, fuzzy +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Końcowa Temp. Druku" + +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + +#: fdmprinter.def.json +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 "Pierwsza warstwa małych obiektów zostanie wydrukowana z zadanym procentem ich normalnej prędkości drukowania. Wolniejsze drukowanie może poprawić przyczepność i dokładność." + +#: fdmprinter.def.json +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 "Małe obiekty zostaną wydrukowane z zadanym procentem ich normalnej prędkości drukowania. Wolniejsze drukowanie może poprawić przyczepność i dokładność." + +#: fdmprinter.def.json +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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Inteligentne ukrywanie" + +#: fdmprinter.def.json +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Wygładź Spiralne Kontury" + +#: fdmprinter.def.json +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 "Wygładź spiralne kontury, aby zmniejszyć widoczność szwu Z (szew Z powinien być ledwo widoczny na wydruku, ale nadal będzie widoczny w widoku warstwy). Pamiętaj, że wygładzanie będzie powodować rozmycie drobnych szczegółów powierzchni." + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Trochę materiału może wypływać podczas ruchu jałowego co może zostać skompensowane tutaj." + +#: fdmprinter.def.json +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 "Niektóre materiały mogą wyciekać podczas ruchów czyszczenia, można to tutaj skompensować." + +#: fdmprinter.def.json +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Specjalne Tryby" + +#: fdmprinter.def.json +msgctxt "speed description" +msgid "Speed" +msgstr "Prędkość" + +#: fdmprinter.def.json +msgctxt "speed label" +msgid "Speed" +msgstr "Prędkość" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Szybkość przesuwania osi Z podczas skoku." + +#: fdmprinter.def.json +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Spiralizuj Zew. Kontur" + +#: fdmprinter.def.json +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 "Spirala wygładzająca ruch w Z na zewnętrznej krawędzi. Powoduje to stały wzrost Z w całym druku. Ta funkcja zamienia pełny model w pojedynczo ścienny wydruk z pełnym dnem. Ta funkcja powinna być włączona tylko wtedy, gdy każda warstwa zawiera tylko jedną część." + +#: fdmprinter.def.json +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Temperatura Czuwania" + +#: fdmprinter.def.json +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "Początkowy G-code" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Kroki na milimetr (E)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Kroki na milimetr (X)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Kroki na milimetr (Y)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Kroki na milimetr (Z)" + +#: fdmprinter.def.json +msgctxt "support description" +msgid "Support" +msgstr "Podpory" + +#: fdmprinter.def.json +msgctxt "support label" +msgid "Support" +msgstr "Podpory" + +#: fdmprinter.def.json +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Przyspieszenie Podpór" + +#: fdmprinter.def.json +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Odległ. na Dole Podpory" + +#: fdmprinter.def.json +#, fuzzy +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Ilość Ścianek Podpory" + +#: fdmprinter.def.json +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Ilość Linii Obrysu Podpór" + +#: fdmprinter.def.json +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Szerokość Obrysu Podpór" + +#: fdmprinter.def.json +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Liczba Linii Kawałka Podpory" + +#: fdmprinter.def.json +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Wielkość Kawałka Podpory" + +#: fdmprinter.def.json +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Gęstość Podpory" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Priorytet Odległości Podpory" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Ekstruder Podpory" + +#: fdmprinter.def.json +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Przyspieszenie Podłoża Podpory" + +#: fdmprinter.def.json +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Gęstość Podłoża Podpory" + +#: fdmprinter.def.json +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Ekstruder Podłoża Podpory" + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Przepływ podstawy podpór" + +#: fdmprinter.def.json +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Rozrost Poziomy Podłoża Podpór" + +#: fdmprinter.def.json +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Zryw Podł. Podpór" + +#: fdmprinter.def.json +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Kierunek linii podstawy podpór" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Odstęp między Liniami Podłoża Podpory" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Szerokość Linii Podłoża Podpory" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Wzór Podłoża Podpory" + +#: fdmprinter.def.json +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Prędk. Podstawy Podpory" + +#: fdmprinter.def.json +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Grubość Podłoża Podpory" + +#: fdmprinter.def.json +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Przepływ podpór" + +#: fdmprinter.def.json +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Poszerzenie Podpór Poziome" + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Przyspieszenie Wypełnienia Podpory" + +#: fdmprinter.def.json +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Ekstruder Wypełnienia Podpory" + +#: fdmprinter.def.json +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Zryw Wypełnienia Podpory" + +#: fdmprinter.def.json +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Wys. Warstwy Wypełn. Podpory" + +#: fdmprinter.def.json +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Kierunek Linii Wypełnienia Podpory" + +#: fdmprinter.def.json +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Prędkość Wypełn. Podpór" + +#: fdmprinter.def.json +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Przyspieszenie Pow. Styku Podpory" + +#: fdmprinter.def.json +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Gęstość Połączenia Podpory" + +#: fdmprinter.def.json +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Ekstruder Połączenia Podpory" + +#: fdmprinter.def.json +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Przepływ podłoża podpór" + +#: fdmprinter.def.json +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Rozrost Poziomy Interfejsu Podpór" + +#: fdmprinter.def.json +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Zryw Połączenia Podpory" + +#: fdmprinter.def.json +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Kierunek linii podłoża podpór" + +#: fdmprinter.def.json +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Szerokość Linii Połączenia Podpory" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Wzór Połączenia Podpory" + +#: fdmprinter.def.json +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Rozdzielczość Połączenia Podpory" + +#: fdmprinter.def.json +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Prędk. Połączenia Podpór" + +#: fdmprinter.def.json +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Grubość Połączenia Podpory" + +#: fdmprinter.def.json +#, fuzzy +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Ilość Ścianek Podpory" + +#: fdmprinter.def.json +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Zryw Podpory" + +#: fdmprinter.def.json +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Odległość Łączenia Podpór" + +#: fdmprinter.def.json +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Odstępy między Liniami Podpory" + +#: fdmprinter.def.json +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Szerokość Linii Podpory" + +#: fdmprinter.def.json +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Siatka Podpory" + +#: fdmprinter.def.json +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Kąt Zwisu dla Podpory" + +#: fdmprinter.def.json +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Wzór Podpory" + +#: fdmprinter.def.json +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Rozmieszczenie Podpór" + +#: fdmprinter.def.json +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Przyspieszenie Dachu Podpory" + +#: fdmprinter.def.json +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Gęstość Dachu Podpory" + +#: fdmprinter.def.json +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Ekstruder Dachu Podpory" + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Przepływ dachów podpór" + +#: fdmprinter.def.json +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Rozrost Poziomy Dachu Podpór" + +#: fdmprinter.def.json +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Zryw Dachu Podpory" + +#: fdmprinter.def.json +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Kierunek linii dachu podpór" + +#: fdmprinter.def.json +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Odległość Linii Dachu Podpory" + +#: fdmprinter.def.json +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Szerokość Linii Dachu Podpory" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Wzór Dachu Podpory" + +#: fdmprinter.def.json +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Prędkość Dachu Podpory" + +#: fdmprinter.def.json +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Grubość Dachu Podpory" + +#: fdmprinter.def.json +#, fuzzy +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Ilość Ścianek Podpory" + +#: fdmprinter.def.json +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Prędkość Podpór" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Wysokość Stopnia Podpory" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Maks. Szerokość Stopnia Podpory" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Odległość od Góry Podpory" + +#: fdmprinter.def.json +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Ilość Ścianek Podpory" + +#: fdmprinter.def.json +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Odległość X/Y Podpory" + +#: fdmprinter.def.json +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Odległość Podpory Z" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Prędkość Wentylatora Podpartej Powłoki" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Powierzchnia" + +#: fdmprinter.def.json +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Energia Powierzchni" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Tryb Powierzchni" + +#: fdmprinter.def.json +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Tendencja przyczepności powierzchni." + +#: fdmprinter.def.json +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Energia powierzchni." + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + +#: fdmprinter.def.json +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 "Przełącz się, to której przecinającej się siatki będą należały z każdą warstwą, tak że nakładające się siatki przeplatają się. Wyłączenie tej opcji spowoduje, że jedna siatka uzyska całą objętość podczas nakładania się, kiedy jest usunięta z pozostałych siatek." + +#: fdmprinter.def.json +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 "Docelowa odległość pozioma między dwiema sąsiadującymi warstwami. Zmniejszenie tego ustawienia powoduje użycie cieńszych warstw w celu przybliżenia krawędzi warstw." + +#: fdmprinter.def.json +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "Współrzędna X pozycji blisko miejsca gdzie ma rozpoczynać się drukowanie każdej warstwy." + +#: fdmprinter.def.json +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "Współrzędna X położenia, w pobliżu miejsca rozpoczęcia drukowania każdej warstwy." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Współrzędna X, w której dysza jest czyszczona na początku wydruku." + +#: fdmprinter.def.json +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "Współrzędna Y pozycji blisko miejsca gdzie ma rozpoczynać się drukowanie każdej warstwy." + +#: fdmprinter.def.json +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "Współrzędna Y położenia, w pobliżu miejsca rozpoczęcia drukowania każdej warstwy." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Współrzędna Y, w której dysza jest czyszczona na początku wydruku." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Współrzędna Z, w której dysza jest czyszczona na początku wydruku." + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "Przyspieszenie podczas drukowania pierwszej warstwy." + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Przyspieszenie dla początkowej warstwy." + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Przyspieszenie ruchów jałowych na pierwszej warstwie." + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Przyspieszenie dla ruchów jałowych na początkowej warstwie." + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "Przyspieszenie, z jakim drukowane są ściany wewn." + +#: fdmprinter.def.json +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "Przyspieszenie, z którym drukowane jest wypełnienie." + +#: fdmprinter.def.json +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "Przyspieszenie, z jakim przeprowadzane jest prasowanie." + +#: fdmprinter.def.json +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Przyspieszenie, z jakim odbywa się drukowanie." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Przyspieszenie, z których drukowane jest wypełnienie podpory." + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "Przyspieszenie, z jakim drukowana jest środkowa warstwa tratwy." + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "Przyspieszenia, z jakim drukowane są ściany zewn." + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "Przyspieszenie, z którym drukowana jest wieża czyszcząca." + +#: fdmprinter.def.json +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "Przyspieszenie, z jakim tratwa jest drukowana." + +#: fdmprinter.def.json +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 "Przyspieszenie, z jakim drukowane są dachy i podłoża podpory. Drukowanie przy niższym przyspieszeniu może poprawić jakość zwisu." + +#: fdmprinter.def.json +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 "Przyspieszenie, z jakim drukowane są dachy podpór. Drukowanie przy niższym przyspieszeniu może poprawić jakość zwisu." + +#: fdmprinter.def.json +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 "Przyspieszenie z jakim drukowane są obwódka i obrys. Normalnie są one drukowane z przyspieszeniem pierwszej warstwy, ale czasami będziesz chciał wydrukować obwódkę i obrys z innym przyspieszeniem." + +#: fdmprinter.def.json +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Przyspieszenie, z którym drukowane są podpory." + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Przyspieszenie, z jakim drukowane są górne warstwy tratwy." + +#: fdmprinter.def.json +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Przyspieszenie, z jakim drukowane są ściany." + +#: fdmprinter.def.json +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "Przyspieszenie, z jakim drukowane są warstwy górnej powierzchni skóry." + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Przyspieszenie, z jakim drukowane są górne/dolne warstwy." + +#: fdmprinter.def.json +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Przyspieszenie, z jakim wykonywane są ruchy jałowe." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Wielkość retrakcji przy przełączaniu ekstruderów. Ustaw na 0, aby wyłączyć retrakcję. Powinno być ustawione tak samo jak długość strefy grzania." + +#: fdmprinter.def.json +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 "Kąt pomiędzy poziomą powierzchnią a częścią stożkową bezpośrednio ponad dyszą." + +#: fdmprinter.def.json +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 "Kąt dachu wieży. Wyższa wartość powoduje punktowy dach wieży, a niższa wartość powoduje płaskie dachy wieży." + +#: fdmprinter.def.json +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 "Kąt zwisania ścian zewnętrznych utworzonych dla formy. 0 ° spowoduje, że powłoka zewnętrzna formy będzie pionowa, a 90 ° sprawi, że na zewnątrz modelu podąży za konturem modelu." + +#: fdmprinter.def.json +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 "Kąt średnicy gałęzi, które stają się grubsze bliżej podłoża. Kąt 0 spowoduje równą grubość na całej długości gałęzi. Delikatny kąt może spowodować lepszą stabilność podpór." + +#: fdmprinter.def.json +msgctxt "support_tree_angle description" +msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "Kąt gałęzi. Użyj mniejszego kąta, aby były bardziej pionowe i stabilne. Użyj większego kąta, aby mieć większy zasięg." + +#: fdmprinter.def.json +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 "Kąt nachylenia podpory stożkowej. Przy 0 stopniach jest pionowa a przy 90 stopniach jest pozioma. Mniejsze kąty sprawiają, że podparcie jest bardziej wytrzymałe, ale składa się z większej ilości materiału. Kąty ujemne powodują, że podstawa wspornika jest szersza niż góra." + +#: fdmprinter.def.json +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 "Średnia gęstość punktów wprowadzonych na każdy wielokąt na warstwie. Zauważ, że oryginalne punkty wielokąta są odrzucane, a więc niska gęstość powoduje zmniejszenie rozdzielczości." + +#: fdmprinter.def.json +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 "Średnia odległość między losowymi punktami wprowadzonymi w każdym segmencie linii. Zwróć uwagę, że oryginalne punkty wielokąta są odrzucane, a zatem duża gładkość powoduje zmniejszenie rozdzielczości. Wartość ta musi być większa niż połowa Grubości Nierównej Skóry." + +#: fdmprinter.def.json +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "Domyślną przyspieszenie ruchu głowicy." + +#: fdmprinter.def.json +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 "Domyślna temperatura używana do drukowania. Powinno to być \"podstawowa\" temperatura materiału. Wszystkie inne temperatury powinny wykorzystywać przesunięcie względem tej wartości" + +#: fdmprinter.def.json +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 "Domyślna temperatura używana dla podgrzewanej platformy roboczej. To powinna być \"bazowa\" temperatura platformy roboczej. Wszystkie inne temperatury drukowania powinny używać przesunięcia względem tej wartości" + +#: fdmprinter.def.json +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 "Gęstość warstwy skóry mostu. Wartości mniejsze od 100 będą zwiększać przerwy pomiędzy liniami skóry." + +#: fdmprinter.def.json +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 "Gęstość podłoża podpory. Wyższa wartość powoduje lepszą adhezję podpory na górze modelu." + +#: fdmprinter.def.json +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 "Gęstość dachów podpór. Wyższa wartość powoduje lepsze zwisy, ale podpory są trudniejsze do usunięcia." + +#: fdmprinter.def.json +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 "Gęstość drugiej warstwy skóry mostu. Wartości mniejsze od 100 będą zwiększać przerwy pomiędzy liniami skóry." + +#: fdmprinter.def.json +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 "Gęstość trzeciej warstwy skóry mostu. Wartości mniejsze od 100 będą zwiększać przerwy pomiędzy liniami skóry." + +#: fdmprinter.def.json +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "Głębokość (w kierunku Y) obszaru drukowania." + +#: fdmprinter.def.json +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "Średnica wieży specjalnej." + +#: fdmprinter.def.json +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 "Średnica najcieńszej gałęzi drzewiastej podpory. Grubsze gałęzie są bardziej sztywne. Gałęzie bliżej podłoża będą grubsze od tego." + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "Średnica koła, które przesuwa materiał w podajniku." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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ą." + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "Odległość pomiędzy liniami prasowania." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Odległość pomiędzy linami tratwy na podstawowej warstwie tratwy. Szerokie odstępy ułatwiają usuwanie tratwy ze stołu." + +#: fdmprinter.def.json +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 "Odległość między liniami na środkowej warstwie tratwy. Odległość środkowa powinna być dość szeroka, a jednocześnie wystarczająco gęsta, aby podtrzymywać górne warstwy tratwy." + +#: fdmprinter.def.json +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 "Odległość między liniami na górnej warstwie tratwy. Rozstaw powinien być równy szerokości linii, tak że powierzchnia jest pełna." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Odległość od modelu do najbardziej wysuniętej na zewnątrz linii obrysu. Większy obrys zwiększa adhezję do stołu, ale również zmniejsza efektywny obszar wydruku." + +#: fdmprinter.def.json +#, 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 "Odległość od końcówki dyszy, gdzie parkować głowicę gdy nie jest używana." + +#: fdmprinter.def.json +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 "Odległość od końcówki dyszy, z której ciepło dyszy przenoszone jest do filamentu." + +#: fdmprinter.def.json +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 "Odległość na jaką dolne skóry są rozszerzane w kierunku wypełnienia. Wyższe wartości powodują lepsze łączenie się skóry i wypełnienia i powodują, że ściany sąsiednich warstw lepiej łączą się ze skórą. Niższe wartości oszczędzają materiał." + +#: fdmprinter.def.json +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 "Odległość na jaką skóry są rozszerzane w kierunku wypełnienia. Wyższe wartości powodują lepsze łączenie się skóry i wypełnienia i powodują, że ściany sąsiednich warstw lepiej łączą się ze skórą. Niższe wartości oszczędzają materiał." + +#: fdmprinter.def.json +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 "Odległość na jaką górne skóry są rozszerzane w kierunku wypełnienia. Wyższe wartości powodują lepsze łączenie się skóry i wypełnienia i powodują, że ściany sąsiednich warstw lepiej łączą się ze skórą. Niższe wartości oszczędzają materiał." + +#: fdmprinter.def.json +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "Odległość, którą głowica musi pokonać w tę i z powrotem po szczotce." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Dodatkowa szybkość, w wyniku której dysze chłodzą się podczas ekstruzji. Ta sama wartość jest używana do oznaczania szybkości utraty ciepła podczas nagrzewania w czasie ekstruzji." + +#: fdmprinter.def.json +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 "Ekstruder wykorzystywany do drukowania pierwszej warstwy wypełnienia podpory. Używane do multi-ekstruzji." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Ekstruder używany do druku podłoża podpory. Służy do multi-ekstruzji." + +#: fdmprinter.def.json +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 "Ekstruder wykorzystywany do drukowania wypełnienia podpory. Używane do multi-ekstruzji." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Ekstruder wykorzystywany do drukowania dachów i podłoży podpory. Używane do multi-ekstruzji." + +#: fdmprinter.def.json +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 "Ekstruder wykorzystywany do drukowania dachów podpory. Używany do multi-ekstruzji." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "Ekstruder używany do drukowania obwódki/obrysu/tratwy. Używane przy multi-ekstruzji." + +#: fdmprinter.def.json +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "Ekstruder używany do drukowania podpory. Używane do multi-ekstruzji." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "Esktruder używany do drukowania zewn. ściany. Używane w multi-ekstruzji." + +#: fdmprinter.def.json +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 "Ekstruder używany do drukowania górnej i dolnej skóry. Używane w multi-ekstruzji." + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "Esktruder używany do drukowania górnej skóry. Używane w multi-ekstruzji." + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "Ekstruder używany do drukowania ścian. Używane w multi-esktruzji." + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Prędkość wentylatora dla podstawowej warstwy tratwy." + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "Prędkość wentylatora dla środkowej warstwy tratwy." + +#: fdmprinter.def.json +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Prędkość wentylatora dla tratwy." + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Prędkość wentylatora dla górnych warstw tratwy." + +#: fdmprinter.def.json +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 "Lokalizacja pliku obrazu, którego jasność będzie determinowała minimalną gęstość wypełnienia wydruku w danym punkcie." + +#: fdmprinter.def.json +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 "Lokalizacja pliku obrazu, którego jasność będzie determinowała minimalną gęstość wypełnienia podstawy w danym punkcie." + +#: fdmprinter.def.json +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 "Pierwsze warstwy są drukowane wolniej niż w pozostałej części modelu, więc lepiej przylegają do stołu i zwiększa się prawdopodobieństwo sukcesu. Prędkość wzrasta stopniowo w czasie druku tych warstw." + +#: fdmprinter.def.json +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 "Przerwa pomiędzy ostatnią warstwą tratwy a pierwszą warstwą modelu. Tylko ta pierwsza warstwa jest podnoszona o tę wartość w celu zmniejszenia wiązania pomiędzy warstwą tratwy a modelem. Ułatwia to odrywanie tratwy." + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Wysokość (w kierunku Z) obszaru drukowania." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Różnica w wysokości podczas przeprowadzania Skoku Z." + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Różnica w wysokości podczas przeprowadzania Skoku Z." + +#: fdmprinter.def.json +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 "Grubość każdej warstwy w mm. Wyższe wartości powodują szybszy wydruk w niskiej rozdzielczości, niższe wartości powodują wolniejszy wydruk w wyższej rozdzielczości." + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "Wysokość wypełnienia o danej gęstości przed przejściem na połowę gęstości." + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "Wysokość wypełnienia podpory o danej gęstości przed przełączeniem na połowę gęstości." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Wysokość początkowej warstwy w mm. Grubsza początkowa warstwa powoduje lepszą przyczepność do stołu." + +#: fdmprinter.def.json +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 "Wysokość stopni w schodkowym dole podpory spoczywającej na modelu. Niska wartość utrudnia usunięcie podpory, ale zbyt duża wartość może prowadzić do niestabilnej podpory. Ustaw na zero, aby wyłączyć zachowanie schodkowe." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" +"Pozioma odległość między obwódką a pierwszą warstwą nadruku.\n" +"Jest to o minimalnej odległości. Z tej odległości linie będą nakładane w kierunku zewnętrznym." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "Wzór wypełnienia jest przesunięty o tę odległość wzdłuż osi X." + +#: fdmprinter.def.json +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "Wzór wypełnienia jest przesunięty o tę odległość wzdłuż osi Y." + +#: fdmprinter.def.json +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. Użyj tego ustawienia, jeśli używasz dyszę o niestandardowym rozmiarze." + +#: fdmprinter.def.json +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Zryw, z którym drukowana jest podstawowa warstwa tratwy." + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "Zryw, z którym drukowany jest środek tratwy." + +#: fdmprinter.def.json +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "Zryw, z jakim drukowana jest tratwa." + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Zryw, z jakim drukowane są górne warstwy tratwy." + +#: fdmprinter.def.json +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 "Największa szerokość dolnych 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 dolnych skór na pochyłych powierzchniach modelu." + +#: fdmprinter.def.json +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 "Największa szerokość 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/dolnych skór na pochyłych powierzchniach modelu." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Czas warstwy, który ustala próg pomiędzy regularną prędkością wentylatora a maksymalną prędkością wentylatora. Warstwy, które są drukowane wolniej niż ten czas, używają regularnej prędkości wentylatora. W przypadku szybszych warstw prędkość wentylatora stopniowo wzrasta w kierunku maksymalnej prędkości wentylatora." + +#: fdmprinter.def.json +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "Długość materiału wycofanego podczas retrakcji." + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Materiał platformy roboczej zainstalowanej w drukarce." + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "Maksymalna dozwolona różnica wysokości względem bazowej wysokości warstwy." + +#: fdmprinter.def.json +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 "Maksymalny kąt, jaki będzie mieć część w tarczy wycierającej. Przy 0 stopniach jest pionowa i 90 stopni jest pozioma. Mniejszy kąt prowadzi do mniej nieudanych osłon, ale używa więcej materiału." + +#: fdmprinter.def.json +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 "Maksymalny kąt zwisów po którym będą one drukowalne. Przy wartości 0 ° wszystkie zwisy są zastępowane przez fragment modelu połączony ze stołem, a 90 ° w żaden sposób nie zmienia modelu." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Maksymalne odchylenie dozwolone przy zmniejszaniu rozdzielczości dla ustawienia maksymalnej rozdzielczości. Jeśli to zwiększysz, wydruk będzie mniej dokładny, ale g-code będzie mniejszy. Maksymalne odchylenie jest limitem dla maksymalnej rozdzielczości, więc wystąpi konflikt, maksymalne odchylenie zawsze będzie używane." + +#: fdmprinter.def.json +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 "Maksymalna odległość między konstrukcjami wspornymi w kierunkach X/Y. Kiedy oddzielne struktury są bliżej siebie niż ta wartość, struktury łączą się w jedną." + +#: fdmprinter.def.json +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 "Maksymalna odległość w mm do przesuwania filamentu w celu kompensacji zmian wielkości przepływu." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "Maksymalna zmiana prędkości chwilowej podczas drukowania pierwszej warstwy." + +#: fdmprinter.def.json +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "Maksymalna zmiana prędkości chwilowej głowicy drukującej." + +#: fdmprinter.def.json +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Maksymalna nagła zmiana prędkości podczas przeprowadzania prasowania." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane jest wypełnienie podpory." + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są zewnętrzne ściany." + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "Maksymalna zmiana chwilowej prędkości z jaką drukowana jest wieża czyszcząca." + +#: fdmprinter.def.json +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są podłoża i dachy podpory." + +#: fdmprinter.def.json +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są dachy podpory." + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są obwódka i obrys." + +#: fdmprinter.def.json +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są podpory." + +#: fdmprinter.def.json +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są ściany." + +#: fdmprinter.def.json +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "Maksymalna nagła zmiana prędkości, z jaką drukowane są warstwy górnej powierzchni skóry." + +#: fdmprinter.def.json +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są górne/dolne warstwy." + +#: fdmprinter.def.json +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "Maksymalna zmiana prędkości chwilowej z jaką wykonywane są ruchy jałowe." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "Maksymalna prędkość silnika osi X." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Maksymalna prędkość silnika osi Y." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Maksymalna prędkość silnika osi Z." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "Maksymalna prędkość filamentu." + +#: fdmprinter.def.json +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 "Maksymalna szerokość stopni dołu schodkowego podpory opartej na modelu. Niska wartość sprawia, że podpora jest trudniejsza do usunięcia, ale zbyt wysokie wartości mogą prowadzić do niestabilnych podpór." + +#: fdmprinter.def.json +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Minimalna prędkość ruchu głowicy drukującej." + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "Minimalna temperatura podczas podgrzewania do temperatury drukowania, przy której można rozpocząć drukowanie." + +#: fdmprinter.def.json +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 "Minimalny czas, w jakim ekstruder musi być nieużywany, aby schłodzić dyszę. Dopiero, gdy ekstruder nie jest używany dłużej niż przez ten czas, będzie można schłodzić dyszę do temp. czuwania." + +#: fdmprinter.def.json +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 "Minimalny kąt zwisu wewnętrznego, dla którego zostanie dodane wypełnienie. Przy wartości 0° obiekty zostaną wypełnione całkowicie, natomiast przy 90° wypełnienie nie zostanie wygenerowane." + +#: fdmprinter.def.json +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 "Minimalny kąt zwisu, dla którego dodaje się podporę. Przy wartości 0 ° wszystkie zwisy są podparte, 90 ° nie zapewnia żadnego podparcia." + +#: fdmprinter.def.json +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 "Minimalna odległość ruchu jałowego potrzebna do wykonania retrkacji. Pomaga to uzyskać mniej retrakcji w małym obszarze." + +#: fdmprinter.def.json +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 "Minimalna długość obwódki lub obrysu. Jeśli ta długość nie zostanie osiągnięta przez całą linie obwódki lub obrysu, należy dodać więcej linii, aż do osiągnięcia minimalnej długości. Uwaga: Jeśli liczba linii jest ustawiona na 0, to opcja jest ignorowana." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Minimalna szybkość drukowania, pomimo spowolnienia z powodu minimalnego czasu warstwy. Gdy drukarka spowolnia zbyt dużo, ciśnienie w dyszy jest zbyt niskie co pogarsza jakość wydruków." + +#: fdmprinter.def.json +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 "Minimalny rozmiar linii segmentu po pocięciu. Jeżeli to zwiększysz, siatka będzie miała mniejszą rozdzielczość. Może to spowodować przyspieszenie prędkości przetwarzania g-code i przyspieszenie prędkości cięcia poprzez usunięcie detali siatki, których tak czy tak nie można przetworzyć." + +#: fdmprinter.def.json +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 "Minimalny rozmiar segmentu linii ruchu jałowego po pocięciu. Jeżeli ta wartość zostanie zwiększona, ruch jałowy będzie miał mniej gładkie zakręty. Może to spowodować przyspieszenie prędkości przetwarzania g-code, ale unikanie modelu może być mniej dokładne." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "Minimalna objętość każdej warstwy wieży czyszczącej w celu oczyszczenia wystarczającej ilości materiału." + +#: fdmprinter.def.json +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Nazwa modelu twojej drukarki." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "ID dyszy dla wózka ekstrudera np. \"AA 0.4\" i \"BB 0.8\"." + +#: fdmprinter.def.json +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 "Dysza unika już wydrukowanych części podczas ruchu jałowego. Ta opcja jest dostępna tylko w przypadku włączonego trybu kombinowania." + +#: fdmprinter.def.json +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "Dysza będzie omijała już wydrukowane podpory podczas ruchu jałowego. Ta opcja jest dostępna jedynie, gdy kombinowanie jest włączone." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "" + +#: fdmprinter.def.json +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 "Liczba początkowych dolnych warstw, od stołu w górę. Obliczona na podstawie grubości spodu, wartość ta jest zaokrąglana do liczby całkowitej." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Liczba linii używana dla obrysu. Więcej linii obrysu poprawia przyczepność do stołu, ale zmniejsza rzeczywiste pole wydruku." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Liczba górnych warstw. Przy obliczaniu górnej grubości wartość ta jest zaokrąglana do liczby całkowitej." + +#: fdmprinter.def.json +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 "Liczba warstw górnej skóry. Zazwyczaj tylko jedna górna warstwa poprawia jakość górnych powierzchni." + +#: fdmprinter.def.json +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 "Liczba ścianek otaczających wypełnienie podpory. Dodanie ścianki może sprawić, że podpory będą drukowane solidniej i będą mogły lepiej podpierać nawisy, ale wydłuży to czas druku i zwiększy ilość użytego materiału." + +#: fdmprinter.def.json +#, 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 "Liczba ścianek otaczających wypełnienie podpory. Dodanie ścianki może sprawić, że podpory będą drukowane solidniej i będą mogły lepiej podpierać nawisy, ale wydłuży to czas druku i zwiększy ilość użytego materiału." + +#: fdmprinter.def.json +#, 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 "Liczba ścianek otaczających wypełnienie podpory. Dodanie ścianki może sprawić, że podpory będą drukowane solidniej i będą mogły lepiej podpierać nawisy, ale wydłuży to czas druku i zwiększy ilość użytego materiału." + +#: fdmprinter.def.json +#, 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 "Liczba ścianek otaczających wypełnienie podpory. Dodanie ścianki może sprawić, że podpory będą drukowane solidniej i będą mogły lepiej podpierać nawisy, ale wydłuży to czas druku i zwiększy ilość użytego materiału." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Liczba ścian. Przy obliczaniu za pomocą grubości ściany, ta wartość jest zaokrąglana do liczby całkowitej." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Wzór struktury podpory wydruku. Różne opcje zapewniają trwałe lub łatwe do usunięcia podpory." + +#: fdmprinter.def.json +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "Wzór najwyższych warstw." + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Wzór górnej/dolnej warstwy." + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "Wzór na pierwszej warstwie na dole wydruku." + +#: fdmprinter.def.json +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Wzór używany dla górnych powierzchni prasowania." + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "Wzór, według którego drukowane są podłoża podpory." + +#: fdmprinter.def.json +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Wzór, z jakim drukowane jest połączenie podpory z modelem." + +#: fdmprinter.def.json +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "Wzór, z jakim drukowane są dachy podpory." + +#: fdmprinter.def.json +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "Najbliższa pozycja startu druku każdej warstwy." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Najmniejsza objętość jaką powinna mieć ścieżka ekstruzji przed pozwoleniem na Wypływanie. Dla mniejszych ścieżek ekstruzji pojawia się mniejsze ciśnienie we wbudowanej rurce bowden dzięki czemu ilość wypływającego materiału jest skalowana liniowo. Ta wartość powinna zawsze być większa niż Objętość Wypływania." + +#: fdmprinter.def.json +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 "Szybkość (° C/s.), z którą dysza chłodzi się - średnia z normlanej temperatury druku i temperatury czuwania." + +#: fdmprinter.def.json +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 "Szybkość (° C/s.), z którą dysza ogrzewa się - średnia z normlanej temperatury druku i temperatury czuwania." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Prędkość, z jaką drukowane jest wypełnienie." + +#: fdmprinter.def.json +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Prędkość druku." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "Prędkość z jaką są drukowane ściany mostu." + +#: fdmprinter.def.json +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 "Prędkość, z jaką wentylatory obracają się na początku druku. W kolejnych warstwach prędkość wentylatora stopniowo wzrasta do warstwy odpowiadającej Regularnej Pręd. Went. na Wysokości." + +#: fdmprinter.def.json +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 "Prędkość obrotowa wentylatorów przed osiągnięciem progu. Kiedy warstwa drukowana jest szybciej niż próg, prędkość wentylatora stopniowo przybliża się do maksymalnej prędkości wentylatora." + +#: fdmprinter.def.json +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 "Prędkość, z jaką obracają się wentylatory w minimalnym czasie warstwy. Prędkość wentylatora stopniowo wzrasta między regularną prędkością wentylatora a maksymalną prędkością wentylatora, kiedy próg zostanie przekroczony." + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "Prędkość, z jaką retrakcja jest dopełniana." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "Prędkość, z jaką jest wykonywana dodatkowa retrakcja podczas ruchu czyszczenia przy retrakcji." + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "Prędkość, z jaką filament jest cofany podczas retrakcji po zmianie dyszy." + +#: fdmprinter.def.json +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "Prędkość, z jaką jest wykonywana i dopełniana retrakcja." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "Prędkość, z jaką jest wykonywana i dopełniana retrakcja podczas ruchu czyszczenia przy retrakcji." + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "Prędkość, z jaką filament jest wycofywany podczas retrakcji przy zmianie dyszy." + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "Prędkość, z jaką wykonywana jest retrakcja." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "Prędkość, z jaką jest wykonywana retrakcja podczas ruchu czyszczenia przy retrakcji." + +#: fdmprinter.def.json +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 "Prędkość, z jaką filament jest wycofywany. Wyższa szybkość retrakcji działa lepiej, ale bardzo duża szybkość retrakcji może prowadzić do złych efektów." + +#: fdmprinter.def.json +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 "Prędkość, z jaką drukowane jest podłoże podpory. Drukowanie z niższą prędkością może poprawić przyczepność podpory na modelu." + +#: fdmprinter.def.json +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 "Prędkość, z jaką drukowane jest wypełnienie podstawy. Drukowanie wypełnień przy niższych prędkościach poprawia stabilność." + +#: fdmprinter.def.json +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 "Prędkość, z jaką drukowana jest środkowa warstwa tratwy. Powinno być drukowane dość wolno, ponieważ objętość materiału wydobywającego się z dyszy jest dość duża." + +#: fdmprinter.def.json +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 "Szybkość, z jaką drukowane są ściany zewnętrzne. Drukując zewnętrzną ściankę z niższą prędkością, osiągana jest lepsza jakość skóry. Jednakże, posiadanie dużej różnicy pomiędzy prędkością zewnętrznej ściany, a wewnętrznej może skutkować negatywnie." + +#: fdmprinter.def.json +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 "Prędkość, z jaką drukowana jest wieża czyszcząca. Drukowanie wieży czyszczącej wolniej może sprawić, że będzie ona bardziej stabilna, gdy adhezja między różnymi filamentami jest nieoptymalna." + +#: fdmprinter.def.json +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "Prędkość z jaką mają obracać się wentylatory." + +#: fdmprinter.def.json +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "Prędkość, z jaką drukowana jest tratwa." + +#: fdmprinter.def.json +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 "Szybkość, z jaką drukowane są dachy i podłoża podpór. Drukując z mniejszą prędkością, można poprawić jakość nawisów." + +#: fdmprinter.def.json +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 "Prędkość, z jaką drukowane są dachy podpory. Drukowanie przy niższych prędkościach może poprawić jakość nawisów." + +#: fdmprinter.def.json +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 "Prędkość, z jaką jest drukowana obwódka i obrys. Zwykle jest to wykonywane przy szybkości początkowej warstwy, ale czasami możesz chcieć drukować obwódkę lub obrys z inną prędkością." + +#: fdmprinter.def.json +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 "Szybkość, z jaką drukowane są podpory. Drukując podpory przy wyższych prędkościach, całkowity czas drukowania może być znacznie zmniejszony. Jakość powierzchni podpory nie ma znaczenia, ponieważ jest ona usuwana po wydrukowaniu." + +#: fdmprinter.def.json +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 "Prędkość, w jaką są drukowane górne warstwy tratwy. Powinny być drukowane nieco wolniej, dzięki czemu dysza może powoli wypolerować sąsiednie linie powierzchni." + +#: fdmprinter.def.json +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 "Szybkość, z jaką wykonuje się pionowy ruch skoku Z. Jest to zwykle mniej niż prędkość drukowania, ponieważ trudniej się porusza stołem drukarki." + +#: fdmprinter.def.json +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Prędkość drukowania ścian." + +#: fdmprinter.def.json +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "Prędkość, z jaką drukarka przejeżdża nad górnymi powierzchniami." + +#: fdmprinter.def.json +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "Jak szybko wycofać filament, aby go złamać na czysto." + +#: fdmprinter.def.json +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "Prędkość, z jaką drukowane są warstwy górnej powierzchni skóry." + +#: fdmprinter.def.json +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Szybkość, z jaką drukowane są górne/dolne warstwy." + +#: fdmprinter.def.json +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Prędkość, z jaką wykonywane są ruchy jałowe." + +#: fdmprinter.def.json +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 "Prędkość poruszania się podczas Wypływania, w stosunku do prędkości ścieżki ekstruzji. Zaleca się wartość nieco poniżej 100%, ponieważ podczas Wypływania ciśnienie w rurce bowden spada." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Szybkość drukowania dla pierwszej warstwy. Niższa wartość jest zalecane w celu poprawy przyczepności do stołu." + +#: fdmprinter.def.json +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 "Prędkość ruchów jałowych na pierwszej warstwie. Zaleca się niższą wartość, aby zapobiec ściągnięciu wcześniej wydrukowanych części ze stołu. Wartość tego ustawienia może być automatycznie obliczana na podstawie stosunku Prędkości Ruchów Jałowych i Prędkości Druku." + +#: fdmprinter.def.json +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "Temperatura, w której filament można złamać na czysto." + +#: fdmprinter.def.json +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 "Temperatura otoczenia druku. Jeśli ustawione jest 0, temperatura komory nie będzie ustawiana." + +#: fdmprinter.def.json +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "Temperatura dyszy, gdy inne dysze są obecnie używane do drukowania." + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "Temperatura, od której zaczyna się chłodzenie tuż przed końcem drukowania." + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +msgstr "Temperatura stosowana do drukowania pierwszej warstwy. Ustaw wartość 0, aby wyłączyć szczególną obsługę początkowej warstwy." + +#: fdmprinter.def.json +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Temperatura stosowana do drukowania." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "" + +#: fdmprinter.def.json +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 "Grubość dolnych warstw w wydruku. Ta wartość podzielona przez wysokość warstwy definiuje liczbę warstw dolnych." + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "" + +#: fdmprinter.def.json +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 "Grubość połączenia podpory, gdzie styka się ona z modelem na górze i na dole." + +#: fdmprinter.def.json +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 "Grubość podłoża podpory. Steruje liczbę zwartych warstw, które są drukowane na modelu, na którym spoczywa podpora." + +#: fdmprinter.def.json +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 "Grubość dachu podpory. Steruje ilością gęstych warstw na górnej części podpory, na której osiada model." + +#: fdmprinter.def.json +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 "Grubość górnych warstw na wydruku. Ta wartość podzielona przez wysokość warstwy definiuje liczbę warstw górnych." + +#: fdmprinter.def.json +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 "Grubość górnej/dolnej warstwy wydruku. Ta wartość podzielona przez wysokość warstwy definiuje liczbę warstw górnych/dolnych." + +#: fdmprinter.def.json +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 "Grubość ścian w kierunku poziomym. Ta wartość podzielona przez szerokość linii ściany, określa liczbę ścian." + +#: fdmprinter.def.json +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 "Grubość na warstwe materiału wypełniającego. Ta wartość powinna zawsze być wielokrotnością wysokości warstwy i być zaokrąglana." + +#: fdmprinter.def.json +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 "Wysokość warstwy materiału wypełniającego podpory. Ta wartość jest zawsze wielokrotnością wysokości warstwy i jest zaokrąglana." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Typ g-code, który ma być generowany." + +#: fdmprinter.def.json +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Objętość materiału wyciekającego jest inna. Wartość ta powinna być zasadniczo zbliżona do średnicy dyszy do sześcianu." + +#: fdmprinter.def.json +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "Szerokość (w kierunku X) obszaru roboczego." + +#: fdmprinter.def.json +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 "Szerokość obrysu, który ma być wydrukowany pod podporami. Szerszy obrys to większa przyczepność do stołu, kosztem zużytego materiału." + +#: fdmprinter.def.json +#, fuzzy +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "Szerokość wieży czyszczącej." + +#: fdmprinter.def.json +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "Szerokość wieży czyszczącej." + +#: fdmprinter.def.json +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 "Szerokość, w której będą wykonywane drgania. Zaleca się zachować ją poniżej zewnętrznej szerokości ścianki, ponieważ wewnętrzne ściany nie ulegają zmianie." + +#: fdmprinter.def.json +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 "Okno, w którym wymuszona jest maksymalna liczba retrakcji. Wartość ta powinna być w przybliżeniu taka sama jak odległość retrakcji, dzięki czemu skuteczna liczba retrakcji używająca tej samej cząstki materiału jest limitowana." + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "Współrzędna X położenia wieży czyszczącej." + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "Współrzędna Y położenia wieży czyszczącej." + +#: fdmprinter.def.json +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "To ustawienie kontroluje jak bardzo wewn. narożniki w zewn. krawędzi tratwy mają być zaokrąglone. Wew. narożniki są zaokrąglane do półokręgów o promieniu równym wartości podanej tutaj. To ustawienie usuwa także otwory w zewn. krawędzi tratwy, które są mniejsze niż taki okrąg." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Powoduje to powstanie osłony wokół modelu, która wyłapuje (gorące) powietrze i osłania przed ruchami powietrza. Szczególnie przydatna w przypadku materiałów, które łatwo się rozwarstwiają." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Górne warstwy" + +#: fdmprinter.def.json +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Odległość Rozsz. Górnej Skóry" + +#: fdmprinter.def.json +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Szer. Usuwania Górnej Skóry" + +#: fdmprinter.def.json +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Przysp. Górnej Pow. Skóry" + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Ekstruder Górnej Pow. Skóry" + +#: fdmprinter.def.json +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Przepływ ostatniej warstwy górnej" + +#: fdmprinter.def.json +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Zryw Górnej Pow. Skóry" + +#: fdmprinter.def.json +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Warstwy Górnej Pow. Skóry" + +#: fdmprinter.def.json +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Kierunki Linii Górnej Pow. Skóry" + +#: fdmprinter.def.json +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Szerokość Linii Powierzchni Skóry" + +#: fdmprinter.def.json +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Wzór Górnej Pow. Skóry" + +#: fdmprinter.def.json +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Prędk. Górnej Pow. Skóry" + +#: fdmprinter.def.json +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Grubość Góra" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "" + +#: fdmprinter.def.json +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "" + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Przysp. Górnych/Dolnych Warstw" + +#: fdmprinter.def.json +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Ekstruder Góra/Dół" + +#: fdmprinter.def.json +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Przepływ warstwy górnej i dolnej" + +#: fdmprinter.def.json +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Zryw Góra/Dół" + +#: fdmprinter.def.json +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Kierunki Linii Góra/Dół" + +#: fdmprinter.def.json +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Szerokość Górnej/Dolnej Linii" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Wzór Góra/Dół" + +#: fdmprinter.def.json +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Prędkość Góra/Dół" + +#: fdmprinter.def.json +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Grubość Góra/Dół" + +#: fdmprinter.def.json +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Dotykające Stołu" + +#: fdmprinter.def.json +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Średnica Wieży" + +#: fdmprinter.def.json +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Kąt Dachu Wieży" + #: fdmprinter.def.json msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Forma przesunięcia, która ma być zastosowana do modelu podczas ładowania z pliku." -#~ msgctxt "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "Sylwetka 2D głowicy drukującej (z nasadką wentylatora)." +#: fdmprinter.def.json +msgctxt "travel label" +msgid "Travel" +msgstr "Ruch Jałowy" -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Zew. Ściany Przed Wew" +#: fdmprinter.def.json +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Przyspieszenie Ruchów Jałowych" -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Drukuje ściany w kolejności od zewnątrz do wewnątrz, gdy jest włączona. Może to poprawić dokładność wymiarów w modelach X i Y przy użyciu plastiku o wysokiej lepkości, takiego jak ABS; może jednak zmniejszyć jakość druku zewnętrznego, zwłaszcza na zwisach." +#: fdmprinter.def.json +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Odległość Omijania Ruchu Jałowego" -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Kompensuj Nakładanie się Ścian" +#: fdmprinter.def.json +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Zryw Ruch Jałowy" -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Kompensuje przepływ dla części, których ściana jest drukowana kiedy jest już w tym miejscu ściana." +#: fdmprinter.def.json +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Prędkość Ruchów Jałowych" -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Komp. Zew. Nakład. się Ścian" +#: fdmprinter.def.json +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 "Traktuj model tylko jako powierzchnię, bryłę lub bryłę z luźnymi powierzchniami. Zwykły tryb drukowania drukuje tylko zamknięte bryły. \"Powierzchnia\" drukuje pojedynczą ścianę śledząc powierzchnię siatki bez wypełnienia i bez górnej/dolnej skóry. \"Oba\" drukuje zamknięte bryły takie jak zwykłe i wszelkie pozostałe wielokąty jako powierzchnie." -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Kompensuje przepływ dla części, których zewnętrzna ściana jest drukowana kiedy jest już w tym miejscu ściana." +#: fdmprinter.def.json +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "" -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Komp. Wew. Nakład. się Ścian" +#: fdmprinter.def.json +msgctxt "support_tree_angle label" +msgid "Tree Support Branch Angle" +msgstr "Kąt Gałęzi Drzewnej Podpory" -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Kompensuje przepływ dla części, których wewnętrzna ściana jest drukowana kiedy jest już w tym miejscu ściana." +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter label" +msgid "Tree Support Branch Diameter" +msgstr "Średnica Gałęzi Drzewiastej Podpory" -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Minimalny Przepływ Dla Ścianek" +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter_angle label" +msgid "Tree Support Branch Diameter Angle" +msgstr "Kąt Średnicy Gałęzi Drzewiastej Podpory" -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "Minimalny dopuszczalny przepływ procentowy dla linii ścianki. Kompensacja nakładania się ścianek redukuje przepływ, gdy dana ścianka znajduje się blisko wydrukowanej już ścianki. Ścianki, których przepływ powinien być mniejszy, niż ta wartość, będą zastąpione ruchami jałowymi. Aby używać tego ustawienia należy załączyć kompensację nakładających się ścianek oraz drukowanie ścianek zewnętrznych przed wewnętrznymi." +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance label" +msgid "Tree Support Branch Distance" +msgstr "Odległość Gałęzi Drzewiastej Podpory" -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Preferuj Retrakcję" +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution label" +msgid "Tree Support Collision Resolution" +msgstr "Rozdzielczość Kolizji Drzewiastej Podpory" -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Gdy załączone, retrakcja jest używana zamiast kombinowanego ruchu jałowego, który zastępuje ściankę, której przepływ jest mniejszy od minimalnego." +#: fdmprinter.def.json +msgctxt "support_tree_max_diameter label" +msgid "Tree Support Trunk Diameter" +msgstr "" -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Wypełnij Szczeliny Między Ścianami" +#: fdmprinter.def.json +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Tri-Sześciokąt" -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Wypełnia szczeliny pomiędzy ściany gdzie żadna ściana nie pasuje." +#: fdmprinter.def.json +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Trójkąty" -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Nigdzie" +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Trójkąty" -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Wszędzie" +#: fdmprinter.def.json +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Trójkąty" -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "Filtruj Małe Luki" +#: fdmprinter.def.json +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Trójkąty" -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "Filtruj małe luki, aby zredukować bloby na zewnątrz modelu." +#: fdmprinter.def.json +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Trójkąty" -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Zrówn. Przepływ Filamentu" +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Wydrukuj cieńsze niż normalne linie szybciej, tak aby ilość materiału wytłaczanego na sekundę pozostała taka sama. Cienkie części modelu mogą wymagać drukowania linii o mniejszej szerokości linii niż podane w ustawieniach. To ustawienie kontroluje zmiany prędkości dla takich linii." +#: fdmprinter.def.json +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Nakładanie się Związanych Brył" -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Maks. Prędk. dla Zrówn. Przepływu" +#: fdmprinter.def.json +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 "Niepodparte ściany krótsze niż to będą drukowane z normalnymi ustawieniami ściany. Dłuższe niepodparte ściany będą drukowane z ustawieniami mostów." -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "Maksymalna prędkość drukowania podczas ustawiania prędkości druku w celu zrównoważenia przepływu." +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Użyj zmiennych warstw" -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Maksymalna Prędk. Posuwu" +#: fdmprinter.def.json +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Używaj Wież" -#~ 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." -#~ msgstr "Wzorzec wypełnienia wydruku. Kierunek zamiany linii i zygzaka na alternatywnych warstwach, zmniejsza koszty materiałów. Wzorzec siatki, trójkąta, sześcianu, oktetu, ćwiartki sześciennej, krzyżyka i koncentryczny, są w pełni drukowane na każdej warstwie. Gyroid, sześcian, świartka sześcienna i oktet zmienia się z każdą warstwą, aby zapewnić bardziej równomierny rozkład sił w każdym kierunku." +#: fdmprinter.def.json +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 "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "Minimalna odległość między zewnętrzną stroną formy i zewnętrzną stroną modelu." +#: fdmprinter.def.json +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 "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "Ile kroków silnika krokowego będzie skutkowało ekstruzją 1mm." +#: fdmprinter.def.json +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 "Używaj ekstruzji względnej zamiast ekstruzji bezwzględnej. Używanie względnych kroków E umożliwia łatwiejszy post-processing g-code'u. Jednakże nie jest to wspierane przez wszystkie drukarki i może to powodować delikatne wahania w ilości podawanego materiału w porównaniu z bezwzględnymi krokami E. Niezależnie od tego ustawienia, tryb ekstruzji będzie zawsze ustawiony na bezwględny zanim skrypt g-code będzie na wyjściu." -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "Przy wartości niezerowej, kombinowane ruchy jałowe o dystansie większym niż zadany bedą używały retrakcji." +#: fdmprinter.def.json +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 "Użyj specjalnych wież do wspierania malutkich nawisów. Te wieże mają średnicę większą niż wspierany obszar. W pobliżu nawisu, średnica wież zmniejsza się tworząc dach." -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Zastosuj przesunięcie głowicy względem." +#: fdmprinter.def.json +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 "Użyj tej siatki, aby zmodyfikować wypełnienie innych siatek, z którymi się pokrywa. Zastępuje obszary wypełnienia innych siatek obszarami dla tej siatki. Proponuje się wydrukować tylko jedną ścianę bez górnej/dolnej powłoki dla tej siatki." -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Powłoka" +#: fdmprinter.def.json +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Użyj tej siatki, aby określić obszary wsparcia. Można to wykorzystać do generowania struktury podpory." -#~ 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, while an angle of 90° is vertical." -#~ msgstr "Górne i/lub dolne powierzchnie przedmiotu o kącie większym niż to ustawienie nie będą miały rozszerzonego górnej/dolnej skóry. Pozwala to uniknąć powiększania wąskich ścian, które powstają, gdy powierzchnia modelu ma blisko pionowe nachylenie. Kąt 0 ° jest poziomy, a kąt 90 ° jest pionowy." +#: fdmprinter.def.json +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 "Użyj tej siatki, aby sprecyzować gdzie żadna z części modelu nie powinna być wykrywana jako zwis. Ta opcja może być używana do usuwania niepotrzebnych podpór." -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "Prędkość dla pierwszej warstwy. Niższa wartość jest zalecane w celu poprawy przyczepności do stołu." +#: fdmprinter.def.json +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Określone przez Użytkownika" -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "Temperatura stosowana dla podgrzewanej platformy roboczej. Jeżeli jest ustawione 0, temperatura stołu nie będzie ustawiona." +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "" -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "Temperatura stosowana przy podgrzewanym stole na pierwszej warstwie." +#: fdmprinter.def.json +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_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Współczynnik Skurczu" +#: fdmprinter.def.json +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Czekaj na Podgrzanie Stołu" -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "Współczynnik skurczu w procentach." +#: fdmprinter.def.json +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Czekaj na Podgrzanie Dyszy" -#~ msgctxt "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Porządek Siatki Wypełnienia" +#: fdmprinter.def.json +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Przyspieszenie Ścian" -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Określa, która siatka wypełnienia znajduje się wewnątrz wypełnienia innej siatki wypełnienia. Siatka wypełniająca o wyższym porządku modyfikuje wypełnienie siatki wypełnień o niższym porządku i normalnych siatek." +#: fdmprinter.def.json +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "" -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Drzewne Podpory" +#: fdmprinter.def.json +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Ekstruder Ściany" -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Generuj drzewiaste podpory z gałęziami podpierającymi wydruk. Może to zredukować zużycie materiału i czas wydruku, ale bardzo zwiększa czas cięcia." +#: fdmprinter.def.json +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Przepływ ścianek" -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "Jak ciąć warstwy z ukośnymi powierzchniami. Obszary warstwy mogą być generowane na podstawie miejsca gdzie środek warstwy przecina się z powierzchnią (Środek). Alternatywnie każda warstwa może mieć obszary, które wpadają do środka objętości poprzez wysokość warstwy (Wyłączne) lub warstwa ma obszary, które wpadają do środka w każdym miejscu na warstwie (Włącznie). Wyłącznie zatrzymuje najwięcej detali, Włącznie powoduje najlepsze dopasowanie, a Środek wymaga najmniej czasu do przetworzenia." +#: fdmprinter.def.json +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Zryw Ściany" -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Wypełnienie Spaghetti" +#: fdmprinter.def.json +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Ilość Ścian" -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Drukowanie wypełnienia tak często, aby filament zwisał chaotycznie wewnątrz przedmiotu. Zmniejsza to czas drukowania, ale zachowanie jest raczej nieprzewidywalne." +#: fdmprinter.def.json +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Szerokość Linii Ściany" -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Krokowe Wypełn. Spaghetti" +#: fdmprinter.def.json +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "" -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Czy drukować wypełnienie spaghetti krokami, czy ekstrudować filament wypełnienia na końcu wydruku." +#: fdmprinter.def.json +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Prędkość Ścian" -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Maks. Kąt Wypełn. Spaghetti" +#: fdmprinter.def.json +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Grubość Ściany" -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "Maksymalny kąt w odniesieniu do Osi Z wewnątrz wydruku dla obszarów, które mają być wypełnione wypełnieniem spaghetti. Obniżenie tej wartości powoduje, że więcej części modelu, które są pod kątem, będzie wypełnianych na każdej warstwie." +#: fdmprinter.def.json +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "" -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Maks. Wys. Wypełn. Spaghetti" +#: fdmprinter.def.json +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "" -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "Maksymalna wysokość przestrzeni wewnętrznej, którą można łączyć i napełniać od góry." +#: fdmprinter.def.json +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "" -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Wkład Spaghetti" +#: fdmprinter.def.json +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "" -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "Odsunięcie od ścian, z których będzie drukowane wypełnienie spaghetti." +#: fdmprinter.def.json +msgctxt "shell label" +msgid "Walls" +msgstr "" -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Przepływ Spaghetti" +#: fdmprinter.def.json +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 "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Dostosowuje gęstość wypełnienia spaghetti. Należy zauważyć, że Gęstość Wypełnienia kontroluje tylko rozstaw linii wzoru napełniania, a nie ilość wytłaczania wypełnienia spaghetti." +#: fdmprinter.def.json +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." -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Ekstra Objętość Wypełn. Spaghetti" +#: fdmprinter.def.json +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 "Kiedy włączone, kolejność drukowania linii wypełnienia jest optymalizowana tak, aby zredukować odległości ruchów jałowych. Osiągnięta redukcja czasu ruchów jałowych zależy od ciętego modelu, wzory wypełnienia, gęstości itd. Zauważ, że dla niektórych modeli, które mają małe obszary wypełnienia, czas ciecia modelu może się bardzo wydłużyć." -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Korekcja objętości materiału ekstrudowanego za każdym razem, kiedy drukowane jest wypełn. spaghetti." +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Gdy włączone, prędkość wentylatora chłodzącego wydruk jest zmieniana dla obszarów leżących bezpośrednio ponad podporami." -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "GUID materiału. To jest ustawiana automatycznie " +#: fdmprinter.def.json +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 "Kiedy włączone, współrzędne szwu są względne do każdego środka części. Kiedy wyłączone, współrzędne opisują bezwzględną pozycję na stole." -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Odległość Park. Filamentu" +#: fdmprinter.def.json +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 "machine_filament_park_distance description" -#~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used." -#~ msgstr "Odległość od końcówki dyszy, gdzie parkować głowicę gdy nie jest używana." +#: fdmprinter.def.json +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 "retraction_enable description" -#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " -#~ msgstr "Cofnij filament, gdy dysza porusza się nad obszarem, w którym nie ma drukować. " +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Kiedy drukowane są obszary skóry mostu, ilość ekstrudowanego materiału jest mnożona przez tę wartość." -#~ msgctxt "support_xy_distance_overhang description" -#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " -#~ msgstr "Odległość podpory od zwisu w kierunkach X/Y " +#: fdmprinter.def.json +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 "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "poprawki_kategorii" +#: fdmprinter.def.json +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ść." -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "category_blackmagic" +#: fdmprinter.def.json +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 "Kiedy drukowana jest trzecia warstwa skóry mostu, ilość ekstrudowanego materiału jest mnożona przez tę wartość." -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "eksperymentalne!" +#: fdmprinter.def.json +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 "Jeśli zostanie osiągnięta minimalna prędkość ze względu na minimalny czas warstwy, podnieś głowicę poza wydruk i poczekaj aż zostanie osiągnięty minimalny czas warstwy." -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "Obszar głowicy drukarki" +#: fdmprinter.def.json +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 "Gdy model ma małe pionowe szczeliny składające się z kilku warstw, powinna pojawić się powierzchnia zewnętrzna wokół tych warstw w wąskiej przestrzeni. Włącz, aby nie generować powierzchni zewnętrznej, jeśli odstęp pionowy jest bardzo mały. Poprawia to czas drukowania i czas cięcia, ale technicznie pozostawia wypełnienie bez wykończenia." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Zawsze, gdy następuje retrakcja, stół roboczy jest opuszczany w celu utworzenia luzu między dyszą a drukiem. Zapobiega to uderzeniu dyszy podczas ruchu jałowego, co zmniejsza szanse uderzenia wydruku na stole." + +#: fdmprinter.def.json +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 "Czy Odległość Podpory X/Y nadpisuje Odległość Podpory Z i vice versa. Kiedy X/Y nadpisuje Z, odległość X/Y może odepchnąć podporę od modelu, wpływając na rzeczywistą odległość Z do zwisu. Możemy to wyłączyć, nie stosując odległości X/Y wokół zwisów." + +#: fdmprinter.def.json +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 "Określa, czy współrzędne zero X/Y znajdują się na środku pola wydruku." + +#: fdmprinter.def.json +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 "Czy krańcówka osi X jest w pozycji dodatniej (wysokie współrzędne X) czy w ujemnej (niskie współrzędne X)." + +#: fdmprinter.def.json +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 "Czy krańcówka osi Y jest w pozycji dodatniej (wysokie współrzędne Y) czy w ujemnej (niskie współrzędne Y)." + +#: fdmprinter.def.json +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 "Czy krańcówka osi Z jest w pozycji dodatniej (wysokie współrzędne Z) czy w ujemnej (niskie współrzędne Z)." + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Określa czy maszyna posiada podgrzewany stół." + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Określa czy drukarka posiada zamkniętą komorę stabilizującą temperaturę." + +#: fdmprinter.def.json +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 "Czy wyśrodkować obiekt na środku stołu (0,0), zamiast używać układu współrzędnych, w którym został zapisany obiekt." + +#: fdmprinter.def.json +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 "Czy kontrolować temperaturę przez Cura? Wyłącz tę funkcję, aby kontrolować temperaturę dyszy poza Cura." + +#: fdmprinter.def.json +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 "Możliwość wstawienia poleceń temperatury stołu na początku G-code. Jeśli start_gcode zawiera już polecenia dla temperatury stołu, program Cura wyłącza to ustawienie automatycznie." + +#: fdmprinter.def.json +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 "Możliwość wstawienia polecenia temperatury dyszy na początku G-code. Jeżeli start_gcode już zawiera polecenia temperatury dyszy, program Cura wyłączy tego ustawienie automatycznie." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "Czy wstawić na początku komendę, czekającą aż temperatura stołu zostanie osiągnięta." + +#: fdmprinter.def.json +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 "Czy wyczyścić filament z \"blobem\" przed drukowaniem? Włączenie tej opcji powoduje, że upewni się czy w materiał jest gotowy w ekstruderze przed drukowaniem. Drukowanie Obrysu lub Obwódki może działać także jako czyszczenie, w takim przypadku wyłączenie tej opcji oszczędzi trochę czasu." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Określa czy wyświetlać różne warianty drukarki, które są opisane w oddzielnych plikach JSON." + +#: fdmprinter.def.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 "Używaj komend retrakcji (G10/G11) zamiast używać współrzędną E w komendzie G1, aby wycofać materiał." + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Poczekaj, aż temperatura dyszy zostanie osiągnięta na początku." + +#: fdmprinter.def.json +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Szerokość pojedynczej linii wypełniania." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Szerokość jednej linii. Ogólnie, szerokość powinna być taka sama jak średnica dyszy. Jednak nieznaczne zmniejszenie tej wartości może prowadzić do lepszych wydruków." + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Szerokość pojedynczej linii wieży." + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Szerokość pojedynczej linii Obwódki i Obrysu." + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Szerokość pojedynczej linii podłoża podpory." + +#: fdmprinter.def.json +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Szerokość pojedynczej linii dachu podpory." + +#: fdmprinter.def.json +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Szerokość jednej linii podpory." + +#: fdmprinter.def.json +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Szerokość pojedynczej górnej/dolnej linii." + +#: fdmprinter.def.json +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Szerokość jednej linii dla wszystkich linii ściany z wyjątkiem jednej najbardziej zewnętrznej." + +#: fdmprinter.def.json +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Szerokość jednej linii ściany." + +#: fdmprinter.def.json +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 "Szerokość linii na podstawowej warstwie tratwy. Powinny być to grube linie, które pomogą w przyczepności do stołu." + +#: fdmprinter.def.json +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 "Szerokość linii na środkowej warstwie tratwy. Wytłaczanie drugiej warstwy powoduje, że linie przyklejają się do stołu." + +#: fdmprinter.def.json +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 "Szerokość linii na górnej powierzchni tratwy. Mogą to być cienkie linie tak, aby góra tratwy była gładka." + +#: fdmprinter.def.json +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 "Szerokość zewnętrznej linii ściany. Przez obniżenie tej wartości wyższe poziomy szczegółów mogą być drukowane." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "X pozycji czyszczenia" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Prędkość czyszczącego skoku Z" + +#: fdmprinter.def.json +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Wytrzyj Nieużywaną Dyszę o Wieżę Czyszczącą" + +#: fdmprinter.def.json +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Odległość ruchu czyszczenia" + +#: fdmprinter.def.json +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Wytrzyj dyszę pomiędzy warstwami" + +#: fdmprinter.def.json +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Wstrzymaj czyszczenie" + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Ilość powtórzeń czyszczenia" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Długość czyszczenia przy retrakcji" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Włącz Czyszczenie przy retrakcji" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Dodatkowa wartość czyszczenia dla Czyszczenia przy retrakcji" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Prędkość retrakcji Czyszczenia przy retrakcji" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Prędkość Czyszczenia przy retrakcji" + +#: fdmprinter.def.json +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Wysokość skoku Z przy czyszczeniu" + +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Wewnątrz Wypełnienia" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Krańcówka X w Pozycji Dodatniej" + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "Pozycja X, w której skrypt zaczyna." + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y nadpisuje Z" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Krańcówka Y w Pozycji Dodatniej" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Krańcówka Z w Pozycji Dodatniej" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Skok Z po Zmianie Ekstrudera" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Skok Z po zmianie wysokości ekstrudera" + +#: fdmprinter.def.json +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Wysokość Skoku Z" + +#: fdmprinter.def.json +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Skok Z Tylko nad Druk. Częściami" + +#: fdmprinter.def.json +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Prędkość skoku Z" + +#: fdmprinter.def.json +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Skok Z Podczas Retrakcji" + +#: fdmprinter.def.json +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Wyrównanie Szwu Z" + +#: fdmprinter.def.json +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Pozycja szwu osi Z" + +#: fdmprinter.def.json +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Względny Szew Z" + +#: fdmprinter.def.json +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Szew X" + +#: fdmprinter.def.json +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Szew Y" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z nadpisuje X/Y" + +#: fdmprinter.def.json +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zygzak" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zygzak" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zygzak" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zygzak" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zygzak" + +#: fdmprinter.def.json +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zygzak" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zygzak" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zygzak" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zygzak" + +#: fdmprinter.def.json +msgctxt "travel description" +msgid "travel" +msgstr "ruch jałowy" #~ msgctxt "machine_head_polygon description" #~ msgid "A 2D silhouette of the print head (fan caps excluded)." #~ msgstr "Sylwetka 2D głowicy drukującej (bez nasadki wentylatora)." -#~ 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 only possible if 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 "Czy drukować wszystkie modele po jednej warstwie, czy poczekać na zakończenie jednego modelu, przed przejściem do następnego. Tryb Jeden na raz jest możliwy, gdy wszystkie modele są oddzielone w taki sposób, aby cała głowica drukująca mogła się poruszać między wszystkimi modelami i są one niższe niż odległość pomiędzy dyszą i osiami X/Y." +#~ msgctxt "machine_head_with_fans_polygon description" +#~ msgid "A 2D silhouette of the print head (fan caps included)." +#~ msgstr "Sylwetka 2D głowicy drukującej (z nasadką wentylatora)." -#~ msgctxt "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "Grubość Ściany Drzewiastej Podpory" +#~ msgctxt "spaghetti_infill_extra_volume description" +#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." +#~ msgstr "Korekcja objętości materiału ekstrudowanego za każdym razem, kiedy drukowane jest wypełn. spaghetti." -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "Grubość ścian gałęzi drzewiastej podpory. Grubsze ściany drukują się dłużej, ale nie odpadają tak łatwo." +#~ msgctxt "adaptive_layer_height_threshold label" +#~ msgid "Adaptive Layers Threshold" +#~ msgstr "Próg zmiany warstw" -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "Liczba Linii Ściany Drzewiastej Podpory" +#~ msgctxt "adaptive_layer_height_variation label" +#~ msgid "Adaptive layers maximum variation" +#~ msgstr "Maks. zmiana zmiennych warstw" -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "Liczba ścian gałęzi drzewiastej podpory. Grubsze ściany drukują się dłużej , ale nie odpadają tak łatwo." +#~ msgctxt "adaptive_layer_height_threshold label" +#~ msgid "Adaptive layers threshold" +#~ msgstr "Opóźnienie zmiennych warstw" -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. 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 "Włącza w G-Code wycieranie dyszy między warstwami. Włączenie tego ustawienia może wpłynąć na zachowanie retrakcji przy zmianie warstwy. Użyj ustawień „Czyszczenie przy retrakcji”, aby kontrolować retrakcję na warstwach, na których będzie działał skrypt czyszczenia." +#~ msgctxt "adaptive_layer_height_variation_step label" +#~ msgid "Adaptive layers variation step size" +#~ msgstr "Krok zmian zmiennych warstw" -#~ msgctxt "max_extrusion_before_wipe description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "Maksymalna ilość materiału, który można wytłoczyć przed zainicjowaniem kolejnego czyszczenia dyszy." +#~ msgctxt "spaghetti_flow description" +#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." +#~ msgstr "Dostosowuje gęstość wypełnienia spaghetti. Należy zauważyć, że Gęstość Wypełnienia kontroluje tylko rozstaw linii wzoru napełniania, a nie ilość wytłaczania wypełnienia spaghetti." -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "Prędkość retrakcji Czyszczenia" +#~ msgctxt "dual_pre_wipe description" +#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." +#~ msgstr "Po przełączeniu ekstrudera, wytrzyj materiał wyciekający z dyszy na pierwszą drukowaną część. powoduje to bezpieczny, powolny ruch wycierania w miejscu gdzie wyciekający materiał nie spowoduje dużej szkody dla powierzchni modelu." -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "Czyszczący skok Z jeśli jest retrakcja" - -#~ msgctxt "wipe_hop_enable 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 "Zawsze, gdy następuje retrakcja, stół roboczy jest opuszczany w celu utworzenia luzu między dyszą a drukiem. Zapobiega to uderzeniu dyszy podczas ruchu jałowego, co zmniejsza szanse uderzenia wydruku na stole." - -#~ msgctxt "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Minimalny rozmiar obszaru dla interfejsu podpór. Obszary, które mają powierzchnię mniejszą od tej wartości, nie będą generowane." - -#~ 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 not be generated." -#~ msgstr "Minimalny rozmiar obszaru dla dachu podpór. Obszary, które mają powierzchnię mniejszą od tej wartości, nie będą generowane." - -#~ 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 not be generated." -#~ msgstr "Minimalny rozmiar obszaru dla podłoża podpór. Obszary, które mają powierzchnię mniejszą od tej wartości, nie będą generowane." +#~ msgctxt "cross_infill_apply_pockets_alternatingly label" +#~ msgid "Alternate Cross 3D Pockets" +#~ msgstr "Zamieniaj Kieszenie Krzyża 3D" #~ msgctxt "skin_alternate_rotation label" #~ msgid "Alternate Skin Rotation" @@ -6981,239 +6609,75 @@ msgstr "Forma przesunięcia, która ma być zastosowana do modelu podczas ładow #~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." #~ msgstr "Zmień kierunek, w jakim drukowane są górne/dolne warstwy. Zazwyczaj są one drukowane na ukos. Ustawienie to dodaje kierunek \"tylko X\" i \"tylko Y\"." -#~ msgctxt "flow_rate_max_extrusion_offset label" -#~ msgid "Flow rate compensation max extrusion offset" -#~ msgstr "Maks. offset ekstruzji do kompensowania przepływu" +#~ msgctxt "prime_tower_purge_volume description" +#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." +#~ msgstr "Ilość filamentu, która jest czyszczona podczas wycierania na wieży czyszczącej. Czyszczenie jest użyteczne do kompensowania utraty filamentu przez wypływanie z nieużywanej dyszy." -#~ msgctxt "flow_rate_max_extrusion_offset description" -#~ msgid "The maximum distance in mm to compensate." -#~ msgstr "Maksymalna odległość w mm do skompensowania." +#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" +#~ msgid "Apply the extruder offset to the coordinate system." +#~ msgstr "Zastosuj przesunięcie głowicy względem." -#~ msgctxt "flow_rate_extrusion_offset_factor label" -#~ msgid "Flow rate compensation factor" -#~ msgstr "Współczynnik kompensacji przepływu" +#~ msgctxt "material_flow_dependent_temperature label" +#~ msgid "Auto Temperature" +#~ msgstr "Auto Temperatura" -#~ msgctxt "flow_rate_extrusion_offset_factor description" -#~ msgid "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "Współczynnik mnożący przepływu -> tłumaczenie odległości." +#~ msgctxt "bridge_wall_max_overhang label" +#~ msgid "Bridge Wall Max Overhang" +#~ msgstr "Maks. Nachylenie Ściany Mostu" -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "Próg zmiany warstw" +#~ msgctxt "machine_shape label" +#~ msgid "Build plate shape" +#~ msgstr "Kształt stołu" -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ msgstr "Opóźnienie w wyborze, czy użyć mniejszej warstwy, czy nie. Ta liczba jest porównywana do najbardziej stromego nachylenia na warstwie." +#~ msgctxt "center_object label" +#~ msgid "Center object" +#~ msgstr "Wyśrodkuj Obiekt" -#~ 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." -#~ msgstr "Ścianka o większym kącie nawisu niż podany będzie drukowana z użyciem ustawień nawisającej ścianki. Przy wartości 90°, żadna ścianka nie będzie traktowana jako ścianka nawisająca." - -#~ 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 adhestion and accuracy." -#~ msgstr "Małe obiekty zostaną wydrukowane z podanym procentem ich normalnej prędkości drukowania. Wolniejsze drukowanie może pomóc w zachowaniu dokładności." - -#~ msgctxt "small_feature_speed_factor_0 label" -#~ msgid "First Layer Speed" -#~ msgstr "Prędkość pierwszej warstwy" - -#~ 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 adhestion and accuracy." -#~ msgstr "Małe elementy na pierwszej warstwie zostaną wydrukowane z podanym procentem ich normalnej prędkości drukowania. Wolniejsze drukowanie może pomóc w zachowaniu dokładności i dokładności." - -#~ msgctxt "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "Przejedź nad górną powierzchnią dodatkowy raz, ale bez ekstrudowania materiału. Topi to plastyk na górze, co powoduje gładszą powierzchnię." - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "Rozp. Warstwy w tym Samym Punkcie" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "Na każdej warstwie rozpocznij drukowanie obiektu blisko tego samego punktu, abyśmy nie rozpoczynali nowej warstwy w miejscu gdzie skończyła się poprzednia warstwa. Powoduje to lepsze nawisy i małe elementy, ale wydłuża czas druku." - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ msgstr "Orientacja wzoru wypełnienia dla podpór. Wzór podpory jest obracany w płaszczyźnie poziomej." - -#~ 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." -#~ msgstr "Maksymalne odchylenie dozwolone przy zmniejszaniu rozdzielczości dla ustawienia „Maksymalna rozdzielczość”. Jeśli to zwiększysz, wydruk będzie mniej dokładny, ale G-Code będzie mniejszy." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "Wersja G-code" - -#~ 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." -#~ msgstr "Kontroluje, czy rogi na zewn. linii modelu wpływają na pozycję szwu. Brak oznacza, że rogi nie mają wpływu na pozycję szwu. Ukryj Szew powoduje, że szew będzie się bardziej pojawiał na wewn. rogach. Pokaż Szew powoduje, że szew będzie się bardziej pojawiał na zewn. rogach. Ukryj lub Pokaż Szew powoduje, że szew będzie się bardziej pojawiał na wewn. lub zewn. rogach." - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "Zignoruj Małe Luki Z" - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "Jeśli model ma małe, pionowe szczeliny, to można wykorzystać dodatkowe 5% mocy obliczeniowej do wygenerowania górnej i dolnej skóry w wąskich przestrzeniach. W takim wypadku, wyłącz tę opcję." - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "Temperatura stosowana dla obszaru roboczego. Jeżeli jest ustawione 0, temperatura nie będzie ustawiona." - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." -#~ msgstr "Unikaj retrakcji podczas poruszania się od podpory do podpory w linii prostej. Załączenie tej funkcji spowoduje skrócenie czasu druku, lecz może prowadzić do nadmiernego nitkowania wewnątrz struktur podporowych." - -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "Maksymalna Prędk. Z" - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "Maksymalna prędkość przesuwu stołu. Ustawienie na zero powoduje, że druk używa domyślnych ustawień oprogramowania dla maksymalnej prędkości z." - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." -#~ msgstr "Maksymalna odległość między podporami w kierunkach X/Y. Gdy oddzielne struktury są bliżej siebie niż ta wartość, struktury łączą się w jedną." - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "Minimalna Średnica" - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "Minimalna średnica w kierunkach X/Y o małej powierzchni, który jest wspierana przez specjalną wieżę wspierającą." +#~ msgctxt "material_flow_dependent_temperature description" +#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." +#~ msgstr "Zmień temperaturę każdej warstwy automatycznie przy średniej prędkości przepływu tej warstwy." #~ msgctxt "prime_tower_circular label" #~ msgid "Circular Prime Tower" #~ msgstr "Okrągła Wieża Czyszcząca" -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "Twórz wieżę czyszczącą o okrągłym kształcie." - -#~ msgctxt "prime_tower_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." -#~ msgstr "Kompensacja przepływu: ilość ekstrudowanego materiału jest mnożona przez tę wartość." - -#~ 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 "Wygładź spiralny kontur, aby zmniejszyć widoczność szwu Z (szew Z powinien być ledwo widoczny na wydruku, ale nadal będzie widoczny w widoku warstwy). Należy pamiętać, że wygładzanie będzie miało tendencję do rozmycia drobnych szczegółów powierzchni." - -#~ msgctxt "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "Opcja eksperymentalna: W dolnym obszarze podpory powinny być mniejsze niż na zwisie." - -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "Liczba Ekstruderów, które są dostępne" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "Zew. średnica dyszy" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "Długość dyszy" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "Kąt dyszy" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "Długość strefy cieplnej" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "Prędkość nagrzewania" - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "Prędkość Chłodzenia" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "Wersja G-code" - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "Zakazane obszary" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "Obszar Głowicy Drukarki" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "Obszar Głowicy i Wentylatora Drukarki" - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "Wysokość Suwnicy (Gantry)" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "Przesunięcie Ekstrudera" - -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "Użyj zmiennych warstw" - -#~ msgctxt "adaptive_layer_height_variation label" -#~ msgid "Adaptive layers maximum variation" -#~ msgstr "Maks. zmiana zmiennych warstw" - -#~ msgctxt "adaptive_layer_height_variation_step label" -#~ msgid "Adaptive layers variation step size" -#~ msgstr "Krok zmian zmiennych warstw" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "Opóźnienie zmiennych warstw" - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "Ilość nałożenia pomiędzy skórą a ścianami w procentach szerokości linii skóry. Delikatne nałożenie pozawala na lepsze połączenie się ścian ze skórą. Jest to procent średniej szerokości linii skóry i wewnętrznej ściany." - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Ilość nakładania się skóry i ścian. Lekkie nałożenie pozwala ściśle łączyć się ze skórą." - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." -#~ msgstr "Długość retrakcji: Ustaw na 0, aby wyłączyć retrkację. To powinno ogólnie być takie samo jak długość strefy grzewczej." - #~ 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 and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." #~ msgstr "Kombinowanie utrzymuje dyszę w już zadrukowanych obszarach podczas ruchu jałowego. Powoduje to nieco dłuższe ruchy jałowe, ale zmniejsza potrzebę retrakcji. Jeśli kombinowanie jest wyłączone, materiał się cofa, a dysza przemieszcza się w linii prostej do następnego punktu. Można też unikać kombinowania na górnych/dolnych obszarach powłoki, a także kombinować tylko wewnątrz wypełnienia. Opcja \"Wewnątrz Wypełnienia\" wymusza takie samo zachowanie, jak opcja \"Nie w Powłoce\" we wcześniejszych wydaniach Cura." -#~ 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 happend midway over infill this feature can reduce the top surface quality." -#~ msgstr "Łączy górne/dolne ścieżki powłoki, gdy są one prowadzone obok siebie. Przy wzorze koncentrycznym, załączenie tego ustawienia znacznie zredukuje czas ruchów jałowych, ale ze względu na to, że połączenie może nastąpić w połowie drogi ponad wypełnieniem, ta fukncja może pogorszyć jakość górnej powierzchni." - -#~ 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. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Wzór materiału wypełniającego wydruk. Linie i zygzaki zmieniają kierunek na przemiennych warstwach, redukując koszty materiału. Kratka, trójkąty, tri-sześciokąt, sześcienne, ośmiościenne, ćwierć sześcienny i koncentryczny wzór są drukowane w pełni na każdej warstwie. Sześcienne, ćwierć sześcienne i czworościenne wypełnienie zmienia się co każdą warstwę, aby zapewnić równy rozkład siły w każdym kierunku." - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Koncentryczny 3D" - #~ 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 by combing within the infill only." #~ msgstr "Kombinowanie utrzymuje dyszę w już zadrukowanych obszarach podczas ruchu jałowego. Powoduje to nieco dłuższe ruchy jałowe, ale zmniejsza potrzebę retrakcji Jeśli kombinowanie jest wyłączone, materiał się cofa, a dysza przemieszcza się w linii prostej do następnego punktu. Można też unikać kombinowania na górnych/dolnych obszarach skóry przez kombinowanie tylko wewnątrz wypełnienia." -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Koncentryczny 3D" +#~ msgctxt "wireframe_strategy option compensate" +#~ msgid "Compensate" +#~ msgstr "Kompensuj" -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Koncentryczny 3D" +#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" +#~ msgid "Compensate Inner Wall Overlaps" +#~ msgstr "Komp. Wew. Nakład. się Ścian" -#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" +#~ msgid "Compensate Outer Wall Overlaps" +#~ msgstr "Komp. Zew. Nakład. się Ścian" + +#~ msgctxt "travel_compensate_overlapping_walls_enabled label" +#~ msgid "Compensate Wall Overlaps" +#~ msgstr "Kompensuj Nakładanie się Ścian" + +#~ msgctxt "travel_compensate_overlapping_walls_enabled description" +#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." +#~ msgstr "Kompensuje przepływ dla części, których ściana jest drukowana kiedy jest już w tym miejscu ściana." + +#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" +#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." +#~ msgstr "Kompensuje przepływ dla części, których wewnętrzna ściana jest drukowana kiedy jest już w tym miejscu ściana." + +#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" +#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." +#~ msgstr "Kompensuje przepływ dla części, których zewnętrzna ściana jest drukowana kiedy jest już w tym miejscu ściana." + +#~ msgctxt "infill_pattern option concentric_3d" #~ msgid "Concentric 3D" #~ msgstr "Koncentryczny 3D" @@ -7221,73 +6685,329 @@ msgstr "Forma przesunięcia, która ma być zastosowana do modelu podczas ładow #~ msgid "Concentric 3D" #~ msgstr "Koncentryczny 3D" -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "Rozstaw Linii Tratwy" +#~ msgctxt "support_interface_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Koncentryczny 3D" -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "Grubość Wieży Czyszcz." +#~ msgctxt "support_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Koncentryczny 3D" -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "Grubość pustej wieży czyszczącej. Grubość większa niż połowa minimalnej objętości wieży czyszczącej spowoduje, że wieża będzie miała dużą gęstość." +#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Koncentryczny 3D" -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "Wytrzyj Dyszę po Przełączeniu" +#~ msgctxt "zig_zaggify_infill description" +#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +#~ msgstr "Łączy końce gdzie wypełnienie spotyka się z wewn. ścianą za pomocą linii, które podążają za kształtem wewn. ściany. Włączenie tej opcji może spowodować lepsze łączenie się wypełnienia ze ścianą i redukuje efekty związane z jakością na pionowych ścianach. Wyłączenie tej opcji redukuje ilość użytego materiału." -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "Po przełączeniu ekstrudera, wytrzyj materiał wyciekający z dyszy na pierwszą drukowaną część. powoduje to bezpieczny, powolny ruch wycierania w miejscu gdzie wyciekający materiał nie spowoduje dużej szkody dla powierzchni modelu." +#~ 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 happend midway over infill this feature can reduce the top surface quality." +#~ msgstr "Łączy górne/dolne ścieżki powłoki, gdy są one prowadzone obok siebie. Przy wzorze koncentrycznym, załączenie tego ustawienia znacznie zredukuje czas ruchów jałowych, ale ze względu na to, że połączenie może nastąpić w połowie drogi ponad wypełnieniem, ta fukncja może pogorszyć jakość górnej powierzchni." -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "Pole Czyszczące Wieży Czyszcz." +#~ 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." +#~ msgstr "Kontroluje, czy rogi na zewn. linii modelu wpływają na pozycję szwu. Brak oznacza, że rogi nie mają wpływu na pozycję szwu. Ukryj Szew powoduje, że szew będzie się bardziej pojawiał na wewn. rogach. Pokaż Szew powoduje, że szew będzie się bardziej pojawiał na zewn. rogach. Ukryj lub Pokaż Szew powoduje, że szew będzie się bardziej pojawiał na wewn. lub zewn. rogach." -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "Ilość filamentu, która jest czyszczona podczas wycierania na wieży czyszczącej. Czyszczenie jest użyteczne do kompensowania utraty filamentu przez wypływanie z nieużywanej dyszy." +#~ msgctxt "machine_nozzle_cool_down_speed label" +#~ msgid "Cool down speed" +#~ msgstr "Prędkość Chłodzenia" -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "Maks. Nachylenie Ściany Mostu" +#~ msgctxt "wireframe_top_jump description" +#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." +#~ msgstr "Tworzy mały węzeł u góry linii w górę, dzięki czemu kolejna pozioma warstwa ma większą szansę połączenia się z nią. Dotyczy tylko Drukowania Drutu." -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ msgstr "Maksymalna dozwolona szerokość obszaru powietrza pod linią ściany zanim zostanie wydrukowana ściana używająca ustawień mostu. Wyrażona w procentach szerokości linii ściany. Kiedy przestrzeń powietrza jest szersza od tego, linia ściany jest drukowana używając ustawień mostu. W przeciwnym wypadku linia ściany jest drukowana z normalnymi ustawieniami. Tym niższa wartość, tym większa szansa, że linie ściany na nawisach będą drukowane z ustawieniami mostu." +#~ msgctxt "wireframe_bottom_delay description" +#~ msgid "Delay time after a downward move. Only applies to Wire Printing." +#~ msgstr "Opóźnienie po pochyłym ruchu. Dotyczy tylko Drukowania Drutu." -#~ 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." -#~ msgstr "Optymalizuj kolejność, według której drukowane są ściany, aby zredukować ilość retrakcji i długości ruchu jałowego. Większość części powinno na tym zyskać, ale niektóre mogą drukować się dłużej, dlatego prosimy o porównaniu czasu drukowania z i bez włączonej opcji." +#~ msgctxt "wireframe_top_delay description" +#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." +#~ msgstr "Opóźnienie czasu po wzniesieniu w górę, tak aby linia idąca w górę mogła zesztywniać. Dotyczy tylko Drukowania Drutu." -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "Bez skóry" +#~ msgctxt "wireframe_flat_delay description" +#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." +#~ msgstr "Czas opóźnienia pomiędzy dwoma poziomymi segmentami. Dzięki takiemu opóźnieniu może powstać lepsza przyczepność do poprzedniej warstwy, przy zbyt dużym opóźnieniu może jednak prowadzić do opadania. Odnosi się tylko do Drukowania Drutu." -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "Zamieniaj Kieszenie Krzyża 3D" +#~ msgctxt "infill_mesh_order description" +#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "Określa, która siatka wypełnienia znajduje się wewnątrz wypełnienia innej siatki wypełnienia. Siatka wypełniająca o wyższym porządku modyfikuje wypełnienie siatki wypełnień o niższym porządku i normalnych siatek." -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "Twórz kieszenie tylko w połowie czterostronnych skrzyżowań we wzorze krzyż 3D i zamieniaj pozycję kieszonek pomiędzy wysokościami gdzie wzór dotyka samego siebie." +#~ msgctxt "machine_disallowed_areas label" +#~ msgid "Disallowed areas" +#~ msgstr "Zakazane obszary" + +#~ msgctxt "wireframe_nozzle_clearance description" +#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." +#~ msgstr "Odległość między dyszą a liniami skierowanymi w dół. Większe prześwity powodują ukośne linie skierowanie w dół o mniej stromym kącie, co z kolei skutkuje mniejszymi połączeniami z następną warstwą. Dotyczy tylko Drukowania Drutu." + +#~ msgctxt "wireframe_up_half_speed description" +#~ msgid "" +#~ "Distance of an upward move which is extruded with half speed.\n" +#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." +#~ msgstr "" +#~ "Dystans przemieszczania się ku górze, który jest wytłaczany z połową szybkości.\n" +#~ "Może to prowadzić do lepszej przyczepności do wcześniejszych warstw, bez zbytniego podgrzewania materiału na tych warstwach. Odnosi się tylko do Drukowania Drutu." + +#~ msgctxt "support_xy_distance_overhang description" +#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " +#~ msgstr "Odległość podpory od zwisu w kierunkach X/Y " + +#~ msgctxt "wireframe_fall_down description" +#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Odległość o jaką spada materiału przez wytłaczanie w górę. Długość ta jest kompensowana. Odnosi się tylko do Drukowania Drutu." + +#~ msgctxt "wireframe_drag_along description" +#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Odległość, z jaką materiał wytłoczony z góry jest przeciągany równolegle do dolnej ekstruzji. Ta odległość jest kompensowana. Dotyczy tylko Drukowania Drutu." + +#~ msgctxt "machine_end_gcode label" +#~ msgid "End GCode" +#~ msgstr "Końcowy G-code" + +#~ msgctxt "speed_equalize_flow_enabled label" +#~ msgid "Equalize Filament Flow" +#~ msgstr "Zrówn. Przepływ Filamentu" + +#~ msgctxt "fill_perimeter_gaps option everywhere" +#~ msgid "Everywhere" +#~ msgstr "Wszędzie" + +#~ msgctxt "expand_lower_skins label" +#~ msgid "Expand Bottom Skins Into Infill" +#~ msgstr "Rozszerz Dolną Powłokę Do Wypełn." + +#~ msgctxt "expand_skins_into_infill label" +#~ msgid "Expand Skins Into Infill" +#~ msgstr "Rozszerz Powłokę Do Wypełn." + +#~ msgctxt "expand_upper_skins label" +#~ msgid "Expand Top Skins Into Infill" +#~ msgstr "Rozszerz Górną Powłokę Do Wypełn." + +#~ msgctxt "expand_skins_into_infill description" +#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." +#~ msgstr "Rozszerz obszary powłoki na górze i/lub dole powierzchni płaskich. Domyślnie, powłoka kończy się na linii ściany otaczające wypełnienie, chociaż może to prowadzić do powstawania dziur kiedy gęstość wypełnienia jest niska. Ustawienie to rozciąga powłokę poza linię ściany, dzięki czemu wypełnienie na kolejnej warstwie osiada na powłoce." + +#~ msgctxt "expand_lower_skins description" +#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." +#~ msgstr "Rozszerz dolną powłokę (obszary, pod którym jest powietrze) tak, aby zostały zakotwiczone o warstwy wypełniające powyżej i poniżej." + +#~ msgctxt "expand_upper_skins description" +#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." +#~ msgstr "Rozszerz górne obszary ścian (obszary, które mają ponad sobą powietrze) tak, aby wspomagały wypełnienie powyżej." + +#~ msgctxt "support_conical_enabled description" +#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." +#~ msgstr "Opcja eksperymentalna: W dolnym obszarze podpory powinny być mniejsze niż na zwisie." + +#~ msgctxt "machine_filament_park_distance label" +#~ msgid "Filament Park Distance" +#~ msgstr "Odległość Park. Filamentu" + +#~ msgctxt "fill_perimeter_gaps label" +#~ msgid "Fill Gaps Between Walls" +#~ msgstr "Wypełnij Szczeliny Między Ścianami" + +#~ msgctxt "fill_perimeter_gaps description" +#~ msgid "Fills the gaps between walls where no walls fit." +#~ msgstr "Wypełnia szczeliny pomiędzy ściany gdzie żadna ściana nie pasuje." + +#~ msgctxt "filter_out_tiny_gaps label" +#~ msgid "Filter Out Tiny Gaps" +#~ msgstr "Filtruj Małe Luki" + +#~ msgctxt "filter_out_tiny_gaps description" +#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." +#~ msgstr "Filtruj małe luki, aby zredukować bloby na zewnątrz modelu." + +#~ msgctxt "small_feature_speed_factor_0 label" +#~ msgid "First Layer Speed" +#~ msgstr "Prędkość pierwszej warstwy" + +#~ msgctxt "wireframe_flow_connection description" +#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." +#~ msgstr "Kompensacja przepływu w górę i w dół. Odnosi się tylko do Drukowania Drutu." + +#~ msgctxt "wireframe_flow_flat description" +#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." +#~ msgstr "Kompensacja przepływu podczas drukowania płaskich linii. Dotyczy tylko Drukowania Drutu." + +#~ msgctxt "prime_tower_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." +#~ msgstr "Kompensacja przepływu: ilość ekstrudowanego materiału jest mnożona przez tę wartość." + +#~ msgctxt "wireframe_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." +#~ msgstr "Kompensacja przepływu: ilość wytłaczanego materiału jest mnożona przez tę wartość. Odnosi się tylko do Drukowania Drutu." + +#~ msgctxt "flow_rate_extrusion_offset_factor label" +#~ msgid "Flow rate compensation factor" +#~ msgstr "Współczynnik kompensacji przepływu" + +#~ msgctxt "flow_rate_max_extrusion_offset label" +#~ msgid "Flow rate compensation max extrusion offset" +#~ msgstr "Maks. offset ekstruzji do kompensowania przepływu" + +#~ msgctxt "machine_gcode_flavor label" +#~ msgid "G-code Flavour" +#~ msgstr "Wersja G-code" + +#~ msgctxt "machine_gcode_flavor label" +#~ msgid "G-code flavour" +#~ msgstr "Wersja G-code" + +#~ msgctxt "material_guid description" +#~ msgid "GUID of the material. This is set automatically. " +#~ msgstr "GUID materiału. To jest ustawiana automatycznie " + +#~ msgctxt "gantry_height label" +#~ msgid "Gantry height" +#~ msgstr "Wysokość Suwnicy (Gantry)" + +#~ msgctxt "machine_end_gcode description" +#~ msgid "" +#~ "Gcode commands to be executed at the very end - separated by \n" +#~ "." +#~ msgstr "" +#~ "Polecenia G-code, które są wykonywane na samym końcu - oddzielone za pomocą \n" +#~ "." + +#~ msgctxt "machine_start_gcode description" +#~ msgid "" +#~ "Gcode commands to be executed at the very start - separated by \n" +#~ "." +#~ msgstr "" +#~ "Polecenia G-code, które są wykonywane na samym początku - oddzielone za pomocą \n" +#~ "." + +#~ msgctxt "machine_gcode_flavor label" +#~ msgid "Gcode flavour" +#~ msgstr "Wersja G-code" + +#~ msgctxt "support_tree_enable description" +#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." +#~ msgstr "Generuj drzewiaste podpory z gałęziami podpierającymi wydruk. Może to zredukować zużycie materiału i czas wydruku, ale bardzo zwiększa czas cięcia." + +#~ msgctxt "ironing_enabled description" +#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." +#~ msgstr "Przejedź nad górną powierzchnią dodatkowy raz, ale bez ekstrudowania materiału. Topi to plastyk na górze, co powoduje gładszą powierzchnię." + +#~ msgctxt "machine_heated_bed label" +#~ msgid "Has heated build plate" +#~ msgstr "Posiada podgrzewany stół" + +#~ msgctxt "machine_nozzle_heat_up_speed label" +#~ msgid "Heat up speed" +#~ msgstr "Prędkość nagrzewania" + +#~ msgctxt "machine_heat_zone_length label" +#~ msgid "Heat zone length" +#~ msgstr "Długość strefy cieplnej" #~ msgctxt "infill_hollow label" #~ msgid "Hollow Out Objects" #~ msgstr "Wydrąż Model" -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "Usuń całe wypełnienie i spowoduj, aby środek modelu był wybieralny dla podpór." +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "Ile kroków silnika krokowego będzie skutkowało ekstruzją 1mm." -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "Maksymalna dozwolona różnica wysokości od podstawowej wysokości warstwy w mm." +#~ msgctxt "slicing_tolerance description" +#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." +#~ msgstr "Jak ciąć warstwy z ukośnymi powierzchniami. Obszary warstwy mogą być generowane na podstawie miejsca gdzie środek warstwy przecina się z powierzchnią (Środek). Alternatywnie każda warstwa może mieć obszary, które wpadają do środka objętości poprzez wysokość warstwy (Wyłączne) lub warstwa ma obszary, które wpadają do środka w każdym miejscu na warstwie (Włącznie). Wyłącznie zatrzymuje najwięcej detali, Włącznie powoduje najlepsze dopasowanie, a Środek wymaga najmniej czasu do przetworzenia." -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ msgstr "Wyśrodkuj Obiekt" +#~ msgctxt "wall_min_flow_retract description" +#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +#~ msgstr "Gdy załączone, retrakcja jest używana zamiast kombinowanego ruchu jałowego, który zastępuje ściankę, której przepływ jest mniejszy od minimalnego." + +#~ msgctxt "skin_no_small_gaps_heuristic label" +#~ msgid "Ignore Small Z Gaps" +#~ msgstr "Zignoruj Małe Luki Z" + +#~ msgctxt "start_layers_at_same_position description" +#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." +#~ msgstr "Na każdej warstwie rozpocznij drukowanie obiektu blisko tego samego punktu, abyśmy nie rozpoczynali nowej warstwy w miejscu gdzie skończyła się poprzednia warstwa. Powoduje to lepsze nawisy i małe elementy, ale wydłuża czas druku." + +#~ msgctxt "material_bed_temp_prepend label" +#~ msgid "Include build plate temperature" +#~ msgstr "Należy uwzględnić temperaturę stołu" + +#~ msgctxt "material_print_temp_prepend label" +#~ msgid "Include material temperatures" +#~ msgstr "Uwzględnij temperaturę materiału" + +#~ msgctxt "infill_mesh_order label" +#~ msgid "Infill Mesh Order" +#~ msgstr "Porządek Siatki Wypełnienia" + +#~ msgctxt "z_offset_layer_0 label" +#~ msgid "Initial Layer Z Offset" +#~ msgstr "Przesunięcie w Osi Z Warstwy Początk." + +#~ msgctxt "wall_x_extruder_nr label" +#~ msgid "Inner Walls Extruder" +#~ msgstr "Esktruder Wewn. Ściany" + +#~ msgctxt "machine_center_is_zero label" +#~ msgid "Is center origin" +#~ msgstr "Począt. na Środku" + +#~ msgctxt "wireframe_strategy option knot" +#~ msgid "Knot" +#~ msgstr "Węzeł" + +#~ msgctxt "limit_support_retractions label" +#~ msgid "Limit Support Retractions" +#~ msgstr "Ogranicz Retrakcje Pomiędzy Podporami" + +#~ msgctxt "machine_head_polygon label" +#~ msgid "Machine Head Polygon" +#~ msgstr "Obszar głowicy drukarki" + +#~ msgctxt "machine_depth label" +#~ msgid "Machine depth" +#~ msgstr "Głębokość Drukarki" + +#~ msgctxt "machine_head_with_fans_polygon label" +#~ msgid "Machine head & Fan polygon" +#~ msgstr "Obszar Głowicy i Wentylatora Drukarki" + +#~ msgctxt "machine_head_polygon label" +#~ msgid "Machine head polygon" +#~ msgstr "Obszar Głowicy Drukarki" + +#~ msgctxt "machine_height label" +#~ msgid "Machine height" +#~ msgstr "Wysokość drukarki" + +#~ msgctxt "machine_width label" +#~ msgid "Machine width" +#~ msgstr "Szerokość drukarki" + +#~ msgctxt "prime_tower_circular description" +#~ msgid "Make the prime tower as a circular shape." +#~ msgstr "Twórz wieżę czyszczącą o okrągłym kształcie." + +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "Maksymalna Prędk. Posuwu" + +#~ msgctxt "speed_equalize_flow_max label" +#~ msgid "Maximum Speed for Flow Equalization" +#~ msgstr "Maks. Prędk. dla Zrówn. Przepływu" + +#~ msgctxt "max_feedrate_z_override label" +#~ msgid "Maximum Z Speed" +#~ msgstr "Maksymalna Prędk. Z" + +#~ msgctxt "max_extrusion_before_wipe description" +#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." +#~ msgstr "Maksymalna ilość materiału, który można wytłoczyć przed zainicjowaniem kolejnego czyszczenia dyszy." + +#~ msgctxt "speed_equalize_flow_max description" +#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." +#~ msgstr "Maksymalna prędkość drukowania podczas ustawiania prędkości druku w celu zrównoważenia przepływu." #~ msgctxt "mesh_position_x label" #~ msgid "Mesh position x" @@ -7301,165 +7021,129 @@ msgstr "Forma przesunięcia, która ma być zastosowana do modelu podczas ładow #~ msgid "Mesh position z" #~ msgstr "Pozycja siatki Z" -#~ msgctxt "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "Początk. G-code" +#~ msgctxt "support_minimal_diameter label" +#~ msgid "Minimum Diameter" +#~ msgstr "Minimalna Średnica" -#~ msgctxt "machine_start_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." -#~ msgstr "" -#~ "Polecenia G-code, które są wykonywane na samym początku - oddzielone za pomocą \n" -#~ "." +#~ msgctxt "wall_min_flow label" +#~ msgid "Minimum Wall Flow" +#~ msgstr "Minimalny Przepływ Dla Ścianek" -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "Końcowy G-code" +#~ msgctxt "wall_min_flow description" +#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." +#~ msgstr "Minimalny dopuszczalny przepływ procentowy dla linii ścianki. Kompensacja nakładania się ścianek redukuje przepływ, gdy dana ścianka znajduje się blisko wydrukowanej już ścianki. Ścianki, których przepływ powinien być mniejszy, niż ta wartość, będą zastąpione ruchami jałowymi. Aby używać tego ustawienia należy załączyć kompensację nakładających się ścianek oraz drukowanie ścianek zewnętrznych przed wewnętrznymi." -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "Polecenia G-code, które są wykonywane na samym końcu - oddzielone za pomocą \n" -#~ "." +#~ msgctxt "minimum_interface_area description" +#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." +#~ msgstr "Minimalny rozmiar obszaru dla interfejsu podpór. Obszary, które mają powierzchnię mniejszą od tej wartości, nie będą generowane." -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "Wersja G-code" +#~ 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 not be generated." +#~ msgstr "Minimalny rozmiar obszaru dla podłoża podpór. Obszary, które mają powierzchnię mniejszą od tej wartości, nie będą generowane." -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "Typ G-code jaki ma być generowany." +#~ 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 not be generated." +#~ msgstr "Minimalny rozmiar obszaru dla dachu podpór. Obszary, które mają powierzchnię mniejszą od tej wartości, nie będą generowane." + +#~ msgctxt "support_minimal_diameter description" +#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +#~ msgstr "Minimalna średnica w kierunkach X/Y o małej powierzchni, który jest wspierana przez specjalną wieżę wspierającą." + +#~ msgctxt "retraction_combing option noskin" +#~ msgid "No Skin" +#~ msgstr "Bez skóry" #~ 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 GCode." #~ msgstr "Zwykle Cura próbuje zszywać małe dziury w siatce i usunąć części warstwy z dużymi otworami. Włączenie tej opcji powoduje zostawienie tych części, których nie można zszywać. Ta opcja powinna być używana jako ostatnia deska ratunku, gdy wszystko inne nie dostarczy właściwego G-code." -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. 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 Gcode script is output." -#~ msgstr "Używaj ekstruzji względnej zamiast bezwzględnej. Używanie względnych kroków osi E powoduje łatwiejszy postprocessing Gcodu. Jednakże nie jest to wspierane przez wszystkie drukarki i może powodować lekkie zakłamania w ilości podawanego materiału w porównaniu do kroków bezwzględnych. Niezależnie od tego ustawienia, tryb ekstruzji będzie zawsze ustawiany jako bezwzględny przez wyjściem jakiegokolwiek skryptu Gcode" +#~ msgctxt "fill_perimeter_gaps option nowhere" +#~ msgid "Nowhere" +#~ msgstr "Nigdzie" -#~ msgctxt "infill_offset_x description" -#~ msgid "The infill pattern is offset this distance along the X axis." -#~ msgstr "Wypełnienie jest przesunięte o taką odległość wzdłuż osi X." +#~ msgctxt "machine_nozzle_expansion_angle label" +#~ msgid "Nozzle angle" +#~ msgstr "Kąt dyszy" -#~ msgctxt "infill_offset_y description" -#~ msgid "The infill pattern is offset this distance along the Y axis." -#~ msgstr "Wypełnienie jest przesunięte o taką odległość wzdłuż osi Y." +#~ msgctxt "machine_nozzle_head_distance label" +#~ msgid "Nozzle length" +#~ msgstr "Długość dyszy" -#~ msgctxt "infill_overlap 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." +#~ msgctxt "extruders_enabled_count label" +#~ msgid "Number of Extruders that are enabled" +#~ msgstr "Liczba Ekstruderów, które są dostępne" -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "Wartość nałożenia pomiędzy skórą a ścianami jako procent szerokości linii. Delikatne nałożenie pozwala na dobre połączenie ścian ze skórą. Jest to procent średniej szerokości linii skóry i wewnętrznej ściany." +#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" +#~ msgid "Offset With Extruder" +#~ msgstr "Przesunięcie Ekstrudera" -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "Temperatura stosowana przy podgrzewanym stole. Jeśli jest to 0, stół nie rozgrzeje się dla tego wydruku." +#~ msgctxt "limit_support_retractions description" +#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." +#~ msgstr "Unikaj retrakcji podczas poruszania się od podpory do podpory w linii prostej. Załączenie tej funkcji spowoduje skrócenie czasu druku, lecz może prowadzić do nadmiernego nitkowania wewnątrz struktur podporowych." -#~ msgctxt "wall_x_extruder_nr label" -#~ msgid "Inner Walls Extruder" -#~ msgstr "Esktruder Wewn. Ściany" +#~ msgctxt "limit_support_retractions description" +#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." +#~ msgstr "Pomiń retrakcję, przechodząc od podpory do podpory w linii prostej. Włączenie tego ustawienia oszczędza czas drukowania, ale może prowadzić do nadmiernego ciągnięcia filamentu w strukturze nośnej." -#~ 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, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Wzór materiału wypełniającego wydruk. Linie i zygzaki zmieniają kierunek na przemiennych warstwach, redukując koszty materiału. Kratka, trójkąty, sześcienne, ośmiościenne, ćwierć sześcienny i koncentryczny wzór są drukowane w pełni na każdej warstwie. Sześcienne, ćwierć sześcienne i czworościenne wypełnienie zmienia się co każdą warstwę, aby zapewnić równy rozkład siły w każdym kierunku." +#~ msgctxt "cross_infill_apply_pockets_alternatingly description" +#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." +#~ msgstr "Twórz kieszenie tylko w połowie czterostronnych skrzyżowań we wzorze krzyż 3D i zamieniaj pozycję kieszonek pomiędzy wysokościami gdzie wzór dotyka samego siebie." -#~ msgctxt "zig_zaggify_infill description" -#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -#~ msgstr "Łączy końce gdzie wypełnienie spotyka się z wewn. ścianą za pomocą linii, które podążają za kształtem wewn. ściany. Włączenie tej opcji może spowodować lepsze łączenie się wypełnienia ze ścianą i redukuje efekty związane z jakością na pionowych ścianach. Wyłączenie tej opcji redukuje ilość użytego materiału." +#~ 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." +#~ msgstr "Optymalizuj kolejność, według której drukowane są ściany, aby zredukować ilość retrakcji i długości ruchu jałowego. Większość części powinno na tym zyskać, ale niektóre mogą drukować się dłużej, dlatego prosimy o porównaniu czasu drukowania z i bez włączonej opcji." -#~ 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 "" -#~ "Pozioma odległość między obwódką a pierwszą warstwą nadruku.\n" -#~ "Jest to o minimalnej odległości. Z tej odległości linie będą nakładane w kierunku zewnętrznym." +#~ msgctxt "support_infill_angles description" +#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." +#~ msgstr "Orientacja wzoru wypełnienia dla podpór. Wzór podpory jest obracany w płaszczyźnie poziomej." -#~ msgctxt "z_offset_layer_0 label" -#~ msgid "Initial Layer Z Offset" -#~ msgstr "Przesunięcie w Osi Z Warstwy Początk." +#~ msgctxt "outer_inset_first label" +#~ msgid "Outer Before Inner Walls" +#~ msgstr "Zew. Ściany Przed Wew" -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "Ekstruder jest przesuwany z normalnej wysokości pierwszej warstwy o tą wartość. Może być dodatnia (uniesienie) lub ujemna (obniżenie). Niektóre typy filamentu przyklejają się lepiej do stołu jeżeli ekstruder jest lekko uniesiony." +#~ msgctxt "machine_nozzle_tip_outer_diameter label" +#~ msgid "Outer nozzle diameter" +#~ msgstr "Zew. średnica dyszy" -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Warstwy Zbieżne Przesunięcia Z" +#~ msgctxt "wireframe_straight_before_down description" +#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." +#~ msgstr "Odsetek ukośnych linii ułożonych w dół, który jest przykryty poziomą linią. Może to uniemożliwić zwisanie górnej krawędzi linii ułożonejw górę. Dotyczy tylko Drukowania Drutu." -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "Kiedy niezerowe, przesunięcie w osi Z jest redukowane do zera w trakcie drukowania takiej ilości warstw. Wartość 0 oznacza, że przesunięcie pozostaje stałe dla wszystkich warstw wydruku." +#~ msgctxt "wall_min_flow_retract label" +#~ msgid "Prefer Retract" +#~ msgstr "Preferuj Retrakcję" -#~ msgctxt "raft_smoothing description" -#~ msgid "This setting control 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 "To ustawienie kontroluje jak bardzo wewn. narożniki zewn. linii tratwy są zaokrąglone. Wewn. narożniki są zaokrąglone do pół-okręgów o promieniu równym wartości podanej w tym miejscu. To ustawienie usuwa też otwory w zewn. linii tratwy, które są mniejsze niż taki okrąg." +#~ msgctxt "prime_tower_purge_volume label" +#~ msgid "Prime Tower Purge Volume" +#~ msgstr "Pole Czyszczące Wieży Czyszcz." -#~ 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, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Wzór materiału wypełniającego. Linia i zygzakowy wypełnienie zmienia kierunek na przemiennych warstwach zmniejszając koszt materiału. Wzory siatki, trójkątne, sześcienne, czworościenne i koncentryczne są w pełni drukowane na każdej warstwie. Wypełnienie sześcienne i czworościenne zmienia się co każdą warstwę, aby zapewnić równe rozłożenie siły w każdym kierunku." +#~ msgctxt "prime_tower_wall_thickness label" +#~ msgid "Prime Tower Thickness" +#~ msgstr "Grubość Wieży Czyszcz." -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "Czworościenny" +#~ msgctxt "wireframe_enabled description" +#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." +#~ msgstr "Wydrukuj tylko zewnętrzną powierzchnię o słabej strukturze tkaniny, drukując \"w cienkim powietrzu\". Jest to realizowane poprzez poziomy wydruk konturów modelu w określonych przedziałach Z, które są połączone przez linie skierowane w górę i w dół po porzekątnej." -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "Rozszerz Powłokę Do Wypełn." +#~ msgctxt "spaghetti_infill_enabled description" +#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." +#~ msgstr "Drukowanie wypełnienia tak często, aby filament zwisał chaotycznie wewnątrz przedmiotu. Zmniejsza to czas drukowania, ale zachowanie jest raczej nieprzewidywalne." -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "Rozszerz obszary powłoki na górze i/lub dole powierzchni płaskich. Domyślnie, powłoka kończy się na linii ściany otaczające wypełnienie, chociaż może to prowadzić do powstawania dziur kiedy gęstość wypełnienia jest niska. Ustawienie to rozciąga powłokę poza linię ściany, dzięki czemu wypełnienie na kolejnej warstwie osiada na powłoce." +#~ msgctxt "speed_equalize_flow_enabled description" +#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." +#~ msgstr "Wydrukuj cieńsze niż normalne linie szybciej, tak aby ilość materiału wytłaczanego na sekundę pozostała taka sama. Cienkie części modelu mogą wymagać drukowania linii o mniejszej szerokości linii niż podane w ustawieniach. To ustawienie kontroluje zmiany prędkości dla takich linii." -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ msgstr "Rozszerz Górną Powłokę Do Wypełn." +#~ msgctxt "outer_inset_first description" +#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." +#~ msgstr "Drukuje ściany w kolejności od zewnątrz do wewnątrz, gdy jest włączona. Może to poprawić dokładność wymiarów w modelach X i Y przy użyciu plastiku o wysokiej lepkości, takiego jak ABS; może jednak zmniejszyć jakość druku zewnętrznego, zwłaszcza na zwisach." -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "Rozszerz górne obszary ścian (obszary, które mają ponad sobą powietrze) tak, aby wspomagały wypełnienie powyżej." +#~ msgctxt "raft_base_line_spacing label" +#~ msgid "Raft Line Spacing" +#~ msgstr "Rozstaw Linii Tratwy" -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "Rozszerz Dolną Powłokę Do Wypełn." - -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Rozszerz dolną powłokę (obszary, pod którym jest powietrze) tak, aby zostały zakotwiczone o warstwy wypełniające powyżej i poniżej." - -#~ msgctxt "expand_skins_expand_distance description" -#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." -#~ msgstr "Odległość na jaką powłoki zostają rozszerzone do wypełnienia. Domyślna odległość wystarcza, aby pokonać szczelinę między liniami wypełnienia i nie dopuścić do powstania dziur, gdzie spotyka się z powłoką, gdy gęstość wypełnienia jest niska. Mniejsza odległość będzie często wystarczająca." - -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "Pomijaj Niektóre Połączenia Zygzak" - -#~ msgctxt "support_skip_some_zags description" -#~ msgid "Skip some ZigZags connections to make the support structure easier to break." -#~ msgstr "Pomijaj niektóre połączenia Zygzak, aby struktura podpór łatwiej się odrywała." - -#~ msgctxt "support_zag_skip_count label" -#~ msgid "ZigZag Connection Skip Count" -#~ msgstr "Ilość Pominięć Połącz. Zygzak" - -#~ msgctxt "support_zag_skip_count description" -#~ msgid "Skip one in every N connection lines to make the support structure easier to break." -#~ msgstr "Pomijaj jedno na każde N linii połączeń, aby struktury podpór łatwiej się odrywały." - -#~ msgctxt "machine_center_is_zero label" -#~ msgid "Is center origin" -#~ msgstr "Począt. na Środku" - -#~ msgctxt "machine_depth label" -#~ msgid "Machine depth" -#~ msgstr "Głębokość Drukarki" +#~ msgctxt "infill_hollow description" +#~ msgid "Remove all infill and make the inside of the object eligible for support." +#~ msgstr "Usuń całe wypełnienie i spowoduj, aby środek modelu był wybieralny dla podpór." #~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" #~ msgid "RepRap (Marlin/Sprinter)" @@ -7469,46 +7153,482 @@ msgstr "Forma przesunięcia, która ma być zastosowana do modelu podczas ładow #~ msgid "RepRap (Volumetric)" #~ msgstr "RepRap (Objętościowy)" -#~ msgctxt "machine_heated_bed label" -#~ msgid "Has heated build plate" -#~ msgstr "Posiada podgrzewany stół" +#~ msgctxt "wireframe_strategy option retract" +#~ msgid "Retract" +#~ msgstr "Wycofanie" -#~ msgctxt "machine_height label" -#~ msgid "Machine height" -#~ msgstr "Wysokość drukarki" +#~ msgctxt "retraction_enable description" +#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " +#~ msgstr "Cofnij filament, gdy dysza porusza się nad obszarem, w którym nie ma drukować. " -#~ msgctxt "machine_shape label" -#~ msgid "Build plate shape" -#~ msgstr "Kształt stołu" +#~ msgctxt "wipe_retraction_prime_speed label" +#~ msgid "Retraction Prime Speed" +#~ msgstr "Prędkość retrakcji Czyszczenia" + +#~ msgctxt "shell label" +#~ msgid "Shell" +#~ msgstr "Powłoka" #~ msgctxt "machine_show_variants label" #~ msgid "Show machine variants" #~ msgstr "Pokaż warianty drukarki" -#~ msgctxt "machine_width label" -#~ msgid "Machine width" -#~ msgstr "Szerokość drukarki" +#~ msgctxt "material_shrinkage_percentage label" +#~ msgid "Shrinkage Ratio" +#~ msgstr "Współczynnik Skurczu" -#~ msgctxt "material_bed_temp_prepend label" -#~ msgid "Include build plate temperature" -#~ msgstr "Należy uwzględnić temperaturę stołu" +#~ msgctxt "material_shrinkage_percentage description" +#~ msgid "Shrinkage ratio in percentage." +#~ msgstr "Współczynnik skurczu w procentach." -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Wait for build plate heatup" -#~ msgstr "Oczekiwanie na ogrzanie stołu" +#~ msgctxt "support_skip_some_zags label" +#~ msgid "Skip Some ZigZags Connections" +#~ msgstr "Pomijaj Niektóre Połączenia Zygzak" -#~ msgctxt "material_print_temp_prepend label" -#~ msgid "Include material temperatures" -#~ msgstr "Uwzględnij temperaturę materiału" +#~ msgctxt "support_zag_skip_count description" +#~ msgid "Skip one in every N connection lines to make the support structure easier to break." +#~ msgstr "Pomijaj jedno na każde N linii połączeń, aby struktury podpór łatwiej się odrywały." -#~ msgctxt "material_print_temp_wait label" -#~ msgid "Wait for nozzle heatup" -#~ msgstr "Oczekiwanie na ogrzanie dyszy" +#~ msgctxt "support_skip_some_zags description" +#~ msgid "Skip some ZigZags connections to make the support structure easier to break." +#~ msgstr "Pomijaj niektóre połączenia Zygzak, aby struktura podpór łatwiej się odrywał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 adhestion and accuracy." +#~ msgstr "Małe elementy na pierwszej warstwie zostaną wydrukowane z podanym procentem ich normalnej prędkości drukowania. Wolniejsze drukowanie może pomóc w zachowaniu dokładności i dokładności." + +#~ 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 adhestion and accuracy." +#~ msgstr "Małe obiekty zostaną wydrukowane z podanym procentem ich normalnej prędkości drukowania. Wolniejsze drukowanie może pomóc w zachowaniu dokładności." + +#~ 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 "Wygładź spiralny kontur, aby zmniejszyć widoczność szwu Z (szew Z powinien być ledwo widoczny na wydruku, ale nadal będzie widoczny w widoku warstwy). Należy pamiętać, że wygładzanie będzie miało tendencję do rozmycia drobnych szczegółów powierzchni." + +#~ msgctxt "spaghetti_flow label" +#~ msgid "Spaghetti Flow" +#~ msgstr "Przepływ Spaghetti" + +#~ msgctxt "spaghetti_infill_enabled label" +#~ msgid "Spaghetti Infill" +#~ msgstr "Wypełnienie Spaghetti" + +#~ msgctxt "spaghetti_infill_extra_volume label" +#~ msgid "Spaghetti Infill Extra Volume" +#~ msgstr "Ekstra Objętość Wypełn. Spaghetti" + +#~ msgctxt "spaghetti_max_height label" +#~ msgid "Spaghetti Infill Maximum Height" +#~ msgstr "Maks. Wys. Wypełn. Spaghetti" + +#~ msgctxt "spaghetti_infill_stepped label" +#~ msgid "Spaghetti Infill Stepping" +#~ msgstr "Krokowe Wypełn. Spaghetti" + +#~ msgctxt "spaghetti_inset label" +#~ msgid "Spaghetti Inset" +#~ msgstr "Wkład Spaghetti" + +#~ msgctxt "spaghetti_max_infill_angle label" +#~ msgid "Spaghetti Maximum Infill Angle" +#~ msgstr "Maks. Kąt Wypełn. Spaghetti" + +#~ msgctxt "wireframe_printspeed description" +#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." +#~ msgstr "Prędkość, z jaką porusza się dysza podczas wytłaczania materiału. Dotyczy tylko Drukowania Drutu." + +#~ msgctxt "wireframe_printspeed_down description" +#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." +#~ msgstr "Prędkość drukowania ukośnej linii w dół. Odnosi się tylko do Drukowania Drutu." + +#~ msgctxt "wireframe_printspeed_up description" +#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." +#~ msgstr "Szybkość drukowania linii do góry „w powietrzu”. Odnosi się tylko do Drukowania Drutu." + +#~ msgctxt "wireframe_printspeed_bottom description" +#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." +#~ msgstr "Prędkość drukowania pierwszej warstwy, która jest jedyną warstwą dotykającą stołu. Dotyczy tylko Drukowania Drutu." + +#~ msgctxt "wireframe_printspeed_flat description" +#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." +#~ msgstr "Prędkość drukowania poziomych konturów modelu. Odnosi się tylko do Drukowania Drutu." + +#~ msgctxt "machine_start_gcode label" +#~ msgid "Start GCode" +#~ msgstr "Początk. G-code" + +#~ msgctxt "start_layers_at_same_position label" +#~ msgid "Start Layers with the Same Part" +#~ msgstr "Rozp. Warstwy w tym Samym Punkcie" + +#~ msgctxt "wireframe_strategy description" +#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." +#~ msgstr "Strategia zapewniająca podłączenie dwóch kolejnych warstw w każdym punkcie połączenia. Wycofanie pozwala na utwardzenie linii idących w górę we właściwej pozycji, ale może powodować \"mielenie\" filamentu. Węzeł może być wykonany na końcu linii do góry, aby zwiększyć szanse na połączenie z nią i pozostawić dobrą linię; może to jednak wymagać wolnych prędkości druku. Inną strategią jest wyrównanie opadania górnej krawędzi. Jednak linie nie zawsze spadają zgodnie z przewidywaniami." + +#~ msgctxt "infill_pattern option tetrahedral" +#~ msgid "Tetrahedral" +#~ msgstr "Czworościenny" + +#~ msgctxt "infill_overlap 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." + +#~ msgctxt "skin_overlap description" +#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." +#~ msgstr "Wartość nałożenia pomiędzy skórą a ścianami jako procent szerokości linii. Delikatne nałożenie pozwala na dobre połączenie ścian ze skórą. Jest to procent średniej szerokości linii skóry i wewnętrznej ściany." + +#~ msgctxt "skin_overlap description" +#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." +#~ msgstr "Ilość nałożenia pomiędzy skórą a ścianami w procentach szerokości linii skóry. Delikatne nałożenie pozawala na lepsze połączenie się ścian ze skórą. Jest to procent średniej szerokości linii skóry i wewnętrznej ściany." #~ msgctxt "skin_overlap description" #~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." #~ msgstr "Ilość nakładania się skóry i ścian. Lekkie nałożenie pozwala ściśle łączyć się ze skórą." +#~ msgctxt "skin_overlap_mm description" +#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." +#~ msgstr "Ilość nakładania się skóry i ścian. Lekkie nałożenie pozwala ściśle łączyć się ze skórą." + +#~ msgctxt "switch_extruder_retraction_amount description" +#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." +#~ msgstr "Długość retrakcji: Ustaw na 0, aby wyłączyć retrkację. To powinno ogólnie być takie samo jak długość strefy grzewczej." + +#~ msgctxt "wireframe_roof_inset description" +#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." +#~ msgstr "Odległość jaka zostaje pokryta podczas tworzenia połączenia z wewnętrznego konturu dachu. Odnosi się tylko do Drukowania Drutu." + +#~ msgctxt "wireframe_roof_drag_along description" +#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Długość końcówki wewnętrznej linii, która jest rozciągana podczas powrotu do zewnętrznej linii dachu. Trasa ta jest kompensowana. Odnosi się tylko do Drukowania Drutu." + +#~ msgctxt "expand_skins_expand_distance description" +#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." +#~ msgstr "Odległość na jaką powłoki zostają rozszerzone do wypełnienia. Domyślna odległość wystarcza, aby pokonać szczelinę między liniami wypełnienia i nie dopuścić do powstania dziur, gdzie spotyka się z powłoką, gdy gęstość wypełnienia jest niska. Mniejsza odległość będzie często wystarczająca." + +#~ msgctxt "wireframe_roof_fall_down description" +#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Odległość, na jaką opadają linie dachu wydrukowane \"w powietrzu\" podczas druku. Ta odległość jest kompensowana. Dotyczy tylko Drukowania Drutu." + +#~ msgctxt "z_offset_layer_0 description" +#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." +#~ msgstr "Ekstruder jest przesuwany z normalnej wysokości pierwszej warstwy o tą wartość. Może być dodatnia (uniesienie) lub ujemna (obniżenie). Niektóre typy filamentu przyklejają się lepiej do stołu jeżeli ekstruder jest lekko uniesiony." + +#~ msgctxt "wireframe_height description" +#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." +#~ msgstr "Wysokość linii w górę i po przekątnej w dół między dwiema częściami poziomymi. Określa ona całkowitą gęstość struktury siatki. Dotyczy tylko Drukowania Drutu." + +#~ 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 "" +#~ "Pozioma odległość między obwódką a pierwszą warstwą nadruku.\n" +#~ "Jest to o minimalnej odległości. Z tej odległości linie będą nakładane w kierunku zewnętrznym." + +#~ msgctxt "infill_offset_x description" +#~ msgid "The infill pattern is offset this distance along the X axis." +#~ msgstr "Wypełnienie jest przesunięte o taką odległość wzdłuż osi X." + +#~ msgctxt "infill_offset_y description" +#~ msgid "The infill pattern is offset this distance along the Y axis." +#~ msgstr "Wypełnienie jest przesunięte o taką odległość wzdłuż osi Y." + +#~ msgctxt "adaptive_layer_height_variation description" +#~ msgid "The maximum allowed height different from the base layer height in mm." +#~ msgstr "Maksymalna dozwolona różnica wysokości od podstawowej wysokości warstwy w mm." + +#~ msgctxt "bridge_wall_max_overhang description" +#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." +#~ msgstr "Maksymalna dozwolona szerokość obszaru powietrza pod linią ściany zanim zostanie wydrukowana ściana używająca ustawień mostu. Wyrażona w procentach szerokości linii ściany. Kiedy przestrzeń powietrza jest szersza od tego, linia ściany jest drukowana używając ustawień mostu. W przeciwnym wypadku linia ściany jest drukowana z normalnymi ustawieniami. Tym niższa wartość, tym większa szansa, że linie ściany na nawisach będą drukowane z ustawieniami mostu." + +#~ msgctxt "spaghetti_max_infill_angle description" +#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." +#~ msgstr "Maksymalny kąt w odniesieniu do Osi Z wewnątrz wydruku dla obszarów, które mają być wypełnione wypełnieniem spaghetti. Obniżenie tej wartości powoduje, że więcej części modelu, które są pod kątem, będzie wypełnianych na każdej warstwie." + +#~ 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." +#~ msgstr "Maksymalne odchylenie dozwolone przy zmniejszaniu rozdzielczości dla ustawienia „Maksymalna rozdzielczość”. Jeśli to zwiększysz, wydruk będzie mniej dokładny, ale G-Code będzie mniejszy." + +#~ msgctxt "support_join_distance description" +#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." +#~ msgstr "Maksymalna odległość między podporami w kierunkach X/Y. Gdy oddzielne struktury są bliżej siebie niż ta wartość, struktury łączą się w jedną." + +#~ msgctxt "flow_rate_max_extrusion_offset description" +#~ msgid "The maximum distance in mm to compensate." +#~ msgstr "Maksymalna odległość w mm do skompensowania." + +#~ msgctxt "spaghetti_max_height description" +#~ msgid "The maximum height of inside space which can be combined and filled from the top." +#~ msgstr "Maksymalna wysokość przestrzeni wewnętrznej, którą można łączyć i napełniać od góry." + +#~ msgctxt "max_feedrate_z_override description" +#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." +#~ msgstr "Maksymalna prędkość przesuwu stołu. Ustawienie na zero powoduje, że druk używa domyślnych ustawień oprogramowania dla maksymalnej prędkości z." + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "Minimalna odległość między zewnętrzną stroną formy i zewnętrzną stroną modelu." + +#~ msgctxt "flow_rate_extrusion_offset_factor description" +#~ msgid "The multiplication factor for the flow rate -> distance translation." +#~ msgstr "Współczynnik mnożący przepływu -> tłumaczenie odległości." + +#~ msgctxt "support_tree_wall_count description" +#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." +#~ msgstr "Liczba ścian gałęzi drzewiastej podpory. Grubsze ściany drukują się dłużej , ale nie odpadają tak łatwo." + +#~ msgctxt "spaghetti_inset description" +#~ msgid "The offset from the walls from where the spaghetti infill will be printed." +#~ msgstr "Odsunięcie od ścian, z których będzie drukowane wypełnienie spaghetti." + +#~ 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, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "Wzór materiału wypełniającego wydruk. Linie i zygzaki zmieniają kierunek na przemiennych warstwach, redukując koszty materiału. Kratka, trójkąty, sześcienne, ośmiościenne, ćwierć sześcienny i koncentryczny wzór są drukowane w pełni na każdej warstwie. Sześcienne, ćwierć sześcienne i czworościenne wypełnienie zmienia się co każdą warstwę, aby zapewnić równy rozkład siły w każdym kierunku." + +#~ 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, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "Wzór materiału wypełniającego. Linia i zygzakowy wypełnienie zmienia kierunek na przemiennych warstwach zmniejszając koszt materiału. Wzory siatki, trójkątne, sześcienne, czworościenne i koncentryczne są w pełni drukowane na każdej warstwie. Wypełnienie sześcienne i czworościenne zmienia się co każdą warstwę, aby zapewnić równe rozłożenie siły w każdym kierunku." + +#~ 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. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "Wzór materiału wypełniającego wydruk. Linie i zygzaki zmieniają kierunek na przemiennych warstwach, redukując koszty materiału. Kratka, trójkąty, tri-sześciokąt, sześcienne, ośmiościenne, ćwierć sześcienny i koncentryczny wzór są drukowane w pełni na każdej warstwie. Sześcienne, ćwierć sześcienne i czworościenne wypełnienie zmienia się co każdą warstwę, aby zapewnić równy rozkład siły w każdym kierunku." + +#~ 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." +#~ msgstr "Wzorzec wypełnienia wydruku. Kierunek zamiany linii i zygzaka na alternatywnych warstwach, zmniejsza koszty materiałów. Wzorzec siatki, trójkąta, sześcianu, oktetu, ćwiartki sześciennej, krzyżyka i koncentryczny, są w pełni drukowane na każdej warstwie. Gyroid, sześcian, świartka sześcienna i oktet zmienia się z każdą warstwą, aby zapewnić bardziej równomierny rozkład sił w każdym kierunku." + +#~ msgctxt "speed_layer_0 description" +#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." +#~ msgstr "Prędkość dla pierwszej warstwy. Niższa wartość jest zalecane w celu poprawy przyczepności do stołu." + +#~ msgctxt "build_volume_temperature description" +#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." +#~ msgstr "Temperatura stosowana dla obszaru roboczego. Jeżeli jest ustawione 0, temperatura nie będzie ustawiona." + +#~ msgctxt "material_bed_temperature_layer_0 description" +#~ msgid "The temperature used for the heated build plate at the first layer." +#~ msgstr "Temperatura stosowana przy podgrzewanym stole na pierwszej warstwie." + +#~ msgctxt "material_bed_temperature description" +#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." +#~ msgstr "Temperatura stosowana dla podgrzewanej platformy roboczej. Jeżeli jest ustawione 0, temperatura stołu nie będzie ustawiona." + +#~ msgctxt "material_bed_temperature description" +#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." +#~ msgstr "Temperatura stosowana przy podgrzewanym stole. Jeśli jest to 0, stół nie rozgrzeje się dla tego wydruku." + +#~ msgctxt "prime_tower_wall_thickness description" +#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." +#~ msgstr "Grubość pustej wieży czyszczącej. Grubość większa niż połowa minimalnej objętości wieży czyszczącej spowoduje, że wieża będzie miała dużą gęstość." + #~ msgctxt "wall_thickness description" #~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." #~ msgstr "Grubość ścian zewnętrznych w kierunku poziomym. Ta wartość podzielona przez szerokość linii ściany określa liczbę ścian." + +#~ msgctxt "support_tree_wall_thickness description" +#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." +#~ msgstr "Grubość ścian gałęzi drzewiastej podpory. Grubsze ściany drukują się dłużej, ale nie odpadają tak łatwo." + +#~ msgctxt "machine_gcode_flavor description" +#~ msgid "The type of gcode to be generated." +#~ msgstr "Typ G-code jaki ma być generowany." + +#~ msgctxt "raft_smoothing description" +#~ msgid "This setting control 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 "To ustawienie kontroluje jak bardzo wewn. narożniki zewn. linii tratwy są zaokrąglone. Wewn. narożniki są zaokrąglone do pół-okręgów o promieniu równym wartości podanej w tym miejscu. To ustawienie usuwa też otwory w zewn. linii tratwy, które są mniejsze niż taki okrąg." + +#~ msgctxt "adaptive_layer_height_threshold description" +#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." +#~ msgstr "Opóźnienie w wyborze, czy użyć mniejszej warstwy, czy nie. Ta liczba jest porównywana do najbardziej stromego nachylenia na warstwie." + +#~ msgctxt "wireframe_roof_outer_delay description" +#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." +#~ msgstr "Czas, który poświęca się na zewnętrznych obrzeżach otworu, który ma stać się dachem. Dłuższy czas może spowodować lepsze połączenie. Odnosi się tylko do Drukowania Drutu." + +#~ 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, while an angle of 90° is vertical." +#~ msgstr "Górne i/lub dolne powierzchnie przedmiotu o kącie większym niż to ustawienie nie będą miały rozszerzonego górnej/dolnej skóry. Pozwala to uniknąć powiększania wąskich ścian, które powstają, gdy powierzchnia modelu ma blisko pionowe nachylenie. Kąt 0 ° jest poziomy, a kąt 90 ° jest pionowy." + +#~ msgctxt "support_tree_enable label" +#~ msgid "Tree Support" +#~ msgstr "Drzewne Podpory" + +#~ msgctxt "support_tree_wall_count label" +#~ msgid "Tree Support Wall Line Count" +#~ msgstr "Liczba Linii Ściany Drzewiastej Podpory" + +#~ msgctxt "support_tree_wall_thickness label" +#~ msgid "Tree Support Wall Thickness" +#~ msgstr "Grubość Ściany Drzewiastej Podpory" + +#~ msgctxt "adaptive_layer_height_enabled label" +#~ msgid "Use adaptive layers" +#~ msgstr "Użyj zmiennych warstw" + +#~ msgctxt "relative_extrusion description" +#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. 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 Gcode script is output." +#~ msgstr "Używaj ekstruzji względnej zamiast bezwzględnej. Używanie względnych kroków osi E powoduje łatwiejszy postprocessing Gcodu. Jednakże nie jest to wspierane przez wszystkie drukarki i może powodować lekkie zakłamania w ilości podawanego materiału w porównaniu do kroków bezwzględnych. Niezależnie od tego ustawienia, tryb ekstruzji będzie zawsze ustawiany jako bezwzględny przez wyjściem jakiegokolwiek skryptu Gcode" + +#~ msgctxt "wireframe_bottom_delay label" +#~ msgid "WP Bottom Delay" +#~ msgstr "DD Dolne Opóźnienie" + +#~ msgctxt "wireframe_printspeed_bottom label" +#~ msgid "WP Bottom Printing Speed" +#~ msgstr "DD Prędk. Drukowania Dołu" + +#~ msgctxt "wireframe_flow_connection label" +#~ msgid "WP Connection Flow" +#~ msgstr "DD Przepływ Połączenia" + +#~ msgctxt "wireframe_height label" +#~ msgid "WP Connection Height" +#~ msgstr "DD Wysokość Połączenia" + +#~ msgctxt "wireframe_printspeed_down label" +#~ msgid "WP Downward Printing Speed" +#~ msgstr "DD Prędkość Drukowania w Dół" + +#~ msgctxt "wireframe_drag_along label" +#~ msgid "WP Drag Along" +#~ msgstr "DD Przeciągnij Wzdłuż" + +#~ msgctxt "wireframe_up_half_speed label" +#~ msgid "WP Ease Upward" +#~ msgstr "DD Łatwe Wzniesienie" + +#~ msgctxt "wireframe_fall_down label" +#~ msgid "WP Fall Down" +#~ msgstr "DD Spadek" + +#~ msgctxt "wireframe_flat_delay label" +#~ msgid "WP Flat Delay" +#~ msgstr "DD Płaskie Opóźnienie" + +#~ msgctxt "wireframe_flow_flat label" +#~ msgid "WP Flat Flow" +#~ msgstr "DD Płaskie Przepływ" + +#~ msgctxt "wireframe_flow label" +#~ msgid "WP Flow" +#~ msgstr "DD Przepływ" + +#~ msgctxt "wireframe_printspeed_flat label" +#~ msgid "WP Horizontal Printing Speed" +#~ msgstr "DD Prędkość Drukowania Poziomo" + +#~ msgctxt "wireframe_top_jump label" +#~ msgid "WP Knot Size" +#~ msgstr "DD Rozmiar Węzła" + +#~ msgctxt "wireframe_nozzle_clearance label" +#~ msgid "WP Nozzle Clearance" +#~ msgstr "DD Prześwit Dyszy" + +#~ msgctxt "wireframe_roof_drag_along label" +#~ msgid "WP Roof Drag Along" +#~ msgstr "DD Rozciągaj Dach" + +#~ msgctxt "wireframe_roof_fall_down label" +#~ msgid "WP Roof Fall Down" +#~ msgstr "DD Spadek Dachu" + +#~ msgctxt "wireframe_roof_inset label" +#~ msgid "WP Roof Inset Distance" +#~ msgstr "DD Długość Wkładu Dachu" + +#~ msgctxt "wireframe_roof_outer_delay label" +#~ msgid "WP Roof Outer Delay" +#~ msgstr "DD Opóźnienie Zew. Dachu" + +#~ msgctxt "wireframe_printspeed label" +#~ msgid "WP Speed" +#~ msgstr "DD Prędkość" + +#~ msgctxt "wireframe_straight_before_down label" +#~ msgid "WP Straighten Downward Lines" +#~ msgstr "DD Prostuj Linie w Dół" + +#~ msgctxt "wireframe_strategy label" +#~ msgid "WP Strategy" +#~ msgstr "DD Strategia" + +#~ msgctxt "wireframe_top_delay label" +#~ msgid "WP Top Delay" +#~ msgstr "DD Opóźnienie Góry" + +#~ msgctxt "wireframe_printspeed_up label" +#~ msgid "WP Upward Printing Speed" +#~ msgstr "DD Prędkość Drukowania do Góry" + +#~ msgctxt "material_bed_temp_wait label" +#~ msgid "Wait for build plate heatup" +#~ msgstr "Oczekiwanie na ogrzanie stołu" + +#~ msgctxt "material_print_temp_wait label" +#~ msgid "Wait for nozzle heatup" +#~ msgstr "Oczekiwanie na ogrzanie dyszy" + +#~ 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." +#~ msgstr "Ścianka o większym kącie nawisu niż podany będzie drukowana z użyciem ustawień nawisającej ścianki. Przy wartości 90°, żadna ścianka nie będzie traktowana jako ścianka nawisająca." + +#~ msgctxt "retraction_combing_max_distance description" +#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." +#~ msgstr "Przy wartości niezerowej, kombinowane ruchy jałowe o dystansie większym niż zadany bedą używały retrakcji." + +#~ msgctxt "z_offset_taper_layers description" +#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." +#~ msgstr "Kiedy niezerowe, przesunięcie w osi Z jest redukowane do zera w trakcie drukowania takiej ilości warstw. Wartość 0 oznacza, że przesunięcie pozostaje stałe dla wszystkich warstw wydruku." + +#~ msgctxt "skin_no_small_gaps_heuristic description" +#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." +#~ msgstr "Jeśli model ma małe, pionowe szczeliny, to można wykorzystać dodatkowe 5% mocy obliczeniowej do wygenerowania górnej i dolnej skóry w wąskich przestrzeniach. W takim wypadku, wyłącz tę opcję." + +#~ msgctxt "wipe_hop_enable 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 "Zawsze, gdy następuje retrakcja, stół roboczy jest opuszczany w celu utworzenia luzu między dyszą a drukiem. Zapobiega to uderzeniu dyszy podczas ruchu jałowego, co zmniejsza szanse uderzenia wydruku na stole." + +#~ msgctxt "clean_between_layers description" +#~ msgid "Whether to include nozzle wipe G-Code between layers. 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 "Włącza w G-Code wycieranie dyszy między warstwami. Włączenie tego ustawienia może wpłynąć na zachowanie retrakcji przy zmianie warstwy. Użyj ustawień „Czyszczenie przy retrakcji”, aby kontrolować retrakcję na warstwach, na których będzie działał skrypt czyszczenia." + +#~ 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 only possible if 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 "Czy drukować wszystkie modele po jednej warstwie, czy poczekać na zakończenie jednego modelu, przed przejściem do następnego. Tryb Jeden na raz jest możliwy, gdy wszystkie modele są oddzielone w taki sposób, aby cała głowica drukująca mogła się poruszać między wszystkimi modelami i są one niższe niż odległość pomiędzy dyszą i osiami X/Y." + +#~ msgctxt "spaghetti_infill_stepped description" +#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." +#~ msgstr "Czy drukować wypełnienie spaghetti krokami, czy ekstrudować filament wypełnienia na końcu wydruku." + +#~ msgctxt "dual_pre_wipe label" +#~ msgid "Wipe Nozzle After Switch" +#~ msgstr "Wytrzyj Dyszę po Przełączeniu" + +#~ msgctxt "wipe_hop_enable label" +#~ msgid "Wipe Z Hop When Retracted" +#~ msgstr "Czyszczący skok Z jeśli jest retrakcja" + +#~ msgctxt "wireframe_enabled label" +#~ msgid "Wire Printing" +#~ msgstr "Drukowanie Drutu" + +#~ msgctxt "z_offset_taper_layers label" +#~ msgid "Z Offset Taper Layers" +#~ msgstr "Warstwy Zbieżne Przesunięcia Z" + +#~ msgctxt "support_zag_skip_count label" +#~ msgid "ZigZag Connection Skip Count" +#~ msgstr "Ilość Pominięć Połącz. Zygzak" + +#~ msgctxt "blackmagic description" +#~ msgid "category_blackmagic" +#~ msgstr "category_blackmagic" + +#~ msgctxt "meshfix description" +#~ msgid "category_fixes" +#~ msgstr "poprawki_kategorii" + +#~ msgctxt "experimental description" +#~ msgid "experimental!" +#~ msgstr "eksperymentalne!" diff --git a/resources/i18n/pt_BR/cura.po b/resources/i18n/pt_BR/cura.po index ecf80a2459..849db53c18 100644 --- a/resources/i18n/pt_BR/cura.po +++ b/resources/i18n/pt_BR/cura.po @@ -1,13 +1,14 @@ # Cura -# Copyright (C) 2022 Ultimaker B.V. +# Copyright (C) 2022 UltiMaker. # This file is distributed under the same license as the Cura package. +# Ultimaker , 2022. # msgid "" msgstr "" "Project-Id-Version: Cura 5.0\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0200\n" -"PO-Revision-Date: 2022-04-28 03:56+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-04-06 15:55+0000\n" +"PO-Revision-Date: 2023-02-17 17:37+0100\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" "Language: pt_BR\n" @@ -15,238 +16,116 @@ 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.0.1\n" +"X-Generator: Poedit 3.2.2\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -msgctxt "@label" -msgid "Unknown" -msgstr "Desconhecido" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "As impressoras abaixo não podem ser conectadas por serem parte de um grupo" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Impressoras de rede disponíveis" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Não sobreposto" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Connected printers" -msgstr "Impressoras conectadas" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Preset printers" -msgstr "Impressoras pré-ajustadas" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:143 -#, 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 "Tem certeza que deseja remover {0}? Isto não pode ser defeito!" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:61 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 -msgctxt "@label" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:65 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Visual" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:66 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "O perfil visual é projetado para imprimir protótipos e modelos virtuais com o objetivo de alta qualidade visual e de superfície." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:70 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engenharia" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "O perfil de engenharia é projetado para imprimir protótipos funcionais e partes de uso final com o objetivo de melhor precisão e tolerâncias mais estritas." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:75 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Rascunho" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:76 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "O perfil de rascunho é projetado para imprimir protótipos iniciais e validações de conceito com o objetivo de redução significativa de tempo de impressão." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:232 -msgctxt "@label" -msgid "Custom Material" -msgstr "Material Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:233 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 -msgctxt "@label" -msgid "Custom" -msgstr "Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:391 -msgctxt "@label" -msgid "Custom profiles" -msgstr "Perfis personalizados" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:426 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Todos Os Tipos Suportados ({0})" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Todos Os Arquivos (*)" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Calculado" - -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 +#: cura/API/Account.py:199 msgctxt "@info:title" msgid "Login failed" msgstr "Login falhou" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: cura/Arranging/ArrangeObjectsJob.py:25 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Achando novos lugares para objetos" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: cura/Arranging/ArrangeObjectsJob.py:29 msgctxt "@info:title" msgid "Finding Location" msgstr "Buscando Localização" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Não foi possível achar um lugar dentro do volume de construção para todos os objetos" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: cura/Arranging/ArrangeObjectsJob.py:43 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Não Foi Encontrada Localização" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:115 +#: cura/Backups/Backup.py:115 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Não pude criar arquivo do diretório de dados de usuário: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:159 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +#: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159 +#: plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: plugins/CuraDrive/src/DrivePluginExtension.py:126 msgctxt "@info:title" msgid "Backup" -msgstr "Backup" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:134 +#: cura/Backups/Backup.py:134 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Tentativa de restauração de backup do Cura sem dados ou metadados apropriados." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:145 +#: cura/Backups/Backup.py:145 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that is higher than the current version." msgstr "Tentativa de restauração de backup do Cura de versão maior que a atual." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:158 +#: cura/Backups/Backup.py:158 msgctxt "@info:backup_failed" msgid "The following error occurred while trying to restore a Cura backup:" msgstr "O seguinte erro ocorreu ao tentar restaurar um backup do Cura:" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: cura/BuildVolume.py:100 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." msgstr "A altura do volume de impressão foi reduzida para que o valor da \"Sequência de Impressão\" impeça o eixo de colidir com os modelos impressos." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 +#: cura/BuildVolume.py:103 msgctxt "@info:title" msgid "Build Volume" msgstr "Volume de Impressão" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "O Cura não consegue iniciar" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" -"

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

    \n" +"

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

    Oops, o Ultimaker Cura encontrou algo que não parece estar correto.

    \n" +"

    Oops, o UltiMaker Cura encontrou algo que não parece estar correto.

    \n" "

    Encontramos um erro irrecuperável durante a inicialização. Ele foi possivelmente causado por arquivos de configuração incorretos. Sugerimos salvar e restabelecer sua configuração.

    \n" "

    Cópias salvas podem ser encontradas na pasta de configuração.

    \n" "

    Por favor nos envie este Relatório de Falha para consertar o problema.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: cura/CrashHandler.py:122 msgctxt "@action:button" -msgid "Send crash report to Ultimaker" -msgstr "Enviar relatório de falha à Ultimaker" +msgid "Send crash report to UltiMaker" +msgstr "Enviar relatório de falha à UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Exibir relatório de falha detalhado" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Mostrar a pasta de configuração" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Salvar e Restabelecer Configuração" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Relatório de Problema" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

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

    \n" @@ -257,573 +136,2241 @@ msgstr "" "

    Por favor use o botão \"Enviar relatório\" para publicar um relatório de erro automaticamente em nossos servidores

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Informação do Sistema" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Desconhecida" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Versão do Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Linguagem do Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Linguagem do SO" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Plataforma" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Versão do Qt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Versão do PyQt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized" -msgstr "" +msgstr "Ainda não inicializado" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Versão da OpenGL: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • Fornecedor da OpenGL: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • Renderizador da OpenGL: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 +#: cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Traceback do erro" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 +#: cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Registros" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 +#: cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Enviar relatório" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:531 +#: cura/CuraApplication.py:540 msgctxt "@info:progress" msgid "Loading machines..." msgstr "Carregando máquinas..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +#: cura/CuraApplication.py:547 msgctxt "@info:progress" msgid "Setting up preferences..." msgstr "Ajustando preferências..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +#: cura/CuraApplication.py:692 msgctxt "@info:progress" msgid "Initializing Active Machine..." msgstr "Inicializando Máquina Ativa..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +#: cura/CuraApplication.py:839 msgctxt "@info:progress" msgid "Initializing machine manager..." msgstr "Inicializando gestor de máquinas..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +#: cura/CuraApplication.py:853 msgctxt "@info:progress" msgid "Initializing build volume..." msgstr "Inicializando volume de impressão..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +#: cura/CuraApplication.py:921 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "Configurando cena..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +#: cura/CuraApplication.py:957 msgctxt "@info:progress" msgid "Loading interface..." msgstr "Carregando interface..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +#: cura/CuraApplication.py:962 msgctxt "@info:progress" msgid "Initializing engine..." msgstr "Inicializando motor..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#: cura/CuraApplication.py:1290 #, 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" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1798 +#: cura/CuraApplication.py:1816 #, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Somente um arquivo G-Code pode ser carregado por vez. Pulando importação de {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 +#: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 msgctxt "@info:title" msgid "Warning" msgstr "Aviso" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#: cura/CuraApplication.py:1828 #, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "Não é possível abrir nenhum outro arquivo se G-Code estiver sendo carregado. Pulando importação de {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1812 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156 +#: cura/Settings/CuraContainerRegistry.py:166 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 msgctxt "@info:title" msgid "Error" msgstr "Erro" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 +#: cura/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Desconhecido" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "As impressoras abaixo não podem ser conectadas por serem parte de um grupo" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Impressoras de rede disponíveis" + +#: cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Não sobreposto" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:28 +msgctxt "@label" +msgid "Connected printers" +msgstr "Impressoras conectadas" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +msgctxt "@label" +msgid "Preset printers" +msgstr "Impressoras pré-ajustadas" + +#: cura/Machines/Models/GlobalStacksModel.py:165 +#, 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 "Tem certeza que deseja remover {0}? Isto não pode ser defeito!" + +#: cura/Machines/Models/IntentCategoryModel.py:42 +#: cura/Machines/Models/IntentSelectionModel.py:61 +#: cura/Machines/Models/IntentTranslations.py:11 +#: cura/Machines/Models/QualityManagementModel.py:347 +msgctxt "@label" +msgid "Default" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:45 +#: cura/Machines/Models/IntentSelectionModel.py:65 +#: cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:46 +#: cura/Machines/Models/IntentSelectionModel.py:66 +#: cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "O perfil visual é projetado para imprimir protótipos e modelos virtuais com o objetivo de alta qualidade visual e de superfície." + +#: cura/Machines/Models/IntentCategoryModel.py:49 +#: cura/Machines/Models/IntentSelectionModel.py:70 +#: cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "Engenharia" + +#: cura/Machines/Models/IntentCategoryModel.py:50 +#: cura/Machines/Models/IntentSelectionModel.py:71 +#: cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "O perfil de engenharia é projetado para imprimir protótipos funcionais e partes de uso final com o objetivo de melhor precisão e tolerâncias mais estritas." + +#: cura/Machines/Models/IntentCategoryModel.py:53 +#: cura/Machines/Models/IntentSelectionModel.py:75 +#: cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "Rascunho" + +#: cura/Machines/Models/IntentCategoryModel.py:54 +#: cura/Machines/Models/IntentSelectionModel.py:76 +#: cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "O perfil de rascunho é projetado para imprimir protótipos iniciais e validações de conceito com o objetivo de redução significativa de tempo de impressão." + +#: cura/Machines/Models/MaterialManagementModel.py:232 +msgctxt "@label" +msgid "Custom Material" +msgstr "Material Personalizado" + +#: cura/Machines/Models/MaterialManagementModel.py:233 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 +msgctxt "@label" +msgid "Custom" +msgstr "Personalizado" + +#: cura/Machines/Models/QualityManagementModel.py:400 +msgctxt "@label" +msgid "Custom profiles" +msgstr "Perfis personalizados" + +#: cura/Machines/Models/QualityManagementModel.py:435 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Todos Os Tipos Suportados ({0})" + +#: cura/Machines/Models/QualityManagementModel.py:436 +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Todos Os Arquivos (*)" + +#: cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Calculado" + +#: cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Multiplicando e colocando objetos" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 +#: cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "Colocando Objetos" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 +#: cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Colocando Objeto" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +#: cura/OAuth2/AuthorizationHelpers.py:89 msgctxt "@message" msgid "Could not read response." msgstr "Não foi possível ler a resposta." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +#: cura/OAuth2/AuthorizationRequestHandler.py:75 msgctxt "@message" msgid "The provided state is not correct." msgstr "O estado provido não está correto." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +#: cura/OAuth2/AuthorizationRequestHandler.py:80 msgctxt "@message" msgid "Timeout when authenticating with the account server." msgstr "Tempo esgotado ao autenticar com o servidor da conta." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +#: cura/OAuth2/AuthorizationRequestHandler.py:97 msgctxt "@message" msgid "Please give the required permissions when authorizing this application." msgstr "Por favor dê as permissões requeridas ao autorizar esta aplicação." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +#: cura/OAuth2/AuthorizationRequestHandler.py:104 msgctxt "@message" msgid "Something unexpected happened when trying to log in, please try again." msgstr "Algo inesperado aconteceu ao tentar login, por favor tente novamente." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:216 +#: cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Não foi possível iniciar processo de sign-in. Verifique se outra tentativa de sign-in ainda está ativa." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:277 +#: cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "Não foi possível contactar o servidor de contas da Ultimaker." +msgid "Unable to reach the UltiMaker account server." +msgstr "Não foi possível contactar o servidor de contas da UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 +#: cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" msgid "Log-in failed" msgstr "Login falhou" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +#: cura/PrinterOutput/UploadMaterialsJob.py:104 msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Falha em criar arquivo de materiais para sincronizar com impressoras." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +#: cura/PrinterOutput/UploadMaterialsJob.py:111 +#: cura/PrinterOutput/UploadMaterialsJob.py:165 msgctxt "@text:error" msgid "Failed to load the archive of materials to sync it with printers." msgstr "Falha em carregar o arquivo de materiais para sincronizar com impressoras." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +#: cura/PrinterOutput/UploadMaterialsJob.py:143 msgctxt "@text:error" msgid "The response from Digital Factory appears to be corrupted." msgstr "A resposta da Digital Factory parece estar corrompida." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +#: cura/PrinterOutput/UploadMaterialsJob.py:147 +#: cura/PrinterOutput/UploadMaterialsJob.py:151 +#: cura/PrinterOutput/UploadMaterialsJob.py:155 msgctxt "@text:error" msgid "The response from Digital Factory is missing important information." msgstr "A resposta da Digital Factory veio sem informações importantes." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +#: cura/PrinterOutput/UploadMaterialsJob.py:218 msgctxt "@text:error" msgid "Failed to connect to Digital Factory to sync materials with some of the printers." msgstr "Falha em conectar com a Digital Factory para sincronizar materiais com algumas das impressoras." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +#: cura/PrinterOutput/UploadMaterialsJob.py:232 msgctxt "@text:error" msgid "Failed to connect to Digital Factory." msgstr "Falha em conectar à Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:207 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: cura/Settings/ActiveQuality.py:43 +msgctxt "@label" +msgid "Experimental" +msgstr "" + +#: cura/Settings/ContainerManager.py:207 +#: cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "O Arquivo Já Existe" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: cura/Settings/ContainerManager.py:208 +#: cura/Settings/CuraContainerRegistry.py:141 #, 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 "O arquivo {0} já existe. Tem certeza que quer sobrescrevê-lo?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 +#: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "URL de arquivo inválida:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Falha ao exportar perfil para {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Falha ao exportar perfil para {0}: complemento escritor relatou erro." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Perfil exportado para {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Exportação concluída" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Falha ao importar perfil de {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: cura/Settings/CuraContainerRegistry.py:209 #, 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 "Não foi possível importar perfil de {0} antes de uma impressora ser adicionada." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Não há perfil personalizado a importar no arquivo {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Erro ao importar perfil de {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: cura/Settings/CuraContainerRegistry.py:252 +#: cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Este perfil {0} contém dados incorretos, não foi possível importá-lo." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Erro ao importar perfil de {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Perfil {0} importado com sucesso." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Arquivo {0} não contém nenhum perfil válido." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "O Perfil {0} tem tipo de arquivo desconhecido ou está corrompido." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Perfil personalizado" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Falta um tipo de qualidade ao Perfil." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Não há impressora ativa ainda." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Não foi possível adicionar o perfil." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "Tipo de qualidade '{0}' não é compatível com a definição de máquina ativa atual '{1}'." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: cura/Settings/CuraContainerRegistry.py:488 #, 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 "Alerta: o perfil não está visível porque seu tipo de qualidade '{0}' não está disponível para a configuração atual. Altere para uma combinação de material/bico que possa usar este tipo de qualidade." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Não Suportado" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:219 +#: cura/Settings/MachineManager.py:746 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:221 msgctxt "@label" msgid "Nozzle" msgstr "Bico" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +#: cura/Settings/MachineManager.py:890 msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Os ajustes foram alterados para seguir a disponibilidade de extrusores atuais:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: cura/Settings/MachineManager.py:891 msgctxt "@info:title" msgid "Settings updated" msgstr "Ajustes atualizados" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 +#: cura/Settings/MachineManager.py:1514 msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extrusor(es) Desabilitado(s)" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 +#: cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Não Suportado" + +#: cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "" + +#: cura/UI/AddPrinterPagesModel.py:17 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" msgid "Add" msgstr "Adicionar" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:290 +#: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290 msgctxt "@action:button" msgid "Finish" msgstr "Finalizar" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:508 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:323 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:291 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:74 +#: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386 +#: plugins/ImageReader/ConfigUI.qml:323 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 +#: resources/qml/ColorDialog.qml:143 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: resources/qml/Dialogs/RenameDialog.qml:103 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 msgctxt "@action:button" msgid "Cancel" msgstr "Cancelar" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: cura/UI/ObjectsModel.py:69 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Grupo #{group_nr}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 +#: cura/UI/PrintInformation.py:87 msgctxt "@tooltip" msgid "Outer Wall" msgstr "Parede Externa" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +#: cura/UI/PrintInformation.py:88 msgctxt "@tooltip" msgid "Inner Walls" msgstr "Paredes Internas" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +#: cura/UI/PrintInformation.py:89 msgctxt "@tooltip" msgid "Skin" msgstr "Contorno" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +#: cura/UI/PrintInformation.py:90 msgctxt "@tooltip" msgid "Infill" msgstr "Preenchimento" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +#: cura/UI/PrintInformation.py:91 msgctxt "@tooltip" msgid "Support Infill" msgstr "Preenchimento de Suporte" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +#: cura/UI/PrintInformation.py:92 msgctxt "@tooltip" msgid "Support Interface" msgstr "Interface de Suporte" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +#: cura/UI/PrintInformation.py:93 msgctxt "@tooltip" msgid "Support" msgstr "Suporte" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +#: cura/UI/PrintInformation.py:94 msgctxt "@tooltip" msgid "Skirt" msgstr "Skirt (Saia)" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +#: cura/UI/PrintInformation.py:95 msgctxt "@tooltip" msgid "Prime Tower" msgstr "Torre de Prime" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +#: cura/UI/PrintInformation.py:96 msgctxt "@tooltip" msgid "Travel" msgstr "Percurso" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +#: cura/UI/PrintInformation.py:97 msgctxt "@tooltip" msgid "Retractions" msgstr "Retrações" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +#: cura/UI/PrintInformation.py:98 msgctxt "@tooltip" msgid "Other" msgstr "Outros" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:63 +#: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63 msgctxt "@text:window" msgid "The release notes could not be opened." msgstr "As notas de lançamento não puderam ser abertas." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:277 +#: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277 msgctxt "@action:button" msgid "Next" msgstr "Próximo" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68 msgctxt "@action:button" msgid "Skip" msgstr "Pular" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:443 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:186 +#: cura/UI/WhatsNewPagesModel.py:76 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444 +#: resources/qml/Dialogs/AboutDialog.qml:188 msgctxt "@action:button" msgid "Close" msgstr "Fechar" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: cura/UltimakerCloud/CloudMaterialSync.py:66 msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Por favor sincronize os perfis de material com suas impressoras antes de começar a imprimir." -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: cura/UltimakerCloud/CloudMaterialSync.py:67 msgctxt "@action:button" msgid "New materials installed" msgstr "Novos materiais instalados" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: cura/UltimakerCloud/CloudMaterialSync.py:74 msgctxt "@action:button" msgid "Sync materials" msgstr "Sincronizar materiais" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:397 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:80 +#: cura/UltimakerCloud/CloudMaterialSync.py:82 +#: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80 msgctxt "@action:button" msgid "Learn more" msgstr "Saiba mais" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +#: cura/UltimakerCloud/CloudMaterialSync.py:135 msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Não foi possível salvar o arquivo de materiais para {}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +#: cura/UltimakerCloud/CloudMaterialSync.py:136 msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Falha em salvar o arquivo de materiais" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +#: cura/UltimakerCloud/CloudMaterialSync.py:188 msgctxt "@text" msgid "Unknown error." msgstr "Erro desconhecido." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:558 +#, 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 "O arquivo de projeto {0} contém um tipo de máquina desconhecido {1}. Não foi possível importar a máquina. Os modelos serão importados ao invés dela." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:561 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "Abrir Arquivo de Projeto" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: plugins/3MFReader/WorkspaceDialog.qml:99 +#: plugins/3MFReader/WorkspaceDialog.qml:127 +#: plugins/3MFReader/WorkspaceDialog.qml:134 +msgctxt "@button" +msgid "Create new" +msgstr "Criar novos" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:692 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "O arquivo de projeto {0} tornou-se subitamente inacessível: {1}." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:720 +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "Não Foi Possível Abrir o Arquivo de Projeto" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:700 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:718 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "Arquivo de projeto {0} está corrompido: {1}." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:765 +#, 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 "O arquivo de projeto {0} foi feito usando perfis que são desconhecidos para esta versão do UltiMaker Cura." + +#: plugins/3MFReader/WorkspaceDialog.py:233 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Recomendado" + +#: plugins/3MFReader/WorkspaceDialog.py:235 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Personalizado" + +#: plugins/3MFReader/WorkspaceDialog.py:411 +msgctxt "@info:status" +msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." +msgstr "O material usado neste projeto depende de algumas definições de material não disponíveis no Cura e isto pode produzir resultados de impressão indesejáveis. Recomendamos altamente instalar o pacote completo de material do Marketplace." + +#: plugins/3MFReader/WorkspaceDialog.py:413 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "Perfis de material não instalados" + +#: plugins/3MFReader/WorkspaceDialog.py:426 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "Instalar Materiais" + +#: plugins/3MFReader/WorkspaceDialog.qml:15 +msgctxt "@title:window" +msgid "Open Project" +msgstr "Abrir Projeto" + +#: plugins/3MFReader/WorkspaceDialog.qml:31 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61 +msgctxt "@action:title" +msgid "Summary - Cura Project" +msgstr "Resumo - Projeto do Cura" + +#: plugins/3MFReader/WorkspaceDialog.qml:65 +msgctxt "@action:ComboBox Update/override existing profile" +msgid "Update existing" +msgstr "Atualizar existentes" + +#: plugins/3MFReader/WorkspaceDialog.qml:66 +msgctxt "@action:ComboBox Save settings in a new profile" +msgid "Create new" +msgstr "Criar novos" + +#: plugins/3MFReader/WorkspaceDialog.qml:83 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97 +msgctxt "@action:label" +msgid "Printer settings" +msgstr "Ajustes da impressora" + +#: plugins/3MFReader/WorkspaceDialog.qml:92 +#: plugins/3MFReader/WorkspaceRow.qml:23 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106 +msgctxt "@action:label" +msgid "Type" +msgstr "Tipo" + +#: plugins/3MFReader/WorkspaceDialog.qml:98 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +msgctxt "@action:label" +msgid "Printer Group" +msgstr "Grupo de Impressora" + +#: plugins/3MFReader/WorkspaceDialog.qml:103 +msgctxt "@action:label" +msgid "Open With" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:104 +msgctxt "@info:tooltip" +msgid "Printer settings will be updated to match the settings saved with the project." +msgstr "Os ajustes de impressora serão atualizados para concordar com os ajustes salvos com o projeto." + +#: plugins/3MFReader/WorkspaceDialog.qml:156 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222 +msgctxt "@action:label" +msgid "Profile settings" +msgstr "Ajustes de perfil" + +#: plugins/3MFReader/WorkspaceDialog.qml:166 +#: plugins/3MFReader/WorkspaceDialog.qml:238 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246 +msgctxt "@action:label" +msgid "Name" +msgstr "Nome" + +#: plugins/3MFReader/WorkspaceDialog.qml:172 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263 +msgctxt "@action:label" +msgid "Intent" +msgstr "Objetivo" + +#: plugins/3MFReader/WorkspaceDialog.qml:178 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230 +msgctxt "@action:label" +msgid "Not in profile" +msgstr "Ausente no perfil" + +#: plugins/3MFReader/WorkspaceDialog.qml:179 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235 +msgctxt "@action:label" +msgid "%1 override" +msgid_plural "%1 overrides" +msgstr[0] "%1 sobreposto" +msgstr[1] "%1 sobrepostos" + +#: plugins/3MFReader/WorkspaceDialog.qml:185 +msgctxt "@action:label" +msgid "Derivative from" +msgstr "Derivado de" + +#: plugins/3MFReader/WorkspaceDialog.qml:186 +msgctxt "@action:label" +msgid "%1, %2 override" +msgid_plural "%1, %2 overrides" +msgstr[0] "%1, %2 sobreposição" +msgstr[1] "%1, %2 sobreposições" + +#: plugins/3MFReader/WorkspaceDialog.qml:226 +msgctxt "@action:label" +msgid "Material settings" +msgstr "Ajustes de material" + +#: plugins/3MFReader/WorkspaceDialog.qml:280 +msgctxt "@action:label" +msgid "Setting visibility" +msgstr "Visibilidade dos ajustes" + +#: plugins/3MFReader/WorkspaceDialog.qml:290 +msgctxt "@action:label" +msgid "Mode" +msgstr "Modo" + +#: plugins/3MFReader/WorkspaceDialog.qml:296 +msgctxt "@action:label" +msgid "%1 out of %2" +msgstr "%1 de %2" + +#: plugins/3MFReader/WorkspaceDialog.qml:321 +msgctxt "@action:warning" +msgid "Loading a project will clear all models on the build plate." +msgstr "Carregar um projeto limpará todos os modelos da mesa de impressão." + +#: plugins/3MFReader/WorkspaceDialog.qml:367 +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." + +#: plugins/3MFReader/WorkspaceDialog.qml:392 +msgctxt "@action:button" +msgid "Open" +msgstr "Abrir" + +#: plugins/3MFReader/WorkspaceDialog.qml:398 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "Abrir o projeto mesmo assim" + +#: plugins/3MFReader/WorkspaceDialog.qml:407 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "Instalar material faltante" + +#: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33 +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "Arquivo 3MF" + +#: plugins/3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "Leitor de 3MF" + +#: plugins/3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Provê suporte à leitura de arquivos 3MF." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "O complemento de Escrita 3MF está corrompido." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Não existe espaço de trabalho ainda para a escrita. Por favor adicione uma impressora primeiro." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "Sem permissão para gravar o espaço de trabalho aqui." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +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." + +#: plugins/3MFWriter/ThreeMFWriter.py:240 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Erro ao escrever arquivo 3mf." + +#: plugins/3MFWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "Arquivo 3MF" + +#: plugins/3MFWriter/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Arquivo de Projeto 3MF do Cura" + +#: plugins/3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "Gerador de 3MF" + +#: plugins/3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Provê suporte à escrita de arquivos 3MF." + +#: plugins/AMFReader/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "Arquivo AMF" + +#: plugins/AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "Leitor AMF" + +#: plugins/AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Provê suporta à leitura de arquivos AMF." + +#: plugins/CuraDrive/plugin.json +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Permite backup e restauração da configuração." + +#: plugins/CuraDrive/plugin.json +msgctxt "name" +msgid "Cura Backups" +msgstr "Backups Cura" + +#: plugins/CuraDrive/src/CreateBackupJob.py:25 +msgctxt "@info:title" +msgid "Backups" +msgstr "" + +#: plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Houve um erro ao transferir seu backup." + +#: plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "Criando seu backup..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "Houve um erro ao criar seu backup." + +#: plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Enviando seu backup..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Seu backup terminou de ser enviado." + +#: plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "O backup excede o tamanho máximo de arquivo." + +#: plugins/CuraDrive/src/DriveApiService.py:86 +#: plugins/CuraDrive/src/RestoreBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Houve um erro ao tentar restaurar seu backup." + +#: plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Gerenciar backups" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "Quer mais?" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Backup Agora" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Criar um backup automaticamente toda vez que o Cura iniciar." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 +msgctxt "@button" +msgid "Restore" +msgstr "Restaurar" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Apagar o Backup" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Você tem certeza que deseja apagar este backup? Isto não pode ser desfeito." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Restaurar Backup" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "Você precisará reiniciar o Cura antes que seu backup seja restaurado. Deseja fechar o Cura agora?" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Versão do Cura" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Máquinas" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Materiais" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Perfis" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Complementos" + +#: plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Backups do Cura" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "Meus backups" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Você não tem nenhum backup atualmente. Use o botão 'Backup Agora' para criar um." + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Durante a fase de pré-visualização, você estará limitado a 5 backups visíveis. Remova um backup para ver os mais antigos." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Fazer backup e sincronizar os ajustes do Cura." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 +#: plugins/Marketplace/resources/qml/Marketplace.qml:312 +#: resources/qml/Account/GeneralOperations.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180 +#: resources/qml/WelcomePages/CloudContent.qml:212 +msgctxt "@button" +msgid "Sign in" +msgstr "Entrar" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message" +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." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:163 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "Fatiamento falhado" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Relatar um bug" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:169 +msgctxt "@message:description" +msgid "Report a bug on UltiMaker Cura's issue tracker." +msgstr "Relatar um bug no issue tracker do UltiMaker Cura." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:416 +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "Não foi possível fatiar com o material atual visto que é incompatível com a máquina ou configuração selecionada." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:417 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:450 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:477 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:501 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:514 +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "Não foi possível fatiar" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:449 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "Não foi possível fatiar com os ajustes atuais. Os seguintes ajustes têm erros: {0}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:476 +#, 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 "Não foi possível fatiar devido a alguns ajustes por modelo. Os seguintes ajustes têm erros em um dos modelos ou mais: {error_labels}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:488 +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "Não foi possível fatiar porque a torre de purga ou posição de purga são inválidas." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:500 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "Não foi possível fatiar porque há objetos associados com o Extrusor desabilitado %s." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:510 +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 "" +"Por favor revise os ajustes e verifique se seus modelos:\n" +"- Cabem dentro do volume de impressão\n" +"- Estão associados a um extrusor habilitado\n" +"- Não estão todos configurados como malhas de modificação" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Processando Camadas" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Informação" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine Backend" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Provê a ligação ao backend de fatiamento CuraEngine." + +#: plugins/CuraProfileReader/__init__.py:14 +#: plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Perfil do Cura" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Leitor de Perfis do Cura" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Provê suporte à importação de perfis do Cura." + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Gravador de Perfis do Cura" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Provê suporte à exportação de perfis do Cura." + +#: plugins/DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Conecta-se à Digital Library, permitindo ao Cura abrir arquivos dela e gravar arquivos nela." + +#: plugins/DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Digital Library da UltiMaker" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 +msgctxt "@option" +msgid "Save Cura project and print file" +msgstr "Salvar o projeto Cura e imprimir o arquivo" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Salvar o projeto Cura" + +#: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19 +msgctxt "@text Placeholder for the username if it has been deleted" +msgid "deleted user" +msgstr "usuário removido" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Não foi possível acessar informação de atualização." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, 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 "Novos recursos ou consertos de bugs podem estar disponíveis para sua {machine_name}! Se você não o fez ainda, recomenda-se que atualize o firmware de sua impressora para a versão {latest_version}." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "Novo firmware estável de %s disponível" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Como atualizar" + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Verifica por atualizações de firmware." + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Verificador de Atualizações de Firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Atualizar Firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "Atualizar Firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 +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 "O firmware é o software rodando diretamente no maquinário de sua impressora 3D. Este firmware controla os motores de passo, regula a temperatura e é o que faz a sua impressora funcionar." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "O firmware que já vêm embutido nas novas impressoras funciona, mas novas versões costumam ter mais recursos, correções e melhorias." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Automaticamente atualizar Firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Carregar Firmware personalizado" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "O firmware não pode ser atualizado porque não há conexão com a impressora." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 +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 conexão com a impressora não suporta atualização de firmware." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Selecionar firmware personalizado" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Atualização do Firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 +msgctxt "@label" +msgid "Updating firmware." +msgstr "Atualizando firmware." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Atualização do Firmware completada." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "A atualização de Firmware falhou devido a um erro desconhecido." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "A atualização de firmware falhou devido a um erro de comunicação." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "A atualização de firmware falhou devido a um erro de entrada e saída." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "A atualização de firmware falhou devido a firmware não encontrado." + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "name" +msgid "Firmware Updater" +msgstr "Atualizador de Firmware" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Provê ações de máquina para atualização do firmware." + +#: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "Arquivo de G-Code Comprimido" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Leitor de G-Code Comprimido" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lê G-Code de um arquivo comprimido." + +#: plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "O GCodeGzWriter não suporta modo binário." + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Gerador de G-Code Comprimido" + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Escreve em formato G-Code comprimido." + +#: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14 +#: plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "Arquivo G-Code" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Leitor de Perfil de G-Code" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Provê suporte a importar perfis de arquivos G-Code." + +#: plugins/GCodeReader/FlavorParser.py:359 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "Interpretando G-Code" + +#: plugins/GCodeReader/FlavorParser.py:361 +#: plugins/GCodeReader/FlavorParser.py:515 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "Detalhes do G-Code" + +#: plugins/GCodeReader/FlavorParser.py:513 +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 "Certifique que o g-code é adequado para sua impressora e configuração antes de enviar o arquivo. A representação de g-code pode não ser acurada." + +#: plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "Arquivo G" + +#: plugins/GCodeReader/plugin.json +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Permite carregar e exibir arquivos G-Code." + +#: plugins/GCodeReader/plugin.json +msgctxt "name" +msgid "G-code Reader" +msgstr "Leitor de G-Code" + +#: plugins/GCodeWriter/GCodeWriter.py:75 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "O GCodeWriter não suporta modo binário." + +#: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Por favor prepare o G-Code antes de exportar." + +#: plugins/GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "Gerador de G-Code" + +#: plugins/GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Escreve em formato G-Code." + +#: plugins/ImageReader/ConfigUI.qml:14 +msgctxt "@title:window" +msgid "Convert Image" +msgstr "Converter Imagem" + +#: plugins/ImageReader/ConfigUI.qml:33 +msgctxt "@action:label" +msgid "Height (mm)" +msgstr "Altura (mm)" + +#: plugins/ImageReader/ConfigUI.qml:56 +msgctxt "@info:tooltip" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "A distância máxima de cada pixel da \"Base\"." + +#: plugins/ImageReader/ConfigUI.qml:66 +msgctxt "@action:label" +msgid "Base (mm)" +msgstr "Base (mm)" + +#: plugins/ImageReader/ConfigUI.qml:90 +msgctxt "@info:tooltip" +msgid "The base height from the build plate in millimeters." +msgstr "A altura-base da mesa de impressão em milímetros." + +#: plugins/ImageReader/ConfigUI.qml:100 +msgctxt "@action:label" +msgid "Width (mm)" +msgstr "Largura (mm)" + +#: plugins/ImageReader/ConfigUI.qml:124 +msgctxt "@info:tooltip" +msgid "The width in millimeters on the build plate" +msgstr "A largura em milímetros na plataforma de impressão" + +#: plugins/ImageReader/ConfigUI.qml:134 +msgctxt "@action:label" +msgid "Depth (mm)" +msgstr "Profundidade (mm)" + +#: plugins/ImageReader/ConfigUI.qml:158 +msgctxt "@info:tooltip" +msgid "The depth in millimeters on the build plate" +msgstr "A profundidade da mesa de impressão em milímetros" + +#: plugins/ImageReader/ConfigUI.qml:187 +msgctxt "@item:inlistbox" +msgid "Darker is higher" +msgstr "Mais escuro é mais alto" + +#: plugins/ImageReader/ConfigUI.qml:188 +msgctxt "@item:inlistbox" +msgid "Lighter is higher" +msgstr "Mais claro é mais alto" + +#: plugins/ImageReader/ConfigUI.qml:195 +msgctxt "@info:tooltip" +msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." +msgstr "Para litofanos, pixels escuros devem corresponder a locais mais espessos para conseguir bloquear mais luz. Para mapas de altura, pixels mais claros significam terreno mais alto, portanto tais pixels devem corresponder a locais mais espessos no modelo 3d gerado." + +#: plugins/ImageReader/ConfigUI.qml:205 +msgctxt "@action:label" +msgid "Color Model" +msgstr "Modelo de Cor" + +#: plugins/ImageReader/ConfigUI.qml:224 +msgctxt "@item:inlistbox" +msgid "Linear" +msgstr "Linear" + +#: plugins/ImageReader/ConfigUI.qml:225 +msgctxt "@item:inlistbox" +msgid "Translucency" +msgstr "Translucidez" + +#: plugins/ImageReader/ConfigUI.qml:232 +msgctxt "@info:tooltip" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "Para litofanos, um modelo logarítmico simples para translucidez está disponível. Para mapas de altura os valores de pixels correspondem a alturas, linearmente." + +#: plugins/ImageReader/ConfigUI.qml:242 +msgctxt "@action:label" +msgid "1mm Transmittance (%)" +msgstr "Transmitância de 1mm (%)" + +#: plugins/ImageReader/ConfigUI.qml:263 +msgctxt "@info:tooltip" +msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." +msgstr "A porcentagem de luz penetrando uma impressão com espessura de 1 milímetro. Abaixar este valor aumenta o contraste em regiões escuras e diminui o contraste em regiões claras da imagem." + +#: plugins/ImageReader/ConfigUI.qml:274 +msgctxt "@action:label" +msgid "Smoothing" +msgstr "Suavização" + +#: plugins/ImageReader/ConfigUI.qml:298 +msgctxt "@info:tooltip" +msgid "The amount of smoothing to apply to the image." +msgstr "A quantidade de suavização para aplicar na imagem." + +#: plugins/ImageReader/ConfigUI.qml:329 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 +#: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25 +msgctxt "@action:button" +msgid "OK" +msgstr "Ok" + +#: plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "Imagem JPG" + +#: plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "Imagem JPEG" + +#: plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "Imagem PNG" + +#: plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "Imagem BMP" + +#: plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "Imagem GIF" + +#: plugins/ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Habilita a geração de geometria imprimível de arquivos de imagem 2D." + +#: plugins/ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Leitor de Imagens" + +#: plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Perfis do Cura 15.04" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Leitor de Perfis de Cura Legado" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Provê suporte a importação de perfis de versões legadas do Cura." + +#: plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Ajustes da Máquina" + +#: plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Impressora" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Ajustes do Bico" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Tamanho do bico" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Diâmetro de material compatível" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Deslocamento X do Bico" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Deslocamento Y do Bico" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Número da Ventoinha de Resfriamento" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "G-Code Inicial do Extrusor" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "G-Code Final do Extrusor" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Ajustes de Impressora" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (largura)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Profundidade)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Altura)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Forma da plataforma de impressão" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 +msgctxt "@label" +msgid "Origin at center" +msgstr "Origem no centro" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 +msgctxt "@label" +msgid "Heated bed" +msgstr "Mesa aquecida" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Volume de construção aquecido" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 +msgctxt "@label" +msgid "G-code flavor" +msgstr "Sabor de G-Code" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Ajustes da Cabeça de Impressão" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 +msgctxt "@label" +msgid "X min" +msgstr "X mín" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 +msgctxt "@label" +msgid "Y min" +msgstr "Y mín" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 +msgctxt "@label" +msgid "X max" +msgstr "X máx" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 +msgctxt "@label" +msgid "Y max" +msgstr "Y máx" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Altura do Eixo" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Número de Extrusores" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:342 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Aplicar deslocamentos de Extrusão ao G-Code" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:390 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "G-Code Inicial" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:401 +msgctxt "@title:label" +msgid "End G-code" +msgstr "G-Code Final" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Ação de Ajustes de Máquina" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Provê uma maneira de alterar ajustes de máquina (tais como volume de impressão, tamanho do bico, etc.)." + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "Você quer sincronizar os pacotes de material e software com sua conta?" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:95 +msgctxt "@info:title" +msgid "Changes detected from your UltiMaker account" +msgstr "Alterações detectadas de sua conta UltiMaker" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 +msgctxt "@action:button" +msgid "Sync" +msgstr "Sincronizar" + +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "Sincronizando..." + +#: plugins/Marketplace/CloudSync/LicenseModel.py:12 +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:79 +msgctxt "@button" +msgid "Decline" +msgstr "Recusar" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:13 +#: resources/qml/WelcomePages/UserAgreementContent.qml:53 +msgctxt "@button" +msgid "Agree" +msgstr "Concordar" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:77 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Acordo de Licença do Complemento" + +#: plugins/Marketplace/CloudSync/LicensePresenter.py:42 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Recusar e remover da conta" + +#: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "Você precisa sair e reiniciar {} para que as alterações tenham efeito." + +#: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "{} complementos falharam em baixar" + +#: plugins/Marketplace/LocalPackageList.py:28 +msgctxt "@label" +msgid "Installed Plugins" +msgstr "Complementos Instalados" + +#: plugins/Marketplace/LocalPackageList.py:29 +msgctxt "@label" +msgid "Installed Materials" +msgstr "Materiais Instalados" + +#: plugins/Marketplace/LocalPackageList.py:33 +msgctxt "@label" +msgid "Bundled Plugins" +msgstr "Complementos Empacotados" + +#: plugins/Marketplace/LocalPackageList.py:34 +msgctxt "@label" +msgid "Bundled Materials" +msgstr "Materiais Empacotados" + +#: plugins/Marketplace/PackageModel.py:43 +msgctxt "@label:property" +msgid "Unknown Package" +msgstr "Pacote Desconhecido" + +#: plugins/Marketplace/PackageModel.py:66 +msgctxt "@label:property" +msgid "Unknown Author" +msgstr "Autor Desconhecido" + +#: plugins/Marketplace/PackageModel.py:95 +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 "O pacote de material associado com este projeto Cura não pôde ser encontrado no Ultimaker Marketplace. Use a definição parcial de perfil de material gravada no arquivo de projeto Cura por seu próprio risco." + +#: plugins/Marketplace/RemotePackageList.py:117 +msgctxt "@info:error" +msgid "Could not interpret the server's response." +msgstr "Não foi possível interpretar a resposta de servidor." + +#: plugins/Marketplace/RemotePackageList.py:148 +msgctxt "@info:error" +msgid "Could not reach Marketplace." +msgstr "Não foi possível conectar ao Marketplace." + +#: plugins/Marketplace/plugin.json +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "" + +#: plugins/Marketplace/plugin.json +msgctxt "name" +msgid "Marketplace" +msgstr "Marketplace" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 +msgctxt "@title" +msgid "Changes from your account" +msgstr "Alterações da sua conta" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +msgctxt "@button" +msgid "Dismiss" +msgstr "Dispensar" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +#: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 +#: resources/qml/WelcomePages/WhatsNewContent.qml:175 +msgctxt "@button" +msgid "Next" +msgstr "Próximo" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "Os seguintes pacotes serão adicionados:" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "Os seguintes pacotes não podem ser instalados por incompatibilidade de versão do Cura:" + +#: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "Instalar Materiais faltantes" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "Acordo de licença do complemento" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:47 +msgctxt "@text" +msgid "Please read and agree with the plugin licence." +msgstr "Por favor leia e concorde com a licença do complemento." + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "Aceitar" + +#: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Gerir pacotes" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:12 +msgctxt "@header" +msgid "Manage packages" +msgstr "Gerir pacotes" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:16 +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 "Gerencie seu complementos e perfis de materiais do Cura aqui. Se assegure de manter seus complementos atualizados e fazer backup de sua configuração regularmente." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" +msgid "Loading..." +msgstr "Carregando..." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "Complementos" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "Materiais" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "Buscar no navegador" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:271 +msgctxt "@button" +msgid "In order to use the package you will need to restart Cura" +msgstr "Para usar o pacote você precisará reiniciar o Cura" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:279 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "Sair de %1" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:300 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" +msgstr "Por favor se logue para adquirir complementos e materiais verificados para o UltiMaker Cura Enterprise" + +#: plugins/Marketplace/resources/qml/Materials.qml:8 +#: plugins/Marketplace/resources/qml/MissingPackages.qml:8 +msgctxt "@header" +msgid "Install Materials" +msgstr "Instalar Materiais" + +#: plugins/Marketplace/resources/qml/Materials.qml:12 +msgctxt "@text" +msgid "Select and install material profiles optimised for your UltiMaker 3D printers." +msgstr "Selecione e instale perfis de material otimizados para suas impressoras 3D UltiMaker." + +#: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "Você precisa aceitar a licença para que o pacote possa ser instalado" + +#: plugins/Marketplace/resources/qml/OnboardBanner.qml:101 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205 +msgctxt "@button:label" +msgid "Learn More" +msgstr "Saiba mais" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170 +msgctxt "@label Is followed by the name of an author" +msgid "By" +msgstr "Por" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Disable" +msgstr "Desabilitar" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Enable" +msgstr "Habilitar" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242 +msgctxt "@button" +msgid "Downgrading..." +msgstr "Fazendo downgrade..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243 +msgctxt "@button" +msgid "Downgrade" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247 +msgctxt "@button" +msgid "Installing..." +msgstr "Instalando..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248 +msgctxt "@button" +msgid "Install" +msgstr "Instalar" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252 +msgctxt "@button" +msgid "Uninstall" +msgstr "Desinstalar" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Update" +msgstr "Atualizar" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Updating..." +msgstr "Atualizando..." + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "Detalhes do pacote" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Voltar" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "Descrição" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "Impressoras compatíveis" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "Sem informação de compatibilidade" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "Materiais de suporte compatíveis" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "Nenhum" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:193 +msgctxt "@header" +msgid "Compatible with Material Station" +msgstr "Compatível com Material Station" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "No" +msgstr "Não" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "Yes" +msgstr "Sim" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:219 +msgctxt "@header" +msgid "Optimized for Air Manager" +msgstr "Otimizado para o Air Manager" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Visit plug-in website" +msgstr "Visitar sítio web de complementos" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Website" +msgstr "Sítio web" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:252 +msgctxt "@button" +msgid "Buy spool" +msgstr "Comprar carretel" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:261 +msgctxt "@button" +msgid "Safety datasheet" +msgstr "Ficha de segurança" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:270 +msgctxt "@button" +msgid "Technical datasheet" +msgstr "Ficha técnica" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Failed to load packages:" +msgstr "Falha em carregar pacotes:" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Retry?" +msgstr "Tentar novamente?" + +#: plugins/Marketplace/resources/qml/Packages.qml:167 +msgctxt "@button" +msgid "Loading" +msgstr "Carregando" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No more results to load" +msgstr "Não há mais resultados a carregar" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No results found with current filter" +msgstr "Não há resultados encontrados com o filtro atual" + +#: plugins/Marketplace/resources/qml/Packages.qml:226 +msgctxt "@button" +msgid "Load more" +msgstr "Carregar mais" + +#: plugins/Marketplace/resources/qml/Plugins.qml:8 +msgctxt "@header" +msgid "Install Plugins" +msgstr "Instalar Complementos" + +#: plugins/Marketplace/resources/qml/Plugins.qml:12 +msgctxt "@text" +msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." +msgstr "Simplifique seu fluxo de trabalho e personalize sua experiência do UltiMaker Cura com complementos contribuídos por nossa fantástica comunidade de usuários." + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 +msgctxt "@info" +msgid "UltiMaker Verified Plug-in" +msgstr "Complemento Verificado UltiMaker" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "UltiMaker Certified Material" +msgstr "Material Certificado UltiMaker" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 +msgctxt "@info" +msgid "UltiMaker Verified Package" +msgstr "Pacote Verificado UltiMaker" + +#: plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "Assistente de Modelo 3D" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -837,823 +2384,1092 @@ msgstr "" "

    Descubra como assegurar a melhor qualidade de impressão e confiabilidade possível.

    \n" "

    Ver guia de qualidade de impressão

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 -#, 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 "O arquivo de projeto {0} contém um tipo de máquina desconhecido {1}. Não foi possível importar a máquina. Os modelos serão importados ao invés dela." +#: plugins/ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Verifica modelos e configurações de impressão por possíveis problema e dá sugestões." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "Abrir Arquivo de Projeto" +#: plugins/ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Verificador de Modelo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "O arquivo de projeto {0} tornou-se subitamente inacessível: {1}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:659 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "Não Foi Possível Abrir o Arquivo de Projeto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:658 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "Arquivo de projeto {0} está corrompido: {1}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:711 -#, 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 "O arquivo de projeto {0} foi feito usando perfis que são desconhecidos para esta versão do Ultimaker Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Recomendado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:214 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:390 -msgctxt "@info:status" -msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 -msgctxt "@info:title" -msgid "Material profiles not installed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 -msgctxt "@action:button" -msgid "Install Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "Arquivo 3MF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "O complemento de Escrita 3MF está corrompido." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "Não existe espaço de trabalho ainda para a escrita. Por favor adicione uma impressora primeiro." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "Sem permissão para gravar o espaço de trabalho aqui." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 -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." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:238 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Erro ao escrever arquivo 3mf." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:282 -#, python-brace-format -msgctxt "@error:material" -msgid "It was not possible to store material package information in project file: {material}. This project may not open correctly on other systems." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 -msgctxt "@info:title" -msgid "Failed to save material package information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "Arquivo 3MF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Arquivo de Projeto 3MF do Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Arquivo AMF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 -msgctxt "@info:title" -msgid "Backups" -msgstr "Backups" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Houve um erro ao transferir seu backup." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Criando seu backup..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "Houve um erro ao criar seu backup." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Enviando seu backup..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Seu backup terminou de ser enviado." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "O backup excede o tamanho máximo de arquivo." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Houve um erro ao tentar restaurar seu backup." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Gerenciar backups" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 -msgctxt "@message" -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." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "Fatiamento falhado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 -msgctxt "@message:button" -msgid "Report a bug" -msgstr "Relatar um bug" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 -msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." -msgstr "Relatar um bug no issue tracker do Ultimaker Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:400 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "Não foi possível fatiar com o material atual visto que é incompatível com a máquina ou configuração selecionada." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:401 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:434 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:461 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:473 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:485 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:498 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "Não foi possível fatiar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:433 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "Não foi possível fatiar com os ajustes atuais. Os seguintes ajustes têm erros: {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:460 -#, 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 "Não foi possível fatiar devido a alguns ajustes por modelo. Os seguintes ajustes têm erros em um dos modelos ou mais: {error_labels}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:472 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "Não foi possível fatiar porque a torre de purga ou posição de purga são inválidas." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:484 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "Não foi possível fatiar porque há objetos associados com o Extrusor desabilitado %s." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 -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 "" -"Por favor revise os ajustes e verifique se seus modelos:\n" -"- Cabem dentro do volume de impressão\n" -"- Estão associados a um extrusor habilitado\n" -"- Não estão todos configurados como malhas de modificação" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Processando Camadas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 -msgctxt "@info:title" -msgid "Information" -msgstr "Informação" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Perfil do Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" -msgid "Could not access update information." -msgstr "Não foi possível acessar informação de atualização." +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 "" +"Por favor certifique-se que sua impressora está conectada>\n" +"- Verifique se ela está ligada.\n" +"- Verifique se ela está conectada à rede.\n" +"- Verifique se você está logado para descobrir impressoras conectadas à nuvem." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, 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 "Novos recursos ou consertos de bugs podem estar disponíveis para sua {machine_name}! Se você não o fez ainda, recomenda-se que atualize o firmware de sua impressora para a versão {latest_version}." +#: plugins/MonitorStage/MonitorMain.qml:113 +msgctxt "@info" +msgid "Please connect your printer to the network." +msgstr "Por favor conecte sua impressora à rede." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s stable firmware available" -msgstr "Novo firmware estável de %s disponível" +#: plugins/MonitorStage/MonitorMain.qml:148 +msgctxt "@label link to technical assistance" +msgid "View user manuals online" +msgstr "Ver manuais de usuário online" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "Como atualizar" +#: plugins/MonitorStage/MonitorMain.qml:164 +msgctxt "@info" +msgid "In order to monitor your print from Cura, please connect the printer." +msgstr "Para monitorar sua impressão pelo Cura, por favor conecte a impressora." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Atualizar Firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Arquivo de G-Code Comprimido" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "O GCodeGzWriter não suporta modo binário." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Arquivo G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:350 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Interpretando G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:506 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "Detalhes do G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 -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 "Certifique que o g-code é adequado para sua impressora e configuração antes de enviar o arquivo. A representação de g-code pode não ser acurada." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Arquivo G" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "O GCodeWriter não suporta modo binário." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Por favor prepare o G-Code antes de exportar." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Imagem JPG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Imagem JPEG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Imagem PNG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Imagem BMP" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Imagem GIF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Perfis do Cura 15.04" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Ajustes da Máquina" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Você quer sincronizar os pacotes de material e software com sua conta?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Alterações detectadas de sua conta Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 -msgctxt "@action:button" -msgid "Sync" -msgstr "Sincronizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Sincronizando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:12 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:79 -msgctxt "@button" -msgid "Decline" -msgstr "Recusar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:13 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53 -msgctxt "@button" -msgid "Agree" -msgstr "Concordar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Acordo de Licença do Complemento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Recusar e remover da conta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "Você precisa sair e reiniciar {} para que as alterações tenham efeito." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{} complementos falharam em baixar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:28 -msgctxt "@label" -msgid "Installed Plugins" -msgstr "Complementos Instalados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:29 -msgctxt "@label" -msgid "Installed Materials" -msgstr "Materiais Instalados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:33 -msgctxt "@label" -msgid "Bundled Plugins" -msgstr "Complementos Empacotados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:34 -msgctxt "@label" -msgid "Bundled Materials" -msgstr "Materiais Empacotados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:43 -msgctxt "@label:property" -msgid "Unknown Package" -msgstr "Pacote Desconhecido" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:66 -msgctxt "@label:property" -msgid "Unknown Author" -msgstr "Autor Desconhecido" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:117 -msgctxt "@info:error" -msgid "Could not interpret the server's response." -msgstr "Não foi possível interpretar a resposta de servidor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:148 -msgctxt "@info:error" -msgid "Could not reach Marketplace." -msgstr "Não foi possível conectar ao Marketplace." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 +#: plugins/MonitorStage/__init__.py:14 msgctxt "@item:inmenu" msgid "Monitor" -msgstr "Monitor" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: plugins/MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Estágio de Monitor" + +#: plugins/MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Provê um estágio de monitor no Cura." + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 +msgctxt "@label" +msgid "Mesh Type" +msgstr "Tipo de Malha" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 +msgctxt "@label" +msgid "Normal model" +msgstr "Modelo normal" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 +msgctxt "@label" +msgid "Print as support" +msgstr "Imprimir como suporte" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Modificar ajustes para sobreposições" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "Não suportar sobreposições" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 +msgctxt "@item:inlistbox" +msgid "Infill mesh only" +msgstr "Somente malha de preenchimento" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161 +msgctxt "@item:inlistbox" +msgid "Cutting mesh" +msgstr "Malha de corte" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386 +msgctxt "@action:button" +msgid "Select settings" +msgstr "Selecionar ajustes" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Selecionar Ajustes a Personalizar para este modelo" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtrar..." + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Exibir tudo" + +#: plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" msgid "Per Model Settings" msgstr "Ajustes por Modelo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +#: plugins/PerObjectSettingsTool/__init__.py:15 msgctxt "@info:tooltip" msgid "Configure Per Model Settings" msgstr "Configurar ajustes por Modelo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Ferramenta de Ajustes Por Modelo" + +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Provê Ajustes Por Modelo." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Pós-Processamento" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "Modificar G-Code" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Complemento de Pós-Processamento" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 +msgctxt "@label" +msgid "Post Processing Scripts" +msgstr "Scripts de Pós-Processamento" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "Adicionar um script" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 +msgctxt "@label" +msgid "Settings" +msgstr "Ajustes" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Alterar scripts de pós-processamento ativos." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "O seguinte script está ativo:" +msgstr[1] "Os seguintes scripts estão ativos:" + +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Extensão que permite scripts criados por usuários para pós-processamento" + +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Pós-processamento" + +#: plugins/PrepareStage/PrepareMenu.qml:74 +msgctxt "@button" +msgid "Add printer" +msgstr "Adicionar impressora" + +#: plugins/PrepareStage/PrepareMenu.qml:90 +msgctxt "@button" +msgid "Manage printers" +msgstr "Gerenciar impressoras" + +#: plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "Preparar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 +#: plugins/PrepareStage/plugin.json +msgctxt "name" +msgid "Prepare Stage" +msgstr "Estágio de Preparação" + +#: plugins/PrepareStage/plugin.json +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Provê um estágio de preparação no Cura." + +#: plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" msgid "Preview" msgstr "Pré-visualização" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +#: plugins/PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Estágio de Pré-visualização" + +#: plugins/PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Provê uma etapa de pré-visualização ao Cura." + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Salvar em Unidade Removível" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Salvar em Unidade Removível {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "Não há formatos de arquivo disponíveis com os quais escrever!" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 #, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Salvando na Unidade Removível {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 msgctxt "@info:title" msgid "Saving" msgstr "Salvando" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "Não foi possível salvar em {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 #, 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 "Não foi possível encontrar nome de arquivo ao tentar escrever em {device}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 #, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Não foi possível salvar em unidade removível {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 #, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Salvo em Unidade Removível {0} como {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 msgctxt "@info:title" msgid "File Saved" msgstr "Arquivo Salvo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 msgctxt "@action:button" msgid "Eject" msgstr "Ejetar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 #, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Ejetar dispositivo removível {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 #, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "{0} ejetado. A unidade agora pode ser removida de forma segura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 msgctxt "@info:title" msgid "Safely Remove Hardware" msgstr "Remover Hardware com Segurança" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 #, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Erro ao ejetar {0}. Outro programa pode estar usando a unidade." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +#: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 msgctxt "@item:intext" msgid "Removable Drive" msgstr "Unidade Removível" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -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." +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Provê suporte a escrita e reconhecimento de drives a quente." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Visão Simulada" +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Complemento de Dispositivo de Escrita Removível" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 +#: plugins/SentryLogger/plugin.json +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Registra certos eventos de forma que possam ser usados pelo relator de acidentes" + +#: plugins/SentryLogger/plugin.json +msgctxt "name" +msgid "Sentry Logger" +msgstr "Sentinela para Registro" + +#: plugins/SimulationView/SimulationView.py:129 msgctxt "@info:status" msgid "Nothing is shown because you need to slice first." msgstr "Nada está exibido porque você precisa fatiar primeiro." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 +#: plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "No layers to show" msgstr "Não há camadas a exibir" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 +#: plugins/SimulationView/SimulationView.py:132 +#: plugins/SolidView/SolidView.py:74 msgctxt "@info:option_text" msgid "Do not show this message again" msgstr "Não mostrar essa mensagem novamente" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:18 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:47 +msgctxt "@label" +msgid "Color scheme" +msgstr "Esquema de Cores" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Cor do Material" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Tipo de Linha" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:112 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Velocidade" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:116 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Espessura de Camada" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:120 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Largura de Extrusão" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:124 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Fluxo" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:164 +msgctxt "@label" +msgid "Compatibility Mode" +msgstr "Modo de Compatibilidade" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:231 +msgctxt "@label" +msgid "Travels" +msgstr "Percursos" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:237 +msgctxt "@label" +msgid "Helpers" +msgstr "Assistentes" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:243 +msgctxt "@label" +msgid "Shell" +msgstr "Perímetro" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:249 +msgctxt "@label" +msgid "Infill" +msgstr "Preenchimento" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:257 +msgctxt "@label" +msgid "Starts" +msgstr "Inícios" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:304 +msgctxt "@label" +msgid "Only Show Top Layers" +msgstr "Somente Exibir Camadas Superiores" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:313 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "Exibir 5 Camadas Superiores Detalhadas" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:326 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Topo / Base" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:330 +msgctxt "@label" +msgid "Inner Wall" +msgstr "Parede Interna" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:397 +msgctxt "@label" +msgid "min" +msgstr "mín" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:462 +msgctxt "@label" +msgid "max" +msgstr "máx" + +#: plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Visão de Camadas" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +#: plugins/SimulationView/plugin.json +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Provê a pré-visualização de dados de camada fatiados." + +#: plugins/SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "Visão Simulada" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Mais informações em coleção anônima de dados" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 +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 "O UltiMaker Cura coleta dados anônimos para poder aprimorar a qualidade de impressão e experiência do usuário. Abaixo segue um exemplo de todos os dados que são compartilhados:" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Recusar enviar dados anônimos" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Permitir enviar dados anônimos" + +#: plugins/SliceInfoPlugin/SliceInfo.py:95 msgctxt "@text" msgid "Unable to read example data file." msgstr "Não foi possível ler o arquivo de dados de exemplo." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Informação de fatiamento" + +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências." + +#: plugins/SolidView/SolidView.py:71 msgctxt "@info:status" msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." msgstr "As áreas ressaltadas indicam superfícies faltantes ou incorretas. Conserte seu modelo e o abra novamente no Cura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +#: plugins/SolidView/SolidView.py:73 msgctxt "@info:title" msgid "Model Errors" msgstr "Erros de Modelo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +#: plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" msgstr "Visão sólida" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +#: plugins/SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Provê uma visualização de malha sólida normal." + +#: plugins/SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Visão Sólida" + +#: plugins/SupportEraser/__init__.py:12 msgctxt "@label" msgid "Support Blocker" msgstr "Bloqueador de Suporte" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 +#: plugins/SupportEraser/__init__.py:13 msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "Cria um volume em que os suportes não são impressos." -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 +#: plugins/SupportEraser/plugin.json +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Cria uma malha apagadora para bloquear a impressão de suporte em certos lugares" + +#: plugins/SupportEraser/plugin.json +msgctxt "name" +msgid "Support Eraser" +msgstr "Apagador de Suporte" + +#: plugins/TrimeshReader/__init__.py:15 msgctxt "@item:inlistbox 'Open' is part of the name of this file format." msgid "Open Compressed Triangle Mesh" msgstr "Open Compressed Triangle Mesh" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: plugins/TrimeshReader/__init__.py:19 msgctxt "@item:inlistbox" msgid "COLLADA Digital Asset Exchange" msgstr "Câmbio de Ativos Digitais COLLADA" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: plugins/TrimeshReader/__init__.py:23 msgctxt "@item:inlistbox" msgid "glTF Binary" msgstr "Binário glTF" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: plugins/TrimeshReader/__init__.py:27 msgctxt "@item:inlistbox" msgid "glTF Embedded JSON" msgstr "glTF Embutido JSON" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: plugins/TrimeshReader/__init__.py:36 msgctxt "@item:inlistbox" msgid "Stanford Triangle Format" msgstr "Formato de Triângulos de Stanford" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: plugins/TrimeshReader/__init__.py:40 msgctxt "@item:inlistbox" msgid "Compressed COLLADA Digital Asset Exchange" msgstr "Câmbio de Ativos Digitais COLLADA Comprimido" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Pacote de Formato da Ultimaker" +#: plugins/TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Provê suporta a ler arquivos de modelo." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 +#: plugins/TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Leitor Trimesh" + +#: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "UltiMaker Format Package" +msgstr "Pacote de Formato da UltiMaker" + +#: plugins/UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "" + +#: plugins/UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "Leitor UFP" + +#: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80 +#: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115 +#: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180 msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "Não foi possível escrever no arquivo UFP:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Nivelar mesa" +#: plugins/UFPWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Selecionar Atualizações" +#: plugins/UFPWriter/plugin.json +msgctxt "name" +msgid "UFP Writer" +msgstr "Gerador de UFP" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "" + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Conectar a Impressora de Rede" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Selecione sua impressora da lista abaixo:" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +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 "Para imprimir diretamente na sua impressora pela rede, certifique-se que ela esteja conectada à rede usando um cabo de rede ou conectando sua impressora à sua WIFI. Se você não conectar Cura à sua impressora, você ainda pode usar um drive USB ou SDCard para transferir arquivos G-Code a ela." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 +msgctxt "@action:button" +msgid "Edit" +msgstr "Editar" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 +#: resources/qml/Preferences/MachinesPage.qml:153 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:186 +#: resources/qml/Preferences/ProfilesPage.qml:321 +msgctxt "@action:button" +msgid "Remove" +msgstr "Remover" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Atualizar" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "Se sua impressora não está listada, leia o guia de resolução de problemas de impressão em rede" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 +msgctxt "@label" +msgid "Type" +msgstr "Tipo" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 +msgctxt "@label" +msgid "Firmware version" +msgstr "Versão do firmware" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 +msgctxt "@label" +msgid "Address" +msgstr "Endereço" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Esta impressora é a hospedeira de um grupo de %1 impressoras." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "A impressora neste endereço ainda não respondeu." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" +msgid "Connect" +msgstr "Conectar" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Endereço IP inválido" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Por favor entre um endereço IP válido." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Endereço da Impressora" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Entre o endereço IP da sua impressora na rede." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Alterações de Configuração" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 +msgctxt "@action:button" +msgid "Override" +msgstr "Sobrepor" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "A impressora associada, %1, requer a seguinte alteração de configuração:" +msgstr[1] "A impressora associada, %1, requer as seguintes alterações de configuração:" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "A impressora %1 está associada, mas o trabalho contém configuração de material desconhecida." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Alterar material %1 de %2 para %3." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "Carregar %3 como material %1 (isto não pode ser sobreposto)." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Alterar núcleo de impressão %1 de %2 para %3." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "Sobrepor irá usar os ajustes especificados com a configuração existente da impressora. Isto pode causar falha da impressão." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@label" +msgid "Move to top" +msgstr "Mover para o topo" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155 +msgctxt "@label" +msgid "Delete" +msgstr "Remover" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186 +#: resources/qml/MonitorButton.qml:284 +msgctxt "@label" +msgid "Resume" +msgstr "Continuar" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188 +msgctxt "@label" +msgid "Pausing..." +msgstr "Pausando..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190 +msgctxt "@label" +msgid "Resuming..." +msgstr "Continuando..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192 +#: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288 +msgctxt "@label" +msgid "Pause" +msgstr "Pausar" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Abort" +msgstr "Abortar" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Aborting..." +msgstr "Abortando..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218 +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 "Você tem certeza que quer mover %1 para o topo da fila?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Move o trabalho de impressão para o topo da fila" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "Você tem certeza que quer remover %1?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Remover trabalho de impressão" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "Você tem certeza que quer abortar %1?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237 +#: resources/qml/MonitorButton.qml:326 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Abortar impressão" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Impressora indisponível" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 +msgctxt "@label" +msgid "First available" +msgstr "Primeira disponível" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Por favor atualize o firmware de sua impressora parar gerir a fila remotamente." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +msgctxt "@label:status" +msgid "Aborted" +msgstr "Abortado" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 +msgctxt "@label:status" +msgid "Finished" +msgstr "Finalizado" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Preparando..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "Abortando..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +msgctxt "@label:status" +msgid "Failed" +msgstr "Falhado" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Pausando..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Paused" +msgstr "Pausado" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Continuando..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Action required" +msgstr "Necessária uma ação" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Termina %1 em %2" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Gerir Impressora" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280 +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 "Fontes de webcam para impressoras de nuvem não podem ser vistas pelo UltiMaker Cura. Clique em \"Gerenciar impressora\" para visitar a Ultimaker Digital Factory e visualizar esta webcam." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Carregando..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Indisponível" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Inacessivel" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Idle" +msgstr "Ocioso" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361 +msgctxt "@label:status" +msgid "Printing" +msgstr "Imprimindo" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402 +msgctxt "@label" +msgid "Untitled" +msgstr "Sem Título" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417 +msgctxt "@label" +msgid "Anonymous" +msgstr "Anônimo" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Requer mudanças na configuração" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452 +msgctxt "@action:button" +msgid "Details" +msgstr "Detalhes" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 +msgctxt "@label" +msgid "Queued" +msgstr "Enfileirados" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Gerir no navegador" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "Não há trabalhos de impressão na fila. Fatie e envie um trabalho para adicioná-lo." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "Print jobs" +msgstr "Trabalhos de impressão" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108 +msgctxt "@label" +msgid "Total print time" +msgstr "Tempo total de impressão" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117 +msgctxt "@label" +msgid "Waiting for" +msgstr "Esperando por" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117 +msgctxt "@info" +msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" +msgstr "Monitora suas impressoras de todo lugar usando a Ultimaker Digital Factory" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129 +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Ver impressoras na Digital Factory" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Imprimir pela rede" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 +msgctxt "@action:button" +msgid "Print" +msgstr "Imprimir" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 +msgctxt "@label" +msgid "Printer selection" +msgstr "Seleção de impressora" + +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162 msgctxt "@action:button" msgid "Print via cloud" msgstr "Imprimir pela nuvem" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Imprimir pela nuvem" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Conectado pela nuvem" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276 msgctxt "@action:button" msgid "Monitor print" msgstr "Monitorar impressão" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278 msgctxt "@action:tooltip" msgid "Track the print in Ultimaker Digital Factory" msgstr "Rastrear a impressão na Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Código de erro desconhecido ao transferir trabalho de impressão: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "Nova impressora detectada na sua conta Ultimaker" -msgstr[1] "Novas impressoras detectadas na sua conta Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:242 -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "Adicionando impressora {name} ({model}) da sua conta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:261 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "... e {0} outra" -msgstr[1] "... e {0} outras" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:266 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "Impressoras adicionadas da Digital Factory:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:334 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "Conexão de nuvem não está disponível para uma impressora" -msgstr[1] "Conexão de nuvem não está disponível para algumas impressoras" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:343 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "Esta impressora não está ligada à Digital Factory:" -msgstr[1] "Estas impressoras não estão ligadas à Digital Factory:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:348 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:440 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:352 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "Para estabelecer uma conexão, por favor visite o {website_link}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:356 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "Manter configurações da impressora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "Remover impressoras" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:442 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425 #, 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} será removida até a próxima sincronização de conta." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:443 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426 #, 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 "Para remover {printer_name} permanentemente, visite {digital_factory_link}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:444 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427 #, 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 "Tem certeza que quer remover {printer_name} temporariamente?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474 msgctxt "@title:window" msgid "Remove printers?" msgstr "Remover impressoras?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477 #, python-brace-format msgctxt "@label" msgid "" @@ -1669,7 +3485,7 @@ msgstr[1] "" "Você está prestes a remover {0} impressoras do Cura. Esta ação não pode ser desfeita.\n" "Tem certeza que quer continuar?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be undone.\n" @@ -1678,7 +3494,7 @@ msgstr "" "Você está prestes a remover todas as impressoras do Cura. Esta ação não pode ser desfeita.\n" "Tem certeza que quer continuar?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, python-brace-format msgctxt "@info:status" msgid "" @@ -1688,3924 +3504,2665 @@ msgstr "" "Sua impressora {printer_name} poderia estar conectada via nuvem.\n" " Gerencie sua fila de impressão e monitore suas impressoras de qualquer lugar conectando sua impressora à Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 msgctxt "@info:title" msgid "Are you ready for cloud printing?" msgstr "Você está pronto para a impressão de nuvem?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 msgctxt "@action" msgid "Get started" msgstr "Começar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24 msgctxt "@action" msgid "Learn more" msgstr "Saiba mais" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 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 "Você está tentando conectar a uma impressora que não está rodando Ultimaker Connect. Por favor atualiza a impressora para o firmware mais recente." +msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 msgctxt "@info:title" msgid "Update your printer" msgstr "Atualize sua impressora" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 #, 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 "O Cura detectou perfis de material que não estão instalados ainda na impressora host do grupo {0}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Enviando material para a impressora" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "Nova impressora detectada na sua conta Ultimaker" +msgstr[1] "Novas impressoras detectadas na sua conta Ultimaker" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29 +#, python-brace-format +msgctxt "info:status Filled in with printer name and printer model." +msgid "Adding printer {name} ({model}) from your account" +msgstr "Adicionando impressora {name} ({model}) da sua conta" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "... e {0} outra" +msgstr[1] "... e {0} outras" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "Impressoras adicionadas da Digital Factory:" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 #, 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 "Você está tentando conectar a {0} mas ele não é host de um grupo. Você pode visitar a página web para configurá-lo como host de grupo." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 msgctxt "@info:title" msgid "Not a group host" msgstr "Não é host de grupo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 msgctxt "@action" msgid "Configure group" msgstr "Configurar grupo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18 +msgctxt "@info:status" +msgid "You will receive a confirmation via email when the print job is approved" +msgstr "Você receberá uma confirmação por email quando o trabalho de impressão for aprovado" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19 +msgctxt "@info:title" +msgid "The print job was successfully submitted" +msgstr "O trabalho de impressão foi submetido com sucesso" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22 +msgctxt "@action" +msgid "Manage print jobs" +msgstr "Gerenciar trabalhos de impressão" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 msgctxt "@info:status" msgid "Please wait until the current job has been sent." msgstr "Por favor espere até que o trabalho atual tenha sido enviado." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 msgctxt "@info:title" msgid "Print error" msgstr "Erro de impressão" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Não foi possível transferir os dados para a impressora." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 msgctxt "@info:title" msgid "Network error" msgstr "Erro de rede" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 msgctxt "@info:status" msgid "Sending Print Job" msgstr "Enviando Trabalho de Impressão" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 msgctxt "@info:status" msgid "Uploading print job to printer." msgstr "Transferindo trabalho de impressão para a impressora." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 msgctxt "@info:status" msgid "Print job queue is full. The printer can't accept a new job." msgstr "A fila de trabalhos de impressão está cheia. A impressora não pode aceitar novo trabalho." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 msgctxt "@info:title" msgid "Queue Full" msgstr "Fila Cheia" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "Trabalho de impressão enviado à impressora com sucesso." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 msgctxt "@info:title" msgid "Data Sent" msgstr "Dados Enviados" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "Esta impressora não está ligada à Digital Factory:" +msgstr[1] "Estas impressoras não estão ligadas à Digital Factory:" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "Para estabelecer uma conexão, por favor visite o {website_link}" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "Conexão de nuvem não está disponível para uma impressora" +msgstr[1] "Conexão de nuvem não está disponível para algumas impressoras" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "Manter configurações da impressora" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "Remover impressoras" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "Imprimir pela rede" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "Imprime pela rede" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64 msgctxt "@info:status" msgid "Connected over the network" msgstr "Conectado pela rede" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 msgctxt "@action" msgid "Connect via Network" msgstr "Conectar pela rede" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +#: plugins/UM3NetworkPrinting/src/Utils.py:27 msgctxt "@info:status" msgid "tomorrow" msgstr "amanhã" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +#: plugins/UM3NetworkPrinting/src/Utils.py:30 msgctxt "@info:status" msgid "today" msgstr "hoje" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:42 msgctxt "@item:inmenu" msgid "USB printing" msgstr "Impressão USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:43 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print via USB" msgstr "Imprimir pela USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:44 msgctxt "@info:tooltip" msgid "Print via USB" msgstr "Imprimir pela USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:80 msgctxt "@info:status" msgid "Connected via USB" msgstr "Conectado via USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:110 msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" msgstr "Uma impressão USB está em progresso, fechar o Cura interromperá esta impressão. Tem certeza?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:135 msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Uma impressão ainda está em progresso. O Cura não pode iniciar outra impressão via USB até que a impressão anterior tenha completado." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:136 msgctxt "@message" msgid "Print in Progress" msgstr "Impressão em Progresso" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "Arquivo X3D" +#: plugins/USBPrinting/plugin.json +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Aceita G-Code e o envia a uma impressora. O complemento também pode atualizar o firmware." -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Visão de Raios-X" +#: plugins/USBPrinting/plugin.json +msgctxt "name" +msgid "USB printing" +msgstr "Impressão USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 -msgctxt "@title:window" -msgid "Open Project" -msgstr "Abrir Projeto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "Atualizar existentes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "Criar novos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:59 -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "Resumo - Projeto do Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108 -msgctxt "@info:tooltip" -msgid "How should the conflict in the machine be resolved?" -msgstr "Como o conflito na máquina deve ser resolvido?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:95 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Ajustes da impressora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:104 -msgctxt "@action:label" -msgid "Type" -msgstr "Tipo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:192 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -msgctxt "@action:label" -msgid "Printer Group" -msgstr "Grupo de Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:217 -msgctxt "@info:tooltip" -msgid "How should the conflict in the profile be resolved?" -msgstr "Como o conflito no perfil deve ser resolvido?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:220 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Ajustes de perfil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:250 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:375 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:244 -msgctxt "@action:label" -msgid "Name" -msgstr "Nome" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:268 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:261 -msgctxt "@action:label" -msgid "Intent" -msgstr "Objetivo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:286 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:228 -msgctxt "@action:label" -msgid "Not in profile" -msgstr "Ausente no perfil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:292 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:233 -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "%1 sobreposto" -msgstr[1] "%1 sobrepostos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 -msgctxt "@action:label" -msgid "Derivative from" -msgstr "Derivado de" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:311 -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "%1, %2 sobreposição" -msgstr[1] "%1, %2 sobreposições" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:333 -msgctxt "@info:tooltip" -msgid "How should the conflict in the material be resolved?" -msgstr "Como o conflito no material deve ser resolvido?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:360 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Ajustes de material" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:396 -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "Visibilidade dos ajustes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 -msgctxt "@action:label" -msgid "Mode" -msgstr "Modo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 -msgctxt "@action:label" -msgid "Visible settings:" -msgstr "Ajustes visíveis:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "%1 de %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:447 -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "Carregar um projeto limpará todos os modelos da mesa de impressão." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 -msgctxt "@action:button" -msgid "Open" -msgstr "Abrir" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 -msgctxt "@action:button" -msgid "Open project anyway" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 -msgctxt "@action:button" -msgid "Install missing material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Quer mais?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Backup Agora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Auto Backup" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Criar um backup automaticamente toda vez que o Cura iniciar." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 -msgctxt "@button" -msgid "Restore" -msgstr "Restaurar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Apagar o Backup" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Você tem certeza que deseja apagar este backup? Isto não pode ser desfeito." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Restaurar Backup" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "Você precisará reiniciar o Cura antes que seu backup seja restaurado. Deseja fechar o Cura agora?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Versão do Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Máquinas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materiais" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Perfis" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Complementos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Backups do Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Meus backups" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Você não tem nenhum backup atualmente. Use o botão 'Backup Agora' para criar um." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Durante a fase de pré-visualização, você estará limitado a 5 backups visíveis. Remova um backup para ver os mais antigos." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Fazer backup e sincronizar os ajustes do Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:212 -msgctxt "@button" -msgid "Sign in" -msgstr "Entrar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 -msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 -msgctxt "@option" -msgid "Save Cura project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Atualizar Firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 -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 "O firmware é o software rodando diretamente no maquinário de sua impressora 3D. Este firmware controla os motores de passo, regula a temperatura e é o que faz a sua impressora funcionar." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 -msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "O firmware que já vêm embutido nas novas impressoras funciona, mas novas versões costumam ter mais recursos, correções e melhorias." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Automaticamente atualizar Firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Carregar Firmware personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "O firmware não pode ser atualizado porque não há conexão com a impressora." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 -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 conexão com a impressora não suporta atualização de firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Selecionar firmware personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Atualização do Firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Atualizando firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Atualização do Firmware completada." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "A atualização de Firmware falhou devido a um erro desconhecido." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "A atualização de firmware falhou devido a um erro de comunicação." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "A atualização de firmware falhou devido a um erro de entrada e saída." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "A atualização de firmware falhou devido a firmware não encontrado." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:14 -msgctxt "@title:window" -msgid "Convert Image" -msgstr "Converter Imagem" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 -msgctxt "@action:label" -msgid "Height (mm)" -msgstr "Altura (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "A distância máxima de cada pixel da \"Base\"." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 -msgctxt "@action:label" -msgid "Base (mm)" -msgstr "Base (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 -msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "A altura-base da mesa de impressão em milímetros." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 -msgctxt "@action:label" -msgid "Width (mm)" -msgstr "Largura (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 -msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate" -msgstr "A largura em milímetros na plataforma de impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 -msgctxt "@action:label" -msgid "Depth (mm)" -msgstr "Profundidade (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 -msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "A profundidade da mesa de impressão em milímetros" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 -msgctxt "@item:inlistbox" -msgid "Darker is higher" -msgstr "Mais escuro é mais alto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -msgctxt "@item:inlistbox" -msgid "Lighter is higher" -msgstr "Mais claro é mais alto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 -msgctxt "@info:tooltip" -msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." -msgstr "Para litofanos, pixels escuros devem corresponder a locais mais espessos para conseguir bloquear mais luz. Para mapas de altura, pixels mais claros significam terreno mais alto, portanto tais pixels devem corresponder a locais mais espessos no modelo 3d gerado." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:205 -msgctxt "@action:label" -msgid "Color Model" -msgstr "Modelo de Cor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:224 -msgctxt "@item:inlistbox" -msgid "Linear" -msgstr "Linear" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 -msgctxt "@item:inlistbox" -msgid "Translucency" -msgstr "Translucidez" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 -msgctxt "@info:tooltip" -msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." -msgstr "Para litofanos, um modelo logarítmico simples para translucidez está disponível. Para mapas de altura os valores de pixels correspondem a alturas, linearmente." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 -msgctxt "@action:label" -msgid "1mm Transmittance (%)" -msgstr "Transmitância de 1mm (%)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 -msgctxt "@info:tooltip" -msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." -msgstr "A porcentagem de luz penetrando uma impressão com espessura de 1 milímetro. Abaixar este valor aumenta o contraste em regiões escuras e diminui o contraste em regiões claras da imagem." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 -msgctxt "@action:label" -msgid "Smoothing" -msgstr "Suavização" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:298 -msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "A quantidade de suavização para aplicar na imagem." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:143 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:80 -msgctxt "@action:button" -msgid "OK" -msgstr "Ok" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Ajustes do Bico" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Tamanho do bico" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Diâmetro de material compatível" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Deslocamento X do Bico" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Deslocamento Y do Bico" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Número da Ventoinha de Resfriamento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "G-Code Inicial do Extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "G-Code Final do Extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Ajustes de Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (largura)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Profundidade)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Altura)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Forma da plataforma de impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 -msgctxt "@label" -msgid "Origin at center" -msgstr "Origem no centro" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 -msgctxt "@label" -msgid "Heated bed" -msgstr "Mesa aquecida" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Volume de construção aquecido" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 -msgctxt "@label" -msgid "G-code flavor" -msgstr "Sabor de G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Ajustes da Cabeça de Impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 -msgctxt "@label" -msgid "X min" -msgstr "X mín" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 -msgctxt "@label" -msgid "Y min" -msgstr "Y mín" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 -msgctxt "@label" -msgid "X max" -msgstr "X máx" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 -msgctxt "@label" -msgid "Y max" -msgstr "Y máx" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Altura do Eixo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Número de Extrusores" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Aplicar deslocamentos de Extrusão ao G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "G-Code Inicial" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400 -msgctxt "@title:label" -msgid "End G-code" -msgstr "G-Code Final" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 -msgctxt "@title" -msgid "Changes from your account" -msgstr "Alterações da sua conta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -msgctxt "@button" -msgid "Dismiss" -msgstr "Dispensar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:118 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:175 -msgctxt "@button" -msgid "Next" -msgstr "Próximo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "Os seguintes pacotes serão adicionados:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "Os seguintes pacotes não podem ser instalados por incompatibilidade de versão do Cura:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 -msgctxt "@title" -msgid "Install missing Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 -msgctxt "@button" -msgid "Plugin license agreement" -msgstr "Acordo de licença do complemento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47 -msgctxt "@text" -msgid "Please read and agree with the plugin licence." -msgstr "Por favor leia e concorde com a licença do complemento." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 -msgctxt "@button" -msgid "Accept" -msgstr "Aceitar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 -msgctxt "@header" -msgid "Manage packages" -msgstr "Gerir pacotes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15 -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 "Gerencie seu complementos e perfis de materiais do Cura aqui. Se assegure de manter seus complementos atualizados e fazer backup de sua configuração regularmente." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 -msgctxt "@info:tooltip" -msgid "Manage packages" -msgstr "Gerir pacotes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 -msgctxt "@title" -msgid "Loading..." -msgstr "Carregando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 -msgctxt "@button" -msgid "Plugins" -msgstr "Complementos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 -msgctxt "@button" -msgid "Materials" -msgstr "Materiais" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 -msgctxt "@info" -msgid "Search in the browser" -msgstr "Buscar no navegador" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:271 -msgctxt "@button" -msgid "In order to use the package you will need to restart Cura" -msgstr "Para usar o pacote você precisará reiniciar o Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:279 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Sair de %1" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:8 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MissingPackages.qml:8 -msgctxt "@header" -msgid "Install Materials" -msgstr "Instalar Materiais" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 -msgctxt "@text" -msgid "Select and install material profiles optimised for your Ultimaker 3D printers." -msgstr "Selecione e instale perfis de material otimizados para suas impressoras 3D Ultimaker." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "Você precisa aceitar a licença para que o pacote possa ser instalado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:101 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:207 -msgctxt "@button:label" -msgid "Learn More" -msgstr "Saiba mais" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:172 -msgctxt "@label Is followed by the name of an author" -msgid "By" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Enable" -msgstr "Habilitar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Disable" -msgstr "Desabilitar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 -msgctxt "@button" -msgid "Downgrading..." -msgstr "Fazendo downgrade..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 -msgctxt "@button" -msgid "Downgrade" -msgstr "Downgrade" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 -msgctxt "@button" -msgid "Installing..." -msgstr "Instalando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 -msgctxt "@button" -msgid "Install" -msgstr "Instalar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 -msgctxt "@button" -msgid "Uninstall" -msgstr "Desinstalar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Updating..." -msgstr "Atualizando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Update" -msgstr "Atualizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 -msgctxt "@header" -msgid "Package details" -msgstr "Detalhes do pacote" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 -msgctxt "@button:tooltip" -msgid "Back" -msgstr "Voltar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 -msgctxt "@header" -msgid "Description" -msgstr "Descrição" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 -msgctxt "@header" -msgid "Compatible printers" -msgstr "Impressoras compatíveis" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:134 -msgctxt "@info" -msgid "No compatibility information" -msgstr "Sem informação de compatibilidade" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:152 -msgctxt "@header" -msgid "Compatible support materials" -msgstr "Materiais de suporte compatíveis" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176 -msgctxt "@info No materials" -msgid "None" -msgstr "Nenhum" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:193 -msgctxt "@header" -msgid "Compatible with Material Station" -msgstr "Compatível com Material Station" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "Yes" -msgstr "Sim" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "No" -msgstr "Não" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:219 -msgctxt "@header" -msgid "Optimized for Air Manager" -msgstr "Otimizado para o Air Manager" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Visit plug-in website" -msgstr "Visitar sítio web de complementos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Website" -msgstr "Sítio web" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:252 -msgctxt "@button" -msgid "Buy spool" -msgstr "Comprar carretel" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:261 -msgctxt "@button" -msgid "Safety datasheet" -msgstr "Ficha de segurança" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:270 -msgctxt "@button" -msgid "Technical datasheet" -msgstr "Ficha técnica" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Failed to load packages:" -msgstr "Falha em carregar pacotes:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Retry?" -msgstr "Tentar novamente?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:167 -msgctxt "@button" -msgid "Loading" -msgstr "Carregando" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No more results to load" -msgstr "Não há mais resultados a carregar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No results found with current filter" -msgstr "Não há resultados encontrados com o filtro atual" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:226 -msgctxt "@button" -msgid "Load more" -msgstr "Carregar mais" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8 -msgctxt "@header" -msgid "Install Plugins" -msgstr "Instalar Complementos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12 -msgctxt "@text" -msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users." -msgstr "Simplifique seu fluxo de trabalho e personalize sua experiência do Ultimaker Cura com complementos contribuídos por nossa fantástica comunidade de usuários." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 -msgctxt "@info" -msgid "Ultimaker Verified Plug-in" -msgstr "Complemento Verificado Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 -msgctxt "@info" -msgid "Ultimaker Certified Material" -msgstr "Material Certificado Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 -msgctxt "@info" -msgid "Ultimaker Verified Package" -msgstr "Pacote Verificado Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 -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 "" -"Por favor certifique-se que sua impressora está conectada>\n" -"- Verifique se ela está ligada.\n" -"- Verifique se ela está conectada à rede.\n" -"- Verifique se você está logado para descobrir impressoras conectadas à nuvem." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 -msgctxt "@info" -msgid "Please connect your printer to the network." -msgstr "Por favor conecte sua impressora à rede." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 -msgctxt "@label link to technical assistance" -msgid "View user manuals online" -msgstr "Ver manuais de usuário online" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:163 -msgctxt "@info" -msgid "In order to monitor your print from Cura, please connect the printer." -msgstr "Para monitorar sua impressão pelo Cura, por favor conecte a impressora." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Tipo de Malha" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 -msgctxt "@label" -msgid "Normal model" -msgstr "Modelo normal" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 -msgctxt "@label" -msgid "Print as support" -msgstr "Imprimir como suporte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Modificar ajustes para sobreposições" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Não suportar sobreposições" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Somente malha de preenchimento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Malha de corte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Selecionar ajustes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Selecionar Ajustes a Personalizar para este modelo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtrar..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Exibir tudo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Complemento de Pós-Processamento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Scripts de Pós-Processamento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" -msgid "Add a script" -msgstr "Adicionar um script" +msgid "Level build plate" +msgstr "Nivelar mesa" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 -msgctxt "@label" -msgid "Settings" -msgstr "Ajustes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:459 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Alterar scripts de pós-processamento ativos." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:463 -msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "O seguinte script está ativo:" -msgstr[1] "Os seguintes scripts estão ativos:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:47 -msgctxt "@label" -msgid "Color scheme" -msgstr "Esquema de Cores" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Cor do Material" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Tipo de Linha" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Velocidade" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Espessura de Camada" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Largura de Extrusão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Fluxo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Modo de Compatibilidade" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 -msgctxt "@label" -msgid "Travels" -msgstr "Percursos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 -msgctxt "@label" -msgid "Helpers" -msgstr "Assistentes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 -msgctxt "@label" -msgid "Shell" -msgstr "Perímetro" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:64 -msgctxt "@label" -msgid "Infill" -msgstr "Preenchimento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Starts" -msgstr "Inícios" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Somente Exibir Camadas Superiores" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Exibir 5 Camadas Superiores Detalhadas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Topo / Base" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Parede Interna" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 -msgctxt "@label" -msgid "min" -msgstr "mín" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 -msgctxt "@label" -msgid "max" -msgstr "máx" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Mais informações em coleção anônima de dados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 -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 "O Ultimaker Cura coleta dados anônimos para poder aprimorar a qualidade de impressão e experiência do usuário. Abaixo segue um exemplo de todos os dados que são compartilhados:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Recusar enviar dados anônimos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Permitir enviar dados anônimos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 msgctxt "@title" msgid "Build Plate Leveling" msgstr "Nivelamento da mesa de impressão" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 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 "Para garantir que suas impressões saiam ótimas, você deve agora ajustar sua mesa de impressão. Quando você clicar em 'Mover para a Posição Seguinte', o bico se moverá para posições diferentes que podem ser ajustadas." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 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." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 msgctxt "@action:button" msgid "Start Build Plate Leveling" msgstr "Iniciar Nivelamento da Mesa de Impressão" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 msgctxt "@action:button" msgid "Move to Next Position" msgstr "Mover pra a Posição Seguinte" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Por favor selecionar quaisquer atualizações feitas nesta Ultimaker Original" +#: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "Selecionar Atualizações" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this UltiMaker Original" +msgstr "Por favor selecionar quaisquer atualizações feitas nesta UltiMaker Original" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 msgctxt "@label" msgid "Heated Build Plate (official kit or self-built)" msgstr "Mesa de Impressão Aquecida (kit Oficial ou auto-construído)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Conectar a Impressora de Rede" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -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 "Para imprimir diretamente na sua impressora pela rede, certifique-se que ela esteja conectada à rede usando um cabo de rede ou conectando sua impressora à sua WIFI. Se você não conectar Cura à sua impressora, você ainda pode usar um drive USB ou SDCard para transferir arquivos G-Code a ela." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Selecione sua impressora da lista abaixo:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 -msgctxt "@action:button" -msgid "Edit" -msgstr "Editar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:140 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:321 -msgctxt "@action:button" -msgid "Remove" -msgstr "Remover" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Atualizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "Se sua impressora não está listada, leia o guia de resolução de problemas de impressão em rede" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 -msgctxt "@label" -msgid "Type" -msgstr "Tipo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 -msgctxt "@label" -msgid "Firmware version" -msgstr "Versão do firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 -msgctxt "@label" -msgid "Address" -msgstr "Endereço" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Esta impressora é a hospedeira de um grupo de %1 impressoras." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "A impressora neste endereço ainda não respondeu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 -msgctxt "@action:button" -msgid "Connect" -msgstr "Conectar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Endereço IP inválido" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Por favor entre um endereço IP válido." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Endereço da Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Entre o endereço IP da sua impressora na rede." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Alterações de Configuração" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 -msgctxt "@action:button" -msgid "Override" -msgstr "Sobrepor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "A impressora associada, %1, requer a seguinte alteração de configuração:" -msgstr[1] "A impressora associada, %1, requer as seguintes alterações de configuração:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "A impressora %1 está associada, mas o trabalho contém configuração de material desconhecida." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Alterar material %1 de %2 para %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Carregar %3 como material %1 (isto não pode ser sobreposto)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Alterar núcleo de impressão %1 de %2 para %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Alterar mesa de impressão para %1 (Isto não pode ser sobreposto)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "Sobrepor irá usar os ajustes especificados com a configuração existente da impressora. Isto pode causar falha da impressão." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:178 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:175 -msgctxt "@label" -msgid "Glass" -msgstr "Vidro" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154 -msgctxt "@label" -msgid "Aluminum" -msgstr "Alumínio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Mover para o topo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Remover" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:284 -msgctxt "@label" -msgid "Resume" -msgstr "Continuar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Pausando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Continuando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:288 -msgctxt "@label" -msgid "Pause" -msgstr "Pausar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Abortando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Abortar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:142 -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 "Você tem certeza que quer mover %1 para o topo da fila?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Move o trabalho de impressão para o topo da fila" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:151 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "Você tem certeza que quer remover %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Remover trabalho de impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:160 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "Você tem certeza que quer abortar %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Abortar impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Gerir Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:239 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Por favor atualize o firmware de sua impressora parar gerir a fila remotamente." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:275 -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 "Fontes de webcam para impressoras de nuvem não podem ser vistas pelo Ultimaker Cura. Clique em \"Gerenciar impressora\" para visitar a Ultimaker Digital Factory e visualizar esta webcam." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Carregando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Indisponível" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Inacessivel" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347 -msgctxt "@label:status" -msgid "Idle" -msgstr "Ocioso" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Preparando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Printing" -msgstr "Imprimindo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397 -msgctxt "@label" -msgid "Untitled" -msgstr "Sem Título" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:412 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anônimo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:433 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Requer mudanças na configuração" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:447 -msgctxt "@action:button" -msgid "Details" -msgstr "Detalhes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Impressora indisponível" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 -msgctxt "@label" -msgid "First available" -msgstr "Primeira disponível" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Abortado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 -msgctxt "@label:status" -msgid "Finished" -msgstr "Finalizado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Abortando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Failed" -msgstr "Falhado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Pausando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Paused" -msgstr "Pausado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Continuando..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Action required" -msgstr "Necessária uma ação" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Termina %1 em %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 -msgctxt "@label" -msgid "Queued" -msgstr "Enfileirados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Gerir no navegador" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:90 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "Não há trabalhos de impressão na fila. Fatie e envie um trabalho para adicioná-lo." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:98 -msgctxt "@label" -msgid "Print jobs" -msgstr "Trabalhos de impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107 -msgctxt "@label" -msgid "Total print time" -msgstr "Tempo total de impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116 -msgctxt "@label" -msgid "Waiting for" -msgstr "Esperando por" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Imprimir pela rede" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 -msgctxt "@action:button" -msgid "Print" -msgstr "Imprimir" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 -msgctxt "@label" -msgid "Printer selection" -msgstr "Seleção de impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Provê ações de máquina para impressoras da UltiMaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc.)." + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Atualiza configurações do Cura 2.1 para o Cura 2.2." + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Atualização de Versão de 2.1 para 2.2" + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Atualiza configurações do Cura 2.2 para o Cura 2.4." + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Atualização de Versão de 2.2 para 2.4" + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Atualiza configurações do Cura 2.5 para o Cura 2.6." + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Atualização de Versão de 2.5 para 2.6" + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Atualiza configurações do Cura 2.6 para o Cura 2.7." + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Atualização de Versão de 2.6 para 2.7" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Atualiza configuração do Cura 2.7 para o Cura 3.0." + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Atualização de Versão de 2.7 para 3.0" + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Atualiza configurações do Cura 3.0 para o Cura 3.1." + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Atualização de Versão 3.0 para 3.1" + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Atualiza configurações do Cura 3.2 para o Cura 3.3." + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Atualização de Versão de 3.2 para 3.3" + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Atualiza configuração do Cura 3.3 para o Cura 3.4." + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Atualização de Versão de 3.3 para 3.4" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Atualiza configurações do Cura 3.4 para o Cura 3.5." + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Atualização de Versão de 3.4 para 3.5" + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Atualiza configuração do Cura 3.5 para o Cura 4.0." + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Atualização de Versão de 3.5 para 4.0" + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Atualiza configurações do Cura 4.0 para o Cura 4.1." + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Atualização de Versão de 4.0 para 4.1" + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Atualiza configurações do Cura 4.11 para o Cura 4.12." + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Atualização de Versão de 4.11 para 4.12" + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Atualiza configurações do Cura 4.13 para o Cura 5.0." + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Atualização de Versão de 4.13 para 5.0" + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Atualiza configurações do Cura 4.1 para o Cura 4.2." + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Atualização de Versão de 4.1 para 4.2" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Atualiza configurações do Cura 4.2 para o Cura 4.3." + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Atualização de Versão de 4.2 para 4.3" + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Atualiza configurações do Cura 4.3 para o Cura 4.4." + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Atualização de Versão de 4.3 para 4.4" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Atualiza configurações do Cura 4.4 para o Cura 4.5." + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Atualização de Versão de 4.4 para 4.5" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Atualiza configurações do Cura 4.5 para o Cura 4.6." + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Atualização de Versão de 4.5 para 4.6" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Atualiza configurações do Cura 4.6.0 para o Cura 4.6.2." + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Atualização de Versão de 4.6.0 para 4.6.2" + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Atualiza configurações do Cura 4.6.2 para o Cura 4.7." + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Atualização de Versão de 4.6.2 para 4.7" + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Atualiza configurações do Cura 4.7 para o Cura 4.8." + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Atualização de Versão de 4.7 para 4.8" + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Atualiza configurações do Cura 4.8 para o Cura 4.9." + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Atualização de Versão de 4.8 para 4.9" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Atualiza configurações do Cura 4.9 para o Cura 4.10." + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Atualização de Versão de 4.9 para 4.10" + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Atualiza configurações do Cura 5.2 para o Cura 5.3." + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Atualização de Versão de 5.2 para 5.3" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "" + +#: plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "Arquivo X3D" + +#: plugins/X3DReader/plugin.json +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Provê suporte à leitura de arquivos X3D." + +#: plugins/X3DReader/plugin.json +msgctxt "name" +msgid "X3D Reader" +msgstr "Leitor de X3D" + +#: plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Visão de Raios-X" + +#: plugins/XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Provê a visão de Raios-X." + +#: plugins/XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Visão de Raios-X" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Perfis de Material" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Provê capacidade de ler e escrever perfis de material baseado em XML." + +#: resources/qml/Account/AccountWidget.qml:24 msgctxt "@action:button" msgid "Sign in" msgstr "Entrar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: resources/qml/Account/GeneralOperations.qml:19 +#: resources/qml/WelcomePages/CloudContent.qml:64 msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Entre na plataforma Ultimaker" +msgid "Sign in to the UltiMaker platform" +msgstr "Entre na plataforma UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 +#: resources/qml/Account/GeneralOperations.qml:39 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" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" msgstr "" "- Adicione perfis de material e plug-ins do Marketplace\n" "- Faça backup e sincronize seus perfis de materiais e plugins\n" -"- Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da comunidade Ultimaker" +"- Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da comunidade UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 +#: resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "Criar uma conta Ultimaker gratuita" +msgid "Create a free UltiMaker account" +msgstr "Criar uma conta UltiMaker gratuita" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 +#: resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "Verificando..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 +#: resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "Conta sincronizada" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 +#: resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "Alguma coisa deu errado..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 +#: resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "Instalação aguardando atualizações" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 +#: resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "Verificar atualizações da conta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +#: resources/qml/Account/UserOperations.qml:78 msgctxt "@label The argument is a timestamp" msgid "Last update: %1" msgstr "Última atualização: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +#: resources/qml/Account/UserOperations.qml:107 msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Conta na Ultimaker" +msgid "UltiMaker Account" +msgstr "Conta na UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +#: resources/qml/Account/UserOperations.qml:126 msgctxt "@button" msgid "Sign Out" msgstr "Deslogar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" msgid "No time estimation available" msgstr "Sem estimativa de tempo disponível" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:77 msgctxt "@label" msgid "No cost estimation available" msgstr "Sem estimativa de custo disponível" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:127 msgctxt "@button" msgid "Preview" msgstr "Pré-visualização" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" msgid "Time estimation" msgstr "Estimativa de tempo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 +#: resources/qml/ActionPanel/PrintJobInformation.qml:107 msgctxt "@label" msgid "Material estimation" msgstr "Estimativa de material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:156 +#: resources/qml/ActionPanel/PrintJobInformation.qml:156 msgctxt "@label m for meter" msgid "%1m" msgstr "%1m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:157 +#: resources/qml/ActionPanel/PrintJobInformation.qml:157 msgctxt "@label g for grams" msgid "%1g" msgstr "%1g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:54 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Fatiando..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:78 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:78 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "Não foi possível fatiar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Processing" msgstr "Processando" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Slice" msgstr "Fatiar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:115 msgctxt "@label" msgid "Start the slicing process" msgstr "Inicia o processo de fatiamento" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:132 msgctxt "@button" msgid "Cancel" msgstr "Cancelar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 +#: resources/qml/Actions.qml:81 msgctxt "@action:inmenu" msgid "Show Online Troubleshooting" msgstr "Mostrar Resolução de Problemas Online" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 +#: resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "Alternar Tela Cheia" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 +#: resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "Sair da Tela Cheia" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 +#: resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "Desfazer (&U)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 +#: resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "&Refazer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 +#: resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "Sair (&Q)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 +#: resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "Visão &3D" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 +#: resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Visão Frontal" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 +#: resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "Visão Superior" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 +#: resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "Visão de Baixo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 +#: resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "Visão do Lado Esquerdo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 +#: resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "Visão do Lado Direito" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 +#: resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Configurar Cura..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 +#: resources/qml/Actions.qml:197 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "&Adicionar Impressora..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 +#: resources/qml/Actions.qml:203 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "Adm&inistrar Impressoras..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 +#: resources/qml/Actions.qml:210 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Administrar Materiais..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:216 -msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate." +#: resources/qml/Actions.qml:218 +msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." msgid "Add more materials from Marketplace" msgstr "Adicionar mais materiais ao Marketplace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 +#: resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "At&ualizar perfil com valores e sobreposições atuais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 +#: resources/qml/Actions.qml:233 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "&Descartar ajustes atuais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 +#: resources/qml/Actions.qml:245 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "&Criar perfil a partir de ajustes/sobreposições atuais..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 +#: resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "Administrar perfis..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 +#: resources/qml/Actions.qml:259 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Exibir &Documentação Online" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 +#: resources/qml/Actions.qml:267 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "Relatar um &Bug" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 +#: resources/qml/Actions.qml:275 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "Novidades" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 +#: resources/qml/Actions.qml:289 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "Sobre..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 +#: resources/qml/Actions.qml:296 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "Remover Selecionados" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 +#: resources/qml/Actions.qml:306 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "Centralizar Selecionados" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 +#: resources/qml/Actions.qml:315 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "Multiplicar Selecionados" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 +#: resources/qml/Actions.qml:324 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Remover Modelo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 +#: resources/qml/Actions.qml:332 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Ce&ntralizar Modelo na Mesa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 +#: resources/qml/Actions.qml:338 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "A&grupar Modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 +#: resources/qml/Actions.qml:358 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Desagrupar Modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 +#: resources/qml/Actions.qml:368 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "Co&mbinar Modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 +#: resources/qml/Actions.qml:378 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&Multiplicar Modelo..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 +#: resources/qml/Actions.qml:385 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "Selecionar Todos Os Modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 +#: resources/qml/Actions.qml:395 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "Esvaziar a Mesa de Impressão" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 +#: resources/qml/Actions.qml:405 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "Recarregar Todos Os Modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 +#: resources/qml/Actions.qml:414 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Posicionar Todos os Modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 +#: resources/qml/Actions.qml:422 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Posicionar Seleção" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 +#: resources/qml/Actions.qml:429 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Reestabelecer as Posições de Todos Os Modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 +#: resources/qml/Actions.qml:436 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "Remover as Transformações de Todos Os Modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 +#: resources/qml/Actions.qml:445 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "Abrir Arquiv&o(s)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 +#: resources/qml/Actions.qml:455 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Novo Projeto..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 +#: resources/qml/Actions.qml:462 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Exibir Pasta de Configuração" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 +#: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Configurar a visibilidade dos ajustes..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 msgctxt "@label:button" msgid "My printers" msgstr "Minhas impressoras" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 msgctxt "@tooltip:button" msgid "Monitor printers in Ultimaker Digital Factory." msgstr "Monitora as impressoras na Ultimaker Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Cria projetos de impressão na Digital Library." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 msgctxt "@label:button" msgid "Print jobs" msgstr "Trabalhos de impressão" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 msgctxt "@tooltip:button" msgid "Monitor print jobs and reprint from your print history." msgstr "Monitora trabalhos de impressão e reimprime a partir do histórico." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." -msgstr "Estende o Ultimaker Cura com complementos e perfis de material." +msgid "Extend UltiMaker Cura with plugins and material profiles." +msgstr "Estende o UltiMaker Cura com complementos e perfis de material." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 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." +msgid "Become a 3D printing expert with UltiMaker e-learning." +msgstr "Torne-se um especialista em impressão 3D com UltiMaker e-learning." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Suporte Ultimaker" +msgid "UltiMaker support" +msgstr "Suporte UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." -msgstr "Saiba como começar com o Ultimaker Cura." +msgid "Learn how to get started with UltiMaker Cura." +msgstr "Saiba como começar com o UltiMaker Cura." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 msgctxt "@label:button" msgid "Ask a question" msgstr "Fazer uma pergunta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Consultar a Comunidade Ultimaker." +msgid "Consult the UltiMaker Community." +msgstr "Consultar a Comunidade UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 msgctxt "@label:button" msgid "Report a bug" msgstr "Relatar um problema" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Deixe os desenvolvedores saberem que algo está errado." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Visita o website da Ultimaker." +msgid "Visit the UltiMaker website." +msgstr "Visita o website da UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 +#: resources/qml/ColorDialog.qml:110 msgctxt "@label" msgid "Hex" msgstr "Hexa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 +#: resources/qml/Cura.qml:256 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "Este pacote será instalado após o reinício." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +#: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14 msgctxt "@title:tab" msgid "General" msgstr "Geral" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +#: resources/qml/Cura.qml:470 msgctxt "@title:tab" msgid "Settings" msgstr "Ajustes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:468 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:17 +#: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17 msgctxt "@title:tab" msgid "Printers" msgstr "Impressoras" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:470 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70 +#: resources/qml/Cura.qml:474 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:70 msgctxt "@title:tab" msgid "Materials" msgstr "Materiais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:472 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:57 +#: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57 msgctxt "@title:tab" msgid "Profiles" msgstr "Perfis" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +#: resources/qml/Cura.qml:581 msgctxt "@title:window %1 is the application name" msgid "Closing %1" msgstr "Fechando %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:590 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:599 +#: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591 msgctxt "@label %1 is the application name" msgid "Are you sure you want to exit %1?" msgstr "Tem certeza que quer sair de %1?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:637 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 +#: resources/qml/Cura.qml:629 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 msgctxt "@title:window" msgid "Open file(s)" msgstr "Abrir arquivo(s)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +#: resources/qml/Cura.qml:734 msgctxt "@window:title" msgid "Install Package" msgstr "Instalar Pacote" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +#: resources/qml/Cura.qml:741 msgctxt "@title:window" msgid "Open File(s)" msgstr "Abrir Arquivo(s)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +#: resources/qml/Cura.qml:743 msgctxt "@text:window" msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." msgstr "Encontramos um ou mais arquivos de G-Code entre os arquivos que você selecionou. Você só pode abrir um arquivo de G-Code por vez. Se você quiser abrir um arquivo de G-Code, por favor selecione somente um." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:831 +#: resources/qml/Cura.qml:828 msgctxt "@title:window" msgid "Add Printer" msgstr "Adicionar Impressora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +#: resources/qml/Cura.qml:836 msgctxt "@title:window" msgid "What's New" msgstr "Novidades" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: resources/qml/Cura.qml:890 +msgctxt "@title:window" +msgid "Save Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:891 +msgctxt "@textfield:placeholder" +msgid "New Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:892 +msgctxt "@info" +msgid "Custom profile name:" +msgstr "" + +#: resources/qml/Cura.qml:909 +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 "Somente ajuste alterados por usuário serão salvos no perfil personalizado.
    Para materiais que o suportam, este novo perfil personalizado herdará propriedades de %1." + +#: resources/qml/Cura.qml:917 +msgctxt "@action:button" +msgid "Learn more about Cura print profiles" +msgstr "Saber mais sobre perfis de impressão do Cura" + +#: resources/qml/Cura.qml:926 +msgctxt "@button" +msgid "Save new profile" +msgstr "" + +#: resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "Sobre %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: resources/qml/Dialogs/AboutDialog.qml:59 msgctxt "@label" msgid "version: %1" msgstr "versão: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: resources/qml/Dialogs/AboutDialog.qml:74 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Solução completa para impressão 3D com filamento fundido." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: resources/qml/Dialogs/AboutDialog.qml:87 msgctxt "@info:credit" msgid "" -"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura is developed by UltiMaker in cooperation with the community.\n" "Cura proudly uses the following open source projects:" msgstr "" "Cura é desenvolvido pela Ultimaker B.V. em cooperação com a comunidade.\n" "Cura orgulhosamente usa os seguintes projetos open-source:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label Description for application component" msgid "Graphical user interface" msgstr "Interface Gráfica de usuário" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label Description for application component" msgid "Application framework" msgstr "Framework de Aplicações" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label Description for application component" msgid "G-code generator" msgstr "Gerador de G-Code" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label Description for application component" msgid "Interprocess communication library" msgstr "Biblioteca de comunicação interprocessos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:142 +msgctxt "@label Description for application component" msgid "Python bindings for libnest2d" msgstr "Ligações de Python para a libnest2d" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label Description for application component" msgid "Polygon packing library, developed by Prusa Research" msgstr "Biblioteca de empacotamento Polygon, desenvolvido pela Prusa Research" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:144 +msgctxt "@label Description for application component" msgid "Support library for handling 3MF files" msgstr "Biblioteca de suporte para manuseamento de arquivos 3MF" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:145 +msgctxt "@label Description for application component" msgid "Support library for file metadata and streaming" msgstr "Biblioteca de suporte para streaming e metadados de arquivo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Linguagem de Programação" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label Description for application dependency" msgid "GUI framework" msgstr "Framework Gráfica" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label Description for application dependency" msgid "GUI framework bindings" msgstr "Ligações da Framework Gráfica" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label Description for application dependency" msgid "C/C++ Binding library" msgstr "Biblioteca de Ligações C/C++" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:152 +msgctxt "@label Description for application dependency" msgid "Data interchange format" msgstr "Formato de Intercâmbio de Dados" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "Font" msgstr "Fonte" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label Description for application dependency" msgid "Polygon clipping library" msgstr "Biblioteca de recorte de polígonos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label Description for application dependency" msgid "JSON parser" -msgstr "" +msgstr "Parser JSON" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:158 +msgctxt "@label Description for application dependency" msgid "Utility functions, including an image loader" -msgstr "" +msgstr "Funções de utilidade, incluindo um carregador de imagem" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:159 +msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" -msgstr "" +msgstr "Biblioteca de utilidade, incluindo geração Voronoi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:162 +#: resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label Description for application dependency" msgid "Root Certificates for validating SSL trustworthiness" -msgstr "" +msgstr "Certificados-Raiz para validar confiança SSL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label Description for application dependency" msgid "Compatibility between Python 2 and 3" -msgstr "" +msgstr "Compatibilidade entre Python 2 e 3" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label Description for application dependency" msgid "Support library for system keyring access" msgstr "Biblioteca de suporte para acesso ao chaveiro do sistema" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label Description for application dependency" msgid "Support library for faster math" msgstr "Biblioteca de suporte para matemática acelerada" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label Description for application dependency" msgid "Support library for handling STL files" msgstr "Biblioteca de suporte para manuseamento de arquivos STL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label Description for application dependency" msgid "Python bindings for Clipper" msgstr "Ligações de Python pra Clipper" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Biblioteca de comunicação serial" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label Description for application dependency" msgid "Support library for scientific computing" msgstr "Biblioteca de suporte para computação científica" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 -msgctxt "@Label" +#: resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@Label Description for application dependency" msgid "Python Error tracking library" -msgstr "Biblioteca de rastreamento de Erros de Python" +msgstr "Biblioteca de rastreamento de Erros Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:172 +msgctxt "@label Description for application dependency" msgid "Support library for handling triangular meshes" msgstr "Biblioteca de suporte para manuseamento de malhas triangulares" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:173 +msgctxt "@label Description for application dependency" msgid "ZeroConf discovery library" msgstr "Biblioteca de descoberta 'ZeroConf'" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label Description for development tool" msgid "Universal build system configuration" -msgstr "" +msgstr "Configuração de sistema universal de construção" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label Description for development tool" msgid "Dependency and package manager" -msgstr "" +msgstr "Gestor de pacote e dependência" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label Description for development tool" msgid "Packaging Python-applications" -msgstr "" +msgstr "Empacotamento de aplicações Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:179 +msgctxt "@label Description for development tool" msgid "Linux cross-distribution application deployment" msgstr "Implementação de aplicação multidistribuição em Linux" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:180 +msgctxt "@label Description for development tool" msgid "Generating Windows installers" -msgstr "" +msgstr "Gerando instaladores Windows" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 msgctxt "@title:window" msgid "Open project file" msgstr "Abrir arquivo de projeto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84 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 "Este é um arquivo de projeto do Cura. Gostaria de abri-lo como um projeto ou importar os modelos dele?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:90 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91 msgctxt "@text:window" msgid "Remember my choice" msgstr "Lembrar minha escolha" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105 msgctxt "@action:button" msgid "Open as project" msgstr "Abrir como projeto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110 msgctxt "@action:button" msgid "Import models" msgstr "Importar modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:17 +msgctxt "@title:window" +msgid "Select Printer" +msgstr "Selecione Impressora" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:54 +msgctxt "@title:label" +msgid "Compatible Printers" +msgstr "Impressoras Compatíveis" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:110 +msgctxt "@description" +msgid "No compatible printers, that are currently online, were found." +msgstr "Não foram encontradas impressoras compatíveis que estivessem online no momento." + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Descartar ou Manter alterações" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:49 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64 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 "Você personalizou alguns ajustes de perfil. Gostaria de manter estes ajustes alterados após trocar perfis? Alternativamente, você pode descartar as alterações para carregar os defaults de '%1'." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90 msgctxt "@title:column" msgid "Profile settings" msgstr "Ajustes de perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92 msgctxt "@title:column" msgid "Current changes" msgstr "Alterações atuais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:799 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123 +#: resources/qml/Preferences/GeneralPage.qml:820 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Sempre perguntar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Descartar e não perguntar novamente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Manter e não perguntar novamente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157 msgctxt "@action:button" msgid "Discard changes" msgstr "Descartar alterações" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164 msgctxt "@action:button" msgid "Keep changes" msgstr "Manter alterações" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171 +msgctxt "@action:button" +msgid "Save as new custom profile" +msgstr "" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178 +msgctxt "@action:button" +msgid "Save changes" +msgstr "" + +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 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 "Encontramos um ou mais arquivo(s) de projeto entre os arquivos que você selecionou. Você só pode abrir um arquivo de projeto por vez. Sugerimos que somente importe modelos destes arquivos. Gostaria de prosseguir?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 msgctxt "@action:button" msgid "Import all as models" msgstr "Importar todos como modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 +#: resources/qml/Dialogs/RenameDialog.qml:23 +msgctxt "@title:window" +msgid "Rename" +msgstr "Renomear" + +#: resources/qml/Dialogs/RenameDialog.qml:24 +msgctxt "@info" +msgid "Please provide a new name." +msgstr "Por favor, escolha um novo nome." + +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 msgctxt "@title:window" msgid "Save Project" msgstr "Salvar Projeto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177 msgctxt "@action:label" msgid "Extruder %1" msgstr "Extrusor %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195 msgctxt "@action:label" msgid "Material" msgstr "Material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "Não exibir resumo do projeto ao salvar novamente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298 msgctxt "@action:button" msgid "Save" msgstr "Salvar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -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" -msgstr[0] "Imprimir Modelo Selecionado com %1" -msgstr[1] "Imprimir Modelos Selecionados com %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:93 +#: resources/qml/JobSpecs.qml:93 msgctxt "@text Print job name" msgid "Untitled" msgstr "Sem Título" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 +#: resources/qml/MainWindow/ApplicationMenu.qml:63 +#: resources/qml/Menus/SettingsMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "Aju&stes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 +#: resources/qml/MainWindow/ApplicationMenu.qml:87 msgctxt "@title:window" msgid "New project" msgstr "Novo projeto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88 +#: resources/qml/MainWindow/ApplicationMenu.qml:88 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 "Tem certeza que quer iniciar novo projeto? Isto esvaziará a mesa de impressão e quaisquer ajustes não salvos." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135 +#: resources/qml/MainWindow/MainWindowHeader.qml:135 msgctxt "@action:button" msgid "Marketplace" msgstr "Mercado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +#: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 msgctxt "@header" msgid "Configurations" msgstr "Configurações" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 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." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 msgctxt "@label" msgid "Marketplace" msgstr "Mercado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 msgctxt "@label" msgid "Loading available configurations from the printer..." msgstr "Carregando configurações disponíveis da impressora..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 msgctxt "@label" msgid "The configurations are not available because the printer is disconnected." msgstr "As configurações não estão disponíveis porque a impressora está desconectada." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 msgctxt "@tooltip" msgid "The configuration of this extruder is not allowed, and prohibits slicing." msgstr "A configuração deste extrusor não é permitida e proíbe o fatiamento." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 msgctxt "@tooltip" msgid "There are no profiles matching the configuration of this extruder." msgstr "Não há perfis correspondendo à configuração deste extrusor." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 msgctxt "@label" msgid "Select configuration" msgstr "Selecione configuração" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 msgctxt "@label" msgid "Configurations" msgstr "Configurações" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 msgctxt "@header" msgid "Custom" msgstr "Personalizado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:62 -msgctxt "@label" -msgid "Printer" -msgstr "Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:217 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173 msgctxt "@label" msgid "Enabled" msgstr "Habilitado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222 msgctxt "@label" msgid "Material" msgstr "Material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348 msgctxt "@label" msgid "Use glue for better adhesion with this material combination." msgstr "Use cola para melhor aderência com essa combinação de materiais." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:29 +#: resources/qml/Menus/ContextMenu.qml:29 msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "Imprimir Modelo Selecionado Com:" msgstr[1] "Imprimir Modelos Selecionados Com:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:92 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Multiplicar Modelo Selecionado" msgstr[1] "Multiplicar Modelos Selecionados" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:123 msgctxt "@label" msgid "Number of Copies" msgstr "Número de Cópias" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/EditMenu.qml:12 +#: resources/qml/Menus/EditMenu.qml:12 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "&Editar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ExtensionMenu.qml:13 +#: resources/qml/Menus/ExtensionMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "E&xtensões" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 +#: resources/qml/Menus/FileMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "Arquivo (&F)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:45 +#: resources/qml/Menus/FileMenu.qml:45 msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Salvar Projeto..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:78 +#: resources/qml/Menus/FileMenu.qml:78 msgctxt "@title:menu menubar:file" msgid "&Export..." msgstr "&Exportar..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:89 +#: resources/qml/Menus/FileMenu.qml:89 msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Exportar Seleção..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/HelpMenu.qml:14 +#: resources/qml/Menus/HelpMenu.qml:14 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "Ajuda (&H)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +#: resources/qml/Menus/MaterialMenu.qml:13 msgctxt "@label:category menu label" msgid "Material" msgstr "Material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:53 +#: resources/qml/Menus/MaterialMenu.qml:53 msgctxt "@label:category menu label" msgid "Favorites" msgstr "Favoritos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:78 +#: resources/qml/Menus/MaterialMenu.qml:78 msgctxt "@label:category menu label" msgid "Generic" msgstr "Genérico" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +#: resources/qml/Menus/OpenFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open File(s)..." msgstr "Abrir Arquivo(s)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PreferencesMenu.qml:21 +#: resources/qml/Menus/PreferencesMenu.qml:21 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "P&referências" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:13 +#: resources/qml/Menus/PrinterMenu.qml:13 msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "Im&pressora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:17 +#: resources/qml/Menus/PrinterMenu.qml:17 msgctxt "@label:category menu label" msgid "Network enabled printers" msgstr "Impressoras habilitadas pela rede" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:50 +#: resources/qml/Menus/PrinterMenu.qml:50 msgctxt "@label:category menu label" msgid "Local printers" msgstr "Impressoras locais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +#: resources/qml/Menus/RecentFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open &Recent" msgstr "Abrir &Recente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +#: resources/qml/Menus/SaveProjectMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Save Project..." msgstr "Salvar Projeto..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:34 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:49 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Definir Como Extrusor Ativo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:55 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Habilitar Extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:63 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Desabilitar Extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 msgctxt "@action:inmenu" msgid "Visible Settings" msgstr "Ajustes Visíveis" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 msgctxt "@action:inmenu" msgid "Collapse All Categories" msgstr "Encolher Todas As Categorias" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 msgctxt "@action:inmenu" msgid "Manage Setting Visibility..." msgstr "Gerenciar Visibilidade dos Ajustes..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:13 +#: resources/qml/Menus/SettingsMenu.qml:34 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Material" + +#: resources/qml/Menus/SettingsMenu.qml:49 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Definir Como Extrusor Ativo" + +#: resources/qml/Menus/SettingsMenu.qml:55 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Habilitar Extrusor" + +#: resources/qml/Menus/SettingsMenu.qml:63 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Desabilitar Extrusor" + +#: resources/qml/Menus/ViewMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&View" msgstr "&Ver" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:17 +#: resources/qml/Menus/ViewMenu.qml:17 msgctxt "@action:inmenu menubar:view" msgid "&Camera position" msgstr "Posição da &câmera" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:30 +#: resources/qml/Menus/ViewMenu.qml:30 msgctxt "@action:inmenu menubar:view" msgid "Camera view" msgstr "Visão de câmera" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 +#: resources/qml/Menus/ViewMenu.qml:48 msgctxt "@action:inmenu menubar:view" msgid "Perspective" msgstr "Perspectiva" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +#: resources/qml/Menus/ViewMenu.qml:59 msgctxt "@action:inmenu menubar:view" msgid "Orthographic" msgstr "Ortográfico" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:115 +#: resources/qml/MonitorButton.qml:115 msgctxt "@label:MonitorStatus" msgid "Not connected to a printer" msgstr "Não conectado a nenhuma impressora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 +#: resources/qml/MonitorButton.qml:119 msgctxt "@label:MonitorStatus" msgid "Printer does not accept commands" msgstr "A impressora não aceita comandos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:129 +#: resources/qml/MonitorButton.qml:129 msgctxt "@label:MonitorStatus" msgid "In maintenance. Please check the printer" msgstr "Em manutenção. Por favor verifique a impressora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:140 +#: resources/qml/MonitorButton.qml:140 msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "A conexão à impressora foi perdida" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +#: resources/qml/MonitorButton.qml:142 msgctxt "@label:MonitorStatus" msgid "Printing..." msgstr "Imprimindo..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +#: resources/qml/MonitorButton.qml:145 msgctxt "@label:MonitorStatus" msgid "Paused" msgstr "Pausado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +#: resources/qml/MonitorButton.qml:148 msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Preparando..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +#: resources/qml/MonitorButton.qml:150 msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Por favor remova a impressão" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +#: resources/qml/MonitorButton.qml:318 msgctxt "@label" msgid "Abort Print" msgstr "Abortar Impressão" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:327 +#: resources/qml/MonitorButton.qml:327 msgctxt "@label" msgid "Are you sure you want to abort the print?" msgstr "Tem certeza que deseja abortar a impressão?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:109 +#: resources/qml/ObjectItemButton.qml:109 msgctxt "@label" msgid "Is printed as support." msgstr "Está impresso como suporte." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:112 +#: resources/qml/ObjectItemButton.qml:112 msgctxt "@label" msgid "Other models overlapping with this model are modified." msgstr "Outros modelos se sobrepondo a esse modelo foram modificados." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:115 +#: resources/qml/ObjectItemButton.qml:115 msgctxt "@label" msgid "Infill overlapping with this model is modified." msgstr "Preenchimento se sobrepondo a este modelo foi modificado." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:118 +#: resources/qml/ObjectItemButton.qml:118 msgctxt "@label" msgid "Overlaps with this model are not supported." msgstr "Sobreposições neste modelo não são suportadas." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:125 +#: resources/qml/ObjectItemButton.qml:125 msgctxt "@label %1 is the number of settings it overrides." msgid "Overrides %1 setting." msgid_plural "Overrides %1 settings." msgstr[0] "Sobrepõe %1 ajuste." msgstr[1] "Sobrepõe %1 ajustes." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 +#: resources/qml/ObjectSelector.qml:59 msgctxt "@label" msgid "Object list" msgstr "Lista de objetos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:131 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:24 +#: resources/qml/Preferences/GeneralPage.qml:134 +#: resources/qml/Preferences/SettingVisibilityPage.qml:24 msgctxt "@action:button" msgid "Defaults" -msgstr "Defaults" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +#: resources/qml/Preferences/GeneralPage.qml:172 msgctxt "@label" msgid "Interface" -msgstr "Interface" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +#: resources/qml/Preferences/GeneralPage.qml:215 msgctxt "@heading" msgid "-- incomplete --" msgstr "-- incompleto --" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +#: resources/qml/Preferences/GeneralPage.qml:261 msgctxt "@label" msgid "Currency:" msgstr "Moeda:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:274 +#: resources/qml/Preferences/GeneralPage.qml:277 msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." msgid "Theme*:" msgstr "Tema*:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +#: resources/qml/Preferences/GeneralPage.qml:323 msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Fatiar automaticamente quando mudar ajustes." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +#: resources/qml/Preferences/GeneralPage.qml:331 msgctxt "@option:check" msgid "Slice automatically" msgstr "Fatiar automaticamente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:337 +#: resources/qml/Preferences/GeneralPage.qml:340 +msgctxt "@info:tooltip" +msgid "Show an icon and notifications in the system notification area." +msgstr "Mostrar um ícone e notificações na área de notificações do sistema." + +#: resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Add icon to system tray *" +msgstr "Adicionar ícone à bandeja do sistema *" + +#: resources/qml/Preferences/GeneralPage.qml:357 msgctxt "@label" msgid "*You will need to restart the application for these changes to have effect." msgstr "*Você precisa reiniciar a aplicação para que estas alterações tenham efeito." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +#: resources/qml/Preferences/GeneralPage.qml:373 msgctxt "@label" msgid "Viewport behavior" msgstr "Comportamento da área de visualização" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +#: resources/qml/Preferences/GeneralPage.qml:381 msgctxt "@info:tooltip" msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." msgstr "Ressaltar áreas sem suporte do modelo em vermelho. Sem suporte, estas áreas não serão impressas corretamente." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:369 +#: resources/qml/Preferences/GeneralPage.qml:390 msgctxt "@option:check" msgid "Display overhang" msgstr "Exibir seções pendentes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +#: resources/qml/Preferences/GeneralPage.qml:400 msgctxt "@info:tooltip" msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." msgstr "Ressalta superfícies faltantes ou incorretas do modelo usando sinais de alerta. Os caminhos de extrusão frequentemente terão partes da geometria pretendida ausentes." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:388 +#: resources/qml/Preferences/GeneralPage.qml:409 msgctxt "@option:check" msgid "Display model errors" msgstr "Exibir erros de modelo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +#: resources/qml/Preferences/GeneralPage.qml:417 msgctxt "@info:tooltip" msgid "Moves the camera so the model is in the center of the view when a model is selected" msgstr "Move a câmera de modo que o modelo fique no centro da visão quando for selecionado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:401 +#: resources/qml/Preferences/GeneralPage.qml:422 msgctxt "@action:button" msgid "Center camera when item is selected" msgstr "Centralizar câmera quanto o item é selecionado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +#: resources/qml/Preferences/GeneralPage.qml:432 msgctxt "@info:tooltip" msgid "Should the default zoom behavior of cura be inverted?" msgstr "O comportamento default de ampliação deve ser invertido?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:416 +#: resources/qml/Preferences/GeneralPage.qml:437 msgctxt "@action:button" msgid "Invert the direction of camera zoom." msgstr "Inverter a direção da ampliação de câmera." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Should zooming move in the direction of the mouse?" msgstr "A ampliação (zoom) deve se mover na direção do mouse?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Zooming towards the mouse is not supported in the orthographic perspective." msgstr "Ampliar com o mouse não é suportado na perspectiva ortográfica." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:437 +#: resources/qml/Preferences/GeneralPage.qml:458 msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "Ampliar na direção do mouse" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +#: resources/qml/Preferences/GeneralPage.qml:484 msgctxt "@info:tooltip" msgid "Should models on the platform be moved so that they no longer intersect?" msgstr "Os modelos devem ser movidos na plataforma de modo que não se sobreponham?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:468 +#: resources/qml/Preferences/GeneralPage.qml:489 msgctxt "@option:check" msgid "Ensure models are kept apart" msgstr "Assegurar que os modelos sejam mantidos separados" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +#: resources/qml/Preferences/GeneralPage.qml:498 msgctxt "@info:tooltip" msgid "Should models on the platform be moved down to touch the build plate?" msgstr "Os modelos devem ser movidos pra baixo pra se assentar na plataforma de impressão?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:482 +#: resources/qml/Preferences/GeneralPage.qml:503 msgctxt "@option:check" msgid "Automatically drop models to the build plate" msgstr "Automaticamente fazer os modelos caírem na mesa de impressão" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +#: resources/qml/Preferences/GeneralPage.qml:515 msgctxt "@info:tooltip" msgid "Show caution message in g-code reader." msgstr "Exibir mensagem de alerta no leitor de G-Code." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503 +#: resources/qml/Preferences/GeneralPage.qml:524 msgctxt "@option:check" msgid "Caution message in g-code reader" msgstr "Mensagem de alera no leitor de G-Code" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +#: resources/qml/Preferences/GeneralPage.qml:532 msgctxt "@info:tooltip" msgid "Should layer be forced into compatibility mode?" msgstr "A Visão de Camada deve ser forçada a ficar em modo de compatibilidade?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +#: resources/qml/Preferences/GeneralPage.qml:537 msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Forçar modo de compatibilidade da visão de camadas (requer reinício)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +#: resources/qml/Preferences/GeneralPage.qml:547 msgctxt "@info:tooltip" msgid "Should Cura open at the location it was closed?" msgstr "O Cura deve abrir no lugar onde foi fechado?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:531 +#: resources/qml/Preferences/GeneralPage.qml:552 msgctxt "@option:check" msgid "Restore window position on start" msgstr "Restaurar posição da janela no início" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +#: resources/qml/Preferences/GeneralPage.qml:562 msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Que tipo de renderização de câmera deve ser usada?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +#: resources/qml/Preferences/GeneralPage.qml:569 msgctxt "@window:text" msgid "Camera rendering:" msgstr "Renderização de câmera:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +#: resources/qml/Preferences/GeneralPage.qml:576 msgid "Perspective" msgstr "Perspectiva" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +#: resources/qml/Preferences/GeneralPage.qml:577 msgid "Orthographic" msgstr "Ortográfica" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +#: resources/qml/Preferences/GeneralPage.qml:617 msgctxt "@label" msgid "Opening and saving files" msgstr "Abrindo e salvando arquivos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +#: resources/qml/Preferences/GeneralPage.qml:624 msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "Arquivos da área de trabalho ou de aplicações externas devem ser abertos na mesma instância do Cura?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:608 +#: resources/qml/Preferences/GeneralPage.qml:629 msgctxt "@option:check" msgid "Use a single instance of Cura" msgstr "Usar uma única instância do Cura" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +#: resources/qml/Preferences/GeneralPage.qml:640 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?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +#: resources/qml/Preferences/GeneralPage.qml:646 msgctxt "@option:check" msgid "Clear buildplate before loading model into the single instance" msgstr "Limpar a plataforma de impressão antes de carregar modelo em instância única" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 +#: resources/qml/Preferences/GeneralPage.qml:656 msgctxt "@info:tooltip" msgid "Should models be scaled to the build volume if they are too large?" msgstr "Os modelos devem ser redimensionados dentro do volume de impressão se forem muito grandes?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +#: resources/qml/Preferences/GeneralPage.qml:661 msgctxt "@option:check" msgid "Scale large models" msgstr "Redimensionar modelos grandes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +#: resources/qml/Preferences/GeneralPage.qml:671 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 "Um modelo pode ser carregado diminuto se sua unidade for por exemplo em metros ao invés de milímetros. Devem esses modelos ser redimensionados?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:655 +#: resources/qml/Preferences/GeneralPage.qml:676 msgctxt "@option:check" msgid "Scale extremely small models" msgstr "Redimensionar modelos minúsculos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +#: resources/qml/Preferences/GeneralPage.qml:686 msgctxt "@info:tooltip" msgid "Should models be selected after they are loaded?" msgstr "Os modelos devem ser selecionados após serem carregados?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: resources/qml/Preferences/GeneralPage.qml:691 msgctxt "@option:check" msgid "Select models when loaded" msgstr "Selecionar modelos ao carregar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +#: resources/qml/Preferences/GeneralPage.qml:701 msgctxt "@info:tooltip" msgid "Should a prefix based on the printer name be added to the print job name automatically?" msgstr "Um prefixo baseado no nome da impressora deve ser adicionado ao nome do trabalho de impressão automaticamente?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:685 +#: resources/qml/Preferences/GeneralPage.qml:706 msgctxt "@option:check" msgid "Add machine prefix to job name" msgstr "Adicionar prefixo de máquina ao nome do trabalho" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +#: resources/qml/Preferences/GeneralPage.qml:716 msgctxt "@info:tooltip" msgid "Should a summary be shown when saving a project file?" msgstr "Um resumo deve ser exibido ao salvar um arquivo de projeto?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: resources/qml/Preferences/GeneralPage.qml:720 msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Exibir diálogo de resumo ao salvar projeto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +#: resources/qml/Preferences/GeneralPage.qml:730 msgctxt "@info:tooltip" msgid "Default behavior when opening a project file" msgstr "Comportamento default ao abrir um arquivo de projeto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +#: resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@window:text" msgid "Default behavior when opening a project file: " msgstr "Comportamento default ao abrir um arquivo de projeto: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +#: resources/qml/Preferences/GeneralPage.qml:753 msgctxt "@option:openProject" msgid "Always ask me this" msgstr "Sempre me perguntar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: resources/qml/Preferences/GeneralPage.qml:754 msgctxt "@option:openProject" msgid "Always open as a project" msgstr "Sempre abrir como projeto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +#: resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:openProject" msgid "Always import models" msgstr "Sempre importar modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +#: resources/qml/Preferences/GeneralPage.qml:792 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 "Quando você faz alterações em um perfil e troca para um diferent, um diálogo aparecerá perguntando se você quer manter ou aplicar suas modificações, ou você pode forçar um comportamento default e não ter o diálogo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:780 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:36 +#: resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46 msgctxt "@label" msgid "Profiles" msgstr "Perfis" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +#: resources/qml/Preferences/GeneralPage.qml:806 msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Comportamento default para valores de configuração alterados ao mudar para um perfil diferente: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:800 +#: resources/qml/Preferences/GeneralPage.qml:821 msgctxt "@option:discardOrKeep" msgid "Always discard changed settings" msgstr "Sempre descartar alterações da configuração" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/Preferences/GeneralPage.qml:822 msgctxt "@option:discardOrKeep" msgid "Always transfer changed settings to new profile" msgstr "Sempre transferir as alterações para o novo perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +#: resources/qml/Preferences/GeneralPage.qml:856 msgctxt "@label" msgid "Privacy" msgstr "Privacidade" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +#: resources/qml/Preferences/GeneralPage.qml:862 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 "Dados anônimos sobre sua impressão podem ser enviados para a Ultimaker? Nota: nenhuma informação pessoalmente identificável, modelos ou endereços IP são enviados ou armazenados." +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 "Dados anônimos sobre sua impressão podem ser enviados para a UltiMaker? Nota: nenhuma informação pessoalmente identificável, modelos ou endereços IP são enviados ou armazenados." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +#: resources/qml/Preferences/GeneralPage.qml:867 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "Enviar informação (anônima) de impressão" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +#: resources/qml/Preferences/GeneralPage.qml:897 msgctxt "@label" msgid "Updates" msgstr "Atualizações" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +#: resources/qml/Preferences/GeneralPage.qml:904 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "O Cura deve verificar novas atualizações quando o programa for iniciado?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:888 +#: resources/qml/Preferences/GeneralPage.qml:909 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Verificar atualizações na inicialização" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +#: resources/qml/Preferences/GeneralPage.qml:925 msgctxt "@info:tooltip" msgid "When checking for updates, only check for stable releases." msgstr "Ao procurar por atualizações, somente o fazer para versões estáveis." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:910 +#: resources/qml/Preferences/GeneralPage.qml:931 msgctxt "@option:radio" msgid "Stable releases only" msgstr "Versões estáveis somente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +#: resources/qml/Preferences/GeneralPage.qml:941 msgctxt "@info:tooltip" msgid "When checking for updates, check for both stable and for beta releases." msgstr "Ao procurar por atualizações, fazer para versões estáveis ou beta." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:926 +#: resources/qml/Preferences/GeneralPage.qml:947 msgctxt "@option:radio" msgid "Stable and Beta releases" msgstr "Versões estáveis ou beta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +#: resources/qml/Preferences/GeneralPage.qml:957 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 "Uma verificação automática por novos complementos deve ser feita toda vez que o Cura iniciar? É altamente recomendado que não desabilite esta opção!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:941 +#: resources/qml/Preferences/GeneralPage.qml:962 msgctxt "@option:check" msgid "Get notifications for plugin updates" msgstr "Ter notificações para atualizações de complementos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:50 +#: resources/qml/Preferences/MachinesPage.qml:50 msgctxt "@action:button" msgid "Add New" msgstr "Adicionar Novo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:134 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +#: resources/qml/Preferences/MachinesPage.qml:147 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:160 +#: resources/qml/Preferences/ProfilesPage.qml:294 msgctxt "@action:button" msgid "Activate" msgstr "Ativar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:146 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:331 +#: resources/qml/Preferences/MachinesPage.qml:159 +#: resources/qml/Preferences/ProfilesPage.qml:331 msgctxt "@action:button" msgid "Rename" msgstr "Renomear" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:72 msgctxt "@label" msgid "Materials compatible with active printer:" msgstr "Materiais compatíveis com a impressora ativa:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:94 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:78 +#: resources/qml/Preferences/ProfilesPage.qml:94 msgctxt "@action:button" msgid "Create new" msgstr "Criar novo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:88 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:90 +#: resources/qml/Preferences/ProfilesPage.qml:88 msgctxt "@action:button" msgid "Import" msgstr "Importar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:101 msgctxt "@action:button" msgid "Sync with Printers" msgstr "Sincronizar com Impressoras" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:311 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:174 +#: resources/qml/Preferences/ProfilesPage.qml:311 msgctxt "@action:button" msgid "Duplicate" msgstr "Duplicar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:342 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:198 +#: resources/qml/Preferences/ProfilesPage.qml:342 msgctxt "@action:button" msgid "Export" msgstr "Exportar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:392 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:212 +#: resources/qml/Preferences/ProfilesPage.qml:392 msgctxt "@title:window" msgid "Confirm Remove" msgstr "Confirmar Remoção" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:393 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:215 +#: resources/qml/Preferences/ProfilesPage.qml:393 msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "Tem certeza que deseja remover %1? Isto não poderá ser desfeito!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:228 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:238 msgctxt "@title:window" msgid "Import Material" msgstr "Importar Material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:242 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Material %1 importado com sucesso" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:245 msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not import material %1: %2" msgstr "Não foi possível importar material %1: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:267 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:256 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:267 msgctxt "@title:window" msgid "Export Material" msgstr "Exportar Material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:272 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:272 msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Falha em exportar material para %1: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:275 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:275 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Material exportado para %1 com sucesso" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 msgctxt "@title:window" msgid "Sync materials with printers" msgstr "Sincronizar materiais com impressoras" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 msgctxt "@title:header" msgid "Sync materials with printers" msgstr "Sincronizar materiais com impressoras" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 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." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 msgctxt "@button" msgid "Why do I need to sync material profiles?" msgstr "Por que eu preciso sincronizar perfis de material?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 msgctxt "@button" msgid "Start" msgstr "Iniciar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144 msgctxt "@title:header" msgid "Sign in" msgstr "Entrar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150 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 "Para automaticamente sincronizar os perfis de material com todas as suas impressoras conectadas à Digital Factory, você precisa estar logado pelo Cura." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:446 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:586 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602 msgctxt "@button" msgid "Sync materials with USB" msgstr "Sincronizar materiais usando USB" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 msgctxt "@title:header" msgid "The following printers will receive the new material profiles:" msgstr "Os seguintes materiais receberão novos perfis de material:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:198 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 msgctxt "@title:header" msgid "Something went wrong when sending the materials to the printers." msgstr "Algo de errado aconteceu ao enviar os materiais às impressoras." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:205 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221 msgctxt "@title:header" msgid "Material profiles successfully synced with the following printers:" msgstr "Perfis de material sincronizados com sucesso com as seguintes impressoras:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:429 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445 msgctxt "@button" msgid "Troubleshooting" msgstr "Resolução de problemas" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422 msgctxt "@text Asking the user whether printers are missing in a list." msgid "Printers missing?" msgstr "Impressoras faltando?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:408 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424 msgctxt "@text" msgid "Make sure all your printers are turned ON and connected to Digital Factory." msgstr "Certifique-se de que todas as suas impressoras estejam LIGADAS e conectadas à Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:417 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433 msgctxt "@button" msgid "Refresh List" msgstr "Atualizar Lista" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473 msgctxt "@button" msgid "Try again" msgstr "Tentar novamente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:461 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Done" msgstr "Feito" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:606 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622 msgctxt "@button" msgid "Sync" msgstr "Sincronizar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535 msgctxt "@button" msgid "Syncing" msgstr "Sincronizando" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553 msgctxt "@title:header" msgid "No printers found" msgstr "Nenhuma impressora encontrada" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574 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 "Parece que você não tem impressoras compatíveis conectadas à Digital Factory. Certifique-se que sua impressora esteja conectada e rodando o firmware mais recente." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:569 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585 msgctxt "@button" msgid "Learn how to connect your printer to Digital Factory" msgstr "Aprenda como conectar sua impressora à Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:597 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613 msgctxt "@button" msgid "Refresh" msgstr "Atualizar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642 msgctxt "@title:header" msgid "Sync material profiles via USB" msgstr "Sincronizar perfis de material via USB" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:632 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648 msgctxt "@text In the UI this is followed by a list of steps the user needs to take." msgid "Follow the following steps to load the new material profiles to your printer." msgstr "Siga os passos seguintes para carregar os perfis de material novos na sua impressora." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 msgctxt "@text" msgid "Click the export material archive button." msgstr "Clique no botão de exportar arquivo de material." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Grava o arquivo .umm em um pendrive USB." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 msgctxt "@text" msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." msgstr "Insira o pendrive USB na sua impressora e faça o procedimento de carregar novos perfis de material." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:673 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689 msgctxt "@button" msgid "How to load new material profiles to my printer" msgstr "Como carregar novos perfis de material na minha impressora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:687 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 msgctxt "@button" msgid "Back" msgstr "Voltar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Export material archive" msgstr "Exportar arquivo de material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747 msgctxt "@title:window" msgid "Export All Materials" msgstr "Exportar Todos Os Materiais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121 +#: resources/qml/Preferences/Materials/MaterialsView.qml:121 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Confirmar Mudança de Diâmetro" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122 +#: resources/qml/Preferences/Materials/MaterialsView.qml:122 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 "O novo diâmetro de filamento está ajustado em %1 mm, que não é compatível com o extrusor atual. Você deseja continuar?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152 +#: resources/qml/Preferences/Materials/MaterialsView.qml:152 msgctxt "@label" msgid "Display Name" msgstr "Exibir Nome" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 +#: resources/qml/Preferences/Materials/MaterialsView.qml:171 msgctxt "@label" msgid "Brand" msgstr "Marca" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190 +#: resources/qml/Preferences/Materials/MaterialsView.qml:190 msgctxt "@label" msgid "Material Type" msgstr "Tipo de Material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +#: resources/qml/Preferences/Materials/MaterialsView.qml:210 msgctxt "@label" msgid "Color" msgstr "Cor" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:262 +#: resources/qml/Preferences/Materials/MaterialsView.qml:262 msgctxt "@title" msgid "Material color picker" msgstr "Seletor de cores do material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:275 +#: resources/qml/Preferences/Materials/MaterialsView.qml:275 msgctxt "@label" msgid "Properties" msgstr "Propriedades" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +#: resources/qml/Preferences/Materials/MaterialsView.qml:286 msgctxt "@label" msgid "Density" msgstr "Densidade" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +#: resources/qml/Preferences/Materials/MaterialsView.qml:319 msgctxt "@label" msgid "Diameter" msgstr "Diâmetro" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:369 +#: resources/qml/Preferences/Materials/MaterialsView.qml:369 msgctxt "@label" msgid "Filament Cost" msgstr "Custo do Filamento" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:401 +#: resources/qml/Preferences/Materials/MaterialsView.qml:401 msgctxt "@label" msgid "Filament weight" msgstr "Peso do Filamento" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:433 +#: resources/qml/Preferences/Materials/MaterialsView.qml:433 msgctxt "@label" msgid "Filament length" msgstr "Comprimento do Filamento" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:451 +#: resources/qml/Preferences/Materials/MaterialsView.qml:451 msgctxt "@label" msgid "Cost per Meter" msgstr "Custo por Metro" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:465 +#: resources/qml/Preferences/Materials/MaterialsView.qml:465 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "Este material está vinculado a %1 e compartilha algumas de suas propriedades." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:472 +#: resources/qml/Preferences/Materials/MaterialsView.qml:472 msgctxt "@label" msgid "Unlink Material" msgstr "Desvincular Material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +#: resources/qml/Preferences/Materials/MaterialsView.qml:485 msgctxt "@label" msgid "Description" msgstr "Descrição" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:503 +#: resources/qml/Preferences/Materials/MaterialsView.qml:503 msgctxt "@label" msgid "Adhesion Information" msgstr "Informação sobre Aderência" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642 +#: resources/qml/Preferences/Materials/MaterialsView.qml:642 msgctxt "@title" msgid "Information" msgstr "Informação" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:647 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:82 +#: resources/qml/Preferences/Materials/MaterialsView.qml:647 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 msgctxt "@label" msgid "Print settings" msgstr "Ajustes de impressão" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:59 +#: resources/qml/Preferences/ProfilesPage.qml:59 msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "Perfis compatíveis com a impressora ativa:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:98 +#: resources/qml/Preferences/ProfilesPage.qml:98 msgctxt "@action:tooltip" msgid "Create new profile from current settings/overrides" msgstr "Criar novo perfil a partir dos ajustes/sobreposições atuais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:125 +#: resources/qml/Preferences/ProfilesPage.qml:125 msgctxt "@action:label" msgid "Some settings from current profile were overwritten." msgstr "Alguns ajustes do perfil atual foram sobrescritos." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:140 +#: resources/qml/Preferences/ProfilesPage.qml:140 msgctxt "@action:button" msgid "Update profile." msgstr "Atualizar perfil." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:143 +#: resources/qml/Preferences/ProfilesPage.qml:143 msgctxt "@action:tooltip" msgid "Update profile with current settings/overrides" msgstr "Atualizar perfil com ajustes/sobreposições atuais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:148 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256 +#: resources/qml/Preferences/ProfilesPage.qml:148 msgctxt "@action:button" msgid "Discard current changes" msgstr "Descartar ajustes atuais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:158 +#: resources/qml/Preferences/ProfilesPage.qml:158 msgctxt "@action:label" msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." msgstr "Este perfil usa os defaults especificados pela impressora, portanto não tem ajustes/sobreposições na lista abaixo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:165 +#: resources/qml/Preferences/ProfilesPage.qml:165 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "Seus ajustes atuais coincidem com o perfil selecionado." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +#: resources/qml/Preferences/ProfilesPage.qml:175 msgctxt "@title:tab" msgid "Global Settings" msgstr "Ajustes globais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: resources/qml/Preferences/ProfilesPage.qml:278 msgctxt "@title:window" msgid "Create Profile" msgstr "Criar Perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:280 +#: resources/qml/Preferences/ProfilesPage.qml:280 msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Por favor dê um nome a este perfil." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:368 +#: resources/qml/Preferences/ProfilesPage.qml:352 +#: resources/qml/Preferences/ProfilesPage.qml:368 msgctxt "@title:window" msgid "Export Profile" msgstr "Exportar Perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +#: resources/qml/Preferences/ProfilesPage.qml:382 msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Duplicar Perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:409 +#: resources/qml/Preferences/ProfilesPage.qml:409 msgctxt "@title:window" msgid "Rename Profile" msgstr "Renomear Perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:422 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:429 +#: resources/qml/Preferences/ProfilesPage.qml:422 +#: resources/qml/Preferences/ProfilesPage.qml:429 msgctxt "@title:window" msgid "Import Profile" msgstr "Importar Perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:22 -msgctxt "@title:window" -msgid "Rename" -msgstr "Renomear" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:23 -msgctxt "@info" -msgid "Please provide a new name." -msgstr "Por favor, escolha um novo nome." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56 +#: resources/qml/Preferences/SettingVisibilityItem.qml:56 msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." msgstr "Este ajuste foi omitido para a máquina ativa e não ficará visível." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73 +#: resources/qml/Preferences/SettingVisibilityItem.qml:73 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] "Este ajuste foi mantido invisível pelo valor de %1. Altere o valor desse ajuste para tornar este ajuste visível." msgstr[1] "Este ajuste foi mantido invisível pelos valores de %1. Altere o valor desses ajustes para tornar este ajuste visível." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13 +#: resources/qml/Preferences/SettingVisibilityPage.qml:13 msgctxt "@title:tab" msgid "Setting Visibility" msgstr "Visibilidade dos Ajustes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 +#: resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" msgid "Check all" msgstr "Verificar tudo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 -msgctxt "@label" -msgid "Extruder" -msgstr "Extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70 -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." -msgstr "A temperatura-alvo do hotend. O hotend vai aquecer ou esfriar na direção desta temperatura. Se for zero, o aquecimento de hotend é desligado." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "A temperatura atual deste hotend." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "A temperatura com a qual pré-aquecer o hotend." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Cancelar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Pré-aquecer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Aquece o hotend com antecedência antes de imprimir. Você pode continuar ajustando sua impressão enquanto está aquecendo e não terá que esperar que o hotend termine o aquecimento quando estiver pronto para imprimir." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "A cor do material neste extrusor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "O material neste extrusor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "O bico inserido neste extrusor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -msgctxt "@label" -msgid "Build plate" -msgstr "Mesa de Impressão" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55 -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 "A temperatura-alvo da mesa aquecida. A mesa aquecerá ou resfriará para esta temperatura. Se for zero, o aquecimento é desligado." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "A temperatura atual da mesa aquecida." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "A temperatura em que pré-aquecer a mesa." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Aquecer a mesa antes de imprimir. Você pode continuar ajustando sua impressão enquanto ela está aquecendo, e não terá que esperar o aquecimento quando estiver pronto pra imprimir." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51 -msgctxt "@label" -msgid "Printer control" -msgstr "Controle da Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66 -msgctxt "@label" -msgid "Jog Position" -msgstr "Posição de Trote" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Distância de Trote" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Send G-code" -msgstr "Enviar G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Enviar comando G-Code personalizado para a impressora conectada. Pressione 'enter' para enviar o comando." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "A impressora não está conectada." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "A impressora de nuvem está offline. Por favor verifique se a impressora está ligada e conectada à internet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Esta impressora não está vinculada à sua conta. Por favor visite a Ultimaker Digital Factory para estabelecer uma conexão." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "A conexão de nuvem está indisponível. Por favor se logue para se conectar à impressora de nuvem." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "A conexão de nuvem está indisponível. Por favor verifique sua conexão de internet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:235 -msgctxt "@button" -msgid "Add printer" -msgstr "Adicionar impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Manage printers" -msgstr "Gerenciar impressoras" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Active print" msgstr "Impressão ativa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Job Name" msgstr "Nome do Trabalho" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +#: resources/qml/PrintMonitor.qml:172 msgctxt "@label" msgid "Printing Time" msgstr "Tempo de Impressão" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +#: resources/qml/PrintMonitor.qml:180 msgctxt "@label" msgid "Estimated time left" msgstr "Tempo restante estimado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 msgctxt "@label" msgid "Profile" msgstr "Perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5616,132 +6173,384 @@ msgstr "" "\n" "Clique para abrir o gerenciador de perfis." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 +#: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 msgctxt "@label:header" msgid "Custom profiles" msgstr "Perfis personalizados" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 msgctxt "@label shown when we load a Gcode file" msgid "Print setup disabled. G-code file can not be modified." msgstr "Configuração de Impressão desabilitada. O arquivo de G-Code não pode ser modificado." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:179 msgctxt "@button" msgid "Recommended" msgstr "Recomendado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156 -msgctxt "@button" -msgid "Custom" -msgstr "Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 msgctxt "@label:Should be short" msgid "On" msgstr "On" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 msgctxt "@label:Should be short" msgid "Off" msgstr "Off" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "Experimental" +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is active and you overwrote some settings." +msgstr "%1 perfil personalizado está ativo e alguns ajustes foram sobrescritos." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:54 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is overriding some settings." +msgstr "%1 perfil personalizado está sobrepondo alguns ajustes." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92 +msgctxt "@info %1 is the name of a profile" +msgid "Recommended settings (for %1) were altered." +msgstr "Ajustes recomendados (para %1) foram alterados." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106 +msgctxt "@info %1 is the name of a profile" +msgid "Some setting-values defined in %1 were overridden." +msgstr "Alguns ajustes do perfil atual foram sobrescritos." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137 msgctxt "@info" -msgid "custom profile is active and you overwrote some settings." -msgstr "" +msgid "Reset to defaults." +msgstr "Restaurar aos defaults." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178 msgctxt "@info" -msgid "custom profile is overriding some settings." -msgstr "" +msgid "Compare and save." +msgstr "Comparar e salvar." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 -msgctxt "@info" -msgid "Some settings were changed." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15 msgctxt "@label" msgid "Adhesion" msgstr "Aderência" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20 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." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:198 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102 msgctxt "@label" -msgid "Gradual infill" -msgstr "Preenchimento gradual" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:236 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "Preenchimento gradual aumentará gradualmente a quantidade de preenchimento em direção ao topo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 -msgctxt "@label" -msgid "Resolution" +msgid "Recommended print settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111 +msgctxt "@button" +msgid "Show Custom" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27 +msgctxt "@label" +msgid "Resolution" +msgstr "Resolução" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16 +msgctxt "@label" +msgid "Strength" +msgstr "Força" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20 +msgctxt "@label" +msgid "The following settings define the strength of your part." +msgstr "Os seguintes ajustes definem a força de sua peça." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34 +msgctxt "infill_sparse_density description" +msgid "Infill Density" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35 +msgctxt "@label" +msgid "Adjusts the density of infill of the print." +msgstr "Ajusta a densidade do preenchimento da impressão." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54 +msgctxt "@action:label" +msgid "Infill Pattern" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56 +msgctxt "@label" +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 "" +"O padrão do material de preenchimento da impressão:\n" +"\n" +"Para impressões rápidas de modelos não-funcionais escolha preenchimento de linha, ziguezague ou relâmpago.\n" +"\n" +"Para partes funcionais não sujeitas a muito stress, recomandos preenchimento de grade, triângulo ou tri-hexágono.\n" +"\n" +"Para impressões 3D funcionais que requeiram bastante força em múltiplas direções use cúbico, subdivisão cúbica, quarto cúbico, octeto e giroide." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67 +msgctxt "@action:label" +msgid "Shell Thickness" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68 +msgctxt "@label" +msgid "Defines the thickness of your part side walls, roof and floor." +msgstr "Define a espessura das paredes laterais, teto e base da sua peça." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16 msgctxt "@label" msgid "Support" msgstr "Suporte" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21 msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +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." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40 +msgctxt "@action:label" +msgid "Support Type" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41 +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 "" +"Escolhe entre as técnicas disponíveis para a geração de suporte.\n" +"\n" +"Suporte \"Normal\" cria uma estrutura de suporte diretamente abaixo das partes pendentes e continua em linha reta para baixo.\n" +"\n" +"Suporte de \"Árvore\" cria galhos em direção às áreas pendentes que suportam o modelo em suas pontas, e permite que os galhos se espalhem em volta do modelo para suportá-lo a partir da plataforma de impressão tanto quanto possível." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53 +msgctxt "@action:label" +msgid "Print with" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54 +msgctxt "@label" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir o suporte. Isto é usado em multi-extrusão." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67 +msgctxt "@action:label" +msgid "Placement" +msgstr "Posicionamento" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68 +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 o posicionamento das estruturas de suporte. Este posicionamento pode ser ajustado à plataforma de impressão ou em todo lugar. Se for escolhido em todo lugar, as estruturas de suporte também se apoiarão no próprio modelo." + +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 msgctxt "@error" msgid "Configuration not supported" -msgstr "" +msgstr "Configuração não suportada" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." -msgstr "" +msgstr "Nenhum perfil está disponível para a configuração selecionada de material/%1. Por favor altere sua configuração." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 msgctxt "@button:label" msgid "Learn more" -msgstr "" +msgstr "Saber mais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +#: resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "Extrusor" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:70 +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." +msgstr "A temperatura-alvo do hotend. O hotend vai aquecer ou esfriar na direção desta temperatura. Se for zero, o aquecimento de hotend é desligado." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:105 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "A temperatura atual deste hotend." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:182 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "A temperatura com a qual pré-aquecer o hotend." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:271 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:259 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Cancelar" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:274 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:263 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Pré-aquecer" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:297 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Aquece o hotend com antecedência antes de imprimir. Você pode continuar ajustando sua impressão enquanto está aquecendo e não terá que esperar que o hotend termine o aquecimento quando estiver pronto para imprimir." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:335 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "A cor do material neste extrusor." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:367 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "O material neste extrusor." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:400 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "O bico inserido neste extrusor." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:25 +msgctxt "@label" +msgid "Build plate" +msgstr "Mesa de Impressão" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:55 +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 "A temperatura-alvo da mesa aquecida. A mesa aquecerá ou resfriará para esta temperatura. Se for zero, o aquecimento é desligado." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "A temperatura atual da mesa aquecida." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:162 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "A temperatura em que pré-aquecer a mesa." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:286 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Aquecer a mesa antes de imprimir. Você pode continuar ajustando sua impressão enquanto ela está aquecendo, e não terá que esperar o aquecimento quando estiver pronto pra imprimir." + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:51 +msgctxt "@label" +msgid "Printer control" +msgstr "Controle da Impressora" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:66 +msgctxt "@label" +msgid "Jog Position" +msgstr "Posição de Trote" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:82 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:162 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:217 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Distância de Trote" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Send G-code" +msgstr "Enviar G-Code" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:319 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Enviar comando G-Code personalizado para a impressora conectada. Pressione 'enter' para enviar o comando." + +#: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "A impressora não está conectada." + +#: resources/qml/PrinterSelector/MachineListButton.qml:34 +msgctxt "@label" +msgid "Hide all connected printers" +msgstr "Omitir todas as impressoras conectadas" + +#: resources/qml/PrinterSelector/MachineListButton.qml:47 +msgctxt "@label" +msgid "Show all connected printers" +msgstr "Mostrar todas as impressoras conectadas" + +#: resources/qml/PrinterSelector/MachineSelector.qml:64 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "A impressora de nuvem está offline. Por favor verifique se a impressora está ligada e conectada à internet." + +#: resources/qml/PrinterSelector/MachineSelector.qml:68 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Esta impressora não está vinculada à sua conta. Por favor visite a Ultimaker Digital Factory para estabelecer uma conexão." + +#: resources/qml/PrinterSelector/MachineSelector.qml:73 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "A conexão de nuvem está indisponível. Por favor se logue para se conectar à impressora de nuvem." + +#: resources/qml/PrinterSelector/MachineSelector.qml:78 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "A conexão de nuvem está indisponível. Por favor verifique sua conexão de internet." + +#: resources/qml/PrinterSelector/MachineSelectorList.qml:30 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:32 +msgctxt "@label" +msgid "Other printers" +msgstr "Outras impressoras" + +#: resources/qml/ProfileOverview.qml:36 msgctxt "@title:column" msgid "Setting" msgstr "Ajustes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +#: resources/qml/ProfileOverview.qml:37 msgctxt "@title:column" msgid "Profile" msgstr "Perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +#: resources/qml/ProfileOverview.qml:38 msgctxt "@title:column" msgid "Current" msgstr "Atual" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +#: resources/qml/ProfileOverview.qml:39 msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unidade" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +#: resources/qml/SearchBar.qml:17 msgctxt "@placeholder" msgid "Search" msgstr "Buscar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 +#: resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5752,32 +6561,32 @@ msgstr "" "\n" "Clique para tornar estes ajustes visíveis." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 +#: resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "Este ajuste não é usado porque todos os ajustes que ele influencia estão sobrepostos." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +#: resources/qml/Settings/SettingItem.qml:89 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Afeta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +#: resources/qml/Settings/SettingItem.qml:94 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "Afetado Por" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:190 +#: resources/qml/Settings/SettingItem.qml:196 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "Este ajuste é sempre compartilhado entre todos os extrusores. Modificá-lo aqui mudará o valor para todos." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +#: resources/qml/Settings/SettingItem.qml:200 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Este ajuste é resolvido dos valores conflitante específicos de extrusor:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +#: resources/qml/Settings/SettingItem.qml:240 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5788,7 +6597,7 @@ msgstr "" "\n" "Clique para restaurar o valor do perfil." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:334 +#: resources/qml/Settings/SettingItem.qml:340 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5799,4699 +6608,328 @@ msgstr "" "\n" "Clique para restaurar o valor calculado." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +#: resources/qml/Settings/SettingView.qml:48 msgctxt "@label:textbox" msgid "Search settings" msgstr "Ajustes de busca" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:395 +#: resources/qml/Settings/SettingView.qml:395 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Copiar valor para todos os extrusores" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:404 +#: resources/qml/Settings/SettingView.qml:404 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Copiar todos os valores alterados para todos os extrusores" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:440 +#: resources/qml/Settings/SettingView.qml:440 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Ocultar este ajuste" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:453 +#: resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Não exibir este ajuste" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:457 +#: resources/qml/Settings/SettingView.qml:457 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Manter este ajuste visível" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +#: resources/qml/Toolbar.qml:142 +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" +msgstr[0] "Imprimir Modelo Selecionado com %1" +msgstr[1] "Imprimir Modelos Selecionados com %1" + +#: resources/qml/ViewOrientationControls.qml:25 msgctxt "@info:tooltip" msgid "3D View" msgstr "Visão 3D" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +#: resources/qml/ViewOrientationControls.qml:38 msgctxt "@info:tooltip" msgid "Front View" msgstr "Viso de Frente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +#: resources/qml/ViewOrientationControls.qml:51 msgctxt "@info:tooltip" msgid "Top View" msgstr "Visão de Cima" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +#: resources/qml/ViewOrientationControls.qml:64 msgctxt "@info:tooltip" msgid "Left View" msgstr "Visão à Esquerda" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +#: resources/qml/ViewOrientationControls.qml:77 msgctxt "@info:tooltip" msgid "Right View" msgstr "Visão à Direita" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: resources/qml/ViewsSelector.qml:50 msgctxt "@label" msgid "View type" msgstr "Tipo de Visão" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:47 msgctxt "@label" msgid "Add a Cloud printer" msgstr "Adicionar uma impressora de Nuvem" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:73 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:73 msgctxt "@label" msgid "Waiting for Cloud response" msgstr "Aguardando resposta da Nuvem" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:83 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:83 msgctxt "@label" msgid "No printers found in your account?" msgstr "Nenhuma impressora encontrada em sua conta?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:117 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:117 msgctxt "@label" msgid "The following printers in your account have been added in Cura:" msgstr "As seguintes impressoras da sua conta foram adicionadas ao Cura:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:186 msgctxt "@button" msgid "Add printer manually" msgstr "Adicionar impressora manualmente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 msgctxt "@label" msgid "Manufacturer" msgstr "Fabricante" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Profile author" msgstr "Autor do perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 msgctxt "@label" msgid "Printer name" msgstr "Nome da impressora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 msgctxt "@text" msgid "Please name your printer" msgstr "Por favor dê um nome à sua impressora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "Adicionar uma impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:38 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Adicionar uma impressora de rede" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:87 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Adicionar uma impressora local" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 msgctxt "@label" msgid "There is no printer found over your network." msgstr "Não foi encontrada nenhuma impressora em sua rede." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 msgctxt "@label" msgid "Refresh" msgstr "Atualizar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 msgctxt "@label" msgid "Add printer by IP" msgstr "Adicionar impressora por IP" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Adicionar impressora de nuvem" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205 msgctxt "@label" msgid "Troubleshooting" msgstr "Resolução de problemas" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 msgctxt "@label" msgid "Add printer by IP address" msgstr "Adicionar impressora por endereço IP" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Entre o endereço IP de sua impressora." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 msgctxt "@button" msgid "Add" msgstr "Adicionar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 msgctxt "@label" msgid "Could not connect to device." msgstr "Não foi possível conectar ao dispositivo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Não consegue conectar à sua impressora Ultimaker?" +msgid "Can't connect to your UltiMaker printer?" +msgstr "Não consegue conectar à sua impressora UltiMaker?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 msgctxt "@label" msgid "The printer at this address has not responded yet." msgstr "A impressora neste endereço ainda não respondeu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 msgctxt "@label" msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." msgstr "Esta impressora não pode ser adicionada porque é uma impressora desconhecida ou porque não é o host do grupo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 msgctxt "@button" msgid "Connect" msgstr "Conectar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Adicionar uma impressora de rede" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Adicionar uma impressora local" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102 +msgctxt "@button" +msgid "Add UltiMaker printer via Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "In order to start using Cura you will need to configure a printer." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36 +msgctxt "@label" +msgid "What printer would you like to setup?" +msgstr "Que impressora você gostaria de configurar?" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55 +msgctxt "@button" +msgid "UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64 +msgctxt "@button" +msgid "Non UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73 +msgctxt "@button" +msgid "Learn more about adding printers to Cura" +msgstr "Saiba mais sobre adicionar impressoras ao Cura" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29 +msgctxt "@label" +msgid "Add printer" +msgstr "Adicionar impressora" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33 +msgctxt "@label" +msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70 +msgctxt "@label" +msgid "If you are trying to add a new UltiMaker printer to Cura" +msgstr "Se você está tentando adicionar uma nova impressora UltiMaker ao Cura" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80 +msgctxt "@info" +msgid "Sign in into UltiMaker Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81 +msgctxt "@info" +msgid "Follow the procedure to add a new printer" +msgstr "Siga o procedimento para adicionar uma nova impressora" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82 +msgctxt "@info" +msgid "Your new printer will automatically appear in Cura" +msgstr "Sua nova impressora vai automaticamente aparecer no Cura" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100 +msgctxt "@button" +msgid "Learn more" +msgstr "Saiba mais" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121 +msgctxt "@button" +msgid "Add local printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129 +msgctxt "@button" +msgid "Sign in to Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133 +msgctxt "@button" +msgid "Waiting for new printers" +msgstr "" + +#: resources/qml/WelcomePages/ChangelogContent.qml:24 msgctxt "@label" msgid "Release Notes" msgstr "Notas de lançamento" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:123 +#: resources/qml/WelcomePages/CloudContent.qml:123 msgctxt "@text" msgid "Add material settings and plugins from the Marketplace" msgstr "Adicionar ajustes de materiais e plugins do Marketplace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:149 +#: resources/qml/WelcomePages/CloudContent.qml:149 msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Fazer backup e sincronizar seus ajustes de materiais e plugins" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:175 +#: resources/qml/WelcomePages/CloudContent.qml:175 msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da Comunidade Ultimaker" +msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" +msgstr "Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da Comunidade UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +#: resources/qml/WelcomePages/CloudContent.qml:189 msgctxt "@button" msgid "Skip" msgstr "Pular" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +#: resources/qml/WelcomePages/CloudContent.qml:201 msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Criar uma conta Ultimaker gratuita" +msgid "Create a free UltiMaker Account" +msgstr "Criar uma conta UltiMaker gratuita" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Nos ajude a melhor o Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:56 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "O Ultimaker Cura coleta dados anônimos para melhor a qualidade de impressão e experiência do usuário, incluindo:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:68 -msgctxt "@text" -msgid "Machine types" -msgstr "Tipos de máquina" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:74 -msgctxt "@text" -msgid "Material usage" -msgstr "Uso do material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:80 -msgctxt "@text" -msgid "Number of slices" -msgstr "Número de fatias" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:86 -msgctxt "@text" -msgid "Print settings" -msgstr "Ajustes de impressão" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:99 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Dados coletados pelo Ultimaker Cura não conterão nenhuma informação pessoal." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:100 -msgctxt "@text" -msgid "More information" -msgstr "Mais informações" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +#: resources/qml/WelcomePages/DropDownWidget.qml:93 msgctxt "@label" msgid "Empty" msgstr "Vazio" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +#: resources/qml/WelcomePages/UserAgreementContent.qml:23 msgctxt "@label" msgid "User Agreement" msgstr "Contrato de Usuário" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67 +#: resources/qml/WelcomePages/UserAgreementContent.qml:67 msgctxt "@button" msgid "Decline and close" msgstr "Rejeitar e fechar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Bem-vindo ao Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:67 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "Por favor siga estes passos para configurar o Ultimaker Cura. Isto tomará apenas alguns momentos." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:82 -msgctxt "@button" -msgid "Get started" -msgstr "Começar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: resources/qml/WelcomePages/WhatsNewContent.qml:28 msgctxt "@label" msgid "What's New" msgstr "O Que Há de Novo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: resources/qml/Widgets/ComboBox.qml:18 msgctxt "@label" msgid "No items to select from" msgstr "Sem itens para selecionar" -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Verifica modelos e configurações de impressão por possíveis problema e dá sugestões." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "Verificador de Modelo" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Provê suporte à leitura de arquivos 3MF." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "Leitor de 3MF" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Provê suporte à escrita de arquivos 3MF." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "Gerador de 3MF" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Provê suporta à leitura de arquivos AMF." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "Leitor AMF" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Permite backup e restauração da configuração." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Backups Cura" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Provê a ligação ao backend de fatiamento CuraEngine." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine Backend" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Provê suporte à importação de perfis do Cura." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Leitor de Perfis do Cura" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Provê suporte à exportação de perfis do Cura." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Gravador de Perfis do Cura" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Conecta-se à Digital Library, permitindo ao Cura abrir arquivos dela e gravar arquivos nela." - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Digital Library da Ultimaker" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Verifica por atualizações de firmware." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Verificador de Atualizações de Firmware" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Provê ações de máquina para atualização do firmware." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Atualizador de Firmware" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lê G-Code de um arquivo comprimido." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Leitor de G-Code Comprimido" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Escreve em formato G-Code comprimido." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Gerador de G-Code Comprimido" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Provê suporte a importar perfis de arquivos G-Code." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Leitor de Perfil de G-Code" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permite carregar e exibir arquivos G-Code." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "Leitor de G-Code" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Escreve em formato G-Code." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "Gerador de G-Code" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Habilita a geração de geometria imprimível de arquivos de imagem 2D." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Leitor de Imagens" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Provê suporte a importação de perfis de versões legadas do Cura." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Leitor de Perfis de Cura Legado" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Provê uma maneira de alterar ajustes de máquina (tais como volume de impressão, tamanho do bico, etc.)." - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Ação de Ajustes de Máquina" - -#: Marketplace/plugin.json -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the Ultimaker website." -msgstr "Gerencia extensões à aplicação e permite navegar extensões do sítio web da Ultimaker." - -#: Marketplace/plugin.json -msgctxt "name" -msgid "Marketplace" -msgstr "Marketplace" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Provê um estágio de monitor no Cura." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Estágio de Monitor" - -#: PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Provê Ajustes Por Modelo." - -#: PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Ferramenta de Ajustes Por Modelo" - -#: PostProcessingPlugin/plugin.json -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Extensão que permite scripts criados por usuários para pós-processamento" - -#: PostProcessingPlugin/plugin.json -msgctxt "name" -msgid "Post Processing" -msgstr "Pós-processamento" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Provê um estágio de preparação no Cura." - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "Estágio de Preparação" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Provê uma etapa de pré-visualização ao Cura." - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "Estágio de Pré-visualização" - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Provê suporte a escrita e reconhecimento de drives a quente." - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Complemento de Dispositivo de Escrita Removível" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Registra certos eventos de forma que possam ser usados pelo relator de acidentes" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentinela para Registro" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Provê a pré-visualização de dados de camada fatiados." - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "Visão Simulada" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Informação de fatiamento" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Provê uma visualização de malha sólida normal." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Visão Sólida" - -#: SupportEraser/plugin.json -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Cria uma malha apagadora para bloquear a impressão de suporte em certos lugares" - -#: SupportEraser/plugin.json -msgctxt "name" -msgid "Support Eraser" -msgstr "Apagador de Suporte" - -#: TrimeshReader/plugin.json -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Provê suporta a ler arquivos de modelo." - -#: TrimeshReader/plugin.json -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Leitor Trimesh" - -#: UFPReader/plugin.json -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Provê suporte a leitura de Pacotes de Formato Ultimaker (UFP)." - -#: UFPReader/plugin.json -msgctxt "name" -msgid "UFP Reader" -msgstr "Leitor UFP" - -#: UFPWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Provê suporte para a escrita de Ultimaker Format Packages (Pacotes de Formato da Ultimaker)." - -#: UFPWriter/plugin.json -msgctxt "name" -msgid "UFP Writer" -msgstr "Gerador de UFP" - -#: UltimakerMachineActions/plugin.json -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Provê ações de máquina para impressoras da Ultimaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc.)." - -#: UltimakerMachineActions/plugin.json -msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Ações de máquina Ultimaker" - -#: UM3NetworkPrinting/plugin.json -msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Administra conexões de rede a impressora Ultimaker conectadas." - -#: UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Conexão de Rede Ultimaker" - -#: USBPrinting/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Aceita G-Code e o envia a uma impressora. O complemento também pode atualizar o firmware." - -#: USBPrinting/plugin.json -msgctxt "name" -msgid "USB printing" -msgstr "Impressão USB" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Atualiza configurações do Cura 2.1 para o Cura 2.2." - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Atualização de Versão de 2.1 para 2.2" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Atualiza configurações do Cura 2.2 para o Cura 2.4." - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Atualização de Versão de 2.2 para 2.4" - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Atualiza configurações do Cura 2.5 para o Cura 2.6." - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Atualização de Versão de 2.5 para 2.6" - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Atualiza configurações do Cura 2.6 para o Cura 2.7." - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Atualização de Versão de 2.6 para 2.7" - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Atualiza configuração do Cura 2.7 para o Cura 3.0." - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Atualização de Versão de 2.7 para 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Atualiza configurações do Cura 3.0 para o Cura 3.1." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Atualização de Versão 3.0 para 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Atualiza configurações do Cura 3.2 para o Cura 3.3." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Atualização de Versão de 3.2 para 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Atualiza configuração do Cura 3.3 para o Cura 3.4." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Atualização de Versão de 3.3 para 3.4" - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Atualiza configurações do Cura 3.4 para o Cura 3.5." - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Atualização de Versão de 3.4 para 3.5" - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Atualiza configuração do Cura 3.5 para o Cura 4.0." - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Atualização de Versão de 3.5 para 4.0" - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Atualiza configurações do Cura 4.0 para o Cura 4.1." - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Atualização de Versão de 4.0 para 4.1" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Atualiza configurações do Cura 4.11 para o Cura 4.12." - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Atualização de Versão de 4.11 para 4.12" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Atualiza configurações do Cura 4.13 para o Cura 5.0." - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Atualização de Versão de 4.13 para 5.0" - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Atualiza configurações do Cura 4.1 para o Cura 4.2." - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Atualização de Versão de 4.1 para 4.2" - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Atualiza configurações do Cura 4.2 para o Cura 4.3." - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Atualização de Versão de 4.2 para 4.3" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Atualiza configurações do Cura 4.3 para o Cura 4.4." - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Atualização de Versão de 4.3 para 4.4" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Atualiza configurações do Cura 4.4 para o Cura 4.5." - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Atualização de Versão de 4.4 para 4.5" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Atualiza configurações do Cura 4.5 para o Cura 4.6." - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Atualização de Versão de 4.5 para 4.6" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Atualiza configurações do Cura 4.6.0 para o Cura 4.6.2." - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Atualização de Versão de 4.6.0 para 4.6.2" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Atualiza configurações do Cura 4.6.2 para o Cura 4.7." - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Atualização de Versão de 4.6.2 para 4.7" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Atualiza configurações do Cura 4.7 para o Cura 4.8." - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Atualização de Versão de 4.7 para 4.8" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Atualiza configurações do Cura 4.8 para o Cura 4.9." - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Atualização de Versão de 4.8 para 4.9" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Atualiza configurações do Cura 4.9 para o Cura 4.10." - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Atualização de Versão de 4.9 para 4.10" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Provê suporte à leitura de arquivos X3D." - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "Leitor de X3D" - -#: XmlMaterialProfile/plugin.json -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Provê capacidade de ler e escrever perfis de material baseado em XML." - -#: XmlMaterialProfile/plugin.json -msgctxt "name" -msgid "Material Profiles" -msgstr "Perfis de Material" - -#: XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Provê a visão de Raios-X." - -#: XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "Visão de Raios-X" - -#~ msgctxt "@label" -#~ msgid "Not yet initialized
    " -#~ msgstr "Ainda não inicializado
    " - -#~ msgctxt "@label" -#~ msgid "By" -#~ msgstr "Por" - -#~ msgctxt "@Label" -#~ msgid "Static type checker for Python" -#~ msgstr "Verificador de tipos estáticos para Python" - -#~ msgctxt "@Label" -#~ msgid "Root Certificates for validating SSL trustworthiness" -#~ msgstr "Certificados raiz para validar confiança de SSL" - -#~ msgctxt "@label" -#~ msgid "Python extensions for Microsoft Windows" -#~ msgstr "Extensões de python para o Microsoft Windows" - -#~ msgctxt "@label" -#~ msgid "SVG icons" -#~ msgstr "Ícones SVG" - -#~ msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" -#~ msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" -#~ msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" -#~ msgstr[0] "Não há perfil %1 para a configuração no extrusor %2. O objetivo default será usado no lugar dele" -#~ msgstr[1] "Não há perfis %1 para a configurações nos extrusores %2. O objetivo default será usado no lugar deles" - -#~ msgctxt "@tooltip" -#~ msgid "You have modified some profile settings. If you want to change these go to custom mode." -#~ msgstr "Você modificou alguns ajustes de perfil. Se você quiser alterá-los, use o modo personalizado." - -#~ msgctxt "@action:button" -#~ msgid "Sync materials with printers" -#~ msgstr "Sincronizar materiais" - -#~ msgctxt "@title:window" -#~ msgid "Convert Image..." -#~ msgstr "Converter imagem..." - -#~ msgctxt "@info:tooltip" -#~ msgid "The width in millimeters on the build plate." -#~ msgstr "A largura da mesa de impressão em milímetros." - -#~ msgctxt "@title" -#~ msgid "Marketplace" -#~ msgstr "Mercado" - -#~ msgctxt "@info" -#~ msgid "You will need to restart Cura before changes in packages have effect." -#~ msgstr "Você precisará reiniciar o Cura para que as alterações tenham efeito." - -#~ msgctxt "@action:button" -#~ msgid "Install" -#~ msgstr "Instalar" - -#~ msgctxt "@action:button" -#~ msgid "Installed" -#~ msgstr "Instalado" - -#~ msgctxt "@label" -#~ msgid "Premium" -#~ msgstr "Premium" - -#~ msgctxt "@info:tooltip" -#~ msgid "Go to Web Marketplace" -#~ msgstr "Ir ao Mercado Web" - -#~ msgctxt "@label" -#~ msgid "Search materials" -#~ msgstr "Buscar materiais" - -#~ msgctxt "@label" -#~ msgid "Compatibility" -#~ msgstr "Compatibilidade" - -#~ msgctxt "@label:table_header" -#~ msgid "Machine" -#~ msgstr "Máquina" - -#~ msgctxt "@label:table_header" -#~ msgid "Build Plate" -#~ msgstr "Plataforma de Impressão" - -#~ msgctxt "@label:table_header" -#~ msgid "Support" -#~ msgstr "Suporte" - -#~ msgctxt "@label:table_header" -#~ msgid "Quality" -#~ msgstr "Qualidade" - -#~ msgctxt "@action:label" -#~ msgid "Technical Data Sheet" -#~ msgstr "Documento de Dados Técnicos" - -#~ msgctxt "@action:label" -#~ msgid "Safety Data Sheet" -#~ msgstr "Documento de Dados de Segurança" - -#~ msgctxt "@action:label" -#~ msgid "Printing Guidelines" -#~ msgstr "Diretrizes de Impressão" - -#~ msgctxt "@action:label" -#~ msgid "Website" -#~ msgstr "Sítio Web" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to install or update" -#~ msgstr "Entrar na conta é necessário para instalar ou atualizar" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Buy material spools" -#~ msgstr "Comprar rolos de material" - -#~ msgctxt "@action:button" -#~ msgid "Update" -#~ msgstr "Atualizar" - -#~ msgctxt "@action:button" -#~ msgid "Updating" -#~ msgstr "Atualizando" - -#~ msgctxt "@action:button" -#~ msgid "Updated" -#~ msgstr "Atualizado" - -#~ msgctxt "@action:button" -#~ msgid "Back" -#~ msgstr "Voltar" - -#~ msgctxt "@title:tab" -#~ msgid "Plugins" -#~ msgstr "Complementos" - -#~ msgctxt "@title:tab" -#~ msgid "Installed" -#~ msgstr "Instalado" - -#~ msgctxt "@label" -#~ msgid "Will install upon restarting" -#~ msgstr "Será instalado ao reiniciar" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to update" -#~ msgstr "Entrar na conta é necessário para atualizar" - -#~ msgctxt "@action:button" -#~ msgid "Downgrade" -#~ msgstr "Downgrade" - -#~ msgctxt "@action:button" -#~ msgid "Uninstall" -#~ msgstr "Desinstalar" - -#~ msgctxt "@label" -#~ msgid "Community Contributions" -#~ msgstr "Contribuições da Comunidade" - -#~ msgctxt "@label" -#~ msgid "Community Plugins" -#~ msgstr "Complementos da Comunidade" - -#~ msgctxt "@label" -#~ msgid "Generic Materials" -#~ msgstr "Materiais Genéricos" - -#~ msgctxt "@info" -#~ msgid "Fetching packages..." -#~ msgstr "Obtendo pacotes..." - -#~ msgctxt "@label" -#~ msgid "Website" -#~ msgstr "Sítio Web" - -#~ msgctxt "@label" -#~ msgid "Email" -#~ msgstr "Email" - -#~ msgctxt "@description" -#~ msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -#~ msgstr "Por favor se logue para adquirir complementos e materiais verificados para o Ultimaker Cura Enterprise" - -#~ msgctxt "@label" -#~ msgid "Version" -#~ msgstr "Versão" - -#~ msgctxt "@label" -#~ msgid "Last updated" -#~ msgstr "Última atualização" - -#~ msgctxt "@label" -#~ msgid "Downloads" -#~ msgstr "Downloads" - -#~ msgctxt "@title:tab" -#~ msgid "Installed plugins" -#~ msgstr "Complementos instalados" - -#~ msgctxt "@info" -#~ msgid "No plugin has been installed." -#~ msgstr "Nenhum complemento foi instalado." - -#~ msgctxt "@title:tab" -#~ msgid "Installed materials" -#~ msgstr "Materiais instalados" - -#~ msgctxt "@info" -#~ msgid "No material has been installed." -#~ msgstr "Nenhum material foi instalado." - -#~ msgctxt "@title:tab" -#~ msgid "Bundled plugins" -#~ msgstr "Complementos empacotados" - -#~ msgctxt "@title:tab" -#~ msgid "Bundled materials" -#~ msgstr "Materiais empacotados" - -#~ msgctxt "@info" -#~ msgid "Could not connect to the Cura Package database. Please check your connection." -#~ msgstr "Não foi possível conectar-se à base de dados de Pacotes do Cura. Por favor verifique sua conexão." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall" -#~ msgstr "Confirme a desinstalação" - -#~ msgctxt "@text:window" -#~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -#~ msgstr "Você está desinstalando material e/ou perfis que ainda estão em uso. Confirmar irá restaurar os materiais e perfis seguintes a seus defaults." - -#~ msgctxt "@text:window" -#~ msgid "Materials" -#~ msgstr "Materiais" - -#~ msgctxt "@text:window" -#~ msgid "Profiles" -#~ msgstr "Perfis" - -#~ msgctxt "@action:button" -#~ msgid "Confirm" -#~ msgstr "Confirmar" - -#~ msgctxt "@info:tooltip" -#~ msgid "Some things could be problematic in this print. Click to see tips for adjustment." -#~ msgstr "Algumas coisas podem ser problemáticas nesta impressão. Clique para ver dicas de correção." - -#~ msgctxt "@label" -#~ msgid "Support library for handling planar objects" -#~ msgstr "Biblioteca de suporte para manuseamento de objetos planares" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "Você personalizou alguns ajustes de perfil.\n" -#~ "Gostaria de manter estes ajustes alterados após mudar de perfis?\n" -#~ "Alternativamente, você pode descartar as alterações para carregar os defaults de '%1'." - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Build plate" -#~ msgstr "Plataforma de Impressão (&B)" - -#~ msgctxt "@label" -#~ msgid "Create" -#~ msgstr "Criar" - -#~ msgctxt "@label" -#~ msgid "Duplicate" -#~ msgstr "Duplicar" - -#~ msgctxt "@label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "Impressora: %1" - -#~ msgctxt "@action:button" -#~ msgid "Update profile with current settings/overrides" -#~ msgstr "Atualizar perfil com ajustes/sobreposições atuais" - -#~ msgctxt "@label" -#~ msgid "Theme:" -#~ msgstr "Tema:" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for these changes to have effect." -#~ msgstr "Você precisará reiniciar a aplicação para que essas mudanças tenham efeito." - -#~ msgctxt "@action:button" -#~ msgid "More information" -#~ msgstr "Mais informações" - -#~ msgctxt "@action:button" -#~ msgid "Create" -#~ msgstr "Criar" - -#~ msgctxt "@action:button Sending materials to printers" -#~ msgid "Sync with Printers" -#~ msgstr "Sincronizar com Impressoras" - -#~ msgctxt "@action:label" -#~ msgid "Printer" -#~ msgstr "Impressora" - -#~ msgctxt "@title:column" -#~ msgid "Unit" -#~ msgstr "Unidade" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting Guide" -#~ msgstr "Mostra Guia de Resolução de Problemas Online" - -#~ msgctxt "@action:inmenu" -#~ msgid "Add more materials from Marketplace" -#~ msgstr "Adicionar mais materiais do Mercado" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange All Models To All Build Plates" -#~ msgstr "Posicionar Todos os Modelos em Todas as Plataformas de Impressão" - -#~ msgctxt "@action:menu" -#~ msgid "&Marketplace" -#~ msgstr "&Mercado" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new Cura packages." -#~ msgstr "Buscar, gerenciar e instalar novos pacotes do Cura." - -#~ msgctxt "name" -#~ msgid "Toolbox" -#~ msgstr "Ferramentas" - -#~ msgctxt "description" -#~ msgid "Provides the Simulation view." -#~ msgstr "Provê a Visão Simulada." - #~ msgctxt "@info:status" -#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Envia e monitora trabalhos de impressão de qualquer lugar usando sua conta Ultimaker." - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Digital Factory" -#~ msgstr "Conectar à Ultimaker Digital Factory" - -#~ msgctxt "@info" -#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." -#~ msgstr "Feeds de webcam para impressoras de nuvem não podem ser vistos pelo Ultimaker Cura." - -#~ 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 not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -#~ msgstr "Novos recursos ou consertos de bugs podem estar disponível para sua {machine_name}! Se já não estiver na última versão, é recomendado que atualize o firmware da sua impressora para a versão {latest_version}." - -#~ msgctxt "@info:title The %s gets replaced with the printer name." -#~ msgid "New %s firmware available" -#~ msgstr "Novo firmware de %s disponível" - -#~ msgctxt "@info:status" -#~ msgid "Global stack is missing." -#~ msgstr "A pilha global não foi encontrada." - -#~ msgctxt "@info:status" -#~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces." -#~ msgstr "Seu modelo não é manifold. As áreas ressaltadas indicam superfícies faltantes ou incorretas." +#~ 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 "@info:title" -#~ msgid "Model errors" -#~ msgstr "Erros de modelo" - -#~ msgctxt "@label:listbox" -#~ msgid "Layer thickness" -#~ msgstr "Largura de camada" - -#~ msgctxt "@label" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "Sua chave para impressão 3D conectada" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Customize your experience with more print profiles and plugins\n" -#~ "- Stay flexible by syncing your setup and loading it anywhere\n" -#~ "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "" -#~ "- Personalize sua experiência com mais perfis de impressão e complementos\n" -#~ "- Mantenha-se flexível ao sincronizar sua configuração e a acessar em qualquer lugar\n" -#~ "- Melhore a eficiência com um fluxo de trabalho remoto com as impressoras Ultimaker" - -#~ msgctxt "@button" -#~ msgid "Create account" -#~ msgstr "Criar conta" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete Selected Model" -#~ msgid_plural "Delete Selected Models" -#~ msgstr[0] "Remover Modelo Selecionado" -#~ msgstr[1] "Remover Modelos Selecionados" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Center Selected Model" -#~ msgid_plural "Center Selected Models" -#~ msgstr[0] "Centralizar Modelo Selecionado" -#~ msgstr[1] "Centralizar Modelos Selecionados" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Multiply Selected Model" -#~ msgid_plural "Multiply Selected Models" -#~ msgstr[0] "Multiplicar Modelo Selecionado" -#~ msgstr[1] "Multiplicar Modelos Selecionados" - -#~ msgctxt "@button" -#~ msgid "Finish" -#~ msgstr "Finalizar" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Account" -#~ msgstr "Conta da Ultimaker" - -#~ msgctxt "@text" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "Sua chave para a impressão 3D conectada" - -#~ msgctxt "@text" -#~ msgid "- Customize your experience with more print profiles and plugins" -#~ msgstr "- Personalize sua experiência com mais perfis de impressão e complementos" - -#~ msgctxt "@text" -#~ msgid "- Stay flexible by syncing your setup and loading it anywhere" -#~ msgstr "- Flexibilize-se ao sincronizar sua configuração e a acessar de qualquer lugar" - -#~ msgctxt "@text" -#~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "- Melhore a eficiência com um fluxo de trabalho remoto com as impressoras Ultimaker" - -#~ msgctxt "@text" -#~ msgid "" -#~ "Please follow these steps to set up\n" -#~ "Ultimaker Cura. This will only take a few moments." -#~ msgstr "" -#~ "Por favor siga estes passos para configurar\n" -#~ "o Ultimaker Cura. Isto tomará apenas alguns momentos." - -#~ msgctxt "@label" -#~ msgid "What's new in Ultimaker Cura" -#~ msgstr "O que há de novo no Ultimaker Cura" - -#~ msgctxt "@label ({} is object name)" -#~ msgid "Are you sure you wish to remove {}? This cannot be undone!" -#~ msgstr "Tem certeza que deseja remover {}? Isto não pode ser desfeito!" - -#~ msgctxt "@info:status" -#~ msgid "The selected model was too small to load." -#~ msgstr "O modelo selecionado é pequenos demais para carregar." - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profile {0}" -#~ msgstr "Perfil {0} importado com sucesso" - -#~ msgctxt "@info:status" -#~ msgid "Could not find a quality type {0} for the current configuration." -#~ msgstr "Não foi possível encontrar tipo de qualidade {0} para a configuração atual." - -#~ msgctxt "info:status" -#~ msgid "Adding printer {} ({}) from your account" -#~ msgstr "Adicionando impressora {} ({}) da sua conta" - -#~ msgctxt "info:hidden list items" -#~ msgid "
  • ... and {} others
  • " -#~ msgstr "
  • ... e {} outras
  • " - -#~ msgctxt "info:status" -#~ msgid "Printers added from Digital Factory:
      {}
    " -#~ msgstr "Impressoras adicionadas da Digital Factory:
      {}
    " - -#~ msgctxt "info:status" -#~ msgid "
      {}
    To establish a connection, please visit the Ultimaker Digital Factory." -#~ msgstr "
      {}
    Para estabelecer uma conexão, por favor visite a Ultimaker Digital Factory." - -#~ msgctxt "@label ({} is printer name)" -#~ msgid "{} will be removed until the next account sync.
    To remove {} permanently, visit Ultimaker Digital Factory.

    Are you sure you want to remove {} temporarily?" -#~ msgstr "{} será removida até a próxima sincronização de conta.
    Para remover {} permanentemente, visite a Ultimaker Digital Factory.

    Tem certeza que deseja remover {} temporariamente?" - -#~ msgctxt "@label" -#~ msgid "" -#~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n" -#~ "Are you sure you want to continue?" -#~ msgstr "" -#~ "Você está para remover {} impressora(s) do Cura. Esta ação não pode ser desfeita. \n" -#~ "Tem certeza que quer continuar?" - -#~ msgctxt "@label" -#~ msgid "" -#~ "You are about to remove all printers from Cura. This action cannot be undone. \n" -#~ "Are you sure you want to continue?" -#~ msgstr "" -#~ "Você está para remover todas as impressoras do Cura. Esta ação não pode ser defeita. \n" -#~ "Tem certeza que quer continuar?" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update" -#~ msgstr "Atualizar" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Create new" -#~ msgstr "Criar novo" - -#~ msgctxt "@label" -#~ msgid "Shared Heater" -#~ msgstr "Aquecedor Compartilhado" - -#~ msgctxt "@info" -#~ msgid "The webcam is not available because you are monitoring a cloud printer." -#~ msgstr "A webcam não está disponível porque você está monitorando uma impressora de nuvem." - -#~ msgctxt "@button" -#~ msgid "Ultimaker Digital Factory" -#~ msgstr "Ultimaker Digital Factory" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can Discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "Você personalizou alguns ajustes de perfil.\n" -#~ "Você gostaria de manter esses ajustes alterados depois de trocar os perfis?\n" -#~ "Alternativamente, você pode descartar as alterações para carregar os defaults de '%1'." - -#~ msgctxt "@label" -#~ msgid "Overrides %1 setting." -#~ msgid_plural "Overrides %1 settings." -#~ msgstr[0] "Substitui %1 ajuste." -#~ msgstr[1] "Substitui %1 ajustes." - -#~ msgctxt "@text" -#~ msgid "Please give your printer a name" -#~ msgstr "Por favor dê um nome à sua impressora" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." -#~ msgstr "Novos recursos estão disponível para sua {machine_name}! Recomenda-se atualizar o firmware da impressora." - -#~ msgctxt "@action:button" -#~ msgid "Print via Cloud" -#~ msgstr "Imprimir por Nuvem" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print via Cloud" -#~ msgstr "Imprimir por Nuvem" - -#~ msgctxt "@info:status" -#~ msgid "Connected via Cloud" -#~ msgstr "Conectado por Nuvem" - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Conectar à Nuvem Ultimaker" - -#~ msgctxt "@label" -#~ msgid "You need to login first before you can rate" -#~ msgstr "Você precisa entrar em sua conta para dar notas" - -#~ msgctxt "@label" -#~ msgid "You need to install the package before you can rate" -#~ msgstr "Você precisa instalar o pacote para dar notas" - -#~ msgctxt "@label" -#~ msgid "ratings" -#~ msgstr "notas" - -#~ msgctxt "@label" -#~ msgid "Featured" -#~ msgstr "Em destaque" - -#~ msgctxt "@label" -#~ msgid "Your rating" -#~ msgstr "Sua nota" - -#~ msgctxt "@label" -#~ msgid "Author" -#~ msgstr "Autor" - -#~ msgctxt "@description" -#~ msgid "Get plugins and materials verified by Ultimaker" -#~ msgstr "Obter complementos e materiais verificados pela Ultimaker" - -#~ msgctxt "@label The argument is a username." -#~ msgid "Hi %1" -#~ msgstr "Oi, %1" - -#~ msgctxt "@button" -#~ msgid "Ultimaker account" -#~ msgstr "Conta da Ultimaker" - -#~ msgctxt "@button" -#~ msgid "Sign out" -#~ msgstr "Sair da conta" - -#~ msgctxt "@label" -#~ msgid "Support library for analysis of complex networks" -#~ msgstr "Biblioteca de suporte para análises de redes complexas" - -#~ msgctxt "@Label" -#~ msgid "Python HTTP library" -#~ msgstr "Biblioteca de HTTP Python" - -#~ msgctxt "@text:window" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to keep or discard those settings?" -#~ msgstr "" -#~ "Você personalizou alguns ajustes de perfil.\n" -#~ "Gostaria de manter ou descartar estes ajustes?" - -#~ msgctxt "@title:column" -#~ msgid "Default" -#~ msgstr "Default" - -#~ msgctxt "@title:column" -#~ msgid "Customized" -#~ msgstr "Personalizado" - -#~ msgctxt "@action:button" -#~ msgid "Discard" -#~ msgstr "Descartar" - -#~ msgctxt "@action:button" -#~ msgid "Keep" -#~ msgstr "Manter" - -#~ msgctxt "@action:button" -#~ msgid "Create New Profile" -#~ msgstr "Criar Novo Perfil" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "&Save..." -#~ msgstr "&Salvar..." - -#~ msgctxt "@text" -#~ msgid "Place enter your printer's IP address." -#~ msgstr "Por favor entre o endereço IP da sua impressora." - -#~ msgctxt "@button" -#~ msgid "Create an account" -#~ msgstr "Criar uma conta" - -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Do you want to sync material and software packages with your account?" -#~ msgstr "" -#~ "\n" -#~ "Você quer sincronizar os pacotes de material e software com sua conta?" - -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Syncing..." -#~ msgstr "" -#~ "\n" -#~ "Sincronizando..." - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder." -#~ msgstr "Nada a fatiar porque nenhum dos modelos cabe no volume de construção ou está associado a um extrusor desabilitado. Por favor redimensione ou rotacione os modelos para caber, ou habilite um extrusor." - -#~ msgctxt "@info:backup_status" -#~ msgid "There was an error listing your backups." -#~ msgstr "Houve um erro ao listar seus backups." - -#~ msgctxt "@title:groupbox" -#~ msgid "User description (Note: Developers may not speak your language, please use English if possible)" -#~ msgstr "Descrição do usuário (Nota: Os desenvolvedores podem não falar sua língua, por favor use inglês se possível)" - -#~ msgctxt "@title:window" -#~ msgid "Closing Cura" -#~ msgstr "Fechando o Cura" - -#~ msgctxt "@label" -#~ msgid "Are you sure you want to exit Cura?" -#~ msgstr "Você tem certeza que deseja sair do Cura?" - -#~ msgctxt "@label" -#~ msgid "Language:" -#~ msgstr "Idioma:" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud" - -#~ msgctxt "@text" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "O fluxo de trabalho da nova geração de impressão 3D" - -#~ msgctxt "@text" -#~ msgid "- Send print jobs to Ultimaker printers outside your local network" -#~ msgstr "- Enviar trabalhos de impressão a impressoras Ultimaker fora da sua rede local" - -#~ msgctxt "@text" -#~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere" -#~ msgstr "- Armazenar seus ajustes do Ultimaker Cura na nuvem para uso em qualquer local" - -#~ msgctxt "@text" -#~ msgid "- Get exclusive access to print profiles from leading brands" -#~ msgstr "- Conseguir acesso exclusivo a perfis de impressão das melhores marcas" - -#~ msgctxt "@label" -#~ msgid "The value is resolved from per-extruder values " -#~ msgstr "O valor é resolvido de valores específicos de cada extrusor " - -#~ msgctxt "@label" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "O fluxo de trabalho da próxima geração de impressão 3D" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to print profiles from leading brands" -#~ msgstr "" -#~ "- Envia trabalho de impressão às impressoras Ultimaker fora da sua rede local\n" -#~ "- Armazena seus ajustes do Ultimaker Cura na nuvem para uso de qualquer lugar\n" -#~ "- Consegue acesso exclusivo a perfis de impressão das melhores marcas" - -#~ msgctxt "@title:window" -#~ msgid "About " -#~ msgstr "Sobre " - -#~ msgctxt "@info:button" -#~ msgid "Quit Cura" -#~ msgstr "Sair do Cura" - -#~ msgctxt "@action:checkbox" -#~ msgid "Infill only" -#~ msgstr "Preenchimento apenas" - -#~ msgctxt "@info:tooltip" -#~ msgid "Change active post-processing scripts" -#~ msgstr "Troca os scripts de pós-processamento ativos" - -#~ msgctxt "@label:listbox" -#~ msgid "Feedrate" -#~ msgstr "Taxa de alimentação" - -#~ msgctxt "name" -#~ msgid "Machine Settings action" -#~ msgstr "Ação de Configurações de Máquina" - -#~ msgctxt "@info:title" -#~ msgid "New cloud printers found" -#~ msgstr "Novas impressoras de nuvem encontradas" - -#~ msgctxt "@info:message" -#~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers." -#~ msgstr "Novas impressoras foram encontradas conectadas à sua conta; você as pode ver na sua lista de impressoras descobertas." - -#~ msgctxt "@info:status" -#~ msgid "Cura does not accurately display layers when Wire Printing is enabled" -#~ msgstr "O Cura não mostra as camadas corretamente quando Impressão em Arame estiver habilitada" - -#~ msgctxt "@label" -#~ msgid "Pre-sliced file {0}" -#~ msgstr "Arquivo pré-fatiado {0}" - -#~ msgctxt "@label" -#~ msgid "" -#~ "This plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ "Este plugin contém uma licença.\n" -#~ "Você precisa aceitar esta licença para instalar este complemento.\n" -#~ "Você concorda com os termos abaixo?" - -#~ msgctxt "@action:button" -#~ msgid "Accept" -#~ msgstr "Aceitar" - -#~ msgctxt "@action:button" -#~ msgid "Decline" -#~ msgstr "Recusar" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show All Settings" -#~ msgstr "Mostrar Todos Os Ajustes" - -#~ msgctxt "@title:window" -#~ msgid "Ultimaker Cura" -#~ msgstr "Ultimaker Cura" - -#~ msgctxt "@title:window" -#~ msgid "About Cura" -#~ msgstr "Sobre o Cura" - -#~ msgctxt "@item:inmenu" -#~ msgid "Flatten active settings" -#~ msgstr "Achatar os ajustes ativos" - -#~ msgctxt "@info:status" -#~ msgid "Profile has been flattened & activated." -#~ msgstr "O perfil foi achatado & ativado." - -#~ msgctxt "X3g Writer Plugin Description" -#~ msgid "Writes X3g to files" -#~ msgstr "Grava em formato X3g" - -#~ msgctxt "X3g Writer File Description" -#~ msgid "X3g File" -#~ msgstr "Arquivo X3g" - -#~ msgctxt "X3G Writer File Description" -#~ msgid "X3G File" -#~ msgstr "Arquivo X3G" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Open Compressed Triangle Mesh" -#~ msgstr "Malha Comprimida de Triângulos Aberta" - -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "Assistente de Perfil" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "Assistente de Perfil" - -#~ msgctxt "@action:button" -#~ msgid "Retry" -#~ msgstr "Tentar novamente" - -#~ msgctxt "@label:table_header" -#~ msgid "Print Core" -#~ msgstr "Núcleo de Impressão" - -#~ msgctxt "@label" -#~ msgid "Don't support overlap with other models" -#~ msgstr "Não suportar sobreposição com outros modelos" - -#~ msgctxt "@label" -#~ msgid "Modify settings for overlap with other models" -#~ msgstr "Modificar ajustes para sobrepor com outros modelos" - -#~ msgctxt "@label" -#~ msgid "Modify settings for infill of other models" -#~ msgstr "Modificar ajustes para preenchimento de outros modelos" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update existing" -#~ msgstr "Atualizar existente" - -#~ msgctxt "@label" -#~ msgid "Not supported" -#~ msgstr "Não suportado" - -#~ msgctxt "@action:button" -#~ msgid "Previous" -#~ msgstr "Anterior" - -#~ msgctxt "@label" -#~ msgid "Tip" -#~ msgstr "Dica" - -#~ msgctxt "@label" -#~ msgid "Print experiment" -#~ msgstr "Imprimir experimento" - -#~ msgctxt "@label" -#~ msgid "Checklist" -#~ msgstr "Lista de verificação" - -#~ msgctxt "@label" -#~ msgid "Please select any upgrades made to this Ultimaker 2." -#~ msgstr "Por favor selecione quaisquer atualizações feitas nesta Ultimaker 2." - -#~ msgctxt "@label" -#~ msgid "Olsson Block" -#~ msgstr "Bloco Olsson" - -#~ msgctxt "@window:text" -#~ msgid "Camera rendering: " -#~ msgstr "Renderização de câmera:" - -#~ msgctxt "@info:tooltip" -#~ msgid "Use multi build plate functionality" -#~ msgstr "Usar funcionalidade de plataforma múltipla de impressão" - -#~ msgctxt "@option:check" -#~ msgid "Use multi build plate functionality (restart required)" -#~ msgstr "Usar funcionalidade de plataforma múltipla de impressão (reinício requerido)" - -#~ msgctxt "@label" -#~ msgid "Default profiles" -#~ msgstr "Perfis default" - -#~ msgctxt "@label:textbox" -#~ msgid "search settings" -#~ msgstr "procurar nos ajustes" - -#~ msgctxt "@label" -#~ msgid "Layer Height" -#~ msgstr "Altura de Camada" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile." -#~ msgstr "Este perfil de qualidade não está disponível para seu material e configuração de bico atuais. Por favor, altere-os para habilitar este perfil de qualidade." - -#~ msgctxt "@tooltip" -#~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" -#~ msgstr "Um perfil personalizado está atualmente ativo. Para habilitar o controle deslizante de qualidade, escolha um perfil de qualidade default na aba Personalizado" - -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "Plataforma de Impressão (&B)" - -#~ msgctxt "@title:settings" -#~ msgid "&Profile" -#~ msgstr "&Perfil" - -#~ msgctxt "@action:label" -#~ msgid "Build plate" -#~ msgstr "Plataforma de Impressão" - -#~ msgctxt "description" -#~ msgid "Dump the contents of all settings to a HTML file." -#~ msgstr "Descarrega o conteúdo de todas as configurações em um arquivo HTML." - -#~ msgctxt "name" -#~ msgid "God Mode" -#~ msgstr "Modo Deus" - -#~ msgctxt "description" -#~ msgid "Create a flattened quality changes profile." -#~ msgstr "Cria um perfil de mudanças de qualidade achatado." - -#~ msgctxt "name" -#~ msgid "Profile Flattener" -#~ msgstr "Achatador de Perfil" - -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "Permite que fabricantes de material criem novos perfis de material e qualidade usando uma interface drop-in." - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "Assistente de Perfil de Impressão" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network." -#~ msgstr "Conectado pela rede." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. Please approve the access request on the printer." -#~ msgstr "Conectado pela rede. Por favor aprove a requisição de acesso na impressora." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. No access to control the printer." -#~ msgstr "Conectado pela rede. Sem acesso para controlar a impressora." - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer requested. Please approve the request on the printer" -#~ msgstr "Acesso à impressora solicitado. Por favor aprove a requisição na impressora" - -#~ msgctxt "@info:title" -#~ msgid "Authentication status" -#~ msgstr "Status da autenticação" - -#~ msgctxt "@info:title" -#~ msgid "Authentication Status" -#~ msgstr "Status da Autenticação" - -#~ msgctxt "@info:tooltip" -#~ msgid "Re-send the access request" -#~ msgstr "Reenvia o pedido de acesso" - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer accepted" -#~ msgstr "Acesso à impressora confirmado" - -#~ msgctxt "@info:status" -#~ msgid "No access to print with this printer. Unable to send print job." -#~ msgstr "Sem acesso para imprimir por esta impressora. Não foi possível enviar o trabalho de impressão." - -#~ msgctxt "@action:button" -#~ msgid "Request Access" -#~ msgstr "Solicitar acesso" - -#~ msgctxt "@info:tooltip" -#~ msgid "Send access request to the printer" -#~ msgstr "Envia pedido de acesso à impressora" - -#~ msgctxt "@label" -#~ msgid "Unable to start a new print job." -#~ msgstr "Não foi possível iniciar novo trabalho de impressão." - -#~ msgctxt "@label" -#~ msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." -#~ msgstr "Há um problema com a configuração de sua Ultimaker, o que torna impossível iniciar a impressão. Por favor resolva este problema antes de continuar." - -#~ msgctxt "@window:title" -#~ msgid "Mismatched configuration" -#~ msgstr "Configuração conflitante" - -#~ msgctxt "@label" -#~ msgid "Are you sure you wish to print with the selected configuration?" -#~ msgstr "Tem certeza que quer imprimir com a configuração selecionada?" - -#~ msgctxt "@label" -#~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "Há divergências entre a configuração ou calibração da impressora e do Cura. Para melhores resultados, sempre fatie com os PrintCores e materiais que estão carregados em sua impressora." - -#~ msgctxt "@info:status" -#~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." -#~ msgstr "Envio de novos trabalhos (temporariamente) bloqueado, ainda enviando o trabalho de impressão anterior." - -#~ msgctxt "@info:status" -#~ msgid "Sending data to printer" -#~ msgstr "Enviando dados à impressora" - -#~ msgctxt "@info:title" -#~ msgid "Sending Data" -#~ msgstr "Enviando Dados" - -#~ msgctxt "@info:status" -#~ msgid "No Printcore loaded in slot {slot_number}" -#~ msgstr "Printcore não carregado no slot {slot_number}" - -#~ msgctxt "@info:status" -#~ msgid "No material loaded in slot {slot_number}" -#~ msgstr "Nenhum material carregado no slot {slot_number}" - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" -#~ msgstr "PrintCore Diferente (Cura: {cura_printcore_name}, Impressora: {remote_printcore_name}) selecionado para o extrusor {extruder_id}" - -#~ msgctxt "@label" -#~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Material diferente (Cura: {0}, Impressora: {1}) selecionado para o extrusor {2}" - -#~ msgctxt "@window:title" -#~ msgid "Sync with your printer" -#~ msgstr "Sincronizar com a impressora" - -#~ msgctxt "@label" -#~ msgid "Would you like to use your current printer configuration in Cura?" -#~ msgstr "Deseja usar a configuração atual de sua impressora no Cura?" - -#~ msgctxt "@label" -#~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "Os PrintCores e/ou materiais da sua impressora diferem dos que estão dentro de seu projeto atual. Para melhores resultados, sempre fatie para os PrintCores e materiais que estão na sua impressora." - -#~ msgctxt "@action:button" -#~ msgid "View in Monitor" -#~ msgstr "Ver no Monitor" - -#~ msgctxt "@info:status" -#~ msgid "Printer '{printer_name}' has finished printing '{job_name}'." -#~ msgstr "{printer_name} acabou de imprimir '{job_name}'." - -#~ msgctxt "@info:status" -#~ msgid "The print job '{job_name}' was finished." -#~ msgstr "O trabalho de impressão '{job_name}' terminou." - -#~ msgctxt "@info:status" -#~ msgid "Print finished" -#~ msgstr "Impressão Concluída" - -#~ msgctxt "@label:material" -#~ msgid "Empty" -#~ msgstr "Vazio" - -#~ msgctxt "@label:material" -#~ msgid "Unknown" -#~ msgstr "Desconhecido" - -#~ msgctxt "@info:title" -#~ msgid "Cloud error" -#~ msgstr "Erro de nuvem" - -#~ msgctxt "@info:status" -#~ msgid "Could not export print job." -#~ msgstr "Não foi possível exportar o trabalho de impressão." - -#~ msgctxt "@info:description" -#~ msgid "There was an error connecting to the cloud." -#~ msgstr "Houve um erro ao conectar à nuvem." - -#~ msgctxt "@info:status" -#~ msgid "Uploading via Ultimaker Cloud" -#~ msgstr "Transferindo via Ultimaker Cloud" - -#~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Conectar à Ultimaker Cloud" - -#~ msgctxt "@action" -#~ msgid "Don't ask me again for this printer." -#~ msgstr "Não me pergunte novamente para esta impressora." - -#~ msgctxt "@info:status" -#~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Você agora pode enviar e monitorar trabalhoas de impressão de qualquer lugar usando sua conta Ultimaker." - -#~ msgctxt "@info:status" -#~ msgid "Connected!" -#~ msgstr "Conectado!" - -#~ msgctxt "@action" -#~ msgid "Review your connection" -#~ msgstr "Rever sua conexão" - -#~ msgctxt "@info:status Don't translate the XML tags !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "A máquina definida no perfil {0} ({1}) não equivale à sua máquina atual ({2}), não foi possível importá-lo." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}:" -#~ msgstr "Erro ao importar perfil de {0}:" - -#~ msgctxt "@window:title" -#~ msgid "Existing Connection" -#~ msgstr "Conexão Existente" - -#~ msgctxt "@message:text" -#~ msgid "This printer/group is already added to Cura. Please select another printer/group." -#~ msgstr "Esta impressora ou grupo já foi adicionada ao Cura. Por favor selecione outra impressora ou grupo." - -#~ msgctxt "@label" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "Entre o endereço IP ou nome de sua impressora na rede." - -#~ msgctxt "@info:tooltip" -#~ msgid "Connect to a printer" -#~ msgstr "Conecta a uma impressora" - -#~ msgctxt "@title" -#~ msgid "Cura Settings Guide" -#~ msgstr "Guia de Ajustes do Cura" - -#~ msgctxt "@info:tooltip" -#~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective." -#~ msgstr "Ampliar na direção do mouse não é suportado na perspectiva ortogonal." - -#~ msgid "Orthogonal" -#~ msgstr "Ortogonal" - -#~ msgctxt "description" -#~ msgid "Manages network connections to Ultimaker 3 printers." -#~ msgstr "Gerencia conexões de rede a impressoras Ultimaker 3." - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection" -#~ msgstr "Conexão de Rede UM3" - -#~ msgctxt "description" -#~ msgid "Provides extra information and explanations about settings in Cura, with images and animations." -#~ msgstr "Provê informação extra e explicações sobre ajustes do Cura com imagens e animações." - -#~ msgctxt "name" -#~ msgid "Settings Guide" -#~ msgstr "Guia de Ajustes" - -#~ msgctxt "@item:inmenu" -#~ msgid "Cura Settings Guide" -#~ msgstr "Guia de Ajustes do Cura" - -#~ msgctxt "@info:generic" -#~ msgid "Settings have been changed to match the current availability of extruders: [%s]" -#~ msgstr "Os ajustes foram mudados para atender à atual disponibilidade de extrusores: [%s]" - -#~ msgctxt "@title:groupbox" -#~ msgid "User description" -#~ msgstr "Descrição do usuário" - -#~ msgctxt "@info" -#~ msgid "These options are not available because you are monitoring a cloud printer." -#~ msgstr "Estas opçÕes não estão disponíveis porque você está monitorando uma impressora de nuvem." - -#~ msgctxt "@label link to connect manager" -#~ msgid "Go to Cura Connect" -#~ msgstr "Ir ao Cura Connect" - -#~ msgctxt "@info" -#~ msgid "All jobs are printed." -#~ msgstr "Todos os trabalhos foram impressos." - -#~ msgctxt "@label link to connect manager" -#~ msgid "View print history" -#~ msgstr "Ver histórico de impressão" - -#~ 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.\n" -#~ "\n" -#~ "Select your printer from the list below:" -#~ msgstr "" -#~ "Para imprimir diretamente para sua impressora pela rede, por favor se certifique que a impressora esteja conectada na rede usando um cabo de rede ou conectando sua impressora na rede WIFI. Se você não conectar o Cura à sua impressora, você ainda pode usar uma unidade USB para transferir arquivos G-Code para sua impressora.\n" -#~ "\n" -#~ "Selecione sua impressora da lista abaixo:" - -#~ 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." -#~ msgstr "" -#~ "Por favor certifique-se que sua impressora está conectada:\n" -#~ "- Verifique se a impressora está ligada.\n" -#~ "- Verifique se a impressora está conectada à rede." - -#~ msgctxt "@option:check" -#~ msgid "See only current build plate" -#~ msgstr "Ver somente a plataforma de impressão atual" - -#~ msgctxt "@action:button" -#~ msgid "Arrange to all build plates" -#~ msgstr "Posicionar em todas as plataformas de impressão" - -#~ msgctxt "@action:button" -#~ msgid "Arrange current build plate" -#~ msgstr "Reposicionar a plataforma de impressão atual" - -#~ msgctxt "description" -#~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)." -#~ msgstr "Permite salvar a fatia resultante como um arquivo X3G, para suportar impressoras que leem este formato (Malyan, Makerbot e outras impressoras baseadas em Sailfish)." - -#~ msgctxt "name" -#~ msgid "X3GWriter" -#~ msgstr "Gerador de X3G" - -#~ msgctxt "description" -#~ msgid "Reads SVG files as toolpaths, for debugging printer movements." -#~ msgstr "Lê arquivos SVG como caminhos do extrusor, para depurar movimentos da impressora." - -#~ msgctxt "name" -#~ msgid "SVG Toolpath Reader" -#~ msgstr "Leitor de Toolpath SVG" - -#~ msgctxt "@item:inmenu" -#~ msgid "Changelog" -#~ msgstr "Registro de Alterações" - -#~ msgctxt "@item:inmenu" -#~ msgid "Show Changelog" -#~ msgstr "Exibir registro de alterações" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to remote cluster" -#~ msgstr "Enviando dados ao cluster remoto" - -#~ msgctxt "@info:status" -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Conectar à Ultimaker Cloud" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymized usage statistics." -#~ msgstr "O Cura coleta estatísticas anônimas de uso." - -#~ msgctxt "@info:title" -#~ msgid "Collecting Data" -#~ msgstr "Coletando Dados" - -#~ msgctxt "@action:button" -#~ msgid "More info" -#~ msgstr "Mais informações" - -#~ msgctxt "@action:tooltip" -#~ msgid "See more information on what data Cura sends." -#~ msgstr "Ver mais informações sobre os dados enviados pelo Cura." - -#~ msgctxt "@action:button" -#~ msgid "Allow" -#~ msgstr "Permitir" - -#~ msgctxt "@action:tooltip" -#~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." -#~ msgstr "Permite que o Cura envie estatísticas anônimas de uso para ajudar a priorizar futuras melhorias ao software. Algumas de suas preferências e ajustes são enviados junto à versão atual do Cura e um hash dos modelos que estão sendo fatiados." - -#~ msgctxt "@item:inmenu" -#~ msgid "Evaluation" -#~ msgstr "Avaliação" - -#~ msgctxt "@info:title" -#~ msgid "Network enabled printers" -#~ msgstr "Impressoras habilitadas em rede" - -#~ msgctxt "@info:title" -#~ msgid "Local printers" -#~ msgstr "Impressoras locais" - -#~ msgctxt "@info:backup_failed" -#~ msgid "Tried to restore a Cura backup that does not match your current version." -#~ msgstr "Tentativa de restauração de backup do Cura que não corresponde à versão atual." - -#~ msgctxt "@title" -#~ msgid "Machine Settings" -#~ msgstr "Ajustes da Máquina" - -#~ msgctxt "@label" -#~ msgid "Printer Settings" -#~ msgstr "Ajustes da Impressora" - -#~ msgctxt "@option:check" -#~ msgid "Origin at center" -#~ msgstr "Origem no centro" - -#~ msgctxt "@option:check" -#~ msgid "Heated bed" -#~ msgstr "Mesa aquecida" - -#~ msgctxt "@label" -#~ msgid "Printhead Settings" -#~ msgstr "Ajustes da Cabeça de Impressão" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Distância da esquerda da cabeça de impressão ao centro do bico. Usado para prevenir colisões entre impressões anteriores e a cabeça ao imprimir \"Um de cada Vez\"." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Distância da frente da cabeça de impressão ao centro do bico. Usado para prevenir colisões entre impressões anteriores e a cabeça ao imprimir \"Um de cada Vez\"." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Distância da direita da cabeça de impressão ao centro do bico. Usado para prevenir colisões entre impressões anteriores e a cabeça ao imprimir \"Um de cada Vez\"." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Distância da traseira da cabeça de impressão ao centro do bico. Usado para prevenir colisões entre impressões anteriores e a cabeça ao imprimir \"Um de cada Vez\"." - -#~ msgctxt "@label" -#~ msgid "Gantry height" -#~ msgstr "Altura do eixo" - -#~ msgctxt "@tooltip" -#~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." -#~ msgstr "A diferença de altura entre a ponta do bico e o sistema de eixos X e Y. Usado para prevenir colisões entre impressões e a cabeça ao imprimir \"Um de cada Vez\"." - -#~ msgctxt "@label" -#~ msgid "Start G-code" -#~ msgstr "G-Code Inicial" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very start." -#~ msgstr "Comandos de G-Code a serem executados no início da impressão." - -#~ msgctxt "@label" -#~ msgid "End G-code" -#~ msgstr "G-Code Final" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very end." -#~ msgstr "Comandos de G-Code a serem executados no final da impressão." - -#~ msgctxt "@label" -#~ msgid "Nozzle Settings" -#~ msgstr "Ajustes do Bico" - -#~ msgctxt "@tooltip" -#~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." -#~ msgstr "O diâmetro nominal do filamento suportado pela impressora. O diâmetro exato será sobreposto pelo material e/ou perfil." - -#~ msgctxt "@label" -#~ msgid "Extruder Start G-code" -#~ msgstr "G-Code Inicial do Extrusor" - -#~ msgctxt "@label" -#~ msgid "Extruder End G-code" -#~ msgstr "G-Code Final do Extrusor" - -#~ msgctxt "@label" -#~ msgid "Changelog" -#~ msgstr "Registro de alterações" - -#~ msgctxt "@title:window" -#~ msgid "User Agreement" -#~ msgstr "Termos de Acordo do Usuário" - -#~ msgctxt "@alabel" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "Introduza o endereço IP ou hostname da sua impressora na rede." - -#~ msgctxt "@info" -#~ msgid "Please select a network connected printer to monitor." -#~ msgstr "Por favor selecione uma impressora conectada à rede para monitorar." - -#~ msgctxt "@info" -#~ msgid "Please connect your Ultimaker printer to your local network." -#~ msgstr "Por favor conecte sua impressora Ultimaker à sua rede local." - -#~ msgctxt "@text:window" -#~ msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent." -#~ msgstr "O Cura envia dados anonimamente para a Ultimaker de modo a aprimorar a qualidade de impressão e experiência de usuário. Abaixo há um exemplo de todos os dados que são enviados." - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send this data" -#~ msgstr "Não desejo enviar estes dados" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending this data to Ultimaker and help us improve Cura" -#~ msgstr "Permitir enviar estes dados à Ultimaker para ajudar a melhorar o Cura" - -#~ msgctxt "@label" -#~ msgid "No print selected" -#~ msgstr "Nenhuma impressão selecionada" - -#~ msgctxt "@info:tooltip" -#~ 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 "Por default, pixels brancos representam pontos altos da malha e pontos pretos representam pontos baixos da malha. Altere esta opção para inverter o comportamento tal que pixels pretos representem pontos altos da malha e pontos brancos representam pontos baixos da malha." - -#~ msgctxt "@title" -#~ msgid "Select Printer Upgrades" -#~ msgstr "Seleccionar Atualizações da Impressora" - -#~ msgctxt "@label" -#~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "Selecione qual extrusor a usar para o suporte. Isto construirá estruturas de suportes abaixo do modelo para prevenir que o modelo desabe ou seja impresso no ar." - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "Este perfil de qualidade não está disponível para sua configuração atual de material e bico. Por favor altere-os para habilitar este perfil de qualidade" - -#~ msgctxt "@label shown when we load a Gcode file" -#~ msgid "Print setup disabled. G code file can not be modified." -#~ msgstr "Configuração de impressão desabilitada. Arquivo de G-Code não pode ser modificado." - -#~ msgctxt "@label" -#~ msgid "See the material compatibility chart" -#~ msgstr "Veja o diagrama de compatibilidade de material" - -#~ msgctxt "@label" -#~ msgid "View types" -#~ msgstr "Ver tipos" - -#~ msgctxt "@label" -#~ msgid "Hi " -#~ msgstr "Oi " - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to material profiles from leading brands" -#~ msgstr "" -#~ "- Envia trabalhos de impressão para impressoras Ultimaker fora da sua rede local\n" -#~ "- Guarda seus ajustes do Ultimaker Cura na nuvem para uso em qualquer lugar\n" -#~ "- Obtém acesso exclusivo a perfis de material de marcas reconhecidas" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Unable to Slice" -#~ msgstr "Não Foi Possível Fatiar" - -#~ msgctxt "@label" -#~ msgid "Time specification" -#~ msgstr "Especificação de tempo" - -#~ msgctxt "@label" -#~ msgid "Material specification" -#~ msgstr "Especificação de material" - -#~ msgctxt "@title:tab" -#~ msgid "Add a printer to Cura" -#~ msgstr "Adiciona uma impressora ao Cura" - -#~ msgctxt "@title:tab" -#~ msgid "" -#~ "Select the printer you want to use from the list below.\n" -#~ "\n" -#~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog." -#~ msgstr "" -#~ "Selecione a impressora que deseja usar da lista abaixo.\n" -#~ "\n" -#~ "Se sua impressora não está na lista, use a \"Impressora FFF Personalizada\" da categoria \"Personalizado\" e ajuste de acordo com a sua impressora no diálogo a seguir." - -#~ msgctxt "@label" -#~ msgid "Printer Name" -#~ msgstr "Nome da Impressora" - -#~ msgctxt "@action:button" -#~ msgid "Add Printer" -#~ msgstr "Adicionar Impressora" - -#~ msgid "Modify G-Code" -#~ msgstr "Modificar G-Code" - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." -#~ msgstr "Nada a fatiar porque nenhum dos modelos cabe no volume de impressão. Por favor redimensione ou rotacione os modelos para caberem." - -#~ msgctxt "@info:status" -#~ msgid "The selected material is incompatible with the selected machine or configuration." -#~ msgstr "O material selecionado é incompatível com a máquina ou configuração selecionada." - -#~ msgctxt "@info:title" -#~ msgid "Incompatible Material" -#~ msgstr "Material Incompatível" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "Falha ao importa perfil de {0}: {1}" - -#~ msgctxt "@title" -#~ msgid "Toolbox" -#~ msgstr "Ferramentas" - -#~ msgctxt "@label" -#~ msgid "Not available" -#~ msgstr "Não disponível" - -#~ msgctxt "@label" -#~ msgid "Unreachable" -#~ msgstr "Inacessível" - -#~ msgctxt "@label" -#~ msgid "Available" -#~ msgstr "Disponível" - -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "Preparando" - -#~ msgctxt "@label:status" -#~ msgid "Pausing" -#~ msgstr "Pausando" - -#~ msgctxt "@label:status" -#~ msgid "Resuming" -#~ msgstr "Continuando" - -#~ msgctxt "@label" -#~ msgid "Waiting for: Unavailable printer" -#~ msgstr "Aguardando por: Impressora indisponível" - -#~ msgctxt "@label" -#~ msgid "Waiting for: First available" -#~ msgstr "Aguardando por: A primeira disponível" - -#~ msgctxt "@label" -#~ msgid "Waiting for: " -#~ msgstr "Aguardando por: " - -#~ msgctxt "@label" -#~ msgid "Configuration change" -#~ msgstr "Alteração de configuração" - -#~ msgctxt "@label" -#~ msgid "The assigned printer, %1, requires the following configuration change(s):" -#~ msgstr "A impressora atribuída, %1, requer as seguintes alterações de configuração:" - -#~ msgctxt "@label" -#~ msgid "Override" -#~ msgstr "Sobrepôr" - -#~ msgctxt "@label" -#~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?" -#~ msgstr "Iniciar um trabalho de impressão com configuração incompatível pode danificar sua impressora 3D. Voce tem certeza que quer sobrepôr a configuração e imprimir %1?" - -#~ msgctxt "@window:title" -#~ msgid "Override configuration configuration and start print" -#~ msgstr "Sobrepôr configuração e iniciar impressão" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage queue" -#~ msgstr "Gerenciar fila" - -#~ msgctxt "@label" -#~ msgid "Printing" -#~ msgstr "Imprimindo" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage printers" -#~ msgstr "Gerenciar impressoras" - -#~ msgctxt "@action:button" -#~ msgid "Activate Configuration" -#~ msgstr "Ativar Configuração" - -#~ msgctxt "@info:tooltip" -#~ msgid "Load the configuration of the printer into Cura" -#~ msgstr "Carrega a configuração da impressora no Cura" - -#~ msgctxt "@label" -#~ msgid "Show Travels" -#~ msgstr "Exibir Percursos" - -#~ msgctxt "@label" -#~ msgid "Show Helpers" -#~ msgstr "Exibir Assistentes" - -#~ msgctxt "@label" -#~ msgid "Show Shell" -#~ msgstr "Exibir Perímetro" - -#~ msgctxt "@label" -#~ msgid "Show Infill" -#~ msgstr "Exibir Preenchimento" - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send these data" -#~ msgstr "Eu não quero enviar estes dados" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending these data to Ultimaker and help us improve Cura" -#~ msgstr "Permite o envio destes dados para a Ultimaker e nos auxilia a aprimorar o Cura" - -#~ msgctxt "@label" -#~ msgid "Printer type:" -#~ msgstr "Tipo de impressora:" - -#~ msgctxt "@label" -#~ msgid "Connection:" -#~ msgstr "Conexão:" - -#~ msgctxt "@label" -#~ msgid "State:" -#~ msgstr "Estado:" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for a printjob" -#~ msgstr "Esperando um trabalho de impressão" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for someone to clear the build plate" -#~ msgstr "Esperando que alguém esvazie a mesa de impressão" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Aborting print..." -#~ msgstr "Abortando impressão..." - -#~ msgctxt "@label" -#~ msgid "Protected profiles" -#~ msgstr "Perfis Protegidos" - -#~ msgctxt "@label" -#~ msgid "Printer Name:" -#~ msgstr "Nome da Impressora:" - -#~ msgctxt "@label" -#~ msgid "Profile:" -#~ msgstr "Perfil:" - -#~ msgctxt "@label:textbox" -#~ msgid "Search..." -#~ msgstr "Buscar..." - -#~ msgctxt "@action:inmenu" -#~ msgid "Collapse All" -#~ msgstr "Encolher Todos" - -#~ msgctxt "@action:inmenu" -#~ msgid "Expand All" -#~ msgstr "Expandir Todos" - -#~ msgctxt "@label:header configurations" -#~ msgid "Available configurations" -#~ msgstr "Configurações disponíveis" - -#~ msgctxt "@label:extruder label" -#~ msgid "Extruder" -#~ msgstr "Extrusor" - -#~ msgctxt "@label:extruder label" -#~ msgid "Yes" -#~ msgstr "Sim" - -#~ msgctxt "@label:extruder label" -#~ msgid "No" -#~ msgstr "Não" - -#~ msgctxt "@label:listbox" -#~ msgid "Print Setup" -#~ msgstr "Configuração de Impressão" - -#~ msgctxt "@label:listbox" -#~ msgid "" -#~ "Print Setup disabled\n" -#~ "G-code files cannot be modified" -#~ msgstr "" -#~ "Configuração de Impressão desabilitada\n" -#~ "Arquivos G-Code não podem ser modificados" - -#~ msgctxt "@label Hours and minutes" -#~ msgid "00h 00min" -#~ msgstr "00h 00min" - -#~ msgctxt "@tooltip" -#~ msgid "Time specification" -#~ msgstr "Especificação de tempo" - -#~ msgctxt "@label" -#~ msgid "Cost specification" -#~ msgstr "Especificação de custo" - -#~ msgctxt "@label" -#~ msgid "Total:" -#~ msgstr "Total:" - -#~ msgctxt "@tooltip" -#~ msgid "Recommended Print Setup

    Print with the recommended settings for the selected printer, material and quality." -#~ msgstr "Configuração Recomendada de Impressão

    Imprimir com os ajustes recomendados para a impressora, material e qualidade selecionados." - -#~ msgctxt "@tooltip" -#~ msgid "Custom Print Setup

    Print with finegrained control over every last bit of the slicing process." -#~ msgstr "Configuração de Impressão Personalizada

    Imprimir com controle fino sobre cada parte do processo de fatiamento." - -#~ msgctxt "@action:inmenu menubar:help" -#~ msgid "Show Engine &Log..." -#~ msgstr "Exibir o Registro do Motor de Fatiamento (&L)..." - -#~ msgctxt "@action:menu" -#~ msgid "Browse packages..." -#~ msgstr "Navegar pacotes..." - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "Expand/Collapse Sidebar" -#~ msgstr "Expandir/Encolher Barra Lateral" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3D model" -#~ msgstr "Por favor carregue um modelo 3D" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Ready to slice" -#~ msgstr "Pronto para fatiar" - -#~ msgctxt "@label:PrintjobStatus %1 is target operation" -#~ msgid "Ready to %1" -#~ msgstr "Pronto para %1" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Slicing unavailable" -#~ msgstr "Fatiamento indisponível" - -#~ msgctxt "@info:tooltip" -#~ msgid "Slice current printjob" -#~ msgstr "Fatiar trabalho de impressão atual" - -#~ msgctxt "@info:tooltip" -#~ msgid "Cancel slicing process" -#~ msgstr "Cancelar processo de fatiamento" - -#~ msgctxt "@label:Printjob" -#~ msgid "Prepare" -#~ msgstr "Preparar" - -#~ msgctxt "@label:Printjob" -#~ msgid "Cancel" -#~ msgstr "Cancelar" - -#~ msgctxt "@info:tooltip" -#~ msgid "Select the active output device" -#~ msgstr "Selecione o dispositivo de saída ativo" - -#~ msgctxt "@title:menu" -#~ msgid "&View" -#~ msgstr "&Ver" - -#~ msgctxt "@title:menu" -#~ msgid "&Settings" -#~ msgstr "Aju&stes" - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "&Toolbox" -#~ msgstr "Ferramen&tas" - -#~ msgctxt "@action:button" -#~ msgid "Open File" -#~ msgstr "Abrir arquivo" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "Este perfil de qualidade não está disponível para seu material e sua configuração de bicos atuais. Por favor altere-os para abilitar este perfil de qualidade" - -#~ msgctxt "@label" -#~ msgid "Print Speed" -#~ msgstr "Velocidade de Impressão" - -#~ msgctxt "@label" -#~ msgid "Slower" -#~ msgstr "Mais Lento" - -#~ msgctxt "@label" -#~ msgid "Faster" -#~ msgstr "Mais Rápido" - -#~ msgctxt "@label" -#~ msgid "Enable gradual" -#~ msgstr "Habilitar gradual" - -#~ msgctxt "@label" -#~ msgid "Generate Support" -#~ msgstr "Gerar Suportes" - -#~ msgctxt "@label" -#~ msgid "Build Plate Adhesion" -#~ msgstr "Aderência à Mesa de Impressão" - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints?
    Read the Ultimaker Troubleshooting Guides" -#~ msgstr "Precisa de ajuda para melhorar sua impressões?
    Leia os Guias de Resolução de Problema da Ultimaker" - -#~ msgctxt "@title:window" -#~ msgid "Engine Log" -#~ msgstr "Registro do Motor de Fatiamento" - -#~ msgctxt "@label" -#~ msgid "Printer type" -#~ msgstr "Tipo de impressora" - -#~ msgctxt "@label" -#~ msgid "Use glue with this material combination" -#~ msgstr "Use cola com esta combinação de materiais" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "Verificar compatibilidade" - -#~ msgctxt "@tooltip" -#~ msgid "Click to check the material compatibility on Ultimaker.com." -#~ msgstr "Clique para verificar a compatibilidade do material em Ultimaker.com." - -#~ msgctxt "description" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "Mostra alterações desde a última versão verificada." - -#~ msgctxt "name" -#~ msgid "Changelog" -#~ msgstr "Registro de Alterações" - -#~ msgctxt "description" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "Cria um perfil de alterações achatado." - -#~ msgctxt "name" -#~ msgid "Profile flatener" -#~ msgstr "Achatador de Perfil" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license." -#~ msgstr "Perguntar ao usuário uma vez se concorda com nossa licença." - -#~ msgctxt "name" -#~ msgid "UserAgreement" -#~ msgstr "Acordo de Usuário" - -#~ msgctxt "@warning:status" -#~ msgid "Please generate G-code before saving." -#~ msgstr "Por favor gere o G-Code antes de salvar." - -#~ msgctxt "@action" -#~ msgid "Upgrade Firmware" -#~ msgstr "Atualizar Firmware" - -#~ msgctxt "@label unknown material" -#~ msgid "Unknown" -#~ msgstr "Desconhecido" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "No custom profile to import in file {0}" -#~ msgstr "Não há perfil personalizado para importar no arquivo {0}" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "This profile {0} contains incorrect data, could not import it." -#~ msgstr "Este perfil {0} contém dados incorretos, não foi possível importá-lo." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "A máquina definida no perfil {0} ({1}) não corresponde à sua máquina atual ({2}), não foi possível importá-la." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall " -#~ msgstr "Confirme a deinstalação" - -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - -#~ msgctxt "@title" -#~ msgid "Upgrade Firmware" -#~ msgstr "Atualizar Firmware" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Imprimir com a WiFi-Box do Doodle3D" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Imprimir com a WiFi-Box do Doodle3D" - -#~ msgctxt "@info:status" -#~ msgid "Connecting to Doodle3D Connect" -#~ msgstr "Conectando ao Doodle3D Connect" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to Doodle3D Connect" -#~ msgstr "Enviando dados ao Doodle3D Connect" - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -#~ msgstr "Incapaz de enviar dados ao Doodle3D Connect. Há outro trabalho ainda ativo?" - -#~ msgctxt "@info:status" -#~ msgid "Storing data on Doodle3D Connect" -#~ msgstr "Armazenando dados no Doodle3D Connect" - -#~ msgctxt "@info:status" -#~ msgid "File sent to Doodle3D Connect" -#~ msgstr "Arquivo enviado ao Doodle3D Connect" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect..." -#~ msgstr "Abrir Connect..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Open the Doodle3D Connect web interface" -#~ msgstr "Abrir a interface web do Doodle3D Connect" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Blender file" -#~ msgstr "Arquivo do Blender" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Could not export using \"{}\" quality!\n" -#~ "Felt back to \"{}\"." -#~ msgstr "" -#~ "Não foi possível exportar usando qualidade \"{}\"!\n" -#~ "Foi usada a \"{}\"." - -#~ msgctxt "@label" -#~ msgid "Contact" -#~ msgstr "Contato" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." -#~ msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras Ultimaker 3." - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -#~ msgstr "Esta impressora hospeda um grupo de %1 impressoras Ultimaker 3." - -#~ msgctxt "@label: arg 1 is group name" -#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "%1 não está configurada para hospedar um grupo de impressora Ultimaker 3 conectadas" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Add/Remove printers" -#~ msgstr "Adicionar/Remover impressoras" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "Abre a página de trabalhos de impressão com seu navegador default." - -#~ msgctxt "@action:button" -#~ msgid "View print jobs" -#~ msgstr "Visualizar trabalhos de impressão" - -#~ msgctxt "@label:status" -#~ msgid "Preparing to print" -#~ msgstr "Preparando para imprimir" - -#~ msgctxt "@label:status" -#~ msgid "Available" -#~ msgstr "Disponível" - -#~ msgctxt "@label:status" -#~ msgid "Lost connection with the printer" -#~ msgstr "Conexão à impressora perdida" - -#~ msgctxt "@label:status" -#~ msgid "Unknown" -#~ msgstr "Desconhecido" - -#~ msgctxt "@label:status" -#~ msgid "Disabled" -#~ msgstr "Desabilitado" - -#~ msgctxt "@label:status" -#~ msgid "Reserved" -#~ msgstr "Reservado" - -#~ msgctxt "@label" -#~ msgid "Preparing to print" -#~ msgstr "Preparando para imprimir" - -#~ msgctxt "@label:status" -#~ msgid "Print aborted" -#~ msgstr "A impressão foi interrompida" - -#~ msgctxt "@label" -#~ msgid "Not accepting print jobs" -#~ msgstr "Não aceitando trabalhos de impressão" - -#~ msgctxt "@label" -#~ msgid "Finishes at: " -#~ msgstr "Termina em: " - -#~ msgctxt "@label" -#~ msgid "Clear build plate" -#~ msgstr "Esvaziar a mesa de impressão" - -#~ msgctxt "@label" -#~ msgid "Waiting for configuration change" -#~ msgstr "Esperando alteração de configuração" - -#~ msgctxt "@title" -#~ msgid "Print jobs" -#~ msgstr "Trabalhos de impressão" - -#~ msgctxt "@label:title" -#~ msgid "Printers" -#~ msgstr "Impressoras" - -#~ msgctxt "@action:button" -#~ msgid "View printers" -#~ msgstr "Visualizar impressoras" - -#~ msgctxt "@label:" -#~ msgid "Pause" -#~ msgstr "Pausar" - -#~ msgctxt "@label:" -#~ msgid "Resume" -#~ msgstr "Continuar" - -#~ msgctxt "@label:" -#~ msgid "Abort Print" -#~ msgstr "Abortar Impressão" - -#~ msgctxt "@option:openProject" -#~ msgid "Always ask" -#~ msgstr "Sempre perguntar" - -#~ msgctxt "@label" -#~ msgid "Override Profile" -#~ msgstr "Sobrescrever Perfil" - -#~ msgctxt "@info:tooltip" -#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -#~ msgstr "Novos modelos carregados devem ser posicionados na plataforma de impressão? Usado em conjunção com plataforma múltipla de impressão (EXPERIMENTAL)" - -#~ msgctxt "@option:check" -#~ msgid "Do not arrange objects on load" -#~ msgstr "Não posicionar objetos ao carregar." - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Save Selection to File" -#~ msgstr "Salvar &Seleção em Arquivo" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &As..." -#~ msgstr "S&alvar Como..." - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &Project..." -#~ msgstr "Salvar &Projeto..." - -#~ msgctxt "@label" -#~ msgid "Use adhesion sheet or glue with this material combination" -#~ msgstr "Use camada de aderência ou cola com esta combinação de material" - -#~ msgctxt "description" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "Aceita G-Code e o envia através da WiFi para uma WiFi-Box Doodle3D." - -#~ msgctxt "name" -#~ msgid "Doodle3D WiFi-Box" -#~ msgstr "WiFi-Box Doodle3D" - -#~ msgctxt "description" -#~ msgid "Provides an edit window for direct script editing." -#~ msgstr "Provê uma janela de edição para edição direta de script." - -#~ msgctxt "name" -#~ msgid "Live scripting tool" -#~ msgstr "Ferramenta de scripting integrada" - -#~ msgctxt "description" -#~ msgid "Helps to open Blender files directly in Cura." -#~ msgstr "Ajuda a abrir arquivos do Blender diretamente no Cura." - -#~ msgctxt "name" -#~ msgid "Blender Integration (experimental)" -#~ msgstr "Integração ao Blender (experimental)" - -#~ msgctxt "@info:title" -#~ msgid "Model Checker Warning" -#~ msgstr "Alerta de Verificador de Modelo" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n" -#~ "Tips that may be useful to improve the print quality:\n" -#~ "1) Use rounded corners.\n" -#~ "2) Turn the fan off (only if there are no tiny details on the model).\n" -#~ "3) Use a different material." -#~ msgstr "" -#~ "Alguns modelos podem não ser impressos otimamente devido ao tamanho do objeto e material escolhido para os modelos: {model_names}.\n" -#~ "Dicas que podem ser úteis para melhorar a qualidade de impressão:\n" -#~ "1) Use cantos arredondados.\n" -#~ "2) Desligue a ventoinha (somente no caso de não haver detalhes pequenos no modelo).\n" -#~ "3) Use material diferente." - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "O SolidWorks relatou erros ao abrir o arquivo. Recomenda-se resolver tais erros dentro do próprio SolidWorks." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ "Thanks!" -#~ msgstr "" -#~ "Não foram encontrados modelos dentro do seu desenho. Poderia por favor verificar seu conteúdo novamente e assegurar-se que pelo menos uma parte ou montagem está inclusa?\n" -#~ "\n" -#~ "Obrigado!" - -#~ 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" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "Foi encontrada mais de uma parte ou montagem dentro do seu desenho. Atualmente somente desenhos com exatamente uma parte ou montagem dentro são suportados.\n" -#~ "\n" -#~ "Desculpe!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks part file" -#~ msgstr "Arquivo de parte de SolidWorks" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks assembly file" -#~ msgstr "Arquivo de montagem de SolidWorks" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks drawing file" -#~ msgstr "Arquivo de desenho do SolidWorks" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "Caro cliente,\n" -#~ "Não foi encontrada uma intalação válida de SolidWorks no seu sistema. Isso significa que ou o SolidWorks não está instalado ou você nào tem licença válida. Por favor se assegure que rodar o Solidworks funciona sem problemas e/ou contate seu suporte.\n" -#~ "\n" -#~ "Atenciosamente\n" -#~ " - Thomas Karl Pietrowski" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "Caro cliente,\n" -#~ "Você está no momento rodando este complemento em um sistema operacional diferente de Windows. Este complemento só funcionará no Windows com o SolidWorks instalado e com licença válida. Por favor instale este complemento em uma máquina Windows com o SolidWorks instalado.\n" -#~ "\n" -#~ "Atenciosamente\n" -#~ " - Thomas Karl Pietrowski" - -#~ msgid "Configure" -#~ msgstr "Configure" - -#~ msgid "Installation guide for SolidWorks macro" -#~ msgstr "Guia de Instalação para macro do SolidWorks" - -#~ msgctxt "@action:button" -#~ msgid "Disable" -#~ msgstr "Desabilitar" - -#~ msgctxt "@action:tooltip" -#~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences." -#~ msgstr "Não permitir que o Cura envie estatísticas anônimas de uso. Você pode habilitar novamente nas preferências." - -#~ msgid "Install" -#~ msgstr "Instalar" - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory." -#~ msgstr "Erro ao copiar arquivos de complementos Siemens NX. Por favor verifique seu UGII_USER_DIR. Ele não está configurado para um diretório." - -#~ msgid "Successfully installed Siemens NX Cura plugin." -#~ msgstr "Plugin Siemens NX do Cura instalado com sucesso." - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR." -#~ msgstr "Erro ao copiar arquivos de complementos Siemens NX. Por favor, verifique seu UGII_USER_DIR." - -#~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX." -#~ msgstr "Erro ao instalar arquivos de complementos Siemens NX. Não foi possível ajustar a variável de ambiente UGII_USER_DIR para o Simenes NX." - -#~ msgctxt "@info:status" -#~ msgid "Failed to get plugin ID from {0}" -#~ msgstr "Falha ao pegar identificador do complemento de {0}" - -#~ msgctxt "@info:tile" -#~ msgid "Warning" -#~ msgstr "Aviso" - -#~ msgctxt "@window:title" -#~ msgid "Plugin browser" -#~ msgstr "Navegador de complementos" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks: Export wizard" -#~ msgstr "SolidWorks: Assistente de Exportação" - -#~ msgctxt "@action:label" -#~ msgid "Quality:" -#~ msgstr "Qualidade" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (3D-printing)" -#~ msgstr "Fina (impressão-3D)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (3D-printing)" -#~ msgstr "Baixa" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (SolidWorks)" -#~ msgstr "Fina (SolidWorks)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (SolidWorks)" -#~ msgstr "Baixa (SolidWorks)" - -#~ msgctxt "@text:window" -#~ msgid "Show this dialog again" -#~ msgstr "Mostrar este diálogo novamente" - -#~ msgctxt "@action:button" -#~ msgid "Continue" -#~ msgstr "Continuar" - -#~ msgctxt "@action:button" -#~ msgid "Abort" -#~ msgstr "Abortar" - -#~ msgctxt "@title:window" -#~ msgid "How to install Cura SolidWorks macro" -#~ msgstr "Como instalar a macro de SolidWorks do Cura" - -#~ msgctxt "@description:label" -#~ msgid "Steps:" -#~ msgstr "Passos:" - -#~ msgctxt "@action:button" -#~ msgid "" -#~ "Open the directory\n" -#~ "with macro and icon" -#~ msgstr "" -#~ "Abrir o diretório\n" -#~ "com a macro e o ícone" - -#~ msgctxt "@description:label" -#~ msgid "Instructions:" -#~ msgstr "Instruções:" - -#~ msgctxt "@action:playpause" -#~ msgid "Play" -#~ msgstr "Tocar" - -#~ msgctxt "@action:playpause" -#~ msgid "Pause" -#~ msgstr "Pausar" - -#~ msgctxt "@action:button" -#~ msgid "Previous Step" -#~ msgstr "Passo Anterior" - -#~ msgctxt "@action:button" -#~ msgid "Done" -#~ msgstr "Finalizado" - -#~ msgctxt "@action:button" -#~ msgid "Next Step" -#~ msgstr "Passo Seguinte" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks plugin: Configuration" -#~ msgstr "Complemento do SolidWorks: Configuração" - -#~ msgctxt "@title:tab" -#~ msgid "Conversion settings" -#~ msgstr "Ajustes de conversão" - -#~ msgctxt "@label" -#~ msgid "First choice:" -#~ msgstr "Primeira escolha:" - -#~ msgctxt "@text:menu" -#~ msgid "Latest installed version (Recommended)" -#~ msgstr "Última versão instalada (Recomendado)" - -#~ msgctxt "@text:menu" -#~ msgid "Default version" -#~ msgstr "Versão default" - -#~ msgctxt "@label" -#~ msgid "Show wizard before opening SolidWorks files" -#~ msgstr "Mostrar o assistente antes de abrir arquivos do SolidWorks" - -#~ msgctxt "@label" -#~ msgid "Automatically rotate opened file into normed orientation" -#~ msgstr "Rotacionar automaticamente o arquivo aberto em orientação normalizada" - -#~ msgctxt "@title:tab" -#~ msgid "Installation(s)" -#~ msgstr "Instalações" - -#~ msgctxt "@label" -#~ msgid "COM service found" -#~ msgstr "Serviço COM encontrado" - -#~ msgctxt "@label" -#~ msgid "Executable found" -#~ msgstr "Executável encontrado" - -#~ msgctxt "@label" -#~ msgid "COM starting" -#~ msgstr "COM iniciando" - -#~ msgctxt "@label" -#~ msgid "Revision number" -#~ msgstr "Número de revisão" - -#~ msgctxt "@label" -#~ msgid "Functions available" -#~ msgstr "Funções disponíveis" - -#~ msgctxt "@label (%1 is object name)" -#~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?" -#~ msgstr "O novo diâmetro do material é %1 mm, o que não é compatível com a máquina atual. Deseja continuar?" - -#~ msgctxt "@action:menu" -#~ msgid "Browse plugins..." -#~ msgstr "Navegar complementos..." - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "P&lugins" -#~ msgstr "Comp&lementos" - -#~ msgctxt "@window:title" -#~ msgid "Install Plugin" -#~ msgstr "Instalar Complemento" - -#~ msgctxt "description" -#~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)" -#~ msgstr "Provê um modo de alterar as configurações da máquina (tais como volume de impressão, tamanho de bico, etc)" - -#~ msgctxt "description" -#~ msgid "Manages network connections to Ultimaker 3 printers" -#~ msgstr "Gerencia conexões de rede a impressoras Ultimaker 3" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations." -#~ msgstr "Te dá a possibilidade de abrir certos arquivos usando o SolidWorks. A conversão é feita por este complemento junto a personalizações adicionais." - -#~ msgctxt "name" -#~ msgid "SolidWorks Integration" -#~ msgstr "Integração ao SolidWorks" - -#~ msgctxt "description" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "Automaticamente salva Preferências, Máquinas e Perfis após alterações." - -#~ msgctxt "name" -#~ msgid "Auto Save" -#~ msgstr "Auto-Salvar" - -#~ msgctxt "description" -#~ msgid "Helps you to install an 'export to Cura' button in Siemens NX." -#~ msgstr "Auxilia na instalação de um botão 'exportar para o Cura' no Siemens NX." - -#~ msgctxt "name" -#~ msgid "Siemens NX Integration" -#~ msgstr "Integração ao Siemens NX" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new plugins." -#~ msgstr "Busca, gerencia e instala novos complementos." - -#~ msgctxt "name" -#~ msgid "Plugin Browser" -#~ msgstr "Navegador de Complementos" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license" -#~ msgstr "Pergunta ao usuário uma única vez sobre concordância com a licença" - -#~ msgctxt "description" -#~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)" -#~ msgstr "Provê ações de máquina para Ultimaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc)" - -#~ msgctxt "@item:inlistbox" -#~ msgid "GCode File" -#~ msgstr "Arquivo G-Code" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer is busy or not connected." -#~ msgstr "Incapaz de iniciar novo trabalho porque a impressora está ocupada ou não conectada." - -#~ msgctxt "@info:title" -#~ msgid "Printer Unavailable" -#~ msgstr "Impressora Não Disponível" - -#~ msgctxt "@info:status" -#~ msgid "This printer does not support USB printing because it uses UltiGCode flavor." -#~ msgstr "Esta impressora não suporta impressão USB porque usa G-Code UltiGCode." - -#~ msgctxt "@info:title" -#~ msgid "USB Printing" -#~ msgstr "Impressão USB" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer does not support usb printing." -#~ msgstr "Incapaz de iniciar um novo trabalho porque a impressora não suporta impressão USB." - -#~ msgctxt "@info" -#~ msgid "Unable to update firmware because there are no printers connected." -#~ msgstr "Incapaz de atualizar firmware porque não há impressoras conectadas." - -#~ msgctxt "@info" -#~ msgid "Could not find firmware required for the printer at %s." -#~ msgstr "Não foi possível encontrar o firmware requerido para a impressora em %s." - -#~ msgctxt "@info:title" -#~ msgid "Printer Firmware" -#~ msgstr "Firmware da Impressora" - -#~ msgctxt "@info:title" -#~ msgid "Connection status" -#~ msgstr "Status da Conexão" - -#~ msgctxt "@info:title" -#~ msgid "Connection Status" -#~ msgstr "Status da Conexão" - -#~ msgctxt "@info:status" -#~ msgid "Access request was denied on the printer." -#~ msgstr "Pedido de acesso foi negado na impressora." - -#~ msgctxt "@info:status" -#~ msgid "Access request failed due to a timeout." -#~ msgstr "Pedido de acesso falhou devido a tempo esgotado." - -#~ msgctxt "@info:status" -#~ msgid "The connection with the network was lost." -#~ msgstr "A conexão à rede foi perdida." - -#~ msgctxt "@info:status" -#~ msgid "The connection with the printer was lost. Check your printer to see if it is connected." -#~ msgstr "A conexão com a impressora foi perdida. Verifique se sua impressora está conectada." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s." -#~ msgstr "Incapaz de iniciar um novo trabalho de impressão, a impressora está ocupada. O estado atual da impressora é %s." - -#~ msgctxt "@info:title" -#~ msgid "Printer Status" -#~ msgstr "Status da Impressora" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}" -#~ msgstr "Incapaz de iniciar um novo trabalho de impressão. Nenhum Printcore carregado no slot {0}" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No material loaded in slot {0}" -#~ msgstr "Incapaz de iniciar um novo trabalho de impressão. Não há material carregado no slot {0}" - -#~ msgctxt "@label" -#~ msgid "Not enough material for spool {0}." -#~ msgstr "Não há material suficiente para o carretel {0}." - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "PrintCore Diferente (Cura: {0}, Impressora: {1}) selecionado para o extrusor {2}" - -#~ msgctxt "@label" -#~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "O PrintCore {0} não está calibrado adequadamente. A calibração XY precisa ser executada na impressora." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to printer. Is another job still active?" -#~ msgstr "Incapaz de enviar dados à impressora. Há outro trabalho de impressão ativo?" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Print aborted. Please check the printer" -#~ msgstr "Impressão abortada. Por favor verifique a impressora" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Pausing print..." -#~ msgstr "Pausando impressão..." - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Resuming print..." -#~ msgstr "Continuando impressão..." - -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras Ultimaker 3 conectadas." - -#~ msgctxt "Count is number of printers." -#~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers." -#~ msgstr "Esta impressora hospeda um grupo de {count} impressoras Ultimaker 3 conectadas." - -#~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate." -#~ msgstr "{printer_name} acabou de imprimir '{job_name}'. Por favor colete a impressão e confirme esvaziamento da mesa." - -#~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing." -#~ msgstr "{printer_name} está reservada para imprimir '{job_name}'. Por favor altere a configuração da impressora para combinar com este trabalho para que ela comece a imprimir." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "Incapaz de enviar novo trabalho de impressão: esta impressora 3D (ainda) não está configurada para hospedar um grupo de impressoras Ultimaker 3 conectadas." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send print job to group {cluster_name}." -#~ msgstr "Incapaz de enviar trabalho de impressão ao grupo {cluster_name}." - -#~ msgctxt "@info:status" -#~ msgid "Sent {file_name} to group {cluster_name}." -#~ msgstr "{file_name} enviado ao grupo {cluster_name}." - -#~ msgctxt "@action:button" -#~ msgid "Show print jobs" -#~ msgstr "Exibir trabalhos de impressão" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs interface in your browser." -#~ msgstr "Abrir a interface de trabalhos de impressão em seu navegador." - -#~ msgctxt "@label Printer name" -#~ msgid "Unknown" -#~ msgstr "Desconhecida" - -#~ msgctxt "@info:progress" -#~ msgid "Sending {file_name} to group {cluster_name}" -#~ msgstr "Enviando {file_name} ao grupo {cluster_name}" - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "O SolidWorks relatou problemas ao abrir seu arquivo. Recomendamos resolver tais problemas dentro do próprio SolidWorks." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ " Thanks!." -#~ msgstr "" -#~ "Não foram encontrados modelos dentro de seu desenho. Poderia verificar seu conteúdo novamente e se assegurar que uma parte ou montagem está incluída?\n" -#~ "\n" -#~ " Obrigado!." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "Foi encontrado mais de uma parte ou montagem dentro de seu desenho. Atualmente só suportamos desenhos com exatamente uma parte ou montagem dentro.\n" -#~ "\n" -#~ "Desculpe!" - -#~ msgctxt "@item:material" -#~ msgid "No material loaded" -#~ msgstr "Não há material carregado" - -#~ msgctxt "@item:material" -#~ msgid "Unknown material" -#~ msgstr "Material desconhecido" - -#~ msgctxt "@info:status Has a cancel button next to it." -#~ msgid "The selected material diameter causes the material to become incompatible with the current printer." -#~ msgstr "O diâmetro de material selecionado faz com que o material se torne incompatível com a impressora atual." - -#~ msgctxt "@action:button" -#~ msgid "Undo" -#~ msgstr "Desfazer" - -#~ msgctxt "@action" -#~ msgid "Undo changing the material diameter." -#~ msgstr "Desfaz a mudança no diâmetro do material." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} doesn't match with your current machine, could not import it." -#~ msgstr "A máquina definida no perfil {0} não corresponde à sua máquina atual, não foi possível importá-lo." - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal error has occurred. 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 "" -#~ "

    Um erro fatal ocorreu. Por favor nos envie este Relatório de Erro para consertar o problema

    \n" -#~ "

    Por favor use o botão \"Enviar relatório\" para publicar um relatório de erro automaticamente nos nossos servidores

    \n" -#~ " " - -#~ msgctxt "@label" -#~ msgid "not yet initialised
    " -#~ msgstr "ainda não inicializado
    " - -#~ msgctxt "@label" -#~ msgid "Gcode flavor" -#~ msgstr "Sabor de G-Code" - -#~ msgctxt "@label" -#~ msgid "Start Gcode" -#~ msgstr "G-Code Inicial" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very start." -#~ msgstr "Comandos de G-Code a serem executados no início da impressão." - -#~ msgctxt "@label" -#~ msgid "End Gcode" -#~ msgstr "G-Code Final" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very end." -#~ msgstr "Comandos de G-Code a serem executados no final da impressão." - -#~ msgctxt "@label" -#~ msgid "Extruder Start Gcode" -#~ msgstr "G-Code Inicial do Extrusor" - -#~ msgctxt "@label" -#~ msgid "Extruder End Gcode" -#~ msgstr "G-Code Final do Extrusor" - -#~ msgctxt "@label" -#~ msgid "Starting firmware update, this may take a while." -#~ msgstr "Iniciando atualização do firmware, isto pode demorar um pouco." - -#~ msgctxt "@label" -#~ msgid "Unknown error code: %1" -#~ msgstr "Código de erro desconhecido: %1" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@label Printer status" -#~ msgid "Unknown" -#~ msgstr "Desconhecido" - -#~ msgctxt "@title:window" -#~ msgid "Find & Update plugins" -#~ msgstr "Buscar & Atualizar complementos" - -#~ msgctxt "@label" -#~ msgid "Here you can find a list of Third Party plugins." -#~ msgstr "Aqui você pode encontrar uma lista de complementos de Terceiros." - -#~ msgctxt "@action:button" -#~ msgid "Upgrade" -#~ msgstr "Atualizar" - -#~ msgctxt "@action:button" -#~ msgid "Download" -#~ msgstr "Baixar" - -#~ msgctxt "@info:tooltip" -#~ msgid "Show caution message in gcode reader." -#~ msgstr "Exibir mensagem de advertência no leitor de g-code." - -#~ msgctxt "@option:check" -#~ msgid "Caution message in gcode reader" -#~ msgstr "Mensagem de advertência no leitor de g-code" - -#~ msgctxt "@window:title" -#~ msgid "Import Profile" -#~ msgstr "Importar Perfil" - -#~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name" -#~ msgid "Printer: %1, %2: %3" -#~ msgstr "Impressora: %1, %2: %3" - -#~ msgctxt "@action:label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "Impressora: %1" - -#~ msgctxt "@label" -#~ msgid "GCode generator" -#~ msgstr "Gerador de G-Code" - -#~ msgctxt "@action:menu" -#~ msgid "Configure setting visiblity..." -#~ msgstr "Configurar a visibilidade dos ajustes..." - -#~ msgctxt "@title:menuitem %1 is the automatically selected material" -#~ msgid "Automatic: %1" -#~ msgstr "Automático: %1" - -#~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer" -#~ msgid "Automatic: %1" -#~ msgstr "Automático: %1" - -#~ msgctxt "@info:status" -#~ msgid "No printer connected" -#~ msgstr "Nenhuma impressora conectada" - -#~ msgctxt "@tooltip" -#~ msgid "The current temperature of this extruder." -#~ msgstr "A temperatura atual deste extrusor." - -#~ msgctxt "@action:menu" -#~ msgid "Installed plugins..." -#~ msgstr "Complementos instalados..." - -#~ msgctxt "@label" -#~ msgid "Support Extruder" -#~ msgstr "Extrusor do Suporte" - -#~ msgctxt "description" -#~ msgid "Writes GCode to a file." -#~ msgstr "Escreve G-Code para aquivo." - -#~ msgctxt "name" -#~ msgid "GCode Writer" -#~ msgstr "Gerador de G-Code" - -#~ msgctxt "name" -#~ msgid "GCode Profile Reader" -#~ msgstr "Leitor de Perfis de G-Code" - -#~ msgctxt "@info:status" -#~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" -#~ msgstr "Erros apareceram ao abrir seu arquivo SolidWorks! Por favor verifique se é possível abrir seu arquivo no próprio SolidWorks sem problema também!" - -#~ msgctxt "@info:status" -#~ msgid "Error while starting %s!" -#~ msgstr "Erro ao iniciar %s!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Simulation view" -#~ msgstr "Visão simulada" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences." -#~ msgstr "O Cura coleta estatística de fatiamento anonimizadas. Você pode desabilitar isso nas preferências." - -#~ msgctxt "@action:button" -#~ msgid "Dismiss" -#~ msgstr "Fechar" - -#~ msgctxt "@menuitem" -#~ msgid "Global" -#~ msgstr "Global" - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal exception has occurred. 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 "" -#~ "

    Uma exceção fatal aocorreu. Por favor nos envie este Relatório de Erros para consertarmos o problema

    \n" -#~ "

    Por favor use o botão \"Enviar relatório\" para postar um relato de bug automaticamente em nossos servidores

    \n" -#~ " " - -#~ msgctxt "@label Cura version" -#~ msgid "Cura version: {version}
    " -#~ msgstr "Versão do Cura: {version}
    " - -#~ msgctxt "@label Platform" -#~ msgid "Platform: {platform}
    " -#~ msgstr "Plataforma: {platform}
    " - -#~ msgctxt "@label Qt version" -#~ msgid "Qt version: {qt}
    " -#~ msgstr "Versão da Qt: {qt}
    " - -#~ msgctxt "@label PyQt version" -#~ msgid "PyQt version: {pyqt}
    " -#~ msgstr "Versão da PyQt: {pyqt}
    " - -#~ msgctxt "@label OpenGL" -#~ msgid "OpenGL: {opengl}
    " -#~ msgstr "OpenGL: {opengl}
    " - -#~ msgctxt "@title:groupbox" -#~ msgid "Exception traceback" -#~ msgstr "Traceback de exceção" - -#~ msgctxt "@label" -#~ msgid "Material diameter" -#~ msgstr "Diâmetro do material" - -#~ msgctxt "@title:window" -#~ msgid "Cura SolidWorks Plugin Configuration" -#~ msgstr "Configuração do Complemento de Solidworks do Cura" - -#~ msgctxt "@action:label" -#~ msgid "Default quality of the exported STL:" -#~ msgstr "Qualidade default do STL exportado:" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always ask" -#~ msgstr "Sempre perguntar" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Fine quality" -#~ msgstr "Sempre usar qualidade Alta" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Coarse quality" -#~ msgstr "Sempre usar qualidade Baixa" - -#~ msgctxt "@title:window" -#~ msgid "Import SolidWorks File as STL..." -#~ msgstr "Importar Arquivo SolidWorks como STL..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Quality of the Exported STL" -#~ msgstr "Qualidade do STL Exportado" - -#~ msgctxt "@action:label" -#~ msgid "Quality" -#~ msgstr "Qualidade" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse" -#~ msgstr "Baixa" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine" -#~ msgstr "Alta" - -#~ msgctxt "@" -#~ msgid "No Profile Available" -#~ msgstr "Nenhum Perfil Disponível" - -#~ msgctxt "@label" -#~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders" -#~ msgstr "Este ajuste é sempre compartilhado entre todos os extrusores. Alterá-lo aqui propagará o valor para todos os outros extrusores" - -#~ msgctxt "@tooltip" -#~ msgid "Time specification
    " -#~ msgstr "Especificação de tempo
    " - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Reset camera position" -#~ msgstr "&Recompor posições de câmera" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save project" -#~ msgstr "Salvar projeto" - -#~ msgctxt "@title:tab" -#~ msgid "Prepare" -#~ msgstr "Preparar" - -#~ msgctxt "@title:tab" -#~ msgid "Monitor" -#~ msgstr "Monitorar" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "Verificar compatibilidade" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura" -#~ msgstr "Te dá a possibilidade de abrir certos arquivos via o próprio SolidWorks. Tais são convertidos e carregados no Cura" - -#~ msgctxt "@label:status" -#~ msgid "Blocked" -#~ msgstr "Bloqueado" - -#~ msgctxt "@label:status" -#~ msgid "Can't start print" -#~ msgstr "Não consigo começar a imprimir" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect.." -#~ msgstr "Abrir Connect.." - -#~ msgctxt "@info:title" -#~ msgid "Print Details" -#~ msgstr "Detalhes de Impressão" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB." -#~ msgstr "Para assegurar que sua {machine_name} esteja equipada com os recursos mais recentes, é recomendado atualizar o firmware regularmente. Isto pode ser feito na {machine_name} (quando conectado pela rede) ou via USB." - -#~ msgctxt "@info:title" -#~ msgid "Layer View" -#~ msgstr "Visão de Camadas" - -#~ msgctxt "@menuitem" -#~ msgid "Browse plugins" -#~ msgstr "Navegar complementos" - -#~ msgctxt "@info:title" -#~ msgid "Export Details" -#~ msgstr "Detalhes da Exportação" - -#~ msgctxt "@label" -#~ msgid "" -#~ "

    A fatal exception has occurred that we could not recover from!

    \n" -#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " -#~ msgstr "" -#~ "

    Uma exceção fatal ocorreu e não foi possível haver recuperação!

    \n" -#~ "

    Por favor use a informação abaixo para publicar um relatório de erro em http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " - -#~ msgctxt "@action:button" -#~ msgid "Open Web Page" -#~ msgstr "Abrir Página Web" - -#~ msgctxt "@action:button" -#~ msgid "Ok" -#~ msgstr "Ok" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras Ultimaker 3 conectadas." - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" -#~ msgstr "Esta impressora hospeda um grupo de %1 impressoras Ultimaker 3 conectadas" - -#~ msgctxt "@label" -#~ msgid "Completed on: " -#~ msgstr "Completado em: " - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "Abre a página de trabalhos de impressão com seu navegador web default." - -#~ msgctxt "@label" -#~ msgid "PRINTER GROUP" -#~ msgstr "GRUPO DE IMPRESSORAS" - -#~ msgctxt "@action:warning" -#~ msgid "Loading a project will clear all models on the buildplate" -#~ msgstr "Carregar um projeto removerá todos os modelos da mesa de impressão" - -#~ msgctxt "@label" -#~ msgid "" -#~ " plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ " complemento tem uma licença.\n" -#~ "Você precisa aceitar esta licença para instalar este complemento.\n" -#~ "Você está de acordo com os termos abaixo?" - -#~ msgctxt "@label" -#~ msgid "00h 00min" -#~ msgstr "00h 00min" - -#~ msgctxt "@tooltip" -#~ msgid "Time information" -#~ msgstr "Informação de tempo" - -#~ msgctxt "@description" -#~ msgid "Print time" -#~ msgstr "Tempo de impressão" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - -#~ msgctxt "@title:window" -#~ msgid "Cura" -#~ msgstr "Cura" - -#~ msgctxt "@label" -#~ msgid "Check material compatibility" -#~ msgstr "Verificar compatibilidade de material" - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection (Cluster)" -#~ msgstr "Conexão de Rede UM3 (Cluster)" - -#~ msgctxt "description" -#~ msgid "Provides the Layer view." -#~ msgstr "Provê a visão de Camadas." - -#~ msgctxt "name" -#~ msgid "Layer View" -#~ msgstr "Visão de Camadas" - -#~ msgctxt "@item:inlistbox" -#~ msgid "X-Ray" -#~ msgstr "Raios X" - -#~ msgctxt "@label" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "Aceita G-Code e o envia por wifi para o aplicativo de celular Doodle3D." - -#~ msgctxt "@item:inmenu" -#~ msgid "Doodle3D printing" -#~ msgstr "Impressão Doodle3D" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D" -#~ msgstr "Imprimir com Doodle3D" - -#~ msgctxt "@info:tooltip" -#~ msgid "Print with " -#~ msgstr "Imprimir com " - -#~ msgctxt "@title:menu" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Enable Scan devices..." -#~ msgstr "Habilitar dispositivos de escaneamento..." - -#~ msgctxt "@info:progress" -#~ msgid "Saving to Removable Drive {0}" -#~ msgstr "Salvando em Unidade Removível {0}" - -#~ msgctxt "@info:status" -#~ msgid "Could not save to {0}: {1}" -#~ msgstr "Incapaz de salvar para {0}: {1}" - -#~ msgctxt "@info:status" -#~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!" -#~ msgstr "Por favor tenha em mente que você precisa reabrir seu arquivo Solidworks manualmente! Recarregar o modelo não irá funcionar!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Layers" -#~ msgstr "Camadas" - -#~ msgid "Browse plugins" -#~ msgstr "Navegar por complementos" - -#~ msgctxt "@item:inmenu" -#~ msgid "Solid" -#~ msgstr "Sólido" - -#~ msgctxt "@label" -#~ msgid "The file {0} already exists. Are you sure you want to overwrite it?" -#~ msgstr "O arquivo {0} já existe. Tem certeza que quer sobrescrevê-lo?" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export profile to {0}: {1}" -#~ msgstr "Falha na exportação de perfil para {0}: {1}" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export profile to {0}: Writer plugin reported failure." -#~ msgstr "Falha na exportação de perfil para {0}: Complemento de gravação acusou falha." - -#~ msgctxt "@info:status" -#~ msgid "Exported profile to {0}" -#~ msgstr "Perfil exportado para {0}" - -#~ msgctxt "@info:status" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "Falha na importação de perfil de {0}: {1}" - -#~ msgctxt "@title:window" -#~ msgid "Doodle3D Settings" -#~ msgstr "Ajustes de Doodle3D" - -#~ msgctxt "@title:window" -#~ msgid "Print to: %1" -#~ msgstr "Imprimir em: %1" - -#~ msgctxt "@label" -#~ msgid "Extruder Temperature: %1/%2°C" -#~ msgstr "Temperatura do Extrusor: %1/%2°C" - -#~ msgctxt "@label" -#~ msgid "Bed Temperature: %1/%2°C" -#~ msgstr "Temperatura da Mesa: %1/%2°C" - -#~ msgctxt "@label" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@label" -#~ msgid "View Mode: Layers" -#~ msgstr "Modo de Visão: Camadas" - -#~ msgctxt "@info:status" -#~ msgid "Could not import material %1: %2" -#~ msgstr "Não foi possível importar material%1: %2" - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported material %1" -#~ msgstr "Material %1 importado com sucesso" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export material to %1: %2" -#~ msgstr "Falha ao exportar material para %1: %2" - -#~ msgctxt "@info:status" -#~ msgid "Successfully exported material to %1" -#~ msgstr "Material %1 exportado com sucesso" - -#~ msgctxt "@label" -#~ msgid "%1 m / ~ %2 g / ~ %4 %3" -#~ msgstr "%1 m / ~ %2 g / ~ %4 %3" - -#~ msgctxt "@label" -#~ msgid "%1 m / ~ %2 g" -#~ msgstr "%1 m / ~ %2 g" - -#~ msgctxt "@label" -#~ msgid "Hotend" -#~ msgstr "Hotend" - -#~ msgctxt "@action:button" -#~ msgid "View Mode" -#~ msgstr "Modo de Visualização" - -#~ msgctxt "@title:tab" -#~ msgid "Print" -#~ msgstr "Imprimir" - -#~ msgctxt "@label" -#~ msgid "0%" -#~ msgstr "0%" - -#~ msgctxt "@label" -#~ msgid "Empty infill will leave your model hollow with low strength." -#~ msgstr "Preenchimento vazio deixará seu modelo oco e com baixa resistência." - -#~ msgctxt "@label" -#~ msgid "20%" -#~ msgstr "20%" - -#~ msgctxt "@label" -#~ msgid "Light (20%) infill will give your model an average strength." -#~ msgstr "Preenchimento leve (20%) dará ao seu modelo uma resistência média." - -#~ msgctxt "@label" -#~ msgid "50%" -#~ msgstr "50%" - -#~ msgctxt "@label" -#~ msgid "Dense (50%) infill will give your model an above average strength." -#~ msgstr "Preenchimento denso (50%) dará ao seu modelo uma resistência acima da média." - -#~ msgctxt "@label" -#~ msgid "100%" -#~ msgstr "100%" - -#~ msgctxt "@label" -#~ msgid "Solid (100%) infill will make your model completely solid." -#~ msgstr "Preenchimento sólido (100%) fará seu modelo completamente sólido." - -#~ msgctxt "@label" -#~ msgid "Gradual" -#~ msgstr "Gradual" - -#~ msgctxt "description" -#~ msgid "Provides support for writing X3G files" -#~ msgstr "Provê suporte à escrita de arquivos X3G" - -#~ msgctxt "name" -#~ msgid "X3G Writer" -#~ msgstr "Gerador de X3G" - -#~ msgctxt "@label" -#~ msgid "Machine Settings action" -#~ msgstr "Ação de ajustes da máquina" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)" -#~ msgstr "Permite mudar ajustes da máquina (tais como volume de construção, tamanho do bico, etc)" - -#~ msgctxt "@label" -#~ msgid "X-Ray View" -#~ msgstr "Visão de Raios X" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the X-Ray view." -#~ msgstr "Provê a visão de Raios X." - -#~ msgctxt "@label" -#~ msgid "X3D Reader" -#~ msgstr "Leitor de X3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for reading X3D files." -#~ msgstr "Provê suporte para ler arquivos X3D." - -#~ msgctxt "@label" -#~ msgid "GCode Writer" -#~ msgstr "Gerador de G-Code" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Writes GCode to a file." -#~ msgstr "Salva o G-Code em um arquivo." - -#~ msgctxt "@action:button Preceded by 'Ready to'." -#~ msgid "Print with Doodle3D" -#~ msgstr "Imprimir com Doodle3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "Mostra as alterações desde a última versão verificada." - -#~ msgctxt "@label" -#~ msgid "Profile flatener" -#~ msgstr "Achatador de Perfil" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "Faz um perfil plano com as mudanças de qualidade." - -#~ msgctxt "@label" -#~ msgid "USB printing" -#~ msgstr "Impressão USB" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -#~ msgstr "Aceita G-Code e o envia a uma impressora. O complemento também pode atualizar o firmware." - -#~ msgctxt "X3G Writer Plugin Description" -#~ msgid "Writes X3G to a file" -#~ msgstr "Salva em arquivo X3G." - -#~ msgctxt "@label" -#~ msgid "Removable Drive Output Device Plugin" -#~ msgstr "Complemento de Gravação em Dispositivo de Unidade Removível" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides removable drive hotplugging and writing support." -#~ msgstr "Provê suporte a conexão a quente e gravação em unidade removível." - -#~ msgctxt "@info:whatsthis" -#~ msgid "Manages network connections to Ultimaker 3 printers" -#~ msgstr "Gerencia as conexões de rede em impressoras Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "PrintCore diferente (Cura: {0}, Impressora: {1}) selecionado para o extrusor {2}" - -#~ msgctxt "@label" -#~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "PrintCore {0} não está calibrado corretamente. A calibração XY precisa ser executada na impressora." - -#~ msgctxt "@label" -#~ msgid "The print cores and/or materials on your printer differ from those within your current project. For the best result, always slice for the print cores and materials that are inserted in your printer." -#~ msgstr "Os PrintCores e/ou materiais na sua impressora divergem dos de seu projeto atual. Para melhores resultados, sempre fatie para os PrintCores e materiais que estão carregados em sua impressora." - -#~ msgctxt "@label" -#~ msgid "Post Processing" -#~ msgstr "Pós-processamento" - -#~ msgctxt "Description of plugin" -#~ msgid "Extension that allows for user created scripts for post processing" -#~ msgstr "Extensão que permite scripts criados pelo usuário para pós-processamento" - -#~ msgctxt "@label" -#~ msgid "Auto Save" -#~ msgstr "Salvar automaticamente" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "Salva preferências, máquinas e perfis automaticamente depois de alterações." - -#~ msgctxt "@label" -#~ msgid "Slice info" -#~ msgstr "Informações de fatiamento" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Submits anonymous slice info. Can be disabled through preferences." -#~ msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências." - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences" -#~ msgstr "O Cura coleta estatísticas de fatiamento anonimizadas. Pode ser desabilitado nas preferências." - -#~ msgctxt "@label" -#~ msgid "Material Profiles" -#~ msgstr "Perfis de Material" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides capabilities to read and write XML-based material profiles." -#~ msgstr "Permite ler e escrever perfis de material baseado em XML." - -#~ msgctxt "@label" -#~ msgid "Legacy Cura Profile Reader" -#~ msgstr "Leitor de perfis legados do Cura" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing profiles from legacy Cura versions." -#~ msgstr "Provê suporte à importação de perfis de versões legadas do Cura." - -#~ msgctxt "@label" -#~ msgid "GCode Profile Reader" -#~ msgstr "Leitor de perfis de G-Code" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing profiles from g-code files." -#~ msgstr "Provê suporte para importar perfis de arquivos G-Code." - -#~ msgctxt "@label" -#~ msgid "Layer View" -#~ msgstr "Visão de Camadas" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the Layer view." -#~ msgstr "Provê a Visão de Camadas" - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.5 to 2.6" -#~ msgstr "Atualização de Versão de 2.5 para 2.6" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -#~ msgstr "Atualiza configurações do Cura 2.5 para Cura 2.6." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.1 to 2.2" -#~ msgstr "Atualização de Versão de 2.1 para 2.2" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -#~ msgstr "Atualiza configurações do Cura 2.1 para o Cura 2.2." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.2 to 2.4" -#~ msgstr "Atualização de versão de 2.2 para 2.4" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -#~ msgstr "Atualiza configurações do Cura 2.2 para o Cura 2.4." - -#~ msgctxt "@label" -#~ msgid "Image Reader" -#~ msgstr "Leitor de Imagens" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Enables ability to generate printable geometry from 2D image files." -#~ msgstr "Habilita o recurso de gerar geometrias imprimíveis a partir de arquivos de imagem 2D." - -#~ msgctxt "@label" -#~ msgid "CuraEngine Backend" -#~ msgstr "Backend do CuraEngine" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the link to the CuraEngine slicing backend." -#~ msgstr "Proporciona a ligação da interface com o backend de fatiamento CuraEngine." - -#~ msgctxt "@label" -#~ msgid "Per Model Settings Tool" -#~ msgstr "Ferramenta de Ajustes por Modelo" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the Per Model Settings." -#~ msgstr "Provê ajustes específicos por Modelo." - -#~ msgctxt "@label" -#~ msgid "3MF Reader" -#~ msgstr "Leitor de 3MF" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for reading 3MF files." -#~ msgstr "Provê suporte à leitura de arquivos 3MF." - -#~ msgctxt "@label" -#~ msgid "Solid View" -#~ msgstr "Visão Sólida" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides a normal solid mesh view." -#~ msgstr "Provê uma visão de malha sólida normal." - -#~ msgctxt "@label" -#~ msgid "G-code Reader" -#~ msgstr "Leitor de G-Code" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Allows loading and displaying G-code files." -#~ msgstr "Permite carregar e mostrar arquivos G-Code." - -#~ msgctxt "@label" -#~ msgid "Cura Profile Writer" -#~ msgstr "Gravador de Perfis do Cura" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for exporting Cura profiles." -#~ msgstr "Provê suporte para a exportação de perfis do Cura." - -#~ msgctxt "@label" -#~ msgid "3MF Writer" -#~ msgstr "Gerador 3MF" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for writing 3MF files." -#~ msgstr "Provê suporte para escrever arquivos 3MF." - -#~ msgctxt "@label" -#~ msgid "Ultimaker machine actions" -#~ msgstr "Ações de máquina Ultimaker" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)" -#~ msgstr "Provê ações de máquina para impressoras Ultimaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc.)" - -#~ msgctxt "@label" -#~ msgid "Cura Profile Reader" -#~ msgstr "Leitor de Perfis do Cura" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing Cura profiles." -#~ msgstr "Provê suporte para importar perfis do Cura." - -#~ msgctxt "@info" -#~ msgid "%(width).1f x %(depth).1f x %(height).1f mm" -#~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#~ msgctxt "@label" -#~ msgid "Build Plate Shape" -#~ msgstr "Forma da Mesa" - -#~ msgctxt "@option:check" -#~ msgid "Machine Center is Zero" -#~ msgstr "Centro da Mesa é Zero" - -#~ msgctxt "@option:check" -#~ msgid "Heated Bed" -#~ msgstr "Mesa Aquecida" - -#~ msgctxt "@label" -#~ msgid "GCode Flavor" -#~ msgstr "Tipo de G-Code" - -#~ msgctxt "@label" -#~ msgid "Material Diameter" -#~ msgstr "Diâmetro do Material" - -#~ msgctxt "@label" -#~ msgid "If your printer is not listed, read the network-printing troubleshooting guide" -#~ msgstr "Se a sua impressora não está listada, leia o guia de resolução de problemas em impressão de rede" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Ultimaker" -#~ msgstr "Ultimaker" - -#~ msgctxt "@label" -#~ msgid "Support library for scientific computing " -#~ msgstr "Biblioteca de suporte para computação científica" - -#~ msgctxt "@tooltip" -#~ msgid "Print Setup

    Edit or review the settings for the active print job." -#~ msgstr "Configuração de Impressão

    Editar ou revisar os ajustes para o trabalho de impressão ativo." - -#~ msgctxt "@tooltip" -#~ msgid "Print Monitor

    Monitor the state of the connected printer and the print job in progress." -#~ msgstr "Monitor de Impressão

    Monitorar o estado da impressora conectada e o trabalho de impressão em progresso." - -#~ msgctxt "@title:menuitem %1 is the value from the printer" -#~ msgid "Automatic: %1" -#~ msgstr "Automático: %1" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3d model" -#~ msgstr "Por favor carregue um modelo 3D" - -#~ msgctxt "@label" -#~ msgid "Print Selected Model with %1" -#~ msgid_plural "Print Selected Models With %1" -#~ msgstr[0] "Imprimir Modelo Selecionado com %1" -#~ msgstr[1] "Imprimir Modelos Selecionados Com %1" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}" -#~ msgstr "Incapaz de iniciar um novo trabalho de impressão. Não há PrinterCore carregado no slot {0}" - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.4 to 2.5" -#~ msgstr "Atualizar versão 2.4 para 2.5" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5." -#~ msgstr "Atualiza as configurações do Cura 2.4 para o Cura 2.5" - -#~ msgctxt "@info:status" -#~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead." -#~ msgstr "Incapaz de encontrar um perfil de qualidade para esta combinação. Ajustes default serão usados no lugar." - -#~ msgctxt "@title:window" -#~ msgid "Oops!" -#~ msgstr "Oops!" - -#~ msgctxt "@label" -#~ msgid "" -#~ "

    A fatal exception has occurred that we could not recover from!

    \n" -#~ "

    We hope this picture of a kitten helps you recover from the shock.

    \n" -#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " -#~ msgstr "" -#~ "

    Uma exceção fatal ocorreu e não foi possível a recuperação deste estado!

    \n" -#~ "

    Esperamos que esta figura de um gatinho te ajude a se recuperar do choque.

    \n" -#~ "

    Por favor use a informação abaixo para postar um relatório de bug em http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " - -#~ msgctxt "@label" -#~ msgid "Please enter the correct settings for your printer below:" -#~ msgstr "Por favor introduza os ajustes corretos para sua impressora abaixo:" - -#~ msgctxt "@label" -#~ msgid "Extruder %1" -#~ msgstr "Extrusor %1" - -#~ msgctxt "@label Followed by extruder selection drop-down." -#~ msgid "Print model with" -#~ msgstr "Imprimir modelo com" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for language changes to have effect." -#~ msgstr "A aplicação deverá ser reiniciada para que as alterações de idioma tenham efeito." - -#~ msgctxt "@info:tooltip" -#~ msgid "Moves the camera so the model is in the center of the view when an model is selected" -#~ msgstr "Move a câmera de modo que o modelo esteja no centro da visão quando estiver selecionado" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete &Selection" -#~ msgstr "Eliminar &Seleção" - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Open File..." -#~ msgstr "&Abrir Arquivo..." - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Open Project..." -#~ msgstr "&Abrir Projeto..." - -#~ msgctxt "@title:window" -#~ msgid "Multiply Model" -#~ msgstr "Multiplicar Modelo" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &All" -#~ msgstr "Salvar &Tudo" - -#~ msgctxt "@title:window" -#~ msgid "Open file" -#~ msgstr "Abrir arquivo" - -#~ msgctxt "@title:window" -#~ msgid "Open workspace" -#~ msgstr "Abrir espaço de trabalho" - -#~ msgctxt "@label" -#~ msgid "Hollow" -#~ msgstr "Oco" - -#~ msgctxt "@label" -#~ msgid "No (0%) infill will leave your model hollow at the cost of low strength" -#~ msgstr "Preenchimento zero (0%) deixará seu modelo oco ao custo de baixa resistência" - -#~ msgctxt "@label" -#~ msgid "Light" -#~ msgstr "Leve" - -#~ msgctxt "@label" -#~ msgid "Light (20%) infill will give your model an average strength" -#~ msgstr "Preenchimento leve (20%) dará ao seu modelo resistência média" - -#~ msgctxt "@label" -#~ msgid "Dense" -#~ msgstr "Denso" - -#~ msgctxt "@label" -#~ msgid "Dense (50%) infill will give your model an above average strength" -#~ msgstr "Preenchimento denso (50%) dará ao seu modelo resistência acima da média" - -#~ msgctxt "@label" -#~ msgid "Solid" -#~ msgstr "Sólido" - -#~ msgctxt "@label" -#~ msgid "Solid (100%) infill will make your model completely solid" -#~ msgstr "Preenchimento sólido (100%) fará seu modelo ficar totalmente maciço." - -#~ msgctxt "@label" -#~ msgid "Enable Support" -#~ msgstr "Habilitar Suporte" - -#~ msgctxt "@label" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Habilitar estruturas de suporte. Estas estruturas apóiam partes do modelo que tenham seções pendentes." - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints? Read the Ultimaker Troubleshooting Guides" -#~ msgstr "Precisa de ajuda para melhorar suas impressões? Leia o Guia de Solução de Problemas da Ultimaker." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}. Please approve the access request on the printer." -#~ msgstr "Conectado pela rede a {0}. Por favor aprove o pedido de acesso na impressora." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}." -#~ msgstr "Conectado pela rede a {0}." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}. No access to control the printer." -#~ msgstr "Conectado pela rede a {0}. Não há acesso para controlar a impressora." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job because the printer is busy. Please check the printer." -#~ msgstr "Incapaz de iniciar um novo trabalho de impressão porque a impressora está ocupada. Verifique a impressora." - -#~ msgctxt "@label" -#~ msgid "You made changes to the following setting(s)/override(s):" -#~ msgstr "Foram feitas alterações nos seguintes ajustes:" - -#~ msgctxt "@window:title" -#~ msgid "Switched profiles" -#~ msgstr "Perfis trocados" - -#~ msgctxt "@label" -#~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?" -#~ msgstr "Deseja transferir seus %d ajustes alterados para este perfil?" - -#~ msgctxt "@label" -#~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost." -#~ msgstr "Se você transferir seus ajustes eles sobrescreverão os ajustes no perfil. Se você não transferir esses ajustes, eles se perderão." - -#~ msgctxt "@label" -#~ msgid "Cost per Meter (Approx.)" -#~ msgstr "Custo por Metro (Aprox.)" - -#~ msgctxt "@label" -#~ msgid "%1/m" -#~ msgstr "%1/m" - -#~ msgctxt "@info:tooltip" -#~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information." -#~ msgstr "Exibir as 5 camadas superiores na visão de camadas ou somente a camada superior. Exibir 5 camadas leva mais tempo, mas mostra mais informação." - -#~ msgctxt "@action:button" -#~ msgid "Display five top layers in layer view" -#~ msgstr "Exibir as 5 camadas superiores na visão de camadas" - -#~ msgctxt "@info:tooltip" -#~ msgid "Should only the top layers be displayed in layerview?" -#~ msgstr "Somente as camadas superiores devem ser exibidas na visào de camadas?" - -#~ msgctxt "@option:check" -#~ msgid "Only display top layer(s) in layer view" -#~ msgstr "Somente exibir as camadas superiores na visão de camadas" - -#~ msgctxt "@label" -#~ msgid "Opening files" -#~ msgstr "Abrindo arquivos..." - -#~ msgctxt "@label" -#~ msgid "Printer Monitor" -#~ msgstr "Monitor da Impressora" - -#~ msgctxt "@label" -#~ msgid "Temperatures" -#~ msgstr "Temperaturas" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Preparing to slice..." -#~ msgstr "Preparando para fatiar..." - -#~ msgctxt "@window:title" -#~ msgid "Changes on the Printer" -#~ msgstr "Alterações na Impressora" - -#~ msgctxt "@action:inmenu" -#~ msgid "&Duplicate Model" -#~ msgstr "&Duplicar Modelo" - -#~ msgctxt "@label" -#~ msgid "Helper Parts:" -#~ msgstr "Partes dos Assistentes:" - -#~ msgctxt "@label" -#~ msgid "Enable printing support structures. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "Habilita estruturas de suporte de impressão. Isto construirá estruturas de suporte abaixo do modelo para prevenir o modelo de cair ou ser impresso no ar." - -#~ msgctxt "@label" -#~ msgid "Don't print support" -#~ msgstr "Não imprimir suporte" - -#~ msgctxt "@label" -#~ msgid "Print support using %1" -#~ msgstr "Imprimir suporte usando %1" - -#~ msgctxt "@label:listbox" -#~ msgid "Printer:" -#~ msgstr "Impressora:" - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profiles {0}" -#~ msgstr "Perfis {0} importados com sucesso" - -#~ msgctxt "@label" -#~ msgid "Scripts" -#~ msgstr "Scripts" - -#~ msgctxt "@label" -#~ msgid "Active Scripts" -#~ msgstr "Scripts Ativos" - -#~ msgctxt "@label" -#~ msgid "Done" -#~ msgstr "Feito" - -#~ msgctxt "@item:inlistbox" -#~ msgid "English" -#~ msgstr "Inglês" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Finnish" -#~ msgstr "Finlandês" - -#~ msgctxt "@item:inlistbox" -#~ msgid "French" -#~ msgstr "Francês" - -#~ msgctxt "@item:inlistbox" -#~ msgid "German" -#~ msgstr "Alemão" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Italian" -#~ msgstr "Italiano" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Dutch" -#~ msgstr "Holandês" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Spanish" -#~ msgstr "Espanhol" - -#~ msgctxt "@label" -#~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?" -#~ msgstr "Deseja alterar os PrintCores e materiais do Cura para coincidir com sua impressora?" - -#~ msgctxt "@label:" -#~ msgid "Print Again" -#~ msgstr "Imprimir Novamente" +#~ msgid "Simulation View" +#~ msgstr "Visão Simulada" diff --git a/resources/i18n/pt_BR/fdmextruder.def.json.po b/resources/i18n/pt_BR/fdmextruder.def.json.po index a05d40983a..dbc8361eba 100644 --- a/resources/i18n/pt_BR/fdmextruder.def.json.po +++ b/resources/i18n/pt_BR/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: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-08 09:03+0000\n" "PO-Revision-Date: 2021-04-11 17:09+0200\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" @@ -17,6 +17,96 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Poedit 2.4.1\n" +#: fdmextruder.def.json +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Aderência" + +#: fdmextruder.def.json +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 usado. Use o valor medido do diâmetro do filamento atual." + +#: fdmextruder.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Aderência da Mesa de Impressão" + +#: fdmextruder.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diâmetro" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "G-Code final a executar quando mudar deste extrusor para outro." + +#: fdmextruder.def.json +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "Extrusor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code label" +msgid "Extruder End G-Code" +msgstr "G-Code Final do Extrusor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_abs label" +msgid "Extruder End Position Absolute" +msgstr "Posição Absoluta Final do Extrusor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x label" +msgid "Extruder End Position X" +msgstr "Posição X Final do Extrusor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y label" +msgid "Extruder End Position Y" +msgstr "Posição Y Final do Extrusor" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posição X de Purga do Extrusor" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posição Y de Purga do Extrusor" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posição Z de Purga do Extrusor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Ventoinha de Refrigeração da Impressão" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_code label" +msgid "Extruder Start G-Code" +msgstr "G-Code Inicial do Extrusor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_abs label" +msgid "Extruder Start Position Absolute" +msgstr "Posição Absoluta de Início do Extrusor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "Posição X de Início do Extrusor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "Posição Y de Início do Extrusor" + #: fdmextruder.def.json msgctxt "machine_settings label" msgid "Machine" @@ -28,69 +118,9 @@ msgid "Machine specific settings" msgstr "Ajustes específicos de máquina" #: fdmextruder.def.json -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "Extrusor" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID do Bico" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "O identificador de bico para o carro extrusor, tal como \"AA 0.4\" e \"BB 0.8\"." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diâmetro do Bico" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x label" -msgid "Nozzle X Offset" -msgstr "Deslocamento X do Bico" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "A coordenada X do deslocamento aplicado ao bico." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "Deslocamento Y do Bico" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "A coordenada Y do deslocamento aplicado ao bico." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code label" -msgid "Extruder Start G-Code" -msgstr "G-Code Inicial do Extrusor" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_abs label" -msgid "Extruder Start Position Absolute" -msgstr "Posição Absoluta de Início 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 "Faz a posição final do extrusor ser absoluta ao invés de relativa à última posição conhecida da cabeça de impressão." #: fdmextruder.def.json msgctxt "machine_extruder_start_pos_abs description" @@ -98,114 +128,9 @@ msgid "Make the extruder starting position absolute rather than relative to the msgstr "Faz a posição de início do extrusor ser absoluta ao invés de relativa à última posição conhecida da cabeça de impressão." #: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "Posição X de Início do Extrusor" - -#: fdmextruder.def.json -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 de início quando se liga o extrusor." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "Posição Y de Início do Extrusor" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code label" -msgid "Extruder End G-Code" -msgstr "G-Code Final do Extrusor" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "G-Code final a executar quando mudar deste extrusor para outro." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_abs label" -msgid "Extruder End Position Absolute" -msgstr "Posição Absoluta Final do Extrusor" - -#: fdmextruder.def.json -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 "Faz a posição final do extrusor ser absoluta ao invés de relativa à última posição conhecida da cabeça de impressão." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x label" -msgid "Extruder End Position X" -msgstr "Posição X Final do Extrusor" - -#: fdmextruder.def.json -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 do extrusor quando se o desliga." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y label" -msgid "Extruder End Position Y" -msgstr "Posição Y Final do Extrusor" - -#: fdmextruder.def.json -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 do extrusor quando se o desliga." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posição Z de Purga do Extrusor" - -#: fdmextruder.def.json -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 bico faz a purga no início da impressão." - -#: fdmextruder.def.json -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Ventoinha de Refrigeração da Impressão" - -#: fdmextruder.def.json -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 da ventoinha de refrigeração da impressão associada a este extrusor. Somente altere o valor default 0 quando você tiver uma ventoinha diferente para cada extrusor." - -#: fdmextruder.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Aderência da Mesa de Impressão" - -#: fdmextruder.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Aderência" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posição X de Purga do Extrusor" - -#: fdmextruder.def.json -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 bico faz a purga no início da impressão." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posição Y de Purga do Extrusor" - -#: fdmextruder.def.json -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 bico faz a purga no início da impressão." +msgctxt "material description" +msgid "Material" +msgstr "Material" #: fdmextruder.def.json msgctxt "material label" @@ -213,24 +138,99 @@ msgid "Material" msgstr "Material" #: fdmextruder.def.json -msgctxt "material description" -msgid "Material" -msgstr "Material" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diâmetro do Bico" #: fdmextruder.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diâmetro" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID do Bico" #: fdmextruder.def.json -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 usado. Use o valor medido do diâmetro do filamento atual." +msgctxt "machine_nozzle_offset_x label" +msgid "Nozzle X Offset" +msgstr "Deslocamento X do Bico" -#~ msgctxt "machine_extruder_start_code description" -#~ msgid "Start g-code to execute whenever turning the extruder on." -#~ msgstr "G-Code Inicial a ser executado sempre que o extrusor for ligado." +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "Deslocamento Y do Bico" + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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 bico faz a purga no início da impressão." + +#: fdmextruder.def.json +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 bico faz a purga no início da impressão." + +#: fdmextruder.def.json +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 bico faz a purga no início da impressão." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "O identificador de bico para o carro extrusor, tal como \"AA 0.4\" e \"BB 0.8\"." + +#: fdmextruder.def.json +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 da ventoinha de refrigeração da impressão associada a este extrusor. Somente altere o valor default 0 quando você tiver uma ventoinha diferente para cada extrusor." + +#: fdmextruder.def.json +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 do extrusor quando se o desliga." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "A coordenada X do deslocamento aplicado ao bico." + +#: fdmextruder.def.json +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 de início quando se liga o extrusor." + +#: fdmextruder.def.json +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 do extrusor quando se o desliga." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "A coordenada Y do deslocamento aplicado ao bico." + +#: fdmextruder.def.json +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_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." + +#~ msgctxt "machine_extruder_start_code description" +#~ msgid "Start g-code to execute whenever turning the extruder on." +#~ msgstr "G-Code Inicial a ser executado sempre que o extrusor for ligado." diff --git a/resources/i18n/pt_BR/fdmprinter.def.json.po b/resources/i18n/pt_BR/fdmprinter.def.json.po index 8b41318015..c743806c53 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.0\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" -"PO-Revision-Date: 2022-05-02 12:04+0200\n" +"POT-Creation-Date: 2023-03-28 11:57+0000\n" +"PO-Revision-Date: 2023-02-17 16:31+0100\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" "Language: pt_BR\n" @@ -15,1600 +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.0.1\n" - -#: fdmprinter.def.json -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Máquina" - -#: fdmprinter.def.json -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Ajustes específicos da máquina" - -#: fdmprinter.def.json -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Tipo de Máquina" - -#: fdmprinter.def.json -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Nome do seu modelo de impressora 3D." - -#: fdmprinter.def.json -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Exibir Variantes de Máquina" - -#: fdmprinter.def.json -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Decide se deseja exibir as variantes desta máquina, que são descrita em arquivos .json separados." - -#: fdmprinter.def.json -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "G-Code Inicial" - -#: fdmprinter.def.json -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 da impressão - separados por \n" -"." - -#: fdmprinter.def.json -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "G-Code Final" - -#: fdmprinter.def.json -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 final da impressão - separados por \n" -"." - -#: fdmprinter.def.json -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID do Material" - -#: fdmprinter.def.json -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID do material. É ajustado automaticamente." - -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diâmetro" - -#: fdmprinter.def.json -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. Acerte este valor com o diâmetro real do filamento." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Aguardar o Aquecimento da Mesa" - -#: fdmprinter.def.json -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 "Decide se haverá inserção do comando para aguardar que a temperatura-alvo da mesa de impressão estabilize no início." - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Aguardar Aquecimento do Bico" - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Decide se haverá a inserção do comando para aguardar que a temperatura-alvo do bico estabilize no início." - -#: fdmprinter.def.json -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Incluir Temperaturas de Material" - -#: fdmprinter.def.json -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 "Decide se haverá a inclusão de comandos de temperatura do bico no início do G-Code. Quando o G-Code Inicial já contiver comandos de temperatura do bico, a interface do Cura automaticamente desabilitará este ajuste." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Incluir Temperatura da Mesa" - -#: fdmprinter.def.json -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 "Decide se haverá a inclusão de comandos de temperatura da mesa de impressão no início do G-Code. Quando o G-Code Inicial já contiver comandos de temperatura da mesa, a interface do Cura automaticamente desabilitará este ajuste." - -#: fdmprinter.def.json -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Largura da Mesa" - -#: fdmprinter.def.json -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "A largura (direção X) da área imprimível." - -#: fdmprinter.def.json -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Profundidade da Mesa" - -#: fdmprinter.def.json -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "A profundidade (direção Y) da área imprimível." - -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Altura do Volume" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "A altura (direção Z) do volume imprimível." - -#: fdmprinter.def.json -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Forma da Mesa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Retangular" - -#: fdmprinter.def.json -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Elíptica" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Material da Plataforma de Impressão" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "O material da plataforma de impressão presente na impressora." - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Vidro" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Alumínio" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Tem Mesa Aquecida" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Decide se a plataforma de impressão pode ser aquecida." - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Tem Estabilização de Temperatura do Volume de Impressão" - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Decide se a máquina consegue estabilizar a temperatura do volume de construção." - -#: fdmprinter.def.json -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "Sempre Escrever a Ferramenta Ativa" - -#: fdmprinter.def.json -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 "Escreve a ferramenta ativa depois de enviar comandos de temperatura para a ferramenta inativa. Requerido para impressão de Extrusor Duplo com Smoothie ou outros firmwares com comandos modais de ferramenta." - -#: fdmprinter.def.json -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Origem é no Centro" - -#: fdmprinter.def.json -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 "Decide se as coordenadas X/Y da posição zero da impressão estão no centro da área imprimível (senão, estarão no canto inferior esquerdo)." - -#: fdmprinter.def.json -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Número de extrusores" - -#: fdmprinter.def.json -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 carros extrusores. Um carro extrusor é a combinação de um alimentador/tracionador, opcional tubo de filamento guiado e o hotend." - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Número de Extrusores Habilitados" - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "O número de carros extrusores que estão habilitados; automaticamente ajustado em software" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Diâmetro Externo do Bico" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Comprimento do Bico" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Ângulo do Bico" - -#: fdmprinter.def.json -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 o plano horizontal e a parte cônica logo acima da ponta do bico." - -#: fdmprinter.def.json -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Comprimento da Zona de Aquecimento" - -#: fdmprinter.def.json -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 "Distância da ponta do bico, em que calor do bico é transferido para o filamento." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Habilitar Controle de Temperatura do Bico" - -#: fdmprinter.def.json -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 "Decide se a temperatura deve ser controlada pelo Cura. Desligue para controlar a temperatura do bico fora do Cura." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Velocidade de Aquecimento" - -#: fdmprinter.def.json -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 "Velocidade (°C/s) pela qual o bico aquece tirada pela média na janela de temperaturas normais de impressão e temperatura de espera." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Velocidade de Resfriamento" - -#: fdmprinter.def.json -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 "Velocidade (°C/s) pela qual o bico resfria tirada pela média na janela de temperaturas normais de impressão e temperatura de espera." - -#: fdmprinter.def.json -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Tempo Mínima em Temperatura de Espera" - -#: fdmprinter.def.json -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 "Tempo mínimo em que um extrusor precisará estar inativo antes que o bico seja resfriado. Somente quando o extrusor não for usado por um tempo maior que esse, lhe será permitido resfriar até a temperatura de espera." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Sabor de G-Code" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "O tipo de G-Code a ser gerado." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumétrico)" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -#: fdmprinter.def.json -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Retração de Firmware" - -#: fdmprinter.def.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 "Decide se serão usados comandos de retração de firmware (G10/G11) ao invés da propriedade E dos comandos G1 para retrair o material." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Extrusores Compartilham Aquecedor" - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Decide se os extrusores usam um único aquecedor combinado ou cada um tem o seu respectivo aquecedor." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Extrusores Compartilham o Bico" - -#: fdmprinter.def.json -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 "Decide se os extrusores compartilham um único bico ao invés de cada extrusor ter seu próprio. Quando colocado em verdadeiro, é esperado que o script g-code de início da impressora configure todos os extrusores em um estado inicial de retração que seja conhecido e mutuamente compatível (ou zero ou filamento não retraído); neste caso, o status de retração inicial é descrito, por extrusor, pelo parâmetro 'machine_extruders_shared_nozzle_initial_retraction'." - -#: fdmprinter.def.json -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Retração Inicial do Bico Compartilhado" - -#: fdmprinter.def.json -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 "Quanto é assumido que o filamento de cada extrusor tenha retraído da ponta do bico ao completar o script g-code de início da impressora; o valor deve ser igual ou superior ao comprimento da parte comum dos dutos do bico." - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Áreas Proibidas" - -#: fdmprinter.def.json -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 em que a cabeça de impressão é proibida de entrar." - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Áreas Proibidas para o Bico" - -#: fdmprinter.def.json -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 em que o bico é proibido de entrar." - -#: fdmprinter.def.json -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Polígono da Cabeça com Ventoinha" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Altura do Eixo" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID do Bico" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "O identificador do bico para o carro extrusor, tais como \"AA 0.4\" ou \"BB 0.8\"." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diâmetro do bico" - -#: fdmprinter.def.json -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 interior do bico (o orifício). Altere este ajuste quanto estiver usando um tamanho de bico fora do padrão." - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Deslocamento com o Extrusor" - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Aplicar o deslocamento de extrusor ao sistema de coordenadas. Afeta todos os extrusores." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posição Z de Purga do Extrusor" - -#: fdmprinter.def.json -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 da posição onde o bico faz a purga no início da impressão." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Posição Absoluta de Purga do Extrusor" - -#: fdmprinter.def.json -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 "Faz a posição de purga do extrusor absoluta ao invés de relativa à última posição conhecida da cabeça." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Velocidade Máxima em X" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "A velocidade máxima para o motor da impressora na direção X." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Velocidade Máxima em Y" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "A velocidade máxima para o motor da impressora na direção Y." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Velocidade Máxima em Z" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "A velocidade máxima para o motor da impressora na direção Z." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Velocidade Máxima de Extrusão" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "A velocidade máxima de entrada de filamento no hotend." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Aceleração Máxima em X" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Aceleração Máxima em Y" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "A aceleração máxima para o motor da impressora na direção Y." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Aceleração Máxima em Z" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "A aceleração máxima para o motor da impressora na direção Z." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Aceleração Máxima do Filamento" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Aceleração máxima para a entrada de filamento no hotend." - -#: fdmprinter.def.json -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Aceleração Default" - -#: fdmprinter.def.json -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "A aceleração default a ser usada nos eixos para o movimento da cabeça de impressão." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Jerk Default nos eixos X-Y" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "O valor default de jerk para movimentos no plano horizontal." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "O Jerk Default em Z" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "O valor default de jerk para movimento na direção Z." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Jerk Default do Filamento" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "O valor default de jerk para movimentação do filamento." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Passos por Milímetro (X)" - -#: fdmprinter.def.json -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 "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção X." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Passos por Milímetro (Y)" - -#: fdmprinter.def.json -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 "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Y." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Passos por Milímetro (Z)" - -#: fdmprinter.def.json -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 "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Z." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Passos por Milímetro (E)" - -#: fdmprinter.def.json -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 "Quantos passos dos motores resultarão no movimento da engrenagem de alimentação em um milímetro da circunferência." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Endstop X na Direção Positiva" - -#: fdmprinter.def.json -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 "Decide se o endstop do eixo X está na direção positiva (coordenada X alta) ou negativa (coordenada X baixa)." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Endstop Y na Direção Positiva" - -#: fdmprinter.def.json -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 "Decide se o endstop do eixo Y está na direção positiva (coordenada Y alta) ou negativa (coordenada Y baixa)." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Endstop Z na Direção Positiva" - -#: fdmprinter.def.json -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 "Decide se o endstop do eixo Z está na direção positiva (coordenada Z alta) ou negativa (coordenada Z baixa)." - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Velocidade Mínima de Alimentação" - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Velocidade mínima de entrada de filamento no hotend." - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diâmetro da Engrenagem de Alimentação" - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "O diâmetro da engrenagem que traciona o material no alimentador." - -#: fdmprinter.def.json -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Velocidade de Escala da Ventoinha A 0-1" - -#: fdmprinter.def.json -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 "Usa a escala da velocidade da ventoinha como um número entre 0 e 1 ao invés de 0 a 256." - -#: fdmprinter.def.json -msgctxt "resolution label" -msgid "Quality" -msgstr "Qualidade" - -#: fdmprinter.def.json -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)" - -#: fdmprinter.def.json -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Altura de Camada" - -#: fdmprinter.def.json -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 altura das camadas em mm. Valores mais altos produzem impressões mais rápidas em resoluções baixas, valores mais baixos produzem impressão mais lentas em resolução mais alta. Recomenda-se não deixar a altura de camada maior que 80% do diâmetro do bico." - -#: fdmprinter.def.json -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Altura da Primeira Camada" - -#: fdmprinter.def.json -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 altura da camada inicial em mm. Uma camada inicial mais espessa faz a aderência à mesa de impressão ser maior." - -#: fdmprinter.def.json -msgctxt "line_width label" -msgid "Line Width" -msgstr "Largura de Extrusão" - -#: fdmprinter.def.json -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 "Largura de uma única linha de filete extrudado. Geralmente, a largura da linha corresponde ao diâmetro do bico. No entanto, reduzir ligeiramente este valor pode produzir impressões melhores." - -#: fdmprinter.def.json -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Largura de Extrusão da Parede" - -#: fdmprinter.def.json -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Largura de um filete que faz parte de uma parede." - -#: fdmprinter.def.json -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Largura de Extrusão da Parede Externa" - -#: fdmprinter.def.json -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 "Largura de Extrusão somente da parede mais externa do modelo. Diminuindo este valor, níveis de detalhes mais altos podem ser impressos." - -#: fdmprinter.def.json -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Largura de Extrusão das Paredes Internas" - -#: fdmprinter.def.json -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Largura de extrusão das paredes internas (todas menos a mais externa)." - -#: fdmprinter.def.json -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Largura de Extrusão Superior/Inferior" - -#: fdmprinter.def.json -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Largura de extrusão dos filetes das paredes do topo e base dos modelos." - -#: fdmprinter.def.json -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Largura de Extrusão do Preenchimento" - -#: fdmprinter.def.json -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Largura de um filete de preenchimento." - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Largura de Extrusão do Brim e Skirt" - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Largura de um filete do brim (bainha) ou skirt (saia)." - -#: fdmprinter.def.json -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Largura de Extrusão do Suporte" - -#: fdmprinter.def.json -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Largura de um filete usado nas estruturas de suporte." - -#: fdmprinter.def.json -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Largura de Extrusão da Interface do Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Largura de Extrusão do Teto do Suporte" - -#: fdmprinter.def.json -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Largura de um filete usado no teto do suporte." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Largura de Extrusão da Base do Suporte" - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Largura de um filete usado na base do suporte." - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Largura de Extrusão da Torre de Purga" - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Largura de um filete usado na torre de purga." - -#: fdmprinter.def.json -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Largura de Extrusão da Camada Inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "shell label" -msgid "Walls" -msgstr "Paredes" - -#: fdmprinter.def.json -msgctxt "shell description" -msgid "Shell" -msgstr "Perímetro" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Extrusor das Paredes" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir paredes. Este ajuste é usado em multi-extrusão." - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extrusor da Parede Externa" - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir a parede externa. Este ajuste é usado em multi-extrusão." - -#: fdmprinter.def.json -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extrusor da Parede Interior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Espessura de Parede" - -#: fdmprinter.def.json -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 pela largura de extrusão da parede define o número de filetes da parede." - -#: fdmprinter.def.json -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Número de Filetes da Parede" - -#: fdmprinter.def.json -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 filetes da parede. Quando calculado pela espessura de parede, este valor é arredondado para um inteiro." - -#: fdmprinter.def.json -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Comprimento de Transição de Parede" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Contagem de Distribuição de Parede" - -#: fdmprinter.def.json -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 será distribuída. Valores menores significam que as paredes mais externas não mudam de comprimento." - -#: fdmprinter.def.json -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Ângulo-Limite de Transição de Parede" - -#: fdmprinter.def.json -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 "Quanto criar transições entre números de paredes pares e ímpares. A forma de cunha em ângulo maior que este ajuste não terá transições e nenhuma parede será impressa no centro para preencher o espaço remanescente. Reduzir este ajuste faz reduzir o número e comprimento das paredes centrais, mas pode deixar vãos ou sobre-extrudar." - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Distância de Filtro da Transição de Parede" - -#: fdmprinter.def.json -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 for detectado que a cabeça de impressão estaria alternando em rápida sucessão entre números diferentes de parede, não fazer tal alternação. Remove transições se elas estiverem próximas até essa distância." - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Margem de Filtro de Transição de Parede" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Distância de Varredura da Parede Externa" - -#: fdmprinter.def.json -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Distância do percurso inserido após a parede externa para esconder melhor a costura em Z." - -#: fdmprinter.def.json -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Penetração da Parede Externa" - -#: fdmprinter.def.json -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 "Penetração adicional aplicada ao caminho da parede externa. Se a parede externa for menor que o bico, e impressa depois das paredes internas, use este deslocamento para fazer o orifício do bico se sobrepor às paredes internas ao invés de ao lado de fora do modelo." - -#: fdmprinter.def.json -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Otimizar Ordem de Impressão de Paredes" - -#: fdmprinter.def.json -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 "Otimiza a ordem em que as paredes são impressas, tais que o número de retrações e a distância percorrida sejam reduzidos. A maioria das peças se beneficiará deste ajuste habilitado mas outras poderão demorar mais, portanto compare as estimativas de tempo de impressão com e sem otimização. A primeira camada não é otimizada quando o brim é selecionado como tipo de aderência da mesa de impressão." - -#: fdmprinter.def.json -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Ordem de Parede" - -#: fdmprinter.def.json -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." -msgstr "Determina em que ordem as paredes são impressas. Imprimir parede mais externas antes ajuda com acurácia dimensional, já que falhas das paredes mais internas não se propagam para o exterior. No entanto imprimi-las depois permite melhor empilhamento quando seções pendentes são impressas." - -#: fdmprinter.def.json -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "De Dentro Pra Fora" - -#: fdmprinter.def.json -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "De Fora Pra Dentro" - -#: fdmprinter.def.json -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Alternar Parede Adicional" - -#: fdmprinter.def.json -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 uma parede adicional a cada duas camadas. Deste jeito o preenchimento fica aprisionado entre estas paredes extras, resultando em impressões mais fortes." - -#: fdmprinter.def.json -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Largura Mínina de Filete de Parede" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Largura Mínima de Filete de Parede Par" - -#: fdmprinter.def.json -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 "A mínima largura de filete para paredes poligonais normais. Este ajuste determina em que espessura do modelo nós alternamos da impressão de um file de parede fina único para a impressão de dois filetes de parede. Uma Largura Mínima de Filete de Parede Par mais alta leva a uma largura máxima de filete de parede ímpar também mais alta. A largura máxima de filete de parede par é calculada como a Largura de Filete da Parede Externa + 0.5 * Largura Mínima de Filete de Parede Ímpar." - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold label" -msgid "Split Middle Line Threshold" -msgstr "Limite de Filete Central Dividido" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual o filete central (se houver algum) será dividido em dois. Reduza este ajuste para usar mais e maiores filetes. Aumente para usar menos e menores filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com parede, dado que o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou (outros) contornos na impressão ao invés de paredes." - -#: fdmprinter.def.json -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Largura Mínima de Filete de Parede Ímpar" - -#: fdmprinter.def.json -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 "A largura mínima de filete para as paredes multifiletes de preenchimento de vão de filete central. Este ajuste determina em que espessura de modelo nós alternamos de imprimir dois filetes de parede para imprimir duas paredes externas e uma parede central no centro. Uma Largura Mínima de Filete de Parede Ímpar leva a uma largura máxima de filete de parede par mais alta. A largura máxima de filete de parede par é calculada como 2 * Largura Mínima de Filete de Parede Par." - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold label" -msgid "Add Middle Line Threshold" -msgstr "Adicionar Limite de Filete Central" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual um filete central (se já não houver algum) será adicionado. Reduza este ajuste para usar mais e e mais finos filetes. Aumente para usar menos, mais largos filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com paredes, portanto o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou contornos na impressão ao invés de paredes." - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Imprimir Paredes Finas" - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Imprime partes do modelo que são horizontalmente mais finas que o tamanho do bico." - -#: fdmprinter.def.json -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Mínimo Tamanho de Detalhe" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Largura Mínima de Filete de Parede Fina" - -#: fdmprinter.def.json -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 "Largura da parede que substituirá detalhes finos (de acordo com o Tamanho Mínimo de Detalhe) do modelo. Se a Largura Mínima de Filete de Parede for mais fina que a espessura do detalhe, a parede se tornará tão espessa quanto o próprio detalhe." - -#: fdmprinter.def.json -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Expansão Horizontal" - -#: fdmprinter.def.json -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 "Deslocamento adicional aplicado para todos os polígonos em cada camada. Valores positivos 'engordam' a camada e podem compensar por furos exagerados; valores negativos a 'emagrecem' e podem compensar por furos pequenos." - -#: fdmprinter.def.json -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Expansão Horizontal da Camada Inicial" - -#: fdmprinter.def.json -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 "Deslocamento adicional aplicado a todos os polígonos da primeira camada. Um valor negativo pode compensar pelo esmagamento da primeira camada conhecido como \"pata de elefante\"." - -#: fdmprinter.def.json -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Expansão Horizontal do Furo" - -#: fdmprinter.def.json -msgctxt "hole_xy_offset description" -msgid "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." -msgstr "Quantidade de deslocamento aplicado a todos os furos em cada camada. Valores positivos aumentam o tamanho dos furos, valores negativos reduzem o tamanho dos furos." - -#: fdmprinter.def.json -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Alinhamento da Costura em Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Especificado pelo Usuário" - -#: fdmprinter.def.json -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Mais Curto" - -#: fdmprinter.def.json -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Aleatório" - -#: fdmprinter.def.json -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Canto Mais Agudo" - -#: fdmprinter.def.json -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Posição da Costura Z" - -#: fdmprinter.def.json -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "A posição perto da qual se inicia a impressão de cada parte em uma camada." - -#: fdmprinter.def.json -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Atrás à Esquerda" - -#: fdmprinter.def.json -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Atrás" - -#: fdmprinter.def.json -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Atrás à Direita" - -#: fdmprinter.def.json -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Direita" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Frente à Direita" - -#: fdmprinter.def.json -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Frente" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Frente à Esquerda" - -#: fdmprinter.def.json -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Esquerda" - -#: fdmprinter.def.json -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Coordenada X da Costura Z" - -#: fdmprinter.def.json -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 onde iniciar a impressão de cada parte em uma camada." - -#: fdmprinter.def.json -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Coordenada Y da Costura Z" - -#: fdmprinter.def.json -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 onde iniciar a impressão de cada parte em uma camada." - -#: fdmprinter.def.json -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Preferência do Canto da Costura" - -#: fdmprinter.def.json -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 costura. Nenhum significa que os cantos não terão influência na posição da costura. Ocultar Costura torna mais provável que a costura ocorra em um canto interior. Expôr Costura torna mais provável que a costura ocorra em um canto exterior. Ocultar ou Expôr Costura torna mais provável que a costura ocorra em um canto interior ou exterior. Ocultação Inteligente permite tanto cantos interiores quanto exteriores, mas escolhe os interiores mais frequentemente se apropriado." - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Nenhum" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Ocultar Costura" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Expôr Costura" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Ocultar ou Expor Costura" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Ocultação Inteligente" - -#: fdmprinter.def.json -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Costura Z Relativa" - -#: fdmprinter.def.json -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 habilitado, as coordenadas da costura Z são relativas ao centro de cada parte. Quando desabilitado, as coordenadas definem uma posição absoluta na plataforma de impressão." - -#: fdmprinter.def.json -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Superior/Inferior" - -#: fdmprinter.def.json -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Superior/Inferior" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Extrusor da Superfície Superior" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir a parte superior da peça. Este ajuste é usado em multi-extrusão." - -#: fdmprinter.def.json -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Camadas da Superfície Superior" - -#: fdmprinter.def.json -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 da superfície superior. Geralmente somente uma camada é suficiente para gerar superfícies de alta qualidade." - -#: fdmprinter.def.json -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extrusor Superior/Inferior" - -#: fdmprinter.def.json -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 carro extrusor usado para imprimir as paredes superiores e inferiores. Este ajuste é usado na multi-extrusão." - -#: fdmprinter.def.json -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Espessura Superior/Inferior" - -#: fdmprinter.def.json -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 das camadas superiores e inferiores da impressão. Este valor dividido pela altura de camada define o número de camadas superiores e inferiores." - -#: fdmprinter.def.json -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Espessura Superior" - -#: fdmprinter.def.json -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 das camadas superiores da impressão. Este valor dividido pela altura de camada define o número de camadas superiores." - -#: fdmprinter.def.json -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Camadas Superiores" - -#: fdmprinter.def.json -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 da espessura superior, este valor é arredondado para um inteiro." - -#: fdmprinter.def.json -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Espessura Inferior" - -#: fdmprinter.def.json -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 das camadas inferiores da impressão. Este valor dividido pela altura de camada define o número de camadas inferiores." - -#: fdmprinter.def.json -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Camadas Inferiores" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Camadas Inferiores Iniciais" - -#: fdmprinter.def.json -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 da plataforma de impressão pra cima. Quanto calculado a partir da espessura inferior, esse valor é arrendado para um número inteiro." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Padrão Superior/Inferior" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Padrão ou Estampa das camadas superiores e inferiores." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Camada Inicial do Padrão da Base" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "O padrão na base da impressão na primeira camada." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Linhas" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -#: fdmprinter.def.json -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Conectar Polígonos do Topo e Base" - -#: fdmprinter.def.json -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 "Conectar caminhos de contorno da base e topo quando estiverem próximos entre si. Para o padrão concêntrico, habilitar este ajuste reduzirá bastante o tempo de percurso, mas por as conexões poderem acontecer no meio do preenchimento, este recurso pode reduzir a qualidade da superfície superior." - -#: fdmprinter.def.json -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Ordem Monotônica Superior/Inferior" - -#: fdmprinter.def.json -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 filetes superiores e inferiores em uma ordem que os faz sempre se sobreporem a filetes adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna superfícies planas mais consistentes." - -#: fdmprinter.def.json -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Direções de Linha Superior/Inferior" - -#: fdmprinter.def.json -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 direções de linha inteiras para usar quando as camadas superiores e inferiores usarem os padrões de linha ou ziguezague. Elementos desta lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela inicia novamente. Os itens da lista são separados por vírgulas e a lita inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (45 e 135 graus)." - -#: fdmprinter.def.json -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Sem Contorno nas Lacunas Z" - -#: fdmprinter.def.json -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 pequenas lacunas verticais de apenas umas poucas camadas, normalmente há contorno em volta dessas camadas no espaço estreito. Habilite este ajuste para não gerar o contorno se a lacuna vertical for bem pequena. Isso melhora o tempo de impressão e fatiamento, mas tecnicamente deixa preenchimento exposto ao ar." - -#: fdmprinter.def.json -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Contagem de Paredes Extras de Contorno" - -#: fdmprinter.def.json -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 externa do padrão superior/inferir com um número de linhas concêntricas. Usar uma ou duas linhas melhora tetos e topos que começam a ser construídos em cima de padrões de preenchimento." - -#: fdmprinter.def.json -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Habilitar Passar a Ferro" - -#: fdmprinter.def.json -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 "Passa sobre a superfície superior uma vez a mais, mas extrudando muito pouco material. Isto serve para derreter mais o plástico em cima, criando uma superfície lisa. A pressão na câmara do bico é mantida alta tal que as rugas na superfície são preenchidas com material." - -#: fdmprinter.def.json -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Passar a Ferro Somente Camada Mais Alta" - -#: fdmprinter.def.json -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 "Somente executar a passagem a ferro na última camada da malha. Isto economiza tempo se as camadas abaixo não precisarem de um acabamento de superfície amaciado." - -#: fdmprinter.def.json -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Padrão de Passagem a Ferro" - -#: fdmprinter.def.json -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "O padrão a usar quando se passa a ferro as superfícies superiores." - -#: fdmprinter.def.json -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -#: fdmprinter.def.json -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -#: fdmprinter.def.json -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Ordem de Passagem a Ferro Monotônica" - -#: fdmprinter.def.json -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 filetes de passagem a ferro em uma ordem que os faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Isso faz levar um pouco mais de tempo na impressão, mas torna as superfícies mais consistentes." - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Espaçamento de Passagem a Ferro" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Fluxo de Passagem a Ferro" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Penetração da Passagem a Ferro" +"X-Generator: Poedit 3.2.2\n" #: fdmprinter.def.json msgctxt "ironing_inset description" @@ -1616,279 +23,39 @@ msgid "A distance to keep from the edges of the model. Ironing all the way to th msgstr "A distância a manter das arestas do modelo. Passar a ferro as arestas da malha podem resultar em um aspecto entalhado da sua peça." #: fdmprinter.def.json -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Velocidade de Passar o Ferro" +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." #: fdmprinter.def.json -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "A velocidade com a qual o ajuste de passar ferro é aplicado 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 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)." #: fdmprinter.def.json -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Aceleração de Passar a Ferro" +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 direções de linha inteiras para usar quando as camadas superiores e inferiores usarem os padrões de linha ou ziguezague. Elementos desta lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela inicia novamente. Os itens da lista são separados por vírgulas e a lita inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (45 e 135 graus)." #: fdmprinter.def.json -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "A aceleração com que o recurso de passar a ferro é feito." +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 "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar o ângulo default de 0 graus." #: fdmprinter.def.json -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Jerk de Passar a Ferro" +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 "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." #: fdmprinter.def.json -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que o recurso de passar a ferro é feito." +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 "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." #: fdmprinter.def.json -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Porcentagem de Sobreposição do Contorno" - -#: fdmprinter.def.json -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 "Ajusta a quantidade de sobreposição entre as paredes e (os extremos de) linhas centrais do contorno, como uma porcentagem das larguras de filete de contorno e a parede mais interna. Uma sobreposição leve permite que as paredes se conectem firmemente ao contorno. Note que, dadas uma largura de contorno e filete de parede iguais, qualquer porcentagem acima de 50% pode fazer com que algum contorno ultrapasse a parede, pois a este ponto a posição do bico do extrusor de contorno pode já ter passado do meio da parede." - -#: fdmprinter.def.json -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Sobreposição do Contorno" - -#: fdmprinter.def.json -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 "Ajusta a quantidade de sobreposição entre as paredes e (os extermos de) linhas centrais do contorno. Uma sobreposição pequena permite que as paredes se conectem firmemente ao contorno. Note que, dados uma largura de contorno e filete de parede iguais, qualquer valor maior que metade da largura da parede pode fazer com que o contorno ultrapasse a parede, pois a este ponto a posição do bico do extrusor de contorno pode já ter passado do meio da parede." - -#: fdmprinter.def.json -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Largura de Remoção de Contorno" - -#: fdmprinter.def.json -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 maior largura das áreas de contorno 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 inferiores e superiores em superfícies inclinadas do modelo." - -#: fdmprinter.def.json -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Largura de Remoção do Contorno Superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Largura de Remoção do Contorno Inferior" - -#: fdmprinter.def.json -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 maior largura das áreas de contorno inferiores 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 inferiores em superfícies inclinadas do modelo." - -#: fdmprinter.def.json -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Distância de Expansão do Contorno" - -#: fdmprinter.def.json -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 em que os contornos são expandidos pra dentro do preenchimento. Valores mais altos fazem o contorno aderir melhor ao padrão de preenchimento e faz as paredes de camadas vizinhas aderirem melhor ao contorno. Valores menores diminuem a quantidade de material usado." - -#: fdmprinter.def.json -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Distância de Expansão do Contorno Superior" - -#: fdmprinter.def.json -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 com que os contornos superiores são expandidos para dentro do preenchimento. Valores mais altos fazem o contorno se anexar melhor ao padrão de preenchimento e fazem as paredes da camada acima aderirem melhor ao contorno. Valores mais baixos economizam a quantidade de material usado." - -#: fdmprinter.def.json -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Distância de Expansão do Contorno Inferior" - -#: fdmprinter.def.json -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 com que os contornos inferiores são expandidos para dentro do preenchimento. Valores mais altos fazem o contorno se anexar melhor ao padrão de preenchimento e fazem as paredes da camada abaixo aderirem melhor ao contorno. Valores mais baixos economizam a quantidade de material usado." - -#: fdmprinter.def.json -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Ângulo Máximo do Contorno para Expansão" - -#: fdmprinter.def.json -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 "Superfícies superiores e/ou inferiores de seu objeto com um ângulo maior que este ajuste não terão seu contorno expandido. Isto permite evitar a expansão de áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação quase vertical. Um ângulo de 0° é horizontal e não causará expansão no contorno, enquanto que um ângulo de 90° é vertical e causará expansão em todo o contorno." - -#: fdmprinter.def.json -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Largura Mínima de Contorno para Expansão" - -#: fdmprinter.def.json -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 "Áreas de contorno mais estreitas que esta não são expandidas. Isto evita expandir as áreas estreitas que são criadas quando a superfície do modelo tem inclinações quase verticais." - -#: fdmprinter.def.json -msgctxt "infill label" -msgid "Infill" -msgstr "Preenchimento" - -#: fdmprinter.def.json -msgctxt "infill description" -msgid "Infill" -msgstr "Preenchimento" - -#: fdmprinter.def.json -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Extrusor do Preenchimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Densidade do Preenchimento" - -#: fdmprinter.def.json -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Ajusta a densidade de preenchimento da impressão." - -#: fdmprinter.def.json -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Distância da Linha de Preenchimento" - -#: fdmprinter.def.json -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 "Distância entre as linhas de preenchimento impressas. Este ajuste é calculado pela densidade de preenchimento e a largura de extrusão do preenchimento." - -#: fdmprinter.def.json -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Padrão de Preenchimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Grade" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -#: fdmprinter.def.json -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -#: fdmprinter.def.json -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Tri-Hexágono" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Cúbico" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Subdivisão Cúbica" - -#: fdmprinter.def.json -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octeto" - -#: fdmprinter.def.json -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Quarto Cúbico" - -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -#: fdmprinter.def.json -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Cruzado" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Cruzado 3D" - -#: fdmprinter.def.json -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Giróide" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Relâmpago" - -#: fdmprinter.def.json -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Conectar Linhas de Preenchimento" - -#: fdmprinter.def.json -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 "Conecta as extremidades onde o padrão de preenchimento toca a parede interna usando uma linha que segue a forma da parede interna. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduzir o efeito do preenchimento na qualidade de superfícies verticais. Desabilitar este ajuda diminui a quantidade de material usado." - -#: fdmprinter.def.json -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Conectar Polígonos do Preenchimento" - -#: fdmprinter.def.json -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 "Conecta os caminhos de preenchimentos onde estiverem próximos um ao outro. Para padrões de preenchimento que consistam de vários polígonos fechados, a habilitação deste ajuste reduz bastante o tempo de percurso." - -#: fdmprinter.def.json -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Direções de Filetes de Preenchimento" +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 direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." #: fdmprinter.def.json msgctxt "infill_angles description" @@ -1896,49 +63,44 @@ msgid "A list of integer line directions to use. Elements from the list are used msgstr "Uma lista de direções de filetes em números inteiros a usar. Elementos da lista são usados sequencialmente de acordo com o progresso das camadas e quando o fim da lista é alcançado, ela volta ao começo. Os itens da lista são separados por vírgula e a lista inteira é contida em colchetes. O default é uma lista vazia que implica em usar os ângulos default tradicionais (45 e 135 graus para os padrões linha e ziguezague e 45 graus para todos os outros padrões)." #: fdmprinter.def.json -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Deslocamento X do Preenchimento" +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 em que o bico é proibido de entrar." #: fdmprinter.def.json -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "O padrão de preenchimento é movido por esta distância no 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 em que a cabeça de impressão é proibida de entrar." #: fdmprinter.def.json -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Deslocamento do Preenchimento Y" +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "Uma peça completamente contida em outra peça pode gerar um brim externo que toca o interior da outra parte. Este ajuste remove todo o brim dentro desta distância dos buracos internos." #: fdmprinter.def.json -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "O padrão de preenchimento é movido por esta distância no eixo Y." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Posição Absoluta de Purga do Extrusor" #: fdmprinter.def.json -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Aleatorizar o Começo do Preenchimento" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Máximo Variação das Camadas Adaptativas" #: fdmprinter.def.json -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 "Aleatoriza qual linha do preenchimento é impressa primeiro. Isto evita que um segmento seja mais forte que os outros, mas ao custo de um percurso adicional." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Tamanho da Topografia de Camadas Adaptativas" #: fdmprinter.def.json -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Multiplicador de Filete de Preenchimento" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Tamanho de Passo da Variação das Camadas Adaptativas" #: fdmprinter.def.json -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 cada file de preenchimento para este número de filetes. Os filetes extras não se cruzam, se evitam. Isto torna o preenchimento mais rígido, mas aumenta o tempo de impressão e uso do material." - -#: fdmprinter.def.json -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Contagem de Paredes de Preenchimento Extras" +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." #: fdmprinter.def.json msgctxt "infill_wall_line_count description" @@ -1950,284 +112,9 @@ msgstr "" "Este recurso pode combinar com o Conectar Polígonos de Preenchimento para conectar todo o preenchimento em um único caminho de extrusão sem a necessidade de percursos ou retrações se os ajustes forem consistentes." #: fdmprinter.def.json -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Cobertura de Subdivisão Cúbica" - -#: fdmprinter.def.json -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 adicional ao raio do centro de cada cubo para verificar a borda do modelo, de modo a decidir se este cubo deve ser subdividido. Valores maiores levam a uma cobertura mais espessa de pequenos cubos perto da borda do modelo." - -#: fdmprinter.def.json -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Porcentagem de Sobreposição do Preenchimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Sobreposição de Preenchimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Distância de Varredura do Preenchimento" - -#: fdmprinter.def.json -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 "Distância do percurso inserido após cada linha de preenchimento, para fazer o preenchimento aderir melhor às paredes. Esta opção é similar à sobreposição de preenchimento mas sem extrusão e somente em uma extremidade do filete de preenchimento." - -#: fdmprinter.def.json -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Espessura da Camada de Preenchimento" - -#: fdmprinter.def.json -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 preenchimento. Este valor deve sempre ser um múltiplo da altura de camada e se não for, é arredondado." - -#: fdmprinter.def.json -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Passos Graduais de Preenchimento" - -#: fdmprinter.def.json -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 vezes para reduzir a densidade de preenchimento pela metade quando estiver chegando mais além embaixo das superfícies superiores. Áreas que estão mais perto das superfícies superiores ganham uma densidade maior, numa gradação até a densidade configurada de preenchimento." - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Altura de Passo do Preenchimento Gradual" - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "A altura do preenchimento de uma dada densidade antes de trocar para a metade desta densidade." - -#: fdmprinter.def.json -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Preenchimento Antes das Paredes" - -#: fdmprinter.def.json -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 preenchimento antes de imprimir as paredes. Imprimir as paredes primeiro pode levar a paredes mais precisas, mas seções pendentes são impressas com pior qualidade. Imprimir o preenchimento primeiro leva a paredes mais fortes, mas o padrão de preenchimento pode às vezes aparecer através da superfície." - -#: fdmprinter.def.json -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Área Mínima para Preenchimento" - -#: fdmprinter.def.json -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Não gerar preenchimento para áreas menores que esta (usar contorno)." - -#: fdmprinter.def.json -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Suporte do Preenchimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Ângulo de Seções Pendentes do Preenchimento" - -#: fdmprinter.def.json -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 de seções pendentes internas para as quais o preenchimento é adicionado. Em um valor de 0°, objetos são completamente preenchidos no padrão escolhido, e 90° torna o volume oco, sem preenchimento." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Espessura do Suporte da Aresta de Contorno" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "A espessura do preenchimento extra que suporta arestas de contorno." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Camadas do Suporte da Aresta de Contorno" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "O número de camadas de preenchimento que suportam arestas de contorno." - -#: fdmprinter.def.json -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Ângulo de Suporte do Preenchimento Relâmpago" - -#: fdmprinter.def.json -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 uma camada do preenchimento relâmpago deve suportar algo sobre si. Medido no ângulo de acordo com a espessura da camada." - -#: fdmprinter.def.json -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Ângulo de Seção Pendente do Preenchimento Relâmpago" - -#: fdmprinter.def.json -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 a camada de preenchimento relâmpago deve suportar o modelo sobre si. Medido no ângulo de acordo com a espessura." - -#: fdmprinter.def.json -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Ângulo de Poda do Preenchimento Relâmpago" - -#: fdmprinter.def.json -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 pontas dos filetes de preenchimento são encurtadas para poupar material. Este ajuste é o ângulo da seção pendente das pontas desses filetes." - -#: fdmprinter.def.json -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Ângulo de Retificação do Preenchimento Relâmpago" - -#: fdmprinter.def.json -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 "Os filetes de preenchimentos são retificados para poupar tempo de impressão. Este é o ângulo máximo de seção pendente permito através do comprimento do filete de preenchimento." - -#: fdmprinter.def.json -msgctxt "material label" -msgid "Material" -msgstr "Material" - -#: fdmprinter.def.json -msgctxt "material description" -msgid "Material" -msgstr "Material" - -#: fdmprinter.def.json -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Temperatura Default de Impressão" - -#: fdmprinter.def.json -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 default usada para a impressão. Esta deve ser a temperatura \"base\" de um material. Todas as outras temperaturas de impressão devem usar diferenças baseadas neste valor" - -#: fdmprinter.def.json -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatura do Volume de Impressão" - -#: fdmprinter.def.json -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 em que imprimir. Se este valor for 0, a temperatura de volume de impressão não será ajustada." - -#: fdmprinter.def.json -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Temperatura de Impressão" - -#: fdmprinter.def.json -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "A temperatura usada para impressão." - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Temperatura de Impressão da Camada Inicial" - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "A temperatura usada para imprimir a primeira camada. Coloque 0 para desabilitar processamento especial da camada inicial." - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Temperatura Inicial de Impressão" - -#: fdmprinter.def.json -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 enquanto se esquenta até a Temperatura de Impressão na qual a impressão pode já ser iniciada." - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Temperatura de Impressão Final" - -#: fdmprinter.def.json -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 para a qual se deve começar a esfriar pouco antes do fim da impressão." - -#: fdmprinter.def.json -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Modificador de Velocidade de Resfriamento de Extrusão" - -#: fdmprinter.def.json -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 "Velocidade adicional pela qual o bico resfria enquanto extruda. O mesmo valor é uso para denotar a velocidade de aquecimento quando se esquenta ao extrudar." - -#: fdmprinter.def.json -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Temperatura Default da Plataforma de Impressão" - -#: fdmprinter.def.json -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 default usada para a plataforma aquecida de impressão. Este valor deve ser a temperatura \"base\" da plataforma. Todas as outras temperaturas de impressão devem usar diferenças baseadas neste valor" - -#: fdmprinter.def.json -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Temperatura da Mesa de Impressão" - -#: fdmprinter.def.json -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 usada para a plataforma aquecida de impressão. Se for 0, a plataforma de impressão não será aquecida." - -#: fdmprinter.def.json -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Temperatura da Mesa de Impressão da Camada Inicial" - -#: fdmprinter.def.json -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 usada para a plataforma aquecida de impressão na primeira camada. Se for 0, a plataforma de impressão não será aquecida durante a primeira camada." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Aderência" #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" @@ -2235,1924 +122,19 @@ msgid "Adhesion Tendency" msgstr "Tendência à Aderência" #: fdmprinter.def.json -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Tendência de aderência da 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 "Ajusta a quantidade de sobreposição entre as paredes e (os extremos de) linhas centrais do contorno, como uma porcentagem das larguras de filete de contorno e a parede mais interna. Uma sobreposição leve permite que as paredes se conectem firmemente ao contorno. Note que, dadas uma largura de contorno e filete de parede iguais, qualquer porcentagem acima de 50% pode fazer com que algum contorno ultrapasse a parede, pois a este ponto a posição do bico do extrusor de contorno pode já ter passado do meio da parede." #: fdmprinter.def.json -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Energia de 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 "Ajusta a quantidade de sobreposição entre as paredes e (os extermos de) linhas centrais do contorno. Uma sobreposição pequena permite que as paredes se conectem firmemente ao contorno. Note que, dados uma largura de contorno e filete de parede iguais, qualquer valor maior que metade da largura da parede pode fazer com que o contorno ultrapasse a parede, pois a este ponto a posição do bico do extrusor de contorno pode já ter passado do meio da parede." #: fdmprinter.def.json -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Energia de superfície." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Compensação de Fator de Encolhimento" - -#: fdmprinter.def.json -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 o encolhimento do material enquanto esfria, o modelo será redimensionado por este fator." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Compensação de Fator de Encolhimento Horizontal" - -#: fdmprinter.def.json -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 pelo encolhimento do material enquanto ele esfria, o modelo será ampliado por este fator na direção XY (horizontalmente)." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Compensação de Fator de Encolhimento Vertical" - -#: fdmprinter.def.json -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 pelo encolhimento do material enquanto esfria, o modelo será ampliado por este fator na direção Z (verticalmente)." - -#: fdmprinter.def.json -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Material Cristalino" - -#: fdmprinter.def.json -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 material é do tipo que se destaca completamente quando aquecido (cristalino), ou é o tipo que produz cadeias de polímero entrelaçadas (não-cristalino)?" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Posição Retraída Anti-escorrimento" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "De quanto o material precisa ser retraído antes que pare de escorrer." - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Velocidade de Retração Anti-escorrimento" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Qual a velocidade do material para que seja retraído durante a troca de filamento sem escorrimento." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Posição Retraída de Preparação de Quebra" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Quanto o filamento pode ser esticado antes que quebre, quando aquecido." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Velocidade de Retração de Preparação de Quebra" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "Qual a velocidade do material para que seja retraído antes de quebrar em uma retração." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatura de Quebra de Preparação" - -#: fdmprinter.def.json -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 usada para purgar material, deve ser grosso modo a temperatura de impressão mais alta possível." - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Posição Retraída de Quebra" - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "De quanto o filamento deve ser retraído para se destacar completamente." - -#: fdmprinter.def.json -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Velocidade de Retração de Quebra" - -#: fdmprinter.def.json -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "A velocidade com a qual retrair o filamento para que se destaque completamente." - -#: fdmprinter.def.json -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Temperatura de Quebra" - -#: fdmprinter.def.json -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "A temperatura em que o filamento é destacado completamente." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Velocidade de Descarga de Purga" - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "Quão rápido purgar o material depois de alternar para um material diferente." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Comprimento da Descarga de Purga" - -#: fdmprinter.def.json -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 "Quanto material usar para purgar o material anterior do bico (em comprimento de filamento) quando alternar para um material diferente." - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Velocidade de Purga do Fim do Filamento" - -#: fdmprinter.def.json -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 "Quão rápido purgar o material depois de trocar um carretel vazio por um novo carretel do mesmo material." - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Comprimento de Purga do Fim do Filamento" - -#: fdmprinter.def.json -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 "Quanto material usar para purgar o material anterior do bico (em comprimento de filamento) quando um carretel vazio for trocado por um carretel novo do mesmo material." - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Duração Máxima de Descanso" - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "Quanto tempo o material pode ser mantido fora de armazenamento seco com segurança." - -#: fdmprinter.def.json -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Fator de Movimento Sem Carga" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flow label" -msgid "Flow" -msgstr "Fluxo" - -#: fdmprinter.def.json -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 extrudado é multiplicado por este valor." - -#: fdmprinter.def.json -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Fluxo de Parede" - -#: fdmprinter.def.json -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Compensação de fluxo em filetes das paredes." - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Fluxo da Parede Externa" - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Compensação de fluxo no filete de parede mais externo." - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Fluxo da(s) Parede(s) Interna(s)" - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Compensação de fluxo em todos os filetes de parede excetuando o mais externo." - -#: fdmprinter.def.json -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Fluxo de Topo/Base" - -#: fdmprinter.def.json -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Compensação de fluxo em filetes do topo e base." - -#: fdmprinter.def.json -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Fluxo do Contorno da Superfície Superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Fluxo de Preenchimento" - -#: fdmprinter.def.json -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Compensação de fluxo em filetes de preenchimento." - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Fluxo de Skirt/Brim" - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Compensação de Fluxo em filetes de Skirt e Brim." - -#: fdmprinter.def.json -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Fluxo de Suporte" - -#: fdmprinter.def.json -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Compensação de fluxo em filetes de estruturas de suporte." - -#: fdmprinter.def.json -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Fluxo de Interface de Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Fluxo do Teto de Suporte" - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Compensação de fluxo em filetes do teto de suporte." - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Fluxo da Base de Suporte" - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Compensação de fluxo nos filetes da base do suporte." - -#: fdmprinter.def.json -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Fluxo da Torre de Purga" - -#: fdmprinter.def.json -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Compensação de fluxo em filetes de torre de purga." - -#: fdmprinter.def.json -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Fluxo Inicial de Camada" - -#: fdmprinter.def.json -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 primeira camada; a quantidade de material extrudado na camada inicial é multiplicada por este valor." - -#: fdmprinter.def.json -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Temperatura de Espera" - -#: fdmprinter.def.json -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "A temperatura do bico quando outro bico está sendo usado para a impressão." - -#: fdmprinter.def.json -msgctxt "speed label" -msgid "Speed" -msgstr "Velocidade" - -#: fdmprinter.def.json -msgctxt "speed description" -msgid "Speed" -msgstr "Velocidade" - -#: fdmprinter.def.json -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Velocidade de Impressão" - -#: fdmprinter.def.json -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Velocidade em que se realiza a impressão." - -#: fdmprinter.def.json -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Velocidade de Preenchimento" - -#: fdmprinter.def.json -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Velocidade em que se imprime o preenchimento." - -#: fdmprinter.def.json -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Velocidade da Parede" - -#: fdmprinter.def.json -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Velocidade em que se imprimem as paredes." - -#: fdmprinter.def.json -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Velocidade da Parede Exterior" - -#: fdmprinter.def.json -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 em que as paredes mais externas são impressas. Imprimir a parede mais externa a uma velocidade menor melhora a qualidade final do contorno. No entanto, ter uma diferença muito grande entre a velocidade da parede interna e a velocidade da parede externa afetará a qualidade de forma negativa." - -#: fdmprinter.def.json -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Velocidade da Parede Interior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Velocidade da Superfície Superior" - -#: fdmprinter.def.json -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "A velocidade com que as camadas superiores são impressas." - -#: fdmprinter.def.json -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Velocidade Superior/Inferior" - -#: fdmprinter.def.json -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Velocidade em que as camadas superiores e inferiores são impressas." - -#: fdmprinter.def.json -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Velocidade do Suporte" - -#: fdmprinter.def.json -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 em que a estrutura de suporte é impressa. Imprimir o suporte a velocidades mais altas pode reduzir bastante o tempo de impressão. A qualidade de superfície das estruturas de suporte não é importante já que são removidas após a impressão." - -#: fdmprinter.def.json -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Velocidade do Preenchimento do Suporte" - -#: fdmprinter.def.json -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 em que o preenchimento do suporte é impresso. Imprimir o preenchimento em velocidades menores melhora a estabilidade." - -#: fdmprinter.def.json -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Velocidade da Interface de Suporte" - -#: fdmprinter.def.json -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 com que os tetos e bases do suporte são impressos. Imprimi-los em velocidades mais baixas pode melhorar a qualidade de seções pendentes." - -#: fdmprinter.def.json -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Velocidade do Teto de Suporte" - -#: fdmprinter.def.json -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 em que os tetos dos suportes são impressos. Imprimi-los em velocidade mais baixas pode melhorar a qualidade de seções pendentes." - -#: fdmprinter.def.json -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Velocidade de Base do Suporte" - -#: fdmprinter.def.json -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 em que a base do suporte é impressa. Imprimi-la em velocidade mais baixa pode melhorar a aderência do suporte no topo da superfície." - -#: fdmprinter.def.json -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Velocidade da Torre de Purga" - -#: fdmprinter.def.json -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 em que a torre de purga é impressa. Imprimir a torre de purga mais lentamente pode torná-la mais estável quando a aderência entre os diferentes filamentos é subótima." - -#: fdmprinter.def.json -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Velocidade de Percurso" - -#: fdmprinter.def.json -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Velocidade em que ocorrem os movimentos de percurso." - -#: fdmprinter.def.json -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Velocidade da Camada Inicial" - -#: fdmprinter.def.json -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 para a camada inicial. Um valor menor é sugerido para melhorar aderência à mesa de impressão. Não afeta as estruturas de aderência à mesa de impressão como o brim e o raft." - -#: fdmprinter.def.json -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Velocidade de Impressão da Camada Inicial" - -#: fdmprinter.def.json -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 para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão." - -#: fdmprinter.def.json -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Velocidade de Percurso da Camada Inicial" - -#: fdmprinter.def.json -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 percursos da camada inicial. Um valor mais baixo que o normal é aconselhado para prevenir o puxão de partes impressas da mesa de impressão. O valor deste ajuste pode ser automaticamente calculado do raio entre a Velocidade de Percurso e a Velocidade de Impressão." - -#: fdmprinter.def.json -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Velocidade do Skirt e Brim" - -#: fdmprinter.def.json -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 "Velocidade em que o Brim (Bainha) e Skirt (Saia) são impressos. Normalmente isto é feito na velocidade de camada inicial, mas você pode querer imprimi-los em velocidade diferente." - -#: fdmprinter.def.json -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Velocidade do Salto Z" - -#: fdmprinter.def.json -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 em que o movimento Z vertical é feito para os saltos Z. Tipicamente mais baixa que a velocidade de impressão já que mover a mesa de impressão ou eixos da máquina é mais difícil." - -#: fdmprinter.def.json -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Número de Camadas Mais Lentas" - -#: fdmprinter.def.json -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 poucas primeiras camadas são impressas mais devagar que o resto do modelo, para conseguir melhor aderência à mesa e melhorar a taxa de sucesso geral das impressão. A velocidade é gradualmente aumentada entre estas camadas." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Raio de Equalização de Fluxo" - -#: fdmprinter.def.json -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 de largura de extrusão baseada na velocidade. Em 0%, a velocidade de movimento é mantida constante na Velocidade de Impressão. Em 100%, a velocidade de movimento é ajustada de forma que o fluxo (em mm³/s) seja mantido constante, isto é, filetes de metade da Largura de Filete normal são impressos duas vezes mais rápido e filetes duas vezes mais espessos são impressos na metade da velocidade. Um valor mais alto que 100% pode ajudar a compensar pela maior pressão necessária para extrudar filetes espessos." - -#: fdmprinter.def.json -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Habilitar Controle de Aceleração" - -#: fdmprinter.def.json -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 a aceleração da cabeça de impressão. Aumentar as acelerações pode reduzir tempo de impressão ao custo de qualidade de impressão." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Aceleração da Impressão" - -#: fdmprinter.def.json -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Aceleração com que se realiza a impressão." - -#: fdmprinter.def.json -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Aceleração do Preenchimento" - -#: fdmprinter.def.json -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "A aceleração com que o preenchimento é impresso." - -#: fdmprinter.def.json -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Aceleração da Parede" - -#: fdmprinter.def.json -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Aceleração com que se imprimem as paredes." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Aceleração da Parede Exterior" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "Aceleração com que se imprime a parede exterior." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Aceleração das Paredes Interiores" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Aceleração da Superfície Superior" - -#: fdmprinter.def.json -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "A aceleração com a qual as camadas da superfície superior são impressas." - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Aceleração Superior/Inferior" - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Aceleração com que as camadas superiores e inferiores são impressas." - -#: fdmprinter.def.json -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Aceleração do Suporte" - -#: fdmprinter.def.json -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Aceleração com que as estruturas de suporte são impressas." - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Aceleração do Preenchimento do Suporte" - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Aceleração com que se imprime o preenchimento dos suportes." - -#: fdmprinter.def.json -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Aceleração da Interface de Suporte" - -#: fdmprinter.def.json -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 tetos e bases de suporte são impressos. Imprimi-los em aceleração menor pode melhorar a qualidade das seções pendentes." - -#: fdmprinter.def.json -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Aceleração do Teto de Suporte" - -#: fdmprinter.def.json -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 tetos de suporte são impressos. Imprimi-los em aceleração menor pode melhorar a qualidade das seções pendentes." - -#: fdmprinter.def.json -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Aceleração da Base do Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Aceleração da Torre de Purga" - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "Aceleração com que a torre de purga é impressa." - -#: fdmprinter.def.json -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Aceleração de Percurso" - -#: fdmprinter.def.json -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Aceleração com que se realizam os percursos." - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Aceleração da Camada Inicial" - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Aceleração para a camada inicial." - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Aceleração de Impressão da Camada Inicial" - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "Aceleração durante a impressão da camada inicial." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Aceleração de Percurso da Camada Inicial" - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Aceleração para percursos na camada inicial." - -#: fdmprinter.def.json -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Aceleração para Skirt e Brim" - -#: fdmprinter.def.json -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 "Aceleração com a qual o skirt e o brim são impressos. Normalmente isto é feito com a aceleração de camada inicial, mas às vezes você pode querer imprimir o skirt ou brim em uma aceleração diferente." - -#: fdmprinter.def.json -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Habilitar Controle de Jerk" - -#: fdmprinter.def.json -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 ao custo de qualidade de impressão." - -#: fdmprinter.def.json -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Jerk da Impressão" - -#: fdmprinter.def.json -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "A mudança instantânea máxima de velocidade em uma direção da cabeça de impressão." - -#: fdmprinter.def.json -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Jerk do Preenchimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Jerk da Parede" - -#: fdmprinter.def.json -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes são impressas." - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Jerk da Parede Exterior" - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que a parede externa é impressa." - -#: fdmprinter.def.json -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Jerk das Paredes Internas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Jerk da Superfície Superior" - -#: fdmprinter.def.json -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as camadas da superfície superior são impressas." - -#: fdmprinter.def.json -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Jerk Superior/Inferior" - -#: fdmprinter.def.json -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as camadas superiores e inferiores são impressas." - -#: fdmprinter.def.json -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Jerk do Suporte" - -#: fdmprinter.def.json -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as estruturas de suporte são impressas." - -#: fdmprinter.def.json -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Jerk de Preenchimento de Suporte" - -#: fdmprinter.def.json -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que o preenchimento do suporte é impresso." - -#: fdmprinter.def.json -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Jerk da Interface de Suporte" - -#: fdmprinter.def.json -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "A máxima mudança de velocidade instantânea com a qual os tetos e bases dos suportes são impressos." - -#: fdmprinter.def.json -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Jerk do Teto de Suporte" - -#: fdmprinter.def.json -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "A máxima mudança de velocidade instantânea com que os tetos dos suportes são impressos." - -#: fdmprinter.def.json -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Jerk da Base do Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Jerk da Torre de Purga" - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "A mudança instantânea máxima de velocidade em uma direção com que a torre de purga é impressa." - -#: fdmprinter.def.json -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Jerk de Percurso" - -#: fdmprinter.def.json -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "A mudança instantânea máxima de velocidade em uma direção com que os percursos são feitos." - -#: fdmprinter.def.json -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Jerk da Camada Inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Jerk de Impressão da Camada Inicial" - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "A mudança instantânea máxima de velocidade em uma direção durante a impressão da camada inicial." - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Jerk de Percurso da Camada Inicial" - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "A mudança instantânea máxima de velocidade em uma direção nos percursos da camada inicial." - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Jerk de Skirt e Brim" - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "A mudança instantânea máxima de velocidade em uma direção com que o skirt (saia) e brim (bainha) são impressos." - -#: fdmprinter.def.json -msgctxt "travel label" -msgid "Travel" -msgstr "Percurso" - -#: fdmprinter.def.json -msgctxt "travel description" -msgid "travel" -msgstr "percurso" - -#: fdmprinter.def.json -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Habilitar Retração" - -#: fdmprinter.def.json -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Retrair o filamento quando o bico estiver se movendo sobre uma área não-impressa." - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Retrai em Mudança de Camada" - -#: fdmprinter.def.json -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 bico está se movendo para a próxima camada." - -#: fdmprinter.def.json -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Distância da Retração" - -#: fdmprinter.def.json -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "O comprimento de filamento retornado durante uma retração." - -#: fdmprinter.def.json -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Velocidade de Retração" - -#: fdmprinter.def.json -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "A velocidade com a qual o filamento é recolhido e avançado durante o movimento de retração." - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Velocidade de Recolhimento de Retração" - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "A velocidade com a qual o filamento é recolhido durante o movimento de retração." - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Velocidade de Avanço da Retração" - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "A velocidade com a qual o filamento é avançado durante o movimento de retração." - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Quantidade Adicional de Avanço da Retração" - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Alguns materiais podem escorrer um pouco durante o percurso, o que pode ser compensando neste ajuste." - -#: fdmprinter.def.json -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Percurso Mínimo para Retração" - -#: fdmprinter.def.json -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 percurso necessária para que uma retração aconteça. Isto ajuda a ter menos retrações em uma área pequena." - -#: fdmprinter.def.json -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Contagem de Retrações Máxima" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Janela de Distância de Extrusão Mínima" - -#: fdmprinter.def.json -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 "A janela em que a contagem de retrações máxima é válida. Este valor deve ser aproximadamente o mesmo que a distância de retração, de modo que efetivamente o número de vez que a retração passa pelo mesmo segmento de material é limitada." - -#: fdmprinter.def.json -msgctxt "limit_support_retractions label" -msgid "Limit Support Retractions" -msgstr "Limitar Retrações de Suporte" - -#: fdmprinter.def.json -msgctxt "limit_support_retractions description" -msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -msgstr "Omitir a retração ao mover de suporte a suporte em linha reta. Habilitar este ajuste economiza tempo de impressão, mas pode levar a fiapos excessivos na estrutura de suporte." - -#: fdmprinter.def.json -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Modo de Combing" - -#: fdmprinter.def.json -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 "O Combing mantém o bico dentro de áreas já impressas ao fazer o percurso. Isto causa movimentações de percurso um pouco mais demoradas mas reduz a necessidade de retrações. Se o combing estiver desligado, o material sofrerá retração eo bico se moverá em linha reta até o próximo ponto. É possível também evitar combing sobre contornos inferiores e superiores ou somente fazer combing dentro do preenchimento." - -#: fdmprinter.def.json -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Desligado" - -#: fdmprinter.def.json -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Tudo" - -#: fdmprinter.def.json -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Não na Superfície Externa" - -#: fdmprinter.def.json -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Não no Contorno" - -#: fdmprinter.def.json -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Dentro do Preenchimento" - -#: fdmprinter.def.json -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Máxima Distância de Combing Sem Retração" - -#: fdmprinter.def.json -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 "Quando maior que zero, os movimentos de percurso de combing que forem maiores que essa distância usarão retração. Se deixado em zero, não haverá máximo e os movimentos de combing não usarão retração." - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Retrair Antes da Parede Externa" - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Sempre retrair quando se mover para iniciar uma parede externa." - -#: fdmprinter.def.json -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Evitar Partes Impressas nas Viagens" - -#: fdmprinter.def.json -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 bico evita partes já impressas quando está em uma percurso. Esta opção está disponível somente quando combing (penteamento) está habilitado." - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Evitar Suportes No Percurso" - -#: fdmprinter.def.json -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 bico evita suportes já impressos durante o percurso. Esta opção só está disponível quando combing estiver habilitado." - -#: fdmprinter.def.json -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Distância de Desvio de Percurso" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "X Inicial da Camada" - -#: fdmprinter.def.json -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 de onde achar a parte com que começar a imprimir cada camada." - -#: fdmprinter.def.json -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Y Inicial da Camada" - -#: fdmprinter.def.json -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 próxima de onde achar a parte com que começar a imprimir cada camada." - -#: fdmprinter.def.json -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Salto Z Ao Retrair" - -#: fdmprinter.def.json -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 uma retração é feita, sobe-se um pouco em Z para criar um espaço entre o bico e a impressão. Isso evita que o bico fique batendo nas impressões durante o percurso, reduzindo a chance de chutar a peça para fora da mesa." - -#: fdmprinter.def.json -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Salto Z Somente Sobre Partes Impressas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Altura do Salto Z" - -#: fdmprinter.def.json -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Diferença de altura ao realizar um Salto Z." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Salto Z Após Troca de Extrusor" - -#: fdmprinter.def.json -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 "Quando a máquina troca de um extrusor para o outro, sobe-se um pouco em Z para criar um espaço entre o bico e a impressão. Isso impede que o bico escorra material em cima da impressão." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Salto Z Após Troca de Altura do Extrusor" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cooling label" -msgid "Cooling" -msgstr "Refrigeração" - -#: fdmprinter.def.json -msgctxt "cooling description" -msgid "Cooling" -msgstr "Refrigeração" - -#: fdmprinter.def.json -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Habilitar Refrigeração de Impressão" - -#: fdmprinter.def.json -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 as ventoinhas de refrigeração ao imprimir. As ventoinhas aprimoram a qualidade de impressão em camadas de tempo curto de impressão e em pontes e seções pendentes." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Velocidade da Ventoinha" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "A velocidade em que as ventoinhas giram." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Velocidade Regular da Ventoinha" - -#: fdmprinter.def.json -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 "Velocidade em que as ventoinhas giram antes de dispararem o limite. Quando uma camada imprime mais rapidamente que o limite de tempo, a velocidade de ventoinha aumenta gradualmente até a velocidade máxima." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Velocidade Máxima da Ventoinha" - -#: fdmprinter.def.json -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 "Velocidade em que as ventoinhas giram no tempo mínimo de camada. A velocidade da ventoinha gradualmente aumenta da regular até a máxima quando o limite é atingido." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Limite de Tempo para Mudança de Velocidade da Ventoinha" - -#: fdmprinter.def.json -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 limite entre a velocidade regular da ventoinha e a máxima. Camadas cuja impressão é mais lenta que este tempo usarão a velocidade regular. Camadas mais rápidas gradualmente aumentarão até a velocidade máxima de ventoinha." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Velocidade Inicial da Ventoinha" - -#: fdmprinter.def.json -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 em que as ventoinhas giram no início da impressão. Em camadas subsequentes a velocidade da ventoinha é gradualmente aumentada até a camada correspondente ao ajuste 'Velocidade Regular da Ventoinha na Altura'." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Velocidade Regular da Ventoinha na Altura" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Velocidade Regular da Ventoinha na Camada" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Tempo Mínimo de Camada" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Velocidade Mínima" - -#: fdmprinter.def.json -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, mesmo que se tente desacelerar para obedecer ao tempo mínimo de camada. Quando a impressora desacelera demais, a pressão no bico pode ficar muito baixa, o que resulta em baixa qualidade de impressão." - -#: fdmprinter.def.json -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Levantar Cabeça" - -#: fdmprinter.def.json -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 acaba sendo usada por causa do tempo mínimo de camada, levanta a cabeça para longe da impressão e espera tempo extra até que o tempo mínimo de camada seja alcançado." - -#: fdmprinter.def.json -msgctxt "support label" -msgid "Support" -msgstr "Suporte" - -#: fdmprinter.def.json -msgctxt "support description" -msgid "Support" -msgstr "Suporte" - -#: fdmprinter.def.json -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Gerar Suporte" - -#: fdmprinter.def.json -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 "Gerar estrutura que suportem partes do modelo que tenham seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extrusor do Suporte" - -#: fdmprinter.def.json -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir os suportes. Isto é utilizado em multi-extrusão." - -#: fdmprinter.def.json -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extrusor do Preenchimento do Suporte" - -#: fdmprinter.def.json -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 extrusor a usar para imprimir o preenchimento do suporte. Isto é utilizado em multi-extrusão." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extrusor de Suporte da Primeira Camada" - -#: fdmprinter.def.json -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 extrusor a usar para imprimir a primeira camada de preenchimento de suporte. Isto é utilizado em multi-extrusão." - -#: fdmprinter.def.json -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extrusor da Interface de Suporte" - -#: fdmprinter.def.json -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 extrusor a usar para imprimir os tetos e bases dos suportes. Isto é utilizado em multi-extrusão." - -#: fdmprinter.def.json -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extrusor do Teto do Suporte" - -#: fdmprinter.def.json -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 extrusor a usar para imprimir o teto do suporte. Isto é utilizado em multi-extrusão." - -#: fdmprinter.def.json -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extrusor da Base do Suporte" - -#: fdmprinter.def.json -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 extrusor a usar para imprimir as bases dos suportes. Isto é utilizado em multi-extrusão." - -#: fdmprinter.def.json -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Estrutura de Suporte" - -#: fdmprinter.def.json -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 "Permite escolher entre as técnicas para geração de suporte. Suporte \"normal\" cria a estrutura de suporte diretamente abaixo das seções pendentes e vai em linha reta pra baixo. Suporte \"em árvore\" cria galhos na direção das seções pendentes, suportando o modelo nas pontas destes, e permitndo que se distribuam em torno do modelo para apoiá-lo na plataforma de impressão tanto quanto possível." - -#: fdmprinter.def.json -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" - -#: fdmprinter.def.json -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Árvore" - -#: fdmprinter.def.json -msgctxt "support_tree_angle label" -msgid "Tree Support Branch Angle" -msgstr "Ângulo do Galho do Suporte em Árvore" - -#: fdmprinter.def.json -msgctxt "support_tree_angle description" -msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "Ô angulo dos galhos. Use um ângulo menor para torná-los mais verticais e mais estáveis. Use um ângulo maior para aumentar o alcance." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance label" -msgid "Tree Support Branch Distance" -msgstr "Distância dos Galhos do Suporte em Árvore" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance description" -msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -msgstr "Quão distantes os galhos precisam estar quando tocam o modelo. Tornar esta distância pequena fará com que o suporte em árvore toque o modelo em mais pontos, permitindo maior sustentação mas tornando o suporte mais difícil de remover." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter label" -msgid "Tree Support Branch Diameter" -msgstr "Diâmetro de Galho do Suporte em Árvore" - -#: fdmprinter.def.json -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 galhos mais finos do suporte em árvore. Galhos mais grossos são mais resistentes. Galhos na direção da base serão mais grossos que essa medida." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter_angle label" -msgid "Tree Support Branch Diameter Angle" -msgstr "Ângulo do Diâmetro do Galho do Suporte em Árvore" - -#: fdmprinter.def.json -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 galhos enquanto se tornam gradualmente mais grossos na direção da base. Um ângulo de 0 fará com que os galhos tenham grossura uniforme no seu comrpimento. Um ângulo levemente maior que zero pode aumentar a estabilidade do suporte em árvore." - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution label" -msgid "Tree Support Collision Resolution" -msgstr "Resolução de Colisão do Suporte em Árvore" - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution description" -msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -msgstr "Resolução para computar colisões com a qual evitar tocar o modelo. Ajustar valor mais baixos produzirá árvore mais precisas que falharão menos, mas aumentará o tempo de fatiamento dramaticamente." - -#: fdmprinter.def.json -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Colocação dos Suportes" - -#: fdmprinter.def.json -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. Pode ser ajustada para suportes que somente tocam a mesa de impressão ou suportes em todos os lugares com seções pendentes (incluindo as que não estão pendentes em relação à mesa)." - -#: fdmprinter.def.json -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Tocando a Mesa" - -#: fdmprinter.def.json -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Em Todo Lugar" - -#: fdmprinter.def.json -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Ângulo para Caracterizar Seções Pendentes" - -#: fdmprinter.def.json -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 de seções pendentes para os quais o suporte é criado. Com o valor de 0° todas as seções pendentes serão suportadas, e 90° não criará nenhum suporte." - -#: fdmprinter.def.json -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Padrão do Suporte" - -#: fdmprinter.def.json -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 (estampa) das estruturas de suporte da impressão. As diferentes opções disponíveis resultam em suportes mais resistentes ou mais fáceis de remover." - -#: fdmprinter.def.json -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -#: fdmprinter.def.json -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Grade" - -#: fdmprinter.def.json -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -#: fdmprinter.def.json -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -#: fdmprinter.def.json -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -#: fdmprinter.def.json -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Cruzado" - -#: fdmprinter.def.json -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Giróide" - -#: fdmprinter.def.json -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Contagem de Linhas de Parede de Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Conectar Linhas de Suporte" - -#: fdmprinter.def.json -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 "Conecta os extremos das linhas de suporte juntos. Habilitar este ajuste pode tornar seu suporte mais robusto e reduzir subextrusão, mas gastará mais material." - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Conectar os Ziguezagues do Suporte" - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Conecta os ziguezagues. Isto aumentará a força da estrutura de suporte em ziguezague." - -#: fdmprinter.def.json -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Densidade do Suporte" - -#: fdmprinter.def.json -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 alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." - -#: fdmprinter.def.json -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Distância das Linhas do Suporte" - -#: fdmprinter.def.json -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Distância entre as linhas impressas da estrutura de suporte. Este ajuste é calculado a partir da densidade de suporte." - -#: fdmprinter.def.json -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Distância de Filetes da Camada Inicial de Suporte" - -#: fdmprinter.def.json -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 os filetes da camada inicial da camada de suporte. Este ajuste é calculado pela densidade de suporte." - -#: fdmprinter.def.json -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Direção de Filete do Preenchimento de Suporte" - -#: fdmprinter.def.json -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 "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar o ângulo default de 0 graus." - -#: fdmprinter.def.json -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Habilitar Brim de Suporte" - -#: fdmprinter.def.json -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 o brim dentro das regiões de preenchimento de suporte da primeira camada. Este brim é impresso sob o suporte, não em volta dele. Habilitar este ajuste aumenta a aderência de suporte à mesa de impressão." - -#: fdmprinter.def.json -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Largura do Brim de Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Número de Filetes do Brim de Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Distância em Z do Suporte" - -#: fdmprinter.def.json -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. This value is rounded up to a multiple of the layer height." -msgstr "Distância do topo e base da estrutura de suporte para a impressão. Este vão provê um espaço para remover os suportes depois de o modelo ser impresso. O valor é arredondado para um múltiplo da altura de camada." - -#: fdmprinter.def.json -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Distância Superior do Suporte" - -#: fdmprinter.def.json -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Distância do topo do suporte à impressão." - -#: fdmprinter.def.json -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Distância Inferior do Suporte" - -#: fdmprinter.def.json -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Distância da parte inferior do suporte até a impressão." - -#: fdmprinter.def.json -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Distância X/Y do Suporte" - -#: fdmprinter.def.json -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Distância da estrutura de suporte até a impressão nas direções X e Y." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Prioridade das Distâncias de Suporte" - -#: fdmprinter.def.json -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 "Decide se a distância XY substitui a distância Z de suporte ou vice-versa. Quando XY substitui Z a distância XY pode afastar o suporte do modelo, influenciando a distância Z real até a seção pendente. Podemos desabilitar isso não aplicando a distância XY em volta das seções pendentes." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y substitui Z" - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z substitui X/Y" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Distância Mínima de Suporte X/Y" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Distância da estrutura de suporte da seção pendente nas direções X/Y." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Altura do Passo de Suporte em Escada" - -#: fdmprinter.def.json -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 base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis. Deixe em zero para desligar o comportamento de escada." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Largura Máxima do Passo de Suporte em Escada" - -#: fdmprinter.def.json -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 passos da base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Ângulo Mínimo de Inclinação do Passo de Suporte em Escada" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Distância de União do Suporte" - -#: fdmprinter.def.json -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 estruturas separadas estão mais próximas que este valor, elas são fundidas em uma só." - -#: fdmprinter.def.json -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Expansão Horizontal do Suporte" - -#: fdmprinter.def.json -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 deslocamento aplicado a todos os polígonos do suporte em cada camada. Valores positivos podem amaciar as áreas de suporte e resultar em suporte mais estável." - -#: fdmprinter.def.json -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Espessura de Camada do Preenchimento de Suporte" - -#: fdmprinter.def.json -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 do material de preenchimento de suporte. Este valor deve sempre ser um múltiplo da altura de camada e é arredondado." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Passos de Preenchimento Gradual de Suporte" - -#: fdmprinter.def.json -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 vezes para reduzir a densidade de preenchimento de suporte pela metade quando avançando abaixo das superfícies inferiores. Áreas mais próximas ao topo terão maior densidade, até a Densidade de Preenchimento de Suporte." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Altura de Passo do Preenchimento Gradual de Suporte" - -#: fdmprinter.def.json -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 preenchimento de suporte de dada densidade antes de trocar para metade desta densidade." - -#: fdmprinter.def.json -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Área Mínima de Suporte" - -#: fdmprinter.def.json -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 "Área mínima para polígonos de suporte. Polígonos que tiverem uma área menor que essa não serão gerados." - -#: fdmprinter.def.json -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Habilitar Interface de Suporte" - -#: fdmprinter.def.json -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 criará um contorno no topo do suporte em que o modelo é impresso e na base do suporte, onde ele fica sobre o modelo." - -#: fdmprinter.def.json -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Habilitar Teto de Suporte" - -#: fdmprinter.def.json -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 um bloco denso de material entre o topo do suporte e o modelo. Isto criará uma divisória entre o modelo e o suporte." - -#: fdmprinter.def.json -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Habilitar Base de Suporte" - -#: fdmprinter.def.json -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 um bloco denso de material entre a base do suporte e o modelo. Isto criará uma divisória entre o modelo e o suporte." - -#: fdmprinter.def.json -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Espessura da Interface de Suporte" - -#: fdmprinter.def.json -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 do suporte onde ele toca o modelo na base ou no topo." - -#: fdmprinter.def.json -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Espessura do Topo do Suporte" - -#: fdmprinter.def.json -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 do topo do suporte. Isto controla a quantidade de camadas densas no topo do suporte em que o modelo se assenta." - -#: fdmprinter.def.json -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Espessura da Base de Suporte" - -#: fdmprinter.def.json -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 das bases de suporte. Isto controla o número de camadas densas que são impressas no topo dos pontos do modelo em que o suporte se assenta." - -#: fdmprinter.def.json -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Resolução da Interface de Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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 de preenchimento da impressão." #: fdmprinter.def.json msgctxt "support_interface_density description" @@ -4160,898 +142,19 @@ msgid "Adjusts the density of the roofs and floors of the support structure. A h msgstr "Ajusta a densidade dos topos e bases da estrutura de suporte. Um valor maior resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." #: fdmprinter.def.json -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Densidade do Teto de 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 alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." #: fdmprinter.def.json -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 tetos da estrutura de suporte. Um valor maior resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." +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. Acerte este valor com o diâmetro real do filamento." #: fdmprinter.def.json -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Distância de Filetes do Teto de Suporte" - -#: fdmprinter.def.json -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 "Distância entre os filetes de impressão do teto de suporte. Este ajuste é calculado pela Densidade do Teto de Suporte mas pode ser ajustado separadamente." - -#: fdmprinter.def.json -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Densidade da Base do Suporte" - -#: fdmprinter.def.json -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 das bases da estrutura de suporte. Um valor maior resulta em melhor aderência do suporte no topo da superfície." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Distância de Filetes da Base de Suporte" - -#: fdmprinter.def.json -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 "Distância entre os filetes de impressão da base de suporte. Este ajuste é calculado pela densidade da Base de Suporte, mas pode ser ajustado separadamente." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Padrão da Interface de Suporte" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Padrão (estampa) com a qual a interface do suporte para o modelo é impressa." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Grade" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Padrão de Teto de Suporte" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "O padrão com o qual o teto do suporte é impresso." - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Grade" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Padrão de Base de Suporte" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "O padrão com o qual as bases do suporte são impressas." - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Grade" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Triângulo" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -#: fdmprinter.def.json -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Área Mínima de Interface de Suporte" - -#: fdmprinter.def.json -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 "Área mínima para os polígonos da interface de suporte. Polígonos que têm área menor que este valor serão impressos como suporte normal." - -#: fdmprinter.def.json -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Área Mínima de Teto de Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Área Mínima de Base de Suporte" - -#: fdmprinter.def.json -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 "Área mínima para as bases do suport. Polígonos que têm área menor que este valor serão impressos como suporte normal." - -#: fdmprinter.def.json -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Expansão Horizontal da Interface de Suporte" - -#: fdmprinter.def.json -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Quantidade de deslocamento aplicado aos polígonos da interface de suporte." - -#: fdmprinter.def.json -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Expansão Horizontal do Teto de Suporte" - -#: fdmprinter.def.json -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Quantidade de deslocamento aplicado aos tetos do suporte." - -#: fdmprinter.def.json -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Expansão Horizontal da Base do Suporte" - -#: fdmprinter.def.json -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Quantidade de deslocamento aplicado às bases do suporte." - -#: fdmprinter.def.json -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Direções do Filete de Interface de Suporte" - -#: fdmprinter.def.json -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 "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." - -#: fdmprinter.def.json -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Direções de Filete do Teto do Suporte" - -#: fdmprinter.def.json -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 direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." - -#: fdmprinter.def.json -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Direções de Filete da Base do Suporte" - -#: fdmprinter.def.json -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 "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." - -#: fdmprinter.def.json -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Sobrepor Velocidade de Ventoinha" - -#: fdmprinter.def.json -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 habilitado, a velocidade da ventoinha de resfriamento é alterada para as regiões de contorno imediatamente acima do suporte." - -#: fdmprinter.def.json -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Velocidade de Ventoinha do Contorno Suportado" - -#: fdmprinter.def.json -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 "Porcentagem de velocidade da ventoinha a usar ao imprimir as regiões de contorno imediatamente sobre o suporte. Usar uma velocidade de ventoinha alta pode fazer o suporte mais fácil de remover." - -#: fdmprinter.def.json -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Usar Torres" - -#: fdmprinter.def.json -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 suporte de pequenas seções pendentes. Essas torres têm um diâmetro mais largo que a região que elas suportam. Perto da seção pendente, o diâmetro das torres aumenta, formando um 'teto'." - -#: fdmprinter.def.json -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Diâmetro da Torre" - -#: fdmprinter.def.json -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "O diâmetro da torre especial." - -#: fdmprinter.def.json -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Diâmetro Máximo Suportado por Torres" - -#: fdmprinter.def.json -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 nas direções X e Y da pequena área que será suportada por uma torre especializada de suporte." - -#: fdmprinter.def.json -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Ângulo do Teto da Torre" - -#: fdmprinter.def.json -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 do Teto (parte superior) de uma torre. Um valor maior resulta em tetos pontiagudos, um valor menor resulta em tetos achatados." - -#: fdmprinter.def.json -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Malha de Suporte Abaixo" - -#: fdmprinter.def.json -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 suport em todo lugar abaixo da malha de suporte de modo que não haja seções pendentes nela." - -#: fdmprinter.def.json -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "A Cena Tem Malhas de Suporte" - -#: fdmprinter.def.json -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Há malhas de suporte presentes na cena. Este ajuste é controlado pelo Cura." - -#: fdmprinter.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Aderência à Mesa" - -#: fdmprinter.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Aderência" - -#: fdmprinter.def.json -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Habilitar Massa de Purga" - -#: fdmprinter.def.json -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 "Decide se é preciso descarregar o filamento com uma massa de purga antes de imprimir. Ligar este ajuste assegurará que o extrusor tenha material pronto no bico antes de imprimir. Imprimir um Brim ou Skirt pode funcionar como purga também, em cujo caso desligar esse ajuste faz ganhar algum tempo." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posição X da Purga do Extrusor" - -#: fdmprinter.def.json -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 bico faz a purga no início da impressão." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posição Y da Purga do Extrusor" - -#: fdmprinter.def.json -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 bico faz a purga no início da impressão." - -#: fdmprinter.def.json -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Tipo de Aderência da Mesa de Impressão" - -#: fdmprinter.def.json -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 opções que ajudam a melhorar a extrusão e a aderência à plataforma de impressão. Brim (bainha) adiciona uma camada única e chata em volta da base de seu modelo para impedir warping. Raft (balsa) adiciona uma grade densa com 'teto' abaixo do modelo. Skirt (saia) é uma linha impressa em volta do modelo, mas não conectada ao modelo, para apenas iniciar o processo de extrusão." - -#: fdmprinter.def.json -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Skirt" - -#: fdmprinter.def.json -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Brim" - -#: fdmprinter.def.json -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" - -#: fdmprinter.def.json -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Nenhuma" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Extrusor de Aderência à Mesa" - -#: fdmprinter.def.json -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 extrusor usado ara imprimir skirt, brim ou raft. Usado em multi-extrusão." - -#: fdmprinter.def.json -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Extrusor do Skirt/Brim" - -#: fdmprinter.def.json -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 carro extrusor a ser usado para imprimir o skirt ou brim. Isto é usado em multi-extrusão." - -#: fdmprinter.def.json -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Extrusor da Base do Raft" - -#: fdmprinter.def.json -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 carro extrusor a ser usado para imprimir a primeira camada do Raft. Isto é usado em multi-extrusão." - -#: fdmprinter.def.json -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Extrusor do Meio do Raft" - -#: fdmprinter.def.json -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 carro extrusor a ser usado para imprimir a camada central do raft. Isto é usado em multi-extrusão." - -#: fdmprinter.def.json -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Extrusor do Topo do Raft" - -#: fdmprinter.def.json -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 carro extrusor a ser usado para imprimir a(s) camada(s) central(is) do raft. Isto é usado em multi-extrusão." - -#: fdmprinter.def.json -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Contagem de linhas de Skirt" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Distância do Skirt" - -#: fdmprinter.def.json -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 "" -"A distância horizontal entre o skirt a primeira camada da impressão.\n" -"Esta é a distância mínima. Linhas múltiplas de skirt estenderão além desta distância." - -#: fdmprinter.def.json -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Mínimo Comprimento do Skirt e Brim" - -#: fdmprinter.def.json -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 skirt ou brim. Se este comprimento não for cumprido por todas as linhas do skirt ou brim juntas, mais linhas serão adicionadas até que o mínimo comprimento seja alcançado. Se a contagem de linhas estiver em 0, isto é ignorado." - -#: fdmprinter.def.json -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Largura do Brim" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Contagem de Linhas do Brim" - -#: fdmprinter.def.json -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 usada para o brim. Mais linhas de brim melhoram a aderência à mesa, mas também reduzem a área efetiva de impressão." - -#: fdmprinter.def.json -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Distância do Brim" - -#: fdmprinter.def.json -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 o primeiro filete de brim e o contorno da primeira camada da impressão. Um pequeno vão pode fazer o brim mais fácil de remover sem deixar de prover os benefícios térmicos." - -#: fdmprinter.def.json -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Brim Substitui Suporte" - -#: fdmprinter.def.json -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 "Força que o brim seja impresso em volta do modelo mesmo se este espaço fosse ser ocupado por suporte. Isto substitui algumas regiões da primeira camada de suporte por regiões de brim." - -#: fdmprinter.def.json -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Brim Somente Para Fora" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Margem Adicional do Raft" - -#: fdmprinter.def.json -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 habilitado, esta é a área extra do raft em volta do modelo que também faz parte dele. Aumentar esta margem criará um raft mais forte mas também gastará mais material e deixará menos área para sua impressão." - -#: fdmprinter.def.json -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Amaciamento do Raft" - -#: fdmprinter.def.json -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 quanto os cantos internos do contorno do raft são arredondados. Esses cantos internos são convertidos em semicírculos com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que forem menores que o círculo equivalente." - -#: fdmprinter.def.json -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Vão Aéreo do Raft" - -#: fdmprinter.def.json -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 "O vão entre a camada final do raft e a primeira camada do modelo. Somente a primeira camada é elevada por esta distância para enfraquecer a conexão entre o raft e o modelo, tornando mais fácil a remoção do raft." - -#: fdmprinter.def.json -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Sobreposição em Z das Camadas Iniciais" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Camadas Superiores do Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Espessura da Camada Superior do Raft" - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Espessura de camada das camadas superiores do raft." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Largura do Filete Superior do Raft" - -#: fdmprinter.def.json -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 "Largura das linhas na superfície superior do raft. Estas podem ser linhas finas de modo que o topo do raft fique liso." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Espaçamento Superior do Raft" - -#: fdmprinter.def.json -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 "Distância entre as linhas do raft para as camadas superiores. O espaçamento deve ser igual à largura de linha, de modo que a superfície seja sólida." - -#: fdmprinter.def.json -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Camadas Centrais do Raft" - -#: fdmprinter.def.json -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. Isso corresponde à espessura principal do raft. Aumentar este valor cria um raft mais espesso e resistente." - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Espessura do Meio do Raft" - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Espessura da camada intermediária do raft." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Largura da Linha do Meio do Raft" - -#: fdmprinter.def.json -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 "Largura das linhas na camada intermediária do raft. Fazer a segunda camada extrudar mais faz as linhas grudarem melhor na mesa." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Espaçamento do Meio do Raft" - -#: fdmprinter.def.json -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 as linhas do raft para a camada intermediária. O espaçamento do meio deve ser grande, ao mesmo tempo que deve ser denso o suficiente para suportar as camadas superiores." - -#: fdmprinter.def.json -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Espessura da Base do Raft" - -#: fdmprinter.def.json -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 "Espessura de camada da camada de base do raft. Esta camada deve ser grossa para poder aderir firmemente à mesa." - -#: fdmprinter.def.json -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Largura de Linha da Base do Raft" - -#: fdmprinter.def.json -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 "Largura das linhas na camada de base do raft. Devem ser grossas para auxiliar na aderência à mesa." - -#: fdmprinter.def.json -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Espaçamento de Filete de Base do Raft" - -#: fdmprinter.def.json -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 as linhas do raft para a camada de base do raft. Um espaçamento esparso permite a remoção fácil do raft da mesa." - -#: fdmprinter.def.json -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Velocidade de Impressão do Raft" - -#: fdmprinter.def.json -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "A velocidade em que o raft é impresso." - -#: fdmprinter.def.json -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Velocidade de Impressão do Topo do Raft" - -#: fdmprinter.def.json -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 em que as camadas superiores do raft são impressas. Elas devem ser impressas um pouco mais devagar, de modo que o bico possa lentamente alisar as linhas de superfície adjacentes." - -#: fdmprinter.def.json -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Velocidade de Impressão do Meio do Raft" - -#: fdmprinter.def.json -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 em que a camada intermediária do raft é impressa. Esta deve ser impressa devagar, já que o volume de material saindo do bico é bem alto." - -#: fdmprinter.def.json -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Velocidade de Impressão da Base do Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Aceleração de Impressão do Raft" - -#: fdmprinter.def.json -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "A aceleração com que o raft é impresso." - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Aceleração de Impressão do Topo do Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Aceleração de Impressão do Meio do Raft" - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "A aceleração com que a camada intermediária do raft é impressa." - -#: fdmprinter.def.json -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Aceleração de Impressão da Base do Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Jerk de Impressão do Raft" - -#: fdmprinter.def.json -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "O jerk com o qual o raft é impresso." - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Jerk de Impressão do Topo do Raft" - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "O jerk com o qual as camadas superiores do raft são impressas." - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Jerk de Impressão do Meio do Raft" - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "O jerk com o qual a camada intermediária do raft é impressa." - -#: fdmprinter.def.json -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Jerk de Impressão da Base do Raft" - -#: fdmprinter.def.json -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "O jerk com o qual a camada de base do raft é impressa." - -#: fdmprinter.def.json -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Velocidade de Ventoinha no Raft" - -#: fdmprinter.def.json -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "A velocidade da ventoinha para a impressão do raft." - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Velocidade da Ventoinha para o Topo do Raft" - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "A velocidade da ventoinha para as camadas superiores do raft." - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Velocidade de Ventoinha do Meio do Raft" - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "A velocidade de ventoina para a camada intermediária do raft." - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Velocidade de Ventoinha da Base do Raft" - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "A velocidade de ventoinha para a camada base do raft." - -#: fdmprinter.def.json -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Extrusão Dual" - -#: fdmprinter.def.json -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Ajustes usados para imprimir com vários extrusores." - -#: fdmprinter.def.json -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Habilitar Torre de Purga" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Tamanho da Torre de Purga" - -#: fdmprinter.def.json -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "A largura da torre de purga." - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Volume Mínimo da Torre de Purga" - -#: fdmprinter.def.json -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 purga de forma a purgar material suficiente." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Posição X da Torre de Purga" - -#: fdmprinter.def.json -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 purga." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Posição Y da Torre de Purga" - -#: fdmprinter.def.json -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 purga." - -#: fdmprinter.def.json -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Limpar Bico Inativo na Torre de Purga" +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. Pode ser ajustada para suportes que somente tocam a mesa de impressão ou suportes em todos os lugares com seções pendentes (incluindo as que não estão pendentes em relação à mesa)." #: fdmprinter.def.json msgctxt "prime_tower_wipe_enabled description" @@ -5059,244 +162,14 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "Depois de imprimir a torre de purga com um bico, limpar o material escorrendo do outro bico na torre de purga." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Brim da Torre de Purga" +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 "Quando a máquina troca de um extrusor para o outro, sobe-se um pouco em Z para criar um espaço entre o bico e a impressão. Isso impede que o bico escorra material em cima da impressão." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Torres de Prime podem precisar de aderência extra dada por um brim mesmo se o modelo não precisar. No momento não pode ser usado com o tipo de aderência 'Raft'." - -#: fdmprinter.def.json -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Habilitar Cobertura de Escorrimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Ângulo da Cobertura de Escorrimento" - -#: fdmprinter.def.json -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 de separação máximo que partes da cobertura de escorrimento terão. Com 0 graus sendo na vertical e 90 graus sendo horizontal. Um ângulo menor leva a coberturas de escorrimento falhando menos, mas mais gasto de material." - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Distância da Cobertura de Escorrimento" - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "Distância da cobertura de escorrimento da impressão nas direções X e Y." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Distância de Retração da Troca de Bico" - -#: fdmprinter.def.json -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 extrusores. Coloque em 0 para não haver retração. Isto deve geralmente ser o mesmo que o comprimento da zona de aquecimento do hotend." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Velocidade de Retração da Troca do Bico" - -#: fdmprinter.def.json -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 em que o filamento é retraído. Uma velocidade de retração mais alta funciona melhor, mas uma velocidade muito alta pode levar a desgaste do filamento." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Velocidade de Retração da Troca de Bico" - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "A velocidade em que o filamento é retraído durante uma retração de troca de bico." - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Velocidade de Avanço da Troca de Bico" - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "A velocidade em que o filamento é empurrado para a frente depois de uma retração de troca de bico." - -#: fdmprinter.def.json -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Quantidade de Avanço Extra da Troca de Bico" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Correções de Malha" - -#: fdmprinter.def.json -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Faz as malhas mais adequadas para impressão 3D." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Volumes de Sobreposição de Uniões" - -#: fdmprinter.def.json -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 a geometria interna de volumes sobrepostos dentro de uma malha e imprime os volumes como um único volume. Isto pode ter o efeito não-intencional de fazer cavidades desaparecerem." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Remover Todos os Furos" - -#: fdmprinter.def.json -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 furos de cada camada e mantém somente aqueles da forma externa. Isto ignorará qualquer geometria interna invisível. No entanto, também ignorará furos de camada que poderiam ser vistos de cima ou de baixo." - -#: fdmprinter.def.json -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Costura Extensa" - -#: fdmprinter.def.json -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 buracos abertos na malha fechando o buraco com polígonos que o tocam. Esta opção pode adicionar bastante tempo ao fatiamento das peças." - -#: fdmprinter.def.json -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Manter Faces Desconectadas" - -#: fdmprinter.def.json -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 o Cura tenta costurar pequenos furos na malha e remover partes de uma camada com grandes buracos. Habilitar esta opção mantém as partes que ele não consegue costurar. Esta opção deve ser usada como última alternativa quando tudo o mais falhar para produzir G-Code apropriado." - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Sobreposição de Malhas Combinadas" - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Faz malhas que tocam uma à outra se sobreporem um pouco. Isto faz com que elas se combinem com mais força." - -#: fdmprinter.def.json -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Remover Interseções de Malha" - -#: fdmprinter.def.json -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 "Remove áreas onde várias malhas estão sobrepondo uma à outra. Isto pode ser usado se objetos de material duplo se sobrepõem um ao outro." - -#: fdmprinter.def.json -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Alternar a Remoção de Malhas" - -#: fdmprinter.def.json -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 "Troca quais volumes sobrepondo malhas vão pertencer a cada camada, de modo que as malhas sobrepostas se tornem entrelaçadas. Desligar esta opção vai fazer com que uma das malhas obtenha todo o volume da sobreposiçào, removendo este volume das outras malhas." - -#: fdmprinter.def.json -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Remover Camadas Iniciais Vazias" - -#: fdmprinter.def.json -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 camadas vazias entre a primeira camada impressa se estiverem presentes. Desabilitar este ajuste pode criar camadas iniciais vazias se a Tolerância de Fatiamento estiver configurada para Exclusivo ou Meio." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Resolução Máxima" - -#: fdmprinter.def.json -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 de linha após o fatiamento. Se você aumentar este valor, a malha terá uma resolução menor. Isto pode permitir que a impressora mantenha a velocidade que precisa para processar o G-Code e aumentará a velocidade de fatiamento ao remover detalhes da malha que não poderia processar de qualquer jeito." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Máxima Resolução de Percurso" - -#: fdmprinter.def.json -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 linha de percurso após o fatiamento. Se o valor aumenta, os movimentos de percurso terão cantos menos suaves. Isto pode permitir que a impressora mantenha a velocidade necessária para processar o G-Code, mas pode fazer com que evitar topar no modelo fique menos preciso." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Desvio Máximo" - -#: fdmprinter.def.json -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 para o ajuste de Máxima Resolução. Se você aumentar isto, a impressão será menos precisa, mas o G-Code será menor. O Desvio Máximo é um limite para Resolução Máxima, portanto se os dois conflitarem o Desvio Máximo sempre será o valor dominante." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Desvio Máximo de Área de Extrusão" - -#: fdmprinter.def.json -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 permitido ao remover pontos intermediários de uma linha reta. Um ponto intermediário pode servir como ponto de mudança de largura em uma longa linha reta. Portanto, se ele for removido, fará com que a linha tenha uma largura uniforme e, como resultado, perderá (ou ganhará) um pouco de área de extrusão. Se você aumentar o valor, você poderá perceber uma sutil sobre-extrusão ou sub-extrusão no meio de paredes retas paralelas, já que mais pontos intermediários com espessura variante poderão ser removidos. Sua impressão será menos acurada, mas o G-Code será menor." - -#: fdmprinter.def.json -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Modos Especiais" - -#: fdmprinter.def.json -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Jeitos não-tradicionais de imprimir seus modelos." - -#: fdmprinter.def.json -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Sequência de Impressão" - -#: fdmprinter.def.json -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 "Decide se os modelos devem ser impressos todos de uma vez só, uma camada por vez, ou se se deve esperar a cada modelo terminar antes de prosseguir para o próximo. O modo um de cada vez só é possível se a) somente um extrusor estiver habilitado e b) todos os modelos estiverem separados de modo que a cabeça de impressão pode se mover entre todos e todos os modelos estiverem em altura mais baixa que a distância entre o bico e os eixos X e Y." +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Tudo" #: fdmprinter.def.json msgctxt "print_sequence option all_at_once" @@ -5304,1273 +177,19 @@ msgid "All at Once" msgstr "Todos de Uma Vez" #: fdmprinter.def.json -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Um de Cada Vez" +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)" #: fdmprinter.def.json -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Malha de Preenchimento" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Alternar Parede Adicional" #: fdmprinter.def.json -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 esta malha para modificar o preenchimento de outras malhas com as quais ela se sobrepõe. Substitui regiões de preenchimento de outras malhas com regiões desta malha. É sugerido que se imprima com somente uma parede e sem paredes superiores e inferiores para esta malha." - -#: fdmprinter.def.json -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Hierarquia do Processamento de Malha" - -#: fdmprinter.def.json -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 ao considerar múltiplas malhas de preenchimento sobrepostas. Áreas onde múltiplas malhas de preenchimento se sobrepõem terão os ajustes da malha com a maior prioridade. Uma malha de preenchimento com prioridade maior modificará o preenchimento tanto das malhas de preenchimento com prioridade menor quanto das malhas normais." - -#: fdmprinter.def.json -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Malha de Corte" - -#: fdmprinter.def.json -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 "Limitar o volume desta malha para dentro de outras malhas. Você pode usar isto para fazer certas áreas de uma malha imprimirem com ajustes diferentes, incluindo extrusor diferente." - -#: fdmprinter.def.json -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Molde" - -#: fdmprinter.def.json -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 moldes com o negativo das peças de modo que se possa encher de resina para as gerar." - -#: fdmprinter.def.json -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Largura Mínima do Molde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Altura de Teto do Molde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Ângulo do Molde" - -#: fdmprinter.def.json -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 de seção pendente das paredes externas criadas para o molde. 0° fará a superfície externa do molde vertical, enquanto 90° fará a superfície externa do molde seguir o contorno do modelo." - -#: fdmprinter.def.json -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Malha de Suporte" - -#: fdmprinter.def.json -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Use esta malha para especificar áreas obrigatoriamente suportadas. Isto será usado para gerar estruturas de suporte." - -#: fdmprinter.def.json -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Malha Anti-Pendente" - -#: fdmprinter.def.json -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 "Use esta malha para especificar onde nenhuma parte do modelo deverá ser detectada como seção Pendente e por conseguinte não elegível a receber suporte. Com esta malha sobreposta a um modelo, você poderá marcar onde ele não deverá receber suporte." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Modo de Superficie" - -#: fdmprinter.def.json -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 apenas superfície, um volume ou volumes com superfícies soltas. O modo de impressão normal somente imprime volumes fechados. O modo \"superfície\" imprime uma parede única traçando a superfície da malha sem nenhun preenchimento e sem paredes superiores ou inferiores. O modo \"ambos\" imprime volumes fechados como o modo normal e volumes abertos como superfícies." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Superfície" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Ambos" - -#: fdmprinter.def.json -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Espiralizar o Contorno Externo" - -#: fdmprinter.def.json -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 "'Espiralizar' faz com que o movimento vertical (em Z) seja contínuo e gradual seguindo o contorno da peça. Este recurso transforma um modelo sólido em uma simples linha contínua em espiral partindo de uma base sólida. O recurso só deve ser habilitado quando cada camada horizontal contiver somente um contorno." - -#: fdmprinter.def.json -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Suavizar Contornos Espiralizados" - -#: fdmprinter.def.json -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 "Suavizar os contornos espiralizados para reduzir a visibilidade da costura Z (a costura Z deve ser quase invisível na impressão mas ainda será visível na visão de camadas). Note que a suavização tenderá a embaçar detalhes finos de superfície." - -#: fdmprinter.def.json -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Extrusão Relativa" - -#: fdmprinter.def.json -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 "Usar extrusão relativa ao invés de extrusão absoluta. Passos de extrusão relativos no G-Code tornam o pós-processamento mais fácil. No entanto, isso não é suportado por todas as impressoras e pode produzir pequenos desvios na quantidade de material depositado comparado a passos de extrusão absolutos. Independente deste ajuste, o modo de extrusão sempre será ajustado para absoluto antes que qualquer script G-Code seja processado." - -#: fdmprinter.def.json -msgctxt "experimental label" -msgid "Experimental" -msgstr "Experimental" - -#: fdmprinter.def.json -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Recursos que não foram completamente desenvolvidos ainda." - -#: fdmprinter.def.json -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Tolerância de Fatiamento" - -#: fdmprinter.def.json -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 das camadas fatiadas. Os contornos de uma camada são normalmente gerados se tomando seções cruzadas pelo meio de cada espessura de camada (Meio). Alternativamente, cada camada pode ter as áreas que caem fora do volume por toda a espessura da camada (Exclusivo) ou a camada pode ter as áreas que caem dentro de qualquer lugar dentro da camada (Inclusivo). Inclusivo retém mais detalhes, Exclusivo proporciona o melhor encaixe e Meio permanece mais próximo da superfície original." - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Meio" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exclusivo" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusivo" - -#: fdmprinter.def.json -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Largura de extrusão da Superfície Superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Padrão da Superfície Superior" - -#: fdmprinter.def.json -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "O padrão das camadas superiores." - -#: fdmprinter.def.json -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -#: fdmprinter.def.json -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Ordem da Superfície Monotônica Superior" - -#: fdmprinter.def.json -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 os filetes da superfície superior em uma ordem que faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna as superfícies planas mais consistentes." - -#: fdmprinter.def.json -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Direções dos Filetes da Superfície Superior" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Otimização de Percurso de Preenchimento" - -#: fdmprinter.def.json -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 habilitado, a ordem em que os filetes de preenchimento são impressos é otimizada para reduzir a distância percorrida. A redução em tempo de percurso conseguida depende bastante do modelo sendo fatiado, do padrão de preenchimento, da densidade, etc. Note que, para alguns modelos que têm áreas bem pequenas de preenchimento, o tempo de fatiamento pode ser aumentado bastante." - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature label" -msgid "Auto Temperature" -msgstr "Temperatura Automática" - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature description" -msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -msgstr "Troca a temperatura para cada camada automaticamente de acordo com a velocidade média de fluxo desta camada." - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Gráfico de Fluxo de Temperatura" - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Dados relacionando fluxo de material (em mm³ por segundo) a temperatura (graus Celsius)." - -#: fdmprinter.def.json -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Mínima Circunferência do Polígono" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Quebrar Suportes em Pedaços" - -#: fdmprinter.def.json -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 "Evitar algumas conexões de linha de suporte para fazer a estrutura de suporte mais fácil de ser removida. Este ajuste é aplicável ao padrão de preenchimento de suporte de ziguezague." - -#: fdmprinter.def.json -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Tamanho do Pedaço de Suporte" - -#: fdmprinter.def.json -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 "Evita uma conexão entre linhas de suporte uma vez a cada N milímetros para fazer a estrutura de suporte mais fácil de ser removida." - -#: fdmprinter.def.json -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Contagem de Linhas de Pedaço de Suporte" - -#: fdmprinter.def.json -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Evitar uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida." - -#: fdmprinter.def.json -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Habilitar Cobertura de Trabalho" - -#: fdmprinter.def.json -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 criará uma parede em volta do modelo que aprisiona ar quente da mesa e protege contra fluxo de ar do exterior. Especialmente útil para materiais que sofrem bastante warp e impressoras 3D que não são cobertas." - -#: fdmprinter.def.json -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Distância X/Y da Cobertura de Trabalho" - -#: fdmprinter.def.json -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Distância da Cobertura de Trabalho da impressão nas direções X e Y." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Limitação da Cobertura de Trabalho" - -#: fdmprinter.def.json -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 "Estabelece a altura da cobertura de trabalho. Escolha imprimir a cobertura na altura total dos modelos ou até uma altura limitada." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Completo" - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Limitado" - -#: fdmprinter.def.json -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Altura da Cobertura de Trabalho" - -#: fdmprinter.def.json -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Limitação de altura da cobertura de trabalho. Acima desta altura a cobertura não será impressa." - -#: fdmprinter.def.json -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Torna Seções Pendentes Imprimíveis" - -#: fdmprinter.def.json -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 a ser impresso de tal modo que o mínimo de suporte seja exigido. Seções pendentes agudas serão torcidas pra ficar mais verticais. Áreas de seções pendentes profundas se tornarão mais rasas." - -#: fdmprinter.def.json -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Ângulo Máximo do Modelo" - -#: fdmprinter.def.json -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 de seçọes pendentes depois de se tornarem imprimíveis. Com o valor de 0° todas as seções pendentes serão trocadas por uma parte do modelo conectada à mesa e 90° não mudará o modelo." - -#: fdmprinter.def.json -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Área Máxima de Furo de Seções Pendentes" - -#: fdmprinter.def.json -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 furo na base do modelo antes que seja removido por \"Torna Seções Pendentes Imprimíveis\". Furos com área menor que esta serão retidos. O valor de 0 mm² preenche todos os furos na base do modelo." - -#: fdmprinter.def.json -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Habilitar Desengrenagem" - -#: fdmprinter.def.json -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 "A desengrenagem ou 'coasting' troca a última parte do caminho de uma extrusão pelo caminho sem extrudar. O material escorrendo é usado para imprimir a última parte do caminho de extrusão de modo a reduzir fiapos." - -#: fdmprinter.def.json -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Volume de Desengrenagem" - -#: fdmprinter.def.json -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Volume que seria escorrido. Este valor deve em geral estar perto do diâmetro do bico ao cubo." - -#: fdmprinter.def.json -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Volume Mínimo Antes da Desengrenagem" - -#: fdmprinter.def.json -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 apresentar antes que lhe seja permitido desengrenar. Para caminhos de extrusão menores, menos pressão é criada dentro do hotend e o volume de desengrenagem é redimensionado linearmente. Este valor deve sempre ser maior que o Volume de Desengrenagem." - -#: fdmprinter.def.json -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Velocidade de Desengrenagem" - -#: fdmprinter.def.json -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 pela qual se mover durante a desengrenagem, relativa à velocidade do caminho de extrusão. Um valor ligeiramente menor que 100% é sugerido, já que durante a desengrenagem a pressão dentro do hotend cai." - -#: fdmprinter.def.json -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Tamanho de Bolso do Cruzado 3D" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Imagem de Densidade do Preenchimento Cruzado" - -#: fdmprinter.def.json -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 do arquivo de imagem onde os valores de brilho determinam a densidade mínima no local correspondente do preenchimento da impressão." - -#: fdmprinter.def.json -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Imagem de Densidade de Preenchimento Cruzado para Suporte" - -#: fdmprinter.def.json -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 do arquivo de imagem onde os valores de brilho determinam a densidade mínima no local correspondente do suporte." - -#: fdmprinter.def.json -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Habilitar Suporte Cônico" - -#: fdmprinter.def.json -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Faz as áreas de suporte menores na base que na seção pendente." - -#: fdmprinter.def.json -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Ângulo de Suporte Cônico" - -#: fdmprinter.def.json -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. Como 0 graus sendo vertical e 90 graus sendo horizontal. Ângulos menores farão o suporte ser mais firme, mas gastarão mais material. Ângulos negativos farão a base do suporte mais larga que o topo." - -#: fdmprinter.def.json -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Largura Mínima do Suporte Cônico" - -#: fdmprinter.def.json -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 "Largura mínima para a qual a base do suporte cônico é reduzida. Pequenas larguras podem levar a estruturas de suporte instáveis." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Contorno Felpudo" - -#: fdmprinter.def.json -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 "Faz flutuações de movimento aleatório enquanto imprime a parede mais externa, de modo que a superfície do objeto ganhe uma aparência felpuda ou acidentada." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Contorno Felpudo Externo Apenas" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Flutuar movimento apenas nos contornos e não nos furos das peças." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Espessura do Contorno Felpudo" - -#: fdmprinter.def.json -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 "A largura dentro da qual flutuar. É sugerido deixar este valor abaixo da largura da parede externa, já que as paredes internas não são alteradas pelo algoritmo." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Densidade do Contorno Felpudo" - -#: fdmprinter.def.json -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 de uma camada. Note que os pontos originais do polígono são descartados, portanto uma densidade baixa resulta da redução de resolução." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Distância de Pontos do Contorno Felpudo" - -#: fdmprinter.def.json -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. Note que os pontos originais do polígono são descartados, portanto umo alto alisamento resulta em redução da resolução. Este valor deve ser maior que a metade da Espessura do Contorno Felpudo." - -#: fdmprinter.def.json -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Máximo Deslocamento de Extrusão de Compensação de Taxa de Fluxo" - -#: fdmprinter.def.json -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 para mover o filamento para compensar mudanças na taxa de fluxo." - -#: fdmprinter.def.json -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Fator de Compensação da Taxa de Fluxo" - -#: fdmprinter.def.json -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 "Em quanto mover o filamento para compensar mudanças na taxa de fluxo, como uma porcentagem da distância que o filamento seria movido em um segundo de extrusão." - -#: fdmprinter.def.json -msgctxt "wireframe_enabled label" -msgid "Wire Printing" -msgstr "Impressão em Arame" - -#: fdmprinter.def.json -msgctxt "wireframe_enabled description" -msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -msgstr "Imprime somente a superfície exterior usando uma estrutura esparsa em forma de teia sem usar as camadas horizontais de impressão, e imprimindo no ar. Isto é feito imprimindo horizontalmente os contornos do modelo em dados intervalos Z que são conectados por filetes diagonais para cima e para baixo." - -#: fdmprinter.def.json -msgctxt "wireframe_height label" -msgid "WP Connection Height" -msgstr "Altura da Conexão IA" - -#: fdmprinter.def.json -msgctxt "wireframe_height description" -msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -msgstr "A altura dos filetes diagonais para cima e para baixo entre duas partes horizontais. Isto determina a densidade geral da estrutura em rede. Somente se aplica a Impressão em Arame." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset label" -msgid "WP Roof Inset Distance" -msgstr "Distância de Penetração do Teto da IA" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset description" -msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -msgstr "A distância coberta quando é feita uma conexão do contorno do teto para dentro. Somente se aplica a Impressão em Arame." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed label" -msgid "WP Speed" -msgstr "Velocidade da IA" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed description" -msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -msgstr "Velocidade com que a cabeça de impressão se move ao extrudar material. Somente se aplica a Impressão em Arame." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom label" -msgid "WP Bottom Printing Speed" -msgstr "Velocidade de Impressão da Base da IA" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom description" -msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -msgstr "Velocidade de Impressão da primeira camada, que é a única camada que toca a mesa. Somente se aplica à Impressão em Arame." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up label" -msgid "WP Upward Printing Speed" -msgstr "Velocidade de Impressão Ascendente da IA" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up description" -msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -msgstr "Velocidade de impressão dos filetes ascendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down label" -msgid "WP Downward Printing Speed" -msgstr "Velocidade de Impressão Descendente de IA" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down description" -msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -msgstr "Velocidade de impressão dos filetes descendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat label" -msgid "WP Horizontal Printing Speed" -msgstr "Velocidade de Impressão Horizontal de IA" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat description" -msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -msgstr "Velocidade de impressão dos contornos horizontais do modelo. Somente se aplica à Impressão em Arame." - -#: fdmprinter.def.json -msgctxt "wireframe_flow label" -msgid "WP Flow" -msgstr "Fluxo da IA" - -#: fdmprinter.def.json -msgctxt "wireframe_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -msgstr "Compensação de fluxo: a quantidade de material extrudado é multiplicado por este valor. Somente se aplica à Impressão em Arame." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection label" -msgid "WP Connection Flow" -msgstr "Fluxo de Conexão da IA" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection description" -msgid "Flow compensation when going up or down. Only applies to Wire Printing." -msgstr "Compensação de Fluxo quanto subindo ou descendo. Somente se aplica à Impressão em Arame." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat label" -msgid "WP Flat Flow" -msgstr "Fluxo Plano de IA" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat description" -msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -msgstr "Compensação de fluxo ao imprimir filetes planos. Somente se aplica à Impressão em Arame." - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay label" -msgid "WP Top Delay" -msgstr "Espera do Topo de IA" - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay description" -msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -msgstr "Tempo de espera depois de um movimento ascendente tal que o filete ascendente possa se solidifcar. Somente se aplica à Impressão em Arame." - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay label" -msgid "WP Bottom Delay" -msgstr "Espera da Base de IA" - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay description" -msgid "Delay time after a downward move. Only applies to Wire Printing." -msgstr "Tempo de espera depois de um movimento descendente tal que o filete possa se solidificar. Somente se aplica à Impressão em Arame." - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay label" -msgid "WP Flat Delay" -msgstr "Espera Plana de IA" - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay description" -msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -msgstr "Tempo de espera entre dois segmentos horizontais. Inserir tal espera pode ocasionar melhor aderência a camadas prévias nos pontos de conexão, mas atrasos muito longos podem causar estruturas murchas. Somente se aplica à Impressão em Arame." - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed label" -msgid "WP Ease Upward" -msgstr "Facilitador Ascendente da IA" - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed description" -msgid "" -"Distance of an upward move which is extruded with half speed.\n" -"This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "" -"Distância de um movimento ascendente que é extrudado com metade da velocidade.\n" -"Isto pode resultar em melhor aderência às camadas prévias, ao mesmo tempo em que não aquece demais essas camadas. Somente se aplica à Impressão em Arame." - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump label" -msgid "WP Knot Size" -msgstr "Tamanho do Nó de IA" - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump description" -msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -msgstr "Cria um pequeno 'nódulo' ou 'nó' no topo do filete ascendente de tal modo que a camada horizontal consecutiva tem melhor chance de se conectar ao filete. Somente se aplica à Impressão em Arame." - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down label" -msgid "WP Fall Down" -msgstr "Queda de IA" - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down description" -msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "Distância na qual o material desaba após uma extrusão ascendente. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along label" -msgid "WP Drag Along" -msgstr "Arrasto de IA" - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along description" -msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "Distância na qual o material de uma extrusão ascendente é arrastado com a extrusão descendente diagonal. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy label" -msgid "WP Strategy" -msgstr "Estratégia de IA" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy description" -msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -msgstr "Estratégia para se assegurar que duas camadas consecutivas se conectam a cada ponto de conexão. Retração faz com que os filetes ascendentes se solidifiquem na posição correta, mas pode causar desgaste de filamento. Um nó pode ser feito no fim de um filete ascendentes para aumentar a chance de se conectar a ele e deixar o filete esfriar; no entanto, pode exigir velocidades de impressão lentas. Outra estratégia é compensar pelo enfraquecimento do topo de uma linha ascendente; no entanto, as linhas nem sempre cairão como preditas." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option compensate" -msgid "Compensate" -msgstr "Compensar" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option knot" -msgid "Knot" -msgstr "Nó" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option retract" -msgid "Retract" -msgstr "Retrair" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down label" -msgid "WP Straighten Downward Lines" -msgstr "Endireitar Filetes Descendentes de IA" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down description" -msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -msgstr "Porcentagem de um filete descendente diagonal que é coberto por uma peça de filete horizontal. Isto pode prevenir enfraquecimento do ponto superior das linhas ascendentes. Somente se aplica à Impressão em Arame." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down label" -msgid "WP Roof Fall Down" -msgstr "Queda do Topo de IA" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down description" -msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -msgstr "A distância em que filetes horizontais do topo impressos no ar caem quando sendo impressos. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along label" -msgid "WP Roof Drag Along" -msgstr "Arrasto do Topo de IA" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along description" -msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -msgstr "A distância da parte final de um filete para dentro que é arrastada quando o extrusor começa a voltar para o contorno externo do topo. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay label" -msgid "WP Roof Outer Delay" -msgstr "Retardo exterior del techo en IA" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay description" -msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -msgstr "El tiempo empleado en los perímetros exteriores del agujero que se convertirá en un techo. Cuanto mayor sea el tiempo, mejor será la conexión. Solo se aplica a la impresión de alambre." - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance label" -msgid "WP Nozzle Clearance" -msgstr "Espaço Livre para o Bico em IA" - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance description" -msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -msgstr "Distância entre o bico e os filetes descendentes horizontais. Espaços livres maiores resultarão em filetes descendentes diagonais com ângulo menos acentuado, o que por sua vez resulta em menos conexões ascendentes à próxima camada. Somente se aplica à Impressão em Arame." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Usar Camadas Adaptativas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Máximo Variação das Camadas Adaptativas" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "A variação de altura máxima permitida para a camada de base." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Tamanho de Passo da Variação das Camadas Adaptativas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Tamanho da Topografia de Camadas Adaptativas" - -#: fdmprinter.def.json -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 "Trata da distância horizontal entre duas camadas adjacentes. Reduzir este ajuste faz com que camadas mais finas sejam usadas para reunir as bordas das camadas mais perto uma da outra." - -#: fdmprinter.def.json -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Ângulo de Parede Pendente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Velocidade de Parede Pendente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Habilitar Ajustes de Ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Comprimento de Parede de Ponte Mínimo" - -#: fdmprinter.def.json -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 não-suportadas mais curtas que esta quantia serão impressas usando ajustes normais de paredes. Paredes mais longas serão impressas com os ajustes de parede de ponte." - -#: fdmprinter.def.json -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Limiar de Suporte de Contorno de Ponte" - -#: fdmprinter.def.json -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 do contorno for suportada por menos do que esta porcentagem de sua área, imprimi-la com os ajustes de ponte. Senão, imprimir usando os ajustes normais de contorno." - -#: fdmprinter.def.json -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Densidade Máxima do Preenchimento Esparso de Ponte" - -#: fdmprinter.def.json -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 preenchimento considerado esparso. Contorno sobre o preenchimento esparso é considerado não-suportado e portanto será tratado como contorno de ponte." - -#: fdmprinter.def.json -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Desengrenagem de Parede de Ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Velocidade da Parede de Ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Fluxo da Parede de Ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Velocidade do Contorno de Ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Fluxo do Contorno de Ponte" - -#: fdmprinter.def.json -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 regiões de contorno de ponte, a quantidade de material extrudado é multiplicada por este valor." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Densidade do Contorno de Ponte" - -#: fdmprinter.def.json -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 de contorno de ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Velocidade de Ventoinha da Ponte" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Porcentagem da velocidade de ventoinha a usar quando imprimir paredes e contornos em pontes." - -#: fdmprinter.def.json -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Ponte Tem Camadas Múltiplas" - -#: fdmprinter.def.json -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 habilitado, a segunda e terceira camadas sobre o ar serão impressas usando os ajustes seguintes. Senão, estas camadas serão impressas com ajustes normais." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Velocidade de Segundo Contorno da Ponte" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Velocidade de impressão a usar quando imprimir a segunda camada de ponte." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Fluxo de Segundo Contorno da Ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Densidade de Segundo Contorno da Ponte" - -#: fdmprinter.def.json -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 de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Velocidade da Ventoinha no Segundo Contorno da Ponte" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Porcentagem da velocidade da ventoinha a usar quando se imprimir a segunda camada de contorno da ponte." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Velocidade de Terceiro Contorno da Ponte" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Velocidade de impressão a usar quando imprimir a terceira camada de ponte." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Fluxo de Terceiro Contorno da Ponte" - -#: fdmprinter.def.json -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 de contorno da ponte, a quantidade de material é multiplicada por este valor." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Densidade de Terceiro Contorno da Ponte" - -#: fdmprinter.def.json -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 de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Velocidade da Ventoinha no Terceiro Contorno da Ponte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Limpar o Bico Entre Camadas" - -#: fdmprinter.def.json -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 "Decide se haverá inclusão de G-Code de limpeza de bico entre camadas (no máximo 1 por camada). Habilitar este ajuste pode influenciar o comportamento de retração na mudança de camada. Por favor use ajustes de Retração de Limpeza para controlar retração nas camadas onde o script de limpeza estará atuando." - -#: fdmprinter.def.json -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Volume de Material Entre Limpezas" - -#: fdmprinter.def.json -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 pode ser extrudado antes que outra limpeza de bico seja iniciada. Se este valor for menor que o volume de material requerido em uma camada, ele não terá efeito nenhum nesta camada, isto é, está limitado a uma limpeza por camada." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Habilitar Retração de Limpeza" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Retrair o filamento quando o bico se mover sobre uma área não impressa." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Distância de Retração da Limpeza" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Quantidade a retrair do filamento tal que ele não escorra durante a sequência de limpeza." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Quantidade Extra de Purga da Retração de Limpeza" - -#: fdmprinter.def.json -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 "Um pouco de material pode escorrer durante os movimentos do percurso de limpeza e isso pode ser compensado neste ajuste." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Velocidade da Retração de Limpeza" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "A velocidade com que o filamento é retraído e purgado durante um movimento de retração de limpeza." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Velocidade da Retração da Retração de Limpeza" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "A velocidade com que o filamento é retraído durante um movimento de retração de limpeza." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Velocidade de Purga da Retração de Limpeza" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "A velocidade com que o filamento é purgado durante um movimento de retração de limpeza." - -#: fdmprinter.def.json -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Pausa de Limpeza" - -#: fdmprinter.def.json -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pausa após desfazimento da retração." - -#: fdmprinter.def.json -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Salto Z da Limpeza" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Altura do Salto Z da Limpeza" - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "A diferença de altura ao executar um Salto Z." - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Velocidade do Salto de Limpeza" - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Velocidade com que mover o eixo Z durante o salto." - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Posição X da Varredura de Limpeza" - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "Localização X onde o script de limpeza iniciará." - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Contagem de Repetições de Limpeza" - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Número de vezes com que mover o bico através da varredura." - -#: fdmprinter.def.json -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Distância de Movimentação da Limpeza" - -#: fdmprinter.def.json -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "A distância com que mover a cabeça pra frente e pra trás durante a varredura." - -#: fdmprinter.def.json -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Tamanho Máximo de Furos Pequenos" - -#: fdmprinter.def.json -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 "Furos e contornos de partes com diâmetro menor que este serão impressos usando a Velocidade de Aspecto Pequeno." - -#: fdmprinter.def.json -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Comprimento Máximo do Aspecto Pequeno" - -#: fdmprinter.def.json -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Contornos de aspectos menores que este comprimento serão impressos usando a Velocidade de Aspecto Pequeno." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Velocidade de Aspecto Pequeno" - -#: fdmprinter.def.json -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 "Aspectos pequenos serão impressos nessa porcentagem da velocidade normal. Impressão mais lenta pode ajudar com aderência e precisão." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Velocidade de Camada Inicial de Aspecto Pequeno" - -#: fdmprinter.def.json -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 "Aspectos pequenos na primeira camada serão impressos nesta porcentagem de sua velocidade de impressão normal. Impressão mais lenta pode ajudar com aderência e precisão." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Alternar a Remoção de Malhas" #: fdmprinter.def.json msgctxt "material_alternate_walls label" @@ -6583,34 +202,349 @@ msgid "Alternate wall directions every other layer and inset. Useful for materia msgstr "Alterna direções de parede a cada camada e reentrância. Útil para materiais que podem acumular stress, como em impressão com metal." #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Remover Cantos Internos de Raft" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Alumínio" #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Remove os cantos internos do raft, fazendo com que ele se torne convexo." +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "Sempre Escrever a Ferramenta Ativa" #: fdmprinter.def.json -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Contagem de Paredes da Base do Raft" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Sempre retrair quando se mover para iniciar uma parede externa." #: fdmprinter.def.json -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." +msgctxt "hole_xy_offset description" +msgid "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." +msgstr "Quantidade de deslocamento aplicado a todos os furos em cada camada. Valores positivos aumentam o tamanho dos furos, valores negativos reduzem o tamanho dos furos." #: fdmprinter.def.json -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Ajustes de Linha de Comando" +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 "Deslocamento adicional aplicado para todos os polígonos em cada camada. Valores positivos 'engordam' a camada e podem compensar por furos exagerados; valores negativos a 'emagrecem' e podem compensar por furos pequenos." #: fdmprinter.def.json -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Ajustes que sào usados somentes se o CuraEngine não for chamado da interface do Cura." +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 "Deslocamento adicional aplicado a todos os polígonos da primeira camada. Um valor negativo pode compensar pelo esmagamento da primeira camada conhecido como \"pata de elefante\"." + +#: fdmprinter.def.json +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 deslocamento aplicado a todos os polígonos do suporte em cada camada. Valores positivos podem amaciar as áreas de suporte e resultar em suporte mais estável." + +#: fdmprinter.def.json +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Quantidade de deslocamento aplicado às bases do suporte." + +#: fdmprinter.def.json +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Quantidade de deslocamento aplicado aos tetos do suporte." + +#: fdmprinter.def.json +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Quantidade de deslocamento aplicado aos polígonos da interface de suporte." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Quantidade a retrair do filamento tal que ele não escorra durante a sequência de limpeza." + +#: fdmprinter.def.json +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 adicional ao raio do centro de cada cubo para verificar a borda do modelo, de modo a decidir se este cubo deve ser subdividido. Valores maiores levam a uma cobertura mais espessa de pequenos cubos perto da borda do modelo." + +#: fdmprinter.def.json +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Malha Anti-Pendente" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Posição Retraída Anti-escorrimento" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Velocidade de Retração Anti-escorrimento" + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Aplicar o deslocamento de extrusor ao sistema de coordenadas. Afeta todos os extrusores." + +#: fdmprinter.def.json +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 lugares em que os modelos tocam, gerar uma estrutura de vigas interligada. Isto melhora a aderência entre modelos, especialmente modelos impressos com materiais diferentes." + +#: fdmprinter.def.json +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Evitar Partes Impressas nas Viagens" + +#: fdmprinter.def.json +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Evitar Suportes No Percurso" + +#: fdmprinter.def.json +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Atrás" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Atrás à Esquerda" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Atrás à Direita" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Ambos" + +#: fdmprinter.def.json +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Camadas Inferiores" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Camada Inicial do Padrão da Base" + +#: fdmprinter.def.json +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Distância de Expansão do Contorno Inferior" + +#: fdmprinter.def.json +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Largura de Remoção do Contorno Inferior" + +#: fdmprinter.def.json +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Espessura Inferior" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Posição Retraída de Preparação de Quebra" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Velocidade de Retração de Preparação de Quebra" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatura de Quebra de Preparação" + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Posição Retraída de Quebra" + +#: fdmprinter.def.json +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Velocidade de Retração de Quebra" + +#: fdmprinter.def.json +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Temperatura de Quebra" + +#: fdmprinter.def.json +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Quebrar Suportes em Pedaços" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Velocidade de Ventoinha da Ponte" + +#: fdmprinter.def.json +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Ponte Tem Camadas Múltiplas" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Densidade de Segundo Contorno da Ponte" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Velocidade da Ventoinha no Segundo Contorno da Ponte" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Fluxo de Segundo Contorno da Ponte" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Velocidade de Segundo Contorno da Ponte" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Densidade do Contorno de Ponte" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Fluxo do Contorno de Ponte" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Velocidade do Contorno de Ponte" + +#: fdmprinter.def.json +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Limiar de Suporte de Contorno de Ponte" + +#: fdmprinter.def.json +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Densidade Máxima do Preenchimento Esparso de Ponte" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Densidade de Terceiro Contorno da Ponte" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Velocidade da Ventoinha no Terceiro Contorno da Ponte" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Fluxo de Terceiro Contorno da Ponte" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Velocidade de Terceiro Contorno da Ponte" + +#: fdmprinter.def.json +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Desengrenagem de Parede de Ponte" + +#: fdmprinter.def.json +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Fluxo da Parede de Ponte" + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Velocidade da Parede de Ponte" + +#: fdmprinter.def.json +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Brim" + +#: fdmprinter.def.json +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Distância do Brim" + +#: fdmprinter.def.json +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "Brim Dentro da Margem a Evitar" + +#: fdmprinter.def.json +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Contagem de Linhas do Brim" + +#: fdmprinter.def.json +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Brim Somente Para Fora" + +#: fdmprinter.def.json +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Brim Substitui Suporte" + +#: fdmprinter.def.json +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Largura do Brim" + +#: fdmprinter.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Aderência à Mesa" + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Extrusor de Aderência à Mesa" + +#: fdmprinter.def.json +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Tipo de Aderência da Mesa de Impressão" + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Material da Plataforma de Impressão" + +#: fdmprinter.def.json +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Forma da Mesa" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Temperatura da Mesa de Impressão" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Temperatura da Mesa de Impressão da Camada Inicial" + +#: fdmprinter.def.json +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatura do Volume de Impressão" #: fdmprinter.def.json msgctxt "center_object label" @@ -6618,61 +552,6135 @@ msgid "Center Object" msgstr "Centralizar Objeto" #: fdmprinter.def.json -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 "Decide se o objeto deve ser centralizado no meio da plataforma de impressão, ao invés de usar o sistema de coordenadas em que o objeto foi salvo." +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 a ser impresso de tal modo que o mínimo de suporte seja exigido. Seções pendentes agudas serão torcidas pra ficar mais verticais. Áreas de seções pendentes profundas se tornarão mais rasas." + +#: fdmprinter.def.json +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 "Permite escolher entre as técnicas para geração de suporte. Suporte \"normal\" cria a estrutura de suporte diretamente abaixo das seções pendentes e vai em linha reta pra baixo. Suporte \"em árvore\" cria galhos na direção das seções pendentes, suportando o modelo nas pontas destes, e permitndo que se distribuam em torno do modelo para apoiá-lo na plataforma de impressão tanto quanto possível." + +#: fdmprinter.def.json +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Velocidade de Desengrenagem" + +#: fdmprinter.def.json +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Volume de Desengrenagem" + +#: fdmprinter.def.json +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 "A desengrenagem ou 'coasting' troca a última parte do caminho de uma extrusão pelo caminho sem extrudar. O material escorrendo é usado para imprimir a última parte do caminho de extrusão de modo a reduzir fiapos." + +#: fdmprinter.def.json +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Modo de Combing" + +#: fdmprinter.def.json +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 "O Combing mantém o bico dentro de áreas já impressas ao fazer o percurso. Isto causa movimentações de percurso um pouco mais demoradas mas reduz a necessidade de retrações. Se o combing estiver desligado, o material sofrerá retração eo bico se moverá em linha reta até o próximo ponto. É possível também evitar combing sobre contornos inferiores e superiores ou somente fazer combing dentro do preenchimento." + +#: fdmprinter.def.json +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Ajustes de Linha de Comando" + +#: fdmprinter.def.json +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +#: fdmprinter.def.json +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +#: fdmprinter.def.json +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Ângulo de Suporte Cônico" + +#: fdmprinter.def.json +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Largura Mínima do Suporte Cônico" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Conectar Linhas de Preenchimento" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Conectar Polígonos do Preenchimento" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Conectar Linhas de Suporte" + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Conectar os Ziguezagues do Suporte" + +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Conectar Polígonos do Topo e Base" + +#: fdmprinter.def.json +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 "Conecta os caminhos de preenchimentos onde estiverem próximos um ao outro. Para padrões de preenchimento que consistam de vários polígonos fechados, a habilitação deste ajuste reduz bastante o tempo de percurso." + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Conecta os ziguezagues. Isto aumentará a força da estrutura de suporte em ziguezague." + +#: fdmprinter.def.json +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 "Conecta os extremos das linhas de suporte juntos. Habilitar este ajuste pode tornar seu suporte mais robusto e reduzir subextrusão, mas gastará mais material." + +#: fdmprinter.def.json +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 "Conecta as extremidades onde o padrão de preenchimento toca a parede interna usando uma linha que segue a forma da parede interna. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduzir o efeito do preenchimento na qualidade de superfícies verticais. Desabilitar este ajuda diminui a quantidade de material usado." + +#: fdmprinter.def.json +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 "Conectar caminhos de contorno da base e topo quando estiverem próximos entre si. Para o padrão concêntrico, habilitar este ajuste reduzirá bastante o tempo de percurso, mas por as conexões poderem acontecer no meio do preenchimento, este recurso pode reduzir a qualidade da superfície superior." + +#: fdmprinter.def.json +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 costura. Nenhum significa que os cantos não terão influência na posição da costura. Ocultar Costura torna mais provável que a costura ocorra em um canto interior. Expôr Costura torna mais provável que a costura ocorra em um canto exterior. Ocultar ou Expôr Costura torna mais provável que a costura ocorra em um canto interior ou exterior. Ocultação Inteligente permite tanto cantos interiores quanto exteriores, mas escolhe os interiores mais frequentemente se apropriado." + +#: fdmprinter.def.json +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 cada file de preenchimento para este número de filetes. Os filetes extras não se cruzam, se evitam. Isto torna o preenchimento mais rígido, mas aumenta o tempo de impressão e uso do material." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Velocidade de Resfriamento" + +#: fdmprinter.def.json +msgctxt "cooling description" +msgid "Cooling" +msgstr "Refrigeração" + +#: fdmprinter.def.json +msgctxt "cooling label" +msgid "Cooling" +msgstr "Refrigeração" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Cruzado" + +#: fdmprinter.def.json +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Cruzado" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Cruzado 3D" + +#: fdmprinter.def.json +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Tamanho de Bolso do Cruzado 3D" + +#: fdmprinter.def.json +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Imagem de Densidade de Preenchimento Cruzado para Suporte" + +#: fdmprinter.def.json +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Imagem de Densidade do Preenchimento Cruzado" + +#: fdmprinter.def.json +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Material Cristalino" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Cúbico" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Subdivisão Cúbica" + +#: fdmprinter.def.json +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Cobertura de Subdivisão Cúbica" + +#: fdmprinter.def.json +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Malha de Corte" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Dados relacionando fluxo de material (em mm³ por segundo) a temperatura (graus Celsius)." + +#: fdmprinter.def.json +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Aceleração Default" + +#: fdmprinter.def.json +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Temperatura Default da Plataforma de Impressão" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Jerk Default do Filamento" + +#: fdmprinter.def.json +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Temperatura Default de Impressão" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Jerk Default nos eixos X-Y" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "O Jerk Default em Z" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "O valor default de jerk para movimentos no plano horizontal." + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "O valor default de jerk para movimento na direção Z." + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "O valor default de jerk para movimentação do filamento." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 ao considerar múltiplas malhas de preenchimento sobrepostas. Áreas onde múltiplas malhas de preenchimento se sobrepõem terão os ajustes da malha com a maior prioridade. Uma malha de preenchimento com prioridade maior modificará o preenchimento tanto das malhas de preenchimento com prioridade menor quanto das malhas normais." + +#: fdmprinter.def.json +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 uma camada do preenchimento relâmpago deve suportar algo sobre si. Medido no ângulo de acordo com a espessura da camada." + +#: fdmprinter.def.json +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 a camada de preenchimento relâmpago deve suportar o modelo sobre si. Medido no ângulo de acordo com a espessura." + +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diâmetro" + +#: fdmprinter.def.json +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 opções que ajudam a melhorar a extrusão e a aderência à plataforma de impressão. Brim (bainha) adiciona uma camada única e chata em volta da base de seu modelo para impedir warping. Raft (balsa) adiciona uma grade densa com 'teto' abaixo do modelo. Skirt (saia) é uma linha impressa em volta do modelo, mas não conectada ao modelo, para apenas iniciar o processo de extrusão." + +#: fdmprinter.def.json +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Áreas Proibidas" + +#: fdmprinter.def.json +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 "Distância entre as linhas de preenchimento impressas. Este ajuste é calculado pela densidade de preenchimento e a largura de extrusão do preenchimento." + +#: fdmprinter.def.json +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 os filetes da camada inicial da camada de suporte. Este ajuste é calculado pela densidade de suporte." + +#: fdmprinter.def.json +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 "Distância entre os filetes de impressão da base de suporte. Este ajuste é calculado pela densidade da Base de Suporte, mas pode ser ajustado separadamente." + +#: fdmprinter.def.json +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 "Distância entre os filetes de impressão do teto de suporte. Este ajuste é calculado pela Densidade do Teto de Suporte mas pode ser ajustado separadamente." + +#: fdmprinter.def.json +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Distância entre as linhas impressas da estrutura de suporte. Este ajuste é calculado a partir da densidade de suporte." + +#: fdmprinter.def.json +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support." +msgstr "Distância da parte inferior do suporte até a impressão." + +#: fdmprinter.def.json +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Distância do topo do suporte à impressão." + +#: fdmprinter.def.json +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. This value is rounded up to a multiple of the layer height." +msgstr "Distância do topo e base da estrutura de suporte para a impressão. Este vão provê um espaço para remover os suportes depois de o modelo ser impresso. O valor é arredondado para um múltiplo da altura de camada." + +#: fdmprinter.def.json +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 "Distância do percurso inserido após cada linha de preenchimento, para fazer o preenchimento aderir melhor às paredes. Esta opção é similar à sobreposição de preenchimento mas sem extrusão e somente em uma extremidade do filete de preenchimento." + +#: fdmprinter.def.json +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Distância do percurso inserido após a parede externa para esconder melhor a costura em Z." + +#: fdmprinter.def.json +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Distância da Cobertura de Trabalho da impressão nas direções X e Y." + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "Distância da cobertura de escorrimento da impressão nas direções X e Y." + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Distância da estrutura de suporte da seção pendente nas direções X/Y." + +#: fdmprinter.def.json +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Distância da estrutura de suporte até a impressão nas direções X e Y." + +#: fdmprinter.def.json +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Não gerar preenchimento para áreas menores que esta (usar contorno)." + +#: fdmprinter.def.json +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Altura da Cobertura de Trabalho" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Limitação da Cobertura de Trabalho" + +#: fdmprinter.def.json +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Distância X/Y da Cobertura de Trabalho" + +#: fdmprinter.def.json +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Malha de Suporte Abaixo" + +#: fdmprinter.def.json +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Extrusão Dual" + +#: fdmprinter.def.json +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Elíptica" + +#: fdmprinter.def.json +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Habilitar Controle de Aceleração" + +#: fdmprinter.def.json +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Habilitar Ajustes de Ponte" + +#: fdmprinter.def.json +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Habilitar Desengrenagem" + +#: fdmprinter.def.json +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Habilitar Suporte Cônico" + +#: fdmprinter.def.json +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Habilitar Cobertura de Trabalho" + +#: fdmprinter.def.json +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Habilitar Passar a Ferro" + +#: fdmprinter.def.json +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Habilitar Controle de Jerk" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Habilitar Controle de Temperatura do Bico" + +#: fdmprinter.def.json +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Habilitar Cobertura de Escorrimento" + +#: fdmprinter.def.json +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Habilitar Massa de Purga" + +#: fdmprinter.def.json +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Habilitar Torre de Purga" + +#: fdmprinter.def.json +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Habilitar Refrigeração de Impressão" + +#: fdmprinter.def.json +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Habilitar Retração" + +#: fdmprinter.def.json +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Habilitar Brim de Suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Habilitar Base de Suporte" + +#: fdmprinter.def.json +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Habilitar Interface de Suporte" + +#: fdmprinter.def.json +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Habilitar Teto de Suporte" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Habilitar Aceleração de Percurso" + +#: fdmprinter.def.json +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Habilitar Jerk de Percurso" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 ao custo de qualidade de impressão." + +#: fdmprinter.def.json +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 a aceleração da cabeça de impressão. Aumentar as acelerações pode reduzir tempo de impressão ao custo de qualidade de impressão." + +#: fdmprinter.def.json +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 as ventoinhas de refrigeração ao imprimir. As ventoinhas aprimoram a qualidade de impressão em camadas de tempo curto de impressão e em pontes e seções pendentes." + +#: fdmprinter.def.json +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "G-Code Final" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Comprimento de Purga do Fim do Filamento" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Velocidade de Purga do Fim do Filamento" + +#: fdmprinter.def.json +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 "Força que o brim seja impresso em volta do modelo mesmo se este espaço fosse ser ocupado por suporte. Isto substitui algumas regiões da primeira camada de suporte por regiões de brim." + +#: fdmprinter.def.json +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Em Todo Lugar" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exclusivo" + +#: fdmprinter.def.json +msgctxt "experimental label" +msgid "Experimental" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Expôr Costura" + +#: fdmprinter.def.json +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Costura Extensa" + +#: fdmprinter.def.json +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 buracos abertos na malha fechando o buraco com polígonos que o tocam. Esta opção pode adicionar bastante tempo ao fatiamento das peças." + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Contagem de Paredes de Preenchimento Extras" + +#: fdmprinter.def.json +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Contagem de Paredes Extras de Contorno" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posição X da Purga do Extrusor" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posição Y da Purga do Extrusor" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posição Z de Purga do Extrusor" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Extrusores Compartilham Aquecedor" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Extrusores Compartilham o Bico" + +#: fdmprinter.def.json +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Modificador de Velocidade de Resfriamento de Extrusão" + +#: fdmprinter.def.json +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 de largura de extrusão baseada na velocidade. Em 0%, a velocidade de movimento é mantida constante na Velocidade de Impressão. Em 100%, a velocidade de movimento é ajustada de forma que o fluxo (em mm³/s) seja mantido constante, isto é, filetes de metade da Largura de Filete normal são impressos duas vezes mais rápido e filetes duas vezes mais espessos são impressos na metade da velocidade. Um valor mais alto que 100% pode ajudar a compensar pela maior pressão necessária para extrudar filetes espessos." + +#: fdmprinter.def.json +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Velocidade da Ventoinha" + +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Sobrepor Velocidade de Ventoinha" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Contornos de aspectos menores que este comprimento serão impressos usando a Velocidade de Aspecto Pequeno." + +#: fdmprinter.def.json +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Recursos que não foram completamente desenvolvidos ainda." + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diâmetro da Engrenagem de Alimentação" + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Temperatura de Impressão Final" + +#: fdmprinter.def.json +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Retração de Firmware" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extrusor de Suporte da Primeira Camada" + +#: fdmprinter.def.json +msgctxt "material_flow label" +msgid "Flow" +msgstr "Fluxo" + +#: fdmprinter.def.json +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Raio de Equalização de Fluxo" + +#: fdmprinter.def.json +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Fator de Compensação da Taxa de Fluxo" + +#: fdmprinter.def.json +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Máximo Deslocamento de Extrusão de Compensação de Taxa de Fluxo" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Gráfico de Fluxo de Temperatura" + +#: fdmprinter.def.json +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 primeira camada; a quantidade de material extrudado na camada inicial é multiplicada por este valor." + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Compensação de fluxo em filetes de preenchimento." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Compensação de fluxo em filetes de torre de purga." + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Compensação de Fluxo em filetes de Skirt e Brim." + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Compensação de fluxo nos filetes da base do suporte." + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Compensação de fluxo em filetes do teto de suporte." + +#: fdmprinter.def.json +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Compensação de fluxo em filetes de estruturas de suporte." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Compensação de fluxo no filete de parede mais externo." + +#: fdmprinter.def.json +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Compensação de fluxo em filetes do topo e base." + +#: fdmprinter.def.json +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 nos filetes de parede para todos os filetes exceto o mais externo, mas só para a primeira camada" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Compensação de fluxo em todos os filetes de parede excetuando o mais externo." + +#: fdmprinter.def.json +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Compensação de fluxo em filetes das paredes." + +#: fdmprinter.def.json +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 extrudado é multiplicado por este valor." + +#: fdmprinter.def.json +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Comprimento da Descarga de Purga" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Velocidade de Descarga de Purga" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Frente" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Frente à Esquerda" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Frente à Direita" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Completo" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Contorno Felpudo" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Densidade do Contorno Felpudo" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Contorno Felpudo Externo Apenas" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Distância de Pontos do Contorno Felpudo" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Espessura do Contorno Felpudo" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Sabor de G-Code" + +#: fdmprinter.def.json +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 final da impressão - separados por \n" +"." + +#: fdmprinter.def.json +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 da impressão - separados por \n" +"." + +#: fdmprinter.def.json +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID do material. É ajustado automaticamente." + +#: fdmprinter.def.json +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Altura do Eixo" + +#: fdmprinter.def.json +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Gerar Estrutura Interligada" + +#: fdmprinter.def.json +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Gerar Suporte" + +#: fdmprinter.def.json +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 o brim dentro das regiões de preenchimento de suporte da primeira camada. Este brim é impresso sob o suporte, não em volta dele. Habilitar este ajuste aumenta a aderência de suporte à mesa de impressão." + +#: fdmprinter.def.json +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 criará um contorno no topo do suporte em que o modelo é impresso e na base do suporte, onde ele fica sobre o modelo." + +#: fdmprinter.def.json +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 um bloco denso de material entre a base do suporte e o modelo. Isto criará uma divisória entre o modelo e o suporte." + +#: fdmprinter.def.json +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 um bloco denso de material entre o topo do suporte e o modelo. Isto criará uma divisória entre o modelo e o suporte." + +#: fdmprinter.def.json +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 "Gerar estrutura que suportem partes do modelo que tenham seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão." + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Vidro" + +#: fdmprinter.def.json +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 "Passa sobre a superfície superior uma vez a mais, mas extrudando muito pouco material. Isto serve para derreter mais o plástico em cima, criando uma superfície lisa. A pressão na câmara do bico é mantida alta tal que as rugas na superfície são preenchidas com material." + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Altura de Passo do Preenchimento Gradual" + +#: fdmprinter.def.json +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Passos Graduais de Preenchimento" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Altura de Passo do Preenchimento Gradual de Suporte" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Passos de Preenchimento Gradual de Suporte" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Grade" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Grade" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Grade" + +#: fdmprinter.def.json +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Grade" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Grade" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +#: fdmprinter.def.json +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Giróide" + +#: fdmprinter.def.json +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Giróide" + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Tem Estabilização de Temperatura do Volume de Impressão" + +#: fdmprinter.def.json +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Tem Mesa Aquecida" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Velocidade de Aquecimento" + +#: fdmprinter.def.json +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Comprimento da Zona de Aquecimento" + +#: fdmprinter.def.json +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Limitação de altura da cobertura de trabalho. Acima desta altura a cobertura não será impressa." + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Ocultar Costura" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Ocultar ou Expor Costura" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Expansão Horizontal do Furo" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "" + +#: fdmprinter.def.json +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 "Furos e contornos de partes com diâmetro menor que este serão impressos usando a Velocidade de Aspecto Pequeno." + +#: fdmprinter.def.json +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Expansão Horizontal" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Compensação de Fator de Encolhimento Horizontal" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance description" +msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." +msgstr "Quão distantes os galhos precisam estar quando tocam o modelo. Tornar esta distância pequena fará com que o suporte em árvore toque o modelo em mais pontos, permitindo maior sustentação mas tornando o suporte mais difícil de remover." + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Quanto o filamento pode ser esticado antes que quebre, quando aquecido." + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "De quanto o material precisa ser retraído antes que pare de escorrer." + +#: fdmprinter.def.json +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 "Em quanto mover o filamento para compensar mudanças na taxa de fluxo, como uma porcentagem da distância que o filamento seria movido em um segundo de extrusão." + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "De quanto o filamento deve ser retraído para se destacar completamente." + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "Qual a velocidade do material para que seja retraído antes de quebrar em uma retração." + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Qual a velocidade do material para que seja retraído durante a troca de filamento sem escorrimento." + +#: fdmprinter.def.json +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 "Quão rápido purgar o material depois de trocar um carretel vazio por um novo carretel do mesmo material." + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "Quão rápido purgar o material depois de alternar para um material diferente." + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "Quanto tempo o material pode ser mantido fora de armazenamento seco com segurança." + +#: fdmprinter.def.json +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 "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção X." + +#: fdmprinter.def.json +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 "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Y." + +#: fdmprinter.def.json +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 "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Z." + +#: fdmprinter.def.json +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 "Quantos passos dos motores resultarão no movimento da engrenagem de alimentação em um milímetro da circunferência." + +#: fdmprinter.def.json +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 "Quanto material usar para purgar o material anterior do bico (em comprimento de filamento) quando um carretel vazio for trocado por um carretel novo do mesmo material." + +#: fdmprinter.def.json +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 "Quanto material usar para purgar o material anterior do bico (em comprimento de filamento) quando alternar para um material diferente." + +#: fdmprinter.def.json +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 "Quanto é assumido que o filamento de cada extrusor tenha retraído da ponta do bico ao completar o script g-code de início da impressora; o valor deve ser igual ou superior ao comprimento da parte comum dos dutos do bico." + +#: fdmprinter.def.json +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 do contorno for suportada por menos do que esta porcentagem de sua área, imprimi-la com os ajustes de ponte. Senão, imprimir usando os ajustes normais de contorno." + +#: fdmprinter.def.json +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 habilitado, a segunda e terceira camadas sobre o ar serão impressas usando os ajustes seguintes. Senão, estas camadas serão impressas com ajustes normais." + +#: fdmprinter.def.json +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 for detectado que a cabeça de impressão estaria alternando em rápida sucessão entre números diferentes de parede, não fazer tal alternação. Remove transições se elas estiverem próximas até essa distância." + +#: fdmprinter.def.json +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 habilitado, esta é a área extra do raft em volta do modelo que também faz parte dele. Aumentar esta margem criará um raft mais forte mas também gastará mais material e deixará menos área para sua impressão." + +#: fdmprinter.def.json +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 a geometria interna de volumes sobrepostos dentro de uma malha e imprime os volumes como um único volume. Isto pode ter o efeito não-intencional de fazer cavidades desaparecerem." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Incluir Temperatura da Mesa" + +#: fdmprinter.def.json +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Incluir Temperaturas de Material" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusivo" + +#: fdmprinter.def.json +msgctxt "infill description" +msgid "Infill" +msgstr "Preenchimento" + +#: fdmprinter.def.json +msgctxt "infill label" +msgid "Infill" +msgstr "Preenchimento" + +#: fdmprinter.def.json +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Aceleração do Preenchimento" + +#: fdmprinter.def.json +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Preenchimento Antes das Paredes" + +#: fdmprinter.def.json +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Densidade do Preenchimento" + +#: fdmprinter.def.json +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Extrusor do Preenchimento" + +#: fdmprinter.def.json +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Fluxo de Preenchimento" + +#: fdmprinter.def.json +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Jerk do Preenchimento" + +#: fdmprinter.def.json +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Espessura da Camada de Preenchimento" + +#: fdmprinter.def.json +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Direções de Filetes de Preenchimento" + +#: fdmprinter.def.json +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Distância da Linha de Preenchimento" + +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Multiplicador de Filete de Preenchimento" + +#: fdmprinter.def.json +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Largura de Extrusão do Preenchimento" + +#: fdmprinter.def.json +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Malha de Preenchimento" + +#: fdmprinter.def.json +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Ângulo de Seções Pendentes do Preenchimento" + +#: fdmprinter.def.json +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Sobreposição de Preenchimento" + +#: fdmprinter.def.json +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Porcentagem de Sobreposição do Preenchimento" + +#: fdmprinter.def.json +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Padrão de Preenchimento" + +#: fdmprinter.def.json +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Velocidade de Preenchimento" + +#: fdmprinter.def.json +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Suporte do Preenchimento" + +#: fdmprinter.def.json +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Otimização de Percurso de Preenchimento" + +#: fdmprinter.def.json +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Distância de Varredura do Preenchimento" + +#: fdmprinter.def.json +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Deslocamento X do Preenchimento" + +#: fdmprinter.def.json +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Deslocamento do Preenchimento Y" + +#: fdmprinter.def.json +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Camadas Inferiores Iniciais" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Velocidade Inicial da Ventoinha" + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Aceleração da Camada Inicial" + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Fluxo da Base da Camada Inicial" + +#: fdmprinter.def.json +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Fluxo Inicial de Camada" + +#: fdmprinter.def.json +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Altura da Primeira Camada" + +#: fdmprinter.def.json +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Expansão Horizontal da Camada Inicial" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Fluxo de Parede Interna da Camada Inicial" + +#: fdmprinter.def.json +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Jerk da Camada Inicial" + +#: fdmprinter.def.json +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Largura de Extrusão da Camada Inicial" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Fluxo de Parede Externa da Camada Inicial" + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Aceleração de Impressão da Camada Inicial" + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Jerk de Impressão da Camada Inicial" + +#: fdmprinter.def.json +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Velocidade de Impressão da Camada Inicial" + +#: fdmprinter.def.json +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Velocidade da Camada Inicial" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Distância de Filetes da Camada Inicial de Suporte" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Aceleração de Percurso da Camada Inicial" + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Jerk de Percurso da Camada Inicial" + +#: fdmprinter.def.json +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Velocidade de Percurso da Camada Inicial" + +#: fdmprinter.def.json +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Sobreposição em Z das Camadas Iniciais" + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Temperatura Inicial de Impressão" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Aceleração das Paredes Interiores" + +#: fdmprinter.def.json +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extrusor da Parede Interior" + +#: fdmprinter.def.json +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Jerk das Paredes Internas" + +#: fdmprinter.def.json +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Velocidade da Parede Interior" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Fluxo da(s) Parede(s) Interna(s)" + +#: fdmprinter.def.json +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Largura de Extrusão das Paredes Internas" + +#: fdmprinter.def.json +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 "Penetração adicional aplicada ao caminho da parede externa. Se a parede externa for menor que o bico, e impressa depois das paredes internas, use este deslocamento para fazer o orifício do bico se sobrepor às paredes internas ao invés de ao lado de fora do modelo." + +#: fdmprinter.def.json +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "De Dentro Pra Fora" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Contagem de Camadas das Vigas Interligadas" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Largura da Viga Interligada" + +#: fdmprinter.def.json +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Prevenção de Fronteira de Interligação" + +#: fdmprinter.def.json +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Profundidade de Interligação" + +#: fdmprinter.def.json +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Orientação da Estrutura de Interligação" + +#: fdmprinter.def.json +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Passar a Ferro Somente Camada Mais Alta" + +#: fdmprinter.def.json +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Aceleração de Passar a Ferro" + +#: fdmprinter.def.json +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Fluxo de Passagem a Ferro" + +#: fdmprinter.def.json +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Penetração da Passagem a Ferro" + +#: fdmprinter.def.json +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Jerk de Passar a Ferro" + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Espaçamento de Passagem a Ferro" + +#: fdmprinter.def.json +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Padrão de Passagem a Ferro" + +#: fdmprinter.def.json +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Velocidade de Passar o Ferro" + +#: fdmprinter.def.json +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Origem é no Centro" + +#: fdmprinter.def.json +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 material é do tipo que se destaca completamente quando aquecido (cristalino), ou é o tipo que produz cadeias de polímero entrelaçadas (não-cristalino)?" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Flutuar movimento apenas nos contornos e não nos furos das peças." + +#: fdmprinter.def.json +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Manter Faces Desconectadas" + +#: fdmprinter.def.json +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Altura de Camada" + +#: fdmprinter.def.json +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "X Inicial da Camada" + +#: fdmprinter.def.json +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Y Inicial da Camada" + +#: fdmprinter.def.json +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 "Espessura de camada da camada de base do raft. Esta camada deve ser grossa para poder aderir firmemente à mesa." + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Espessura da camada intermediária do raft." + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Espessura de camada das camadas superiores do raft." + +#: fdmprinter.def.json +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 "Evita uma conexão entre linhas de suporte uma vez a cada N milímetros para fazer a estrutura de suporte mais fácil de ser removida." + +#: fdmprinter.def.json +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Esquerda" + +#: fdmprinter.def.json +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Levantar Cabeça" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Relâmpago" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Ângulo de Seção Pendente do Preenchimento Relâmpago" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Ângulo de Poda do Preenchimento Relâmpago" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Ângulo de Retificação do Preenchimento Relâmpago" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Ângulo de Suporte do Preenchimento Relâmpago" + +#: fdmprinter.def.json +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 "Limitar o volume desta malha para dentro de outras malhas. Você pode usar isto para fazer certas áreas de uma malha imprimirem com ajustes diferentes, incluindo extrusor diferente." + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Limitado" + +#: fdmprinter.def.json +msgctxt "line_width label" +msgid "Line Width" +msgstr "Largura de Extrusão" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +#: fdmprinter.def.json +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Linhas" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +#: fdmprinter.def.json +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" + +#: fdmprinter.def.json +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Profundidade da Mesa" + +#: fdmprinter.def.json +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Polígono da Cabeça com Ventoinha" + +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Altura do Volume" + +#: fdmprinter.def.json +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Tipo de Máquina" + +#: fdmprinter.def.json +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Largura da Mesa" + +#: fdmprinter.def.json +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Ajustes específicos da máquina" + +#: fdmprinter.def.json +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Torna Seções Pendentes Imprimíveis" + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Faz malhas que tocam uma à outra se sobreporem um pouco. Isto faz com que elas se combinem com mais força." + +#: fdmprinter.def.json +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Faz as áreas de suporte menores na base que na seção pendente." + +#: fdmprinter.def.json +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 suport em todo lugar abaixo da malha de suporte de modo que não haja seções pendentes nela." + +#: fdmprinter.def.json +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 "Faz a posição de purga do extrusor absoluta ao invés de relativa à última posição conhecida da cabeça." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Faz as malhas mais adequadas para impressão 3D." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumétrico)" + +#: fdmprinter.def.json +msgctxt "material description" +msgid "Material" +msgstr "Material" + +#: fdmprinter.def.json +msgctxt "material label" +msgid "Material" +msgstr "Material" + +#: fdmprinter.def.json +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID do Material" + +#: fdmprinter.def.json +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Volume de Material Entre Limpezas" + +#: fdmprinter.def.json +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Máxima Distância de Combing Sem Retração" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Aceleração Máxima em X" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Aceleração Máxima em Y" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Aceleração Máxima em Z" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Desvio Máximo" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Desvio Máximo de Área de Extrusão" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Velocidade Máxima da Ventoinha" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Aceleração Máxima do Filamento" + +#: fdmprinter.def.json +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Ângulo Máximo do Modelo" + +#: fdmprinter.def.json +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Área Máxima de Furo de Seções Pendentes" + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Duração Máxima de Descanso" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Resolução Máxima" + +#: fdmprinter.def.json +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Contagem de Retrações Máxima" + +#: fdmprinter.def.json +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Ângulo Máximo do Contorno para Expansão" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Velocidade Máxima de Extrusão" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Velocidade Máxima em X" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Velocidade Máxima em Y" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Velocidade Máxima em Z" + +#: fdmprinter.def.json +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Diâmetro Máximo Suportado por Torres" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Máxima Resolução de Percurso" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "A aceleração máxima para o motor da impressora na direção Y." + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "A aceleração máxima para o motor da impressora na direção Z." + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Aceleração máxima para a entrada de filamento no hotend." + +#: fdmprinter.def.json +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 preenchimento considerado esparso. Contorno sobre o preenchimento esparso é considerado não-suportado e portanto será tratado como contorno de ponte." + +#: fdmprinter.def.json +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 nas direções X e Y da pequena área que será suportada por uma torre especializada de suporte." + +#: fdmprinter.def.json +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 pode ser extrudado antes que outra limpeza de bico seja iniciada. Se este valor for menor que o volume de material requerido em uma camada, ele não terá efeito nenhum nesta camada, isto é, está limitado a uma limpeza por camada." + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Sobreposição de Malhas Combinadas" + +#: fdmprinter.def.json +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Correções de Malha" #: fdmprinter.def.json msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "Posição X da Malha" -#: fdmprinter.def.json -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Deslocamento aplicado ao objeto na direção X." - #: fdmprinter.def.json msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "Posição Y da Malha" -#: fdmprinter.def.json -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Deslocamento aplicado ao objeto na direção Y." - #: fdmprinter.def.json msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "Posição Z da Malha" #: fdmprinter.def.json -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 "Deslocamento aplicado ao objeto na direção Z. Com isto você pode fazer afundamento do objeto na plataforma." +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Hierarquia do Processamento de Malha" #: fdmprinter.def.json msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "Matriz de Rotação da Malha" +#: fdmprinter.def.json +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Meio" + +#: fdmprinter.def.json +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Largura Mínima do Molde" + +#: fdmprinter.def.json +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Tempo Mínima em Temperatura de Espera" + +#: fdmprinter.def.json +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Comprimento de Parede de Ponte Mínimo" + +#: fdmprinter.def.json +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Largura Mínima de Filete de Parede Par" + +#: fdmprinter.def.json +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Janela de Distância de Extrusão Mínima" + +#: fdmprinter.def.json +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Mínimo Tamanho de Detalhe" + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Velocidade Mínima de Alimentação" + +#: fdmprinter.def.json +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Área Mínima para Preenchimento" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Tempo Mínimo de Camada" + +#: fdmprinter.def.json +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Largura Mínima de Filete de Parede Ímpar" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Mínima Circunferência do Polígono" + +#: fdmprinter.def.json +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Largura Mínima de Contorno para Expansão" + +#: fdmprinter.def.json +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Velocidade Mínima" + +#: fdmprinter.def.json +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Área Mínima de Suporte" + +#: fdmprinter.def.json +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Área Mínima de Base de Suporte" + +#: fdmprinter.def.json +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Área Mínima de Interface de Suporte" + +#: fdmprinter.def.json +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Área Mínima de Teto de Suporte" + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Distância Mínima de Suporte X/Y" + +#: fdmprinter.def.json +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Largura Mínima de Filete de Parede Fina" + +#: fdmprinter.def.json +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Volume Mínimo Antes da Desengrenagem" + +#: fdmprinter.def.json +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Largura Mínina de Filete de Parede" + +#: fdmprinter.def.json +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 "Área mínima para os polígonos da interface de suporte. Polígonos que têm área menor que este valor serão impressos como suporte normal." + +#: fdmprinter.def.json +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 "Área mínima para polígonos de suporte. Polígonos que tiverem uma área menor que essa não serão gerados." + +#: fdmprinter.def.json +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 "Área mínima para as bases do suport. Polígonos que têm área menor que este valor serão impressos como suporte normal." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Largura mínima para a qual a base do suporte cônico é reduzida. Pequenas larguras podem levar a estruturas de suporte instáveis." + +#: fdmprinter.def.json +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Molde" + +#: fdmprinter.def.json +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Ângulo do Molde" + +#: fdmprinter.def.json +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Altura de Teto do Molde" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Ordem de Passagem a Ferro Monotônica" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Ordem da Superfície Monotônica Superior" + +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Ordem Monotônica Superior/Inferior" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Fator de Movimento Sem Carga" + +#: fdmprinter.def.json +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Sem Contorno nas Lacunas Z" + +#: fdmprinter.def.json +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Jeitos não-tradicionais de imprimir seus modelos." + +#: fdmprinter.def.json +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Nenhuma" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Nenhum" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "" + +#: fdmprinter.def.json +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 o Cura tenta costurar pequenos furos na malha e remover partes de uma camada com grandes buracos. Habilitar esta opção mantém as partes que ele não consegue costurar. Esta opção deve ser usada como última alternativa quando tudo o mais falhar para produzir G-Code apropriado." + +#: fdmprinter.def.json +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Não no Contorno" + +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Não na Superfície Externa" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Ângulo do Bico" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diâmetro do bico" + +#: fdmprinter.def.json +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Áreas Proibidas para o Bico" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID do Bico" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Comprimento do Bico" + +#: fdmprinter.def.json +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Quantidade de Avanço Extra da Troca de Bico" + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Velocidade de Avanço da Troca de Bico" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Velocidade de Retração da Troca de Bico" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Distância de Retração da Troca de Bico" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Velocidade de Retração da Troca do Bico" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Número de extrusores" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Número de Extrusores Habilitados" + +#: fdmprinter.def.json +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Número de Camadas Mais Lentas" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "O número de carros extrusores que estão habilitados; automaticamente ajustado em software" + +#: fdmprinter.def.json +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 carros extrusores. Um carro extrusor é a combinação de um alimentador/tracionador, opcional tubo de filamento guiado e o hotend." + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Número de vezes com que mover o bico através da varredura." + +#: fdmprinter.def.json +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 vezes para reduzir a densidade de preenchimento pela metade quando estiver chegando mais além embaixo das superfícies superiores. Áreas que estão mais perto das superfícies superiores ganham uma densidade maior, numa gradação até a densidade configurada de preenchimento." + +#: fdmprinter.def.json +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 vezes para reduzir a densidade de preenchimento de suporte pela metade quando avançando abaixo das superfícies inferiores. Áreas mais próximas ao topo terão maior densidade, até a Densidade de Preenchimento de Suporte." + +#: fdmprinter.def.json +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octeto" + +#: fdmprinter.def.json +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Desligado" + +#: fdmprinter.def.json +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Deslocamento aplicado ao objeto na direção X." + +#: fdmprinter.def.json +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Deslocamento aplicado ao objeto na direção Y." + +#: fdmprinter.def.json +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 "Deslocamento aplicado ao objeto na direção Z. Com isto você pode fazer afundamento do objeto na plataforma." + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Deslocamento com o Extrusor" + +#: fdmprinter.def.json +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Um de Cada Vez" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Somente executar a passagem a ferro na última camada da malha. Isto economiza tempo se as camadas abaixo não precisarem de um acabamento de superfície amaciado." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Ângulo da Cobertura de Escorrimento" + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Distância da Cobertura de Escorrimento" + +#: fdmprinter.def.json +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Otimizar Ordem de Impressão de Paredes" + +#: fdmprinter.def.json +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 "Otimiza a ordem em que as paredes são impressas, tais que o número de retrações e a distância percorrida sejam reduzidos. A maioria das peças se beneficiará deste ajuste habilitado mas outras poderão demorar mais, portanto compare as estimativas de tempo de impressão com e sem otimização. A primeira camada não é otimizada quando o brim é selecionado como tipo de aderência da mesa de impressão." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Diâmetro Externo do Bico" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Aceleração da Parede Exterior" + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extrusor da Parede Externa" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Fluxo da Parede Externa" + +#: fdmprinter.def.json +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Penetração da Parede Externa" + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Jerk da Parede Exterior" + +#: fdmprinter.def.json +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Largura de Extrusão da Parede Externa" + +#: fdmprinter.def.json +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Velocidade da Parede Exterior" + +#: fdmprinter.def.json +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Distância de Varredura da Parede Externa" + +#: fdmprinter.def.json +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "De Fora Pra Dentro" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Ângulo de Parede Pendente" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Velocidade de Parede Pendente" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pausa após desfazimento da retração." + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Porcentagem da velocidade de ventoinha a usar quando imprimir paredes e contornos em pontes." + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Porcentagem da velocidade da ventoinha a usar quando se imprimir a segunda camada de contorno da ponte." + +#: fdmprinter.def.json +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 "Porcentagem de velocidade da ventoinha a usar ao imprimir as regiões de contorno imediatamente sobre o suporte. Usar uma velocidade de ventoinha alta pode fazer o suporte mais fácil de remover." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Aceleração da Torre de Purga" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Brim" +msgstr "Brim da Torre de Purga" + +#: fdmprinter.def.json +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Fluxo da Torre de Purga" + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Jerk da Torre de Purga" + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Largura de Extrusão da Torre de Purga" + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Volume Mínimo da Torre de Purga" + +#: fdmprinter.def.json +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Tamanho da Torre de Purga" + +#: fdmprinter.def.json +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Velocidade da Torre de Purga" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Posição X da Torre de Purga" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Posição Y da Torre de Purga" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +msgstr "Torres de Prime podem precisar de aderência extra dada por um brim mesmo se o modelo não precisar. No momento não pode ser usado com o tipo de aderência 'Raft'." + +#: fdmprinter.def.json +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Aceleração da Impressão" + +#: fdmprinter.def.json +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Jerk da Impressão" + +#: fdmprinter.def.json +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Sequência de Impressão" + +#: fdmprinter.def.json +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Velocidade de Impressão" + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Imprimir Paredes Finas" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 filetes de passagem a ferro em uma ordem que os faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Isso faz levar um pouco mais de tempo na impressão, mas torna as superfícies mais consistentes." + +#: fdmprinter.def.json +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 moldes com o negativo das peças de modo que se possa encher de resina para as gerar." + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Imprime partes do modelo que são horizontalmente mais finas que o tamanho do bico." + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Velocidade de impressão a usar quando imprimir a segunda camada de ponte." + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Velocidade de impressão a usar quando imprimir a terceira camada de ponte." + +#: fdmprinter.def.json +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 preenchimento antes de imprimir as paredes. Imprimir as paredes primeiro pode levar a paredes mais precisas, mas seções pendentes são impressas com pior qualidade. Imprimir o preenchimento primeiro leva a paredes mais fortes, mas o padrão de preenchimento pode às vezes aparecer através da superfície." + +#: fdmprinter.def.json +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 os filetes da superfície superior em uma ordem que faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna as superfícies planas mais consistentes." + +#: fdmprinter.def.json +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 filetes superiores e inferiores em uma ordem que os faz sempre se sobreporem a filetes adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna superfícies planas mais consistentes." + +#: fdmprinter.def.json +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Temperatura de Impressão" + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Temperatura de Impressão da Camada Inicial" + +#: fdmprinter.def.json +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "" + +#: fdmprinter.def.json +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 uma parede adicional a cada duas camadas. Deste jeito o preenchimento fica aprisionado entre estas paredes extras, resultando em impressões mais fortes." + +#: fdmprinter.def.json +msgctxt "resolution label" +msgid "Quality" +msgstr "Qualidade" + +#: fdmprinter.def.json +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Quarto Cúbico" + +#: fdmprinter.def.json +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" + +#: fdmprinter.def.json +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Vão Aéreo do Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Extrusor da Base do Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Velocidade de Ventoinha da Base do Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Espaçamento de Filete de Base do Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Largura de Linha da Base do Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Aceleração de Impressão da Base do Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Jerk de Impressão da Base do Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Velocidade de Impressão da Base do Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Espessura da Base do Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Contagem de Paredes da Base do Raft" + +#: fdmprinter.def.json +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Margem Adicional do Raft" + +#: fdmprinter.def.json +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Velocidade de Ventoinha no Raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Extrusor do Meio do Raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Velocidade de Ventoinha do Meio do Raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Camadas Centrais do Raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Largura da Linha do Meio do Raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Aceleração de Impressão do Meio do Raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Jerk de Impressão do Meio do Raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Velocidade de Impressão do Meio do Raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Espaçamento do Meio do Raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Espessura do Meio do Raft" + +#: fdmprinter.def.json +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Aceleração de Impressão do Raft" + +#: fdmprinter.def.json +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Jerk de Impressão do Raft" + +#: fdmprinter.def.json +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Velocidade de Impressão do Raft" + +#: fdmprinter.def.json +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Amaciamento do Raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Extrusor do Topo do Raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Velocidade da Ventoinha para o Topo do Raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Espessura da Camada Superior do Raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Camadas Superiores do Raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Largura do Filete Superior do Raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Aceleração de Impressão do Topo do Raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Jerk de Impressão do Topo do Raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Velocidade de Impressão do Topo do Raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Espaçamento Superior do Raft" + +#: fdmprinter.def.json +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Aleatório" + +#: fdmprinter.def.json +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Aleatorizar o Começo do Preenchimento" + +#: fdmprinter.def.json +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 "Aleatoriza qual linha do preenchimento é impressa primeiro. Isto evita que um segmento seja mais forte que os outros, mas ao custo de um percurso adicional." + +#: fdmprinter.def.json +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 "Faz flutuações de movimento aleatório enquanto imprime a parede mais externa, de modo que a superfície do objeto ganhe uma aparência felpuda ou acidentada." + +#: fdmprinter.def.json +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Retangular" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Velocidade Regular da Ventoinha" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Velocidade Regular da Ventoinha na Altura" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Velocidade Regular da Ventoinha na Camada" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Limite de Tempo para Mudança de Velocidade da Ventoinha" + +#: fdmprinter.def.json +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Extrusão Relativa" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Remover Todos os Furos" + +#: fdmprinter.def.json +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Remover Camadas Iniciais Vazias" + +#: fdmprinter.def.json +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Remover Interseções de Malha" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Remover Cantos Internos de Raft" + +#: fdmprinter.def.json +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 "Remove áreas onde várias malhas estão sobrepondo uma à outra. Isto pode ser usado se objetos de material duplo se sobrepõem um ao outro." + +#: fdmprinter.def.json +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 camadas vazias entre a primeira camada impressa se estiverem presentes. Desabilitar este ajuste pode criar camadas iniciais vazias se a Tolerância de Fatiamento estiver configurada para Exclusivo ou Meio." + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Remove os cantos internos do raft, fazendo com que ele se torne convexo." + +#: fdmprinter.def.json +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 furos de cada camada e mantém somente aqueles da forma externa. Isto ignorará qualquer geometria interna invisível. No entanto, também ignorará furos de camada que poderiam ser vistos de cima ou de baixo." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +#: fdmprinter.def.json +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 externa do padrão superior/inferir com um número de linhas concêntricas. Usar uma ou duas linhas melhora tetos e topos que começam a ser construídos em cima de padrões de preenchimento." + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution description" +msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." +msgstr "Resolução para computar colisões com a qual evitar tocar o modelo. Ajustar valor mais baixos produzirá árvore mais precisas que falharão menos, mas aumentará o tempo de fatiamento dramaticamente." + +#: fdmprinter.def.json +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Retrair Antes da Parede Externa" + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Retrai em Mudança de Camada" + +#: fdmprinter.def.json +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Retrair o filamento quando o bico estiver se movendo sobre uma área não-impressa." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Retrair o filamento quando o bico se mover sobre uma área não impressa." + +#: fdmprinter.def.json +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 bico está se movendo para a próxima camada." + +#: fdmprinter.def.json +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Distância da Retração" + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Quantidade Adicional de Avanço da Retração" + +#: fdmprinter.def.json +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Percurso Mínimo para Retração" + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Velocidade de Avanço da Retração" + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Velocidade de Recolhimento de Retração" + +#: fdmprinter.def.json +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Velocidade de Retração" + +#: fdmprinter.def.json +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Direita" + +#: fdmprinter.def.json +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Velocidade de Escala da Ventoinha A 0-1" + +#: fdmprinter.def.json +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 "Usa a escala da velocidade da ventoinha como um número entre 0 e 1 ao invés de 0 a 256." + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Compensação de Fator de Encolhimento" + +#: fdmprinter.def.json +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "A Cena Tem Malhas de Suporte" + +#: fdmprinter.def.json +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Preferência do Canto da Costura" + +#: fdmprinter.def.json +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 "Estabelece a altura da cobertura de trabalho. Escolha imprimir a cobertura na altura total dos modelos ou até uma altura limitada." + +#: fdmprinter.def.json +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Ajustes usados para imprimir com vários extrusores." + +#: fdmprinter.def.json +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Ajustes que sào usados somentes se o CuraEngine não for chamado da interface do Cura." + +#: fdmprinter.def.json +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Retração Inicial do Bico Compartilhado" + +#: fdmprinter.def.json +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Canto Mais Agudo" + +#: fdmprinter.def.json +msgctxt "shell description" +msgid "Shell" +msgstr "Perímetro" + +#: fdmprinter.def.json +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Mais Curto" + +#: fdmprinter.def.json +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Exibir Variantes de Máquina" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Camadas do Suporte da Aresta de Contorno" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Espessura do Suporte da Aresta de Contorno" + +#: fdmprinter.def.json +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Distância de Expansão do Contorno" + +#: fdmprinter.def.json +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Sobreposição do Contorno" + +#: fdmprinter.def.json +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Porcentagem de Sobreposição do Contorno" + +#: fdmprinter.def.json +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Largura de Remoção de Contorno" + +#: fdmprinter.def.json +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 "Áreas de contorno mais estreitas que esta não são expandidas. Isto evita expandir as áreas estreitas que são criadas quando a superfície do modelo tem inclinações quase verticais." + +#: fdmprinter.def.json +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Evitar uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida." + +#: fdmprinter.def.json +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 "Evitar algumas conexões de linha de suporte para fazer a estrutura de suporte mais fácil de ser removida. Este ajuste é aplicável ao padrão de preenchimento de suporte de ziguezague." + +#: fdmprinter.def.json +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Skirt" + +#: fdmprinter.def.json +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Distância do Skirt" + +#: fdmprinter.def.json +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Contagem de linhas de Skirt" + +#: fdmprinter.def.json +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Aceleração para Skirt e Brim" + +#: fdmprinter.def.json +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Extrusor do Skirt/Brim" + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Fluxo de Skirt/Brim" + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Jerk de Skirt e Brim" + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Largura de Extrusão do Brim e Skirt" + +#: fdmprinter.def.json +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Mínimo Comprimento do Skirt e Brim" + +#: fdmprinter.def.json +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Velocidade do Skirt e Brim" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Tolerância de Fatiamento" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Velocidade de Camada Inicial de Aspecto Pequeno" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Comprimento Máximo do Aspecto Pequeno" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Velocidade de Aspecto Pequeno" + +#: fdmprinter.def.json +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Tamanho Máximo de Furos Pequenos" + +#: fdmprinter.def.json +#, fuzzy +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Temperatura de Impressão Final" + +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + +#: fdmprinter.def.json +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 "Aspectos pequenos na primeira camada serão impressos nesta porcentagem de sua velocidade de impressão normal. Impressão mais lenta pode ajudar com aderência e precisão." + +#: fdmprinter.def.json +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 "Aspectos pequenos serão impressos nessa porcentagem da velocidade normal. Impressão mais lenta pode ajudar com aderência e precisão." + +#: fdmprinter.def.json +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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Ocultação Inteligente" + +#: fdmprinter.def.json +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Suavizar Contornos Espiralizados" + +#: fdmprinter.def.json +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 "Suavizar os contornos espiralizados para reduzir a visibilidade da costura Z (a costura Z deve ser quase invisível na impressão mas ainda será visível na visão de camadas). Note que a suavização tenderá a embaçar detalhes finos de superfície." + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Alguns materiais podem escorrer um pouco durante o percurso, o que pode ser compensando neste ajuste." + +#: fdmprinter.def.json +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 "Um pouco de material pode escorrer durante os movimentos do percurso de limpeza e isso pode ser compensado neste ajuste." + +#: fdmprinter.def.json +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Modos Especiais" + +#: fdmprinter.def.json +msgctxt "speed description" +msgid "Speed" +msgstr "Velocidade" + +#: fdmprinter.def.json +msgctxt "speed label" +msgid "Speed" +msgstr "Velocidade" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Velocidade com que mover o eixo Z durante o salto." + +#: fdmprinter.def.json +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Espiralizar o Contorno Externo" + +#: fdmprinter.def.json +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 "'Espiralizar' faz com que o movimento vertical (em Z) seja contínuo e gradual seguindo o contorno da peça. Este recurso transforma um modelo sólido em uma simples linha contínua em espiral partindo de uma base sólida. O recurso só deve ser habilitado quando cada camada horizontal contiver somente um contorno." + +#: fdmprinter.def.json +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Temperatura de Espera" + +#: fdmprinter.def.json +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "G-Code Inicial" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Passos por Milímetro (E)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Passos por Milímetro (X)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Passos por Milímetro (Y)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Passos por Milímetro (Z)" + +#: fdmprinter.def.json +msgctxt "support description" +msgid "Support" +msgstr "Suporte" + +#: fdmprinter.def.json +msgctxt "support label" +msgid "Support" +msgstr "Suporte" + +#: fdmprinter.def.json +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Aceleração do Suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Distância Inferior do Suporte" + +#: fdmprinter.def.json +#, fuzzy +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Contagem de Linhas de Parede de Suporte" + +#: fdmprinter.def.json +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Número de Filetes do Brim de Suporte" + +#: fdmprinter.def.json +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Largura do Brim de Suporte" + +#: fdmprinter.def.json +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Contagem de Linhas de Pedaço de Suporte" + +#: fdmprinter.def.json +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Tamanho do Pedaço de Suporte" + +#: fdmprinter.def.json +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Densidade do Suporte" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Prioridade das Distâncias de Suporte" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extrusor do Suporte" + +#: fdmprinter.def.json +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Aceleração da Base do Suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Densidade da Base do Suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extrusor da Base do Suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Fluxo da Base de Suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Expansão Horizontal da Base do Suporte" + +#: fdmprinter.def.json +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Jerk da Base do Suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Direções de Filete da Base do Suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Distância de Filetes da Base de Suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Largura de Extrusão da Base do Suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Padrão de Base de Suporte" + +#: fdmprinter.def.json +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Velocidade de Base do Suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Espessura da Base de Suporte" + +#: fdmprinter.def.json +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Fluxo de Suporte" + +#: fdmprinter.def.json +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Expansão Horizontal do Suporte" + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Aceleração do Preenchimento do Suporte" + +#: fdmprinter.def.json +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extrusor do Preenchimento do Suporte" + +#: fdmprinter.def.json +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Jerk de Preenchimento de Suporte" + +#: fdmprinter.def.json +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Espessura de Camada do Preenchimento de Suporte" + +#: fdmprinter.def.json +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Direção de Filete do Preenchimento de Suporte" + +#: fdmprinter.def.json +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Velocidade do Preenchimento do Suporte" + +#: fdmprinter.def.json +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Aceleração da Interface de Suporte" + +#: fdmprinter.def.json +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Densidade da Interface de Suporte" + +#: fdmprinter.def.json +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extrusor da Interface de Suporte" + +#: fdmprinter.def.json +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Fluxo de Interface de Suporte" + +#: fdmprinter.def.json +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Expansão Horizontal da Interface de Suporte" + +#: fdmprinter.def.json +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Jerk da Interface de Suporte" + +#: fdmprinter.def.json +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Direções do Filete de Interface de Suporte" + +#: fdmprinter.def.json +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Largura de Extrusão da Interface do Suporte" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Padrão da Interface de Suporte" + +#: fdmprinter.def.json +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Resolução da Interface de Suporte" + +#: fdmprinter.def.json +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Velocidade da Interface de Suporte" + +#: fdmprinter.def.json +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Espessura da Interface de Suporte" + +#: fdmprinter.def.json +#, fuzzy +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Contagem de Linhas de Parede de Suporte" + +#: fdmprinter.def.json +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Jerk do Suporte" + +#: fdmprinter.def.json +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Distância de União do Suporte" + +#: fdmprinter.def.json +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Distância das Linhas do Suporte" + +#: fdmprinter.def.json +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Largura de Extrusão do Suporte" + +#: fdmprinter.def.json +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Malha de Suporte" + +#: fdmprinter.def.json +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Ângulo para Caracterizar Seções Pendentes" + +#: fdmprinter.def.json +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Padrão do Suporte" + +#: fdmprinter.def.json +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Colocação dos Suportes" + +#: fdmprinter.def.json +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Aceleração do Teto de Suporte" + +#: fdmprinter.def.json +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Densidade do Teto de Suporte" + +#: fdmprinter.def.json +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extrusor do Teto do Suporte" + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Fluxo do Teto de Suporte" + +#: fdmprinter.def.json +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Expansão Horizontal do Teto de Suporte" + +#: fdmprinter.def.json +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Jerk do Teto de Suporte" + +#: fdmprinter.def.json +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Direções de Filete do Teto do Suporte" + +#: fdmprinter.def.json +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Distância de Filetes do Teto de Suporte" + +#: fdmprinter.def.json +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Largura de Extrusão do Teto do Suporte" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Padrão de Teto de Suporte" + +#: fdmprinter.def.json +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Velocidade do Teto de Suporte" + +#: fdmprinter.def.json +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Espessura do Topo do Suporte" + +#: fdmprinter.def.json +#, fuzzy +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Contagem de Linhas de Parede de Suporte" + +#: fdmprinter.def.json +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Velocidade do Suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Altura do Passo de Suporte em Escada" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Largura Máxima do Passo de Suporte em Escada" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Ângulo Mínimo de Inclinação do Passo de Suporte em Escada" + +#: fdmprinter.def.json +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Estrutura de Suporte" + +#: fdmprinter.def.json +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Distância Superior do Suporte" + +#: fdmprinter.def.json +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Contagem de Linhas de Parede de Suporte" + +#: fdmprinter.def.json +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Distância X/Y do Suporte" + +#: fdmprinter.def.json +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Distância em Z do Suporte" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Velocidade de Ventoinha do Contorno Suportado" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Superfície" + +#: fdmprinter.def.json +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Energia de Superfície" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Modo de Superficie" + +#: fdmprinter.def.json +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Tendência de aderência da superfície." + +#: fdmprinter.def.json +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Energia de superfície." + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + +#: fdmprinter.def.json +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 "Troca quais volumes sobrepondo malhas vão pertencer a cada camada, de modo que as malhas sobrepostas se tornem entrelaçadas. Desligar esta opção vai fazer com que uma das malhas obtenha todo o volume da sobreposiçào, removendo este volume das outras malhas." + +#: fdmprinter.def.json +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 "Trata da distância horizontal entre duas camadas adjacentes. Reduzir este ajuste faz com que camadas mais finas sejam usadas para reunir as bordas das camadas mais perto uma da outra." + +#: fdmprinter.def.json +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 de onde achar a parte com que começar a imprimir cada camada." + +#: fdmprinter.def.json +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 onde iniciar a impressão de cada parte em uma camada." + +#: fdmprinter.def.json +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 bico faz a purga no início da impressão." + +#: fdmprinter.def.json +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 próxima de onde achar a parte com que começar a imprimir cada camada." + +#: fdmprinter.def.json +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 onde iniciar a impressão de cada parte em uma camada." + +#: fdmprinter.def.json +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 bico faz a purga no início da impressão." + +#: fdmprinter.def.json +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 da posição onde o bico faz a purga no início da impressão." + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "Aceleração durante a impressão da camada inicial." + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Aceleração para a camada inicial." + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Aceleração para percursos na camada inicial." + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "A mudança instantânea máxima de velocidade em uma direção nos percursos da camada inicial." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "A aceleração com que o preenchimento é impresso." + +#: fdmprinter.def.json +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "A aceleração com que o recurso de passar a ferro é feito." + +#: fdmprinter.def.json +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Aceleração com que se realiza a impressão." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Aceleração com que se imprime o preenchimento dos suportes." + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "A aceleração com que a camada intermediária do raft é impressa." + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "Aceleração com que se imprime a parede exterior." + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "Aceleração com que a torre de purga é impressa." + +#: fdmprinter.def.json +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "A aceleração com que o raft é impresso." + +#: fdmprinter.def.json +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 tetos e bases de suporte são impressos. Imprimi-los em aceleração menor pode melhorar a qualidade das seções pendentes." + +#: fdmprinter.def.json +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 tetos de suporte são impressos. Imprimi-los em aceleração menor pode melhorar a qualidade das seções pendentes." + +#: fdmprinter.def.json +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 "Aceleração com a qual o skirt e o brim são impressos. Normalmente isto é feito com a aceleração de camada inicial, mas às vezes você pode querer imprimir o skirt ou brim em uma aceleração diferente." + +#: fdmprinter.def.json +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Aceleração com que as estruturas de suporte são impressas." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Aceleração com que se imprimem as paredes." + +#: fdmprinter.def.json +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "A aceleração com a qual as camadas da superfície superior são impressas." + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Aceleração com que as camadas superiores e inferiores são impressas." + +#: fdmprinter.def.json +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Aceleração com que se realizam os percursos." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 extrusores. Coloque em 0 para não haver retração. Isto deve geralmente ser o mesmo que o comprimento da zona de aquecimento do hotend." + +#: fdmprinter.def.json +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 o plano horizontal e a parte cônica logo acima da ponta do bico." + +#: fdmprinter.def.json +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 do Teto (parte superior) de uma torre. Um valor maior resulta em tetos pontiagudos, um valor menor resulta em tetos achatados." + +#: fdmprinter.def.json +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 de seção pendente das paredes externas criadas para o molde. 0° fará a superfície externa do molde vertical, enquanto 90° fará a superfície externa do molde seguir o contorno do modelo." + +#: fdmprinter.def.json +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 galhos enquanto se tornam gradualmente mais grossos na direção da base. Um ângulo de 0 fará com que os galhos tenham grossura uniforme no seu comrpimento. Um ângulo levemente maior que zero pode aumentar a estabilidade do suporte em árvore." + +#: fdmprinter.def.json +msgctxt "support_tree_angle description" +msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "Ô angulo dos galhos. Use um ângulo menor para torná-los mais verticais e mais estáveis. Use um ângulo maior para aumentar o alcance." + +#: fdmprinter.def.json +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. Como 0 graus sendo vertical e 90 graus sendo horizontal. Ângulos menores farão o suporte ser mais firme, mas gastarão mais material. Ângulos negativos farão a base do suporte mais larga que o topo." + +#: fdmprinter.def.json +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 de uma camada. Note que os pontos originais do polígono são descartados, portanto uma densidade baixa resulta da redução de resolução." + +#: fdmprinter.def.json +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. Note que os pontos originais do polígono são descartados, portanto umo alto alisamento resulta em redução da resolução. Este valor deve ser maior que a metade da Espessura do Contorno Felpudo." + +#: fdmprinter.def.json +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "A aceleração default a ser usada nos eixos para o movimento da cabeça de impressão." + +#: fdmprinter.def.json +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 default usada para a impressão. Esta deve ser a temperatura \"base\" de um material. Todas as outras temperaturas de impressão devem usar diferenças baseadas neste valor" + +#: fdmprinter.def.json +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 default usada para a plataforma aquecida de impressão. Este valor deve ser a temperatura \"base\" da plataforma. Todas as outras temperaturas de impressão devem usar diferenças baseadas neste valor" + +#: fdmprinter.def.json +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 de contorno de ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." + +#: fdmprinter.def.json +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 das bases da estrutura de suporte. Um valor maior resulta em melhor aderência do suporte no topo da superfície." + +#: fdmprinter.def.json +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 tetos da estrutura de suporte. Um valor maior resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." + +#: fdmprinter.def.json +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 de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." + +#: fdmprinter.def.json +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 de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." + +#: fdmprinter.def.json +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "A profundidade (direção Y) da área imprimível." + +#: fdmprinter.def.json +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "O diâmetro da torre especial." + +#: fdmprinter.def.json +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 galhos mais finos do suporte em árvore. Galhos mais grossos são mais resistentes. Galhos na direção da base serão mais grossos que essa medida." + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "O diâmetro da engrenagem que traciona o material no alimentador." + +#: fdmprinter.def.json +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 galhos mais espessos do suporte em árvore. Um tronco mais espesso é mais robusto; um tronco mais fino ocupa menos espaço na plataforma de impressão." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 as linhas do raft para a camada de base do raft. Um espaçamento esparso permite a remoção fácil do raft da mesa." + +#: fdmprinter.def.json +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 as linhas do raft para a camada intermediária. O espaçamento do meio deve ser grande, ao mesmo tempo que deve ser denso o suficiente para suportar as camadas superiores." + +#: fdmprinter.def.json +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 "Distância entre as linhas do raft para as camadas superiores. O espaçamento deve ser igual à largura de linha, de modo que a superfície seja sólida." + +#: fdmprinter.def.json +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 da fronteira entre os modelos para gerar a estrutura de interligação, medida em células. Poucas células resultam em baixa aderência." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +#, 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." + +#: fdmprinter.def.json +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 "Distância da ponta do bico, em que calor do bico é transferido para o filamento." + +#: fdmprinter.def.json +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 com que os contornos inferiores são expandidos para dentro do preenchimento. Valores mais altos fazem o contorno se anexar melhor ao padrão de preenchimento e fazem as paredes da camada abaixo aderirem melhor ao contorno. Valores mais baixos economizam a quantidade de material usado." + +#: fdmprinter.def.json +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 em que os contornos são expandidos pra dentro do preenchimento. Valores mais altos fazem o contorno aderir melhor ao padrão de preenchimento e faz as paredes de camadas vizinhas aderirem melhor ao contorno. Valores menores diminuem a quantidade de material usado." + +#: fdmprinter.def.json +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 com que os contornos superiores são expandidos para dentro do preenchimento. Valores mais altos fazem o contorno se anexar melhor ao padrão de preenchimento e fazem as paredes da camada acima aderirem melhor ao contorno. Valores mais baixos economizam a quantidade de material usado." + +#: fdmprinter.def.json +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "A distância com que mover a cabeça pra frente e pra trás durante a varredura." + +#: fdmprinter.def.json +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 pontas dos filetes de preenchimento são encurtadas para poupar material. Este ajuste é o ângulo da seção pendente das pontas desses filetes." + +#: fdmprinter.def.json +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 "Velocidade adicional pela qual o bico resfria enquanto extruda. O mesmo valor é uso para denotar a velocidade de aquecimento quando se esquenta ao extrudar." + +#: fdmprinter.def.json +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 extrusor a usar para imprimir a primeira camada de preenchimento de suporte. Isto é utilizado em multi-extrusão." + +#: fdmprinter.def.json +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 carro extrusor a ser usado para imprimir a primeira camada do Raft. Isto é usado em multi-extrusão." + +#: fdmprinter.def.json +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 extrusor a usar para imprimir as bases dos suportes. Isto é utilizado em multi-extrusão." + +#: fdmprinter.def.json +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 extrusor a usar para imprimir o preenchimento do suporte. Isto é utilizado em multi-extrusão." + +#: fdmprinter.def.json +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 carro extrusor a ser usado para imprimir a camada central do raft. Isto é usado em multi-extrusão." + +#: fdmprinter.def.json +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 extrusor a usar para imprimir os tetos e bases dos suportes. Isto é utilizado em multi-extrusão." + +#: fdmprinter.def.json +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 extrusor a usar para imprimir o teto do suporte. Isto é utilizado em multi-extrusão." + +#: fdmprinter.def.json +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 carro extrusor a ser usado para imprimir o skirt ou brim. Isto é usado em multi-extrusão." + +#: fdmprinter.def.json +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 extrusor usado ara imprimir skirt, brim ou raft. Usado em multi-extrusão." + +#: fdmprinter.def.json +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir os suportes. Isto é utilizado em multi-extrusão." + +#: fdmprinter.def.json +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 carro extrusor a ser usado para imprimir a(s) camada(s) central(is) do raft. Isto é usado em multi-extrusão." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir a parede externa. Este ajuste é usado em multi-extrusão." + +#: fdmprinter.def.json +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 carro extrusor usado para imprimir as paredes superiores e inferiores. Este ajuste é usado na multi-extrusão." + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir a parte superior da peça. Este ajuste é usado em multi-extrusão." + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir paredes. Este ajuste é usado em multi-extrusão." + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "A velocidade de ventoinha para a camada base do raft." + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "A velocidade de ventoina para a camada intermediária do raft." + +#: fdmprinter.def.json +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "A velocidade da ventoinha para a impressão do raft." + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "A velocidade da ventoinha para as camadas superiores do raft." + +#: fdmprinter.def.json +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 do arquivo de imagem onde os valores de brilho determinam a densidade mínima no local correspondente do preenchimento da impressão." + +#: fdmprinter.def.json +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 do arquivo de imagem onde os valores de brilho determinam a densidade mínima no local correspondente do suporte." + +#: fdmprinter.def.json +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 poucas primeiras camadas são impressas mais devagar que o resto do modelo, para conseguir melhor aderência à mesa e melhorar a taxa de sucesso geral das impressão. A velocidade é gradualmente aumentada entre estas camadas." + +#: fdmprinter.def.json +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 "O vão entre a camada final do raft e a primeira camada do modelo. Somente a primeira camada é elevada por esta distância para enfraquecer a conexão entre o raft e o modelo, tornando mais fácil a remoção do raft." + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "A altura (direção Z) do volume imprimível." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Diferença de altura ao realizar um Salto Z." + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "A diferença de altura ao executar um Salto Z." + +#: fdmprinter.def.json +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 altura das camadas em mm. Valores mais altos produzem impressões mais rápidas em resoluções baixas, valores mais baixos produzem impressão mais lentas em resolução mais alta. Recomenda-se não deixar a altura de camada maior que 80% do diâmetro do bico." + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "A altura do preenchimento de uma dada densidade antes de trocar para a metade desta densidade." + +#: fdmprinter.def.json +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 preenchimento de suporte de dada densidade antes de trocar para metade desta densidade." + +#: fdmprinter.def.json +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 susceptíveis a defeitos." + +#: fdmprinter.def.json +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 das vigas da estrutura de interligação, medidas em número de camadas. Menos camadas são mais fortes, mas mais susceptíveis a defeitos." + +#: fdmprinter.def.json +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 altura da camada inicial em mm. Uma camada inicial mais espessa faz a aderência à mesa de impressão ser maior." + +#: fdmprinter.def.json +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 base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis. Deixe em zero para desligar o comportamento de escada." + +#: fdmprinter.def.json +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 o primeiro filete de brim e o contorno da primeira camada da impressão. Um pequeno vão pode fazer o brim mais fácil de remover sem deixar de prover os benefícios térmicos." + +#: fdmprinter.def.json +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 "" +"A distância horizontal entre o skirt a primeira camada da impressão.\n" +"Esta é a distância mínima. Linhas múltiplas de skirt estenderão além desta distância." + +#: fdmprinter.def.json +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 "Os filetes de preenchimentos são retificados para poupar tempo de impressão. Este é o ângulo máximo de seção pendente permito através do comprimento do filete de preenchimento." + +#: fdmprinter.def.json +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "O padrão de preenchimento é movido por esta distância no eixo X." + +#: fdmprinter.def.json +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "O padrão de preenchimento é movido por esta distância no eixo Y." + +#: fdmprinter.def.json +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 interior do bico (o orifício). Altere este ajuste quanto estiver usando um tamanho de bico fora do padrão." + +#: fdmprinter.def.json +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "O jerk com o qual a camada de base do raft é impressa." + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "O jerk com o qual a camada intermediária do raft é impressa." + +#: fdmprinter.def.json +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "O jerk com o qual o raft é impresso." + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "O jerk com o qual as camadas superiores do raft são impressas." + +#: fdmprinter.def.json +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 maior largura das áreas de contorno inferiores 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 inferiores em superfícies inclinadas do modelo." + +#: fdmprinter.def.json +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 maior largura das áreas de contorno 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 inferiores e superiores em superfícies inclinadas do modelo." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 limite entre a velocidade regular da ventoinha e a máxima. Camadas cuja impressão é mais lenta que este tempo usarão a velocidade regular. Camadas mais rápidas gradualmente aumentarão até a velocidade máxima de ventoinha." + +#: fdmprinter.def.json +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "O comprimento de filamento retornado durante uma retração." + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "O material da plataforma de impressão presente na impressora." + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "A variação de altura máxima permitida para a camada de base." + +#: fdmprinter.def.json +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 de separação máximo que partes da cobertura de escorrimento terão. Com 0 graus sendo na vertical e 90 graus sendo horizontal. Um ângulo menor leva a coberturas de escorrimento falhando menos, mas mais gasto de material." + +#: fdmprinter.def.json +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 de seçọes pendentes depois de se tornarem imprimíveis. Com o valor de 0° todas as seções pendentes serão trocadas por uma parte do modelo conectada à mesa e 90° não mudará o modelo." + +#: fdmprinter.def.json +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 furo na base do modelo antes que seja removido por \"Torna Seções Pendentes Imprimíveis\". Furos com área menor que esta serão retidos. O valor de 0 mm² preenche todos os furos na base do modelo." + +#: fdmprinter.def.json +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 para o ajuste de Máxima Resolução. Se você aumentar isto, a impressão será menos precisa, mas o G-Code será menor. O Desvio Máximo é um limite para Resolução Máxima, portanto se os dois conflitarem o Desvio Máximo sempre será o valor dominante." + +#: fdmprinter.def.json +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 estruturas separadas estão mais próximas que este valor, elas são fundidas em uma só." + +#: fdmprinter.def.json +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 para mover o filamento para compensar mudanças na taxa de fluxo." + +#: fdmprinter.def.json +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 permitido ao remover pontos intermediários de uma linha reta. Um ponto intermediário pode servir como ponto de mudança de largura em uma longa linha reta. Portanto, se ele for removido, fará com que a linha tenha uma largura uniforme e, como resultado, perderá (ou ganhará) um pouco de área de extrusão. Se você aumentar o valor, você poderá perceber uma sutil sobre-extrusão ou sub-extrusão no meio de paredes retas paralelas, já que mais pontos intermediários com espessura variante poderão ser removidos. Sua impressão será menos acurada, mas o G-Code será menor." + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "A mudança instantânea máxima de velocidade em uma direção durante a impressão da camada inicial." + +#: fdmprinter.def.json +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "A mudança instantânea máxima de velocidade em uma direção da cabeça de impressão." + +#: fdmprinter.def.json +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que o recurso de passar a ferro é feito." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que o preenchimento do suporte é impresso." + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que a parede externa é impressa." + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "A mudança instantânea máxima de velocidade em uma direção com que a torre de purga é impressa." + +#: fdmprinter.def.json +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "A máxima mudança de velocidade instantânea com a qual os tetos e bases dos suportes são impressos." + +#: fdmprinter.def.json +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "A máxima mudança de velocidade instantânea com que os tetos dos suportes são impressos." + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "A mudança instantânea máxima de velocidade em uma direção com que o skirt (saia) e brim (bainha) são impressos." + +#: fdmprinter.def.json +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as estruturas de suporte são impressas." + +#: fdmprinter.def.json +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes são impressas." + +#: fdmprinter.def.json +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as camadas da superfície superior são impressas." + +#: fdmprinter.def.json +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as camadas superiores e inferiores são impressas." + +#: fdmprinter.def.json +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "A mudança instantânea máxima de velocidade em uma direção com que os percursos são feitos." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "A velocidade máxima para o motor da impressora na direção X." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "A velocidade máxima para o motor da impressora na direção Y." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "A velocidade máxima para o motor da impressora na direção Z." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "A velocidade máxima de entrada de filamento no hotend." + +#: fdmprinter.def.json +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 passos da base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Velocidade mínima de entrada de filamento no hotend." + +#: fdmprinter.def.json +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 enquanto se esquenta até a Temperatura de Impressão na qual a impressão pode já ser iniciada." + +#: fdmprinter.def.json +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 "Tempo mínimo em que um extrusor precisará estar inativo antes que o bico seja resfriado. Somente quando o extrusor não for usado por um tempo maior que esse, lhe será permitido resfriar até a temperatura de espera." + +#: fdmprinter.def.json +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 de seções pendentes internas para as quais o preenchimento é adicionado. Em um valor de 0°, objetos são completamente preenchidos no padrão escolhido, e 90° torna o volume oco, sem preenchimento." + +#: fdmprinter.def.json +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 de seções pendentes para os quais o suporte é criado. Com o valor de 0° todas as seções pendentes serão suportadas, e 90° não criará nenhum suporte." + +#: fdmprinter.def.json +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 percurso necessária para que uma retração aconteça. Isto ajuda a ter menos retrações em uma área pequena." + +#: fdmprinter.def.json +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 skirt ou brim. Se este comprimento não for cumprido por todas as linhas do skirt ou brim juntas, mais linhas serão adicionadas até que o mínimo comprimento seja alcançado. Se a contagem de linhas estiver em 0, isto é ignorado." + +#: fdmprinter.def.json +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 "A mínima largura de extrusão para paredes multifiletes de preenchimento de vão de filete central. Este ajuste determina em que espessura de modelo nós alternamos de imprimir dois filetes de parede para imprimir duas paredes externas e uma parede central no meio. Uma Largura de Extrusão de Parede Ímpar Mínima mais alta leva a uma largura máxima de extrusão de parede par mais alta. A largura máxima de extrusão de parede ímpar é calculada como 2 * Largura Mínima de Extrusão de Parede Par." + +#: fdmprinter.def.json +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 "A mínima largura de filete para paredes poligonais normais. Este ajuste determina em que espessura do modelo nós alternamos da impressão de um file de parede fina único para a impressão de dois filetes de parede. Uma Largura Mínima de Filete de Parede Par mais alta leva a uma largura máxima de filete de parede ímpar também mais alta. A largura máxima de filete de parede par é calculada como a Largura de Filete da Parede Externa + 0.5 * Largura Mínima de Filete de Parede Ímpar." + +#: fdmprinter.def.json +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, mesmo que se tente desacelerar para obedecer ao tempo mínimo de camada. Quando a impressora desacelera demais, a pressão no bico pode ficar muito baixa, o que resulta em baixa qualidade de impressão." + +#: fdmprinter.def.json +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 de linha após o fatiamento. Se você aumentar este valor, a malha terá uma resolução menor. Isto pode permitir que a impressora mantenha a velocidade que precisa para processar o G-Code e aumentará a velocidade de fatiamento ao remover detalhes da malha que não poderia processar de qualquer jeito." + +#: fdmprinter.def.json +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 linha de percurso após o fatiamento. Se o valor aumenta, os movimentos de percurso terão cantos menos suaves. Isto pode permitir que a impressora mantenha a velocidade necessária para processar o G-Code, mas pode fazer com que evitar topar no modelo fique menos preciso." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 purga de forma a purgar material suficiente." + +#: fdmprinter.def.json +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Nome do seu modelo de impressora 3D." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "O identificador do bico para o carro extrusor, tais como \"AA 0.4\" ou \"BB 0.8\"." + +#: fdmprinter.def.json +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 bico evita partes já impressas quando está em uma percurso. Esta opção está disponível somente quando combing (penteamento) está habilitado." + +#: fdmprinter.def.json +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 bico evita suportes já impressos durante o percurso. Esta opção só está disponível quando combing estiver habilitado." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "O número de camadas de preenchimento que suportam arestas de contorno." + +#: fdmprinter.def.json +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 da plataforma de impressão pra cima. Quanto calculado a partir da espessura inferior, esse valor é arrendado para um número inteiro." + +#: fdmprinter.def.json +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. Isso corresponde à espessura principal do raft. Aumentar este valor cria um raft mais espesso e resistente." + +#: fdmprinter.def.json +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 usada para o brim. Mais linhas de brim melhoram a aderência à mesa, mas também reduzem a área efetiva de impressão." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 da espessura superior, este valor é arredondado para um inteiro." + +#: fdmprinter.def.json +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 da superfície superior. Geralmente somente uma camada é suficiente para gerar superfícies de alta qualidade." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +#, 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." + +#: fdmprinter.def.json +#, 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." + +#: fdmprinter.def.json +#, 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." + +#: fdmprinter.def.json +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 será distribuída. Valores menores significam que as paredes mais externas não mudam de comprimento." + +#: fdmprinter.def.json +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 filetes da parede. Quando calculado pela espessura de parede, este valor é arredondado para um inteiro." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 (estampa) das estruturas de suporte da impressão. As diferentes opções disponíveis resultam em suportes mais resistentes ou mais fáceis de remover." + +#: fdmprinter.def.json +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "O padrão das camadas superiores." + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Padrão ou Estampa das camadas superiores e inferiores." + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "O padrão na base da impressão na primeira camada." + +#: fdmprinter.def.json +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "O padrão a usar quando se passa a ferro as superfícies superiores." + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "O padrão com o qual as bases do suporte são impressas." + +#: fdmprinter.def.json +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Padrão (estampa) com a qual a interface do suporte para o modelo é impressa." + +#: fdmprinter.def.json +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "O padrão com o qual o teto do suporte é impresso." + +#: fdmprinter.def.json +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "A posição perto da qual se inicia a impressão de cada parte em uma camada." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 apresentar antes que lhe seja permitido desengrenar. Para caminhos de extrusão menores, menos pressão é criada dentro do hotend e o volume de desengrenagem é redimensionado linearmente. Este valor deve sempre ser maior que o Volume de Desengrenagem." + +#: fdmprinter.def.json +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 "Velocidade (°C/s) pela qual o bico resfria tirada pela média na janela de temperaturas normais de impressão e temperatura de espera." + +#: fdmprinter.def.json +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 "Velocidade (°C/s) pela qual o bico aquece tirada pela média na janela de temperaturas normais de impressão e temperatura de espera." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Velocidade em que se imprime o preenchimento." + +#: fdmprinter.def.json +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Velocidade em que se realiza a impressão." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 em que as ventoinhas giram no início da impressão. Em camadas subsequentes a velocidade da ventoinha é gradualmente aumentada até a camada correspondente ao ajuste 'Velocidade Regular da Ventoinha na Altura'." + +#: fdmprinter.def.json +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 "Velocidade em que as ventoinhas giram antes de dispararem o limite. Quando uma camada imprime mais rapidamente que o limite de tempo, a velocidade de ventoinha aumenta gradualmente até a velocidade máxima." + +#: fdmprinter.def.json +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 "Velocidade em que as ventoinhas giram no tempo mínimo de camada. A velocidade da ventoinha gradualmente aumenta da regular até a máxima quando o limite é atingido." + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "A velocidade com a qual o filamento é avançado durante o movimento de retração." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "A velocidade com que o filamento é purgado durante um movimento de retração de limpeza." + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "A velocidade em que o filamento é empurrado para a frente depois de uma retração de troca de bico." + +#: fdmprinter.def.json +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "A velocidade com a qual o filamento é recolhido e avançado durante o movimento de retração." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "A velocidade com que o filamento é retraído e purgado durante um movimento de retração de limpeza." + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "A velocidade em que o filamento é retraído durante uma retração de troca de bico." + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "A velocidade com a qual o filamento é recolhido durante o movimento de retração." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "A velocidade com que o filamento é retraído durante um movimento de retração de limpeza." + +#: fdmprinter.def.json +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 em que o filamento é retraído. Uma velocidade de retração mais alta funciona melhor, mas uma velocidade muito alta pode levar a desgaste do filamento." + +#: fdmprinter.def.json +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 em que a base do suporte é impressa. Imprimi-la em velocidade mais baixa pode melhorar a aderência do suporte no topo da superfície." + +#: fdmprinter.def.json +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 em que o preenchimento do suporte é impresso. Imprimir o preenchimento em velocidades menores melhora a estabilidade." + +#: fdmprinter.def.json +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 em que a camada intermediária do raft é impressa. Esta deve ser impressa devagar, já que o volume de material saindo do bico é bem alto." + +#: fdmprinter.def.json +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 em que as paredes mais externas são impressas. Imprimir a parede mais externa a uma velocidade menor melhora a qualidade final do contorno. No entanto, ter uma diferença muito grande entre a velocidade da parede interna e a velocidade da parede externa afetará a qualidade de forma negativa." + +#: fdmprinter.def.json +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 em que a torre de purga é impressa. Imprimir a torre de purga mais lentamente pode torná-la mais estável quando a aderência entre os diferentes filamentos é subótima." + +#: fdmprinter.def.json +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "A velocidade em que as ventoinhas giram." + +#: fdmprinter.def.json +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "A velocidade em que o raft é impresso." + +#: fdmprinter.def.json +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 com que os tetos e bases do suporte são impressos. Imprimi-los em velocidades mais baixas pode melhorar a qualidade de seções pendentes." + +#: fdmprinter.def.json +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 em que os tetos dos suportes são impressos. Imprimi-los em velocidade mais baixas pode melhorar a qualidade de seções pendentes." + +#: fdmprinter.def.json +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 "Velocidade em que o Brim (Bainha) e Skirt (Saia) são impressos. Normalmente isto é feito na velocidade de camada inicial, mas você pode querer imprimi-los em velocidade diferente." + +#: fdmprinter.def.json +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 em que a estrutura de suporte é impressa. Imprimir o suporte a velocidades mais altas pode reduzir bastante o tempo de impressão. A qualidade de superfície das estruturas de suporte não é importante já que são removidas após a impressão." + +#: fdmprinter.def.json +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 em que as camadas superiores do raft são impressas. Elas devem ser impressas um pouco mais devagar, de modo que o bico possa lentamente alisar as linhas de superfície adjacentes." + +#: fdmprinter.def.json +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 em que o movimento Z vertical é feito para os saltos Z. Tipicamente mais baixa que a velocidade de impressão já que mover a mesa de impressão ou eixos da máquina é mais difícil." + +#: fdmprinter.def.json +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Velocidade em que se imprimem as paredes." + +#: fdmprinter.def.json +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "A velocidade com a qual o ajuste de passar ferro é aplicado sobre a superfície superior." + +#: fdmprinter.def.json +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "A velocidade com a qual retrair o filamento para que se destaque completamente." + +#: fdmprinter.def.json +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "A velocidade com que as camadas superiores são impressas." + +#: fdmprinter.def.json +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Velocidade em que as camadas superiores e inferiores são impressas." + +#: fdmprinter.def.json +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Velocidade em que ocorrem os movimentos de percurso." + +#: fdmprinter.def.json +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 pela qual se mover durante a desengrenagem, relativa à velocidade do caminho de extrusão. Um valor ligeiramente menor que 100% é sugerido, já que durante a desengrenagem a pressão dentro do hotend cai." + +#: fdmprinter.def.json +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 para a camada inicial. Um valor menor é sugerido para melhorar aderência à mesa de impressão. Não afeta as estruturas de aderência à mesa de impressão como o brim e o raft." + +#: fdmprinter.def.json +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 para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão." + +#: fdmprinter.def.json +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 percursos da camada inicial. Um valor mais baixo que o normal é aconselhado para prevenir o puxão de partes impressas da mesa de impressão. O valor deste ajuste pode ser automaticamente calculado do raio entre a Velocidade de Percurso e a Velocidade de Impressão." + +#: fdmprinter.def.json +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "A temperatura em que o filamento é destacado completamente." + +#: fdmprinter.def.json +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 em que imprimir. Se este valor for 0, a temperatura de volume de impressão não será ajustada." + +#: fdmprinter.def.json +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "A temperatura do bico quando outro bico está sendo usado para a impressão." + +#: fdmprinter.def.json +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 para a qual se deve começar a esfriar pouco antes do fim da impressão." + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +msgstr "A temperatura usada para imprimir a primeira camada. Coloque 0 para desabilitar processamento especial da camada inicial." + +#: fdmprinter.def.json +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "A temperatura usada para impressão." + +#: fdmprinter.def.json +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 usada para a plataforma aquecida de impressão na primeira camada. Se for 0, a plataforma de impressão não será aquecida durante a primeira camada." + +#: fdmprinter.def.json +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 usada para a plataforma aquecida de impressão. Se for 0, a plataforma de impressão não será aquecida." + +#: fdmprinter.def.json +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 usada para purgar material, deve ser grosso modo a temperatura de impressão mais alta possível." + +#: fdmprinter.def.json +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 das camadas inferiores da impressão. Este valor dividido pela altura de camada define o número de camadas inferiores." + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "A espessura do preenchimento extra que suporta arestas de contorno." + +#: fdmprinter.def.json +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 do suporte onde ele toca o modelo na base ou no topo." + +#: fdmprinter.def.json +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 das bases de suporte. Isto controla o número de camadas densas que são impressas no topo dos pontos do modelo em que o suporte se assenta." + +#: fdmprinter.def.json +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 do topo do suporte. Isto controla a quantidade de camadas densas no topo do suporte em que o modelo se assenta." + +#: fdmprinter.def.json +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 das camadas superiores da impressão. Este valor dividido pela altura de camada define o número de camadas superiores." + +#: fdmprinter.def.json +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 das camadas superiores e inferiores da impressão. Este valor dividido pela altura de camada define o número de camadas superiores e inferiores." + +#: fdmprinter.def.json +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 pela largura de extrusão da parede define o número de filetes da parede." + +#: fdmprinter.def.json +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 preenchimento. Este valor deve sempre ser um múltiplo da altura de camada e se não for, é arredondado." + +#: fdmprinter.def.json +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 do material de preenchimento de suporte. Este valor deve sempre ser um múltiplo da altura de camada e é arredondado." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "O tipo de G-Code a ser gerado." + +#: fdmprinter.def.json +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Volume que seria escorrido. Este valor deve em geral estar perto do diâmetro do bico ao cubo." + +#: fdmprinter.def.json +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "A largura (direção X) da área imprimível." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +#, fuzzy +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "A largura da torre de purga." + +#: fdmprinter.def.json +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "A largura da torre de purga." + +#: fdmprinter.def.json +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 "A largura dentro da qual flutuar. É sugerido deixar este valor abaixo da largura da parede externa, já que as paredes internas não são alteradas pelo algoritmo." + +#: fdmprinter.def.json +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 "A janela em que a contagem de retrações máxima é válida. Este valor deve ser aproximadamente o mesmo que a distância de retração, de modo que efetivamente o número de vez que a retração passa pelo mesmo segmento de material é limitada." + +#: fdmprinter.def.json +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 purga." + +#: fdmprinter.def.json +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 purga." + +#: fdmprinter.def.json +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Há malhas de suporte presentes na cena. Este ajuste é controlado pelo Cura." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 quanto os cantos internos do contorno do raft são arredondados. Esses cantos internos são convertidos em semicírculos com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que forem menores que o círculo equivalente." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 criará uma parede em volta do modelo que aprisiona ar quente da mesa e protege contra fluxo de ar do exterior. Especialmente útil para materiais que sofrem bastante warp e impressoras 3D que não são cobertas." + +#: fdmprinter.def.json +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 pelo encolhimento do material enquanto ele esfria, o modelo será ampliado por este fator na direção XY (horizontalmente)." + +#: fdmprinter.def.json +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 pelo encolhimento do material enquanto esfria, o modelo será ampliado por este fator na direção Z (verticalmente)." + +#: fdmprinter.def.json +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 o encolhimento do material enquanto esfria, o modelo será redimensionado por este fator." + +#: fdmprinter.def.json +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Camadas Superiores" + +#: fdmprinter.def.json +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Distância de Expansão do Contorno Superior" + +#: fdmprinter.def.json +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Largura de Remoção do Contorno Superior" + +#: fdmprinter.def.json +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Aceleração da Superfície Superior" + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Extrusor da Superfície Superior" + +#: fdmprinter.def.json +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Fluxo do Contorno da Superfície Superior" + +#: fdmprinter.def.json +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Jerk da Superfície Superior" + +#: fdmprinter.def.json +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Camadas da Superfície Superior" + +#: fdmprinter.def.json +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Direções dos Filetes da Superfície Superior" + +#: fdmprinter.def.json +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Largura de extrusão da Superfície Superior" + +#: fdmprinter.def.json +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Padrão da Superfície Superior" + +#: fdmprinter.def.json +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Velocidade da Superfície Superior" + +#: fdmprinter.def.json +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Espessura Superior" + +#: fdmprinter.def.json +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 "Superfícies superiores e/ou inferiores de seu objeto com um ângulo maior que este ajuste não terão seu contorno expandido. Isto permite evitar a expansão de áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação quase vertical. Um ângulo de 0° é horizontal e não causará expansão no contorno, enquanto que um ângulo de 90° é vertical e causará expansão em todo o contorno." + +#: fdmprinter.def.json +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Superior/Inferior" + +#: fdmprinter.def.json +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Superior/Inferior" + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Aceleração Superior/Inferior" + +#: fdmprinter.def.json +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extrusor Superior/Inferior" + +#: fdmprinter.def.json +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Fluxo de Topo/Base" + +#: fdmprinter.def.json +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Jerk Superior/Inferior" + +#: fdmprinter.def.json +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Direções de Linha Superior/Inferior" + +#: fdmprinter.def.json +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Largura de Extrusão Superior/Inferior" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Padrão Superior/Inferior" + +#: fdmprinter.def.json +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Velocidade Superior/Inferior" + +#: fdmprinter.def.json +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Espessura Superior/Inferior" + +#: fdmprinter.def.json +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Tocando a Mesa" + +#: fdmprinter.def.json +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Diâmetro da Torre" + +#: fdmprinter.def.json +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Ângulo do Teto da Torre" + #: fdmprinter.def.json 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 após o carregamento do arquivo." +#: fdmprinter.def.json +msgctxt "travel label" +msgid "Travel" +msgstr "Percurso" + +#: fdmprinter.def.json +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Aceleração de Percurso" + +#: fdmprinter.def.json +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Distância de Desvio de Percurso" + +#: fdmprinter.def.json +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Jerk de Percurso" + +#: fdmprinter.def.json +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Velocidade de Percurso" + +#: fdmprinter.def.json +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 apenas superfície, um volume ou volumes com superfícies soltas. O modo de impressão normal somente imprime volumes fechados. O modo \"superfície\" imprime uma parede única traçando a superfície da malha sem nenhun preenchimento e sem paredes superiores ou inferiores. O modo \"ambos\" imprime volumes fechados como o modo normal e volumes abertos como superfícies." + +#: fdmprinter.def.json +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Árvore" + +#: fdmprinter.def.json +msgctxt "support_tree_angle label" +msgid "Tree Support Branch Angle" +msgstr "Ângulo do Galho do Suporte em Árvore" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter label" +msgid "Tree Support Branch Diameter" +msgstr "Diâmetro de Galho do Suporte em Árvore" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter_angle label" +msgid "Tree Support Branch Diameter Angle" +msgstr "Ângulo do Diâmetro do Galho do Suporte em Árvore" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance label" +msgid "Tree Support Branch Distance" +msgstr "Distância dos Galhos do Suporte em Árvore" + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution label" +msgid "Tree Support Collision Resolution" +msgstr "Resolução de Colisão do Suporte em Árvore" + +#: fdmprinter.def.json +msgctxt "support_tree_max_diameter label" +msgid "Tree Support Trunk Diameter" +msgstr "Diâmetro de Tronco do Suporte em Árvore" + +#: fdmprinter.def.json +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Tri-Hexágono" + +#: fdmprinter.def.json +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Triângulo" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +#: fdmprinter.def.json +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Volumes de Sobreposição de Uniões" + +#: fdmprinter.def.json +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 não-suportadas mais curtas que esta quantia serão impressas usando ajustes normais de paredes. Paredes mais longas serão impressas com os ajustes de parede de ponte." + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Usar Camadas Adaptativas" + +#: fdmprinter.def.json +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Usar Torres" + +#: fdmprinter.def.json +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 "Usar taxa de aceleração separada para movimentos de percurso. Se desabilitado, os movimentos de percurso usarão o valor de aceleração da linha impressa em seu destino." + +#: fdmprinter.def.json +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 "Usar taxa de jerk separada para movimentos de percurso. Se desabilitado, os movimentos de percurso usarão o valor de jerk da linha impressa em seu destino." + +#: fdmprinter.def.json +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 "Usar extrusão relativa ao invés de extrusão absoluta. Passos de extrusão relativos no G-Code tornam o pós-processamento mais fácil. No entanto, isso não é suportado por todas as impressoras e pode produzir pequenos desvios na quantidade de material depositado comparado a passos de extrusão absolutos. Independente deste ajuste, o modo de extrusão sempre será ajustado para absoluto antes que qualquer script G-Code seja processado." + +#: fdmprinter.def.json +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 suporte de pequenas seções pendentes. Essas torres têm um diâmetro mais largo que a região que elas suportam. Perto da seção pendente, o diâmetro das torres aumenta, formando um 'teto'." + +#: fdmprinter.def.json +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 esta malha para modificar o preenchimento de outras malhas com as quais ela se sobrepõe. Substitui regiões de preenchimento de outras malhas com regiões desta malha. É sugerido que se imprima com somente uma parede e sem paredes superiores e inferiores para esta malha." + +#: fdmprinter.def.json +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Use esta malha para especificar áreas obrigatoriamente suportadas. Isto será usado para gerar estruturas de suporte." + +#: fdmprinter.def.json +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 "Use esta malha para especificar onde nenhuma parte do modelo deverá ser detectada como seção Pendente e por conseguinte não elegível a receber suporte. Com esta malha sobreposta a um modelo, você poderá marcar onde ele não deverá receber suporte." + +#: fdmprinter.def.json +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Especificado pelo Usuário" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Compensação de Fator de Encolhimento Vertical" + +#: fdmprinter.def.json +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 das camadas fatiadas. Os contornos de uma camada são normalmente gerados se tomando seções cruzadas pelo meio de cada espessura de camada (Meio). Alternativamente, cada camada pode ter as áreas que caem fora do volume por toda a espessura da camada (Exclusivo) ou a camada pode ter as áreas que caem dentro de qualquer lugar dentro da camada (Inclusivo). Inclusivo retém mais detalhes, Exclusivo proporciona o melhor encaixe e Meio permanece mais próximo da superfície original." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Aguardar o Aquecimento da Mesa" + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Aguardar Aquecimento do Bico" + +#: fdmprinter.def.json +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Aceleração da Parede" + +#: fdmprinter.def.json +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Contagem de Distribuição de Parede" + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Extrusor das Paredes" + +#: fdmprinter.def.json +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Fluxo de Parede" + +#: fdmprinter.def.json +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Jerk da Parede" + +#: fdmprinter.def.json +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Número de Filetes da Parede" + +#: fdmprinter.def.json +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Largura de Extrusão da Parede" + +#: fdmprinter.def.json +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Ordem de Parede" + +#: fdmprinter.def.json +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Velocidade da Parede" + +#: fdmprinter.def.json +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Espessura de Parede" + +#: fdmprinter.def.json +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Comprimento de Transição de Parede" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Distância de Filtro da Transição de Parede" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Margem de Filtro de Transição de Parede" + +#: fdmprinter.def.json +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Ângulo-Limite de Transição de Parede" + +#: fdmprinter.def.json +msgctxt "shell label" +msgid "Walls" +msgstr "Paredes" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 habilitado, a ordem em que os filetes de preenchimento são impressos é otimizada para reduzir a distância percorrida. A redução em tempo de percurso conseguida depende bastante do modelo sendo fatiado, do padrão de preenchimento, da densidade, etc. Note que, para alguns modelos que têm áreas bem pequenas de preenchimento, o tempo de fatiamento pode ser aumentado bastante." + +#: fdmprinter.def.json +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 habilitado, a velocidade da ventoinha de resfriamento é alterada para as regiões de contorno imediatamente acima do suporte." + +#: fdmprinter.def.json +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 habilitado, as coordenadas da costura Z são relativas ao centro de cada parte. Quando desabilitado, as coordenadas definem uma posição absoluta na plataforma de impressão." + +#: fdmprinter.def.json +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 "Quando maior que zero, os movimentos de percurso de combing que forem maiores que essa distância usarão retração. Se deixado em zero, não haverá máximo e os movimentos de combing não usarão retração." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 regiões de contorno de ponte, a quantidade de material extrudado é multiplicada por este valor." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 de contorno da ponte, a quantidade de material é multiplicada por este valor." + +#: fdmprinter.def.json +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 acaba sendo usada por causa do tempo mínimo de camada, levanta a cabeça para longe da impressão e espera tempo extra até que o tempo mínimo de camada seja alcançado." + +#: fdmprinter.def.json +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 pequenas lacunas verticais de apenas umas poucas camadas, normalmente há contorno em volta dessas camadas no espaço estreito. Habilite este ajuste para não gerar o contorno se a lacuna vertical for bem pequena. Isso melhora o tempo de impressão e fatiamento, mas tecnicamente deixa preenchimento exposto ao ar." + +#: fdmprinter.def.json +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 "Quanto criar transições entre números de paredes pares e ímpares. A forma de cunha em ângulo maior que este ajuste não terá transições e nenhuma parede será impressa no centro para preencher o espaço remanescente. Reduzir este ajuste faz reduzir o número e comprimento das paredes centrais, mas pode deixar vãos ou sobre-extrudar." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 uma retração é feita, sobe-se um pouco em Z para criar um espaço entre o bico e a impressão. Isso evita que o bico fique batendo nas impressões durante o percurso, reduzindo a chance de chutar a peça para fora da mesa." + +#: fdmprinter.def.json +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 "Decide se a distância XY substitui a distância Z de suporte ou vice-versa. Quando XY substitui Z a distância XY pode afastar o suporte do modelo, influenciando a distância Z real até a seção pendente. Podemos desabilitar isso não aplicando a distância XY em volta das seções pendentes." + +#: fdmprinter.def.json +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 "Decide se as coordenadas X/Y da posição zero da impressão estão no centro da área imprimível (senão, estarão no canto inferior esquerdo)." + +#: fdmprinter.def.json +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 "Decide se o endstop do eixo X está na direção positiva (coordenada X alta) ou negativa (coordenada X baixa)." + +#: fdmprinter.def.json +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 "Decide se o endstop do eixo Y está na direção positiva (coordenada Y alta) ou negativa (coordenada Y baixa)." + +#: fdmprinter.def.json +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 "Decide se o endstop do eixo Z está na direção positiva (coordenada Z alta) ou negativa (coordenada Z baixa)." + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Decide se os extrusores usam um único aquecedor combinado ou cada um tem o seu respectivo aquecedor." + +#: fdmprinter.def.json +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 "Decide se os extrusores compartilham um único bico ao invés de cada extrusor ter seu próprio. Quando colocado em verdadeiro, é esperado que o script g-code de início da impressora configure todos os extrusores em um estado inicial de retração que seja conhecido e mutuamente compatível (ou zero ou filamento não retraído); neste caso, o status de retração inicial é descrito, por extrusor, pelo parâmetro 'machine_extruders_shared_nozzle_initial_retraction'." + +#: fdmprinter.def.json +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Decide se a plataforma de impressão pode ser aquecida." + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Decide se a máquina consegue estabilizar a temperatura do volume de construção." + +#: fdmprinter.def.json +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 "Decide se o objeto deve ser centralizado no meio da plataforma de impressão, ao invés de usar o sistema de coordenadas em que o objeto foi salvo." + +#: fdmprinter.def.json +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 "Decide se a temperatura deve ser controlada pelo Cura. Desligue para controlar a temperatura do bico fora do Cura." + +#: fdmprinter.def.json +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 "Decide se haverá a inclusão de comandos de temperatura da mesa de impressão no início do G-Code. Quando o G-Code Inicial já contiver comandos de temperatura da mesa, a interface do Cura automaticamente desabilitará este ajuste." + +#: fdmprinter.def.json +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 "Decide se haverá a inclusão de comandos de temperatura do bico no início do G-Code. Quando o G-Code Inicial já contiver comandos de temperatura do bico, a interface do Cura automaticamente desabilitará este ajuste." + +#: fdmprinter.def.json +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 "Decide se haverá inclusão de G-Code de limpeza de bico entre camadas (no máximo 1 por camada). Habilitar este ajuste pode influenciar o comportamento de retração na mudança de camada. Por favor use ajustes de Retração de Limpeza para controlar retração nas camadas onde o script de limpeza estará atuando." + +#: fdmprinter.def.json +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 "Decide se haverá inserção do comando para aguardar que a temperatura-alvo da mesa de impressão estabilize no início." + +#: fdmprinter.def.json +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 "Decide se é preciso descarregar o filamento com uma massa de purga antes de imprimir. Ligar este ajuste assegurará que o extrusor tenha material pronto no bico antes de imprimir. Imprimir um Brim ou Skirt pode funcionar como purga também, em cujo caso desligar esse ajuste faz ganhar algum tempo." + +#: fdmprinter.def.json +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 "Decide se os modelos devem ser impressos todos de uma vez só, uma camada por vez, ou se se deve esperar a cada modelo terminar antes de prosseguir para o próximo. O modo um de cada vez só é possível se a) somente um extrusor estiver habilitado e b) todos os modelos estiverem separados de modo que a cabeça de impressão pode se mover entre todos e todos os modelos estiverem em altura mais baixa que a distância entre o bico e os eixos X e Y." + +#: fdmprinter.def.json +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Decide se deseja exibir as variantes desta máquina, que são descrita em arquivos .json separados." + +#: fdmprinter.def.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 "Decide se serão usados comandos de retração de firmware (G10/G11) ao invés da propriedade E dos comandos G1 para retrair o material." + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Decide se haverá a inserção do comando para aguardar que a temperatura-alvo do bico estabilize no início." + +#: fdmprinter.def.json +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Largura de um filete de preenchimento." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Largura de uma única linha de filete extrudado. Geralmente, a largura da linha corresponde ao diâmetro do bico. No entanto, reduzir ligeiramente este valor pode produzir impressões melhores." + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Largura de um filete usado na torre de purga." + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Largura de um filete do brim (bainha) ou skirt (saia)." + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Largura de um filete usado na base do suporte." + +#: fdmprinter.def.json +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Largura de um filete usado no teto do suporte." + +#: fdmprinter.def.json +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Largura de um filete usado nas estruturas de suporte." + +#: fdmprinter.def.json +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Largura de extrusão dos filetes das paredes do topo e base dos modelos." + +#: fdmprinter.def.json +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Largura de extrusão das paredes internas (todas menos a mais externa)." + +#: fdmprinter.def.json +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Largura de um filete que faz parte de uma parede." + +#: fdmprinter.def.json +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 "Largura das linhas na camada de base do raft. Devem ser grossas para auxiliar na aderência à mesa." + +#: fdmprinter.def.json +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 "Largura das linhas na camada intermediária do raft. Fazer a segunda camada extrudar mais faz as linhas grudarem melhor na mesa." + +#: fdmprinter.def.json +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 "Largura das linhas na superfície superior do raft. Estas podem ser linhas finas de modo que o topo do raft fique liso." + +#: fdmprinter.def.json +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 "Largura de Extrusão somente da parede mais externa do modelo. Diminuindo este valor, níveis de detalhes mais altos podem ser impressos." + +#: fdmprinter.def.json +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 "Largura da parede que substituirá detalhes finos (de acordo com o Tamanho Mínimo de Detalhe) do modelo. Se a Largura Mínima de Filete de Parede for mais fina que a espessura do detalhe, a parede se tornará tão espessa quanto o próprio detalhe." + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Posição X da Varredura de Limpeza" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Velocidade do Salto de Limpeza" + +#: fdmprinter.def.json +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Limpar Bico Inativo na Torre de Purga" + +#: fdmprinter.def.json +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Distância de Movimentação da Limpeza" + +#: fdmprinter.def.json +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Limpar o Bico Entre Camadas" + +#: fdmprinter.def.json +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Pausa de Limpeza" + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Contagem de Repetições de Limpeza" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Distância de Retração da Limpeza" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Habilitar Retração de Limpeza" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Quantidade Extra de Purga da Retração de Limpeza" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Velocidade de Purga da Retração de Limpeza" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Velocidade da Retração da Retração de Limpeza" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Velocidade da Retração de Limpeza" + +#: fdmprinter.def.json +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Salto Z da Limpeza" + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Altura do Salto Z da Limpeza" + +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Dentro do Preenchimento" + +#: fdmprinter.def.json +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 "Escreve a ferramenta ativa depois de enviar comandos de temperatura para a ferramenta inativa. Requerido para impressão de Extrusor Duplo com Smoothie ou outros firmwares com comandos modais de ferramenta." + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Endstop X na Direção Positiva" + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "Localização X onde o script de limpeza iniciará." + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y substitui Z" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Endstop Y na Direção Positiva" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Endstop Z na Direção Positiva" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Salto Z Após Troca de Extrusor" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Salto Z Após Troca de Altura do Extrusor" + +#: fdmprinter.def.json +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Altura do Salto Z" + +#: fdmprinter.def.json +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Salto Z Somente Sobre Partes Impressas" + +#: fdmprinter.def.json +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Velocidade do Salto Z" + +#: fdmprinter.def.json +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Salto Z Ao Retrair" + +#: fdmprinter.def.json +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Alinhamento da Costura em Z" + +#: fdmprinter.def.json +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Posição da Costura Z" + +#: fdmprinter.def.json +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Costura Z Relativa" + +#: fdmprinter.def.json +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Coordenada X da Costura Z" + +#: fdmprinter.def.json +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Coordenada Y da Costura Z" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z substitui X/Y" + +#: fdmprinter.def.json +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +#: fdmprinter.def.json +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +#: fdmprinter.def.json +msgctxt "travel description" +msgid "travel" +msgstr "percurso" + +#~ msgctxt "machine_head_polygon description" +#~ msgid "A 2D silhouette of the print head (fan caps excluded)." +#~ msgstr "Uma silhueta 2D da cabeça de impressão (sem os suportes de ventoinhas)." + #~ msgctxt "machine_head_with_fans_polygon description" #~ msgid "A 2D silhouette of the print head (fan caps included)." #~ msgstr "Silhueta da cabeça de impressão com os suportes de ventoinhas inclusos." -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Paredes exteriores antes das interiores" +#~ msgctxt "spaghetti_infill_extra_volume description" +#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." +#~ msgstr "Um termo de correção para ajustar o volume total sendo extrudado a cada vez que se preencher com estilo espaguete." -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Imprime as paredes em ordem de fora para dentro quando habilitado. Isto pode ajudar a melhorar a acurácia dimensional e X e Y quando se usa um plástico de alta viscosidade como ABS; no entanto pode também diminuir a qualidade de impressão da superfície externa, especialmente em seções pendentes." +#~ msgctxt "sub_div_rad_mult description" +#~ msgid "A multiplier on 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 more subdivisions, i.e. more small cubes." +#~ msgstr "Um multiplicador do raio do centro de cada cubo para verificar a borda do modelo, de modo a decidir se este cubo deve ser subdividido. Valores maiores levam a maiores subdivisões, isto é, mais cubos pequenos." + +#~ msgctxt "adaptive_layer_height_threshold label" +#~ msgid "Adaptive Layers Threshold" +#~ msgstr "Limite das Camadas Adaptativas" + +#~ msgctxt "adaptive_layer_height_variation label" +#~ msgid "Adaptive layers maximum variation" +#~ msgstr "Variação máxima das camadas adaptativas" + +#~ msgctxt "adaptive_layer_height_threshold label" +#~ msgid "Adaptive layers threshold" +#~ msgstr "Limite das camadas adaptativas" + +#~ msgctxt "adaptive_layer_height_variation_step label" +#~ msgid "Adaptive layers variation step size" +#~ msgstr "Tamanho de passo da variação das camadas adaptativas" + +#~ msgctxt "wall_add_middle_threshold label" +#~ msgid "Add Middle Line Threshold" +#~ msgstr "Adicionar Limite de Filete Central" + +#~ msgctxt "support_interface_density description" +#~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +#~ msgstr "Ajusta a densidade dos topos e bases das estruturas de suporte. Um valor mais alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." + +#~ msgctxt "spaghetti_flow description" +#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." +#~ msgstr "Ajusta a densidade do preenchimento espaguete. Note que a Densidade de Preenchimento controla somente o espaçamento entre linhas do padrão de preenchimento, não a quantidade de extrusão para o preenchimento espaguete." + +#~ msgctxt "dual_pre_wipe description" +#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." +#~ msgstr "Depois de trocar extrusores, limpar o material escorrendo do bico na primeira peça impressa. Isso causa um movimento lento de limpeza do bico em um lugar onde o material escorrido causa o menor dano à qualidade de superfície da sua impressão." + +#~ msgctxt "material_bed_temp_wait label" +#~ msgid "Aguardar o aquecimento da mesa de impressão" +#~ msgstr "Esperar a que la placa de impresión se caliente" + +#~ msgctxt "cross_infill_apply_pockets_alternatingly label" +#~ msgid "Alternate Cross 3D Pockets" +#~ msgstr "Bolso Alternados de Cruzado 3D" + +#~ msgctxt "skin_alternate_rotation label" +#~ msgid "Alternate Skin Rotation" +#~ msgstr "Alterna a Rotação do Contorno" + +#~ msgctxt "skin_alternate_rotation description" +#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." +#~ msgstr "Alterna a direção em que as camadas superiores e inferiores são impressas. Normalmente elas são impressas somente na diagonal. Este ajuste permite direções somente no X e somente no Y." + +#~ msgctxt "prime_tower_purge_volume description" +#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." +#~ msgstr "Quantidade de filamento a ser purgado na torre de purga. A purga é útil para compensar filamento perdido por escorrimento durante inatividade do bico." + +#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" +#~ msgid "Apply the extruder offset to the coordinate system." +#~ msgstr "Aplicar o deslocamento do extrusor ao sistema de coordenadas." + +#~ msgctxt "material_flow_dependent_temperature label" +#~ msgid "Auto Temperature" +#~ msgstr "Temperatura Automática" + +#~ msgctxt "z_seam_type option back" +#~ msgid "Back" +#~ msgstr "Costas" + +#~ msgctxt "bridge_wall_max_overhang label" +#~ msgid "Bridge Wall Max Overhang" +#~ msgstr "Seção Pendente Máxima da Parede de Ponte" + +#~ msgctxt "machine_shape label" +#~ msgid "Build plate shape" +#~ msgstr "Forma da mesa de impressão" + +#~ msgctxt "center_object label" +#~ msgid "Center object" +#~ msgstr "Centralizar Objeto" + +#~ msgctxt "material_flow_dependent_temperature description" +#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." +#~ msgstr "Troca a temperatura para cada camada automaticamente de acordo com a velocidade média de fluxo desta camada." + +#~ msgctxt "prime_tower_circular label" +#~ msgid "Circular Prime Tower" +#~ msgstr "Torre de Purga Circular" + +#~ 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 and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." +#~ msgstr "O Combing (penteamento) mantém o bico dentro de áreas já impressas durante os percursos. Isto resulta em movimentações um pouco mais amplas mas reduz a necessidade de retrações. Se o combing for desligado, o material sofrerá retração e o bico se moverá em linha reta ao próximo ponto. É também possível evitar combing sobre áreas de contorno de topo e base e ainda só fazer combing no preenchimento. Note que a opção 'Dentro do Preenchimento' se comporta exatamente como a 'Não no Contorno' em versões anteriores do Cura." + +#~ 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 by combing within the infill only." +#~ msgstr "O Combing, ou penteamento, mantém o bico dentro de áreas já impressas se movimenta. Isso resulta em percursos ligeiramente mais longos mas reduz a necessidade de retrações. Se o penteamento estiver desligado, o material sofrerá retração e o bico se moverá em linha reta para o próximo ponto. É também possível evitar o penteamento em área de contornos superiores e inferiores habilitando o penteamento no preenchimento somente." + +#~ msgctxt "wireframe_strategy option compensate" +#~ msgid "Compensate" +#~ msgstr "Compensar" + +#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" +#~ msgid "Compensate Inner Wall Overlaps" +#~ msgstr "Compensar Sobreposições da Parede Interna" + +#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" +#~ msgid "Compensate Outer Wall Overlaps" +#~ msgstr "Compensar Sobreposições de Parede Externa" #~ msgctxt "travel_compensate_overlapping_walls_enabled label" #~ msgid "Compensate Wall Overlaps" @@ -6682,37 +6690,201 @@ msgstr "Matriz de transformação a ser aplicada ao modelo após o carregamento #~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." #~ msgstr "Compensa o fluxo para partes de uma parede sendo impressa onde já há outra parede." -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Compensar Sobreposições de Parede Externa" +#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" +#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." +#~ msgstr "Compensa o fluxo para partes de uma parede interna sendo impressa onde já há outra parede." #~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" #~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." #~ msgstr "Compensa o fluxo para partes de uma parede externa sendo impressa onde já há outra parede." -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Compensar Sobreposições da Parede Interna" +#~ msgctxt "infill_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Compensa o fluxo para partes de uma parede interna sendo impressa onde já há outra parede." +#~ msgctxt "support_bottom_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Mínimo Fluxo da Parede" +#~ msgctxt "support_interface_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "Mínima porcentagem de fluxo permite para um filete de parede. A compensação de sobreposição de parede reduz o fluxo de uma parede quando ela está próxima a outra já impressa. Paredes cujo fluxo seja menor que este valor serão trocadas por um momento de percurso. Ao usar este ajuste, você deve habilitar a compensação de sobreposição de paredes e imprimir as paredes externas antes das internas." +#~ msgctxt "support_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Preferir Retração" +#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Se usado, a retração é usada ao invés de combing para movimentos de percurso que substituem paredes cujo fluxo estiver abaixo do limite mínimo." +#~ msgctxt "zig_zaggify_infill description" +#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +#~ msgstr "Conecta as extremidades onde o padrão de preenchimento se encontra com a parede interna usando linhas que seguem a forma dessa parede. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduz os efeitos do preenchimento na qualidade das superfícies verticais. Desabilitar este ajuste reduz a quantidade de material usado." + +#~ 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 happend midway over infill this feature can reduce the top surface quality." +#~ msgstr "Conectar camihos de contorno do topo e base onde se situarem próximos. Habilitar para o padrão concêntrico reduzirá bastante o tempo de percurso, mas visto que as conexões podem acontecer sobre o preenchimento no meio do caminho, este recurso 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." +#~ msgstr "Controla se cantos no contorno do modelo influenciam a posição da costura. Nenhum significa que cantos não têm influência na posição da costura. Esconder Costura torna mais provável que ela ocorra em um canto interior. Expor Costura torna mais provável que ela ocorra em um canto exterior. Esconder ou Expor Costura torna mais provável que ocorra em um canto, externo ou externo." + +#~ msgctxt "machine_nozzle_cool_down_speed label" +#~ msgid "Cool down speed" +#~ msgstr "Velocidade de resfriamento" + +#~ msgctxt "wireframe_top_jump description" +#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." +#~ msgstr "Cria um pequeno 'nódulo' ou 'nó' no topo do filete ascendente de tal modo que a camada horizontal consecutiva tem melhor chance de se conectar ao filete. Somente se aplica à Impressão em Arame." + +#~ msgctxt "sub_div_rad_mult label" +#~ msgid "Cubic Subdivision Radius" +#~ msgstr "Raio de Subdivisão Cúbica" + +#~ msgctxt "wireframe_bottom_delay description" +#~ msgid "Delay time after a downward move. Only applies to Wire Printing." +#~ msgstr "Tempo de espera depois de um movimento descendente tal que o filete possa se solidificar. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_top_delay description" +#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." +#~ msgstr "Tempo de espera depois de um movimento ascendente tal que o filete ascendente possa se solidifcar. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_flat_delay description" +#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." +#~ msgstr "Tempo de espera entre dois segmentos horizontais. Inserir tal espera pode ocasionar melhor aderência a camadas prévias nos pontos de conexão, mas atrasos muito longos podem causar estruturas murchas. Somente se aplica à Impressão em Arame." + +#~ 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." +#~ msgstr "Determina em que ordem as paredes são impressas. Imprimir parede mais externas antes ajuda com acurácia dimensional, já que falhas das paredes mais internas não se propagam para o exterior. No entanto imprimi-las depois permite melhor empilhamento quando seções pendentes são impressas." + +#~ 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 lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "Determina a prioridade desta malha ao considerar múltiplas malhas de preenchimento sobrepostas. Áreas onde elas se sobrepõem terão as configurações da malha com o menor número. Uma malha de prenchimento de ordem maior modificará o preenchimento das malhas de preenchimento com as malhas de ordem mais baixa e normais." + +#~ msgctxt "infill_mesh_order description" +#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "Determina a prioridade desta malha ao se considerar volumes sobrepostos. Áread onde múltiplas malhas residem serão ganhas pela malha com menor número. Uma malha de preenchimento com maior ordem modificará o preenchimento das malhas de preenchimento com malhas de ordem normal e menor." + +#~ msgctxt "infill_mesh_order description" +#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "Determina que malha de preenchimento está dentro do preenchimento de outra malha de preenchimento. Uma malha de preenchimento com ordem mais alta modificará o preenchimento de malhas de preenchimento com ordem mais baixa e malhas normais." + +#~ msgctxt "machine_disallowed_areas label" +#~ msgid "Disallowed areas" +#~ msgstr "Áreas proibidas" + +#~ msgctxt "wireframe_nozzle_clearance description" +#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." +#~ msgstr "Distância entre o bico e os filetes descendentes horizontais. Espaços livres maiores resultarão em filetes descendentes diagonais com ângulo menos acentuado, o que por sua vez resulta em menos conexões ascendentes à próxima camada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "support_interface_line_distance description" +#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." +#~ msgstr "Distância entre as linhas impressas da interface de suporte. Este ajuste é calculado pela Densidade de Interface de Suporte, mas pode ser ajustado separadamente." + +#~ 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. This value is rounded down to a multiple of the layer height." +#~ msgstr "Distância do topo/base da estrutura de suporte à impressão. Este vão provê o espaço para remover os suportes depois do modelo ser impresso. Este valor é arredondando para um múltiplo da altura de camada." + +#~ msgctxt "wireframe_up_half_speed description" +#~ msgid "" +#~ "Distance of an upward move which is extruded with half speed.\n" +#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." +#~ msgstr "" +#~ "Distância de um movimento ascendente que é extrudado com metade da velocidade.\n" +#~ "Isto pode resultar em melhor aderência às camadas prévias, ao mesmo tempo em que não aquece demais essas camadas. Somente se aplica à Impressão em Arame." + +#~ msgctxt "support_xy_distance_overhang description" +#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " +#~ msgstr "Distância da estrutura de suporte até a seção pendente nas direções X/Y. " + +#~ msgctxt "wireframe_fall_down description" +#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Distância na qual o material desaba após uma extrusão ascendente. Esta distância é compensada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_drag_along description" +#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Distância na qual o material de uma extrusão ascendente é arrastado com a extrusão descendente diagonal. Esta distância é compensada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "multiple_mesh_overlap label" +#~ msgid "Dual Extrusion Overlap" +#~ msgstr "Sobreposição de Extrusão Dual" + +#~ msgctxt "support_enable label" +#~ msgid "Enable Support" +#~ msgstr "Habilitar Suportes" + +#~ msgctxt "support_enable description" +#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." +#~ msgstr "Habilita as estruturas de suporte. Essas estruturas apóiam partes do modelo que tenham seções pendentes." + +#~ msgctxt "machine_end_gcode label" +#~ msgid "End GCode" +#~ msgstr "G-Code Final" + +#~ msgctxt "material_end_of_filament_purge_length label" +#~ msgid "End Of Filament Purge Length" +#~ msgstr "Comprimento de Purga de Fim de Filamento" + +#~ msgctxt "material_end_of_filament_purge_speed label" +#~ msgid "End Of Filament Purge Speed" +#~ msgstr "Velocidade de Purga de Fim de Filamento" + +#~ msgctxt "speed_equalize_flow_enabled label" +#~ msgid "Equalize Filament Flow" +#~ msgstr "Equalizar Fluxo de Filamento" + +#~ msgctxt "fill_perimeter_gaps option everywhere" +#~ msgid "Everywhere" +#~ msgstr "Em todos os lugares" + +#~ msgctxt "expand_lower_skins label" +#~ msgid "Expand Bottom Skins Into Infill" +#~ msgstr "Expande Contorno da Base Para Preenchimento" + +#~ msgctxt "expand_lower_skins label" +#~ msgid "Expand Lower Skins" +#~ msgstr "Expandir Contornos Inferiores" + +#~ msgctxt "expand_skins_into_infill label" +#~ msgid "Expand Skins Into Infill" +#~ msgstr "Expandir Contorno Para Preenchimento" + +#~ msgctxt "expand_upper_skins label" +#~ msgid "Expand Top Skins Into Infill" +#~ msgstr "Expandir Contorno do Topo Para Preenchimento" + +#~ msgctxt "expand_upper_skins label" +#~ msgid "Expand Upper Skins" +#~ msgstr "Expandir Contornos Superiores" + +#~ msgctxt "expand_lower_skins description" +#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." +#~ msgstr "Expandir as áreas de contorno inferiores (áreas com ar abaixo) de modo que fiquem ancoradas pelas camadas de preenchimento acima e abaixo." + +#~ msgctxt "expand_skins_into_infill description" +#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." +#~ msgstr "Expandir áreas de perímetro das partes superiores e inferiores de superfícies chatas. Por default, o perímetro para sob as paredes que rodeiam o preenchimento mas isso pode fazer com que buracos apareçam caso a densidade de preenchimento seja baixa. Este ajuste estenda os perímetros além das linhas de parede de modo que o preenchimento da próxima camada fique em cima de perímetros." + +#~ msgctxt "expand_lower_skins description" +#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." +#~ msgstr "Expande as áreas de perímetro da base (áreas com ar abaixo delas) de modo que se ancorem nas camadas de preenchimento embaixo e acima." + +#~ msgctxt "expand_upper_skins description" +#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." +#~ msgstr "Expande as áreas de perímetro do topo (áreas com ar acima delas) de modo que suportem o preenchimento de cima." + +#~ msgctxt "expand_upper_skins description" +#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." +#~ msgstr "Expandir as áreas de contorno superiores (áreas com ar acima) de modo que suportem o preenchimento acima." + +#~ msgctxt "support_conical_enabled description" +#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." +#~ msgstr "Recurso experimental: Faz as áreas de suporte menores na base que na seção pendente." + +#~ msgctxt "machine_filament_park_distance label" +#~ msgid "Filament Park Distance" +#~ msgstr "Distância de Descanso do Filamento" #~ msgctxt "fill_perimeter_gaps label" #~ msgid "Fill Gaps Between Walls" @@ -6722,14 +6894,6 @@ msgstr "Matriz de transformação a ser aplicada ao modelo após o carregamento #~ msgid "Fills the gaps between walls where no walls fit." #~ msgstr "Preenche as lacunas que ficam entre paredes quando paredes intermediárias não caberiam." -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Em lugar nenhum" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Em todos os lugares" - #~ msgctxt "filter_out_tiny_gaps label" #~ msgid "Filter Out Tiny Gaps" #~ msgstr "Filtrar Pequenas Lacunas" @@ -6738,187 +6902,179 @@ msgstr "Matriz de transformação a ser aplicada ao modelo após o carregamento #~ msgid "Filter out tiny gaps to reduce blobs on outside of model." #~ msgstr "Filtrar (rempver) pequenas lacunas para reduzir bolhas no exterior do modelo." -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Equalizar Fluxo de Filamento" +#~ msgctxt "small_feature_speed_factor_0 label" +#~ msgid "First Layer Speed" +#~ msgstr "Velocidade da Primeira Camada" -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Imprime filetes mais finos que o normal mais rapidamente de modo que a quantidade de material extrudado por segundo se mantenha o mesmo. Partes pequenas em seu modelo podem exigir filetes impressos com largura menor que as providas nos ajustes. Este ajuste controla as mudanças de velocidade para tais filetes." +#~ msgctxt "wireframe_flow_connection description" +#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." +#~ msgstr "Compensação de Fluxo quanto subindo ou descendo. Somente se aplica à Impressão em Arame." -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Velocidade Máxima para Equalização de Fluxo" +#~ msgctxt "wireframe_flow_flat description" +#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." +#~ msgstr "Compensação de fluxo ao imprimir filetes planos. Somente se aplica à Impressão em Arame." -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "Velocidade máxima de impressão no ajuste de velocidades para equalizar o fluxo." +#~ msgctxt "prime_tower_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." +#~ msgstr "Compensação de Fluxo: a quantidade de material extrudado é multiplicado por este valor." -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Velocidade Máxima de Alimentação" +#~ msgctxt "wireframe_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." +#~ msgstr "Compensação de fluxo: a quantidade de material extrudado é multiplicado por este valor. Somente se aplica à Impressão em Arame." -#~ 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 (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ 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 o 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 impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam em cada camada para prover uma distribuição mais uniforme de força em cada direção. O preenchimento de relâmpago tenta minimizar o material suportando apenas os tetos (internos) do objeto. Como tal, a porcentagem de preenchimento somente é 'válida' uma camada abaixo do que quer que seja que ela precise para suportar o modelo." +#~ msgctxt "flow_rate_extrusion_offset_factor label" +#~ msgid "Flow rate compensation factor" +#~ msgstr "Fator de compensaçõ de taxa de fluxo" -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a poda das extremidades externas das árvores. Medido em ângulo de acordo com a espessura." +#~ msgctxt "flow_rate_max_extrusion_offset label" +#~ msgid "Flow rate compensation max extrusion offset" +#~ msgstr "Deslocamento de extrusão máxima da compensação de taxa de fluxo" -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a suavização de árvores. Medido em ângulo de acordo com a espessura." +#~ msgctxt "machine_gcode_flavor label" +#~ msgid "G-code Flavour" +#~ msgstr "Sabor de G-Code" -#~ 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." -#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague mudam de direção em camadas alternadas, reduzindo o custo do material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos em totalidade a cada camada. Os padrões giróide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição mais igualitária de força em cada direção." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "A distância mínima entre o exterior do molde e do modelo." - -#~ msgctxt "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "Quantos passos do motor de passo resultarão em um milímetro de extrusão." - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "Quando não-zero, os movimentos de percurso de combing que são maiores que esta distância usarão retração." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Aplicar o deslocamento do extrusor ao sistema de coordenadas." - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Perímetro" - -#~ 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, while an angle of 90° is vertical." -#~ msgstr "Superfícies Superiores e/ou Inferiores de seu objeto com um ângulo maior que este ajuste não terão seus contornos superior/inferior expandidos. Isto evita que expandam as áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação praticamente vertical. Um ângulo de 0° é horizontal, um ângulo de 90° é vertical." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "A velocidade para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão." - -#~ 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 lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina a prioridade desta malha ao considerar múltiplas malhas de preenchimento sobrepostas. Áreas onde elas se sobrepõem terão as configurações da malha com o menor número. Uma malha de prenchimento de ordem maior modificará o preenchimento das malhas de preenchimento com as malhas de ordem mais baixa e normais." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "A temperatura usada para a plataforma de impressão aquecida. Se for 0, a temperatura da mesa não será ajustada." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "A temperatura usada para a mesa aquecida na primeira camada." - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Raio de Contração" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "Raio de contração do material em porcentagem." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina a prioridade desta malha ao se considerar volumes sobrepostos. Áread onde múltiplas malhas residem serão ganhas pela malha com menor número. Uma malha de preenchimento com maior ordem modificará o preenchimento das malhas de preenchimento com malhas de ordem normal e menor." - -#~ 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 "Opção que dz se se imprime todos os modelos uma camada por vez, ou se se espera que cada um termine para ir para o próximo. Modo um de cada vez é possível se a) somente um extrusor estiver habilitado e b) todos os modelos estiverem separados de maneira que a cabeça de impressão possa se mover entre eles e todos os modelos forem mais baixos que a distância entre o bico e os eixos X/Y." - -#~ msgctxt "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Order das Malhas de Preenchimento" - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina que malha de preenchimento está dentro do preenchimento de outra malha de preenchimento. Uma malha de preenchimento com ordem mais alta modificará o preenchimento de malhas de preenchimento com ordem mais baixa e malhas normais." - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Suporte de Árvore" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Gera um suporte em árvore com galhos que apóiam sua impressão. Isto pode reduzir uso de material e tempo de impressão, mas aumenta bastante o tempo de fatiamento." - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "Como fatiar camadas com superfícies diagonais. As áreas de uma camada podem ser geradas baseadas em onde o meio da camada interseciona a superfície (Meio). Alternativamente, cada camada pode ter as áreas que se encontram dentro do volume por toda a altura da camada (Exclusivo) ou a camada pode abranger todas as áreas que tenham qualquer penetração dentro do volume (Inclusivo). Exclusivo retém mais detalhes, Inclusivo é melhor para encaixes e Meio toma menos tempo para processar." - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Preenchimento em Espaguete" - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Imprime o preenchimento intermitentemente de modo que o filamento se enrole caoticamente dentro do objeto. Isto reduz o tempo de impressão, mas tem comportamento bem imprevisível." - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Passos do Preenchimento de Espaguete" - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Opção para ou se imprimir o preenchimento espaguete em passos discretos ou extrudar todo o filamento de preenchimento no final da impressão." - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Ângulo de Preenchimento Máximo do Espaguete" - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "O ângulo máximo em relação ao Z do interior da impressão para áreas que serão preenchidas com espaguete no final. Abaixar este valor faz com que mais partes anguladas do seu modelo sejam preenchidas a cada camada." - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Altura Máxima do Preenchimento Espaguete" - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "A altura máxima do espaço interior que pode ser combinado e preenchido a partir do topo." - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Penetração do Espaguete" - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "O deslocamento a partir das paredes de onde o preenchimento espaguete será impresso." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Fluxo de Espaguete" - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Ajusta a densidade do preenchimento espaguete. Note que a Densidade de Preenchimento controla somente o espaçamento entre linhas do padrão de preenchimento, não a quantidade de extrusão para o preenchimento espaguete." - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Volume Extra do Preenchimento Espaguete" - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Um termo de correção para ajustar o volume total sendo extrudado a cada vez que se preencher com estilo espaguete." +#~ msgctxt "machine_gcode_flavor label" +#~ msgid "G-code flavour" +#~ msgstr "Sabor de G-Code" #~ msgctxt "material_guid description" #~ msgid "GUID of the material. This is set automatically. " #~ msgstr "GUID do material. Este valor é ajustado automaticamente. " -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Distância de Descanso do Filamento" +#~ msgctxt "gantry_height label" +#~ msgid "Gantry height" +#~ msgstr "Altura do eixo" -#~ msgctxt "machine_filament_park_distance description" -#~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used." -#~ msgstr "Distância da ponta do bico onde 'estacionar' o filamento quando seu extrusor não estiver sendo usado." +#~ msgctxt "machine_end_gcode description" +#~ msgid "" +#~ "Gcode commands to be executed at the very end - separated by \n" +#~ "." +#~ msgstr "" +#~ "Comandos de G-Code a serem executados no fim da impressão - separados por \n" +#~ "." -#~ msgctxt "material_flush_purge_speed description" +#~ msgctxt "machine_start_gcode description" +#~ msgid "" +#~ "Gcode commands to be executed at the very start - separated by \n" +#~ "." +#~ msgstr "" +#~ "Comandos de G-Code a serem executados durante o início da impressão - separados por \n" +#~ "." + +#~ msgctxt "machine_gcode_flavor label" +#~ msgid "Gcode flavour" +#~ msgstr "Tipo de G-Code" + +#~ msgctxt "support_tree_enable description" +#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." +#~ msgstr "Gera um suporte em árvore com galhos que apóiam sua impressão. Isto pode reduzir uso de material e tempo de impressão, mas aumenta bastante o tempo de fatiamento." + +#~ msgctxt "ironing_enabled description" +#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." +#~ msgstr "Passar sobre a superfície superior depois de impressa, mas sem extrudar material. A idéia é derreter o plástico do topo ainda mais, criando uma superfície mais lisa." + +#~ msgctxt "machine_heated_bed label" +#~ msgid "Has heated build plate" +#~ msgstr "Tem mesa de impressã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 "infill_hollow label" +#~ msgid "Hollow Out Objects" +#~ msgstr "Tornar Objetos Ocos" + +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "Quantos passos do motor de passo resultarão em um milímetro de extrusão." + +#~ msgctxt "slicing_tolerance description" +#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." +#~ msgstr "Como fatiar camadas com superfícies diagonais. As áreas de uma camada podem ser geradas baseadas em onde o meio da camada interseciona a superfície (Meio). Alternativamente, cada camada pode ter as áreas que se encontram dentro do volume por toda a altura da camada (Exclusivo) ou a camada pode abranger todas as áreas que tenham qualquer penetração dentro do volume (Inclusivo). Exclusivo retém mais detalhes, Inclusivo é melhor para encaixes e Meio toma menos tempo para processar." + +#~ msgctxt "wall_min_flow_retract description" +#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +#~ msgstr "Se usado, a retração é usada ao invés de combing para movimentos de percurso que substituem paredes cujo fluxo estiver abaixo do limite mínimo." + +#~ msgctxt "skin_no_small_gaps_heuristic label" +#~ msgid "Ignore Small Z Gaps" +#~ msgstr "Ignorar Pequenas Lacunas em Z" + +#~ msgctxt "start_layers_at_same_position description" +#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." +#~ msgstr "Em cada camada iniciar imprimindo o objeto próximo ao mesmo ponto, de modo que não comecemos uma nova camada quando imprimir a peça com que a camada anterior terminou. Isso permite seções pendentes e partes pequenas melhores, mas aumenta o tempo de impressão." + +#~ msgctxt "material_bed_temp_prepend label" +#~ msgid "Include build plate temperature" +#~ msgstr "Incluir temperatura da mesa de impressão" + +#~ msgctxt "material_print_temp_prepend label" +#~ msgid "Include material temperatures" +#~ msgstr "Incluir temperaturas dos materiais" + +#~ msgctxt "infill_mesh_order label" +#~ msgid "Infill Mesh Order" +#~ msgstr "Order das Malhas de Preenchimento" + +#~ msgctxt "z_offset_layer_0 label" +#~ msgid "Initial Layer Z Offset" +#~ msgstr "Deslocamento em Z da Camada Inicial" + +#~ msgctxt "wall_x_extruder_nr label" +#~ msgid "Inner Walls Extruder" +#~ msgstr "Extrusor das Paredes Internas" + +#~ msgctxt "machine_center_is_zero label" +#~ msgid "Is center origin" +#~ msgstr "A origem está no centro" + +#~ msgctxt "wireframe_strategy option knot" +#~ msgid "Knot" +#~ msgstr "Nó" + +#~ msgctxt "limit_support_retractions label" +#~ msgid "Limit Support Retractions" +#~ msgstr "Limitar Retrações de Suporte" + +#~ msgctxt "machine_head_polygon label" +#~ msgid "Machine Head Polygon" +#~ msgstr "Polígono Da Cabeça da Máquina" + +#~ msgctxt "machine_depth label" +#~ msgid "Machine depth" +#~ msgstr "Profundidada da mesa" + +#~ msgctxt "machine_head_with_fans_polygon label" +#~ msgid "Machine head & Fan polygon" +#~ msgstr "Polígono da cabeça da máquina e da ventoinha" + +#~ msgctxt "machine_head_polygon label" +#~ msgid "Machine head polygon" +#~ msgstr "Polígono da cabeça da máquina" + +#~ msgctxt "machine_height label" +#~ msgid "Machine height" +#~ msgstr "Altura do volume de impressão" + +#~ msgctxt "machine_width label" +#~ msgid "Machine width" +#~ msgstr "Largura da mesa" + +#~ msgctxt "prime_tower_circular description" +#~ msgid "Make the prime tower as a circular shape." +#~ msgstr "Faz a torre de purga na forma circular." + +#~ msgctxt "material_end_of_filament_purge_length description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "material_end_of_filament_purge_speed description" #~ msgid "Material Station internal value" #~ msgstr "Valor interno da Estação de Material" @@ -6926,19 +7082,7 @@ msgstr "Matriz de transformação a ser aplicada ao modelo após o carregamento #~ msgid "Material Station internal value" #~ msgstr "Valor interno da Estação de Material" -#~ msgctxt "material_end_of_filament_purge_speed label" -#~ msgid "End Of Filament Purge Speed" -#~ msgstr "Velocidade de Purga de Fim de Filamento" - -#~ msgctxt "material_end_of_filament_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_end_of_filament_purge_length label" -#~ msgid "End Of Filament Purge Length" -#~ msgstr "Comprimento de Purga de Fim de Filamento" - -#~ msgctxt "material_end_of_filament_purge_length description" +#~ msgctxt "material_flush_purge_speed description" #~ msgid "Material Station internal value" #~ msgstr "Valor interno da Estação de Material" @@ -6950,401 +7094,25 @@ msgstr "Matriz de transformação a ser aplicada ao modelo após o carregamento #~ msgid "Material Station internal value" #~ msgstr "Valor interno da Estação de Material" -#~ msgctxt "retraction_enable description" -#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " -#~ msgstr "Retrai o filamento quando o bico está se movendo sobre uma área não impressa. " +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "Velocidade Máxima de Alimentação" -#~ msgctxt "support_xy_distance_overhang description" -#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " -#~ msgstr "Distância da estrutura de suporte até a seção pendente nas direções X/Y. " - -#~ msgctxt "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "reparos_de_categoria" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "categoria_blackmagic" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "experimental!" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "Polígono Da Cabeça da Máquina" - -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "Uma silhueta 2D da cabeça de impressão (sem os suportes de ventoinhas)." - -#~ 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 only possible if 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 "Esta opção decide se vocÊ deseja imprimir todos os modelos de uma só vez ou um modelo de cada vez. O modo de um modelo de cada vez só é possível se os modelos estiverem separados de tal forma que a cabeça de impressão possa se mover no meio e todos os modelos sejam mais baixos que a distância entre o bico e os carros X ou Y." - -#~ msgctxt "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "Espessura de Parede do Suporte em Árvore" - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "A espessura das paredes dos galhos do suporte em árvore. Paredes mais espessas tomarão mais tempo pra imprimir mas não tombarão facilmente." - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "Número de Filetes da Parede do Suporte em Árvore" - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "O número de filetes da parede dos galhos do suporte em árvore. Paredes mais espessas tomarão mais tempo pra imprimir mas não tombarão facilmente." - -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. 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 "Incluir ou não o G-Code para movimento de limpeza de bico (wipe) entre camadas. Habilitar este ajuste pode influenciar o comportamento de retração na mudança de camadas. Por favor use os ajustes de Retração de Limpeza para controlar retração nas camadas onde o script de limpeza funcionará." - -#~ msgctxt "max_extrusion_before_wipe description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "Material máximo que pode ser extrudado antes que outra limpeza do bico seja iniciada." - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "Velocidade de Purga da Retração" - -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "Salto Z da Limpeza Quando Retraída" - -#~ msgctxt "wipe_hop_enable 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 uma retração é feita, a posição Z do extrusor é aumentada para aumentar a distância entre o bico e a impressão. Isso evita que o bico bata na impressão durante movimentos de percurso, reduzindo a chance de descolar a impressão da plataforma." - -#~ msgctxt "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Área mínima para polígonos de interface de suporte. Polígonos que tiverem uma área menor que este valor não serão gerados." - -#~ 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 not be generated." -#~ msgstr "Área mínima para os tetos do suporte. Polígonos que tiverem área menor que este valor sã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 not be generated." -#~ msgstr "Área mínima para as bases do suporte. Polígonos que tiverem uma área menor que este valor não serão gerados." - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "Alterna a Rotação do Contorno" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "Alterna a direção em que as camadas superiores e inferiores são impressas. Normalmente elas são impressas somente na diagonal. Este ajuste permite direções somente no X e somente no Y." - -#~ msgctxt "flow_rate_max_extrusion_offset label" -#~ msgid "Flow rate compensation max extrusion offset" -#~ msgstr "Deslocamento de extrusão máxima da compensação de taxa de fluxo" - -#~ msgctxt "flow_rate_max_extrusion_offset description" -#~ msgid "The maximum distance in mm to compensate." -#~ msgstr "A distância máxima em mm a compensar." - -#~ msgctxt "flow_rate_extrusion_offset_factor label" -#~ msgid "Flow rate compensation factor" -#~ msgstr "Fator de compensaçõ de taxa de fluxo" - -#~ msgctxt "flow_rate_extrusion_offset_factor description" -#~ msgid "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "O fator de multiplicação para a tradução entre taxa de fluxo -> distância." - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "Limite das Camadas Adaptativas" - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ msgstr "Limite até onde se usa uma camada menor ou não. Este número é comparado à tangente da ladeira mais vertical da camada." - -#~ 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." -#~ msgstr "Paredes que têm inclinação maior que este ângulo serão impressas usando ajustes de seção pendente de parede. Quando o valor for 90, nenhuma parede será tratada como seção pendente." - -#~ 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 adhestion and accuracy." -#~ msgstr "Pequenos aspectos serão impressos com esta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com aderência e precisão." - -#~ msgctxt "small_feature_speed_factor_0 label" -#~ msgid "First Layer Speed" -#~ msgstr "Velocidade da Primeira Camada" - -#~ 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 adhestion and accuracy." -#~ msgstr "Aspectos pequenos na primeira camada serão impressos nesta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com aderência e precisão." - -#~ msgctxt "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "Passar sobre a superfície superior depois de impressa, mas sem extrudar material. A idéia é derreter o plástico do topo ainda mais, criando uma superfície mais lisa." - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "Iniciar Camadas com a Mesma Parte" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "Em cada camada iniciar imprimindo o objeto próximo ao mesmo ponto, de modo que não comecemos uma nova camada quando imprimir a peça com que a camada anterior terminou. Isso permite seções pendentes e partes pequenas melhores, mas aumenta o tempo de impressão." - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ msgstr "Orientação do padrão de preenchimento para suportes. O padrão de preenchimento do suporte é rotacionado no plano horizontal." - -#~ 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." -#~ msgstr "O valor máximo de desvio permitido ao reduzir a resolução para o ajuste de Resolução Máxima. Se você aumenta este número, a impressão terá menos acuidade, mas o G-Code será menor." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "Sabor de G-Code" - -#~ 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." -#~ msgstr "Controla se cantos no contorno do modelo influenciam a posição da costura. Nenhum significa que cantos não têm influência na posição da costura. Esconder Costura torna mais provável que ela ocorra em um canto interior. Expor Costura torna mais provável que ela ocorra em um canto exterior. Esconder ou Expor Costura torna mais provável que ocorra em um canto, externo ou externo." - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "Ignorar Pequenas Lacunas em Z" - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "Quando o modelo tem pequenas lacunas verticais, aproximadamente 5% de tempo de computação adicional pode ser gasto ao gerar camada externa superior e inferior nestes espaços estreitos. Em tal caso, desabilite este ajuste." - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "A temperatura usada para o volume de construção. Se o valor for zero, a temperatura de volume de impressão não será ajustada." - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." -#~ msgstr "Omitir retrações quando mudar de suporte a suporte em linha reta. Habilitar este ajuste economiza tempo de impressão, mas pode levar a fiapos entremeados à estrutura de suporte." +#~ msgctxt "speed_equalize_flow_max label" +#~ msgid "Maximum Speed for Flow Equalization" +#~ msgstr "Velocidade Máxima para Equalização de Fluxo" #~ msgctxt "max_feedrate_z_override label" #~ msgid "Maximum Z Speed" #~ msgstr "Velocidade Máxima em Z" -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "A velocidade máxima com que o eixo Z é movido. Colocar isto em zero faz com que a impressão use os defaults de firmware para a velocidade máxima de Z." +#~ msgctxt "max_extrusion_before_wipe description" +#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." +#~ msgstr "Material máximo que pode ser extrudado antes que outra limpeza do bico seja iniciada." -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." -#~ msgstr "Distância máxima entre as estruturas de suporte nas direções X/Y. Quando estrutura separadas estão mais perto que este valor, as estruturas são combinadas em uma única." - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "Diâmetro mínimo" - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "Diâmeto mínimo nas direções X/Y de uma área pequena que deverá ser suportada por uma torre de suporte especial." - -#~ msgctxt "prime_tower_circular label" -#~ msgid "Circular Prime Tower" -#~ msgstr "Torre de Purga Circular" - -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "Faz a torre de purga na forma circular." - -#~ msgctxt "prime_tower_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." -#~ msgstr "Compensação de Fluxo: a quantidade de material extrudado é multiplicado por este valor." - -#~ 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 espiralizados para reduzir a visibilidade da costura em Z (esta costura será quase invisível na impressão mas ainda pode ser vista na visão de camadas). Note que suavizar tenderá a remover detalhes finos de superfície." - -#~ msgctxt "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "Recurso experimental: Faz as áreas de suporte menores na base que na seção pendente." - -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "Número de Extrusores habilitados" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "Diametro externo do bico" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "Comprimento do bico" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "Ângulo do bico" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "Comprimento da zona de aquecimento" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "Velocidade de aquecimento" - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "Velocidade de resfriamento" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "Sabor de G-Code" - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "Áreas proibidas" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "Polígono da cabeça da máquina" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "Polígono da cabeça da máquina e da ventoinha" - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "Altura do eixo" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "Deslocamento do Extrusor" - -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "Usar camadas adaptativas" - -#~ msgctxt "adaptive_layer_height_variation label" -#~ msgid "Adaptive layers maximum variation" -#~ msgstr "Variação máxima das camadas adaptativas" - -#~ msgctxt "adaptive_layer_height_variation_step label" -#~ msgid "Adaptive layers variation step size" -#~ msgstr "Tamanho de passo da variação das camadas adaptativas" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "Limite das camadas adaptativas" - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão do contorno. Uma leve sobreposição permite que as paredes se conectem firmemente ao contorno. É uma porcentagem das larguras de extrusão médias das linhas de contorno e a parede mais interna." - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes. Uma leve sobreposição permite às paredes ficarem firmemente aderidas ao contorno." - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 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: coloque em '0' para nenhuma retração. Isto deve geralmente ser o mesmo que o comprimento da zona de aquecimento dentro do hotend." - -#~ 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 and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." -#~ msgstr "O Combing (penteamento) mantém o bico dentro de áreas já impressas durante os percursos. Isto resulta em movimentações um pouco mais amplas mas reduz a necessidade de retrações. Se o combing for desligado, o material sofrerá retração e o bico se moverá em linha reta ao próximo ponto. É também possível evitar combing sobre áreas de contorno de topo e base e ainda só fazer combing no preenchimento. Note que a opção 'Dentro do Preenchimento' se comporta exatamente como a 'Não no Contorno' em versões anteriores do Cura." - -#~ 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 happend midway over infill this feature can reduce the top surface quality." -#~ msgstr "Conectar camihos de contorno do topo e base onde se situarem próximos. Habilitar para o padrão concêntrico reduzirá bastante o tempo de percurso, mas visto que as conexões podem acontecer sobre o preenchimento no meio do caminho, este recurso pode reduzir a qualidade da superfície superior." - -#~ 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. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "O padrão do material de preenchimento da impressão. Preenchimento de Linhas e Ziguezague trocam direções em camadas alternadas, reduzindo custo do material. Os padrões de Grade, Triângulo, Tri-Hexágono, Cúbico, Octeto, Quarto Cúbico, Cruzado e Concêntrico são totalmente impressos em cada camada. Os preenchimentos Cúbico, Quarto Cúbico e Octeto mudam em cada camada para prover uma distribuição mais uniforme de forças em cada direção." - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ 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 by combing within the infill only." -#~ msgstr "O Combing, ou penteamento, mantém o bico dentro de áreas já impressas se movimenta. Isso resulta em percursos ligeiramente mais longos mas reduz a necessidade de retrações. Se o penteamento estiver desligado, o material sofrerá retração e o bico se moverá em linha reta para o próximo ponto. É também possível evitar o penteamento em área de contornos superiores e inferiores habilitando o penteamento no preenchimento somente." - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "Espaçamento de Linhas do Raft" - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "Espessura da Torre de Purga" - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "A espessura da torre de purga (que é oca). Uma espessura maior que a metade do volume mínimo da torre de purga resultará em uma torre de purga densa." - -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "Limpar Bico Depois da Troca" - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "Depois de trocar extrusores, limpar o material escorrendo do bico na primeira peça impressa. Isso causa um movimento lento de limpeza do bico em um lugar onde o material escorrido causa o menor dano à qualidade de superfície da sua impressão." - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "Volume de Purga da Torre de Purga" - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "Quantidade de filamento a ser purgado na torre de purga. A purga é útil para compensar filamento perdido por escorrimento durante inatividade do bico." - -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "Seção Pendente Máxima da Parede de Ponte" - -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ msgstr "O comprimento máximo permitido da região de ar abaixo da linha da parede antes que a parede seja impressa usando ajustes de ponte. Expressado como uma porcentagem da espessura de filete de parede. Quando o vão for mais largo que esta quantia, a parede é impressa usando os ajustes de ponte. Senão, a parede é impressa com os ajustes normais. Quanto menor o valor, mais provável que os filetes da parede sejam impressos com os ajustes de ponte." - -#~ 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." -#~ msgstr "Otimiza a ordem em que paredes são impressas de modo a reduzir o número de retrações e a distância percorrida. A maioria das peças se beneficiarão deste ajuste habilitado mas algumas podem acabar levando mais tempo, portanto por favor compare as estimativas de tempo de impressão com e sem otimização." - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "Evita Contornos" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "Bolso Alternados de Cruzado 3D" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "Somente aplicar bolso em metades dos cruzamentos quádruplos no padrão cruzado 3D e alternar a localização dos bolso entre alturas onde o padrão esteja se tocando." - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "Tornar Objetos Ocos" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "Remove todo o preenchimento e torna o interior oco do objeto elegível a suporte." - -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "A dferença de altura máxima permitida da altura de camada base permitida, em mm." - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ msgstr "Centralizar Objeto" +#~ msgctxt "speed_equalize_flow_max description" +#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." +#~ msgstr "Velocidade máxima de impressão no ajuste de velocidades para equalizar o fluxo." #~ msgctxt "mesh_position_x label" #~ msgid "Mesh position x" @@ -7358,53 +7126,273 @@ msgstr "Matriz de transformação a ser aplicada ao modelo após o carregamento #~ msgid "Mesh position z" #~ msgstr "Posição Z da malha" -#~ msgctxt "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "G-Code Inicial" +#~ msgctxt "support_minimal_diameter label" +#~ msgid "Minimum Diameter" +#~ msgstr "Diâmetro mínimo" -#~ msgctxt "machine_start_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." -#~ msgstr "" -#~ "Comandos de G-Code a serem executados durante o início da impressão - separados por \n" -#~ "." +#~ msgctxt "wall_min_flow label" +#~ msgid "Minimum Wall Flow" +#~ msgstr "Mínimo Fluxo da Parede" -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "G-Code Final" +#~ msgctxt "wall_min_flow description" +#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." +#~ msgstr "Mínima porcentagem de fluxo permite para um filete de parede. A compensação de sobreposição de parede reduz o fluxo de uma parede quando ela está próxima a outra já impressa. Paredes cujo fluxo seja menor que este valor serão trocadas por um momento de percurso. Ao usar este ajuste, você deve habilitar a compensação de sobreposição de paredes e imprimir as paredes externas antes das internas." -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "Comandos de G-Code a serem executados no fim da impressão - separados por \n" -#~ "." +#~ msgctxt "minimum_interface_area description" +#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." +#~ msgstr "Área mínima para polígonos de interface de suporte. Polígonos que tiverem uma área menor que este valor não serão gerados." -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "Tipo de G-Code" +#~ 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 not be generated." +#~ msgstr "Área mínima para as bases do suporte. Polígonos que tiverem uma área menor que este valor não serão gerados." -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "Tipo de G-Code a ser gerado para a impressora." +#~ 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 not be generated." +#~ msgstr "Área mínima para os tetos do suporte. Polígonos que tiverem área menor que este valor são serão gerados." + +#~ msgctxt "support_minimal_diameter description" +#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +#~ msgstr "Diâmeto mínimo nas direções X/Y de uma área pequena que deverá ser suportada por uma torre de suporte especial." + +#~ msgctxt "retraction_combing option noskin" +#~ msgid "No Skin" +#~ msgstr "Evita Contornos" #~ 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 GCode." #~ msgstr "Normalmente o Cura tenta costurar pequenos furos na malha e remover partes de uma camada com grandes furos. Habilitar esta opção mantém aquelas partes que não podem ser costuradas. Este opção deve ser usada somente como uma última alternativa quando tudo o mais falha em produzir G-Code apropriado." -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. 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 Gcode script is output." -#~ msgstr "Usar extrusão relativa ao invés de absoluta. Usar passos de extrusor relativos permite pós-processamento do G-Code mais fácil. No entanto, não é suportado por todas as impressoras e pode produzir desvios bem pequenos na quantidade de material depositado comparado aos passos de extrusor absolutos. Independente deste ajuste, o modo de extrusão sempre será configurado para absoluto antes que qualquer script de G-Code seja escrito." +#~ msgctxt "fill_perimeter_gaps option nowhere" +#~ msgid "Nowhere" +#~ msgstr "Em lugar nenhum" -#~ msgctxt "infill_offset_x description" -#~ msgid "The infill pattern is offset this distance along the X axis." -#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo X." +#~ msgctxt "machine_nozzle_expansion_angle label" +#~ msgid "Nozzle angle" +#~ msgstr "Ângulo do bico" -#~ msgctxt "infill_offset_y description" -#~ msgid "The infill pattern is offset this distance along the Y axis." -#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo Y." +#~ msgctxt "machine_nozzle_head_distance label" +#~ msgid "Nozzle length" +#~ msgstr "Comprimento do bico" + +#~ msgctxt "extruders_enabled_count label" +#~ msgid "Number of Extruders that are enabled" +#~ msgstr "Número de Extrusores habilitados" + +#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" +#~ msgid "Offset With Extruder" +#~ msgstr "Deslocamento do Extrusor" + +#~ msgctxt "limit_support_retractions description" +#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." +#~ msgstr "Omitir retrações quando mudar de suporte a suporte em linha reta. Habilitar este ajuste economiza tempo de impressão, mas pode levar a fiapos entremeados à estrutura de suporte." + +#~ msgctxt "limit_support_retractions description" +#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." +#~ msgstr "Omitir a retração ao mover de suporte a suporte em linha reta. Habilitar este ajuste economiza tempo de impressão, mas pode levar a fiapos excessivos na estrutura de suporte." + +#~ msgctxt "cross_infill_apply_pockets_alternatingly description" +#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." +#~ msgstr "Somente aplicar bolso em metades dos cruzamentos quádruplos no padrão cruzado 3D e alternar a localização dos bolso entre alturas onde o padrão esteja se tocando." + +#~ 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." +#~ msgstr "Otimiza a ordem em que paredes são impressas de modo a reduzir o número de retrações e a distância percorrida. A maioria das peças se beneficiarão deste ajuste habilitado mas algumas podem acabar levando mais tempo, portanto por favor compare as estimativas de tempo de impressão com e sem otimização." + +#~ msgctxt "support_infill_angles description" +#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." +#~ msgstr "Orientação do padrão de preenchimento para suportes. O padrão de preenchimento do suporte é rotacionado no plano horizontal." + +#~ msgctxt "outer_inset_first label" +#~ msgid "Outer Before Inner Walls" +#~ msgstr "Paredes exteriores antes das interiores" + +#~ msgctxt "machine_nozzle_tip_outer_diameter label" +#~ msgid "Outer nozzle diameter" +#~ msgstr "Diametro externo do bico" + +#~ msgctxt "wireframe_straight_before_down description" +#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." +#~ msgstr "Porcentagem de um filete descendente diagonal que é coberto por uma peça de filete horizontal. Isto pode prevenir enfraquecimento do ponto superior das linhas ascendentes. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wall_min_flow_retract label" +#~ msgid "Prefer Retract" +#~ msgstr "Preferir Retração" + +#~ msgctxt "prime_tower_purge_volume label" +#~ msgid "Prime Tower Purge Volume" +#~ msgstr "Volume de Purga da Torre de Purga" + +#~ msgctxt "prime_tower_wall_thickness label" +#~ msgid "Prime Tower Thickness" +#~ msgstr "Espessura da Torre de Purga" + +#~ msgctxt "wireframe_enabled description" +#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." +#~ msgstr "Imprime somente a superfície exterior usando uma estrutura esparsa em forma de teia sem usar as camadas horizontais de impressão, e imprimindo no ar. Isto é feito imprimindo horizontalmente os contornos do modelo em dados intervalos Z que são conectados por filetes diagonais para cima e para baixo." + +#~ msgctxt "spaghetti_infill_enabled description" +#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." +#~ msgstr "Imprime o preenchimento intermitentemente de modo que o filamento se enrole caoticamente dentro do objeto. Isto reduz o tempo de impressão, mas tem comportamento bem imprevisível." + +#~ msgctxt "speed_equalize_flow_enabled description" +#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." +#~ msgstr "Imprime filetes mais finos que o normal mais rapidamente de modo que a quantidade de material extrudado por segundo se mantenha o mesmo. Partes pequenas em seu modelo podem exigir filetes impressos com largura menor que as providas nos ajustes. Este ajuste controla as mudanças de velocidade para tais filetes." + +#~ msgctxt "outer_inset_first description" +#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." +#~ msgstr "Imprime as paredes em ordem de fora para dentro quando habilitado. Isto pode ajudar a melhorar a acurácia dimensional e X e Y quando se usa um plástico de alta viscosidade como ABS; no entanto pode também diminuir a qualidade de impressão da superfície externa, especialmente em seções pendentes." + +#~ msgctxt "raft_base_line_spacing label" +#~ msgid "Raft Line Spacing" +#~ msgstr "Espaçamento de Linhas do Raft" + +#~ msgctxt "infill_hollow description" +#~ msgid "Remove all infill and make the inside of the object eligible for support." +#~ msgstr "Remove todo o preenchimento e torna o interior oco do objeto elegível a suporte." + +#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +#~ msgid "RepRap (Marlin/Sprinter)" +#~ msgstr "RepRap (Marlin/Sprinter)" + +#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" +#~ msgid "RepRap (Volumetric)" +#~ msgstr "RepRap (Volumétrico)" + +#~ msgctxt "wireframe_strategy option retract" +#~ msgid "Retract" +#~ msgstr "Retrair" + +#~ msgctxt "retraction_enable description" +#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " +#~ msgstr "Retrai o filamento quando o bico está se movendo sobre uma área não impressa. " + +#~ msgctxt "wipe_retraction_prime_speed label" +#~ msgid "Retraction Prime Speed" +#~ msgstr "Velocidade de Purga da Retração" + +#~ msgctxt "shell label" +#~ msgid "Shell" +#~ msgstr "Perímetro" + +#~ msgctxt "machine_show_variants label" +#~ msgid "Show machine variants" +#~ msgstr "Mostrar variantes da máquina" + +#~ msgctxt "material_shrinkage_percentage label" +#~ msgid "Shrinkage Ratio" +#~ msgstr "Raio de Contração" + +#~ msgctxt "material_shrinkage_percentage description" +#~ msgid "Shrinkage ratio in percentage." +#~ msgstr "Raio de contração do material em porcentagem." + +#~ msgctxt "support_skip_some_zags label" +#~ msgid "Skip Some ZigZags Connections" +#~ msgstr "Pular Algumas Conexões de Ziguezague" + +#~ msgctxt "support_zag_skip_count description" +#~ msgid "Skip one in every N connection lines to make the support structure easier to break." +#~ msgstr "Pular uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida." + +#~ msgctxt "support_skip_some_zags description" +#~ msgid "Skip some ZigZags connections to make the support structure easier to break." +#~ msgstr "Pula algumas conexões de Ziguezague para fazer a estrutura de suporte mais fácil de ser removida." + +#~ 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 adhestion and accuracy." +#~ msgstr "Aspectos pequenos na primeira camada serão impressos nesta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com 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 adhestion and accuracy." +#~ msgstr "Pequenos aspectos serão impressos com esta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com aderência e precisão." + +#~ 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 espiralizados para reduzir a visibilidade da costura em Z (esta costura será quase invisível na impressão mas ainda pode ser vista na visão de camadas). Note que suavizar tenderá a remover detalhes finos de superfície." + +#~ msgctxt "spaghetti_flow label" +#~ msgid "Spaghetti Flow" +#~ msgstr "Fluxo de Espaguete" + +#~ msgctxt "spaghetti_infill_enabled label" +#~ msgid "Spaghetti Infill" +#~ msgstr "Preenchimento em Espaguete" + +#~ msgctxt "spaghetti_infill_extra_volume label" +#~ msgid "Spaghetti Infill Extra Volume" +#~ msgstr "Volume Extra do Preenchimento Espaguete" + +#~ msgctxt "spaghetti_max_height label" +#~ msgid "Spaghetti Infill Maximum Height" +#~ msgstr "Altura Máxima do Preenchimento Espaguete" + +#~ msgctxt "spaghetti_infill_stepped label" +#~ msgid "Spaghetti Infill Stepping" +#~ msgstr "Passos do Preenchimento de Espaguete" + +#~ msgctxt "spaghetti_inset label" +#~ msgid "Spaghetti Inset" +#~ msgstr "Penetração do Espaguete" + +#~ msgctxt "spaghetti_max_infill_angle label" +#~ msgid "Spaghetti Maximum Infill Angle" +#~ msgstr "Ângulo de Preenchimento Máximo do Espaguete" + +#~ msgctxt "wireframe_printspeed description" +#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." +#~ msgstr "Velocidade com que a cabeça de impressão se move ao extrudar material. Somente se aplica a Impressão em Arame." + +#~ msgctxt "wireframe_printspeed_down description" +#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." +#~ msgstr "Velocidade de impressão dos filetes descendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_printspeed_up description" +#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." +#~ msgstr "Velocidade de impressão dos filetes ascendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_printspeed_bottom description" +#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." +#~ msgstr "Velocidade de Impressão da primeira camada, que é a única camada que toca a mesa. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_printspeed_flat description" +#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." +#~ msgstr "Velocidade de impressão dos contornos horizontais do modelo. Somente se aplica à Impressão em Arame." + +#~ 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 used to be called Joris in older versions." +#~ msgstr "Este modo, também chamado de Modo Vaso ou Joris, transforma a trajetória do filete de plástico de impressão em uma espiral ascendente, com o Z lentamente subindo. Para isso, torna um modelo sólido em uma casca de parede única com a base sólida. Nem toda forma funciona corretamente com o modo vaso." + +#~ msgctxt "wall_split_middle_threshold label" +#~ msgid "Split Middle Line Threshold" +#~ msgstr "Limite de Filete Central Dividido" + +#~ msgctxt "machine_start_gcode label" +#~ msgid "Start GCode" +#~ msgstr "G-Code Inicial" + +#~ msgctxt "start_layers_at_same_position label" +#~ msgid "Start Layers with the Same Part" +#~ msgstr "Iniciar Camadas com a Mesma Parte" + +#~ msgctxt "wireframe_strategy description" +#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." +#~ msgstr "Estratégia para se assegurar que duas camadas consecutivas se conectam a cada ponto de conexão. Retração faz com que os filetes ascendentes se solidifiquem na posição correta, mas pode causar desgaste de filamento. Um nó pode ser feito no fim de um filete ascendentes para aumentar a chance de se conectar a ele e deixar o filete esfriar; no entanto, pode exigir velocidades de impressão lentas. Outra estratégia é compensar pelo enfraquecimento do topo de uma linha ascendente; no entanto, as linhas nem sempre cairão como preditas." + +#~ msgctxt "support_bottom_height label" +#~ msgid "Support Bottom Thickness" +#~ msgstr "Espessura da Base do Suporte" + +#~ msgctxt "support_interface_line_distance label" +#~ msgid "Support Interface Line Distance" +#~ msgstr "Distância entre Linhas da Interface de Suporte" + +#~ msgctxt "infill_pattern option tetrahedral" +#~ msgid "Tetrahedral" +#~ msgstr "Tetraédrico" + +#~ msgctxt "acceleration_support_interface description" +#~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality." +#~ msgstr "Aceleração com que o topo e base dos suportes são impressos. Imprimi-lo a menores acelerações pode aprimorar a qualidade das seções pendentes." #~ msgctxt "infill_overlap description" #~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." @@ -7414,17 +7402,61 @@ msgstr "Matriz de transformação a ser aplicada ao modelo após o carregamento #~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." #~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão. Uma sobreposição leve permite que as paredes se conectem firmemente ao contorno. Este ajuste é uma porcentagem das larguras de extrusão média do contorno e da parede mais interna." -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "A temperatura usada pela mesa aquecida de impressão. Se for 0, a mesa não aquecerá para esta impressão." +#~ msgctxt "skin_overlap description" +#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." +#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão do contorno. Uma leve sobreposição permite que as paredes se conectem firmemente ao contorno. É uma porcentagem das larguras de extrusão médias das linhas de contorno e a parede mais interna." -#~ msgctxt "wall_x_extruder_nr label" -#~ msgid "Inner Walls Extruder" -#~ msgstr "Extrusor das Paredes Internas" +#~ msgctxt "skin_overlap description" +#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." +#~ msgstr "Porcentagem de sobreposição entre o contorno e as paredes. Uma ligeira sobreposição permite às paredes ficarem firmemente aderidas ao contorno." -#~ msgctxt "zig_zaggify_infill description" -#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -#~ msgstr "Conecta as extremidades onde o padrão de preenchimento se encontra com a parede interna usando linhas que seguem a forma dessa parede. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduz os efeitos do preenchimento na qualidade das superfícies verticais. Desabilitar este ajuste reduz a quantidade de material usado." +#~ msgctxt "skin_overlap_mm description" +#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." +#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes. Uma leve sobreposição permite às paredes ficarem firmemente aderidas ao contorno." + +#~ msgctxt "switch_extruder_retraction_amount description" +#~ msgid "The amount of retraction: Set at 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: coloque em '0' para nenhuma retração. Isto deve geralmente ser o mesmo que o comprimento da zona de aquecimento dentro do hotend." + +#~ msgctxt "lightning_infill_prune_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." +#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a poda das extremidades externas das árvores. Medido em ângulo de acordo com a espessura." + +#~ msgctxt "lightning_infill_straightening_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." +#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a suavização de árvores. Medido em ângulo de acordo com a espessura." + +#~ msgctxt "wireframe_roof_inset description" +#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." +#~ msgstr "A distância coberta quando é feita uma conexão do contorno do teto para dentro. Somente se aplica a Impressão em Arame." + +#~ msgctxt "wireframe_roof_drag_along description" +#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "A distância da parte final de um filete para dentro que é arrastada quando o extrusor começa a voltar para o contorno externo do topo. Esta distância é compensada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "expand_skins_expand_distance description" +#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." +#~ msgstr "A distância que os contornos são expandidos para dentro do preenchimento. A distância default é suficiente para ligar o vão entre as linhas de preenchimento e impedirá que buracos apareçam no contorno onde ele encontrar a parede em que a densidade de preenchimento é baixa. Uma distância menor pode ser suficiente." + +#~ msgctxt "wireframe_roof_fall_down description" +#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "A distância em que filetes horizontais do topo impressos no ar caem quando sendo impressos. Esta distância é compensada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "z_offset_layer_0 description" +#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." +#~ msgstr "O extrusor é deslocado da altura normal da primeira camada por esta distância. Pode ser positiva (elevada) ou negativa (abaixada). Alguns tipos de filamento aderem à camada de impressão melhor se o extrusor for elevado ligeiramente." + +#~ msgctxt "support_interface_extruder_nr description" +#~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion." +#~ msgstr "O extrusor a usar para imprimir o topo e base dos suportes. Isto é utilizado em multi-extrusão." + +#~ 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." +#~ msgstr "A altura dos passos da base tipo escada do suporte em cima do modelo. Um valor baixo faz o suporte ser mais difícil de remover, mas valores muito altos podem criar estruturas de suporte instáveis." + +#~ msgctxt "wireframe_height description" +#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." +#~ msgstr "A altura dos filetes diagonais para cima e para baixo entre duas partes horizontais. Isto determina a densidade geral da estrutura em rede. Somente se aplica a Impressão em Arame." #~ msgctxt "skirt_gap description" #~ msgid "" @@ -7434,81 +7466,273 @@ msgstr "Matriz de transformação a ser aplicada ao modelo após o carregamento #~ "A distância horizontal entre o skirt e a primeira camada da impressão.\n" #~ "Esta é a distância mínima; múltiplas linhas de skirt se estenderão pra fora a partir desta distância." -#~ msgctxt "z_offset_layer_0 label" -#~ msgid "Initial Layer Z Offset" -#~ msgstr "Deslocamento em Z da Camada Inicial" +#~ msgctxt "infill_offset_x description" +#~ msgid "The infill pattern is offset this distance along the X axis." +#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo X." -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "O extrusor é deslocado da altura normal da primeira camada por esta distância. Pode ser positiva (elevada) ou negativa (abaixada). Alguns tipos de filamento aderem à camada de impressão melhor se o extrusor for elevado ligeiramente." +#~ msgctxt "infill_offset_y description" +#~ msgid "The infill pattern is offset this distance along the Y axis." +#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo Y." -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Camadas de Amenização do Deslocamento Z" +#~ msgctxt "adaptive_layer_height_variation description" +#~ msgid "The maximum allowed height different from the base layer height in mm." +#~ msgstr "A dferença de altura máxima permitida da altura de camada base permitida, em mm." -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "Quando não for zero, o deslocamento em Z é reduzido a zero depois deste número de camadas. O valor zero significa que o deslocamento em Z permanece constante para todas as camadas da impressão." +#~ msgctxt "bridge_wall_max_overhang description" +#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." +#~ msgstr "O comprimento máximo permitido da região de ar abaixo da linha da parede antes que a parede seja impressa usando ajustes de ponte. Expressado como uma porcentagem da espessura de filete de parede. Quando o vão for mais largo que esta quantia, a parede é impressa usando os ajustes de ponte. Senão, a parede é impressa com os ajustes normais. Quanto menor o valor, mais provável que os filetes da parede sejam impressos com os ajustes de ponte." -#~ msgctxt "raft_smoothing description" -#~ msgid "This setting control 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 quantos cantos interiores no contorno do raft são arredondados. Cantos no sentido interior são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove buracos que sejam menores que tal círculo no contorno do raft." +#~ msgctxt "spaghetti_max_infill_angle description" +#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." +#~ msgstr "O ângulo máximo em relação ao Z do interior da impressão para áreas que serão preenchidas com espaguete no final. Abaixar este valor faz com que mais partes anguladas do seu modelo sejam preenchidas a cada camada." + +#~ 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." +#~ msgstr "O valor máximo de desvio permitido ao reduzir a resolução para o ajuste de Resolução Máxima. Se você aumenta este número, a impressão terá menos acuidade, mas o G-Code será menor." + +#~ msgctxt "support_join_distance description" +#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." +#~ msgstr "Distância máxima entre as estruturas de suporte nas direções X/Y. Quando estrutura separadas estão mais perto que este valor, as estruturas são combinadas em uma única." + +#~ msgctxt "flow_rate_max_extrusion_offset description" +#~ msgid "The maximum distance in mm to compensate." +#~ msgstr "A distância máxima em mm a compensar." + +#~ msgctxt "spaghetti_max_height description" +#~ msgid "The maximum height of inside space which can be combined and filled from the top." +#~ msgstr "A altura máxima do espaço interior que pode ser combinado e preenchido a partir do topo." + +#~ msgctxt "jerk_support_interface description" +#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." +#~ msgstr "A mudança instantânea máxima de velocidade em uma direção com que a base e o topo dos suporte é impresso." + +#~ msgctxt "max_feedrate_z_override description" +#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." +#~ msgstr "A velocidade máxima com que o eixo Z é movido. Colocar isto em zero faz com que a impressão use os defaults de firmware para a velocidade máxima de Z." + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "A distância mínima entre o exterior do molde e do modelo." + +#~ 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 "A largura mínima de filete para as paredes multifiletes de preenchimento de vão de filete central. Este ajuste determina em que espessura de modelo nós alternamos de imprimir dois filetes de parede para imprimir duas paredes externas e uma parede central no centro. Uma Largura Mínima de Filete de Parede Ímpar leva a uma largura máxima de filete de parede par mais alta. A largura máxima de filete de parede par é calculada como 2 * Largura Mínima de Filete de Parede Par." + +#~ msgctxt "flow_rate_extrusion_offset_factor description" +#~ msgid "The multiplication factor for the flow rate -> distance translation." +#~ msgstr "O fator de multiplicação para a tradução entre taxa de fluxo -> distância." + +#~ msgctxt "support_tree_wall_count description" +#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." +#~ msgstr "O número de filetes da parede dos galhos do suporte em árvore. Paredes mais espessas tomarão mais tempo pra imprimir mas não tombarão facilmente." + +#~ msgctxt "spaghetti_inset description" +#~ msgid "The offset from the walls from where the spaghetti infill will be printed." +#~ msgstr "O deslocamento a partir das paredes de onde o preenchimento espaguete será impresso." #~ 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, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." #~ msgstr "Padrão ou estampa 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, cúbico, tetraédrico e concêntrico são totalmente impressos a cada camada. Os padrões cúbico e tetraédrico mudam a cada camada para prover uma distribuição mais igualitária de força para cada direção." -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "Tetraédrico" +#~ 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. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "O padrão do material de preenchimento da impressão. Preenchimento de Linhas e Ziguezague trocam direções em camadas alternadas, reduzindo custo do material. Os padrões de Grade, Triângulo, Tri-Hexágono, Cúbico, Octeto, Quarto Cúbico, Cruzado e Concêntrico são totalmente impressos em cada camada. Os preenchimentos Cúbico, Quarto Cúbico e Octeto mudam em cada camada para prover uma distribuição mais uniforme de forças em cada direção." -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "Expandir Contorno Para Preenchimento" +#~ 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." +#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague mudam de direção em camadas alternadas, reduzindo o custo do material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos em totalidade a cada camada. Os padrões giróide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição mais igualitária de força em cada direção." -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "Expandir áreas de perímetro das partes superiores e inferiores de superfícies chatas. Por default, o perímetro para sob as paredes que rodeiam o preenchimento mas isso pode fazer com que buracos apareçam caso a densidade de preenchimento seja baixa. Este ajuste estenda os perímetros além das linhas de parede de modo que o preenchimento da próxima camada fique em cima de perímetros." +#~ 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 (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." +#~ 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 o 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 impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam em cada camada para prover uma distribuição mais uniforme de força em cada direção. O preenchimento de relâmpago tenta minimizar o material suportando apenas os tetos (internos) do objeto. Como tal, a porcentagem de preenchimento somente é 'válida' uma camada abaixo do que quer que seja que ela precise para suportar o modelo." -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ msgstr "Expandir Contorno do Topo Para Preenchimento" +#~ msgctxt "wall_add_middle_threshold description" +#~ msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." +#~ msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual um filete central (se já não houver algum) será adicionado. Reduza este ajuste para usar mais e e mais finos filetes. Aumente para usar menos, mais largos filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com paredes, portanto o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou contornos na impressão ao invés de paredes." -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "Expande as áreas de perímetro do topo (áreas com ar acima delas) de modo que suportem o preenchimento de cima." +#~ msgctxt "wall_split_middle_threshold description" +#~ msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." +#~ msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual o filete central (se houver algum) será dividido em dois. Reduza este ajuste para usar mais e maiores filetes. Aumente para usar menos e menores filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com parede, dado que o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou (outros) contornos na impressão ao invés de paredes." -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "Expande Contorno da Base Para Preenchimento" +#~ msgctxt "speed_support_interface description" +#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality." +#~ msgstr "A velocidade em que o topo e base dos suportes são impressos. Imprimi-lo a menores velocidade pode melhor a qualidade das seções pendentes." -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Expande as áreas de perímetro da base (áreas com ar abaixo delas) de modo que se ancorem nas camadas de preenchimento embaixo e acima." +#~ msgctxt "speed_layer_0 description" +#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." +#~ msgstr "A velocidade para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão." -#~ msgctxt "expand_skins_expand_distance description" -#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." -#~ msgstr "A distância que os contornos são expandidos para dentro do preenchimento. A distância default é suficiente para ligar o vão entre as linhas de preenchimento e impedirá que buracos apareçam no contorno onde ele encontrar a parede em que a densidade de preenchimento é baixa. Uma distância menor pode ser suficiente." +#~ msgctxt "build_volume_temperature description" +#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." +#~ msgstr "A temperatura usada para o volume de construção. Se o valor for zero, a temperatura de volume de impressão não será ajustada." -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "Pular Algumas Conexões de Ziguezague" +#~ msgctxt "material_print_temperature description" +#~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." +#~ msgstr "Temperatura usada para a impressão. COloque em '0' para pré-aquecer a impressora manualmente." -#~ msgctxt "support_skip_some_zags description" -#~ msgid "Skip some ZigZags connections to make the support structure easier to break." -#~ msgstr "Pula algumas conexões de Ziguezague para fazer a estrutura de suporte mais fácil de ser removida." +#~ msgctxt "material_bed_temperature_layer_0 description" +#~ msgid "The temperature used for the heated build plate at the first layer." +#~ msgstr "A temperatura usada para a mesa aquecida na primeira camada." -#~ msgctxt "support_zag_skip_count label" -#~ msgid "ZigZag Connection Skip Count" -#~ msgstr "Contagem de Pulos das Conexões de Ziguezague" +#~ msgctxt "material_bed_temperature description" +#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." +#~ msgstr "A temperatura usada para a plataforma de impressão aquecida. Se for 0, a temperatura da mesa não será ajustada." -#~ msgctxt "support_zag_skip_count description" -#~ msgid "Skip one in every N connection lines to make the support structure easier to break." -#~ msgstr "Pular uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida." +#~ msgctxt "material_bed_temperature description" +#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." +#~ msgstr "A temperatura usada pela mesa aquecida de impressão. Se for 0, a mesa não aquecerá para esta impressão." -#~ msgctxt "machine_show_variants label" -#~ msgid "Show machine variants" -#~ msgstr "Mostrar variantes da máquina" +#~ msgctxt "material_bed_temperature description" +#~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually." +#~ msgstr "A temperatura usada para a mesa aquecida. Coloque em '0' para pré-aquecer a impressora manualmente." + +#~ msgctxt "prime_tower_wall_thickness description" +#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." +#~ msgstr "A espessura da torre de purga (que é oca). Uma espessura maior que a metade do volume mínimo da torre de purga resultará em uma torre de purga densa." + +#~ msgctxt "wall_thickness description" +#~ msgid "The thickness of the outside 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 pela largura de extrusão da parede define o número de paredes." + +#~ msgctxt "support_bottom_height description" +#~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests." +#~ msgstr "A espessura da base do suporte. Isto controla o número de camadas densas que são impressas no topo de lugares do modelo em que o suporte se assenta." + +#~ msgctxt "support_tree_wall_thickness description" +#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." +#~ msgstr "A espessura das paredes dos galhos do suporte em árvore. Paredes mais espessas tomarão mais tempo pra imprimir mas não tombarão facilmente." + +#~ msgctxt "machine_gcode_flavor description" +#~ msgid "The type of gcode to be generated." +#~ msgstr "Tipo de G-Code a ser gerado para a impressora." + +#~ msgctxt "raft_smoothing description" +#~ msgid "This setting control 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 quantos cantos interiores no contorno do raft são arredondados. Cantos no sentido interior são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove buracos que sejam menores que tal círculo no contorno do raft." + +#~ msgctxt "adaptive_layer_height_threshold description" +#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." +#~ msgstr "Limite até onde se usa uma camada menor ou não. Este número é comparado à tangente da ladeira mais vertical da camada." + +#~ msgctxt "wireframe_roof_outer_delay description" +#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." +#~ msgstr "El tiempo empleado en los perímetros exteriores del agujero que se convertirá en un techo. Cuanto mayor sea el tiempo, mejor será la conexión. Solo se aplica a la impresión de alambre." + +#~ 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, while an angle of 90° is vertical." +#~ msgstr "Superfícies Superiores e/ou Inferiores de seu objeto com um ângulo maior que este ajuste não terão seus contornos superior/inferior expandidos. Isto evita que expandam as áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação praticamente vertical. Um ângulo de 0° é horizontal, um ângulo de 90° é vertical." + +#~ msgctxt "support_tree_enable label" +#~ msgid "Tree Support" +#~ msgstr "Suporte de Árvore" + +#~ msgctxt "support_tree_wall_count label" +#~ msgid "Tree Support Wall Line Count" +#~ msgstr "Número de Filetes da Parede do Suporte em Árvore" + +#~ msgctxt "support_tree_wall_thickness label" +#~ msgid "Tree Support Wall Thickness" +#~ msgstr "Espessura de Parede do Suporte em Árvore" + +#~ msgctxt "adaptive_layer_height_enabled label" +#~ msgid "Use adaptive layers" +#~ msgstr "Usar camadas adaptativas" + +#~ msgctxt "relative_extrusion description" +#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. 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 Gcode script is output." +#~ msgstr "Usar extrusão relativa ao invés de absoluta. Usar passos de extrusor relativos permite pós-processamento do G-Code mais fácil. No entanto, não é suportado por todas as impressoras e pode produzir desvios bem pequenos na quantidade de material depositado comparado aos passos de extrusor absolutos. Independente deste ajuste, o modo de extrusão sempre será configurado para absoluto antes que qualquer script de G-Code seja escrito." + +#~ msgctxt "wireframe_bottom_delay label" +#~ msgid "WP Bottom Delay" +#~ msgstr "Espera da Base de IA" + +#~ msgctxt "wireframe_printspeed_bottom label" +#~ msgid "WP Bottom Printing Speed" +#~ msgstr "Velocidade de Impressão da Base da IA" + +#~ msgctxt "wireframe_flow_connection label" +#~ msgid "WP Connection Flow" +#~ msgstr "Fluxo de Conexão da IA" + +#~ msgctxt "wireframe_height label" +#~ msgid "WP Connection Height" +#~ msgstr "Altura da Conexão IA" + +#~ msgctxt "wireframe_printspeed_down label" +#~ msgid "WP Downward Printing Speed" +#~ msgstr "Velocidade de Impressão Descendente de IA" + +#~ msgctxt "wireframe_drag_along label" +#~ msgid "WP Drag Along" +#~ msgstr "Arrasto de IA" + +#~ msgctxt "wireframe_up_half_speed label" +#~ msgid "WP Ease Upward" +#~ msgstr "Facilitador Ascendente da IA" + +#~ msgctxt "wireframe_fall_down label" +#~ msgid "WP Fall Down" +#~ msgstr "Queda de IA" + +#~ msgctxt "wireframe_flat_delay label" +#~ msgid "WP Flat Delay" +#~ msgstr "Espera Plana de IA" + +#~ msgctxt "wireframe_flow_flat label" +#~ msgid "WP Flat Flow" +#~ msgstr "Fluxo Plano de IA" + +#~ msgctxt "wireframe_flow label" +#~ msgid "WP Flow" +#~ msgstr "Fluxo da IA" + +#~ msgctxt "wireframe_printspeed_flat label" +#~ msgid "WP Horizontal Printing Speed" +#~ msgstr "Velocidade de Impressão Horizontal de IA" + +#~ msgctxt "wireframe_top_jump label" +#~ msgid "WP Knot Size" +#~ msgstr "Tamanho do Nó de IA" + +#~ msgctxt "wireframe_nozzle_clearance label" +#~ msgid "WP Nozzle Clearance" +#~ msgstr "Espaço Livre para o Bico em IA" + +#~ msgctxt "wireframe_roof_drag_along label" +#~ msgid "WP Roof Drag Along" +#~ msgstr "Arrasto do Topo de IA" + +#~ msgctxt "wireframe_roof_fall_down label" +#~ msgid "WP Roof Fall Down" +#~ msgstr "Queda do Topo de IA" + +#~ msgctxt "wireframe_roof_inset label" +#~ msgid "WP Roof Inset Distance" +#~ msgstr "Distância de Penetração do Teto da IA" + +#~ msgctxt "wireframe_roof_outer_delay label" +#~ msgid "WP Roof Outer Delay" +#~ msgstr "Retardo exterior del techo en IA" + +#~ msgctxt "wireframe_printspeed label" +#~ msgid "WP Speed" +#~ msgstr "Velocidade da IA" + +#~ msgctxt "wireframe_straight_before_down label" +#~ msgid "WP Straighten Downward Lines" +#~ msgstr "Endireitar Filetes Descendentes de IA" + +#~ msgctxt "wireframe_strategy label" +#~ msgid "WP Strategy" +#~ msgstr "Estratégia de IA" + +#~ msgctxt "wireframe_top_delay label" +#~ msgid "WP Top Delay" +#~ msgstr "Espera do Topo de IA" + +#~ msgctxt "wireframe_printspeed_up label" +#~ msgid "WP Upward Printing Speed" +#~ msgstr "Velocidade de Impressão Ascendente da IA" #, fuzzy #~ msgctxt "material_bed_temp_wait label" @@ -7519,158 +7743,78 @@ msgstr "Matriz de transformação a ser aplicada ao modelo após o carregamento #~ msgid "Wait for nozzle heatup" #~ msgstr "Aguardar o aquecimento do bico" -#~ msgctxt "material_print_temp_prepend label" -#~ msgid "Include material temperatures" -#~ msgstr "Incluir temperaturas dos materiais" - -#~ msgctxt "material_bed_temp_prepend label" -#~ msgid "Include build plate temperature" -#~ msgstr "Incluir temperatura da mesa de impressão" - -#~ msgctxt "machine_width label" -#~ msgid "Machine width" -#~ msgstr "Largura da mesa" - -#~ msgctxt "machine_depth label" -#~ msgid "Machine depth" -#~ msgstr "Profundidada da mesa" - -#~ msgctxt "machine_shape label" -#~ msgid "Build plate shape" -#~ msgstr "Forma da mesa de impressão" - -#~ msgctxt "machine_height label" -#~ msgid "Machine height" -#~ msgstr "Altura do volume de impressão" - -#~ msgctxt "machine_heated_bed label" -#~ msgid "Has heated build plate" -#~ msgstr "Tem mesa de impressão aquecida" - -#~ msgctxt "machine_center_is_zero label" -#~ msgid "Is center origin" -#~ msgstr "A origem está no centro" - -#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -#~ msgid "RepRap (Marlin/Sprinter)" -#~ msgstr "RepRap (Marlin/Sprinter)" - -#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" -#~ msgid "RepRap (Volumetric)" -#~ msgstr "RepRap (Volumétrico)" - -#~ msgctxt "wall_thickness description" -#~ msgid "The thickness of the outside 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 pela largura de extrusão da parede define o número de paredes." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Porcentagem de sobreposição entre o contorno e as paredes. Uma ligeira sobreposição permite às paredes ficarem firmemente aderidas ao contorno." - -#~ msgctxt "support_interface_line_width description" -#~ msgid "Width of a single support interface line." -#~ msgstr "Largura de extrusão de um filete usado na interface da estrutura de suporte com o modelo." - -#~ msgctxt "sub_div_rad_mult label" -#~ msgid "Cubic Subdivision Radius" -#~ msgstr "Raio de Subdivisão Cúbica" - -#~ msgctxt "sub_div_rad_mult description" -#~ msgid "A multiplier on 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 more subdivisions, i.e. more small cubes." -#~ msgstr "Um multiplicador do raio do centro de cada cubo para verificar a borda do modelo, de modo a decidir se este cubo deve ser subdividido. Valores maiores levam a maiores subdivisões, isto é, mais cubos pequenos." - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Upper Skins" -#~ msgstr "Expandir Contornos Superiores" - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." -#~ msgstr "Expandir as áreas de contorno superiores (áreas com ar acima) de modo que suportem o preenchimento acima." - -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Lower Skins" -#~ msgstr "Expandir Contornos Inferiores" - -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Expandir as áreas de contorno inferiores (áreas com ar abaixo) de modo que fiquem ancoradas pelas camadas de preenchimento acima e abaixo." - -#~ msgctxt "speed_support_interface description" -#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality." -#~ msgstr "A velocidade em que o topo e base dos suportes são impressos. Imprimi-lo a menores velocidade pode melhor a qualidade das seções pendentes." - -#~ msgctxt "acceleration_support_interface description" -#~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality." -#~ msgstr "Aceleração com que o topo e base dos suportes são impressos. Imprimi-lo a menores acelerações pode aprimorar a qualidade das seções pendentes." - -#~ msgctxt "jerk_support_interface description" -#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." -#~ msgstr "A mudança instantânea máxima de velocidade em uma direção com que a base e o topo dos suporte é impresso." - -#~ msgctxt "support_enable label" -#~ msgid "Enable Support" -#~ msgstr "Habilitar Suportes" - -#~ msgctxt "support_enable description" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Habilita as estruturas de suporte. Essas estruturas apóiam partes do modelo que tenham seções pendentes." - -#~ msgctxt "support_interface_extruder_nr description" -#~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion." -#~ msgstr "O extrusor a usar para imprimir o topo e base dos suportes. Isto é utilizado em multi-extrusão." - -#~ 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." -#~ msgstr "A altura dos passos da base tipo escada do suporte em cima do modelo. Um valor baixo faz o suporte ser mais difícil de remover, mas valores muito altos podem criar estruturas de suporte instáveis." - -#~ msgctxt "support_bottom_height label" -#~ msgid "Support Bottom Thickness" -#~ msgstr "Espessura da Base do Suporte" - -#~ msgctxt "support_bottom_height description" -#~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests." -#~ msgstr "A espessura da base do suporte. Isto controla o número de camadas densas que são impressas no topo de lugares do modelo em que o suporte se assenta." +#~ 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." +#~ msgstr "Paredes que têm inclinação maior que este ângulo serão impressas usando ajustes de seção pendente de parede. Quando o valor for 90, nenhuma parede será tratada como seção pendente." #~ msgctxt "support_interface_skip_height description" #~ msgid "When checking where there's model above 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 se verificar onde há modelo sobre suporte, use passos da altura dada. Valores baixos vão fatiar mais lentamente, enquanto valores altos podem fazer o suporte normal ser impresso em lugares onde deveria haver interface de suporte." -#~ msgctxt "support_interface_density description" -#~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -#~ msgstr "Ajusta a densidade dos topos e bases das estruturas de suporte. Um valor mais alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." +#~ msgctxt "retraction_combing_max_distance description" +#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." +#~ msgstr "Quando não-zero, os movimentos de percurso de combing que são maiores que esta distância usarão retração." -#~ msgctxt "support_interface_line_distance label" -#~ msgid "Support Interface Line Distance" -#~ msgstr "Distância entre Linhas da Interface de Suporte" +#~ msgctxt "z_offset_taper_layers description" +#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." +#~ msgstr "Quando não for zero, o deslocamento em Z é reduzido a zero depois deste número de camadas. O valor zero significa que o deslocamento em Z permanece constante para todas as camadas da impressão." -#~ msgctxt "support_interface_line_distance description" -#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." -#~ msgstr "Distância entre as linhas impressas da interface de suporte. Este ajuste é calculado pela Densidade de Interface de Suporte, mas pode ser ajustado separadamente." +#~ msgctxt "skin_no_small_gaps_heuristic description" +#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." +#~ msgstr "Quando o modelo tem pequenas lacunas verticais, aproximadamente 5% de tempo de computação adicional pode ser gasto ao gerar camada externa superior e inferior nestes espaços estreitos. Em tal caso, desabilite este ajuste." -#~ 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 used to be called Joris in older versions." -#~ msgstr "Este modo, também chamado de Modo Vaso ou Joris, transforma a trajetória do filete de plástico de impressão em uma espiral ascendente, com o Z lentamente subindo. Para isso, torna um modelo sólido em uma casca de parede única com a base sólida. Nem toda forma funciona corretamente com o modo vaso." +#~ msgctxt "wipe_hop_enable 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 uma retração é feita, a posição Z do extrusor é aumentada para aumentar a distância entre o bico e a impressão. Isso evita que o bico bata na impressão durante movimentos de percurso, reduzindo a chance de descolar a impressão da plataforma." -#~ msgctxt "material_print_temperature description" -#~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." -#~ msgstr "Temperatura usada para a impressão. COloque em '0' para pré-aquecer a impressora manualmente." +#~ msgctxt "clean_between_layers description" +#~ msgid "Whether to include nozzle wipe G-Code between layers. 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 "Incluir ou não o G-Code para movimento de limpeza de bico (wipe) entre camadas. Habilitar este ajuste pode influenciar o comportamento de retração na mudança de camadas. Por favor use os ajustes de Retração de Limpeza para controlar retração nas camadas onde o script de limpeza funcionará." -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually." -#~ msgstr "A temperatura usada para a mesa aquecida. Coloque em '0' para pré-aquecer a impressora manualmente." +#~ 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 only possible if 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 "Esta opção decide se vocÊ deseja imprimir todos os modelos de uma só vez ou um modelo de cada vez. O modo de um modelo de cada vez só é possível se os modelos estiverem separados de tal forma que a cabeça de impressão possa se mover no meio e todos os modelos sejam mais baixos que a distância entre o bico e os carros X ou Y." -#~ 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. This value is rounded down to a multiple of the layer height." -#~ msgstr "Distância do topo/base da estrutura de suporte à impressão. Este vão provê o espaço para remover os suportes depois do modelo ser impresso. Este valor é arredondando para um múltiplo da altura de camada." +#~ 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 "Opção que dz se se imprime todos os modelos uma camada por vez, ou se se espera que cada um termine para ir para o próximo. Modo um de cada vez é possível se a) somente um extrusor estiver habilitado e b) todos os modelos estiverem separados de maneira que a cabeça de impressão possa se mover entre eles e todos os modelos forem mais baixos que a distância entre o bico e os eixos X/Y." -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Aguardar o aquecimento da mesa de impressão" -#~ msgstr "Esperar a que la placa de impresión se caliente" +#~ msgctxt "spaghetti_infill_stepped description" +#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." +#~ msgstr "Opção para ou se imprimir o preenchimento espaguete em passos discretos ou extrudar todo o filamento de preenchimento no final da impressão." -#~ msgctxt "z_seam_type option back" -#~ msgid "Back" -#~ msgstr "Costas" +#~ msgctxt "support_interface_line_width description" +#~ msgid "Width of a single support interface line." +#~ msgstr "Largura de extrusão de um filete usado na interface da estrutura de suporte com o modelo." -#~ msgctxt "multiple_mesh_overlap label" -#~ msgid "Dual Extrusion Overlap" -#~ msgstr "Sobreposição de Extrusão Dual" +#~ msgctxt "dual_pre_wipe label" +#~ msgid "Wipe Nozzle After Switch" +#~ msgstr "Limpar Bico Depois da Troca" + +#~ msgctxt "wipe_hop_enable label" +#~ msgid "Wipe Z Hop When Retracted" +#~ msgstr "Salto Z da Limpeza Quando Retraída" + +#~ msgctxt "wireframe_enabled label" +#~ msgid "Wire Printing" +#~ msgstr "Impressão em Arame" + +#~ msgctxt "z_offset_taper_layers label" +#~ msgid "Z Offset Taper Layers" +#~ msgstr "Camadas de Amenização do Deslocamento Z" + +#~ msgctxt "support_zag_skip_count label" +#~ msgid "ZigZag Connection Skip Count" +#~ msgstr "Contagem de Pulos das Conexões de Ziguezague" + +#~ msgctxt "blackmagic description" +#~ msgid "category_blackmagic" +#~ msgstr "categoria_blackmagic" + +#~ msgctxt "meshfix description" +#~ msgid "category_fixes" +#~ msgstr "reparos_de_categoria" + +#~ msgctxt "experimental description" +#~ msgid "experimental!" +#~ msgstr "experimental!" diff --git a/resources/i18n/pt_PT/cura.po b/resources/i18n/pt_PT/cura.po index 1a696f5346..42003b10ee 100644 --- a/resources/i18n/pt_PT/cura.po +++ b/resources/i18n/pt_PT/cura.po @@ -1,12 +1,14 @@ # Cura -# Copyright (C) 2022 Ultimaker B.V. +# Copyright (C) 2022 UltiMaker. # This file is distributed under the same license as the Cura package. +# Ultimaker , 2022. # +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0200\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-04-06 15:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,236 +18,109 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -msgctxt "@label" -msgid "Unknown" -msgstr "Desconhecido" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "Não é possível ligar a(s) impressora(s) abaixo porque faz(em) parte de um grupo" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Impressoras em rede disponíveis" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Manter" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Connected printers" -msgstr "Impressoras ligadas" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Preset printers" -msgstr "Impressoras predefinidas" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:143 -#, 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 "Tem a certeza de que pretende remover {0}? Esta ação não pode ser anulada!" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:61 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 -msgctxt "@label" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:65 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Acabamento" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:66 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "O perfil de acabamento foi criado para imprimir modelos e protótipos finais com o objetivo de se obter uma elevada qualidade de acabamento da superfície em termos visuais." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:70 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "O perfil de engenharia foi criado para imprimir protótipos funcionais e peças finais com o objetivo de se obter uma maior precisão dimensional assim como tolerâncias menores." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:75 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Rascunho" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:76 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "O perfil de rascunho foi concebido para imprimir protótipos de teste e de validação de conceitos com o objetivo de se obter uma redução significativa do tempo de impressão." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:232 -msgctxt "@label" -msgid "Custom Material" -msgstr "Material Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:233 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 -msgctxt "@label" -msgid "Custom" -msgstr "Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:391 -msgctxt "@label" -msgid "Custom profiles" -msgstr "Perfis personalizados" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:426 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Todos os Formatos Suportados ({0})" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Todos os Ficheiros (*)" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Calculado" - -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 +#: cura/API/Account.py:199 msgctxt "@info:title" msgid "Login failed" msgstr "Falha no início de sessão" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: cura/Arranging/ArrangeObjectsJob.py:25 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "A procurar nova posição para os objetos" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: cura/Arranging/ArrangeObjectsJob.py:29 msgctxt "@info:title" msgid "Finding Location" msgstr "A Procurar Posição" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Não é possível posicionar todos os objetos dentro do volume de construção" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: cura/Arranging/ArrangeObjectsJob.py:43 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Não é Possível Posicionar" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:115 +#: cura/Backups/Backup.py:115 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Não é possível criar um arquivo a partir do directório de dados do utilizador: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:159 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +#: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159 +#: plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: plugins/CuraDrive/src/DrivePluginExtension.py:126 msgctxt "@info:title" msgid "Backup" -msgstr "Backup" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:134 +#: cura/Backups/Backup.py:134 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." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:145 +#: cura/Backups/Backup.py:145 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that is higher than the current version." msgstr "Tentativa de reposição de uma cópia de segurança do Cura que é superior à versão atual." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:158 +#: cura/Backups/Backup.py:158 msgctxt "@info:backup_failed" msgid "The following error occurred while trying to restore a Cura backup:" msgstr "O seguinte erro ocorreu ao tentar restaurar uma cópia de segurança do Cura:" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: cura/BuildVolume.py:100 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." msgstr "A altura do volume de construção foi reduzida devido ao valor da definição \"Sequência de impressão\" para impedir que o pórtico colida com os modelos impressos." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 +#: cura/BuildVolume.py:103 msgctxt "@info:title" msgid "Build Volume" msgstr "Volume de construção" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Não é possível iniciar o Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" -"

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

    \n" +"

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

    Ups, o Ultimaker Cura encontrou um possível problema.

    \n" -"

    Foi encontrado um erro irrecuperável durante o arranque da aplicação. Este pode ter sido causado por alguns ficheiros de configuração incorrectos. Sugerimos que faça um backup e reponha a sua configuração.

    \n" -"

    Os backups estão localizados na pasta de configuração.

    \n" -"

    Por favor envie-nos este Relatório de Falhas para podermos resolver o problema.

    \n" -" " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: cura/CrashHandler.py:122 msgctxt "@action:button" -msgid "Send crash report to Ultimaker" -msgstr "Enviar relatório de falhas para a Ultimaker" +msgid "Send crash report to UltiMaker" +msgstr "Enviar relatório de falhas para a UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Mostrar relatório de falhas detalhado" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Mostrar pasta de configuração" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Backup e Repor a Configuração" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Relatório de Falhas" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

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

    \n" @@ -256,573 +131,2241 @@ msgstr "" "

    Por favor utilize o botão "Enviar relatório" para publicar um relatório de erros automaticamente nos nossos servidores

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Informações do sistema" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Desconhecido" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Versão do Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Idioma do Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Idioma do Sistema Operativo" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Plataforma" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Versão Qt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Versão PyQt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized" -msgstr "" +msgstr "Ainda não foi inicializado" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Versão do OpenGL: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • Vendedor do OpenGL: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • Processador do OpenGL: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 +#: cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Determinação da origem do erro" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 +#: cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Relatórios" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 +#: cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Enviar relatório" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:531 +#: cura/CuraApplication.py:540 msgctxt "@info:progress" msgid "Loading machines..." msgstr "A carregar máquinas..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +#: cura/CuraApplication.py:547 msgctxt "@info:progress" msgid "Setting up preferences..." msgstr "A configurar as preferências..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +#: cura/CuraApplication.py:692 msgctxt "@info:progress" msgid "Initializing Active Machine..." msgstr "A Inicializar a Máquina Ativa..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +#: cura/CuraApplication.py:839 msgctxt "@info:progress" msgid "Initializing machine manager..." msgstr "A inicializar o gestor das máquinas..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +#: cura/CuraApplication.py:853 msgctxt "@info:progress" msgid "Initializing build volume..." msgstr "A inicializar o volume de construção..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +#: cura/CuraApplication.py:921 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "A configurar cenário..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +#: cura/CuraApplication.py:957 msgctxt "@info:progress" msgid "Loading interface..." msgstr "A carregar interface..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +#: cura/CuraApplication.py:962 msgctxt "@info:progress" msgid "Initializing engine..." msgstr "A inicializar o motor..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#: cura/CuraApplication.py:1290 #, 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" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1798 +#: cura/CuraApplication.py:1816 #, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Apenas pode ser carregado um ficheiro G-code de cada vez. Importação {0} ignorada" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 +#: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 msgctxt "@info:title" msgid "Warning" msgstr "Aviso" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#: cura/CuraApplication.py:1828 #, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "Não é possível abrir outro ficheiro enquanto o G-code estiver a carregar. Importação {0} ignorada" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1812 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156 +#: cura/Settings/CuraContainerRegistry.py:166 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 msgctxt "@info:title" msgid "Error" msgstr "Erro" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 +#: cura/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Desconhecido" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "Não é possível ligar a(s) impressora(s) abaixo porque faz(em) parte de um grupo" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Impressoras em rede disponíveis" + +#: cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Manter" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:28 +msgctxt "@label" +msgid "Connected printers" +msgstr "Impressoras ligadas" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +msgctxt "@label" +msgid "Preset printers" +msgstr "Impressoras predefinidas" + +#: cura/Machines/Models/GlobalStacksModel.py:165 +#, 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 "Tem a certeza de que pretende remover {0}? Esta ação não pode ser anulada!" + +#: cura/Machines/Models/IntentCategoryModel.py:42 +#: cura/Machines/Models/IntentSelectionModel.py:61 +#: cura/Machines/Models/IntentTranslations.py:11 +#: cura/Machines/Models/QualityManagementModel.py:347 +msgctxt "@label" +msgid "Default" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:45 +#: cura/Machines/Models/IntentSelectionModel.py:65 +#: cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "Acabamento" + +#: cura/Machines/Models/IntentCategoryModel.py:46 +#: cura/Machines/Models/IntentSelectionModel.py:66 +#: cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "O perfil de acabamento foi criado para imprimir modelos e protótipos finais com o objetivo de se obter uma elevada qualidade de acabamento da superfície em termos visuais." + +#: cura/Machines/Models/IntentCategoryModel.py:49 +#: cura/Machines/Models/IntentSelectionModel.py:70 +#: cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:50 +#: cura/Machines/Models/IntentSelectionModel.py:71 +#: cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "O perfil de engenharia foi criado para imprimir protótipos funcionais e peças finais com o objetivo de se obter uma maior precisão dimensional assim como tolerâncias menores." + +#: cura/Machines/Models/IntentCategoryModel.py:53 +#: cura/Machines/Models/IntentSelectionModel.py:75 +#: cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "Rascunho" + +#: cura/Machines/Models/IntentCategoryModel.py:54 +#: cura/Machines/Models/IntentSelectionModel.py:76 +#: cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "O perfil de rascunho foi concebido para imprimir protótipos de teste e de validação de conceitos com o objetivo de se obter uma redução significativa do tempo de impressão." + +#: cura/Machines/Models/MaterialManagementModel.py:232 +msgctxt "@label" +msgid "Custom Material" +msgstr "Material Personalizado" + +#: cura/Machines/Models/MaterialManagementModel.py:233 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 +msgctxt "@label" +msgid "Custom" +msgstr "Personalizado" + +#: cura/Machines/Models/QualityManagementModel.py:400 +msgctxt "@label" +msgid "Custom profiles" +msgstr "Perfis personalizados" + +#: cura/Machines/Models/QualityManagementModel.py:435 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Todos os Formatos Suportados ({0})" + +#: cura/Machines/Models/QualityManagementModel.py:436 +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Todos os Ficheiros (*)" + +#: cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Calculado" + +#: cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Multiplicar e posicionar objetos" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 +#: cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "A posicionar objetos" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 +#: cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "A Posicionar Objeto" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +#: cura/OAuth2/AuthorizationHelpers.py:89 msgctxt "@message" msgid "Could not read response." msgstr "Não foi possível ler a resposta." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +#: cura/OAuth2/AuthorizationRequestHandler.py:75 msgctxt "@message" msgid "The provided state is not correct." msgstr "O estado apresentado não está correto." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +#: cura/OAuth2/AuthorizationRequestHandler.py:80 msgctxt "@message" msgid "Timeout when authenticating with the account server." msgstr "Foi excedido o tempo limite de autenticação com o servidor." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +#: cura/OAuth2/AuthorizationRequestHandler.py:97 msgctxt "@message" msgid "Please give the required permissions when authorizing this application." msgstr "Forneça as permissões necessárias ao autorizar esta aplicação." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +#: cura/OAuth2/AuthorizationRequestHandler.py:104 msgctxt "@message" msgid "Something unexpected happened when trying to log in, please try again." msgstr "Ocorreu algo inesperado ao tentar iniciar sessão, tente novamente." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:216 +#: cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Não é possível iniciar um novo processo de início de sessão. Verifique se ainda está ativa outra tentativa de início de sessão." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:277 +#: cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "Não é possível aceder ao servidor da conta Ultimaker." +msgid "Unable to reach the UltiMaker account server." +msgstr "Não é possível aceder ao servidor da conta UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 +#: cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" msgid "Log-in failed" msgstr "O Log-in falhou" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +#: cura/PrinterOutput/UploadMaterialsJob.py:104 msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Não foi possível criar o ficheiro de materiais para sincronizar com as impressoras." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +#: cura/PrinterOutput/UploadMaterialsJob.py:111 +#: cura/PrinterOutput/UploadMaterialsJob.py:165 msgctxt "@text:error" msgid "Failed to load the archive of materials to sync it with printers." msgstr "Não foi possível carregar o ficheiro de materiais para sincronizá-lo com as impressoras." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +#: cura/PrinterOutput/UploadMaterialsJob.py:143 msgctxt "@text:error" msgid "The response from Digital Factory appears to be corrupted." msgstr "A resposta da Digital Factory parece estar corrompida." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +#: cura/PrinterOutput/UploadMaterialsJob.py:147 +#: cura/PrinterOutput/UploadMaterialsJob.py:151 +#: cura/PrinterOutput/UploadMaterialsJob.py:155 msgctxt "@text:error" msgid "The response from Digital Factory is missing important information." msgstr "A resposta da Digital Factory tem informações importantes em falta." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +#: cura/PrinterOutput/UploadMaterialsJob.py:218 msgctxt "@text:error" msgid "Failed to connect to Digital Factory to sync materials with some of the printers." msgstr "Não foi possível estabelecer a ligação com a Digital Factory para poder sincronizar os materiais com algumas das impressoras." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +#: cura/PrinterOutput/UploadMaterialsJob.py:232 msgctxt "@text:error" msgid "Failed to connect to Digital Factory." msgstr "Não foi possível estabelecer a ligação com a Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:207 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: cura/Settings/ActiveQuality.py:43 +msgctxt "@label" +msgid "Experimental" +msgstr "" + +#: cura/Settings/ContainerManager.py:207 +#: cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "O Ficheiro Já Existe" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: cura/Settings/ContainerManager.py:208 +#: cura/Settings/CuraContainerRegistry.py:141 #, 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 "O ficheiro {0} já existe. Tem a certeza de que deseja substituí-lo?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 +#: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "URL de ficheiro inválido:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Falha ao exportar perfil para {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Falha ao exportar perfil para {0}: O plug-in de gravação comunicou uma falha." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Perfil exportado para {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Exportação bem-sucedida" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Falha ao importar perfil de {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: cura/Settings/CuraContainerRegistry.py:209 #, 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 "Não é possível importar o perfil de {0} antes de ser adicionada uma impressora." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Nenhum perfil personalizado para importar no ficheiro {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Falha ao importar perfil de {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: cura/Settings/CuraContainerRegistry.py:252 +#: cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "O perfil {0} contém dados incorretos, não foi possível importá-lo." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Falha ao importar perfil de {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Perfil {0} importado com êxito." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "O ficheiro {0} não contém qualquer perfil válido." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "O perfil {0} é de um formato de ficheiro desconhecido ou está corrompido." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Perfil personalizado" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "O perfil não inclui qualquer tipo de qualidade." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Ainda não existe qualquer impressora ativa." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Não é possível adicionar o perfil." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "O tipo de qualidade '{0}' não é compatível com a definição de máquina atualmente ativa '{1}'." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: cura/Settings/CuraContainerRegistry.py:488 #, 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 "Aviso: o perfil não é visível porque o respetivo tipo de qualidade '{0}' não está disponível para a configuração atual. Mude para uma combinação de material/bocal que possa utilizar este tipo de qualidade." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Não suportado" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:219 +#: cura/Settings/MachineManager.py:746 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:221 msgctxt "@label" msgid "Nozzle" -msgstr "Nozzle" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +#: cura/Settings/MachineManager.py:890 msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "As definições foram alteradas de forma a corresponder aos extrusores disponíveis de momento:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: cura/Settings/MachineManager.py:891 msgctxt "@info:title" msgid "Settings updated" msgstr "Definições atualizadas" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 +#: cura/Settings/MachineManager.py:1514 msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extrusor(es) desativado(s)" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 +#: cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Não suportado" + +#: cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "" + +#: cura/UI/AddPrinterPagesModel.py:17 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" msgid "Add" msgstr "Adicionar" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:290 +#: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290 msgctxt "@action:button" msgid "Finish" msgstr "Concluir" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:508 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:323 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:291 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:74 +#: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386 +#: plugins/ImageReader/ConfigUI.qml:323 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 +#: resources/qml/ColorDialog.qml:143 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: resources/qml/Dialogs/RenameDialog.qml:103 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 msgctxt "@action:button" msgid "Cancel" msgstr "Cancelar" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: cura/UI/ObjectsModel.py:69 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Grupo #{group_nr}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 +#: cura/UI/PrintInformation.py:87 msgctxt "@tooltip" msgid "Outer Wall" msgstr "Parede Exterior" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +#: cura/UI/PrintInformation.py:88 msgctxt "@tooltip" msgid "Inner Walls" msgstr "Paredes Interiores" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +#: cura/UI/PrintInformation.py:89 msgctxt "@tooltip" msgid "Skin" msgstr "Revestimento" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +#: cura/UI/PrintInformation.py:90 msgctxt "@tooltip" msgid "Infill" msgstr "Enchimento" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +#: cura/UI/PrintInformation.py:91 msgctxt "@tooltip" msgid "Support Infill" msgstr "Enchimento dos Suportes" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +#: cura/UI/PrintInformation.py:92 msgctxt "@tooltip" msgid "Support Interface" msgstr "Interface dos Suportes" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +#: cura/UI/PrintInformation.py:93 msgctxt "@tooltip" msgid "Support" msgstr "Suportes" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +#: cura/UI/PrintInformation.py:94 msgctxt "@tooltip" msgid "Skirt" msgstr "Contorno" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +#: cura/UI/PrintInformation.py:95 msgctxt "@tooltip" msgid "Prime Tower" msgstr "Torre de preparação" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +#: cura/UI/PrintInformation.py:96 msgctxt "@tooltip" msgid "Travel" msgstr "Deslocação" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +#: cura/UI/PrintInformation.py:97 msgctxt "@tooltip" msgid "Retractions" msgstr "Retrações" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +#: cura/UI/PrintInformation.py:98 msgctxt "@tooltip" msgid "Other" msgstr "Outro" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:63 +#: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63 msgctxt "@text:window" msgid "The release notes could not be opened." msgstr "Não foi possível abrir as notas sobre a nova versão." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:277 +#: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277 msgctxt "@action:button" msgid "Next" msgstr "Seguinte" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68 msgctxt "@action:button" msgid "Skip" msgstr "Ignorar" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:443 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:186 +#: cura/UI/WhatsNewPagesModel.py:76 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444 +#: resources/qml/Dialogs/AboutDialog.qml:188 msgctxt "@action:button" msgid "Close" msgstr "Fechar" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: cura/UltimakerCloud/CloudMaterialSync.py:66 msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Sincronize os perfis de material com as suas impressoras antes de começar a imprimir." -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: cura/UltimakerCloud/CloudMaterialSync.py:67 msgctxt "@action:button" msgid "New materials installed" msgstr "Novos materiais instalados" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: cura/UltimakerCloud/CloudMaterialSync.py:74 msgctxt "@action:button" msgid "Sync materials" msgstr "Sincronizar materiais" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:397 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:80 +#: cura/UltimakerCloud/CloudMaterialSync.py:82 +#: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80 msgctxt "@action:button" msgid "Learn more" msgstr "Saber mais" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +#: cura/UltimakerCloud/CloudMaterialSync.py:135 msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Não foi possível guardar o arquivo de material em {}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +#: cura/UltimakerCloud/CloudMaterialSync.py:136 msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Erro ao guardar o arquivo de material" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +#: cura/UltimakerCloud/CloudMaterialSync.py:188 msgctxt "@text" msgid "Unknown error." msgstr "Erro desconhecido." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:558 +#, 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 "O ficheiro de projeto {0} contém um tipo de máquina desconhecido {1}. Não é possível importar a máquina. Em vez disso, serão importados os modelos." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:561 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "Abrir ficheiro de projeto" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: plugins/3MFReader/WorkspaceDialog.qml:99 +#: plugins/3MFReader/WorkspaceDialog.qml:127 +#: plugins/3MFReader/WorkspaceDialog.qml:134 +msgctxt "@button" +msgid "Create new" +msgstr "Criar nova" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:692 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "O projeto de ficheiro {0} ficou subitamente inacessível: {1}." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:720 +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "Não é possível abrir o ficheiro de projeto" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:700 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:718 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "O ficheiro de projeto {0} está corrompido: {1}." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:765 +#, 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 "O ficheiro de projeto {0} foi criado utilizando perfis que são desconhecidos para esta versão do UltiMaker Cura." + +#: plugins/3MFReader/WorkspaceDialog.py:233 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Recomendado" + +#: plugins/3MFReader/WorkspaceDialog.py:235 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Personalizado" + +#: plugins/3MFReader/WorkspaceDialog.py:411 +msgctxt "@info:status" +msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." +msgstr "O material utilizado neste projeto baseia-se em algumas definições de material não disponíveis no Cura, o que pode produzir resultados de impressão indesejáveis. Recomendamos vivamente a instalação do pacote completo do material a partir do Marketplace." + +#: plugins/3MFReader/WorkspaceDialog.py:413 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "Perfis do material não instalados" + +#: plugins/3MFReader/WorkspaceDialog.py:426 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "Instalar materiais" + +#: plugins/3MFReader/WorkspaceDialog.qml:15 +msgctxt "@title:window" +msgid "Open Project" +msgstr "Abrir Projeto" + +#: plugins/3MFReader/WorkspaceDialog.qml:31 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61 +msgctxt "@action:title" +msgid "Summary - Cura Project" +msgstr "Resumo – Projeto Cura" + +#: plugins/3MFReader/WorkspaceDialog.qml:65 +msgctxt "@action:ComboBox Update/override existing profile" +msgid "Update existing" +msgstr "Atualizar existente" + +#: plugins/3MFReader/WorkspaceDialog.qml:66 +msgctxt "@action:ComboBox Save settings in a new profile" +msgid "Create new" +msgstr "Criar nova" + +#: plugins/3MFReader/WorkspaceDialog.qml:83 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97 +msgctxt "@action:label" +msgid "Printer settings" +msgstr "Definições da impressora" + +#: plugins/3MFReader/WorkspaceDialog.qml:92 +#: plugins/3MFReader/WorkspaceRow.qml:23 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106 +msgctxt "@action:label" +msgid "Type" +msgstr "Tipo" + +#: plugins/3MFReader/WorkspaceDialog.qml:98 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +msgctxt "@action:label" +msgid "Printer Group" +msgstr "Grupo da Impressora" + +#: plugins/3MFReader/WorkspaceDialog.qml:103 +msgctxt "@action:label" +msgid "Open With" +msgstr "Abrir" + +#: plugins/3MFReader/WorkspaceDialog.qml:104 +msgctxt "@info:tooltip" +msgid "Printer settings will be updated to match the settings saved with the project." +msgstr "As definições da impressora serão atualizadas para corresponder às definições guardadas com o projeto." + +#: plugins/3MFReader/WorkspaceDialog.qml:156 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222 +msgctxt "@action:label" +msgid "Profile settings" +msgstr "Definições do perfil" + +#: plugins/3MFReader/WorkspaceDialog.qml:166 +#: plugins/3MFReader/WorkspaceDialog.qml:238 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246 +msgctxt "@action:label" +msgid "Name" +msgstr "Nome" + +#: plugins/3MFReader/WorkspaceDialog.qml:172 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263 +msgctxt "@action:label" +msgid "Intent" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:178 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230 +msgctxt "@action:label" +msgid "Not in profile" +msgstr "Inexistente no perfil" + +#: plugins/3MFReader/WorkspaceDialog.qml:179 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235 +msgctxt "@action:label" +msgid "%1 override" +msgid_plural "%1 overrides" +msgstr[0] "%1 substituição" +msgstr[1] "%1 substituições" + +#: plugins/3MFReader/WorkspaceDialog.qml:185 +msgctxt "@action:label" +msgid "Derivative from" +msgstr "Derivado de" + +#: plugins/3MFReader/WorkspaceDialog.qml:186 +msgctxt "@action:label" +msgid "%1, %2 override" +msgid_plural "%1, %2 overrides" +msgstr[0] "%1, %2 substituição" +msgstr[1] "%1, %2 substituições" + +#: plugins/3MFReader/WorkspaceDialog.qml:226 +msgctxt "@action:label" +msgid "Material settings" +msgstr "Definições de material" + +#: plugins/3MFReader/WorkspaceDialog.qml:280 +msgctxt "@action:label" +msgid "Setting visibility" +msgstr "Visibilidade das definições" + +#: plugins/3MFReader/WorkspaceDialog.qml:290 +msgctxt "@action:label" +msgid "Mode" +msgstr "Modo" + +#: plugins/3MFReader/WorkspaceDialog.qml:296 +msgctxt "@action:label" +msgid "%1 out of %2" +msgstr "%1 de %2" + +#: plugins/3MFReader/WorkspaceDialog.qml:321 +msgctxt "@action:warning" +msgid "Loading a project will clear all models on the build plate." +msgstr "Abrir um projeto irá apagar todos os modelos na base de construção." + +#: plugins/3MFReader/WorkspaceDialog.qml:367 +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á atualmente instalado no Cura.
    Instale o perfil de material e reabra o projeto." + +#: plugins/3MFReader/WorkspaceDialog.qml:392 +msgctxt "@action:button" +msgid "Open" +msgstr "Abrir" + +#: plugins/3MFReader/WorkspaceDialog.qml:398 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "De qualquer modo, abrir o projecto" + +#: plugins/3MFReader/WorkspaceDialog.qml:407 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "Instalar material em falta" + +#: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33 +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "Ficheiro 3MF" + +#: plugins/3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "Leitor de 3MF" + +#: plugins/3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Fornece suporte para ler ficheiros 3MF." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "O plug-in Gravador 3MF está danificado." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Ainda não existe um espaço de trabalho para gravar. Por favor, primeiro adicione uma impressora." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "Não tem permissão para escrever o espaço de trabalho aqui." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +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 operativo não permite guardar um ficheiro de projeto nesta localização ou com este nome de ficheiro." + +#: plugins/3MFWriter/ThreeMFWriter.py:240 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Erro ao gravar ficheiro 3mf." + +#: plugins/3MFWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "Ficheiro 3MF" + +#: plugins/3MFWriter/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Ficheiro 3MF de Projeto Cura" + +#: plugins/3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "Gravador 3MF" + +#: plugins/3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Possiblita a gravação de ficheiros 3MF." + +#: plugins/AMFReader/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "Ficheiro AMF" + +#: plugins/AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "Leitor de AMF" + +#: plugins/AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Fornece suporte para ler ficheiros AMF." + +#: plugins/CuraDrive/plugin.json +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Efetua uma cópia de segurança e repõe a sua configuração." + +#: plugins/CuraDrive/plugin.json +msgctxt "name" +msgid "Cura Backups" +msgstr "Cópias de segurança do Cura" + +#: plugins/CuraDrive/src/CreateBackupJob.py:25 +msgctxt "@info:title" +msgid "Backups" +msgstr "Cópias de segurança" + +#: plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Ocorreu um erro ao carregar a sua cópia de segurança." + +#: plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "A criar a cópia de segurança..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "Ocorreu um erro ao criar a cópia de segurança." + +#: plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "A carregar a sua cópia de segurança..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "A cópia de segurança terminou o seu carregamento." + +#: plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "A cópia de segurança excede o tamanho de ficheiro máximo." + +#: plugins/CuraDrive/src/DriveApiService.py:86 +#: plugins/CuraDrive/src/RestoreBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Ocorreu um erro ao tentar restaurar a sua cópia de segurança." + +#: plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Gerir cópias de segurança" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "Deseja mais?" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Efetuar cópia de segurança agora" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Efetuar cópia de segurança automaticamente" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Criar automaticamente uma cópia de segurança sempre que o Cura é iniciado." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 +msgctxt "@button" +msgid "Restore" +msgstr "Restaurar" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Eliminar cópia de segurança" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Tem a certeza de que pretende eliminar esta cópia de segurança? Esta ação não pode ser anulada." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Restaurar cópia de segurança" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "É necessário reiniciar o Cura para restaurar a sua cópia de segurança. Pretende fechar o Cura agora?" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Versão do Cura" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Máquinas" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Materiais" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Perfis" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Plug-ins" + +#: plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Cópias de segurança do Cura" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "As minhas cópias de segurança" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Atualmente não existem quaisquer cópias de segurança. Utilize o botão \"Efetuar cópia de segurança agora\" para criar uma." + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Durante a fase de pré-visualização, terá um limite de 5 cópias de segurança visíveis. Remova uma cópia de segurança para ver as antigas." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Efetue a cópia de segurança e sincronize as suas definições do Cura." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 +#: plugins/Marketplace/resources/qml/Marketplace.qml:312 +#: resources/qml/Account/GeneralOperations.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180 +#: resources/qml/WelcomePages/CloudContent.qml:212 +msgctxt "@button" +msgid "Sign in" +msgstr "Iniciar sessão" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "O seccionamento falhou com um erro inesperado. Por favor reportar um erro no nosso registo de problemas." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:163 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "O seccionamento falhou" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Reportar um erro" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:169 +msgctxt "@message:description" +msgid "Report a bug on UltiMaker Cura's issue tracker." +msgstr "Reportar um erro no registo de problemas do UltiMaker Cura." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:416 +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "Não é possível seccionar com o material atual, uma vez que é incompatível com a impressora ou configuração selecionada." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:417 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:450 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:477 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:501 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:514 +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "Não é possível Seccionar" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:449 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "Não é possível seccionar com as definições atuais. As seguintes definições apresentam erros: {0}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:476 +#, 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 "Não é possível seccionar devido a algumas definições por modelo. As seguintes definições apresentam erros num ou mais modelos: {error_labels}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:488 +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "Não é possível seccionar porque a torre de preparação ou a(s) posição(ões) de preparação é(são) inválidas." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:500 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "Não é possível seccionar porque existem objetos associados ao extrusor %s desativado." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:510 +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 "" +"Reveja as definições e verifique se os seus modelos:\n" +"- Cabem dentro do volume de construção\n" +"- Estão atribuídos a uma extrusora ativada\n" +"- Não estão todos definidos como objetos modificadores" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "A Processar Camadas" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Informações" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Back-end do CuraEngine" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Fornece a hiperligação para o back-end de seccionamento do CuraEngine." + +#: plugins/CuraProfileReader/__init__.py:14 +#: plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Perfil Cura" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Leitor de Perfis Cura" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Fornece suporte para importar perfis Cura." + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Gravador de perfis Cura" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Possibilita a exportação de perfis do Cura." + +#: plugins/DigitalLibrary/plugin.json +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." + +#: plugins/DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Biblioteca Digital UltiMaker" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 +msgctxt "@option" +msgid "Save Cura project and print file" +msgstr "Guardar o projeto Cura e o ficheiro de impressão" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Guardar projeto Cura" + +#: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19 +msgctxt "@text Placeholder for the username if it has been deleted" +msgid "deleted user" +msgstr "utilizador excluído" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Não foi possível aceder às informações de atualização." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, 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 "Poderão estar disponíveis novas funcionalidades ou correções de erros para a sua {machine_name}! Se ainda não tiver a versão mais recente, recomendamos que atualize o firmware da sua impressora para a versão {latest_version}." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "A nova versão de firmware %s estável está disponível" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Como atualizar" + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Procura e verifica se existem atualizações de firmware." + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Verificador Atualizações Firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Atualizar firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "Atualizar firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 +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 "O firmware é o software que é executado diretamente na sua impressora 3D. Este firmware controla os motores de passo, regula a temperatura e basicamente assegura o funcionamento da sua impressora." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "O firmware que é expedido com as novas impressoras funciona corretamente, mas as novas versões costumam ter mais funcionalidades e melhorias." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Atualizar firmware automaticamente" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Carregar firmware personalizado" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "O firmware não pode ser atualizado por não existir ligação com a impressora." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 +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." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Selecionar firmware personalizado" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Atualização de firmware" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 +msgctxt "@label" +msgid "Updating firmware." +msgstr "A atualizar firmware." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Atualização de firmware concluída." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "A atualização de firmware falhou devido a um erro desconhecido." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "A atualização de firmware falhou devido a um erro de comunicação." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "A atualização de firmware falhou devido a um erro de entrada/saída." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "A atualização de firmware falhou devido à ausência de firmware." + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "name" +msgid "Firmware Updater" +msgstr "Atualizador de firmware" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Disponibiliza as ações da máquina para atualizar o firmware." + +#: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "Ficheiro G-code comprimido" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Leitor de G-code comprimido" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lê o g-code a partir de um arquivo comprimido." + +#: plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "O GCodeGzWriter não suporta modo de texto." + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Gravador de G-code comprimido" + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Grava o g-code num arquivo comprimido." + +#: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14 +#: plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "Ficheiro G-code" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Leitor de perfis G-code" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Permite importar perfis a partir de ficheiros g-code." + +#: plugins/GCodeReader/FlavorParser.py:359 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "A analisar G-code" + +#: plugins/GCodeReader/FlavorParser.py:361 +#: plugins/GCodeReader/FlavorParser.py:515 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "Detalhes do G-code" + +#: plugins/GCodeReader/FlavorParser.py:513 +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 "Certifique-se de que este g-code é apropriado para a sua impressora e respetiva configuração, antes de enviar o ficheiro para a impressora. A representação do g-code poderá não ser exata." + +#: plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "Ficheiro G" + +#: plugins/GCodeReader/plugin.json +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Permite abrir e visualizar ficheiros G-code." + +#: plugins/GCodeReader/plugin.json +msgctxt "name" +msgid "G-code Reader" +msgstr "Leitor de G-code" + +#: plugins/GCodeWriter/GCodeWriter.py:75 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "O GCodeWriter não suporta modo sem texto." + +#: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Prepare um G-code antes de exportar." + +#: plugins/GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "Gravador de G-code" + +#: plugins/GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Grava o g-code num ficheiro." + +#: plugins/ImageReader/ConfigUI.qml:14 +msgctxt "@title:window" +msgid "Convert Image" +msgstr "Converter Imagem" + +#: plugins/ImageReader/ConfigUI.qml:33 +msgctxt "@action:label" +msgid "Height (mm)" +msgstr "Altura (mm)" + +#: plugins/ImageReader/ConfigUI.qml:56 +msgctxt "@info:tooltip" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "A distância máxima de cada pixel desde a \"Base\"" + +#: plugins/ImageReader/ConfigUI.qml:66 +msgctxt "@action:label" +msgid "Base (mm)" +msgstr "Base (mm)" + +#: plugins/ImageReader/ConfigUI.qml:90 +msgctxt "@info:tooltip" +msgid "The base height from the build plate in millimeters." +msgstr "A altura da \"Base\" desde a base de construção em milímetros." + +#: plugins/ImageReader/ConfigUI.qml:100 +msgctxt "@action:label" +msgid "Width (mm)" +msgstr "Largura (mm)" + +#: plugins/ImageReader/ConfigUI.qml:124 +msgctxt "@info:tooltip" +msgid "The width in millimeters on the build plate" +msgstr "A largura em milímetros na base de construção" + +#: plugins/ImageReader/ConfigUI.qml:134 +msgctxt "@action:label" +msgid "Depth (mm)" +msgstr "Profundidade (mm)" + +#: plugins/ImageReader/ConfigUI.qml:158 +msgctxt "@info:tooltip" +msgid "The depth in millimeters on the build plate" +msgstr "A profundidade em milímetros na base de construção" + +#: plugins/ImageReader/ConfigUI.qml:187 +msgctxt "@item:inlistbox" +msgid "Darker is higher" +msgstr "Mais escuro é mais alto" + +#: plugins/ImageReader/ConfigUI.qml:188 +msgctxt "@item:inlistbox" +msgid "Lighter is higher" +msgstr "Mais claro é mais alto" + +#: plugins/ImageReader/ConfigUI.qml:195 +msgctxt "@info:tooltip" +msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." +msgstr "Para litofanias, os pixels escuros devem corresponder a localizações mais espessas para bloquear mais a passagem da luz. Para mapas de altura, os pixels mais claros significam um terreno mais alto, por isso, os pixels mais claros devem corresponder a localizações mais espessas no modelo 3D gerado." + +#: plugins/ImageReader/ConfigUI.qml:205 +msgctxt "@action:label" +msgid "Color Model" +msgstr "Modelo de cor" + +#: plugins/ImageReader/ConfigUI.qml:224 +msgctxt "@item:inlistbox" +msgid "Linear" +msgstr "Linear" + +#: plugins/ImageReader/ConfigUI.qml:225 +msgctxt "@item:inlistbox" +msgid "Translucency" +msgstr "Translucidez" + +#: plugins/ImageReader/ConfigUI.qml:232 +msgctxt "@info:tooltip" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "Está disponível um modelo logarítmico simples para definir a translucidez das litofanias. Para mapas de altura, os valores dos pixels correspondem de forma linear à elevação." + +#: plugins/ImageReader/ConfigUI.qml:242 +msgctxt "@action:label" +msgid "1mm Transmittance (%)" +msgstr "(%) transmitância de 1 mm" + +#: plugins/ImageReader/ConfigUI.qml:263 +msgctxt "@info:tooltip" +msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." +msgstr "A percentagem de luz que penetra numa impressão com uma espessura de 1 milímetro. Diminuir este valor aumenta o contraste em regiões escuras e diminui o contraste em regiões claras da imagem." + +#: plugins/ImageReader/ConfigUI.qml:274 +msgctxt "@action:label" +msgid "Smoothing" +msgstr "Suavização" + +#: plugins/ImageReader/ConfigUI.qml:298 +msgctxt "@info:tooltip" +msgid "The amount of smoothing to apply to the image." +msgstr "A quantidade de suavização a aplicar à imagem." + +#: plugins/ImageReader/ConfigUI.qml:329 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 +#: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25 +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + +#: plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "Imagem JPG" + +#: plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "Imagem JPEG" + +#: plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "Imagem PNG" + +#: plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "Imagem BMP" + +#: plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "Imagem GIF" + +#: plugins/ImageReader/plugin.json +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." + +#: plugins/ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Leitor de imagens" + +#: plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Perfis Cura 15.04" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Leitor de perfis antigos do Cura" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Permite importar perfis de versões antigas do Cura." + +#: plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Definições da Máquina" + +#: plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Impressora" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Definições do nozzle" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Tamanho do nozzle" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Diâmetro do material compatível" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Desvio X do Nozzle" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Desvio Y do Nozzle" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Número de ventoinha de arrefecimento" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "G-code inicial do extrusor" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "G-code final do extrusor" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Definições da impressora" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (Largura)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Profundidade)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Altura)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Forma da base de construção" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 +msgctxt "@label" +msgid "Origin at center" +msgstr "Origem no centro" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 +msgctxt "@label" +msgid "Heated bed" +msgstr "Base aquecida" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Volume de construção aquecido" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 +msgctxt "@label" +msgid "G-code flavor" +msgstr "Variante do G-code" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Definições da cabeça de impressão" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 +msgctxt "@label" +msgid "X min" +msgstr "X mín" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 +msgctxt "@label" +msgid "Y min" +msgstr "Y mín" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 +msgctxt "@label" +msgid "X max" +msgstr "X máx" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 +msgctxt "@label" +msgid "Y max" +msgstr "Y máx" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Altura do pórtico" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Número de Extrusores" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:342 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Aplicar desvios da extrusora ao GCode" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:390 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "G-code inicial" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:401 +msgctxt "@title:label" +msgid "End G-code" +msgstr "G-code final" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Função Definições da Máquina" + +#: plugins/MachineSettingsAction/plugin.json +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.)." + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "Pretende sincronizar o material e os pacotes de software com a sua conta?" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:95 +msgctxt "@info:title" +msgid "Changes detected from your UltiMaker account" +msgstr "Foram detetadas alterações da sua conta UltiMaker" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 +msgctxt "@action:button" +msgid "Sync" +msgstr "Sincronizar" + +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "A sincronizar..." + +#: plugins/Marketplace/CloudSync/LicenseModel.py:12 +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:79 +msgctxt "@button" +msgid "Decline" +msgstr "Rejeitar" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:13 +#: resources/qml/WelcomePages/UserAgreementContent.qml:53 +msgctxt "@button" +msgid "Agree" +msgstr "Concordar" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:77 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Contrato de licença do plug-in" + +#: plugins/Marketplace/CloudSync/LicensePresenter.py:42 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Rejeitar e remover da conta" + +#: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "É necessário reiniciar o {} para que as alterações tenham efeito." + +#: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "Falhou a transferência de {} plug-ins" + +#: plugins/Marketplace/LocalPackageList.py:28 +msgctxt "@label" +msgid "Installed Plugins" +msgstr "Plug-ins instalados" + +#: plugins/Marketplace/LocalPackageList.py:29 +msgctxt "@label" +msgid "Installed Materials" +msgstr "Materiais instalados" + +#: plugins/Marketplace/LocalPackageList.py:33 +msgctxt "@label" +msgid "Bundled Plugins" +msgstr "Conjunto de Plug-ins" + +#: plugins/Marketplace/LocalPackageList.py:34 +msgctxt "@label" +msgid "Bundled Materials" +msgstr "Conjunto de Materiais" + +#: plugins/Marketplace/PackageModel.py:43 +msgctxt "@label:property" +msgid "Unknown Package" +msgstr "Pacote desconhecido" + +#: plugins/Marketplace/PackageModel.py:66 +msgctxt "@label:property" +msgid "Unknown Author" +msgstr "Autor desconhecido" + +#: plugins/Marketplace/PackageModel.py:95 +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 "Não foi possível encontrar o pacote de materiais associado ao projeto Cura no UltiMaker Marketplace. Use a definição de perfil do material parcial armazenada no arquivo do projeto Cura por sua conta e risco." + +#: plugins/Marketplace/RemotePackageList.py:117 +msgctxt "@info:error" +msgid "Could not interpret the server's response." +msgstr "Não foi possível interpretar a resposta do servidor." + +#: plugins/Marketplace/RemotePackageList.py:148 +msgctxt "@info:error" +msgid "Could not reach Marketplace." +msgstr "Não foi possível ligar ao Marketplace." + +#: plugins/Marketplace/plugin.json +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." + +#: plugins/Marketplace/plugin.json +msgctxt "name" +msgid "Marketplace" +msgstr "Marketplace" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 +msgctxt "@title" +msgid "Changes from your account" +msgstr "Alterações feitas desde a sua conta" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +msgctxt "@button" +msgid "Dismiss" +msgstr "Descartar" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +#: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 +#: resources/qml/WelcomePages/WhatsNewContent.qml:175 +msgctxt "@button" +msgid "Next" +msgstr "Seguinte" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "Os seguintes pacotes vão ser instalados:" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "Os seguintes pacotes não podem ser instalados devido a uma versão incompatível do Cura:" + +#: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "Instalar os materiais em falta" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "Contrato da licença do plug-in" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:47 +msgctxt "@text" +msgid "Please read and agree with the plugin licence." +msgstr "Leia e aceite a licença de utilização do plug-in." + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "Aceitar" + +#: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Gerir os pacotes" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:12 +msgctxt "@header" +msgid "Manage packages" +msgstr "Gerir os pacotes" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:16 +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." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" +msgid "Loading..." +msgstr "A carregar..." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "Plug-ins" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "Materiais" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "Pesquisar no browser" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:271 +msgctxt "@button" +msgid "In order to use the package you will need to restart Cura" +msgstr "Para poder utilizar este pacote terá de reiniciar o Cura" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:279 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "Sair %1" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:300 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" +msgstr "Inicie sessão para obter plug-ins e materiais verificados para o UltiMaker Cura Enterprise" + +#: plugins/Marketplace/resources/qml/Materials.qml:8 +#: plugins/Marketplace/resources/qml/MissingPackages.qml:8 +msgctxt "@header" +msgid "Install Materials" +msgstr "Instalar materiais" + +#: plugins/Marketplace/resources/qml/Materials.qml:12 +msgctxt "@text" +msgid "Select and install material profiles optimised for your UltiMaker 3D printers." +msgstr "Selecione e instale perfis de materiais otimizados para as impressoras 3D UltiMaker." + +#: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "É necessário aceitar a licença para instalar o pacote" + +#: plugins/Marketplace/resources/qml/OnboardBanner.qml:101 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205 +msgctxt "@button:label" +msgid "Learn More" +msgstr "Saber Mais" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170 +msgctxt "@label Is followed by the name of an author" +msgid "By" +msgstr "Por" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Disable" +msgstr "Desativar" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Enable" +msgstr "Ativar" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242 +msgctxt "@button" +msgid "Downgrading..." +msgstr "A voltar para a versão anterior..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243 +msgctxt "@button" +msgid "Downgrade" +msgstr "Repor a Versão Anterior" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247 +msgctxt "@button" +msgid "Installing..." +msgstr "A instalar..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248 +msgctxt "@button" +msgid "Install" +msgstr "Instalar" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252 +msgctxt "@button" +msgid "Uninstall" +msgstr "Desinstalar" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Update" +msgstr "Atualizar" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Updating..." +msgstr "A actualizar..." + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "Detalhes do pacote" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Anterior" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "Descrição" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "Impressoras compatíveis" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "Sem informações sobre compatibilidade" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "Materiais de suporte compatíveis" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "Nenhum" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:193 +msgctxt "@header" +msgid "Compatible with Material Station" +msgstr "Compatível com a Material Station" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "No" +msgstr "Não" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "Yes" +msgstr "Sim" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:219 +msgctxt "@header" +msgid "Optimized for Air Manager" +msgstr "Otimizado para o Air Manager" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Visit plug-in website" +msgstr "Visite o site do plug-in" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Website" +msgstr "Website" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:252 +msgctxt "@button" +msgid "Buy spool" +msgstr "Comprar bobinas" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:261 +msgctxt "@button" +msgid "Safety datasheet" +msgstr "Ficha de segurança" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:270 +msgctxt "@button" +msgid "Technical datasheet" +msgstr "Ficha técnica" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Failed to load packages:" +msgstr "Erro ao carregar os pacotes:" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Retry?" +msgstr "Tentar novamente?" + +#: plugins/Marketplace/resources/qml/Packages.qml:167 +msgctxt "@button" +msgid "Loading" +msgstr "A carregar" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No more results to load" +msgstr "Sem mais resultados para mostrar" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No results found with current filter" +msgstr "Não foram encontrados resultados com o filtro atual" + +#: plugins/Marketplace/resources/qml/Packages.qml:226 +msgctxt "@button" +msgid "Load more" +msgstr "Carregar mais" + +#: plugins/Marketplace/resources/qml/Plugins.qml:8 +msgctxt "@header" +msgid "Install Plugins" +msgstr "Instale plug-ins" + +#: plugins/Marketplace/resources/qml/Plugins.qml:12 +msgctxt "@text" +msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." +msgstr "Simplifique o seu fluxo de trabalho e personalize a sua utilização do Ultimaker Cura com plug-ins criados pela nossa incrível comunidade de utilizadores." + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 +msgctxt "@info" +msgid "UltiMaker Verified Plug-in" +msgstr "Plug-in Aprovado pela UltiMaker" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "UltiMaker Certified Material" +msgstr "Material Certificado pela UltiMaker" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 +msgctxt "@info" +msgid "UltiMaker Verified Package" +msgstr "Pacote Aprovado pela UltiMaker" + +#: plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "Assistente de Modelos 3D" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -836,823 +2379,1092 @@ msgstr "" "

    Descubra como assegurar a melhor qualidade e fiabilidade possível da impressão.

    \n" "

    Ver o guia de qualidade da impressão

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 -#, 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 "O ficheiro de projeto {0} contém um tipo de máquina desconhecido {1}. Não é possível importar a máquina. Em vez disso, serão importados os modelos." +#: plugins/ModelChecker/plugin.json +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." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "Abrir ficheiro de projeto" +#: plugins/ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Verificador de Modelos" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "O projeto de ficheiro {0} ficou subitamente inacessível: {1}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:659 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "Não é possível abrir o ficheiro de projeto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:658 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "O ficheiro de projeto {0} está corrompido: {1}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:711 -#, 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 "O ficheiro de projeto {0} foi criado utilizando perfis que são desconhecidos para esta versão do Ultimaker Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Recomendado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:214 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:390 -msgctxt "@info:status" -msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 -msgctxt "@info:title" -msgid "Material profiles not installed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 -msgctxt "@action:button" -msgid "Install Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "Ficheiro 3MF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "O plug-in Gravador 3MF está danificado." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "Ainda não existe um espaço de trabalho para gravar. Por favor, primeiro adicione uma impressora." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "Não tem permissão para escrever o espaço de trabalho aqui." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 -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 operativo não permite guardar um ficheiro de projeto nesta localização ou com este nome de ficheiro." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:238 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Erro ao gravar ficheiro 3mf." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:282 -#, python-brace-format -msgctxt "@error:material" -msgid "It was not possible to store material package information in project file: {material}. This project may not open correctly on other systems." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 -msgctxt "@info:title" -msgid "Failed to save material package information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "Ficheiro 3MF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Ficheiro 3MF de Projeto Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Ficheiro AMF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 -msgctxt "@info:title" -msgid "Backups" -msgstr "Cópias de segurança" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Ocorreu um erro ao carregar a sua cópia de segurança." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "A criar a cópia de segurança..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "Ocorreu um erro ao criar a cópia de segurança." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "A carregar a sua cópia de segurança..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "A cópia de segurança terminou o seu carregamento." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "A cópia de segurança excede o tamanho de ficheiro máximo." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Ocorreu um erro ao tentar restaurar a sua cópia de segurança." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Gerir cópias de segurança" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "O seccionamento falhou com um erro inesperado. Por favor reportar um erro no nosso registo de problemas." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "O seccionamento falhou" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 -msgctxt "@message:button" -msgid "Report a bug" -msgstr "Reportar um erro" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 -msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." -msgstr "Reportar um erro no registo de problemas do Ultimaker Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:400 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "Não é possível seccionar com o material atual, uma vez que é incompatível com a impressora ou configuração selecionada." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:401 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:434 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:461 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:473 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:485 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:498 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "Não é possível Seccionar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:433 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "Não é possível seccionar com as definições atuais. As seguintes definições apresentam erros: {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:460 -#, 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 "Não é possível seccionar devido a algumas definições por modelo. As seguintes definições apresentam erros num ou mais modelos: {error_labels}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:472 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "Não é possível seccionar porque a torre de preparação ou a(s) posição(ões) de preparação é(são) inválidas." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:484 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "Não é possível seccionar porque existem objetos associados ao extrusor %s desativado." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 -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 "" -"Reveja as definições e verifique se os seus modelos:\n" -"- Cabem dentro do volume de construção\n" -"- Estão atribuídos a uma extrusora ativada\n" -"- Não estão todos definidos como objetos modificadores" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "A Processar Camadas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 -msgctxt "@info:title" -msgid "Information" -msgstr "Informações" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Perfil Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" -msgid "Could not access update information." -msgstr "Não foi possível aceder às informações de atualização." +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 "" +"Certifique-se de que é possível estabelecer ligação com a impressora:\n" +"- Verifique se a impressora está ligada.\n" +"- Verifique se a impressora está ligada à rede.\n" +"- Verifique se tem sessão iniciada para encontrar impressoras ligadas através da cloud." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, 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 "Poderão estar disponíveis novas funcionalidades ou correções de erros para a sua {machine_name}! Se ainda não tiver a versão mais recente, recomendamos que atualize o firmware da sua impressora para a versão {latest_version}." +#: plugins/MonitorStage/MonitorMain.qml:113 +msgctxt "@info" +msgid "Please connect your printer to the network." +msgstr "Ligue a impressora à sua rede." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s stable firmware available" -msgstr "A nova versão de firmware %s estável está disponível" +#: plugins/MonitorStage/MonitorMain.qml:148 +msgctxt "@label link to technical assistance" +msgid "View user manuals online" +msgstr "Ver manuais do utilizador online" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "Como atualizar" +#: plugins/MonitorStage/MonitorMain.qml:164 +msgctxt "@info" +msgid "In order to monitor your print from Cura, please connect the printer." +msgstr "Para monitorizar a sua impressão a partir do Cura, ligue a impressora." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Atualizar firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Ficheiro G-code comprimido" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "O GCodeGzWriter não suporta modo de texto." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Ficheiro G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:350 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "A analisar G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:506 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "Detalhes do G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 -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 "Certifique-se de que este g-code é apropriado para a sua impressora e respetiva configuração, antes de enviar o ficheiro para a impressora. A representação do g-code poderá não ser exata." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Ficheiro G" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "O GCodeWriter não suporta modo sem texto." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Prepare um G-code antes de exportar." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Imagem JPG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Imagem JPEG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Imagem PNG" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Imagem BMP" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Imagem GIF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Perfis Cura 15.04" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Definições da Máquina" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Pretende sincronizar o material e os pacotes de software com a sua conta?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Foram detetadas alterações da sua conta Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 -msgctxt "@action:button" -msgid "Sync" -msgstr "Sincronizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "A sincronizar..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:12 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:79 -msgctxt "@button" -msgid "Decline" -msgstr "Rejeitar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:13 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53 -msgctxt "@button" -msgid "Agree" -msgstr "Concordar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Contrato de licença do plug-in" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Rejeitar e remover da conta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "É necessário reiniciar o {} para que as alterações tenham efeito." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "Falhou a transferência de {} plug-ins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:28 -msgctxt "@label" -msgid "Installed Plugins" -msgstr "Plug-ins instalados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:29 -msgctxt "@label" -msgid "Installed Materials" -msgstr "Materiais instalados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:33 -msgctxt "@label" -msgid "Bundled Plugins" -msgstr "Conjunto de Plug-ins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:34 -msgctxt "@label" -msgid "Bundled Materials" -msgstr "Conjunto de Materiais" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:43 -msgctxt "@label:property" -msgid "Unknown Package" -msgstr "Pacote desconhecido" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:66 -msgctxt "@label:property" -msgid "Unknown Author" -msgstr "Autor desconhecido" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:117 -msgctxt "@info:error" -msgid "Could not interpret the server's response." -msgstr "Não foi possível interpretar a resposta do servidor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:148 -msgctxt "@info:error" -msgid "Could not reach Marketplace." -msgstr "Não foi possível ligar ao Marketplace." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 +#: plugins/MonitorStage/__init__.py:14 msgctxt "@item:inmenu" msgid "Monitor" msgstr "Monitorizar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: plugins/MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Fase de monitorização" + +#: plugins/MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Fornece uma fase de monitorização no Cura." + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 +msgctxt "@label" +msgid "Mesh Type" +msgstr "Tipo de Objecto" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 +msgctxt "@label" +msgid "Normal model" +msgstr "Modelo normal" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 +msgctxt "@label" +msgid "Print as support" +msgstr "Imprimir como suporte" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Modificar definições para sobreposições" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "Não suportar sobreposições" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 +msgctxt "@item:inlistbox" +msgid "Infill mesh only" +msgstr "Apenas objeto de enchimento" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161 +msgctxt "@item:inlistbox" +msgid "Cutting mesh" +msgstr "Malha de corte" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386 +msgctxt "@action:button" +msgid "Select settings" +msgstr "Selecionar definições" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Selecionar definições a personalizar para este modelo" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtrar..." + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Mostrar tudo" + +#: plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" msgid "Per Model Settings" msgstr "Definições Por-Modelo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +#: plugins/PerObjectSettingsTool/__init__.py:15 msgctxt "@info:tooltip" msgid "Configure Per Model Settings" msgstr "Configurar definições individuais Por-Modelo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Ferramenta de definições Por-Modelo" + +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Fornece as definições por-modelo." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Pós-Processamento" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "Modificar G-Code" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Plug-in de pós-processamento" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 +msgctxt "@label" +msgid "Post Processing Scripts" +msgstr "Scripts de pós-processamento" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "Adicionar um script" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 +msgctxt "@label" +msgid "Settings" +msgstr "Definições" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Altere os scripts de pós-processamento." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "O script a seguir está ativo:" +msgstr[1] "Os seguintes scripts estão ativos:" + +#: plugins/PostProcessingPlugin/plugin.json +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" + +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Pós-Processamento" + +#: plugins/PrepareStage/PrepareMenu.qml:74 +msgctxt "@button" +msgid "Add printer" +msgstr "Adicionar Impressora" + +#: plugins/PrepareStage/PrepareMenu.qml:90 +msgctxt "@button" +msgid "Manage printers" +msgstr "Gerir impressoras" + +#: plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "Preparar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 +#: plugins/PrepareStage/plugin.json +msgctxt "name" +msgid "Prepare Stage" +msgstr "Fase de preparação" + +#: plugins/PrepareStage/plugin.json +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Fornece uma fase de preparação no Cura." + +#: plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" msgid "Preview" msgstr "Pré-visualizar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +#: plugins/PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Fase de pré-visualização" + +#: plugins/PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Fornece uma fase de pré-visualização no Cura." + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Guardar no Disco Externo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Guardar no Disco Externo {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "Não existem quaisquer formatos disponíveis para gravar o ficheiro!" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 #, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "A Guardar no Disco Externo {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 msgctxt "@info:title" msgid "Saving" msgstr "A Guardar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "Não foi possível guardar em {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 #, 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 "Não foi possível encontrar um nome do ficheiro ao tentar gravar em {device}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 #, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Não foi possível guardar no Disco Externo {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 #, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Guardado no Disco Externo {0} como {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 msgctxt "@info:title" msgid "File Saved" msgstr "Ficheiro Guardado" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 msgctxt "@action:button" msgid "Eject" msgstr "Ejetar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 #, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Ejetar Disco Externo {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 #, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "{0} foi ejetado. O Disco já pode ser removido de forma segura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 msgctxt "@info:title" msgid "Safely Remove Hardware" msgstr "Remover Hardware de forma segura" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 #, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Não foi possível ejectar {0}. Outro programa pode estar a usar o disco." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +#: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 msgctxt "@item:intext" msgid "Removable Drive" msgstr "Disco Externo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "Quando a opção Wire Printing está ativa, o Cura não permite visualizar as camadas de uma forma precisa." +#: plugins/RemovableDriveOutputDevice/plugin.json +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." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Visualização por Camadas" +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Plug-in de dispositivo de saída da unidade amovível" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 +#: plugins/SentryLogger/plugin.json +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\"" + +#: plugins/SentryLogger/plugin.json +msgctxt "name" +msgid "Sentry Logger" +msgstr "Sentry Logger" + +#: plugins/SimulationView/SimulationView.py:129 msgctxt "@info:status" msgid "Nothing is shown because you need to slice first." msgstr "Não consegue visualizar, porque precisa de fazer o seccionamento primeiro." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 +#: plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "No layers to show" msgstr "Sem camadas para visualizar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 +#: plugins/SimulationView/SimulationView.py:132 +#: plugins/SolidView/SolidView.py:74 msgctxt "@info:option_text" msgid "Do not show this message again" msgstr "Não mostrar esta mensagem novamente" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:18 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:47 +msgctxt "@label" +msgid "Color scheme" +msgstr "Esquema de cores" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Cor do Material" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Tipo de Linha" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:112 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Velocidade" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:116 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Espessura da Camada" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:120 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Diâmetro da Linha" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:124 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Fluxo" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:164 +msgctxt "@label" +msgid "Compatibility Mode" +msgstr "Modo Compatibilidade" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:231 +msgctxt "@label" +msgid "Travels" +msgstr "Deslocações" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:237 +msgctxt "@label" +msgid "Helpers" +msgstr "Auxiliares" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:243 +msgctxt "@label" +msgid "Shell" +msgstr "Invólucro" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:249 +msgctxt "@label" +msgid "Infill" +msgstr "Enchimento" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:257 +msgctxt "@label" +msgid "Starts" +msgstr "A Iniciar" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:304 +msgctxt "@label" +msgid "Only Show Top Layers" +msgstr "Só Camadas Superiores" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:313 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "5 Camadas Superiores Detalhadas" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:326 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Superior / Inferior" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:330 +msgctxt "@label" +msgid "Inner Wall" +msgstr "Parede Interior" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:397 +msgctxt "@label" +msgid "min" +msgstr "mín" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:462 +msgctxt "@label" +msgid "max" +msgstr "máx" + +#: plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Vista Camadas" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +#: plugins/SimulationView/plugin.json +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Permite pré-visualizar os dados das camadas seccionadas." + +#: plugins/SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "Visualização por camadas" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Mais informações sobre a recolha anónima de dados" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 +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 "O Ultimaker Cura recolhe dados anónimos para melhorar a qualidade da impressão e a experiência do utilizador. Segue-se um exemplo de todos os dados partilhados:" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Não pretendo enviar dados anónimos" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Permitir o envio de dados anónimos" + +#: plugins/SliceInfoPlugin/SliceInfo.py:95 msgctxt "@text" msgid "Unable to read example data file." msgstr "Não foi possível ler o ficheiro de dados de exemplo." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Informações do seccionamento" + +#: plugins/SliceInfoPlugin/plugin.json +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." + +#: plugins/SolidView/SolidView.py:71 msgctxt "@info:status" msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." msgstr "As áreas destacadas indicam superfícies em falta ou separadas. Corrija o modelo e volte a abri-lo no Cura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +#: plugins/SolidView/SolidView.py:73 msgctxt "@info:title" msgid "Model Errors" msgstr "Erros no modelo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +#: plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" msgstr "Vista Sólidos" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +#: plugins/SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Permite a visualização (simples) dos objetos como sólidos." + +#: plugins/SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Vista Sólidos" + +#: plugins/SupportEraser/__init__.py:12 msgctxt "@label" msgid "Support Blocker" msgstr "Remover Suportes" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 +#: plugins/SupportEraser/__init__.py:13 msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "Criar um volume dentro do qual não são impressos suportes." -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 +#: plugins/SupportEraser/plugin.json +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" + +#: plugins/SupportEraser/plugin.json +msgctxt "name" +msgid "Support Eraser" +msgstr "Eliminador de suportes" + +#: plugins/TrimeshReader/__init__.py:15 msgctxt "@item:inlistbox 'Open' is part of the name of this file format." msgid "Open Compressed Triangle Mesh" msgstr "Open Compressed Triangle Mesh" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: plugins/TrimeshReader/__init__.py:19 msgctxt "@item:inlistbox" msgid "COLLADA Digital Asset Exchange" msgstr "COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: plugins/TrimeshReader/__init__.py:23 msgctxt "@item:inlistbox" msgid "glTF Binary" msgstr "glTF Binary" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: plugins/TrimeshReader/__init__.py:27 msgctxt "@item:inlistbox" msgid "glTF Embedded JSON" msgstr "glTF Embedded JSON" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: plugins/TrimeshReader/__init__.py:36 msgctxt "@item:inlistbox" msgid "Stanford Triangle Format" msgstr "Stanford Triangle Format" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: plugins/TrimeshReader/__init__.py:40 msgctxt "@item:inlistbox" msgid "Compressed COLLADA Digital Asset Exchange" msgstr "Compressed COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Arquivo Ultimaker Format" +#: plugins/TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Fornece suporte para a leitura de ficheiros modelo." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 +#: plugins/TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Leitor de Trimesh" + +#: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "UltiMaker Format Package" +msgstr "Arquivo UltiMaker Format" + +#: plugins/UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Fornece suporte para ler pacotes de formato Ultimaker." + +#: plugins/UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "Leitor de UFP" + +#: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80 +#: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115 +#: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180 msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "Não é possível escrever no ficheiro UFP:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Nivelar base de construção" +#: plugins/UFPWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Permite a gravação de arquivos Ultimaker Format." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Selecionar atualizações" +#: plugins/UFPWriter/plugin.json +msgctxt "name" +msgid "UFP Writer" +msgstr "Gravador de UFP" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Gere as ligações de rede com as impressoras em rede UltiMaker." + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Ligação de rede UltiMaker" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Ligar a uma Impressora em Rede" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Selecione a impressora a partir da lista abaixo:" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +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 "Para imprimir diretamente para a sua impressora através da rede, certifique-se de que a impressora está ligada à rede através de um cabo de rede ou através de ligação à rede Wi-Fi. Se não ligar o Cura por rede à impressora, poderá ainda assim utilizar uma unidade USB para transferir ficheiros g-code para a impressora." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 +msgctxt "@action:button" +msgid "Edit" +msgstr "Editar" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 +#: resources/qml/Preferences/MachinesPage.qml:153 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:186 +#: resources/qml/Preferences/ProfilesPage.qml:321 +msgctxt "@action:button" +msgid "Remove" +msgstr "Remover" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Atualizar" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 +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" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 +msgctxt "@label" +msgid "Type" +msgstr "Tipo" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 +msgctxt "@label" +msgid "Firmware version" +msgstr "Versão de Firmware" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 +msgctxt "@label" +msgid "Address" +msgstr "Endereço" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Esta impressora não está configurada para alojar um grupo de impressoras." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Esta impressora aloja um grupo de %1 impressoras." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "A impressora neste endereço ainda não respondeu." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" +msgid "Connect" +msgstr "Ligar" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Endereço IP inválido" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Introduza um endereço IP válido." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Endereço da Impressora" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Introduza o endereço IP da sua impressora na rede." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Alterações na configuração" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 +msgctxt "@action:button" +msgid "Override" +msgstr "Ignorar" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "A impressora atribuída %1 requer a seguinte alteração na configuração:" +msgstr[1] "A impressora atribuída %1 requer as seguintes alterações na configuração:" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "A impressora %1 está atribuída, mas o trabalho tem uma configuração de material desconhecida." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Alterar o material %1 de %2 para %3." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "Carregar %3 como material %1 (isto não pode ser substituído)." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Substituir o print core %1 de %2 para %3." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "Ignorar utilizará as definições especificadas com a configuração da impressora existente. Tal pode resultar numa falha de impressão." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@label" +msgid "Move to top" +msgstr "Mover para o topo" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155 +msgctxt "@label" +msgid "Delete" +msgstr "Eliminar" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186 +#: resources/qml/MonitorButton.qml:284 +msgctxt "@label" +msgid "Resume" +msgstr "Retomar" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188 +msgctxt "@label" +msgid "Pausing..." +msgstr "A colocar em pausa..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190 +msgctxt "@label" +msgid "Resuming..." +msgstr "A recomeçar..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192 +#: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288 +msgctxt "@label" +msgid "Pause" +msgstr "Colocar em pausa" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Abort" +msgstr "Cancelar" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Aborting..." +msgstr "A cancelar..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218 +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 "Tem a certeza de que pretende mover %1 para o topo da fila?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Mover trabalho de impressão para o topo" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "Tem a certeza de que pretende eliminar %1?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Eliminar trabalho de impressão" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "Tem a certeza de que deseja cancelar %1?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237 +#: resources/qml/MonitorButton.qml:326 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Cancelar impressão" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Impressora indisponível" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 +msgctxt "@label" +msgid "First available" +msgstr "Primeira disponível" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Atualize o firmware da impressora para gerir a fila remotamente." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +msgctxt "@label:status" +msgid "Aborted" +msgstr "Cancelado" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 +msgctxt "@label:status" +msgid "Finished" +msgstr "Impressão terminada" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "A preparar..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "A cancelar..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +msgctxt "@label:status" +msgid "Failed" +msgstr "Falhou" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "A colocar em pausa..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Paused" +msgstr "Em Pausa" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "A recomeçar..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Action required" +msgstr "Ação necessária" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Termina %1 a %2" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Gerir impressora" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280 +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 "Não é possível visualizar os feeds das câmaras das impressoras na cloud a partir do UltiMaker Cura. Clique em \"Gerir impressora\" para visitar o UltiMaker Digital Factory e ver esta câmara." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340 +msgctxt "@label:status" +msgid "Loading..." +msgstr "A carregar..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Indisponível" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Inacessível" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Idle" +msgstr "Inativa" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361 +msgctxt "@label:status" +msgid "Printing" +msgstr "A Imprimir" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402 +msgctxt "@label" +msgid "Untitled" +msgstr "Sem título" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417 +msgctxt "@label" +msgid "Anonymous" +msgstr "Anónimo" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Requer alterações na configuração" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452 +msgctxt "@action:button" +msgid "Details" +msgstr "Detalhes" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 +msgctxt "@label" +msgid "Queued" +msgstr "Em fila" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Gerir no browser" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "Não existem trabalhos de impressão na fila. Para adicionar um trabalho, seccione e envie." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "Print jobs" +msgstr "Trabalhos em Impressão" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108 +msgctxt "@label" +msgid "Total print time" +msgstr "Tempo de impressão total" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117 +msgctxt "@label" +msgid "Waiting for" +msgstr "A aguardar" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117 +msgctxt "@info" +msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" +msgstr "Monitorize as suas impressoras de qualquer lugar usando a Ultimaker Digital Factory" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129 +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Visualize as impressoras na fábrica digital" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Imprimir Através da Rede" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 +msgctxt "@action:button" +msgid "Print" +msgstr "Imprimir" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 +msgctxt "@label" +msgid "Printer selection" +msgstr "Seleção de Impressora" + +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162 msgctxt "@action:button" msgid "Print via cloud" msgstr "Imprimir através da cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Imprimir através da cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Ligada através da cloud" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276 msgctxt "@action:button" msgid "Monitor print" msgstr "Monitorizar a impressão" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278 msgctxt "@action:tooltip" msgid "Track the print in Ultimaker Digital Factory" msgstr "Controle a impressão no Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Código de erro desconhecido ao carregar trabalho de impressão: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "Nova impressora detetada a partir da sua conta Ultimaker" -msgstr[1] "Novas impressoras detetadas a partir da sua conta Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:242 -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "Adicionar impressora {name} ({model}) a partir da sua conta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:261 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "... e {0} outra" -msgstr[1] "... e {0} outras" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:266 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "Impressoras adicionadas a partir da Digital Factory:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:334 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "Não existe uma conectividade de cloud disponível para a impressora" -msgstr[1] "Não existe uma conectividade de cloud disponível para algumas impressoras" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:343 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "Esta impressora não está associada à Digital Factory:" -msgstr[1] "Estas impressoras não estão associadas à Digital Factory:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:348 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:440 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:352 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "Para estabelecer uma ligação, visite {website_link}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:356 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "Manter configurações da impressora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "Remover impressoras" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:442 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425 #, 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 "A impressora {printer_name} vai ser removida até à próxima sincronização de conta." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:443 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426 #, 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 "Para remover a impressora {printer_name} de forma permanente, visite {digital_factory_link}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:444 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427 #, 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 "Tem a certeza de que pretende remover a impressora {printer_name} temporariamente?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474 msgctxt "@title:window" msgid "Remove printers?" msgstr "Remover impressoras?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477 #, python-brace-format msgctxt "@label" msgid "" @@ -1668,14 +3480,14 @@ msgstr[1] "" "Está prestes a remover {0} impressoras do Cura. Esta ação não pode ser anulada.\n" "Tem a certeza de que pretende continuar?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be undone.\n" "Are you sure you want to continue?" msgstr "Está prestes a remover todas as impressoras do Cura. Esta ação não pode ser anulada.Tem a certeza de que pretende continuar?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, python-brace-format msgctxt "@info:status" msgid "" @@ -1685,2493 +3497,1375 @@ msgstr "" "A sua impressora {printer_name} pode ser ligada através da cloud.\n" " Faça a gestão da sua fila de impressão e monitorize as suas impressões a partir de qualquer local ao ligar a sua impressora ao Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 msgctxt "@info:title" msgid "Are you ready for cloud printing?" msgstr "Está preparado para a impressão na cloud?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 msgctxt "@action" msgid "Get started" msgstr "Iniciar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24 msgctxt "@action" msgid "Learn more" msgstr "Saber mais" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 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 "Está a tentar ligar a uma impressora que não tem o Ultimaker Connect. Atualize a impressora para o firmware mais recente." +msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." +msgstr "Está a tentar ligar a uma impressora que não tem o UltiMaker Connect. Atualize a impressora para o firmware mais recente." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 msgctxt "@info:title" msgid "Update your printer" msgstr "Atualizar a impressora" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 #, 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 "O Cura detetou perfis de material que ainda não estavam instalados na impressora que aloja o grupo {0}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Enviar materiais para a impressora" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "Nova impressora detetada a partir da sua conta Ultimaker" +msgstr[1] "Novas impressoras detetadas a partir da sua conta Ultimaker" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29 +#, python-brace-format +msgctxt "info:status Filled in with printer name and printer model." +msgid "Adding printer {name} ({model}) from your account" +msgstr "Adicionar impressora {name} ({model}) a partir da sua conta" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "... e {0} outra" +msgstr[1] "... e {0} outras" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "Impressoras adicionadas a partir da Digital Factory:" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 #, 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 "Está a tentar ligar a {0}, mas esta não é Host de um grupo. Pode visitar a página Web para a configurar como Host do grupo." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 msgctxt "@info:title" msgid "Not a group host" msgstr "Não é Host do grupo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 msgctxt "@action" msgid "Configure group" msgstr "Configurar grupo" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18 +msgctxt "@info:status" +msgid "You will receive a confirmation via email when the print job is approved" +msgstr "Receberá uma confirmação por e-mail quando o trabalho de impressão for aprovado" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19 +msgctxt "@info:title" +msgid "The print job was successfully submitted" +msgstr "O trabalho de impressão foi enviado com sucesso" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22 +msgctxt "@action" +msgid "Manage print jobs" +msgstr "Gerir trabalhos de impressão" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 msgctxt "@info:status" msgid "Please wait until the current job has been sent." msgstr "Aguarde até o trabalho atual ter sido enviado." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 msgctxt "@info:title" msgid "Print error" msgstr "Erro de impressão" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Não foi possível carregar os dados para a impressora." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 msgctxt "@info:title" msgid "Network error" msgstr "Erro de rede" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 msgctxt "@info:status" msgid "Sending Print Job" msgstr "A enviar trabalho de impressão" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 msgctxt "@info:status" msgid "Uploading print job to printer." msgstr "Carregar um trabalho de impressão na impressora." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 msgctxt "@info:status" msgid "Print job queue is full. The printer can't accept a new job." msgstr "A fila de trabalhos de impressão está cheia. A impressora não consegue aceitar um novo trabalho." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 msgctxt "@info:title" msgid "Queue Full" msgstr "Fila cheia" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "O trabalho de impressão foi enviado com sucesso para a impressora." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 msgctxt "@info:title" msgid "Data Sent" msgstr "Dados Enviados" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "Esta impressora não está associada à Digital Factory:" +msgstr[1] "Estas impressoras não estão associadas à Digital Factory:" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "Para estabelecer uma ligação, visite {website_link}" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "Não existe uma conectividade de cloud disponível para a impressora" +msgstr[1] "Não existe uma conectividade de cloud disponível para algumas impressoras" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "Manter configurações da impressora" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "Remover impressoras" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "Imprimir através da rede" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "Imprimir através da rede" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64 msgctxt "@info:status" msgid "Connected over the network" msgstr "Ligado através da rede" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 msgctxt "@action" msgid "Connect via Network" msgstr "Ligar Através da Rede" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +#: plugins/UM3NetworkPrinting/src/Utils.py:27 msgctxt "@info:status" msgid "tomorrow" msgstr "amanhã" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +#: plugins/UM3NetworkPrinting/src/Utils.py:30 msgctxt "@info:status" msgid "today" msgstr "hoje" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:42 msgctxt "@item:inmenu" msgid "USB printing" msgstr "Impressão USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:43 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print via USB" msgstr "Imprimir por USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:44 msgctxt "@info:tooltip" msgid "Print via USB" msgstr "Imprimir por USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:80 msgctxt "@info:status" msgid "Connected via USB" msgstr "Ligado via USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:110 msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" msgstr "Existe uma impressão por USB em curso; fechar o Cura irá interromper esta impressão. Tem a certeza?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:135 msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Existe uma impressão em curso. O Cura não consegue iniciar outra impressão via USB até a impressão anterior ser concluída." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:136 msgctxt "@message" msgid "Print in Progress" msgstr "Impressão em curso" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "Ficheiro X3D" +#: plugins/USBPrinting/plugin.json +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." -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Vista Raio-X" +#: plugins/USBPrinting/plugin.json +msgctxt "name" +msgid "USB printing" +msgstr "Impressão USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 -msgctxt "@title:window" -msgid "Open Project" -msgstr "Abrir Projeto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "Atualizar existente" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "Criar nova" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:59 -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "Resumo – Projeto Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108 -msgctxt "@info:tooltip" -msgid "How should the conflict in the machine be resolved?" -msgstr "Como deve ser resolvido o conflito da máquina?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:95 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Definições da impressora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:104 -msgctxt "@action:label" -msgid "Type" -msgstr "Tipo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:192 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -msgctxt "@action:label" -msgid "Printer Group" -msgstr "Grupo da Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:217 -msgctxt "@info:tooltip" -msgid "How should the conflict in the profile be resolved?" -msgstr "Como deve ser resolvido o conflito no perfil?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:220 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Definições do perfil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:250 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:375 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:244 -msgctxt "@action:label" -msgid "Name" -msgstr "Nome" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:268 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:261 -msgctxt "@action:label" -msgid "Intent" -msgstr "Intent" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:286 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:228 -msgctxt "@action:label" -msgid "Not in profile" -msgstr "Inexistente no perfil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:292 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:233 -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "%1 substituição" -msgstr[1] "%1 substituições" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 -msgctxt "@action:label" -msgid "Derivative from" -msgstr "Derivado de" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:311 -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "%1, %2 substituição" -msgstr[1] "%1, %2 substituições" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:333 -msgctxt "@info:tooltip" -msgid "How should the conflict in the material be resolved?" -msgstr "Como deve ser resolvido o conflito no material?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:360 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Definições de material" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:396 -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "Visibilidade das definições" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 -msgctxt "@action:label" -msgid "Mode" -msgstr "Modo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 -msgctxt "@action:label" -msgid "Visible settings:" -msgstr "Definições visíveis:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "%1 de %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:447 -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "Abrir um projeto irá apagar todos os modelos na base de construção." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 -msgctxt "@action:button" -msgid "Open" -msgstr "Abrir" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 -msgctxt "@action:button" -msgid "Open project anyway" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 -msgctxt "@action:button" -msgid "Install missing material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Deseja mais?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Efetuar cópia de segurança agora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Efetuar cópia de segurança automaticamente" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Criar automaticamente uma cópia de segurança sempre que o Cura é iniciado." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 -msgctxt "@button" -msgid "Restore" -msgstr "Restaurar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Eliminar cópia de segurança" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Tem a certeza de que pretende eliminar esta cópia de segurança? Esta ação não pode ser anulada." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Restaurar cópia de segurança" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "É necessário reiniciar o Cura para restaurar a sua cópia de segurança. Pretende fechar o Cura agora?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Versão do Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Máquinas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materiais" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Perfis" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Plug-ins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cópias de segurança do Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "As minhas cópias de segurança" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Atualmente não existem quaisquer cópias de segurança. Utilize o botão \"Efetuar cópia de segurança agora\" para criar uma." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Durante a fase de pré-visualização, terá um limite de 5 cópias de segurança visíveis. Remova uma cópia de segurança para ver as antigas." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Efetue a cópia de segurança e sincronize as suas definições do Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:212 -msgctxt "@button" -msgid "Sign in" -msgstr "Iniciar sessão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 -msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 -msgctxt "@option" -msgid "Save Cura project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Atualizar firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 -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 "O firmware é o software que é executado diretamente na sua impressora 3D. Este firmware controla os motores de passo, regula a temperatura e basicamente assegura o funcionamento da sua impressora." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 -msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "O firmware que é expedido com as novas impressoras funciona corretamente, mas as novas versões costumam ter mais funcionalidades e melhorias." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Atualizar firmware automaticamente" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Carregar firmware personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "O firmware não pode ser atualizado por não existir ligação com a impressora." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 -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." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Selecionar firmware personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Atualização de firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 -msgctxt "@label" -msgid "Updating firmware." -msgstr "A atualizar firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Atualização de firmware concluída." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "A atualização de firmware falhou devido a um erro desconhecido." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "A atualização de firmware falhou devido a um erro de comunicação." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "A atualização de firmware falhou devido a um erro de entrada/saída." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "A atualização de firmware falhou devido à ausência de firmware." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:14 -msgctxt "@title:window" -msgid "Convert Image" -msgstr "Converter Imagem" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 -msgctxt "@action:label" -msgid "Height (mm)" -msgstr "Altura (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "A distância máxima de cada pixel desde a \"Base\"" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 -msgctxt "@action:label" -msgid "Base (mm)" -msgstr "Base (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 -msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "A altura da \"Base\" desde a base de construção em milímetros." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 -msgctxt "@action:label" -msgid "Width (mm)" -msgstr "Largura (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 -msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate" -msgstr "A largura em milímetros na base de construção" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 -msgctxt "@action:label" -msgid "Depth (mm)" -msgstr "Profundidade (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 -msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "A profundidade em milímetros na base de construção" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 -msgctxt "@item:inlistbox" -msgid "Darker is higher" -msgstr "Mais escuro é mais alto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -msgctxt "@item:inlistbox" -msgid "Lighter is higher" -msgstr "Mais claro é mais alto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 -msgctxt "@info:tooltip" -msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." -msgstr "Para litofanias, os pixels escuros devem corresponder a localizações mais espessas para bloquear mais a passagem da luz. Para mapas de altura, os pixels mais claros significam um terreno mais alto, por isso, os pixels mais claros devem corresponder a localizações mais espessas no modelo 3D gerado." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:205 -msgctxt "@action:label" -msgid "Color Model" -msgstr "Modelo de cor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:224 -msgctxt "@item:inlistbox" -msgid "Linear" -msgstr "Linear" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 -msgctxt "@item:inlistbox" -msgid "Translucency" -msgstr "Translucidez" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 -msgctxt "@info:tooltip" -msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." -msgstr "Está disponível um modelo logarítmico simples para definir a translucidez das litofanias. Para mapas de altura, os valores dos pixels correspondem de forma linear à elevação." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 -msgctxt "@action:label" -msgid "1mm Transmittance (%)" -msgstr "(%) transmitância de 1 mm" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 -msgctxt "@info:tooltip" -msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." -msgstr "A percentagem de luz que penetra numa impressão com uma espessura de 1 milímetro. Diminuir este valor aumenta o contraste em regiões escuras e diminui o contraste em regiões claras da imagem." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 -msgctxt "@action:label" -msgid "Smoothing" -msgstr "Suavização" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:298 -msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "A quantidade de suavização a aplicar à imagem." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:143 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:80 -msgctxt "@action:button" -msgid "OK" -msgstr "OK" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Definições do nozzle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Tamanho do nozzle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Diâmetro do material compatível" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Desvio X do Nozzle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Desvio Y do Nozzle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Número de ventoinha de arrefecimento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "G-code inicial do extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "G-code final do extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Definições da impressora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (Largura)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Profundidade)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Altura)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Forma da base de construção" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 -msgctxt "@label" -msgid "Origin at center" -msgstr "Origem no centro" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 -msgctxt "@label" -msgid "Heated bed" -msgstr "Base aquecida" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Volume de construção aquecido" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 -msgctxt "@label" -msgid "G-code flavor" -msgstr "Variante do G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Definições da cabeça de impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 -msgctxt "@label" -msgid "X min" -msgstr "X mín" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 -msgctxt "@label" -msgid "Y min" -msgstr "Y mín" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 -msgctxt "@label" -msgid "X max" -msgstr "X máx" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 -msgctxt "@label" -msgid "Y max" -msgstr "Y máx" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Altura do pórtico" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Número de Extrusores" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Aplicar desvios da extrusora ao GCode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "G-code inicial" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400 -msgctxt "@title:label" -msgid "End G-code" -msgstr "G-code final" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 -msgctxt "@title" -msgid "Changes from your account" -msgstr "Alterações feitas desde a sua conta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -msgctxt "@button" -msgid "Dismiss" -msgstr "Descartar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:118 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:175 -msgctxt "@button" -msgid "Next" -msgstr "Seguinte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "Os seguintes pacotes vão ser instalados:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "Os seguintes pacotes não podem ser instalados devido a uma versão incompatível do Cura:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 -msgctxt "@title" -msgid "Install missing Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 -msgctxt "@button" -msgid "Plugin license agreement" -msgstr "Contrato da licença do plug-in" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47 -msgctxt "@text" -msgid "Please read and agree with the plugin licence." -msgstr "Leia e aceite a licença de utilização do plug-in." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 -msgctxt "@button" -msgid "Accept" -msgstr "Aceitar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 -msgctxt "@header" -msgid "Manage packages" -msgstr "Gerir os pacotes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15 -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." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 -msgctxt "@info:tooltip" -msgid "Manage packages" -msgstr "Gerir os pacotes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 -msgctxt "@title" -msgid "Loading..." -msgstr "A carregar..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 -msgctxt "@button" -msgid "Plugins" -msgstr "Plug-ins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 -msgctxt "@button" -msgid "Materials" -msgstr "Materiais" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 -msgctxt "@info" -msgid "Search in the browser" -msgstr "Pesquisar no browser" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:271 -msgctxt "@button" -msgid "In order to use the package you will need to restart Cura" -msgstr "Para poder utilizar este pacote terá de reiniciar o Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:279 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Sair %1" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:8 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MissingPackages.qml:8 -msgctxt "@header" -msgid "Install Materials" -msgstr "Instalar materiais" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 -msgctxt "@text" -msgid "Select and install material profiles optimised for your Ultimaker 3D printers." -msgstr "Selecione e instale perfis de materiais otimizados para as impressoras 3D Ultimaker." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "É necessário aceitar a licença para instalar o pacote" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:101 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:207 -msgctxt "@button:label" -msgid "Learn More" -msgstr "Saber Mais" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:172 -msgctxt "@label Is followed by the name of an author" -msgid "By" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Enable" -msgstr "Ativar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Disable" -msgstr "Desativar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 -msgctxt "@button" -msgid "Downgrading..." -msgstr "A voltar para a versão anterior..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 -msgctxt "@button" -msgid "Downgrade" -msgstr "Repor a Versão Anterior" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 -msgctxt "@button" -msgid "Installing..." -msgstr "A instalar..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 -msgctxt "@button" -msgid "Install" -msgstr "Instalar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 -msgctxt "@button" -msgid "Uninstall" -msgstr "Desinstalar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Updating..." -msgstr "A actualizar..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Update" -msgstr "Atualizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 -msgctxt "@header" -msgid "Package details" -msgstr "Detalhes do pacote" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 -msgctxt "@button:tooltip" -msgid "Back" -msgstr "Anterior" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 -msgctxt "@header" -msgid "Description" -msgstr "Descrição" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 -msgctxt "@header" -msgid "Compatible printers" -msgstr "Impressoras compatíveis" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:134 -msgctxt "@info" -msgid "No compatibility information" -msgstr "Sem informações sobre compatibilidade" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:152 -msgctxt "@header" -msgid "Compatible support materials" -msgstr "Materiais de suporte compatíveis" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176 -msgctxt "@info No materials" -msgid "None" -msgstr "Nenhum" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:193 -msgctxt "@header" -msgid "Compatible with Material Station" -msgstr "Compatível com a Material Station" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "Yes" -msgstr "Sim" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "No" -msgstr "Não" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:219 -msgctxt "@header" -msgid "Optimized for Air Manager" -msgstr "Otimizado para o Air Manager" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Visit plug-in website" -msgstr "Visite o site do plug-in" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Website" -msgstr "Website" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:252 -msgctxt "@button" -msgid "Buy spool" -msgstr "Comprar bobinas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:261 -msgctxt "@button" -msgid "Safety datasheet" -msgstr "Ficha de segurança" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:270 -msgctxt "@button" -msgid "Technical datasheet" -msgstr "Ficha técnica" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Failed to load packages:" -msgstr "Erro ao carregar os pacotes:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Retry?" -msgstr "Tentar novamente?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:167 -msgctxt "@button" -msgid "Loading" -msgstr "A carregar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No more results to load" -msgstr "Sem mais resultados para mostrar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No results found with current filter" -msgstr "Não foram encontrados resultados com o filtro atual" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:226 -msgctxt "@button" -msgid "Load more" -msgstr "Carregar mais" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8 -msgctxt "@header" -msgid "Install Plugins" -msgstr "Instale plug-ins" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12 -msgctxt "@text" -msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users." -msgstr "Simplifique o seu fluxo de trabalho e personalize a sua utilização do Ultimaker Cura com plug-ins criados pela nossa incrível comunidade de utilizadores." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 -msgctxt "@info" -msgid "Ultimaker Verified Plug-in" -msgstr "Plug-in Aprovado pela Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 -msgctxt "@info" -msgid "Ultimaker Certified Material" -msgstr "Material Certificado pela Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 -msgctxt "@info" -msgid "Ultimaker Verified Package" -msgstr "Pacote Aprovado pela Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 -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 "" -"Certifique-se de que é possível estabelecer ligação com a impressora:\n" -"- Verifique se a impressora está ligada.\n" -"- Verifique se a impressora está ligada à rede.\n" -"- Verifique se tem sessão iniciada para encontrar impressoras ligadas através da cloud." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 -msgctxt "@info" -msgid "Please connect your printer to the network." -msgstr "Ligue a impressora à sua rede." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 -msgctxt "@label link to technical assistance" -msgid "View user manuals online" -msgstr "Ver manuais do utilizador online" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:163 -msgctxt "@info" -msgid "In order to monitor your print from Cura, please connect the printer." -msgstr "Para monitorizar a sua impressão a partir do Cura, ligue a impressora." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Tipo de Objecto" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 -msgctxt "@label" -msgid "Normal model" -msgstr "Modelo normal" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 -msgctxt "@label" -msgid "Print as support" -msgstr "Imprimir como suporte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Modificar definições para sobreposições" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Não suportar sobreposições" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Apenas objeto de enchimento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Malha de corte" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Selecionar definições" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Selecionar definições a personalizar para este modelo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtrar..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Mostrar tudo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Plug-in de pós-processamento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Scripts de pós-processamento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" -msgid "Add a script" -msgstr "Adicionar um script" +msgid "Level build plate" +msgstr "Nivelar base de construção" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 -msgctxt "@label" -msgid "Settings" -msgstr "Definições" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:459 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Altere os scripts de pós-processamento." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:463 -msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "O script a seguir está ativo:" -msgstr[1] "Os seguintes scripts estão ativos:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:47 -msgctxt "@label" -msgid "Color scheme" -msgstr "Esquema de cores" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Cor do Material" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Tipo de Linha" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Velocidade" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Espessura da Camada" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Diâmetro da Linha" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Fluxo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Modo Compatibilidade" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 -msgctxt "@label" -msgid "Travels" -msgstr "Deslocações" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 -msgctxt "@label" -msgid "Helpers" -msgstr "Auxiliares" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 -msgctxt "@label" -msgid "Shell" -msgstr "Invólucro" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:64 -msgctxt "@label" -msgid "Infill" -msgstr "Enchimento" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Starts" -msgstr "A Iniciar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Só Camadas Superiores" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "5 Camadas Superiores Detalhadas" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Superior / Inferior" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Parede Interior" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 -msgctxt "@label" -msgid "min" -msgstr "mín" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 -msgctxt "@label" -msgid "max" -msgstr "máx" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Mais informações sobre a recolha anónima de dados" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 -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 "O Ultimaker Cura recolhe dados anónimos para melhorar a qualidade da impressão e a experiência do utilizador. Segue-se um exemplo de todos os dados partilhados:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Não pretendo enviar dados anónimos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Permitir o envio de dados anónimos" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 msgctxt "@title" msgid "Build Plate Leveling" msgstr "Nivelamento da Base de Construção" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 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 "Para assegurar uma boa qualidade das suas impressões, pode agora ajustar a base de construção. Quando clica em \"Avançar para a posição seguinte\", o nozzle irá deslocar-se para as diferentes posições que podem ser ajustadas." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 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, introduza um pedaço de papel debaixo do nozzle e ajuste a altura da base de construção. A altura da base de construção está correta quando o papel fica ligeiramente preso pelo nozzle." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 msgctxt "@action:button" msgid "Start Build Plate Leveling" msgstr "Iniciar Nivelamento da base de construção" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 msgctxt "@action:button" msgid "Move to Next Position" msgstr "Avançar para Posição Seguinte" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Selecione quaisquer atualizações realizadas a esta Ultimaker Original" +#: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "Selecionar atualizações" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this UltiMaker Original" +msgstr "Selecione quaisquer atualizações realizadas a esta UltiMaker Original" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 msgctxt "@label" msgid "Heated Build Plate (official kit or self-built)" msgstr "Base de Construção Aquecida (kit oficial ou de construção própria)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Ligar a uma Impressora em Rede" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -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 "Para imprimir diretamente para a sua impressora através da rede, certifique-se de que a impressora está ligada à rede através de um cabo de rede ou através de ligação à rede Wi-Fi. Se não ligar o Cura por rede à impressora, poderá ainda assim utilizar uma unidade USB para transferir ficheiros g-code para a impressora." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Selecione a impressora a partir da lista abaixo:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 -msgctxt "@action:button" -msgid "Edit" -msgstr "Editar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:140 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:321 -msgctxt "@action:button" -msgid "Remove" -msgstr "Remover" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Atualizar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 -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" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 -msgctxt "@label" -msgid "Type" -msgstr "Tipo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 -msgctxt "@label" -msgid "Firmware version" -msgstr "Versão de Firmware" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 -msgctxt "@label" -msgid "Address" -msgstr "Endereço" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Esta impressora não está configurada para alojar um grupo de impressoras." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Esta impressora aloja um grupo de %1 impressoras." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "A impressora neste endereço ainda não respondeu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 -msgctxt "@action:button" -msgid "Connect" -msgstr "Ligar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Endereço IP inválido" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Introduza um endereço IP válido." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Endereço da Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Introduza o endereço IP da sua impressora na rede." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Alterações na configuração" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 -msgctxt "@action:button" -msgid "Override" -msgstr "Ignorar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "A impressora atribuída %1 requer a seguinte alteração na configuração:" -msgstr[1] "A impressora atribuída %1 requer as seguintes alterações na configuração:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "A impressora %1 está atribuída, mas o trabalho tem uma configuração de material desconhecida." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Alterar o material %1 de %2 para %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Carregar %3 como material %1 (isto não pode ser substituído)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Substituir o print core %1 de %2 para %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Alterar base de construção para %1 (isto não pode ser substituído)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "Ignorar utilizará as definições especificadas com a configuração da impressora existente. Tal pode resultar numa falha de impressão." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:178 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:175 -msgctxt "@label" -msgid "Glass" -msgstr "Vidro" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154 -msgctxt "@label" -msgid "Aluminum" -msgstr "Alumínio" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Mover para o topo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Eliminar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:284 -msgctxt "@label" -msgid "Resume" -msgstr "Retomar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "A colocar em pausa..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "A recomeçar..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:288 -msgctxt "@label" -msgid "Pause" -msgstr "Colocar em pausa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "A cancelar..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Cancelar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:142 -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 "Tem a certeza de que pretende mover %1 para o topo da fila?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Mover trabalho de impressão para o topo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:151 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "Tem a certeza de que pretende eliminar %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Eliminar trabalho de impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:160 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "Tem a certeza de que deseja cancelar %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Cancelar impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Gerir impressora" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:239 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Atualize o firmware da impressora para gerir a fila remotamente." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:275 -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 "Não é possível visualizar os feeds das câmaras das impressoras na cloud a partir do Ultimaker Cura. Clique em \"Gerir impressora\" para visitar o Ultimaker Digital Factory e ver esta câmara." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335 -msgctxt "@label:status" -msgid "Loading..." -msgstr "A carregar..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Indisponível" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Inacessível" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347 -msgctxt "@label:status" -msgid "Idle" -msgstr "Inativa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "A preparar..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Printing" -msgstr "A Imprimir" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397 -msgctxt "@label" -msgid "Untitled" -msgstr "Sem título" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:412 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anónimo" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:433 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Requer alterações na configuração" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:447 -msgctxt "@action:button" -msgid "Details" -msgstr "Detalhes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Impressora indisponível" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 -msgctxt "@label" -msgid "First available" -msgstr "Primeira disponível" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Cancelado" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 -msgctxt "@label:status" -msgid "Finished" -msgstr "Impressão terminada" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "A cancelar..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Failed" -msgstr "Falhou" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "A colocar em pausa..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Paused" -msgstr "Em Pausa" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "A recomeçar..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Action required" -msgstr "Ação necessária" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Termina %1 a %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 -msgctxt "@label" -msgid "Queued" -msgstr "Em fila" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Gerir no browser" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:90 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "Não existem trabalhos de impressão na fila. Para adicionar um trabalho, seccione e envie." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:98 -msgctxt "@label" -msgid "Print jobs" -msgstr "Trabalhos em Impressão" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107 -msgctxt "@label" -msgid "Total print time" -msgstr "Tempo de impressão total" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116 -msgctxt "@label" -msgid "Waiting for" -msgstr "A aguardar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Imprimir Através da Rede" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 -msgctxt "@action:button" -msgid "Print" -msgstr "Imprimir" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 -msgctxt "@label" -msgid "Printer selection" -msgstr "Seleção de Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 +#: plugins/UltimakerMachineActions/plugin.json +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.)." + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Funções para impressoras Ultimaker" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Atualização da versão 2.1 para 2.2" + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Atualização da versão 2.2 para 2.4" + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Atualização da versão 2.5 para 2.6" + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Atualização da versão 2.6 para 2.7" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Atualização da versão 2.7 para 3.0" + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Atualização da versão 3.0 para 3.1" + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Atualização da versão 3.2 para 3.3" + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Atualização da versão 3.3 para 3.4" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Atualização da versão 3.4 para 3.5" + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Atualização da versão 3.5 para 4.0" + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Atualização da versão 4.0 para 4.1" + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Atualização da versão 4.11 para a versão 4.12" + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Atualização do Cura versão 4.13 para 5.0" + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Atualização da versão 4.1 para 4.2" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Atualização da versão 4.2 para 4.3" + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Atualização da versão 4.3 para 4.4" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Atualização da versão 4.4 para a versão 4.5" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Atualização da versão 4.5 para a versão 4.6" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +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" + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +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" + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Atualização da versão 4.7 para 4.8" + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Atualização da versão 4.8 para 4.9" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Atualização da versão 4.9 para 4.10" + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Atualização da versão 5.2 para 5.3" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "" + +#: plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "Ficheiro X3D" + +#: plugins/X3DReader/plugin.json +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Fornece suporte para ler ficheiros X3D." + +#: plugins/X3DReader/plugin.json +msgctxt "name" +msgid "X3D Reader" +msgstr "Leitor de X3D" + +#: plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Vista Raio-X" + +#: plugins/XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Permite a visualização em Raio-X." + +#: plugins/XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Vista Raio-X" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Perfis de Materiais" + +#: plugins/XmlMaterialProfile/plugin.json +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." + +#: resources/qml/Account/AccountWidget.qml:24 msgctxt "@action:button" msgid "Sign in" msgstr "Iniciar sessão" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: resources/qml/Account/GeneralOperations.qml:19 +#: resources/qml/WelcomePages/CloudContent.qml:64 msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Inicie a sessão na plataforma Ultimaker" +msgid "Sign in to the UltiMaker platform" +msgstr "Inicie a sessão na plataforma UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 +#: resources/qml/Account/GeneralOperations.qml:39 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" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" msgstr "" "- Adicione definições de materiais e plug-ins do Marketplace\n" "- Efetue uma cópia de segurança e sincronize as definições de materiais e plug-ins\n" "- Partilhe ideias e obtenha ajuda dos mais de 48.000 utilizadores da Comunidade Ultimaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 +#: resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "Crie uma conta Ultimaker gratuita" +msgid "Create a free UltiMaker account" +msgstr "Crie uma conta UltiMaker gratuita" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 +#: resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "A verificar..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 +#: resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "Conta sincronizada" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 +#: resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "Ocorreu um problema..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 +#: resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "Instalar atualizações pendentes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 +#: resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "Verificar atualizações de conta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +#: resources/qml/Account/UserOperations.qml:78 msgctxt "@label The argument is a timestamp" msgid "Last update: %1" msgstr "Atualização mais recente: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +#: resources/qml/Account/UserOperations.qml:107 msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Conta Ultimaker" +msgid "UltiMaker Account" +msgstr "Conta UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +#: resources/qml/Account/UserOperations.qml:126 msgctxt "@button" msgid "Sign Out" msgstr "Terminar sessão" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" msgid "No time estimation available" msgstr "Nenhuma estimativa de tempo disponível" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:77 msgctxt "@label" msgid "No cost estimation available" msgstr "Nenhuma estimativa de custos disponível" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:127 msgctxt "@button" msgid "Preview" msgstr "Pré-visualizar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" msgid "Time estimation" msgstr "Estimativa de tempo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 +#: resources/qml/ActionPanel/PrintJobInformation.qml:107 msgctxt "@label" msgid "Material estimation" msgstr "Estimativa de material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:156 +#: resources/qml/ActionPanel/PrintJobInformation.qml:156 msgctxt "@label m for meter" msgid "%1m" msgstr "%1 m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:157 +#: resources/qml/ActionPanel/PrintJobInformation.qml:157 msgctxt "@label g for grams" msgid "%1g" msgstr "%1 g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:54 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "A Seccionar..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:78 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:78 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "Não é possível seccionar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Processing" msgstr "A processar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Slice" msgstr "Segmentação" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:115 msgctxt "@label" msgid "Start the slicing process" msgstr "Iniciar o processo de segmentação" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:132 msgctxt "@button" msgid "Cancel" msgstr "Cancelar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 +#: resources/qml/Actions.qml:81 msgctxt "@action:inmenu" msgid "Show Online Troubleshooting" msgstr "Ver online o guia de resolução de problemas" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 +#: resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "Alternar para ecrã inteiro" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 +#: resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "Sair do Ecrã Inteiro" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 +#: resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "&Desfazer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 +#: resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "&Refazer" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 +#: resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "&Sair" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 +#: resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "Vista 3D" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 +#: resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Vista Frente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 +#: resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "Vista Cima" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 +#: resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "Vista Inferior" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 +#: resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "Vista Lado Esquerdo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 +#: resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "Vista Lado Direito" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 +#: resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Configurar Cura..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 +#: resources/qml/Actions.qml:197 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "&Adicionar Impressora..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 +#: resources/qml/Actions.qml:203 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "Gerir Im&pressoras..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 +#: resources/qml/Actions.qml:210 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Gerir Materiais..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:216 -msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate." +#: resources/qml/Actions.qml:218 +msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." msgid "Add more materials from Marketplace" msgstr "Adicionar mais materiais disponíveis no Marketplace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 +#: resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "&Atualizar perfil com as definições/substituições atuais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 +#: resources/qml/Actions.qml:233 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "&Descartar alterações atuais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 +#: resources/qml/Actions.qml:245 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "&Criar perfil a partir das definições/substituições atuais..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 +#: resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "Gerir Perfis..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 +#: resources/qml/Actions.qml:259 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Mostrar &documentação online" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 +#: resources/qml/Actions.qml:267 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "Reportar um &erro" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 +#: resources/qml/Actions.qml:275 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "Novidades" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 +#: resources/qml/Actions.qml:289 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "Sobre..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 +#: resources/qml/Actions.qml:296 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "Apagar seleção" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 +#: resources/qml/Actions.qml:306 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "Centrar seleção" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 +#: resources/qml/Actions.qml:315 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "Multiplicar seleção" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 +#: resources/qml/Actions.qml:324 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Apagar Modelo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 +#: resources/qml/Actions.qml:332 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Ce&ntrar Modelo na Base" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 +#: resources/qml/Actions.qml:338 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "&Agrupar Modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 +#: resources/qml/Actions.qml:358 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Desagrupar Modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 +#: resources/qml/Actions.qml:368 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "&Combinar Modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 +#: resources/qml/Actions.qml:378 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&Multiplicar Modelo..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 +#: resources/qml/Actions.qml:385 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "Selecionar todos os modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 +#: resources/qml/Actions.qml:395 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "Limpar base de construção" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 +#: resources/qml/Actions.qml:405 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "Recarregar todos os modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 +#: resources/qml/Actions.qml:414 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Dispor todos os modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 +#: resources/qml/Actions.qml:422 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Dispor seleção" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 +#: resources/qml/Actions.qml:429 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Repor todas as posições de modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 +#: resources/qml/Actions.qml:436 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "Repor Todas as Transformações do Modelo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 +#: resources/qml/Actions.qml:445 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Abrir Ficheiro(s)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 +#: resources/qml/Actions.qml:455 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Novo Projeto..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 +#: resources/qml/Actions.qml:462 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Mostrar pasta de configuração" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 +#: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Configurar visibilidade das definições..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 msgctxt "@label:button" msgid "My printers" msgstr "As minhas impressoras" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 msgctxt "@tooltip:button" msgid "Monitor printers in Ultimaker Digital Factory." msgstr "Monitorize as impressoras no Ultimaker Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Crie projetos de impressão na Digital Library." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 msgctxt "@label:button" msgid "Print jobs" msgstr "Trabalhos em Impressão" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 msgctxt "@tooltip:button" msgid "Monitor print jobs and reprint from your print history." msgstr "Monitorize os trabalhos de impressão e volte a imprimir a partir do histórico de impressão." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 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." +msgid "Extend UltiMaker Cura with plugins and material profiles." +msgstr "Tire mais partido do UltiMaker Cura com plug-ins e perfis de materiais." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." -msgstr "Torne-se um perito em impressão 3D com os cursos de e-learning da Ultimaker." +msgid "Become a 3D printing expert with UltiMaker e-learning." +msgstr "Torne-se um perito em impressão 3D com os cursos de e-learning da UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Suporte da Ultimaker" +msgid "UltiMaker support" +msgstr "Suporte da UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." -msgstr "Saiba como começar a utilizar o Ultimaker Cura." +msgid "Learn how to get started with UltiMaker Cura." +msgstr "Saiba como começar a utilizar o UltiMaker Cura." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 msgctxt "@label:button" msgid "Ask a question" msgstr "Faça uma pergunta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Consulte a Comunidade Ultimaker." +msgid "Consult the UltiMaker Community." +msgstr "Consulte a Comunidade UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 msgctxt "@label:button" msgid "Report a bug" msgstr "Reportar um erro" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Informe os programadores quando houver algum problema." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Visite o site da Ultimaker." +msgid "Visit the UltiMaker website." +msgstr "Visite o site da UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 +#: resources/qml/ColorDialog.qml:110 msgctxt "@label" msgid "Hex" msgstr "Hex" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 +#: resources/qml/Cura.qml:256 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "Este pacote será instalado após reiniciar." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +#: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14 msgctxt "@title:tab" msgid "General" msgstr "Geral" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +#: resources/qml/Cura.qml:470 msgctxt "@title:tab" msgid "Settings" msgstr "Definições" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:468 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:17 +#: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17 msgctxt "@title:tab" msgid "Printers" msgstr "Impressoras" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:470 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70 +#: resources/qml/Cura.qml:474 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:70 msgctxt "@title:tab" msgid "Materials" msgstr "Materiais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:472 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:57 +#: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57 msgctxt "@title:tab" msgid "Profiles" msgstr "Perfis" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +#: resources/qml/Cura.qml:581 msgctxt "@title:window %1 is the application name" msgid "Closing %1" msgstr "A fechar %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:590 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:599 +#: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591 msgctxt "@label %1 is the application name" msgid "Are you sure you want to exit %1?" msgstr "Tem a certeza de que pretende sair de %1?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:637 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 +#: resources/qml/Cura.qml:629 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 msgctxt "@title:window" msgid "Open file(s)" msgstr "Abrir ficheiro(s)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +#: resources/qml/Cura.qml:734 msgctxt "@window:title" msgid "Install Package" msgstr "Instalar Pacote" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +#: resources/qml/Cura.qml:741 msgctxt "@title:window" msgid "Open File(s)" msgstr "Abrir ficheiro(s)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +#: resources/qml/Cura.qml:743 msgctxt "@text:window" msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." msgstr "Encontrámos um ou mais ficheiros G-code nos ficheiros selecionados. Só é possível abrir um ficheiro G-code de cada vez. Se pretender abrir um ficheiro G-code, selecione apenas um." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:831 +#: resources/qml/Cura.qml:828 msgctxt "@title:window" msgid "Add Printer" msgstr "Adicionar Impressora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +#: resources/qml/Cura.qml:836 msgctxt "@title:window" msgid "What's New" msgstr "Novidades" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: resources/qml/Cura.qml:890 +msgctxt "@title:window" +msgid "Save Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:891 +msgctxt "@textfield:placeholder" +msgid "New Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:892 +msgctxt "@info" +msgid "Custom profile name:" +msgstr "" + +#: resources/qml/Cura.qml:909 +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 "Só as definições alteradas pelo utilizador é que serão guardadas no perfil personalizado.
    Para materiais que oferecem suporte, o novo perfil personalizado herdará propriedades de %1." + +#: resources/qml/Cura.qml:917 +msgctxt "@action:button" +msgid "Learn more about Cura print profiles" +msgstr "Saiba mais sobre os perfis de impressão Cura" + +#: resources/qml/Cura.qml:926 +msgctxt "@button" +msgid "Save new profile" +msgstr "" + +#: resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "Acerca de %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: resources/qml/Dialogs/AboutDialog.qml:59 msgctxt "@label" msgid "version: %1" msgstr "versão: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: resources/qml/Dialogs/AboutDialog.qml:74 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "A Solução completa para a impressão 3D por filamento fundido." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: resources/qml/Dialogs/AboutDialog.qml:87 msgctxt "@info:credit" msgid "" -"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura is developed by UltiMaker in cooperation with the community.\n" "Cura proudly uses the following open source projects:" msgstr "" -"O Cura foi desenvolvido pela Ultimaker B.V. em colaboração com a comunidade.\n" +"O Cura foi desenvolvido pela UltiMaker B.V. em colaboração com a comunidade.\n" "O Cura tem o prazer de utilizar os seguintes projetos open source:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label Description for application component" msgid "Graphical user interface" msgstr "Interface gráfica do utilizador" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label Description for application component" msgid "Application framework" msgstr "Framework da aplicação" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label Description for application component" msgid "G-code generator" msgstr "Gerador de G-code" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label Description for application component" msgid "Interprocess communication library" msgstr "Biblioteca de comunicação interprocessual" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:142 +msgctxt "@label Description for application component" msgid "Python bindings for libnest2d" msgstr "Ligações Python para libnest2d" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label Description for application component" msgid "Polygon packing library, developed by Prusa Research" msgstr "Biblioteca de embalagens de polígonos, desenvolvida pela Prusa Research" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:144 +msgctxt "@label Description for application component" msgid "Support library for handling 3MF files" msgstr "Biblioteca de apoio para processamento de ficheiros 3MF" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:145 +msgctxt "@label Description for application component" msgid "Support library for file metadata and streaming" msgstr "Biblioteca de apoio para transmissões de fluxo e metadados de ficheiros" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Linguagem de programação" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label Description for application dependency" msgid "GUI framework" -msgstr "GUI framework" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label Description for application dependency" msgid "GUI framework bindings" msgstr "Ligações de estrutura da GUI" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label Description for application dependency" msgid "C/C++ Binding library" msgstr "Biblioteca de ligações C/C++" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:152 +msgctxt "@label Description for application dependency" msgid "Data interchange format" msgstr "Formato de intercâmbio de dados" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "Font" msgstr "Tipo de letra" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label Description for application dependency" msgid "Polygon clipping library" msgstr "Biblioteca de recortes de polígonos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label Description for application dependency" msgid "JSON parser" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:158 +msgctxt "@label Description for application dependency" msgid "Utility functions, including an image loader" -msgstr "" +msgstr "Funções utilitárias, incluindo um carregador de imagens" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:159 +msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" -msgstr "" +msgstr "Biblioteca de utilidades, incluindo a geração em Voronoi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:162 +#: resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label Description for application dependency" msgid "Root Certificates for validating SSL trustworthiness" -msgstr "" +msgstr "Certificados de raiz para validar a credibilidade SSL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label Description for application dependency" msgid "Compatibility between Python 2 and 3" -msgstr "" +msgstr "Compatibilidade entre Python 2 e 3" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label Description for application dependency" msgid "Support library for system keyring access" msgstr "Biblioteca de apoio para acesso às chaves de sistema" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label Description for application dependency" msgid "Support library for faster math" msgstr "Biblioteca de apoio para cálculos mais rápidos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label Description for application dependency" msgid "Support library for handling STL files" msgstr "Biblioteca de apoio para processamento de ficheiros STL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label Description for application dependency" msgid "Python bindings for Clipper" msgstr "Ligações Python para Clipper" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Biblioteca de comunicação em série" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label Description for application dependency" msgid "Support library for scientific computing" msgstr "Biblioteca de apoio para computação científica" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 -msgctxt "@Label" +#: resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@Label Description for application dependency" msgid "Python Error tracking library" -msgstr "Biblioteca de controlo de erros de Python" +msgstr "Biblioteca de registo de Erros Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:172 +msgctxt "@label Description for application dependency" msgid "Support library for handling triangular meshes" msgstr "Biblioteca de apoio para processamento de malhas triangulares" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:173 +msgctxt "@label Description for application dependency" msgid "ZeroConf discovery library" msgstr "Biblioteca de deteção ZeroConf" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label Description for development tool" msgid "Universal build system configuration" -msgstr "" +msgstr "Configuração de sistema de construção universal" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label Description for development tool" msgid "Dependency and package manager" -msgstr "" +msgstr "Dependência e gestor de pacotes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label Description for development tool" msgid "Packaging Python-applications" -msgstr "" +msgstr "A empacotar aplicativos Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:179 +msgctxt "@label Description for development tool" msgid "Linux cross-distribution application deployment" msgstr "Implementação da aplicação de distribuição cruzada Linux" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:180 +msgctxt "@label Description for development tool" msgid "Generating Windows installers" -msgstr "" +msgstr "A gerar instaladores Windows" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 msgctxt "@title:window" msgid "Open project file" msgstr "Abrir ficheiro de projeto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84 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 "Este ficheiro é um Projeto do Cura. Pretende abrir como Projeto ou só importar os modelos 3D incluídos no Projeto?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:90 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91 msgctxt "@text:window" msgid "Remember my choice" msgstr "Memorizar a minha escolha" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105 msgctxt "@action:button" msgid "Open as project" msgstr "Abrir como projeto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110 msgctxt "@action:button" msgid "Import models" msgstr "Importar modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:17 +msgctxt "@title:window" +msgid "Select Printer" +msgstr "Selecionar impressora" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:54 +msgctxt "@title:label" +msgid "Compatible Printers" +msgstr "Impressoras compatíveis" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:110 +msgctxt "@description" +msgid "No compatible printers, that are currently online, were found." +msgstr "Nenhuma impressora compatível, que esteja online no momento, foi encontrada." + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Descartar ou Manter as alterações" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:49 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64 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 "" @@ -4179,1433 +4873,1292 @@ msgstr "" "Pretende manter estas alterações depois de trocar de perfis?\n" "Como alternativa, pode descartar as alterações para carregar as predefinições a partir de '%1'." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90 msgctxt "@title:column" msgid "Profile settings" msgstr "Definições do perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92 msgctxt "@title:column" msgid "Current changes" msgstr "Alterações atuais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:799 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123 +#: resources/qml/Preferences/GeneralPage.qml:820 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Perguntar sempre isto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Descartar e não perguntar novamente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Manter e não perguntar novamente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157 msgctxt "@action:button" msgid "Discard changes" msgstr "Descartar alterações" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164 msgctxt "@action:button" msgid "Keep changes" msgstr "Manter alterações" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171 +msgctxt "@action:button" +msgid "Save as new custom profile" +msgstr "" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178 +msgctxt "@action:button" +msgid "Save changes" +msgstr "" + +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 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 "Encontrámos um ou mais projetos do Cura nos ficheiros selecionados. Só é possível abrir um Projeto do Cura, de cada vez. Sugerimos importar apenas os modelos 3D desses Projetos do Cura. Deseja continuar?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 msgctxt "@action:button" msgid "Import all as models" msgstr "Importar tudo como modelos 3D" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 +#: resources/qml/Dialogs/RenameDialog.qml:23 +msgctxt "@title:window" +msgid "Rename" +msgstr "Mudar o nome" + +#: resources/qml/Dialogs/RenameDialog.qml:24 +msgctxt "@info" +msgid "Please provide a new name." +msgstr "Por favor, indique um novo nome." + +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 msgctxt "@title:window" msgid "Save Project" msgstr "Guardar projeto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177 msgctxt "@action:label" msgid "Extruder %1" msgstr "Extrusor %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195 msgctxt "@action:label" msgid "Material" msgstr "Material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "Não mostrar novamente o resumo do projeto ao guardar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298 msgctxt "@action:button" msgid "Save" msgstr "Guardar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -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" -msgstr[0] "Imprimir Modelo Selecionado com o %1" -msgstr[1] "Imprimir Modelos Selecionados com o %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:93 +#: resources/qml/JobSpecs.qml:93 msgctxt "@text Print job name" msgid "Untitled" msgstr "Sem título" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 +#: resources/qml/MainWindow/ApplicationMenu.qml:63 +#: resources/qml/Menus/SettingsMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&Definições" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 +#: resources/qml/MainWindow/ApplicationMenu.qml:87 msgctxt "@title:window" msgid "New project" msgstr "Novo projeto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88 +#: resources/qml/MainWindow/ApplicationMenu.qml:88 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 "Tem a certeza de que deseja iniciar um novo projeto? Isto irá apagar tudo na base de construção assim como quaisquer definições que não tenham sido guardadas." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135 +#: resources/qml/MainWindow/MainWindowHeader.qml:135 msgctxt "@action:button" msgid "Marketplace" msgstr "Mercado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +#: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 msgctxt "@header" msgid "Configurations" msgstr "Configurações" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 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 não foi possível reconhecer %1. Visite %2 para transferir o perfil de material correto." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 msgctxt "@label" msgid "Marketplace" msgstr "Mercado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 msgctxt "@label" msgid "Loading available configurations from the printer..." msgstr "A carregar as configurações disponíveis da impressora..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 msgctxt "@label" msgid "The configurations are not available because the printer is disconnected." msgstr "As configurações não estão disponíveis porque a impressora está desligada." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 msgctxt "@tooltip" msgid "The configuration of this extruder is not allowed, and prohibits slicing." msgstr "A configuração deste extrusor não é permitida o que impede o seccionamento." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 msgctxt "@tooltip" msgid "There are no profiles matching the configuration of this extruder." msgstr "Não existem perfis que correspondam à configuração deste extrusor." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 msgctxt "@label" msgid "Select configuration" msgstr "Selecionar configuração" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 msgctxt "@label" msgid "Configurations" msgstr "Configurações" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 msgctxt "@header" msgid "Custom" msgstr "Personalizado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:62 -msgctxt "@label" -msgid "Printer" -msgstr "Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:217 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173 msgctxt "@label" msgid "Enabled" msgstr "Ativado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222 msgctxt "@label" msgid "Material" msgstr "Material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348 msgctxt "@label" msgid "Use glue for better adhesion with this material combination." msgstr "Utilizar cola para melhor aderência com esta combinação de materiais." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:29 +#: resources/qml/Menus/ContextMenu.qml:29 msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "Imprimir Modelo Selecionado Com:" msgstr[1] "Imprimir modelos selecionados com:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:92 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Multiplicar Modelo Selecionado" msgstr[1] "Multiplicar modelos selecionados" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:123 msgctxt "@label" msgid "Number of Copies" msgstr "Número de Cópias" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/EditMenu.qml:12 +#: resources/qml/Menus/EditMenu.qml:12 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "&Editar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ExtensionMenu.qml:13 +#: resources/qml/Menus/ExtensionMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "E&xtensões" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 +#: resources/qml/Menus/FileMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "&Ficheiro" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:45 +#: resources/qml/Menus/FileMenu.qml:45 msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Guardar projeto..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:78 +#: resources/qml/Menus/FileMenu.qml:78 msgctxt "@title:menu menubar:file" msgid "&Export..." msgstr "&Exportar..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:89 +#: resources/qml/Menus/FileMenu.qml:89 msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Exportar seleção..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/HelpMenu.qml:14 +#: resources/qml/Menus/HelpMenu.qml:14 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "&Ajuda" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +#: resources/qml/Menus/MaterialMenu.qml:13 msgctxt "@label:category menu label" msgid "Material" msgstr "Material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:53 +#: resources/qml/Menus/MaterialMenu.qml:53 msgctxt "@label:category menu label" msgid "Favorites" msgstr "Favoritos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:78 +#: resources/qml/Menus/MaterialMenu.qml:78 msgctxt "@label:category menu label" msgid "Generic" msgstr "Genérico" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +#: resources/qml/Menus/OpenFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open File(s)..." msgstr "Abrir ficheiro(s)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PreferencesMenu.qml:21 +#: resources/qml/Menus/PreferencesMenu.qml:21 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "P&referências" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:13 +#: resources/qml/Menus/PrinterMenu.qml:13 msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "&Impressora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:17 +#: resources/qml/Menus/PrinterMenu.qml:17 msgctxt "@label:category menu label" msgid "Network enabled printers" msgstr "Impressoras em rede" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:50 +#: resources/qml/Menus/PrinterMenu.qml:50 msgctxt "@label:category menu label" msgid "Local printers" msgstr "Impressoras locais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +#: resources/qml/Menus/RecentFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open &Recent" msgstr "Abrir &Recente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +#: resources/qml/Menus/SaveProjectMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Save Project..." msgstr "Guardar projeto..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:34 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:49 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Definir como Extrusor Ativo" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:55 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Ativar Extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:63 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Desativar Extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 msgctxt "@action:inmenu" msgid "Visible Settings" msgstr "Definições Visíveis" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 msgctxt "@action:inmenu" msgid "Collapse All Categories" msgstr "Fechar todas as categorias" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 msgctxt "@action:inmenu" msgid "Manage Setting Visibility..." msgstr "Gerir Visibilidade das Definições..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:13 +#: resources/qml/Menus/SettingsMenu.qml:34 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Material" + +#: resources/qml/Menus/SettingsMenu.qml:49 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Definir como Extrusor Ativo" + +#: resources/qml/Menus/SettingsMenu.qml:55 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Ativar Extrusor" + +#: resources/qml/Menus/SettingsMenu.qml:63 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Desativar Extrusor" + +#: resources/qml/Menus/ViewMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&View" msgstr "&Visualizar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:17 +#: resources/qml/Menus/ViewMenu.qml:17 msgctxt "@action:inmenu menubar:view" msgid "&Camera position" msgstr "&Posição da câmara" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:30 +#: resources/qml/Menus/ViewMenu.qml:30 msgctxt "@action:inmenu menubar:view" msgid "Camera view" msgstr "Vista da câmara" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 +#: resources/qml/Menus/ViewMenu.qml:48 msgctxt "@action:inmenu menubar:view" msgid "Perspective" msgstr "Perspetiva" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +#: resources/qml/Menus/ViewMenu.qml:59 msgctxt "@action:inmenu menubar:view" msgid "Orthographic" msgstr "Ortográfica" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:115 +#: resources/qml/MonitorButton.qml:115 msgctxt "@label:MonitorStatus" msgid "Not connected to a printer" msgstr "Sem ligação a uma impressora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 +#: resources/qml/MonitorButton.qml:119 msgctxt "@label:MonitorStatus" msgid "Printer does not accept commands" msgstr "A impressora não aceita comandos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:129 +#: resources/qml/MonitorButton.qml:129 msgctxt "@label:MonitorStatus" msgid "In maintenance. Please check the printer" msgstr "Em manutenção. Verifique a impressora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:140 +#: resources/qml/MonitorButton.qml:140 msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Perdeu-se a ligação com a impressora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +#: resources/qml/MonitorButton.qml:142 msgctxt "@label:MonitorStatus" msgid "Printing..." msgstr "A imprimir..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +#: resources/qml/MonitorButton.qml:145 msgctxt "@label:MonitorStatus" msgid "Paused" msgstr "Em pausa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +#: resources/qml/MonitorButton.qml:148 msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "A preparar..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +#: resources/qml/MonitorButton.qml:150 msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Remova a impressão" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +#: resources/qml/MonitorButton.qml:318 msgctxt "@label" msgid "Abort Print" msgstr "Cancelar impressão" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:327 +#: resources/qml/MonitorButton.qml:327 msgctxt "@label" msgid "Are you sure you want to abort the print?" msgstr "Tem a certeza de que deseja cancelar a impressão?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:109 +#: resources/qml/ObjectItemButton.qml:109 msgctxt "@label" msgid "Is printed as support." msgstr "É imprimido como suporte." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:112 +#: resources/qml/ObjectItemButton.qml:112 msgctxt "@label" msgid "Other models overlapping with this model are modified." msgstr "Foram modificados outros modelos sobrepostos com este modelo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:115 +#: resources/qml/ObjectItemButton.qml:115 msgctxt "@label" msgid "Infill overlapping with this model is modified." msgstr "Foi modificada a sobreposição de enchimento com este modelo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:118 +#: resources/qml/ObjectItemButton.qml:118 msgctxt "@label" msgid "Overlaps with this model are not supported." msgstr "Não são suportadas sobreposições com este modelo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:125 +#: resources/qml/ObjectItemButton.qml:125 msgctxt "@label %1 is the number of settings it overrides." msgid "Overrides %1 setting." msgid_plural "Overrides %1 settings." msgstr[0] "Substitui %1 definição." msgstr[1] "Substitui %1 definições." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 +#: resources/qml/ObjectSelector.qml:59 msgctxt "@label" msgid "Object list" msgstr "Lista de objetos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:131 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:24 +#: resources/qml/Preferences/GeneralPage.qml:134 +#: resources/qml/Preferences/SettingVisibilityPage.qml:24 msgctxt "@action:button" msgid "Defaults" msgstr "Predefinições" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +#: resources/qml/Preferences/GeneralPage.qml:172 msgctxt "@label" msgid "Interface" msgstr "Interface" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +#: resources/qml/Preferences/GeneralPage.qml:215 msgctxt "@heading" msgid "-- incomplete --" msgstr "-- incompleto --" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +#: resources/qml/Preferences/GeneralPage.qml:261 msgctxt "@label" msgid "Currency:" msgstr "Moeda:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:274 +#: resources/qml/Preferences/GeneralPage.qml:277 msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." msgid "Theme*:" msgstr "Tema*:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +#: resources/qml/Preferences/GeneralPage.qml:323 msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Seccionar automaticamente ao alterar as definições." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +#: resources/qml/Preferences/GeneralPage.qml:331 msgctxt "@option:check" msgid "Slice automatically" msgstr "Seccionar automaticamente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:337 +#: resources/qml/Preferences/GeneralPage.qml:340 +msgctxt "@info:tooltip" +msgid "Show an icon and notifications in the system notification area." +msgstr "Mostre um ícone e notificações na área de notificação do sistema." + +#: resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Add icon to system tray *" +msgstr "Adicione o ícone à bandeja do sistema *" + +#: resources/qml/Preferences/GeneralPage.qml:357 msgctxt "@label" msgid "*You will need to restart the application for these changes to have effect." msgstr "*Terá de reiniciar a aplicação para ativar estas alterações." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +#: resources/qml/Preferences/GeneralPage.qml:373 msgctxt "@label" msgid "Viewport behavior" msgstr "Comportamento da janela" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +#: resources/qml/Preferences/GeneralPage.qml:381 msgctxt "@info:tooltip" msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." msgstr "Realçar, a vermelho, as áreas do modelo sem apoio. Sem suporte, estas áreas podem não ser impressas correctamente." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:369 +#: resources/qml/Preferences/GeneralPage.qml:390 msgctxt "@option:check" msgid "Display overhang" msgstr "Mostrar Saliências (Overhangs)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +#: resources/qml/Preferences/GeneralPage.qml:400 msgctxt "@info:tooltip" msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." msgstr "Destaque as superfícies extra ou em falta do modelo utilizando sinais de aviso. As trajetórias de ferramentas irão falhar muitas vezes partes da geometria pretendida." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:388 +#: resources/qml/Preferences/GeneralPage.qml:409 msgctxt "@option:check" msgid "Display model errors" msgstr "Apresentar erros de modelo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +#: resources/qml/Preferences/GeneralPage.qml:417 msgctxt "@info:tooltip" msgid "Moves the camera so the model is in the center of the view when a model is selected" msgstr "Move a câmara de forma que o modelo fique no centro da visualização quando é selecionado um modelo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:401 +#: resources/qml/Preferences/GeneralPage.qml:422 msgctxt "@action:button" msgid "Center camera when item is selected" msgstr "Centrar câmara ao selecionar item" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +#: resources/qml/Preferences/GeneralPage.qml:432 msgctxt "@info:tooltip" msgid "Should the default zoom behavior of cura be inverted?" msgstr "O comportamento de zoom predefinido do Cura deve ser invertido?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:416 +#: resources/qml/Preferences/GeneralPage.qml:437 msgctxt "@action:button" msgid "Invert the direction of camera zoom." msgstr "Inverta a direção do zoom da câmera." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Should zooming move in the direction of the mouse?" msgstr "O zoom deve deslocar-se na direção do rato?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Zooming towards the mouse is not supported in the orthographic perspective." msgstr "Fazer zoom em direção ao rato não é suportado na perspetiva ortográfica." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:437 +#: resources/qml/Preferences/GeneralPage.qml:458 msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "Fazer Zoom na direção do rato" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +#: resources/qml/Preferences/GeneralPage.qml:484 msgctxt "@info:tooltip" msgid "Should models on the platform be moved so that they no longer intersect?" msgstr "Os modelos, na plataforma, devem ser movidos para que não se intersectem?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:468 +#: resources/qml/Preferences/GeneralPage.qml:489 msgctxt "@option:check" msgid "Ensure models are kept apart" msgstr "Garantir que os modelos não se interceptam" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +#: resources/qml/Preferences/GeneralPage.qml:498 msgctxt "@info:tooltip" msgid "Should models on the platform be moved down to touch the build plate?" msgstr "Pousar os modelos na base de construção?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:482 +#: resources/qml/Preferences/GeneralPage.qml:503 msgctxt "@option:check" msgid "Automatically drop models to the build plate" msgstr "Pousar automaticamente os modelos na base de construção" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +#: resources/qml/Preferences/GeneralPage.qml:515 msgctxt "@info:tooltip" msgid "Show caution message in g-code reader." msgstr "Mostrar mensagem de aviso no leitor de g-code." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503 +#: resources/qml/Preferences/GeneralPage.qml:524 msgctxt "@option:check" msgid "Caution message in g-code reader" msgstr "Mensagem de aviso no leitor de g-code" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +#: resources/qml/Preferences/GeneralPage.qml:532 msgctxt "@info:tooltip" msgid "Should layer be forced into compatibility mode?" msgstr "A vista por camada deve ser forçada a utilizar o modo de compatibilidade?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +#: resources/qml/Preferences/GeneralPage.qml:537 msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Forçar o modo de compatibilidade na visualização por camada (é necessário reiniciar)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +#: resources/qml/Preferences/GeneralPage.qml:547 msgctxt "@info:tooltip" msgid "Should Cura open at the location it was closed?" msgstr "O Cura deve abrir na localização onde foi fechado?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:531 +#: resources/qml/Preferences/GeneralPage.qml:552 msgctxt "@option:check" msgid "Restore window position on start" msgstr "Restaurar posição da janela ao iniciar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +#: resources/qml/Preferences/GeneralPage.qml:562 msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Que tipo de composição de câmara deve ser utilizado?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +#: resources/qml/Preferences/GeneralPage.qml:569 msgctxt "@window:text" msgid "Camera rendering:" msgstr "Composição de câmara:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +#: resources/qml/Preferences/GeneralPage.qml:576 msgid "Perspective" msgstr "Perspetiva" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +#: resources/qml/Preferences/GeneralPage.qml:577 msgid "Orthographic" msgstr "Ortográfica" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +#: resources/qml/Preferences/GeneralPage.qml:617 msgctxt "@label" msgid "Opening and saving files" msgstr "Abrir e guardar ficheiros" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +#: resources/qml/Preferences/GeneralPage.qml:624 msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "Pretende que os ficheiros abertos a partir do ambiente de trabalho ou de aplicações externas sejam executados na mesma instância do Cura?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:608 +#: resources/qml/Preferences/GeneralPage.qml:629 msgctxt "@option:check" msgid "Use a single instance of Cura" msgstr "Utilizar uma única instância do Cura" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +#: resources/qml/Preferences/GeneralPage.qml:640 msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Limpar a base de construção antes de carregar um novo modelo na instância única do Cura?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +#: resources/qml/Preferences/GeneralPage.qml:646 msgctxt "@option:check" msgid "Clear buildplate before loading model into the single instance" msgstr "Limpar base de construção antes de carregar o modelo na instância única" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 +#: resources/qml/Preferences/GeneralPage.qml:656 msgctxt "@info:tooltip" msgid "Should models be scaled to the build volume if they are too large?" msgstr "Os modelos devem ser redimensionados até ao volume de construção se forem demasiado grandes?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +#: resources/qml/Preferences/GeneralPage.qml:661 msgctxt "@option:check" msgid "Scale large models" msgstr "Redimensionar modelos demasiado grandes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +#: resources/qml/Preferences/GeneralPage.qml:671 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 "Um modelo pode parecer extremamente pequeno se, por exemplo, este tiver sido criado em metros e não em milímetros. Estes modelos devem ser redimensionados?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:655 +#: resources/qml/Preferences/GeneralPage.qml:676 msgctxt "@option:check" msgid "Scale extremely small models" msgstr "Redimensionar modelos extremamente pequenos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +#: resources/qml/Preferences/GeneralPage.qml:686 msgctxt "@info:tooltip" msgid "Should models be selected after they are loaded?" msgstr "Selecionar os modelos depois de abertos?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: resources/qml/Preferences/GeneralPage.qml:691 msgctxt "@option:check" msgid "Select models when loaded" msgstr "Selecionar os modelos depois de abertos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +#: resources/qml/Preferences/GeneralPage.qml:701 msgctxt "@info:tooltip" msgid "Should a prefix based on the printer name be added to the print job name automatically?" msgstr "Deve um prefixo com base no nome da impressora ser adicionado ao nome do trabalho de impressão automaticamente?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:685 +#: resources/qml/Preferences/GeneralPage.qml:706 msgctxt "@option:check" msgid "Add machine prefix to job name" msgstr "Adicionar prefixo da máquina ao nome do trabalho" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +#: resources/qml/Preferences/GeneralPage.qml:716 msgctxt "@info:tooltip" msgid "Should a summary be shown when saving a project file?" msgstr "Deve ser apresentado um resumo ao guardar um ficheiro de projeto?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: resources/qml/Preferences/GeneralPage.qml:720 msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Mostrar caixa de diálogo de resumo ao guardar projeto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +#: resources/qml/Preferences/GeneralPage.qml:730 msgctxt "@info:tooltip" msgid "Default behavior when opening a project file" msgstr "Comportamento predefinido ao abrir um ficheiro de projeto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +#: resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@window:text" msgid "Default behavior when opening a project file: " msgstr "Comportamento predefinido ao abrir um ficheiro de projeto: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +#: resources/qml/Preferences/GeneralPage.qml:753 msgctxt "@option:openProject" msgid "Always ask me this" msgstr "Perguntar sempre isto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: resources/qml/Preferences/GeneralPage.qml:754 msgctxt "@option:openProject" msgid "Always open as a project" msgstr "Abrir sempre como projeto" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +#: resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:openProject" msgid "Always import models" msgstr "Importar sempre modelos" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +#: resources/qml/Preferences/GeneralPage.qml:792 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 "Quando tiver realizado alterações a um perfil e mudado para outro, será apresentada uma caixa de diálogo a perguntar se pretende manter as alterações. Caso contrário, pode escolher um comportamento predefinido, sendo que a caixa de diálogo nunca mais é apresentada." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:780 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:36 +#: resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46 msgctxt "@label" msgid "Profiles" msgstr "Perfis" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +#: resources/qml/Preferences/GeneralPage.qml:806 msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Comportamento predefinido para valores de definição alterados ao mudar para um perfil diferente: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:800 +#: resources/qml/Preferences/GeneralPage.qml:821 msgctxt "@option:discardOrKeep" msgid "Always discard changed settings" msgstr "Descartar sempre definições alteradas" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/Preferences/GeneralPage.qml:822 msgctxt "@option:discardOrKeep" msgid "Always transfer changed settings to new profile" msgstr "Transferir sempre definições alteradas para o novo perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +#: resources/qml/Preferences/GeneralPage.qml:856 msgctxt "@label" msgid "Privacy" msgstr "Privacidade" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +#: resources/qml/Preferences/GeneralPage.qml:862 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." +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 "Podem alguns dados anónimos sobre a impressão ser enviados para a Ultimaker? Não são enviadas, nem armazenadas, quaisquer informações pessoais, incluindo modelos, endereços IP ou outro tipo de identificação pessoal." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +#: resources/qml/Preferences/GeneralPage.qml:867 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "Enviar dados (anónimos) sobre a impressão" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +#: resources/qml/Preferences/GeneralPage.qml:897 msgctxt "@label" msgid "Updates" msgstr "Atualizações" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +#: resources/qml/Preferences/GeneralPage.qml:904 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "O Cura deve procurar atualizações quando o programa é iniciado?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:888 +#: resources/qml/Preferences/GeneralPage.qml:909 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Procurar atualizações ao iniciar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +#: resources/qml/Preferences/GeneralPage.qml:925 msgctxt "@info:tooltip" msgid "When checking for updates, only check for stable releases." msgstr "Quando se verificar se existem atualizações, verificar apenas a existência de versões estáveis." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:910 +#: resources/qml/Preferences/GeneralPage.qml:931 msgctxt "@option:radio" msgid "Stable releases only" msgstr "Apenas versões estáveis" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +#: resources/qml/Preferences/GeneralPage.qml:941 msgctxt "@info:tooltip" msgid "When checking for updates, check for both stable and for beta releases." msgstr "Quando se verificar se existem atualizações, verificar tanto a existência de versões estáveis como de versões beta." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:926 +#: resources/qml/Preferences/GeneralPage.qml:947 msgctxt "@option:radio" msgid "Stable and Beta releases" msgstr "Versões estáveis e beta" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +#: resources/qml/Preferences/GeneralPage.qml:957 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 "Fazer uma verificação automática de novos plug-ins sempre que o Cura for iniciado? Recomenda-se vivamente que não desative esta opção!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:941 +#: resources/qml/Preferences/GeneralPage.qml:962 msgctxt "@option:check" msgid "Get notifications for plugin updates" msgstr "Receber notificações para atualizações de plug-ins" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:50 +#: resources/qml/Preferences/MachinesPage.qml:50 msgctxt "@action:button" msgid "Add New" msgstr "Adicionar novo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:134 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +#: resources/qml/Preferences/MachinesPage.qml:147 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:160 +#: resources/qml/Preferences/ProfilesPage.qml:294 msgctxt "@action:button" msgid "Activate" msgstr "Ativar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:146 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:331 +#: resources/qml/Preferences/MachinesPage.qml:159 +#: resources/qml/Preferences/ProfilesPage.qml:331 msgctxt "@action:button" msgid "Rename" msgstr "Mudar Nome" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:72 msgctxt "@label" msgid "Materials compatible with active printer:" msgstr "Materiais compatíveis com a impressora ativa:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:94 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:78 +#: resources/qml/Preferences/ProfilesPage.qml:94 msgctxt "@action:button" msgid "Create new" msgstr "Criar novo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:88 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:90 +#: resources/qml/Preferences/ProfilesPage.qml:88 msgctxt "@action:button" msgid "Import" msgstr "Importar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:101 msgctxt "@action:button" msgid "Sync with Printers" msgstr "Sincronizar com Impressoras" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:311 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:174 +#: resources/qml/Preferences/ProfilesPage.qml:311 msgctxt "@action:button" msgid "Duplicate" msgstr "Duplicar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:342 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:198 +#: resources/qml/Preferences/ProfilesPage.qml:342 msgctxt "@action:button" msgid "Export" msgstr "Exportar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:392 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:212 +#: resources/qml/Preferences/ProfilesPage.qml:392 msgctxt "@title:window" msgid "Confirm Remove" msgstr "Confirmar Remoção" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:393 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:215 +#: resources/qml/Preferences/ProfilesPage.qml:393 msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "Tem a certeza de que deseja remover o perfil %1? Não é possível desfazer esta ação!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:228 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:238 msgctxt "@title:window" msgid "Import Material" msgstr "Importar material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:242 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Material %1 importado com êxito" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:245 msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not import material %1: %2" msgstr "Não foi possível importar o material %1: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:267 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:256 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:267 msgctxt "@title:window" msgid "Export Material" msgstr "Exportar Material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:272 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:272 msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Falha ao exportar material para %1: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:275 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:275 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Material exportado com êxito para %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 msgctxt "@title:window" msgid "Sync materials with printers" msgstr "Sincronizar materiais com impressoras" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 msgctxt "@title:header" msgid "Sync materials with printers" msgstr "Sincronizar materiais com impressoras" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 msgctxt "@text" msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "Com alguns passos simples poderá sincronizar todos os seus perfis de materiais com as suas impressoras." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 msgctxt "@button" msgid "Why do I need to sync material profiles?" msgstr "Por que motivo tenho de sincronizar os perfis de materiais?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 msgctxt "@button" msgid "Start" msgstr "Começar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144 msgctxt "@title:header" msgid "Sign in" msgstr "Iniciar sessão" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150 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 "Para sincronizar automaticamente os perfis de materiais com todas as impressoras ligadas à Digital Factory, tem de ter uma sessão iniciada no Cura." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:446 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:586 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602 msgctxt "@button" msgid "Sync materials with USB" msgstr "Sincronizar materiais através de USB" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 msgctxt "@title:header" msgid "The following printers will receive the new material profiles:" msgstr "As seguintes impressoras vão receber os novos perfis de materiais:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:198 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 msgctxt "@title:header" msgid "Something went wrong when sending the materials to the printers." msgstr "Ocorreu um problema ao enviar os materiais para as impressoras." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:205 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221 msgctxt "@title:header" msgid "Material profiles successfully synced with the following printers:" msgstr "Perfis de materiais foram sincronizados com êxito com as seguintes impressoras:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:429 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445 msgctxt "@button" msgid "Troubleshooting" msgstr "Resolução de problemas" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422 msgctxt "@text Asking the user whether printers are missing in a list." msgid "Printers missing?" msgstr "Faltam impressoras?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:408 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424 msgctxt "@text" msgid "Make sure all your printers are turned ON and connected to Digital Factory." msgstr "Certifique-se de que todas as impressoras estão ON e ligadas com a Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:417 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433 msgctxt "@button" msgid "Refresh List" msgstr "Atualizar lista" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473 msgctxt "@button" msgid "Try again" msgstr "Tente novamente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:461 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Done" msgstr "Concluído" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:606 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622 msgctxt "@button" msgid "Sync" msgstr "Sincronizar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535 msgctxt "@button" msgid "Syncing" msgstr "A sincronizar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553 msgctxt "@title:header" msgid "No printers found" msgstr "Não foi encontrada nenhuma impressora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574 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 "Parece que não tem nenhuma impressora compatível ligada com a Digital Factory. Certifique-se de que a impressora está ligada e que tem o firmware mais recente instalado." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:569 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585 msgctxt "@button" msgid "Learn how to connect your printer to Digital Factory" msgstr "Saiba como ligar a sua impressora à Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:597 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613 msgctxt "@button" msgid "Refresh" msgstr "Atualizar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642 msgctxt "@title:header" msgid "Sync material profiles via USB" msgstr "Sincronizar perfis de materiais via USB" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:632 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648 msgctxt "@text In the UI this is followed by a list of steps the user needs to take." msgid "Follow the following steps to load the new material profiles to your printer." msgstr "Siga os seguintes passos para instalar os novos perfis de materiais na sua impressora." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 msgctxt "@text" msgid "Click the export material archive button." msgstr "Clique no botão para exportar o ficheiro de material." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Guarde o ficheiro .umm numa unidade USB." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 msgctxt "@text" msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." msgstr "Insira a unidade USB na impressora e inicie o procedimento para carregar novos perfis de materiais." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:673 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689 msgctxt "@button" msgid "How to load new material profiles to my printer" msgstr "Como carregar novos perfis de materiais para a minha impressora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:687 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 msgctxt "@button" msgid "Back" msgstr "Anterior" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Export material archive" msgstr "Exportar ficheiro de material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747 msgctxt "@title:window" msgid "Export All Materials" msgstr "Exportar Todos os Materiais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121 +#: resources/qml/Preferences/Materials/MaterialsView.qml:121 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Confirmar Alteração de Diâmetro" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122 +#: resources/qml/Preferences/Materials/MaterialsView.qml:122 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 "O novo diâmetro do filamento está definido como %1 mm, o que não é compatível com o extrusor actual. Pretende prosseguir?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152 +#: resources/qml/Preferences/Materials/MaterialsView.qml:152 msgctxt "@label" msgid "Display Name" msgstr "Nome" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 +#: resources/qml/Preferences/Materials/MaterialsView.qml:171 msgctxt "@label" msgid "Brand" msgstr "Marca" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190 +#: resources/qml/Preferences/Materials/MaterialsView.qml:190 msgctxt "@label" msgid "Material Type" msgstr "Tipo de Material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +#: resources/qml/Preferences/Materials/MaterialsView.qml:210 msgctxt "@label" msgid "Color" msgstr "Cor" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:262 +#: resources/qml/Preferences/Materials/MaterialsView.qml:262 msgctxt "@title" msgid "Material color picker" msgstr "Selecionador de cores do material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:275 +#: resources/qml/Preferences/Materials/MaterialsView.qml:275 msgctxt "@label" msgid "Properties" msgstr "Propriedades" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +#: resources/qml/Preferences/Materials/MaterialsView.qml:286 msgctxt "@label" msgid "Density" msgstr "Densidade" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +#: resources/qml/Preferences/Materials/MaterialsView.qml:319 msgctxt "@label" msgid "Diameter" msgstr "Diâmetro" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:369 +#: resources/qml/Preferences/Materials/MaterialsView.qml:369 msgctxt "@label" msgid "Filament Cost" msgstr "Custo do Filamento" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:401 +#: resources/qml/Preferences/Materials/MaterialsView.qml:401 msgctxt "@label" msgid "Filament weight" msgstr "Peso do Filamento" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:433 +#: resources/qml/Preferences/Materials/MaterialsView.qml:433 msgctxt "@label" msgid "Filament length" msgstr "Comprimento do filamento" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:451 +#: resources/qml/Preferences/Materials/MaterialsView.qml:451 msgctxt "@label" msgid "Cost per Meter" msgstr "Custo por Metro" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:465 +#: resources/qml/Preferences/Materials/MaterialsView.qml:465 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "Este material está associado a %1 e partilha algumas das suas propriedades." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:472 +#: resources/qml/Preferences/Materials/MaterialsView.qml:472 msgctxt "@label" msgid "Unlink Material" msgstr "Desassociar Material" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +#: resources/qml/Preferences/Materials/MaterialsView.qml:485 msgctxt "@label" msgid "Description" msgstr "Descrição" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:503 +#: resources/qml/Preferences/Materials/MaterialsView.qml:503 msgctxt "@label" msgid "Adhesion Information" msgstr "Informações de Aderência" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642 +#: resources/qml/Preferences/Materials/MaterialsView.qml:642 msgctxt "@title" msgid "Information" msgstr "Informações" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:647 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:82 +#: resources/qml/Preferences/Materials/MaterialsView.qml:647 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 msgctxt "@label" msgid "Print settings" msgstr "Definições de impressão" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:59 +#: resources/qml/Preferences/ProfilesPage.qml:59 msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "Perfis compatíveis com a impressora ativa:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:98 +#: resources/qml/Preferences/ProfilesPage.qml:98 msgctxt "@action:tooltip" msgid "Create new profile from current settings/overrides" msgstr "Criar novo perfil a partir das definições/alterações atuais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:125 +#: resources/qml/Preferences/ProfilesPage.qml:125 msgctxt "@action:label" msgid "Some settings from current profile were overwritten." msgstr "Algumas definições do perfil actual foram substituídas." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:140 +#: resources/qml/Preferences/ProfilesPage.qml:140 msgctxt "@action:button" msgid "Update profile." msgstr "Atualizar o perfil." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:143 +#: resources/qml/Preferences/ProfilesPage.qml:143 msgctxt "@action:tooltip" msgid "Update profile with current settings/overrides" msgstr "Atualizar perfil com as definições/substituições atuais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:148 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256 +#: resources/qml/Preferences/ProfilesPage.qml:148 msgctxt "@action:button" msgid "Discard current changes" msgstr "Descartar alterações atuais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:158 +#: resources/qml/Preferences/ProfilesPage.qml:158 msgctxt "@action:label" msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." msgstr "Este perfil utiliza as predefinições especificadas pela impressora, pelo que não tem quaisquer definições/substituições na lista seguinte." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:165 +#: resources/qml/Preferences/ProfilesPage.qml:165 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "As suas definições atuais correspondem ao perfil selecionado." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +#: resources/qml/Preferences/ProfilesPage.qml:175 msgctxt "@title:tab" msgid "Global Settings" msgstr "Definições Globais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: resources/qml/Preferences/ProfilesPage.qml:278 msgctxt "@title:window" msgid "Create Profile" msgstr "Criar Perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:280 +#: resources/qml/Preferences/ProfilesPage.qml:280 msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Forneça um nome para este perfil." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:368 +#: resources/qml/Preferences/ProfilesPage.qml:352 +#: resources/qml/Preferences/ProfilesPage.qml:368 msgctxt "@title:window" msgid "Export Profile" msgstr "Exportar Perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +#: resources/qml/Preferences/ProfilesPage.qml:382 msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Duplicar Perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:409 +#: resources/qml/Preferences/ProfilesPage.qml:409 msgctxt "@title:window" msgid "Rename Profile" msgstr "Mudar Nome do Perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:422 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:429 +#: resources/qml/Preferences/ProfilesPage.qml:422 +#: resources/qml/Preferences/ProfilesPage.qml:429 msgctxt "@title:window" msgid "Import Profile" msgstr "Importar Perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:22 -msgctxt "@title:window" -msgid "Rename" -msgstr "Mudar o nome" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:23 -msgctxt "@info" -msgid "Please provide a new name." -msgstr "Por favor, indique um novo nome." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56 +#: resources/qml/Preferences/SettingVisibilityItem.qml:56 msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." msgstr "Esta definição não é válida para a máquina ativa, e não será visível." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73 +#: resources/qml/Preferences/SettingVisibilityItem.qml:73 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] "Esta definição não é visível devido ao valor da definição: %1. Altere o valor dessa definição, para que esta definição fique visível." msgstr[1] "Esta definição não é visível devido aos valores das seguintes definições: %1. Altere os valores dessas definições, para que esta definição fique visível." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13 +#: resources/qml/Preferences/SettingVisibilityPage.qml:13 msgctxt "@title:tab" msgid "Setting Visibility" msgstr "Visibilidade das Definições" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 +#: resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" msgid "Check all" msgstr "Selecionar tudo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 -msgctxt "@label" -msgid "Extruder" -msgstr "Extrusor" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70 -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." -msgstr "A temperatura-alvo do extrusor. O extrusor irá aquecer ou arrefecer até esta temperatura. Se esta opção for definida como 0, o aquecimento do extrusor será desligado." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "A temperatura atual deste extrusor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "A temperatura-alvo de preaquecimento do extrusor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Cancelar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Preaquecer" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Aquecer o extrusor com antecedência antes de imprimir. Pode continuar a ajustar as definições de impressão durante o aquecimento e não precisará de esperar que o extrusor aqueça quando começar a impressão." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "A cor do material neste extrusor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "O material neste extrusor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "O nozzle inserido neste extrusor." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -msgctxt "@label" -msgid "Build plate" -msgstr "Base de construção" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55 -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 "A temperatura desejada da base aquecida. A base irá aquecer ou arrefecer até esta temperatura. Se esta opção for definida como 0, o aquecimento da base será desligado." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "A temperatura atual da base aquecida." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "A temperatura de pré-aquecimento da base." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Aqueçer a base com antecedência antes de imprimir. Pode continuar a ajustar as definições de impressão durante o aquecimento e não precisará de esperar que a base aqueça quando começar a impressão." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51 -msgctxt "@label" -msgid "Printer control" -msgstr "Controlo da impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66 -msgctxt "@label" -msgid "Jog Position" -msgstr "Posição de deslocação" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Distância de deslocação" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Send G-code" -msgstr "Enviar G-code" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Enviar um comando G-code personalizado para a impressora ligada. Prima \"Enter\" para enviar o comando." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "A impressora não está ligada." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "A impressora de cloud está offline. Verifique se a impressora está ligada e conectada à Internet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Esta impressora não está associada à sua conta. Visite a Ultimaker Digital Factory para estabelecer uma ligação." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "A conectividade de cloud está atualmente indisponível. Inicie sessão para estabelecer ligação com a impressora de cloud." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "A conectividade de cloud está atualmente indisponível. Verifique a sua ligação à Internet." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:235 -msgctxt "@button" -msgid "Add printer" -msgstr "Adicionar Impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Manage printers" -msgstr "Gerir impressoras" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Active print" msgstr "Impressão ativa" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Job Name" msgstr "Nome do trabalho" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +#: resources/qml/PrintMonitor.qml:172 msgctxt "@label" msgid "Printing Time" msgstr "Tempo de Impressão" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +#: resources/qml/PrintMonitor.qml:180 msgctxt "@label" msgid "Estimated time left" msgstr "Tempo restante estimado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 msgctxt "@label" msgid "Profile" msgstr "Perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5616,132 +6169,380 @@ msgstr "" "\n" "Clique para abrir o gestor de perfis." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 +#: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 msgctxt "@label:header" msgid "Custom profiles" msgstr "Perfis personalizados" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 msgctxt "@label shown when we load a Gcode file" msgid "Print setup disabled. G-code file can not be modified." msgstr "Configuração de impressão desativada. O ficheiro G-code não pode ser modificado." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:179 msgctxt "@button" msgid "Recommended" msgstr "Recomendado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156 -msgctxt "@button" -msgid "Custom" -msgstr "Personalizado" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 msgctxt "@label:Should be short" msgid "On" msgstr "Ligado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 msgctxt "@label:Should be short" msgid "Off" msgstr "Desligado" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "Experimental" +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is active and you overwrote some settings." +msgstr "%1 perfil personalizado está ativo e sobrescreveu algumas configurações." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:54 -msgctxt "@info" -msgid "custom profile is active and you overwrote some settings." +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is overriding some settings." +msgstr "%1 perfil personalizado está a sobrepor-se a algumas configurações." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92 +msgctxt "@info %1 is the name of a profile" +msgid "Recommended settings (for %1) were altered." +msgstr "As definições recomendadas (para %1) foram alteradas." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106 +msgctxt "@info %1 is the name of a profile" +msgid "Some setting-values defined in %1 were overridden." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137 msgctxt "@info" -msgid "custom profile is overriding some settings." -msgstr "" +msgid "Reset to defaults." +msgstr "Repor predefinições." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178 msgctxt "@info" -msgid "Some settings were changed." -msgstr "" +msgid "Compare and save." +msgstr "Compare e guarde." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15 msgctxt "@label" msgid "Adhesion" msgstr "Aderência à Base de Construção" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20 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 "Permite a impressão de uma aba ou raft. Isto irá adicionar, respetivamente, uma área plana em torno ou sob a base do seu objeto, que são fáceis de retirar posteriormente." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:198 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102 msgctxt "@label" -msgid "Gradual infill" -msgstr "Enchimento gradual" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:236 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "O enchimento gradual irá aumentar progressivamente a densidade do enchimento em direção ao topo." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 -msgctxt "@label" -msgid "Resolution" +msgid "Recommended print settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111 +msgctxt "@button" +msgid "Show Custom" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27 +msgctxt "@label" +msgid "Resolution" +msgstr "Resolução" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16 +msgctxt "@label" +msgid "Strength" +msgstr "Força" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20 +msgctxt "@label" +msgid "The following settings define the strength of your part." +msgstr "As seguintes definições definem a força da sua peça." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34 +msgctxt "infill_sparse_density description" +msgid "Infill Density" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35 +msgctxt "@label" +msgid "Adjusts the density of infill of the print." +msgstr "Ajusta a densidade do enchimento da impressão." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54 +msgctxt "@action:label" +msgid "Infill Pattern" +msgstr "Padrão de Enchimento" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56 +msgctxt "@label" +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 "" +"O padrão do material de enchimento da impressão:\n" +"\n" +"Para impressões rápidas de modelo não funcional, escolha linha, ziguezague ou enchimento de iluminação.Para uma parte funcional não sujeita a muito stress recomendamos grelha ou triângulo ou tri hexágono.\n" +"\n" +"Para impressões 3D funcionais que exigem alta tensão em múltiplas direções, use a subdivisão cúbica, cúbica, quarto cúbica, octeto e tireoide." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67 +msgctxt "@action:label" +msgid "Shell Thickness" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68 +msgctxt "@label" +msgid "Defines the thickness of your part side walls, roof and floor." +msgstr "Define a espessura das paredes laterais da peça, do telhado e do chão." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16 msgctxt "@label" msgid "Support" msgstr "Suportes" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21 msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these 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." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40 +msgctxt "@action:label" +msgid "Support Type" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41 +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. \n" +"\n" +"A estrutura tipo \"Árvore\" cria ramos em direção às saliências, de forma a que estas sejam suportadas pelas pontas dos ramos, que crescem a partir da base de construção mesmo se for necessário andar em redor do modelos." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53 +msgctxt "@action:label" +msgid "Print with" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54 +msgctxt "@label" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "O extrusor a utilizar para imprimir os suportes. Definição usada com múltiplos extrusores." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67 +msgctxt "@action:label" +msgid "Placement" +msgstr "Colocação" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68 +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." + +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 msgctxt "@error" msgid "Configuration not supported" -msgstr "" +msgstr "Configuração não suportada" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." -msgstr "" +msgstr "Não há perfis disponíveis para a configuração do material/%1 selecionado. Altere sua configuração." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 msgctxt "@button:label" msgid "Learn more" -msgstr "" +msgstr "Saber mais" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +#: resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "Extrusor" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:70 +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." +msgstr "A temperatura-alvo do extrusor. O extrusor irá aquecer ou arrefecer até esta temperatura. Se esta opção for definida como 0, o aquecimento do extrusor será desligado." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:105 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "A temperatura atual deste extrusor." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:182 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "A temperatura-alvo de preaquecimento do extrusor." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:271 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:259 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Cancelar" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:274 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:263 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Preaquecer" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:297 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Aquecer o extrusor com antecedência antes de imprimir. Pode continuar a ajustar as definições de impressão durante o aquecimento e não precisará de esperar que o extrusor aqueça quando começar a impressão." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:335 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "A cor do material neste extrusor." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:367 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "O material neste extrusor." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:400 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "O nozzle inserido neste extrusor." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:25 +msgctxt "@label" +msgid "Build plate" +msgstr "Base de construção" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:55 +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 "A temperatura desejada da base aquecida. A base irá aquecer ou arrefecer até esta temperatura. Se esta opção for definida como 0, o aquecimento da base será desligado." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "A temperatura atual da base aquecida." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:162 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "A temperatura de pré-aquecimento da base." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:286 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Aqueçer a base com antecedência antes de imprimir. Pode continuar a ajustar as definições de impressão durante o aquecimento e não precisará de esperar que a base aqueça quando começar a impressão." + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:51 +msgctxt "@label" +msgid "Printer control" +msgstr "Controlo da impressora" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:66 +msgctxt "@label" +msgid "Jog Position" +msgstr "Posição de deslocação" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:82 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:162 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:217 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Distância de deslocação" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Send G-code" +msgstr "Enviar G-code" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:319 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Enviar um comando G-code personalizado para a impressora ligada. Prima \"Enter\" para enviar o comando." + +#: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "A impressora não está ligada." + +#: resources/qml/PrinterSelector/MachineListButton.qml:34 +msgctxt "@label" +msgid "Hide all connected printers" +msgstr "Ocultar todas as impressoras conectadas" + +#: resources/qml/PrinterSelector/MachineListButton.qml:47 +msgctxt "@label" +msgid "Show all connected printers" +msgstr "Mostrar todas as impressoras conectadas" + +#: resources/qml/PrinterSelector/MachineSelector.qml:64 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "A impressora de cloud está offline. Verifique se a impressora está ligada e conectada à Internet." + +#: resources/qml/PrinterSelector/MachineSelector.qml:68 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Esta impressora não está associada à sua conta. Visite a Ultimaker Digital Factory para estabelecer uma ligação." + +#: resources/qml/PrinterSelector/MachineSelector.qml:73 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "A conectividade de cloud está atualmente indisponível. Inicie sessão para estabelecer ligação com a impressora de cloud." + +#: resources/qml/PrinterSelector/MachineSelector.qml:78 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "A conectividade de cloud está atualmente indisponível. Verifique a sua ligação à Internet." + +#: resources/qml/PrinterSelector/MachineSelectorList.qml:30 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:32 +msgctxt "@label" +msgid "Other printers" +msgstr "Outras impressoras" + +#: resources/qml/ProfileOverview.qml:36 msgctxt "@title:column" msgid "Setting" msgstr "Definição" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +#: resources/qml/ProfileOverview.qml:37 msgctxt "@title:column" msgid "Profile" msgstr "Perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +#: resources/qml/ProfileOverview.qml:38 msgctxt "@title:column" msgid "Current" msgstr "Atual" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +#: resources/qml/ProfileOverview.qml:39 msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unidade" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +#: resources/qml/SearchBar.qml:17 msgctxt "@placeholder" msgid "Search" msgstr "Pesquisar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 +#: resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5752,32 +6553,32 @@ msgstr "" "\n" "Clique para tornar estas definições visíveis." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 +#: resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "Esta definição não é utilizada porque todas as definições influenciadas foram substituídas." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +#: resources/qml/Settings/SettingItem.qml:89 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Modifica" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +#: resources/qml/Settings/SettingItem.qml:94 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "Modificado Por" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:190 +#: resources/qml/Settings/SettingItem.qml:196 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "Esta definição é sempre partilhada entre todos os extrusores. Ao alterá-la aqui, o valor será alterado em todos os extrusores." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +#: resources/qml/Settings/SettingItem.qml:200 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Esta definição está resolvida a partir de valores específicos da extrusora em conflito:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +#: resources/qml/Settings/SettingItem.qml:240 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5788,7 +6589,7 @@ msgstr "" "\n" "Clique para restaurar o valor do perfil." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:334 +#: resources/qml/Settings/SettingItem.qml:340 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5799,3394 +6600,584 @@ msgstr "" "\n" "Clique para restaurar o valor calculado." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +#: resources/qml/Settings/SettingView.qml:48 msgctxt "@label:textbox" msgid "Search settings" msgstr "Procurar definições" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:395 +#: resources/qml/Settings/SettingView.qml:395 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Copiar valor para todos os extrusores" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:404 +#: resources/qml/Settings/SettingView.qml:404 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Copiar todos os valores alterados para todos os extrusores" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:440 +#: resources/qml/Settings/SettingView.qml:440 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Esconder esta definição" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:453 +#: resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Não mostrar esta definição" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:457 +#: resources/qml/Settings/SettingView.qml:457 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Manter esta definição visível" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +#: resources/qml/Toolbar.qml:142 +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" +msgstr[0] "Imprimir Modelo Selecionado com o %1" +msgstr[1] "Imprimir Modelos Selecionados com o %1" + +#: resources/qml/ViewOrientationControls.qml:25 msgctxt "@info:tooltip" msgid "3D View" msgstr "Vista 3D" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +#: resources/qml/ViewOrientationControls.qml:38 msgctxt "@info:tooltip" msgid "Front View" msgstr "Vista Frente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +#: resources/qml/ViewOrientationControls.qml:51 msgctxt "@info:tooltip" msgid "Top View" msgstr "Vista Cima" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +#: resources/qml/ViewOrientationControls.qml:64 msgctxt "@info:tooltip" msgid "Left View" msgstr "Vista esquerda" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +#: resources/qml/ViewOrientationControls.qml:77 msgctxt "@info:tooltip" msgid "Right View" msgstr "Vista direita" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: resources/qml/ViewsSelector.qml:50 msgctxt "@label" msgid "View type" msgstr "Ver tipo" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:47 msgctxt "@label" msgid "Add a Cloud printer" msgstr "Adicionar uma impressora de cloud" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:73 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:73 msgctxt "@label" msgid "Waiting for Cloud response" msgstr "A aguardar resposta da cloud" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:83 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:83 msgctxt "@label" msgid "No printers found in your account?" msgstr "Não foram encontradas impressoras na sua conta?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:117 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:117 msgctxt "@label" msgid "The following printers in your account have been added in Cura:" msgstr "As seguintes impressoras na sua conta foram adicionadas no Cura:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:186 msgctxt "@button" msgid "Add printer manually" msgstr "Adicionar impressora manualmente" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 msgctxt "@label" msgid "Manufacturer" msgstr "Fabricante" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Profile author" msgstr "Autor do perfil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 msgctxt "@label" msgid "Printer name" msgstr "Nome da impressora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 msgctxt "@text" msgid "Please name your printer" msgstr "Atribuir um nome à impressora" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "Adicionar uma impressora" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:38 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Adicionar uma impressora em rede" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:87 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Adicionar uma impressora sem rede" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 msgctxt "@label" msgid "There is no printer found over your network." msgstr "Não foi encontrada nenhuma impressora na sua rede." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 msgctxt "@label" msgid "Refresh" msgstr "Atualizar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 msgctxt "@label" msgid "Add printer by IP" msgstr "Adicionar impressora por IP" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Adicionar impressora de cloud" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205 msgctxt "@label" msgid "Troubleshooting" msgstr "Resolução de problemas" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 msgctxt "@label" msgid "Add printer by IP address" msgstr "Adicionar impressora por endereço IP" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Introduza o endereço IP da sua impressora." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 msgctxt "@button" msgid "Add" msgstr "Adicionar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 msgctxt "@label" msgid "Could not connect to device." msgstr "Não foi possível ligar ao dispositivo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Não se consegue ligar a uma impressora Ultimaker?" +msgid "Can't connect to your UltiMaker printer?" +msgstr "Não se consegue ligar a uma impressora UltiMaker?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 msgctxt "@label" msgid "The printer at this address has not responded yet." msgstr "A impressora neste endereço ainda não respondeu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 msgctxt "@label" msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." msgstr "Não foi possível adicionar esta impressora porque é uma impressora desconhecida ou não aloja um grupo." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 msgctxt "@button" msgid "Connect" msgstr "Ligar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Adicionar uma impressora em rede" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Adicionar uma impressora sem rede" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102 +msgctxt "@button" +msgid "Add UltiMaker printer via Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "In order to start using Cura you will need to configure a printer." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36 +msgctxt "@label" +msgid "What printer would you like to setup?" +msgstr "Qual impressora gostaria de definir?" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55 +msgctxt "@button" +msgid "UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64 +msgctxt "@button" +msgid "Non UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73 +msgctxt "@button" +msgid "Learn more about adding printers to Cura" +msgstr "Saiba mais sobre como adicionar impressoras ao Cura" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29 +msgctxt "@label" +msgid "Add printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33 +msgctxt "@label" +msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70 +msgctxt "@label" +msgid "If you are trying to add a new UltiMaker printer to Cura" +msgstr "Se estiver a tentar adicionar uma nova impressora UltiMaker ao Cura" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80 +msgctxt "@info" +msgid "Sign in into UltiMaker Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81 +msgctxt "@info" +msgid "Follow the procedure to add a new printer" +msgstr "Siga o procedimento para adicionar uma nova impressora" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82 +msgctxt "@info" +msgid "Your new printer will automatically appear in Cura" +msgstr "A sua nova impressora aparecerá automaticamente no Cura" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100 +msgctxt "@button" +msgid "Learn more" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121 +msgctxt "@button" +msgid "Add local printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129 +msgctxt "@button" +msgid "Sign in to Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133 +msgctxt "@button" +msgid "Waiting for new printers" +msgstr "" + +#: resources/qml/WelcomePages/ChangelogContent.qml:24 msgctxt "@label" msgid "Release Notes" msgstr "Notas da versão" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:123 +#: resources/qml/WelcomePages/CloudContent.qml:123 msgctxt "@text" msgid "Add material settings and plugins from the Marketplace" msgstr "Adicione definições de materiais e plug-ins do Marketplace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:149 +#: resources/qml/WelcomePages/CloudContent.qml:149 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" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:175 +#: resources/qml/WelcomePages/CloudContent.qml:175 msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Partilhe ideias e obtenha ajuda dos mais de 48.000 utilizadores da Comunidade Ultimaker" +msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" +msgstr "Partilhe ideias e obtenha ajuda dos mais de 48.000 utilizadores da Comunidade UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +#: resources/qml/WelcomePages/CloudContent.qml:189 msgctxt "@button" msgid "Skip" msgstr "Ignorar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +#: resources/qml/WelcomePages/CloudContent.qml:201 msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Crie uma Conta Ultimaker gratuita" +msgid "Create a free UltiMaker Account" +msgstr "Crie uma Conta UltiMaker gratuita" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Ajude-nos a melhorar o Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:56 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "O Ultimaker Cura recolhe dados anónimos para melhorar a qualidade da impressão e a experiência do utilizador, incluindo:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:68 -msgctxt "@text" -msgid "Machine types" -msgstr "Tipos de máquina" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:74 -msgctxt "@text" -msgid "Material usage" -msgstr "Utilização do material" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:80 -msgctxt "@text" -msgid "Number of slices" -msgstr "Número de segmentos" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:86 -msgctxt "@text" -msgid "Print settings" -msgstr "Definições de impressão" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:99 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Os dados recolhidos pelo Ultimaker Cura não conterão quaisquer informações pessoais." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:100 -msgctxt "@text" -msgid "More information" -msgstr "Mais informações" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +#: resources/qml/WelcomePages/DropDownWidget.qml:93 msgctxt "@label" msgid "Empty" msgstr "Vazio" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +#: resources/qml/WelcomePages/UserAgreementContent.qml:23 msgctxt "@label" msgid "User Agreement" msgstr "Contrato de utilizador" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67 +#: resources/qml/WelcomePages/UserAgreementContent.qml:67 msgctxt "@button" msgid "Decline and close" msgstr "Rejeitar e fechar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Bem-vindo ao Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:67 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "Siga estes passos para configurar o Ultimaker Cura. Este processo irá demorar apenas alguns momentos." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:82 -msgctxt "@button" -msgid "Get started" -msgstr "Iniciar" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: resources/qml/WelcomePages/WhatsNewContent.qml:28 msgctxt "@label" msgid "What's New" msgstr "Novidades" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: resources/qml/Widgets/ComboBox.qml:18 msgctxt "@label" msgid "No items to select from" msgstr "Nenhum item para selecionar" -#: ModelChecker/plugin.json -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." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "Verificador de Modelos" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Fornece suporte para ler ficheiros 3MF." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "Leitor de 3MF" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Possiblita a gravação de ficheiros 3MF." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "Gravador 3MF" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Fornece suporte para ler ficheiros AMF." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "Leitor de AMF" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Efetua uma cópia de segurança e repõe a sua configuração." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Cópias de segurança do Cura" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Fornece a hiperligação para o back-end de seccionamento do CuraEngine." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Back-end do CuraEngine" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Fornece suporte para importar perfis Cura." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Leitor de Perfis Cura" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Possibilita a exportação de perfis do Cura." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Gravador de perfis Cura" - -#: DigitalLibrary/plugin.json -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." - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Biblioteca Digital Ultimaker" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Procura e verifica se existem atualizações de firmware." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Verificador Atualizações Firmware" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Disponibiliza as ações da máquina para atualizar o firmware." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Atualizador de firmware" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lê o g-code a partir de um arquivo comprimido." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Leitor de G-code comprimido" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Grava o g-code num arquivo comprimido." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Gravador de G-code comprimido" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Permite importar perfis a partir de ficheiros g-code." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Leitor de perfis G-code" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permite abrir e visualizar ficheiros G-code." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "Leitor de G-code" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Grava o g-code num ficheiro." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "Gravador de G-code" - -#: ImageReader/plugin.json -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." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Leitor de imagens" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Permite importar perfis de versões antigas do Cura." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Leitor de perfis antigos do Cura" - -#: MachineSettingsAction/plugin.json -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.)." - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Função Definições da Máquina" - -#: Marketplace/plugin.json -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." - -#: Marketplace/plugin.json -msgctxt "name" -msgid "Marketplace" -msgstr "Marketplace" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Fornece uma fase de monitorização no Cura." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Fase de monitorização" - -#: PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Fornece as definições por-modelo." - -#: PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Ferramenta de definições Por-Modelo" - -#: PostProcessingPlugin/plugin.json -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" - -#: PostProcessingPlugin/plugin.json -msgctxt "name" -msgid "Post Processing" -msgstr "Pós-Processamento" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Fornece uma fase de preparação no Cura." - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "Fase de preparação" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Fornece uma fase de pré-visualização no Cura." - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "Fase de pré-visualização" - -#: RemovableDriveOutputDevice/plugin.json -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." - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Plug-in de dispositivo de saída da unidade amovível" - -#: SentryLogger/plugin.json -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\"" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentry Logger" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Permite pré-visualizar os dados das camadas seccionadas." - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "Visualização por camadas" - -#: SliceInfoPlugin/plugin.json -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." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Informações do seccionamento" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Permite a visualização (simples) dos objetos como sólidos." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Vista Sólidos" - -#: SupportEraser/plugin.json -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" - -#: SupportEraser/plugin.json -msgctxt "name" -msgid "Support Eraser" -msgstr "Eliminador de suportes" - -#: TrimeshReader/plugin.json -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Fornece suporte para a leitura de ficheiros modelo." - -#: TrimeshReader/plugin.json -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Leitor de Trimesh" - -#: UFPReader/plugin.json -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Fornece suporte para ler pacotes de formato Ultimaker." - -#: UFPReader/plugin.json -msgctxt "name" -msgid "UFP Reader" -msgstr "Leitor de UFP" - -#: UFPWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Permite a gravação de arquivos Ultimaker Format." - -#: UFPWriter/plugin.json -msgctxt "name" -msgid "UFP Writer" -msgstr "Gravador de UFP" - -#: UltimakerMachineActions/plugin.json -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.)." - -#: UltimakerMachineActions/plugin.json -msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Funções para impressoras Ultimaker" - -#: UM3NetworkPrinting/plugin.json -msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Gere as ligações de rede com as impressoras em rede Ultimaker." - -#: UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Ligação de rede Ultimaker" - -#: USBPrinting/plugin.json -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." - -#: USBPrinting/plugin.json -msgctxt "name" -msgid "USB printing" -msgstr "Impressão USB" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Atualização da versão 2.1 para 2.2" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Atualização da versão 2.2 para 2.4" - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Atualização da versão 2.5 para 2.6" - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Atualização da versão 2.6 para 2.7" - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Atualização da versão 2.7 para 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Atualização da versão 3.0 para 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Atualização da versão 3.2 para 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Atualização da versão 3.3 para 3.4" - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Atualização da versão 3.4 para 3.5" - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Atualização da versão 3.5 para 4.0" - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Atualização da versão 4.0 para 4.1" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Atualização da versão 4.11 para a versão 4.12" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Atualização do Cura versão 4.13 para 5.0" - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Atualização da versão 4.1 para 4.2" - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Atualização da versão 4.2 para 4.3" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Atualização da versão 4.3 para 4.4" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Atualização da versão 4.4 para a versão 4.5" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Atualização da versão 4.5 para a versão 4.6" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -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" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -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" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Atualização da versão 4.7 para 4.8" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Atualização da versão 4.8 para 4.9" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Atualização da versão 4.9 para 4.10" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Fornece suporte para ler ficheiros X3D." - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "Leitor de X3D" - -#: XmlMaterialProfile/plugin.json -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." - -#: XmlMaterialProfile/plugin.json -msgctxt "name" -msgid "Material Profiles" -msgstr "Perfis de Materiais" - -#: XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Permite a visualização em Raio-X." - -#: XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "Vista Raio-X" +#~ 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 "" +#~ "- Adicione definições de materiais e plug-ins do Marketplace\n" +#~ "- Efetue uma cópia de segurança e sincronize as definições de materiais e plug-ins\n" +#~ "- Partilhe ideias e obtenha ajuda dos mais de 48.000 utilizadores da Comunidade Ultimaker" + +#~ 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 "" +#~ "

    Ups, o Ultimaker Cura encontrou um possível problema.

    \n" +#~ "

    Foi encontrado um erro irrecuperável durante o arranque da aplicação. Este pode ter sido causado por alguns ficheiros de configuração incorrectos. Sugerimos que faça um backup e reponha a sua configuração.

    \n" +#~ "

    Os backups estão localizados na pasta de configuração.

    \n" +#~ "

    Por favor envie-nos este Relatório de Falhas para podermos resolver o problema.

    \n" +#~ " " #~ msgctxt "@label" -#~ msgid "Not yet initialized
    " -#~ msgstr "Ainda não inicializado
    " +#~ msgid "Add a printer" +#~ msgstr "Adicionar uma impressora" #~ msgctxt "@label" -#~ msgid "By" -#~ msgstr "Por" +#~ msgid "Add cloud printer" +#~ msgstr "Adicionar impressora de cloud" -#~ msgctxt "@Label" -#~ msgid "Static type checker for Python" -#~ msgstr "Verificador de tipo estático para Python" - -#~ msgctxt "@Label" -#~ msgid "Root Certificates for validating SSL trustworthiness" -#~ msgstr "Certificados de raiz para validar a credibilidade SSL" +#~ msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate." +#~ msgid "Add more materials from Marketplace" +#~ msgstr "Adicionar mais materiais disponíveis no Marketplace" #~ msgctxt "@label" -#~ msgid "Python extensions for Microsoft Windows" -#~ msgstr "Extensões Python para Microsoft Windows" +#~ msgid "Aluminum" +#~ msgstr "Alumínio" + +#~ msgctxt "@tooltip:button" +#~ msgid "Become a 3D printing expert with Ultimaker e-learning." +#~ msgstr "Torne-se um perito em impressão 3D com os cursos de e-learning da Ultimaker." #~ msgctxt "@label" -#~ msgid "SVG icons" -#~ msgstr "Ícones SVG" +#~ msgid "Can't connect to your Ultimaker printer?" +#~ msgstr "Não se consegue ligar a uma impressora Ultimaker?" -#~ msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" -#~ msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" -#~ msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" -#~ msgstr[0] "Não existe um perfil %1 para a configuração do extrusor %2. O objetivo predefinido será usado como alternativa" -#~ msgstr[1] "Não existe um perfil %1 para as configurações dos extrusores %2. O objetivo predefinido será usado como alternativa" +#~ msgctxt "@label" +#~ msgid "Change build plate to %1 (This cannot be overridden)." +#~ msgstr "Alterar base de construção para %1 (isto não pode ser substituído)." -#~ msgctxt "@tooltip" -#~ msgid "You have modified some profile settings. If you want to change these go to custom mode." -#~ msgstr "Algumas definições do perfil foram modificadas. Se pretender alterá-las, aceda ao modo Personalizado." +#~ msgctxt "@info:title" +#~ msgid "Changes detected from your Ultimaker account" +#~ msgstr "Foram detetadas alterações da sua conta Ultimaker" -#~ msgctxt "@action:button" -#~ msgid "Sync materials with printers" -#~ msgstr "Sincronizar materiais" +#~ msgctxt "@tooltip:button" +#~ msgid "Consult the Ultimaker Community." +#~ msgstr "Consulte a Comunidade Ultimaker." -#~ msgctxt "@title:window" -#~ msgid "Convert Image..." -#~ msgstr "Converter imagem..." +#~ msgctxt "@text" +#~ msgid "Create a free Ultimaker Account" +#~ msgstr "Crie uma Conta Ultimaker gratuita" + +#~ msgctxt "@button" +#~ msgid "Create a free Ultimaker account" +#~ msgstr "Crie uma conta Ultimaker gratuita" + +#~ msgctxt "@info:status" +#~ msgid "Cura does not accurately display layers when Wire Printing is enabled." +#~ msgstr "Quando a opção Wire Printing está ativa, o Cura não permite visualizar as camadas de uma forma precisa." + +#~ msgctxt "@info:credit" +#~ msgid "" +#~ "Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +#~ "Cura proudly uses the following open source projects:" +#~ msgstr "" +#~ "O Cura foi desenvolvido pela Ultimaker B.V. em colaboração com a comunidade.\n" +#~ "O Cura tem o prazer de utilizar os seguintes projetos open source:" + +#~ msgctxt "@button" +#~ msgid "Custom" +#~ msgstr "Personalizado" + +#~ msgctxt "@text" +#~ msgid "Data collected by Ultimaker Cura will not contain any personal information." +#~ msgstr "Os dados recolhidos pelo Ultimaker Cura não conterão quaisquer informações pessoais." + +#~ 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 "@label" +#~ 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 "@button" +#~ msgid "Get started" +#~ msgstr "Iniciar" + +#~ msgctxt "@label" +#~ msgid "Glass" +#~ msgstr "Vidro" + +#~ msgctxt "@label" +#~ msgid "Gradual infill" +#~ msgstr "Enchimento gradual" + +#~ msgctxt "@label" +#~ msgid "Gradual infill will gradually increase the amount of infill towards the top." +#~ msgstr "O enchimento gradual irá aumentar progressivamente a densidade do enchimento em direção ao topo." + +#~ msgctxt "@label" +#~ msgid "Help us to improve UltiMaker Cura" +#~ msgstr "Ajude-nos a melhorar o UltiMaker Cura" + +#~ msgctxt "@label" +#~ msgid "Help us to improve Ultimaker Cura" +#~ msgstr "Ajude-nos a melhorar o Ultimaker Cura" #~ msgctxt "@info:tooltip" -#~ msgid "The width in millimeters on the build plate." -#~ msgstr "A largura em milímetros na base de construção." - -#~ msgctxt "@title" -#~ msgid "Marketplace" -#~ msgstr "Mercado" - -#~ msgctxt "@info" -#~ msgid "You will need to restart Cura before changes in packages have effect." -#~ msgstr "É necessário reiniciar o Cura para que as alterações dos pacotes sejam aplicadas." - -#~ msgctxt "@action:button" -#~ msgid "Install" -#~ msgstr "Instalar" - -#~ msgctxt "@action:button" -#~ msgid "Installed" -#~ msgstr "Instalado" - -#~ msgctxt "@label" -#~ msgid "Premium" -#~ msgstr "Premium" +#~ msgid "How should the conflict in the machine be resolved?" +#~ msgstr "Como deve ser resolvido o conflito da máquina?" #~ msgctxt "@info:tooltip" -#~ msgid "Go to Web Marketplace" -#~ msgstr "Ir para Mercado na Web" +#~ msgid "How should the conflict in the material be resolved?" +#~ msgstr "Como deve ser resolvido o conflito no material?" + +#~ msgctxt "@info:tooltip" +#~ msgid "How should the conflict in the profile be resolved?" +#~ msgstr "Como deve ser resolvido o conflito no perfil?" + +#~ msgctxt "@tooltip:button" +#~ msgid "Learn how to get started with Ultimaker Cura." +#~ msgstr "Saiba como começar a utilizar o Ultimaker Cura." + +#~ msgctxt "@text" +#~ msgid "Machine types" +#~ msgstr "Tipos de máquina" + +#~ 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 "@text" +#~ msgid "Material usage" +#~ msgstr "Utilização do material" + +#~ msgctxt "@text" +#~ msgid "More information" +#~ msgstr "Mais informações" + +#~ msgctxt "@text" +#~ msgid "Number of slices" +#~ msgstr "Número de segmentos" + +#~ msgctxt "@text" +#~ msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." +#~ msgstr "Siga estes passos para configurar o Ultimaker Cura. Este processo irá demorar apenas alguns momentos." #~ msgctxt "@label" -#~ msgid "Search materials" -#~ msgstr "Procurar materiais" - -#~ msgctxt "@label" -#~ msgid "Compatibility" -#~ msgstr "Compatibilidade" - -#~ msgctxt "@label:table_header" -#~ msgid "Machine" -#~ msgstr "Máquina" - -#~ msgctxt "@label:table_header" -#~ msgid "Build Plate" -#~ msgstr "Base de construção" - -#~ msgctxt "@label:table_header" -#~ msgid "Support" -#~ msgstr "Suportes" - -#~ msgctxt "@label:table_header" -#~ msgid "Quality" -#~ msgstr "Qualidade" - -#~ msgctxt "@action:label" -#~ msgid "Technical Data Sheet" -#~ msgstr "Ficha técnica" - -#~ msgctxt "@action:label" -#~ msgid "Safety Data Sheet" -#~ msgstr "Ficha de segurança" - -#~ msgctxt "@action:label" -#~ msgid "Printing Guidelines" -#~ msgstr "Instruções de impressão" - -#~ msgctxt "@action:label" -#~ msgid "Website" -#~ msgstr "Site" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to install or update" -#~ msgstr "É necessário Log in para instalar ou atualizar" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Buy material spools" -#~ msgstr "Comprar bobinas de material" - -#~ msgctxt "@action:button" -#~ msgid "Update" -#~ msgstr "Atualizar" - -#~ msgctxt "@action:button" -#~ msgid "Updating" -#~ msgstr "A Actualizar" - -#~ msgctxt "@action:button" -#~ msgid "Updated" -#~ msgstr "Atualizado" - -#~ msgctxt "@action:button" -#~ msgid "Back" -#~ msgstr "Anterior" - -#~ msgctxt "@title:tab" -#~ msgid "Plugins" -#~ msgstr "Plug-ins" - -#~ msgctxt "@title:tab" -#~ msgid "Installed" -#~ msgstr "Instalado" - -#~ msgctxt "@label" -#~ msgid "Will install upon restarting" -#~ msgstr "Será instalado após reiniciar" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to update" -#~ msgstr "É necessário Log in para atualizar" - -#~ msgctxt "@action:button" -#~ msgid "Downgrade" -#~ msgstr "Repor Versão Anterior" - -#~ msgctxt "@action:button" -#~ msgid "Uninstall" -#~ msgstr "Desinstalar" - -#~ msgctxt "@label" -#~ msgid "Community Contributions" -#~ msgstr "Contribuições comunitárias" - -#~ msgctxt "@label" -#~ msgid "Community Plugins" -#~ msgstr "Plug-ins comunitários" - -#~ msgctxt "@label" -#~ msgid "Generic Materials" -#~ msgstr "Materiais genéricos" - -#~ msgctxt "@info" -#~ msgid "Fetching packages..." -#~ msgstr "A obter pacotes..." - -#~ msgctxt "@label" -#~ msgid "Website" -#~ msgstr "Site" - -#~ msgctxt "@label" -#~ msgid "Email" -#~ msgstr "E-mail" +#~ msgid "Please select any upgrades made to this Ultimaker Original" +#~ msgstr "Selecione quaisquer atualizações realizadas a esta Ultimaker Original" #~ msgctxt "@description" #~ msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" #~ msgstr "Inicie sessão para obter plug-ins e materiais verificados para o Ultimaker Cura Enterprise" -#~ msgctxt "@label" -#~ msgid "Version" -#~ msgstr "Versão" +#~ msgctxt "@text" +#~ msgid "Print settings" +#~ msgstr "Definições de impressão" -#~ msgctxt "@label" -#~ msgid "Last updated" -#~ msgstr "Actualizado em" - -#~ msgctxt "@label" -#~ msgid "Downloads" -#~ msgstr "Transferências" - -#~ msgctxt "@title:tab" -#~ msgid "Installed plugins" -#~ msgstr "Plug-ins instalados" - -#~ msgctxt "@info" -#~ msgid "No plugin has been installed." -#~ msgstr "Não foi instalado qualquer plug-in." - -#~ msgctxt "@title:tab" -#~ msgid "Installed materials" -#~ msgstr "Materiais instalados" - -#~ msgctxt "@info" -#~ msgid "No material has been installed." -#~ msgstr "Não foi instalado qualquer material." - -#~ msgctxt "@title:tab" -#~ msgid "Bundled plugins" -#~ msgstr "Plug-ins em pacote" - -#~ msgctxt "@title:tab" -#~ msgid "Bundled materials" -#~ msgstr "Materiais em pacote" - -#~ msgctxt "@info" -#~ msgid "Could not connect to the Cura Package database. Please check your connection." -#~ msgstr "Não foi possível aceder á base de dados de Pacotes do Cura. Por favor verifique a sua ligação." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall" -#~ msgstr "Confirmar desinstalação" - -#~ msgctxt "@text:window" -#~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -#~ msgstr "Está a desinstalar materiais e/ou perfis que ainda estão a ser utilizados. Mediante confirmação, as predefinições dos seguintes materiais/perfis serão repostas." - -#~ msgctxt "@text:window" -#~ msgid "Materials" -#~ msgstr "Materiais" - -#~ msgctxt "@text:window" -#~ msgid "Profiles" -#~ msgstr "Perfis" - -#~ msgctxt "@action:button" -#~ msgid "Confirm" -#~ msgstr "Confirmar" - -#~ msgctxt "@info:tooltip" -#~ msgid "Some things could be problematic in this print. Click to see tips for adjustment." -#~ msgstr "Alguns factores podem vir a ser problemáticos nesta impressão. Clique para ver algumas sugestões para melhorar a qualidade da impressão." - -#~ msgctxt "@label" -#~ msgid "Support library for handling planar objects" -#~ msgstr "Biblioteca de apoio para processamento de objetos planos" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "Personalizou algumas definições de perfil.\n" -#~ "Pretende manter estas definições alteradas depois de trocar de perfis?\n" -#~ "Como alternativa, pode descartar as alterações para carregar as predefinições a partir de '%1'." - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Build plate" -#~ msgstr "&Base de construção" - -#~ msgctxt "@label" -#~ msgid "Create" -#~ msgstr "Criar" - -#~ msgctxt "@label" -#~ msgid "Duplicate" -#~ msgstr "Duplicar" - -#~ msgctxt "@label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "Impressora: %1" - -#~ msgctxt "@action:button" -#~ msgid "Update profile with current settings/overrides" -#~ msgstr "Atualizar perfil com as definições/substituições atuais" - -#~ msgctxt "@label" -#~ msgid "Theme:" -#~ msgstr "Tema:" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for these changes to have effect." -#~ msgstr "É necessário reiniciar a aplicação para que estas alterações sejam aplicadas." - -#~ msgctxt "@action:button" -#~ msgid "More information" -#~ msgstr "Mais informações" - -#~ msgctxt "@action:button" -#~ msgid "Create" -#~ msgstr "Criar" - -#~ msgctxt "@action:button Sending materials to printers" -#~ msgid "Sync with Printers" -#~ msgstr "Sincronizar com Impressoras" - -#~ msgctxt "@action:label" -#~ msgid "Printer" -#~ msgstr "Impressora" - -#~ msgctxt "@title:column" -#~ msgid "Unit" -#~ msgstr "Unidade" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting Guide" -#~ msgstr "Mostrar Guia de resolução de problemas online" - -#~ msgctxt "@action:inmenu" -#~ msgid "Add more materials from Marketplace" -#~ msgstr "Use o Mercado para adicionar outros materiais" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange All Models To All Build Plates" -#~ msgstr "Dispor todos os modelos em todas as bases de construção" - -#~ msgctxt "@action:menu" -#~ msgid "&Marketplace" -#~ msgstr "&Mercado" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new Cura packages." -#~ msgstr "Encontre, organize e instale novos pacotes para o Cura." - -#~ msgctxt "name" -#~ msgid "Toolbox" -#~ msgstr "Toolbox" - -#~ msgctxt "description" -#~ msgid "Provides the Simulation view." -#~ msgstr "Permite a visualização por camadas." - -#~ msgctxt "@info:status" -#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Envie e monitorize trabalhos de impressão a partir de qualquer lugar através da sua conta Ultimaker." - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Digital Factory" -#~ msgstr "Ligar à Ultimaker Digital Factory" - -#~ msgctxt "@info" -#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." -#~ msgstr "Não é possível visualizar os feeds das câmaras das impressoras na cloud a partir do Ultimaker Cura." - -#~ 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 not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -#~ msgstr "Poderão estar disponíveis novas funcionalidades ou correções de erros para {machine_name}! Se ainda não tiver a versão mais recente, recomendamos que atualize o firmware da sua impressora para a versão {latest_version}." - -#~ msgctxt "@info:title The %s gets replaced with the printer name." -#~ msgid "New %s firmware available" -#~ msgstr "Novo firmware para %s está disponível" - -#~ msgctxt "@info:status" -#~ msgid "Global stack is missing." -#~ msgstr "A pilha global está em falta." - -#~ msgctxt "@info:status" -#~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces." -#~ msgstr "O seu modelo não é uma variedade. As áreas destacadas indicam superfícies extra ou em falta." - -#~ msgctxt "@info:title" -#~ msgid "Model errors" -#~ msgstr "Erros de modelo" - -#~ msgctxt "@label:listbox" -#~ msgid "Layer thickness" -#~ msgstr "Espessura da Camada" - -#~ msgctxt "@label" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "A chave para a impressão 3D em rede" +#~ msgctxt "@message:description" +#~ msgid "Report a bug on Ultimaker Cura's issue tracker." +#~ msgstr "Reportar um erro no registo de problemas do Ultimaker Cura." #~ msgctxt "@text" -#~ msgid "" -#~ "- Customize your experience with more print profiles and plugins\n" -#~ "- Stay flexible by syncing your setup and loading it anywhere\n" -#~ "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "" -#~ "- Personalize a sua experiência com mais perfis e plug-ins de impressão\n" -#~ "- Mantenha a sua flexibilidade. Sincronize a sua configuração e carregue-a em qualquer local\n" -#~ "- Aumente a eficiência com um fluxo de trabalho remoto nas impressoras Ultimaker" +#~ msgid "Select and install material profiles optimised for your Ultimaker 3D printers." +#~ msgstr "Selecione e instale perfis de materiais otimizados para as impressoras 3D Ultimaker." -#~ msgctxt "@button" -#~ msgid "Create account" -#~ msgstr "Criar conta" +#~ msgctxt "@action:button" +#~ msgid "Send crash report to Ultimaker" +#~ msgstr "Enviar relatório de falhas para a Ultimaker" -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete Selected Model" -#~ msgid_plural "Delete Selected Models" -#~ msgstr[0] "Apagar Modelo Selecionado" -#~ msgstr[1] "Apagar Modelos Selecionados" +#~ msgctxt "@text" +#~ msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" +#~ msgstr "Partilhe ideias e obtenha ajuda dos mais de 48.000 utilizadores da Comunidade Ultimaker" -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Center Selected Model" -#~ msgid_plural "Center Selected Models" -#~ msgstr[0] "Centrar modelo selecionado" -#~ msgstr[1] "Centrar modelos selecionados" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Multiply Selected Model" -#~ msgid_plural "Multiply Selected Models" -#~ msgstr[0] "Multiplicar modelo selecionado" -#~ msgstr[1] "Multiplicar modelos selecionados" - -#~ msgctxt "@button" -#~ msgid "Finish" -#~ msgstr "Concluir" +#~ 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 "Podem alguns dados anónimos sobre a impressão ser enviados para a Ultimaker? Não são enviadas, nem armazenadas, quaisquer informações pessoais, incluindo modelos, endereços IP ou outro tipo de identificação pessoal." #~ msgctxt "@label" +#~ msgid "Sign in to the Ultimaker platform" +#~ msgstr "Inicie a sessão na plataforma Ultimaker" + +#~ msgctxt "@info:title" +#~ msgid "Simulation View" +#~ msgstr "Visualização por Camadas" + +#~ msgctxt "@info" +#~ msgid "Some settings were changed." +#~ msgstr "Algumas definições foram alteradas." + +#~ msgctxt "@text" +#~ msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users." +#~ msgstr "Simplifique o seu fluxo de trabalho e personalize a sua utilização do Ultimaker Cura com plug-ins criados pela nossa incrível comunidade de utilizadores." + +#~ msgctxt "@button" #~ msgid "Ultimaker Account" #~ msgstr "Conta Ultimaker" -#~ msgctxt "@text" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "A chave para a impressão 3D em rede" - -#~ msgctxt "@text" -#~ msgid "- Customize your experience with more print profiles and plugins" -#~ msgstr "Personalize a sua experiência com mais perfis e plug-ins de impressão" - -#~ msgctxt "@text" -#~ msgid "- Stay flexible by syncing your setup and loading it anywhere" -#~ msgstr "Mantenha a sua flexibilidade. Sincronize a sua configuração e carregue-a em qualquer local" - -#~ msgctxt "@text" -#~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "Aumente a eficiência com um fluxo de trabalho remoto nas impressoras Ultimaker" - -#~ msgctxt "@text" -#~ msgid "" -#~ "Please follow these steps to set up\n" -#~ "Ultimaker Cura. This will only take a few moments." -#~ msgstr "" -#~ "Siga estes passos para configurar o\n" -#~ "Ultimaker Cura. Este processo deverá demorar apenas alguns momentos." - -#~ msgctxt "@label" -#~ msgid "What's new in Ultimaker Cura" -#~ msgstr "Novidades no Ultimaker Cura" - -#~ msgctxt "@label ({} is object name)" -#~ msgid "Are you sure you wish to remove {}? This cannot be undone!" -#~ msgstr "Tem a certeza de que pretende remover {}? Esta ação não pode ser anulada!" - -#~ msgctxt "@info:status" -#~ msgid "The selected model was too small to load." -#~ msgstr "O modelo selecionado era demasiado pequeno para carregar." - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profile {0}" -#~ msgstr "Perfil {0} importado com êxito" - -#~ msgctxt "@info:status" -#~ msgid "Could not find a quality type {0} for the current configuration." -#~ msgstr "Não foi possível encontrar um tipo de qualidade {0} para a configuração atual." - -#~ msgctxt "info:status" -#~ msgid "Adding printer {} ({}) from your account" -#~ msgstr "A adicionar impressora {} ({}) a partir da sua conta" - -#~ msgctxt "info:hidden list items" -#~ msgid "
  • ... and {} others
  • " -#~ msgstr "
  • ... e {} outras
  • " - -#~ msgctxt "info:status" -#~ msgid "Printers added from Digital Factory:
      {}
    " -#~ msgstr "Impressoras adicionadas a partir da Digital Factory:
      {}
    " - -#~ msgctxt "info:status" -#~ msgid "
      {}
    To establish a connection, please visit the Ultimaker Digital Factory." -#~ msgstr "
      {}
    Para estabelecer uma ligação, visite a Ultimaker Digital Factory." - -#~ msgctxt "@label ({} is printer name)" -#~ msgid "{} will be removed until the next account sync.
    To remove {} permanently, visit Ultimaker Digital Factory.

    Are you sure you want to remove {} temporarily?" -#~ msgstr "{} será removida até à próxima sincronização de conta.
    Para remover {} permanentemente, visite Ultimaker Digital Factory.

    Tem a certeza de que pretende remover {} temporariamente?" - -#~ msgctxt "@label" -#~ msgid "" -#~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n" -#~ "Are you sure you want to continue?" -#~ msgstr "" -#~ "Está prestes a remover {} impressora(s) do Cura. Esta ação não pode ser anulada. \n" -#~ "Tem a certeza de que pretende continuar?" - -#~ msgctxt "@label" -#~ msgid "" -#~ "You are about to remove all printers from Cura. This action cannot be undone. \n" -#~ "Are you sure you want to continue?" -#~ msgstr "" -#~ "Está prestes a remover todas as impressoras do Cura. Esta ação não pode ser anulada. \n" -#~ "Tem a certeza de que pretende continuar?" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update" -#~ msgstr "Atualizar" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Create new" -#~ msgstr "Criar nova" - -#~ msgctxt "@label" -#~ msgid "Shared Heater" -#~ msgstr "Aquecedor partilhado" - #~ msgctxt "@info" -#~ msgid "The webcam is not available because you are monitoring a cloud printer." -#~ msgstr "Esta webcam não está disponível pois está a monitorizar uma impressora na cloud." - -#~ msgctxt "@button" -#~ msgid "Ultimaker Digital Factory" -#~ msgstr "Ultimaker Digital Factory" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can Discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "Personalizou algumas definições de perfil.\n" -#~ "Pretende manter estas definições alteradas depois de trocar de perfis?\n" -#~ "Como alternativa, pode descartar as alterações para carregar as predefinições a partir de '%1'." - -#~ msgctxt "@label" -#~ msgid "Overrides %1 setting." -#~ msgid_plural "Overrides %1 settings." -#~ msgstr[0] "Substitui %1 definição." -#~ msgstr[1] "Substitui %1 definições." - -#~ msgctxt "@text" -#~ msgid "Please give your printer a name" -#~ msgstr "Atribua um nome à sua impressora" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." -#~ msgstr "Estão disponíveis novas funcionalidades para a impressora {machine_name}! É recomendado atualizar o firmware da impressora." - -#~ msgctxt "@action:button" -#~ msgid "Print via Cloud" -#~ msgstr "Imprimir através da cloud" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print via Cloud" -#~ msgstr "Imprimir através da cloud" - -#~ msgctxt "@info:status" -#~ msgid "Connected via Cloud" -#~ msgstr "Ligada através da cloud" - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Ligar à cloud da Ultimaker" - -#~ msgctxt "@label" -#~ msgid "You need to login first before you can rate" -#~ msgstr "É necessário iniciar sessão antes de atribuir a classificação" - -#~ msgctxt "@label" -#~ msgid "You need to install the package before you can rate" -#~ msgstr "É necessário instalar o pacote antes de atribuir a classificação" - -#~ msgctxt "@label" -#~ msgid "ratings" -#~ msgstr "classificações" - -#~ msgctxt "@label" -#~ msgid "Featured" -#~ msgstr "Em Destaque" - -#~ msgctxt "@label" -#~ msgid "Your rating" -#~ msgstr "A sua classificação" - -#~ msgctxt "@label" -#~ msgid "Author" -#~ msgstr "Autor" - -#~ msgctxt "@description" -#~ msgid "Get plugins and materials verified by Ultimaker" -#~ msgstr "Obter plug-ins e materiais verificados pela Ultimaker" - -#~ msgctxt "@label The argument is a username." -#~ msgid "Hi %1" -#~ msgstr "Olá, %1" - -#~ msgctxt "@button" -#~ msgid "Ultimaker account" -#~ msgstr "Conta Ultimaker" - -#~ msgctxt "@button" -#~ msgid "Sign out" -#~ msgstr "Terminar sessão" - -#~ msgctxt "@label" -#~ msgid "Support library for analysis of complex networks" -#~ msgstr "Biblioteca de apoio para análise de redes complexas" - -#~ msgctxt "@Label" -#~ msgid "Python HTTP library" -#~ msgstr "Biblioteca de HTTP Python" +#~ msgid "Ultimaker Certified Material" +#~ msgstr "Material Certificado pela Ultimaker" #~ msgctxt "@text:window" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to keep or discard those settings?" -#~ msgstr "" -#~ "Alterou algumas das definições do perfil.\n" -#~ "Gostaria de manter ou descartar essas alterações?" - -#~ msgctxt "@title:column" -#~ msgid "Default" -#~ msgstr "Predefinição" - -#~ msgctxt "@title:column" -#~ msgid "Customized" -#~ msgstr "Personalizado" - -#~ msgctxt "@action:button" -#~ msgid "Discard" -#~ msgstr "Descartar" - -#~ msgctxt "@action:button" -#~ msgid "Keep" -#~ msgstr "Manter" - -#~ msgctxt "@action:button" -#~ msgid "Create New Profile" -#~ msgstr "Criar novo perfil" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "&Save..." -#~ msgstr "&Guardar..." +#~ 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 "O Ultimaker Cura recolhe dados anónimos para melhorar a qualidade da impressão e a experiência do utilizador. Segue-se um exemplo de todos os dados partilhados:" #~ msgctxt "@text" -#~ msgid "Place enter your printer's IP address." -#~ msgstr "Introduza o endereço IP da sua impressora." - -#~ msgctxt "@button" -#~ msgid "Create an account" -#~ msgstr "Criar uma conta" - -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Do you want to sync material and software packages with your account?" -#~ msgstr "" -#~ "\n" -#~ "Pretende sincronizar o material e os pacotes de software com a sua conta?" - -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Syncing..." -#~ msgstr "" -#~ "\n" -#~ "A sincronizar..." - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder." -#~ msgstr "Sem conteúdo para seccionar porque nenhum dos modelos está dentro do volume de construção ou porque os mesmos estão atribuídos a um extrusor desativado. Dimensione ou rode os modelos para os adaptar ou ative o extrusor." - -#~ msgctxt "@info:backup_status" -#~ msgid "There was an error listing your backups." -#~ msgstr "Ocorreu um erro ao listar as suas cópias de segurança." - -#~ msgctxt "@title:groupbox" -#~ msgid "User description (Note: Developers may not speak your language, please use English if possible)" -#~ msgstr "Descrição do utilizador (Nota: os programadores podem não falar a sua língua, pelo que, se possível, deve utilizar o inglês)" - -#~ msgctxt "@title:window" -#~ msgid "Closing Cura" -#~ msgstr "Fechar Cura" - -#~ msgctxt "@label" -#~ msgid "Are you sure you want to exit Cura?" -#~ msgstr "Tem a certeza de que deseja sair do Cura?" - -#~ msgctxt "@label" -#~ msgid "Language:" -#~ msgstr "Idioma:" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud" - -#~ msgctxt "@text" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "O fluxo de trabalho de impressão 3D da próxima geração" - -#~ msgctxt "@text" -#~ msgid "- Send print jobs to Ultimaker printers outside your local network" -#~ msgstr "- Envie trabalhos de impressão para impressoras Ultimaker fora da sua rede local" - -#~ msgctxt "@text" -#~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere" -#~ msgstr "- Guarde as definições do seu Ultimaker Cura na cloud para utilizar em qualquer lugar" - -#~ msgctxt "@text" -#~ msgid "- Get exclusive access to print profiles from leading brands" -#~ msgstr "- Obtenha acesso exclusivo a perfis de impressão de marcas de referência" - -# rever! -# contexto?! -# resolvido? -# por-extrusor -#~ msgctxt "@label" -#~ msgid "The value is resolved from per-extruder values " -#~ msgstr "O valor é calculado com base nos valores por-extrusor " - -#~ msgctxt "@label" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "O fluxo de trabalho de impressão 3D da próxima geração" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to print profiles from leading brands" -#~ msgstr "" -#~ "- Envie trabalhos de impressão para impressoras Ultimaker fora da sua rede local\n" -#~ "- Guarde as definições do seu Ultimaker Cura na cloud para utilizar em qualquer lugar\n" -#~ "- Obtenha acesso exclusivo a perfis de impressão de marcas de referência" - -#~ msgctxt "@title:window" -#~ msgid "About " -#~ msgstr "Acerca de " - -#~ msgctxt "@info:button" -#~ msgid "Quit Cura" -#~ msgstr "Sair do Cura" - -#~ msgctxt "@action:checkbox" -#~ msgid "Infill only" -#~ msgstr "Apenas enchimento" - -#~ msgctxt "@info:tooltip" -#~ msgid "Change active post-processing scripts" -#~ msgstr "Alterar scripts de pós-processamento ativos" - -#~ msgctxt "@label:listbox" -#~ msgid "Feedrate" -#~ msgstr "Velocidade de Alimentação" - -#~ msgctxt "name" -#~ msgid "Machine Settings action" -#~ msgstr "Função Definições da Máquina" - -#~ msgctxt "@info:title" -#~ msgid "New cloud printers found" -#~ msgstr "Encontradas novas impressoras na cloud" - -#~ msgctxt "@info:message" -#~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers." -#~ msgstr "Foram encontradas novas impressoras associadas à sua conta. Pode encontrá-las na sua lista de impressoras detetadas." - -#~ msgctxt "@info:status" -#~ msgid "Cura does not accurately display layers when Wire Printing is enabled" -#~ msgstr "Quando a opção \"Wire Printing\" está ativa, o Cura não permite visualizar as camadas de uma forma precisa" - -#~ msgctxt "@label" -#~ msgid "Pre-sliced file {0}" -#~ msgstr "Ficheiro pré-seccionado {0}" - -#~ msgctxt "@label" -#~ msgid "" -#~ "This plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ "Este plug-in contém uma licença.\n" -#~ "É necessário aceitar esta licença para instalar o plug-in.\n" -#~ "Concorda com os termos abaixo?" - -#~ msgctxt "@action:button" -#~ msgid "Accept" -#~ msgstr "Aceitar" - -#~ msgctxt "@action:button" -#~ msgid "Decline" -#~ msgstr "Rejeitar" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show All Settings" -#~ msgstr "Mostrar Todas as Definições" - -#~ msgctxt "@title:window" -#~ msgid "Ultimaker Cura" -#~ msgstr "Ultimaker Cura" - -#~ msgctxt "@title:window" -#~ msgid "About Cura" -#~ msgstr "Sobre o Cura" - -# rever! -# flatten -ver contexto! -# nivelar? -#~ msgctxt "@item:inmenu" -#~ msgid "Flatten active settings" -#~ msgstr "Nivelar Definições Ativas" - -#~ msgctxt "@info:status" -#~ msgid "Profile has been flattened & activated." -#~ msgstr "O perfil foi nivelado & ativado." - -#~ msgctxt "X3g Writer Plugin Description" -#~ msgid "Writes X3g to files" -#~ msgstr "Grava X3g num ficheiro" - -#~ msgctxt "X3g Writer File Description" -#~ msgid "X3g File" -#~ msgstr "Ficheiro X3g" - -#~ msgctxt "X3G Writer File Description" -#~ msgid "X3G File" -#~ msgstr "Ficheiro X3G" - -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "Assistente de perfis" +#~ msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" +#~ msgstr "O Ultimaker Cura recolhe dados anónimos para melhorar a qualidade da impressão e a experiência do utilizador, incluindo:" #~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "Assistente de perfis" +#~ msgid "Ultimaker Format Package" +#~ msgstr "Arquivo Ultimaker Format" -#~ msgctxt "@action:button" -#~ msgid "Retry" -#~ msgstr "Tentar de Novo" +#~ msgctxt "@info" +#~ msgid "Ultimaker Verified Package" +#~ msgstr "Pacote Aprovado pela Ultimaker" -#~ msgctxt "@label:table_header" -#~ msgid "Print Core" -#~ msgstr "Print Core" +#~ msgctxt "@info" +#~ msgid "Ultimaker Verified Plug-in" +#~ msgstr "Plug-in Aprovado pela Ultimaker" -#~ msgctxt "@label" -#~ msgid "Don't support overlap with other models" -#~ msgstr "Retirar suportes na intercepção com outros modelos" +#~ msgctxt "@label:button" +#~ msgid "Ultimaker support" +#~ msgstr "Suporte da Ultimaker" -#~ msgctxt "@label" -#~ msgid "Modify settings for overlap with other models" -#~ msgstr "Alterar as definições dos objetos que intercepta" - -#~ msgctxt "@label" -#~ msgid "Modify settings for infill of other models" -#~ msgstr "Modificar definições do enchimento de outros modelos" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update existing" -#~ msgstr "Atualizar existente" - -#~ msgctxt "@label" -#~ msgid "Not supported" -#~ msgstr "Não suportado" - -#~ msgctxt "@action:button" -#~ msgid "Previous" -#~ msgstr "Anterior" - -#~ msgctxt "@label" -#~ msgid "Tip" -#~ msgstr "Sugestão" - -#~ msgctxt "@label" -#~ msgid "Print experiment" -#~ msgstr "Experimento de impressão" - -#~ msgctxt "@label" -#~ msgid "Checklist" -#~ msgstr "Lista de verificação" - -#~ msgctxt "@label" -#~ msgid "Please select any upgrades made to this Ultimaker 2." -#~ msgstr "Selecione quaisquer atualizações realizadas a esta Ultimaker 2." - -#~ msgctxt "@label" -#~ msgid "Olsson Block" -#~ msgstr "Olsson Block" - -#~ msgctxt "@window:text" -#~ msgid "Camera rendering: " -#~ msgstr "Composição de câmara: " - -#~ msgctxt "@info:tooltip" -#~ msgid "Use multi build plate functionality" -#~ msgstr "Usar a funcionalidade de múltiplas bases de construção" - -#~ msgctxt "@option:check" -#~ msgid "Use multi build plate functionality (restart required)" -#~ msgstr "Usar a funcionalidade de múltiplas bases de construção (é necessário reiniciar)" - -#~ msgctxt "@label" -#~ msgid "Default profiles" -#~ msgstr "Perfis predefinidos" - -#~ msgctxt "@label:textbox" -#~ msgid "search settings" -#~ msgstr "procurar definições" - -#~ msgctxt "@label" -#~ msgid "Layer Height" -#~ msgstr "Espessura das Camadas" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile." -#~ msgstr "Este perfil de qualidade não se encontra disponível para a sua configuração atual de material e de nozzle. Altere-a para ativar este perfil de qualidade." - -#~ msgctxt "@tooltip" -#~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" -#~ msgstr "De momento está ativo um perfil personalizado. Para poder ativar o controlo de qualidade, por favor selecione um dos perfis de qualidade predefinidos no modo Personalizado" - -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "&Base de construção" - -#~ msgctxt "@title:settings" -#~ msgid "&Profile" -#~ msgstr "&Perfil" +#~ msgctxt "@info" +#~ msgid "Unable to reach the Ultimaker account server." +#~ msgstr "Não é possível aceder ao servidor da conta Ultimaker." #~ msgctxt "@action:label" -#~ msgid "Build plate" -#~ msgstr "Base de construção" +#~ msgid "Visible settings:" +#~ msgstr "Definições visíveis:" -#~ msgctxt "description" -#~ msgid "Dump the contents of all settings to a HTML file." -#~ msgstr "Descarregar o conteúdo de todas as definições para um ficheiro HTML." - -#~ msgctxt "name" -#~ msgid "God Mode" -#~ msgstr "Modo God" - -#~ msgctxt "description" -#~ msgid "Create a flattened quality changes profile." -#~ msgstr "Cria um perfil de alterações de qualidade aplanado." - -#~ msgctxt "name" -#~ msgid "Profile Flattener" -#~ msgstr "Aplanador de perfis" - -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "Permite aos fabricantes de materiais criar novos materiais e perfis de qualidade utilizando uma IU de fácil acesso." - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "Assistente de perfis de impressão" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network." -#~ msgstr "Ligado através da rede." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. Please approve the access request on the printer." -#~ msgstr "Ligado através da rede. Por favor aprove o pedido de acesso, na impressora." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. No access to control the printer." -#~ msgstr "Ligado através da rede. Sem autorização para controlar a impressora." - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer requested. Please approve the request on the printer" -#~ msgstr "Acesso à impressora solicitado. Por favor aprove o pedido de acesso, na impressora" - -#~ msgctxt "@info:title" -#~ msgid "Authentication status" -#~ msgstr "Estado da autenticação" - -#~ msgctxt "@info:title" -#~ msgid "Authentication Status" -#~ msgstr "Estado da autenticação" - -#~ msgctxt "@info:tooltip" -#~ msgid "Re-send the access request" -#~ msgstr "Reenviar a solicitação de acesso" - -# rever! -# aceite? -#~ msgctxt "@info:status" -#~ msgid "Access to the printer accepted" -#~ msgstr "Acesso à impressora confirmado" - -#~ msgctxt "@info:status" -#~ msgid "No access to print with this printer. Unable to send print job." -#~ msgstr "Sem autorização para imprimir com esta impressora. Não foi possível enviar o trabalho de impressão." - -#~ msgctxt "@action:button" -#~ msgid "Request Access" -#~ msgstr "Solicitar Acesso" - -#~ msgctxt "@info:tooltip" -#~ msgid "Send access request to the printer" -#~ msgstr "Enviar pedido de acesso para a impressora" - -#~ msgctxt "@label" -#~ msgid "Unable to start a new print job." -#~ msgstr "Não é possível iniciar um novo trabalho de impressão." - -#~ msgctxt "@label" -#~ msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." -#~ msgstr "Existe um problema com a configuração da sua Ultimaker, o qual impede o inicio da impressão. Por favor resolva este problema antes de continuar." - -# rever! -# ver contexto! pode querer dizer -# Configuração incompatível -#~ msgctxt "@window:title" -#~ msgid "Mismatched configuration" -#~ msgstr "Divergência de Configuração" - -#~ msgctxt "@label" -#~ msgid "Are you sure you wish to print with the selected configuration?" -#~ msgstr "Tem a certeza de que deseja imprimir com a configuração selecionada?" - -#~ msgctxt "@label" -#~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "Existe uma divergência entre a configuração ou calibração da impressora e o Cura. Para se obter os melhores resultados, o seccionamento (no Cura) deve ser sempre feito para os núcleos de impressão e para os materiais que estão introduzidos na impressora." - -#~ msgctxt "@info:status" -#~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." -#~ msgstr "O envio de novos trabalhos está (temporariamente) bloqueado; o trabalho de impressão anterior ainda está a ser enviado." - -#~ msgctxt "@info:status" -#~ msgid "Sending data to printer" -#~ msgstr "A enviar dados para a impressora" - -#~ msgctxt "@info:title" -#~ msgid "Sending Data" -#~ msgstr "A Enviar Dados" - -#~ msgctxt "@info:status" -#~ msgid "No Printcore loaded in slot {slot_number}" -#~ msgstr "Nenhum PrintCore instalado na ranhura {slot_number}" - -#~ msgctxt "@info:status" -#~ msgid "No material loaded in slot {slot_number}" -#~ msgstr "Nenhum material carregado na ranhura {slot_number}" - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" -#~ msgstr "PrintCore diferente (Cura: {cura_printcore_name}, Impressora: {remote_printcore_name}) selecionado para o extrusor {extruder_id}" - -#~ msgctxt "@label" -#~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Material diferente (Cura: {0}, Impressora: {1}) selecionado para o extrusor {2}" - -#~ msgctxt "@window:title" -#~ msgid "Sync with your printer" -#~ msgstr "Sincronizar com a impressora" - -#~ msgctxt "@label" -#~ msgid "Would you like to use your current printer configuration in Cura?" -#~ msgstr "Deseja utilizar a configuração atual da impressora no Cura?" - -#~ msgctxt "@label" -#~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "Os núcleos de impressão e/ou materiais na sua impressora são diferentes dos definidos no seu projeto atual. Para se obter os melhores resultados, o seccionamento (no Cura) deve ser sempre feito para os núcleos de impressão e para os materiais que estão introduzidos na impressora." - -# rever! -# contexto -#~ msgctxt "@action:button" -#~ msgid "View in Monitor" -#~ msgstr "Ver no Monitor" - -#~ msgctxt "@info:status" -#~ msgid "Printer '{printer_name}' has finished printing '{job_name}'." -#~ msgstr "A impressora {printer_name} terminou a impressão de \"{job_name}\"." - -#~ msgctxt "@info:status" -#~ msgid "The print job '{job_name}' was finished." -#~ msgstr "O trabalho de impressão '{job_name}' terminou." - -# rever! -# Concluída? -#~ msgctxt "@info:status" -#~ msgid "Print finished" -#~ msgstr "Impressão terminada" - -#~ msgctxt "@label:material" -#~ msgid "Empty" -#~ msgstr "Vazio" - -#~ msgctxt "@label:material" -#~ msgid "Unknown" -#~ msgstr "Desconhecido" - -#~ msgctxt "@info:title" -#~ msgid "Cloud error" -#~ msgstr "Erro da cloud" - -#~ msgctxt "@info:status" -#~ msgid "Could not export print job." -#~ msgstr "Não foi possível exportar o trabalho de impressão." - -#~ msgctxt "@info:description" -#~ msgid "There was an error connecting to the cloud." -#~ msgstr "Ocorreu um erro na ligação à cloud." - -#~ msgctxt "@info:status" -#~ msgid "Uploading via Ultimaker Cloud" -#~ msgstr "A carregar através da cloud do Ultimaker" - -#~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Ligar à cloud do Ultimaker" - -#~ msgctxt "@action" -#~ msgid "Don't ask me again for this printer." -#~ msgstr "Não perguntar novamente sobre esta impressora." - -#~ msgctxt "@info:status" -#~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Agora pode enviar e monitorizar trabalhos de impressão a partir de qualquer lugar através da sua conta Ultimaker." - -#~ msgctxt "@info:status" -#~ msgid "Connected!" -#~ msgstr "Ligada!" - -#~ msgctxt "@action" -#~ msgid "Review your connection" -#~ msgstr "Reveja a sua ligação" - -#~ msgctxt "@info:status Don't translate the XML tags !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "A máquina definida no perfil {0} ({1}) não corresponde à sua máquina atual ({2}), não foi possível importá-la." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}:" -#~ msgstr "Falha ao importar perfil de {0}:" - -#~ msgctxt "@window:title" -#~ msgid "Existing Connection" -#~ msgstr "Ligação Existente" - -#~ msgctxt "@message:text" -#~ msgid "This printer/group is already added to Cura. Please select another printer/group." -#~ msgstr "Esta impressora/grupo já foi adicionada ao Cura. Por favor selecione outra impressora/grupo." - -#~ msgctxt "@label" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "Introduza o endereço IP ou o nome de anfitrião da sua impressora na rede." - -#~ msgctxt "@info:tooltip" -#~ msgid "Connect to a printer" -#~ msgstr "Ligar a uma impressora" - -#~ msgctxt "@title" -#~ msgid "Cura Settings Guide" -#~ msgstr "Guia de definições do Cura" - -#~ msgctxt "@info:tooltip" -#~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective." -#~ msgstr "Fazer zoom em direção ao rato não é suportado na perspetiva ortogonal." - -#~ msgid "Orthogonal" -#~ msgstr "Ortogonal" - -#~ msgctxt "description" -#~ msgid "Manages network connections to Ultimaker 3 printers." -#~ msgstr "Gere as ligações de rede com as impressoras Ultimaker 3." - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection" -#~ msgstr "Ligação de rede UM3" - -#~ msgctxt "description" -#~ msgid "Provides extra information and explanations about settings in Cura, with images and animations." -#~ msgstr "Fornece informações e explicações adicionais sobre as definições do Cura, com imagens e animações." - -#~ msgctxt "name" -#~ msgid "Settings Guide" -#~ msgstr "Guia de definições" - -#~ msgctxt "@item:inmenu" -#~ msgid "Cura Settings Guide" -#~ msgstr "Guia de definições do Cura" - -#~ msgctxt "@info:generic" -#~ msgid "Settings have been changed to match the current availability of extruders: [%s]" -#~ msgstr "As definições foram alteradas de forma a corresponder aos extrusores disponíveis de momento: [%s]" - -#~ msgctxt "@title:groupbox" -#~ msgid "User description" -#~ msgstr "Descrição do utilizador" +#~ msgctxt "@tooltip:button" +#~ msgid "Visit the Ultimaker website." +#~ msgstr "Visite o site da Ultimaker." #~ msgctxt "@info" -#~ msgid "These options are not available because you are monitoring a cloud printer." -#~ msgstr "Estas opções não estão disponíveis pois está a monitorizar uma impressora na cloud." - -#~ msgctxt "@label link to connect manager" -#~ msgid "Go to Cura Connect" -#~ msgstr "Ir para o Cura Connect" - -#~ msgctxt "@info" -#~ msgid "All jobs are printed." -#~ msgstr "Todos os trabalhos foram impressos." - -#~ msgctxt "@label link to connect manager" -#~ msgid "View print history" -#~ msgstr "Ver histórico de impressão" - -#~ 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.\n" -#~ "\n" -#~ "Select your printer from the list below:" -#~ msgstr "" -#~ "Para imprimir diretamente para a sua impressora através da rede, certifique-se de que a sua impressora está ligada à rede por meio de um cabo de rede ou através de ligação à rede Wi-Fi. Se não ligar o Cura por rede à impressora, poderá ainda assim utilizar uma unidade USB para transferir ficheiros g-code para a impressora.\n" -#~ "\n" -#~ "Selecione a sua impressora na lista em baixo:" - -#~ 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." -#~ msgstr "" -#~ "Certifique-se de que é possível estabelecer ligação com a impressora:\n" -#~ "- Verifique se a impressora está ligada.\n" -#~ "- Verifique se a impressora está ligada à rede." - -#~ msgctxt "@option:check" -#~ msgid "See only current build plate" -#~ msgstr "Ver só a base de construção ativa" - -#~ msgctxt "@action:button" -#~ msgid "Arrange to all build plates" -#~ msgstr "Dispor em todas as bases" - -#~ msgctxt "@action:button" -#~ msgid "Arrange current build plate" -#~ msgstr "Dispor só na base ativa" - -#~ msgctxt "description" -#~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)." -#~ msgstr "Permite guardar o resultado do seccionamento como um ficheiro X3G, para poder ser usado com impressoras 3D que usam este formato (Kalyan, Makerbot e outras impressoras baseadas no Sailfish)." - -#~ msgctxt "name" -#~ msgid "X3GWriter" -#~ msgstr "X3GWriter" - -#~ msgctxt "description" -#~ msgid "Reads SVG files as toolpaths, for debugging printer movements." -#~ msgstr "Lê ficheiros SVG como caminhos de ferramenta para efeitos de depuração dos movimentos da impressora." - -#~ msgctxt "name" -#~ msgid "SVG Toolpath Reader" -#~ msgstr "Leitor de caminhos de ferramenta SVG" - -#~ msgctxt "@item:inmenu" -#~ msgid "Changelog" -#~ msgstr "Lista das Alterações" - -#~ msgctxt "@item:inmenu" -#~ msgid "Show Changelog" -#~ msgstr "Mostrar Lista das Alterações de cada Versão" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to remote cluster" -#~ msgstr "A enviar dados para o cluster remoto" - -#~ msgctxt "@info:status" -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Ligar à Ultimaker Cloud" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymized usage statistics." -#~ msgstr "O Cura recolhe, de forma anónima, estatísticas sobre as opções usadas." - -#~ msgctxt "@info:title" -#~ msgid "Collecting Data" -#~ msgstr "A Recolher Dados" - -#~ msgctxt "@action:button" -#~ msgid "More info" -#~ msgstr "Mais informação" - -#~ msgctxt "@action:tooltip" -#~ msgid "See more information on what data Cura sends." -#~ msgstr "Saiba mais sobre que informação o Cura envia." - -#~ msgctxt "@action:button" -#~ msgid "Allow" -#~ msgstr "Permitir" - -#~ msgctxt "@action:tooltip" -#~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." -#~ msgstr "Permitir que o Cura envie de forma anónima, estatísticas sobre as opções usadas, para nos ajudar a estabelecer as prioridades para os futuros desenvolvimentos do Cura. São enviadas apenas algumas das preferências e definições usadas, a versão do Cura e um valor \"hash\" dos modelos que está a seccionar." - -#~ msgctxt "@item:inmenu" -#~ msgid "Evaluation" -#~ msgstr "Avaliação" - -#~ msgctxt "@info:title" -#~ msgid "Network enabled printers" -#~ msgstr "Impressoras em rede" - -#~ msgctxt "@info:title" -#~ msgid "Local printers" -#~ msgstr "Impressoras locais" - -#~ msgctxt "@info:backup_failed" -#~ msgid "Tried to restore a Cura backup that does not match your current version." -#~ msgstr "Tentou restaurar um Cura backup que não corresponde á sua versão actual." - -#~ msgctxt "@title" -#~ msgid "Machine Settings" -#~ msgstr "Definições da máquina" - -#~ msgctxt "@label" -#~ msgid "Printer Settings" -#~ msgstr "Definições da Impressora" - -#~ msgctxt "@option:check" -#~ msgid "Origin at center" -#~ msgstr "Origem no centro" - -#~ msgctxt "@option:check" -#~ msgid "Heated bed" -#~ msgstr "Base aquecida" - -#~ msgctxt "@label" -#~ msgid "Printhead Settings" -#~ msgstr "Definições Cabeça de Impressão" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Distância desde a parte esquerda da cabeça de impressão até ao centro do nozzle. Utilizado para impedir colisões entre as impressões anteriores e a cabeça de impressão ao imprimir \"Individualmente\"." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Distância desde a parte frontal da cabeça de impressão até ao centro do nozzle. Utilizado para impedir colisões entre as impressões anteriores e a cabeça de impressão ao imprimir \"Individualmente\"." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Distância desde a parte direita da cabeça de impressão até ao centro do nozzle. Utilizado para impedir colisões entre as impressões anteriores e a cabeça de impressão ao imprimir \"Individualmente\"." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Distância desde a parte posterior da cabeça de impressão até ao centro do nozzle. Utilizado para impedir colisões entre as impressões anteriores e a cabeça de impressão ao imprimir \"Individualmente\"." - -#~ msgctxt "@label" -#~ msgid "Gantry height" -#~ msgstr "Altura do pórtico" - -#~ msgctxt "@tooltip" -#~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." -#~ msgstr "A diferença de altura entre a ponta do nozzle e o sistema de pórtico (eixos X e Y). Utilizado para impedir colisões entre as impressões anteriores e o pórtico ao imprimir \"Individualmente\"." - -#~ msgctxt "@label" -#~ msgid "Start G-code" -#~ msgstr "G-code Inicial" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very start." -#~ msgstr "Comandos G-code a serem executados no início." - -#~ msgctxt "@label" -#~ msgid "End G-code" -#~ msgstr "G-code Final" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very end." -#~ msgstr "Comandos G-code a serem executados no final." - -#~ msgctxt "@label" -#~ msgid "Nozzle Settings" -#~ msgstr "Definições do Nozzle" - -#~ msgctxt "@tooltip" -#~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." -#~ msgstr "O diâmetro nominal do filamento suportado pela impressora. O diâmetro exato será substituído pelo material e/ou perfil." - -#~ msgctxt "@label" -#~ msgid "Extruder Start G-code" -#~ msgstr "G-code Inicial do Extrusor" - -#~ msgctxt "@label" -#~ msgid "Extruder End G-code" -#~ msgstr "G-code Final do Extrusor" - -#~ msgctxt "@label" -#~ msgid "Changelog" -#~ msgstr "Lista das Alterações" - -#~ msgctxt "@title:window" -#~ msgid "User Agreement" -#~ msgstr "Contrato de Utilizador" - -#~ msgctxt "@alabel" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "Introduza o endereço IP ou o hostname da sua impressora na rede." - -#~ msgctxt "@info" -#~ msgid "Please select a network connected printer to monitor." -#~ msgstr "Selecione uma impressora ligada à rede para monitorizar." - -#~ msgctxt "@info" -#~ msgid "Please connect your Ultimaker printer to your local network." -#~ msgstr "Ligue a sua impressora Ultimaker à sua rede local." - -#~ msgctxt "@text:window" -#~ msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent." -#~ msgstr "O Cura envia informação anónima para a Ultimaker, para nos ajudar a aperfeiçoar a qualidade da impressão e a melhorar a experiência do utilizador. De seguida pode ver um exemplo com toda a informação enviada." - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send this data" -#~ msgstr "Não pretendo enviar estes dados" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending this data to Ultimaker and help us improve Cura" -#~ msgstr "Permita o envio destes dados ao Ultimaker e ajude-nos a melhorar o Cura" - -#~ msgctxt "@label" -#~ msgid "No print selected" -#~ msgstr "Nenhuma impressão selecionada" - -#~ msgctxt "@info:tooltip" -#~ 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 "Por predefinição, os pixels brancos representam os pontos altos do objecto e os pixels pretos representam os pontos baixos do objecto. Altere esta opção para inverter o comportamento de forma que os pixels pretos representem os pontos altos do objecto e os pixels brancos representem os pontos baixos do objecto." - -#~ msgctxt "@title" -#~ msgid "Select Printer Upgrades" -#~ msgstr "Selecionar Atualizações da Impressora" - -# rever! -# mid air? no ar? no meio do ar? -# sagging? deformar? -# Isto irá construir estruturas de suporte debaixo do modelo para impedir a deformação de partes suspensas do modelo ou que a impressão seja feita no ar. -# a utilizar? usado? -#~ msgctxt "@label" -#~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "Selecionar qual o extrusor usado para imprimir os suportes. Isto irá construir estruturas de suporte por debaixo do modelo para impedir que as partes suspensas do modelo se deformem ou que sejam impressas no ar." - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "Este perfil de qualidade não se encontra disponível para a sua configuração atual de material e de bocal. Altere-a para ativar este perfil de qualidade" - -#~ msgctxt "@label shown when we load a Gcode file" -#~ msgid "Print setup disabled. G code file can not be modified." -#~ msgstr "Configuração de impressão desativada. O ficheiro G-code não pode ser modificado." - -#~ msgctxt "@label" -#~ msgid "See the material compatibility chart" -#~ msgstr "Ver o gráfico de compatibilidade de materiais" - -#~ msgctxt "@label" -#~ msgid "View types" -#~ msgstr "Ver tipos" - -#~ msgctxt "@label" -#~ msgid "Hi " -#~ msgstr "Olá " - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to material profiles from leading brands" -#~ msgstr "" -#~ "- Envie trabalhos de impressão para impressoras Ultimaker fora da sua rede local\n" -#~ "- Guarde as definições do seu Ultimaker Cura na cloud para utilizar em qualquer lugar\n" -#~ "- Obtenha acesso exclusivo a perfis de materiais de marcas de referência" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Unable to Slice" -#~ msgstr "Não é possível Seccionar" - -#~ msgctxt "@label" -#~ msgid "Time specification" -#~ msgstr "Especificação de tempo" - -#~ msgctxt "@label" -#~ msgid "Material specification" -#~ msgstr "Especificação do material" - -#~ msgctxt "@title:tab" -#~ msgid "Add a printer to Cura" -#~ msgstr "Adicionar uma impressora ao Cura" - -#~ msgctxt "@title:tab" -#~ msgid "" -#~ "Select the printer you want to use from the list below.\n" -#~ "\n" -#~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog." -#~ msgstr "" -#~ "Selecione a impressora que deseja utilizar da lista abaixo.\n" -#~ "\n" -#~ "Se a sua impressora não constar da lista, utilize a opção \"Impressora FFF personalizada\" da categoria \"Personalizado\" e ajuste as definições para corresponder à sua impressora na próxima caixa de diálogo." - -#~ msgctxt "@label" -#~ msgid "Printer Name" -#~ msgstr "Nome da impressora" - -#~ msgctxt "@action:button" -#~ msgid "Add Printer" -#~ msgstr "Adicionar Impressora" - -#~ msgid "Modify G-Code" -#~ msgstr "Modificar G-code" - -# rever! -# models fit the -# dentro do? -# contido pelo -# se adapta? -# cabem no...? -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." -#~ msgstr "Sem conteúdo para seccionar porque nenhum dos modelos está dentro do volume de construção. Por favor redimensione, mova ou rode os modelos para os adaptar ao volume de construção." - -#~ msgctxt "@info:status" -#~ msgid "The selected material is incompatible with the selected machine or configuration." -#~ msgstr "O material selecionado é incompatível com a máquina ou a configuração selecionada." - -#~ msgctxt "@info:title" -#~ msgid "Incompatible Material" -#~ msgstr "Material incompatível" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "Falha ao importar perfil de {0}: {1}" - -#~ msgctxt "@title" -#~ msgid "Toolbox" -#~ msgstr "Toolbox" - -#~ msgctxt "@label" -#~ msgid "Not available" -#~ msgstr "Não disponível" - -#~ msgctxt "@label" -#~ msgid "Unreachable" -#~ msgstr "Inacessível" - -#~ msgctxt "@label" -#~ msgid "Available" -#~ msgstr "Disponível" - -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "A preparar" - -#~ msgctxt "@label:status" -#~ msgid "Pausing" -#~ msgstr "A colocar em pausa" - -#~ msgctxt "@label:status" -#~ msgid "Resuming" -#~ msgstr "A Recomeçar" - -#~ msgctxt "@label" -#~ msgid "Waiting for: Unavailable printer" -#~ msgstr "A aguardar: Impressora indisponível" - -#~ msgctxt "@label" -#~ msgid "Waiting for: First available" -#~ msgstr "A aguardar: Primeira disponível" - -#~ msgctxt "@label" -#~ msgid "Waiting for: " -#~ msgstr "A aguardar: " - -#~ msgctxt "@label" -#~ msgid "Configuration change" -#~ msgstr "Configuração alterada" - -#~ msgctxt "@label" -#~ msgid "The assigned printer, %1, requires the following configuration change(s):" -#~ msgstr "A impressora atribuída %1 requer as seguintes alterações de configuração:" - -#~ msgctxt "@label" -#~ msgid "Override" -#~ msgstr "Ignorar" - -#~ msgctxt "@label" -#~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?" -#~ msgstr "Iniciar um trabalho de impressão com uma configuração incompatível pode danificar a impressora 3D. Tem a certeza de que pretende ignorar a configuração e imprimir %1?" - -#~ msgctxt "@window:title" -#~ msgid "Override configuration configuration and start print" -#~ msgstr "Ignorar configuração e iniciar impressão" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage queue" -#~ msgstr "Gerir fila" - -#~ msgctxt "@label" -#~ msgid "Printing" -#~ msgstr "A Imprimir" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage printers" -#~ msgstr "Gerir impressoras" - -#~ msgctxt "@action:button" -#~ msgid "Activate Configuration" -#~ msgstr "Ativar Configuração" - -#~ msgctxt "@info:tooltip" -#~ msgid "Load the configuration of the printer into Cura" -#~ msgstr "Importar a configuração da impressora para o Cura" - -# rever! -# Mostrar...? -# Ver...? -#~ msgctxt "@label" -#~ msgid "Show Travels" -#~ msgstr "Deslocações" - -#~ msgctxt "@label" -#~ msgid "Show Helpers" -#~ msgstr "Auxiliares" - -#~ msgctxt "@label" -#~ msgid "Show Shell" -#~ msgstr "Invólucro" - -#~ msgctxt "@label" -#~ msgid "Show Infill" -#~ msgstr "Enchimento" - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send these data" -#~ msgstr "Eu não quero enviar estes dados" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending these data to Ultimaker and help us improve Cura" -#~ msgstr "Permitir enviar estes dados para a Ultimaker para melhorar o Cura" - -#~ msgctxt "@label" -#~ msgid "Printer type:" -#~ msgstr "Tipo de impressora:" - -#~ msgctxt "@label" -#~ msgid "Connection:" -#~ msgstr "Ligação:" - -#~ msgctxt "@label" -#~ msgid "State:" -#~ msgstr "Estado:" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for a printjob" -#~ msgstr "A aguardar por um trabalho de impressão" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for someone to clear the build plate" -#~ msgstr "A aguardar que alguém limpe a base de construção" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Aborting print..." -#~ msgstr "A cancelar impressão..." - -#~ msgctxt "@label" -#~ msgid "Protected profiles" -#~ msgstr "Perfis protegidos" - -#~ msgctxt "@label" -#~ msgid "Printer Name:" -#~ msgstr "Nome da Impressora:" - -#~ msgctxt "@label" -#~ msgid "Profile:" -#~ msgstr "Perfil:" - -#~ msgctxt "@label:textbox" -#~ msgid "Search..." -#~ msgstr "Procurar..." - -#~ msgctxt "@action:inmenu" -#~ msgid "Collapse All" -#~ msgstr "Esconder Tudo" - -#~ msgctxt "@action:inmenu" -#~ msgid "Expand All" -#~ msgstr "Mostrar Tudo" - -#~ msgctxt "@label:header configurations" -#~ msgid "Available configurations" -#~ msgstr "Configurações disponíveis" - -#~ msgctxt "@label:extruder label" -#~ msgid "Extruder" -#~ msgstr "Extrusor" - -#~ msgctxt "@label:extruder label" -#~ msgid "Yes" -#~ msgstr "Sim" - -#~ msgctxt "@label:extruder label" -#~ msgid "No" -#~ msgstr "Não" - -# rever! -# Configuração da Impressão? -#~ msgctxt "@label:listbox" -#~ msgid "Print Setup" -#~ msgstr "Configurar a Impressão" - -#~ msgctxt "@label:listbox" -#~ msgid "" -#~ "Print Setup disabled\n" -#~ "G-code files cannot be modified" -#~ msgstr "" -#~ "Configuração da Impressão desativada\n" -#~ "Os ficheiros G-code não podem ser modificados" - -#~ msgctxt "@label Hours and minutes" -#~ msgid "00h 00min" -#~ msgstr "00h00min" - -#~ msgctxt "@tooltip" -#~ msgid "Time specification" -#~ msgstr "Especificação de tempo" - -#~ msgctxt "@label" -#~ msgid "Cost specification" -#~ msgstr "Especificação de custos" - -#~ msgctxt "@label" -#~ msgid "Total:" -#~ msgstr "Total:" - -#~ msgctxt "@tooltip" -#~ msgid "Recommended Print Setup

    Print with the recommended settings for the selected printer, material and quality." -#~ msgstr "Configuração de Impressão Recomendada

    Imprimir com as definições recomendadas para a Impressora, Material e Qualidade selecionadas." - -#~ msgctxt "@tooltip" -#~ msgid "Custom Print Setup

    Print with finegrained control over every last bit of the slicing process." -#~ msgstr "Configuração de Impressão Personalizada

    Imprimir com um controlo detalhado de todas as definições específicas de cada uma das etapas do processo de seccionamento." - -#~ msgctxt "@action:inmenu menubar:help" -#~ msgid "Show Engine &Log..." -#~ msgstr "Mostrar ®isto de motor..." - -#~ msgctxt "@action:menu" -#~ msgid "Browse packages..." -#~ msgstr "Procurar pacotes..." - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "Expand/Collapse Sidebar" -#~ msgstr "Mostrar/Esconder Barra Lateral" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3D model" -#~ msgstr "Por favor abra um Modelo 3D ou Projeto" - -# rever! -# Pronto para? -# Preparado para? -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Ready to slice" -#~ msgstr "Disponível para seccionar" - -# rever! -# Pronto para? -# Preparado para? -# Disponível para? -#~ msgctxt "@label:PrintjobStatus %1 is target operation" -#~ msgid "Ready to %1" -#~ msgstr "Pronto para %1" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Slicing unavailable" -#~ msgstr "Seccionamento indisponível" - -#~ msgctxt "@info:tooltip" -#~ msgid "Slice current printjob" -#~ msgstr "Seccionar o trabalho de impressão atual" - -#~ msgctxt "@info:tooltip" -#~ msgid "Cancel slicing process" -#~ msgstr "Cancelar o processo de seccionamento" - -#~ msgctxt "@label:Printjob" -#~ msgid "Prepare" -#~ msgstr "Preparar" - -#~ msgctxt "@label:Printjob" -#~ msgid "Cancel" -#~ msgstr "Cancelar" - -#~ msgctxt "@info:tooltip" -#~ msgid "Select the active output device" -#~ msgstr "Selecione o dispositivo de saída" - -#~ msgctxt "@title:menu" -#~ msgid "&View" -#~ msgstr "&Visualizar" - -#~ msgctxt "@title:menu" -#~ msgid "&Settings" -#~ msgstr "&Definições" - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "&Toolbox" -#~ msgstr "&Toolbox" - -#~ msgctxt "@action:button" -#~ msgid "Open File" -#~ msgstr "Abrir ficheiro" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "Este perfil de qualidade não está disponível para a sua atual configuração de nozzle e material. Por favor altere-a para poder ativar este perfil de qualidade" - -#~ msgctxt "@label" -#~ msgid "Print Speed" -#~ msgstr "Velocidade Impressão" - -#~ msgctxt "@label" -#~ msgid "Slower" -#~ msgstr "Mais Lenta" - -#~ msgctxt "@label" -#~ msgid "Faster" -#~ msgstr "Mais Rápida" - -#~ msgctxt "@label" -#~ msgid "Enable gradual" -#~ msgstr "Enchimento Gradual" - -#~ msgctxt "@label" -#~ msgid "Generate Support" -#~ msgstr "Criar Suportes" - -#~ msgctxt "@label" -#~ msgid "Build Plate Adhesion" -#~ msgstr "Aderência à Base" - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints?
    Read the Ultimaker Troubleshooting Guides" -#~ msgstr "Precisa de ajuda para melhorar as suas impressões?
    Por favor leia os Guias Ultimaker de Resolução de Problemas" - -# rever! -# contexto?! -# Relatório? -# Registo de motor? -# use english string? -#~ msgctxt "@title:window" -#~ msgid "Engine Log" -#~ msgstr "Engine Log" - -#~ msgctxt "@label" -#~ msgid "Printer type" -#~ msgstr "Tipo de impressora" - -#~ msgctxt "@label" -#~ msgid "Use glue with this material combination" -#~ msgstr "Utilizar cola com esta combinação de materiais" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "Compatibilidade entre Materiais" - -#~ msgctxt "@tooltip" -#~ msgid "Click to check the material compatibility on Ultimaker.com." -#~ msgstr "Clique para verificar a compatibilidade entre os materiais em Ultimaker.com." - -#~ msgctxt "description" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "Mostra as novas alterações efetuadas desde a última versão." - -#~ msgctxt "name" -#~ msgid "Changelog" -#~ msgstr "Lista das Alterações" - -# rever! -# contexto! -# flattend - aplanado? nivelado? limpo? basico? -#~ msgctxt "description" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "Criar um perfil de qualidade aplanado." - -#~ msgctxt "name" -#~ msgid "Profile flatener" -#~ msgstr "Aplanador de perfis" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license." -#~ msgstr "Perguntar, uma vez, ao utilizador, se concorda com a nossa licença." - -# rever! -# check the legal term in pt -# licença? -# acordo? -# use the same term for label and description -#~ msgctxt "name" -#~ msgid "UserAgreement" -#~ msgstr "Contrato de Utilizador" - -#~ msgctxt "@warning:status" -#~ msgid "Please generate G-code before saving." -#~ msgstr "Crie um G-code antes de guardar." - -#~ msgctxt "@action" -#~ msgid "Upgrade Firmware" -#~ msgstr "Atualizar firmware" - -#~ msgctxt "@label unknown material" -#~ msgid "Unknown" -#~ msgstr "Desconhecido" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "No custom profile to import in file {0}" -#~ msgstr "O ficheiro {0} não contém qualquer perfil personalizado para importar" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "This profile {0} contains incorrect data, could not import it." -#~ msgstr "O perfil {0} contém dados incorretos, não foi possível importá-lo." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "A máquina definida no perfil {0} ({1}) não corresponde à sua máquina atual ({2}), e não foi possível importá-la." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall " -#~ msgstr "Confirmar desinstalação " - -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1 m / ~ %2 g / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1 m / ~ %2 g" - -#~ msgctxt "@title" -#~ msgid "Upgrade Firmware" -#~ msgstr "Atualizar Firmware" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Imprimir com a Doodle3D WiFi-Box" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Imprimir com a Doodle3D WiFi-Box" - -#~ msgctxt "@info:status" -#~ msgid "Connecting to Doodle3D Connect" -#~ msgstr "A ligar ao Doodle3D Connect" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to Doodle3D Connect" -#~ msgstr "A enviar dados para o Doodle3D Connect" - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -#~ msgstr "Não é possível enviar dados para o Doodle3D Connect. Será que há outro trabalho ainda ativo?" - -#~ msgctxt "@info:status" -#~ msgid "Storing data on Doodle3D Connect" -#~ msgstr "A guardar dados no Doodle3D Connect" - -#~ msgctxt "@info:status" -#~ msgid "File sent to Doodle3D Connect" -#~ msgstr "Ficheiro enviado para o Doodle3D Connect" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect..." -#~ msgstr "Abrir Connect..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Open the Doodle3D Connect web interface" -#~ msgstr "Abrir a interface web do Doodle3D Connect" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Blender file" -#~ msgstr "Ficheiro Blender" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Could not export using \"{}\" quality!\n" -#~ "Felt back to \"{}\"." -#~ msgstr "" -#~ "Não foi possível exportar utilizando a qualidade \"{}\"!\n" -#~ "Foi revertido para \"{}\"." - -#~ msgctxt "@label" -#~ msgid "Contact" -#~ msgstr "Contacto" +#~ 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 "Não é possível visualizar os feeds das câmaras das impressoras na cloud a partir do Ultimaker Cura. Clique em \"Gerir impressora\" para visitar o Ultimaker Digital Factory e ver esta câmara." #~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." -#~ msgstr "Esta impressora não está configurada para ser Host de um grupo de impressoras Ultimaker 3." +#~ msgid "Welcome to UltiMaker Cura" +#~ msgstr "Bem-vindo ao UltiMaker Cura" #~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -#~ msgstr "Esta impressora é o Host de um grupo de %1 impressoras Ultimaker 3." - -#~ msgctxt "@label: arg 1 is group name" -#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "%1 não está configurada para ser Host de um grupo de impressoras Ultimaker 3 ligadas em rede" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Add/Remove printers" -#~ msgstr "Adicionar / Remover Impressoras" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "Abre a página com a lista dos trabalhos de impressão, no seu browser predefinido." - -#~ msgctxt "@action:button" -#~ msgid "View print jobs" -#~ msgstr "Ver Trabalhos em Impressão" - -#~ msgctxt "@label:status" -#~ msgid "Preparing to print" -#~ msgstr "A preparar para imprimir" - -#~ msgctxt "@label:status" -#~ msgid "Available" -#~ msgstr "Disponível" - -#~ msgctxt "@label:status" -#~ msgid "Lost connection with the printer" -#~ msgstr "Perdeu-se a ligação com a impressora" - -#~ msgctxt "@label:status" -#~ msgid "Unknown" -#~ msgstr "Desconhecida" - -#~ msgctxt "@label:status" -#~ msgid "Disabled" -#~ msgstr "Desativada" - -#~ msgctxt "@label:status" -#~ msgid "Reserved" -#~ msgstr "Reservada" - -#~ msgctxt "@label" -#~ msgid "Preparing to print" -#~ msgstr "A preparar para imprimir" - -#~ msgctxt "@label:status" -#~ msgid "Print aborted" -#~ msgstr "Impressão cancelada" - -#~ msgctxt "@label" -#~ msgid "Not accepting print jobs" -#~ msgstr "Não são aceites trabalhos de impressão" - -#~ msgctxt "@label" -#~ msgid "Finishes at: " -#~ msgstr "Termina às: " - -#~ msgctxt "@label" -#~ msgid "Clear build plate" -#~ msgstr "Limpar base de construção" - -#~ msgctxt "@label" -#~ msgid "Waiting for configuration change" -#~ msgstr "A aguardar pela alteração de configuração" - -#~ msgctxt "@title" -#~ msgid "Print jobs" -#~ msgstr "Trabalhos em Impressão" - -#~ msgctxt "@label:title" -#~ msgid "Printers" -#~ msgstr "Impressoras" - -#~ msgctxt "@action:button" -#~ msgid "View printers" -#~ msgstr "Ver Impressoras" - -#~ msgctxt "@label:" -#~ msgid "Pause" -#~ msgstr "Colocar em pausa" - -#~ msgctxt "@label:" -#~ msgid "Resume" -#~ msgstr "Retomar" - -#~ msgctxt "@label:" -#~ msgid "Abort Print" -#~ msgstr "Cancelar impressão" - -#~ msgctxt "@option:openProject" -#~ msgid "Always ask" -#~ msgstr "Perguntar sempre" - -#~ msgctxt "@label" -#~ msgid "Override Profile" -#~ msgstr "Substituir perfil" - -#~ msgctxt "@info:tooltip" -#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -#~ msgstr "Devem os novos modelos abertos ser dispostos na base de construção? Utilizado em conjunto com múltiplas bases de construção (EXPERIMENTAL)" - -#~ msgctxt "@option:check" -#~ msgid "Do not arrange objects on load" -#~ msgstr "Não dispor os objectos ao abrir" - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Save Selection to File" -#~ msgstr "&Guardar seleção para ficheiro" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &As..." -#~ msgstr "Guardar &como..." - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &Project..." -#~ msgstr "Guardar &Projeto..." - -#~ msgctxt "@label" -#~ msgid "Use adhesion sheet or glue with this material combination" -#~ msgstr "Use folhas de adesão ou cola, com estes materiais" - -#~ msgctxt "description" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "Recebe ficheiros G-code e envia-os por Wi-Fi para uma Doodle3D Wi-Fi Box." - -#~ msgctxt "name" -#~ msgid "Doodle3D WiFi-Box" -#~ msgstr "Doodle3D Wi-Fi Box" - -#~ msgctxt "description" -#~ msgid "Provides an edit window for direct script editing." -#~ msgstr "Fornece uma janela de edição para a edição direta de scripts." - -#~ msgctxt "name" -#~ msgid "Live scripting tool" -#~ msgstr "Ferramenta de scripting em direto" - -#~ msgctxt "description" -#~ msgid "Helps to open Blender files directly in Cura." -#~ msgstr "Ajuda a abrir ficheiros do Blender diretamente no Cura." - -#~ msgctxt "name" -#~ msgid "Blender Integration (experimental)" -#~ msgstr "Integração com o Blender (experimental)" - -# rever! -#~ msgctxt "@info:title" -#~ msgid "Model Checker Warning" -#~ msgstr "Advertência do Verificador de Modelos" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n" -#~ "Tips that may be useful to improve the print quality:\n" -#~ "1) Use rounded corners.\n" -#~ "2) Turn the fan off (only if there are no tiny details on the model).\n" -#~ "3) Use a different material." -#~ msgstr "" -#~ "Alguns modelos poderão não ser impressos com a melhor qualidade devido ás dimensões do objecto e aos materiais escolhidos para os modelos: {model_names}.\n" -#~ "Sugestões que poderão ser úteis para melhorar a qualidade da impressão dos modelos:\n" -#~ "1) Utilize cantos arredondados.\n" -#~ "2) Desligue os ventiladores (apenas nos casos em que o modelo não têm pequenos detalhes ou pormenores).\n" -#~ "3) Usar um material diferente." - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "O SolidWorks comunicou erros ao abrir o ficheiro. Recomendamos a resolução destes problemas no próprio SolidWorks." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ "Thanks!" -#~ msgstr "" -#~ "Não foram encontrados quaisquer modelos no seu desenho. Por favor verifique novamente o conteúdo do desenho e confirme que este inclui uma peça ou uma \"assembly\"?\n" -#~ "\n" -#~ "Obrigado!" - -#~ 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" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "Foram encontradas mais do que uma peça ou uma \"assembly\" no seu desenho. De momento só são suportados ficheiros com uma só peça ou só uma \"assembly\".\n" -#~ "\n" -#~ "As nossa desculpas!" - -# rever! -# versão PT do solidworks? -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks part file" -#~ msgstr "Ficheiro peça SolidWorks" - -# rever! -# versão PT do solidworks? -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks assembly file" -#~ msgstr "Ficheiro \"assembly\" SolidWorks" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks drawing file" -#~ msgstr "Ficheiro de desenho SolidWorks" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "Caro Cliente,\n" -#~ "Não foi possível encontrar uma instalação válida do SolidWorks no seu sistema. O que significa que o SolidWorks não está instalado ou não dispõe de uma licença válida. Por favor verifique se o próprio SolidWorks funciona sem qualquer problema e/ou contacte o seu ICT.\n" -#~ "\n" -#~ "Atenciosamente\n" -#~ " – Thomas Karl Pietrowski" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "Caro cliente,\n" -#~ "Está atualmente a executar este plug-in num sistema operativo que não o Windows. Este plug-in apenas funciona no Windows com o SolidWorks instalado e com uma licença válida. Instale este plug-in num computador com o Windows e com o SolidWorks instalado.\n" -#~ "\n" -#~ "Atenciosamente\n" -#~ " – Thomas Karl Pietrowski" - -#~ msgid "Configure" -#~ msgstr "Configurar" - -#~ msgid "Installation guide for SolidWorks macro" -#~ msgstr "Guia de instalação do macro SolidWorks" - -#~ msgctxt "@action:button" -#~ msgid "Disable" -#~ msgstr "Desativar" - -#~ msgctxt "@action:tooltip" -#~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences." -#~ msgstr "Não permitir que o Cura envie de forma anónima, estatísticas sobre as opções usadas. Pode voltar a ser ativado novamente nas preferências do Cura." - -#~ msgid "Install" -#~ msgstr "Instalar" - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory." -#~ msgstr "Falha ao copiar os ficheiros do plug-in Siemens NX. Verifique o seu UGII_USER_DIR. Não está atribuído a um diretório." - -#~ msgid "Successfully installed Siemens NX Cura plugin." -#~ msgstr "Plug-in Siemens NX Cura instalado com sucesso." - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR." -#~ msgstr "Falha ao copiar os ficheiros do plug-in Siemens NX. Verifique o seu UGII_USER_DIR." - -#~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX." -#~ msgstr "Falha ao instalar o plug-in Siemens NX. Não foi possível definir a variável do ambiente UGII_USER_DIR para o Siemens NX." - -#~ msgctxt "@info:status" -#~ msgid "Failed to get plugin ID from {0}" -#~ msgstr "Não foi possível obter o ID do plug-in {0}" - -#~ msgctxt "@info:tile" -#~ msgid "Warning" -#~ msgstr "Atenção" - -#~ msgctxt "@window:title" -#~ msgid "Plugin browser" -#~ msgstr "Browser de plug-ins" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks: Export wizard" -#~ msgstr "SolidWorks: Assistente de Exportação" - -#~ msgctxt "@action:label" -#~ msgid "Quality:" -#~ msgstr "Qualidade:" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (3D-printing)" -#~ msgstr "Alta Resolução (impressão 3D)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (3D-printing)" -#~ msgstr "Baixa Resolução (impressão 3D)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (SolidWorks)" -#~ msgstr "Alta Resolução (SolidWorks)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (SolidWorks)" -#~ msgstr "Baixa Resolução (SolidWorks)" - -#~ msgctxt "@text:window" -#~ msgid "Show this dialog again" -#~ msgstr "Mostrar esta caixa de diálogo novamente" - -#~ msgctxt "@action:button" -#~ msgid "Continue" -#~ msgstr "Continuar" - -#~ msgctxt "@action:button" -#~ msgid "Abort" -#~ msgstr "Cancelar" - -#~ msgctxt "@title:window" -#~ msgid "How to install Cura SolidWorks macro" -#~ msgstr "Como instalar a macro Cura SolidWorks" - -#~ msgctxt "@description:label" -#~ msgid "Steps:" -#~ msgstr "Passos:" - -#~ msgctxt "@action:button" -#~ msgid "" -#~ "Open the directory\n" -#~ "with macro and icon" -#~ msgstr "" -#~ "Abrir o diretório\n" -#~ "com macro e ícone" - -#~ msgctxt "@description:label" -#~ msgid "Instructions:" -#~ msgstr "Instruções:" - -#~ msgctxt "@action:playpause" -#~ msgid "Play" -#~ msgstr "Reproduzir" - -#~ msgctxt "@action:playpause" -#~ msgid "Pause" -#~ msgstr "Colocar em pausa" - -#~ msgctxt "@action:button" -#~ msgid "Previous Step" -#~ msgstr "Passo Anterior" - -#~ msgctxt "@action:button" -#~ msgid "Done" -#~ msgstr "Concluído" - -#~ msgctxt "@action:button" -#~ msgid "Next Step" -#~ msgstr "Passo Seguinte" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks plugin: Configuration" -#~ msgstr "Plug-in SolidWorks: Configuração" - -#~ msgctxt "@title:tab" -#~ msgid "Conversion settings" -#~ msgstr "Definições de conversão" - -#~ msgctxt "@label" -#~ msgid "First choice:" -#~ msgstr "Primeira escolha:" - -#~ msgctxt "@text:menu" -#~ msgid "Latest installed version (Recommended)" -#~ msgstr "Última versão instalada (Recomendada)" - -#~ msgctxt "@text:menu" -#~ msgid "Default version" -#~ msgstr "Versão predefinida" - -#~ msgctxt "@label" -#~ msgid "Show wizard before opening SolidWorks files" -#~ msgstr "Mostrar o assistente antes de abrir ficheiros SolidWorks" - -#~ msgctxt "@label" -#~ msgid "Automatically rotate opened file into normed orientation" -#~ msgstr "Rodar automaticamente o ficheiro aberto para uma orientação normalizada" - -#~ msgctxt "@title:tab" -#~ msgid "Installation(s)" -#~ msgstr "Instalação(ões)" - -#~ msgctxt "@label" -#~ msgid "COM service found" -#~ msgstr "Serviço COM encontrado" - -#~ msgctxt "@label" -#~ msgid "Executable found" -#~ msgstr "Executável encontrado" - -#~ msgctxt "@label" -#~ msgid "COM starting" -#~ msgstr "A iniciar COM" - -#~ msgctxt "@label" -#~ msgid "Revision number" -#~ msgstr "Número da revisão" - -#~ msgctxt "@label" -#~ msgid "Functions available" -#~ msgstr "Funções disponíveis" - -#~ msgctxt "@label (%1 is object name)" -#~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?" -#~ msgstr "O novo diâmetro do material está definido como %1 mm, o que não é compatível com a máquina atual. Pretende prosseguir?" - -#~ msgctxt "@action:menu" -#~ msgid "Browse plugins..." -#~ msgstr "Procurar plug-ins..." - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "P&lugins" -#~ msgstr "P&lug-ins" - -#~ msgctxt "@window:title" -#~ msgid "Install Plugin" -#~ msgstr "Instalar plug-in" - -#~ 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 "Manages network connections to Ultimaker 3 printers" -#~ msgstr "Gere as ligações de rede com as impressoras Ultimaker 3" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations." -#~ msgstr "Oferece a possibilidade de abrir determinados ficheiros utilizando o SolidWorks. A conversão é efetuada através deste plug-in e de otimizações adicionais." - -#~ msgctxt "name" -#~ msgid "SolidWorks Integration" -#~ msgstr "SolidWorks Integration" - -#~ msgctxt "description" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "Guarda Automaticamente as Preferências, Máquinas e Perfis após fazer alterações." - -#~ msgctxt "name" -#~ msgid "Auto Save" -#~ msgstr "Guardar Automaticamente" - -#~ msgctxt "description" -#~ msgid "Helps you to install an 'export to Cura' button in Siemens NX." -#~ msgstr "Ajuda a instalar um botão \"Exportar para o Cura\" no Siemens NX." - -#~ msgctxt "name" -#~ msgid "Siemens NX Integration" -#~ msgstr "Siemens NX Integration" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new plugins." -#~ msgstr "Procura, gere e instala novos plug-ins." - -#~ msgctxt "name" -#~ msgid "Plugin Browser" -#~ msgstr "Browser de plug-ins" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license" -#~ msgstr "Perguntar, uma vez, ao utilizador, se concorda com a licença" - -#~ 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.)" +#~ msgid "Welcome to Ultimaker Cura" +#~ msgstr "Bem-vindo ao Ultimaker Cura" diff --git a/resources/i18n/pt_PT/fdmextruder.def.json.po b/resources/i18n/pt_PT/fdmextruder.def.json.po index 8e8248ca13..ce1dec5d5b 100644 --- a/resources/i18n/pt_PT/fdmextruder.def.json.po +++ b/resources/i18n/pt_PT/fdmextruder.def.json.po @@ -1,12 +1,9 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-08 09:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -15,6 +12,96 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: fdmextruder.def.json +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Aderência" + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Aderência à Base Construção" + +#: fdmextruder.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diâmetro" + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "Extrusor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code label" +msgid "Extruder End G-Code" +msgstr "G-Code Final do Extrusor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_abs label" +msgid "Extruder End Position Absolute" +msgstr "Posição Final Absoluta do Extrusor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x label" +msgid "Extruder End Position X" +msgstr "Posição X Final do Extrusor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y label" +msgid "Extruder End Position Y" +msgstr "Posição Y Final do Extrusor" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posição X Preparação do Extrusor" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posição Y Preparação do Extrusor" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posição Z para Preparação do Extrusor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Ventoinha de arrefecimento de impressão do Extrusor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_code label" +msgid "Extruder Start G-Code" +msgstr "G-Code Inicial do Extrusor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_abs label" +msgid "Extruder Start Position Absolute" +msgstr "Posição Inicial Absoluta do Extrusor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "Posição X Inicial do Extrusor" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "Posição Y Inicial do Extrusor" + #: fdmextruder.def.json msgctxt "machine_settings label" msgid "Machine" @@ -26,69 +113,9 @@ msgid "Machine specific settings" msgstr "Definições específicas da máquina" #: fdmextruder.def.json -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "Extrusor" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID do Nozzle" - -#: fdmextruder.def.json -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\"." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diâmetro do Nozzle" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x label" -msgid "Nozzle X Offset" -msgstr "Desvio X do Nozzle" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "A coordenada X do desvio do nozzle." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "Desvio Y do Nozzle" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "A coordenada Y do desvio do nozzle." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code label" -msgid "Extruder Start G-Code" -msgstr "G-Code Inicial do Extrusor" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_abs label" -msgid "Extruder Start Position Absolute" -msgstr "Posição Inicial 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." #: fdmextruder.def.json msgctxt "machine_extruder_start_pos_abs description" @@ -96,114 +123,9 @@ msgid "Make the extruder starting position absolute rather than relative to the 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." #: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "Posição X Inicial do Extrusor" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "Posição Y Inicial do Extrusor" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code label" -msgid "Extruder End G-Code" -msgstr "G-Code Final do Extrusor" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_abs label" -msgid "Extruder End Position Absolute" -msgstr "Posição Final Absoluta do Extrusor" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x label" -msgid "Extruder End Position X" -msgstr "Posição X Final do Extrusor" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y label" -msgid "Extruder End Position Y" -msgstr "Posição Y Final do Extrusor" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posição Z para Preparação do Extrusor" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Ventoinha de arrefecimento de impressão do Extrusor" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Aderência à Base Construção" - -#: fdmextruder.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Aderência" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posição X Preparação do Extrusor" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posição Y Preparação do Extrusor" - -#: fdmextruder.def.json -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 "material description" +msgid "Material" +msgstr "Material" #: fdmextruder.def.json msgctxt "material label" @@ -211,24 +133,91 @@ msgid "Material" msgstr "Material" #: fdmextruder.def.json -msgctxt "material description" -msgid "Material" -msgstr "Material" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diâmetro do Nozzle" #: fdmextruder.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diâmetro" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID do Nozzle" #: fdmextruder.def.json -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 "machine_nozzle_offset_x label" +msgid "Nozzle X Offset" +msgstr "Desvio X do Nozzle" -#~ msgctxt "machine_extruder_start_code description" -#~ msgid "Start g-code to execute whenever turning the extruder on." -#~ msgstr "G-Code inicial a ser executado sempre que o extrusor for ligado." +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "Desvio Y do Nozzle" -#~ msgctxt "machine_extruder_end_code description" -#~ msgid "End g-code to execute whenever turning the extruder off." -#~ msgstr "G-Code final a ser executado sempre que o extrusor for desligado." +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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\"." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "A coordenada X do desvio do nozzle." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "A coordenada Y do desvio do nozzle." + +#: fdmextruder.def.json +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." diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index 039da78f46..1c84ee83fc 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -1,12 +1,9 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-28 11:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -16,1497 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: fdmprinter.def.json -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Máquina" +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." #: fdmprinter.def.json -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Definições específicas da máquina" +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." #: fdmprinter.def.json -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Tipo de Máquina" - -#: fdmprinter.def.json -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "O nome do seu modelo de impressora 3D." - -#: fdmprinter.def.json -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Mostrar Variantes da Máquina" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "G-code Inicial" - -#: fdmprinter.def.json -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 \n" -"." - -#: fdmprinter.def.json -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "G-code Final" - -#: fdmprinter.def.json -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 \n" -"." - -#: fdmprinter.def.json -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID do material" - -#: fdmprinter.def.json -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID do material. Este é definido automaticamente." - -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diâmetro" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Esperar pelo Aquecimento da Base de Construção" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Esperar pelo aquecimento do nozzle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Incluir Temperaturas do Material" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Incluir Temperatura da Base de Construção" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Largura da Máquina" - -#: fdmprinter.def.json -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "A largura (direção X) da área de impressão." - -#: fdmprinter.def.json -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Profundidade da Máquina" - -#: fdmprinter.def.json -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "A profundidade (direção Y) da área de impressão." - -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Altura da Máquina" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "A altura (direção Z) da área de impressão." - -#: fdmprinter.def.json -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Forma da Base de Construção" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Rectangular" - -#: fdmprinter.def.json -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Elíptica" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Material da Base de Construção" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Vidro" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Alumínio" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Tem Base de Construção Aquecida" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Tem estabilização da temperatura do volume de construção" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "Ferramenta ativa escrever sempre" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "O Centro é a Origem" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Número de Extrusores" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Número de extrusores ativos" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Diâmetro externo do nozzle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Comprimento do nozzle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Ângulo do nozzle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Comprimento da zona de aquecimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Ativar controlo de temperatura do nozzle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Velocidade de aquecimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Velocidade de arrefecimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Tempo Mínimo da Temperatura em Modo de Espera" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Variante do G-code" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "O tipo de G-code a ser gerado." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumétrico)" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -#: fdmprinter.def.json -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Retração em Firmware" - -#: fdmprinter.def.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 "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." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Extrusoras Partilham Aquecedor" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Extrusoras partilham bocal" - -#: fdmprinter.def.json -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'." - -#: fdmprinter.def.json -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Retração inicial do bocal partilhado" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Áreas não permitidas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Áreas não permitidas ao nozzle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Polígono da cabeça e do ventilador da máquina" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Altura do pórtico" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID do Nozzle" - -#: fdmprinter.def.json -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\"." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diâmetro do Nozzle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Desviar com extrusor" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posição Z para Preparação Extrusor" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Posição Absoluta Preparação Extrusor" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Velocidade X Máxima" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Velocidade Y Máxima" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Velocidade Z Máxima" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Velocidade Máxima de E" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "A velocidade máxima do filamento." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Aceleração X Máxima" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Aceleração Y Máxima" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Aceleração Z Máxima" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Aceleração Máxima do Filamento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Aceleração Predefinida" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Jerk X-Y Predefinido" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "O jerk predefinido do movimento no plano horizontal." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Jerk Z Predefinido" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Jerk Predefinido do Filamento" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "O jerk predefinido do motor do filamento." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Passos por Milímetro (X)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Passos por Milímetro (Y)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Passos por Milímetro (Z)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Passos por Milímetro (E)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Endstop X no Sentido Positivo" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Endstop Y no Sentido Positivo" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Endstop Z no Sentido Positivo" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Velocidade Mínima de Alimentação" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diâmetro Roda do Alimentador" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "resolution label" -msgid "Quality" -msgstr "Qualidade" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Espessura das Camadas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Espessura da Camada Inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "line_width label" -msgid "Line Width" -msgstr "Diâmetro da Linha" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Diâmetro Linha Parede" - -#: fdmprinter.def.json -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "O diâmetro de uma única linha de parede." - -#: fdmprinter.def.json -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Diâmetro Linha Parede Exterior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Diâmetro Linha Parede(s) Interior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Diâmetro Linha Superior / Inferior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Diâmetro Linha Enchimento" - -#: fdmprinter.def.json -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "O diâmetro de uma única linha de enchimento." - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Diâmetro Linha Contorno/Aba" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Diâmetro Linha Suportes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Diâmetro Linha Interface Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Diâmetro Linha Tecto Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Diâmetro Linha Piso Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Diâmetro Linha Torre Preparação" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Diâmetro Linha Camada Inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "shell label" -msgid "Walls" -msgstr "Paredes" - -#: fdmprinter.def.json -msgctxt "shell description" -msgid "Shell" -msgstr "Invólucro" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Extrusor Paredes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extrusor Parede Exterior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extrusor Paredes Interiores" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Espessura das Paredes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Número Linhas Paredes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Comprimento de transição de paredes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Número de paredes distribuídas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Ângulo do limiar de transição de paredes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Distância do filtro de transição de paredes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Margem do filtro de transição de paredes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Distância Limpeza Parede Exterior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Desvio Parede Exterior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Otimizar Ordem Paredes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Ordenação de paredes" - -#: fdmprinter.def.json -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." -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." - -#: fdmprinter.def.json -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "De dentro para fora" - -#: fdmprinter.def.json -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "De fora para dentro" - -#: fdmprinter.def.json -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Alternar Parede Adicional" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Diâmetro mínimo de linha da parede" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Diâmetro mínimo de linha da parede Par" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold label" -msgid "Split Middle Line Threshold" -msgstr "Dividir limiar da linha do meio" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "O diâmetro da linha mais pequena, como fator do diâmetro da linha normal, acima da qual a linha do meio (se existir uma) será dividida em duas. Reduza esta definição para utilizar mais linhas e mais finas. Aumente para utilizar menos linhas e mais largas. Tenha em atenção que esta regra se aplica como se toda a forma tivesse de ser preenchida com parede, pelo que o meio aqui se refere ao meio do objeto entre duas arestas exteriores da forma, mesmo que exista realmente enchimento ou (outro) revestimento na impressão em vez de parede." - -#: fdmprinter.def.json -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Diâmetro mínimo de linha da parede Ímpar" - -#: fdmprinter.def.json -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," - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold label" -msgid "Add Middle Line Threshold" -msgstr "Adicionar limiar da linha do meio" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "O diâmetro da linha mais pequena, como fator do diâmetro da linha normal, acima da qual será adicionada uma linha do meio (se não existir já uma). Reduza esta definição para utilizar mais linhas e mais finas. Aumente para utilizar menos linhas e mais largas. Tenha em atenção que esta regra se aplica como se toda a forma tivesse de ser preenchida com parede, pelo que o meio aqui se refere ao meio do objeto entre duas arestas exteriores da forma, mesmo que exista realmente enchimento ou (outro) revestimento na impressão em vez de parede." - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Imprimir Paredes Finas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Tamanho mínimo da característica" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Diâmetro mínimo de linha da parede fina" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Expansão Horizontal" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Expansão Horizontal Camada Inicial" - -#: fdmprinter.def.json -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\"." - -#: fdmprinter.def.json -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Expansão horizontal de buraco" - -#: fdmprinter.def.json -msgctxt "hole_xy_offset description" -msgid "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." -msgstr "Quantidade de desvio aplicado a todos os buracos em cada camada. Valores positivos aumentam o tamanho dos buracos; valores negativos reduzem o tamanho dos buracos." - -#: fdmprinter.def.json -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Alinhamento da Junta-Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Definido pelo utilizador" - -#: fdmprinter.def.json -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Mais curto" - -#: fdmprinter.def.json -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Aleatório" - -#: fdmprinter.def.json -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Canto mais Acentuado" - -#: fdmprinter.def.json -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Posição da Junta-Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Posterior esquerda" - -#: fdmprinter.def.json -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Anterior" - -#: fdmprinter.def.json -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Posterior direita" - -#: fdmprinter.def.json -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Direita" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Frontal direita" - -#: fdmprinter.def.json -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Frontal" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Frontal esquerda" - -#: fdmprinter.def.json -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Esquerda" - -#: fdmprinter.def.json -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "X da Junta-Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Y da Junta-Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Preferência Canto Junta" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Nenhum" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Ocultar Junta" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Expor Junta" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Ocultar ou Expor Junta" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Ocultação Inteligente" - -#: fdmprinter.def.json -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Relativo à Junta-Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Superior / Inferior" - -#: fdmprinter.def.json -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Superior / Inferior" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Extrusor Revestimento Superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Camadas Revestimento Superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extrusor Superior / Inferior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Espessura Superior / Inferior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Espessura Superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Camadas Superiores" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Espessura Inferior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Camadas Inferiores" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Camadas inferiores iniciais" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Padrão Superior / Inferior" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "O padrão geométrico das camadas superiores / inferiores." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Padrão da Base na Camada Inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Linhas" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -#: fdmprinter.def.json -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Ligar polígonos superiores/inferiores" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Ordem Superior/Inferior em \"Monotonic\"" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Direções Linha Superior / Inferior" +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)." #: fdmprinter.def.json msgctxt "skin_angles description" @@ -1514,379 +33,24 @@ msgid "A list of integer line directions to use when the top/bottom layers use t 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)." #: fdmprinter.def.json -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Sem Revestimento nos Espaços Z" +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." #: fdmprinter.def.json -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 "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)." #: fdmprinter.def.json -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Paredes Revestimento Extra" +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)." #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Ativar Engomar (Ironing)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Engomar Só Última Camada" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Padrão de Engomar" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -#: fdmprinter.def.json -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -#: fdmprinter.def.json -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Ordem de Engomar em \"Monotonic\"" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Distância Linhas de Engomar" - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "A distância entre as linhas de engomar." - -#: fdmprinter.def.json -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Fluxo de Engomar" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Desvio Interior de Engomar" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Velocidade de Engomar" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Aceleração de Engomar" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Jerk de Engomar" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Sobreposição Revestimento (%)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Sobreposição Revestimento (mm)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Largura Remoção Revestimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Largura Remoção Revestimento Superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Largura Remoção Revestimento Inferior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Distância Expansão Revestimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Distância Expansão Revestimento Superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Expansão Revestimento Inferior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Ângulo Revestimento para Expansão" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Largura Mínima Revestimento para Expansão" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill label" -msgid "Infill" -msgstr "Enchimento" - -#: fdmprinter.def.json -msgctxt "infill description" -msgid "Infill" -msgstr "Enchimento" - -#: fdmprinter.def.json -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Extrusor Enchimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Densidade do Enchimento" - -#: fdmprinter.def.json -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Ajusta a densidade do enchimento da impressão." - -#: fdmprinter.def.json -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Distância Linhas Enchimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Padrão de Enchimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Grelha" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -#: fdmprinter.def.json -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -#: fdmprinter.def.json -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Tri-Hexágono" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Cúbico" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Subdivisão Cúbica" - -#: fdmprinter.def.json -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octeto" - -#: fdmprinter.def.json -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Quarto Cúbico" - -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -#: fdmprinter.def.json -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Cruz" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Cruz 3D" - -#: fdmprinter.def.json -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Relâmpago" - -#: fdmprinter.def.json -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Ligar Linhas Enchimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Ligar polígonos de enchimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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)." #: fdmprinter.def.json msgctxt "infill_angles description" @@ -1894,49 +58,44 @@ msgid "A list of integer line directions to use. Elements from the list are used 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)." #: fdmprinter.def.json -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." #: fdmprinter.def.json -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." #: fdmprinter.def.json -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Deslocar Enchimento em Y" +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "Uma peça totalmente fechada dentro de outra peça pode gerar uma aba externa que toca a parte interna da outra peça. Isto remove todas as bordas dentro dessa distância dos orifícios internos." #: fdmprinter.def.json -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" #: fdmprinter.def.json -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" #: fdmprinter.def.json -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" #: fdmprinter.def.json -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" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "infill_wall_line_count description" @@ -1948,284 +107,9 @@ msgstr "" "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." #: fdmprinter.def.json -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Invólucro Subdivisão Cúbica" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Sobreposição Enchimento (%)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Sobreposição Enchimento (mm)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Distância Limpeza Enchimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Espessura Camada Enchimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Degraus Enchimento Gradual" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Altura Degraus Enchimento Gradual" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Enchimento antes das paredes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Área de enchimento mínimo" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Enchimento como Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Ângulo Saliência Enchimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Espessura do Suporte da Aresta de Revestimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Camadas do Suporte da Aresta de Revestimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Ângulo de suporte de enchimento relâmpago" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Ângulo de saliência do enchimento relâmpago" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Ângulo de corte do enchimento relâmpago" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Ângulo de alisamento do enchimento relâmpago" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material label" -msgid "Material" -msgstr "Material" - -#: fdmprinter.def.json -msgctxt "material description" -msgid "Material" -msgstr "Material" - -#: fdmprinter.def.json -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Temperatura Impressão Predefinida" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatura do volume de construção" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Temperatura de Impressão" - -#: fdmprinter.def.json -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "A temperatura utilizada para a impressão." - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Temperatura Impressão Camada Inicial" - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "A temperatura utilizada para imprimir a primeira camada. Esta é definida como 0 para desativar o manuseamento especial da camada inicial." - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Temperatura de impressão inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Temperatura de impressão final" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Modificador da velocidade de arrefecimento da extrusão" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Temperatura Predefinida Base Construção" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Temperatura Base de Construção" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Temperatura da base de construção da camada inicial" - -#: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" @@ -2233,1924 +117,19 @@ msgid "Adhesion Tendency" msgstr "Tendência de aderência" #: fdmprinter.def.json -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." #: fdmprinter.def.json -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." #: fdmprinter.def.json -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Energia da superfície." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Compensação de redução do fator de escala" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Compensação de contração do fator de dimensionamento horizontal" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Compensação de contração do fator de dimensionamento vertical" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Material Cristalino" - -#: fdmprinter.def.json -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)?" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Posição Retraída Antiescorrimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Velocidade de Retração Antiescorrimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Posição Retraída de Preparação da Separação" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Velocidade de Retração de Preparação da Separação" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatura de preparação da separação" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Posição Retraída de Separação" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Velocidade de Retração de Separação" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Temperatura de Separação" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Velocidade da purga da descarga" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Comprimento da purga da descarga" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Velocidade da purga do fim do filamento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Comprimento da purga do fim do filamento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Duração máxima do parqueamento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Fator do movimento sem carregamento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flow label" -msgid "Flow" -msgstr "Fluxo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Fluxo da Parede" - -#: fdmprinter.def.json -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Compensação de fluxo nas linhas de parede." - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Fluxo de Parede Exterior" - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Compensação de fluxo na linha de parede exterior." - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Parede de Parede(s) Interior(es)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Fluxo Superior/Inferior" - -#: fdmprinter.def.json -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Compensação de fluxo nas linhas superiores/inferiores." - -#: fdmprinter.def.json -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Fluxo de Revestimento da Superfície Superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Fluxo de Enchimento" - -#: fdmprinter.def.json -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Compensação de fluxo nas linhas de enchimento." - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Fluxo de Contorno/Aba" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Fluxo de Suporte" - -#: fdmprinter.def.json -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Compensação de fluxo nas linhas das estruturas de suporte." - -#: fdmprinter.def.json -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Fluxo da Interface do Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Fluxo do Teto do Suporte" - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Compensação de fluxo nas linhas do teto do suporte." - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Fluxo do Chão do Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Fluxo da torre de preparação" - -#: fdmprinter.def.json -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Compensação de fluxo nas linhas da torre de preparação." - -#: fdmprinter.def.json -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Fluxo Camada Inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Temperatura em Espera" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed label" -msgid "Speed" -msgstr "Velocidade" - -#: fdmprinter.def.json -msgctxt "speed description" -msgid "Speed" -msgstr "Velocidade" - -#: fdmprinter.def.json -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Velocidade de Impressão" - -#: fdmprinter.def.json -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "A velocidade a que é efetuada a impressão." - -#: fdmprinter.def.json -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Velocidade Enchimento" - -#: fdmprinter.def.json -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "A velocidade a que o enchimento é impresso." - -#: fdmprinter.def.json -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Velocidade Paredes" - -#: fdmprinter.def.json -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "A velocidade a que as paredes são impressas." - -#: fdmprinter.def.json -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Velocidade Parede Exterior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Velocidade Parede Interior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Velocidade Revestimento Superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Velocidade Superior/Inferior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Velocidade Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Velocidade de enchimento do suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Velocidade da interface de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Velocidade do tecto de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Velocidade do piso de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Velocidade da torre de preparação" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Velocidade de deslocação" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Velocidade Camada Inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Velocidade de impressão da camada inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Velocidade de deslocação da camada inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Velocidade Contorno/Aba" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Velocidade do Salto Z" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Número de camadas mais lentas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Proporção de equalização do fluxo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Ativar controlo da aceleração" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Aceleração de impressão" - -#: fdmprinter.def.json -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "A aceleração com que é efetuada a impressão." - -#: fdmprinter.def.json -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Aceleração de enchimento" - -#: fdmprinter.def.json -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "A aceleração com que o enchimento é impresso." - -#: fdmprinter.def.json -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Aceleração de parede" - -#: fdmprinter.def.json -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "A aceleração com que as paredes são impressas." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Aceleração da parede exterior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Aceleração da parede interior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Aceleração Revestimento Superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Aceleração superior/inferior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Aceleração de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Aceleração de enchimento do suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Aceleração da interface de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Aceleração do tecto de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Aceleração do piso de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Aceleração da torre de preparação" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Aceleração de deslocação" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Aceleração da camada inicial" - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "A aceleração da camada inicial." - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Aceleração de impressão da camada inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Aceleração de deslocação da camada inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Aceleração Contorno/Aba" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Ativar Controlo do Jerk" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Jerk da Impressão" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Jerk do Enchimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Jerk das Paredes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Jerk da Parede Exterior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Jerk das Paredes Interiores" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Jerk Revestimento Superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Jerk Superior/Inferior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Jerk do Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Jerk do Enchimento do Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Jerk da Interface do Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Jerk do Tecto do Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Jerk do Piso do Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Jerk da Torre de Preparação" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Jerk de Deslocação" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Jerk da Camada Inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Jerk Impressão Camada Inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Jerk Deslocação Camada Inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Jerk de Contorno/Aba" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel label" -msgid "Travel" -msgstr "Deslocação" - -#: fdmprinter.def.json -msgctxt "travel description" -msgid "travel" -msgstr "deslocação" - -#: fdmprinter.def.json -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Ativar Retração" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Retrair na Mudança Camada" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Distância de Retração" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Velocidade de Retração" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Velocidade Retrair na Retração" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Velocidade de preparação na retração" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Preparação Adicional de Retração" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Deslocação Mínima da Retração" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Número Máximo Retrações" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Intervalo Mínimo Distância Extrusão" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "limit_support_retractions label" -msgid "Limit Support Retractions" -msgstr "Limitar Retrações de Suportes" - -#: fdmprinter.def.json -msgctxt "limit_support_retractions description" -msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -msgstr "Eliminar a retração quando o movimento de suporte para suporte é em linha reta. Ativar esta definição reduz o tempo de impressão, mas pode levar a que aja um excessivo numero de fios nas estruturas de suporte." - -#: fdmprinter.def.json -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Modo de Combing" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Desligado" - -#: fdmprinter.def.json -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Tudo" - -#: fdmprinter.def.json -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Não na Superfície Exterior" - -#: fdmprinter.def.json -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Não no Revestimento" - -#: fdmprinter.def.json -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "No Enchimento" - -#: fdmprinter.def.json -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Distância Max. de Combing sem Retração" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Retrair Antes Parede Exterior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Evitar Áreas Impressas Durante Movimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Evitar Suportes na Deslocação" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Distância para evitar peças durante a deslocação" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "X Início Camada" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Y Início Camada" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Salto Z ao retrair" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Salto Z apenas sobre as peças impressas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Altura do salto Z" - -#: fdmprinter.def.json -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "A diferença de altura ao efetuar um salto Z." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Salto Z após mudança extrusor" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cooling label" -msgid "Cooling" -msgstr "Arrefecimento" - -#: fdmprinter.def.json -msgctxt "cooling description" -msgid "Cooling" -msgstr "Arrefecimento" - -#: fdmprinter.def.json -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Ativar Arrefecimento Impressão" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Velocidade Ventiladores" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Velocidade Normal Ventiladores" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Velocidade Máxima Ventiladores" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Limiar Normal / Máximo Velocidade Ventilador" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Velocidade Inicial do ventilador" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Altura Velocidade Normal Ventilador" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Camada Velocidade Normal Ventilador" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Tempo mínimo por camada" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Velocidade Mínima" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Elevar Cabeça" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support label" -msgid "Support" -msgstr "Suportes" - -#: fdmprinter.def.json -msgctxt "support description" -msgid "Support" -msgstr "Suportes" - -#: fdmprinter.def.json -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Criar Suportes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extrusor dos Suportes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extrusor de enchimento do suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extrusor de suporte da primeira camada" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extrusor de interface de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extrusor de tecto de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extrusor de piso de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Estrutura de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" - -#: fdmprinter.def.json -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Árvore" - -#: fdmprinter.def.json -msgctxt "support_tree_angle label" -msgid "Tree Support Branch Angle" -msgstr "Ângulo Ramos Suportes Árvore" - -#: fdmprinter.def.json -msgctxt "support_tree_angle description" -msgid "The angle of the branches. 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 dos ramos. Usar um ângulo pequeno para criar ramos mais verticais e estáveis. Usar um ângulo maior para conseguir que os ramos tenham um maior alcance." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance label" -msgid "Tree Support Branch Distance" -msgstr "Distância Ramos Suportes Árvore" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance description" -msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -msgstr "A distância entre os ramos, quando estes tocam o modelo. Se esta distância for pequena faz com que os suportes tenham mais pontos de contacto com o modelo, permitindo um melhor apoio em saliências mas faz com que os suportes sejam mais difíceis de retirar." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter label" -msgid "Tree Support Branch Diameter" -msgstr "Diâmetro Ramos Suportes Árvore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter_angle label" -msgid "Tree Support Branch Diameter Angle" -msgstr "Ângulo Diâmetro Ramos Suportes Árvore" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution label" -msgid "Tree Support Collision Resolution" -msgstr "Resolução Colisão Suportes Árvore" - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution description" -msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -msgstr "A resolução do cálculo de prevenção de colisões com o modelo. Usando um valor baixo irá criar suportes tipo árvore com maior sucesso, mas aumenta drasticamente o tempo de seccionamento." - -#: fdmprinter.def.json -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Colocação do suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "A Tocar na base de construção" - -#: fdmprinter.def.json -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Em todo o lado" - -#: fdmprinter.def.json -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Ângulo Saliência para Suportes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Padrão de Suportes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -#: fdmprinter.def.json -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Grelha" - -#: fdmprinter.def.json -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -#: fdmprinter.def.json -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -#: fdmprinter.def.json -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -#: fdmprinter.def.json -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Cruz" - -#: fdmprinter.def.json -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" - -#: fdmprinter.def.json -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Número Linhas Paredes Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Ligar Linhas de Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Ligar ziguezagues de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Densidade do Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Distância da linha de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Distância da linha de suporte da camada inicial" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Direção da linha de enchimento do suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Ativar aba de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Largura da aba do suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Contagem de linhas da aba do suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Distância Z de suporte" - -#: fdmprinter.def.json -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. This value is rounded up to a multiple of the layer height." -msgstr "A distância entre a parte superior/inferior da estrutura de suporte e a impressão. Esta folga permite retirar os suportes depois de o modelo ser impresso. Este valor é arredondado para um múltiplo da espessura da camada." - -#: fdmprinter.def.json -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Distância superior do suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Distância inferior do suporte" - -#: fdmprinter.def.json -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "A distância entre a impressão e a parte inferior do suporte." - -#: fdmprinter.def.json -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Distância X/Y do suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Prioridade da distância de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y substitui Z" - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z substitui X/Y" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Distância X/Y mínima de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Altura Degraus Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Largura Máxima Degraus Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Distância da junção do suporte" - -#: fdmprinter.def.json -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ó." - -#: fdmprinter.def.json -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Expansão horizontal de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Espessura da camada de enchimento de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Enchimento Gradual Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Altura do degrau de enchimento gradual de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Área de suporte mínimo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Ativar interface de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Ativar tecto de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Ativar piso de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Espessura Interface Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Espessura do tecto de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Espessura do piso de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Resolução Interface Suporte" - -#: fdmprinter.def.json -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 "Ao verificar os locais onde existe modelo por cima e por baixo do suporte, tome as medidas necessárias de acordo com a altura determinada. Os valores mais reduzidos irão seccionar mais lentamente, enquanto os valores mais elevados podem fazer com que o suporte normal seja impresso em alguns locais onde deveria existir uma interface de suporte." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "support_interface_density description" @@ -4158,898 +137,19 @@ msgid "Adjusts the density of the roofs and floors of the support structure. A h 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." #: fdmprinter.def.json -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Densidade do tecto de 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." #: fdmprinter.def.json -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 "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." #: fdmprinter.def.json -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Distância da linha do tecto de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Densidade do piso de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Distância da linha do piso de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Padrão da interface de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Grelha" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Padrão do tecto de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Grelha" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Padrão Piso Suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Grelha" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -#: fdmprinter.def.json -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Área mínima da interface de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Área mínima do teto de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Área mínima do piso de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Expansão horizontal da interface de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Expansão horizontal do teto de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Expansão horizontal do piso de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Direções da linha da interface do suporte" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Direções da linha do teto do suporte" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Direções da linha do piso do suporte" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Substituir velocidade da ventoinha" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Velocidade da ventoinha de revestimento suportada" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Utilizar torres" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Diâmetro da torre" - -#: fdmprinter.def.json -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "O diâmetro de uma torre especial." - -#: fdmprinter.def.json -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Diâmetro Máximo Suportado pela Torre" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Ângulo do tecto da torre" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Malha de suporte pendente" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "O cenário tem malhas de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Aderência" - -#: fdmprinter.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Aderência à Base de Construção" - -#: fdmprinter.def.json -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "\"Blob\" de Preparação" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posição X Preparação Extrusor" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posição Y Preparação Extrusor" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Modos de Aderência" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Contorno" - -#: fdmprinter.def.json -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Aba" - -#: fdmprinter.def.json -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" - -#: fdmprinter.def.json -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Nenhum" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Extrusor para Aderência" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Extrusor do contorno/aba" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Extrusor da base do raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Extrusor do meio do raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Extrusora superior do raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Número Linhas Contorno" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Distância Contorno" - -#: fdmprinter.def.json -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 "" -"A distância horizontal entre o contorno e o perímetro exterior da primeira camada da impressão.\n" -"Esta é a distância mínima. Linhas múltiplas de contorno serão impressas para o exterior." - -#: fdmprinter.def.json -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Comprimento Mínimo Contorno/Aba" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Largura da Aba" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Número Linhas da Aba" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Distância da Aba" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "A aba substitui o suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Aba Apenas no Exterior" - -#: fdmprinter.def.json -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 a aba apenas no exterior do modelo. Isto reduz a quantidade de abas a remover posteriormente, e ao mesmo tempo não reduz assim tanto a aderência à base." - -#: fdmprinter.def.json -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Margem Adicional Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Suavização Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Caixa de Ar do Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Sobreposição Z Camada Inicial" - -#: fdmprinter.def.json -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 "Sobrepor, na direção Z, a primeira e a segunda camadas do modelo para compensar o filamento perdido na caixa de ar. O valor da distância com que todos os modelos acima da primeira camada do modelo serão deslocados para baixo." - -#: fdmprinter.def.json -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Camadas Superiores do Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Espessura Camada Superior Raft" - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "A espessura das camadas superiores do raft." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Diâmetro Linha Superior do Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Espaçamento Superior do Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Camadas do meio do raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Espessura do Meio do Raft" - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "A espessura da camada do meio do raft. (segunda camada)" - -#: fdmprinter.def.json -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Diâmetro Linha do Meio do Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Espaçamento do Meio do Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Espessura da Base do Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Diâmetro Linha Base do Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Espaçamento da Linha Base do Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Velocidade Impressão do Raft" - -#: fdmprinter.def.json -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "A velocidade a que o raft é impresso." - -#: fdmprinter.def.json -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Velocidade do Topo do Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Velocidade do Meio do Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Velocidade da Base do Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Aceleração Impressão do Raft" - -#: fdmprinter.def.json -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "A aceleração com que o raft é impresso." - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Aceleração do Topo do Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Aceleração do Meio do Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Aceleração da Base do Raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Jerk de impressão do raft" - -#: fdmprinter.def.json -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "O jerk com que o raft é impresso." - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Jerk de impressão superior do raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Jerk de impressão do meio do raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Jerk de impressão inferior do raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Velocidade do ventilador do raft" - -#: fdmprinter.def.json -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "A velocidade do ventilador do raft." - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Velocidade do ventilador superior do raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Velocidade do ventilador do meio do raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Velocidade do ventilador inferior do raft" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Dupla Extrusão" - -#: fdmprinter.def.json -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Definições utilizadas para imprimir com vários extrusores." - -#: fdmprinter.def.json -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Ativar torre de preparação" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Tamanho Torre de Preparação" - -#: fdmprinter.def.json -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "A largura da torre de preparação." - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Volume mínimo da torre de preparação" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Posição X da torre de preparação" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Posição Y da torre de preparação" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "prime_tower_wipe_enabled description" @@ -5057,244 +157,14 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f 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." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Aba da torre de preparação" +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." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "As torres de preparação poderão necessitar de uma aderência adicional concedida por uma aba, ainda que o modelo não o necessite. Atualmente, não é possível utilizá-la com o tipo de aderência \"Raft\"." - -#: fdmprinter.def.json -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Ativar proteção contra escorrimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Ângulo da proteção contra escorrimentos" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Distância da proteção contra escorrimentos" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Distância de retração de substituição do nozzle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Velocidade de retração de substituição do nozzle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Velocidade de recolha de substituição do nozzle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Velocidade de preparação de substituição do nozzle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Quantidade de Preparação Extra de Substituição do Nozzle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Correção de Objectos (Mesh)" - -#: fdmprinter.def.json -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Torne os objetos mais adequados para impressão 3D." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Unir Volumes Sobrepostos" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Remover Todos Buracos" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Costura Extensiva" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Manter Faces Soltas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Sobreposição Malhas Combinadas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Remover interceção de malhas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Alternar remoção de malha" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Remover Camadas Iniciais Vazias" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Resolução Máxima" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Resolução Máxima Deslocação" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Desvio máximo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Desvio máximo da área de extrusão" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Modos Especiais" - -#: fdmprinter.def.json -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Formas não tradicionais de imprimir os seus modelos." - -#: fdmprinter.def.json -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Sequência de impressão" - -#: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "print_sequence option all_at_once" @@ -5302,1273 +172,19 @@ msgid "All at Once" msgstr "Simultaneamente" #: fdmprinter.def.json -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Individualmente" +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)." #: fdmprinter.def.json -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Objecto de Enchimento" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Alternar Parede Adicional" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Classificação de processamento de malha" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Malha de corte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Molde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Largura mínima do molde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Altura do tecto do molde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Ângulo do molde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Malha de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Malha antissaliências" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Modo de superfície" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Superfície" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Ambos" - -#: fdmprinter.def.json -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "\"Spiralize\" Contorno Exterior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "\"Spiralize\" Suavizar Contornos" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Extrusão relativa" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "experimental label" -msgid "Experimental" -msgstr "Experimental" - -#: fdmprinter.def.json -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Funcionalidades que ainda não foram totalmente lançadas." - -#: fdmprinter.def.json -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Tolerância do Seccionamento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Centro" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exclusivo" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusivo" - -#: fdmprinter.def.json -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Diâmetro Linha Revestimento Superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Padrão Revestimento Superior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -#: fdmprinter.def.json -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Ordem da superfície superior em \"Monotonic\"" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Direções Linha Revestimento Superior" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Optimização Deslocação Enchimento" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature label" -msgid "Auto Temperature" -msgstr "Temperatura Automática" - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature description" -msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -msgstr "Mudar, automaticamente, a temperatura de cada camada com a velocidade de fluxo média dessa camada." - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Gráfico de temperatura de fluxo" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Circunferência Mínima do Polígono" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Separar Suportes em Blocos" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Tamanho do bloco de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Número de linhas do bloco de suporte" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Barreira contra correntes de ar" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Distância X/Y da proteção contra correntes de ar" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Limite de proteção contra correntes de ar" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Máximo" - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Limitado" - -#: fdmprinter.def.json -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Altura da proteção contra correntes de ar" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Tornar Saliência Imprimível" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Ângulo máximo do modelo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Área máxima do buraco da saliência" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Ativar desaceleração" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Volume de desaceleração" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Volume mínimo antes da desaceleração" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Velocidade de desaceleração" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Tamanho da bolsa de cruz 3D" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Imagem Densidade Enchimento Cruz" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Imagem Densidade Suporte em Cruz" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Ativar suporte cónico" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Ângulo do suporte cónico" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Largura mínima do suporte cónico" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Revestimento Difuso" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Revestimento difuso apenas no exterior" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Espessura Revestimento Difuso" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Densidade Revestimento Difuso" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Distância do ponto de revestimento difuso" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Fator de compensação da taxa de fluxo" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wireframe_enabled label" -msgid "Wire Printing" -msgstr "Impressão em Fios" - -#: fdmprinter.def.json -msgctxt "wireframe_enabled description" -msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -msgstr "Imprime apenas a superfície exterior com uma estrutura entrelaçada dispersa a partir \"do ar\". Isto é realizado ao imprimir horizontalmente os contornos do modelo em determinados intervalos Z que são ligados através de linhas ascendentes e diagonais descendentes." - -#: fdmprinter.def.json -msgctxt "wireframe_height label" -msgid "WP Connection Height" -msgstr "Altura de ligação da impressão em fios" - -#: fdmprinter.def.json -msgctxt "wireframe_height description" -msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -msgstr "A altura das linhas ascendentes e diagonais descendentes entre duas partes horizontais. Isto determina a densidade geral da estrutura de rede. Aplica-se apenas à impressão de fios." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset label" -msgid "WP Roof Inset Distance" -msgstr "Distância de inserção do tecto da impressão de fios" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset description" -msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -msgstr "A distância percorrida ao efetuar uma ligação a partir de um contorno de telhado interno. Aplica-se apenas à impressão de fios." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed label" -msgid "WP Speed" -msgstr "Velocidade da impressão de fios" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed description" -msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -msgstr "Velocidade à qual o nozzle se movimenta ao extrudir material. Aplica-se apenas à impressão de fios." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom label" -msgid "WP Bottom Printing Speed" -msgstr "Velocidade de impressão da parte inferior da impressão de fios" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom description" -msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -msgstr "Velocidade de impressão da primeira camada, que é a única camada que entra em contacto com a plataforma de construção. Aplica-se apenas à impressão de fios." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up label" -msgid "WP Upward Printing Speed" -msgstr "Velocidade de impressão ascendente da impressão de fios" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up description" -msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -msgstr "A velocidade de impressão de uma linha ascendente \"no ar\". Aplica-se apenas à impressão de fios." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down label" -msgid "WP Downward Printing Speed" -msgstr "Velocidade de impressão descendente da impressão de fios" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down description" -msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -msgstr "Velocidade de impressão de uma linha diagonal descendente. Aplica-se apenas à impressão de fios." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat label" -msgid "WP Horizontal Printing Speed" -msgstr "Velocidade de impressão horizontal da impressão de fios" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat description" -msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -msgstr "Velocidade de impressão de contornos horizontais do modelo. Aplica-se apenas à impressão de fios." - -#: fdmprinter.def.json -msgctxt "wireframe_flow label" -msgid "WP Flow" -msgstr "Fluxo de impressão de fios" - -#: fdmprinter.def.json -msgctxt "wireframe_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -msgstr "Compensação de fluxo: a quantidade de material extrudido é multiplicada por este valor. Aplica-se apenas à impressão de fios." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection label" -msgid "WP Connection Flow" -msgstr "Fluxo de ligação da impressão de fios" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection description" -msgid "Flow compensation when going up or down. Only applies to Wire Printing." -msgstr "A compensação de fluxo ao deslocar-se para cima ou para baixo. Aplica-se apenas à impressão de fios." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat label" -msgid "WP Flat Flow" -msgstr "Fluxo plano da impressão de fios" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat description" -msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -msgstr "Compensação de fluxo ao imprimir linhas planas. Aplica-se apenas à impressão de fios." - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay label" -msgid "WP Top Delay" -msgstr "Atraso superior da impressão de fios" - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay description" -msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -msgstr "O tempo de atraso após um movimento ascendente, para que a linha ascendente possa endurecer. Aplica-se apenas à impressão de fios." - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay label" -msgid "WP Bottom Delay" -msgstr "Atraso da parte inferior da impressão de fios" - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay description" -msgid "Delay time after a downward move. Only applies to Wire Printing." -msgstr "O tempo de atraso após um movimento descendente. Aplica-se apenas à impressão de fios." - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay label" -msgid "WP Flat Delay" -msgstr "Atraso plano da impressão de fios" - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay description" -msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -msgstr "Tempo de atraso entre dois segmentos horizontais. A introdução desse atraso pode causar melhor aderência às camadas anteriores nos pontos de ligação. No entanto, os atrasos demasiado longos podem causar flacidez. Aplica-se apenas à impressão de fios." - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed label" -msgid "WP Ease Upward" -msgstr "Facilidade de movimento ascendente da impressão de fios" - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed description" -msgid "" -"Distance of an upward move which is extruded with half speed.\n" -"This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "" -"A distância de um movimento ascendente que é extrudido a metade da velocidade.\n" -"Isto pode causar melhor aderência às camadas anteriores, sendo que o material nessas camadas não é demasiado aquecido. Aplica-se apenas à impressão de fios." - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump label" -msgid "WP Knot Size" -msgstr "Tamanho do nó da impressão de fios" - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump description" -msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -msgstr "Cria um pequeno nó no topo de uma linha ascendente, para que a camada horizontal subsequente possa ligar-se com maior facilidade. Aplica-se apenas à impressão de fios." - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down label" -msgid "WP Fall Down" -msgstr "Queda da impressão de fios" - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down description" -msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "Distância à qual o material cai após uma extrusão ascendente. Esta distância é compensada. Aplica-se apenas à impressão de fios." - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along label" -msgid "WP Drag Along" -msgstr "Arrastamento da impressão de fios" - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along description" -msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "Distância à qual o material de uma extrusão ascendente é arrastado juntamente com a extrusão diagonal descendente. Esta distância é compensada. Aplica-se apenas à impressão de fios." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy label" -msgid "WP Strategy" -msgstr "Estratégia de impressão de fios" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy description" -msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -msgstr "Estratégia para assegurar que duas camadas consecutivas se ligam a cada ponto de ligação. A retração permite que as linhas ascendentes endureçam na posição correta, mas pode causar a trituração do filamento. É possível fazer um nó no final de uma linha ascendente para aumentar a probabilidade de ligação e para permitir o arrefecimento da linha. No entanto, podem ser necessárias velocidades de impressão reduzidas. Outra estratégia é compensar a flacidez do topo de uma linha ascendente. Porém, as linhas nem sempre cairão conforme previsto." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option compensate" -msgid "Compensate" -msgstr "Compensar" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option knot" -msgid "Knot" -msgstr "Nó" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option retract" -msgid "Retract" -msgstr "Retrair" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down label" -msgid "WP Straighten Downward Lines" -msgstr "Linhas retas descendentes da impressão de fios" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down description" -msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -msgstr "A percentagem de uma linha diagonal descendente que é abrangida por uma peça da linha horizontal. Isto pode impedir a flacidez do ponto mais elevado das linhas ascendentes. Aplica-se apenas à impressão de fios." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down label" -msgid "WP Roof Fall Down" -msgstr "Queda do tecto da impressão de fios" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down description" -msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -msgstr "A distância à qual as linhas horizontais do tecto que são impressas \"no ar\" caem ao ser impressas. Esta distância é compensada. Aplica-se apenas à impressão de fios." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along label" -msgid "WP Roof Drag Along" -msgstr "Arrastamento do tecto da impressão de fios" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along description" -msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -msgstr "A distância da parte final de uma linha interior que é arrastada ao regressar ao contorno externo do tecto. Esta distância é compensada. Aplica-se apenas à impressão de fios." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay label" -msgid "WP Roof Outer Delay" -msgstr "Atraso externo do tecto da impressão de fios" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay description" -msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -msgstr "Tempo gasto nos perímetros externos do buraco que se irá transformar em tecto. Períodos de tempo mais longos permitem garantir uma melhor ligação. Aplica-se apenas à impressão de fios." - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance label" -msgid "WP Nozzle Clearance" -msgstr "Espaço do nozzle da impressão de fios" - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance description" -msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -msgstr "Distância entre o nozzle e as linhas horizontais descendentes. Uma maior folga resulta em linhas horizontais descendentes com um ângulo menos acentuado, o que, por sua vez, resulta em menos ligações ascendentes com a camada seguinte. Aplica-se apenas à impressão de fios." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Utilizar camadas adaptáveis" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Variação máxima das camadas adaptáveis" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Tamanho da fase de variação das camadas adaptáveis" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Dimensão da topografia das camadas adaptáveis" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Ângulo da parede de saliências" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Velocidade da parede de saliências" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Ativar Definições de Bridge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Comprimento mínimo da parede de Bridge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Limiar do suporte do revestimento de Bridge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Densidade Máx. Enchimento Disperso de Bridge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Desaceleração da parede de Bridge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Velocidade da parede de Bridge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Fluxo da parede de Bridge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Velocidade do revestimento de Bridge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Fluxo do revestimento de Bridge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Densidade do revestimento de Bridge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Velocidade da ventoinha de Bridge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Bridge com múltiplas camadas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Velocidade do segundo revestimento de Bridge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Fluxo do segundo revestimento de Bridge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Densidade do segundo revestimento de Bridge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Velocidade da ventoinha do segundo revestimento de Bridge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Velocidade do terceiro revestimento de Bridge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Fluxo do terceiro revestimento de Bridge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Densidade do terceiro revestimento de Bridge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Velocidade da ventoinha do terceiro revestimento de Bridge" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Limpar nozzle entre camadas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Volume de material entre limpezas" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Retração de limpeza ativada" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Distância de retração da limpeza" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Quantidade de preparação adicional de retração de limpeza" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Velocidade de retração de limpeza" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Velocidade de retração na retração de limpeza" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Velocidade de preparação da retração de limpeza" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Pausa na limpeza" - -#: fdmprinter.def.json -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Coloca a limpeza em pausa após anular a retração." - -#: fdmprinter.def.json -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Salto Z de limpeza" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Altura do salto Z de limpeza" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Velocidade do salto de limpeza" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Posição X da escova de limpeza" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Contagem de repetições de limpeza" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Distância do movimento de limpeza" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Tamanho máximo do buraco pequeno" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Comprimento máximo do elemento pequeno" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Velocidade de elemento pequeno" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Velocidade da camada inicial de partes pequenas" - -#: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "material_alternate_walls label" @@ -6581,34 +197,349 @@ msgid "Alternate wall directions every other layer and inset. Useful for materia 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." #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Remover cantos interiores do raft" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Alumínio" #: fdmprinter.def.json -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 "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "Ferramenta ativa escrever sempre" #: fdmprinter.def.json -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Número de paredes da base do raft" +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." #: fdmprinter.def.json -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 "hole_xy_offset description" +msgid "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." +msgstr "Quantidade de desvio aplicado a todos os buracos em cada camada. Valores positivos aumentam o tamanho dos buracos; valores negativos reduzem o tamanho dos buracos." #: fdmprinter.def.json -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Definições de linha de comando" +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." #: fdmprinter.def.json -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 "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\"." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Malha antissaliências" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Posição Retraída Antiescorrimento" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Velocidade de Retração Antiescorrimento" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Evitar Áreas Impressas Durante Movimento" + +#: fdmprinter.def.json +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Evitar Suportes na Deslocação" + +#: fdmprinter.def.json +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Anterior" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Posterior esquerda" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Posterior direita" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Ambos" + +#: fdmprinter.def.json +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Camadas Inferiores" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Padrão da Base na Camada Inicial" + +#: fdmprinter.def.json +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Expansão Revestimento Inferior" + +#: fdmprinter.def.json +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Largura Remoção Revestimento Inferior" + +#: fdmprinter.def.json +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Espessura Inferior" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Posição Retraída de Preparação da Separação" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Velocidade de Retração de Preparação da Separação" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatura de preparação da separação" + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Posição Retraída de Separação" + +#: fdmprinter.def.json +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Velocidade de Retração de Separação" + +#: fdmprinter.def.json +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Temperatura de Separação" + +#: fdmprinter.def.json +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Separar Suportes em Blocos" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Velocidade da ventoinha de Bridge" + +#: fdmprinter.def.json +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Bridge com múltiplas camadas" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Densidade do segundo revestimento de Bridge" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Velocidade da ventoinha do segundo revestimento de Bridge" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Fluxo do segundo revestimento de Bridge" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Velocidade do segundo revestimento de Bridge" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Densidade do revestimento de Bridge" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Fluxo do revestimento de Bridge" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Velocidade do revestimento de Bridge" + +#: fdmprinter.def.json +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Limiar do suporte do revestimento de Bridge" + +#: fdmprinter.def.json +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Densidade Máx. Enchimento Disperso de Bridge" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Densidade do terceiro revestimento de Bridge" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Velocidade da ventoinha do terceiro revestimento de Bridge" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Fluxo do terceiro revestimento de Bridge" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Velocidade do terceiro revestimento de Bridge" + +#: fdmprinter.def.json +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Desaceleração da parede de Bridge" + +#: fdmprinter.def.json +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Fluxo da parede de Bridge" + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Velocidade da parede de Bridge" + +#: fdmprinter.def.json +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Aba" + +#: fdmprinter.def.json +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Distância da Aba" + +#: fdmprinter.def.json +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "Borda interna evitar margem" + +#: fdmprinter.def.json +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Número Linhas da Aba" + +#: fdmprinter.def.json +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Aba Apenas no Exterior" + +#: fdmprinter.def.json +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "A aba substitui o suporte" + +#: fdmprinter.def.json +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Largura da Aba" + +#: fdmprinter.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Aderência" + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Extrusor para Aderência" + +#: fdmprinter.def.json +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Modos de Aderência" + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Material da Base de Construção" + +#: fdmprinter.def.json +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Forma da Base de Construção" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Temperatura Base de Construção" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Temperatura da base de construção da camada inicial" + +#: fdmprinter.def.json +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatura do volume de construção" #: fdmprinter.def.json msgctxt "center_object label" @@ -6616,781 +547,6227 @@ msgid "Center Object" msgstr "Centrar Objeto" #: fdmprinter.def.json -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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Velocidade de desaceleração" + +#: fdmprinter.def.json +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Volume de desaceleração" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Modo de Combing" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Definições de linha de comando" + +#: fdmprinter.def.json +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +#: fdmprinter.def.json +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +#: fdmprinter.def.json +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Ângulo do suporte cónico" + +#: fdmprinter.def.json +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Largura mínima do suporte cónico" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Ligar Linhas Enchimento" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Ligar polígonos de enchimento" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Ligar Linhas de Suporte" + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Ligar ziguezagues de suporte" + +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Ligar polígonos superiores/inferiores" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Velocidade de arrefecimento" + +#: fdmprinter.def.json +msgctxt "cooling description" +msgid "Cooling" +msgstr "Arrefecimento" + +#: fdmprinter.def.json +msgctxt "cooling label" +msgid "Cooling" +msgstr "Arrefecimento" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Cruz" + +#: fdmprinter.def.json +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Cruz" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Cruz 3D" + +#: fdmprinter.def.json +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Tamanho da bolsa de cruz 3D" + +#: fdmprinter.def.json +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Imagem Densidade Suporte em Cruz" + +#: fdmprinter.def.json +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Imagem Densidade Enchimento Cruz" + +#: fdmprinter.def.json +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Material Cristalino" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Cúbico" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Subdivisão Cúbica" + +#: fdmprinter.def.json +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Invólucro Subdivisão Cúbica" + +#: fdmprinter.def.json +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Malha de corte" + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Aceleração Predefinida" + +#: fdmprinter.def.json +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Temperatura Predefinida Base Construção" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Jerk Predefinido do Filamento" + +#: fdmprinter.def.json +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Temperatura Impressão Predefinida" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Jerk X-Y Predefinido" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Jerk Z Predefinido" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "O jerk predefinido do movimento no plano horizontal." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "O jerk predefinido do motor do filamento." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diâmetro" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Áreas não permitidas" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support." +msgstr "A distância entre a impressão e a parte inferior do suporte." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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. This value is rounded up to a multiple of the layer height." +msgstr "A distância entre a parte superior/inferior da estrutura de suporte e a impressão. Esta folga permite retirar os suportes depois de o modelo ser impresso. Este valor é arredondado para um múltiplo da espessura da camada." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Altura da proteção contra correntes de ar" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Limite de proteção contra correntes de ar" + +#: fdmprinter.def.json +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Distância X/Y da proteção contra correntes de ar" + +#: fdmprinter.def.json +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Malha de suporte pendente" + +#: fdmprinter.def.json +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Dupla Extrusão" + +#: fdmprinter.def.json +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Elíptica" + +#: fdmprinter.def.json +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Ativar controlo da aceleração" + +#: fdmprinter.def.json +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Ativar Definições de Bridge" + +#: fdmprinter.def.json +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Ativar desaceleração" + +#: fdmprinter.def.json +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Ativar suporte cónico" + +#: fdmprinter.def.json +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Barreira contra correntes de ar" + +#: fdmprinter.def.json +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Ativar Engomar (Ironing)" + +#: fdmprinter.def.json +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Ativar Controlo do Jerk" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Ativar controlo de temperatura do nozzle" + +#: fdmprinter.def.json +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Ativar proteção contra escorrimento" + +#: fdmprinter.def.json +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "\"Blob\" de Preparação" + +#: fdmprinter.def.json +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Ativar torre de preparação" + +#: fdmprinter.def.json +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Ativar Arrefecimento Impressão" + +#: fdmprinter.def.json +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Ativar Retração" + +#: fdmprinter.def.json +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Ativar aba de suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Ativar piso de suporte" + +#: fdmprinter.def.json +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Ativar interface de suporte" + +#: fdmprinter.def.json +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Ativar tecto de suporte" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Ativar a aceleração da viagem" + +#: fdmprinter.def.json +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Ativar Jerk de Viagem" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "G-code Final" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Comprimento da purga do fim do filamento" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Velocidade da purga do fim do filamento" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Em todo o lado" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exclusivo" + +#: fdmprinter.def.json +msgctxt "experimental label" +msgid "Experimental" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Expor Junta" + +#: fdmprinter.def.json +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Costura Extensiva" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Contagem de paredes de enchimento adicionais" + +#: fdmprinter.def.json +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Paredes Revestimento Extra" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posição X Preparação Extrusor" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posição Y Preparação Extrusor" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posição Z para Preparação Extrusor" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Extrusoras Partilham Aquecedor" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Extrusoras partilham bocal" + +#: fdmprinter.def.json +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Modificador da velocidade de arrefecimento da extrusão" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Velocidade Ventiladores" + +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Substituir velocidade da ventoinha" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Funcionalidades que ainda não foram totalmente lançadas." + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diâmetro Roda do Alimentador" + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Temperatura de impressão final" + +#: fdmprinter.def.json +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Retração em Firmware" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extrusor de suporte da primeira camada" + +#: fdmprinter.def.json +msgctxt "material_flow label" +msgid "Flow" +msgstr "Fluxo" + +#: fdmprinter.def.json +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Proporção de equalização do fluxo" + +#: fdmprinter.def.json +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Fator de compensação da taxa de fluxo" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Gráfico de temperatura de fluxo" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Compensação de fluxo nas linhas de enchimento." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Compensação de fluxo nas linhas da torre de preparação." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Compensação de fluxo nas linhas do teto do suporte." + +#: fdmprinter.def.json +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Compensação de fluxo nas linhas das estruturas de suporte." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Compensação de fluxo na linha de parede exterior." + +#: fdmprinter.def.json +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Compensação de fluxo nas linhas superiores/inferiores." + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Compensação de fluxo nas linhas de parede." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Comprimento da purga da descarga" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Velocidade da purga da descarga" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Frontal" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Frontal esquerda" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Frontal direita" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Máximo" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Revestimento Difuso" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Densidade Revestimento Difuso" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Revestimento difuso apenas no exterior" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Distância do ponto de revestimento difuso" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Espessura Revestimento Difuso" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Variante do G-code" + +#: fdmprinter.def.json +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 \n" +"." + +#: fdmprinter.def.json +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 \n" +"." + +#: fdmprinter.def.json +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID do material. Este é definido automaticamente." + +#: fdmprinter.def.json +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Altura do pórtico" + +#: fdmprinter.def.json +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Gerar estrutura de interligação" + +#: fdmprinter.def.json +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Criar Suportes" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Vidro" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Altura Degraus Enchimento Gradual" + +#: fdmprinter.def.json +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Degraus Enchimento Gradual" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Altura do degrau de enchimento gradual de suporte" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Enchimento Gradual Suporte" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Grelha" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Grelha" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Grelha" + +#: fdmprinter.def.json +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Grelha" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Grelha" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +#: fdmprinter.def.json +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" + +#: fdmprinter.def.json +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Tem estabilização da temperatura do volume de construção" + +#: fdmprinter.def.json +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Tem Base de Construção Aquecida" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Velocidade de aquecimento" + +#: fdmprinter.def.json +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Comprimento da zona de aquecimento" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Ocultar Junta" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Ocultar ou Expor Junta" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Expansão horizontal de buraco" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Expansão Horizontal" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Compensação de contração do fator de dimensionamento horizontal" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance description" +msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." +msgstr "A distância entre os ramos, quando estes tocam o modelo. Se esta distância for pequena faz com que os suportes tenham mais pontos de contacto com o modelo, permitindo um melhor apoio em saliências mas faz com que os suportes sejam mais difíceis de retirar." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Incluir Temperatura da Base de Construção" + +#: fdmprinter.def.json +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Incluir Temperaturas do Material" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusivo" + +#: fdmprinter.def.json +msgctxt "infill description" +msgid "Infill" +msgstr "Enchimento" + +#: fdmprinter.def.json +msgctxt "infill label" +msgid "Infill" +msgstr "Enchimento" + +#: fdmprinter.def.json +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Aceleração de enchimento" + +#: fdmprinter.def.json +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Enchimento antes das paredes" + +#: fdmprinter.def.json +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Densidade do Enchimento" + +#: fdmprinter.def.json +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Extrusor Enchimento" + +#: fdmprinter.def.json +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Fluxo de Enchimento" + +#: fdmprinter.def.json +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Jerk do Enchimento" + +#: fdmprinter.def.json +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Espessura Camada Enchimento" + +#: fdmprinter.def.json +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Direções Linhas Enchimento" + +#: fdmprinter.def.json +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Distância Linhas Enchimento" + +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Multiplicador de linhas de enchimento" + +#: fdmprinter.def.json +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Diâmetro Linha Enchimento" + +#: fdmprinter.def.json +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Objecto de Enchimento" + +#: fdmprinter.def.json +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Ângulo Saliência Enchimento" + +#: fdmprinter.def.json +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Sobreposição Enchimento (mm)" + +#: fdmprinter.def.json +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Sobreposição Enchimento (%)" + +#: fdmprinter.def.json +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Padrão de Enchimento" + +#: fdmprinter.def.json +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Velocidade Enchimento" + +#: fdmprinter.def.json +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Enchimento como Suporte" + +#: fdmprinter.def.json +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Optimização Deslocação Enchimento" + +#: fdmprinter.def.json +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Distância Limpeza Enchimento" + +#: fdmprinter.def.json +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Deslocar Enchimento em X" + +#: fdmprinter.def.json +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Deslocar Enchimento em Y" + +#: fdmprinter.def.json +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Camadas inferiores iniciais" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Velocidade Inicial do ventilador" + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Aceleração da camada inicial" + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Fluxo inferior da camada inicial" + +#: fdmprinter.def.json +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Fluxo Camada Inicial" + +#: fdmprinter.def.json +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Espessura da Camada Inicial" + +#: fdmprinter.def.json +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Expansão Horizontal Camada Inicial" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Fluxo da parede interna da camada inicial" + +#: fdmprinter.def.json +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Jerk da Camada Inicial" + +#: fdmprinter.def.json +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Diâmetro Linha Camada Inicial" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Fluxo da parede externa da camada inicial" + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Aceleração de impressão da camada inicial" + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Jerk Impressão Camada Inicial" + +#: fdmprinter.def.json +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Velocidade de impressão da camada inicial" + +#: fdmprinter.def.json +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Velocidade Camada Inicial" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Distância da linha de suporte da camada inicial" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Aceleração de deslocação da camada inicial" + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Jerk Deslocação Camada Inicial" + +#: fdmprinter.def.json +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Velocidade de deslocação da camada inicial" + +#: fdmprinter.def.json +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Sobreposição Z Camada Inicial" + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Temperatura de impressão inicial" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Aceleração da parede interior" + +#: fdmprinter.def.json +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extrusor Paredes Interiores" + +#: fdmprinter.def.json +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Jerk das Paredes Interiores" + +#: fdmprinter.def.json +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Velocidade Parede Interior" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Parede de Parede(s) Interior(es)" + +#: fdmprinter.def.json +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Diâmetro Linha Parede(s) Interior" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "De dentro para fora" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Contagem de camada de feixe de interligação" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Largura do feixe de interligação" + +#: fdmprinter.def.json +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Evitar a interligação de fronteiras" + +#: fdmprinter.def.json +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Profundidade de interligação" + +#: fdmprinter.def.json +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Orientação da estrutura de interligação" + +#: fdmprinter.def.json +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Engomar Só Última Camada" + +#: fdmprinter.def.json +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Aceleração de Engomar" + +#: fdmprinter.def.json +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Fluxo de Engomar" + +#: fdmprinter.def.json +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Desvio Interior de Engomar" + +#: fdmprinter.def.json +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Jerk de Engomar" + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Distância Linhas de Engomar" + +#: fdmprinter.def.json +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Padrão de Engomar" + +#: fdmprinter.def.json +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Velocidade de Engomar" + +#: fdmprinter.def.json +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "O Centro é a Origem" + +#: fdmprinter.def.json +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)?" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Manter Faces Soltas" + +#: fdmprinter.def.json +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Espessura das Camadas" + +#: fdmprinter.def.json +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "X Início Camada" + +#: fdmprinter.def.json +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Y Início Camada" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "A espessura da camada do meio do raft. (segunda camada)" + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "A espessura das camadas superiores do raft." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Esquerda" + +#: fdmprinter.def.json +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Elevar Cabeça" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Relâmpago" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Ângulo de saliência do enchimento relâmpago" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Ângulo de corte do enchimento relâmpago" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Ângulo de alisamento do enchimento relâmpago" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Ângulo de suporte de enchimento relâmpago" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Limitado" + +#: fdmprinter.def.json +msgctxt "line_width label" +msgid "Line Width" +msgstr "Diâmetro da Linha" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +#: fdmprinter.def.json +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Linhas" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +#: fdmprinter.def.json +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" + +#: fdmprinter.def.json +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Profundidade da Máquina" + +#: fdmprinter.def.json +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Polígono da cabeça e do ventilador da máquina" + +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Altura da Máquina" + +#: fdmprinter.def.json +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Tipo de Máquina" + +#: fdmprinter.def.json +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Largura da Máquina" + +#: fdmprinter.def.json +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Definições específicas da máquina" + +#: fdmprinter.def.json +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Tornar Saliência Imprimível" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Sobrepor, na direção Z, a primeira e a segunda camadas do modelo para compensar o filamento perdido na caixa de ar. O valor da distância com que todos os modelos acima da primeira camada do modelo serão deslocados para baixo." + +#: fdmprinter.def.json +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Torne os objetos mais adequados para impressão 3D." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumétrico)" + +#: fdmprinter.def.json +msgctxt "material description" +msgid "Material" +msgstr "Material" + +#: fdmprinter.def.json +msgctxt "material label" +msgid "Material" +msgstr "Material" + +#: fdmprinter.def.json +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID do material" + +#: fdmprinter.def.json +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Volume de material entre limpezas" + +#: fdmprinter.def.json +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Distância Max. de Combing sem Retração" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Aceleração X Máxima" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Aceleração Y Máxima" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Aceleração Z Máxima" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Desvio máximo" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Desvio máximo da área de extrusão" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Velocidade Máxima Ventiladores" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Aceleração Máxima do Filamento" + +#: fdmprinter.def.json +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Ângulo máximo do modelo" + +#: fdmprinter.def.json +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Área máxima do buraco da saliência" + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Duração máxima do parqueamento" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Resolução Máxima" + +#: fdmprinter.def.json +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Número Máximo Retrações" + +#: fdmprinter.def.json +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Ângulo Revestimento para Expansão" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Velocidade Máxima de E" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Velocidade X Máxima" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Velocidade Y Máxima" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Velocidade Z Máxima" + +#: fdmprinter.def.json +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Diâmetro Máximo Suportado pela Torre" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Resolução Máxima Deslocação" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Sobreposição Malhas Combinadas" + +#: fdmprinter.def.json +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Correção de Objectos (Mesh)" #: fdmprinter.def.json msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "Posição X do Objeto" -#: fdmprinter.def.json -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Desvio aplicado ao objeto na direção X." - #: fdmprinter.def.json msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "Posição Y do Objeto" -#: fdmprinter.def.json -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Desvio aplicado ao objeto na direção Y." - #: fdmprinter.def.json msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "Posição Z do Objeto" #: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "Matriz Rotação do Objeto" +#: fdmprinter.def.json +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Centro" + +#: fdmprinter.def.json +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Largura mínima do molde" + +#: fdmprinter.def.json +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Tempo Mínimo da Temperatura em Modo de Espera" + +#: fdmprinter.def.json +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Comprimento mínimo da parede de Bridge" + +#: fdmprinter.def.json +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Diâmetro mínimo de linha da parede Par" + +#: fdmprinter.def.json +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Intervalo Mínimo Distância Extrusão" + +#: fdmprinter.def.json +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Tamanho mínimo da característica" + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Velocidade Mínima de Alimentação" + +#: fdmprinter.def.json +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Área de enchimento mínimo" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Tempo mínimo por camada" + +#: fdmprinter.def.json +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Diâmetro mínimo de linha da parede Ímpar" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Circunferência Mínima do Polígono" + +#: fdmprinter.def.json +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Largura Mínima Revestimento para Expansão" + +#: fdmprinter.def.json +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Velocidade Mínima" + +#: fdmprinter.def.json +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Área de suporte mínimo" + +#: fdmprinter.def.json +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Área mínima do piso de suporte" + +#: fdmprinter.def.json +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Área mínima da interface de suporte" + +#: fdmprinter.def.json +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Área mínima do teto de suporte" + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Distância X/Y mínima de suporte" + +#: fdmprinter.def.json +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Diâmetro mínimo de linha da parede fina" + +#: fdmprinter.def.json +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Volume mínimo antes da desaceleração" + +#: fdmprinter.def.json +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Diâmetro mínimo de linha da parede" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Molde" + +#: fdmprinter.def.json +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Ângulo do molde" + +#: fdmprinter.def.json +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Altura do tecto do molde" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Ordem de Engomar em \"Monotonic\"" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Ordem da superfície superior em \"Monotonic\"" + +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Ordem Superior/Inferior em \"Monotonic\"" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Fator do movimento sem carregamento" + +#: fdmprinter.def.json +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Sem Revestimento nos Espaços Z" + +#: fdmprinter.def.json +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Formas não tradicionais de imprimir os seus modelos." + +#: fdmprinter.def.json +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Nenhum" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Nenhum" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Não no Revestimento" + +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Não na Superfície Exterior" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Ângulo do nozzle" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diâmetro do Nozzle" + +#: fdmprinter.def.json +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Áreas não permitidas ao nozzle" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID do Nozzle" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Comprimento do nozzle" + +#: fdmprinter.def.json +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Quantidade de Preparação Extra de Substituição do Nozzle" + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Velocidade de preparação de substituição do nozzle" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Velocidade de recolha de substituição do nozzle" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Distância de retração de substituição do nozzle" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Velocidade de retração de substituição do nozzle" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Número de Extrusores" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Número de extrusores ativos" + +#: fdmprinter.def.json +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Número de camadas mais lentas" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octeto" + +#: fdmprinter.def.json +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Desligado" + +#: fdmprinter.def.json +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Desvio aplicado ao objeto na direção X." + +#: fdmprinter.def.json +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Desvio aplicado ao objeto na direção Y." + +#: fdmprinter.def.json +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\"." + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Desviar com extrusor" + +#: fdmprinter.def.json +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Individualmente" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 a aba apenas no exterior do modelo. Isto reduz a quantidade de abas a remover posteriormente, e ao mesmo tempo não reduz assim tanto a aderência à base." + +#: fdmprinter.def.json +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Ângulo da proteção contra escorrimentos" + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Distância da proteção contra escorrimentos" + +#: fdmprinter.def.json +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Otimizar Ordem Paredes" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Diâmetro externo do nozzle" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Aceleração da parede exterior" + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extrusor Parede Exterior" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Fluxo de Parede Exterior" + +#: fdmprinter.def.json +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Desvio Parede Exterior" + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Jerk da Parede Exterior" + +#: fdmprinter.def.json +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Diâmetro Linha Parede Exterior" + +#: fdmprinter.def.json +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Velocidade Parede Exterior" + +#: fdmprinter.def.json +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Distância Limpeza Parede Exterior" + +#: fdmprinter.def.json +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "De fora para dentro" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Ângulo da parede de saliências" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Velocidade da parede de saliências" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Coloca a limpeza em pausa após anular a retração." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Aceleração da torre de preparação" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Brim" +msgstr "Aba da torre de preparação" + +#: fdmprinter.def.json +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Fluxo da torre de preparação" + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Jerk da Torre de Preparação" + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Diâmetro Linha Torre Preparação" + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Volume mínimo da torre de preparação" + +#: fdmprinter.def.json +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Tamanho Torre de Preparação" + +#: fdmprinter.def.json +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Velocidade da torre de preparação" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Posição X da torre de preparação" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Posição Y da torre de preparação" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +msgstr "As torres de preparação poderão necessitar de uma aderência adicional concedida por uma aba, ainda que o modelo não o necessite. Atualmente, não é possível utilizá-la com o tipo de aderência \"Raft\"." + +#: fdmprinter.def.json +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Aceleração de impressão" + +#: fdmprinter.def.json +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Jerk da Impressão" + +#: fdmprinter.def.json +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Sequência de impressão" + +#: fdmprinter.def.json +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Velocidade de Impressão" + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Imprimir Paredes Finas" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Temperatura de Impressão" + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Temperatura Impressão Camada Inicial" + +#: fdmprinter.def.json +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "resolution label" +msgid "Quality" +msgstr "Qualidade" + +#: fdmprinter.def.json +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Quarto Cúbico" + +#: fdmprinter.def.json +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" + +#: fdmprinter.def.json +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Caixa de Ar do Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Extrusor da base do raft" + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Velocidade do ventilador inferior do raft" + +#: fdmprinter.def.json +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Espaçamento da Linha Base do Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Diâmetro Linha Base do Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Aceleração da Base do Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Jerk de impressão inferior do raft" + +#: fdmprinter.def.json +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Velocidade da Base do Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Espessura da Base do Raft" + +#: fdmprinter.def.json +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Número de paredes da base do raft" + +#: fdmprinter.def.json +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Margem Adicional Raft" + +#: fdmprinter.def.json +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Velocidade do ventilador do raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Extrusor do meio do raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Velocidade do ventilador do meio do raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Camadas do meio do raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Diâmetro Linha do Meio do Raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Aceleração do Meio do Raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Jerk de impressão do meio do raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Velocidade do Meio do Raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Espaçamento do Meio do Raft" + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Espessura do Meio do Raft" + +#: fdmprinter.def.json +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Aceleração Impressão do Raft" + +#: fdmprinter.def.json +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Jerk de impressão do raft" + +#: fdmprinter.def.json +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Velocidade Impressão do Raft" + +#: fdmprinter.def.json +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Suavização Raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Extrusora superior do raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Velocidade do ventilador superior do raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Espessura Camada Superior Raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Camadas Superiores do Raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Diâmetro Linha Superior do Raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Aceleração do Topo do Raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Jerk de impressão superior do raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Velocidade do Topo do Raft" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Espaçamento Superior do Raft" + +#: fdmprinter.def.json +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Aleatório" + +#: fdmprinter.def.json +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Início aleatório do enchimento" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Velocidade Normal Ventiladores" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Altura Velocidade Normal Ventilador" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Camada Velocidade Normal Ventilador" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Limiar Normal / Máximo Velocidade Ventilador" + +#: fdmprinter.def.json +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Extrusão relativa" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Remover Todos Buracos" + +#: fdmprinter.def.json +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Remover Camadas Iniciais Vazias" + +#: fdmprinter.def.json +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Remover interceção de malhas" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Remover cantos interiores do raft" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution description" +msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." +msgstr "A resolução do cálculo de prevenção de colisões com o modelo. Usando um valor baixo irá criar suportes tipo árvore com maior sucesso, mas aumenta drasticamente o tempo de seccionamento." + +#: fdmprinter.def.json +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Retrair Antes Parede Exterior" + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Retrair na Mudança Camada" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Distância de Retração" + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Preparação Adicional de Retração" + +#: fdmprinter.def.json +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Deslocação Mínima da Retração" + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Velocidade de preparação na retração" + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Velocidade Retrair na Retração" + +#: fdmprinter.def.json +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Velocidade de Retração" + +#: fdmprinter.def.json +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Direita" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Compensação de redução do fator de escala" + +#: fdmprinter.def.json +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "O cenário tem malhas de suporte" + +#: fdmprinter.def.json +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Preferência Canto Junta" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Definições utilizadas para imprimir com vários extrusores." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Retração inicial do bocal partilhado" + +#: fdmprinter.def.json +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Canto mais Acentuado" + +#: fdmprinter.def.json +msgctxt "shell description" +msgid "Shell" +msgstr "Invólucro" + +#: fdmprinter.def.json +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Mais curto" + +#: fdmprinter.def.json +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Mostrar Variantes da Máquina" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Camadas do Suporte da Aresta de Revestimento" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Espessura do Suporte da Aresta de Revestimento" + +#: fdmprinter.def.json +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Distância Expansão Revestimento" + +#: fdmprinter.def.json +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Sobreposição Revestimento (mm)" + +#: fdmprinter.def.json +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Sobreposição Revestimento (%)" + +#: fdmprinter.def.json +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Largura Remoção Revestimento" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Contorno" + +#: fdmprinter.def.json +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Distância Contorno" + +#: fdmprinter.def.json +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Número Linhas Contorno" + +#: fdmprinter.def.json +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Aceleração Contorno/Aba" + +#: fdmprinter.def.json +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Extrusor do contorno/aba" + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Fluxo de Contorno/Aba" + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Jerk de Contorno/Aba" + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Diâmetro Linha Contorno/Aba" + +#: fdmprinter.def.json +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Comprimento Mínimo Contorno/Aba" + +#: fdmprinter.def.json +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Velocidade Contorno/Aba" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Tolerância do Seccionamento" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Velocidade da camada inicial de partes pequenas" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Comprimento máximo do elemento pequeno" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Velocidade de elemento pequeno" + +#: fdmprinter.def.json +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Tamanho máximo do buraco pequeno" + +#: fdmprinter.def.json +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Temperatura de impressão de camada pequena" + +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Ocultação Inteligente" + +#: fdmprinter.def.json +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "\"Spiralize\" Suavizar Contornos" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Modos Especiais" + +#: fdmprinter.def.json +msgctxt "speed description" +msgid "Speed" +msgstr "Velocidade" + +#: fdmprinter.def.json +msgctxt "speed label" +msgid "Speed" +msgstr "Velocidade" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "\"Spiralize\" Contorno Exterior" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Temperatura em Espera" + +#: fdmprinter.def.json +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "G-code Inicial" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Passos por Milímetro (E)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Passos por Milímetro (X)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Passos por Milímetro (Y)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Passos por Milímetro (Z)" + +#: fdmprinter.def.json +msgctxt "support description" +msgid "Support" +msgstr "Suportes" + +#: fdmprinter.def.json +msgctxt "support label" +msgid "Support" +msgstr "Suportes" + +#: fdmprinter.def.json +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Aceleração de suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Distância inferior do suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Contagem das linhas da parede inferior de suporte" + +#: fdmprinter.def.json +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Contagem de linhas da aba do suporte" + +#: fdmprinter.def.json +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Largura da aba do suporte" + +#: fdmprinter.def.json +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Número de linhas do bloco de suporte" + +#: fdmprinter.def.json +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Tamanho do bloco de suporte" + +#: fdmprinter.def.json +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Densidade do Suporte" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Prioridade da distância de suporte" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extrusor dos Suportes" + +#: fdmprinter.def.json +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Aceleração do piso de suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Densidade do piso de suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extrusor de piso de suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Fluxo do Chão do Suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Expansão horizontal do piso de suporte" + +#: fdmprinter.def.json +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Jerk do Piso do Suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Direções da linha do piso do suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Distância da linha do piso de suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Diâmetro Linha Piso Suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Padrão Piso Suporte" + +#: fdmprinter.def.json +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Velocidade do piso de suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Espessura do piso de suporte" + +#: fdmprinter.def.json +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Fluxo de Suporte" + +#: fdmprinter.def.json +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Expansão horizontal de suporte" + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Aceleração de enchimento do suporte" + +#: fdmprinter.def.json +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extrusor de enchimento do suporte" + +#: fdmprinter.def.json +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Jerk do Enchimento do Suporte" + +#: fdmprinter.def.json +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Espessura da camada de enchimento de suporte" + +#: fdmprinter.def.json +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Direção da linha de enchimento do suporte" + +#: fdmprinter.def.json +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Velocidade de enchimento do suporte" + +#: fdmprinter.def.json +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Aceleração da interface de suporte" + +#: fdmprinter.def.json +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Densidade da interface de suporte" + +#: fdmprinter.def.json +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extrusor de interface de suporte" + +#: fdmprinter.def.json +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Fluxo da Interface do Suporte" + +#: fdmprinter.def.json +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Expansão horizontal da interface de suporte" + +#: fdmprinter.def.json +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Jerk da Interface do Suporte" + +#: fdmprinter.def.json +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Direções da linha da interface do suporte" + +#: fdmprinter.def.json +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Diâmetro Linha Interface Suporte" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Padrão da interface de suporte" + +#: fdmprinter.def.json +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Resolução Interface Suporte" + +#: fdmprinter.def.json +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Velocidade da interface de suporte" + +#: fdmprinter.def.json +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Espessura Interface Suporte" + +#: fdmprinter.def.json +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Contagem das linhas de parede da interface de suporte" + +#: fdmprinter.def.json +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Jerk do Suporte" + +#: fdmprinter.def.json +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Distância da junção do suporte" + +#: fdmprinter.def.json +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Distância da linha de suporte" + +#: fdmprinter.def.json +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Diâmetro Linha Suportes" + +#: fdmprinter.def.json +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Malha de suporte" + +#: fdmprinter.def.json +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Ângulo Saliência para Suportes" + +#: fdmprinter.def.json +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Padrão de Suportes" + +#: fdmprinter.def.json +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Colocação do suporte" + +#: fdmprinter.def.json +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Aceleração do tecto de suporte" + +#: fdmprinter.def.json +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Densidade do tecto de suporte" + +#: fdmprinter.def.json +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extrusor de tecto de suporte" + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Fluxo do Teto do Suporte" + +#: fdmprinter.def.json +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Expansão horizontal do teto de suporte" + +#: fdmprinter.def.json +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Jerk do Tecto do Suporte" + +#: fdmprinter.def.json +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Direções da linha do teto do suporte" + +#: fdmprinter.def.json +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Distância da linha do tecto de suporte" + +#: fdmprinter.def.json +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Diâmetro Linha Tecto Suporte" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Padrão do tecto de suporte" + +#: fdmprinter.def.json +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Velocidade do tecto de suporte" + +#: fdmprinter.def.json +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Espessura do tecto de suporte" + +#: fdmprinter.def.json +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Contagem das linhas de parede do telhado de suporte" + +#: fdmprinter.def.json +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Velocidade Suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Altura Degraus Suporte" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Largura Máxima Degraus Suporte" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Estrutura de suporte" + +#: fdmprinter.def.json +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Distância superior do suporte" + +#: fdmprinter.def.json +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Número Linhas Paredes Suporte" + +#: fdmprinter.def.json +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Distância X/Y do suporte" + +#: fdmprinter.def.json +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Distância Z de suporte" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Velocidade da ventoinha de revestimento suportada" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Superfície" + +#: fdmprinter.def.json +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Energia da superfície" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Modo de superfície" + +#: fdmprinter.def.json +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "A tendência de aderência à superfície." + +#: fdmprinter.def.json +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Energia da superfície." + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "A aceleração da camada inicial." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "A aceleração com que o enchimento é impresso." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "A aceleração com que é efetuada a impressão." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "A aceleração com que o raft é impresso." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "A aceleração com que as paredes são impressas." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_tree_angle description" +msgid "The angle of the branches. 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 dos ramos. Usar um ângulo pequeno para criar ramos mais verticais e estáveis. Usar um ângulo maior para conseguir que os ramos tenham um maior alcance." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "A profundidade (direção Y) da área de impressão." + +#: fdmprinter.def.json +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "O diâmetro de uma torre especial." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "A distância entre as linhas de engomar." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "A velocidade do ventilador do raft." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "A altura (direção Z) da área de impressão." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "A diferença de altura ao efetuar um salto Z." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" +"A distância horizontal entre o contorno e o perímetro exterior da primeira camada da impressão.\n" +"Esta é a distância mínima. Linhas múltiplas de contorno serão impressas para o exterior." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "O jerk com que o raft é impresso." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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ó." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "A velocidade máxima do filamento." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "O nome do seu modelo de impressora 3D." + +#: fdmprinter.def.json +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\"." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "O padrão geométrico das camadas superiores / inferiores." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "A velocidade a que o enchimento é impresso." + +#: fdmprinter.def.json +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "A velocidade a que é efetuada a impressão." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "A velocidade a que o raft é impresso." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "A velocidade a que as paredes são impressas." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +msgstr "A temperatura utilizada para imprimir a primeira camada. Esta é definida como 0 para desativar o manuseamento especial da camada inicial." + +#: fdmprinter.def.json +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "A temperatura utilizada para a impressão." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "O tipo de G-code a ser gerado." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "A largura (direção X) da área de impressão." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "A largura das vigas da estrutura de interligação." + +#: fdmprinter.def.json +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "A largura da torre de preparação." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Camadas Superiores" + +#: fdmprinter.def.json +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Distância Expansão Revestimento Superior" + +#: fdmprinter.def.json +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Largura Remoção Revestimento Superior" + +#: fdmprinter.def.json +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Aceleração Revestimento Superior" + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Extrusor Revestimento Superior" + +#: fdmprinter.def.json +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Fluxo de Revestimento da Superfície Superior" + +#: fdmprinter.def.json +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Jerk Revestimento Superior" + +#: fdmprinter.def.json +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Camadas Revestimento Superior" + +#: fdmprinter.def.json +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Direções Linha Revestimento Superior" + +#: fdmprinter.def.json +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Diâmetro Linha Revestimento Superior" + +#: fdmprinter.def.json +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Padrão Revestimento Superior" + +#: fdmprinter.def.json +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Velocidade Revestimento Superior" + +#: fdmprinter.def.json +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Espessura Superior" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Superior / Inferior" + +#: fdmprinter.def.json +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Superior / Inferior" + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Aceleração superior/inferior" + +#: fdmprinter.def.json +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extrusor Superior / Inferior" + +#: fdmprinter.def.json +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Fluxo Superior/Inferior" + +#: fdmprinter.def.json +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Jerk Superior/Inferior" + +#: fdmprinter.def.json +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Direções Linha Superior / Inferior" + +#: fdmprinter.def.json +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Diâmetro Linha Superior / Inferior" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Padrão Superior / Inferior" + +#: fdmprinter.def.json +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Velocidade Superior/Inferior" + +#: fdmprinter.def.json +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Espessura Superior / Inferior" + +#: fdmprinter.def.json +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "A Tocar na base de construção" + +#: fdmprinter.def.json +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Diâmetro da torre" + +#: fdmprinter.def.json +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Ângulo do tecto da torre" + #: fdmprinter.def.json 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 "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "Uma silhueta 2D da cabeça de impressão (incluindo tampas do(s) ventilador(s))." - -# antes das interiores? -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Paredes Exteriores Primeiro" - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Quando ativado, imprime as paredes do exterior para o interior. Isto pode ajudar a melhorar a precisão dimensional em X e Y quando utilizar um plástico com alta viscosidade, como o ABS; no entanto, pode diminuir a qualidade de impressão da superfície exterior, especialmente em saliências." - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Compensar Sobreposição Paredes" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Compensar o fluxo em partes de uma parede a ser impressa, onde já exista uma parede." - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Compensar Paredes Exteriores" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Compensar o fluxo em partes de uma parede exterior a ser impressa, onde já exista uma parede." - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Compensar Paredes Interiores" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Compensar o fluxo em partes de uma parede interior a ser impressa, onde já exista uma parede." - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Fluxo de parede mínimo" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "Fluxo percentual mínimo permitido para uma linha de parede. A compensação de substituição de paredes reduz o fluxo de uma parede quando se situa junto a uma parede existente. As paredes cujo fluxo é inferior a este valor serão substituídas com um movimento de deslocação. Ao utilizar esta definição, deve ativar a compensação de sobreposição de paredes e imprimir a parede exterior antes das paredes interiores." - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Preferir retração" - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Se ativada, é utilizada retração em vez de combing para movimentos de deslocação que substituem paredes cujo fluxo está abaixo do limiar mínimo de fluxo." - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Preencher Folgas Entre Paredes" - -# rever! -# onde nenhuma parede cabe -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Preencher as folgas entre as paredes onde não é possível criar paredes." - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Em lado nenhum" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Em todo o lado" - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "Descartar Folgas Mínimas" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "Descartar folgas muito pequenas, entre paredes, para reduzir \"blobs\" (borrões) no exterior da impressão." - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Equilibrar fluxo de filamento" - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Imprime linhas mais finas do que o normal de forma mais rápida, para que a quantidade de material extrudido por segundo permaneça o mesmo. As peças finas do modelo podem requerer linhas impressas com uma menor espessura de linha do que a especificada nas definições. Esta definição controla as mudanças de velocidade dessas linhas." - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Velocidade máxima para equilíbrio de fluxo" - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "A velocidade máxima de impressão ao ajustar a velocidade de impressão para equilibrar o fluxo." - -#~ 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 \\n." - -#~ 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 \\n." - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Velocidade Máxima de Alimentação" - -#~ 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 (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ 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 em grelha, triângulo, tri-hexágono, octeto, quarto cúbico, cruz e concêntricos 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 as partes superiores (internas) do objeto. Como tal, a percentagem de enchimento só é \"válida\" uma camada abaixo do que for necessário para suportar o modelo." - -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "A diferença que uma camada de enchimento relâmpago pode ter com uma imediatamente acima no que diz respeito ao corte das extremidades exteriores das árvores. Medido como um ângulo conforme a espessura." - -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ msgstr "A diferença que uma camada de enchimento relâmpago pode ter com uma imediatamente acima no que diz respeito ao alisamento das árvores. Medido como um ângulo conforme a espessura." - -#~ 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." -#~ msgstr "O padrão do material de enchimento da impressão. A direção de troca de enchimento de linha e ziguezague em camadas alternadas, reduzindo os custos de 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 são alterados a cada camada para fornecer uma distribuição mais uniforme da resistência em cada direção." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside 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_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "O numero de passos dos motores de passos (stepper motors) que irão resultar em um milímetro de extrusão." - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will 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." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Aplicar o desvio do extrusor ao sistema de coordenadas." - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Invólucro" - -#~ 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, while an angle of 90° is vertical." -#~ 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 um ângulo de 90° é vertical." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "A velocidade da camada inicial. É recomendado um valor inferior para melhorar a aderência à base de construção." - -#~ 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 lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina a prioridade desta malha quando se consideram várias malhas de enchimento em sobreposição. As áreas com sobreposição de várias malhas de enchimento vão assumir as definições da malha com a classificação mais baixa. Uma malha de enchimento com uma ordem superior irá modificar o enchimento das malhas de enchimento com uma ordem inferior e as malhas normais." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "A temperatura utilizada na base de construção aquecida. Se este valor for 0, a temperatura da base não será alterada." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "A temperatura utilizada para a base de construção aquecida na primeira camada." - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Proporção de Contração" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "Proporção de Contração em percentagem." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina a prioridade desta malha ao considerar volumes de sobreposição. As áreas com múltiplas malhas serão afetadas por malhas de classificação inferior. Uma malha de enchimento com uma ordem superior irá modificar o enchimento das malhas de enchimento com uma ordem inferior e as malhas normais." - -#~ 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 "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Hierarquia Objectos Enchimento" - -# rever! -# ordem superior? -# inferior? -# normais? -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina qual o Objecto de Enchimento que se encontra no interior do enchimento de outro Objecto de Enchimento. Um objecto de enchimento com um nível superior na hierarquia irá modificar o enchimento dos objectos de enchimento em níveis inferiores assim como o enchimento dos objectos normais." - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Suportes tipo Árvore" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Criar suportes tipo árvores com troncos e ramos que suportam a impressão. Com esta definição talvez se possa reduzir o material usado assim como o tempo de impressão, mas aumenta consideravelmente o tempo de seccionamento." - -# rever! -# centro ou meio? -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "Métodos para seccionar as camadas com as superfícies diagonais. As áreas de uma camada podem ser geradas onde o centro da camada intersecta a superfície (Centro). Como alternativa, cada camada pode conter as áreas que se encontram no interior do volume ao longo da espessura da camada (Exclusivo) ou uma camada pode conter as áreas que se encontram no interior dos perímetros da camada (Inclusivo). A opção Exclusivo retém o maior número de detalhes, a opção Inclusivo garante a melhor adaptação ao modelo e a opção Centro tem o menor tempo de processamento." - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Enchimento em esparguete" - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Imprime o enchimento de tempos a tempos, para que o filamento encaracole desordenadamente dentro do objeto. Isto reduz o tempo de impressão, mas o comportamento é um pouco imprevisível." - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Passos de enchimento em esparguete" - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Imprime o enchimento em esparguete de forma faseada ou extrude todos os filamentos de enchimento no final da impressão." - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Ângulo de enchimento máximo em esparguete" - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "O ângulo máximo em relação ao eixo Z do interior da impressão para áreas que devem ser preenchidas posteriormente com o enchimento em esparguete. A redução deste valor produz mais partes angulares no modelo que deverão ser preenchidas em cada camada." - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Altura máxima de enchimento em esparguete" - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "A altura máxima do espaço interior que pode ser combinado e preenchido a partir da parte superior." - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Inserção em esparguete" - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "O desvio das paredes a partir do qual o enchimento em esparguete será impresso." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Fluxo em esparguete" - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Ajusta a densidade do enchimento em esparguete. Observe que a Densidade de enchimento controla apenas o espaçamento entre linhas do padrão de enchimento e não a quantidade de extrusão para o enchimento em esparguete." - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Volume adicional de enchimento em esparguete" - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Um termo de correção para ajustar o volume total a ser extrudido sempre que for realizado o enchimento em esparguete." - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "GUID do material. Este é definido automaticamente. " - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Distância de \"estacionamento\" do filamento" - -#~ msgctxt "machine_filament_park_distance description" -#~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used." -#~ msgstr "A distância, a partir da ponta do nozzle, à qual o filamento deve ser \"estacionado\" quando um extrusor já não está em utilização." - -#~ msgctxt "material_flush_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Material Station" - -#~ msgctxt "material_flush_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Material Station" - -#~ 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 "Material Station internal value" -#~ msgstr "Valor interno da Material Station" - -#~ 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 "Material Station internal value" -#~ msgstr "Valor interno da Material Station" - -#~ msgctxt "material_maximum_park_duration description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Material Station" - -#~ msgctxt "material_no_load_move_factor description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Material Station" - -#~ 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 "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 "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "correção_categorias" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "categoria_blackmagic" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "experimental!" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "Polígono da cabeça da máquina" - -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "Uma silhueta 2D da cabeça de impressão (excluindo tampas do(s) ventilador(s))." - -#~ 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 only possible if 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 todos os modelos uma camada de cada vez ou aguarda pela conclusão de um modelo antes de avançar para o seguinte. O modo Individualmente apenas é possível se todos os modelos estiverem separados de tal forma que toda a cabeça de impressão possa mover-se entre eles e todos os modelos estejam abaixo da distância entre o nozzle e os eixos X/Y." - -#~ msgctxt "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "Espessura Paredes Suportes Árvore" - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "A espessura das paredes dos ramos da árvore de suporte. Paredes mais espessas demoram mais tempo a imprimir mas são mais resistentes." - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "Número Paredes Suportes Árvore" - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "O número das paredes dos ramos da árvore de suporte. Paredes mais espessas demoram mais tempo a imprimir mas são mais resistentes." - -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. 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 "Incluir ou não o G-code de limpeza do nozzle entre as camadas. Ativar esta definição poderá influenciar o comportamento de retração na mudança de camada. Utilize as definições de Retração de limpeza para controlar a retração nas camadas onde o script de limpeza estará em funcionamento." - -#~ msgctxt "max_extrusion_before_wipe description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "Material máximo que pode ser extrudido antes de ser iniciada outra limpeza do nozzle." - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "Velocidade de preparação na retração" - -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "Salto Z de limpeza ao retrair" - -#~ msgctxt "wipe_hop_enable 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 é baixada 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 "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Tamanho mínimo da área para polígonos da interface de suporte. Os polígonos com uma área inferior a este valor não serão gerados." - -#~ 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 not be generated." -#~ msgstr "Tamanho mínimo da área para os tetos 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 not be generated." -#~ msgstr "Tamanho mínimo da área para os pisos de suporte. Os polígonos com uma área inferior a este valor não serão gerados." - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "Alternar Rotação Revestimento" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "Alterna a direção na qual as camadas superiores/inferiores são impressas. Geralmente, estas são impressas apenas na diagonal. Esta definição adiciona também as direções só em X e só em Y." - -#~ 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 compensate." -#~ msgstr "A distância máxima em milímetros a ser compensada." - -#~ 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 "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "O fator de multiplicação da taxa de fluxo -> translação de distância." - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "Limiar das camadas adaptáveis" - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ msgstr "O limiar em que se deve usar, ou não, uma menor espessura de camada. Este número é comparado com a tangente da inclinação mais acentuada numa camada." - -#~ 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." -#~ msgstr "As paredes que se salientam mais do que este ângulo serão impressas utilizando definições de parede de saliências. Quando o valor é 90, nenhuma parede será tratada como saliente." - -#~ 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 adhestion and accuracy." -#~ msgstr "Os elementos pequenos serão impressos a esta percentagem da velocidade de impressão normal. A impressão mais lenta poderá contribuir para uma maior aderência e precisão." - -#~ msgctxt "small_feature_speed_factor_0 label" -#~ msgid "First Layer Speed" -#~ msgstr "Velocidade da primeira camada" - -#~ 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 adhestion and accuracy." -#~ msgstr "Os elementos pequenos da primeira camada serão impressos a esta percentagem da velocidade de impressão normal. A impressão mais lenta poderá contribuir para uma maior aderência e precisão." - -# O objetivo é derreter mais o plástico das superfícies superiores, criando uma superfície mais uniforme. -#~ msgctxt "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "Passar com o nozzle uma vez mais, sobre as superfícies superiores, mas sem extrudir material. O objetivo é criar superfícies mais suaves/lisas, ao derreter (\"engomar\") o plástico das superfícies superiores." - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "Começar Camadas Mesmo Objecto" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "Em cada camada, começar a imprimir o objeto perto do mesmo ponto, para não se começar a imprimir uma nova camada com a peça com a qual se terminou a camada anterior. O que resulta em melhores impressões de saliências e de pequenos objectos, mas aumenta o tempo de impressão." - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ msgstr "Orientação do padrão de enchimento para suportes. O padrão de enchimento do suporte gira no plano horizontal." - -#~ 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." -#~ 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á inferior." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "Variante de G-code" - -# rever! -# torna mais provável que esta surja num canto -# aconteça? surja? apareça? -#~ 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." -#~ 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." - -# rever! -# gaps? Espaços? intervalos? folgas? -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "Ignorar Pequenos Espaços Z" - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "Quando o modelo tem pequenos espaços verticais, cerca de mais 5% de tempo de cálculo pode ser despendido na criação das superfícies de revestimentos superior e inferior nestes pequenos espaços. Nesse caso desative esta definição." - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "A temperatura utilizada para o volume de construção. Se for 0, a temperatura do volume de construção não será ajustada." +#: fdmprinter.def.json +msgctxt "travel label" +msgid "Travel" +msgstr "Deslocação" + +#: fdmprinter.def.json +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Aceleração de deslocação" + +#: fdmprinter.def.json +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Distância para evitar peças durante a deslocação" + +#: fdmprinter.def.json +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Jerk de Deslocação" + +#: fdmprinter.def.json +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Velocidade de deslocação" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Árvore" + +#: fdmprinter.def.json +msgctxt "support_tree_angle label" +msgid "Tree Support Branch Angle" +msgstr "Ângulo Ramos Suportes Árvore" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter label" +msgid "Tree Support Branch Diameter" +msgstr "Diâmetro Ramos Suportes Árvore" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter_angle label" +msgid "Tree Support Branch Diameter Angle" +msgstr "Ângulo Diâmetro Ramos Suportes Árvore" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance label" +msgid "Tree Support Branch Distance" +msgstr "Distância Ramos Suportes Árvore" + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution label" +msgid "Tree Support Collision Resolution" +msgstr "Resolução Colisão Suportes Árvore" + +#: fdmprinter.def.json +msgctxt "support_tree_max_diameter label" +msgid "Tree Support Trunk Diameter" +msgstr "Diâmetro Tronco Suporte Árvore" + +#: fdmprinter.def.json +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Tri-Hexágono" + +#: fdmprinter.def.json +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +#: fdmprinter.def.json +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Unir Volumes Sobrepostos" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Utilizar camadas adaptáveis" + +#: fdmprinter.def.json +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Utilizar torres" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Definido pelo utilizador" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Compensação de contração do fator de dimensionamento vertical" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Esperar pelo Aquecimento da Base de Construção" + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Esperar pelo aquecimento do nozzle" + +#: fdmprinter.def.json +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Aceleração de parede" + +#: fdmprinter.def.json +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Número de paredes distribuídas" + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Extrusor Paredes" + +#: fdmprinter.def.json +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Fluxo da Parede" + +#: fdmprinter.def.json +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Jerk das Paredes" + +#: fdmprinter.def.json +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Número Linhas Paredes" + +#: fdmprinter.def.json +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Diâmetro Linha Parede" + +#: fdmprinter.def.json +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Ordenação de paredes" + +#: fdmprinter.def.json +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Velocidade Paredes" + +#: fdmprinter.def.json +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Espessura das Paredes" + +#: fdmprinter.def.json +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Comprimento de transição de paredes" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Distância do filtro de transição de paredes" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Margem do filtro de transição de paredes" + +#: fdmprinter.def.json +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Ângulo do limiar de transição de paredes" + +#: fdmprinter.def.json +msgctxt "shell label" +msgid "Walls" +msgstr "Paredes" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Ao verificar os locais onde existe modelo por cima e por baixo do suporte, tome as medidas necessárias de acordo com a altura determinada. Os valores mais reduzidos irão seccionar mais lentamente, enquanto os valores mais elevados podem fazer com que o suporte normal seja impresso em alguns locais onde deveria existir uma interface de suporte." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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'." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.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 "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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "O diâmetro de uma única linha de enchimento." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "O diâmetro de uma única linha de parede." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Posição X da escova de limpeza" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Velocidade do salto de limpeza" + +#: fdmprinter.def.json +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Limpar nozzle inativo na torre de preparação" + +#: fdmprinter.def.json +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Distância do movimento de limpeza" + +#: fdmprinter.def.json +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Limpar nozzle entre camadas" + +#: fdmprinter.def.json +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Pausa na limpeza" + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Contagem de repetições de limpeza" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Distância de retração da limpeza" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Retração de limpeza ativada" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Quantidade de preparação adicional de retração de limpeza" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Velocidade de preparação da retração de limpeza" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Velocidade de retração na retração de limpeza" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Velocidade de retração de limpeza" + +#: fdmprinter.def.json +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Salto Z de limpeza" + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Altura do salto Z de limpeza" + +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "No Enchimento" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Endstop X no Sentido Positivo" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y substitui Z" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Endstop Y no Sentido Positivo" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Endstop Z no Sentido Positivo" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Salto Z após mudança extrusor" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Altura do salto Z" + +#: fdmprinter.def.json +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Salto Z apenas sobre as peças impressas" + +#: fdmprinter.def.json +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Velocidade do Salto Z" + +#: fdmprinter.def.json +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Salto Z ao retrair" + +#: fdmprinter.def.json +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Alinhamento da Junta-Z" + +#: fdmprinter.def.json +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Posição da Junta-Z" + +#: fdmprinter.def.json +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Relativo à Junta-Z" + +#: fdmprinter.def.json +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "X da Junta-Z" + +#: fdmprinter.def.json +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Y da Junta-Z" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z substitui X/Y" + +#: fdmprinter.def.json +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +#: fdmprinter.def.json +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +#: fdmprinter.def.json +msgctxt "travel description" +msgid "travel" +msgstr "deslocação" + +#~ msgctxt "material_flow_dependent_temperature label" +#~ msgid "Auto Temperature" +#~ msgstr "Temperatura Automática" + +#~ msgctxt "material_flow_dependent_temperature description" +#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." +#~ msgstr "Mudar, automaticamente, a temperatura de cada camada com a velocidade de fluxo média dessa camada." + +#~ msgctxt "wireframe_strategy option compensate" +#~ msgid "Compensate" +#~ msgstr "Compensar" + +#~ msgctxt "wireframe_top_jump description" +#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." +#~ msgstr "Cria um pequeno nó no topo de uma linha ascendente, para que a camada horizontal subsequente possa ligar-se com maior facilidade. Aplica-se apenas à impressão de fios." + +#~ msgctxt "wireframe_bottom_delay description" +#~ msgid "Delay time after a downward move. Only applies to Wire Printing." +#~ msgstr "O tempo de atraso após um movimento descendente. Aplica-se apenas à impressão de fios." + +#~ msgctxt "wireframe_top_delay description" +#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." +#~ msgstr "O tempo de atraso após um movimento ascendente, para que a linha ascendente possa endurecer. Aplica-se apenas à impressão de fios." + +#~ msgctxt "wireframe_flat_delay description" +#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." +#~ msgstr "Tempo de atraso entre dois segmentos horizontais. A introdução desse atraso pode causar melhor aderência às camadas anteriores nos pontos de ligação. No entanto, os atrasos demasiado longos podem causar flacidez. Aplica-se apenas à impressão de fios." + +#~ msgctxt "wireframe_nozzle_clearance description" +#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." +#~ msgstr "Distância entre o nozzle e as linhas horizontais descendentes. Uma maior folga resulta em linhas horizontais descendentes com um ângulo menos acentuado, o que, por sua vez, resulta em menos ligações ascendentes com a camada seguinte. Aplica-se apenas à impressão de fios." + +#~ msgctxt "wireframe_up_half_speed description" +#~ msgid "" +#~ "Distance of an upward move which is extruded with half speed.\n" +#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." +#~ msgstr "" +#~ "A distância de um movimento ascendente que é extrudido a metade da velocidade.\n" +#~ "Isto pode causar melhor aderência às camadas anteriores, sendo que o material nessas camadas não é demasiado aquecido. Aplica-se apenas à impressão de fios." + +#~ msgctxt "wireframe_fall_down description" +#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Distância à qual o material cai após uma extrusão ascendente. Esta distância é compensada. Aplica-se apenas à impressão de fios." + +#~ msgctxt "wireframe_drag_along description" +#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Distância à qual o material de uma extrusão ascendente é arrastado juntamente com a extrusão diagonal descendente. Esta distância é compensada. Aplica-se apenas à impressão de fios." + +#~ msgctxt "wireframe_flow_connection description" +#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." +#~ msgstr "A compensação de fluxo ao deslocar-se para cima ou para baixo. Aplica-se apenas à impressão de fios." + +#~ msgctxt "wireframe_flow_flat description" +#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." +#~ msgstr "Compensação de fluxo ao imprimir linhas planas. Aplica-se apenas à impressão de fios." + +#~ msgctxt "wireframe_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." +#~ msgstr "Compensação de fluxo: a quantidade de material extrudido é multiplicada por este valor. Aplica-se apenas à impressão de fios." + +#~ msgctxt "wireframe_strategy option knot" +#~ msgid "Knot" +#~ msgstr "Nó" + +#~ msgctxt "limit_support_retractions label" +#~ msgid "Limit Support Retractions" +#~ msgstr "Limitar Retrações de Suportes" #~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." -#~ msgstr "Eliminar a retração quando o movimento de suporte para suporte é em linha recta. Ativar esta definição reduz o tempo de impressão, mas pode levar a que aja um excessivo numero de fios nas estruturas de suporte." +#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." +#~ msgstr "Eliminar a retração quando o movimento de suporte para suporte é em linha reta. Ativar esta definição reduz o tempo de impressão, mas pode levar a que aja um excessivo numero de fios nas estruturas de suporte." -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "Velocidade Z máxima" +#~ msgctxt "wireframe_straight_before_down description" +#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." +#~ msgstr "A percentagem de uma linha diagonal descendente que é abrangida por uma peça da linha horizontal. Isto pode impedir a flacidez do ponto mais elevado das linhas ascendentes. Aplica-se apenas à impressão de fios." -# a que a base de construção é movida. Defini-la como zero -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "A velocidade máxima do movimento da base de construção. Definir esta como zero faz com que a impressão utilize as predefinições de firmware para a velocidade Z máxima." +#~ msgctxt "wireframe_enabled description" +#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." +#~ msgstr "Imprime apenas a superfície exterior com uma estrutura entrelaçada dispersa a partir \"do ar\". Isto é realizado ao imprimir horizontalmente os contornos do modelo em determinados intervalos Z que são ligados através de linhas ascendentes e diagonais descendentes." -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate 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 "wireframe_strategy option retract" +#~ msgid "Retract" +#~ msgstr "Retrair" -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "Diâmetro mínimo" +#~ msgctxt "wireframe_printspeed description" +#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." +#~ msgstr "Velocidade à qual o nozzle se movimenta ao extrudir material. Aplica-se apenas à impressão de fios." -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum 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ínimo nas direções X/Y de uma pequena área que deverá ser suportada por uma torre de suporte especializada." +#~ msgctxt "wireframe_printspeed_down description" +#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." +#~ msgstr "Velocidade de impressão de uma linha diagonal descendente. Aplica-se apenas à impressão de fios." -#~ msgctxt "prime_tower_circular label" -#~ msgid "Circular Prime Tower" -#~ msgstr "Torre de preparação circular" +#~ msgctxt "wireframe_printspeed_up description" +#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." +#~ msgstr "A velocidade de impressão de uma linha ascendente \"no ar\". Aplica-se apenas à impressão de fios." -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "Faça a torre de preparação como uma forma circular." +#~ msgctxt "wireframe_printspeed_bottom description" +#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." +#~ msgstr "Velocidade de impressão da primeira camada, que é a única camada que entra em contacto com a plataforma de construção. Aplica-se apenas à impressão de fios." -#~ msgctxt "prime_tower_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 "wireframe_printspeed_flat description" +#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." +#~ msgstr "Velocidade de impressão de contornos horizontais do modelo. Aplica-se apenas à impressão de fios." -#~ 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 imperceptível na impressão, mas continuará a ser visível na visualização por camadas). Ter em conta que a suavização tenderá a reduzir/desfocar pequenos detalhes da superfície." +#~ msgctxt "wireframe_strategy description" +#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." +#~ msgstr "Estratégia para assegurar que duas camadas consecutivas se ligam a cada ponto de ligação. A retração permite que as linhas ascendentes endureçam na posição correta, mas pode causar a trituração do filamento. É possível fazer um nó no final de uma linha ascendente para aumentar a probabilidade de ligação e para permitir o arrefecimento da linha. No entanto, podem ser necessárias velocidades de impressão reduzidas. Outra estratégia é compensar a flacidez do topo de uma linha ascendente. Porém, as linhas nem sempre cairão conforme previsto." -#~ msgctxt "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "Funcionalidade experimental: torna as áreas de suporte mais reduzidas na parte inferior do que na saliência." +#~ msgctxt "wireframe_roof_inset description" +#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." +#~ msgstr "A distância percorrida ao efetuar uma ligação a partir de um contorno de telhado interno. Aplica-se apenas à impressão de fios." -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "O numero de Extrusores que estão activos" +#~ msgctxt "wireframe_roof_drag_along description" +#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "A distância da parte final de uma linha interior que é arrastada ao regressar ao contorno externo do tecto. Esta distância é compensada. Aplica-se apenas à impressão de fios." -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "Diâmetro externo do nozzle" +#~ msgctxt "wireframe_roof_fall_down description" +#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "A distância à qual as linhas horizontais do tecto que são impressas \"no ar\" caem ao ser impressas. Esta distância é compensada. Aplica-se apenas à impressão de fios." -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "Comprimento do nozzle" +#~ msgctxt "wireframe_height description" +#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." +#~ msgstr "A altura das linhas ascendentes e diagonais descendentes entre duas partes horizontais. Isto determina a densidade geral da estrutura de rede. Aplica-se apenas à impressão de fios." -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "Ângulo do nozzle" +#~ msgctxt "wireframe_roof_outer_delay description" +#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." +#~ msgstr "Tempo gasto nos perímetros externos do buraco que se irá transformar em tecto. Períodos de tempo mais longos permitem garantir uma melhor ligação. Aplica-se apenas à impressão de fios." -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "Comprimento da zona de aquecimento" +#~ msgctxt "wireframe_bottom_delay label" +#~ msgid "WP Bottom Delay" +#~ msgstr "Atraso da parte inferior da impressão de fios" -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "Velocidade de aquecimento" +#~ msgctxt "wireframe_printspeed_bottom label" +#~ msgid "WP Bottom Printing Speed" +#~ msgstr "Velocidade de impressão da parte inferior da impressão de fios" -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "Velocidade de arrefecimento" +#~ msgctxt "wireframe_flow_connection label" +#~ msgid "WP Connection Flow" +#~ msgstr "Fluxo de ligação da impressão de fios" -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "Variante de G-code" +#~ msgctxt "wireframe_height label" +#~ msgid "WP Connection Height" +#~ msgstr "Altura de ligação da impressão em fios" -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "Áreas não permitidas" +#~ msgctxt "wireframe_printspeed_down label" +#~ msgid "WP Downward Printing Speed" +#~ msgstr "Velocidade de impressão descendente da impressão de fios" -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "Polígono da cabeça da máquina" +#~ msgctxt "wireframe_drag_along label" +#~ msgid "WP Drag Along" +#~ msgstr "Arrastamento da impressão de fios" -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "Polígono da cabeça e ventilador da máquina" +#~ msgctxt "wireframe_up_half_speed label" +#~ msgid "WP Ease Upward" +#~ msgstr "Facilidade de movimento ascendente da impressão de fios" -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "Altura do pórtico" +#~ msgctxt "wireframe_fall_down label" +#~ msgid "WP Fall Down" +#~ msgstr "Queda da impressão de fios" -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "Desviar com Extrusor" +#~ msgctxt "wireframe_flat_delay label" +#~ msgid "WP Flat Delay" +#~ msgstr "Atraso plano da impressão de fios" -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "Camadas Adaptáveis" +#~ msgctxt "wireframe_flow_flat label" +#~ msgid "WP Flat Flow" +#~ msgstr "Fluxo plano da impressão de fios" -#~ msgctxt "adaptive_layer_height_variation label" -#~ msgid "Adaptive layers maximum variation" -#~ msgstr "Variação Máxima Camadas Adaptáveis" +#~ msgctxt "wireframe_flow label" +#~ msgid "WP Flow" +#~ msgstr "Fluxo de impressão de fios" -#~ msgctxt "adaptive_layer_height_variation_step label" -#~ msgid "Adaptive layers variation step size" -#~ msgstr "Variação Degraus Camadas Adaptáveis" +#~ msgctxt "wireframe_printspeed_flat label" +#~ msgid "WP Horizontal Printing Speed" +#~ msgstr "Velocidade de impressão horizontal da impressão de fios" -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "Limiar Camadas Adaptáveis" +#~ msgctxt "wireframe_top_jump label" +#~ msgid "WP Knot Size" +#~ msgstr "Tamanho do nó da impressão de fios" -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "A sobreposição entre o revestimento e as paredes, como percentagem do diâmetro da linha do revestimento. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao revestimento. Esta é uma percentagem da média dos diâmetros das linhas de revestimento e da parede mais interior." +#~ msgctxt "wireframe_nozzle_clearance label" +#~ msgid "WP Nozzle Clearance" +#~ msgstr "Espaço do nozzle da impressão de fios" -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "A distância em milímetros da sobreposição entre o revestimento e as paredes. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao revestimento." +#~ msgctxt "wireframe_roof_drag_along label" +#~ msgid "WP Roof Drag Along" +#~ msgstr "Arrastamento do tecto da impressão de fios" -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 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: defina como 0 para não obter qualquer retração. Normalmente, esta deve ser a mesma que o comprimento da zona de aquecimento." +#~ msgctxt "wireframe_roof_fall_down label" +#~ msgid "WP Roof Fall Down" +#~ msgstr "Queda do tecto da impressão de fios" -#~ 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 and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." -#~ msgstr "Combing mantém o bocal 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 bocal irá deslocar-se em linha reta para o próximo ponto. Também é possível evitar o combing em áreas de revestimento superiores/inferiores e também apenas efetuar o combing no enchimento. Observe que a opção \"No enchimento\" tem o mesmo comportamento que a opção \"Não no Revestimento\" em versões anteriores do Cura." +#~ msgctxt "wireframe_roof_inset label" +#~ msgid "WP Roof Inset Distance" +#~ msgstr "Distância de inserção do tecto da impressão de fios" -#~ 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 happend 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 "wireframe_roof_outer_delay label" +#~ msgid "WP Roof Outer Delay" +#~ msgstr "Atraso externo do tecto da impressão de fios" -# of the print -# da impressão? da peça? -# A direção do -# No enchimento com Linha e Ziguezague a direção é invertida em camadas alternadas -# invertido? rodado? -# padrões - ?geometricos?? -# alterados? mudam? movidos? delocados? -# fornecer uma? permitir uma? -#~ 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. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "O padrão geométrico do enchimento da impressão. A direção do enchimento com Linhas e Ziguezague é invertida em camadas alternadas, reduzindo os custos em material. Os padrões em Grelha, Triângulo, Tri-Hexágono, Cúbico, Octeto, Quarto Cúbico, Cruz e Concêntrico são totalmente impressos em cada camada. Os enchimentos Cúbico, Quarto Cúbico e Octeto são deslocados em cada camada para permitir uma distribuição mais uniforme da resistência em cada direção." +#~ msgctxt "wireframe_printspeed label" +#~ msgid "WP Speed" +#~ msgstr "Velocidade da impressão de fios" -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" +#~ msgctxt "wireframe_straight_before_down label" +#~ msgid "WP Straighten Downward Lines" +#~ msgstr "Linhas retas descendentes da impressão de fios" -#~ 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 by combing within the infill only." -#~ msgstr "\"Combing\" mantém o nozzle dentro das áreas já impressas durante o movimento. Isto resulta em movimentos 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 recta para o próximo ponto. Também é possível evitar o \"Combing\" em áreas de revestimento superiores/inferiores efetuando o \"Combing\" apenas dentro do enchimento." +#~ msgctxt "wireframe_strategy label" +#~ msgid "WP Strategy" +#~ msgstr "Estratégia de impressão de fios" -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" +#~ msgctxt "wireframe_top_delay label" +#~ msgid "WP Top Delay" +#~ msgstr "Atraso superior da impressão de fios" -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" +#~ msgctxt "wireframe_printspeed_up label" +#~ msgid "WP Upward Printing Speed" +#~ msgstr "Velocidade de impressão ascendente da impressão de fios" -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "Espaçamento Linhas Base Raft" - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "Espessura da torre de preparação" - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "A espessura da torre de preparação oca. Uma espessura superior a metade do Volume mínimo da torre de preparação irá resultar numa torre de preparação densa." - -# rever! -# mudança? -# troca? -# substituição? -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "Limpar nozzle após mudança" - -# rever! -# vazou? vazado? -# escorreu? escorrido? -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "Após a mudança de extrusor, limpar o material que escorreu do nozzle na primeira \"coisa\" impressa. Isto executa um movimento lento de limpeza num local onde o material que tenha escorrido seja menos prejudicial para a qualidade da superfície da sua impressão." - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "Volume Purga Torre Preparação" - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "Quantidade de filamento a ser purgado ao limpar na torre de preparação. A purga é útil para compensar o filamento perdido por escorrimento durante a inatividade do nozzle." - -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "Saliências máx. da parede de Bridge" - -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ msgstr "A largura máxima permitida para a região de ar sob uma linha de parede, antes de a parede ser impressa utilizando as definições de Bridge. Expressa como uma percentagem da largura da linha de parede. Quando a folga de ar é mais larga do que este valor, a linha de parede é impressa utilizando as definições de Bridge. Caso contrário, a linha de parede é impressa utilizando as definições normais. Quanto mais baixo for o valor, mais provável é que as linhas de parede das saliências sejam impressas utilizando definições de Bridge." - -#~ 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." -#~ 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 otimização." - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "Sem Revestimento" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "Alternar bolsas de cruz 3D" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "Aplica bolsas em apenas metade dos cruzamentos de quatro vias no padrão de cruz 3D e alterna a localização das bolsas entre alturas onde o padrão está em contacto consigo próprio." - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "Esvaziar Objetos" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "Remover todo o enchimento e tornar o interior do objeto elegível para ter suportes." - -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "A diferença máxima de espessura (em mm) permitida em relação ao valor base definido em Espessura das Camadas." - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ msgstr "Centrar objeto" - -#~ msgctxt "mesh_position_x label" -#~ msgid "Mesh position x" -#~ msgstr "Posição X do objeto" - -#~ msgctxt "mesh_position_y label" -#~ msgid "Mesh position y" -#~ msgstr "Posição Y do objeto" - -#~ msgctxt "mesh_position_z label" -#~ msgid "Mesh position z" -#~ msgstr "Posição Z do objeto" +#~ msgctxt "wireframe_enabled label" +#~ msgid "Wire Printing" +#~ msgstr "Impressão em Fios" diff --git a/resources/i18n/ru_RU/cura.po b/resources/i18n/ru_RU/cura.po index bfba5b0801..581448cf3d 100644 --- a/resources/i18n/ru_RU/cura.po +++ b/resources/i18n/ru_RU/cura.po @@ -1,12 +1,14 @@ # Cura -# Copyright (C) 2022 Ultimaker B.V. +# Copyright (C) 2022 UltiMaker. # This file is distributed under the same license as the Cura package. +# Ultimaker , 2022. # +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0200\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-04-06 15:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,236 +18,109 @@ 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" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -msgctxt "@label" -msgid "Unknown" -msgstr "Неизвестно" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "Перечисленные ниже принтеры невозможно подключить, поскольку они входят в состав группы" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Доступные сетевые принтеры" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Не переопределен" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Connected printers" -msgstr "Подключенные принтеры" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Preset printers" -msgstr "Предварительно настроенные принтеры" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:143 -#, 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}? Это действие невозможно будет отменить!" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:61 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 -msgctxt "@label" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:65 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Визуальный" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:66 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "Визуальный профиль предназначен для печати визуальных прототипов и моделей, для которых требуется высокое качество поверхности и внешнего вида." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:70 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "Инженерный профиль предназначен для печати функциональных прототипов и готовых деталей, для которых требуется высокая точность и малые допуски." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:75 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Черновой" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:76 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "Черновой профиль предназначен для печати начальных прототипов и проверки концепции, где приоритетом является скорость печати." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:232 -msgctxt "@label" -msgid "Custom Material" -msgstr "Собственный материал" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:233 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 -msgctxt "@label" -msgid "Custom" -msgstr "Своё" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:391 -msgctxt "@label" -msgid "Custom profiles" -msgstr "Собственные профили" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:426 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Все поддерживаемые типы ({0})" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Все файлы (*)" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Вычислено" - -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 +#: cura/API/Account.py:199 msgctxt "@info:title" msgid "Login failed" msgstr "Вход не выполнен" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: cura/Arranging/ArrangeObjectsJob.py:25 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Поиск места для новых объектов" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: cura/Arranging/ArrangeObjectsJob.py:29 msgctxt "@info:title" msgid "Finding Location" msgstr "Поиск места" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Невозможно разместить все объекты внутри печатаемого объёма" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: cura/Arranging/ArrangeObjectsJob.py:43 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Не могу найти место" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:115 +#: cura/Backups/Backup.py:115 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Не удалось создать архив из каталога с данными пользователя: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:159 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +#: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159 +#: plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: plugins/CuraDrive/src/DrivePluginExtension.py:126 msgctxt "@info:title" msgid "Backup" msgstr "Резервное копирование" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:134 +#: cura/Backups/Backup.py:134 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Попытка восстановить резервную копию Cura при отсутствии необходимых данных или метаданных." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:145 +#: cura/Backups/Backup.py:145 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that is higher than the current version." msgstr "Выполнена попытка восстановить резервную копию Cura с более поздней версией, чем текущая." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:158 +#: cura/Backups/Backup.py:158 msgctxt "@info:backup_failed" msgid "The following error occurred while trying to restore a Cura backup:" msgstr "При попытке восстановить резервную копию Cura произошла следующая ошибка:" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: cura/BuildVolume.py:100 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." msgstr "Высота печатаемого объёма была уменьшена до значения параметра \"Последовательность печати\", чтобы предотвратить касание портала за напечатанные детали." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 +#: cura/BuildVolume.py:103 msgctxt "@info:title" msgid "Build Volume" msgstr "Объём печати" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Не удалось запустить Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" -"

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

    \n" +"

    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" -" " +msgstr " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: cura/CrashHandler.py:122 msgctxt "@action:button" -msgid "Send crash report to Ultimaker" -msgstr "Отправить отчет о сбое в Ultimaker" +msgid "Send crash report to UltiMaker" +msgstr "Отправить отчет о сбое в UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Показать подробный отчет о сбое" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Показать конфигурационный каталог" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Резервное копирование и сброс конфигурации" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Отчёт о сбое" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

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

    \n" @@ -256,573 +131,2243 @@ msgstr "" "

    Нажмите кнопку «Отправить отчет», чтобы автоматически опубликовать отчет об ошибке на наших серверах

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Информация о системе" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Неизвестно" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Версия Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Язык Cura" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Язык ОС" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Платформа" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Версия Qt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Версия PyQt" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized" -msgstr "" +msgstr "Еще не инициализировано" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Версия OpenGL: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • Поставщик OpenGL: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • Средство визуализации OpenGL: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 +#: cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Обратное отслеживание ошибки" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 +#: cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Журналы" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 +#: cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Отправить отчёт" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:531 +#: cura/CuraApplication.py:540 msgctxt "@info:progress" msgid "Loading machines..." msgstr "Загрузка принтеров..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +#: cura/CuraApplication.py:547 msgctxt "@info:progress" msgid "Setting up preferences..." msgstr "Настройка параметров..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +#: cura/CuraApplication.py:692 msgctxt "@info:progress" msgid "Initializing Active Machine..." msgstr "Инициализация активной машины..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +#: cura/CuraApplication.py:839 msgctxt "@info:progress" msgid "Initializing machine manager..." msgstr "Инициализация диспетчера машин..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +#: cura/CuraApplication.py:853 msgctxt "@info:progress" msgid "Initializing build volume..." msgstr "Инициализация объема печати..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +#: cura/CuraApplication.py:921 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "Настройка сцены..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +#: cura/CuraApplication.py:957 msgctxt "@info:progress" msgid "Loading interface..." msgstr "Загрузка интерфейса..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +#: cura/CuraApplication.py:962 msgctxt "@info:progress" msgid "Initializing engine..." msgstr "Инициализация ядра..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#: cura/CuraApplication.py:1290 #, 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 мм" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1798 +#: cura/CuraApplication.py:1816 #, 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}" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 +#: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 msgctxt "@info:title" msgid "Warning" msgstr "Внимание" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#: cura/CuraApplication.py:1828 #, 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}" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1812 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156 +#: cura/Settings/CuraContainerRegistry.py:166 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 msgctxt "@info:title" msgid "Error" msgstr "Ошибка" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 +#: cura/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Неизвестно" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "Перечисленные ниже принтеры невозможно подключить, поскольку они входят в состав группы" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Доступные сетевые принтеры" + +#: cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Не переопределен" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:28 +msgctxt "@label" +msgid "Connected printers" +msgstr "Подключенные принтеры" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +msgctxt "@label" +msgid "Preset printers" +msgstr "Предварительно настроенные принтеры" + +#: cura/Machines/Models/GlobalStacksModel.py:165 +#, 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}? Это действие невозможно будет отменить!" + +#: cura/Machines/Models/IntentCategoryModel.py:42 +#: cura/Machines/Models/IntentSelectionModel.py:61 +#: cura/Machines/Models/IntentTranslations.py:11 +#: cura/Machines/Models/QualityManagementModel.py:347 +msgctxt "@label" +msgid "Default" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:45 +#: cura/Machines/Models/IntentSelectionModel.py:65 +#: cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "Визуальный" + +#: cura/Machines/Models/IntentCategoryModel.py:46 +#: cura/Machines/Models/IntentSelectionModel.py:66 +#: cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "Визуальный профиль предназначен для печати визуальных прототипов и моделей, для которых требуется высокое качество поверхности и внешнего вида." + +#: cura/Machines/Models/IntentCategoryModel.py:49 +#: cura/Machines/Models/IntentSelectionModel.py:70 +#: cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:50 +#: cura/Machines/Models/IntentSelectionModel.py:71 +#: cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "Инженерный профиль предназначен для печати функциональных прототипов и готовых деталей, для которых требуется высокая точность и малые допуски." + +#: cura/Machines/Models/IntentCategoryModel.py:53 +#: cura/Machines/Models/IntentSelectionModel.py:75 +#: cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "Черновой" + +#: cura/Machines/Models/IntentCategoryModel.py:54 +#: cura/Machines/Models/IntentSelectionModel.py:76 +#: cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "Черновой профиль предназначен для печати начальных прототипов и проверки концепции, где приоритетом является скорость печати." + +#: cura/Machines/Models/MaterialManagementModel.py:232 +msgctxt "@label" +msgid "Custom Material" +msgstr "Собственный материал" + +#: cura/Machines/Models/MaterialManagementModel.py:233 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 +msgctxt "@label" +msgid "Custom" +msgstr "Своё" + +#: cura/Machines/Models/QualityManagementModel.py:400 +msgctxt "@label" +msgid "Custom profiles" +msgstr "Собственные профили" + +#: cura/Machines/Models/QualityManagementModel.py:435 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Все поддерживаемые типы ({0})" + +#: cura/Machines/Models/QualityManagementModel.py:436 +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Все файлы (*)" + +#: cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Вычислено" + +#: cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Размножение и размещение объектов" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 +#: cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "Размещение объектов" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 +#: cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Размещение объекта" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +#: cura/OAuth2/AuthorizationHelpers.py:89 msgctxt "@message" msgid "Could not read response." msgstr "Не удалось прочитать ответ." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +#: cura/OAuth2/AuthorizationRequestHandler.py:75 msgctxt "@message" msgid "The provided state is not correct." msgstr "Указано неверное состояние." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +#: cura/OAuth2/AuthorizationRequestHandler.py:80 msgctxt "@message" msgid "Timeout when authenticating with the account server." msgstr "Истекло время аутентификации на сервере учетной записи." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +#: cura/OAuth2/AuthorizationRequestHandler.py:97 msgctxt "@message" msgid "Please give the required permissions when authorizing this application." msgstr "Дайте необходимые разрешения при авторизации в этом приложении." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +#: cura/OAuth2/AuthorizationRequestHandler.py:104 msgctxt "@message" msgid "Something unexpected happened when trying to log in, please try again." msgstr "Возникла непредвиденная ошибка при попытке входа в систему. Повторите попытку." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:216 +#: cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Невозможно начать новый вход в систему. Проверьте, возможно другой сеанс еще не завершен." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:277 +#: cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "Нет связи с сервером учетных записей Ultimaker." +msgid "Unable to reach the UltiMaker account server." +msgstr "Нет связи с сервером учетных записей UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 +#: cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" msgid "Log-in failed" msgstr "Вход в систему не выполнен" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +#: cura/PrinterOutput/UploadMaterialsJob.py:104 msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Архив материалов для синхронизации с принтерами не создан." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +#: cura/PrinterOutput/UploadMaterialsJob.py:111 +#: cura/PrinterOutput/UploadMaterialsJob.py:165 msgctxt "@text:error" msgid "Failed to load the archive of materials to sync it with printers." msgstr "Архив материалов для синхронизации с принтерами не загружен." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +#: cura/PrinterOutput/UploadMaterialsJob.py:143 msgctxt "@text:error" msgid "The response from Digital Factory appears to be corrupted." msgstr "Ответ от Digital Factory поврежден." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +#: cura/PrinterOutput/UploadMaterialsJob.py:147 +#: cura/PrinterOutput/UploadMaterialsJob.py:151 +#: cura/PrinterOutput/UploadMaterialsJob.py:155 msgctxt "@text:error" msgid "The response from Digital Factory is missing important information." msgstr "В ответе от Digital Factory отсутствует важная информация." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +#: cura/PrinterOutput/UploadMaterialsJob.py:218 msgctxt "@text:error" msgid "Failed to connect to Digital Factory to sync materials with some of the printers." msgstr "Подключение к Digital Factory для синхронизации материалов с некоторыми принтерами не установлено." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +#: cura/PrinterOutput/UploadMaterialsJob.py:232 msgctxt "@text:error" msgid "Failed to connect to Digital Factory." msgstr "Подключение к Digital Factory не установлено." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:207 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: cura/Settings/ActiveQuality.py:43 +msgctxt "@label" +msgid "Experimental" +msgstr "Экспериментальное" + +#: cura/Settings/ContainerManager.py:207 +#: cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "Файл уже существует" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: cura/Settings/ContainerManager.py:208 +#: cura/Settings/CuraContainerRegistry.py:141 #, 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} уже существует. Вы уверены, что желаете перезаписать его?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 +#: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "Неправильный URL-адрес файла:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Невозможно экспортировать профиль в {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: cura/Settings/CuraContainerRegistry.py:163 #, 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}: Плагин записи уведомил об ошибке." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Экспортирование профиля в {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Экспорт успешно завершен" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Не удалось импортировать профиль из {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: cura/Settings/CuraContainerRegistry.py:209 #, 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}, пока не добавлен принтер." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Отсутствует собственный профиль для импорта в файл {0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Не удалось импортировать профиль из {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: cura/Settings/CuraContainerRegistry.py:252 +#: cura/Settings/CuraContainerRegistry.py:262 #, 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} содержит неверные данные, поэтому его невозможно импортировать." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Не удалось импортировать профиль из {0}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Профиль {0} успешно импортирован." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "В файле {0} нет подходящих профилей." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Профиль {0} имеет неизвестный тип файла или повреждён." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Собственный профиль" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "У профайла отсутствует тип качества." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Еще нет активных принтеров." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Невозможно добавить профиль." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "Тип качества \"{0}\" несовместим с текущим определением активной машины \"{1}\"." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: cura/Settings/CuraContainerRegistry.py:488 #, 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}\" недоступен для текущей конфигурации. Выберите комбинацию материала и сопла, которым подходит этот тип качества." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Не поддерживается" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:219 +#: cura/Settings/MachineManager.py:746 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:221 msgctxt "@label" msgid "Nozzle" msgstr "Сопло" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +#: cura/Settings/MachineManager.py:890 msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Настройки изменены в соответствии с текущей доступностью экструдеров:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: cura/Settings/MachineManager.py:891 msgctxt "@info:title" msgid "Settings updated" msgstr "Настройки обновлены" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 +#: cura/Settings/MachineManager.py:1514 msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Экструдер (-ы) отключен (-ы)" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 +#: cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Не поддерживается" + +#: cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "" + +#: cura/UI/AddPrinterPagesModel.py:17 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" msgid "Add" msgstr "Добавить" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:290 +#: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290 msgctxt "@action:button" msgid "Finish" msgstr "Завершить" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:508 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:323 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:291 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:74 +#: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386 +#: plugins/ImageReader/ConfigUI.qml:323 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 +#: resources/qml/ColorDialog.qml:143 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: resources/qml/Dialogs/RenameDialog.qml:103 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 msgctxt "@action:button" msgid "Cancel" msgstr "Отмена" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: cura/UI/ObjectsModel.py:69 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Группа #{group_nr}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 +#: cura/UI/PrintInformation.py:87 msgctxt "@tooltip" msgid "Outer Wall" msgstr "Внешняя стенка" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +#: cura/UI/PrintInformation.py:88 msgctxt "@tooltip" msgid "Inner Walls" msgstr "Внутренние стенки" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +#: cura/UI/PrintInformation.py:89 msgctxt "@tooltip" msgid "Skin" msgstr "Покрытие" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +#: cura/UI/PrintInformation.py:90 msgctxt "@tooltip" msgid "Infill" msgstr "Заполнение" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +#: cura/UI/PrintInformation.py:91 msgctxt "@tooltip" msgid "Support Infill" msgstr "Заполнение поддержек" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +#: cura/UI/PrintInformation.py:92 msgctxt "@tooltip" msgid "Support Interface" msgstr "Связующий слой поддержек" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +#: cura/UI/PrintInformation.py:93 msgctxt "@tooltip" msgid "Support" msgstr "Поддержки" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +#: cura/UI/PrintInformation.py:94 msgctxt "@tooltip" msgid "Skirt" msgstr "Юбка" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +#: cura/UI/PrintInformation.py:95 msgctxt "@tooltip" msgid "Prime Tower" msgstr "Черновая башня" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +#: cura/UI/PrintInformation.py:96 msgctxt "@tooltip" msgid "Travel" msgstr "Перемещение" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +#: cura/UI/PrintInformation.py:97 msgctxt "@tooltip" msgid "Retractions" msgstr "Откаты" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +#: cura/UI/PrintInformation.py:98 msgctxt "@tooltip" msgid "Other" msgstr "Другое" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:63 +#: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63 msgctxt "@text:window" msgid "The release notes could not be opened." msgstr "Невозможно открыть примечания к версии." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:277 +#: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277 msgctxt "@action:button" msgid "Next" msgstr "Следующий" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68 msgctxt "@action:button" msgid "Skip" msgstr "Пропустить" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:443 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:186 +#: cura/UI/WhatsNewPagesModel.py:76 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444 +#: resources/qml/Dialogs/AboutDialog.qml:188 msgctxt "@action:button" msgid "Close" msgstr "Закрыть" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: cura/UltimakerCloud/CloudMaterialSync.py:66 msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Перед началом печати синхронизируйте профили материалов с принтерами." -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: cura/UltimakerCloud/CloudMaterialSync.py:67 msgctxt "@action:button" msgid "New materials installed" msgstr "Установлены новые материалы" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: cura/UltimakerCloud/CloudMaterialSync.py:74 msgctxt "@action:button" msgid "Sync materials" msgstr "Синхронизировать материалы" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:397 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:80 +#: cura/UltimakerCloud/CloudMaterialSync.py:82 +#: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80 msgctxt "@action:button" msgid "Learn more" msgstr "Узнать больше" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +#: cura/UltimakerCloud/CloudMaterialSync.py:135 msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Невозможно сохранить архив материалов в {}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +#: cura/UltimakerCloud/CloudMaterialSync.py:136 msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Архив материалов не сохранен" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +#: cura/UltimakerCloud/CloudMaterialSync.py:188 msgctxt "@text" msgid "Unknown error." msgstr "Неизвестная ошибка." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:558 +#, 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}. Не удалось импортировать принтер. Вместо этого будут импортированы модели." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:561 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "Открыть файл проекта" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: plugins/3MFReader/WorkspaceDialog.qml:99 +#: plugins/3MFReader/WorkspaceDialog.qml:127 +#: plugins/3MFReader/WorkspaceDialog.qml:134 +msgctxt "@button" +msgid "Create new" +msgstr "Создать новый" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:692 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "Файл проекта {0} внезапно стал недоступен: {1}.." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:720 +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "Невозможно открыть файл проекта" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:700 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:718 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "Файл проекта {0} поврежден: {1}." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:765 +#, 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." + +#: plugins/3MFReader/WorkspaceDialog.py:233 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Рекомендованная" + +#: plugins/3MFReader/WorkspaceDialog.py:235 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Своя" + +#: plugins/3MFReader/WorkspaceDialog.py:411 +msgctxt "@info:status" +msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." +msgstr "Используемый в этом проекте материал основывается на определениях материалов, недоступных в Cura, что может привести к нежелательным результатам при печати. Мы настоятельно рекомендуем установить полный пакет материалов из магазина." + +#: plugins/3MFReader/WorkspaceDialog.py:413 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "Профили материалов не установлены" + +#: plugins/3MFReader/WorkspaceDialog.py:426 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "Установка материалов" + +#: plugins/3MFReader/WorkspaceDialog.qml:15 +msgctxt "@title:window" +msgid "Open Project" +msgstr "Открытие проекта" + +#: plugins/3MFReader/WorkspaceDialog.qml:31 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61 +msgctxt "@action:title" +msgid "Summary - Cura Project" +msgstr "Сводка - Проект Cura" + +#: plugins/3MFReader/WorkspaceDialog.qml:65 +msgctxt "@action:ComboBox Update/override existing profile" +msgid "Update existing" +msgstr "Обновить существующий" + +#: plugins/3MFReader/WorkspaceDialog.qml:66 +msgctxt "@action:ComboBox Save settings in a new profile" +msgid "Create new" +msgstr "Создать новый" + +#: plugins/3MFReader/WorkspaceDialog.qml:83 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97 +msgctxt "@action:label" +msgid "Printer settings" +msgstr "Параметры принтера" + +#: plugins/3MFReader/WorkspaceDialog.qml:92 +#: plugins/3MFReader/WorkspaceRow.qml:23 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106 +msgctxt "@action:label" +msgid "Type" +msgstr "Тип" + +#: plugins/3MFReader/WorkspaceDialog.qml:98 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +msgctxt "@action:label" +msgid "Printer Group" +msgstr "Группа принтеров" + +#: plugins/3MFReader/WorkspaceDialog.qml:103 +msgctxt "@action:label" +msgid "Open With" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:104 +msgctxt "@info:tooltip" +msgid "Printer settings will be updated to match the settings saved with the project." +msgstr "Параметры принтера будут обновлены в соответствии с параметрами, сохраненными в проекте." + +#: plugins/3MFReader/WorkspaceDialog.qml:156 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222 +msgctxt "@action:label" +msgid "Profile settings" +msgstr "Параметры профиля" + +#: plugins/3MFReader/WorkspaceDialog.qml:166 +#: plugins/3MFReader/WorkspaceDialog.qml:238 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246 +msgctxt "@action:label" +msgid "Name" +msgstr "Название" + +#: plugins/3MFReader/WorkspaceDialog.qml:172 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263 +msgctxt "@action:label" +msgid "Intent" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:178 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230 +msgctxt "@action:label" +msgid "Not in profile" +msgstr "Вне профиля" + +#: plugins/3MFReader/WorkspaceDialog.qml:179 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235 +msgctxt "@action:label" +msgid "%1 override" +msgid_plural "%1 overrides" +msgstr[0] "%1 перекрыт" +msgstr[1] "%1 перекрыто" +msgstr[2] "%1 перекрыто" + +#: plugins/3MFReader/WorkspaceDialog.qml:185 +msgctxt "@action:label" +msgid "Derivative from" +msgstr "Производное от" + +#: plugins/3MFReader/WorkspaceDialog.qml:186 +msgctxt "@action:label" +msgid "%1, %2 override" +msgid_plural "%1, %2 overrides" +msgstr[0] "%1, %2 перекрыто" +msgstr[1] "%1, %2 перекрыто" +msgstr[2] "%1, %2 перекрыто" + +#: plugins/3MFReader/WorkspaceDialog.qml:226 +msgctxt "@action:label" +msgid "Material settings" +msgstr "Параметры материала" + +#: plugins/3MFReader/WorkspaceDialog.qml:280 +msgctxt "@action:label" +msgid "Setting visibility" +msgstr "Видимость параметров" + +#: plugins/3MFReader/WorkspaceDialog.qml:290 +msgctxt "@action:label" +msgid "Mode" +msgstr "Режим" + +#: plugins/3MFReader/WorkspaceDialog.qml:296 +msgctxt "@action:label" +msgid "%1 out of %2" +msgstr "%1 из %2" + +#: plugins/3MFReader/WorkspaceDialog.qml:321 +msgctxt "@action:warning" +msgid "Loading a project will clear all models on the build plate." +msgstr "Загрузка проекта приведет к удалению всех моделей на рабочем столе." + +#: plugins/3MFReader/WorkspaceDialog.qml:367 +msgctxt "@label" +msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." +msgstr "Материал, используемый в этом проекте, в настоящее время не установлен в Cura.
    Установите профиль материала и откройте проект снова." + +#: plugins/3MFReader/WorkspaceDialog.qml:392 +msgctxt "@action:button" +msgid "Open" +msgstr "Открыть" + +#: plugins/3MFReader/WorkspaceDialog.qml:398 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "Все равно открыть проект" + +#: plugins/3MFReader/WorkspaceDialog.qml:407 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "Установить недостающий материал" + +#: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33 +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "Файл 3MF" + +#: plugins/3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "Чтение 3MF" + +#: plugins/3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Предоставляет поддержку для чтения 3MF файлов." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "Подключаемый модуль для записи 3MF поврежден." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Нет рабочей среды для записи. Сначала добавьте принтер." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "Права на запись рабочей среды отсутствуют." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "Операционная система не позволяет сохранять файл проекта в этом каталоге или с этим именем файла." + +#: plugins/3MFWriter/ThreeMFWriter.py:240 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Ошибка в ходе записи файла 3MF." + +#: plugins/3MFWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "3MF файл" + +#: plugins/3MFWriter/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "3MF файл проекта Cura" + +#: plugins/3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "Запись 3MF" + +#: plugins/3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Предоставляет возможность записи 3MF файлов." + +#: plugins/AMFReader/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "Файл AMF" + +#: plugins/AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "Средство чтения AMF" + +#: plugins/AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Обеспечивает поддержку чтения файлов AMF." + +#: plugins/CuraDrive/plugin.json +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Резервное копирование и восстановление конфигурации." + +#: plugins/CuraDrive/plugin.json +msgctxt "name" +msgid "Cura Backups" +msgstr "Резервные копии Cura" + +#: plugins/CuraDrive/src/CreateBackupJob.py:25 +msgctxt "@info:title" +msgid "Backups" +msgstr "Резервные копии" + +#: plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "При заливке вашей резервной копии возникла ошибка." + +#: plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "Создание резервной копии..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "При создании резервной копии возникла ошибка." + +#: plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Выполняется заливка вашей резервной копии..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Заливка вашей резервной копии завершена." + +#: plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "Размер файла резервной копии превышает максимально допустимый." + +#: plugins/CuraDrive/src/DriveApiService.py:86 +#: plugins/CuraDrive/src/RestoreBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "При попытке восстановления данных из резервной копии возникла ошибка." + +#: plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Управление резервными копиями" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "Желаете большего?" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Создать резервную копию" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Автоматическое резервное копирование" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Автоматически создавать резервную копию в день запуска Cura." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 +msgctxt "@button" +msgid "Restore" +msgstr "Восстановить" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Удалить резервную копию" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Вы уверены, что хотите удалить указанную резервную копию? Данное действие невозможно отменить." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Восстановить резервную копию" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 +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 прямо сейчас?" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Версия Cura" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Принтеры" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Материалы" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Профили" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Плагины" + +#: plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Резервные копии Cura" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "Мои резервные копии" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "В данный момент у вас отсутствуют резервные копии. Для создания резервной копии нажмите кнопку «Создать резервную копию»." + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "На этапе предварительного просмотра отображается только 5 резервных копий. Для просмотра предыдущих резервных копий удалите одну копию." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Резервное копирование и синхронизация ваших параметров Cura." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 +#: plugins/Marketplace/resources/qml/Marketplace.qml:312 +#: resources/qml/Account/GeneralOperations.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180 +#: resources/qml/WelcomePages/CloudContent.qml:212 +msgctxt "@button" +msgid "Sign in" +msgstr "Войти" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "Нарезка на слои не выполнена из-за непредвиденной ошибки. Возможно, стоит сообщить об ошибке в нашей системе отслеживания проблем." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:163 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "Нарезка на слои не выполнена" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Сообщить об ошибке" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:169 +msgctxt "@message:description" +msgid "Report a bug on UltiMaker Cura's issue tracker." +msgstr "Сообщите об ошибке в системе отслеживания проблем UltiMaker Cura." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:416 +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "Невозможно нарезать модель, используя текущий материал, так как он несовместим с выбранной машиной или конфигурацией." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:417 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:450 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:477 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:501 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:514 +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "Невозможно нарезать" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:449 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "Не могу выполнить слайсинг на текущих настройках. Проверьте следующие настройки: {0}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:476 +#, 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 "Не удалось выполнить слайсинг из-за настроек модели. Следующие настройки ошибочны для одной или нескольких моделей: {error_labels}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:488 +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "Слайсинг невозможен, так как черновая башня или её позиция неверные." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:500 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "Невозможно разделить на слои из-за наличия объектов, связанных с отключенным экструдером %s." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:510 +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 "" +"Проверьте настройки и убедитесь в том, что ваши модели:\n" +"- соответствуют допустимой области печати\n" +"- назначены активированному экструдеру\n" +"- не заданы как объекты-модификаторы" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Обработка слоёв" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Информация" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Движок CuraEngine" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Предоставляет интерфейс к движку CuraEngine." + +#: plugins/CuraProfileReader/__init__.py:14 +#: plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Профиль Cura" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Чтение профиля Cura" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Предоставляет поддержку для импорта профилей Cura." + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Запись профиля Cura" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Предоставляет поддержку для экспорта профилей Cura." + +#: plugins/DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Подключается к цифровой библиотеке, позволяя Cura открывать файлы из цифровой библиотеки и сохранять файлы в нее." + +#: plugins/DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 +msgctxt "@option" +msgid "Save Cura project and print file" +msgstr "Сохранить проекта Cura и распечатать файл" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Сохранить проект Cura" + +#: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19 +msgctxt "@text Placeholder for the username if it has been deleted" +msgid "deleted user" +msgstr "удаленный пользователь" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Не могу получить информацию об обновлениях." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, 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}." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "Доступна новая стабильная прошивка %s" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Порядок обновления" + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Проверяет наличие обновлений ПО." + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Проверка обновлений" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Обновить прошивку" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "Обновить прошивку" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 +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 принтера. Прошивка управляет шаговыми моторами, регулирует температуру и, в конечном счёте, обеспечивает работу вашего принтера." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "Поставляемая с новыми принтерами прошивка работоспособна, но обновления предоставляют больше возможностей и усовершенствований." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Автоматическое обновление прошивки" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Залить собственную прошивку" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "Невозможно обновить прошивку, так как нет подключения к принтеру." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "Невозможно обновить прошивку, так как подключение к принтеру не поддерживает функцию обновления прошивки." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Выбрать собственную прошивку" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Обновление прошивки" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 +msgctxt "@label" +msgid "Updating firmware." +msgstr "Обновление прошивки." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Обновление прошивки завершено." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "Обновление прошивки не удалось из-за неизвестной ошибки." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "Обновление прошивки не удалось из-за ошибки связи." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "Обновление прошивки не удалось из-за ошибки ввода-вывода." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "Обновление прошивки не удалось из-за её отсутствия." + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "name" +msgid "Firmware Updater" +msgstr "Средство обновления прошивки" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Обеспечение действий принтера для обновления прошивки." + +#: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "Сжатый файл с G-кодом" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Средство считывания сжатого G-кода" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Считывает G-код из сжатого архива." + +#: plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "Средство записи G-кода с расширением GZ (GCodeGzWriter) не поддерживает текстовый режим." + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Средство записи сжатого G-кода" + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Записывает G-код в сжатый архив." + +#: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14 +#: plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "Файл G-code" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Средство считывания профиля из G-кода" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Предоставляет поддержку для импортирования профилей из G-Code файлов." + +#: plugins/GCodeReader/FlavorParser.py:359 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "Обработка G-code" + +#: plugins/GCodeReader/FlavorParser.py:361 +#: plugins/GCodeReader/FlavorParser.py:515 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "Параметры G-code" + +#: plugins/GCodeReader/FlavorParser.py:513 +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-code на принтер удостоверьтесь в его соответствии вашему принтеру и его настройкам. Возможны неточности в G-code." + +#: plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "Файл G" + +#: plugins/GCodeReader/plugin.json +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Позволяет загружать и отображать файлы G-code." + +#: plugins/GCodeReader/plugin.json +msgctxt "name" +msgid "G-code Reader" +msgstr "Чтение G-code" + +#: plugins/GCodeWriter/GCodeWriter.py:75 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "Средство записи G-кода (GCodeWriter) не поддерживает нетекстовый режим." + +#: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Подготовьте G-код перед экспортом." + +#: plugins/GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "Средство записи G-кода" + +#: plugins/GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Записывает G-код в файл." + +#: plugins/ImageReader/ConfigUI.qml:14 +msgctxt "@title:window" +msgid "Convert Image" +msgstr "Преобразование изображения" + +#: plugins/ImageReader/ConfigUI.qml:33 +msgctxt "@action:label" +msgid "Height (mm)" +msgstr "Высота (мм)" + +#: plugins/ImageReader/ConfigUI.qml:56 +msgctxt "@info:tooltip" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "Максимальная дистанция каждого пикселя от \"Основания.\"" + +#: plugins/ImageReader/ConfigUI.qml:66 +msgctxt "@action:label" +msgid "Base (mm)" +msgstr "Основание (мм)" + +#: plugins/ImageReader/ConfigUI.qml:90 +msgctxt "@info:tooltip" +msgid "The base height from the build plate in millimeters." +msgstr "Высота основания от стола в миллиметрах." + +#: plugins/ImageReader/ConfigUI.qml:100 +msgctxt "@action:label" +msgid "Width (mm)" +msgstr "Ширина (мм)" + +#: plugins/ImageReader/ConfigUI.qml:124 +msgctxt "@info:tooltip" +msgid "The width in millimeters on the build plate" +msgstr "Ширина в миллиметрах на печатной пластине" + +#: plugins/ImageReader/ConfigUI.qml:134 +msgctxt "@action:label" +msgid "Depth (mm)" +msgstr "Глубина (мм)" + +#: plugins/ImageReader/ConfigUI.qml:158 +msgctxt "@info:tooltip" +msgid "The depth in millimeters on the build plate" +msgstr "Глубина в миллиметрах на столе" + +#: plugins/ImageReader/ConfigUI.qml:187 +msgctxt "@item:inlistbox" +msgid "Darker is higher" +msgstr "Тёмные выше" + +#: plugins/ImageReader/ConfigUI.qml:188 +msgctxt "@item:inlistbox" +msgid "Lighter is higher" +msgstr "Светлые выше" + +#: plugins/ImageReader/ConfigUI.qml:195 +msgctxt "@info:tooltip" +msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." +msgstr "Для литофании темные пиксели должны соответствовать более толстым частям, чтобы сильнее задерживать проходящий свет. Для схем высот более светлые пиксели обозначают более высокий участок. Поэтому более светлые пиксели должны соответствовать более толстым местам в созданной 3D-модели." + +#: plugins/ImageReader/ConfigUI.qml:205 +msgctxt "@action:label" +msgid "Color Model" +msgstr "Цветовая модель" + +#: plugins/ImageReader/ConfigUI.qml:224 +msgctxt "@item:inlistbox" +msgid "Linear" +msgstr "Линейный" + +#: plugins/ImageReader/ConfigUI.qml:225 +msgctxt "@item:inlistbox" +msgid "Translucency" +msgstr "Светопроходимость" + +#: plugins/ImageReader/ConfigUI.qml:232 +msgctxt "@info:tooltip" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "Для литофании предусмотрена простая логарифмическая модель светопроходимости. В картах высот значения пикселей линейно соответствуют высотам." + +#: plugins/ImageReader/ConfigUI.qml:242 +msgctxt "@action:label" +msgid "1mm Transmittance (%)" +msgstr "Проходимость через 1 мм (%)" + +#: plugins/ImageReader/ConfigUI.qml:263 +msgctxt "@info:tooltip" +msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." +msgstr "Процент света, проникающего в отпечаток толщиной 1 миллиметр. Если уменьшить это значение, контрастность в темных областях изображения увеличится, а в светлых — уменьшится." + +#: plugins/ImageReader/ConfigUI.qml:274 +msgctxt "@action:label" +msgid "Smoothing" +msgstr "Сглаживание" + +#: plugins/ImageReader/ConfigUI.qml:298 +msgctxt "@info:tooltip" +msgid "The amount of smoothing to apply to the image." +msgstr "Величина сглаживания для применения к изображению." + +#: plugins/ImageReader/ConfigUI.qml:329 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 +#: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25 +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + +#: plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "JPG изображение" + +#: plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "JPEG изображение" + +#: plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "PNG изображение" + +#: plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "BMP изображение" + +#: plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "GIF изображение" + +#: plugins/ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Обеспечивает возможность генерировать печатаемую геометрию из файлов двухмерных изображений." + +#: plugins/ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Чтение изображений" + +#: plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Профили Cura 15.04" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Чтение устаревших профилей Cura" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Предоставляет поддержку для импортирования профилей из устаревших версий Cura." + +#: plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Параметры принтера" + +#: plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Принтер" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Параметры сопла" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Диаметр сопла" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99 +msgctxt "@label" +msgid "mm" +msgstr "мм" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Диаметр совместимого материала" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Смещение сопла по оси X" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Смещение сопла по оси Y" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Номер охлаждающего вентилятора" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "Стартовый G-код экструдера" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "Завершающий G-код экструдера" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Параметры принтера" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (Ширина)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Глубина)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Высота)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Форма стола" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 +msgctxt "@label" +msgid "Origin at center" +msgstr "Начало координат в центре" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 +msgctxt "@label" +msgid "Heated bed" +msgstr "Нагреваемый стол" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Подогреваемый объем печати" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 +msgctxt "@label" +msgid "G-code flavor" +msgstr "Вариант G-кода" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Параметры головы" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 +msgctxt "@label" +msgid "X min" +msgstr "X минимум" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 +msgctxt "@label" +msgid "Y min" +msgstr "Y минимум" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 +msgctxt "@label" +msgid "X max" +msgstr "X максимум" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 +msgctxt "@label" +msgid "Y max" +msgstr "Y максимум" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Высота портала" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Количество экструдеров" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:342 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Применить смещения экструдера к GCode" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:390 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "Стартовый G-код" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:401 +msgctxt "@title:label" +msgid "End G-code" +msgstr "Завершающий G-код" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Параметры принтера действие" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Предоставляет возможность изменения параметров принтера (такие как рабочий объём, диаметр сопла и так далее)" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "Хотите синхронизировать пакеты материалов и программного обеспечения со своей учетной записью?" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:95 +msgctxt "@info:title" +msgid "Changes detected from your UltiMaker account" +msgstr "В вашей учетной записи UltiMaker обнаружены изменения" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 +msgctxt "@action:button" +msgid "Sync" +msgstr "Синхронизация" + +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "Синхронизация..." + +#: plugins/Marketplace/CloudSync/LicenseModel.py:12 +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:79 +msgctxt "@button" +msgid "Decline" +msgstr "Отклонить" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:13 +#: resources/qml/WelcomePages/UserAgreementContent.qml:53 +msgctxt "@button" +msgid "Agree" +msgstr "Принимаю" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:77 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Лицензионное соглашение плагина" + +#: plugins/Marketplace/CloudSync/LicensePresenter.py:42 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Отклонить и удалить из учетной записи" + +#: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "Для активации изменений вам потребуется завершить работу программного обеспечения {} и перезапустить его." + +#: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "Встраиваемые модули ({} шт.) не загружены" + +#: plugins/Marketplace/LocalPackageList.py:28 +msgctxt "@label" +msgid "Installed Plugins" +msgstr "Установленные встраиваемые модули" + +#: plugins/Marketplace/LocalPackageList.py:29 +msgctxt "@label" +msgid "Installed Materials" +msgstr "Установленные материалы" + +#: plugins/Marketplace/LocalPackageList.py:33 +msgctxt "@label" +msgid "Bundled Plugins" +msgstr "Связанные встраиваемые модули" + +#: plugins/Marketplace/LocalPackageList.py:34 +msgctxt "@label" +msgid "Bundled Materials" +msgstr "Связанные материалы" + +#: plugins/Marketplace/PackageModel.py:43 +msgctxt "@label:property" +msgid "Unknown Package" +msgstr "Неизвестный пакет" + +#: plugins/Marketplace/PackageModel.py:66 +msgctxt "@label:property" +msgid "Unknown Author" +msgstr "Неизвестный автор" + +#: plugins/Marketplace/PackageModel.py:95 +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, на свой страх и риск." + +#: plugins/Marketplace/RemotePackageList.py:117 +msgctxt "@info:error" +msgid "Could not interpret the server's response." +msgstr "Не удалось интерпретировать ответ сервера." + +#: plugins/Marketplace/RemotePackageList.py:148 +msgctxt "@info:error" +msgid "Could not reach Marketplace." +msgstr "Не удалось связаться с магазином." + +#: plugins/Marketplace/plugin.json +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Позволяет управлять расширениями приложения и просматривать расширения с веб-сайта UltiMaker." + +#: plugins/Marketplace/plugin.json +msgctxt "name" +msgid "Marketplace" +msgstr "Магазин" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 +msgctxt "@title" +msgid "Changes from your account" +msgstr "Изменения в вашей учетной записи" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +msgctxt "@button" +msgid "Dismiss" +msgstr "Отклонить" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +#: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 +#: resources/qml/WelcomePages/WhatsNewContent.qml:175 +msgctxt "@button" +msgid "Next" +msgstr "Следующий" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "Будут добавлены следующие пакеты:" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "Следующие пакеты невозможно установить из-за несовместимой версии Cura:" + +#: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "Установить недостающие материалы" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "Лицензионное соглашение плагина" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:47 +msgctxt "@text" +msgid "Please read and agree with the plugin licence." +msgstr "Прочитайте лицензию встраиваемого модуля и примите ее условия." + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "Принять" + +#: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Управление пакетами" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:12 +msgctxt "@header" +msgid "Manage packages" +msgstr "Управление пакетами" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:16 +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 и профилями материалов. Регулярно обновляйте встраиваемые модули и создавайте резервные копии настроек." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" +msgid "Loading..." +msgstr "Загрузка..." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "Плагины" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "Материалы" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "Поиск в браузере" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:271 +msgctxt "@button" +msgid "In order to use the package you will need to restart Cura" +msgstr "Для работы с пакетом необходимо перезапустить Cura" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:279 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "Выйти из %1" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:300 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" +msgstr "Войдите, чтобы получить проверенные встраиваемые модули и материалы для UltiMaker Cura Enterprise" + +#: plugins/Marketplace/resources/qml/Materials.qml:8 +#: plugins/Marketplace/resources/qml/MissingPackages.qml:8 +msgctxt "@header" +msgid "Install Materials" +msgstr "Установка материалов" + +#: plugins/Marketplace/resources/qml/Materials.qml:12 +msgctxt "@text" +msgid "Select and install material profiles optimised for your UltiMaker 3D printers." +msgstr "Выберите и установите профили материалов, оптимизированные для 3D-принтеров Ultimaker." + +#: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "Для установки пакета необходимо принять лицензию" + +#: plugins/Marketplace/resources/qml/OnboardBanner.qml:101 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205 +msgctxt "@button:label" +msgid "Learn More" +msgstr "Узнать Больше" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170 +msgctxt "@label Is followed by the name of an author" +msgid "By" +msgstr "Автор" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Disable" +msgstr "Выключить" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Enable" +msgstr "Включить" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242 +msgctxt "@button" +msgid "Downgrading..." +msgstr "Переход на более раннюю версию..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243 +msgctxt "@button" +msgid "Downgrade" +msgstr "Переход на более раннюю версию" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247 +msgctxt "@button" +msgid "Installing..." +msgstr "Установка..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248 +msgctxt "@button" +msgid "Install" +msgstr "Установить" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252 +msgctxt "@button" +msgid "Uninstall" +msgstr "Удалить" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Update" +msgstr "Обновить" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Updating..." +msgstr "Обновление..." + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "Сведения о пакете" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Назад" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "Описание" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "Совместимые принтеры" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "Нет информации о совместимости" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "Совместимые вспомогательные материалы" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "Нет" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:193 +msgctxt "@header" +msgid "Compatible with Material Station" +msgstr "Совместимо с Material Station" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "No" +msgstr "Нет" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "Yes" +msgstr "Да" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:219 +msgctxt "@header" +msgid "Optimized for Air Manager" +msgstr "Оптимизировано для Air Manager" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Visit plug-in website" +msgstr "Посетите веб-сайт встраиваемых модулей" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Website" +msgstr "Веб-сайт" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:252 +msgctxt "@button" +msgid "Buy spool" +msgstr "Купить катушку" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:261 +msgctxt "@button" +msgid "Safety datasheet" +msgstr "Паспорт безопасности" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:270 +msgctxt "@button" +msgid "Technical datasheet" +msgstr "Таблица технических характеристик" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Failed to load packages:" +msgstr "Пакеты не загружены:" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Retry?" +msgstr "Повторить попытку?" + +#: plugins/Marketplace/resources/qml/Packages.qml:167 +msgctxt "@button" +msgid "Loading" +msgstr "Загрузка" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No more results to load" +msgstr "Больше нет результатов для загрузки" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No results found with current filter" +msgstr "Поиск с текущим фильтром не дал результатов" + +#: plugins/Marketplace/resources/qml/Packages.qml:226 +msgctxt "@button" +msgid "Load more" +msgstr "Загрузить еще" + +#: plugins/Marketplace/resources/qml/Plugins.qml:8 +msgctxt "@header" +msgid "Install Plugins" +msgstr "Установка встраиваемых модулей" + +#: plugins/Marketplace/resources/qml/Plugins.qml:12 +msgctxt "@text" +msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." +msgstr "Оптимизируйте свои рабочие процессы и настройте Ultimaker Cura с помощью встраиваемых модулей, разработанных экспертами нашего замечательного сообщества." + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 +msgctxt "@info" +msgid "UltiMaker Verified Plug-in" +msgstr "Проверенный плагин UltiMaker" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "UltiMaker Certified Material" +msgstr "Сертифицированный материал UltiMaker" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 +msgctxt "@info" +msgid "UltiMaker Verified Package" +msgstr "Проверенный пакет UltiMaker" + +#: plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "Помощник по 3D-моделям" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -836,827 +2381,1094 @@ msgstr "" "

    Узнайте, как обеспечить максимально возможное качество и высокую надежность печати.

    \n" "

    Ознакомиться с руководством по качеству печати

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 -#, 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}. Не удалось импортировать принтер. Вместо этого будут импортированы модели." +#: plugins/ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Проверка моделей и конфигурации печати для выявления возможных проблем печати; рекомендации." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "Открыть файл проекта" +#: plugins/ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Средство проверки моделей" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "Файл проекта {0} внезапно стал недоступен: {1}.." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:659 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "Невозможно открыть файл проекта" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:658 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "Файл проекта {0} поврежден: {1}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:711 -#, 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." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Рекомендованная" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:214 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Своя" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:390 -msgctxt "@info:status" -msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 -msgctxt "@info:title" -msgid "Material profiles not installed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 -msgctxt "@action:button" -msgid "Install Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "Файл 3MF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "Подключаемый модуль для записи 3MF поврежден." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "Нет рабочей среды для записи. Сначала добавьте принтер." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "Права на запись рабочей среды отсутствуют." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "Операционная система не позволяет сохранять файл проекта в этом каталоге или с этим именем файла." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:238 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Ошибка в ходе записи файла 3MF." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:282 -#, python-brace-format -msgctxt "@error:material" -msgid "It was not possible to store material package information in project file: {material}. This project may not open correctly on other systems." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 -msgctxt "@info:title" -msgid "Failed to save material package information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF файл" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "3MF файл проекта Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Файл AMF" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 -msgctxt "@info:title" -msgid "Backups" -msgstr "Резервные копии" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "При заливке вашей резервной копии возникла ошибка." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Создание резервной копии..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "При создании резервной копии возникла ошибка." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Выполняется заливка вашей резервной копии..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Заливка вашей резервной копии завершена." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "Размер файла резервной копии превышает максимально допустимый." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "При попытке восстановления данных из резервной копии возникла ошибка." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Управление резервными копиями" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "Нарезка на слои не выполнена из-за непредвиденной ошибки. Возможно, стоит сообщить об ошибке в нашей системе отслеживания проблем." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "Нарезка на слои не выполнена" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 -msgctxt "@message:button" -msgid "Report a bug" -msgstr "Сообщить об ошибке" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 -msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." -msgstr "Сообщите об ошибке в системе отслеживания проблем Ultimaker Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:400 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "Невозможно нарезать модель, используя текущий материал, так как он несовместим с выбранной машиной или конфигурацией." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:401 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:434 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:461 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:473 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:485 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:498 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "Невозможно нарезать" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:433 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "Не могу выполнить слайсинг на текущих настройках. Проверьте следующие настройки: {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:460 -#, 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 "Не удалось выполнить слайсинг из-за настроек модели. Следующие настройки ошибочны для одной или нескольких моделей: {error_labels}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:472 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "Слайсинг невозможен, так как черновая башня или её позиция неверные." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:484 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "Невозможно разделить на слои из-за наличия объектов, связанных с отключенным экструдером %s." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 -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 "" -"Проверьте настройки и убедитесь в том, что ваши модели:\n" -"- соответствуют допустимой области печати\n" -"- назначены активированному экструдеру\n" -"- не заданы как объекты-модификаторы" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Обработка слоёв" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 -msgctxt "@info:title" -msgid "Information" -msgstr "Информация" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Профиль Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" -msgid "Could not access update information." -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" +"- Убедитесь, что вы вошли в систему (это необходимо для поиска принтеров, подключенных к облаку)." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, 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}." +#: plugins/MonitorStage/MonitorMain.qml:113 +msgctxt "@info" +msgid "Please connect your printer to the network." +msgstr "Подключите принтер к сети." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s stable firmware available" -msgstr "Доступна новая стабильная прошивка %s" +#: plugins/MonitorStage/MonitorMain.qml:148 +msgctxt "@label link to technical assistance" +msgid "View user manuals online" +msgstr "Просмотр руководств пользователей онлайн" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "Порядок обновления" +#: plugins/MonitorStage/MonitorMain.qml:164 +msgctxt "@info" +msgid "In order to monitor your print from Cura, please connect the printer." +msgstr "Чтобы отслеживать задания печати при помощи Cura, подключите принтер." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Обновить прошивку" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Сжатый файл с G-кодом" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "Средство записи G-кода с расширением GZ (GCodeGzWriter) не поддерживает текстовый режим." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Файл G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:350 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Обработка G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:506 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "Параметры G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 -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-code на принтер удостоверьтесь в его соответствии вашему принтеру и его настройкам. Возможны неточности в G-code." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Файл G" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "Средство записи G-кода (GCodeWriter) не поддерживает нетекстовый режим." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Подготовьте G-код перед экспортом." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG изображение" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG изображение" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG изображение" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP изображение" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF изображение" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Профили Cura 15.04" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Параметры принтера" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Хотите синхронизировать пакеты материалов и программного обеспечения со своей учетной записью?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "В вашей учетной записи Ultimaker обнаружены изменения" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 -msgctxt "@action:button" -msgid "Sync" -msgstr "Синхронизация" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Синхронизация..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:12 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:79 -msgctxt "@button" -msgid "Decline" -msgstr "Отклонить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:13 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53 -msgctxt "@button" -msgid "Agree" -msgstr "Принимаю" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Лицензионное соглашение плагина" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Отклонить и удалить из учетной записи" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "Для активации изменений вам потребуется завершить работу программного обеспечения {} и перезапустить его." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "Встраиваемые модули ({} шт.) не загружены" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:28 -msgctxt "@label" -msgid "Installed Plugins" -msgstr "Установленные встраиваемые модули" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:29 -msgctxt "@label" -msgid "Installed Materials" -msgstr "Установленные материалы" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:33 -msgctxt "@label" -msgid "Bundled Plugins" -msgstr "Связанные встраиваемые модули" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:34 -msgctxt "@label" -msgid "Bundled Materials" -msgstr "Связанные материалы" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:43 -msgctxt "@label:property" -msgid "Unknown Package" -msgstr "Неизвестный пакет" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:66 -msgctxt "@label:property" -msgid "Unknown Author" -msgstr "Неизвестный автор" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:117 -msgctxt "@info:error" -msgid "Could not interpret the server's response." -msgstr "Не удалось интерпретировать ответ сервера." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:148 -msgctxt "@info:error" -msgid "Could not reach Marketplace." -msgstr "Не удалось связаться с магазином." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 +#: plugins/MonitorStage/__init__.py:14 msgctxt "@item:inmenu" msgid "Monitor" msgstr "Монитор" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: plugins/MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Этап мониторинга" + +#: plugins/MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Обеспечивает этап мониторинга в Cura." + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 +msgctxt "@label" +msgid "Mesh Type" +msgstr "Тип объекта" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 +msgctxt "@label" +msgid "Normal model" +msgstr "Нормальная модель" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 +msgctxt "@label" +msgid "Print as support" +msgstr "Печать в качестве поддержки" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Изменить настройки для перекрытий" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "Не поддерживать перекрытия" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 +msgctxt "@item:inlistbox" +msgid "Infill mesh only" +msgstr "Заполнение объекта" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161 +msgctxt "@item:inlistbox" +msgid "Cutting mesh" +msgstr "Ограничивающий объект" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386 +msgctxt "@action:button" +msgid "Select settings" +msgstr "Выберите параметры" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Выберите параметр для изменения этой модели" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Фильтр..." + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Показать всё" + +#: plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" msgid "Per Model Settings" msgstr "Параметры модели" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +#: plugins/PerObjectSettingsTool/__init__.py:15 msgctxt "@info:tooltip" msgid "Configure Per Model Settings" msgstr "Правка параметров модели" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Инструмент для настройки каждой модели" + +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Предоставляет параметры для каждой модели." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Пост-обработка" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "Изменить G-код" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Плагин пост-обработки" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 +msgctxt "@label" +msgid "Post Processing Scripts" +msgstr "Скрипты пост-обработки" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "Добавить скрипт" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 +msgctxt "@label" +msgid "Settings" +msgstr "Параметры" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Измените активные скрипты пост-обработки." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "Активны следующие скрипты:" +msgstr[1] "Активны следующие скрипты:" +msgstr[2] "Активны следующие скрипты:" + +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Расширение, которое позволяет пользователю создавать скрипты для постобработки" + +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Пост обработка" + +#: plugins/PrepareStage/PrepareMenu.qml:74 +msgctxt "@button" +msgid "Add printer" +msgstr "Добавить принтер" + +#: plugins/PrepareStage/PrepareMenu.qml:90 +msgctxt "@button" +msgid "Manage printers" +msgstr "Управление принтерами" + +#: plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "Подготовка" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 +#: plugins/PrepareStage/plugin.json +msgctxt "name" +msgid "Prepare Stage" +msgstr "Подготовительный этап" + +#: plugins/PrepareStage/plugin.json +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Обеспечивает подготовительный этап в Cura." + +#: plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" msgid "Preview" msgstr "Предварительный просмотр" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +#: plugins/PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Этап предварительного просмотра" + +#: plugins/PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Обеспечивает действия на этапе предварительного просмотра в Cura." + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Сохранить на внешний носитель" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Сохранить на внешний носитель {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "Ни один из форматов файлов не доступен для записи!" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 #, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Сохранение на внешний носитель {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 msgctxt "@info:title" msgid "Saving" msgstr "Сохранение" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "Не могу записать {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 #, 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}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 #, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Невозможно сохранить на внешний носитель {0}: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 #, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Сохранено на внешний носитель {0} как {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 msgctxt "@info:title" msgid "File Saved" msgstr "Файл сохранён" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 msgctxt "@action:button" msgid "Eject" msgstr "Извлечь" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 #, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Извлекает внешний носитель {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 #, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Извлечено {0}. Вы можете теперь безопасно извлечь носитель." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 msgctxt "@info:title" msgid "Safely Remove Hardware" msgstr "Безопасное извлечение устройства" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 #, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Невозможно извлечь {0}. Другая программа может использовать это устройство." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +#: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 msgctxt "@item:intext" msgid "Removable Drive" msgstr "Внешний носитель" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "При печати через кабель Cura отображает слои неточно." +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Предоставляет поддержку для подключения и записи на внешний носитель." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Вид моделирования" +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Плагин для работы с внешним носителем" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 +#: plugins/SentryLogger/plugin.json +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Регистрирует определенные события в журнале, чтобы их можно было использовать в отчетах об аварийном завершении работы" + +#: plugins/SentryLogger/plugin.json +msgctxt "name" +msgid "Sentry Logger" +msgstr "Контрольный журнал" + +#: plugins/SimulationView/SimulationView.py:129 msgctxt "@info:status" msgid "Nothing is shown because you need to slice first." msgstr "Ничего не отображается, поскольку сначала нужно выполнить нарезку на слои." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 +#: plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "No layers to show" msgstr "Нет слоев для отображения" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 +#: plugins/SimulationView/SimulationView.py:132 +#: plugins/SolidView/SolidView.py:74 msgctxt "@info:option_text" msgid "Do not show this message again" msgstr "Больше не показывать это сообщение" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:18 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:47 +msgctxt "@label" +msgid "Color scheme" +msgstr "Цветовая схема" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Цвет материала" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Тип линии" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:112 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Скорость" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:116 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Толщина слоя" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:120 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Ширина линии" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:124 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Поток" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:164 +msgctxt "@label" +msgid "Compatibility Mode" +msgstr "Режим совместимости" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:231 +msgctxt "@label" +msgid "Travels" +msgstr "Перемещения" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:237 +msgctxt "@label" +msgid "Helpers" +msgstr "Помощники" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:243 +msgctxt "@label" +msgid "Shell" +msgstr "Ограждение" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:249 +msgctxt "@label" +msgid "Infill" +msgstr "Заполнение" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:257 +msgctxt "@label" +msgid "Starts" +msgstr "Запуск" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:304 +msgctxt "@label" +msgid "Only Show Top Layers" +msgstr "Показать только верхние слои" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:313 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "Показать 5 детализированных слоёв сверху" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:326 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Дно / крышка" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:330 +msgctxt "@label" +msgid "Inner Wall" +msgstr "Внутренняя стенка" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:397 +msgctxt "@label" +msgid "min" +msgstr "мин" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:462 +msgctxt "@label" +msgid "max" +msgstr "макс" + +#: plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Просмотр слоёв" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +#: plugins/SimulationView/plugin.json +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Обеспечивает предварительный просмотр нарезанных данных слоя." + +#: plugins/SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "Вид моделирования" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Дополнительная информация о сборе анонимных данных" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 +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 собирает анонимные данные для повышения качества печати и улучшения взаимодействия с пользователем. Ниже приведен пример всех передаваемых данных:" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Не хочу отправлять анонимные данные" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Разрешить отправку анонимных данных" + +#: plugins/SliceInfoPlugin/SliceInfo.py:95 msgctxt "@text" msgid "Unable to read example data file." msgstr "Невозможно прочитать пример файла данных." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Информация о нарезке модели" + +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Отправляет анонимную информацию о нарезке моделей. Может быть отключено через настройки." + +#: plugins/SolidView/SolidView.py:71 msgctxt "@info:status" msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." msgstr "Выделены области с отсутствующими или лишними поверхностями. Исправьте модель и снова откройте ее в Cura." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +#: plugins/SolidView/SolidView.py:73 msgctxt "@info:title" msgid "Model Errors" msgstr "Ошибки модели" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +#: plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" msgstr "Просмотр модели" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +#: plugins/SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Предоставляет просмотр твёрдого тела." + +#: plugins/SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Обзор" + +#: plugins/SupportEraser/__init__.py:12 msgctxt "@label" msgid "Support Blocker" msgstr "Блокировщик поддержки" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 +#: plugins/SupportEraser/__init__.py:13 msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "Создание объема без печати элементов поддержки." -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 +#: plugins/SupportEraser/plugin.json +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Создание объекта стирания для блокировки печати элемента поддержки в определенных местах" + +#: plugins/SupportEraser/plugin.json +msgctxt "name" +msgid "Support Eraser" +msgstr "Средство стирания элемента поддержки" + +#: plugins/TrimeshReader/__init__.py:15 msgctxt "@item:inlistbox 'Open' is part of the name of this file format." msgid "Open Compressed Triangle Mesh" msgstr "Open Compressed Triangle Mesh" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: plugins/TrimeshReader/__init__.py:19 msgctxt "@item:inlistbox" msgid "COLLADA Digital Asset Exchange" msgstr "COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: plugins/TrimeshReader/__init__.py:23 msgctxt "@item:inlistbox" msgid "glTF Binary" msgstr "glTF Binary" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: plugins/TrimeshReader/__init__.py:27 msgctxt "@item:inlistbox" msgid "glTF Embedded JSON" msgstr "glTF Embedded JSON" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: plugins/TrimeshReader/__init__.py:36 msgctxt "@item:inlistbox" msgid "Stanford Triangle Format" msgstr "Stanford Triangle Format" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: plugins/TrimeshReader/__init__.py:40 msgctxt "@item:inlistbox" msgid "Compressed COLLADA Digital Asset Exchange" msgstr "Compressed COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Пакет формата Ultimaker" +#: plugins/TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Предоставляет поддержку для чтения файлов моделей." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 +#: plugins/TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Средство чтения Trimesh" + +#: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "UltiMaker Format Package" +msgstr "Пакет формата UltiMaker" + +#: plugins/UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Предоставляет поддержку для чтения пакетов формата UltiMaker." + +#: plugins/UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "Средство считывания UFP" + +#: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80 +#: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115 +#: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180 msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "Невозможно записать в файл UFP:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Выравнивание стола" +#: plugins/UFPWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Предоставляет поддержку для записи пакетов формата UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Выбор обновлений" +#: plugins/UFPWriter/plugin.json +msgctxt "name" +msgid "UFP Writer" +msgstr "Средство записи UFP" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Управляет сетевыми соединениями с сетевыми принтерами UltiMaker." + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Соединение с сетью UltiMaker" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Подключение к сетевому принтеру" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Выберите свой принтер из приведенного ниже списка:" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +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-Code на принтер." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 +msgctxt "@action:button" +msgid "Edit" +msgstr "Правка" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 +#: resources/qml/Preferences/MachinesPage.qml:153 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:186 +#: resources/qml/Preferences/ProfilesPage.qml:321 +msgctxt "@action:button" +msgid "Remove" +msgstr "Удалить" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Обновить" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "Если ваш принтер отсутствует в списке, обратитесь к руководству по решению проблем с сетевой печатью" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 +msgctxt "@label" +msgid "Type" +msgstr "Тип" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 +msgctxt "@label" +msgid "Firmware version" +msgstr "Версия прошивки" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 +msgctxt "@label" +msgid "Address" +msgstr "Адрес" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Данный принтер не настроен для управления группой принтеров." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Данный принтер управляет группой из %1 принтера (-ов)." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "Принтер по этому адресу ещё не отвечал." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" +msgid "Connect" +msgstr "Подключить" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Недействительный IP-адрес" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Введите действительный IP-адрес." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Адрес принтера" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Введите IP-адрес принтера в сети." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Изменения конфигурации" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 +msgctxt "@action:button" +msgid "Override" +msgstr "Переопределить" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "Для назначенного принтера %1 требуется следующее изменение конфигурации:" +msgstr[1] "Для назначенного принтера %1 требуются следующие изменения конфигурации:" +msgstr[2] "Для назначенного принтера %1 требуются следующие изменения конфигурации:" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "Принтер %1 назначен, однако в задании указана неизвестная конфигурация материала." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Изменить материал %1 с %2 на %3." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "Загрузите %3 как материал %1 (переопределение этого действия невозможно)." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Изменить экструдер %1 с %2 на %3." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "При переопределении к имеющейся конфигурации принтера будут применены указанные настройки. Это может привести к ошибке печати." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@label" +msgid "Move to top" +msgstr "Переместить в начало" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155 +msgctxt "@label" +msgid "Delete" +msgstr "Удалить" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186 +#: resources/qml/MonitorButton.qml:284 +msgctxt "@label" +msgid "Resume" +msgstr "Продолжить" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188 +msgctxt "@label" +msgid "Pausing..." +msgstr "Приостановка..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190 +msgctxt "@label" +msgid "Resuming..." +msgstr "Возобновляется..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192 +#: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288 +msgctxt "@label" +msgid "Pause" +msgstr "Пауза" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Abort" +msgstr "Прервать" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Aborting..." +msgstr "Прерывается..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218 +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 в начало очереди?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Переместить задание печати в начало очереди" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "Вы уверены, что хотите удалить %1?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Удалить задание печати" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "Вы уверены, что хотите прервать %1?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237 +#: resources/qml/MonitorButton.qml:326 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Прервать печать" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Недоступный принтер" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 +msgctxt "@label" +msgid "First available" +msgstr "Первое доступное" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Для удаленного управления очередью необходимо обновить программное обеспечение принтера." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +msgctxt "@label:status" +msgid "Aborted" +msgstr "Прервано" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 +msgctxt "@label:status" +msgid "Finished" +msgstr "Завершено" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Подготовка..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "Прерывается..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +msgctxt "@label:status" +msgid "Failed" +msgstr "Сбой" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Приостановка..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Paused" +msgstr "Приостановлено" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Возобновляется..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Action required" +msgstr "Необходимое действие" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Завершение %1 в %2" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Управление принтером" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280 +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." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Загрузка..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Недоступен" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Недостижимо" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Idle" +msgstr "Простой" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361 +msgctxt "@label:status" +msgid "Printing" +msgstr "Печать" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402 +msgctxt "@label" +msgid "Untitled" +msgstr "Без имени" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417 +msgctxt "@label" +msgid "Anonymous" +msgstr "Анонимн" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Необходимо внести изменения конфигурации" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452 +msgctxt "@action:button" +msgid "Details" +msgstr "Подробности" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 +msgctxt "@label" +msgid "Queued" +msgstr "Запланировано" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Управление через браузер" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "В очереди нет заданий печати. Выполните нарезку и отправьте задание." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "Print jobs" +msgstr "Задания печати" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108 +msgctxt "@label" +msgid "Total print time" +msgstr "Общее время печати" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117 +msgctxt "@label" +msgid "Waiting for" +msgstr "Ожидание" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117 +msgctxt "@info" +msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" +msgstr "Следите за своими принтерами откуда угодно с помощью Ultimaker Digital Factory" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129 +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Просмотреть принтеры в Digital Factory" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Печать через сеть" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 +msgctxt "@action:button" +msgid "Print" +msgstr "Печать" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 +msgctxt "@label" +msgid "Printer selection" +msgstr "Выбор принтера" + +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162 msgctxt "@action:button" msgid "Print via cloud" msgstr "Печать через облако" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Печать через облако" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Подключено через облако" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276 msgctxt "@action:button" msgid "Monitor print" msgstr "Мониторинг печати" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278 msgctxt "@action:tooltip" msgid "Track the print in Ultimaker Digital Factory" msgstr "Отслеживайте печать в Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Неизвестный код ошибки при загрузке задания печати: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "New printer detected from your Ultimaker account" -msgstr[1] "New printers detected from your Ultimaker account" -msgstr[2] "New printers detected from your Ultimaker account" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:242 -#, 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}) из вашей учетной записи" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:261 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "... и еще {0} другой" -msgstr[1] "... и еще {0} других" -msgstr[2] "... и еще {0} других" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:266 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "Принтеры, добавленные из Digital Factory:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:334 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "Подключение к облаку недоступно для принтера" -msgstr[1] "Подключение к облаку недоступно для некоторых принтеров" -msgstr[2] "Подключение к облаку недоступно для некоторых принтеров" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:343 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "Это принтер не подключен Digital Factory:" -msgstr[1] "Эти принтеры не подключены Digital Factory:" -msgstr[2] "Эти принтеры не подключены Digital Factory:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:348 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:440 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:352 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "Чтобы установить подключение, перейдите на сайт {website_link}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:356 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "Сохранить конфигурации принтера" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "Удалить принтеры" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:442 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425 #, 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} будет удален до следующей синхронизации учетной записи." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:443 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426 #, 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}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:444 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427 #, 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} временно?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474 msgctxt "@title:window" msgid "Remove printers?" msgstr "Удалить принтеры?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477 #, python-brace-format msgctxt "@label" msgid "" @@ -1675,14 +3487,14 @@ msgstr[2] "" "Вы удаляете {0} принтеров из Cura. Это действие невозможно будет отменить.\n" "Продолжить?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 msgctxt "@label" 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. Это действие невозможно будет отменить.Продолжить?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, python-brace-format msgctxt "@info:status" msgid "" @@ -1692,2497 +3504,1379 @@ msgstr "" "Ваш принтер {printer_name} может быть подключен через облако.\n" " Управляйте очередью печати и следите за результатом из любого места благодаря подключению принтера к Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 msgctxt "@info:title" msgid "Are you ready for cloud printing?" msgstr "Вы готовы к облачной печати?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 msgctxt "@action" msgid "Get started" msgstr "Приступить" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24 msgctxt "@action" msgid "Learn more" msgstr "Узнать больше" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 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. Обновите прошивку принтера до последней версии." +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. Обновите прошивку принтера до последней версии." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 msgctxt "@info:title" msgid "Update your printer" msgstr "Обновите свой принтер" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 #, 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}." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Отправка материалов на принтер" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "Новый принтер обнаружен из учетной записи Ultimaker" +msgstr[1] "Новых принтера обнаружено из учетной записи Ultimaker" +msgstr[2] "Новых принтеров обнаружено из учетной записи Ultimaker" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29 +#, 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}) из вашей учетной записи" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "... и еще {0} другой" +msgstr[1] "... и еще {0} других" +msgstr[2] "... и еще {0} других" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "Принтеры, добавленные из Digital Factory:" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 #, 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}, но это не главный принтер группы. Откройте веб-страницу, чтобы настроить его в качестве главного принтера группы." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 msgctxt "@info:title" msgid "Not a group host" msgstr "Не главный принтер группы" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 msgctxt "@action" msgid "Configure group" msgstr "Настроить группу" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18 +msgctxt "@info:status" +msgid "You will receive a confirmation via email when the print job is approved" +msgstr "Вы получите подтверждение по электронной почте после утверждения задания печати" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19 +msgctxt "@info:title" +msgid "The print job was successfully submitted" +msgstr "Задание печати успешно отправлено" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22 +msgctxt "@action" +msgid "Manage print jobs" +msgstr "Управление заданиями печати" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 msgctxt "@info:status" msgid "Please wait until the current job has been sent." msgstr "Дождитесь окончания отправки текущего задания." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 msgctxt "@info:title" msgid "Print error" msgstr "Ошибка печати" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Облако не залило данные на принтер." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 msgctxt "@info:title" msgid "Network error" msgstr "Ошибка сети" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 msgctxt "@info:status" msgid "Sending Print Job" msgstr "Отправка задания печати" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 msgctxt "@info:status" msgid "Uploading print job to printer." msgstr "Загрузка задания печати в принтер." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 msgctxt "@info:status" msgid "Print job queue is full. The printer can't accept a new job." msgstr "Очередь заданий печати заполнена. Принтер не может принять новое задание." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 msgctxt "@info:title" msgid "Queue Full" msgstr "Очередь заполнена" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "Задание печати успешно отправлено на принтер." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 msgctxt "@info:title" msgid "Data Sent" msgstr "Данные отправлены" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "Это принтер не подключен Digital Factory:" +msgstr[1] "Эти принтеры не подключены Digital Factory:" +msgstr[2] "Эти принтеры не подключены Digital Factory:" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "Чтобы установить подключение, перейдите на сайт {website_link}" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "Подключение к облаку недоступно для принтера" +msgstr[1] "Подключение к облаку недоступно для некоторых принтеров" +msgstr[2] "Подключение к облаку недоступно для некоторых принтеров" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "Сохранить конфигурации принтера" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "Удалить принтеры" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "Печать через сеть" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "Печать через сеть" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64 msgctxt "@info:status" msgid "Connected over the network" msgstr "Подключен по сети" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 msgctxt "@action" msgid "Connect via Network" msgstr "Подключиться через сеть" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +#: plugins/UM3NetworkPrinting/src/Utils.py:27 msgctxt "@info:status" msgid "tomorrow" msgstr "завтра" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +#: plugins/UM3NetworkPrinting/src/Utils.py:30 msgctxt "@info:status" msgid "today" msgstr "сегодня" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:42 msgctxt "@item:inmenu" msgid "USB printing" msgstr "Печать через USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:43 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print via USB" msgstr "Печатать через USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:44 msgctxt "@info:tooltip" msgid "Print via USB" msgstr "Печатать через USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:80 msgctxt "@info:status" msgid "Connected via USB" msgstr "Подключено через USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:110 msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" msgstr "Выполняется печать через USB, закрытие Cura остановит эту печать. Вы уверены?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:135 msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Печать еще выполняется. Cura не может начать другую печать через USB, пока предыдущая печать не будет завершена." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:136 msgctxt "@message" msgid "Print in Progress" msgstr "Идет печать" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "Файл X3D" +#: plugins/USBPrinting/plugin.json +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Принимает G-Code и отправляет его на принтер. Плагин также может обновлять прошивку." -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Просмотр в рентгене" +#: plugins/USBPrinting/plugin.json +msgctxt "name" +msgid "USB printing" +msgstr "Печать через USB" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 -msgctxt "@title:window" -msgid "Open Project" -msgstr "Открытие проекта" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "Обновить существующий" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "Создать новый" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:59 -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "Сводка - Проект Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108 -msgctxt "@info:tooltip" -msgid "How should the conflict in the machine be resolved?" -msgstr "Как следует решать конфликт в принтере?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:95 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Параметры принтера" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:104 -msgctxt "@action:label" -msgid "Type" -msgstr "Тип" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:192 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -msgctxt "@action:label" -msgid "Printer Group" -msgstr "Группа принтеров" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:217 -msgctxt "@info:tooltip" -msgid "How should the conflict in the profile be resolved?" -msgstr "Как следует решать конфликт в профиле?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:220 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Параметры профиля" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:250 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:375 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:244 -msgctxt "@action:label" -msgid "Name" -msgstr "Название" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:268 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:261 -msgctxt "@action:label" -msgid "Intent" -msgstr "Intent" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:286 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:228 -msgctxt "@action:label" -msgid "Not in profile" -msgstr "Вне профиля" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:292 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:233 -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "%1 перекрыт" -msgstr[1] "%1 перекрыто" -msgstr[2] "%1 перекрыто" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 -msgctxt "@action:label" -msgid "Derivative from" -msgstr "Производное от" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:311 -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "%1, %2 перекрыто" -msgstr[1] "%1, %2 перекрыто" -msgstr[2] "%1, %2 перекрыто" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:333 -msgctxt "@info:tooltip" -msgid "How should the conflict in the material be resolved?" -msgstr "Как следует решать конфликт в материале?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:360 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Параметры материала" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:396 -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "Видимость параметров" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 -msgctxt "@action:label" -msgid "Mode" -msgstr "Режим" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 -msgctxt "@action:label" -msgid "Visible settings:" -msgstr "Видимые параметры:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "%1 из %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:447 -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "Загрузка проекта приведет к удалению всех моделей на рабочем столе." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 -msgctxt "@action:button" -msgid "Open" -msgstr "Открыть" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 -msgctxt "@action:button" -msgid "Open project anyway" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 -msgctxt "@action:button" -msgid "Install missing material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Желаете большего?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Создать резервную копию" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Автоматическое резервное копирование" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Автоматически создавать резервную копию в день запуска Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 -msgctxt "@button" -msgid "Restore" -msgstr "Восстановить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Удалить резервную копию" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Вы уверены, что хотите удалить указанную резервную копию? Данное действие невозможно отменить." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Восстановить резервную копию" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 -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 прямо сейчас?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Версия Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Принтеры" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Материалы" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Профили" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Плагины" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Резервные копии Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Мои резервные копии" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "В данный момент у вас отсутствуют резервные копии. Для создания резервной копии нажмите кнопку «Создать резервную копию»." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "На этапе предварительного просмотра отображается только 5 резервных копий. Для просмотра предыдущих резервных копий удалите одну копию." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Резервное копирование и синхронизация ваших параметров Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:212 -msgctxt "@button" -msgid "Sign in" -msgstr "Войти" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 -msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 -msgctxt "@option" -msgid "Save Cura project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Обновить прошивку" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 -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 принтера. Прошивка управляет шаговыми моторами, регулирует температуру и, в конечном счёте, обеспечивает работу вашего принтера." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 -msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "Поставляемая с новыми принтерами прошивка работоспособна, но обновления предоставляют больше возможностей и усовершенствований." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Автоматическое обновление прошивки" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Залить собственную прошивку" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "Невозможно обновить прошивку, так как нет подключения к принтеру." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "Невозможно обновить прошивку, так как подключение к принтеру не поддерживает функцию обновления прошивки." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Выбрать собственную прошивку" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Обновление прошивки" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Обновление прошивки." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Обновление прошивки завершено." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Обновление прошивки не удалось из-за неизвестной ошибки." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Обновление прошивки не удалось из-за ошибки связи." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Обновление прошивки не удалось из-за ошибки ввода-вывода." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Обновление прошивки не удалось из-за её отсутствия." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:14 -msgctxt "@title:window" -msgid "Convert Image" -msgstr "Преобразование изображения" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 -msgctxt "@action:label" -msgid "Height (mm)" -msgstr "Высота (мм)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "Максимальная дистанция каждого пикселя от \"Основания.\"" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 -msgctxt "@action:label" -msgid "Base (mm)" -msgstr "Основание (мм)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 -msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "Высота основания от стола в миллиметрах." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 -msgctxt "@action:label" -msgid "Width (mm)" -msgstr "Ширина (мм)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 -msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate" -msgstr "Ширина в миллиметрах на печатной пластине" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 -msgctxt "@action:label" -msgid "Depth (mm)" -msgstr "Глубина (мм)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 -msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "Глубина в миллиметрах на столе" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 -msgctxt "@item:inlistbox" -msgid "Darker is higher" -msgstr "Тёмные выше" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -msgctxt "@item:inlistbox" -msgid "Lighter is higher" -msgstr "Светлые выше" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 -msgctxt "@info:tooltip" -msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." -msgstr "Для литофании темные пиксели должны соответствовать более толстым частям, чтобы сильнее задерживать проходящий свет. Для схем высот более светлые пиксели обозначают более высокий участок. Поэтому более светлые пиксели должны соответствовать более толстым местам в созданной 3D-модели." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:205 -msgctxt "@action:label" -msgid "Color Model" -msgstr "Цветовая модель" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:224 -msgctxt "@item:inlistbox" -msgid "Linear" -msgstr "Линейный" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 -msgctxt "@item:inlistbox" -msgid "Translucency" -msgstr "Светопроходимость" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 -msgctxt "@info:tooltip" -msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." -msgstr "Для литофании предусмотрена простая логарифмическая модель светопроходимости. В картах высот значения пикселей линейно соответствуют высотам." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 -msgctxt "@action:label" -msgid "1mm Transmittance (%)" -msgstr "Проходимость через 1 мм (%)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 -msgctxt "@info:tooltip" -msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." -msgstr "Процент света, проникающего в отпечаток толщиной 1 миллиметр. Если уменьшить это значение, контрастность в темных областях изображения увеличится, а в светлых — уменьшится." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 -msgctxt "@action:label" -msgid "Smoothing" -msgstr "Сглаживание" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:298 -msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "Величина сглаживания для применения к изображению." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:143 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:80 -msgctxt "@action:button" -msgid "OK" -msgstr "OK" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Принтер" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Параметры сопла" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Диаметр сопла" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "mm" -msgstr "мм" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Диаметр совместимого материала" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Смещение сопла по оси X" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Смещение сопла по оси Y" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Номер охлаждающего вентилятора" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Стартовый G-код экструдера" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Завершающий G-код экструдера" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Параметры принтера" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (Ширина)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Глубина)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Высота)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Форма стола" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 -msgctxt "@label" -msgid "Origin at center" -msgstr "Начало координат в центре" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 -msgctxt "@label" -msgid "Heated bed" -msgstr "Нагреваемый стол" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Подогреваемый объем печати" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 -msgctxt "@label" -msgid "G-code flavor" -msgstr "Вариант G-кода" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Параметры головы" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 -msgctxt "@label" -msgid "X min" -msgstr "X минимум" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 -msgctxt "@label" -msgid "Y min" -msgstr "Y минимум" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 -msgctxt "@label" -msgid "X max" -msgstr "X максимум" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 -msgctxt "@label" -msgid "Y max" -msgstr "Y максимум" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Высота портала" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Количество экструдеров" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Применить смещения экструдера к GCode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "Стартовый G-код" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400 -msgctxt "@title:label" -msgid "End G-code" -msgstr "Завершающий G-код" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 -msgctxt "@title" -msgid "Changes from your account" -msgstr "Изменения в вашей учетной записи" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -msgctxt "@button" -msgid "Dismiss" -msgstr "Отклонить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:118 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:175 -msgctxt "@button" -msgid "Next" -msgstr "Следующий" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "Будут добавлены следующие пакеты:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "Следующие пакеты невозможно установить из-за несовместимой версии Cura:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 -msgctxt "@title" -msgid "Install missing Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 -msgctxt "@button" -msgid "Plugin license agreement" -msgstr "Лицензионное соглашение плагина" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47 -msgctxt "@text" -msgid "Please read and agree with the plugin licence." -msgstr "Прочитайте лицензию встраиваемого модуля и примите ее условия." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 -msgctxt "@button" -msgid "Accept" -msgstr "Принять" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 -msgctxt "@header" -msgid "Manage packages" -msgstr "Управление пакетами" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15 -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 и профилями материалов. Регулярно обновляйте встраиваемые модули и создавайте резервные копии настроек." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 -msgctxt "@info:tooltip" -msgid "Manage packages" -msgstr "Управление пакетами" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 -msgctxt "@title" -msgid "Loading..." -msgstr "Загрузка..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 -msgctxt "@button" -msgid "Plugins" -msgstr "Плагины" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 -msgctxt "@button" -msgid "Materials" -msgstr "Материалы" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 -msgctxt "@info" -msgid "Search in the browser" -msgstr "Поиск в браузере" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:271 -msgctxt "@button" -msgid "In order to use the package you will need to restart Cura" -msgstr "Для работы с пакетом необходимо перезапустить Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:279 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Выйти из %1" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:8 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MissingPackages.qml:8 -msgctxt "@header" -msgid "Install Materials" -msgstr "Установка материалов" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 -msgctxt "@text" -msgid "Select and install material profiles optimised for your Ultimaker 3D printers." -msgstr "Выберите и установите профили материалов, оптимизированные для 3D-принтеров Ultimaker." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "Для установки пакета необходимо принять лицензию" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:101 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:207 -msgctxt "@button:label" -msgid "Learn More" -msgstr "Узнать Больше" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:172 -msgctxt "@label Is followed by the name of an author" -msgid "By" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Enable" -msgstr "Включить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Disable" -msgstr "Выключить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 -msgctxt "@button" -msgid "Downgrading..." -msgstr "Переход на более раннюю версию..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 -msgctxt "@button" -msgid "Downgrade" -msgstr "Переход на более раннюю версию" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 -msgctxt "@button" -msgid "Installing..." -msgstr "Установка..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 -msgctxt "@button" -msgid "Install" -msgstr "Установить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 -msgctxt "@button" -msgid "Uninstall" -msgstr "Удалить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Updating..." -msgstr "Обновление..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Update" -msgstr "Обновить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 -msgctxt "@header" -msgid "Package details" -msgstr "Сведения о пакете" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 -msgctxt "@button:tooltip" -msgid "Back" -msgstr "Назад" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 -msgctxt "@header" -msgid "Description" -msgstr "Описание" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 -msgctxt "@header" -msgid "Compatible printers" -msgstr "Совместимые принтеры" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:134 -msgctxt "@info" -msgid "No compatibility information" -msgstr "Нет информации о совместимости" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:152 -msgctxt "@header" -msgid "Compatible support materials" -msgstr "Совместимые вспомогательные материалы" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176 -msgctxt "@info No materials" -msgid "None" -msgstr "Нет" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:193 -msgctxt "@header" -msgid "Compatible with Material Station" -msgstr "Совместимо с Material Station" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "Yes" -msgstr "Да" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "No" -msgstr "Нет" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:219 -msgctxt "@header" -msgid "Optimized for Air Manager" -msgstr "Оптимизировано для Air Manager" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Visit plug-in website" -msgstr "Посетите веб-сайт встраиваемых модулей" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Website" -msgstr "Веб-сайт" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:252 -msgctxt "@button" -msgid "Buy spool" -msgstr "Купить катушку" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:261 -msgctxt "@button" -msgid "Safety datasheet" -msgstr "Паспорт безопасности" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:270 -msgctxt "@button" -msgid "Technical datasheet" -msgstr "Таблица технических характеристик" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Failed to load packages:" -msgstr "Пакеты не загружены:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Retry?" -msgstr "Повторить попытку?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:167 -msgctxt "@button" -msgid "Loading" -msgstr "Загрузка" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No more results to load" -msgstr "Больше нет результатов для загрузки" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No results found with current filter" -msgstr "Поиск с текущим фильтром не дал результатов" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:226 -msgctxt "@button" -msgid "Load more" -msgstr "Загрузить еще" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8 -msgctxt "@header" -msgid "Install Plugins" -msgstr "Установка встраиваемых модулей" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12 -msgctxt "@text" -msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users." -msgstr "Оптимизируйте свои рабочие процессы и настройте Ultimaker Cura с помощью встраиваемых модулей, разработанных экспертами нашего замечательного сообщества." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 -msgctxt "@info" -msgid "Ultimaker Verified Plug-in" -msgstr "Проверенный плагин Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 -msgctxt "@info" -msgid "Ultimaker Certified Material" -msgstr "Сертифицированный материал Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 -msgctxt "@info" -msgid "Ultimaker Verified Package" -msgstr "Проверенный пакет Ultimaker" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 -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 "" -"Проверьте наличие подключения к принтеру:\n" -"- Убедитесь, что принтер включен.\n" -"- Убедитесь, что принтер подключен к сети.\n" -"- Убедитесь, что вы вошли в систему (это необходимо для поиска принтеров, подключенных к облаку)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 -msgctxt "@info" -msgid "Please connect your printer to the network." -msgstr "Подключите принтер к сети." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 -msgctxt "@label link to technical assistance" -msgid "View user manuals online" -msgstr "Просмотр руководств пользователей онлайн" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:163 -msgctxt "@info" -msgid "In order to monitor your print from Cura, please connect the printer." -msgstr "Чтобы отслеживать задания печати при помощи Cura, подключите принтер." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Тип объекта" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 -msgctxt "@label" -msgid "Normal model" -msgstr "Нормальная модель" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 -msgctxt "@label" -msgid "Print as support" -msgstr "Печать в качестве поддержки" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Изменить настройки для перекрытий" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Не поддерживать перекрытия" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Заполнение объекта" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Ограничивающий объект" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Выберите параметры" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Выберите параметр для изменения этой модели" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Фильтр..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Показать всё" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Плагин пост-обработки" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Скрипты пост-обработки" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" -msgid "Add a script" -msgstr "Добавить скрипт" +msgid "Level build plate" +msgstr "Выравнивание стола" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 -msgctxt "@label" -msgid "Settings" -msgstr "Параметры" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:459 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Измените активные скрипты пост-обработки." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:463 -msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "Активны следующие скрипты:" -msgstr[1] "Активны следующие скрипты:" -msgstr[2] "Активны следующие скрипты:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:47 -msgctxt "@label" -msgid "Color scheme" -msgstr "Цветовая схема" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Цвет материала" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Тип линии" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Скорость" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Толщина слоя" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Ширина линии" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Поток" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Режим совместимости" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 -msgctxt "@label" -msgid "Travels" -msgstr "Перемещения" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 -msgctxt "@label" -msgid "Helpers" -msgstr "Помощники" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 -msgctxt "@label" -msgid "Shell" -msgstr "Ограждение" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:64 -msgctxt "@label" -msgid "Infill" -msgstr "Заполнение" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Starts" -msgstr "Запуск" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Показать только верхние слои" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Показать 5 детализированных слоёв сверху" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Дно / крышка" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Внутренняя стенка" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 -msgctxt "@label" -msgid "min" -msgstr "мин" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 -msgctxt "@label" -msgid "max" -msgstr "макс" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Дополнительная информация о сборе анонимных данных" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 -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 собирает анонимные данные для повышения качества печати и улучшения взаимодействия с пользователем. Ниже приведен пример всех передаваемых данных:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Не хочу отправлять анонимные данные" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Разрешить отправку анонимных данных" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 msgctxt "@title" msgid "Build Plate Leveling" msgstr "Выравнивание стола" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 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 "Сейчас вы можете отрегулировать ваш стол, чтобы быть уверенным в качестве последующей печати. При нажатии на кнопку «Перейти к следующей позиции» сопло перейдёт на другую позиции, которую можно будет отрегулировать." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 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 "Для каждой позиции, вставьте кусок бумаги под сопло и отрегулируйте высоту стола. Когда кончик сопла немного прижимает бумагу к столу, значит вы выставили правильную высоту стола." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 msgctxt "@action:button" msgid "Start Build Plate Leveling" msgstr "Начало выравнивания стола" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 msgctxt "@action:button" msgid "Move to Next Position" msgstr "Перейти к следующей позиции" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Пожалуйста, укажите любые изменения, внесённые в Ultimaker Original" +#: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "Выбор обновлений" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this UltiMaker Original" +msgstr "Пожалуйста, укажите любые изменения, внесённые в UltiMaker Original" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 msgctxt "@label" msgid "Heated Build Plate (official kit or self-built)" msgstr "Нагреваемый стол (официальный набор или самодельный)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Подключение к сетевому принтеру" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -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-Code на принтер." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Выберите свой принтер из приведенного ниже списка:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 -msgctxt "@action:button" -msgid "Edit" -msgstr "Правка" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:140 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:321 -msgctxt "@action:button" -msgid "Remove" -msgstr "Удалить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Обновить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "Если ваш принтер отсутствует в списке, обратитесь к руководству по решению проблем с сетевой печатью" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 -msgctxt "@label" -msgid "Type" -msgstr "Тип" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 -msgctxt "@label" -msgid "Firmware version" -msgstr "Версия прошивки" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 -msgctxt "@label" -msgid "Address" -msgstr "Адрес" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Данный принтер не настроен для управления группой принтеров." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Данный принтер управляет группой из %1 принтера (-ов)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "Принтер по этому адресу ещё не отвечал." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 -msgctxt "@action:button" -msgid "Connect" -msgstr "Подключить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Недействительный IP-адрес" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Введите действительный IP-адрес." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Адрес принтера" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Введите IP-адрес принтера в сети." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Изменения конфигурации" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 -msgctxt "@action:button" -msgid "Override" -msgstr "Переопределить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "Для назначенного принтера %1 требуется следующее изменение конфигурации:" -msgstr[1] "Для назначенного принтера %1 требуются следующие изменения конфигурации:" -msgstr[2] "Для назначенного принтера %1 требуются следующие изменения конфигурации:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "Принтер %1 назначен, однако в задании указана неизвестная конфигурация материала." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Изменить материал %1 с %2 на %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Загрузите %3 как материал %1 (переопределение этого действия невозможно)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Изменить экструдер %1 с %2 на %3." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Заменить рабочий стол на %1 (переопределение этого действия невозможно)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "При переопределении к имеющейся конфигурации принтера будут применены указанные настройки. Это может привести к ошибке печати." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:178 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:175 -msgctxt "@label" -msgid "Glass" -msgstr "Стекло" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154 -msgctxt "@label" -msgid "Aluminum" -msgstr "Алюминий" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Переместить в начало" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Удалить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:284 -msgctxt "@label" -msgid "Resume" -msgstr "Продолжить" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Приостановка..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Возобновляется..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:288 -msgctxt "@label" -msgid "Pause" -msgstr "Пауза" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Прерывается..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Прервать" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:142 -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 в начало очереди?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Переместить задание печати в начало очереди" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:151 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "Вы уверены, что хотите удалить %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Удалить задание печати" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:160 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "Вы уверены, что хотите прервать %1?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Прервать печать" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Управление принтером" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:239 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Для удаленного управления очередью необходимо обновить программное обеспечение принтера." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:275 -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." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Загрузка..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Недоступен" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Недостижимо" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347 -msgctxt "@label:status" -msgid "Idle" -msgstr "Простой" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Подготовка..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Printing" -msgstr "Печать" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397 -msgctxt "@label" -msgid "Untitled" -msgstr "Без имени" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:412 -msgctxt "@label" -msgid "Anonymous" -msgstr "Анонимн" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:433 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Необходимо внести изменения конфигурации" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:447 -msgctxt "@action:button" -msgid "Details" -msgstr "Подробности" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Недоступный принтер" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 -msgctxt "@label" -msgid "First available" -msgstr "Первое доступное" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Прервано" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 -msgctxt "@label:status" -msgid "Finished" -msgstr "Завершено" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Прерывается..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Failed" -msgstr "Сбой" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Приостановка..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Paused" -msgstr "Приостановлено" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Возобновляется..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Action required" -msgstr "Необходимое действие" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Завершение %1 в %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 -msgctxt "@label" -msgid "Queued" -msgstr "Запланировано" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Управление через браузер" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:90 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "В очереди нет заданий печати. Выполните нарезку и отправьте задание." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:98 -msgctxt "@label" -msgid "Print jobs" -msgstr "Задания печати" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107 -msgctxt "@label" -msgid "Total print time" -msgstr "Общее время печати" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116 -msgctxt "@label" -msgid "Waiting for" -msgstr "Ожидание" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Печать через сеть" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 -msgctxt "@action:button" -msgid "Print" -msgstr "Печать" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 -msgctxt "@label" -msgid "Printer selection" -msgstr "Выбор принтера" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Предоставляет дополнительные возможности для принтеров UltiMaker (такие как мастер выравнивания стола, выбора обновления и так далее)" + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Действия с принтерами UltiMaker" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Обновляет настройки Cura 2.1 до Cura 2.2." + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Обновление версии 2.1 до 2.2" + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Обновляет настройки Cura 2.2 до Cura 2.4." + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Обновление версии 2.2 до 2.4" + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Обновляет настройки Cura 2.5 до Cura 2.6." + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Обновление версии 2.5 до 2.6" + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Обновляет настройки Cura 2.6 до Cura 2.7." + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Обновление версии 2.6 до 2.7" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Обновляет настройки Cura 2.7 до Cura 3.0." + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Обновление версии 2.7 до 3.0" + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Обновление настроек Cura 3.0 до Cura 3.1." + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Обновление версии 3.0 до 3.1" + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Обновляет настройки Cura 3.2 до Cura 3.3." + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Обновление версии 3.2 до 3.3" + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Обновляет настройки Cura 3.3 до Cura 3.4." + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Обновление версии 3.3 до 3.4" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Обновляет настройки Cura 3.4 до Cura 3.5." + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Обновление версии 3.4 до 3.5" + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Обновляет конфигурации Cura 3.5 до Cura 4.0." + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Обновление версии 3.5 до 4.0" + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Обновляет конфигурации Cura 4.0 до Cura 4.1." + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Обновление версии 4.0 до 4.1" + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Обновляет конфигурации Cura 4.11 до Cura 4.12." + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Обновление версии 4.11 до 4.12" + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Обновляет конфигурации Cura 4.13 до Cura 5.0." + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Обновление версии 4.13 до 5.0" + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Обновляет конфигурации Cura 4.1 до Cura 4.2." + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Обновление версии 4.1 до 4.2" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Обновляет конфигурации Cura 4.2 до Cura 4.3." + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Обновление версии 4.2 до 4.3" + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Обновляет конфигурации Cura 4.3 до Cura 4.4." + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Обновление версии 4.3 до 4.4" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Обновляет конфигурации Cura 4.4 до Cura 4.5." + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Обновление версии 4.4 до 4.5" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Обновляет конфигурации Cura 4.5 до Cura 4.6." + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Обновление версии 4.5 до 4.6" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Обновляет конфигурацию Cura 4.6.0 до Cura 4.6.2." + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Обновление версии с 4.6.0 до 4.6.2" + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Обновляет конфигурацию Cura 4.6.2 до Cura 4.7." + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Обновление версии с 4.6.2 до 4.7" + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Обновляет конфигурации Cura 4.7 до Cura 4.8." + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Обновление версии 4.7 до 4.8" + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Обновляет конфигурации Cura 4.8 до Cura 4.9." + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Обновление версии 4.8 до 4.9" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Обновляет конфигурации Cura 4.9 до Cura 4.10." + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Обновление версии 4.9 до 4.10" + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Обновляет настройки Cura 5.2 до Cura 5.3." + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Обновление версии 5.2 до 5.3" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "" + +#: plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "Файл X3D" + +#: plugins/X3DReader/plugin.json +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Предоставляет поддержку для чтения X3D файлов." + +#: plugins/X3DReader/plugin.json +msgctxt "name" +msgid "X3D Reader" +msgstr "Чтение X3D" + +#: plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Просмотр в рентгене" + +#: plugins/XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Предоставляет рентгеновский вид." + +#: plugins/XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Просмотр в рентгене" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Профили материалов" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Предоставляет возможности по чтению и записи профилей материалов в виде XML." + +#: resources/qml/Account/AccountWidget.qml:24 msgctxt "@action:button" msgid "Sign in" msgstr "Войти" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: resources/qml/Account/GeneralOperations.qml:19 +#: resources/qml/WelcomePages/CloudContent.qml:64 msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Войдите на платформу Ultimaker" +msgid "Sign in to the UltiMaker platform" +msgstr "Войдите на платформу UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 +#: resources/qml/Account/GeneralOperations.qml:39 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" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" msgstr "" "- Добавляйте настройки материалов и плагины из Marketplace \n" " - Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов \n" " - Делитесь идеями и получайте помощь от 48 000 пользователей в сообществе Ultimaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 +#: resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "Создайте бесплатную учетную запись Ultimaker" +msgid "Create a free UltiMaker account" +msgstr "Создайте бесплатную учетную запись UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 +#: resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "Проверка..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 +#: resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "Учетная запись синхронизирована" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 +#: resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "Что-то пошло не так..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 +#: resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "Установить ожидающие обновления" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 +#: resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "Проверить наличие обновлений учетной записи" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +#: resources/qml/Account/UserOperations.qml:78 msgctxt "@label The argument is a timestamp" msgid "Last update: %1" msgstr "Последнее обновление: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +#: resources/qml/Account/UserOperations.qml:107 msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Учетная запись Ultimaker" +msgid "UltiMaker Account" +msgstr "Учетная запись UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +#: resources/qml/Account/UserOperations.qml:126 msgctxt "@button" msgid "Sign Out" msgstr "Выйти" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" msgid "No time estimation available" msgstr "Оценка времени недоступна" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:77 msgctxt "@label" msgid "No cost estimation available" msgstr "Оценка расходов недоступна" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:127 msgctxt "@button" msgid "Preview" msgstr "Предварительный просмотр" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" msgid "Time estimation" msgstr "Оценка времени" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 +#: resources/qml/ActionPanel/PrintJobInformation.qml:107 msgctxt "@label" msgid "Material estimation" msgstr "Оценка материала" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:156 +#: resources/qml/ActionPanel/PrintJobInformation.qml:156 msgctxt "@label m for meter" msgid "%1m" msgstr "%1 м" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:157 +#: resources/qml/ActionPanel/PrintJobInformation.qml:157 msgctxt "@label g for grams" msgid "%1g" msgstr "%1 г" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:54 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Нарезка на слои..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:78 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:78 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "Невозможно нарезать" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Processing" msgstr "Обработка" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Slice" msgstr "Нарезка на слои" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:115 msgctxt "@label" msgid "Start the slicing process" msgstr "Запустить нарезку на слои" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:132 msgctxt "@button" msgid "Cancel" msgstr "Отмена" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 +#: resources/qml/Actions.qml:81 msgctxt "@action:inmenu" msgid "Show Online Troubleshooting" msgstr "Показать сетевое руководство по устранению неполадок" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 +#: resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "Полный экран" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 +#: resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "Выйти из полноэкранного режима" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 +#: resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "Отмена" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 +#: resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "Возврат" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 +#: resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "Выход" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 +#: resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "Трехмерный вид" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 +#: resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Вид спереди" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 +#: resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "Вид сверху" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 +#: resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "Вид снизу" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 +#: resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "Вид слева" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 +#: resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "Вид справа" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 +#: resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Настроить Cura..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 +#: resources/qml/Actions.qml:197 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "Добавить принтер..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 +#: resources/qml/Actions.qml:203 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "Управление принтерами..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 +#: resources/qml/Actions.qml:210 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Управление материалами..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:216 -msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate." +#: resources/qml/Actions.qml:218 +msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." msgid "Add more materials from Marketplace" msgstr "Добавить больше материалов из Магазина" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 +#: resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "Обновить профиль текущими параметрами" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 +#: resources/qml/Actions.qml:233 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "Сбросить текущие параметры" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 +#: resources/qml/Actions.qml:245 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "Создать профиль из текущих параметров..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 +#: resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "Управление профилями..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 +#: resources/qml/Actions.qml:259 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Показать онлайн документацию" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 +#: resources/qml/Actions.qml:267 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "Отправить отчёт об ошибке" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 +#: resources/qml/Actions.qml:275 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "Что нового" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 +#: resources/qml/Actions.qml:289 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "О Cura..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 +#: resources/qml/Actions.qml:296 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "Удалить выбранное" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 +#: resources/qml/Actions.qml:306 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "Центрировать выбранное" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 +#: resources/qml/Actions.qml:315 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "Размножить выбранное" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 +#: resources/qml/Actions.qml:324 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Удалить модель" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 +#: resources/qml/Actions.qml:332 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Поместить модель по центру" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 +#: resources/qml/Actions.qml:338 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "Сгруппировать модели" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 +#: resources/qml/Actions.qml:358 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Разгруппировать модели" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 +#: resources/qml/Actions.qml:368 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "Объединить модели" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 +#: resources/qml/Actions.qml:378 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "Дублировать модель..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 +#: resources/qml/Actions.qml:385 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "Выбрать все модели" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 +#: resources/qml/Actions.qml:395 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "Очистить стол" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 +#: resources/qml/Actions.qml:405 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "Перезагрузить все модели" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 +#: resources/qml/Actions.qml:414 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Выровнять все модели" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 +#: resources/qml/Actions.qml:422 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Выровнять выбранные" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 +#: resources/qml/Actions.qml:429 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Сбросить позиции всех моделей" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 +#: resources/qml/Actions.qml:436 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "Сбросить преобразования всех моделей" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 +#: resources/qml/Actions.qml:445 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "Открыть файл(ы)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 +#: resources/qml/Actions.qml:455 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "Новый проект..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 +#: resources/qml/Actions.qml:462 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Показать конфигурационный каталог" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 +#: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Видимость параметров..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 msgctxt "@label:button" msgid "My printers" msgstr "Мои принтеры" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 msgctxt "@tooltip:button" msgid "Monitor printers in Ultimaker Digital Factory." msgstr "Следите за своими принтерами в Ultimaker Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Создавайте проекты печати в электронной библиотеке." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 msgctxt "@label:button" msgid "Print jobs" msgstr "Задания печати" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 msgctxt "@tooltip:button" msgid "Monitor print jobs and reprint from your print history." msgstr "Отслеживайте задания печати и запускайте их повторно из истории печати." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." -msgstr "Расширяйте возможности Ultimaker Cura за счет плагинов и профилей материалов." +msgid "Extend UltiMaker Cura with plugins and material profiles." +msgstr "Расширяйте возможности UltiMaker Cura за счет плагинов и профилей материалов." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." -msgstr "Пройдите электронное обучение Ultimaker и станьте экспертом в области 3D-печати." +msgid "Become a 3D printing expert with UltiMaker e-learning." +msgstr "Пройдите электронное обучение UltiMaker и станьте экспертом в области 3D-печати." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Поддержка Ultimaker" +msgid "UltiMaker support" +msgstr "Поддержка UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." -msgstr "Узнайте, как начать работу с Ultimaker Cura." +msgid "Learn how to get started with UltiMaker Cura." +msgstr "Узнайте, как начать работу с UltiMaker Cura." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 msgctxt "@label:button" msgid "Ask a question" msgstr "Задать вопрос" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Посоветуйтесь со специалистами в сообществе Ultimaker." +msgid "Consult the UltiMaker Community." +msgstr "Посоветуйтесь со специалистами в сообществе UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 msgctxt "@label:button" msgid "Report a bug" msgstr "Сообщить об ошибке" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Сообщите разработчикам о неполадках." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Посетите веб-сайт Ultimaker." +msgid "Visit the UltiMaker website." +msgstr "Посетите веб-сайт UltiMaker." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 +#: resources/qml/ColorDialog.qml:110 msgctxt "@label" msgid "Hex" msgstr "Шестигранный" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 +#: resources/qml/Cura.qml:256 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "Этот пакет будет установлен после перезапуска." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +#: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14 msgctxt "@title:tab" msgid "General" msgstr "Общее" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +#: resources/qml/Cura.qml:470 msgctxt "@title:tab" msgid "Settings" msgstr "Параметры" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:468 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:17 +#: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17 msgctxt "@title:tab" msgid "Printers" msgstr "Принтеры" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:470 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70 +#: resources/qml/Cura.qml:474 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:70 msgctxt "@title:tab" msgid "Materials" msgstr "Материалы" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:472 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:57 +#: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57 msgctxt "@title:tab" msgid "Profiles" msgstr "Профили" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +#: resources/qml/Cura.qml:581 msgctxt "@title:window %1 is the application name" msgid "Closing %1" msgstr "Закрытие %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:590 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:599 +#: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591 msgctxt "@label %1 is the application name" msgid "Are you sure you want to exit %1?" msgstr "Вы уверены, что хотите выйти из %1?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:637 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 +#: resources/qml/Cura.qml:629 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 msgctxt "@title:window" msgid "Open file(s)" msgstr "Открыть файл(ы)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +#: resources/qml/Cura.qml:734 msgctxt "@window:title" msgid "Install Package" msgstr "Установить пакет" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +#: resources/qml/Cura.qml:741 msgctxt "@title:window" msgid "Open File(s)" msgstr "Открыть файл(ы)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +#: resources/qml/Cura.qml:743 msgctxt "@text:window" msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." msgstr "Среди выбранных файлов мы нашли несколько файлов с G-кодом. Вы можете открыть только один файл за раз. Измените свой выбор, пожалуйста." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:831 +#: resources/qml/Cura.qml:828 msgctxt "@title:window" msgid "Add Printer" msgstr "Добавление принтера" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +#: resources/qml/Cura.qml:836 msgctxt "@title:window" msgid "What's New" msgstr "Что нового" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: resources/qml/Cura.qml:890 +msgctxt "@title:window" +msgid "Save Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:891 +msgctxt "@textfield:placeholder" +msgid "New Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:892 +msgctxt "@info" +msgid "Custom profile name:" +msgstr "" + +#: resources/qml/Cura.qml:909 +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." + +#: resources/qml/Cura.qml:917 +msgctxt "@action:button" +msgid "Learn more about Cura print profiles" +msgstr "Подробнее о профилях печати Cura" + +#: resources/qml/Cura.qml:926 +msgctxt "@button" +msgid "Save new profile" +msgstr "" + +#: resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "О программе %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: resources/qml/Dialogs/AboutDialog.qml:59 msgctxt "@label" msgid "version: %1" msgstr "версия: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: resources/qml/Dialogs/AboutDialog.qml:74 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Полное решение для 3D печати методом наплавления материала." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: resources/qml/Dialogs/AboutDialog.qml:87 msgctxt "@info:credit" msgid "" -"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura is developed by UltiMaker in cooperation with the community.\n" "Cura proudly uses the following open source projects:" msgstr "" -"Cura разработана компанией Ultimaker B.V. совместно с сообществом.\n" +"Cura разработана компанией UltiMaker B.V. совместно с сообществом.\n" "Cura использует следующие проекты с открытым исходным кодом:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label Description for application component" msgid "Graphical user interface" msgstr "Графический интерфейс пользователя" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label Description for application component" msgid "Application framework" msgstr "Фреймворк приложения" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label Description for application component" msgid "G-code generator" msgstr "Генератор G-кода" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label Description for application component" msgid "Interprocess communication library" msgstr "Библиотека межпроцессного взаимодействия" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:142 +msgctxt "@label Description for application component" msgid "Python bindings for libnest2d" msgstr "Интерфейс Python для libnest2d" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label Description for application component" msgid "Polygon packing library, developed by Prusa Research" msgstr "Библиотека упаковки полигонов, разработанная Prusa Research" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:144 +msgctxt "@label Description for application component" msgid "Support library for handling 3MF files" msgstr "Вспомогательная библиотека для работы с 3MF файлами" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:145 +msgctxt "@label Description for application component" msgid "Support library for file metadata and streaming" msgstr "Вспомогательная библиотека для метаданных файла и потоковой передачи" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Язык программирования" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label Description for application dependency" msgid "GUI framework" msgstr "Фреймворк GUI" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label Description for application dependency" msgid "GUI framework bindings" msgstr "Фреймворк GUI, интерфейс" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label Description for application dependency" msgid "C/C++ Binding library" msgstr "C/C++ библиотека интерфейса" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:152 +msgctxt "@label Description for application dependency" msgid "Data interchange format" msgstr "Формат обмена данными" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "Font" msgstr "Шрифт" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label Description for application dependency" msgid "Polygon clipping library" msgstr "Библиотека обрезки полигонов" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label Description for application dependency" msgid "JSON parser" -msgstr "" +msgstr "Парсер JSON" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:158 +msgctxt "@label Description for application dependency" msgid "Utility functions, including an image loader" -msgstr "" +msgstr "Вспомогательные функции, включая загрузчик изображений" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:159 +msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" -msgstr "" +msgstr "Вспомогательные функции, включая генерацию диаграмм Вороного" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:162 +#: resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label Description for application dependency" msgid "Root Certificates for validating SSL trustworthiness" -msgstr "" +msgstr "Корневые сертификаты для проверки надежности SSL" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label Description for application dependency" msgid "Compatibility between Python 2 and 3" -msgstr "" +msgstr "Совместимость между Python 2 и 3" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label Description for application dependency" msgid "Support library for system keyring access" msgstr "Вспомогательная библиотека для доступа к набору ключей системы" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label Description for application dependency" msgid "Support library for faster math" msgstr "Вспомогательная библиотека для быстрых расчётов" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label Description for application dependency" msgid "Support library for handling STL files" msgstr "Вспомогательная библиотека для работы с STL файлами" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label Description for application dependency" msgid "Python bindings for Clipper" msgstr "Привязки Python для Clipper" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Библиотека последовательного интерфейса" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label Description for application dependency" msgid "Support library for scientific computing" msgstr "Вспомогательная библиотека для научных вычислений" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 -msgctxt "@Label" +#: resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@Label Description for application dependency" msgid "Python Error tracking library" msgstr "Библиотека отслеживания ошибок Python" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:172 +msgctxt "@label Description for application dependency" msgid "Support library for handling triangular meshes" msgstr "Вспомогательная библиотека для работы с треугольными сетками" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:173 +msgctxt "@label Description for application dependency" msgid "ZeroConf discovery library" msgstr "Библиотека ZeroConf" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label Description for development tool" msgid "Universal build system configuration" -msgstr "" +msgstr "Конфигурация универсальной системы сборки" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label Description for development tool" msgid "Dependency and package manager" -msgstr "" +msgstr "Менеджер зависимостей и пакетов" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label Description for development tool" msgid "Packaging Python-applications" -msgstr "" +msgstr "Упаковка Python-приложений" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:179 +msgctxt "@label Description for development tool" msgid "Linux cross-distribution application deployment" msgstr "Развертывание приложений для различных дистрибутивов Linux" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:180 +msgctxt "@label Description for development tool" msgid "Generating Windows installers" -msgstr "" +msgstr "Генерация установщиков для Windows" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 msgctxt "@title:window" msgid "Open project file" msgstr "Открыть файл проекта" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84 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. Следует открыть его как проект или просто импортировать из него модели?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:90 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91 msgctxt "@text:window" msgid "Remember my choice" msgstr "Запомнить мой выбор" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105 msgctxt "@action:button" msgid "Open as project" msgstr "Открыть как проект" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110 msgctxt "@action:button" msgid "Import models" msgstr "Импортировать модели" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:17 +msgctxt "@title:window" +msgid "Select Printer" +msgstr "Выберите принтер" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:54 +msgctxt "@title:label" +msgid "Compatible Printers" +msgstr "Совместимые принтеры" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:110 +msgctxt "@description" +msgid "No compatible printers, that are currently online, were found." +msgstr "В настоящее время в сети нет совместимых принтеров." + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Сбросить или сохранить изменения" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:49 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64 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 "" @@ -4190,187 +4884,194 @@ msgstr "" "Сохранить измененные настройки после переключения профилей?\n" "Изменения можно отменить и загрузить настройки по умолчанию из \"%1\"." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90 msgctxt "@title:column" msgid "Profile settings" msgstr "Параметры профиля" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92 msgctxt "@title:column" msgid "Current changes" msgstr "Текущие изменения" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:799 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123 +#: resources/qml/Preferences/GeneralPage.qml:820 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Всегда спрашивать меня" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Сбросить и никогда больше не спрашивать" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Сохранить и никогда больше не спрашивать" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157 msgctxt "@action:button" msgid "Discard changes" msgstr "Отменить изменения" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164 msgctxt "@action:button" msgid "Keep changes" msgstr "Сохранить изменения" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171 +msgctxt "@action:button" +msgid "Save as new custom profile" +msgstr "" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178 +msgctxt "@action:button" +msgid "Save changes" +msgstr "" + +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 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 "Мы нашли один или более проектных файлов среди выбранных вами. Вы можете открыть только один файл проекта. Мы предлагаем импортировать только модели их этих файлов. Желаете продолжить?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 msgctxt "@action:button" msgid "Import all as models" msgstr "Импортировать всё как модели" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 +#: resources/qml/Dialogs/RenameDialog.qml:23 +msgctxt "@title:window" +msgid "Rename" +msgstr "Переименовать" + +#: resources/qml/Dialogs/RenameDialog.qml:24 +msgctxt "@info" +msgid "Please provide a new name." +msgstr "Укажите новое имя." + +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 msgctxt "@title:window" msgid "Save Project" msgstr "Сохранить проект" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177 msgctxt "@action:label" msgid "Extruder %1" msgstr "Экструдер %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 и материал" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195 msgctxt "@action:label" msgid "Material" msgstr "Материал" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "Больше не показывать сводку по проекту" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298 msgctxt "@action:button" msgid "Save" msgstr "Сохранить" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -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" -msgstr[0] "Печатать выбранную модель с %1" -msgstr[1] "Печатать выбранные модели с %1" -msgstr[2] "Печатать выбранные модели с %1" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:93 +#: resources/qml/JobSpecs.qml:93 msgctxt "@text Print job name" msgid "Untitled" msgstr "Без имени" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 +#: resources/qml/MainWindow/ApplicationMenu.qml:63 +#: resources/qml/Menus/SettingsMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&Параметры" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 +#: resources/qml/MainWindow/ApplicationMenu.qml:87 msgctxt "@title:window" msgid "New project" msgstr "Новый проект" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88 +#: resources/qml/MainWindow/ApplicationMenu.qml:88 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 "Вы действительно желаете начать новый проект? Это действие очистит область печати и сбросит все несохранённые настройки." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135 +#: resources/qml/MainWindow/MainWindowHeader.qml:135 msgctxt "@action:button" msgid "Marketplace" msgstr "Магазин" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +#: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 msgctxt "@header" msgid "Configurations" msgstr "Конфигурации" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 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 и загрузите подходящий профиль материала." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 msgctxt "@label" msgid "Marketplace" msgstr "Магазин" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 msgctxt "@label" msgid "Loading available configurations from the printer..." msgstr "Загрузка доступных конфигураций из принтера..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 msgctxt "@label" msgid "The configurations are not available because the printer is disconnected." msgstr "Конфигурации недоступны, поскольку принтер отключен." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 msgctxt "@tooltip" msgid "The configuration of this extruder is not allowed, and prohibits slicing." msgstr "Конфигурация этого экструдера не разрешается и запрещает нарезку на слои." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 msgctxt "@tooltip" msgid "There are no profiles matching the configuration of this extruder." msgstr "Нет профилей, соответствующих конфигурации этого экструдера." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 msgctxt "@label" msgid "Select configuration" msgstr "Выберите конфигурации" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 msgctxt "@label" msgid "Configurations" msgstr "Конфигурации" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 msgctxt "@header" msgid "Custom" msgstr "Свое" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:62 -msgctxt "@label" -msgid "Printer" -msgstr "Принтер" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:217 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173 msgctxt "@label" msgid "Enabled" msgstr "Включено" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222 msgctxt "@label" msgid "Material" msgstr "Материал" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348 msgctxt "@label" msgid "Use glue for better adhesion with this material combination." msgstr "Использовать клей для лучшего прилипания с этой комбинацией материалов." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:29 +#: resources/qml/Menus/ContextMenu.qml:29 msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -4378,7 +5079,7 @@ msgstr[0] "Печать выбранной модели:" msgstr[1] "Печать выбранных моделей:" msgstr[2] "Печать выбранных моделей:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:92 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" @@ -4386,227 +5087,227 @@ msgstr[0] "Размножить выбранную модель" msgstr[1] "Размножить выбранные модели" msgstr[2] "Размножить выбранные модели" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:123 msgctxt "@label" msgid "Number of Copies" msgstr "Количество копий" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/EditMenu.qml:12 +#: resources/qml/Menus/EditMenu.qml:12 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "Правка" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ExtensionMenu.qml:13 +#: resources/qml/Menus/ExtensionMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "Расширения" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 +#: resources/qml/Menus/FileMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "Файл" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:45 +#: resources/qml/Menus/FileMenu.qml:45 msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Сохранить проект..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:78 +#: resources/qml/Menus/FileMenu.qml:78 msgctxt "@title:menu menubar:file" msgid "&Export..." msgstr "&Экспорт..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:89 +#: resources/qml/Menus/FileMenu.qml:89 msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Экспорт выбранного..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/HelpMenu.qml:14 +#: resources/qml/Menus/HelpMenu.qml:14 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "Справка" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +#: resources/qml/Menus/MaterialMenu.qml:13 msgctxt "@label:category menu label" msgid "Material" msgstr "Материал" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:53 +#: resources/qml/Menus/MaterialMenu.qml:53 msgctxt "@label:category menu label" msgid "Favorites" msgstr "Избранные" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:78 +#: resources/qml/Menus/MaterialMenu.qml:78 msgctxt "@label:category menu label" msgid "Generic" msgstr "Универсальные" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +#: resources/qml/Menus/OpenFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open File(s)..." msgstr "Открыть файл(ы)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PreferencesMenu.qml:21 +#: resources/qml/Menus/PreferencesMenu.qml:21 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "Настройки" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:13 +#: resources/qml/Menus/PrinterMenu.qml:13 msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "Принтер" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:17 +#: resources/qml/Menus/PrinterMenu.qml:17 msgctxt "@label:category menu label" msgid "Network enabled printers" msgstr "Подключенные к сети принтеры" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:50 +#: resources/qml/Menus/PrinterMenu.qml:50 msgctxt "@label:category menu label" msgid "Local printers" msgstr "Локальные принтеры" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +#: resources/qml/Menus/RecentFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open &Recent" msgstr "Открыть недавние" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +#: resources/qml/Menus/SaveProjectMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Save Project..." msgstr "Сохранить проект..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:34 -msgctxt "@title:menu" -msgid "&Material" -msgstr "Материал" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:49 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Установить как активный экструдер" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:55 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Включить экструдер" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:63 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Отключить экструдер" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 msgctxt "@action:inmenu" msgid "Visible Settings" msgstr "Видимые параметры" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 msgctxt "@action:inmenu" msgid "Collapse All Categories" msgstr "Свернуть все категории" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 msgctxt "@action:inmenu" msgid "Manage Setting Visibility..." msgstr "Управление видимостью настроек..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:13 +#: resources/qml/Menus/SettingsMenu.qml:34 +msgctxt "@title:menu" +msgid "&Material" +msgstr "Материал" + +#: resources/qml/Menus/SettingsMenu.qml:49 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Установить как активный экструдер" + +#: resources/qml/Menus/SettingsMenu.qml:55 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Включить экструдер" + +#: resources/qml/Menus/SettingsMenu.qml:63 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Отключить экструдер" + +#: resources/qml/Menus/ViewMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&View" msgstr "Вид" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:17 +#: resources/qml/Menus/ViewMenu.qml:17 msgctxt "@action:inmenu menubar:view" msgid "&Camera position" msgstr "Положение камеры" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:30 +#: resources/qml/Menus/ViewMenu.qml:30 msgctxt "@action:inmenu menubar:view" msgid "Camera view" msgstr "Вид камеры" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 +#: resources/qml/Menus/ViewMenu.qml:48 msgctxt "@action:inmenu menubar:view" msgid "Perspective" msgstr "Перспективная" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +#: resources/qml/Menus/ViewMenu.qml:59 msgctxt "@action:inmenu menubar:view" msgid "Orthographic" msgstr "Ортографическая" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:115 +#: resources/qml/MonitorButton.qml:115 msgctxt "@label:MonitorStatus" msgid "Not connected to a printer" msgstr "Не подключен к принтеру" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 +#: resources/qml/MonitorButton.qml:119 msgctxt "@label:MonitorStatus" msgid "Printer does not accept commands" msgstr "Принтер не принимает команды" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:129 +#: resources/qml/MonitorButton.qml:129 msgctxt "@label:MonitorStatus" msgid "In maintenance. Please check the printer" msgstr "В режиме обслуживания. Пожалуйста, проверьте принтер" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:140 +#: resources/qml/MonitorButton.qml:140 msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Потеряно соединение с принтером" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +#: resources/qml/MonitorButton.qml:142 msgctxt "@label:MonitorStatus" msgid "Printing..." msgstr "Печать..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +#: resources/qml/MonitorButton.qml:145 msgctxt "@label:MonitorStatus" msgid "Paused" msgstr "Приостановлен" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +#: resources/qml/MonitorButton.qml:148 msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Подготовка..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +#: resources/qml/MonitorButton.qml:150 msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Пожалуйста, удалите напечатанное" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +#: resources/qml/MonitorButton.qml:318 msgctxt "@label" msgid "Abort Print" msgstr "Прервать печать" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:327 +#: resources/qml/MonitorButton.qml:327 msgctxt "@label" msgid "Are you sure you want to abort the print?" msgstr "Вы уверены, что желаете прервать печать?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:109 +#: resources/qml/ObjectItemButton.qml:109 msgctxt "@label" msgid "Is printed as support." msgstr "Печатается как поддержка." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:112 +#: resources/qml/ObjectItemButton.qml:112 msgctxt "@label" msgid "Other models overlapping with this model are modified." msgstr "Другие модели, имеющие перекрытия с этой моделью, изменены." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:115 +#: resources/qml/ObjectItemButton.qml:115 msgctxt "@label" msgid "Infill overlapping with this model is modified." msgstr "Изменено заполнение перекрытия с этой моделью." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:118 +#: resources/qml/ObjectItemButton.qml:118 msgctxt "@label" msgid "Overlaps with this model are not supported." msgstr "Перекрытия с этой моделью не поддерживаются." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:125 +#: resources/qml/ObjectItemButton.qml:125 msgctxt "@label %1 is the number of settings it overrides." msgid "Overrides %1 setting." msgid_plural "Overrides %1 settings." @@ -4614,824 +5315,822 @@ msgstr[0] "Переопределяет %1 настройку." msgstr[1] "Переопределяет %1 настройки." msgstr[2] "Переопределяет %1 настроек." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 +#: resources/qml/ObjectSelector.qml:59 msgctxt "@label" msgid "Object list" msgstr "Список объектов" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:131 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:24 +#: resources/qml/Preferences/GeneralPage.qml:134 +#: resources/qml/Preferences/SettingVisibilityPage.qml:24 msgctxt "@action:button" msgid "Defaults" msgstr "Стандартные" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +#: resources/qml/Preferences/GeneralPage.qml:172 msgctxt "@label" msgid "Interface" msgstr "Интерфейс" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +#: resources/qml/Preferences/GeneralPage.qml:215 msgctxt "@heading" msgid "-- incomplete --" msgstr "-- неполный --" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +#: resources/qml/Preferences/GeneralPage.qml:261 msgctxt "@label" msgid "Currency:" msgstr "Валюта:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:274 +#: resources/qml/Preferences/GeneralPage.qml:277 msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." msgid "Theme*:" msgstr "Тема*:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +#: resources/qml/Preferences/GeneralPage.qml:323 msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Нарезать автоматически при изменении настроек." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +#: resources/qml/Preferences/GeneralPage.qml:331 msgctxt "@option:check" msgid "Slice automatically" msgstr "Нарезать автоматически" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:337 +#: resources/qml/Preferences/GeneralPage.qml:340 +msgctxt "@info:tooltip" +msgid "Show an icon and notifications in the system notification area." +msgstr "Показать значок и уведомления в области уведомлений системы." + +#: resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Add icon to system tray *" +msgstr "Добавить значок в системный трей*" + +#: resources/qml/Preferences/GeneralPage.qml:357 msgctxt "@label" msgid "*You will need to restart the application for these changes to have effect." msgstr "*Для применения данных изменений вам потребуется перезапустить приложение." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +#: resources/qml/Preferences/GeneralPage.qml:373 msgctxt "@label" msgid "Viewport behavior" msgstr "Поведение окна" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +#: resources/qml/Preferences/GeneralPage.qml:381 msgctxt "@info:tooltip" msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." msgstr "Подсвечивать красным области модели, требующие поддержек. Без поддержек эти области не будут напечатаны правильно." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:369 +#: resources/qml/Preferences/GeneralPage.qml:390 msgctxt "@option:check" msgid "Display overhang" msgstr "Отобразить нависания" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +#: resources/qml/Preferences/GeneralPage.qml:400 msgctxt "@info:tooltip" msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." msgstr "Отметьте отсутствующие или лишние поверхности модели с помощью предупреждающих знаков. В путях инструментов часто будут отсутствовать детали предполагаемой геометрии." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:388 +#: resources/qml/Preferences/GeneralPage.qml:409 msgctxt "@option:check" msgid "Display model errors" msgstr "Показывать ошибки модели" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +#: resources/qml/Preferences/GeneralPage.qml:417 msgctxt "@info:tooltip" msgid "Moves the camera so the model is in the center of the view when a model is selected" msgstr "Перемещать камеру так, чтобы выбранная модель помещалась в центр экрана" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:401 +#: resources/qml/Preferences/GeneralPage.qml:422 msgctxt "@action:button" msgid "Center camera when item is selected" msgstr "Центрировать камеру на выбранном объекте" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +#: resources/qml/Preferences/GeneralPage.qml:432 msgctxt "@info:tooltip" msgid "Should the default zoom behavior of cura be inverted?" msgstr "Следует ли инвертировать стандартный способ увеличения в Cura?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:416 +#: resources/qml/Preferences/GeneralPage.qml:437 msgctxt "@action:button" msgid "Invert the direction of camera zoom." msgstr "Инвертировать направление увеличения камеры." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Should zooming move in the direction of the mouse?" msgstr "Увеличивать по мере движения мышкой?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Zooming towards the mouse is not supported in the orthographic perspective." msgstr "В ортогональной проекции изменение масштаба мышью не поддерживается." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:437 +#: resources/qml/Preferences/GeneralPage.qml:458 msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "Увеличивать по движению мышки" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +#: resources/qml/Preferences/GeneralPage.qml:484 msgctxt "@info:tooltip" msgid "Should models on the platform be moved so that they no longer intersect?" msgstr "Следует ли размещать модели на столе так, чтобы они больше не пересекались?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:468 +#: resources/qml/Preferences/GeneralPage.qml:489 msgctxt "@option:check" msgid "Ensure models are kept apart" msgstr "Удостовериться, что модели размещены рядом" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +#: resources/qml/Preferences/GeneralPage.qml:498 msgctxt "@info:tooltip" msgid "Should models on the platform be moved down to touch the build plate?" msgstr "Следует ли опустить модели на стол?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:482 +#: resources/qml/Preferences/GeneralPage.qml:503 msgctxt "@option:check" msgid "Automatically drop models to the build plate" msgstr "Автоматически опускать модели на стол" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +#: resources/qml/Preferences/GeneralPage.qml:515 msgctxt "@info:tooltip" msgid "Show caution message in g-code reader." msgstr "Показывать предупреждающее сообщение в средстве считывания G-кода." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503 +#: resources/qml/Preferences/GeneralPage.qml:524 msgctxt "@option:check" msgid "Caution message in g-code reader" msgstr "Предупреждающее сообщение в средстве считывания G-кода" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +#: resources/qml/Preferences/GeneralPage.qml:532 msgctxt "@info:tooltip" msgid "Should layer be forced into compatibility mode?" msgstr "Должен ли слой быть переведён в режим совместимости?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +#: resources/qml/Preferences/GeneralPage.qml:537 msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Просматривать слои в режиме совместимости (требуется перезапуск)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +#: resources/qml/Preferences/GeneralPage.qml:547 msgctxt "@info:tooltip" msgid "Should Cura open at the location it was closed?" msgstr "Открыть Cura на том месте, где вы остановились в прошлый раз?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:531 +#: resources/qml/Preferences/GeneralPage.qml:552 msgctxt "@option:check" msgid "Restore window position on start" msgstr "Восстановить положение окна при запуске" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +#: resources/qml/Preferences/GeneralPage.qml:562 msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Рендеринг камеры какого типа следует использовать?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +#: resources/qml/Preferences/GeneralPage.qml:569 msgctxt "@window:text" msgid "Camera rendering:" msgstr "Рендеринг камеры:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +#: resources/qml/Preferences/GeneralPage.qml:576 msgid "Perspective" msgstr "Перспективная" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +#: resources/qml/Preferences/GeneralPage.qml:577 msgid "Orthographic" msgstr "Ортографическая" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +#: resources/qml/Preferences/GeneralPage.qml:617 msgctxt "@label" msgid "Opening and saving files" msgstr "Открытие и сохранение файлов" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +#: resources/qml/Preferences/GeneralPage.qml:624 msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "Открывать файлы с компьютера и из внешних приложений в одном экземпляре Cura?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:608 +#: resources/qml/Preferences/GeneralPage.qml:629 msgctxt "@option:check" msgid "Use a single instance of Cura" msgstr "Использовать один экземпляр Cura" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +#: resources/qml/Preferences/GeneralPage.qml:640 msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Следует ли очищать печатную пластину перед загрузкой новой модели в единственный экземпляр Cura?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +#: resources/qml/Preferences/GeneralPage.qml:646 msgctxt "@option:check" msgid "Clear buildplate before loading model into the single instance" msgstr "Очистите печатную пластину перед загрузкой модели в единственный экземпляр" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 +#: resources/qml/Preferences/GeneralPage.qml:656 msgctxt "@info:tooltip" msgid "Should models be scaled to the build volume if they are too large?" msgstr "Масштабировать ли модели для размещения внутри печатаемого объёма, если они не влезают в него?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +#: resources/qml/Preferences/GeneralPage.qml:661 msgctxt "@option:check" msgid "Scale large models" msgstr "Масштабировать большие модели" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +#: resources/qml/Preferences/GeneralPage.qml:671 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 "Модель может показаться очень маленькой, если её размерность задана в метрах, а не миллиметрах. Следует ли масштабировать такие модели?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:655 +#: resources/qml/Preferences/GeneralPage.qml:676 msgctxt "@option:check" msgid "Scale extremely small models" msgstr "Масштабировать очень маленькие модели" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +#: resources/qml/Preferences/GeneralPage.qml:686 msgctxt "@info:tooltip" msgid "Should models be selected after they are loaded?" msgstr "Выбрать модели после их загрузки?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: resources/qml/Preferences/GeneralPage.qml:691 msgctxt "@option:check" msgid "Select models when loaded" msgstr "Выбрать модели при загрузке" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +#: resources/qml/Preferences/GeneralPage.qml:701 msgctxt "@info:tooltip" msgid "Should a prefix based on the printer name be added to the print job name automatically?" msgstr "Надо ли автоматически добавлять префикс, основанный на имени принтера, к названию задачи на печать?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:685 +#: resources/qml/Preferences/GeneralPage.qml:706 msgctxt "@option:check" msgid "Add machine prefix to job name" msgstr "Добавить префикс принтера к имени задачи" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +#: resources/qml/Preferences/GeneralPage.qml:716 msgctxt "@info:tooltip" msgid "Should a summary be shown when saving a project file?" msgstr "Показывать сводку при сохранении файла проекта?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: resources/qml/Preferences/GeneralPage.qml:720 msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Показывать сводку при сохранении проекта" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +#: resources/qml/Preferences/GeneralPage.qml:730 msgctxt "@info:tooltip" msgid "Default behavior when opening a project file" msgstr "Стандартное поведение при открытии файла проекта" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +#: resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@window:text" msgid "Default behavior when opening a project file: " msgstr "Стандартное поведение при открытии файла проекта: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +#: resources/qml/Preferences/GeneralPage.qml:753 msgctxt "@option:openProject" msgid "Always ask me this" msgstr "Всегда спрашивать меня" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: resources/qml/Preferences/GeneralPage.qml:754 msgctxt "@option:openProject" msgid "Always open as a project" msgstr "Всегда открывать как проект" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +#: resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:openProject" msgid "Always import models" msgstr "Всегда импортировать модели" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +#: resources/qml/Preferences/GeneralPage.qml:792 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 "При внесении изменений в профиль и переключении на другой, будет показан диалог, запрашивающий ваше решение о сохранении ваших изменений, или вы можете указать стандартное поведение и не показывать такой диалог." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:780 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:36 +#: resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46 msgctxt "@label" msgid "Profiles" msgstr "Профили" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +#: resources/qml/Preferences/GeneralPage.qml:806 msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Поведение по умолчанию для измененных значений настройки при переключении на другой профиль: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:800 +#: resources/qml/Preferences/GeneralPage.qml:821 msgctxt "@option:discardOrKeep" msgid "Always discard changed settings" msgstr "Всегда сбрасывать измененные настройки" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/Preferences/GeneralPage.qml:822 msgctxt "@option:discardOrKeep" msgid "Always transfer changed settings to new profile" msgstr "Всегда передавать измененные настройки новому профилю" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +#: resources/qml/Preferences/GeneralPage.qml:856 msgctxt "@label" msgid "Privacy" msgstr "Приватность" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +#: resources/qml/Preferences/GeneralPage.qml:862 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-адреса и никакая другая персональная информация не будет отправлена или сохранена." +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-адреса и никакая другая персональная информация не будет отправлена или сохранена." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +#: resources/qml/Preferences/GeneralPage.qml:867 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "Отправлять (анонимно) информацию о печати" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +#: resources/qml/Preferences/GeneralPage.qml:897 msgctxt "@label" msgid "Updates" msgstr "Обновления" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +#: resources/qml/Preferences/GeneralPage.qml:904 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "Должна ли Cura проверять обновления программы при старте?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:888 +#: resources/qml/Preferences/GeneralPage.qml:909 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Проверять обновления при старте" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +#: resources/qml/Preferences/GeneralPage.qml:925 msgctxt "@info:tooltip" msgid "When checking for updates, only check for stable releases." msgstr "При проверке обновлений проверяйте только стабильные версии." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:910 +#: resources/qml/Preferences/GeneralPage.qml:931 msgctxt "@option:radio" msgid "Stable releases only" msgstr "Только стабильные версии" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +#: resources/qml/Preferences/GeneralPage.qml:941 msgctxt "@info:tooltip" msgid "When checking for updates, check for both stable and for beta releases." msgstr "При проверке обновлений проверяйте как стабильные, так и бета-версии." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:926 +#: resources/qml/Preferences/GeneralPage.qml:947 msgctxt "@option:radio" msgid "Stable and Beta releases" msgstr "Стабильные и бета-версии" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +#: resources/qml/Preferences/GeneralPage.qml:957 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? Настоятельно рекомендуется не выключать это!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:941 +#: resources/qml/Preferences/GeneralPage.qml:962 msgctxt "@option:check" msgid "Get notifications for plugin updates" msgstr "Получать уведомления об обновлениях плагинов" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:50 +#: resources/qml/Preferences/MachinesPage.qml:50 msgctxt "@action:button" msgid "Add New" msgstr "Добавить новый" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:134 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +#: resources/qml/Preferences/MachinesPage.qml:147 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:160 +#: resources/qml/Preferences/ProfilesPage.qml:294 msgctxt "@action:button" msgid "Activate" msgstr "Активировать" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:146 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:331 +#: resources/qml/Preferences/MachinesPage.qml:159 +#: resources/qml/Preferences/ProfilesPage.qml:331 msgctxt "@action:button" msgid "Rename" msgstr "Переименовать" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:72 msgctxt "@label" msgid "Materials compatible with active printer:" msgstr "Материалы, совместимые с активным принтером:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:94 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:78 +#: resources/qml/Preferences/ProfilesPage.qml:94 msgctxt "@action:button" msgid "Create new" msgstr "Создать новый" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:88 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:90 +#: resources/qml/Preferences/ProfilesPage.qml:88 msgctxt "@action:button" msgid "Import" msgstr "Импорт" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:101 msgctxt "@action:button" msgid "Sync with Printers" msgstr "Синхронизация с принтерами" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:311 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:174 +#: resources/qml/Preferences/ProfilesPage.qml:311 msgctxt "@action:button" msgid "Duplicate" msgstr "Дублировать" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:342 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:198 +#: resources/qml/Preferences/ProfilesPage.qml:342 msgctxt "@action:button" msgid "Export" msgstr "Экспорт" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:392 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:212 +#: resources/qml/Preferences/ProfilesPage.qml:392 msgctxt "@title:window" msgid "Confirm Remove" msgstr "Подтвердите удаление" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:393 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:215 +#: resources/qml/Preferences/ProfilesPage.qml:393 msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "Вы уверены, что желаете удалить %1? Это нельзя будет отменить!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:228 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:238 msgctxt "@title:window" msgid "Import Material" msgstr "Импортировать материал" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:242 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Успешно импортированный материал %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:245 msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not import material %1: %2" msgstr "Не могу импортировать материал %1: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:267 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:256 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:267 msgctxt "@title:window" msgid "Export Material" msgstr "Экспортировать материал" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:272 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:272 msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Не могу экспортировать материал %1: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:275 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:275 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Материал успешно экспортирован в %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 msgctxt "@title:window" msgid "Sync materials with printers" msgstr "Синхронизировать материалы с принтерами" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 msgctxt "@title:header" msgid "Sync materials with printers" msgstr "Синхронизировать материалы с принтерами" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 msgctxt "@text" msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "Выполнив несколько простых действий, вы сможете синхронизировать все профили материалов со своими принтерами." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 msgctxt "@button" msgid "Why do I need to sync material profiles?" msgstr "Зачем нужна синхронизация профилей материалов?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 msgctxt "@button" msgid "Start" msgstr "Пуск" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144 msgctxt "@title:header" msgid "Sign in" msgstr "Войти" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150 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." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:446 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:586 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602 msgctxt "@button" msgid "Sync materials with USB" msgstr "Синхронизация материалов с помощью USB" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 msgctxt "@title:header" msgid "The following printers will receive the new material profiles:" msgstr "Следующие принтеры получат новые профили материалов:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:198 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 msgctxt "@title:header" msgid "Something went wrong when sending the materials to the printers." msgstr "При отправке материалов на принтеры что-то пошло не так." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:205 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221 msgctxt "@title:header" msgid "Material profiles successfully synced with the following printers:" msgstr "Профили материалов успешно синхронизированы со следующими принтерами:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:429 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445 msgctxt "@button" msgid "Troubleshooting" msgstr "Поиск и устранение неисправностей" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422 msgctxt "@text Asking the user whether printers are missing in a list." msgid "Printers missing?" msgstr "Отсутствуют принтеры?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:408 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424 msgctxt "@text" msgid "Make sure all your printers are turned ON and connected to Digital Factory." msgstr "Убедитесь, что все ваши принтеры включены и подключены к Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:417 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433 msgctxt "@button" msgid "Refresh List" msgstr "Обновить список" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473 msgctxt "@button" msgid "Try again" msgstr "Повторить попытку" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:461 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Done" msgstr "Готово" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:606 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622 msgctxt "@button" msgid "Sync" msgstr "Синхронизация" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535 msgctxt "@button" msgid "Syncing" msgstr "Синхронизация" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553 msgctxt "@title:header" msgid "No printers found" msgstr "Принтеры не обнаружены" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574 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. Убедитесь, что ваш принтер подключен и на нем установлена последняя версия прошивки." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:569 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585 msgctxt "@button" msgid "Learn how to connect your printer to Digital Factory" msgstr "Узнайте, как подключить принтер к Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:597 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613 msgctxt "@button" msgid "Refresh" msgstr "Обновить" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642 msgctxt "@title:header" msgid "Sync material profiles via USB" msgstr "Синхронизация профилей материалов с помощью USB" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:632 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648 msgctxt "@text In the UI this is followed by a list of steps the user needs to take." msgid "Follow the following steps to load the new material profiles to your printer." msgstr "Чтобы загрузить новые профили материалов в принтер, выполните следующие действия." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 msgctxt "@text" msgid "Click the export material archive button." msgstr "Нажмите кнопку экспорта архива материалов." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Сохраните UMM-файл на USB-накопителе." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 msgctxt "@text" msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." msgstr "Вставьте USB-накопитель в принтер и запустите процедуру загрузки новых профилей материалов." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:673 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689 msgctxt "@button" msgid "How to load new material profiles to my printer" msgstr "Загрузка новых профилей материалов в принтер" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:687 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 msgctxt "@button" msgid "Back" msgstr "Назад" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Export material archive" msgstr "Экспорт архива материалов" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747 msgctxt "@title:window" msgid "Export All Materials" msgstr "Экспорт всех материалов" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121 +#: resources/qml/Preferences/Materials/MaterialsView.qml:121 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Подтвердить изменение диаметра" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122 +#: resources/qml/Preferences/Materials/MaterialsView.qml:122 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 мм. Это значение несовместимо с текущим экструдером. Продолжить?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152 +#: resources/qml/Preferences/Materials/MaterialsView.qml:152 msgctxt "@label" msgid "Display Name" msgstr "Отображаемое имя" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 +#: resources/qml/Preferences/Materials/MaterialsView.qml:171 msgctxt "@label" msgid "Brand" msgstr "Брэнд" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190 +#: resources/qml/Preferences/Materials/MaterialsView.qml:190 msgctxt "@label" msgid "Material Type" msgstr "Тип материала" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +#: resources/qml/Preferences/Materials/MaterialsView.qml:210 msgctxt "@label" msgid "Color" msgstr "Цвет" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:262 +#: resources/qml/Preferences/Materials/MaterialsView.qml:262 msgctxt "@title" msgid "Material color picker" msgstr "Выбор цвета материала" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:275 +#: resources/qml/Preferences/Materials/MaterialsView.qml:275 msgctxt "@label" msgid "Properties" msgstr "Свойства" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +#: resources/qml/Preferences/Materials/MaterialsView.qml:286 msgctxt "@label" msgid "Density" msgstr "Плотность" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +#: resources/qml/Preferences/Materials/MaterialsView.qml:319 msgctxt "@label" msgid "Diameter" msgstr "Диаметр" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:369 +#: resources/qml/Preferences/Materials/MaterialsView.qml:369 msgctxt "@label" msgid "Filament Cost" msgstr "Стоимость материала" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:401 +#: resources/qml/Preferences/Materials/MaterialsView.qml:401 msgctxt "@label" msgid "Filament weight" msgstr "Вес материала" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:433 +#: resources/qml/Preferences/Materials/MaterialsView.qml:433 msgctxt "@label" msgid "Filament length" msgstr "Длина материала" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:451 +#: resources/qml/Preferences/Materials/MaterialsView.qml:451 msgctxt "@label" msgid "Cost per Meter" msgstr "Стоимость метра" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:465 +#: resources/qml/Preferences/Materials/MaterialsView.qml:465 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "Данный материал привязан к %1 и имеет ряд его свойств." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:472 +#: resources/qml/Preferences/Materials/MaterialsView.qml:472 msgctxt "@label" msgid "Unlink Material" msgstr "Отвязать материал" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +#: resources/qml/Preferences/Materials/MaterialsView.qml:485 msgctxt "@label" msgid "Description" msgstr "Описание" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:503 +#: resources/qml/Preferences/Materials/MaterialsView.qml:503 msgctxt "@label" msgid "Adhesion Information" msgstr "Информация об адгезии" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642 +#: resources/qml/Preferences/Materials/MaterialsView.qml:642 msgctxt "@title" msgid "Information" msgstr "Информация" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:647 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:82 +#: resources/qml/Preferences/Materials/MaterialsView.qml:647 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 msgctxt "@label" msgid "Print settings" msgstr "Параметры печати" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:59 +#: resources/qml/Preferences/ProfilesPage.qml:59 msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "Профили, совместимые с активным принтером:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:98 +#: resources/qml/Preferences/ProfilesPage.qml:98 msgctxt "@action:tooltip" msgid "Create new profile from current settings/overrides" msgstr "Создать новый профиль из текущих настроек/переопределений" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:125 +#: resources/qml/Preferences/ProfilesPage.qml:125 msgctxt "@action:label" msgid "Some settings from current profile were overwritten." msgstr "Некоторые настройки из текущего профиля были перезаписаны." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:140 +#: resources/qml/Preferences/ProfilesPage.qml:140 msgctxt "@action:button" msgid "Update profile." msgstr "Обновить профиль." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:143 +#: resources/qml/Preferences/ProfilesPage.qml:143 msgctxt "@action:tooltip" msgid "Update profile with current settings/overrides" msgstr "Обновить профиль текущими параметрами" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:148 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256 +#: resources/qml/Preferences/ProfilesPage.qml:148 msgctxt "@action:button" msgid "Discard current changes" msgstr "Сбросить текущие параметры" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:158 +#: resources/qml/Preferences/ProfilesPage.qml:158 msgctxt "@action:label" msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." msgstr "Данный профиль использует настройки принтера по умолчанию, поэтому список ниже пуст." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:165 +#: resources/qml/Preferences/ProfilesPage.qml:165 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "Ваши текущие параметры совпадают с выбранным профилем." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +#: resources/qml/Preferences/ProfilesPage.qml:175 msgctxt "@title:tab" msgid "Global Settings" msgstr "Общие параметры" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: resources/qml/Preferences/ProfilesPage.qml:278 msgctxt "@title:window" msgid "Create Profile" msgstr "Создать профиль" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:280 +#: resources/qml/Preferences/ProfilesPage.qml:280 msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Укажите имя для данного профиля." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:368 +#: resources/qml/Preferences/ProfilesPage.qml:352 +#: resources/qml/Preferences/ProfilesPage.qml:368 msgctxt "@title:window" msgid "Export Profile" msgstr "Экспорт профиля" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +#: resources/qml/Preferences/ProfilesPage.qml:382 msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Скопировать профиль" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:409 +#: resources/qml/Preferences/ProfilesPage.qml:409 msgctxt "@title:window" msgid "Rename Profile" msgstr "Переименовать профиль" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:422 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:429 +#: resources/qml/Preferences/ProfilesPage.qml:422 +#: resources/qml/Preferences/ProfilesPage.qml:429 msgctxt "@title:window" msgid "Import Profile" msgstr "Импорт профиля" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:22 -msgctxt "@title:window" -msgid "Rename" -msgstr "Переименовать" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:23 -msgctxt "@info" -msgid "Please provide a new name." -msgstr "Укажите новое имя." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56 +#: resources/qml/Preferences/SettingVisibilityItem.qml:56 msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." msgstr "Данный параметр был скрыт текущим принтером и не будет отображаться." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73 +#: resources/qml/Preferences/SettingVisibilityItem.qml:73 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." @@ -5439,189 +6138,42 @@ msgstr[0] "Этот параметр был скрыт значением %1. И msgstr[1] "Эти параметры были скрыты значением %1. Измените это значение, чтобы параметр стал отображаться." msgstr[2] "Эти параметры были скрыты значением %1. Измените это значение, чтобы параметр стал отображаться." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13 +#: resources/qml/Preferences/SettingVisibilityPage.qml:13 msgctxt "@title:tab" msgid "Setting Visibility" msgstr "Видимость параметров" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 +#: resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" msgid "Check all" msgstr "Выбрать все" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 -msgctxt "@label" -msgid "Extruder" -msgstr "Экструдер" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70 -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." -msgstr "Целевая температура сопла. Сопло будет нагрето или остужено до указанной температуры. Если значение равно 0, то нагрев будет отключен." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Текущая температура данного сопла." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "Температура предварительного нагрева сопла." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Отмена" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Преднагрев" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Нагрев сопла перед печатью. Можно продолжать настройки вашей печати во время нагрева, и вам не понадобится ждать нагрева сопла, когда вы будете готовы приступить к печати." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Цвет материала в данном экструдере." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Материал в данном экструдере." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Сопло, вставленное в данный экструдер." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -msgctxt "@label" -msgid "Build plate" -msgstr "Рабочий стол" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55 -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, значит нагрев стола отключен." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "Текущая температура горячего стола." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "Температура преднагрева горячего стола." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Нагрев горячего стола перед печатью. Вы можете продолжать настройки вашей печати, пока стол нагревается, и вам не понадобится ждать нагрева стола для старта печати." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51 -msgctxt "@label" -msgid "Printer control" -msgstr "Управление принтером" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66 -msgctxt "@label" -msgid "Jog Position" -msgstr "Положение толчковой подачи" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Расстояние толчковой подачи" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Send G-code" -msgstr "Отправить G-код" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Отправить свою команду в G-коде подключенному принтеру. Нажмите Enter (Ввод) для отправки команды." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "Принтер не подключен." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "Облачный принтер не в сети. Убедитесь, что принтер включен и подключен к Интернету." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Этот принтер не связан с вашей учетной записью. Посетите сайт Ultimaker Digital Factory, чтобы установить привязку." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "В настоящий момент нет подключения к облаку. Для подключения к облачному принтеру выполните вход." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "В настоящий момент нет подключения к облаку. Проверьте подключение к Интернету." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:235 -msgctxt "@button" -msgid "Add printer" -msgstr "Добавить принтер" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Manage printers" -msgstr "Управление принтерами" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Active print" msgstr "Идёт печать" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Job Name" msgstr "Имя задачи" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +#: resources/qml/PrintMonitor.qml:172 msgctxt "@label" msgid "Printing Time" msgstr "Время печати" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +#: resources/qml/PrintMonitor.qml:180 msgctxt "@label" msgid "Estimated time left" msgstr "Осталось примерно" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 msgctxt "@label" msgid "Profile" msgstr "Профиль" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5632,132 +6184,379 @@ msgstr "" "\n" "Нажмите для открытия менеджера профилей." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 +#: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 msgctxt "@label:header" msgid "Custom profiles" msgstr "Собственные профили" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 msgctxt "@label shown when we load a Gcode file" msgid "Print setup disabled. G-code file can not be modified." msgstr "Настройка печати отключена. Невозможно изменить файл с G-кодом." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:179 msgctxt "@button" msgid "Recommended" msgstr "Рекомендован" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156 -msgctxt "@button" -msgid "Custom" -msgstr "Свое" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 msgctxt "@label:Should be short" msgid "On" msgstr "Вкл" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 msgctxt "@label:Should be short" msgid "Off" msgstr "Выкл" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "Экспериментальное" +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is active and you overwrote some settings." +msgstr "Активен %1 собственный профиль, и вы переписали некоторые настройки." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:54 -msgctxt "@info" -msgid "custom profile is active and you overwrote some settings." +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is overriding some settings." +msgstr "Собственный профиль %1 переопределяет некоторые настройки." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92 +msgctxt "@info %1 is the name of a profile" +msgid "Recommended settings (for %1) were altered." +msgstr "Рекомендуемые настройки (для %1) были изменены." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106 +msgctxt "@info %1 is the name of a profile" +msgid "Some setting-values defined in %1 were overridden." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137 msgctxt "@info" -msgid "custom profile is overriding some settings." -msgstr "" +msgid "Reset to defaults." +msgstr "Восстановить значения по умолчанию." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178 msgctxt "@info" -msgid "Some settings were changed." -msgstr "" +msgid "Compare and save." +msgstr "Сравнивайте и экономьте." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15 msgctxt "@label" msgid "Adhesion" msgstr "Прилипание" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20 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 "Разрешает печать каймы или подложки. Это добавляет плоскую область вокруг или под вашим объектом, которую легко удалить после печати." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:198 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102 msgctxt "@label" -msgid "Gradual infill" -msgstr "Постепенное заполнение" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:236 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "Постепенное заполнение будет постепенно увеличивать объём заполнения по направлению вверх." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 -msgctxt "@label" -msgid "Resolution" +msgid "Recommended print settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111 +msgctxt "@button" +msgid "Show Custom" +msgstr "Показать свое" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27 +msgctxt "@label" +msgid "Resolution" +msgstr "Разрешение" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16 +msgctxt "@label" +msgid "Strength" +msgstr "Прочность" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20 +msgctxt "@label" +msgid "The following settings define the strength of your part." +msgstr "Следующие настройки определяют прочность детали." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34 +msgctxt "infill_sparse_density description" +msgid "Infill Density" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35 +msgctxt "@label" +msgid "Adjusts the density of infill of the print." +msgstr "Отрегулируйте плотность заполнения при печати." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54 +msgctxt "@action:label" +msgid "Infill Pattern" +msgstr "Шаблон заполнения" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56 +msgctxt "@label" +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-печати, требующей высокой прочности в разных направлениях, используйте шаблон «Куб», «Динамический куб», «Четверть куба», «Восьмигранник» или «Гироид»." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67 +msgctxt "@action:label" +msgid "Shell Thickness" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68 +msgctxt "@label" +msgid "Defines the thickness of your part side walls, roof and floor." +msgstr "Определяет толщину боковых стен, крыши и пола вашей детали." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16 msgctxt "@label" msgid "Support" msgstr "Поддержки" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21 msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "Генерация структур для поддержки нависающих частей модели. Без этих структур такие части будут складываться во время печати." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40 +msgctxt "@action:label" +msgid "Support Type" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41 +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 "Выберите одну из доступных техник создания поддержки. Поддержка со стандартной структурой создается непосредственно под выступающими деталями, и затем опускает эти области вниз линейно. У поддержки с древовидной структурой ветви тянутся к выступающим областям и модель опирается на концы этих ветвей, которые охватывают модель с разных сторон, чтобы таким образом максимально поддерживать ее по всей площади печатной пластины." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53 +msgctxt "@action:label" +msgid "Print with" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54 +msgctxt "@label" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати поддержек. Используется при наличии нескольких экструдеров." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67 +msgctxt "@action:label" +msgid "Placement" +msgstr "Размещение" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68 +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 "Настраивает размещение структур поддержки. Размещение может быть выбрано с касанием стола или везде. Для последнего случая структуры поддержки печатаются даже на самой модели." + +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 msgctxt "@error" msgid "Configuration not supported" -msgstr "" +msgstr "Конфигурация не поддерживается" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." -msgstr "" +msgstr "Нет профилей для выбранного материала/конфигурации %1. Пожалуйста, измените конфигурацию." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 msgctxt "@button:label" msgid "Learn more" -msgstr "" +msgstr "Узнать больше" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +#: resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "Экструдер" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:70 +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." +msgstr "Целевая температура сопла. Сопло будет нагрето или остужено до указанной температуры. Если значение равно 0, то нагрев будет отключен." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:105 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "Текущая температура данного сопла." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:182 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "Температура предварительного нагрева сопла." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:271 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:259 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Отмена" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:274 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:263 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Преднагрев" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:297 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Нагрев сопла перед печатью. Можно продолжать настройки вашей печати во время нагрева, и вам не понадобится ждать нагрева сопла, когда вы будете готовы приступить к печати." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:335 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "Цвет материала в данном экструдере." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:367 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "Материал в данном экструдере." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:400 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "Сопло, вставленное в данный экструдер." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:25 +msgctxt "@label" +msgid "Build plate" +msgstr "Рабочий стол" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:55 +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, значит нагрев стола отключен." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "Текущая температура горячего стола." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:162 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "Температура преднагрева горячего стола." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:286 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Нагрев горячего стола перед печатью. Вы можете продолжать настройки вашей печати, пока стол нагревается, и вам не понадобится ждать нагрева стола для старта печати." + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:51 +msgctxt "@label" +msgid "Printer control" +msgstr "Управление принтером" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:66 +msgctxt "@label" +msgid "Jog Position" +msgstr "Положение толчковой подачи" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:82 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:162 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:217 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Расстояние толчковой подачи" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Send G-code" +msgstr "Отправить G-код" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:319 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Отправить свою команду в G-коде подключенному принтеру. Нажмите Enter (Ввод) для отправки команды." + +#: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "Принтер не подключен." + +#: resources/qml/PrinterSelector/MachineListButton.qml:34 +msgctxt "@label" +msgid "Hide all connected printers" +msgstr "Скрыть все подключенные принтеры" + +#: resources/qml/PrinterSelector/MachineListButton.qml:47 +msgctxt "@label" +msgid "Show all connected printers" +msgstr "Показать все подключенные принтеры" + +#: resources/qml/PrinterSelector/MachineSelector.qml:64 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "Облачный принтер не в сети. Убедитесь, что принтер включен и подключен к Интернету." + +#: resources/qml/PrinterSelector/MachineSelector.qml:68 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Этот принтер не связан с вашей учетной записью. Посетите сайт Ultimaker Digital Factory, чтобы установить привязку." + +#: resources/qml/PrinterSelector/MachineSelector.qml:73 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "В настоящий момент нет подключения к облаку. Для подключения к облачному принтеру выполните вход." + +#: resources/qml/PrinterSelector/MachineSelector.qml:78 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "В настоящий момент нет подключения к облаку. Проверьте подключение к Интернету." + +#: resources/qml/PrinterSelector/MachineSelectorList.qml:30 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:32 +msgctxt "@label" +msgid "Other printers" +msgstr "Другие принтеры" + +#: resources/qml/ProfileOverview.qml:36 msgctxt "@title:column" msgid "Setting" msgstr "Параметр" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +#: resources/qml/ProfileOverview.qml:37 msgctxt "@title:column" msgid "Profile" msgstr "Профиль" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +#: resources/qml/ProfileOverview.qml:38 msgctxt "@title:column" msgid "Current" msgstr "Текущий" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +#: resources/qml/ProfileOverview.qml:39 msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Единица" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +#: resources/qml/SearchBar.qml:17 msgctxt "@placeholder" msgid "Search" msgstr "Поиск" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 +#: resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5768,32 +6567,32 @@ msgstr "" "\n" "Щёлкните, чтобы сделать эти параметры видимыми." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 +#: resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "Этот параметр не используется, поскольку все параметры, на которые он влияет, переопределяются." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +#: resources/qml/Settings/SettingItem.qml:89 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Влияет на" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +#: resources/qml/Settings/SettingItem.qml:94 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "Зависит от" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:190 +#: resources/qml/Settings/SettingItem.qml:196 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "Данная настройка всегда используется совместно всеми экструдерами. Изменение данного значения приведет к изменению значения для всех экструдеров." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +#: resources/qml/Settings/SettingItem.qml:200 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Эта настройка получена из конфликтующих значений экструдера:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +#: resources/qml/Settings/SettingItem.qml:240 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5804,7 +6603,7 @@ msgstr "" "\n" "Щёлкните для восстановления значения из профиля." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:334 +#: resources/qml/Settings/SettingItem.qml:340 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5815,4894 +6614,329 @@ msgstr "" "\n" "Щёлкните для восстановления вычисленного значения." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +#: resources/qml/Settings/SettingView.qml:48 msgctxt "@label:textbox" msgid "Search settings" msgstr "Параметры поиска" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:395 +#: resources/qml/Settings/SettingView.qml:395 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Скопировать значение для всех экструдеров" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:404 +#: resources/qml/Settings/SettingView.qml:404 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Копировать все измененные значения для всех экструдеров" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:440 +#: resources/qml/Settings/SettingView.qml:440 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Спрятать этот параметр" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:453 +#: resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Не показывать этот параметр" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:457 +#: resources/qml/Settings/SettingView.qml:457 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Оставить этот параметр видимым" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +#: resources/qml/Toolbar.qml:142 +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" +msgstr[0] "Печатать выбранную модель с %1" +msgstr[1] "Печатать выбранные модели с %1" +msgstr[2] "Печатать выбранные модели с %1" + +#: resources/qml/ViewOrientationControls.qml:25 msgctxt "@info:tooltip" msgid "3D View" msgstr "Трехмерный вид" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +#: resources/qml/ViewOrientationControls.qml:38 msgctxt "@info:tooltip" msgid "Front View" msgstr "Вид спереди" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +#: resources/qml/ViewOrientationControls.qml:51 msgctxt "@info:tooltip" msgid "Top View" msgstr "Вид сверху" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +#: resources/qml/ViewOrientationControls.qml:64 msgctxt "@info:tooltip" msgid "Left View" msgstr "Вид слева" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +#: resources/qml/ViewOrientationControls.qml:77 msgctxt "@info:tooltip" msgid "Right View" msgstr "Вид справа" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: resources/qml/ViewsSelector.qml:50 msgctxt "@label" msgid "View type" msgstr "Просмотр типа" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:47 msgctxt "@label" msgid "Add a Cloud printer" msgstr "Добавить облачный принтер" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:73 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:73 msgctxt "@label" msgid "Waiting for Cloud response" msgstr "Ожидается ответ от облака" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:83 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:83 msgctxt "@label" msgid "No printers found in your account?" msgstr "В учетной записи нет принтеров?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:117 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:117 msgctxt "@label" msgid "The following printers in your account have been added in Cura:" msgstr "Следующие принтеры в вашей учетной записи добавлены в Cura:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:186 msgctxt "@button" msgid "Add printer manually" msgstr "Добавить принтер вручную" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 msgctxt "@label" msgid "Manufacturer" msgstr "Производитель" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Profile author" msgstr "Автор профиля" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 msgctxt "@label" msgid "Printer name" msgstr "Имя принтера" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 msgctxt "@text" msgid "Please name your printer" msgstr "Присвойте имя принтеру" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "Добавить принтер" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:38 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Добавить сетевой принтер" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:87 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Добавить принтер, не подключенный к сети" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 msgctxt "@label" msgid "There is no printer found over your network." msgstr "В вашей сети не найден принтер." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 msgctxt "@label" msgid "Refresh" msgstr "Обновить" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 msgctxt "@label" msgid "Add printer by IP" msgstr "Добавить принтер по IP-адресу" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Добавить облачный принтер" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205 msgctxt "@label" msgid "Troubleshooting" msgstr "Поиск и устранение неисправностей" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 msgctxt "@label" msgid "Add printer by IP address" msgstr "Добавить принтер по IP-адресу" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Введите IP-адрес своего принтера." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 msgctxt "@button" msgid "Add" msgstr "Добавить" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 msgctxt "@label" msgid "Could not connect to device." msgstr "Не удалось подключиться к устройству." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Не удается подключиться к принтеру Ultimaker?" +msgid "Can't connect to your UltiMaker printer?" +msgstr "Не удается подключиться к принтеру UltiMaker?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 msgctxt "@label" msgid "The printer at this address has not responded yet." msgstr "От принтера с этим адресом еще не поступал ответ." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 msgctxt "@label" msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." msgstr "Этот принтер невозможно добавить, поскольку это неизвестный принтер либо он не управляет группой." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 msgctxt "@button" msgid "Connect" msgstr "Подключить" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Добавить сетевой принтер" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Добавить принтер, не подключенный к сети" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102 +msgctxt "@button" +msgid "Add UltiMaker printer via Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "In order to start using Cura you will need to configure a printer." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36 +msgctxt "@label" +msgid "What printer would you like to setup?" +msgstr "Какой принтер вы хотите настроить?" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55 +msgctxt "@button" +msgid "UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64 +msgctxt "@button" +msgid "Non UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73 +msgctxt "@button" +msgid "Learn more about adding printers to Cura" +msgstr "Подробнее о добавлении принтеров в Cura" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29 +msgctxt "@label" +msgid "Add printer" +msgstr "Добавление принтера" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33 +msgctxt "@label" +msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70 +msgctxt "@label" +msgid "If you are trying to add a new UltiMaker printer to Cura" +msgstr "Если вы пытаетесь добавить новый принтер UltiMaker в Cura" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80 +msgctxt "@info" +msgid "Sign in into UltiMaker Digital Factory" +msgstr "Войти в UltiMaker Digital Factory" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81 +msgctxt "@info" +msgid "Follow the procedure to add a new printer" +msgstr "Следуйте процедуре добавления нового принтера" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82 +msgctxt "@info" +msgid "Your new printer will automatically appear in Cura" +msgstr "Ваш новый принтер автоматически появится в Cura" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100 +msgctxt "@button" +msgid "Learn more" +msgstr "Узнать больше" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121 +msgctxt "@button" +msgid "Add local printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129 +msgctxt "@button" +msgid "Sign in to Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133 +msgctxt "@button" +msgid "Waiting for new printers" +msgstr "" + +#: resources/qml/WelcomePages/ChangelogContent.qml:24 msgctxt "@label" msgid "Release Notes" msgstr "Примечания к выпуску" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:123 +#: resources/qml/WelcomePages/CloudContent.qml:123 msgctxt "@text" msgid "Add material settings and plugins from the Marketplace" msgstr "Добавляйте настройки материалов и плагины из Marketplace" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:149 +#: resources/qml/WelcomePages/CloudContent.qml:149 msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:175 +#: resources/qml/WelcomePages/CloudContent.qml:175 msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Делитесь идеями и получайте помощь от 48 000 пользователей в сообществе Ultimaker" +msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" +msgstr "Делитесь идеями и получайте помощь от 48 000 пользователей в сообществе UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +#: resources/qml/WelcomePages/CloudContent.qml:189 msgctxt "@button" msgid "Skip" msgstr "Пропустить" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +#: resources/qml/WelcomePages/CloudContent.qml:201 msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Создайте бесплатную учетную запись Ultimaker" +msgid "Create a free UltiMaker Account" +msgstr "Создайте бесплатную учетную запись UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Помогите нам улучшить Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:56 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura собирает анонимные данные для повышения качества печати и улучшения взаимодействия с пользователем, включая перечисленные ниже:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:68 -msgctxt "@text" -msgid "Machine types" -msgstr "Типы принтера" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:74 -msgctxt "@text" -msgid "Material usage" -msgstr "Использование материала" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:80 -msgctxt "@text" -msgid "Number of slices" -msgstr "Количество слоев" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:86 -msgctxt "@text" -msgid "Print settings" -msgstr "Параметры печати" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:99 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Данные, собранные Ultimaker Cura, не содержат каких-либо персональных данных." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:100 -msgctxt "@text" -msgid "More information" -msgstr "Дополнительная информация" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +#: resources/qml/WelcomePages/DropDownWidget.qml:93 msgctxt "@label" msgid "Empty" msgstr "Пусто" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +#: resources/qml/WelcomePages/UserAgreementContent.qml:23 msgctxt "@label" msgid "User Agreement" msgstr "Пользовательское соглашение" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67 +#: resources/qml/WelcomePages/UserAgreementContent.qml:67 msgctxt "@button" msgid "Decline and close" msgstr "Отклонить и закрыть" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Приветствуем в Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:67 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "" -"Выполните указанные ниже действия для настройки\n" -"Ultimaker Cura. Это займет немного времени." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:82 -msgctxt "@button" -msgid "Get started" -msgstr "Приступить" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: resources/qml/WelcomePages/WhatsNewContent.qml:28 msgctxt "@label" msgid "What's New" msgstr "Что нового" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: resources/qml/Widgets/ComboBox.qml:18 msgctxt "@label" msgid "No items to select from" msgstr "Нет элементов для выбора" -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Проверка моделей и конфигурации печати для выявления возможных проблем печати; рекомендации." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "Средство проверки моделей" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Предоставляет поддержку для чтения 3MF файлов." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "Чтение 3MF" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Предоставляет возможность записи 3MF файлов." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "Запись 3MF" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Обеспечивает поддержку чтения файлов AMF." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "Средство чтения AMF" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Резервное копирование и восстановление конфигурации." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Резервные копии Cura" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Предоставляет интерфейс к движку CuraEngine." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Движок CuraEngine" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Предоставляет поддержку для импорта профилей Cura." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Чтение профиля Cura" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Предоставляет поддержку для экспорта профилей Cura." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Запись профиля Cura" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Подключается к цифровой библиотеке, позволяя Cura открывать файлы из цифровой библиотеки и сохранять файлы в нее." - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Цифровая библиотека Ultimaker" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Проверяет наличие обновлений ПО." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Проверка обновлений" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Обеспечение действий принтера для обновления прошивки." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Средство обновления прошивки" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Считывает G-код из сжатого архива." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Средство считывания сжатого G-кода" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Записывает G-код в сжатый архив." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Средство записи сжатого G-кода" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Предоставляет поддержку для импортирования профилей из G-Code файлов." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Средство считывания профиля из G-кода" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Позволяет загружать и отображать файлы G-code." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "Чтение G-code" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Записывает G-код в файл." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "Средство записи G-кода" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Обеспечивает возможность генерировать печатаемую геометрию из файлов двухмерных изображений." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Чтение изображений" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Предоставляет поддержку для импортирования профилей из устаревших версий Cura." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Чтение устаревших профилей Cura" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Предоставляет возможность изменения параметров принтера (такие как рабочий объём, диаметр сопла и так далее)" - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Параметры принтера действие" - -#: Marketplace/plugin.json -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the Ultimaker website." -msgstr "Позволяет управлять расширениями приложения и просматривать расширения с веб-сайта Ultimaker." - -#: Marketplace/plugin.json -msgctxt "name" -msgid "Marketplace" -msgstr "Магазин" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Обеспечивает этап мониторинга в Cura." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Этап мониторинга" - -#: PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Предоставляет параметры для каждой модели." - -#: PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Инструмент для настройки каждой модели" - -#: PostProcessingPlugin/plugin.json -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Расширение, которое позволяет пользователю создавать скрипты для постобработки" - -#: PostProcessingPlugin/plugin.json -msgctxt "name" -msgid "Post Processing" -msgstr "Пост обработка" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Обеспечивает подготовительный этап в Cura." - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "Подготовительный этап" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Обеспечивает действия на этапе предварительного просмотра в Cura." - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "Этап предварительного просмотра" - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Предоставляет поддержку для подключения и записи на внешний носитель." - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Плагин для работы с внешним носителем" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Регистрирует определенные события в журнале, чтобы их можно было использовать в отчетах об аварийном завершении работы" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "Контрольный журнал" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Обеспечивает предварительный просмотр нарезанных данных слоя." - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "Вид моделирования" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Отправляет анонимную информацию о нарезке моделей. Может быть отключено через настройки." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Информация о нарезке модели" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Предоставляет просмотр твёрдого тела." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Обзор" - -#: SupportEraser/plugin.json -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Создание объекта стирания для блокировки печати элемента поддержки в определенных местах" - -#: SupportEraser/plugin.json -msgctxt "name" -msgid "Support Eraser" -msgstr "Средство стирания элемента поддержки" - -#: TrimeshReader/plugin.json -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Предоставляет поддержку для чтения файлов моделей." - -#: TrimeshReader/plugin.json -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Средство чтения Trimesh" - -#: UFPReader/plugin.json -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Предоставляет поддержку для чтения пакетов формата Ultimaker." - -#: UFPReader/plugin.json -msgctxt "name" -msgid "UFP Reader" -msgstr "Средство считывания UFP" - -#: UFPWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Предоставляет поддержку для записи пакетов формата Ultimaker." - -#: UFPWriter/plugin.json -msgctxt "name" -msgid "UFP Writer" -msgstr "Средство записи UFP" - -#: UltimakerMachineActions/plugin.json -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Предоставляет дополнительные возможности для принтеров Ultimaker (такие как мастер выравнивания стола, выбора обновления и так далее)" - -#: UltimakerMachineActions/plugin.json -msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Действия с принтерами Ultimaker" - -#: UM3NetworkPrinting/plugin.json -msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "Управляет сетевыми соединениями с сетевыми принтерами Ultimaker 3." - -#: UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Соединение с сетью Ultimaker" - -#: USBPrinting/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Принимает G-Code и отправляет его на принтер. Плагин также может обновлять прошивку." - -#: USBPrinting/plugin.json -msgctxt "name" -msgid "USB printing" -msgstr "Печать через USB" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Обновляет настройки Cura 2.1 до Cura 2.2." - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Обновление версии 2.1 до 2.2" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Обновляет настройки Cura 2.2 до Cura 2.4." - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Обновление версии 2.2 до 2.4" - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Обновляет настройки Cura 2.5 до Cura 2.6." - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Обновление версии 2.5 до 2.6" - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Обновляет настройки Cura 2.6 до Cura 2.7." - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Обновление версии 2.6 до 2.7" - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Обновляет настройки Cura 2.7 до Cura 3.0." - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Обновление версии 2.7 до 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Обновление настроек Cura 3.0 до Cura 3.1." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Обновление версии 3.0 до 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Обновляет настройки Cura 3.2 до Cura 3.3." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Обновление версии 3.2 до 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Обновляет настройки Cura 3.3 до Cura 3.4." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Обновление версии 3.3 до 3.4" - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Обновляет настройки Cura 3.4 до Cura 3.5." - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Обновление версии 3.4 до 3.5" - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Обновляет конфигурации Cura 3.5 до Cura 4.0." - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Обновление версии 3.5 до 4.0" - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Обновляет конфигурации Cura 4.0 до Cura 4.1." - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Обновление версии 4.0 до 4.1" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Обновляет конфигурации Cura 4.11 до Cura 4.12." - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Обновление версии 4.11 до 4.12" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Обновляет конфигурации Cura 4.13 до Cura 5.0." - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Обновление версии 4.13 до 5.0" - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Обновляет конфигурации Cura 4.1 до Cura 4.2." - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Обновление версии 4.1 до 4.2" - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Обновляет конфигурации Cura 4.2 до Cura 4.3." - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Обновление версии 4.2 до 4.3" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Обновляет конфигурации Cura 4.3 до Cura 4.4." - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Обновление версии 4.3 до 4.4" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Обновляет конфигурации Cura 4.4 до Cura 4.5." - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Обновление версии 4.4 до 4.5" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Обновляет конфигурации Cura 4.5 до Cura 4.6." - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Обновление версии 4.5 до 4.6" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Обновляет конфигурацию Cura 4.6.0 до Cura 4.6.2." - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Обновление версии с 4.6.0 до 4.6.2" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Обновляет конфигурацию Cura 4.6.2 до Cura 4.7." - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Обновление версии с 4.6.2 до 4.7" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Обновляет конфигурации Cura 4.7 до Cura 4.8." - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Обновление версии 4.7 до 4.8" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Обновляет конфигурации Cura 4.8 до Cura 4.9." - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Обновление версии 4.8 до 4.9" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Обновляет конфигурации Cura 4.9 до Cura 4.10." - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Обновление версии 4.9 до 4.10" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Предоставляет поддержку для чтения X3D файлов." - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "Чтение X3D" - -#: XmlMaterialProfile/plugin.json -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Предоставляет возможности по чтению и записи профилей материалов в виде XML." - -#: XmlMaterialProfile/plugin.json -msgctxt "name" -msgid "Material Profiles" -msgstr "Профили материалов" - -#: XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Предоставляет рентгеновский вид." - -#: XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "Просмотр в рентгене" - -#~ msgctxt "@label" -#~ msgid "Not yet initialized
    " -#~ msgstr "Еще не инициализировано
    " - -#~ msgctxt "@label" -#~ msgid "By" -#~ msgstr "Автор" - -#~ msgctxt "@Label" -#~ msgid "Static type checker for Python" -#~ msgstr "Средство проверки статического типа для Python" - -#~ msgctxt "@Label" -#~ msgid "Root Certificates for validating SSL trustworthiness" -#~ msgstr "Корневые сертификаты для проверки надежности SSL" - -#~ msgctxt "@label" -#~ msgid "Python extensions for Microsoft Windows" -#~ msgstr "Расширения Python для Microsoft Windows" - -#~ msgctxt "@label" -#~ msgid "SVG icons" -#~ msgstr "Иконки SVG" - -#~ msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" -#~ msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" -#~ msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" -#~ msgstr[0] "Нет %1 профиля для конфигураций в экструдерах %2. Вместо этого будет использоваться функция по умолчанию" -#~ msgstr[1] "Нет %1 профилей для конфигураций в экструдерах %2. Вместо этого будет использоваться функция по умолчанию" -#~ msgstr[2] "Нет %1 профилей для конфигураций в экструдерах %2. Вместо этого будет использоваться функция по умолчанию" - -#~ msgctxt "@tooltip" -#~ msgid "You have modified some profile settings. If you want to change these go to custom mode." -#~ msgstr "В некоторые настройки профиля были внесены изменения. Если их необходимо изменить, перейдите в пользовательский режим." - -#~ msgctxt "@action:button" -#~ msgid "Sync materials with printers" -#~ msgstr "Синхронизация материалов" - -#~ msgctxt "@title:window" -#~ msgid "Convert Image..." -#~ msgstr "Преобразование изображения..." - -#~ msgctxt "@info:tooltip" -#~ msgid "The width in millimeters on the build plate." -#~ msgstr "Ширина в миллиметрах на столе." - -#~ msgctxt "@title" -#~ msgid "Marketplace" -#~ msgstr "Магазин" - -#~ msgctxt "@info" -#~ msgid "You will need to restart Cura before changes in packages have effect." -#~ msgstr "Вам потребуется перезапустить Cura для активации изменений в пакетах." - -#~ msgctxt "@action:button" -#~ msgid "Install" -#~ msgstr "Установить" - -#~ msgctxt "@action:button" -#~ msgid "Installed" -#~ msgstr "Установлено" - -#~ msgctxt "@label" -#~ msgid "Premium" -#~ msgstr "Премиум" - -#~ msgctxt "@info:tooltip" -#~ msgid "Go to Web Marketplace" -#~ msgstr "Перейти в интернет-магазин" - -#~ msgctxt "@label" -#~ msgid "Search materials" -#~ msgstr "Поиск материалов" - -#~ msgctxt "@label" -#~ msgid "Compatibility" -#~ msgstr "Совместимость" - -#~ msgctxt "@label:table_header" -#~ msgid "Machine" -#~ msgstr "Принтер" - -#~ msgctxt "@label:table_header" -#~ msgid "Build Plate" -#~ msgstr "Рабочий стол" - -#~ msgctxt "@label:table_header" -#~ msgid "Support" -#~ msgstr "Поддержки" - -#~ msgctxt "@label:table_header" -#~ msgid "Quality" -#~ msgstr "Качество" - -#~ msgctxt "@action:label" -#~ msgid "Technical Data Sheet" -#~ msgstr "Таблица технических характеристик" - -#~ msgctxt "@action:label" -#~ msgid "Safety Data Sheet" -#~ msgstr "Паспорт безопасности" - -#~ msgctxt "@action:label" -#~ msgid "Printing Guidelines" -#~ msgstr "Инструкции по печати" - -#~ msgctxt "@action:label" -#~ msgid "Website" -#~ msgstr "Веб-сайт" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to install or update" -#~ msgstr "Для выполнения установки или обновления необходимо войти" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Buy material spools" -#~ msgstr "Приобретение катушек с материалом" - -#~ msgctxt "@action:button" -#~ msgid "Update" -#~ msgstr "Обновить" - -#~ msgctxt "@action:button" -#~ msgid "Updating" -#~ msgstr "Обновление" - -#~ msgctxt "@action:button" -#~ msgid "Updated" -#~ msgstr "Обновлено" - -#~ msgctxt "@action:button" -#~ msgid "Back" -#~ msgstr "Назад" - -#~ msgctxt "@title:tab" -#~ msgid "Plugins" -#~ msgstr "Плагины" - -#~ msgctxt "@title:tab" -#~ msgid "Installed" -#~ msgstr "Установлено" - -#~ msgctxt "@label" -#~ msgid "Will install upon restarting" -#~ msgstr "Установка выполнится при перезагрузке" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to update" -#~ msgstr "Для выполнения обновления необходимо войти" - -#~ msgctxt "@action:button" -#~ msgid "Downgrade" -#~ msgstr "Переход на более раннюю версию" - -#~ msgctxt "@action:button" -#~ msgid "Uninstall" -#~ msgstr "Удалить" - -#~ msgctxt "@label" -#~ msgid "Community Contributions" -#~ msgstr "Вклад в развитие сообщества" - -#~ msgctxt "@label" -#~ msgid "Community Plugins" -#~ msgstr "Плагины сообщества" - -#~ msgctxt "@label" -#~ msgid "Generic Materials" -#~ msgstr "Универсальные материалы" - -#~ msgctxt "@info" -#~ msgid "Fetching packages..." -#~ msgstr "Выборка пакетов..." - -#~ msgctxt "@label" -#~ msgid "Website" -#~ msgstr "Веб-сайт" - -#~ msgctxt "@label" -#~ msgid "Email" -#~ msgstr "Электронная почта" - -#~ msgctxt "@description" -#~ msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -#~ msgstr "Войдите, чтобы получить проверенные встраиваемые модули и материалы для Ultimaker Cura Enterprise" - -#~ msgctxt "@label" -#~ msgid "Version" -#~ msgstr "Версия" - -#~ msgctxt "@label" -#~ msgid "Last updated" -#~ msgstr "Последнее обновление" - -#~ msgctxt "@label" -#~ msgid "Downloads" -#~ msgstr "Загрузки" - -#~ msgctxt "@title:tab" -#~ msgid "Installed plugins" -#~ msgstr "Установленные встраиваемые модули" - -#~ msgctxt "@info" -#~ msgid "No plugin has been installed." -#~ msgstr "Встраиваемые модули не установлены." - -#~ msgctxt "@title:tab" -#~ msgid "Installed materials" -#~ msgstr "Установленные материалы" - -#~ msgctxt "@info" -#~ msgid "No material has been installed." -#~ msgstr "Материалы не установлены." - -#~ msgctxt "@title:tab" -#~ msgid "Bundled plugins" -#~ msgstr "Связанные встраиваемые модули" - -#~ msgctxt "@title:tab" -#~ msgid "Bundled materials" -#~ msgstr "Связанные материалы" - -#~ msgctxt "@info" -#~ msgid "Could not connect to the Cura Package database. Please check your connection." -#~ msgstr "Не удалось подключиться к базе данных пакета Cura. Проверьте свое подключение." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall" -#~ msgstr "Подтвердить удаление" - -#~ msgctxt "@text:window" -#~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -#~ msgstr "Вы удаляете материалы и/или профили, которые все еще используются. Подтверждение приведет к сбросу указанных ниже материалов/профилей к их настройкам по умолчанию." - -#~ msgctxt "@text:window" -#~ msgid "Materials" -#~ msgstr "Материалы" - -#~ msgctxt "@text:window" -#~ msgid "Profiles" -#~ msgstr "Профили" - -#~ msgctxt "@action:button" -#~ msgid "Confirm" -#~ msgstr "Подтвердить" - -#~ msgctxt "@info:tooltip" -#~ msgid "Some things could be problematic in this print. Click to see tips for adjustment." -#~ msgstr "С этой печатью могут быть связаны некоторые проблемы. Щелкните для просмотра советов по регулировке." - -#~ msgctxt "@label" -#~ msgid "Support library for handling planar objects" -#~ msgstr "Вспомогательная библиотека для работы с плоскими объектами" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "Вы изменили некоторые настройки профиля.\n" -#~ "Сохранить измененные настройки после переключения профилей?\n" -#~ "Изменения можно отменить и загрузить настройки по умолчанию из \"%1\"." - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Build plate" -#~ msgstr "Рабочий стол" - -#~ msgctxt "@label" -#~ msgid "Create" -#~ msgstr "Создать" - -#~ msgctxt "@label" -#~ msgid "Duplicate" -#~ msgstr "Дублировать" - -#~ msgctxt "@label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "Принтер: %1" - -#~ msgctxt "@action:button" -#~ msgid "Update profile with current settings/overrides" -#~ msgstr "Обновить профиль текущими параметрами" - -#~ msgctxt "@label" -#~ msgid "Theme:" -#~ msgstr "Тема:" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for these changes to have effect." -#~ msgstr "Для применения данных изменений вам потребуется перезапустить приложение." - -#~ msgctxt "@action:button" -#~ msgid "More information" -#~ msgstr "Дополнительная информация" - -#~ msgctxt "@action:button" -#~ msgid "Create" -#~ msgstr "Создать" - -#~ msgctxt "@action:button Sending materials to printers" -#~ msgid "Sync with Printers" -#~ msgstr "Синхронизация с принтерами" - -#~ msgctxt "@action:label" -#~ msgid "Printer" -#~ msgstr "Принтер" - -#~ msgctxt "@title:column" -#~ msgid "Unit" -#~ msgstr "Единица" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting Guide" -#~ msgstr "Показать онлайн-руководство по решению проблем" - -#~ msgctxt "@action:inmenu" -#~ msgid "Add more materials from Marketplace" -#~ msgstr "Добавить больше материалов из Магазина" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange All Models To All Build Plates" -#~ msgstr "Выровнять все модели по всем рабочим столам" - -#~ msgctxt "@action:menu" -#~ msgid "&Marketplace" -#~ msgstr "&Магазин" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new Cura packages." -#~ msgstr "Поиск, управление и установка новых пакетов Cura." - -#~ msgctxt "name" -#~ msgid "Toolbox" -#~ msgstr "Панель инструментов" - -#~ msgctxt "description" -#~ msgid "Provides the Simulation view." -#~ msgstr "Открытие вида моделирования." - #~ msgctxt "@info:status" -#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Отправляйте и отслеживайте задания печати из любого места с помощью вашей учетной записи Ultimaker." - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Digital Factory" -#~ msgstr "Подключение к Ultimaker Digital Factory" - -#~ msgctxt "@info" -#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." -#~ msgstr "Каналы веб-камеры для облачных принтеров невозможно просмотреть из Ultimaker Cura." - -#~ 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 not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -#~ msgstr "Для {machine_name} доступны новые функции или исправления! Если у вас не установлена самая последняя версия прошивки принтера, рекомендуем обновить ее до версии {latest_version}." - -#~ msgctxt "@info:title The %s gets replaced with the printer name." -#~ msgid "New %s firmware available" -#~ msgstr "Доступна новая прошивка %s" - -#~ msgctxt "@info:status" -#~ msgid "Global stack is missing." -#~ msgstr "Общий стек отсутствует." - -#~ msgctxt "@info:status" -#~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces." -#~ msgstr "Модель не размножена. Выделены области с отсутствующими или лишними поверхностями." +#~ msgid "Cura does not accurately display layers when Wire Printing is enabled." +#~ msgstr "При печати через кабель Cura отображает слои неточно." #~ msgctxt "@info:title" -#~ msgid "Model errors" -#~ msgstr "Ошибки модели" - -#~ msgctxt "@label:listbox" -#~ msgid "Layer thickness" -#~ msgstr "Толщина слоя" - -#~ msgctxt "@label" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "Ваш ключ к дистанционной 3D-печати" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Customize your experience with more print profiles and plugins\n" -#~ "- Stay flexible by syncing your setup and loading it anywhere\n" -#~ "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "" -#~ "- Новые профили печати и подключаемые модули позволяют вам печатать именно то, что вы хотите\n" -#~ "- Функция синхронизации настроек и их загрузки из любого места расширяет ваши возможности\n" -#~ "- Удаленная работа на принтерах Ultimaker обеспечивает повышение эффективности ваших процессов" - -#~ msgctxt "@button" -#~ msgid "Create account" -#~ msgstr "Создать учетную запись" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete Selected Model" -#~ msgid_plural "Delete Selected Models" -#~ msgstr[0] "Удалить выбранную модель" -#~ msgstr[1] "Удалить выбранные модели" -#~ msgstr[2] "Удалить выбранные модели" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Center Selected Model" -#~ msgid_plural "Center Selected Models" -#~ msgstr[0] "Центрировать выбранную модель" -#~ msgstr[1] "Центрировать выбранные модели" -#~ msgstr[2] "Центрировать выбранные модели" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Multiply Selected Model" -#~ msgid_plural "Multiply Selected Models" -#~ msgstr[0] "Размножить выбранную модель" -#~ msgstr[1] "Размножить выбранные модели" -#~ msgstr[2] "Размножить выбранные модели" - -#~ msgctxt "@button" -#~ msgid "Finish" -#~ msgstr "Завершить" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Account" -#~ msgstr "Учетная запись Ultimaker" - -#~ msgctxt "@text" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "Ваш ключ к дистанционной 3D-печати" - -#~ msgctxt "@text" -#~ msgid "- Customize your experience with more print profiles and plugins" -#~ msgstr "- Новые профили печати и подключаемые модули позволяют вам печатать именно то, что вы хотите" - -#~ msgctxt "@text" -#~ msgid "- Stay flexible by syncing your setup and loading it anywhere" -#~ msgstr "- Функция синхронизации настроек и их загрузки из любого места расширяет ваши возможности" - -#~ msgctxt "@text" -#~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "- Удаленная работа на принтерах Ultimaker обеспечивает повышение эффективности ваших процессов" - -#~ msgctxt "@text" -#~ msgid "" -#~ "Please follow these steps to set up\n" -#~ "Ultimaker Cura. This will only take a few moments." -#~ msgstr "" -#~ "Выполните указанные ниже действия для настройки\n" -#~ "Ultimaker Cura. Это займет немного времени." - -#~ msgctxt "@label" -#~ msgid "What's new in Ultimaker Cura" -#~ msgstr "Что нового в Ultimaker Cura" - -#~ msgctxt "@label ({} is object name)" -#~ msgid "Are you sure you wish to remove {}? This cannot be undone!" -#~ msgstr "Действительно удалить {}? Это действие невозможно будет отменить!" - -#~ msgctxt "@info:status" -#~ msgid "The selected model was too small to load." -#~ msgstr "Выбранная модель слишком мала для загрузки." - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profile {0}" -#~ msgstr "Успешно импортирован профиль {0}" - -#~ msgctxt "@info:status" -#~ msgid "Could not find a quality type {0} for the current configuration." -#~ msgstr "Невозможно найти тип качества {0} для текущей конфигурации." - -#~ msgctxt "info:status" -#~ msgid "Adding printer {} ({}) from your account" -#~ msgstr "Добавление принтера {} ({}) из вашей учетной записи" - -#~ msgctxt "info:hidden list items" -#~ msgid "
  • ... and {} others
  • " -#~ msgstr "
  • ... и еще {} других
  • " - -#~ msgctxt "info:status" -#~ msgid "Printers added from Digital Factory:
      {}
    " -#~ msgstr "Принтеры добавлены из Digital Factory:
      {}
    " - -#~ msgctxt "info:status" -#~ msgid "
      {}
    To establish a connection, please visit the Ultimaker Digital Factory." -#~ msgstr "
      {}
    Чтобы установить подключение, перейдите на сайт Ultimaker Digital Factory." - -#~ msgctxt "@label ({} is printer name)" -#~ msgid "{} will be removed until the next account sync.
    To remove {} permanently, visit Ultimaker Digital Factory.

    Are you sure you want to remove {} temporarily?" -#~ msgstr "{} будет удален до следующей синхронизации учетной записи.
    Чтобы удалить {} без возможности восстановления, перейдите на сайт Ultimaker Digital Factory.

    Действительно удалить {} временно?" - -#~ msgctxt "@label" -#~ msgid "" -#~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n" -#~ "Are you sure you want to continue?" -#~ msgstr "" -#~ "Вы удаляете {} принтера(-ов) из Cura. Это действие невозможно будет отменить. \n" -#~ "Вы уверены, что хотите продолжить?" - -#~ msgctxt "@label" -#~ 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. Это действие невозможно будет отменить.Вы уверены, что хотите продолжить?" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update" -#~ msgstr "Обновить" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Create new" -#~ msgstr "Создать новый" - -#~ msgctxt "@label" -#~ msgid "Shared Heater" -#~ msgstr "Общий нагреватель" - -#~ msgctxt "@info" -#~ msgid "The webcam is not available because you are monitoring a cloud printer." -#~ msgstr "Веб-камера недоступна, поскольку вы отслеживаете облачный принтер." - -#~ msgctxt "@button" -#~ msgid "Ultimaker Digital Factory" -#~ msgstr "Ultimaker Digital Factory" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can Discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "Вы изменили некоторые настройки профиля.\n" -#~ "Хотите сохранить измененные настройки после переключения профилей?\n" -#~ "Изменения можно отменить и загрузить настройки по умолчанию из \"%1\"." - -#~ msgctxt "@label" -#~ msgid "Overrides %1 setting." -#~ msgid_plural "Overrides %1 settings." -#~ msgstr[0] "Переопределяет %1 настройку." -#~ msgstr[1] "Переопределяет %1 настройки." -#~ msgstr[2] "Переопределяет %1 настроек." - -#~ msgctxt "@text" -#~ msgid "Please give your printer a name" -#~ msgstr "Присвойте имя принтеру" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." -#~ msgstr "Для {machine_name} доступны новые функции! Рекомендуется обновить встроенное программное обеспечение принтера." - -#~ msgctxt "@action:button" -#~ msgid "Print via Cloud" -#~ msgstr "Печать через облако" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print via Cloud" -#~ msgstr "Печать через облако" - -#~ msgctxt "@info:status" -#~ msgid "Connected via Cloud" -#~ msgstr "Подключено через облако" - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Подключиться к облаку Ultimaker Cloud" - -#~ msgctxt "@label" -#~ msgid "You need to login first before you can rate" -#~ msgstr "Для оценивания необходимо войти в систему" - -#~ msgctxt "@label" -#~ msgid "You need to install the package before you can rate" -#~ msgstr "Для оценивания необходимо установить пакет" - -#~ msgctxt "@label" -#~ msgid "ratings" -#~ msgstr "оценки" - -#~ msgctxt "@label" -#~ msgid "Featured" -#~ msgstr "Рекомендуемые" - -#~ msgctxt "@label" -#~ msgid "Your rating" -#~ msgstr "Ваша оценка" - -#~ msgctxt "@label" -#~ msgid "Author" -#~ msgstr "Автор" - -#~ msgctxt "@description" -#~ msgid "Get plugins and materials verified by Ultimaker" -#~ msgstr "Получите встраиваемые модули и материалы, утвержденные Ultimaker" - -#~ msgctxt "@label The argument is a username." -#~ msgid "Hi %1" -#~ msgstr "Приветствуем, %1" - -#~ msgctxt "@button" -#~ msgid "Ultimaker account" -#~ msgstr "Учетная запись Ultimaker" - -#~ msgctxt "@button" -#~ msgid "Sign out" -#~ msgstr "Выйти" - -#~ msgctxt "@label" -#~ msgid "Support library for analysis of complex networks" -#~ msgstr "Вспомогательная библиотека для анализа сложных сетей" - -#~ msgctxt "@Label" -#~ msgid "Python HTTP library" -#~ msgstr "Библиотека Python HTTP" - -#~ msgctxt "@text:window" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to keep or discard those settings?" -#~ msgstr "" -#~ "Вы изменили некоторые параметры профиля.\n" -#~ "Желаете сохранить их или вернуть к прежним значениям?" - -#~ msgctxt "@title:column" -#~ msgid "Default" -#~ msgstr "По умолчанию" - -#~ msgctxt "@title:column" -#~ msgid "Customized" -#~ msgstr "Свой" - -#~ msgctxt "@action:button" -#~ msgid "Discard" -#~ msgstr "Сбросить" - -#~ msgctxt "@action:button" -#~ msgid "Keep" -#~ msgstr "Сохранить" - -#~ msgctxt "@action:button" -#~ msgid "Create New Profile" -#~ msgstr "Создать новый профиль" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "&Save..." -#~ msgstr "&Сохранить..." - -#~ msgctxt "@text" -#~ msgid "Place enter your printer's IP address." -#~ msgstr "Введите IP-адрес своего принтера." - -#~ msgctxt "@button" -#~ msgid "Create an account" -#~ msgstr "Создать учетную запись" - -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Do you want to sync material and software packages with your account?" -#~ msgstr "" -#~ "\n" -#~ "Хотите синхронизировать пакеты материалов и программного обеспечения со своей учетной записью?" - -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Syncing..." -#~ msgstr "" -#~ "\n" -#~ "Синхронизация..." - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder." -#~ msgstr "Нечего нарезать, так как ни одна модель не попадает в объем принтера либо она назначена отключенному экструдеру. Отмасштабируйте/поверните модели либо включите экструдер." - -#~ msgctxt "@info:backup_status" -#~ msgid "There was an error listing your backups." -#~ msgstr "При составлении списка ваших резервных копий возникла ошибка." - -#~ msgctxt "@title:groupbox" -#~ msgid "User description (Note: Developers may not speak your language, please use English if possible)" -#~ msgstr "Пользовательское описание (примечание: по возможности пишите на английском языке, так как разработчики могут не знать вашего языка)" - -#~ msgctxt "@title:window" -#~ msgid "Closing Cura" -#~ msgstr "Закрытие Cura" - -#~ msgctxt "@label" -#~ msgid "Are you sure you want to exit Cura?" -#~ msgstr "Вы уверены, что хотите выйти из Cura?" - -#~ msgctxt "@label" -#~ msgid "Language:" -#~ msgstr "Язык:" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud" - -#~ msgctxt "@text" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "Рабочий процесс трехмерной печати следующего поколения" - -#~ msgctxt "@text" -#~ msgid "- Send print jobs to Ultimaker printers outside your local network" -#~ msgstr "- Отправляйте задания печати на принтеры Ultimaker за пределами вашей локальной сети" - -#~ msgctxt "@text" -#~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere" -#~ msgstr "- Храните параметры Ultimaker Cura в облаке, чтобы применять их из любого места" - -#~ msgctxt "@text" -#~ msgid "- Get exclusive access to print profiles from leading brands" -#~ msgstr "- Получайте эксклюзивный доступ к профилям печати от ведущих брендов" - -#~ msgctxt "@label" -#~ msgid "The value is resolved from per-extruder values " -#~ msgstr "Значение получается из параметров каждого экструдера " - -#~ msgctxt "@label" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "Рабочий процесс трехмерной печати следующего поколения" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to print profiles from leading brands" -#~ msgstr "" -#~ "- Отправляйте задания печати на принтеры Ultimaker за пределами вашей локальной сети\n" -#~ "- Храните параметры Ultimaker Cura в облаке, чтобы применять их из любого места\n" -#~ "- Получайте эксклюзивный доступ к профилям печати от ведущих брендов" - -#~ msgctxt "@title:window" -#~ msgid "About " -#~ msgstr "Сведения " - -#~ msgctxt "@info:button" -#~ msgid "Quit Cura" -#~ msgstr "Выйти из Cura" - -#~ msgctxt "@action:checkbox" -#~ msgid "Infill only" -#~ msgstr "Только заполнение" - -#~ msgctxt "@info:tooltip" -#~ msgid "Change active post-processing scripts" -#~ msgstr "Изменить активные скрипты пост-обработки" - -#~ msgctxt "@label:listbox" -#~ msgid "Feedrate" -#~ msgstr "Скорость подачи" - -#~ msgctxt "name" -#~ msgid "Machine Settings action" -#~ msgstr "Параметры принтера действие" - -#~ msgctxt "@info:title" -#~ msgid "New cloud printers found" -#~ msgstr "Обнаружены новые облачные принтеры" - -#~ msgctxt "@info:message" -#~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers." -#~ msgstr "Обнаружены новые принтеры, подключенные к вашей учетной записи; вы можете найти их в списке обнаруженных принтеров." - -#~ msgctxt "@info:status" -#~ msgid "Cura does not accurately display layers when Wire Printing is enabled" -#~ msgstr "Cura не аккуратно отображает слои при использовании печати через кабель" - -#~ msgctxt "@label" -#~ msgid "Pre-sliced file {0}" -#~ msgstr "Предообратка файла {0}" - -#~ msgctxt "@label" -#~ msgid "" -#~ "This plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ "Этот плагин содержит лицензию.\n" -#~ "Чтобы установить этот плагин, необходимо принять условия лицензии.\n" -#~ "Принять приведенные ниже условия?" - -#~ msgctxt "@action:button" -#~ msgid "Accept" -#~ msgstr "Принять" - -#~ msgctxt "@action:button" -#~ msgid "Decline" -#~ msgstr "Отклонить" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show All Settings" -#~ msgstr "Показывать все настройки" - -#~ msgctxt "@title:window" -#~ msgid "Ultimaker Cura" -#~ msgstr "Ultimaker Cura" - -#~ msgctxt "@title:window" -#~ msgid "About Cura" -#~ msgstr "О Cura" - -#~ msgctxt "@item:inmenu" -#~ msgid "Flatten active settings" -#~ msgstr "Сбросить текущие параметры к стандартным значениям" - -#~ msgctxt "@info:status" -#~ msgid "Profile has been flattened & activated." -#~ msgstr "Профиль был нормализован и активирован." - -#~ msgctxt "X3g Writer Plugin Description" -#~ msgid "Writes X3g to files" -#~ msgstr "Записывает X3g в файлы" - -#~ msgctxt "X3g Writer File Description" -#~ msgid "X3g File" -#~ msgstr "Файл X3g" - -#~ msgctxt "X3G Writer File Description" -#~ msgid "X3G File" -#~ msgstr "Файл X3G" - -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "Помощник по профилю" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "Помощник по профилю" - -#~ msgctxt "@action:button" -#~ msgid "Retry" -#~ msgstr "Повторить" - -#~ msgctxt "@label:table_header" -#~ msgid "Print Core" -#~ msgstr "Экструдер" - -#~ msgctxt "@label" -#~ msgid "Don't support overlap with other models" -#~ msgstr "Не поддерживать перекрытие с другими моделями" - -#~ msgctxt "@label" -#~ msgid "Modify settings for overlap with other models" -#~ msgstr "Изменять настройки для перекрытия с другими моделями" - -#~ msgctxt "@label" -#~ msgid "Modify settings for infill of other models" -#~ msgstr "Изменять настройки для заполнения других моделей" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update existing" -#~ msgstr "Обновить существующий" - -#~ msgctxt "@label" -#~ msgid "Not supported" -#~ msgstr "Не поддерживается" - -#~ msgctxt "@action:button" -#~ msgid "Previous" -#~ msgstr "Предыдущий" - -#~ msgctxt "@label" -#~ msgid "Tip" -#~ msgstr "Кончик" - -#~ msgctxt "@label" -#~ msgid "Print experiment" -#~ msgstr "Пробная печать" - -#~ msgctxt "@label" -#~ msgid "Checklist" -#~ msgstr "Контрольный список" - -#~ msgctxt "@label" -#~ msgid "Please select any upgrades made to this Ultimaker 2." -#~ msgstr "Пожалуйста, укажите любые изменения, внесённые в Ultimaker 2." - -#~ msgctxt "@label" -#~ msgid "Olsson Block" -#~ msgstr "Блок Олссона" - -#~ msgctxt "@window:text" -#~ msgid "Camera rendering: " -#~ msgstr "Рендеринг камеры: " - -#~ msgctxt "@info:tooltip" -#~ msgid "Use multi build plate functionality" -#~ msgstr "Использовать функционал нескольких рабочих столов" - -#~ msgctxt "@option:check" -#~ msgid "Use multi build plate functionality (restart required)" -#~ msgstr "Использовать функционал нескольких рабочих столов (требуется перезапуск)" - -#~ msgctxt "@label" -#~ msgid "Default profiles" -#~ msgstr "Профили по умолчанию" - -#~ msgctxt "@label:textbox" -#~ msgid "search settings" -#~ msgstr "параметры поиска" - -#~ msgctxt "@label" -#~ msgid "Layer Height" -#~ msgstr "Высота слоя" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile." -#~ msgstr "Этот профиль качества недоступен для вашей текущей конфигурации материала и сопла. Измените эти параметры для задействования данного профиля качества." - -#~ msgctxt "@tooltip" -#~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" -#~ msgstr "В настоящее время активен пользовательский профиль. Чтобы включить ползунок качества, на вкладке «Пользовательские» выберите профиль качества по умолчанию" - -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "Рабочий стол" - -#~ msgctxt "@title:settings" -#~ msgid "&Profile" -#~ msgstr "Профиль" - -#~ msgctxt "@action:label" -#~ msgid "Build plate" -#~ msgstr "Рабочий стол" - -#~ msgctxt "description" -#~ msgid "Dump the contents of all settings to a HTML file." -#~ msgstr "Запись содержимого всех настроек в виде HTML файла." - -#~ msgctxt "name" -#~ msgid "God Mode" -#~ msgstr "Режим бога" - -#~ msgctxt "description" -#~ msgid "Create a flattened quality changes profile." -#~ msgstr "Создание нормализованного профиля с изменениями качества." - -#~ msgctxt "name" -#~ msgid "Profile Flattener" -#~ msgstr "Нормализатор профиля" - -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "Позволяет производителям материалов создавать новые профили материалов и качества с помощью дружественного интерфейса." - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "Помощник по профилю печати" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network." -#~ msgstr "Подключен по сети." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. Please approve the access request on the printer." -#~ msgstr "Подключен по сети. Пожалуйста, подтвердите запрос на принтере." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. No access to control the printer." -#~ msgstr "Подключен по сети. Нет доступа к управлению принтером." - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer requested. Please approve the request on the printer" -#~ msgstr "Запрошен доступ к принтеру. Пожалуйста, подтвердите запрос на принтере" - -#~ msgctxt "@info:title" -#~ msgid "Authentication status" -#~ msgstr "Состояние аутентификации" - -#~ msgctxt "@info:title" -#~ msgid "Authentication Status" -#~ msgstr "Состояние аутентификации" - -#~ msgctxt "@info:tooltip" -#~ msgid "Re-send the access request" -#~ msgstr "Послать запрос доступа ещё раз" - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer accepted" -#~ msgstr "Доступ к принтеру получен" - -#~ msgctxt "@info:status" -#~ msgid "No access to print with this printer. Unable to send print job." -#~ msgstr "Нет доступа к использованию этого принтера. Невозможно отправить задачу на печать." - -#~ msgctxt "@action:button" -#~ msgid "Request Access" -#~ msgstr "Запросить доступ" - -#~ msgctxt "@info:tooltip" -#~ msgid "Send access request to the printer" -#~ msgstr "Отправить запрос на доступ к принтеру" - -#~ msgctxt "@label" -#~ msgid "Unable to start a new print job." -#~ msgstr "Не удалось начать новое задание печати." - -#~ msgctxt "@label" -#~ msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." -#~ msgstr "Возникла проблема конфигурации Ultimaker, из-за которой невозможно начать печать. Перед продолжением работы решите возникшую проблему." - -#~ msgctxt "@window:title" -#~ msgid "Mismatched configuration" -#~ msgstr "Несовпадение конфигурации" - -#~ msgctxt "@label" -#~ msgid "Are you sure you wish to print with the selected configuration?" -#~ msgstr "Вы уверены, что желаете печатать с использованием выбранной конфигурации?" - -#~ msgctxt "@label" -#~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "Есть несовпадение между конфигурацией или калибровкой принтера и Cura. Для лучшего результата, всегда производите слайсинг для PrintCore и материала, которые установлены в вашем принтере." - -#~ msgctxt "@info:status" -#~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." -#~ msgstr "Отправка новых заданий (временно) заблокирована, идёт отправка предыдущего задания." - -#~ msgctxt "@info:status" -#~ msgid "Sending data to printer" -#~ msgstr "Отправка данных на принтер" - -#~ msgctxt "@info:title" -#~ msgid "Sending Data" -#~ msgstr "Отправка данных" - -#~ msgctxt "@info:status" -#~ msgid "No Printcore loaded in slot {slot_number}" -#~ msgstr "Модуль экструдера PrintCore не загружен в слот {slot_number}" - -#~ msgctxt "@info:status" -#~ msgid "No material loaded in slot {slot_number}" -#~ msgstr "Материал не загружен в слот {slot_number}" - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" -#~ msgstr "Другой модуль экструдера PrintCore (Cura: {cura_printcore_name}, принтер: {remote_printcore_name}) выбран для экструдера {extruder_id}" - -#~ msgctxt "@label" -#~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Разный материал (Cura: {0}, Принтер: {1}) выбран для экструдера {2}" - -#~ msgctxt "@window:title" -#~ msgid "Sync with your printer" -#~ msgstr "Синхронизация с вашим принтером" - -#~ msgctxt "@label" -#~ msgid "Would you like to use your current printer configuration in Cura?" -#~ msgstr "Желаете использовать текущую конфигурацию принтера в Cura?" - -#~ msgctxt "@label" -#~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "Модуль PrintCore и/или материал в вашем принтере отличается от тех, что вы используете в текущем проекте. Для наилучшего результата всегда указывайте правильный модуль PrintCore и материалы, которые вставлены в ваш принтер." - -#~ msgctxt "@action:button" -#~ msgid "View in Monitor" -#~ msgstr "Просмотр на мониторе" - -#~ msgctxt "@info:status" -#~ msgid "Printer '{printer_name}' has finished printing '{job_name}'." -#~ msgstr "{printer_name} завершил печать '{job_name}'." - -#~ msgctxt "@info:status" -#~ msgid "The print job '{job_name}' was finished." -#~ msgstr "Задание печати '{job_name}' выполнено." - -#~ msgctxt "@info:status" -#~ msgid "Print finished" -#~ msgstr "Печать завершена" - -#~ msgctxt "@label:material" -#~ msgid "Empty" -#~ msgstr "Пусто" - -#~ msgctxt "@label:material" -#~ msgid "Unknown" -#~ msgstr "Неизвестн" - -#~ msgctxt "@info:title" -#~ msgid "Cloud error" -#~ msgstr "Ошибка облака" - -#~ msgctxt "@info:status" -#~ msgid "Could not export print job." -#~ msgstr "Облако не экспортировало задание печати." - -#~ msgctxt "@info:description" -#~ msgid "There was an error connecting to the cloud." -#~ msgstr "При подключении к облаку возникла ошибка." - -#~ msgctxt "@info:status" -#~ msgid "Uploading via Ultimaker Cloud" -#~ msgstr "Заливка через облако Ultimaker Cloud" - -#~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Подключиться к облаку Ultimaker Cloud" - -#~ msgctxt "@action" -#~ msgid "Don't ask me again for this printer." -#~ msgstr "Не спрашивать меня снова для этого принтера." - -#~ msgctxt "@info:status" -#~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Теперь вы можете отправлять и отслеживать задания печати из любого места с помощью вашей учетной записи Ultimaker." - -#~ msgctxt "@info:status" -#~ msgid "Connected!" -#~ msgstr "Подключено!" - -#~ msgctxt "@action" -#~ msgid "Review your connection" -#~ msgstr "Проверьте свое подключение" - -#~ msgctxt "@info:status Don't translate the XML tags !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "Принтер, заданный в профиле {0} ({1}), не совпадает с вашим текущим принтером ({2}), поэтому его невозможно импортировать." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}:" -#~ msgstr "Не удалось импортировать профиль из {0}:" - -#~ msgctxt "@window:title" -#~ msgid "Existing Connection" -#~ msgstr "Текущее подключение" - -#~ msgctxt "@message:text" -#~ msgid "This printer/group is already added to Cura. Please select another printer/group." -#~ msgstr "Этот принтер/группа уже добавлен (-а) в Cura. Выберите другой (-ую) принтер/группу." - -#~ msgctxt "@label" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "Введите IP-адрес принтера или его имя в сети." - -#~ msgctxt "@info:tooltip" -#~ msgid "Connect to a printer" -#~ msgstr "Подключение к принтеру" - -#~ msgctxt "@title" -#~ msgid "Cura Settings Guide" -#~ msgstr "Руководство по параметрам Cura" - -#~ msgctxt "@info:tooltip" -#~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective." -#~ msgstr "В ортогональной проекции изменение масштаба мышью не поддерживается." - -#~ msgid "Orthogonal" -#~ msgstr "Ортогональная" - -#~ msgctxt "description" -#~ msgid "Manages network connections to Ultimaker 3 printers." -#~ msgstr "Управляет сетевыми соединениями с принтерами Ultimaker 3." - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection" -#~ msgstr "Соединение с сетью UM3" - -#~ msgctxt "description" -#~ msgid "Provides extra information and explanations about settings in Cura, with images and animations." -#~ msgstr "Предоставляет дополнительную информацию и пояснения относительно параметров Cura с изображениями и анимацией." - -#~ msgctxt "name" -#~ msgid "Settings Guide" -#~ msgstr "Руководство по параметрам" - -#~ msgctxt "@item:inmenu" -#~ msgid "Cura Settings Guide" -#~ msgstr "Руководство по параметрам Cura" - -#~ msgctxt "@info:generic" -#~ msgid "Settings have been changed to match the current availability of extruders: [%s]" -#~ msgstr "Настройки изменены в соответствии с текущей доступностью экструдеров: [%s]" - -#~ msgctxt "@title:groupbox" -#~ msgid "User description" -#~ msgstr "Описание пользователя" - -#~ msgctxt "@info" -#~ msgid "These options are not available because you are monitoring a cloud printer." -#~ msgstr "Указанные опции недоступны, поскольку вы отслеживаете облачный принтер." - -#~ msgctxt "@label link to connect manager" -#~ msgid "Go to Cura Connect" -#~ msgstr "Перейти к Cura Connect" - -#~ msgctxt "@info" -#~ msgid "All jobs are printed." -#~ msgstr "Все задания печати выполнены." - -#~ msgctxt "@label link to connect manager" -#~ msgid "View print history" -#~ 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.\n" -#~ "\n" -#~ "Select your printer from the list below:" -#~ msgstr "" -#~ "Для печати на вашем принтере через сеть, пожалуйста, удостоверьтесь, что ваш принтер подключен к сети с помощью кабеля или через WiFi. Если вы не подключили Cura к вашему принтеру, вы по-прежнему можете использовать USB флешку для переноса G-Code файлов на ваш принтер.\n" -#~ "\n" -#~ "Укажите ваш принтер в списке ниже:" - -#~ 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." -#~ msgstr "" -#~ "Проверьте наличие подключения к принтеру:\n" -#~ "- Убедитесь, что принтер включен.\n" -#~ "- Проверьте, подключен ли принтер к сети." - -#~ msgctxt "@option:check" -#~ msgid "See only current build plate" -#~ msgstr "Показывать только текущий рабочий стол" - -#~ msgctxt "@action:button" -#~ msgid "Arrange to all build plates" -#~ msgstr "Выровнять для всех рабочих столов" - -#~ msgctxt "@action:button" -#~ msgid "Arrange current build plate" -#~ msgstr "Выровнять текущий рабочий стол" - -#~ msgctxt "description" -#~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)." -#~ msgstr "Разрешить сохранение результирующего слоя в формате X3G для поддержки принтеров, считывающих этот формат (Malyan, Makerbot и другие принтеры на базе Sailfish)." - -#~ msgctxt "name" -#~ msgid "X3GWriter" -#~ msgstr "X3GWriter" - -#~ msgctxt "description" -#~ msgid "Reads SVG files as toolpaths, for debugging printer movements." -#~ msgstr "Считывает файлы SVG как пути инструментов для отладки движений принтера." - -#~ msgctxt "name" -#~ msgid "SVG Toolpath Reader" -#~ msgstr "Средство считывания путей инструментов SVG" - -#~ msgctxt "@item:inmenu" -#~ msgid "Changelog" -#~ msgstr "Журнал изменений" - -#~ msgctxt "@item:inmenu" -#~ msgid "Show Changelog" -#~ msgstr "Показать журнал изменений" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to remote cluster" -#~ msgstr "Отправка данных на удаленный кластер" - -#~ msgctxt "@info:status" -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Подключиться к Ultimaker Cloud" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymized usage statistics." -#~ msgstr "Cura собирает анонимизированную статистику об использовании." - -#~ msgctxt "@info:title" -#~ msgid "Collecting Data" -#~ msgstr "Сбор данных" - -#~ msgctxt "@action:button" -#~ msgid "More info" -#~ msgstr "Дополнительно" - -#~ msgctxt "@action:tooltip" -#~ msgid "See more information on what data Cura sends." -#~ msgstr "Ознакомьтесь с дополнительной информацией о данных, отправляемых Cura." - -#~ msgctxt "@action:button" -#~ msgid "Allow" -#~ msgstr "Разрешить" - -#~ msgctxt "@action:tooltip" -#~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." -#~ msgstr "Разрешить Cura отправлять анонимизированную статистику об использовании, чтобы помочь назначить приоритеты будущим улучшениям в Cura. Отправлены некоторые ваши настройки и параметры, включая версию Cura и хэш моделей, разделяемых на слои." - -#~ msgctxt "@item:inmenu" -#~ msgid "Evaluation" -#~ msgstr "Оценивание" - -#~ msgctxt "@info:title" -#~ msgid "Network enabled printers" -#~ msgstr "Подключенные к сети принтеры" - -#~ msgctxt "@info:title" -#~ msgid "Local printers" -#~ msgstr "Локальные принтеры" - -#~ msgctxt "@info:backup_failed" -#~ msgid "Tried to restore a Cura backup that does not match your current version." -#~ msgstr "Попытка восстановить резервную копию Cura, не совпадающую с вашей текущей версией." - -#~ msgctxt "@title" -#~ msgid "Machine Settings" -#~ msgstr "Параметры принтера" - -#~ msgctxt "@label" -#~ msgid "Printer Settings" -#~ msgstr "Параметры принтера" - -#~ msgctxt "@option:check" -#~ msgid "Origin at center" -#~ msgstr "Начало координат в центре" - -#~ msgctxt "@option:check" -#~ msgid "Heated bed" -#~ msgstr "Нагреваемый стол" - -#~ msgctxt "@label" -#~ msgid "Printhead Settings" -#~ msgstr "Параметры головы" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Расстояние от левого края головы до центра сопла. Используется для предотвращения столкновений с уже напечатанной частью и головой в режиме \"По отдельности\"." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Расстояние от переднего края головы до центра сопла. Используется для предотвращения столкновений с уже напечатанной частью и головой в режиме \"По отдельности\"." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Расстояние от правого края головы до центра сопла. Используется для предотвращения столкновений с уже напечатанной частью и головой в режиме \"По отдельности\"." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Расстояние от заднего края головы до центра сопла. Используется для предотвращения столкновений с уже напечатанной частью и головой в режиме \"По отдельности\"." - -#~ msgctxt "@label" -#~ msgid "Gantry height" -#~ msgstr "Высота портала" - -#~ msgctxt "@tooltip" -#~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." -#~ msgstr "Разница в высоте от кончика сопла до портала (по осям X и Y). Используется для предотвращения столкновений с уже напечатанной частью и головой в режиме \"По отдельности\"." - -#~ msgctxt "@label" -#~ msgid "Start G-code" -#~ msgstr "Стартовый G-код" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very start." -#~ msgstr "Команды в G-коде, которые будут выполнены в самом начале." - -#~ msgctxt "@label" -#~ msgid "End G-code" -#~ msgstr "Завершающий G-код" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very end." -#~ msgstr "Команды в G-коде, которые будут выполнены в самом конце." - -#~ msgctxt "@label" -#~ msgid "Nozzle Settings" -#~ msgstr "Параметры сопла" - -#~ msgctxt "@tooltip" -#~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." -#~ msgstr "Номинальный диаметр материала, поддерживаемый принтером. Точный диаметр будет указан в материале и/или в профиле." - -#~ msgctxt "@label" -#~ msgid "Extruder Start G-code" -#~ msgstr "Стартовый G-код экструдера" - -#~ msgctxt "@label" -#~ msgid "Extruder End G-code" -#~ msgstr "Завершающий G-код экструдера" - -#~ msgctxt "@label" -#~ msgid "Changelog" -#~ msgstr "Журнал изменений" - -#~ msgctxt "@title:window" -#~ msgid "User Agreement" -#~ msgstr "Пользовательское соглашение" - -#~ msgctxt "@alabel" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "Введите IP-адрес принтера или его имя в сети." - -#~ msgctxt "@info" -#~ msgid "Please select a network connected printer to monitor." -#~ msgstr "Выберите принтер, подключенный к сети, который необходимо отслеживать." - -#~ msgctxt "@info" -#~ msgid "Please connect your Ultimaker printer to your local network." -#~ msgstr "Подключите ваш принтер Ultimaker к своей локальной сети." - -#~ msgctxt "@text:window" -#~ msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent." -#~ msgstr "Cura отправляет анонимные данные в Ultimaker для повышения качества печати и взаимодействия с пользователем. Ниже приведен пример всех отправляемых данных." - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send this data" -#~ msgstr "Не хочу отправлять описанные данные" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending this data to Ultimaker and help us improve Cura" -#~ msgstr "Разрешить отправку описанных данных в Ultimaker для улучшения Cura" - -#~ msgctxt "@label" -#~ msgid "No print selected" -#~ msgstr "Печать не выбрана" - -#~ msgctxt "@info:tooltip" -#~ 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 "@title" -#~ msgid "Select Printer Upgrades" -#~ msgstr "Выбор компонентов для обновления" - -#~ msgctxt "@label" -#~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "Выбирает, какой экструдер следует использовать для поддержек. Будут созданы поддерживающие структуры под моделью для предотвращения проседания краёв или печати в воздухе." - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "Этот профиль качества недоступен для вашей текущей конфигурации материала и сопла. Измените эти настройки для задействования данного профиля качества" - -#~ msgctxt "@label shown when we load a Gcode file" -#~ msgid "Print setup disabled. G code file can not be modified." -#~ msgstr "Настройка печати отключена. Невозможно изменить файл с G-кодом." - -#~ msgctxt "@label" -#~ msgid "See the material compatibility chart" -#~ msgstr "См. таблицу совместимости материалов" - -#~ msgctxt "@label" -#~ msgid "View types" -#~ msgstr "Просмотр типов" - -#~ msgctxt "@label" -#~ msgid "Hi " -#~ msgstr "Приветствуем! " - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to material profiles from leading brands" -#~ msgstr "" -#~ "- Отправляйте задания печати на принтеры Ultimaker за пределами вашей локальной сети\n" -#~ "- Храните параметры Ultimaker Cura в облаке, чтобы применять их из любого места\n" -#~ "- Получите эксклюзивный доступ к профилям материалов от лидирующих производителей" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Unable to Slice" -#~ msgstr "Невозможно нарезать" - -#~ msgctxt "@label" -#~ msgid "Time specification" -#~ msgstr "Настройка расчета времени" - -#~ msgctxt "@label" -#~ msgid "Material specification" -#~ msgstr "Характеристики материала" - -#~ msgctxt "@title:tab" -#~ msgid "Add a printer to Cura" -#~ msgstr "Добавить принтер к Cura" - -#~ msgctxt "@title:tab" -#~ msgid "" -#~ "Select the printer you want to use from the list below.\n" -#~ "\n" -#~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog." -#~ msgstr "" -#~ "Выберите желаемый принтер в списке ниже.\n" -#~ "\n" -#~ "Если принтер отсутствует в списке, воспользуйтесь опцией «Собственный принтер FFF» из категории «Свое». Затем в открывшемся диалоговом окне настройте параметры в соответствии с характеристиками вашего принтера." - -#~ msgctxt "@label" -#~ msgid "Printer Name" -#~ msgstr "Имя принтера" - -#~ msgctxt "@action:button" -#~ msgid "Add Printer" -#~ msgstr "Добавить принтер" - -#~ msgid "Modify G-Code" -#~ msgstr "Изменить G-код" - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." -#~ msgstr "Нечего нарезать, так как ни одна модель не попадает в объём принтера. Пожалуйста, отмасштабируйте или поверните модель." - -#~ msgctxt "@info:status" -#~ msgid "The selected material is incompatible with the selected machine or configuration." -#~ msgstr "Выбранный материал несовместим с выбранным принтером или конфигурацией." - -#~ msgctxt "@info:title" -#~ msgid "Incompatible Material" -#~ msgstr "Несовместимый материал" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "Невозможно импортировать профиль из {0}: {1}" - -#~ msgctxt "@title" -#~ msgid "Toolbox" -#~ msgstr "Панель инструментов" - -#~ msgctxt "@label" -#~ msgid "Not available" -#~ msgstr "Недоступно" - -#~ msgctxt "@label" -#~ msgid "Unreachable" -#~ msgstr "Недостижимо" - -#~ msgctxt "@label" -#~ msgid "Available" -#~ msgstr "Доступен" - -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "Подготовка" - -#~ msgctxt "@label:status" -#~ msgid "Pausing" -#~ msgstr "Приостановка" - -#~ msgctxt "@label:status" -#~ msgid "Resuming" -#~ msgstr "Возобновляется" - -#~ msgctxt "@label" -#~ msgid "Waiting for: Unavailable printer" -#~ msgstr "Ожидание: недоступный принтер" - -#~ msgctxt "@label" -#~ msgid "Waiting for: First available" -#~ msgstr "Ожидание: первое доступное" - -#~ msgctxt "@label" -#~ msgid "Waiting for: " -#~ msgstr "Ожидание: " - -#~ msgctxt "@label" -#~ msgid "Configuration change" -#~ msgstr "Изменение конфигурации" - -#~ msgctxt "@label" -#~ msgid "The assigned printer, %1, requires the following configuration change(s):" -#~ msgstr "Для назначенного принтера %1 требуются следующие изменения конфигурации:" - -#~ msgctxt "@label" -#~ msgid "Override" -#~ msgstr "Переопределить" - -#~ msgctxt "@label" -#~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?" -#~ msgstr "Начало задания печати с несовместимой конфигурацией может привести к повреждению 3D-принтера. Действительно переопределить конфигурацию и печатать %1?" - -#~ msgctxt "@window:title" -#~ msgid "Override configuration configuration and start print" -#~ msgstr "Переопределить конфигурацию и начать печать" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage queue" -#~ msgstr "Управление очередью" - -#~ msgctxt "@label" -#~ msgid "Printing" -#~ msgstr "Печать" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage printers" -#~ msgstr "Управление принтерами" - -#~ msgctxt "@action:button" -#~ msgid "Activate Configuration" -#~ msgstr "Активировать конфигурацию" - -#~ msgctxt "@info:tooltip" -#~ msgid "Load the configuration of the printer into Cura" -#~ msgstr "Загрузка конфигурации принтера в Cura" - -#~ msgctxt "@label" -#~ msgid "Show Travels" -#~ msgstr "Показать движения" - -#~ msgctxt "@label" -#~ msgid "Show Helpers" -#~ msgstr "Показать поддержку" - -#~ msgctxt "@label" -#~ msgid "Show Shell" -#~ msgstr "Показать стенки" - -#~ msgctxt "@label" -#~ msgid "Show Infill" -#~ msgstr "Показать заполнение" - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send these data" -#~ msgstr "Не хочу отправлять описанные данные" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending these data to Ultimaker and help us improve Cura" -#~ msgstr "Разрешить отправку описанных данных в Ultimaker для улучшения Cura" - -#~ msgctxt "@label" -#~ msgid "Printer type:" -#~ msgstr "Тип принтера:" - -#~ msgctxt "@label" -#~ msgid "Connection:" -#~ msgstr "Соединение:" - -#~ msgctxt "@label" -#~ msgid "State:" -#~ msgstr "Состояние:" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for a printjob" -#~ msgstr "Ожидаем задание на печать" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for someone to clear the build plate" -#~ msgstr "Ожидаем, чтобы кто-нибудь освободил стол" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Aborting print..." -#~ msgstr "Прерывание печати..." - -#~ msgctxt "@label" -#~ msgid "Protected profiles" -#~ msgstr "Защищённые профили" - -#~ msgctxt "@label" -#~ msgid "Printer Name:" -#~ msgstr "Имя принтера:" - -#~ msgctxt "@label" -#~ msgid "Profile:" -#~ msgstr "Профиль:" - -#~ msgctxt "@label:textbox" -#~ msgid "Search..." -#~ msgstr "Поиск..." - -#~ msgctxt "@action:inmenu" -#~ msgid "Collapse All" -#~ msgstr "Свернуть все" - -#~ msgctxt "@action:inmenu" -#~ msgid "Expand All" -#~ msgstr "Развернуть все" - -#~ msgctxt "@label:header configurations" -#~ msgid "Available configurations" -#~ msgstr "Доступные конфигурации" - -#~ msgctxt "@label:extruder label" -#~ msgid "Extruder" -#~ msgstr "Экструдер" - -#~ msgctxt "@label:extruder label" -#~ msgid "Yes" -#~ msgstr "Да" - -#~ msgctxt "@label:extruder label" -#~ msgid "No" -#~ msgstr "Нет" - -#~ msgctxt "@label:listbox" -#~ msgid "Print Setup" -#~ msgstr "Настройка печати" - -#~ msgctxt "@label:listbox" -#~ msgid "" -#~ "Print Setup disabled\n" -#~ "G-code files cannot be modified" -#~ msgstr "" -#~ "Настройка принтера отключена\n" -#~ "G-code файлы нельзя изменять" - -#~ msgctxt "@label Hours and minutes" -#~ msgid "00h 00min" -#~ msgstr "00 ч 00 мин" - -#~ msgctxt "@tooltip" -#~ msgid "Time specification" -#~ msgstr "Настройка расчета времени" - -#~ msgctxt "@label" -#~ msgid "Cost specification" -#~ msgstr "Настройка расчета стоимости" - -#~ msgctxt "@label" -#~ msgid "Total:" -#~ msgstr "Итого:" - -#~ msgctxt "@tooltip" -#~ msgid "Recommended Print Setup

    Print with the recommended settings for the selected printer, material and quality." -#~ msgstr "Рекомендованные параметры печати

    Печатайте с рекомендованными параметрами для выбранных принтера, материала и качества." - -#~ msgctxt "@tooltip" -#~ msgid "Custom Print Setup

    Print with finegrained control over every last bit of the slicing process." -#~ msgstr "Свои параметры печати

    Печатайте с полным контролем над каждой особенностью процесса слайсинга." - -#~ msgctxt "@action:inmenu menubar:help" -#~ msgid "Show Engine &Log..." -#~ msgstr "Показать журнал движка..." - -#~ msgctxt "@action:menu" -#~ msgid "Browse packages..." -#~ msgstr "Обзор пакетов..." - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "Expand/Collapse Sidebar" -#~ msgstr "Развернуть/свернуть боковую панель" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3D model" -#~ msgstr "Пожалуйста, загрузите 3D модель" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Ready to slice" -#~ msgstr "Готов к нарезке" - -#~ msgctxt "@label:PrintjobStatus %1 is target operation" -#~ msgid "Ready to %1" -#~ msgstr "Готов к %1" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Slicing unavailable" -#~ msgstr "Нарезка недоступна" - -#~ msgctxt "@info:tooltip" -#~ msgid "Slice current printjob" -#~ msgstr "Разделить на слои текущее задание на печать" - -#~ msgctxt "@info:tooltip" -#~ msgid "Cancel slicing process" -#~ msgstr "Отмена разделения на слои" - -#~ msgctxt "@label:Printjob" -#~ msgid "Prepare" -#~ msgstr "Подготовка" - -#~ msgctxt "@label:Printjob" -#~ msgid "Cancel" -#~ msgstr "Отмена" - -#~ msgctxt "@info:tooltip" -#~ msgid "Select the active output device" -#~ msgstr "Выберите активное целевое устройство" - -#~ msgctxt "@title:menu" -#~ msgid "&View" -#~ msgstr "Вид" - -#~ msgctxt "@title:menu" -#~ msgid "&Settings" -#~ msgstr "Параметры" - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "&Toolbox" -#~ msgstr "&Панель инструментов" - -#~ msgctxt "@action:button" -#~ msgid "Open File" -#~ msgstr "Открыть файл" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "Этот профиль качества недоступен для вашей текущей конфигурации материала и сопла. Измените эти настройки для задействования данного профиля качества" - -#~ msgctxt "@label" -#~ msgid "Print Speed" -#~ msgstr "Скорость печати" - -#~ msgctxt "@label" -#~ msgid "Slower" -#~ msgstr "Медленнее" - -#~ msgctxt "@label" -#~ msgid "Faster" -#~ msgstr "Быстрее" - -#~ msgctxt "@label" -#~ msgid "Enable gradual" -#~ msgstr "Постепенное" - -#~ msgctxt "@label" -#~ msgid "Generate Support" -#~ msgstr "Генерация поддержек" - -#~ msgctxt "@label" -#~ msgid "Build Plate Adhesion" -#~ msgstr "Тип прилипания к столу" - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints?
    Read the Ultimaker Troubleshooting Guides" -#~ msgstr "Требуется помощь в улучшении вашей печати?
    Обратитесь к Руководству Ultimaker по решению проблем" - -#~ msgctxt "@title:window" -#~ msgid "Engine Log" -#~ msgstr "Журнал движка" - -#~ msgctxt "@label" -#~ msgid "Printer type" -#~ msgstr "Тип принтера" - -#~ msgctxt "@label" -#~ msgid "Use glue with this material combination" -#~ msgstr "Использовать клей с этой комбинацией материалов" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "Проверить совместимость" - -#~ msgctxt "@tooltip" -#~ msgid "Click to check the material compatibility on Ultimaker.com." -#~ msgstr "Нажмите для проверки совместимости материала на Ultimaker.com." - -#~ msgctxt "description" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "Показывает изменения со времени последней отмеченной версии." - -#~ msgctxt "name" -#~ msgid "Changelog" -#~ msgstr "Журнал изменений" - -#~ msgctxt "description" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "Создаёт профиль со стандартными настройками." - -#~ msgctxt "name" -#~ msgid "Profile flatener" -#~ msgstr "Нормализация профиля" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license." -#~ msgstr "Запрашивает согласие пользователя с условиями лицензии." - -#~ msgctxt "name" -#~ msgid "UserAgreement" -#~ msgstr "UserAgreement" - -#~ msgctxt "@warning:status" -#~ msgid "Please generate G-code before saving." -#~ msgstr "Сгенерируйте G-код перед сохранением." - -#~ msgctxt "@action" -#~ msgid "Upgrade Firmware" -#~ msgstr "Обновление прошивки" - -#~ msgctxt "@label unknown material" -#~ msgid "Unknown" -#~ msgstr "Неизвестно" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "No custom profile to import in file {0}" -#~ msgstr "Отсутствует собственный профиль для импорта в файл {0}" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "This profile {0} contains incorrect data, could not import it." -#~ msgstr "Данный профиль {0} содержит неверные данные, поэтому его невозможно импортировать." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "Принтер, заданный в профиле {0} ({1}), не совпадает с вашим текущим принтером ({2}), поэтому его невозможно импортировать." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall " -#~ msgstr "Подтвердить удаление " - -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1 м / ~ %2 г / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1 м / ~ %2 г" - -#~ msgctxt "@title" -#~ msgid "Upgrade Firmware" -#~ msgstr "Обновление прошивки" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Печать через Doodle3D WiFi-Box" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Печать через Doodle3D WiFi-Box" - -#~ msgctxt "@info:status" -#~ msgid "Connecting to Doodle3D Connect" -#~ msgstr "Соединение с Doodle3D Connect" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to Doodle3D Connect" -#~ msgstr "Отправка данных через Doodle3D Connect" - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -#~ msgstr "Невозможно отправить данные через Doodle3D Connect. Другое задание активно?" - -#~ msgctxt "@info:status" -#~ msgid "Storing data on Doodle3D Connect" -#~ msgstr "Сохранение данных на Doodle3D Connect" - -#~ msgctxt "@info:status" -#~ msgid "File sent to Doodle3D Connect" -#~ msgstr "Файл отправлен через Doodle3D Connect" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect..." -#~ msgstr "Открыть Connect..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Open the Doodle3D Connect web interface" -#~ msgstr "Открыть Doodle3D Connect web интерфейс" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Blender file" -#~ msgstr "Файл Blender" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Could not export using \"{}\" quality!\n" -#~ "Felt back to \"{}\"." -#~ msgstr "" -#~ "Не удалось выполнить экспорт с использованием качества \"{}\"!\n" -#~ "Выполнен возврат к \"{}\"." - -#~ msgctxt "@label" -#~ msgid "Contact" -#~ msgstr "Контакт" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." -#~ msgstr "Данный принтер не настроен для управления группой принтеров Ultimaker 3." - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -#~ msgstr "Данный принтер управляет группой из %1 принтеров Ultimaker 3." - -#~ msgctxt "@label: arg 1 is group name" -#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "%1 не настроен для управления группой подключенных принтеров Ultimaker 3" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Add/Remove printers" -#~ msgstr "Добавить/удалить принтеры" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "Открытие страницы заданий печати в веб-браузере по умолчанию." - -#~ msgctxt "@action:button" -#~ msgid "View print jobs" -#~ msgstr "Просмотреть задания на печать" - -#~ msgctxt "@label:status" -#~ msgid "Preparing to print" -#~ msgstr "Подготовка к печати" - -#~ msgctxt "@label:status" -#~ msgid "Available" -#~ msgstr "Доступен" - -#~ msgctxt "@label:status" -#~ msgid "Lost connection with the printer" -#~ msgstr "Потеряно соединение с принтером" - -#~ msgctxt "@label:status" -#~ msgid "Unknown" -#~ msgstr "Неизвестно" - -#~ msgctxt "@label:status" -#~ msgid "Disabled" -#~ msgstr "Отключено" - -#~ msgctxt "@label:status" -#~ msgid "Reserved" -#~ msgstr "Занят" - -#~ msgctxt "@label" -#~ msgid "Preparing to print" -#~ msgstr "Подготовка к печати" - -#~ msgctxt "@label:status" -#~ msgid "Print aborted" -#~ msgstr "Печать прервана" - -#~ msgctxt "@label" -#~ msgid "Not accepting print jobs" -#~ msgstr "Не принимает задания на печать" - -#~ msgctxt "@label" -#~ msgid "Finishes at: " -#~ msgstr "Заканчивается на: " - -#~ msgctxt "@label" -#~ msgid "Clear build plate" -#~ msgstr "Очистите стол" - -#~ msgctxt "@label" -#~ msgid "Waiting for configuration change" -#~ msgstr "Ожидание изменения конфигурации" - -#~ msgctxt "@title" -#~ msgid "Print jobs" -#~ msgstr "Задания на печать" - -#~ msgctxt "@label:title" -#~ msgid "Printers" -#~ msgstr "Принтеры" - -#~ msgctxt "@action:button" -#~ msgid "View printers" -#~ msgstr "Просмотреть принтеры" - -#~ msgctxt "@label:" -#~ msgid "Pause" -#~ msgstr "Пауза" - -#~ msgctxt "@label:" -#~ msgid "Resume" -#~ msgstr "Продолжить" - -#~ msgctxt "@label:" -#~ msgid "Abort Print" -#~ msgstr "Прервать печать" - -#~ msgctxt "@option:openProject" -#~ msgid "Always ask" -#~ msgstr "Всегда спрашивать" - -#~ msgctxt "@label" -#~ msgid "Override Profile" -#~ msgstr "Переопределение профиля" - -#~ msgctxt "@info:tooltip" -#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -#~ msgstr "Должны ли новые загруженные модели выравниваться на рабочем столе? Используется в сочетании с несколькими рабочими столами (ЭКСПЕРИМЕНТАЛЬНАЯ ОПЦИЯ)" - -#~ msgctxt "@option:check" -#~ msgid "Do not arrange objects on load" -#~ msgstr "Не выравнивать объекты под нагрузкой" - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Save Selection to File" -#~ msgstr "Сохранить выделенное в файл" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &As..." -#~ msgstr "Сохранить как..." - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &Project..." -#~ msgstr "Сохранить проект..." - -#~ msgctxt "@label" -#~ msgid "Use adhesion sheet or glue with this material combination" -#~ msgstr "Использовать клейкий лист или клей с этой комбинацией материалов" - -#~ msgctxt "description" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "Принять G-code и отправить его через WiFi на Doodle3D WiFi-Box." - -#~ msgctxt "name" -#~ msgid "Doodle3D WiFi-Box" -#~ msgstr "Doodle3D WiFi-Box" - -#~ msgctxt "description" -#~ msgid "Provides an edit window for direct script editing." -#~ msgstr "Открывает окно редактирования для непосредственного редактирования скриптов." - -#~ msgctxt "name" -#~ msgid "Live scripting tool" -#~ msgstr "Интерактивный инструмент для работы со скриптами" - -#~ msgctxt "description" -#~ msgid "Helps to open Blender files directly in Cura." -#~ msgstr "Помогает открывать файлы Blender непосредственно в Cura." - -#~ msgctxt "name" -#~ msgid "Blender Integration (experimental)" -#~ msgstr "Интеграция Blender (экспериментальная опция)" - -#~ msgctxt "@info:title" -#~ msgid "Model Checker Warning" -#~ msgstr "Предупреждение средства проверки моделей" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n" -#~ "Tips that may be useful to improve the print quality:\n" -#~ "1) Use rounded corners.\n" -#~ "2) Turn the fan off (only if there are no tiny details on the model).\n" -#~ "3) Use a different material." -#~ msgstr "" -#~ "Некоторые модели могут не напечататься оптимальным образом из-за размера объекта и выбранного материала для моделей: {model_names}.\n" -#~ "Советы, которые могут быть полезны для улучшения качества печати:\n" -#~ "1) используйте закругленные углы;\n" -#~ "2) выключите вентилятор (только при отсутствии миниатюрных деталей на модели);\n" -#~ "3) используйте другой материал." - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "При открытии вашего файла поступили сообщения об ошибках от SolidWorks. Рекомендуется устранить данные проблемы непосредственно в SolidWorks." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ "Thanks!" -#~ msgstr "" -#~ "В вашем чертеже не обнаружены модели. Проверьте еще раз его содержимое и убедитесь в наличии одной части или сборки.\n" -#~ "\n" -#~ "Спасибо!" - -#~ 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" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "В вашем чертеже обнаружено больше одной части или сборки. В данный момент поддерживаются исключительно чертежи с одной частью или сборкой.\n" -#~ "\n" -#~ "Сожалеем!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks part file" -#~ msgstr "Файл компонентов SolidWorks" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks assembly file" -#~ msgstr "Файл сборки SolidWorks" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks drawing file" -#~ msgstr "Файл чертежа SolidWorks" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "Уважаемый клиент!\n" -#~ "Мы не обнаружили подходящую установку SolidWorks в вашей системе. Это означает, что ПО SolidWorks не установлено либо у вас нет подходящей лицензии. Убедитесь, что при запуске ПО SolidWorks оно работает надлежащим образом и (или) обратитесь к своим специалистам по ИКТ.\n" -#~ "\n" -#~ "С наилучшими пожеланиями,\n" -#~ " - Томас Карл Петровски (Thomas Karl Pietrowski)" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "Уважаемый клиент!\n" -#~ "В данный момент этот плагин запущен в операционной системе, отличной от Windows. Плагин функционирует исключительно под управлением ОС Windows с установленным ПО SolidWorks, для которого имеется подходящая лицензия. Установите данный плагин на принтер под управлением Windows с установленным ПО SolidWorks.\n" -#~ "\n" -#~ "С наилучшими пожеланиями,\n" -#~ " - Томас Карл Петровски (Thomas Karl Pietrowski)" - -#~ msgid "Configure" -#~ msgstr "Настройка" - -#~ msgid "Installation guide for SolidWorks macro" -#~ msgstr "Руководство по установке макроса SolidWorks" - -#~ msgctxt "@action:button" -#~ msgid "Disable" -#~ msgstr "Отключить" - -#~ msgctxt "@action:tooltip" -#~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences." -#~ msgstr "Запретить Cura отправлять анонимизированную статистику об использовании. Данное разрешение можно повторно активировать в разделе параметров." - -#~ msgid "Install" -#~ msgstr "Установить" - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory." -#~ msgstr "Не удалось скопировать файлы плагинов Siemens NX. Проверьте переменную среды UGII_USER_DIR. Ей не назначен каталог." - -#~ msgid "Successfully installed Siemens NX Cura plugin." -#~ msgstr "Плагин Siemens NX Cura успешно установлен." - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR." -#~ msgstr "Не удалось скопировать файлы плагинов Siemens NX. Проверьте переменную среды UGII_USER_DIR." - -#~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX." -#~ msgstr "Не удалось установить плагин Siemens NX. Не удалось установить переменную среды UGII_USER_DIR для Siemens NX." - -#~ msgctxt "@info:status" -#~ msgid "Failed to get plugin ID from {0}" -#~ msgstr "Невозможно получить идентификатор плагин {0}" - -#~ msgctxt "@info:tile" -#~ msgid "Warning" -#~ msgstr "Внимание" - -#~ msgctxt "@window:title" -#~ msgid "Plugin browser" -#~ msgstr "Браузер плагинов" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks: Export wizard" -#~ msgstr "SolidWorks: Мастер экспорта" - -#~ msgctxt "@action:label" -#~ msgid "Quality:" -#~ msgstr "Качество:" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (3D-printing)" -#~ msgstr "Точное (3D-печать)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (3D-printing)" -#~ msgstr "Грубое (3D-печать)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (SolidWorks)" -#~ msgstr "Точное (SolidWorks)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (SolidWorks)" -#~ msgstr "Грубое (SolidWorks)" - -#~ msgctxt "@text:window" -#~ msgid "Show this dialog again" -#~ msgstr "Показывать это диалоговое окно в дальнейшем" - -#~ msgctxt "@action:button" -#~ msgid "Continue" -#~ msgstr "Продолжить" - -#~ msgctxt "@action:button" -#~ msgid "Abort" -#~ msgstr "Прервать" - -#~ msgctxt "@title:window" -#~ msgid "How to install Cura SolidWorks macro" -#~ msgstr "Порядок установки макроса Cura SolidWorks" - -#~ msgctxt "@description:label" -#~ msgid "Steps:" -#~ msgstr "Шаги:" - -#~ msgctxt "@action:button" -#~ msgid "" -#~ "Open the directory\n" -#~ "with macro and icon" -#~ msgstr "" -#~ "Откройте каталог\n" -#~ "с макросом и значком" - -#~ msgctxt "@description:label" -#~ msgid "Instructions:" -#~ msgstr "Инструкции:" - -#~ msgctxt "@action:playpause" -#~ msgid "Play" -#~ msgstr "Воспроизвести" - -#~ msgctxt "@action:playpause" -#~ msgid "Pause" -#~ msgstr "Пауза" - -#~ msgctxt "@action:button" -#~ msgid "Previous Step" -#~ msgstr "Предыдущий шаг" - -#~ msgctxt "@action:button" -#~ msgid "Done" -#~ msgstr "Готово" - -#~ msgctxt "@action:button" -#~ msgid "Next Step" -#~ msgstr "Следующий шаг" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks plugin: Configuration" -#~ msgstr "Плагин SolidWorks: Конфигурация" - -#~ msgctxt "@title:tab" -#~ msgid "Conversion settings" -#~ msgstr "Настройки преобразования" - -#~ msgctxt "@label" -#~ msgid "First choice:" -#~ msgstr "Первый выбранный вариант:" - -#~ msgctxt "@text:menu" -#~ msgid "Latest installed version (Recommended)" -#~ msgstr "Последняя установленная версия (рекомендуется)" - -#~ msgctxt "@text:menu" -#~ msgid "Default version" -#~ msgstr "Версия по умолчанию" - -#~ msgctxt "@label" -#~ msgid "Show wizard before opening SolidWorks files" -#~ msgstr "Показывать окно мастера перед открытием файлов SolidWorks" - -#~ msgctxt "@label" -#~ msgid "Automatically rotate opened file into normed orientation" -#~ msgstr "Автоматически поворачивать открытый файл с применением нормированной ориентации" - -#~ msgctxt "@title:tab" -#~ msgid "Installation(s)" -#~ msgstr "Установка (-и)" - -#~ msgctxt "@label" -#~ msgid "COM service found" -#~ msgstr "Обнаружена служба COM" - -#~ msgctxt "@label" -#~ msgid "Executable found" -#~ msgstr "Обнаружен исполняемый файл" - -#~ msgctxt "@label" -#~ msgid "COM starting" -#~ msgstr "COM запускается" - -#~ msgctxt "@label" -#~ msgid "Revision number" -#~ msgstr "Номер редакции" - -#~ msgctxt "@label" -#~ msgid "Functions available" -#~ msgstr "Доступные функции" - -#~ msgctxt "@label (%1 is object name)" -#~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?" -#~ msgstr "Установлен новый диаметр материала %1 мм. Это значение несовместимо с текущим принтером. Продолжить?" - -#~ msgctxt "@action:menu" -#~ msgid "Browse plugins..." -#~ msgstr "Просмотр плагинов..." - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "P&lugins" -#~ msgstr "Плагины" - -#~ msgctxt "@window:title" -#~ msgid "Install Plugin" -#~ msgstr "Установка плагина" - -#~ msgctxt "description" -#~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)" -#~ msgstr "Предоставляет возможность изменения параметров принтера (такие как рабочий объём, диаметр сопла и так далее)" - -#~ msgctxt "description" -#~ msgid "Manages network connections to Ultimaker 3 printers" -#~ msgstr "Управляет сетевыми соединениями с принтерами Ultimaker 3" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations." -#~ msgstr "Позволяет открывать определенные файлы непосредственно с помощью SolidWorks. Преобразование выполняется с помощью данного плагина и дополнительных оптимизаций." - -#~ msgctxt "name" -#~ msgid "SolidWorks Integration" -#~ msgstr "Интеграция с SolidWorks" - -#~ msgctxt "description" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "Автоматически сохраняет настройки, принтеры и профили после внесения изменений." - -#~ msgctxt "name" -#~ msgid "Auto Save" -#~ msgstr "Автосохранение" - -#~ msgctxt "description" -#~ msgid "Helps you to install an 'export to Cura' button in Siemens NX." -#~ msgstr "Позволяет установить кнопку «Экспортировать в Cura» в Siemens NX." - -#~ msgctxt "name" -#~ msgid "Siemens NX Integration" -#~ msgstr "Siemens NX Integration" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new plugins." -#~ msgstr "Поиск, управление и установка новых плагинов." - -#~ msgctxt "name" -#~ msgid "Plugin Browser" -#~ msgstr "Браузер плагинов" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license" -#~ msgstr "Запрашивает согласие пользователя с условиями лицензии" - -#~ msgctxt "description" -#~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)" -#~ msgstr "Предоставляет дополнительные возможности для принтеров Ultimaker (такие как мастер выравнивания стола, выбора обновления и так далее)" - -#~ msgctxt "@item:inlistbox" -#~ msgid "GCode File" -#~ msgstr "Файл GCode" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer is busy or not connected." -#~ msgstr "Невозможно запустить новое задание, потому что принтер занят или не подключен." - -#~ msgctxt "@info:title" -#~ msgid "Printer Unavailable" -#~ msgstr "Принтер недоступен" - -#~ msgctxt "@info:status" -#~ msgid "This printer does not support USB printing because it uses UltiGCode flavor." -#~ msgstr "Данный принтер не поддерживает печать через USB, потому что он использует UltiGCode диалект." - -#~ msgctxt "@info:title" -#~ msgid "USB Printing" -#~ msgstr "USB печать" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer does not support usb printing." -#~ msgstr "Невозможно запустить новую задачу, так как принтер не поддерживает печать через USB." - -#~ msgctxt "@info" -#~ msgid "Unable to update firmware because there are no printers connected." -#~ msgstr "Невозможно обновить прошивку, потому что не были найдены подключенные принтеры." - -#~ msgctxt "@info" -#~ msgid "Could not find firmware required for the printer at %s." -#~ msgstr "Не могу найти прошивку, подходящую для принтера в %s." - -#~ msgctxt "@info:title" -#~ msgid "Printer Firmware" -#~ msgstr "Прошивка принтера" - -#~ msgctxt "@info:title" -#~ msgid "Connection status" -#~ msgstr "Состояние соединения" - -#~ msgctxt "@info:title" -#~ msgid "Connection Status" -#~ msgstr "Состояние соединения" - -#~ msgctxt "@info:status" -#~ msgid "Access request was denied on the printer." -#~ msgstr "Запрос доступа к принтеру был отклонён." - -#~ msgctxt "@info:status" -#~ msgid "Access request failed due to a timeout." -#~ msgstr "Запрос доступа был неудачен из-за таймаута." - -#~ msgctxt "@info:status" -#~ msgid "The connection with the network was lost." -#~ msgstr "Соединение с сетью было потеряно." - -#~ msgctxt "@info:status" -#~ msgid "The connection with the printer was lost. Check your printer to see if it is connected." -#~ msgstr "Соединение с принтером было потеряно. Проверьте свой принтер, подключен ли он." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s." -#~ msgstr "Невозможно запустить новую задачу на печать, принтер занят. Текущий статус принтера %s." - -#~ msgctxt "@info:title" -#~ msgid "Printer Status" -#~ msgstr "Состояние принтера" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}" -#~ msgstr "Невозможно запустить новую задачу на печать. PrinterCore не был загружен в слот {0}" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No material loaded in slot {0}" -#~ msgstr "Невозможно запустить новую задачу на печать. Материал не загружен в слот {0}" - -#~ msgctxt "@label" -#~ msgid "Not enough material for spool {0}." -#~ msgstr "Недостаточно материала в катушке {0}." - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Разный PrintCore (Cura: {0}, Принтер: {1}) выбран для экструдера {2}" - -#~ msgctxt "@label" -#~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "PrintCore {0} не откалибровано. Необходимо выполнить XY калибровку для принтера." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to printer. Is another job still active?" -#~ msgstr "Невозможно отправить данные на принтер. Другая задача всё ещё активна?" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Print aborted. Please check the printer" -#~ msgstr "Печать прервана. Пожалуйста, проверьте принтер" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Pausing print..." -#~ msgstr "Печать приостановлена..." - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Resuming print..." -#~ msgstr "Печать возобновлена..." - -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "Данный принтер не настроен для управления группой подключенных принтеров Ultimaker 3." - -#~ msgctxt "Count is number of printers." -#~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers." -#~ msgstr "Данный принтер управляет группой из {count} подключенных принтеров Ultimaker 3." - -#~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate." -#~ msgstr "{printer_name} завершил печать '{job_name}'. Пожалуйста, освободите область печати." - -#~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing." -#~ msgstr "{printer_name} назначен для печати '{job_name}'. Пожалуйста, измените конфигурацию принтера, чтобы она соответствовала заданию." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "Невозможно отправить новое задание: данный 3D принтер (ещё) не настроен на управление группой подключенных принтеров Ultimaker 3." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send print job to group {cluster_name}." -#~ msgstr "Невозможно отправить задание на группу {cluster_name}." - -#~ msgctxt "@info:status" -#~ msgid "Sent {file_name} to group {cluster_name}." -#~ msgstr "Отправка {file_name} на группу {cluster_name}." - -#~ msgctxt "@action:button" -#~ msgid "Show print jobs" -#~ msgstr "Показать задания на печать" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs interface in your browser." -#~ msgstr "Открыть интерфейс с заданиями печати в вашем браузере." - -#~ msgctxt "@label Printer name" -#~ msgid "Unknown" -#~ msgstr "Неизвестно" - -#~ msgctxt "@info:progress" -#~ msgid "Sending {file_name} to group {cluster_name}" -#~ msgstr "Отправляем {file_name} на группу {cluster_name}" - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "При открытии вашего файла поступили сообщения об ошибках от SolidWorks. Рекомендуется устранить данные проблемы непосредственно в SolidWorks." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ " Thanks!." -#~ msgstr "" -#~ "В вашем чертеже не обнаружены модели. Проверьте еще раз его содержимое и убедитесь в наличии одной части или сборки.\n" -#~ "\n" -#~ "Благодарим!" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "В вашем чертеже обнаружено больше одной части или сборки. В данный момент поддерживаются исключительно чертежи с одной частью или сборкой.\n" -#~ "\n" -#~ "Сожалеем!" - -#~ msgctxt "@item:material" -#~ msgid "No material loaded" -#~ msgstr "Материал не загружен" - -#~ msgctxt "@item:material" -#~ msgid "Unknown material" -#~ msgstr "Неизвестный материал" - -#~ msgctxt "@info:status Has a cancel button next to it." -#~ msgid "The selected material diameter causes the material to become incompatible with the current printer." -#~ msgstr "Диаметр выбранного материала показывает, что он несовместим с текущим принтером." - -#~ msgctxt "@action:button" -#~ msgid "Undo" -#~ msgstr "Отмена" - -#~ msgctxt "@action" -#~ msgid "Undo changing the material diameter." -#~ msgstr "Отмена изменения диаметра материала." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} doesn't match with your current machine, could not import it." -#~ msgstr "Аппарат, заданный в профиле {0}, не совпадает с вашим текущим аппаратом, поэтому его невозможно импортировать." - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal error has occurred. 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" -#~ "

    Нажмите кнопку «Отправить отчёт», чтобы автоматически отправить отчет об ошибке на наши серверы

    \n" -#~ " " - -#~ msgctxt "@label" -#~ msgid "not yet initialised
    " -#~ msgstr "в данный момент не инициализировано
    " - -#~ msgctxt "@label" -#~ msgid "Gcode flavor" -#~ msgstr "Вариант G-кода" - -#~ msgctxt "@label" -#~ msgid "Start Gcode" -#~ msgstr "Начало G-кода" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very start." -#~ msgstr "Команды в G-коде, которые будут выполнены при старте печати." - -#~ msgctxt "@label" -#~ msgid "End Gcode" -#~ msgstr "Конец G-кода" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very end." -#~ msgstr "Команды в G-коде, которые будут выполнены в конце печати." - -#~ msgctxt "@label" -#~ msgid "Extruder Start Gcode" -#~ msgstr "G-код старта экструдера" - -#~ msgctxt "@label" -#~ msgid "Extruder End Gcode" -#~ msgstr "G-код завершения экструдера" - -#~ msgctxt "@label" -#~ msgid "Starting firmware update, this may take a while." -#~ msgstr "Запуск обновления прошивки, это может занять некоторое время." - -#~ msgctxt "@label" -#~ msgid "Unknown error code: %1" -#~ msgstr "Неизвестный код ошибки: %1" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@label Printer status" -#~ msgid "Unknown" -#~ msgstr "Неизвестно" - -#~ msgctxt "@title:window" -#~ msgid "Find & Update plugins" -#~ msgstr "Найти и обновить плагины" - -#~ msgctxt "@label" -#~ msgid "Here you can find a list of Third Party plugins." -#~ msgstr "Здесь вы можете найти список сторонних плагинов." - -#~ msgctxt "@action:button" -#~ msgid "Upgrade" -#~ msgstr "Обновление" - -#~ msgctxt "@action:button" -#~ msgid "Download" -#~ msgstr "Скачать" - -#~ msgctxt "@info:tooltip" -#~ msgid "Show caution message in gcode reader." -#~ msgstr "Показывать важное сообщение при чтении G-кода." - -#~ msgctxt "@option:check" -#~ msgid "Caution message in gcode reader" -#~ msgstr "Важное сообщение при чтении G-кода" - -#~ msgctxt "@window:title" -#~ msgid "Import Profile" -#~ msgstr "Импортировать профиль" - -#~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name" -#~ msgid "Printer: %1, %2: %3" -#~ msgstr "Принтер: %1, %2: %3" - -#~ msgctxt "@action:label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "Принтер: %1" - -#~ msgctxt "@label" -#~ msgid "GCode generator" -#~ msgstr "GCode генератор" - -#~ msgctxt "@action:menu" -#~ msgid "Configure setting visiblity..." -#~ msgstr "Настроить видимость параметров..." - -#~ msgctxt "@title:menuitem %1 is the automatically selected material" -#~ msgid "Automatic: %1" -#~ msgstr "Автоматически: %1" - -#~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer" -#~ msgid "Automatic: %1" -#~ msgstr "Автоматически: %1" - -#~ msgctxt "@info:status" -#~ msgid "No printer connected" -#~ msgstr "Принтер не подключен" - -#~ msgctxt "@tooltip" -#~ msgid "The current temperature of this extruder." -#~ msgstr "Текущая температура экструдера." - -#~ msgctxt "@action:menu" -#~ msgid "Installed plugins..." -#~ msgstr "Установленные плагины..." - -#~ msgctxt "@label" -#~ msgid "Support Extruder" -#~ msgstr "Экструдер поддержек" - -#~ msgctxt "description" -#~ msgid "Writes GCode to a file." -#~ msgstr "Записывает G-Code в файл." - -#~ msgctxt "name" -#~ msgid "GCode Writer" -#~ msgstr "Запись G-Code" - -#~ msgctxt "name" -#~ msgid "GCode Profile Reader" -#~ msgstr "Чтение профиля из G-Code" - -#~ msgctxt "@info:status" -#~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" -#~ msgstr "Возникли ошибки во время открытия файла SolidWorks! Пожалуйста, проверьте может ли SolidWorks открыть этот файл без проблем!" - -#~ msgctxt "@info:status" -#~ msgid "Error while starting %s!" -#~ msgstr "Ошибка при запуске %s!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Simulation view" +#~ msgid "Simulation View" #~ msgstr "Вид моделирования" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences." -#~ msgstr "Cura собирает анонимную статистику о нарезке модели. Вы можете отключить это в настройках." - -#~ msgctxt "@action:button" -#~ msgid "Dismiss" -#~ msgstr "Отменить" - -#~ msgctxt "@menuitem" -#~ msgid "Global" -#~ msgstr "Общие" - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal exception has occurred. 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" -#~ "

    Нажмите кнопку «Отправить отчёт», чтобы автоматически отправить отчёт об ошибке на наш сервер

    \n" -#~ " " - -#~ msgctxt "@label Cura version" -#~ msgid "Cura version: {version}
    " -#~ msgstr "Версия Cura: {version}
    " - -#~ msgctxt "@label Platform" -#~ msgid "Platform: {platform}
    " -#~ msgstr "Платформа: {platform}
    " - -#~ msgctxt "@label Qt version" -#~ msgid "Qt version: {qt}
    " -#~ msgstr "Версия Qt: {qt}
    " - -#~ msgctxt "@label PyQt version" -#~ msgid "PyQt version: {pyqt}
    " -#~ msgstr "Версия PyQt: {pyqt}
    " - -#~ msgctxt "@label OpenGL" -#~ msgid "OpenGL: {opengl}
    " -#~ msgstr "OpenGL: {opengl}
    " - -#~ msgctxt "@title:groupbox" -#~ msgid "Exception traceback" -#~ msgstr "Диагностика исключения" - -#~ msgctxt "@label" -#~ msgid "Material diameter" -#~ msgstr "Диаметр материала" - -#~ msgctxt "@title:window" -#~ msgid "Cura SolidWorks Plugin Configuration" -#~ msgstr "Конфигурация плагина SolidWorks" - -#~ msgctxt "@action:label" -#~ msgid "Default quality of the exported STL:" -#~ msgstr "Качество по-умолчанию экспортируемого STL:" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always ask" -#~ msgstr "Всегда спрашивать" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Fine quality" -#~ msgstr "Всегда использовать хорошее качество" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Coarse quality" -#~ msgstr "Всегда использовать грубое качество" - -#~ msgctxt "@title:window" -#~ msgid "Import SolidWorks File as STL..." -#~ msgstr "Импортировать SolidWorks файл как STL..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Quality of the Exported STL" -#~ msgstr "Качество экспортируемого STL" - -#~ msgctxt "@action:label" -#~ msgid "Quality" -#~ msgstr "Качество" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse" -#~ msgstr "Грубое" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine" -#~ msgstr "Хорошее" - -#~ msgctxt "@" -#~ msgid "No Profile Available" -#~ msgstr "отсутствуют доступные профили" - -#~ msgctxt "@label" -#~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders" -#~ msgstr "Этот параметр всегда действует на все экструдеры. Его изменение повлияет на все экструдеры" - -#~ msgctxt "@tooltip" -#~ msgid "Time specification
    " -#~ msgstr "Формат отображения времени
    " - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Reset camera position" -#~ msgstr "&Сбросить положение камеры" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save project" -#~ msgstr "Сохранить проект" - -#~ msgctxt "@title:tab" -#~ msgid "Prepare" -#~ msgstr "Подготовка" - -#~ msgctxt "@title:tab" -#~ msgid "Monitor" -#~ msgstr "Монитор" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "Проверить совместимость" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura" -#~ msgstr "Предоставляет вам возможность открывать файлы через SolidWorks. Файлы будут преобразовываться и загружаться в Cura" - -#~ msgctxt "@label:status" -#~ msgid "Blocked" -#~ msgstr "блокированный" - -#~ msgctxt "@label:status" -#~ msgid "Can't start print" -#~ msgstr "Не удается начать печать" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect.." -#~ msgstr "Открыть соединение..." - -#~ msgctxt "@info:title" -#~ msgid "Print Details" -#~ msgstr "Подробности печати" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB." -#~ msgstr "Рекомендуется регулярно обновлять прошивку принтера {machine_name}. Это может сделано когда {machine_name} подключен к сети или к USB." - -#~ msgctxt "@info:title" -#~ msgid "Layer View" -#~ msgstr "Просмотр слоёв" - -#~ msgctxt "@menuitem" -#~ msgid "Browse plugins" -#~ msgstr "Просмотр плагинов" - -#~ msgctxt "@info:title" -#~ msgid "Export Details" -#~ msgstr "Экспорт подробностей" - -#~ msgctxt "@label" -#~ msgid "" -#~ "

    A fatal exception has occurred that we could not recover from!

    \n" -#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " -#~ msgstr "" -#~ "

    Произошла неожиданная ошибка и мы не смогли её исправить!

    \n" -#~ "

    Пожалуйста, используйте информацию ниже для создания отчёта об ошибке на http://github.com/Ultimaker/Cura/issues

    " - -#~ msgctxt "@action:button" -#~ msgid "Open Web Page" -#~ msgstr "Открыть веб страницу" - -#~ msgctxt "@action:button" -#~ msgid "Ok" -#~ msgstr "Ok" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "Данный принтер не настроен для управления группой подключенных принтеров Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" -#~ msgstr "Данный принтер управляет группой из {count} подключенных принтеров Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "Completed on: " -#~ msgstr "Выполнено на:" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "Открывает страницу с заданиями на печать в вашем браузере." - -#~ msgctxt "@label" -#~ msgid "PRINTER GROUP" -#~ msgstr "ГРУППА ПРИНТЕРОВ" - -#~ msgctxt "@action:warning" -#~ msgid "Loading a project will clear all models on the buildplate" -#~ msgstr "Загрузка проекта уберёт все модели со стола" - -#~ msgctxt "@label" -#~ msgid "" -#~ " plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ " плагин содержит лицензию.\n" -#~ "Вам требуется принять лицензию для установки данного плагина.\n" -#~ "Вы согласны с написанным ниже?" - -#~ msgctxt "@label" -#~ msgid "00h 00min" -#~ msgstr "00ч 00мин" - -#~ msgctxt "@tooltip" -#~ msgid "Time information" -#~ msgstr "Информация о времени" - -#~ msgctxt "@description" -#~ msgid "Print time" -#~ msgstr "Время печати" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1м / ~ %2гр / ~ %4 %3" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1м / ~ %2гр" - -#~ msgctxt "@title:window" -#~ msgid "Cura" -#~ msgstr "Cura" - -#~ msgctxt "@label" -#~ msgid "Check material compatibility" -#~ msgstr "Проверить совместимость материала" - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection (Cluster)" -#~ msgstr "Соединение с сетью UM3 (кластер)" - -#~ msgctxt "description" -#~ msgid "Provides the Layer view." -#~ msgstr "Предоставляет послойный просмотр." - -#~ msgctxt "name" -#~ msgid "Layer View" -#~ msgstr "Просмотр слоёв" - -#~ msgctxt "@item:inlistbox" -#~ msgid "X-Ray" -#~ msgstr "Рентген" - -#~ msgctxt "@label" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "Принимает G-Code и отправляет его через WiFi на Doodle3D WiFi-Box." - -#~ msgctxt "@item:inmenu" -#~ msgid "Doodle3D printing" -#~ msgstr "Печать Doodle3D" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D" -#~ msgstr "Печать через Doodle3D" - -#~ msgctxt "@info:tooltip" -#~ msgid "Print with " -#~ msgstr "Печать через " - -#~ msgctxt "@title:menu" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Enable Scan devices..." -#~ msgstr "Активировать сканеры..." - -#~ msgctxt "@info:progress" -#~ msgid "Saving to Removable Drive {0}" -#~ msgstr "Сохранение на внешний носитель {0}" - -#~ msgctxt "@info:status" -#~ msgid "Could not save to {0}: {1}" -#~ msgstr "Не могу сохранить {0}: {1}" - -#~ msgctxt "@info:status" -#~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!" -#~ msgstr "Запомните, пожалуйста, что вы должны вручную открыть заново файл SolidWorks файл! Перезагрузка моделей не поможет!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Layers" -#~ msgstr "Слои" - -#~ msgid "Browse plugins" -#~ msgstr "Просмотр плагинов" - -#~ msgctxt "@item:inmenu" -#~ msgid "Solid" -#~ msgstr "Твёрдое тело" - -#~ msgctxt "@label" -#~ msgid "The file {0} already exists. Are you sure you want to overwrite it?" -#~ msgstr "Файл {0} уже существует. Вы желаете его перезаписать?" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export profile to {0}: {1}" -#~ msgstr "Невозможно экспортировать профиль в {0}: {1}" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export profile to {0}: Writer plugin reported failure." -#~ msgstr "Невозможно экспортировать профиль в {0}: Плагин записи уведомил об ошибке." - -#~ msgctxt "@info:status" -#~ msgid "Exported profile to {0}" -#~ msgstr "Экспортирование профиля в {0}" - -#~ msgctxt "@info:status" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "Невозможно импортировать профиль из {0}: {1}" - -#~ msgctxt "@title:window" -#~ msgid "Doodle3D Settings" -#~ msgstr "Настройки Doodle3D" - -#~ msgctxt "@title:window" -#~ msgid "Print to: %1" -#~ msgstr "Печатать на: %1" - -#~ msgctxt "@label" -#~ msgid "Extruder Temperature: %1/%2°C" -#~ msgstr "Температура экструдера: %1/%2°C" - -#~ msgctxt "@label" -#~ msgid "Bed Temperature: %1/%2°C" -#~ msgstr "Температура стола: %1/%2°C" - -#~ msgctxt "@label" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@label" -#~ msgid "View Mode: Layers" -#~ msgstr "Режим просмотра: Слои" - -#~ msgctxt "@info:status" -#~ msgid "Could not import material %1: %2" -#~ msgstr "Не могу импортировать материал %1: %2" - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported material %1" -#~ msgstr "Успешно импортированный материал %1" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export material to %1: %2" -#~ msgstr "Не могу экспортировать материал %1: %2" - -#~ msgctxt "@info:status" -#~ msgid "Successfully exported material to %1" -#~ msgstr "Материал успешно экспортирован в %1" - -#~ msgctxt "@label" -#~ msgid "%1 m / ~ %2 g / ~ %4 %3" -#~ msgstr "%1 м / ~ %2 гр / ~ %4 %3" - -#~ msgctxt "@label" -#~ msgid "%1 m / ~ %2 g" -#~ msgstr "%1 м / ~ %2 г" - -#~ msgctxt "@label" -#~ msgid "Hotend" -#~ msgstr "Голова" - -#~ msgctxt "@action:button" -#~ msgid "View Mode" -#~ msgstr "Режим просмотра" - -#~ msgctxt "@title:tab" -#~ msgid "Print" -#~ msgstr "Печать" - -#~ msgctxt "@label" -#~ msgid "0%" -#~ msgstr "0%" - -#~ msgctxt "@label" -#~ msgid "Empty infill will leave your model hollow with low strength." -#~ msgstr "Пустое заполнение сделает вашу модель полой и хрупкой." - -#~ msgctxt "@label" -#~ msgid "20%" -#~ msgstr "20%" - -#~ msgctxt "@label" -#~ msgid "Light (20%) infill will give your model an average strength." -#~ msgstr "Слабое (20%) заполнение сделает вашу модель менее хрупкой." - -#~ msgctxt "@label" -#~ msgid "50%" -#~ msgstr "50%" - -#~ msgctxt "@label" -#~ msgid "Dense (50%) infill will give your model an above average strength." -#~ msgstr "Плотное (50%) заполнение придаст вашей модели прочность выше среднего." - -#~ msgctxt "@label" -#~ msgid "100%" -#~ msgstr "100%" - -#~ msgctxt "@label" -#~ msgid "Solid (100%) infill will make your model completely solid." -#~ msgstr "Сплошное (100%) заполнение сделает вашу модель крепкой." - -#~ msgctxt "@label" -#~ msgid "Gradual" -#~ msgstr "Постепенное" - -#~ msgctxt "description" -#~ msgid "Provides support for writing X3G files" -#~ msgstr "Предоставляет возможность записи X3G файлов" - -#~ msgctxt "name" -#~ msgid "X3G Writer" -#~ msgstr "Запись X3G" - -#~ msgctxt "@label" -#~ msgid "Machine Settings action" -#~ msgstr "Параметры принтера действие" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)" -#~ msgstr "Предоставляет возможность изменения параметров принтера (такие как рабочий объём, диаметр сопла и так далее)" - -#~ msgctxt "@label" -#~ msgid "X-Ray View" -#~ msgstr "Просмотр в рентгене" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the X-Ray view." -#~ msgstr "Предоставляет рентгеновский вид." - -#~ msgctxt "@label" -#~ msgid "X3D Reader" -#~ msgstr "Чтение X3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for reading X3D files." -#~ msgstr "Предоставляет поддержку для чтения X3D файлов." - -#~ msgctxt "@label" -#~ msgid "GCode Writer" -#~ msgstr "Запись GCode" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Writes GCode to a file." -#~ msgstr "Записывает GCode в файл." - -#~ msgctxt "@action:button Preceded by 'Ready to'." -#~ msgid "Print with Doodle3D" -#~ msgstr "Печать через Doodle3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "Показывает изменения со времени последней отмеченной версии." - -#~ msgctxt "@label" -#~ msgid "Profile flatener" -#~ msgstr "Нормализация профиля" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "Создаёт профиль со стандартными настройками." - -#~ msgctxt "@label" -#~ msgid "USB printing" -#~ msgstr "Печать через USB" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -#~ msgstr "Принимает G-Code и отправляет его на принтер. Плагин также может обновлять прошивку." - -#~ msgctxt "X3G Writer Plugin Description" -#~ msgid "Writes X3G to a file" -#~ msgstr "Записывает X3G в файл" - -#~ msgctxt "@label" -#~ msgid "Removable Drive Output Device Plugin" -#~ msgstr "Плагин для работы с внешним носителем" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides removable drive hotplugging and writing support." -#~ msgstr "Предоставляет поддержку для подключения и записи на внешний носитель." - -#~ msgctxt "@info:whatsthis" -#~ msgid "Manages network connections to Ultimaker 3 printers" -#~ msgstr "Управляет сетевыми соединениями с принтерами Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Разные PrintCore (Cura: {0}, Принтер: {1}) выбраны для экструдера {2}" - -#~ msgctxt "@label" -#~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "PrintCore {0} не откалибровано. Необходимо выполнить XY калибровку для принтера." - -#~ msgctxt "@label" -#~ msgid "The print cores and/or materials on your printer differ from those within your current project. For the best result, always slice for the print cores and materials that are inserted in your printer." -#~ msgstr "Модуль PrintCore и/или материал в вашем принтере отличается от тех, что вы используете в текущем проекте. Для наилучшего результата всегда указывайте правильный модуль PrintCore и материалы, которые вставлены в ваш принтер." - -#~ msgctxt "@label" -#~ msgid "Post Processing" -#~ msgstr "Пост обработка" - -#~ msgctxt "Description of plugin" -#~ msgid "Extension that allows for user created scripts for post processing" -#~ msgstr "Расширения, которые позволяют пользователю создавать скрипты для пост обработки" - -#~ msgctxt "@label" -#~ msgid "Auto Save" -#~ msgstr "Автосохранение" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "Автоматически сохраняет настройки, принтеры и профили после внесения изменений." - -#~ msgctxt "@label" -#~ msgid "Slice info" -#~ msgstr "Информация о нарезке модели" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Submits anonymous slice info. Can be disabled through preferences." -#~ msgstr "Отправляет анонимную информацию о нарезке моделей. Может быть отключено через настройки." - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences" -#~ msgstr "Cura собирает анонимную статистику о нарезке модели. Вы можете отключить это в настройках" - -#~ msgctxt "@label" -#~ msgid "Material Profiles" -#~ msgstr "Профили материалов" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides capabilities to read and write XML-based material profiles." -#~ msgstr "Предоставляет возможности по чтению и записи профилей материалов в виде XML." - -#~ msgctxt "@label" -#~ msgid "Legacy Cura Profile Reader" -#~ msgstr "Чтение устаревших профилей Cura" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing profiles from legacy Cura versions." -#~ msgstr "Предоставляет поддержку для импортирования профилей из устаревших версий Cura." - -#~ msgctxt "@label" -#~ msgid "GCode Profile Reader" -#~ msgstr "Чтение профиля из GCode" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing profiles from g-code files." -#~ msgstr "Предоставляет поддержку для импортирования профилей из GCode файлов." - -#~ msgctxt "@label" -#~ msgid "Layer View" -#~ msgstr "Просмотр слоёв" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the Layer view." -#~ msgstr "Предоставляет послойный просмотр." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.5 to 2.6" -#~ msgstr "Обновление версии с 2.5 до 2.6" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -#~ msgstr "Обновляет конфигурацию Cura 2.5 до Cura 2.6." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.1 to 2.2" -#~ msgstr "Обновление версии 2.1 до 2.2" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -#~ msgstr "Обновляет настройки Cura 2.1 до Cura 2.2." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.2 to 2.4" -#~ msgstr "Обновление версии 2.2 до 2.4" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -#~ msgstr "Обновляет конфигурации Cura 2.2 до Cura 2.4." - -#~ msgctxt "@label" -#~ msgid "Image Reader" -#~ msgstr "Чтение изображений" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Enables ability to generate printable geometry from 2D image files." -#~ msgstr "Обеспечивает возможность генерировать печатаемую геометрию из файлов двухмерных изображений." - -#~ msgctxt "@label" -#~ msgid "CuraEngine Backend" -#~ msgstr "Движок CuraEngine" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the link to the CuraEngine slicing backend." -#~ msgstr "Предоставляет интерфейс к движку CuraEngine." - -#~ msgctxt "@label" -#~ msgid "Per Model Settings Tool" -#~ msgstr "Инструмент для настройки каждой модели" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the Per Model Settings." -#~ msgstr "Предоставляет параметры для каждой модели." - -#~ msgctxt "@label" -#~ msgid "3MF Reader" -#~ msgstr "Чтение 3MF" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for reading 3MF files." -#~ msgstr "Предоставляет поддержку для чтения 3MF файлов." - -#~ msgctxt "@label" -#~ msgid "Solid View" -#~ msgstr "Обзор" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides a normal solid mesh view." -#~ msgstr "Предоставляет просмотр твёрдого тела." - -#~ msgctxt "@label" -#~ msgid "G-code Reader" -#~ msgstr "Чтение G-code" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Allows loading and displaying G-code files." -#~ msgstr "Позволяет загружать и отображать файлы G-code." - -#~ msgctxt "@label" -#~ msgid "Cura Profile Writer" -#~ msgstr "Запись профиля Cura" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for exporting Cura profiles." -#~ msgstr "Предоставляет поддержку для экспорта профилей Cura." - -#~ msgctxt "@label" -#~ msgid "3MF Writer" -#~ msgstr "Запись 3MF" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for writing 3MF files." -#~ msgstr "Предоставляет возможность записи 3MF файлов." - -#~ msgctxt "@label" -#~ msgid "Ultimaker machine actions" -#~ msgstr "Дополнительные возможности Ultimaker" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)" -#~ msgstr "Предоставляет дополнительные возможности для принтеров Ultimaker (такие как мастер выравнивания стола, выбора обновления и так далее)" - -#~ msgctxt "@label" -#~ msgid "Cura Profile Reader" -#~ msgstr "Чтение профиля Cura" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing Cura profiles." -#~ msgstr "Предоставляет поддержку для импорта профилей Cura." - -#~ msgctxt "@info" -#~ msgid "%(width).1f x %(depth).1f x %(height).1f mm" -#~ msgstr "%(width).1f x %(depth).1f x %(height).1f мм" - -#~ msgctxt "@label" -#~ msgid "Build Plate Shape" -#~ msgstr "Форма стола" - -#~ msgctxt "@option:check" -#~ msgid "Machine Center is Zero" -#~ msgstr "Ноль в центре стола" - -#~ msgctxt "@option:check" -#~ msgid "Heated Bed" -#~ msgstr "Нагреваемый стол" - -#~ msgctxt "@label" -#~ msgid "GCode Flavor" -#~ msgstr "Вариант G-кода" - -#~ msgctxt "@label" -#~ msgid "Material Diameter" -#~ msgstr "Диаметр материала" - -#~ msgctxt "@label" -#~ msgid "If your printer is not listed, read the network-printing troubleshooting guide" -#~ msgstr "Если ваш принтер отсутствует в списке, обратитесь к руководству по решению проблем с сетевой печатью" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Ultimaker" -#~ msgstr "Ultimaker" - -#~ msgctxt "@label" -#~ msgid "Support library for scientific computing " -#~ msgstr "Вспомогательная библиотека для научных вычислений " - -#~ msgctxt "@tooltip" -#~ msgid "Print Setup

    Edit or review the settings for the active print job." -#~ msgstr "Настройка печати

    Отредактируйте или просмотрите параметры для активной задачи на печать." - -#~ msgctxt "@tooltip" -#~ msgid "Print Monitor

    Monitor the state of the connected printer and the print job in progress." -#~ msgstr "Монитор печати

    Отслеживайте состояние подключенного принтера и прогресс задачи на печать." - -#~ msgctxt "@title:menuitem %1 is the value from the printer" -#~ msgid "Automatic: %1" -#~ msgstr "Автоматически: %1" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3d model" -#~ msgstr "Пожалуйста, загрузите 3D модель" - -#~ msgctxt "@label" -#~ msgid "Print Selected Model with %1" -#~ msgid_plural "Print Selected Models With %1" -#~ msgstr[0] "Распечатать выбранную модель на %1" -#~ msgstr[1] "Распечатать выбранные модели на %1" -#~ msgstr[2] "Распечатать выбранные моделей на %1" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}" -#~ msgstr "Невозможно запустить новую задачу на печать. PrinterCore не был загружен в слот {0}" - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.4 to 2.5" -#~ msgstr "Обновление версии 2.4 до 2.5" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5." -#~ msgstr "Обновление конфигурации Cura 2.4 до Cura 2.5." - -#~ msgctxt "@info:status" -#~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead." -#~ msgstr "Невозможно найти профиль качества для этой комбинации. Будут использованы параметры по умолчанию." - -#~ msgctxt "@title:window" -#~ msgid "Oops!" -#~ msgstr "Ой!" - -#~ msgctxt "@label" -#~ msgid "" -#~ "

    A fatal exception has occurred that we could not recover from!

    \n" -#~ "

    We hope this picture of a kitten helps you recover from the shock.

    \n" -#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " -#~ msgstr "" -#~ "

    Произошла неожиданная ошибка и мы не смогли её обработать!

    \n" -#~ "

    Мы надеемся, что картинка с котёнком поможет вам оправиться от шока.

    \n" -#~ "

    Пожалуйста, используйте информацию ниже для создания отчёта об ошибке на http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " - -#~ msgctxt "@label" -#~ msgid "Please enter the correct settings for your printer below:" -#~ msgstr "Пожалуйста, введите правильные параметры для вашего принтера:" - -#~ msgctxt "@label" -#~ msgid "Extruder %1" -#~ msgstr "Экструдер %1" - -#~ msgctxt "@label Followed by extruder selection drop-down." -#~ msgid "Print model with" -#~ msgstr "Печатать модель экструдером" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for language changes to have effect." -#~ msgstr "Вам потребуется перезапустить приложение для переключения интерфейса на выбранный язык." - -#~ msgctxt "@info:tooltip" -#~ msgid "Moves the camera so the model is in the center of the view when an model is selected" -#~ msgstr "Перемещать камеру так, чтобы модель при выборе помещалась в центр экрана" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete &Selection" -#~ msgstr "Удалить выделенное" - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Open File..." -#~ msgstr "Открыть файл..." - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Open Project..." -#~ msgstr "Открыть проект..." - -#~ msgctxt "@title:window" -#~ msgid "Multiply Model" -#~ msgstr "Дублировать модель" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &All" -#~ msgstr "Сохранить всё" - -#~ msgctxt "@title:window" -#~ msgid "Open file" -#~ msgstr "Открыть файл" - -#~ msgctxt "@title:window" -#~ msgid "Open workspace" -#~ msgstr "Открыть рабочее пространство" - -#~ msgctxt "@label" -#~ msgid "Hollow" -#~ msgstr "Пустота" - -#~ msgctxt "@label" -#~ msgid "No (0%) infill will leave your model hollow at the cost of low strength" -#~ msgstr "Отсутствие (0%) заполнения сделает вашу модель полой и минимально прочной" - -#~ msgctxt "@label" -#~ msgid "Light" -#~ msgstr "Лёгкое" - -#~ msgctxt "@label" -#~ msgid "Light (20%) infill will give your model an average strength" -#~ msgstr "Лёгкое (20%) заполнение придаст вашей модели среднюю прочность" - -#~ msgctxt "@label" -#~ msgid "Dense" -#~ msgstr "Плотное" - -#~ msgctxt "@label" -#~ msgid "Dense (50%) infill will give your model an above average strength" -#~ msgstr "Плотное (50%) заполнение придаст вашей модели прочность выше среднего" - -#~ msgctxt "@label" -#~ msgid "Solid" -#~ msgstr "Твёрдое" - -#~ msgctxt "@label" -#~ msgid "Solid (100%) infill will make your model completely solid" -#~ msgstr "Твёрдое (100%) заполнение сделает вашу модель полностью твёрдой." - -#~ msgctxt "@label" -#~ msgid "Enable Support" -#~ msgstr "Разрешить поддержки" - -#~ msgctxt "@label" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Разрешить печать поддержек. Такие структуры поддерживают части моделей со значительными нависаниями." - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints? Read the Ultimaker Troubleshooting Guides" -#~ msgstr "Нужна помощь с улучшением качества печати? Прочитайте Руководства Ultimaker по решению проблем" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}. Please approve the access request on the printer." -#~ msgstr "Подключен через сеть к {0}. Пожалуйста, подтвердите запрос доступа к принтеру." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}." -#~ msgstr "Подключен через сеть к {0}." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}. No access to control the printer." -#~ msgstr "Подключен через сеть к {0}. Нет доступа к управлению принтером." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job because the printer is busy. Please check the printer." -#~ msgstr "Невозможно запустить новую задачу на печать, так как принтер занят. Пожалуйста, проверьте принтер." - -#~ msgctxt "@label" -#~ msgid "You made changes to the following setting(s)/override(s):" -#~ msgstr "Вы изменили следующие настройки:" - -#~ msgctxt "@window:title" -#~ msgid "Switched profiles" -#~ msgstr "Переключены профили" - -#~ msgctxt "@label" -#~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?" -#~ msgstr "Желаете перенести ваши %d изменений настроек в этот профиль?" - -#~ msgctxt "@label" -#~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost." -#~ msgstr "При переносе ваших настроек они переопределять настройки в данном профиле. При отказе от переноса, ваши изменения будут потеряны." - -#~ msgctxt "@label" -#~ msgid "Cost per Meter (Approx.)" -#~ msgstr "Стоимость метра (приблизительно)" - -#~ msgctxt "@label" -#~ msgid "%1/m" -#~ msgstr "%1/м" - -#~ msgctxt "@info:tooltip" -#~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information." -#~ msgstr "Показывать пять верхних слов в режиме послойного просмотра или только самый верхний слой. Отображение 5 слоёв занимает больше времени, но предоставляет больше информации." - -#~ msgctxt "@action:button" -#~ msgid "Display five top layers in layer view" -#~ msgstr "Показать пять верхних слоёв в режиме послойного просмотра" - -#~ msgctxt "@info:tooltip" -#~ msgid "Should only the top layers be displayed in layerview?" -#~ msgstr "Следует ли отображать только верхние слои в режиме послойного просмотра?" - -#~ msgctxt "@option:check" -#~ msgid "Only display top layer(s) in layer view" -#~ msgstr "Показывать только верхние слои в режиме послойного просмотра" - -#~ msgctxt "@label" -#~ msgid "Opening files" -#~ msgstr "Открытие файлов" - -#~ msgctxt "@label" -#~ msgid "Printer Monitor" -#~ msgstr "Монитор принтера" - -#~ msgctxt "@label" -#~ msgid "Temperatures" -#~ msgstr "Температуры" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Preparing to slice..." -#~ msgstr "Подготовка к нарезке на слои..." - -#~ msgctxt "@label" -#~ msgid "

    A fatal exception has occurred that we could not recover from!

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    " -#~ msgstr "

    Произошла неожиданная ошибка и мы не смогли его обработать!

    Пожалуйста, используйте информацию ниже для создания отчёта об ошибке на http://github.com/Ultimaker/Cura/issues

    " - -#~ msgctxt "@info:status" -#~ msgid "Profile {0} has an unknown file type." -#~ msgstr "Профиль {0} имеет неизвестный тип файла." - -#~ msgctxt "@info:status" -#~ msgid "The selected material is imcompatible with the selected machine or configuration." -#~ msgstr "Выбранный материал несовместим с указанным принтером или конфигурацией." - -#~ msgctxt "@label" -#~ msgid "You made changes to the following setting(s):" -#~ msgstr "Вы сделали изменения следующих настроек:" - -#~ msgctxt "@label" -#~ msgid "Do you want to transfer your changed settings to this profile?" -#~ msgstr "Вы желаете перенести свои изменения параметров в этот профиль?" - -#~ msgctxt "@label" -#~ msgid "If you transfer your settings they will override settings in the profile." -#~ msgstr "Если вы перенесёте свои параметры, они перезапишут настройки профиля." - -#~ msgctxt "@info:status" -#~ msgid "Unable to slice with the current settings. Please check your settings for errors." -#~ msgstr "Невозможно нарезать модель при текущих параметрах. Пожалуйста, проверьте значения своих параметров на присутствие ошибок." - -#~ msgctxt "@action:button" -#~ msgid "Save to Removable Drive" -#~ msgstr "Сохранить на внешний носитель" - -#~ msgctxt "@action:button" -#~ msgid "Print via USB" -#~ msgstr "Печатать через USB" - -#~ msgctxt "@info:credit" -#~ msgid "Cura has been developed by Ultimaker B.V. in cooperation with the community." -#~ msgstr "Cura была разработана компанией Ultimaker B.V. в кооперации с сообществом." - -#~ msgctxt "@action:inmenu menubar:profile" -#~ msgid "&Update profile with current settings" -#~ msgstr "Записать текущие параметры в профиль" - -#~ msgctxt "@action:inmenu menubar:profile" -#~ msgid "&Discard current settings" -#~ msgstr "Сбросить текущие параметры" - -#~ msgctxt "@action:inmenu menubar:profile" -#~ msgid "&Create profile from current settings..." -#~ msgstr "Создать профиль из текущих параметров..." - -#~ msgctxt "@action:inmenu" -#~ msgid "&Duplicate Model" -#~ msgstr "Дублировать модель" - -#~ msgctxt "@action:button" -#~ msgid "Update profile with current settings" -#~ msgstr "Внести текущие параметры в профиль" - -#~ msgctxt "@action:button" -#~ msgid "Discard current settings" -#~ msgstr "Сбросить текущие параметры" - -#~ msgctxt "@action:label" -#~ msgid "This profile uses the defaults specified by the printer, so it has no settings in the list below." -#~ msgstr "Данный профиль использует параметры принтера по умолчанию, то есть у него нет параметров из списка ниже." - -#~ msgctxt "@title:tab" -#~ msgid "Simple" -#~ msgstr "Простая" - -#~ msgctxt "@title:tab" -#~ msgid "Advanced" -#~ msgstr "Продвинутая" - -#~ msgctxt "@label:listbox" -#~ msgid "Printer:" -#~ msgstr "Принтер:" - -#~ msgctxt "@tooltip" -#~ msgid "" -#~ "Some setting values are different from the values stored in the profile.\n" -#~ "\n" -#~ "Click to open the profile manager." -#~ msgstr "" -#~ "Значения некоторых параметров отличаются от значений в профиле.\n" -#~ "\n" -#~ "Щёлкните, открыть менеджер профилей." - -#~ msgctxt "@label" -#~ msgid "Infill:" -#~ msgstr "Заполнение:" - -#~ msgctxt "@label" -#~ msgid "Helper Parts:" -#~ msgstr "Помощники:" - -#~ msgctxt "@option:check" -#~ msgid "Print Build Plate Adhesion" -#~ msgstr "Прилипание к столу" - -#~ msgctxt "@option:check" -#~ msgid "Print Support Structure" -#~ msgstr "Печать структуры поддержек" - -#~ msgctxt "@label" -#~ msgid "Enable printing support structures. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "Разрешает печать поддержек. Это позволяет строить поддерживающие структуры под моделью, предотвращая её от провисания или печати в воздухе." - -#~ msgctxt "@label" -#~ msgid "Don't print support" -#~ msgstr "Не печатать поддержки" - -#~ msgctxt "@label" -#~ msgid "Print support using %1" -#~ msgstr "Печать поддержек с %1" - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profiles {0}" -#~ msgstr "Успешно импортированы профили {0}" - -#~ msgctxt "@label" -#~ msgid "Scripts" -#~ msgstr "Скрипты" - -#~ msgctxt "@label" -#~ msgid "Active Scripts" -#~ msgstr "Активные скрипты" - -#~ msgctxt "@label" -#~ msgid "Done" -#~ msgstr "Выполнено" - -#~ msgctxt "@item:inlistbox" -#~ msgid "English" -#~ msgstr "Английский" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Finnish" -#~ msgstr "Финский" - -#~ msgctxt "@item:inlistbox" -#~ msgid "French" -#~ msgstr "Французский" - -#~ msgctxt "@item:inlistbox" -#~ msgid "German" -#~ msgstr "Немецкий" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Italian" -#~ msgstr "Итальянский" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Dutch" -#~ msgstr "Датский" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Spanish" -#~ msgstr "Испанский" - -#~ msgctxt "@title:menu" -#~ msgid "Firmware" -#~ msgstr "Прошивка" - -#~ msgctxt "@title:window" -#~ msgid "Print with USB" -#~ msgstr "Печать через USB" - -#~ msgctxt "@label" -#~ msgid "Extruder Temperature %1" -#~ msgstr "Температура экструдера %1" - -#~ msgctxt "@action:button" -#~ msgid "Add Setting" -#~ msgstr "Добавить настройку" - -#~ msgctxt "@title" -#~ msgid "Add Printer" -#~ msgstr "Добавление принтера" - -#~ msgctxt "@label" -#~ msgid "0.0 m" -#~ msgstr "0.0 м" - -#~ msgctxt "@label" -#~ msgid "%1 m" -#~ msgstr "%1 м" - -#~ msgctxt "@label:listbox" -#~ msgid "Setup" -#~ msgstr "Настройка" - -#~ msgctxt "@action:inmenu menubar:profile" -#~ msgid "&Add Profile..." -#~ msgstr "Добавить профиль..." - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "P&rofile" -#~ msgstr "Профиль" - -#~ msgctxt "@title:tab" -#~ msgid "View" -#~ msgstr "Вид" - -#~ msgctxt "@option:check" -#~ msgid "Generate Brim" -#~ msgstr "Генерировать кайму" - -#~ msgctxt "@title:window" -#~ msgid "View" -#~ msgstr "Просмотр" - -#~ msgctxt "@label:listbox" -#~ msgid "Print Job" -#~ msgstr "Задание на печать" - -#~ msgctxt "@action:button" -#~ msgid "Skip Printer Check" -#~ msgstr "Пропустить проверку принтера" - -#~ msgctxt "@info:status" -#~ msgid "Incomplete" -#~ msgstr "Не выполнено" - -#~ msgctxt "@label" -#~ msgid "To assist you in having better default settings for your Ultimaker. Cura would like to know which upgrades you have in your machine:" -#~ msgstr "Для того, чтобы установить лучшие настройки по умолчанию для вашего Ultimaker, Cura должна знать какие изменения вы внесли в свой принтер:" - -#~ msgctxt "@option:check" -#~ msgid "Olsson Block" -#~ msgstr "Блок Олссона" - -#~ msgctxt "@action:button" -#~ msgid "Skip Bedleveling" -#~ msgstr "Пропустить выравнивание стола" - -#~ msgctxt "@label" -#~ msgid "Everything is in order! You're done with bedleveling." -#~ msgstr "Всё в порядке! Вы завершили выравнивание стола." - -#~ msgctxt "@option:check" -#~ msgid "Extruder driver upgrades" -#~ msgstr "Обновления экструдера" - -#~ msgctxt "@option:check" -#~ msgid "Heated printer bed (self built)" -#~ msgstr "Нагреваемый стол (самодельный)" - -#~ msgctxt "@label" -#~ msgid "If you bought your Ultimaker after october 2012 you will have the Extruder drive upgrade. If you do not have this upgrade, it is highly recommended to improve reliability. This upgrade can be bought from the Ultimaker webshop or found on thingiverse as thing:26094" -#~ msgstr "Если вы купили ваш Ultimaker после октября 2012 года, то у вас есть обновление экструдера. Если у вас нет этого обновления, оно крайне рекомендуется. Это обновление можно купить на сайте Ultimaker или найти на Thingiverse (thing:26094)" - -#~ msgctxt "@label" -#~ msgid "Cura requires these new features and thus your firmware will most likely need to be upgraded. You can do so now." -#~ msgstr "Cura требует эти новые возможности и соответственно, ваша прошивка также может нуждаться в обновлении. Вы можете сделать это прямо сейчас." - -#~ msgctxt "@action:button" -#~ msgid "Upgrade to Marlin Firmware" -#~ msgstr "Обновиться на прошивку Marlin" - -#~ msgctxt "@action:button" -#~ msgid "Skip Upgrade" -#~ msgstr "Пропусть апгрейд" - -#~ msgctxt "@label" -#~ msgid "This printer name has already been used. Please choose a different printer name." -#~ msgstr "Данное имя принтера уже используется. Пожалуйста, выберите другое имя для принтера." - -#~ msgctxt "@title" -#~ msgid "Bed Levelling" -#~ msgstr "Выравнивание стола" diff --git a/resources/i18n/ru_RU/fdmextruder.def.json.po b/resources/i18n/ru_RU/fdmextruder.def.json.po index 41edf176ea..04267892fa 100644 --- a/resources/i18n/ru_RU/fdmextruder.def.json.po +++ b/resources/i18n/ru_RU/fdmextruder.def.json.po @@ -1,12 +1,9 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-08 09:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -15,6 +12,96 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: fdmextruder.def.json +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Прилипание" + +#: fdmextruder.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Укажите диаметр используемой нити." + +#: fdmextruder.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Прилипание к столу" + +#: fdmextruder.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Диаметр" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Завершающий G-код, запускающийся при переключении с данного экструдера." + +#: fdmextruder.def.json +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "Экструдер" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code label" +msgid "Extruder End G-Code" +msgstr "Завершающий G-код экструдера" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_abs label" +msgid "Extruder End Position Absolute" +msgstr "Абсолютная конечная позиция экструдера" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x label" +msgid "Extruder End Position X" +msgstr "Конечная X позиция экструдера" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y label" +msgid "Extruder End Position Y" +msgstr "Конечная Y позиция экструдера" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Начальная X позиция экструдера" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Начальная Y позиция экструдера" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z координата начала печати" + +#: fdmextruder.def.json +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Охлаждающий вентилятор экструдера, используемый во время печати" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_code label" +msgid "Extruder Start G-Code" +msgstr "Стартовый G-код экструдера" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_abs label" +msgid "Extruder Start Position Absolute" +msgstr "Абсолютная стартовая позиция экструдера" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "Стартовая X позиция экструдера" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "Стартовая Y позиция экструдера" + #: fdmextruder.def.json msgctxt "machine_settings label" msgid "Machine" @@ -26,69 +113,9 @@ msgid "Machine specific settings" msgstr "Параметры, относящиеся к принтеру" #: fdmextruder.def.json -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "Экструдер" - -#: fdmextruder.def.json -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "Экструдер, который используется для печати. Имеет значение при использовании нескольких экструдеров." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Идентификатор сопла" - -#: fdmextruder.def.json -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\"." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Диаметр сопла" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Внутренний диаметр сопла. Измените этот параметр при использовании сопла нестандартного размера." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x label" -msgid "Nozzle X Offset" -msgstr "X смещение сопла" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "Смещение сопла по оси X." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "Y смещение сопла" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "Смещение сопла по оси Y." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code label" -msgid "Extruder Start G-Code" -msgstr "Стартовый G-код экструдера" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "Стартовый G-код, запускающийся при переключении на данный экструдер." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_abs label" -msgid "Extruder Start 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 "Устанавливает абсолютную конечную позицию экструдера, а не относительно последней известной позиции головы." #: fdmextruder.def.json msgctxt "machine_extruder_start_pos_abs description" @@ -96,114 +123,9 @@ msgid "Make the extruder starting position absolute rather than relative to the msgstr "Устанавливает абсолютную стартовую позицию экструдера, а не относительно последней известной позиции головы." #: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "Стартовая X позиция экструдера" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "X координата стартовой позиции при включении экструдера." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "Стартовая Y позиция экструдера" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "Y координата стартовой позиции при включении экструдера." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code label" -msgid "Extruder End G-Code" -msgstr "Завершающий G-код экструдера" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Завершающий G-код, запускающийся при переключении с данного экструдера." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_abs label" -msgid "Extruder End Position Absolute" -msgstr "Абсолютная конечная позиция экструдера" - -#: fdmextruder.def.json -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 "Устанавливает абсолютную конечную позицию экструдера, а не относительно последней известной позиции головы." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x label" -msgid "Extruder End Position X" -msgstr "Конечная X позиция экструдера" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "X координата конечной позиции при отключении экструдера." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y label" -msgid "Extruder End Position Y" -msgstr "Конечная Y позиция экструдера" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "Y координата конечной позиции при отключении экструдера." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z координата начала печати" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Позиция кончика сопла на оси Z при старте печати." - -#: fdmextruder.def.json -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Охлаждающий вентилятор экструдера, используемый во время печати" - -#: fdmextruder.def.json -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 следует менять только при наличии другого охлаждающего вентилятора, используемого при печати, для каждого экструдера." - -#: fdmextruder.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Прилипание к столу" - -#: fdmextruder.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Прилипание" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Начальная X позиция экструдера" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "X координата позиции, в которой сопло начинает печать." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Начальная Y позиция экструдера" - -#: fdmextruder.def.json -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 "material description" +msgid "Material" +msgstr "Материал" #: fdmextruder.def.json msgctxt "material label" @@ -211,1512 +133,91 @@ msgid "Material" msgstr "Материал" #: fdmextruder.def.json -msgctxt "material description" -msgid "Material" -msgstr "Материал" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Диаметр сопла" #: fdmextruder.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Диаметр" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Идентификатор сопла" #: fdmextruder.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Укажите диаметр используемой нити." - -#~ msgctxt "machine_extruder_start_code description" -#~ msgid "Start g-code to execute whenever turning the extruder on." -#~ msgstr "Стартовый G-код, который выполняется при включении экструдера." - -#~ msgctxt "machine_extruder_end_code description" -#~ msgid "End g-code to execute whenever turning the extruder off." -#~ msgstr "Завершающий G-код, который выполняется при отключении экструдера." - -#~ msgctxt "resolution label" -#~ msgid "Quality" -#~ 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_line_width label" -#~ msgid "Skirt Line Width" -#~ msgstr "Ширина линии юбки" - -#~ msgctxt "skirt_line_width description" -#~ msgid "Width of a single skirt 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_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 "shell label" -#~ msgid "Shell" -#~ msgstr "Ограждение" - -#~ msgctxt "wall_thickness label" -#~ msgid "Wall Thickness" -#~ msgstr "Толщина стенки" - -#~ msgctxt "wall_thickness description" -#~ msgid "The thickness of the outside 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 "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 "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 "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "Изменить направление, в котором печатаются слои крышки/дна. Обычно, они печатаются по диагонали. Данный параметр добавляет направления X-только и Y-только." - -#~ 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 "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 "remove_overlapping_walls_enabled label" -#~ msgid "Remove Overlapping Wall Parts" -#~ msgstr "Удаление перекрывающихся частей стены" - -#~ msgctxt "remove_overlapping_walls_enabled description" -#~ msgid "Remove parts of a wall which share an overlap which would result in overextrusion in some places. These overlaps occur in thin parts and sharp corners in models." -#~ msgstr "Удаляет части стены, которые перекрываются. что приводит к появлению излишков материала в некоторых местах. Такие перекрытия образуются в тонких частях и острых углах моделей." - -#~ msgctxt "remove_overlapping_walls_0_enabled label" -#~ msgid "Remove Overlapping Outer Wall Parts" -#~ msgstr "Удаление перекрывающихся частей внешних стенок" - -#~ msgctxt "remove_overlapping_walls_0_enabled description" -#~ msgid "Remove parts of an outer wall which share an overlap which would result in overextrusion in some places. These overlaps occur in thin pieces in a model and sharp corners." -#~ msgstr "Удаляет части внешней стены, которые перекрываются, что приводит к появлению излишков материала в некоторых местах. Такие перекрытия образуются в тонких частях и острых углах моделей." - -#~ msgctxt "remove_overlapping_walls_x_enabled label" -#~ msgid "Remove Overlapping Inner Wall Parts" -#~ msgstr "Удаление перекрывающихся частей внутренних стенок" - -#~ msgctxt "remove_overlapping_walls_x_enabled description" -#~ msgid "Remove parts of an inner wall that would otherwise overlap and cause over-extrusion. These overlaps occur in thin pieces in a model and sharp corners." -#~ msgstr "Удаляет части внутренних стенок, которые в противном случае будут перекрываться и приводить к появлению излишков материала. Такие перекрытия образуются в тонких частях и острых углах моделей." - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Заполнение зазоров между стенками" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls when overlapping inner wall parts are removed." -#~ msgstr "Заполняет зазоры между стенами после того, как перекрывающиеся части внутренних стенок были удалены." - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Нигде" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Везде" - -#~ msgctxt "fill_perimeter_gaps option skin" -#~ msgid "Skin" -#~ msgstr "Покрытие" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Компенсация перекрытия стен" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ 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 "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 at the back, 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 "Back" -#~ msgstr "Позади" - -#~ msgctxt "z_seam_type option shortest" -#~ msgid "Shortest" -#~ msgstr "Короткий путь" - -#~ msgctxt "z_seam_type option random" -#~ msgid "Random" -#~ msgstr "Случайно" - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "Игнорирование небольших зазоров по оси Z" - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "Когда модель имеет небольшие вертикальные зазоры, около 5% дополнительного времени будет потрачено на вычисления верхних и нижних поверхностей в этих узких пространствах. В этом случае, отключите данную настройку." - -#~ msgctxt "infill label" -#~ msgid "Infill" -#~ 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 "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 and concentric patterns are fully printed every layer." -#~ 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 concentric" -#~ msgid "Concentric" -#~ msgstr "Концентрический" - -#~ msgctxt "infill_pattern option zigzag" -#~ msgid "Zig Zag" -#~ msgstr "Зигзаг" - -#~ msgctxt "infill_overlap label" -#~ msgid "Infill Overlap" -#~ msgstr "Перекрытие заполнения" - -#~ msgctxt "infill_overlap 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 "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 "material_flow_dependent_temperature label" -#~ msgid "Auto Temperature" -#~ msgstr "Автоматическая температура" - -#~ msgctxt "material_flow_dependent_temperature description" -#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -#~ msgstr "Изменять температуру каждого слоя автоматически в соответствии со средней скоростью потока на этом слое." - -#~ msgctxt "material_print_temperature label" -#~ msgid "Printing Temperature" -#~ msgstr "Температура печати" - -#~ msgctxt "material_print_temperature description" -#~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." -#~ msgstr "Температура при печати. Установите 0 для предварительного разогрева вручную." - -#~ 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 "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 "material_bed_temperature label" -#~ msgid "Bed Temperature" -#~ msgstr "Температура стола" - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated bed. Set at 0 to pre-heat the printer manually." -#~ msgstr "Температура стола при печати. Установите 0 для предварительного разогрева вручную." - -#~ 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 "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 "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_hop label" -#~ msgid "Z Hop when Retracting" -#~ msgstr "Поднятие оси Z при откате" - -#~ msgctxt "retraction_hop 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 "speed label" -#~ 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 effect 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_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_lines label" -#~ msgid "Support Wall Speed" -#~ msgstr "Скорость печати стенок поддержки" - -#~ msgctxt "speed_support_lines description" -#~ msgid "The speed at which the walls of support are printed. Printing the walls at lower speeds improves stability." -#~ 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 the support roof at lower speeds can improve overhang quality." -#~ 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 print speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "Скорость печати первого слоя. Пониженное значение помогает улучшить прилипание материала к столу." - -#~ msgctxt "skirt_speed label" -#~ msgid "Skirt Speed" -#~ msgstr "Скорость печати юбки" - -#~ msgctxt "skirt_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 at a different speed." -#~ msgstr "Скорость, на которой происходит печать юбки и каймы. Обычно, их печать происходит на скорости печати первого слоя, но иногда вам может потребоваться печатать юбку на другой скорости." - -#~ 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 object, 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 "travel label" -#~ msgid "Travel" -#~ msgstr "Перемещение" - -#~ msgctxt "retraction_combing label" -#~ msgid "Enable Combing" -#~ 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 disabled, the material will retract and the nozzle moves in a straight line to the next point." -#~ msgstr "Комбинг удерживает при перемещении сопло внутри уже напечатанных зон. Это выражается в небольшом увеличении пути, но уменьшает необходимость в откатах. При отключенном комбинге выполняется откат и сопло передвигается в следующую точку по прямой." - -#~ msgctxt "travel_avoid_other_parts label" -#~ msgid "Avoid Printed Parts" -#~ 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_distance label" -#~ msgid "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 "coasting_enable label" -#~ msgid "Enable Coasting" -#~ msgstr "Разрешить накат" - -#~ msgctxt "cooling label" -#~ msgid "Cooling" -#~ msgstr "Охлаждение" - -#~ msgctxt "cool_fan_enabled label" -#~ msgid "Enable Cooling Fans" -#~ msgstr "Включить охлаждающие вентиляторы" - -#~ msgctxt "cool_fan_enabled description" -#~ msgid "Enables the 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 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_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 zero 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." -#~ 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 "draft_shield_enabled label" -#~ msgid "Enable Draft Shield" -#~ msgstr "Разрешить печать кожуха" - -#~ msgctxt "draft_shield_enabled description" -#~ msgid "This will create a wall around the object, 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 object 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 "support label" -#~ msgid "Support" -#~ msgstr "Поддержки" - -#~ msgctxt "support_enable label" -#~ msgid "Enable Support" -#~ msgstr "Разрешить поддержки" - -#~ msgctxt "support_enable description" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Разрешить печать поддержек. Такие структуры поддерживают части моделей со значительными навесаниями." - -#~ msgctxt "support_type label" -#~ msgid "Placement" -#~ 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 "support_type option buildplate" -#~ msgid "Touching Buildplate" -#~ msgstr "От стола" - -#~ msgctxt "support_type option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Везде" - -#~ msgctxt "support_angle label" -#~ msgid "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_connect_zigzags label" -#~ msgid "Connect 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_xy_distance label" -#~ msgid "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_z_distance label" -#~ msgid "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. This value is rounded down to a multiple of the layer height." -#~ msgstr "Расстояние между верхом/низом структуры поддержек и печатаемой моделью. Этот зазор упрощает последующее удаление поддержек. Это значение округляется вниз и кратно высоте слоя." - -#~ msgctxt "support_top_distance label" -#~ msgid "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 "Bottom Distance" -#~ msgstr "Дистанция снизу" - -#~ msgctxt "support_bottom_distance description" -#~ msgid "Distance from the print to the bottom of the support." -#~ 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." -#~ msgstr "Высота шагов лестнично-подобного низа поддержек, лежащих на модели. Малое значение усложняет последующее удаление поддержек, но слишком большое значение может сделать структуру поддержек нестабильной." - -#~ msgctxt "support_join_distance label" -#~ msgid "Join Distance" -#~ msgstr "Дистанция объединения" - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." -#~ msgstr "Максимальное расстояние между структурами поддержки по осям X/Y. Если отдельные структуры находятся ближе, чем определено данным значением, то такие структуры объединяются в одну." - -#~ 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_area_smoothing label" -#~ msgid "Area Smoothing" -#~ msgstr "Сглаживание зон" - -#~ msgctxt "support_area_smoothing description" -#~ msgid "Maximum distance in the X/Y directions of a line segment which is to be smoothed out. Ragged lines are introduced by the join distance and support bridge, which cause the machine to resonate. Smoothing the support areas won't cause them to break with the constraints, except it might change the overhang." -#~ msgstr "Максимальное расстояние по осям X/Y в сегменте линии, которая подлежит сглаживанию. Неровные линии появляются при дистанции объединения и поддержке в виде моста, что заставляет принтер резонировать. Сглаживание зон поддержек не приводит к нарушению ограничений, кроме возможных изменений в навесаниях." - -#~ msgctxt "support_roof_enable label" -#~ msgid "Enable Support Roof" -#~ msgstr "Разрешить крышу" - -#~ msgctxt "support_roof_enable description" -#~ msgid "Generate a dense top skin at the top of the support on which the model is printed." -#~ msgstr "Генерировать плотную поверхность наверху структуры поддержек на которой будет печататься модель." - -#~ msgctxt "support_roof_height label" -#~ msgid "Support Roof Thickness" -#~ msgstr "Толщина крыши" - -#~ msgctxt "support_roof_height description" -#~ msgid "The thickness of the support roofs." -#~ msgstr "Толщина поддерживающей крыши." - -#~ msgctxt "support_roof_density label" -#~ msgid "Support Roof Density" -#~ msgstr "Плотность крыши" - -#~ msgctxt "support_roof_density description" -#~ msgid "Adjusts the density of the roof 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_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_roof_pattern label" -#~ msgid "Support Roof Pattern" -#~ msgstr "Шаблон поддерживающей крыши" - -#~ msgctxt "support_roof_pattern description" -#~ msgid "The pattern with which the top of the support is 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_conical_enabled label" -#~ msgid "Conical Support" -#~ msgstr "Конические поддержки" - -#~ msgctxt "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "Экспериментальная возможность: Нижняя часть поддержек становится меньше, чем верхняя." - -#~ msgctxt "support_conical_angle label" -#~ msgid "Cone 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 "Cone Minimal Width" -#~ msgstr "Минимальная ширина конуса" - -#~ msgctxt "support_conical_min_width description" -#~ msgid "Minimal width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -#~ 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_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "Минимальный диаметр." - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum 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 "adhesion_type label" -#~ msgid "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 object to prevent warping. Raft adds a thick grid with a roof below the object. Skirt is a line printed around the object, 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 "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 objects. Setting this to 0 will disable the skirt." -#~ msgstr "Несколько линий юбки помогают лучше начать укладывание материала при печати небольших объектов. Установка этого параметра в 0 отключает печать юбки." - -#~ 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.\n" -#~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance." -#~ msgstr "" -#~ "Расстояние по горизонтали между юбкой и первым слоем печатаемого объекта.\n" -#~ "Это минимальное расстояние, следующие линии юбки будут печататься наружу." - -#~ msgctxt "skirt_minimal_length label" -#~ msgid "Skirt Minimum Length" -#~ msgstr "Минимальная длина юбки" - -#~ msgctxt "skirt_minimal_length description" -#~ msgid "The minimum length of the skirt. If this length is not reached by the skirt line count, more skirt 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 "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 object 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_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 object. Only the first layer is raised by this amount to lower the bonding between the raft layer and the object. Makes it easier to peel off the raft." -#~ 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 object 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_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 bed." -#~ 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_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 bed." -#~ 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 bed adhesion." -#~ msgstr "Ширина линий нижнего слоя подложки. Она должна быть достаточной, чтобы улучшить прилипание к столу." - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft 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_speed label" -#~ msgid "Raft Print Speed" -#~ msgstr "Скорость печати подложки" - -#~ msgctxt "raft_speed description" -#~ msgid "The speed at which the raft is printed." -#~ msgstr "Скорость, на которой печатается подложка." - -#~ msgctxt "raft_surface_speed label" -#~ msgid "Raft Surface Print Speed" -#~ msgstr "Скорость печати поверхности подложки" - -#~ msgctxt "raft_surface_speed description" -#~ msgid "The speed at which the surface 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_interface_speed label" -#~ msgid "Raft Interface Print Speed" -#~ msgstr "Скорость печати связи подложки" - -#~ msgctxt "raft_interface_speed description" -#~ msgid "The speed at which the interface 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_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_fan_speed label" -#~ msgid "Raft Fan Speed" -#~ msgstr "Скорость вентилятора для подложки" - -#~ msgctxt "raft_fan_speed description" -#~ msgid "The fan speed for the raft." -#~ msgstr "Скорость вращения вентилятора при печати подложки." - -#~ msgctxt "raft_surface_fan_speed label" -#~ msgid "Raft Surface Fan Speed" -#~ msgstr "Скорость вентилятора для поверхности подложки" - -#~ msgctxt "raft_surface_fan_speed description" -#~ msgid "The fan speed for the surface raft layers." -#~ msgstr "Скорость вращения вентилятора при печати поверхности слоёв подложки." - -#~ msgctxt "raft_interface_fan_speed label" -#~ msgid "Raft Interface Fan Speed" -#~ msgstr "Скорость вентилятора для связующего слоя" - -#~ msgctxt "raft_interface_fan_speed description" -#~ msgid "The fan speed for the interface raft layer." -#~ 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 "meshfix label" -#~ msgid "Mesh Fixes" -#~ msgstr "Ремонт объектов" - -#~ msgctxt "meshfix_union_all label" -#~ msgid "Union Overlapping Volumes" -#~ msgstr "Объединение перекрывающихся объёмов" - -#~ msgctxt "meshfix_union_all description" -#~ msgid "Ignore the internal geometry arising from overlapping volumes and print the volumes as one. This may cause 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 GCode." -#~ msgstr "Обычно Cura пытается закрыть небольшие отверстия в объекте и убрать части слоя с большими отверстиями. Включение этого параметра сохраняет те части, что не могут быть сшиты. Этот параметр должен использоваться как последний вариант, когда уже ничего не помогает получить нормальный GCode." - -#~ msgctxt "blackmagic label" -#~ msgid "Special Modes" -#~ msgstr "Специальные режимы" - -#~ msgctxt "print_sequence label" -#~ msgid "Print Sequence" -#~ msgstr "Последовательная печать" - -#~ msgctxt "print_sequence description" -#~ msgid "Whether to print all objects one layer at a time or to wait for one object to finish, before moving on to the next. One at a time mode is only possible if 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 "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 "magic_mesh_surface_mode label" -#~ msgid "Surface Mode" -#~ msgstr "Поверхностный режим" - -#~ msgctxt "magic_mesh_surface_mode description" -#~ msgid "Print the surface instead of the volume. No infill, no top/bottom skin, just a single wall of which the middle coincides with the surface of the mesh. It's also possible to do both: print the insides of a closed volume as normal, but print all polygons not part of a closed volume as surface." -#~ 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 object into a single walled print with a solid bottom. This feature used to be called Joris in older versions." -#~ msgstr "Спирально сглаживать движение по оси Z, печатая внешний контур. Приводит к постоянному увеличению Z координаты во время печати. Этот параметр превращает твёрдый объект в одностенную модель с твёрдым дном. Раньше этот параметр назывался Joris." - -#~ msgctxt "experimental label" -#~ msgid "Experimental" -#~ 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_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 "wireframe_enabled label" -#~ msgid "Wire Printing" -#~ msgstr "Нитевая печать" - -#~ msgctxt "wireframe_enabled description" -#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -#~ msgstr "Печатать только внешнюю поверхность с редкой перепончатой структурой, печатаемой \"прямо в воздухе\". Это реализуется горизонтальной печатью контуров модели с заданными Z интервалами, которые соединяются диагональными линиями." - -#~ msgctxt "wireframe_height label" -#~ msgid "WP Connection Height" -#~ msgstr "Высота соединений при нетевой печати" - -#~ msgctxt "wireframe_height description" -#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -#~ msgstr "Высота диагональных линий между горизонтальными частями. Она определяет общую плотность сетевой структуры. Применяется только при нитевой печати." - -#~ msgctxt "wireframe_printspeed label" -#~ msgid "WP speed" -#~ msgstr "Скорость нитевой печати" - -#~ msgctxt "wireframe_printspeed description" -#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -#~ msgstr "Скорость с которой двигается сопло, выдавая материал. Применяется только при нитевой печати." - -#~ msgctxt "wireframe_printspeed_bottom label" -#~ msgid "WP Bottom Printing Speed" -#~ msgstr "Скорость печати низа" - -#~ msgctxt "wireframe_printspeed_bottom description" -#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -#~ msgstr "Скорость, с которой печатается первый слой, касающийся стола. Применяется только при нитевой печати." - -#~ msgctxt "wireframe_printspeed_flat description" -#~ msgid "Speed of printing the horizontal contours of the object. Only applies to Wire Printing." -#~ msgstr "Скорость, с которой печатаются горизонтальные контуры объекта. Применяется только при нитевой печати." - -#~ msgctxt "wireframe_flow label" -#~ msgid "WP Flow" -#~ msgstr "Поток нитевой печати" - -#~ msgctxt "wireframe_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -#~ msgstr "Компенсация потока: объём выдавленного материала умножается на это значение. Применяется только при нитевой печати." - -#~ msgctxt "wireframe_flow_connection label" -#~ msgid "WP Connection Flow" -#~ msgstr "Поток соединений при нитевой печати" - -#~ msgctxt "wireframe_flow_connection description" -#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." -#~ msgstr "Компенсация потока при движении вверх и вниз. Применяется только при нитевой печати." - -#~ msgctxt "wireframe_flow_flat label" -#~ msgid "WP Flat Flow" -#~ msgstr "Поток горизонтальных линий" - -#~ msgctxt "wireframe_flow_flat description" -#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -#~ msgstr "Компенсация потока при печати плоских линий. Применяется только при нитевой печати." - -#~ msgctxt "wireframe_top_delay label" -#~ msgid "WP Top Delay" -#~ msgstr "Верхняя задержка при нитевой печати" - -#~ msgctxt "wireframe_top_delay description" -#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -#~ msgstr "Задержка после движения вверх, чтобы такие линии были твёрже. Применяется только при нитевой печати." - -#~ msgctxt "wireframe_bottom_delay label" -#~ msgid "WP Bottom Delay" -#~ msgstr "Нижняя задержка при нитевой печати" - -#~ msgctxt "wireframe_bottom_delay description" -#~ msgid "Delay time after a downward move. Only applies to Wire Printing." -#~ msgstr "Задержка после движения вниз. Применяется только при нитевой печати." - -#~ msgctxt "wireframe_flat_delay label" -#~ msgid "WP Flat Delay" -#~ msgstr "Горизонтальная задержка при нитевой печати" - -#~ msgctxt "wireframe_flat_delay description" -#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -#~ msgstr "Задержка между двумя горизонтальными сегментами. Внесение такой задержки может улучшить прилипание к предыдущим слоям в местах соединений, в то время как более длинные задержки могут вызывать провисания. Применяется только при нитевой печати." - -#~ msgctxt "wireframe_up_half_speed description" -#~ msgid "" -#~ "Distance of an upward move which is extruded with half speed.\n" -#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -#~ msgstr "" -#~ "Расстояние движения вверх, при котором выдавливание идёт на половине скорости.\n" -#~ "Это может улучшить прилипание к предыдущим слоям, не перегревая материал тех слоёв. Применяется только при нитевой печати." - -#~ msgctxt "wireframe_top_jump label" -#~ msgid "WP Knot Size" -#~ msgstr "Размер узла при нитевой печати" - -#~ msgctxt "wireframe_top_jump description" -#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -#~ msgstr "Создаёт небольшой узел наверху возвышающейся линии так, чтобы последующий горизонтальный слой имел больший шанс к присоединению. Применяется только при нитевой печати." - -#~ msgctxt "wireframe_fall_down label" -#~ msgid "WP Fall Down" -#~ msgstr "Падение нитевой печати" - -#~ msgctxt "wireframe_fall_down description" -#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Расстояние с которой материал падает вниз после восходящего выдавливания. Расстояние компенсируется. Применяется только при нитевой печати." - -#~ msgctxt "wireframe_drag_along label" -#~ msgid "WP Drag along" -#~ msgstr "Протягивание при нитевой печати" - -#~ msgctxt "wireframe_drag_along description" -#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Расстояние, на которое материал от восходящего выдавливания тянется во время нисходящего выдавливания. Расстояние компенсируется. Применяется только при нитевой печати." - -#~ msgctxt "wireframe_strategy label" -#~ msgid "WP Strategy" -#~ msgstr "Стратегия нитевой печати" - -#~ msgctxt "wireframe_strategy option compensate" -#~ msgid "Compensate" -#~ msgstr "Компенсация" - -#~ msgctxt "wireframe_strategy option knot" -#~ msgid "Knot" -#~ msgstr "Узел" - -#~ msgctxt "wireframe_strategy option retract" -#~ msgid "Retract" -#~ msgstr "Откат" - -#~ msgctxt "wireframe_straight_before_down description" -#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -#~ msgstr "Процент диагонально нисходящей линии, которая покрывается куском горизонтальной линии. Это может предотвратить провисание самых верхних точек восходящих линий. Применяется только при нитевой печати." - -#~ msgctxt "wireframe_roof_fall_down description" -#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Расстояние, на котором линии горизонтальной крыши печатаются \"в воздухе\" подают вниз перед печатью. Расстояние компенсируется. Применяется только при нитевой печати." +msgctxt "machine_nozzle_offset_x label" +msgid "Nozzle X Offset" +msgstr "X смещение сопла" + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "Y смещение сопла" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "Стартовый G-код, запускающийся при переключении на данный экструдер." + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "X координата позиции, в которой сопло начинает печать." + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Y координата позиции, в которой сопло начинает печать." + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Позиция кончика сопла на оси Z при старте печати." + +#: fdmextruder.def.json +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "Экструдер, который используется для печати. Имеет значение при использовании нескольких экструдеров." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Внутренний диаметр сопла. Измените этот параметр при использовании сопла нестандартного размера." + +#: fdmextruder.def.json +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\"." + +#: fdmextruder.def.json +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 следует менять только при наличии другого охлаждающего вентилятора, используемого при печати, для каждого экструдера." + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "X координата конечной позиции при отключении экструдера." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "Смещение сопла по оси X." + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "X координата стартовой позиции при включении экструдера." + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "Y координата конечной позиции при отключении экструдера." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "Смещение сопла по оси Y." + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "Y координата стартовой позиции при включении экструдера." diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index a2b2ff24f0..695893fa84 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -1,12 +1,9 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-28 11:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -16,1497 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: fdmprinter.def.json -msgctxt "machine_settings label" -msgid "Machine" -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 "Расстояние от краёв модели. Разглаживание от края до края может выразиться в загибании краёв при печати." #: fdmprinter.def.json -msgctxt "machine_settings description" -msgid "Machine specific settings" -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 "Коэффициент сжатия материала между питателем и камерой сопла, позволяющий определить, как далеко требуется продвинуть материал для переключения нити." #: fdmprinter.def.json -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Тип принтера" - -#: fdmprinter.def.json -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Название модели вашего 3D принтера." - -#: fdmprinter.def.json -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Показать варианты принтера" - -#: fdmprinter.def.json -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Следует ли показывать различные варианты этого принтера, которые описаны в отдельных JSON файлах." - -#: fdmprinter.def.json -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "Стартовый G-код" - -#: fdmprinter.def.json -msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." -msgstr "" -"Команды в G-коде, которые будут выполнены в самом начале, разделенные с помощью \n" -"." - -#: fdmprinter.def.json -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "Завершающий G-код" - -#: fdmprinter.def.json -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." -msgstr "" -"Команды в G-коде, которые будут выполнены в самом конце, разделенные с помощью \n" -"." - -#: fdmprinter.def.json -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID материала" - -#: fdmprinter.def.json -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "Идентификатор материала, устанавливается автоматически." - -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Диаметр" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Укажите диаметр используемой нити." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Ожидать пока прогреется стол" - -#: fdmprinter.def.json -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 "Следует ли добавлять команду ожидания прогрева стола до нужной температуры перед началом печати." - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Ожидать пока прогреется сопло" - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Следует ли добавлять команду ожидания прогрева сопла перед началом печати." - -#: fdmprinter.def.json -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Использовать температуру из материала" - -#: fdmprinter.def.json -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 автоматически проигнорирует этот параметр." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Добавлять температуру стола" - -#: fdmprinter.def.json -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 автоматически проигнорирует этот параметр." - -#: fdmprinter.def.json -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Ширина принтера" - -#: fdmprinter.def.json -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "Ширина (по оси X) области печати." - -#: fdmprinter.def.json -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Глубина принтера" - -#: fdmprinter.def.json -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "Ширина (по оси Y) области печати." - -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Высота принтера" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Ширина (по оси Z) области печати." - -#: fdmprinter.def.json -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Форма стола" - -#: fdmprinter.def.json -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "Форма стола без учёта непечатаемых областей." - -#: fdmprinter.def.json -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Прямоугольная" - -#: fdmprinter.def.json -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Эллиптическая" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Материал рабочего стола" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Материал рабочего стола, установленного на принтере." - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Стекло" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Алюминий" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Имеет подогреваемый стол" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Имеет ли принтер подогреваемый стол." - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Есть стабилизация температуры для объема печати" - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Имеет ли принтер возможность стабилизации температуры для объема печати." - -#: fdmprinter.def.json -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "Всегда выполнять запись активного инструмента" - -#: fdmprinter.def.json -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 или другой прошивки с модальными командами инструментов." - -#: fdmprinter.def.json -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Начало координат в центре" - -#: fdmprinter.def.json -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 в центре области печати." - -#: fdmprinter.def.json -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Количество экструдеров" - -#: fdmprinter.def.json -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Количество экструдеров. Экструдер - это комбинация механизма подачи, трубы и сопла." - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Количество включенных экструдеров" - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Количество включенных экструдеров; это значение автоматически устанавливается программным обеспечением" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Внешний диаметр сопла" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Внешний диаметр кончика сопла." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Длина сопла" - -#: fdmprinter.def.json -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 "Высота между кончиком сопла и нижней частью головы." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Угол сопла" - -#: fdmprinter.def.json -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 "Угол между горизонтальной плоскостью и конической частью над кончиком сопла." - -#: fdmprinter.def.json -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Длина зоны нагрева" - -#: fdmprinter.def.json -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 "Расстояние от кончика сопла до места, где тепло передаётся материалу." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Разрешить управление температурой сопла" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Скорость нагрева" - -#: fdmprinter.def.json -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/сек.), с которой сопло греет, усреднённая в окне температур при обычной печати и температура ожидания." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Скорость охлаждения" - -#: fdmprinter.def.json -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/сек.), с которой сопло охлаждается, усреднённая в окне температур при обычной печати и температура ожидания." - -#: fdmprinter.def.json -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Время перехода в ожидание" - -#: fdmprinter.def.json -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 "Минимальное время, которое экструдер должен быть неактивен, чтобы сопло начало охлаждаться. Только когда экструдер не используется дольше, чем указанное время, он может быть охлаждён до температуры ожидания." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Вариант G-кода" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Генерируемый тип G-кода." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumetric)" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -#: fdmprinter.def.json -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Откат встроенного программного обеспечения" - -#: fdmprinter.def.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 для отката материала." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Общий нагреватель экструдеров" - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Указывает, используют ли для все экструдеры общий нагреватель или у каждого имеется отдельный." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Общее сопло экструдеров" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Начальный откат общего сопла" - -#: fdmprinter.def.json -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 принтера; значение должно быть равно длине общей части каналов сопла или превышать ее." - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Запрещенные области" - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Список полигонов с областями, в которые голове запрещено заходить." - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Запрещённые зоны для сопла" - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "Список полигонов с областями, в которые не должно заходить сопло." - -#: fdmprinter.def.json -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Полигон головки принтера и вентилятора" - -#: fdmprinter.def.json -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 "Форма печатающей головки. Это координаты относительно положения печатной головки, которое обычно совпадает с положением ее первого экструдера. Координаты слева от печатной головки и перед ней должны иметь отрицательные значения." - -#: fdmprinter.def.json -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Высота портала" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Идентификатор сопла" - -#: fdmprinter.def.json -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\"." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Диаметр сопла" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Внутренний диаметр сопла. Измените этот параметр при использовании сопла нестандартного размера." - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Смещение с экструдером" - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Применить смещение экструдера к системе координат. Влияет на все экструдеры." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z координата начала печати" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Позиция кончика сопла на оси Z при старте печати." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Абсолютная позиция экструдера при старте" - -#: fdmprinter.def.json -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 "Сделать стартовую позицию экструдера абсолютной, а не относительной от последней известной позиции головы." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Максимальная скорость по оси X" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "Максимальная скорость для мотора оси X." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Максимальная скорость по оси Y" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Максимальная скорость для мотора оси Y." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Максимальная скорость по оси Z" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Максимальная скорость для мотора оси Z." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Максимальная скорость по оси E" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "Максимальная скорость подачи материала." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Максимальное ускорение по оси X" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "Максимальное ускорение для мотора оси X" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Максимальное ускорение по оси Y" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Максимальное ускорение для мотора оси Y." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Максимальное ускорение по оси Z" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Максимальное ускорение для мотора оси Z." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Максимальное ускорение материала" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Максимальное ускорение мотора подачи материала." - -#: fdmprinter.def.json -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Стандартное ускорение" - -#: fdmprinter.def.json -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "Стандартное ускорение для движений головы." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Обычный X-Y рывок" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "Стандартное изменение ускорения для движения в горизонтальной плоскости." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Обычный Z рывок" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Стандартное изменение ускорения для мотора по оси Z." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Обычный рывок материала" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Стандартное изменение ускорения для мотора, подающего материал." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Количество шагов на миллиметр (X)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Количество шагов на миллиметр (Y)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Количество шагов на миллиметр (Z)" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Количество шагов на миллиметр (E)" - -#: fdmprinter.def.json -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 "Количество шагов шаговых двигателей, приводящее к перемещению колесика питателя на один миллиметр по его окружности." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Ограничитель хода на оси X в прямом направлении" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Ограничитель хода на оси Y в прямом направлении" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Ограничитель хода на оси Z в прямом направлении" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Минимальная подача" - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Минимальная скорость движения головы." - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Диаметр колесика питателя" - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "Диаметр колесика, перемещающего материал в питатель." - -#: fdmprinter.def.json -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Масштабирование скорости вентилятора до 0-1" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "resolution label" -msgid "Quality" -msgstr "Качество" - -#: fdmprinter.def.json -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 "Все параметры, которые влияют на разрешение печати. Эти параметры сильно влияют на качество (и время печати)" - -#: fdmprinter.def.json -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Высота слоя" - -#: fdmprinter.def.json -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 "Высота каждого слоя в миллиметрах. Большие значения приводят к быстрой печати при низком разрешении, малые значения приводят к замедлению печати с высоким разрешением." - -#: fdmprinter.def.json -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Высота первого слоя" - -#: fdmprinter.def.json -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 "Высота первого слоя в миллиметрах. Более толстый слой упрощает прилипание пластика к столу." - -#: fdmprinter.def.json -msgctxt "line_width label" -msgid "Line Width" -msgstr "Ширина линии" - -#: fdmprinter.def.json -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 "Ширина одной линии. Обычно, ширина каждой линии должна соответствовать диаметру сопла. Однако небольшое уменьшение этого значение приводит к лучшей печати." - -#: fdmprinter.def.json -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Ширина линии стенки" - -#: fdmprinter.def.json -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Ширина одной линии стенки." - -#: fdmprinter.def.json -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Ширина линии внешней стенки" - -#: fdmprinter.def.json -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 "Ширина линии внешней стенки. Уменьшая данное значение, можно печатать более тонкие детали." - -#: fdmprinter.def.json -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Ширина линии внутренней стенки" - -#: fdmprinter.def.json -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Ширина одной линии стенки для всех линий стенки, кроме самой внешней." - -#: fdmprinter.def.json -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Ширина линии дна/крышки" - -#: fdmprinter.def.json -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Ширина одной линии дна/крышки." - -#: fdmprinter.def.json -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Ширина линии заполнения" - -#: fdmprinter.def.json -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Ширина одной линии заполнения." - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Ширина линии юбки/каймы" - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Ширина одной линии юбки или каймы." - -#: fdmprinter.def.json -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Ширина линии поддержки" - -#: fdmprinter.def.json -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Ширина одной линии поддержки." - -#: fdmprinter.def.json -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Ширина линии поддерживающей крыши" - -#: fdmprinter.def.json -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Ширина одной линии поддержки крышки или дна." - -#: fdmprinter.def.json -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Ширина линии крыши поддержки" - -#: fdmprinter.def.json -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Ширина одной линии крыши поддержки." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Ширина линии дна поддержки" - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Ширина одной линии дна поддержки." - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Ширина линии черновой башни" - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Ширина отдельной линии черновой башни." - -#: fdmprinter.def.json -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Ширина линии первого слоя" - -#: fdmprinter.def.json -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Множитель для ширины линии первого слоя. Увеличение значения улучшает прилипание к столу." - -#: fdmprinter.def.json -msgctxt "shell label" -msgid "Walls" -msgstr "Стенки" - -#: fdmprinter.def.json -msgctxt "shell description" -msgid "Shell" -msgstr "Ограждение" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Экструдер стенок" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати стенок. Используется при наличии нескольких экструдеров." - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Экструдер внешних стенок" - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати внешних стенок. Используется при наличии нескольких экструдеров." - -#: fdmprinter.def.json -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Экструдер внутренней стенки" - -#: fdmprinter.def.json -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати внутренних стенок. Используется при наличии нескольких экструдеров." - -#: fdmprinter.def.json -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Толщина стенки" - -#: fdmprinter.def.json -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 "Толщина внешних стенок в горизонтальном направлении. Это значение, разделённое на ширину линии стенки, определяет количество стенок." - -#: fdmprinter.def.json -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Количество линий стенки" - -#: fdmprinter.def.json -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 "Количество линий стенки. При вычислении толщины стенки, это значение округляется до целого." - -#: fdmprinter.def.json -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Длина перехода к стенке" - -#: fdmprinter.def.json -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 "При переходе между разным количеством стенок по мере того, как деталь становится тоньше, выделяется определенное пространство для разделения или соединения линий стенок." - -#: fdmprinter.def.json -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Счетчик распределений по стенкам" - -#: fdmprinter.def.json -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 "Количество стенок, считая от центра, на которые необходимо распространить вариацию. Более низкое значение означает, что ширина внешних стенок не изменяется." - -#: fdmprinter.def.json -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Пороговый угол перехода между стенками" - -#: fdmprinter.def.json -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 "Когда требуется создавать переходы между четным и нечетным количеством стенок. Клиновидная форма с углом, превышающим этот параметр, не будет иметь переходов, и стенки не будут напечатаны в центре для заполнения оставшегося пространства. Уменьшение значения этого параметра позволяет сократить количество и длину этих центральных стенок, но при этом могут остаться зазоры или произойти чрезмерное экструдирование." - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Расстояние фильтра при переходе между стенками" - -#: fdmprinter.def.json -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 "Если ожидаются переходы туда и обратно между разным количеством стенок в быстрой последовательности, не выполняйте переходы совсем. Удалите переходы, если расстояние между ними меньше значения этого параметра." - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Поле фильтра при переходе между стенками" - -#: fdmprinter.def.json -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 * Минимальная ширина линии стенки + Поле]. Расширение этого поля позволяет сократить количество переходов, что в свою очередь позволяет сократить количество запусков/остановок экструдирования и время перемещения. Однако большой разброс значений ширины линии может привести к проблемам с недостаточным или чрезмерным экструдированием материала." - -#: fdmprinter.def.json -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Расстояние очистки внешней стенки" - -#: fdmprinter.def.json -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 шов." - -#: fdmprinter.def.json -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Вставка внешней стенки" - -#: fdmprinter.def.json -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 "Вставка применяется для внешних стенок. Если внешняя стенка меньше диаметра сопла и печатается после внутренних стенок, то используйте это смещение для захода соплом на внутренние стенки, вместо выхода за модель." - -#: fdmprinter.def.json -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Оптимизация порядка печати стенок" - -#: fdmprinter.def.json -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 "Оптимизирует порядок, в котором печатаются стенки, для уменьшения количества откатов и перемещений. Большинство моделей будут распечатываться быстрее, но не все. Сравнивайте оценочное время печати с оптимизацией и без нее. При выборе каймы в качестве типа приклеивания к рабочему столу первый слой не оптимизируется." - -#: fdmprinter.def.json -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Порядок стенок" - -#: fdmprinter.def.json -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." -msgstr "Определяет порядок печати стенок. Если сначала печатать наружные стенки, это поможет более точно определять размеры стенок, поскольку дефекты внутренних стенок не смогут распространяться наружу. Если печатать внешние стенки позже, это позволит лучше укладывать их друг на друга при печати выступов." - -#: fdmprinter.def.json -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "От внутренних к внешним" - -#: fdmprinter.def.json -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "От внешних к внутренним" - -#: fdmprinter.def.json -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Чередующаяся стенка" - -#: fdmprinter.def.json -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 "Печатает дополнительную стенку через слой. Таким образом, заполнение заключается между этими дополнительными стенками, что приводит к повышению прочности печати." - -#: fdmprinter.def.json -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Минимальная ширина линии стенки" - -#: fdmprinter.def.json -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 стенок — узкие. Самая широкая возможная линия стенки в два раза превышает минимальную ширину линии стенки." - -#: fdmprinter.def.json -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Минимальная ширина линии четных стенок" - -#: fdmprinter.def.json -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 * Минимальная ширина линии нечетной стенки." - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold label" -msgid "Split Middle Line Threshold" -msgstr "Порог разделения средней линии" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "Минимальное значение ширины линии, используемое как коэффициент нормальной ширины линии, при превышении которого средняя линия (если она есть) будет разделяться на две. Уменьшите значение, чтобы увеличить количество линий и сделать их более тонкими. Увеличьте значение, чтобы увеличить количество линий и сделать их более широкими. Обратите внимание, что это применимо в сценариях, когда вся фигура заполняется стенкой, поэтому серединой в данном случае является середина объекта между двумя внешними краями формы, даже если на отпечатке имеется заливка или (другая) оболочка вместо стенки." - -#: fdmprinter.def.json -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Минимальная ширина линии нечетных стенок" - -#: fdmprinter.def.json -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 * Ширина линии четной стенки." - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold label" -msgid "Add Middle Line Threshold" -msgstr "Добавление порога средней линии" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "Минимальное значение ширины линии, используемое как коэффициент нормальной ширины линии, при превышении которого будет добавляться средняя линия (если ее не было). Уменьшите значение этого параметра, чтобы увеличить количество линий и сделать их более тонкими. Увеличьте значение, чтобы увеличить количество линий и сделать их более широкими. Обратите внимание, что это применимо в сценариях, когда вся фигура заполняется стенкой, поэтому серединой в данном случае является середина объекта между двумя внешними краями формы, даже если на отпечатке имеется заливка или (другая) оболочка вместо стенки." - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Печать тонких стенок" - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Печать частей модели, которые по горизонтали тоньше диаметра сопла." - -#: fdmprinter.def.json -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Минимальный размер элемента" - -#: fdmprinter.def.json -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 "Минимальная толщина тонких элементов. Элементы модели, которые тоньше этого значения, не будут напечатаны, в то время как элементы с толщиной, превышающей минимальный размер элемента, будут расширены до минимальной ширины линии стенки." - -#: fdmprinter.def.json -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Минимальная ширина линии нечетных стенок" - -#: fdmprinter.def.json -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 "Ширина стенки, которая заменит тонкие элементы (согласно минимальному размеру элемента) модели. Если минимальная ширина линии стенки меньше толщины элемента, толщина стенки будет приведена к толщине самого элемента." - -#: fdmprinter.def.json -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Горизонтальное расширение" - -#: fdmprinter.def.json -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 "Сумма смещения, применяемая ко всем полигонам на каждом слое. Позитивные значения могут возместить потери для слишком больших отверстий; негативные значения могут возместить потери для слишком малых отверстий." - -#: fdmprinter.def.json -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Горизонтальное расширение первого слоя" - -#: fdmprinter.def.json -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 "Сумма смещений, применяемая ко всем полигонам первого слоя. Отрицательное значение может компенсировать \"хлюпанье\" первого слоя, известное как \"слоновая нога\"." - -#: fdmprinter.def.json -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Горизонтальное расширение отверстия" - -#: fdmprinter.def.json -msgctxt "hole_xy_offset description" -msgid "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." -msgstr "Смещение, применяемое ко всем отверстиям в каждом слое. Положительные значения увеличивают размер отверстий; отрицательные значения уменьшают размер отверстий." - -#: fdmprinter.def.json -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Выравнивание шва по оси Z" - -#: fdmprinter.def.json -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 "Начальная точка каждого пути на слое. Когда пути последовательных слоёв начинаются в одной точке, то в процессе печати может появиться вертикальный шов. Выравнивая место точки в указанной пользователем области, шов несложно убрать. При случайном размещении неточность в начале пути становится не так важна. При выборе кратчайшего пути, печать становится быстрее." - -#: fdmprinter.def.json -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Пользовательский" - -#: fdmprinter.def.json -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Короткий путь" - -#: fdmprinter.def.json -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Случайно" - -#: fdmprinter.def.json -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Острейший угол" - -#: fdmprinter.def.json -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Позиция Z шва" - -#: fdmprinter.def.json -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "Позиция, рядом с которой следует начинать путь на каждом слое." - -#: fdmprinter.def.json -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Сзади слева" - -#: fdmprinter.def.json -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Назад" - -#: fdmprinter.def.json -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Сзади справа" - -#: fdmprinter.def.json -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Справа" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Спереди справа" - -#: fdmprinter.def.json -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Спереди" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Спереди слева" - -#: fdmprinter.def.json -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Слева" - -#: fdmprinter.def.json -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "X координата для Z шва" - -#: fdmprinter.def.json -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "X координата позиции, вблизи которой следует начинать путь на каждом слое." - -#: fdmprinter.def.json -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Y координата для Z шва" - -#: fdmprinter.def.json -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "Y координата позиции, вблизи которой следует начинать путь на каждом слое." - -#: fdmprinter.def.json -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Настройки угла шва" - -#: fdmprinter.def.json -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 "Управляет влиянием углов на контуре модели на позицию шва. «Нет» означает отсутствие влияния. «Спрятать шов» означает размещение шва с наибольшей вероятностью внутри угла. «Показать шов» означает размещение шва с наибольшей вероятностью снаружи угла. «Спрятать или показать» означает выбор варианта в зависимости от ситуации. Функция «Интеллектуальное скрытие» допускает размещение швов как внутри, так и снаружи углов, но чаще размещает их внутри." - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Нет" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Спрятать шов" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Показать шов" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Спрятать или показать" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Интеллектуальное скрытие" - -#: fdmprinter.def.json -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Привязка Z шва" - -#: fdmprinter.def.json -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 шва привязаны к центру каждой части. Когда отключено, координаты определяются от абсолютной позиции на столе." - -#: fdmprinter.def.json -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Дно / крышка" - -#: fdmprinter.def.json -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Дно / крышка" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Экструдер для печати крышки" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "Экструдер, используемый для печати верхних оболочек. Используется при наличии нескольких экструдеров." - -#: fdmprinter.def.json -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Слои верхней оболочки" - -#: fdmprinter.def.json -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 "Количество верхних слоёв оболочки. Обычно достаточно одного слоя для получения верхних поверхностей в хорошем качестве." - -#: fdmprinter.def.json -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Экструдер дна/крышки" - -#: fdmprinter.def.json -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 "Экструдер, используемый для печати верхней и нижней оболочек. Используется при наличии нескольких экструдеров." - -#: fdmprinter.def.json -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Толщина дна/крышки" - -#: fdmprinter.def.json -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 "Толщина слоя дна/крышки при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в дне/крышке." - -#: fdmprinter.def.json -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Толщина крышки" - -#: fdmprinter.def.json -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 "Толщина крышки при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в крышке." - -#: fdmprinter.def.json -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Слои крышки" - -#: fdmprinter.def.json -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 "Количество слоёв в крышке. При вычислении толщины крышки это значение округляется до целого." - -#: fdmprinter.def.json -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Толщина дна" - -#: fdmprinter.def.json -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 "Толщина дна при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в дне." - -#: fdmprinter.def.json -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Слои дна" - -#: fdmprinter.def.json -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 "Количество слоёв в дне. При вычислении толщины дна это значение округляется до целого." - -#: fdmprinter.def.json -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Начальные слои дна" - -#: fdmprinter.def.json -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 "Количество начальных слоев дна, вверх от рабочего стола. При вычислении толщины дна это значение округляется до целого." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Шаблон для крышки/дна" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Шаблон слоёв для крышки/дна." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Линии" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Концентрический" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Нижний шаблон начального слоя" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "Шаблон низа печати на первом слое." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Линии" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Концентрический" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" - -#: fdmprinter.def.json -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Соединение верхних/нижних полигонов" - -#: fdmprinter.def.json -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 "Соединение верхних/нижних путей оболочки на участках, где они проходят рядом. При использовании концентрического шаблона активация данной настройки значительно сокращает время перемещения, но, учитывая возможность наличия соединений на полпути над заполнением, эта функция может ухудшить качество верхней поверхности." - -#: fdmprinter.def.json -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Монотонный порядок дна/крышки" - -#: fdmprinter.def.json -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 "Печатайте линии дна/крышки в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." - -#: fdmprinter.def.json -msgctxt "skin_angles label" -msgid "Top/Bottom 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 градусов)." #: fdmprinter.def.json msgctxt "skin_angles description" @@ -1514,379 +33,24 @@ msgid "A list of integer line directions to use when the top/bottom layers use t msgstr "Список направлений линии при печати слоёв дна/крышки линиями или зигзагом. Элементы списка используются последовательно по мере печати слоёв, и, когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов)." #: fdmprinter.def.json -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Нет оболочки в Z-зазорах" +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 градусов." #: fdmprinter.def.json -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 "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 градусов)." #: fdmprinter.def.json -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -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 градусов)." #: fdmprinter.def.json -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 "Заменяет внешнюю часть шаблона крышки/дна рядом концентрических линий. Использование одной или двух линий улучшает мосты, которые печатаются поверх материала заполнения." - -#: fdmprinter.def.json -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Разрешить разглаживание" - -#: fdmprinter.def.json -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 "Проходить по верхней оболочке еще раз, но на этот раз выдавливая очень мало материала. Это приводит к плавлению пластика, что создает более гладкую поверхность. Давление в камере сопла поддерживается на высоком уровне, благодаря чему складки на поверхности заполняются материалом." - -#: fdmprinter.def.json -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Самый высокий слой разглаживания" - -#: fdmprinter.def.json -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 "Выполняет разглаживание только на самом последнем слое модели. Экономит время, когда нижние слои не требуют сглаживания поверхности." - -#: fdmprinter.def.json -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Шаблон разглаживания" - -#: fdmprinter.def.json -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Шаблон, который будет использоваться для разглаживания верхней оболочки." - -#: fdmprinter.def.json -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Концентрический" - -#: fdmprinter.def.json -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" - -#: fdmprinter.def.json -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Монотонный порядок разглаживания" - -#: fdmprinter.def.json -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 "Печатайте линии разглаживания в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Расстояние между линиями разглаживания" - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "Расстояние между линиями разглаживания." - -#: fdmprinter.def.json -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Поток разглаживания" - -#: fdmprinter.def.json -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 "Объём материала, относительно от обычной линии, который будет выдавлен в процессе разглаживания. Наличие в сопле наличие материала помогает заполнять щели на верхней оболочке, но слишком большое значение приводит к излишнему выдавливанию материала и ухудшает качество оболочки." - -#: fdmprinter.def.json -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Границы разглаживания" - -#: fdmprinter.def.json -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 "Расстояние от краёв модели. Разглаживание от края до края может выразиться в загибании краёв при печати." - -#: fdmprinter.def.json -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Скорость разглаживания" - -#: fdmprinter.def.json -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "Скорость, на которой голова проходит над верхней оболочкой." - -#: fdmprinter.def.json -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Ускорение разглаживания" - -#: fdmprinter.def.json -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "Ускорение, с которым производится разглаживание." - -#: fdmprinter.def.json -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Рывок разглаживания" - -#: fdmprinter.def.json -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Изменение максимальной мгновенной скорости, с которой выполняется разглаживание." - -#: fdmprinter.def.json -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Процент перекрытия оболочек" - -#: fdmprinter.def.json -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%, может привести к размещению любой оболочки за пределами стенки. Это обусловлено тем, что в этот момент расположение сопла экструдера оболочки может сместиться за середину стенки." - -#: fdmprinter.def.json -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Перекрытие оболочек" - -#: fdmprinter.def.json -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 "Настройте величину перекрытия между стенками и центральными линиями оболочки (конечными точками). Небольшое перекрытие позволяет стенкам надежно соединяться с оболочкой. Обратите внимание, что при одинаковой толщине оболочки и ширине линии стенки любое значение, превышающее половину ширины стенки, может привести к размещению любой оболочки за пределами стенки. Это обусловлено тем, что в этот момент расположение сопла экструдера оболочки может сместиться за середину стенки." - -#: fdmprinter.def.json -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Ширина удаляемой оболочки" - -#: fdmprinter.def.json -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 "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати верхних/нижних оболочек наклонных поверхностей модели." - -#: fdmprinter.def.json -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Ширина удаляемой оболочки сверху" - -#: fdmprinter.def.json -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 "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати верхних оболочек наклонных поверхностей модели." - -#: fdmprinter.def.json -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Ширина удаляемой оболочки снизу" - -#: fdmprinter.def.json -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 "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати нижних оболочек наклонных поверхностей модели." - -#: fdmprinter.def.json -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Дистанция расширения оболочки" - -#: fdmprinter.def.json -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 "Расстояние на которое оболочки внедряются в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." - -#: fdmprinter.def.json -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Дистанция расширения оболочки сверху" - -#: fdmprinter.def.json -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 "Расстояние на которое верхние оболочки входят в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." - -#: fdmprinter.def.json -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Расстояние расширения оболочки снизу" - -#: fdmprinter.def.json -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 "Расстояние на которое нижние оболочки входят в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." - -#: fdmprinter.def.json -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Максимальный угол оболочки при расширении" - -#: fdmprinter.def.json -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° является вертикальным и вызывает расширение всей оболочки." - -#: fdmprinter.def.json -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Минимальная ширина оболочки при расширении" - -#: fdmprinter.def.json -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 "Области оболочек уже указанного значения не расширяются. Это предотвращает расширение узких областей оболочек, которые создаются, если наклон поверхности модели близок к вертикальному." - -#: fdmprinter.def.json -msgctxt "infill label" -msgid "Infill" -msgstr "Заполнение" - -#: fdmprinter.def.json -msgctxt "infill description" -msgid "Infill" -msgstr "Заполнение" - -#: fdmprinter.def.json -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Экструдер для заполнения" - -#: fdmprinter.def.json -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "Экструдер, используемый для печати заполнения. Используется при наличии нескольких экструдеров." - -#: fdmprinter.def.json -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Плотность заполнения" - -#: fdmprinter.def.json -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Отрегулируйте плотность заполнения при печати." - -#: fdmprinter.def.json -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Дистанция линий заполнения" - -#: fdmprinter.def.json -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 "Дистанция между линиями заполнения. Этот параметр вычисляется из плотности заполнения и ширины линии заполнения." - -#: fdmprinter.def.json -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Шаблон заполнения" - -#: fdmprinter.def.json -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 "Шаблон заполняющего материала печати. Линейное и зигзагообразное заполнение меняет направление на чередующихся слоях, снижая расходы на материал. Шаблоны «сетка», «треугольник», «шестигранник из треугольников», «куб», «восьмигранник», «четверть куба», «крестовое», «концентрическое» полностью печатаются в каждом слое. Шаблоны заполнения «гироид», «куб», «четверть куба» и «восьмигранник» меняются в каждом слое, чтобы обеспечить более равномерное распределение прочности в каждом направлении. Шаблон заполнения «молния» пытается минимизировать заполнение, поддерживая только верхнюю область объекта." - -#: fdmprinter.def.json -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Сетка" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Линии" - -#: fdmprinter.def.json -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Треугольник" - -#: fdmprinter.def.json -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Шестигранник из треугольников" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Куб" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Динамический куб" - -#: fdmprinter.def.json -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Восьмигранник" - -#: fdmprinter.def.json -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Четверть куба" - -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Концентрическое" - -#: fdmprinter.def.json -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Крестовое" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Крестовое 3D" - -#: fdmprinter.def.json -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Гироид" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Молния" - -#: fdmprinter.def.json -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Соединять линии заполнения" - -#: fdmprinter.def.json -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 "Соединение мест пересечения шаблона заполнения и внутренних стенок с использованием линии, повторяющей контур внутренней стенки. Использование этой функции улучшает сцепление заполнения со стенками и снижает влияние заполнения на качество вертикальных поверхностей. Отключение этой функции снижает расход материала." - -#: fdmprinter.def.json -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Соединение полигонов заполнения" - -#: fdmprinter.def.json -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 "Соединение путей заполнения на участках, где они проходят рядом. Для шаблонов заполнения, состоящих из нескольких замкнутых полигонов, активация данной настройки значительно сокращает время перемещения." - -#: fdmprinter.def.json -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 градусов)." #: fdmprinter.def.json msgctxt "infill_angles description" @@ -1894,49 +58,44 @@ msgid "A list of integer line directions to use. Elements from the list are used msgstr "Список направлений линии при печати слоёв. Элементы списка используются последовательно по мере печати слоёв и когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов для линий из зигзага и 45 градусов для всех остальных шаблонов)." #: fdmprinter.def.json -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 "Список полигонов с областями, в которые не должно заходить сопло." #: fdmprinter.def.json -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 "Список полигонов с областями, в которые голове запрещено заходить." #: fdmprinter.def.json -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Смещение заполнения по Y" +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "Деталь, полностью заключенная внутри другой детали, может создать внешнюю кайму, которая касается внутренней части другой детали. Эта опция убирает всю кайму в пределах этого расстояния от внутренних отверстий." #: fdmprinter.def.json -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 "Абсолютная позиция экструдера при старте" #: fdmprinter.def.json -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Рандомизация начала заполнения" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Максимальная вариация адаптивных слоев" #: fdmprinter.def.json -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 "Размер топографии адаптивных слоев" #: fdmprinter.def.json -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Множитель для линии заполнения" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Размер шага вариации адаптивных слоев" #: fdmprinter.def.json -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 "Преобразовывать каждую линию заполнения во множество линий. Дополнительные линии не пересекаются, а уклоняются от столкновения друг с другом. Благодаря этому заполнение становится более плотным, но время печати и расход материалов увеличиваются." - -#: fdmprinter.def.json -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 "В случае адаптивных слоев расчет высоты слоя осуществляется в зависимости от формы модели." #: fdmprinter.def.json msgctxt "infill_wall_line_count description" @@ -1948,284 +107,9 @@ msgstr "" "Эта функция может сочетаться с соединением полигонов заполнения для соединения всего участка заполнения в один путь экструзии без необходимости в движениях или откатах в случае правильной настройки." #: fdmprinter.def.json -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Стенка динамического куба" - -#: fdmprinter.def.json -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 "Дополнение к радиусу от центра каждого куба для проверки границ модели, используется для принятия решения о разделении куба. Большие значения приводят к утолщению стенок мелких кубов по мере приближения к границе модели." - -#: fdmprinter.def.json -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Процент перекрытие заполнения" - -#: fdmprinter.def.json -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 "Величина перекрытия между заполнением и стенками в виде процентного отношения от ширины линии заполнения. Небольшое перекрытие позволяет стенкам надежно соединяться с заполнением." - -#: fdmprinter.def.json -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Перекрытие заполнения" - -#: fdmprinter.def.json -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 "Величина перекрытия между заполнением и стенками. Небольшое перекрытие позволяет стенкам плотно соединиться с заполнением." - -#: fdmprinter.def.json -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Дистанция окончания заполнения" - -#: fdmprinter.def.json -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 "Расстояние, на которое продолжается движение сопла после печати каждой линии заполнения, для обеспечения лучшего связывания заполнения со стенками. Этот параметр похож на перекрытие заполнения, но без экструзии и только с одной стороны линии заполнения." - -#: fdmprinter.def.json -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Толщина слоя заполнения" - -#: fdmprinter.def.json -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 "Толщина слоя для материала заполнения. Данное значение должно быть всегда кратно толщине слоя и всегда округляется." - -#: fdmprinter.def.json -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Изменение шага заполнения" - -#: fdmprinter.def.json -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 "Количество шагов уменьшения наполовину плотности заполнения вглубь модели. Области, располагающиеся ближе к краю модели, получают большую плотность, до указанной в \"Плотность заполнения." - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Высота изменения шага заполнения" - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "Высота заполнения с указанной плотностью перед переключением на половину плотности." - -#: fdmprinter.def.json -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Заполнение перед печатью стенок" - -#: fdmprinter.def.json -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 "Печатать заполнение до печати стенок. Если печатать сначала стенки, то это может сделать их более точными, но нависающие стенки будут напечатаны хуже. Если печатать сначала заполнение, то это сделает стенки более крепкими, но шаблон заполнения может иногда прорываться сквозь поверхность стенки." - -#: fdmprinter.def.json -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Минимальная область заполнения" - -#: fdmprinter.def.json -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Не генерировать области заполнения меньше чем указано здесь (вместо этого использовать оболочку)." - -#: fdmprinter.def.json -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Поддержка заполнения" - -#: fdmprinter.def.json -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 "Печать заполненных структур только там, где должны поддерживаться верхние части моделей. Активация этой функции сокращает время печати и расход материалов, однако приводит к неравномерной прочности." - -#: fdmprinter.def.json -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Угол нависания при заполнении" - -#: fdmprinter.def.json -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° заполнение отсутствует." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Толщина опоры края оболочки" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "Толщина дополнительного объема, который поддерживает края оболочки." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Слои, которые поддерживают края оболочки" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "Количество слоев, которые поддерживают края оболочки." - -#: fdmprinter.def.json -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Угол поддержки шаблона заполнения «молния»" - -#: fdmprinter.def.json -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 "Определяет, когда слой шаблона заполнения «молния» должен поддерживать что-либо над ним. Измеряется под углом с учетом толщины слоя." - -#: fdmprinter.def.json -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Угол выступа шаблона заполнения «молния»" - -#: fdmprinter.def.json -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 "Определяет, когда слой шаблона заполнения «молния» должен поддерживать модель над ним. Измеряется под углом с учетом толщины." - -#: fdmprinter.def.json -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Угол обрезки шаблона заполнения «молния»" - -#: fdmprinter.def.json -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 "Конечные точки линий заполнения укорачиваются для экономии материала. Эта настройка представляет собой угол нависания конечных точек этих линий." - -#: fdmprinter.def.json -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Угол выпрямления шаблона заполнения «молния»" - -#: fdmprinter.def.json -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 "Линии заполнения выравниваются для сокращения время печати. Это максимально допустимый угол нависания по всей длине линии заполнения." - -#: fdmprinter.def.json -msgctxt "material label" -msgid "Material" -msgstr "Материал" - -#: fdmprinter.def.json -msgctxt "material description" -msgid "Material" -msgstr "Материал" - -#: fdmprinter.def.json -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Температура сопла" - -#: fdmprinter.def.json -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 "Стандартная температура сопла, используемая при печати. Значением должна быть \"базовая\" температура для материала. Все другие температуры печати должны быть выражены смещениями от основного значения" - -#: fdmprinter.def.json -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Температура для объема печати" - -#: fdmprinter.def.json -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, температура для объема печати не будет регулироваться." - -#: fdmprinter.def.json -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Температура сопла" - -#: fdmprinter.def.json -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Температура, используемая при печати." - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Температура печати первого слоя" - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Температура при печати первого слоя. Установите в 0 для отключения специального поведения на первом слое." - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Начальная температура печати" - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "Минимальная температура, в процессе нагрева до температуры печати, на которой можно запустить процесс печати." - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Конечная температура печати" - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "Температура, до которой можно начать охлаждать сопло, перед окончанием печати." - -#: fdmprinter.def.json -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Модификатор скорости охлаждения экструзии" - -#: fdmprinter.def.json -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 "Дополнительная скорость, с помощью которой сопло охлаждается во время экструзии. Это же значение используется для ускорения нагрева сопла при экструзии." - -#: fdmprinter.def.json -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Температура рабочего стола по умолчанию" - -#: fdmprinter.def.json -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 "Температура по умолчанию, используемая для разогретого рабочего стола. Это значение является базовой температурой рабочего стола. Для всех остальных значений температуры печати используется смещение относительно данного значения" - -#: fdmprinter.def.json -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Температура стола" - -#: fdmprinter.def.json -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, печатная пластина не нагревается." - -#: fdmprinter.def.json -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Температура стола для первого слоя" - -#: fdmprinter.def.json -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 "Прилипание" #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" @@ -2233,1924 +117,19 @@ msgid "Adhesion Tendency" msgstr "Тенденция к прилипанию" #: fdmprinter.def.json -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%, может привести к размещению любой оболочки за пределами стенки. Это обусловлено тем, что в этот момент расположение сопла экструдера оболочки может сместиться за середину стенки." #: fdmprinter.def.json -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 "Настройте величину перекрытия между стенками и центральными линиями оболочки (конечными точками). Небольшое перекрытие позволяет стенкам надежно соединяться с оболочкой. Обратите внимание, что при одинаковой толщине оболочки и ширине линии стенки любое значение, превышающее половину ширины стенки, может привести к размещению любой оболочки за пределами стенки. Это обусловлено тем, что в этот момент расположение сопла экструдера оболочки может сместиться за середину стенки." #: fdmprinter.def.json -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Поверхностная энергия." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Коэффициент масштабирования для компенсации усадки" - -#: fdmprinter.def.json -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 "Для компенсации усадки материала при остывании модель будет масштабирована с этим коэффициентом." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Горизонтальный коэффициент масштабирования для компенсации усадки" - -#: fdmprinter.def.json -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 (горизонтально)." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Вертикальный коэффициент масштабирования для компенсации усадки" - -#: fdmprinter.def.json -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 (вертикально)." - -#: fdmprinter.def.json -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Кристаллический материал" - -#: fdmprinter.def.json -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 "Это материал, который при нагревании легко ломается по четким линиям (кристаллический) или образует длинные сплетающиеся полимерные цепочки (некристаллический)?" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Положение отката для защиты от капель" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "Насколько далеко необходимо убрать материал, чтобы он перестал капать." - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Скорость отката для защиты от капель" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Насколько быстро необходимо убрать материал во время его замены, чтобы не допустить появления капель." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Положение отката для подготовки к отламыванию" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Насколько сильно можно растянуть материал при нагревании, до тех пор пока он не отломится." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Скорость отката для подготовки к отламыванию" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "Насколько быстро следует убирать материал, чтобы он отломился." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Температура подготовки к отламыванию" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "Температура, используемая для выдавливания материала, должна быть примерно равна максимальной температуре при печати." - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Положение отката для отламывания" - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "Насколько далеко следует убрать материал, чтобы он отломился чисто." - -#: fdmprinter.def.json -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Скорость отката для отламывания" - -#: fdmprinter.def.json -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "Скорость, при которой убираемый материал отломится чисто." - -#: fdmprinter.def.json -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Температура отламывания" - -#: fdmprinter.def.json -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "Температура, при которой материал отломится чисто." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Скорость выдавливания заподлицо" - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "Скорость подачи материала после переключения на другой материал." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Длина выдавливания заподлицо" - -#: fdmprinter.def.json -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 "Объем материала, используемый для выдавливания предыдущего материала из сопла (измеряется длиной нити) при переключении на другой материал." - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Скорость выдавливания заканчивающегося материала" - -#: fdmprinter.def.json -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 "Скорость подачи материала после замены пустой катушки на новую катушку с тем же материалом." - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Длина выдавливания заканчивающегося материала" - -#: fdmprinter.def.json -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 "Объем материала, используемый для выдавливания предыдущего материала из сопла (измеряется длиной нити) при замене пустой катушки на новую катушку с тем же материалом." - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Максимальная продолжительность парковки" - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "Срок хранения материала вне сухого хранилища." - -#: fdmprinter.def.json -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Коэффициент движения без нагрузки" - -#: fdmprinter.def.json -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 "Коэффициент сжатия материала между питателем и камерой сопла, позволяющий определить, как далеко требуется продвинуть материал для переключения нити." - -#: fdmprinter.def.json -msgctxt "material_flow label" -msgid "Flow" -msgstr "Поток" - -#: fdmprinter.def.json -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Компенсация потока: объём выдавленного материала умножается на этот коэффициент." - -#: fdmprinter.def.json -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Поток для стенки" - -#: fdmprinter.def.json -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Компенсация потока на линиях стенки." - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Поток для внешней стенки" - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Компенсация потока на внешней линии стенки." - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Поток для внутренних стенок" - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Компенсация потока на линиях стенки для всех линий, за исключением внешней." - -#: fdmprinter.def.json -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Поток для верхних/нижних линий" - -#: fdmprinter.def.json -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Компенсация потока на верхних/нижних линиях." - -#: fdmprinter.def.json -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Поток для верхней оболочки" - -#: fdmprinter.def.json -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Компенсация потока на линиях наверху печатаемой детали." - -#: fdmprinter.def.json -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Поток для заполнения" - -#: fdmprinter.def.json -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Компенсация потока на линиях заполнения." - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Поток для юбки/каймы" - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Компенсация потока на линиях юбки или каймы." - -#: fdmprinter.def.json -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Поток для поддержек" - -#: fdmprinter.def.json -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Компенсация потока на линиях структуры поддержек." - -#: fdmprinter.def.json -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Поток для связующего слоя поддержек" - -#: fdmprinter.def.json -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Компенсация потока на линиях крыши или низа поддержек." - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Поток для крыши поддержек" - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Компенсация потока на линиях крыши поддержек." - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Поток для низа поддержек" - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Компенсация потока на линиях низа поддержек." - -#: fdmprinter.def.json -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Поток черновой башни" - -#: fdmprinter.def.json -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Компенсация потока на линиях черновой башни." - -#: fdmprinter.def.json -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Поток для первого слоя" - -#: fdmprinter.def.json -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 "Компенсация потока для первого слоя: объем выдавленного материала на первом слое умножается на этот коэффициент." - -#: fdmprinter.def.json -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Температура ожидания" - -#: fdmprinter.def.json -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "Температура сопла в момент, когда для печати используется другое сопло." - -#: fdmprinter.def.json -msgctxt "speed label" -msgid "Speed" -msgstr "Скорость" - -#: fdmprinter.def.json -msgctxt "speed description" -msgid "Speed" -msgstr "Скорость" - -#: fdmprinter.def.json -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Скорость печати" - -#: fdmprinter.def.json -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Скорость, на которой происходит печать." - -#: fdmprinter.def.json -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Скорость заполнения" - -#: fdmprinter.def.json -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Скорость, на которой печатается заполнение." - -#: fdmprinter.def.json -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Скорость печати стенок" - -#: fdmprinter.def.json -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Скорость, на которой происходит печать стенок." - -#: fdmprinter.def.json -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Скорость печати внешней стенки" - -#: fdmprinter.def.json -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 "Скорость, на которой происходит печать внешних стенок. Печать внешней стенки на пониженной скорости улучшает качество поверхности модели. Однако, при большой разнице между скоростями печати внутренних и внешних стенок возникает эффект, негативно влияющий на качество." - -#: fdmprinter.def.json -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Скорость печати внутренних стенок" - -#: fdmprinter.def.json -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 "Скорость, на которой происходит печать внутренних стенок. Печать внутренних стенок на скорости, большей скорости печати внешней стенки, ускоряет печать. Отлично работает, если значение скорости находится между скоростями печати внешней стенки и скорости заполнения." - -#: fdmprinter.def.json -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Скорость верхней оболочки" - -#: fdmprinter.def.json -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "Скорость, на которой печатаются слои верхней оболочки." - -#: fdmprinter.def.json -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Скорость крышки/дна" - -#: fdmprinter.def.json -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Скорость, на которой печатаются слои крышки/дна." - -#: fdmprinter.def.json -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Скорость печати поддержек" - -#: fdmprinter.def.json -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 "Скорость, на которой происходит печать структуры поддержек. Печать поддержек на повышенной скорости может значительно уменьшить время печати. Качество поверхности структуры поддержек не имеет значения, так как эта структура будет удалена после печати." - -#: fdmprinter.def.json -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Скорость заполнения поддержек" - -#: fdmprinter.def.json -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 "Скорость, на которой заполняются поддержки. Печать заполнения на пониженных скоростях улучшает стабильность." - -#: fdmprinter.def.json -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Скорость границы поддержек" - -#: fdmprinter.def.json -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 "Скорость, на которой происходит печать верха и низа поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." - -#: fdmprinter.def.json -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Скорость печати крыши поддержек" - -#: fdmprinter.def.json -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 "Скорость, на которой происходит печать верха поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." - -#: fdmprinter.def.json -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Скорость печати низа поддержек" - -#: fdmprinter.def.json -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 "Скорость, на которой происходит печать низа поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." - -#: fdmprinter.def.json -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Скорость черновых башен" - -#: fdmprinter.def.json -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 "Скорость, на которой печатается черновая башня. Замедленная печать черновой башни может сделать её стабильнее при недостаточном прилипании различных материалов." - -#: fdmprinter.def.json -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Скорость перемещения" - -#: fdmprinter.def.json -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Скорость, с которой выполняется перемещение." - -#: fdmprinter.def.json -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Скорость первого слоя" - -#: fdmprinter.def.json -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 "Скорость печати первого слоя. Пониженное значение улучшает прилипание материала к печатной пластине. Не влияет на сами адгезионные структуры печатной пластины, такие как край и основание." - -#: fdmprinter.def.json -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Скорость первого слоя" - -#: fdmprinter.def.json -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 "Скорость печати первого слоя. Пониженное значение помогает улучшить прилипание материала к столу." - -#: fdmprinter.def.json -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Скорость перемещений на первом слое" - -#: fdmprinter.def.json -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 "Скорость перемещений на первом слое. Малые значения помогают предотвращать отлипание напечатанных частей от стола. Значение этого параметра может быть вычислено автоматически из отношения между скоростями перемещения и печати." - -#: fdmprinter.def.json -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Скорость юбки/каймы" - -#: fdmprinter.def.json -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 "Скорость, на которой происходит печать юбки и каймы. Обычно, их печать происходит на скорости печати первого слоя, но иногда вам может потребоваться печатать юбку или кайму на другой скорости." - -#: fdmprinter.def.json -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Скорость поднятия оси Z" - -#: fdmprinter.def.json -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. Обычно она ниже, чем скорость печати, поскольку рабочий стол или портал машины тяжелее сдвинуть." - -#: fdmprinter.def.json -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Количество медленных слоёв" - -#: fdmprinter.def.json -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 "Первые несколько слоёв печатаются на медленной скорости, чем вся остальная модель, чтобы получить лучшее прилипание к столу и увеличить вероятность успешной печати. Скорость последовательно увеличивается по мере печати указанного количества слоёв." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Коэффициент выравнивания потока" - -#: fdmprinter.def.json -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 % может помочь компенсировать более высокое давление, необходимое для экструдирования широких линий." - -#: fdmprinter.def.json -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Разрешить управление ускорением" - -#: fdmprinter.def.json -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 "Разрешает регулирование ускорения головы. Увеличение ускорений может сократить время печати за счёт качества печати." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Ускорение печати" - -#: fdmprinter.def.json -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Ускорение, с которым происходит печать." - -#: fdmprinter.def.json -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Ускорение заполнения" - -#: fdmprinter.def.json -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "Ускорение, с которым печатается заполнение." - -#: fdmprinter.def.json -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Ускорение стенок" - -#: fdmprinter.def.json -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Ускорение, с которым происходит печать стенок." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Ускорение внешней стенки" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "Ускорение, с которым происходит печать внешних стенок." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Ускорение внутренней стенки" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "Ускорение, с которым происходит печать внутренних стенок." - -#: fdmprinter.def.json -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Ускорение верхней оболочки" - -#: fdmprinter.def.json -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "Ускорение, с которым печатаются слои верхней оболочки." - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Ускорение крышки/дна" - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Ускорение, с которым печатаются слои крышки/дна." - -#: fdmprinter.def.json -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Ускорение поддержек" - -#: fdmprinter.def.json -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Ускорение, с которым печатаются структуры поддержки." - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Ускорение заполнение поддержек" - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Ускорение, с которым печатается заполнение поддержек." - -#: fdmprinter.def.json -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Ускорение края поддержек" - -#: fdmprinter.def.json -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 "Ускорение, с которым печатаются верх и низ поддержек. Их печать с пониженными ускорениями может улучшить качество печати нависающих частей." - -#: fdmprinter.def.json -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Ускорение крыши поддержек" - -#: fdmprinter.def.json -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 "Ускорение, с которым происходит печать верха поддержек. Печать поддержек с пониженными ускорениями может улучшить качество печати нависающих краёв модели." - -#: fdmprinter.def.json -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Ускорение низа поддержек" - -#: fdmprinter.def.json -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 "Ускорение, с которым происходит печать низа поддержек. Печать поддержек с пониженными ускорениями может улучшить качество печати нависающих краёв модели." - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Ускорение черновой башни" - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "Ускорение, с которым печатается черновая башня." - -#: fdmprinter.def.json -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Ускорение перемещения" - -#: fdmprinter.def.json -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Ускорение, с которым выполняется перемещение." - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Ускорение первого слоя" - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Ускорение для первого слоя." - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Ускорение печати первого слоя" - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "Ускорение при печати первого слоя." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Ускорение перемещений первого слоя" - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Ускорение для перемещения на первом слое." - -#: fdmprinter.def.json -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Ускорение юбки/каймы" - -#: fdmprinter.def.json -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 "Ускорение, с которым происходит печать юбки и каймы. Обычно, их печать происходит с ускорениями первого слоя, но иногда вам может потребоваться печатать юбку с другими ускорениями." - -#: fdmprinter.def.json -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Включить управление рывком" - -#: fdmprinter.def.json -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. Увеличение данного значения может сократить время печати за счёт его качества." - -#: fdmprinter.def.json -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Рывок печати" - -#: fdmprinter.def.json -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "Изменение максимальной мгновенной скорости печатающей головки." - -#: fdmprinter.def.json -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Рывок заполнения" - -#: fdmprinter.def.json -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатается заполнение." - -#: fdmprinter.def.json -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Рывок стены" - -#: fdmprinter.def.json -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой будут напечатаны стены." - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Рывок внешних стен" - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются внешние стенки." - -#: fdmprinter.def.json -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Рывок внутренних стен" - -#: fdmprinter.def.json -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются внутренние стенки." - -#: fdmprinter.def.json -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Рывок верхней оболочки" - -#: fdmprinter.def.json -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются слои верхней оболочки." - -#: fdmprinter.def.json -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Рывок крышки/дна" - -#: fdmprinter.def.json -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются верхние и нижние слои." - -#: fdmprinter.def.json -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Рывок поддержек" - -#: fdmprinter.def.json -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются поддержки." - -#: fdmprinter.def.json -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Рывок заполнение поддержек" - -#: fdmprinter.def.json -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатается заполнение поддержек." - -#: fdmprinter.def.json -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Рывок связи поддержек" - -#: fdmprinter.def.json -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны крыши и низ поддержек." - -#: fdmprinter.def.json -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Рывок крыши поддержек" - -#: fdmprinter.def.json -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны крыши поддержек." - -#: fdmprinter.def.json -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Рывок низа поддержек" - -#: fdmprinter.def.json -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны низ поддержек." - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Рывок черновых башен" - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатается черновая башня." - -#: fdmprinter.def.json -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Рывок перемещения" - -#: fdmprinter.def.json -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "Изменение максимальной мгновенной скорости, с которой выполняются перемещения." - -#: fdmprinter.def.json -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Рывок первого слоя" - -#: fdmprinter.def.json -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "Изменение максимальной мгновенной скорости на первом слое." - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Рывок печати первого слоя" - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "Изменение максимальной мгновенной скорости, с которой печатается первый слой." - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Рывок перемещения первого слоя" - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Ускорение для перемещения на первом слое." - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Рывок юбки/каймы" - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатается юбка и кайма." - -#: fdmprinter.def.json -msgctxt "travel label" -msgid "Travel" -msgstr "Перемещение" - -#: fdmprinter.def.json -msgctxt "travel description" -msgid "travel" -msgstr "перемещение" - -#: fdmprinter.def.json -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Разрешить откат" - -#: fdmprinter.def.json -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Откат нити при движении сопла вне зоны печати." - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Откат при смене слоя" - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "Откат нити при перемещении сопла на следующий слой." - -#: fdmprinter.def.json -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Величина отката" - -#: fdmprinter.def.json -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "Длина нити материала, которая будет извлечена по время отката." - -#: fdmprinter.def.json -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Скорость отката" - -#: fdmprinter.def.json -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "Скорость, с которой материал будет извлечён и возвращён обратно при откате." - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Скорость извлечения при откате" - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "Скорость с которой нить будет извлечена при откате." - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Скорость заправки при откате" - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "Скорость с которой материал будет возвращён при откате." - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Дополнительно заполняемый объём при откате" - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Небольшое количество материала может выдавиться во время движения, что может быть скомпенсировано с помощью данного параметра." - -#: fdmprinter.def.json -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Минимальное перемещение при откате" - -#: fdmprinter.def.json -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 "Минимальное расстояние на которое необходимо переместиться для отката, чтобы он произошёл. Этот параметр помогает уменьшить количество откатов на небольшой области печати." - -#: fdmprinter.def.json -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Максимальное количество откатов" - -#: fdmprinter.def.json -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 "Данный параметр ограничивает число откатов, которые происходят внутри окна минимальной дистанции экструзии. Дальнейшие откаты внутри этого окна будут проигнорированы. Это исключает выполнение множества повторяющихся откатов над одним и тем же участком нити, что позволяет избежать проблем с истиранием нити." - -#: fdmprinter.def.json -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Окно минимальной расстояния экструзии" - -#: fdmprinter.def.json -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 "Окно, в котором может быть выполнено максимальное количество откатов. Это значение приблизительно должно совпадать с расстоянием отката таким образом, чтобы количество выполненных откатов распределялось на величину выдавленного материала." - -#: fdmprinter.def.json -msgctxt "limit_support_retractions label" -msgid "Limit Support Retractions" -msgstr "Ограничить откаты поддержки" - -#: fdmprinter.def.json -msgctxt "limit_support_retractions description" -msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -msgstr "Пропустить откат при переходе от поддержки к поддержке по прямой линии. Включение этого параметра обеспечивает экономию времени печати, но может привести к чрезмерной строчности структуры поддержек." - -#: fdmprinter.def.json -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Режим комбинга" - -#: fdmprinter.def.json -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 "Комбинг удерживает сопло внутри напечатанных зон при перемещении. Это выражается в небольшом увеличении пути, но уменьшает необходимость в откатах. При отключенном комбинге выполняется откат материала, а сопло передвигается в следующую точку по прямой. Также можно не применять комбинг над верхними/нижними областями оболочки либо разрешить комбинг только в области заполнения." - -#: fdmprinter.def.json -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Выключен" - -#: fdmprinter.def.json -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Везде" - -#: fdmprinter.def.json -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Не на внешней поверхности" - -#: fdmprinter.def.json -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Не в оболочке" - -#: fdmprinter.def.json -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "В области заполнения" - -#: fdmprinter.def.json -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Макс. расстояние комб. без отката" - -#: fdmprinter.def.json -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 "При значении параметра выше нуля перемещения комбинга, превышающие заданное расстояние, будут выполняться с откатом. Когда значение параметра равно нулю, то максимума нет и перемещения комбинга выполняются без отката." - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Откат перед внешней стенкой" - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Всегда откатывать материал при движении к началу внешней стенки." - -#: fdmprinter.def.json -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Избегать напечатанных частей при перемещении" - -#: fdmprinter.def.json -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 "Сопло избегает уже напечатанных частей при перемещении. Эта опция доступна только при включенном комбинге." - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Избегать поддержек при перемещении" - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "При перемещении сопла оно будет избегать напечатанных поддержек. Эта опция доступна только при включенном комбинге." - -#: fdmprinter.def.json -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Дистанция обхода" - -#: fdmprinter.def.json -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "Дистанция между соплом и уже напечатанными частями, выдерживаемая при перемещении." - -#: fdmprinter.def.json -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "X координата начала" - -#: fdmprinter.def.json -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 координата позиции, вблизи которой следует искать часть модели для начала печати слоя." - -#: fdmprinter.def.json -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Y координата начала" - -#: fdmprinter.def.json -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 координата позиции, вблизи которой следует искать часть модели для начала печати слоя." - -#: fdmprinter.def.json -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Поднятие оси Z при откате" - -#: fdmprinter.def.json -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 "При выполнении отката между соплом и печатаемой деталью создаётся зазор. Это предотвращает возможность касания сопла частей детали при его перемещении, снижая вероятность смещения детали на столе." - -#: fdmprinter.def.json -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Поднятие оси Z только над напечатанными частями" - -#: fdmprinter.def.json -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 только в случае движения над напечатанными частями, которые нельзя обогнуть горизонтальным движением, используя «Обход напечатанных деталей» при перемещении." - -#: fdmprinter.def.json -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Высота поднятия оси Z" - -#: fdmprinter.def.json -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Расстояние, на которое приподнимается ось Z." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Поднятие оси Z после смены экструдера" - -#: fdmprinter.def.json -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 "При переключении принтера на другой экструдер между соплом и печатаемой деталью создаётся зазор. Это предотвращает возможность вытекания материала и его прилипание к внешней части печатаемой модели." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Высота поднятия оси Z после смены экструдера" - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "Высота, на которую приподнимается ось Z после смены экструдера." - -#: fdmprinter.def.json -msgctxt "cooling label" -msgid "Cooling" -msgstr "Охлаждение" - -#: fdmprinter.def.json -msgctxt "cooling description" -msgid "Cooling" -msgstr "Охлаждение" - -#: fdmprinter.def.json -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Включить вентиляторы" - -#: fdmprinter.def.json -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 "Разрешает использование вентиляторов во время печати. Применение вентиляторов улучшает качество печати слоёв с малой площадью, а также мостов и нависаний." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Скорость вентилятора" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "Скорость, с которой вращаются вентиляторы." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Обычная скорость вентилятора" - -#: fdmprinter.def.json -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 "Скорость, с которой вращается вентилятор до достижения порога. Если слой печатается быстрее установленного порога, то вентилятор постепенно начинает вращаться быстрее." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Максимальная скорость вентилятора" - -#: fdmprinter.def.json -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 "Скорость, с которой вращается вентилятор при минимальной площади слоя. Если слой печатается быстрее установленного порога, то вентилятор постепенно начинает вращаться с указанной скоростью." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Порог переключения на повышенную скорость" - -#: fdmprinter.def.json -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 "Время печати слоя, которое устанавливает порог для переключения с обычной скорости вращения вентилятора на максимальную. Слои, которые будут печататься дольше указанного значения, будут использовать обычную скорость вращения вентилятора. Для быстрых слоёв скорость вентилятора постепенно будет повышаться до максимальной." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Начальная скорость вентилятора" - -#: fdmprinter.def.json -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 "Скорость, с которой вращается вентилятор в начале печати. На последующих слоях скорость вращения постепенно увеличивается до слоя, соответствующего параметру обычной скорости вращения вентилятора на указанной высоте." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Обычная скорость вентилятора на высоте" - -#: fdmprinter.def.json -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 "Высота, на которой вентилятор вращается с обычной скоростью. На предыдущих слоях скорость вращения вентилятора постепенно увеличивается с начальной." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Обычная скорость вентилятора на слое" - -#: fdmprinter.def.json -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 "Слой, на котором вентилятор должен вращаться с обыкновенной скоростью. Если определена обычная скорость для вентилятора на высоте, это значение вычисляется и округляется до целого." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Минимальное время слоя" - -#: fdmprinter.def.json -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 "Минимальное время, затрачиваемое на печать слоя. Этот параметр заставляет принтер замедляться, как минимум, чтобы потратить на печать слоя время, указанное в этом параметре. Это позволяет напечатанному материалу достаточно охладиться перед печатью следующего слоя. Слои могут печататься быстрее, чем указано в этом параметре, если поднятие головы отключено и если будет нарушено требование по минимальной скорости печати." - -#: fdmprinter.def.json -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Минимальная скорость" - -#: fdmprinter.def.json -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 "Минимальная скорость печати, независящая от замедления печати до минимального времени печати слоя. Если принтер начнёт слишком замедляться, давление в сопле будет слишком малым, что отрицательно скажется на качестве печати." - -#: fdmprinter.def.json -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Подъём головы" - -#: fdmprinter.def.json -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 "Когда произойдёт конфликт между параметрами минимальной скорости печати и минимальным временем печати слоя, голова принтера будет отведена от печатаемой модели и будет выдержана необходимая пауза для достижения минимального времени печати слоя." - -#: fdmprinter.def.json -msgctxt "support label" -msgid "Support" -msgstr "Поддержки" - -#: fdmprinter.def.json -msgctxt "support description" -msgid "Support" -msgstr "Поддержки" - -#: fdmprinter.def.json -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Генерация поддержек" - -#: fdmprinter.def.json -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 "Генерация структур для поддержки нависающих частей модели. Без этих структур такие части будут складываться во время печати." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Экструдер поддержек" - -#: fdmprinter.def.json -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати поддержек. Используется при наличии нескольких экструдеров." - -#: fdmprinter.def.json -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Экструдер заполнения поддержек" - -#: fdmprinter.def.json -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 "Этот экструдер используется для печати заполнения поддержек. Используется при наличии нескольких экструдеров." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Экструдер первого слоя поддержек" - -#: fdmprinter.def.json -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 "Этот экструдер используется для печати первого слоя заполнения поддержек. Используется при наличии нескольких экструдеров." - -#: fdmprinter.def.json -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Экструдер связующего слоя поддержек" - -#: fdmprinter.def.json -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 "Этот экструдер используется для печати верха и низа поддержек. Используется при наличии нескольких экструдеров." - -#: fdmprinter.def.json -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Экструдер крыши поддержек" - -#: fdmprinter.def.json -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 "Этот экструдер используется для печати крыши поддержек. Используется при наличии нескольких экструдеров." - -#: fdmprinter.def.json -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Экструдер низа поддержек" - -#: fdmprinter.def.json -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 "Этот экструдер используется для печати низа поддержек. Используется при наличии нескольких экструдеров." - -#: fdmprinter.def.json -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Структура поддержки" - -#: fdmprinter.def.json -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 "Выберите одну из доступных техник создания поддержки. Поддержка со стандартной структурой создается непосредственно под выступающими деталями, и затем опускает эти области вниз линейно. У поддержки с древовидной структурой ветви тянутся к выступающим областям и модель опирается на концы этих ветвей, которые охватывают модель с разных сторон, чтобы таким образом максимально поддерживать ее по всей площади печатной пластины." - -#: fdmprinter.def.json -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Нормаль" - -#: fdmprinter.def.json -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Дерево" - -#: fdmprinter.def.json -msgctxt "support_tree_angle label" -msgid "Tree Support Branch Angle" -msgstr "Угол ответвления древовидной поддержки" - -#: fdmprinter.def.json -msgctxt "support_tree_angle description" -msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "Угол ответвлений. При указании меньшего угла поддержка будет более вертикальной и устойчивой. Для получения большего охвата указывайте более высокий угол." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance label" -msgid "Tree Support Branch Distance" -msgstr "Расстояние ответвления древовидной поддержки" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance description" -msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -msgstr "Указывает, насколько далеко должны друг от друга располагаться ответвления при касании модели. Если задать небольшое расстояние, увеличится количество точек, в которых древовидная поддержка касается модели; это улучшает нависание, но при этом усложняет удаление поддержки." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter label" -msgid "Tree Support Branch Diameter" -msgstr "Диаметр ответвления древовидной поддержки" - -#: fdmprinter.def.json -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 "Диаметр самых тонких ответвлений древовидной поддержки. Чем толще ответвление, тем оно крепче. Ответвления возле основания будут иметь толщину, превышающую данное значение." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter_angle label" -msgid "Tree Support Branch Diameter Angle" -msgstr "Угол диаметра ответвления древовидной поддержки" - -#: fdmprinter.def.json -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, ответвления будут иметь одинаковую толщину по всей своей длине. Небольшой угол может повысить устойчивость древовидной поддержки." - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution label" -msgid "Tree Support Collision Resolution" -msgstr "Разрешение для расчета столкновений древовидной поддержки" - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution description" -msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -msgstr "Разрешение, применяемое при расчете столкновений во избежание столкновений с моделью. Если указать меньшее значение, древовидные структуры будут получаться более точными и устойчивыми, однако при этом значительно увеличится время разделения на слои." - -#: fdmprinter.def.json -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Размещение поддержек" - -#: fdmprinter.def.json -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 "Настраивает размещение структур поддержки. Размещение может быть выбрано с касанием стола или везде. Для последнего случая структуры поддержки печатаются даже на самой модели." - -#: fdmprinter.def.json -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "От стола" - -#: fdmprinter.def.json -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Везде" - -#: fdmprinter.def.json -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Угол нависания поддержки" - -#: fdmprinter.def.json -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° не получат никаких поддержек." - -#: fdmprinter.def.json -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Шаблон поддержек" - -#: fdmprinter.def.json -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 "Шаблон печатаемой структуры поддержек. Имеющиеся варианты отличаются крепкостью или простотой удаления поддержек." - -#: fdmprinter.def.json -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Линии" - -#: fdmprinter.def.json -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Сетка" - -#: fdmprinter.def.json -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Треугольники" - -#: fdmprinter.def.json -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Концентрические" - -#: fdmprinter.def.json -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" - -#: fdmprinter.def.json -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Крест" - -#: fdmprinter.def.json -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Гироид" - -#: fdmprinter.def.json -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Количество линий стенки поддержки" - -#: fdmprinter.def.json -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 "Количество стенок, окружающих заполнение поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать нависания поддержки, однако оно увеличивает время печати и расход материалов." - -#: fdmprinter.def.json -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Соединение линий поддержки" - -#: fdmprinter.def.json -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 "Соединяет концы линий поддержки. Активация этой настройки может сделать поддержку более крепкой и компенсировать недостаточную экструзию, но для этого потребуется больше материала." - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Соединённый зигзаг" - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Соединяет зигзаги. Это увеличивает прочность такой поддержки." - -#: fdmprinter.def.json -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Плотность поддержек" - -#: fdmprinter.def.json -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 "Настраивает плотность структуры поддержек. Большее значение приводит к улучшению качества навесов, но такие поддержки сложнее удалять." - -#: fdmprinter.def.json -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Дистанция между линиями поддержки" - -#: fdmprinter.def.json -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Дистанция между напечатанными линями структуры поддержек. Этот параметр вычисляется по плотности поддержек." - -#: fdmprinter.def.json -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Дистанция между линиями поддержки первого слоя" - -#: fdmprinter.def.json -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 "Дистанция между напечатанными линиями структуры поддержек первого слоя. Этот параметр вычисляется по плотности поддержек." - -#: fdmprinter.def.json -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Направление линии заполнения поддержек" - -#: fdmprinter.def.json -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 градусов." - -#: fdmprinter.def.json -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Разрешить кайму поддержек" - -#: fdmprinter.def.json -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 "Создайте кайму внутри участков заполнения поддержек первого слоя. Эта кайма печатается под поддержкой, а не вокруг нее. Включение этого параметра увеличивает адгезию поддержки к рабочему столу." - -#: fdmprinter.def.json -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Ширина каймы поддержки" - -#: fdmprinter.def.json -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 "Ширина каймы для печати под поддержкой. При увеличении каймы улучшается адгезия к рабочему столу и увеличивается расход материала." - -#: fdmprinter.def.json -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Количество линий каймы поддержки" - -#: fdmprinter.def.json -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 "Количество линий, используемых для каймы поддержки. При увеличении линий каймы улучшается адгезия к рабочему столу и увеличивается расход материала." - -#: fdmprinter.def.json -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Зазор поддержки по оси Z" - -#: fdmprinter.def.json -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. This value is rounded up to a multiple of the layer height." -msgstr "Дистанция от дна/крышки структуры поддержек до печати. Этот зазор упрощает извлечение поддержек после окончания печати модели. Это значение округляется до числа, кратного высоте слоя." - -#: fdmprinter.def.json -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Зазор поддержки сверху" - -#: fdmprinter.def.json -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Расстояние между верхом поддержек и печатаемой моделью." - -#: fdmprinter.def.json -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Дистанция поддержки снизу" - -#: fdmprinter.def.json -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Расстояние между печатаемой моделью и низом поддержки." - -#: fdmprinter.def.json -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Зазор поддержки по осям X/Y" - -#: fdmprinter.def.json -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Расстояние между структурами поддержек и печатаемой модели по осям X/Y." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Приоритет зазоров поддержки" - -#: fdmprinter.def.json -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 зазор около нависаний." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y перекрывает Z" - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z перекрывает X/Y" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Минимальный X/Y зазор поддержки" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Зазор между структурами поддержек и нависанием по осям X/Y." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Высота шага лестничной поддержки" - -#: fdmprinter.def.json -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 "Высота в шагах низа лестничной поддержки, лежащей на модели. Малые значения усложняют удаление поддержки, а большие значения могут сделать структуру поддержек нестабильной. Установите ноль для выключения лестничной поддержки." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Максимальная ширина шага лестничной поддержки" - -#: fdmprinter.def.json -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 "Максимальная ширина шагов низа лестничной поддержки, располагающейся на модели. Малые значения усложняют удаление поддержки, а большие значения могут сделать структуру поддержек нестабильной." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Минимальный угол уклона шага лестничной поддержки" - -#: fdmprinter.def.json -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 "Минимальный уклон области, где применяется лестничный шаг. При низких значениях удаление поддержки на более пологих уклонах должно быть проще, но слишком низкие значения могут приводить к очень неожиданным результатам на других деталях модели." - -#: fdmprinter.def.json -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Расстояние объединения поддержки" - -#: fdmprinter.def.json -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. Если отдельные структуры находятся ближе, чем определено данным значением, они объединяются в одну." - -#: fdmprinter.def.json -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Горизонтальное расширение поддержки" - -#: fdmprinter.def.json -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 "Величина смещения, применяемая ко всем полигонам поддержки в каждом слое. Положительные значения могут сглаживать зоны поддержки и приводить к укреплению структур поддержек." - -#: fdmprinter.def.json -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Толщина слоя заполнения поддержек" - -#: fdmprinter.def.json -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 "Толщина слоя для материала заполнения поддержек. Это значение должно быть всегда кратно высоте слоя, в противном случае оно будет округлено." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Степень заполнения поддержек" - -#: fdmprinter.def.json -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 "Количество раз, на которое на половину можно уменьшать плотность заполнения поддержек при проходе вглубь структуры от поверхности. Области ближе к оболочке имеют большую плотность, вплоть до значения \"Плотность заполнения поддержек\"." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Высота шага изменения заполнения поддержек" - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "Высота заполнения поддержек, по достижению которой происходит снижение плотности." - -#: fdmprinter.def.json -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Минимальная зона поддержек" - -#: fdmprinter.def.json -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 "Минимальная площадь зоны для полигонов поддержек. Полигоны с площадью меньше данного значения не будут генерироваться." - -#: fdmprinter.def.json -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Разрешить связующий слой поддержки" - -#: fdmprinter.def.json -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 "Генерирует плотный слой между моделью и поддержкой. Создаёт поверхность сверху поддержек, на которой печатается модель, и снизу, при печати поддержек на модели." - -#: fdmprinter.def.json -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Разрешить крышу поддержек" - -#: fdmprinter.def.json -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 "Генерирует плотный слой материала между крышей поддержки и моделью. Создаёт поверхность между моделью и поддержкой." - -#: fdmprinter.def.json -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Разрешить дно поддержек" - -#: fdmprinter.def.json -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 "Генерирует плотный слой материала между низом поддержки и моделью. Создаёт поверхность между моделью и поддержкой." - -#: fdmprinter.def.json -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Толщина связующего слоя поддержки" - -#: fdmprinter.def.json -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 "Толщина связующего слоя поддержек, который касается модели снизу или сверху." - -#: fdmprinter.def.json -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Толщина крыши" - -#: fdmprinter.def.json -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 "Толщина крыши поддержек. Управляет величиной плотности верхних слоёв поддержек, на которых располагается вся модель." - -#: fdmprinter.def.json -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Толщина низа поддержки" - -#: fdmprinter.def.json -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 "Толщина низа поддержки. Управляет количеством плотных слоёв, которые печатаются поверх модели для последующего построения поддержек." - -#: fdmprinter.def.json -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Разрешение связующего слоя поддержек" - -#: fdmprinter.def.json -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 "Если выбрано в случае, когда модель находится под и над поддержкой, принимает шаги данной высоты. Малые значения замедляют просчёт, а большие - могут привести к генерации поддержек в некоторых местах, где лучше бы печатать интерфейс поддержек." - -#: fdmprinter.def.json -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 "Отрегулируйте плотность заполнения при печати." #: fdmprinter.def.json msgctxt "support_interface_density description" @@ -4158,898 +137,19 @@ msgid "Adjusts the density of the roofs and floors of the support structure. A h msgstr "Настройте плотность верха и низа структуры поддержек. Большее значение приведёт к улучшению нависаний, но такие поддержки будет труднее удалять." #: fdmprinter.def.json -msgctxt "support_roof_density label" -msgid "Support Roof 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 "Настраивает плотность структуры поддержек. Большее значение приводит к улучшению качества навесов, но такие поддержки сложнее удалять." #: fdmprinter.def.json -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 "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Укажите диаметр используемой нити." #: fdmprinter.def.json -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Дистанция линии крыши поддержек" - -#: fdmprinter.def.json -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 "Дистанция между линиями крыши поддержек. Этот параметр вычисляется из Плотности крыши поддержек, но может быть указан отдельно." - -#: fdmprinter.def.json -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Плотность низа поддержек" - -#: fdmprinter.def.json -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 "Плотность низа структуры поддержек. Большее значение приведёт к улучшению прилипания поддержек к модели." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Дистанция линии низа поддержек" - -#: fdmprinter.def.json -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 "Дистанция между линиями низа поддержек. Этот параметр вычисляется из Плотности низа поддержек, но может быть указан отдельно." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Шаблон связующего слоя" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Шаблон, который будет использоваться для печати связующего слоя поддержек." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Линии" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Сетка" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Треугольники" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Концентрический" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Шаблон крыши поддержек" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "Шаблон, который будет использоваться для печати верхней части поддержек." - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Линии" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Сетка" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Треугольники" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Концентрический" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Шаблон низа поддержек" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "Шаблон, который будет использоваться для печати нижней части поддержек." - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Линии" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Сетка" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Треугольники" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Концентрический" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" - -#: fdmprinter.def.json -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Минимальная зона связующего слоя" - -#: fdmprinter.def.json -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 "Минимальная площадь зоны для полигонов связующего слоя. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." - -#: fdmprinter.def.json -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Минимальная зона верхней части поддержек" - -#: fdmprinter.def.json -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 "Минимальная площадь зоны для верхних частей поддержек. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." - -#: fdmprinter.def.json -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Минимальная зона нижней части поддержек" - -#: fdmprinter.def.json -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 "Минимальная площадь зоны для нижних частей поддержек. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." - -#: fdmprinter.def.json -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Горизонтальное расширение связующего слоя" - -#: fdmprinter.def.json -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Величина смещения, применяемая к полигонам связующего слоя." - -#: fdmprinter.def.json -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Горизонтальное расширение верхней части поддержек" - -#: fdmprinter.def.json -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Величина смещения, применяемая к верхней части поддержек." - -#: fdmprinter.def.json -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Горизонтальное расширение нижней части поддержек" - -#: fdmprinter.def.json -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Величина смещения, применяемая к нижней части поддержек." - -#: fdmprinter.def.json -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Направления линии связующего слоя поддержек" - -#: fdmprinter.def.json -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 градусов)." - -#: fdmprinter.def.json -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Направления линии крыши поддержек" - -#: fdmprinter.def.json -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 градусов)." - -#: fdmprinter.def.json -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Направления линии низа поддержек" - -#: fdmprinter.def.json -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 градусов)." - -#: fdmprinter.def.json -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Переопределение скорости вентилятора" - -#: fdmprinter.def.json -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Если включено, скорость охлаждающего вентилятора, используемого во время печати, изменяется для областей оболочки непосредственно над поддержкой." - -#: fdmprinter.def.json -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Поддерживаемая скорость вентилятора для оболочки" - -#: fdmprinter.def.json -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 "Скорость вентилятора в процентах, с которой печатаются области оболочки непосредственно над поддержкой. Использование высоких значений скорости вентилятора может упростить снятие поддержки." - -#: fdmprinter.def.json -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Использовать башни" - -#: fdmprinter.def.json -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 "Использование специальных башен для поддержки крошечных нависающих областей. Такие башни имеют диаметр больший, чем поддерживаемый ими регион. Вблизи нависаний диаметр башен увеличивается, формируя крышу." - -#: fdmprinter.def.json -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Диаметр башен" - -#: fdmprinter.def.json -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "Диаметр специальных башен." - -#: fdmprinter.def.json -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Максимальный диаметр, поддерживаемый башней" - -#: fdmprinter.def.json -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 небольшой области, который должен поддерживаться определенной башней." - -#: fdmprinter.def.json -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Угол крыши башен" - -#: fdmprinter.def.json -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 "Угол верхней части башен. Большие значения приводят уменьшению площади крыши, меньшие наоборот делают крышу плоской." - -#: fdmprinter.def.json -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Объект поддержки нависаний" - -#: fdmprinter.def.json -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 "Будет поддерживать всё ниже объекта, никаких нависаний не будет." - -#: fdmprinter.def.json -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "На сцене есть объекты поддержки" - -#: fdmprinter.def.json -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "На сцене присутствуют объекты поддержки. Эта настройка контролируется приложением Cura." - -#: fdmprinter.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Тип прилипания к столу" - -#: fdmprinter.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Прилипание" - -#: fdmprinter.def.json -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Разрешить наполнение материалом" - -#: fdmprinter.def.json -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 "Следует ли выдавливать материал перед началом печати. Активация этого параметра обеспечивает наполнение материалом сопла экструдера перед началом печати. Печать каймы или юбки может выполнять такое же действие, тогда выключения этого параметра экономит некоторое время." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Начальная X позиция экструдера" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "X координата позиции, в которой сопло начинает печать." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Начальная Y позиция экструдера" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Y координата позиции, в которой сопло начинает печать." - -#: fdmprinter.def.json -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Тип прилипания к столу" - -#: fdmprinter.def.json -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 "Различные варианты, которые помогают улучшить прилипание пластика к столу. Кайма добавляет однослойную плоскую область вокруг основания печатаемой модели, предотвращая её деформацию. Подложка добавляет толстую сетку с крышей под модель. Юбка - это линия, печатаемая вокруг модели, но не соединённая с ней." - -#: fdmprinter.def.json -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Юбка" - -#: fdmprinter.def.json -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Кайма" - -#: fdmprinter.def.json -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Подложка" - -#: fdmprinter.def.json -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Нет" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Экструдер первого слоя" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати юбки/каймы/подложки. Используется при наличии нескольких экструдеров." - -#: fdmprinter.def.json -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Экструдер юбки/каймы" - -#: fdmprinter.def.json -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 "Этот комплекс экструдеров используется для печати юбки или каймы. Используется при наличии нескольких экструдеров." - -#: fdmprinter.def.json -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Экструдер нижних подложек" - -#: fdmprinter.def.json -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 "Этот экструдер используется для печати первого слоя подложек. Используется при наличии нескольких экструдеров." - -#: fdmprinter.def.json -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Экструдер серединных подложек" - -#: fdmprinter.def.json -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 "Этот комплекс экструдеров используется для печати среднего слоя подложек. Используется при наличии нескольких экструдеров." - -#: fdmprinter.def.json -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Экструдер верхних подложек" - -#: fdmprinter.def.json -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 "Этот комплекс экструдеров используется для печати верхнего слоя (или нескольких слоев) подложек. Используется при наличии нескольких экструдеров." - -#: fdmprinter.def.json -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Количество линий юбки" - -#: fdmprinter.def.json -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 отключает печать юбки." - -#: fdmprinter.def.json -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Дистанция до юбки" - -#: fdmprinter.def.json -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" -"Минимальное расстояние. Несколько линий юбки будут расширяться от этого расстояния." - -#: fdmprinter.def.json -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Минимальная длина юбки/каймы" - -#: fdmprinter.def.json -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, то этот параметр игнорируется." - -#: fdmprinter.def.json -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Ширина каймы" - -#: fdmprinter.def.json -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 "Расстояние между моделью и самой удалённой линией каймы. Более широкая кайма увеличивает прилипание к столу, но также уменьшает эффективную область печати." - -#: fdmprinter.def.json -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Количество линий каймы" - -#: fdmprinter.def.json -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 "Количество линий, используемых для печати каймы. Большее количество линий каймы улучшает прилипание к столу, но уменьшает эффективную область печати." - -#: fdmprinter.def.json -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Расстояние до каймы" - -#: fdmprinter.def.json -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 "Горизонтальное расстояние между первой линией каймы и контуром первого слоя изделия. Небольшой зазор облегчит удаление каймы и позволит сохранить термические преимущества." - -#: fdmprinter.def.json -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Кайма заменяет поддержку" - -#: fdmprinter.def.json -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 "Принудительная печать каймы вокруг модели, даже если пространство в ином случае было бы занято поддержкой. При этом некоторые участки первого слоя поддержки заменяются участками каймы." - -#: fdmprinter.def.json -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Кайма только снаружи" - -#: fdmprinter.def.json -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 "Печатать кайму только на внешней стороне модели. Это сокращает объём каймы, которую вам потребуется удалить в дальнейшем, и не снижает качество прилипания к столу." - -#: fdmprinter.def.json -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Дополнительное поле подложки" - -#: fdmprinter.def.json -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 "Если подложка включена, это дополнительное поле вокруг модели, которая также имеет подложку. Увеличение этого значения создаст более крепкую поддержку, используя больше материала и оставляя меньше свободной области для печати." - -#: fdmprinter.def.json -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Сглаживание подложки" - -#: fdmprinter.def.json -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 "Этот параметр регулирует величину скругления внутренних углов контура подложки. Внутренние углы скругляются до полукруга с радиусом, равным установленному здесь значению. Этот параметр также приводит к удалению отверстий в контуре подложки, которые меньше такого круга." - -#: fdmprinter.def.json -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Воздушный зазор подложки" - -#: fdmprinter.def.json -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 "Зазор между последним слоем подложки и первым слоем модели. Первый слой будет приподнят на указанное расстояние, чтобы уменьшить связь между слоем подложки и модели. Упрощает процесс последующего отделения подложки." - -#: fdmprinter.def.json -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Z наложение первого слоя" - -#: fdmprinter.def.json -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 "Приводит к наложению первого и второго слоёв модели по оси Z для компенсации потерь материала в воздушном зазоре. Все слои модели выше первого будут смещены чуть ниже на указанное значение." - -#: fdmprinter.def.json -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Верхние слои подложки" - -#: fdmprinter.def.json -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 "Количество верхних слоёв над вторым слоем подложки. Это такие полностью заполненные слои, на которых размещается модель. Два слоя приводят к более гладкой поверхности чем один." - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Толщина верхнего слоя подложки" - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Толщина верхних слоёв поддержки." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Ширина линий верха подложки" - -#: fdmprinter.def.json -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 "Ширина линий верхних слоёв подложки. Это могут быть тонкие линии, которые делают подложку гладкой." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Дистанция между линиями верха поддержки" - -#: fdmprinter.def.json -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 "Расстояние между линиями подложки на её верхних слоях. Расстояние должно быть равно ширине линии, тогда поверхность будет сплошной." - -#: fdmprinter.def.json -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Серединные слои подложек" - -#: fdmprinter.def.json -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 "Количество слоев между основанием и поверхностью подложки. Они составляют основную толщину подложки. Увеличение этого значения позволяет создать более прочную положку большей толщины." - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Толщина середины подложки" - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Толщина слоёв середины подложки." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Ширина линий середины подложки" - -#: fdmprinter.def.json -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 "Толщина линий средних слоёв подложки. Приводит к повышенному выдавливанию материала на втором слое, для лучшего прилипания к столу." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Дистанция между слоями середины подложки" - -#: fdmprinter.def.json -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 "Расстояние между линиями средних слоёв подложки. Дистанция в средних слоях должна быть достаточно широкой, чтобы создавать нужной плотность для поддержки верхних слоёв подложки." - -#: fdmprinter.def.json -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Толщина нижнего слоя подложки" - -#: fdmprinter.def.json -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 "Толщина нижнего слоя подложки. Она должна быть достаточной для хорошего прилипания подложки к столу." - -#: fdmprinter.def.json -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Ширина линии нижнего слоя подложки" - -#: fdmprinter.def.json -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 "Ширина линий нижнего слоя подложки. Она должна быть достаточной, чтобы улучшить прилипание к столу." - -#: fdmprinter.def.json -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Дистанция между линиями нижнего слоя подложки" - -#: fdmprinter.def.json -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 "Расстояние между линиями нижнего слоя подложки. Большее значение упрощает снятие модели со стола." - -#: fdmprinter.def.json -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Скорость печати подложки" - -#: fdmprinter.def.json -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "Скорость, на которой печатается подложка." - -#: fdmprinter.def.json -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Скорость печати верха подложки" - -#: fdmprinter.def.json -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 "Скорость, на которой печатаются верхние слои подложки. Верх подложки должен печататься немного медленнее, чтобы сопло могло медленно разглаживать линии поверхности." - -#: fdmprinter.def.json -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Скорость печати середины подложки" - -#: fdmprinter.def.json -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 "Скорость, на которой печатаются средние слои подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой." - -#: fdmprinter.def.json -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Скорость печати низа подложки" - -#: fdmprinter.def.json -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 "Скорость, на которой печатается нижний слой подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой." - -#: fdmprinter.def.json -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Ускорение печати подложки" - -#: fdmprinter.def.json -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "Ускорение, с которым печатается подложка." - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Ускорение печати верха подложки" - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Ускорение, с которым печатаются верхние слои подложки." - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Ускорение печати середины подложки" - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "Ускорение, с которым печатаются средние слои подложки." - -#: fdmprinter.def.json -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Ускорение печати низа подложки" - -#: fdmprinter.def.json -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "Ускорение, с которым печатаются нижние слои подложки." - -#: fdmprinter.def.json -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Рывок подложки" - -#: fdmprinter.def.json -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "Скорость изменения ускорений при печати подложки." - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Рывок печати верха подложки" - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются верхние слои подложки." - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Рывок печати середины подложки" - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются средние слои подложки." - -#: fdmprinter.def.json -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Рывок печати низа подложки" - -#: fdmprinter.def.json -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются нижние слои подложки." - -#: fdmprinter.def.json -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Скорость вентилятора для подложки" - -#: fdmprinter.def.json -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Скорость вращения вентилятора при печати подложки." - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Скорость вентилятора для верха подложки" - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Скорость вентилятора при печати верхних слоёв подложки." - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Скорость вентилятора для середины подложки" - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "Скорость вентилятора при печати средних слоёв подложки." - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Скорость вентилятора для низа подложки" - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Скорость вентилятора при печати нижнего слоя подложки." - -#: fdmprinter.def.json -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Два экструдера" - -#: fdmprinter.def.json -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Параметры, используемые для печати несколькими экструдерами." - -#: fdmprinter.def.json -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Разрешить черновую башню" - -#: fdmprinter.def.json -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Печатает башню перед печатью модели, чем помогает выдавить старый материал после смены экструдера." - -#: fdmprinter.def.json -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Размер черновой башни" - -#: fdmprinter.def.json -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "Ширина черновой башни." - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Минимальный объём черновой башни" - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "Минимальный объём материала на каждый слой черновой башни, который требуется выдавить." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "X позиция черновой башни" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "X координата позиции черновой башни." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Y позиция черновой башни" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "Y координата позиции черновой башни." - -#: fdmprinter.def.json -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 "Настраивает размещение структур поддержки. Размещение может быть выбрано с касанием стола или везде. Для последнего случая структуры поддержки печатаются даже на самой модели." #: fdmprinter.def.json msgctxt "prime_tower_wipe_enabled description" @@ -5057,244 +157,14 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "После печати черновой башни одним соплом, вытирает вытекший материал из другого сопла об эту башню." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -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 "При переключении принтера на другой экструдер между соплом и печатаемой деталью создаётся зазор. Это предотвращает возможность вытекания материала и его прилипание к внешней части печатаемой модели." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Для черновых башен может потребоваться дополнительная адгезия с помощью каймы, даже если для модели это не требуется. В данный момент не может использоваться с типом адгезии с подложкой." - -#: fdmprinter.def.json -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Печатать защиту от капель" - -#: fdmprinter.def.json -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 "Разрешает печать внешней защиты от вытекших капель. Создаёт ограду вокруг модели, о которую вытирается материал, вытекший из второго сопла, если оно находится на той же высоте, что и первое сопло." - -#: fdmprinter.def.json -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Угол защиты от капель" - -#: fdmprinter.def.json -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 - будет горизонталь. Малые значения угла приводят к лучшему качеству, но тратят больше материала." - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Дистанция до защиты от капель" - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "Дистанция до стенки защиты от модели, по осям X/Y." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Величина отката при смене экструдера" - -#: fdmprinter.def.json -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 для отключения отката. Обычно соответствует длине зоны нагрева." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Скорость отката при смене экструдера" - -#: fdmprinter.def.json -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 "Скорость с которой материал будет извлечён и возвращён обратно при откате. Высокая скорость отката работает лучше, но очень большая скорость портит материал." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Скорость отката при смене экструдера" - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "Скорость, с которой материал будет извлечён при откате для смены экструдера." - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Скорость наполнения при смене экструдера" - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "Скорость, с которой материал будет возвращён обратно при смене экструдера." - -#: fdmprinter.def.json -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Дополнительно заполняемый объем при смене экструдера" - -#: fdmprinter.def.json -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Дополнительный объем материала для заполнения после смены экструдера." - -#: fdmprinter.def.json -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Ремонт объектов" - -#: fdmprinter.def.json -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Сделайте объекты более подходящими для 3D-печати." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Объединение перекрывающихся объёмов" - -#: fdmprinter.def.json -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 "Игнорирует внутреннюю геометрию, являющуюся результатом перекрытия объёмов в модели, и печатает эти объёмы как один. Это может приводить к непреднамеренному исчезновению внутренних полостей." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Удаляет все отверстия" - -#: fdmprinter.def.json -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 "Удаляет отверстия в каждом слое, оставляя только внешнюю форму. Вся невидимая внутренняя геометрия будет проигнорирована. Однако, также будут проигнорированы отверстия в слоях, которые могут быть видны сверху или снизу." - -#: fdmprinter.def.json -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Обширное сшивание" - -#: fdmprinter.def.json -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 "Обширное сшивание пытается сшить открытые отверстия в объекте, закрывая их полигонами. Эта опция может добавить дополнительное время во время обработки." - -#: fdmprinter.def.json -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Сохранить отсоединённые поверхности" - -#: fdmprinter.def.json -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-код." - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Перекрытие касающихся объектов" - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Если объекты немного касаются друг друга, то сделаем их перекрывающимися. Это позволит им соединиться крепче." - -#: fdmprinter.def.json -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Удалить пересечения объектов" - -#: fdmprinter.def.json -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 "Удаляет области, где несколько объектов перекрываются друг с другом. Можно использовать, для объектов, состоящих из двух материалов и пересекающихся друг с другом." - -#: fdmprinter.def.json -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Чередование объектов" - -#: fdmprinter.def.json -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 "Чередует какой из объектов, пересекающихся в объёме, будет участвовать в печати каждого слоя таким образом, что пересекающиеся объекты становятся вплетёнными друг в друга. Выключение этого параметра приведёт к тому, что один из объектов займёт весь объём пересечения, в то время как данный объём будет исключён из других объектов." - -#: fdmprinter.def.json -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Удалить первые пустые слои" - -#: fdmprinter.def.json -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 "Удаление пустых слоёв под первым печатаемым слоем, если они имеются. Отключение этой функции может привести к созданию первых пустых слоев, если для параметра «Допуск слайсинга» установлено значение «Включение» или «Середина»." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Максимальное разрешение" - -#: fdmprinter.def.json -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 и увеличит скорость слайсинга за счет удаления деталей модели, которые он в любом случае не сможет обработать." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Максимальное разрешение перемещения" - -#: fdmprinter.def.json -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-кода, однако при этом может снизиться точность избегания моделей." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Максимальное отклонение" - -#: fdmprinter.def.json -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-кода. Максимальное отклонение является пределом для максимального разрешения, поэтому, если они конфликтуют, истинным считается максимальное отклонение." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Максимальное отклонение площади экструзии" - -#: fdmprinter.def.json -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-кода уменьшится." - -#: fdmprinter.def.json -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Специальные режимы" - -#: fdmprinter.def.json -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Нетрадиционные способы печати моделей." - -#: fdmprinter.def.json -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Последовательная печать" - -#: fdmprinter.def.json -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 "Везде" #: fdmprinter.def.json msgctxt "print_sequence option all_at_once" @@ -5302,1273 +172,19 @@ msgid "All at Once" msgstr "Все за раз" #: fdmprinter.def.json -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -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 "Все параметры, которые влияют на разрешение печати. Эти параметры сильно влияют на качество (и время печати)" #: fdmprinter.def.json -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Заполнение объекта" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Чередующаяся стенка" #: fdmprinter.def.json -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 "Использовать указанный объект для изменения заполнения других объектов, с которыми он перекрывается. Заменяет области заполнения других объектов областями для этого объекта. Предлагается только для печати одной стенки без верхних и нижних оболочек." - -#: fdmprinter.def.json -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Порядок обработки объекта" - -#: fdmprinter.def.json -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 "Определяет приоритет данного объекта при вычислении нескольких перекрывающихся заполняющих объектов. К областям с несколькими перекрывающимися заполняющими объектами будут применяться настройки объекта более высокого порядка. Заполняющий объект более высокого порядка будет модифицировать заполнение объектов более низких порядков и обычных объектов." - -#: fdmprinter.def.json -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Ограничивающий объект" - -#: fdmprinter.def.json -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 "Ограничивает объём объекта внутри других объектов. Вы можете использовать это для печати определённых областей одного объекта, применяя различные параметры печати и даже другой экструдер." - -#: fdmprinter.def.json -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Форма" - -#: fdmprinter.def.json -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 "Печатать модель в виде формы, которая может использоваться для отливки оригинальной модели." - -#: fdmprinter.def.json -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Минимальная ширина формы" - -#: fdmprinter.def.json -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "Минимальное расстояние между внешними сторонами формы и модели." - -#: fdmprinter.def.json -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Высота крыши формы" - -#: fdmprinter.def.json -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "Высота над горизонтальными частями вашей модели, по которой создаётся форма." - -#: fdmprinter.def.json -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Угол формы" - -#: fdmprinter.def.json -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° - заставит следовать контурам модели." - -#: fdmprinter.def.json -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Поддерживающий объект" - -#: fdmprinter.def.json -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Используйте этот объект для указания области поддержек. Может использоваться при генерации структуры поддержек." - -#: fdmprinter.def.json -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Блокиратор поддержек" - -#: fdmprinter.def.json -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 "Используйте этот объект для указания частей модели, которые не должны рассматриваться как нависающие. Может использоваться для удаления нежелаемых структур поддержки." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Поверхностный режим" - -#: fdmprinter.def.json -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 "Рассматривать модель только в виде поверхности или как объёмы со свободными поверхностями. При нормальном режиме печатаются только закрытые объёмы. В режиме \"Поверхность\" печатается одиночная стенка по границе объекта, без заполнения, без верхних и нижних оболочек. В режиме \"Оба варианта\" печатаются закрытые объёмы как нормальные, а любые оставшиеся полигоны как поверхности." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Нормаль" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Поверхность" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Оба варианта" - -#: fdmprinter.def.json -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Спирально печатать внешний контур" - -#: fdmprinter.def.json -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. Этот параметр превращает модель в одностенный объект с крепким дном. Параметр можно использовать только когда каждый слой состоит из одной части модели." - -#: fdmprinter.def.json -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Сглаживать спиральные контуры" - -#: fdmprinter.def.json -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 (такой шов должен быть едва виден при печати, но виден при послойном просмотре). Следует отметить, что сглаживание ведет к размыванию мелких деталей поверхности." - -#: fdmprinter.def.json -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Относительная экструзия" - -#: fdmprinter.def.json -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-кода всегда будет установлен абсолютный режим экструзии." - -#: fdmprinter.def.json -msgctxt "experimental label" -msgid "Experimental" -msgstr "Экспериментальное" - -#: fdmprinter.def.json -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Функции, еще не раскрытые до конца." - -#: fdmprinter.def.json -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Допуск слайсинга" - -#: fdmprinter.def.json -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 "Вертикальный допуск в нарезанных слоях. В общем случае контуры слоя создаются путем снятия поперечных сечений по середине толщины каждого слоя (Середина). Кроме того, каждый слой может иметь области, попадающие в объем по всей толщине слоя (Исключение), или области, попадающие в любое место слоя (Включение). Способ «Включение» сохраняет больше деталей, способ «Исключение» обеспечивает наилучшую подгонку, а способ «Середина» — наиболее близкое соответствие оригинальной поверхности." - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Середина" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Исключение" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Включение" - -#: fdmprinter.def.json -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Ширина линии крышки" - -#: fdmprinter.def.json -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Ширина одной линии крышки." - -#: fdmprinter.def.json -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Шаблон верхней оболочки" - -#: fdmprinter.def.json -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "Шаблон, используемый для верхних слоёв оболочки." - -#: fdmprinter.def.json -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Линии" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Концентрические" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" - -#: fdmprinter.def.json -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Монотонный порядок верхней оболочки" - -#: fdmprinter.def.json -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 "Печатайте линии верхней оболочки в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." - -#: fdmprinter.def.json -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Направление линий верхней оболочки" - -#: fdmprinter.def.json -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 градусов)." - -#: fdmprinter.def.json -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Оптимизация перемещения заполнения" - -#: fdmprinter.def.json -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 "Если включено, порядок, в котором печатаются линии заполнения, оптимизируется для сокращения пройденного расстояния. Достигнутое сокращение времени перемещения в очень большой степени зависит от модели, разделяемой на слои, шаблона заполнения, плотности и т. п. Обратите внимание, что для некоторых моделей, имеющих множество небольших заполняемых областей, время разделения на слои может существенно возрасти." - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature label" -msgid "Auto Temperature" -msgstr "Автоматическая температура" - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature description" -msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -msgstr "Изменять температуру каждого слоя автоматически в соответствии со средней скоростью потока на этом слое." - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "График температуры потока" - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "График, объединяющий поток (в мм3 в секунду) с температурой (в градусах Цельсия)." - -#: fdmprinter.def.json -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Минимальная длина окружности полигона" - -#: fdmprinter.def.json -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-моделей с множеством деталей." - -#: fdmprinter.def.json -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Разбить поддержки на части" - -#: fdmprinter.def.json -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 "Пропускать некоторые соединения в поддержках для облегчения их последующего удаления. Этот параметр влияет на зиг-заг шаблон заполнения." - -#: fdmprinter.def.json -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Размер части поддержек" - -#: fdmprinter.def.json -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 миллиметров для облегчения последующего удаления поддержек." - -#: fdmprinter.def.json -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Количество частей линий поддержки" - -#: fdmprinter.def.json -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 соединительных линий, облегчая последующее удаление поддержек." - -#: fdmprinter.def.json -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Разрешить печать кожуха" - -#: fdmprinter.def.json -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 "Создаёт стенку вокруг модели, которая удерживает (горячий) воздух и препятствует обдуву модели внешним воздушным потоком. Очень пригодится для материалов, которые легко деформируются." - -#: fdmprinter.def.json -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Дистанция X/Y до кожуха" - -#: fdmprinter.def.json -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Дистанция до стенки кожуха от модели, по осям X/Y." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Ограничение кожуха" - -#: fdmprinter.def.json -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 "Устанавливает высоту кожуха. Можно печать кожух высотой с модель или указать определённую высоту." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Полная" - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Ограниченная" - -#: fdmprinter.def.json -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Высота кожуха" - -#: fdmprinter.def.json -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Ограничение по высоте для кожуха. Выше указанного значение кожух печататься не будет." - -#: fdmprinter.def.json -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Сделать нависания печатаемыми" - -#: fdmprinter.def.json -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 "Изменяет геометрию печатаемой модели так, чтобы снизить требования к объёму поддержек. Крутые навесы станут поменьше. Нависающие области опустятся и станут более вертикальными." - -#: fdmprinter.def.json -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Максимальный угол модели" - -#: fdmprinter.def.json -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° в модель не вносится никаких изменений." - -#: fdmprinter.def.json -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Максимальная площадь отверстия выступа" - -#: fdmprinter.def.json -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 мм² приведет к заполнению всех отверстий в основании модели." - -#: fdmprinter.def.json -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Разрешить накат" - -#: fdmprinter.def.json -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 "Накат отключает экструзию материала на завершающей части пути. Вытекающий материал используется для печати на завершающей части пути, уменьшая строчность." - -#: fdmprinter.def.json -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Объём наката" - -#: fdmprinter.def.json -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Объём, который бы сочился. Это значение должно обычно быть близко к возведенному в куб диаметру сопла." - -#: fdmprinter.def.json -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Минимальный объём перед накатом" - -#: fdmprinter.def.json -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 "Минимальный объём экструзии, который должен быть произведён перед выполнением наката. Для малых путей меньшее давление будет создаваться в боудене и таким образом, объём наката будет изменяться линейно. Это значение должно всегда быть больше \"Объёма наката\"." - -#: fdmprinter.def.json -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Скорость наката" - -#: fdmprinter.def.json -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%, так как во время наката давление в боудене снижается." - -#: fdmprinter.def.json -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Размер карманов креста 3D" - -#: fdmprinter.def.json -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 по высоте, когда шаблон касается сам себя." - -#: fdmprinter.def.json -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Изображение плотности перекрестного заполнения" - -#: fdmprinter.def.json -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 "Путь к файлу изображения, из которого значения яркости определяют минимальную плотность в соответствующем месте заполнения при печати." - -#: fdmprinter.def.json -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Изображение плотности перекрестного заполнения для поддержки" - -#: fdmprinter.def.json -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 "Путь к файлу изображения, из которого значения яркости определяют минимальную плотность в соответствующем месте поддержки." - -#: fdmprinter.def.json -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Конические поддержки" - -#: fdmprinter.def.json -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Нижняя часть поддержек становится меньше, чем верхняя." - -#: fdmprinter.def.json -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Угол конических поддержек" - -#: fdmprinter.def.json -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 градусах будут горизонтальными. Меньшее значение углов укрепляет поддержки, но требует больше материала для них. Отрицательные углы приводят утолщению основания поддержек по сравнению с их верхней частью." - -#: fdmprinter.def.json -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Минимальная ширина конических поддержек" - -#: fdmprinter.def.json -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 "Минимальная ширина, до которой может быть уменьшен низ конуса. Малая ширина может сделать такую структуру поддержек нестабильной." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Нечёткая оболочка" - -#: fdmprinter.def.json -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 "Вносит небольшое дрожание при печати внешней стенки, что придаёт поверхности шершавый вид." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Только шершавая оболочка снаружи" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Дрожание только контуров деталей, но не отверстий." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Толщина шершавости оболочки" - -#: fdmprinter.def.json -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 "Величина амплитуды дрожания. Рекомендуется придерживаться толщины внешней стенки, так как внутренние стенки не изменяются." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Плотность шершавой оболочки" - -#: fdmprinter.def.json -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 "Средняя плотность точек, добавленных на каждом полигоне в слое. Следует отметить, что оригинальные точки полигона отбрасываются, следовательно низкая плотность приводит к уменьшению разрешения." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Дистанция между точками шершавой оболочки" - -#: fdmprinter.def.json -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 "Среднее расстояние между случайными точками, который вносятся в каждый сегмент линии. Следует отметить, что оригинальные точки полигона отбрасываются, таким образом, сильное сглаживание приводит к уменьшению разрешения. Это значение должно быть больше половины толщины шершавой оболочки." - -#: fdmprinter.def.json -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Макс. смещение экструзии для компенсации расхода" - -#: fdmprinter.def.json -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 "Максимальное расстояние (в мм) перемещения материала для компенсации изменения расхода." - -#: fdmprinter.def.json -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Коэффициент компенсации расхода" - -#: fdmprinter.def.json -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 "Означает, насколько далеко следует переместить материал, чтобы компенсировать изменение расхода, в процентах от расстояния, на которое перемещается материал за одну секунду экструзии." - -#: fdmprinter.def.json -msgctxt "wireframe_enabled label" -msgid "Wire Printing" -msgstr "Каркасная печать (КП)" - -#: fdmprinter.def.json -msgctxt "wireframe_enabled description" -msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -msgstr "Печатать только внешнюю поверхность с редкой перепончатой структурой, печатаемой \"прямо в воздухе\". Это реализуется горизонтальной печатью контуров модели с заданными Z интервалами, которые соединяются диагональными линиями." - -#: fdmprinter.def.json -msgctxt "wireframe_height label" -msgid "WP Connection Height" -msgstr "Высота соединений (КП)" - -#: fdmprinter.def.json -msgctxt "wireframe_height description" -msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -msgstr "Высота диагональных линий между двумя горизонтальными частями. Она определяет общую плотность сетевой структуры. Применяется только при каркасной печати." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset label" -msgid "WP Roof Inset Distance" -msgstr "Расстояние крыши внутрь (КП)" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset description" -msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -msgstr "Покрываемое расстояние при создании соединения от внешней части крыши внутрь. Применяется только при каркасной печати." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed label" -msgid "WP Speed" -msgstr "Скорость каркасной печати" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed description" -msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -msgstr "Скорость с которой двигается сопло, выдавая материал. Применяется только при каркасной печати." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom label" -msgid "WP Bottom Printing Speed" -msgstr "Скорость печати низа (КП)" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom description" -msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -msgstr "Скорость, с которой печатается первый слой, касающийся стола. Применяется только при каркасной печати." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up label" -msgid "WP Upward Printing Speed" -msgstr "Скорость печати вверх (КП)" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up description" -msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -msgstr "Скорость печати линии вверх \"в разрежённом воздухе\". Применяется только при каркасной печати." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down label" -msgid "WP Downward Printing Speed" -msgstr "Скорость печати вниз (КП)" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down description" -msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -msgstr "Скорость печати линии диагонально вниз. Применяется только при каркасной печати." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat label" -msgid "WP Horizontal Printing Speed" -msgstr "Скорость горизонтальной печати (КП)" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat description" -msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -msgstr "Скорость, с которой печатаются горизонтальные контуры модели. Применяется только при нитевой печати." - -#: fdmprinter.def.json -msgctxt "wireframe_flow label" -msgid "WP Flow" -msgstr "Поток каркасной печати" - -#: fdmprinter.def.json -msgctxt "wireframe_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -msgstr "Компенсация потока: объём выдавленного материала умножается на это значение. Применяется только при каркасной печати." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection label" -msgid "WP Connection Flow" -msgstr "Поток соединений (КП)" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection description" -msgid "Flow compensation when going up or down. Only applies to Wire Printing." -msgstr "Компенсация потока при движении вверх и вниз. Применяется только при каркасной печати." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat label" -msgid "WP Flat Flow" -msgstr "Поток горизонтальных линий (КП)" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat description" -msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -msgstr "Компенсация потока при печати плоских линий. Применяется только при каркасной печати." - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay label" -msgid "WP Top Delay" -msgstr "Верхняя задержка (КП)" - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay description" -msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -msgstr "Задержка после движения вверх, чтобы такие линии были твёрже. Применяется только при каркасной печати." - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay label" -msgid "WP Bottom Delay" -msgstr "Нижняя задержка (КП)" - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay description" -msgid "Delay time after a downward move. Only applies to Wire Printing." -msgstr "Задержка после движения вниз. Применяется только при каркасной печати." - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay label" -msgid "WP Flat Delay" -msgstr "Горизонтальная задержка (КП)" - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay description" -msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -msgstr "Задержка между двумя горизонтальными сегментами. Внесение такой задержки может улучшить прилипание к предыдущим слоям в местах соединений, в то время как более длинные задержки могут вызывать провисания. Применяется только при нитевой печати." - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed label" -msgid "WP Ease Upward" -msgstr "Ослабление вверх (КП)" - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed description" -msgid "" -"Distance of an upward move which is extruded with half speed.\n" -"This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "" -"Расстояние движения вверх, при котором выдавливание идёт на половине скорости.\n" -"Это может улучшить прилипание к предыдущим слоям, не перегревая материал тех слоёв. Применяется только при каркасной печати." - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump label" -msgid "WP Knot Size" -msgstr "Размер узла (КП)" - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump description" -msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -msgstr "Создаёт небольшой узел наверху возвышающейся линии так, чтобы последующий горизонтальный слой имел больший шанс к присоединению. Применяется только при каркасной печати." - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down label" -msgid "WP Fall Down" -msgstr "Падение (КП)" - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down description" -msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "Расстояние, с которого материал падает вниз после восходящего выдавливания. Расстояние компенсируется. Применяется только при каркасной печати." - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along label" -msgid "WP Drag Along" -msgstr "Протягивание (КП)" - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along description" -msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "Расстояние, на которое материал от восходящего выдавливания тянется во время нисходящего выдавливания. Расстояние компенсируется. Применяется только при каркасной печати." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy label" -msgid "WP Strategy" -msgstr "Стратегия (КП)" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy description" -msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -msgstr "Стратегия проверки соединения двух соседних слоёв в соответствующих точках. Откат укрепляет восходящие линии в нужных местах, но может привести к истиранию нити материала. Узел может быть сделан в конце восходящей линии для повышения шанса соединения с ним и позволить линии охладиться; однако, это может потребовать пониженных скоростей печати. Другая стратегия состоит в том, чтобы компенсировать провисание вершины восходящей линии; однако, строки будут не всегда падать, как предсказано." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option compensate" -msgid "Compensate" -msgstr "Компенсация" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option knot" -msgid "Knot" -msgstr "Узел" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option retract" -msgid "Retract" -msgstr "Откат" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down label" -msgid "WP Straighten Downward Lines" -msgstr "Прямые нисходящие линии (КП)" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down description" -msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -msgstr "Процент диагонально нисходящей линии, которая покрывается куском горизонтальной линии. Это может предотвратить провисание самых верхних точек восходящих линий. Применяется только при каркасной печати." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down label" -msgid "WP Roof Fall Down" -msgstr "Опадание крыши (КП)" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down description" -msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -msgstr "Расстояние, на котором линии горизонтальной крыши печатаемые \"в воздухе\" падают вниз при печати. Это расстояние скомпенсировано. Применяется только при каркасной печати." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along label" -msgid "WP Roof Drag Along" -msgstr "Протягивание крыши (КП)" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along description" -msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -msgstr "Расстояние финальной части восходящей линии, которая протягивается при возвращении к внешнему контуру крыши. Это расстояние скомпенсировано. Применяется только при каркасной печати." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay label" -msgid "WP Roof Outer Delay" -msgstr "Задержка внешней крыши (КП)" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay description" -msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -msgstr "Время, потраченное на внешних периметрах отверстия, которое станет крышей. Увеличенное время может придать прочности. Применяется только при каркасной печати." - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance label" -msgid "WP Nozzle Clearance" -msgstr "Зазор сопла (КП)" - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance description" -msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -msgstr "Зазор между соплом и горизонтально нисходящими линиями. Большее значение уменьшает угол нисхождения, что приводит уменьшению восходящих соединений на следующем слое. Применяется только при каркасной печати." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Использовать адаптивные слои" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "В случае адаптивных слоев расчет высоты слоя осуществляется в зависимости от формы модели." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Максимальная вариация адаптивных слоев" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "Максимальная разрешенная высота по сравнению с высотой базового уровня." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Размер шага вариации адаптивных слоев" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "Разница между высотой следующего слоя и высотой предыдущего слоя." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Размер топографии адаптивных слоев" - -#: fdmprinter.def.json -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 "Целевое расстояние по горизонтали между двумя соседними слоями. Уменьшение этого значения приведет к сокращению толщины слоев, и края слоев станут ближе друг к другу." - -#: fdmprinter.def.json -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Угол нависающей стенки" - -#: fdmprinter.def.json -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, стенки не считаются выступающими. Выступающие элементы, для которых имеется поддержка, также не считаются выступающими." - -#: fdmprinter.def.json -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Скорость печати нависающей стенки" - -#: fdmprinter.def.json -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Нависающие стенки будут напечатаны с данным процентным значением нормальной скорости печати." - -#: fdmprinter.def.json -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Активация настроек мостиков" - -#: fdmprinter.def.json -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Обнаружение мостиков и изменение скорости печати, настроек потока и вентилятора во время печати мостиков." - -#: fdmprinter.def.json -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Минимальная длина стенки мостика" - -#: fdmprinter.def.json -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 "Стенки без поддержки, которые короче указанного значения, будут напечатаны с использованием стандартных настроек стенок. Более длинные стенки без поддержки будут напечатаны с использованием настроек стенки мостика." - -#: fdmprinter.def.json -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Пороговое значение поддержки для оболочки мостика" - -#: fdmprinter.def.json -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 "Если поддержка области оболочки составляет меньше указанного процентного значения от ее площади, печать должна быть выполнена с использованием настроек мостика. В противном случае печать осуществляется с использованием стандартных настроек оболочки." - -#: fdmprinter.def.json -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Максимальная плотность разреженного заполнения мостика" - -#: fdmprinter.def.json -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 "Максимальная плотность заполнения, считающегося разреженным. Оболочка поверх разреженного заполнения считается неподдерживаемой и, соответственно, может обрабатываться как оболочка мостика." - -#: fdmprinter.def.json -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Накат стенки мостика" - -#: fdmprinter.def.json -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 "Эта настройка управляет расстоянием наката экструдера непосредственно перед началом стенки мостика. Накат перед началом мостика может уменьшить давление в сопле и создать более ровный мостик." - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Скорость печати стенки мостика" - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "Скорость, с которой происходит печать стенок мостика." - -#: fdmprinter.def.json -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Поток для стенки мостика" - -#: fdmprinter.def.json -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Во время печати стенок мостика объем выдавленного материала умножается на указанное значение." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Скорость печати оболочки мостика" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "Скорость, с которой печатаются области оболочки мостика." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Поток для оболочки мостика" - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Во время печати областей оболочки мостика объем выдавленного материала умножается на указанное значение." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Плотность оболочки мостика" - -#: fdmprinter.def.json -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 увеличат зазоры между линиями оболочки." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Скорость вентилятора для мостика" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Скорость вентилятора в процентах, которую необходимо использовать при печати стенок и оболочки мостика." - -#: fdmprinter.def.json -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "В мостике несколько слоев" - -#: fdmprinter.def.json -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 "Если настройка активна, второй и третий слои над воздушным зазором печатаются с использованием указанных далее настроек. В противном случае эти слои печатаются с использованием стандартных настроек." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Скорость печати второй оболочки мостика" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Скорость, с которой печатается слой второй оболочки мостика." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Поток для второй оболочки мостика" - -#: fdmprinter.def.json -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 "Во время печати слоя второй оболочки мостика объем выдавленного материала умножается на указанное значение." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Плотность второй оболочки мостика" - -#: fdmprinter.def.json -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 увеличат зазоры между линиями оболочки." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Скорость вентилятора для второй оболочки мостика" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Скорость вентилятора в процентах, с которой печатается слой второй оболочки мостика." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Скорость печати третьей оболочки мостика" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Скорость, с которой печатается слой третьей оболочки мостика." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Поток для третьей оболочки мостика" - -#: fdmprinter.def.json -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 "Во время печати слоя третьей оболочки мостика объем выдавленного материала умножается на указанное значение." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Плотность третьей оболочки мостика" - -#: fdmprinter.def.json -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 увеличат зазоры между линиями оболочки." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Скорость вентилятора для третьей оболочки мостика" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Скорость вентилятора в процентах, с которой печатается слой третьей оболочки мостика." - -#: fdmprinter.def.json -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Очистка сопла между слоями" - -#: fdmprinter.def.json -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-код очистки сопла между слоями (максимум один на слой). Включение этого параметра может повлиять на ход отката при смене слоя. Используйте параметры отката с очисткой для управления откатом на слоях, для которых используется скрипт очистки." - -#: fdmprinter.def.json -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Объем материала между очистками" - -#: fdmprinter.def.json -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 "Максимальный объем материала, который можно выдавить перед очередной очисткой сопла. Если это значение меньше объема материала, требуемого для слоя, данная настройка в этом слое не действует (т. е. максимум одна очистка на слой)." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Включение отката с очисткой" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Откат нити при движении сопла вне зоны печати." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Расстояние отката с очисткой" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Величина отката нити, предотвращающего просачивание во время последовательности очистки." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Дополнительно заполняемый объем при откате с очисткой" - -#: fdmprinter.def.json -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 "Небольшое количество материала может просочиться при перемещении во время очистки, что можно скомпенсировать с помощью данного параметра." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Скорость отката с очисткой" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "Скорость, с которой нить будет втягиваться и заправляться при откате с очисткой." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Скорость отката при откате с очисткой" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "Скорость, с которой нить будет втягиваться при откате с очисткой." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Скорость заправки при откате с очисткой" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "Скорость, с которой нить заправляется при откате с очисткой." - -#: fdmprinter.def.json -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Приостановка очистки" - -#: fdmprinter.def.json -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Приостановка после отмены отката." - -#: fdmprinter.def.json -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Поднятие оси Z при очистке" - -#: fdmprinter.def.json -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 "При очистке рабочий стол опускается для создания зазора между соплом и печатаемой деталью. Это предотвращает соударение сопла и печатаемой детали во время движений, снижая вероятность смещения печатаемой детали на рабочем столе." - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Высота поднятия оси Z при очистке" - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Расстояние, на которое приподнимается ось Z." - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Скорость поднятия при очистке" - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Скорость перемещения оси Z во время поднятия." - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Позиция X очистной щетки" - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "Расположение X, в котором запустится скрипт очистки." - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Количество повторов очистки" - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Количество перемещений сопла поперек щетки." - -#: fdmprinter.def.json -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Расстояние перемещения при очистке" - -#: fdmprinter.def.json -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "Расстояние перемещения головки назад и вперед поперек щетки." - -#: fdmprinter.def.json -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Максимальный размер малого отверстия" - -#: fdmprinter.def.json -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 "Отверстия и контуры деталей с диаметром меньше этого значения будут напечатаны с использованием функции «Скорость для малых элементов»." - -#: fdmprinter.def.json -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Максимальная длина малого элемента" - -#: fdmprinter.def.json -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Контуры элементов с длиной меньше этого значения будут напечатаны с использованием функции «Скорость для малых элементов»." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Скорость для малых элементов" - -#: fdmprinter.def.json -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 "Малые элементы будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Скорость первого слоя для небольших объектов" - -#: fdmprinter.def.json -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 "Чередование объектов" #: fdmprinter.def.json msgctxt "material_alternate_walls label" @@ -6581,34 +197,349 @@ msgid "Alternate wall directions every other layer and inset. Useful for materia msgstr "Чередуйте направления стенок каждые вторые слой и вставку. Это полезно для материалов, которые могут накапливать напряжение, например для металлической печати." #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Удаление внутренних углов подложки" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Алюминий" #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Удаляйте внутренние углы с подложки, чтобы она стала выпуклой." +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "Всегда выполнять запись активного инструмента" #: fdmprinter.def.json -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Счетчик стен основания подложки" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Всегда откатывать материал при движении к началу внешней стенки." #: fdmprinter.def.json -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 "hole_xy_offset description" +msgid "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." +msgstr "Смещение, применяемое ко всем отверстиям в каждом слое. Положительные значения увеличивают размер отверстий; отрицательные значения уменьшают размер отверстий." #: fdmprinter.def.json -msgctxt "command_line_settings label" -msgid "Command Line Settings" -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 "Сумма смещения, применяемая ко всем полигонам на каждом слое. Позитивные значения могут возместить потери для слишком больших отверстий; негативные значения могут возместить потери для слишком малых отверстий." #: fdmprinter.def.json -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Параметры, которые используются в случае, когда CuraEngine вызывается напрямую." +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 "Сумма смещений, применяемая ко всем полигонам первого слоя. Отрицательное значение может компенсировать \"хлюпанье\" первого слоя, известное как \"слоновая нога\"." + +#: fdmprinter.def.json +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 "Величина смещения, применяемая ко всем полигонам поддержки в каждом слое. Положительные значения могут сглаживать зоны поддержки и приводить к укреплению структур поддержек." + +#: fdmprinter.def.json +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Величина смещения, применяемая к нижней части поддержек." + +#: fdmprinter.def.json +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Величина смещения, применяемая к верхней части поддержек." + +#: fdmprinter.def.json +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Величина смещения, применяемая к полигонам связующего слоя." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Величина отката нити, предотвращающего просачивание во время последовательности очистки." + +#: fdmprinter.def.json +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 "Дополнение к радиусу от центра каждого куба для проверки границ модели, используется для принятия решения о разделении куба. Большие значения приводят к утолщению стенок мелких кубов по мере приближения к границе модели." + +#: fdmprinter.def.json +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Блокиратор поддержек" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Положение отката для защиты от капель" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Скорость отката для защиты от капель" + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Применить смещение экструдера к системе координат. Влияет на все экструдеры." + +#: fdmprinter.def.json +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 "Создать взаимосвязанную структуру балок в местах соприкосновения моделей. Это улучшит адгезию между моделями, особенно моделями из разных материалов." + +#: fdmprinter.def.json +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Избегать напечатанных частей при перемещении" + +#: fdmprinter.def.json +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Избегать поддержек при перемещении" + +#: fdmprinter.def.json +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Назад" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Сзади слева" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Сзади справа" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Оба варианта" + +#: fdmprinter.def.json +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Слои дна" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Нижний шаблон начального слоя" + +#: fdmprinter.def.json +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Расстояние расширения оболочки снизу" + +#: fdmprinter.def.json +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Ширина удаляемой оболочки снизу" + +#: fdmprinter.def.json +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Толщина дна" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Положение отката для подготовки к отламыванию" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Скорость отката для подготовки к отламыванию" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Температура подготовки к отламыванию" + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Положение отката для отламывания" + +#: fdmprinter.def.json +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Скорость отката для отламывания" + +#: fdmprinter.def.json +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Температура отламывания" + +#: fdmprinter.def.json +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Разбить поддержки на части" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Скорость вентилятора для мостика" + +#: fdmprinter.def.json +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "В мостике несколько слоев" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Плотность второй оболочки мостика" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Скорость вентилятора для второй оболочки мостика" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Поток для второй оболочки мостика" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Скорость печати второй оболочки мостика" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Плотность оболочки мостика" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Поток для оболочки мостика" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Скорость печати оболочки мостика" + +#: fdmprinter.def.json +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Пороговое значение поддержки для оболочки мостика" + +#: fdmprinter.def.json +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Максимальная плотность разреженного заполнения мостика" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Плотность третьей оболочки мостика" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Скорость вентилятора для третьей оболочки мостика" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Поток для третьей оболочки мостика" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Скорость печати третьей оболочки мостика" + +#: fdmprinter.def.json +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Накат стенки мостика" + +#: fdmprinter.def.json +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Поток для стенки мостика" + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Скорость печати стенки мостика" + +#: fdmprinter.def.json +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Кайма" + +#: fdmprinter.def.json +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Расстояние до каймы" + +#: fdmprinter.def.json +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "Кайма внутри зоны избегания" + +#: fdmprinter.def.json +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Количество линий каймы" + +#: fdmprinter.def.json +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Кайма только снаружи" + +#: fdmprinter.def.json +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Кайма заменяет поддержку" + +#: fdmprinter.def.json +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Ширина каймы" + +#: fdmprinter.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Тип прилипания к столу" + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Экструдер первого слоя" + +#: fdmprinter.def.json +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Тип прилипания к столу" + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Материал рабочего стола" + +#: fdmprinter.def.json +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Форма стола" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Температура стола" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Температура стола для первого слоя" + +#: fdmprinter.def.json +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Температура для объема печати" #: fdmprinter.def.json msgctxt "center_object label" @@ -6616,1226 +547,6211 @@ msgid "Center Object" msgstr "Центрирование объекта" #: fdmprinter.def.json -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 "Изменяет геометрию печатаемой модели так, чтобы снизить требования к объёму поддержек. Крутые навесы станут поменьше. Нависающие области опустятся и станут более вертикальными." + +#: fdmprinter.def.json +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 "Выберите одну из доступных техник создания поддержки. Поддержка со стандартной структурой создается непосредственно под выступающими деталями, и затем опускает эти области вниз линейно. У поддержки с древовидной структурой ветви тянутся к выступающим областям и модель опирается на концы этих ветвей, которые охватывают модель с разных сторон, чтобы таким образом максимально поддерживать ее по всей площади печатной пластины." + +#: fdmprinter.def.json +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Скорость наката" + +#: fdmprinter.def.json +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Объём наката" + +#: fdmprinter.def.json +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 "Накат отключает экструзию материала на завершающей части пути. Вытекающий материал используется для печати на завершающей части пути, уменьшая строчность." + +#: fdmprinter.def.json +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Режим комбинга" + +#: fdmprinter.def.json +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 "Комбинг удерживает сопло внутри напечатанных зон при перемещении. Это выражается в небольшом увеличении пути, но уменьшает необходимость в откатах. При отключенном комбинге выполняется откат материала, а сопло передвигается в следующую точку по прямой. Также можно не применять комбинг над верхними/нижними областями оболочки либо разрешить комбинг только в области заполнения." + +#: fdmprinter.def.json +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Параметры командной строки" + +#: fdmprinter.def.json +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Концентрическое" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Концентрический" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Концентрические" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Концентрический" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Концентрический" + +#: fdmprinter.def.json +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Концентрические" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Концентрический" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Концентрический" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Концентрический" + +#: fdmprinter.def.json +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Угол конических поддержек" + +#: fdmprinter.def.json +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Минимальная ширина конических поддержек" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Соединять линии заполнения" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Соединение полигонов заполнения" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Соединение линий поддержки" + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Соединённый зигзаг" + +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Соединение верхних/нижних полигонов" + +#: fdmprinter.def.json +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 "Соединение путей заполнения на участках, где они проходят рядом. Для шаблонов заполнения, состоящих из нескольких замкнутых полигонов, активация данной настройки значительно сокращает время перемещения." + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Соединяет зигзаги. Это увеличивает прочность такой поддержки." + +#: fdmprinter.def.json +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 "Соединяет концы линий поддержки. Активация этой настройки может сделать поддержку более крепкой и компенсировать недостаточную экструзию, но для этого потребуется больше материала." + +#: fdmprinter.def.json +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 "Соединение мест пересечения шаблона заполнения и внутренних стенок с использованием линии, повторяющей контур внутренней стенки. Использование этой функции улучшает сцепление заполнения со стенками и снижает влияние заполнения на качество вертикальных поверхностей. Отключение этой функции снижает расход материала." + +#: fdmprinter.def.json +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 "Соединение верхних/нижних путей оболочки на участках, где они проходят рядом. При использовании концентрического шаблона активация данной настройки значительно сокращает время перемещения, но, учитывая возможность наличия соединений на полпути над заполнением, эта функция может ухудшить качество верхней поверхности." + +#: fdmprinter.def.json +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 "Управляет влиянием углов на контуре модели на позицию шва. «Нет» означает отсутствие влияния. «Спрятать шов» означает размещение шва с наибольшей вероятностью внутри угла. «Показать шов» означает размещение шва с наибольшей вероятностью снаружи угла. «Спрятать или показать» означает выбор варианта в зависимости от ситуации. Функция «Интеллектуальное скрытие» допускает размещение швов как внутри, так и снаружи углов, но чаще размещает их внутри." + +#: fdmprinter.def.json +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 "Преобразовывать каждую линию заполнения во множество линий. Дополнительные линии не пересекаются, а уклоняются от столкновения друг с другом. Благодаря этому заполнение становится более плотным, но время печати и расход материалов увеличиваются." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Скорость охлаждения" + +#: fdmprinter.def.json +msgctxt "cooling description" +msgid "Cooling" +msgstr "Охлаждение" + +#: fdmprinter.def.json +msgctxt "cooling label" +msgid "Cooling" +msgstr "Охлаждение" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Крестовое" + +#: fdmprinter.def.json +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Крест" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Крестовое 3D" + +#: fdmprinter.def.json +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Размер карманов креста 3D" + +#: fdmprinter.def.json +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Изображение плотности перекрестного заполнения для поддержки" + +#: fdmprinter.def.json +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Изображение плотности перекрестного заполнения" + +#: fdmprinter.def.json +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Кристаллический материал" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Куб" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Динамический куб" + +#: fdmprinter.def.json +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Стенка динамического куба" + +#: fdmprinter.def.json +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Ограничивающий объект" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "График, объединяющий поток (в мм3 в секунду) с температурой (в градусах Цельсия)." + +#: fdmprinter.def.json +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Стандартное ускорение" + +#: fdmprinter.def.json +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Температура рабочего стола по умолчанию" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Обычный рывок материала" + +#: fdmprinter.def.json +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Температура сопла" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Обычный X-Y рывок" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Обычный Z рывок" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "Стандартное изменение ускорения для движения в горизонтальной плоскости." + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Стандартное изменение ускорения для мотора по оси Z." + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Стандартное изменение ускорения для мотора, подающего материал." + +#: fdmprinter.def.json +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Обнаружение мостиков и изменение скорости печати, настроек потока и вентилятора во время печати мостиков." + +#: fdmprinter.def.json +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 "Определяет порядок печати стенок. Если сначала печатать наружные стенки, это поможет более точно определять размеры стенок, поскольку дефекты внутренних стенок не смогут распространяться наружу. Если печатать внешние стенки позже, это позволит лучше укладывать их друг на друга при печати выступов. При неравномерном количестве общих внутренних стен «центральная последняя линия» всегда печатается последней." + +#: fdmprinter.def.json +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 "Определяет приоритет данного объекта при вычислении нескольких перекрывающихся заполняющих объектов. К областям с несколькими перекрывающимися заполняющими объектами будут применяться настройки объекта более высокого порядка. Заполняющий объект более высокого порядка будет модифицировать заполнение объектов более низких порядков и обычных объектов." + +#: fdmprinter.def.json +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 "Определяет, когда слой шаблона заполнения «молния» должен поддерживать что-либо над ним. Измеряется под углом с учетом толщины слоя." + +#: fdmprinter.def.json +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 "Определяет, когда слой шаблона заполнения «молния» должен поддерживать модель над ним. Измеряется под углом с учетом толщины." + +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Диаметр" + +#: fdmprinter.def.json +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 "Различные варианты, которые помогают улучшить прилипание пластика к столу. Кайма добавляет однослойную плоскую область вокруг основания печатаемой модели, предотвращая её деформацию. Подложка добавляет толстую сетку с крышей под модель. Юбка - это линия, печатаемая вокруг модели, но не соединённая с ней." + +#: fdmprinter.def.json +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Запрещенные области" + +#: fdmprinter.def.json +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 "Дистанция между линиями заполнения. Этот параметр вычисляется из плотности заполнения и ширины линии заполнения." + +#: fdmprinter.def.json +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 "Дистанция между напечатанными линиями структуры поддержек первого слоя. Этот параметр вычисляется по плотности поддержек." + +#: fdmprinter.def.json +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 "Дистанция между линиями низа поддержек. Этот параметр вычисляется из Плотности низа поддержек, но может быть указан отдельно." + +#: fdmprinter.def.json +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 "Дистанция между линиями крыши поддержек. Этот параметр вычисляется из Плотности крыши поддержек, но может быть указан отдельно." + +#: fdmprinter.def.json +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Дистанция между напечатанными линями структуры поддержек. Этот параметр вычисляется по плотности поддержек." + +#: fdmprinter.def.json +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support." +msgstr "Расстояние между печатаемой моделью и низом поддержки." + +#: fdmprinter.def.json +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Расстояние между верхом поддержек и печатаемой моделью." + +#: fdmprinter.def.json +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. This value is rounded up to a multiple of the layer height." +msgstr "Дистанция от дна/крышки структуры поддержек до печати. Этот зазор упрощает извлечение поддержек после окончания печати модели. Это значение округляется до числа, кратного высоте слоя." + +#: fdmprinter.def.json +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 "Расстояние, на которое продолжается движение сопла после печати каждой линии заполнения, для обеспечения лучшего связывания заполнения со стенками. Этот параметр похож на перекрытие заполнения, но без экструзии и только с одной стороны линии заполнения." + +#: fdmprinter.def.json +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 шов." + +#: fdmprinter.def.json +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Дистанция до стенки кожуха от модели, по осям X/Y." + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "Дистанция до стенки защиты от модели, по осям X/Y." + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Зазор между структурами поддержек и нависанием по осям X/Y." + +#: fdmprinter.def.json +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Расстояние между структурами поддержек и печатаемой модели по осям X/Y." + +#: fdmprinter.def.json +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Не генерировать области заполнения меньше чем указано здесь (вместо этого использовать оболочку)." + +#: fdmprinter.def.json +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Высота кожуха" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Ограничение кожуха" + +#: fdmprinter.def.json +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Дистанция X/Y до кожуха" + +#: fdmprinter.def.json +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Объект поддержки нависаний" + +#: fdmprinter.def.json +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Два экструдера" + +#: fdmprinter.def.json +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Эллиптическая" + +#: fdmprinter.def.json +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Разрешить управление ускорением" + +#: fdmprinter.def.json +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Активация настроек мостиков" + +#: fdmprinter.def.json +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Разрешить накат" + +#: fdmprinter.def.json +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Конические поддержки" + +#: fdmprinter.def.json +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Разрешить печать кожуха" + +#: fdmprinter.def.json +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Разрешить разглаживание" + +#: fdmprinter.def.json +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Включить управление рывком" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Разрешить управление температурой сопла" + +#: fdmprinter.def.json +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Печатать защиту от капель" + +#: fdmprinter.def.json +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Разрешить наполнение материалом" + +#: fdmprinter.def.json +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Разрешить черновую башню" + +#: fdmprinter.def.json +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Включить вентиляторы" + +#: fdmprinter.def.json +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Разрешить откат" + +#: fdmprinter.def.json +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Разрешить кайму поддержек" + +#: fdmprinter.def.json +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Разрешить дно поддержек" + +#: fdmprinter.def.json +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Разрешить связующий слой поддержки" + +#: fdmprinter.def.json +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Разрешить крышу поддержек" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Включить ускорение перемещения" + +#: fdmprinter.def.json +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Включить рывок перемещения" + +#: fdmprinter.def.json +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 "Разрешает печать внешней защиты от вытекших капель. Создаёт ограду вокруг модели, о которую вытирается материал, вытекший из второго сопла, если оно находится на той же высоте, что и первое сопло." + +#: fdmprinter.def.json +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. Увеличение данного значения может сократить время печати за счёт его качества." + +#: fdmprinter.def.json +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 "Разрешает регулирование ускорения головы. Увеличение ускорений может сократить время печати за счёт качества печати." + +#: fdmprinter.def.json +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 "Разрешает использование вентиляторов во время печати. Применение вентиляторов улучшает качество печати слоёв с малой площадью, а также мостов и нависаний." + +#: fdmprinter.def.json +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "Завершающий G-код" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Длина выдавливания заканчивающегося материала" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Скорость выдавливания заканчивающегося материала" + +#: fdmprinter.def.json +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 "Принудительная печать каймы вокруг модели, даже если пространство в ином случае было бы занято поддержкой. При этом некоторые участки первого слоя поддержки заменяются участками каймы." + +#: fdmprinter.def.json +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Везде" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Исключение" + +#: fdmprinter.def.json +msgctxt "experimental label" +msgid "Experimental" +msgstr "Экспериментальное" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Показать шов" + +#: fdmprinter.def.json +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Обширное сшивание" + +#: fdmprinter.def.json +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 "Обширное сшивание пытается сшить открытые отверстия в объекте, закрывая их полигонами. Эта опция может добавить дополнительное время во время обработки." + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Количество дополнительных стенок заполнения" + +#: fdmprinter.def.json +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Количество внешних дополнительных оболочек" + +#: fdmprinter.def.json +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Дополнительный объем материала для заполнения после смены экструдера." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Начальная X позиция экструдера" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Начальная Y позиция экструдера" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z координата начала печати" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Общий нагреватель экструдеров" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Общее сопло экструдеров" + +#: fdmprinter.def.json +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Модификатор скорости охлаждения экструзии" + +#: fdmprinter.def.json +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 % может помочь компенсировать более высокое давление, необходимое для экструдирования широких линий." + +#: fdmprinter.def.json +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Скорость вентилятора" + +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Переопределение скорости вентилятора" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Контуры элементов с длиной меньше этого значения будут напечатаны с использованием функции «Скорость для малых элементов»." + +#: fdmprinter.def.json +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Функции, еще не раскрытые до конца." + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Диаметр колесика питателя" + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Конечная температура печати" + +#: fdmprinter.def.json +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Откат встроенного программного обеспечения" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Экструдер первого слоя поддержек" + +#: fdmprinter.def.json +msgctxt "material_flow label" +msgid "Flow" +msgstr "Поток" + +#: fdmprinter.def.json +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Коэффициент выравнивания потока" + +#: fdmprinter.def.json +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Коэффициент компенсации расхода" + +#: fdmprinter.def.json +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Макс. смещение экструзии для компенсации расхода" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "График температуры потока" + +#: fdmprinter.def.json +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 "Компенсация потока для первого слоя: объем выдавленного материала на первом слое умножается на этот коэффициент." + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Компенсация потока на нижних линиях первого слоя." + +#: fdmprinter.def.json +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Компенсация потока на линиях заполнения." + +#: fdmprinter.def.json +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Компенсация потока на линиях крыши или низа поддержек." + +#: fdmprinter.def.json +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Компенсация потока на линиях наверху печатаемой детали." + +#: fdmprinter.def.json +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Компенсация потока на линиях черновой башни." + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Компенсация потока на линиях юбки или каймы." + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Компенсация потока на линиях низа поддержек." + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Компенсация потока на линиях крыши поддержек." + +#: fdmprinter.def.json +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Компенсация потока на линиях структуры поддержек." + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Компенсация потока на внешней линии стенки первого слоя." + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Компенсация потока на внешней линии стенки." + +#: fdmprinter.def.json +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Компенсация потока на верхних/нижних линиях." + +#: fdmprinter.def.json +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 "Компенсация потока на линиях стенки для всех линий, за исключением внешней, но только для первого слоя." + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Компенсация потока на линиях стенки для всех линий, за исключением внешней." + +#: fdmprinter.def.json +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Компенсация потока на линиях стенки." + +#: fdmprinter.def.json +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Компенсация потока: объём выдавленного материала умножается на этот коэффициент." + +#: fdmprinter.def.json +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Длина выдавливания заподлицо" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Скорость выдавливания заподлицо" + +#: fdmprinter.def.json +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 стенок — узкие. Самая широкая возможная линия стенки в два раза превышает минимальную ширину линии стенки." + +#: fdmprinter.def.json +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Спереди" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Спереди слева" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Спереди справа" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Полная" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Нечёткая оболочка" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Плотность шершавой оболочки" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Только шершавая оболочка снаружи" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Дистанция между точками шершавой оболочки" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Толщина шершавости оболочки" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Вариант G-кода" + +#: fdmprinter.def.json +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "" +"Команды в G-коде, которые будут выполнены в самом конце, разделенные с помощью \n" +"." + +#: fdmprinter.def.json +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" +"Команды в G-коде, которые будут выполнены в самом начале, разделенные с помощью \n" +"." + +#: fdmprinter.def.json +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "Идентификатор материала, устанавливается автоматически." + +#: fdmprinter.def.json +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Высота портала" + +#: fdmprinter.def.json +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Создать взаимосвязанную структуру" + +#: fdmprinter.def.json +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Генерация поддержек" + +#: fdmprinter.def.json +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 "Создайте кайму внутри участков заполнения поддержек первого слоя. Эта кайма печатается под поддержкой, а не вокруг нее. Включение этого параметра увеличивает адгезию поддержки к рабочему столу." + +#: fdmprinter.def.json +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 "Генерирует плотный слой между моделью и поддержкой. Создаёт поверхность сверху поддержек, на которой печатается модель, и снизу, при печати поддержек на модели." + +#: fdmprinter.def.json +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 "Генерирует плотный слой материала между низом поддержки и моделью. Создаёт поверхность между моделью и поддержкой." + +#: fdmprinter.def.json +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 "Генерирует плотный слой материала между крышей поддержки и моделью. Создаёт поверхность между моделью и поддержкой." + +#: fdmprinter.def.json +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 "Генерация структур для поддержки нависающих частей модели. Без этих структур такие части будут складываться во время печати." + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Стекло" + +#: fdmprinter.def.json +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 "Проходить по верхней оболочке еще раз, но на этот раз выдавливая очень мало материала. Это приводит к плавлению пластика, что создает более гладкую поверхность. Давление в камере сопла поддерживается на высоком уровне, благодаря чему складки на поверхности заполняются материалом." + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Высота изменения шага заполнения" + +#: fdmprinter.def.json +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Изменение шага заполнения" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Высота шага изменения заполнения поддержек" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Степень заполнения поддержек" + +#: fdmprinter.def.json +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Постепенно снижать температуру до этой температуры при печати на пониженных скоростях из-за минимального времени нанесения слоя." + +#: fdmprinter.def.json +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Сетка" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Сетка" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Сетка" + +#: fdmprinter.def.json +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Сетка" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Сетка" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +#: fdmprinter.def.json +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Гироид" + +#: fdmprinter.def.json +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Гироид" + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Есть стабилизация температуры для объема печати" + +#: fdmprinter.def.json +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Имеет подогреваемый стол" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Скорость нагрева" + +#: fdmprinter.def.json +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Длина зоны нагрева" + +#: fdmprinter.def.json +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Ограничение по высоте для кожуха. Выше указанного значение кожух печататься не будет." + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Спрятать шов" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Спрятать или показать" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Горизонтальное расширение отверстия" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "" + +#: fdmprinter.def.json +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 "Отверстия и контуры деталей с диаметром меньше этого значения будут напечатаны с использованием функции «Скорость для малых элементов»." + +#: fdmprinter.def.json +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Горизонтальное расширение" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Горизонтальный коэффициент масштабирования для компенсации усадки" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance description" +msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." +msgstr "Указывает, насколько далеко должны друг от друга располагаться ответвления при касании модели. Если задать небольшое расстояние, увеличится количество точек, в которых древовидная поддержка касается модели; это улучшает нависание, но при этом усложняет удаление поддержки." + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Насколько сильно можно растянуть материал при нагревании, до тех пор пока он не отломится." + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "Насколько далеко необходимо убрать материал, чтобы он перестал капать." + +#: fdmprinter.def.json +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 "Означает, насколько далеко следует переместить материал, чтобы компенсировать изменение расхода, в процентах от расстояния, на которое перемещается материал за одну секунду экструзии." + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "Насколько далеко следует убрать материал, чтобы он отломился чисто." + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "Насколько быстро следует убирать материал, чтобы он отломился." + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Насколько быстро необходимо убрать материал во время его замены, чтобы не допустить появления капель." + +#: fdmprinter.def.json +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 "Скорость подачи материала после замены пустой катушки на новую катушку с тем же материалом." + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "Скорость подачи материала после переключения на другой материал." + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "Срок хранения материала вне сухого хранилища." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Количество шагов шаговых двигателей, приводящее к перемещению колесика питателя на один миллиметр по его окружности." + +#: fdmprinter.def.json +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 "Объем материала, используемый для выдавливания предыдущего материала из сопла (измеряется длиной нити) при замене пустой катушки на новую катушку с тем же материалом." + +#: fdmprinter.def.json +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 "Объем материала, используемый для выдавливания предыдущего материала из сопла (измеряется длиной нити) при переключении на другой материал." + +#: fdmprinter.def.json +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 принтера; значение должно быть равно длине общей части каналов сопла или превышать ее." + +#: fdmprinter.def.json +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 "Если поддержка области оболочки составляет меньше указанного процентного значения от ее площади, печать должна быть выполнена с использованием настроек мостика. В противном случае печать осуществляется с использованием стандартных настроек оболочки." + +#: fdmprinter.def.json +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 "Если настройка активна, второй и третий слои над воздушным зазором печатаются с использованием указанных далее настроек. В противном случае эти слои печатаются с использованием стандартных настроек." + +#: fdmprinter.def.json +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 "Если ожидаются переходы туда и обратно между разным количеством стенок в быстрой последовательности, не выполняйте переходы совсем. Удалите переходы, если расстояние между ними меньше значения этого параметра." + +#: fdmprinter.def.json +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 "Если подложка включена, это дополнительное поле вокруг модели, которая также имеет подложку. Увеличение этого значения создаст более крепкую поддержку, используя больше материала и оставляя меньше свободной области для печати." + +#: fdmprinter.def.json +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 "Игнорирует внутреннюю геометрию, являющуюся результатом перекрытия объёмов в модели, и печатает эти объёмы как один. Это может приводить к непреднамеренному исчезновению внутренних полостей." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Добавлять температуру стола" + +#: fdmprinter.def.json +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Использовать температуру из материала" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Включение" + +#: fdmprinter.def.json +msgctxt "infill description" +msgid "Infill" +msgstr "Заполнение" + +#: fdmprinter.def.json +msgctxt "infill label" +msgid "Infill" +msgstr "Заполнение" + +#: fdmprinter.def.json +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Ускорение заполнения" + +#: fdmprinter.def.json +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Заполнение перед печатью стенок" + +#: fdmprinter.def.json +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Плотность заполнения" + +#: fdmprinter.def.json +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Экструдер для заполнения" + +#: fdmprinter.def.json +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Поток для заполнения" + +#: fdmprinter.def.json +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Рывок заполнения" + +#: fdmprinter.def.json +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Толщина слоя заполнения" + +#: fdmprinter.def.json +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Направления линии заполнения" + +#: fdmprinter.def.json +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Дистанция линий заполнения" + +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Множитель для линии заполнения" + +#: fdmprinter.def.json +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Ширина линии заполнения" + +#: fdmprinter.def.json +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Заполнение объекта" + +#: fdmprinter.def.json +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Угол нависания при заполнении" + +#: fdmprinter.def.json +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Перекрытие заполнения" + +#: fdmprinter.def.json +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Процент перекрытие заполнения" + +#: fdmprinter.def.json +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Шаблон заполнения" + +#: fdmprinter.def.json +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Скорость заполнения" + +#: fdmprinter.def.json +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Поддержка заполнения" + +#: fdmprinter.def.json +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Оптимизация перемещения заполнения" + +#: fdmprinter.def.json +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Дистанция окончания заполнения" + +#: fdmprinter.def.json +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Смещение заполнения по X" + +#: fdmprinter.def.json +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Смещение заполнения по Y" + +#: fdmprinter.def.json +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Начальные слои дна" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Начальная скорость вентилятора" + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Ускорение первого слоя" + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Поток низа первого слоя" + +#: fdmprinter.def.json +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Поток для первого слоя" + +#: fdmprinter.def.json +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Высота первого слоя" + +#: fdmprinter.def.json +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Горизонтальное расширение первого слоя" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Поток внутренней стенки первого слоя" + +#: fdmprinter.def.json +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Рывок первого слоя" + +#: fdmprinter.def.json +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Ширина линии первого слоя" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Поток внешней стенки первого слоя" + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Ускорение печати первого слоя" + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Рывок печати первого слоя" + +#: fdmprinter.def.json +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Скорость первого слоя" + +#: fdmprinter.def.json +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Скорость первого слоя" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Дистанция между линиями поддержки первого слоя" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Ускорение перемещений первого слоя" + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Рывок перемещения первого слоя" + +#: fdmprinter.def.json +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Скорость перемещений на первом слое" + +#: fdmprinter.def.json +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Z наложение первого слоя" + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Начальная температура печати" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Ускорение внутренней стенки" + +#: fdmprinter.def.json +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Экструдер внутренней стенки" + +#: fdmprinter.def.json +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Рывок внутренних стен" + +#: fdmprinter.def.json +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Скорость печати внутренних стенок" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Поток для внутренних стенок" + +#: fdmprinter.def.json +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Ширина линии внутренней стенки" + +#: fdmprinter.def.json +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 "Вставка применяется для внешних стенок. Если внешняя стенка меньше диаметра сопла и печатается после внутренних стенок, то используйте это смещение для захода соплом на внутренние стенки, вместо выхода за модель." + +#: fdmprinter.def.json +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "От внутренних к внешним" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Количество слоев взаимосвязанных балок" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Ширина взаимосвязанных балок" + +#: fdmprinter.def.json +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Избегание границ взаимосвязанной структуры" + +#: fdmprinter.def.json +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Глубина взаимосвязанной структуры" + +#: fdmprinter.def.json +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Ориентация взаимосвязанной структуры" + +#: fdmprinter.def.json +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Самый высокий слой разглаживания" + +#: fdmprinter.def.json +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Ускорение разглаживания" + +#: fdmprinter.def.json +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Поток разглаживания" + +#: fdmprinter.def.json +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Границы разглаживания" + +#: fdmprinter.def.json +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Рывок разглаживания" + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Расстояние между линиями разглаживания" + +#: fdmprinter.def.json +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Шаблон разглаживания" + +#: fdmprinter.def.json +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Скорость разглаживания" + +#: fdmprinter.def.json +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Начало координат в центре" + +#: fdmprinter.def.json +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 "Это материал, который при нагревании легко ломается по четким линиям (кристаллический) или образует длинные сплетающиеся полимерные цепочки (некристаллический)?" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Дрожание только контуров деталей, но не отверстий." + +#: fdmprinter.def.json +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Сохранить отсоединённые поверхности" + +#: fdmprinter.def.json +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Высота слоя" + +#: fdmprinter.def.json +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "X координата начала" + +#: fdmprinter.def.json +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Y координата начала" + +#: fdmprinter.def.json +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 "Толщина нижнего слоя подложки. Она должна быть достаточной для хорошего прилипания подложки к столу." + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Толщина слоёв середины подложки." + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Толщина верхних слоёв поддержки." + +#: fdmprinter.def.json +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 миллиметров для облегчения последующего удаления поддержек." + +#: fdmprinter.def.json +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Слева" + +#: fdmprinter.def.json +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Подъём головы" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Молния" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Угол выступа шаблона заполнения «молния»" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Угол обрезки шаблона заполнения «молния»" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Угол выпрямления шаблона заполнения «молния»" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Угол поддержки шаблона заполнения «молния»" + +#: fdmprinter.def.json +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 "Ограничивает объём объекта внутри других объектов. Вы можете использовать это для печати определённых областей одного объекта, применяя различные параметры печати и даже другой экструдер." + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Ограниченная" + +#: fdmprinter.def.json +msgctxt "line_width label" +msgid "Line Width" +msgstr "Ширина линии" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Линии" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Линии" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Линии" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Линии" + +#: fdmprinter.def.json +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Линии" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Линии" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Линии" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Линии" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +#: fdmprinter.def.json +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Принтер" + +#: fdmprinter.def.json +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Глубина принтера" + +#: fdmprinter.def.json +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Полигон головки принтера и вентилятора" + +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Высота принтера" + +#: fdmprinter.def.json +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Тип принтера" + +#: fdmprinter.def.json +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Ширина принтера" + +#: fdmprinter.def.json +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Параметры, относящиеся к принтеру" + +#: fdmprinter.def.json +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Сделать нависания печатаемыми" + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Если объекты немного касаются друг друга, то сделаем их перекрывающимися. Это позволит им соединиться крепче." + +#: fdmprinter.def.json +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Нижняя часть поддержек становится меньше, чем верхняя." + +#: fdmprinter.def.json +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 "Будет поддерживать всё ниже объекта, никаких нависаний не будет." + +#: fdmprinter.def.json +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 "Сделать стартовую позицию экструдера абсолютной, а не относительной от последней известной позиции головы." + +#: fdmprinter.def.json +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 "Приводит к наложению первого и второго слоёв модели по оси Z для компенсации потерь материала в воздушном зазоре. Все слои модели выше первого будут смещены чуть ниже на указанное значение." + +#: fdmprinter.def.json +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Сделайте объекты более подходящими для 3D-печати." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumetric)" + +#: fdmprinter.def.json +msgctxt "material description" +msgid "Material" +msgstr "Материал" + +#: fdmprinter.def.json +msgctxt "material label" +msgid "Material" +msgstr "Материал" + +#: fdmprinter.def.json +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID материала" + +#: fdmprinter.def.json +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Объем материала между очистками" + +#: fdmprinter.def.json +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Макс. расстояние комб. без отката" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Максимальное ускорение по оси X" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Максимальное ускорение по оси Y" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Максимальное ускорение по оси Z" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Максимальное отклонение" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Максимальное отклонение площади экструзии" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Максимальная скорость вентилятора" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Максимальное ускорение материала" + +#: fdmprinter.def.json +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Максимальный угол модели" + +#: fdmprinter.def.json +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Максимальная площадь отверстия выступа" + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Максимальная продолжительность парковки" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Максимальное разрешение" + +#: fdmprinter.def.json +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Максимальное количество откатов" + +#: fdmprinter.def.json +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Максимальный угол оболочки при расширении" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Максимальная скорость по оси E" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Максимальная скорость по оси X" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Максимальная скорость по оси Y" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Максимальная скорость по оси Z" + +#: fdmprinter.def.json +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Максимальный диаметр, поддерживаемый башней" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Максимальное разрешение перемещения" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "Максимальное ускорение для мотора оси X" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Максимальное ускорение для мотора оси Y." + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Максимальное ускорение для мотора оси Z." + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Максимальное ускорение мотора подачи материала." + +#: fdmprinter.def.json +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 "Максимальная плотность заполнения, считающегося разреженным. Оболочка поверх разреженного заполнения считается неподдерживаемой и, соответственно, может обрабатываться как оболочка мостика." + +#: fdmprinter.def.json +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 небольшой области, который должен поддерживаться определенной башней." + +#: fdmprinter.def.json +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 "Максимальный объем материала, который можно выдавить перед очередной очисткой сопла. Если это значение меньше объема материала, требуемого для слоя, данная настройка в этом слое не действует (т. е. максимум одна очистка на слой)." + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Перекрытие касающихся объектов" + +#: fdmprinter.def.json +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Ремонт объектов" #: fdmprinter.def.json msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "X позиция объекта" -#: fdmprinter.def.json -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Смещение, применяемое к объекту по оси X." - #: fdmprinter.def.json msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "Y позиция объекта" -#: fdmprinter.def.json -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Смещение, применяемое к объекту по оси Y." - #: fdmprinter.def.json msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "Z позиция объекта" #: fdmprinter.def.json -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 "Порядок обработки объекта" #: fdmprinter.def.json msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "Матрица вращения объекта" +#: fdmprinter.def.json +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Середина" + +#: fdmprinter.def.json +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Минимальная ширина формы" + +#: fdmprinter.def.json +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Время перехода в ожидание" + +#: fdmprinter.def.json +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Минимальная длина стенки мостика" + +#: fdmprinter.def.json +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Минимальная ширина линии четных стенок" + +#: fdmprinter.def.json +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Окно минимальной расстояния экструзии" + +#: fdmprinter.def.json +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Минимальный размер элемента" + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Минимальная подача" + +#: fdmprinter.def.json +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Минимальная область заполнения" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Минимальное время слоя" + +#: fdmprinter.def.json +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Минимальная ширина линии нечетных стенок" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Минимальная длина окружности полигона" + +#: fdmprinter.def.json +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Минимальная ширина оболочки при расширении" + +#: fdmprinter.def.json +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Минимальная скорость" + +#: fdmprinter.def.json +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Минимальная зона поддержек" + +#: fdmprinter.def.json +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Минимальная зона нижней части поддержек" + +#: fdmprinter.def.json +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Минимальная зона связующего слоя" + +#: fdmprinter.def.json +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Минимальная зона верхней части поддержек" + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Минимальный X/Y зазор поддержки" + +#: fdmprinter.def.json +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Минимальная ширина линии нечетных стенок" + +#: fdmprinter.def.json +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Минимальный объём перед накатом" + +#: fdmprinter.def.json +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Минимальная ширина линии стенки" + +#: fdmprinter.def.json +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 "Минимальная площадь зоны для полигонов связующего слоя. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." + +#: fdmprinter.def.json +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 "Минимальная площадь зоны для полигонов поддержек. Полигоны с площадью меньше данного значения не будут генерироваться." + +#: fdmprinter.def.json +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 "Минимальная площадь зоны для нижних частей поддержек. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." + +#: fdmprinter.def.json +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 "Минимальная площадь зоны для верхних частей поддержек. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." + +#: fdmprinter.def.json +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 "Минимальная толщина тонких элементов. Элементы модели, которые тоньше этого значения, не будут напечатаны, в то время как элементы с толщиной, превышающей минимальный размер элемента, будут расширены до минимальной ширины линии стенки." + +#: fdmprinter.def.json +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 "Минимальная ширина, до которой может быть уменьшен низ конуса. Малая ширина может сделать такую структуру поддержек нестабильной." + +#: fdmprinter.def.json +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Форма" + +#: fdmprinter.def.json +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Угол формы" + +#: fdmprinter.def.json +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Высота крыши формы" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Монотонный порядок разглаживания" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Монотонный порядок верхней оболочки" + +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Монотонный порядок дна/крышки" + +#: fdmprinter.def.json +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 отключает печать юбки." + +#: fdmprinter.def.json +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Множитель для ширины линии первого слоя. Увеличение значения улучшает прилипание к столу." + +#: fdmprinter.def.json +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Коэффициент движения без нагрузки" + +#: fdmprinter.def.json +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Нет оболочки в Z-зазорах" + +#: fdmprinter.def.json +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Нетрадиционные способы печати моделей." + +#: fdmprinter.def.json +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Нет" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Нет" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Нормаль" + +#: fdmprinter.def.json +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Нормаль" + +#: fdmprinter.def.json +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-код." + +#: fdmprinter.def.json +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Не в оболочке" + +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Не на внешней поверхности" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Угол сопла" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Диаметр сопла" + +#: fdmprinter.def.json +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Запрещённые зоны для сопла" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Идентификатор сопла" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Длина сопла" + +#: fdmprinter.def.json +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Дополнительно заполняемый объем при смене экструдера" + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Скорость наполнения при смене экструдера" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Скорость отката при смене экструдера" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Величина отката при смене экструдера" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Скорость отката при смене экструдера" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Количество экструдеров" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Количество включенных экструдеров" + +#: fdmprinter.def.json +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Количество медленных слоёв" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Количество включенных экструдеров; это значение автоматически устанавливается программным обеспечением" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Количество экструдеров. Экструдер - это комбинация механизма подачи, трубы и сопла." + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Количество перемещений сопла поперек щетки." + +#: fdmprinter.def.json +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 "Количество шагов уменьшения наполовину плотности заполнения вглубь модели. Области, располагающиеся ближе к краю модели, получают большую плотность, до указанной в \"Плотность заполнения." + +#: fdmprinter.def.json +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 "Количество раз, на которое на половину можно уменьшать плотность заполнения поддержек при проходе вглубь структуры от поверхности. Области ближе к оболочке имеют большую плотность, вплоть до значения \"Плотность заполнения поддержек\"." + +#: fdmprinter.def.json +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Восьмигранник" + +#: fdmprinter.def.json +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Выключен" + +#: fdmprinter.def.json +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Смещение, применяемое к объекту по оси X." + +#: fdmprinter.def.json +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Смещение, применяемое к объекту по оси Y." + +#: fdmprinter.def.json +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. Это позволяет выполнять операцию, ранее известную как проваливание объекта под поверхность стола." + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Смещение с экструдером" + +#: fdmprinter.def.json +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "По отдельности" + +#: fdmprinter.def.json +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 только в случае движения над напечатанными частями, которые нельзя обогнуть горизонтальным движением, используя «Обход напечатанных деталей» при перемещении." + +#: fdmprinter.def.json +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 "Выполняет разглаживание только на самом последнем слое модели. Экономит время, когда нижние слои не требуют сглаживания поверхности." + +#: fdmprinter.def.json +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 "Печатать кайму только на внешней стороне модели. Это сокращает объём каймы, которую вам потребуется удалить в дальнейшем, и не снижает качество прилипания к столу." + +#: fdmprinter.def.json +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Угол защиты от капель" + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Дистанция до защиты от капель" + +#: fdmprinter.def.json +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Оптимизация порядка печати стенок" + +#: fdmprinter.def.json +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 "Оптимизирует порядок, в котором печатаются стенки, для уменьшения количества откатов и перемещений. Большинство моделей будут распечатываться быстрее, но не все. Сравнивайте оценочное время печати с оптимизацией и без нее. При выборе каймы в качестве типа приклеивания к рабочему столу первый слой не оптимизируется." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Внешний диаметр сопла" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Ускорение внешней стенки" + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Экструдер внешних стенок" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Поток для внешней стенки" + +#: fdmprinter.def.json +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Вставка внешней стенки" + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Рывок внешних стен" + +#: fdmprinter.def.json +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Ширина линии внешней стенки" + +#: fdmprinter.def.json +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Скорость печати внешней стенки" + +#: fdmprinter.def.json +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Расстояние очистки внешней стенки" + +#: fdmprinter.def.json +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "От внешних к внутренним" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Угол нависающей стенки" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Скорость печати нависающей стенки" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Нависающие стенки будут напечатаны с данным процентным значением нормальной скорости печати." + +#: fdmprinter.def.json +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Приостановка после отмены отката." + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Скорость вентилятора в процентах, которую необходимо использовать при печати стенок и оболочки мостика." + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Скорость вентилятора в процентах, с которой печатается слой второй оболочки мостика." + +#: fdmprinter.def.json +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 "Скорость вентилятора в процентах, с которой печатаются области оболочки непосредственно над поддержкой. Использование высоких значений скорости вентилятора может упростить снятие поддержки." + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Скорость вентилятора в процентах, с которой печатается слой третьей оболочки мостика." + +#: fdmprinter.def.json +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-моделей с множеством деталей." + +#: fdmprinter.def.json +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 * Минимальная ширина линии стенки + Поле]. Расширение этого поля позволяет сократить количество переходов, что в свою очередь позволяет сократить количество запусков/остановок экструдирования и время перемещения. Однако большой разброс значений ширины линии может привести к проблемам с недостаточным или чрезмерным экструдированием материала." + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Ускорение черновой башни" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Brim" +msgstr "Кайма черновой башни" + +#: fdmprinter.def.json +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Поток черновой башни" + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Рывок черновых башен" + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Ширина линии черновой башни" + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Минимальный объём черновой башни" + +#: fdmprinter.def.json +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Размер черновой башни" + +#: fdmprinter.def.json +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Скорость черновых башен" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "X позиция черновой башни" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Y позиция черновой башни" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +msgstr "Для черновых башен может потребоваться дополнительная адгезия с помощью каймы, даже если для модели это не требуется. В данный момент не может использоваться с типом адгезии с подложкой." + +#: fdmprinter.def.json +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Ускорение печати" + +#: fdmprinter.def.json +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Рывок печати" + +#: fdmprinter.def.json +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Последовательная печать" + +#: fdmprinter.def.json +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Скорость печати" + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Печать тонких стенок" + +#: fdmprinter.def.json +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Печатает башню перед печатью модели, чем помогает выдавить старый материал после смены экструдера." + +#: fdmprinter.def.json +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 "Печать заполненных структур только там, где должны поддерживаться верхние части моделей. Активация этой функции сокращает время печати и расход материалов, однако приводит к неравномерной прочности." + +#: fdmprinter.def.json +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 "Печатайте линии разглаживания в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." + +#: fdmprinter.def.json +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 "Печатать модель в виде формы, которая может использоваться для отливки оригинальной модели." + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Печать частей модели, которые по горизонтали тоньше диаметра сопла." + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Скорость, с которой печатается слой второй оболочки мостика." + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Скорость, с которой печатается слой третьей оболочки мостика." + +#: fdmprinter.def.json +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 "Печатать заполнение до печати стенок. Если печатать сначала стенки, то это может сделать их более точными, но нависающие стенки будут напечатаны хуже. Если печатать сначала заполнение, то это сделает стенки более крепкими, но шаблон заполнения может иногда прорываться сквозь поверхность стенки." + +#: fdmprinter.def.json +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 "Печатайте линии верхней оболочки в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." + +#: fdmprinter.def.json +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 "Печатайте линии дна/крышки в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." + +#: fdmprinter.def.json +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Температура сопла" + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Температура печати первого слоя" + +#: fdmprinter.def.json +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "" + +#: fdmprinter.def.json +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 "Печатает дополнительную стенку через слой. Таким образом, заполнение заключается между этими дополнительными стенками, что приводит к повышению прочности печати." + +#: fdmprinter.def.json +msgctxt "resolution label" +msgid "Quality" +msgstr "Качество" + +#: fdmprinter.def.json +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Четверть куба" + +#: fdmprinter.def.json +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Подложка" + +#: fdmprinter.def.json +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Воздушный зазор подложки" + +#: fdmprinter.def.json +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Экструдер нижних подложек" + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Скорость вентилятора для низа подложки" + +#: fdmprinter.def.json +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Дистанция между линиями нижнего слоя подложки" + +#: fdmprinter.def.json +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Ширина линии нижнего слоя подложки" + +#: fdmprinter.def.json +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Ускорение печати низа подложки" + +#: fdmprinter.def.json +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Рывок печати низа подложки" + +#: fdmprinter.def.json +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Скорость печати низа подложки" + +#: fdmprinter.def.json +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Толщина нижнего слоя подложки" + +#: fdmprinter.def.json +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Счетчик стен основания подложки" + +#: fdmprinter.def.json +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Дополнительное поле подложки" + +#: fdmprinter.def.json +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Скорость вентилятора для подложки" + +#: fdmprinter.def.json +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Экструдер серединных подложек" + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Скорость вентилятора для середины подложки" + +#: fdmprinter.def.json +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Серединные слои подложек" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Ширина линий середины подложки" + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Ускорение печати середины подложки" + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Рывок печати середины подложки" + +#: fdmprinter.def.json +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Скорость печати середины подложки" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Дистанция между слоями середины подложки" + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Толщина середины подложки" + +#: fdmprinter.def.json +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Ускорение печати подложки" + +#: fdmprinter.def.json +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Рывок подложки" + +#: fdmprinter.def.json +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Скорость печати подложки" + +#: fdmprinter.def.json +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Сглаживание подложки" + +#: fdmprinter.def.json +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Экструдер верхних подложек" + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Скорость вентилятора для верха подложки" + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Толщина верхнего слоя подложки" + +#: fdmprinter.def.json +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Верхние слои подложки" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Ширина линий верха подложки" + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Ускорение печати верха подложки" + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Рывок печати верха подложки" + +#: fdmprinter.def.json +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Скорость печати верха подложки" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Дистанция между линиями верха поддержки" + +#: fdmprinter.def.json +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Случайно" + +#: fdmprinter.def.json +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Рандомизация начала заполнения" + +#: fdmprinter.def.json +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 "Рандомизировать, какая линия заполнения печатается первой. Это препятствует тому, чтобы один сегмент стал самым сильным, но делает это за счет дополнительного перемещения." + +#: fdmprinter.def.json +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 "Вносит небольшое дрожание при печати внешней стенки, что придаёт поверхности шершавый вид." + +#: fdmprinter.def.json +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Прямоугольная" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Обычная скорость вентилятора" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Обычная скорость вентилятора на высоте" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Обычная скорость вентилятора на слое" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Порог переключения на повышенную скорость" + +#: fdmprinter.def.json +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Относительная экструзия" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Удаляет все отверстия" + +#: fdmprinter.def.json +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Удалить первые пустые слои" + +#: fdmprinter.def.json +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Удалить пересечения объектов" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Удаление внутренних углов подложки" + +#: fdmprinter.def.json +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 "Удаляет области, где несколько объектов перекрываются друг с другом. Можно использовать, для объектов, состоящих из двух материалов и пересекающихся друг с другом." + +#: fdmprinter.def.json +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 "Удаление пустых слоёв под первым печатаемым слоем, если они имеются. Отключение этой функции может привести к созданию первых пустых слоев, если для параметра «Допуск слайсинга» установлено значение «Включение» или «Середина»." + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Удаляйте внутренние углы с подложки, чтобы она стала выпуклой." + +#: fdmprinter.def.json +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 "Удаляет отверстия в каждом слое, оставляя только внешнюю форму. Вся невидимая внутренняя геометрия будет проигнорирована. Однако, также будут проигнорированы отверстия в слоях, которые могут быть видны сверху или снизу." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +#: fdmprinter.def.json +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 "Заменяет внешнюю часть шаблона крышки/дна рядом концентрических линий. Использование одной или двух линий улучшает мосты, которые печатаются поверх материала заполнения." + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution description" +msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." +msgstr "Разрешение, применяемое при расчете столкновений во избежание столкновений с моделью. Если указать меньшее значение, древовидные структуры будут получаться более точными и устойчивыми, однако при этом значительно увеличится время разделения на слои." + +#: fdmprinter.def.json +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Откат перед внешней стенкой" + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Откат при смене слоя" + +#: fdmprinter.def.json +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Откат нити при движении сопла вне зоны печати." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Откат нити при движении сопла вне зоны печати." + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "Откат нити при перемещении сопла на следующий слой." + +#: fdmprinter.def.json +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Величина отката" + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Дополнительно заполняемый объём при откате" + +#: fdmprinter.def.json +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Минимальное перемещение при откате" + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Скорость заправки при откате" + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Скорость извлечения при откате" + +#: fdmprinter.def.json +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Скорость отката" + +#: fdmprinter.def.json +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Справа" + +#: fdmprinter.def.json +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Масштабирование скорости вентилятора до 0-1" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Коэффициент масштабирования для компенсации усадки" + +#: fdmprinter.def.json +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "На сцене есть объекты поддержки" + +#: fdmprinter.def.json +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Настройки угла шва" + +#: fdmprinter.def.json +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 "Устанавливает высоту кожуха. Можно печать кожух высотой с модель или указать определённую высоту." + +#: fdmprinter.def.json +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Параметры, используемые для печати несколькими экструдерами." + +#: fdmprinter.def.json +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Параметры, которые используются в случае, когда CuraEngine вызывается напрямую." + +#: fdmprinter.def.json +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Начальный откат общего сопла" + +#: fdmprinter.def.json +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Острейший угол" + +#: fdmprinter.def.json +msgctxt "shell description" +msgid "Shell" +msgstr "Ограждение" + +#: fdmprinter.def.json +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Короткий путь" + +#: fdmprinter.def.json +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Показать варианты принтера" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Слои, которые поддерживают края оболочки" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Толщина опоры края оболочки" + +#: fdmprinter.def.json +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Дистанция расширения оболочки" + +#: fdmprinter.def.json +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Перекрытие оболочек" + +#: fdmprinter.def.json +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Процент перекрытия оболочек" + +#: fdmprinter.def.json +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Ширина удаляемой оболочки" + +#: fdmprinter.def.json +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 "Области оболочек уже указанного значения не расширяются. Это предотвращает расширение узких областей оболочек, которые создаются, если наклон поверхности модели близок к вертикальному." + +#: fdmprinter.def.json +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 соединительных линий, облегчая последующее удаление поддержек." + +#: fdmprinter.def.json +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 "Пропускать некоторые соединения в поддержках для облегчения их последующего удаления. Этот параметр влияет на зиг-заг шаблон заполнения." + +#: fdmprinter.def.json +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Юбка" + +#: fdmprinter.def.json +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Дистанция до юбки" + +#: fdmprinter.def.json +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Количество линий юбки" + +#: fdmprinter.def.json +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Ускорение юбки/каймы" + +#: fdmprinter.def.json +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Экструдер юбки/каймы" + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Поток для юбки/каймы" + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Рывок юбки/каймы" + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Ширина линии юбки/каймы" + +#: fdmprinter.def.json +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Минимальная длина юбки/каймы" + +#: fdmprinter.def.json +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Скорость юбки/каймы" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Допуск слайсинга" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Скорость первого слоя для небольших объектов" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Максимальная длина малого элемента" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Скорость для малых элементов" + +#: fdmprinter.def.json +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Максимальный размер малого отверстия" + +#: fdmprinter.def.json +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Температура малослойной печати" + +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + +#: fdmprinter.def.json +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 "Малые элементы на первом слое будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность." + +#: fdmprinter.def.json +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 "Малые элементы будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность." + +#: fdmprinter.def.json +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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Интеллектуальное скрытие" + +#: fdmprinter.def.json +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Сглаживать спиральные контуры" + +#: fdmprinter.def.json +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 (такой шов должен быть едва виден при печати, но виден при послойном просмотре). Следует отметить, что сглаживание ведет к размыванию мелких деталей поверхности." + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Небольшое количество материала может выдавиться во время движения, что может быть скомпенсировано с помощью данного параметра." + +#: fdmprinter.def.json +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 "Небольшое количество материала может просочиться при перемещении во время очистки, что можно скомпенсировать с помощью данного параметра." + +#: fdmprinter.def.json +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Специальные режимы" + +#: fdmprinter.def.json +msgctxt "speed description" +msgid "Speed" +msgstr "Скорость" + +#: fdmprinter.def.json +msgctxt "speed label" +msgid "Speed" +msgstr "Скорость" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Скорость перемещения оси Z во время поднятия." + +#: fdmprinter.def.json +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Спирально печатать внешний контур" + +#: fdmprinter.def.json +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. Этот параметр превращает модель в одностенный объект с крепким дном. Параметр можно использовать только когда каждый слой состоит из одной части модели." + +#: fdmprinter.def.json +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Температура ожидания" + +#: fdmprinter.def.json +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "Стартовый G-код" + +#: fdmprinter.def.json +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 "Начальная точка каждого пути на слое. Когда пути последовательных слоёв начинаются в одной точке, то в процессе печати может появиться вертикальный шов. Выравнивая место точки в указанной пользователем области, шов несложно убрать. При случайном размещении неточность в начале пути становится не так важна. При выборе кратчайшего пути, печать становится быстрее." + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Количество шагов на миллиметр (E)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Количество шагов на миллиметр (X)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Количество шагов на миллиметр (Y)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Количество шагов на миллиметр (Z)" + +#: fdmprinter.def.json +msgctxt "support description" +msgid "Support" +msgstr "Поддержки" + +#: fdmprinter.def.json +msgctxt "support label" +msgid "Support" +msgstr "Поддержки" + +#: fdmprinter.def.json +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Ускорение поддержек" + +#: fdmprinter.def.json +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Дистанция поддержки снизу" + +#: fdmprinter.def.json +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Количество линий стенок основания" + +#: fdmprinter.def.json +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Количество линий каймы поддержки" + +#: fdmprinter.def.json +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Ширина каймы поддержки" + +#: fdmprinter.def.json +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Количество частей линий поддержки" + +#: fdmprinter.def.json +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Размер части поддержек" + +#: fdmprinter.def.json +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Плотность поддержек" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Приоритет зазоров поддержки" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Экструдер поддержек" + +#: fdmprinter.def.json +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Ускорение низа поддержек" + +#: fdmprinter.def.json +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Плотность низа поддержек" + +#: fdmprinter.def.json +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Экструдер низа поддержек" + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Поток для низа поддержек" + +#: fdmprinter.def.json +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Горизонтальное расширение нижней части поддержек" + +#: fdmprinter.def.json +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Рывок низа поддержек" + +#: fdmprinter.def.json +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Направления линии низа поддержек" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Дистанция линии низа поддержек" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Ширина линии дна поддержки" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Шаблон низа поддержек" + +#: fdmprinter.def.json +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Скорость печати низа поддержек" + +#: fdmprinter.def.json +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Толщина низа поддержки" + +#: fdmprinter.def.json +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Поток для поддержек" + +#: fdmprinter.def.json +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Горизонтальное расширение поддержки" + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Ускорение заполнение поддержек" + +#: fdmprinter.def.json +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Экструдер заполнения поддержек" + +#: fdmprinter.def.json +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Рывок заполнение поддержек" + +#: fdmprinter.def.json +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Толщина слоя заполнения поддержек" + +#: fdmprinter.def.json +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Направление линии заполнения поддержек" + +#: fdmprinter.def.json +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Скорость заполнения поддержек" + +#: fdmprinter.def.json +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Ускорение края поддержек" + +#: fdmprinter.def.json +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Плотность связующего слоя поддержки" + +#: fdmprinter.def.json +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Экструдер связующего слоя поддержек" + +#: fdmprinter.def.json +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Поток для связующего слоя поддержек" + +#: fdmprinter.def.json +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Горизонтальное расширение связующего слоя" + +#: fdmprinter.def.json +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Рывок связи поддержек" + +#: fdmprinter.def.json +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Направления линии связующего слоя поддержек" + +#: fdmprinter.def.json +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Ширина линии поддерживающей крыши" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Шаблон связующего слоя" + +#: fdmprinter.def.json +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Разрешение связующего слоя поддержек" + +#: fdmprinter.def.json +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Скорость границы поддержек" + +#: fdmprinter.def.json +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Толщина связующего слоя поддержки" + +#: fdmprinter.def.json +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Количество линий стенок связующего слоя поддержки" + +#: fdmprinter.def.json +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Рывок поддержек" + +#: fdmprinter.def.json +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Расстояние объединения поддержки" + +#: fdmprinter.def.json +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Дистанция между линиями поддержки" + +#: fdmprinter.def.json +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Ширина линии поддержки" + +#: fdmprinter.def.json +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Поддерживающий объект" + +#: fdmprinter.def.json +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Угол нависания поддержки" + +#: fdmprinter.def.json +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Шаблон поддержек" + +#: fdmprinter.def.json +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Размещение поддержек" + +#: fdmprinter.def.json +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Ускорение крыши поддержек" + +#: fdmprinter.def.json +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Плотность крыши поддержек" + +#: fdmprinter.def.json +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Экструдер крыши поддержек" + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Поток для крыши поддержек" + +#: fdmprinter.def.json +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Горизонтальное расширение верхней части поддержек" + +#: fdmprinter.def.json +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Рывок крыши поддержек" + +#: fdmprinter.def.json +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Направления линии крыши поддержек" + +#: fdmprinter.def.json +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Дистанция линии крыши поддержек" + +#: fdmprinter.def.json +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Ширина линии крыши поддержки" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Шаблон крыши поддержек" + +#: fdmprinter.def.json +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Скорость печати крыши поддержек" + +#: fdmprinter.def.json +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Толщина крыши" + +#: fdmprinter.def.json +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Количество линий стенок крыши" + +#: fdmprinter.def.json +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Скорость печати поддержек" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Высота шага лестничной поддержки" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Максимальная ширина шага лестничной поддержки" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Минимальный угол уклона шага лестничной поддержки" + +#: fdmprinter.def.json +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Структура поддержки" + +#: fdmprinter.def.json +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Зазор поддержки сверху" + +#: fdmprinter.def.json +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Количество линий стенки поддержки" + +#: fdmprinter.def.json +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Зазор поддержки по осям X/Y" + +#: fdmprinter.def.json +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Зазор поддержки по оси Z" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Поддерживаемая скорость вентилятора для оболочки" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Поверхность" + +#: fdmprinter.def.json +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Поверхностная энергия" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Поверхностный режим" + +#: fdmprinter.def.json +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Тенденция к прилипанию к поверхности." + +#: fdmprinter.def.json +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Поверхностная энергия." + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + +#: fdmprinter.def.json +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 "Чередует какой из объектов, пересекающихся в объёме, будет участвовать в печати каждого слоя таким образом, что пересекающиеся объекты становятся вплетёнными друг в друга. Выключение этого параметра приведёт к тому, что один из объектов займёт весь объём пересечения, в то время как данный объём будет исключён из других объектов." + +#: fdmprinter.def.json +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 "Целевое расстояние по горизонтали между двумя соседними слоями. Уменьшение этого значения приведет к сокращению толщины слоев, и края слоев станут ближе друг к другу." + +#: fdmprinter.def.json +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 координата позиции, вблизи которой следует искать часть модели для начала печати слоя." + +#: fdmprinter.def.json +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "X координата позиции, вблизи которой следует начинать путь на каждом слое." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "X координата позиции, в которой сопло начинает печать." + +#: fdmprinter.def.json +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 координата позиции, вблизи которой следует искать часть модели для начала печати слоя." + +#: fdmprinter.def.json +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "Y координата позиции, вблизи которой следует начинать путь на каждом слое." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Y координата позиции, в которой сопло начинает печать." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Позиция кончика сопла на оси Z при старте печати." + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "Ускорение при печати первого слоя." + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Ускорение для первого слоя." + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Ускорение для перемещения на первом слое." + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Ускорение для перемещения на первом слое." + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "Ускорение, с которым происходит печать внутренних стенок." + +#: fdmprinter.def.json +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "Ускорение, с которым печатается заполнение." + +#: fdmprinter.def.json +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "Ускорение, с которым производится разглаживание." + +#: fdmprinter.def.json +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Ускорение, с которым происходит печать." + +#: fdmprinter.def.json +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "Ускорение, с которым печатаются нижние слои подложки." + +#: fdmprinter.def.json +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 "Ускорение, с которым происходит печать низа поддержек. Печать поддержек с пониженными ускорениями может улучшить качество печати нависающих краёв модели." + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Ускорение, с которым печатается заполнение поддержек." + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "Ускорение, с которым печатаются средние слои подложки." + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "Ускорение, с которым происходит печать внешних стенок." + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "Ускорение, с которым печатается черновая башня." + +#: fdmprinter.def.json +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "Ускорение, с которым печатается подложка." + +#: fdmprinter.def.json +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 "Ускорение, с которым печатаются верх и низ поддержек. Их печать с пониженными ускорениями может улучшить качество печати нависающих частей." + +#: fdmprinter.def.json +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 "Ускорение, с которым происходит печать верха поддержек. Печать поддержек с пониженными ускорениями может улучшить качество печати нависающих краёв модели." + +#: fdmprinter.def.json +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 "Ускорение, с которым происходит печать юбки и каймы. Обычно, их печать происходит с ускорениями первого слоя, но иногда вам может потребоваться печатать юбку с другими ускорениями." + +#: fdmprinter.def.json +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Ускорение, с которым печатаются структуры поддержки." + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Ускорение, с которым печатаются верхние слои подложки." + +#: fdmprinter.def.json +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Ускорение, с которым происходит печать стенок." + +#: fdmprinter.def.json +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "Ускорение, с которым печатаются слои верхней оболочки." + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Ускорение, с которым печатаются слои крышки/дна." + +#: fdmprinter.def.json +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Ускорение, с которым выполняется перемещение." + +#: fdmprinter.def.json +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 "Объём материала, относительно от обычной линии, который будет выдавлен в процессе разглаживания. Наличие в сопле наличие материала помогает заполнять щели на верхней оболочке, но слишком большое значение приводит к излишнему выдавливанию материала и ухудшает качество оболочки." + +#: fdmprinter.def.json +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 "Величина перекрытия между заполнением и стенками в виде процентного отношения от ширины линии заполнения. Небольшое перекрытие позволяет стенкам надежно соединяться с заполнением." + +#: fdmprinter.def.json +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 "Величина перекрытия между заполнением и стенками. Небольшое перекрытие позволяет стенкам плотно соединиться с заполнением." + +#: fdmprinter.def.json +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 для отключения отката. Обычно соответствует длине зоны нагрева." + +#: fdmprinter.def.json +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 "Угол между горизонтальной плоскостью и конической частью над кончиком сопла." + +#: fdmprinter.def.json +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 "Угол верхней части башен. Большие значения приводят уменьшению площади крыши, меньшие наоборот делают крышу плоской." + +#: fdmprinter.def.json +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° - заставит следовать контурам модели." + +#: fdmprinter.def.json +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, ответвления будут иметь одинаковую толщину по всей своей длине. Небольшой угол может повысить устойчивость древовидной поддержки." + +#: fdmprinter.def.json +msgctxt "support_tree_angle description" +msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "Угол ответвлений. При указании меньшего угла поддержка будет более вертикальной и устойчивой. Для получения большего охвата указывайте более высокий угол." + +#: fdmprinter.def.json +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 градусах будут горизонтальными. Меньшее значение углов укрепляет поддержки, но требует больше материала для них. Отрицательные углы приводят утолщению основания поддержек по сравнению с их верхней частью." + +#: fdmprinter.def.json +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 "Средняя плотность точек, добавленных на каждом полигоне в слое. Следует отметить, что оригинальные точки полигона отбрасываются, следовательно низкая плотность приводит к уменьшению разрешения." + +#: fdmprinter.def.json +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 "Среднее расстояние между случайными точками, который вносятся в каждый сегмент линии. Следует отметить, что оригинальные точки полигона отбрасываются, таким образом, сильное сглаживание приводит к уменьшению разрешения. Это значение должно быть больше половины толщины шершавой оболочки." + +#: fdmprinter.def.json +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "Стандартное ускорение для движений головы." + +#: fdmprinter.def.json +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 "Стандартная температура сопла, используемая при печати. Значением должна быть \"базовая\" температура для материала. Все другие температуры печати должны быть выражены смещениями от основного значения" + +#: fdmprinter.def.json +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 "Температура по умолчанию, используемая для разогретого рабочего стола. Это значение является базовой температурой рабочего стола. Для всех остальных значений температуры печати используется смещение относительно данного значения" + +#: fdmprinter.def.json +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 увеличат зазоры между линиями оболочки." + +#: fdmprinter.def.json +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 "Плотность низа структуры поддержек. Большее значение приведёт к улучшению прилипания поддержек к модели." + +#: fdmprinter.def.json +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 "Плотность крыши структуры поддержек. Большее значение приведёт к улучшению нависаний, но такие поддержки будет труднее удалять." + +#: fdmprinter.def.json +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 увеличат зазоры между линиями оболочки." + +#: fdmprinter.def.json +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 увеличат зазоры между линиями оболочки." + +#: fdmprinter.def.json +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "Ширина (по оси Y) области печати." + +#: fdmprinter.def.json +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "Диаметр специальных башен." + +#: fdmprinter.def.json +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 "Диаметр самых тонких ответвлений древовидной поддержки. Чем толще ответвление, тем оно крепче. Ответвления возле основания будут иметь толщину, превышающую данное значение." + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "Диаметр колесика, перемещающего материал в питатель." + +#: fdmprinter.def.json +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 "Диаметр самых широких веток древовидной поддержки. Более толстый ствол будет более прочным; более тонкий ствол займет меньше места на печатной пластине." + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "Разница между высотой следующего слоя и высотой предыдущего слоя." + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "Расстояние между линиями разглаживания." + +#: fdmprinter.def.json +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "Дистанция между соплом и уже напечатанными частями, выдерживаемая при перемещении." + +#: fdmprinter.def.json +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 "Расстояние между линиями нижнего слоя подложки. Большее значение упрощает снятие модели со стола." + +#: fdmprinter.def.json +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 "Расстояние между линиями средних слоёв подложки. Дистанция в средних слоях должна быть достаточно широкой, чтобы создавать нужной плотность для поддержки верхних слоёв подложки." + +#: fdmprinter.def.json +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 "Расстояние между линиями подложки на её верхних слоях. Расстояние должно быть равно ширине линии, тогда поверхность будет сплошной." + +#: fdmprinter.def.json +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 "Расстояние от границы между моделями для создания взаимосвязанной структуры, измеряемое в ячейках. Слишком малое количество ячеек приведет к плохой адгезии." + +#: fdmprinter.def.json +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 "Расстояние между моделью и самой удалённой линией каймы. Более широкая кайма увеличивает прилипание к столу, но также уменьшает эффективную область печати." + +#: fdmprinter.def.json +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 "Расстояние от внешней стороны модели, где взаимосвязанные структуры не будут создаваться, измеряемое в ячейках." + +#: fdmprinter.def.json +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 "Расстояние от кончика сопла до места, где тепло передаётся материалу." + +#: fdmprinter.def.json +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 "Расстояние на которое нижние оболочки входят в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." + +#: fdmprinter.def.json +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 "Расстояние на которое оболочки внедряются в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." + +#: fdmprinter.def.json +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 "Расстояние на которое верхние оболочки входят в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." + +#: fdmprinter.def.json +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "Расстояние перемещения головки назад и вперед поперек щетки." + +#: fdmprinter.def.json +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 "Конечные точки линий заполнения укорачиваются для экономии материала. Эта настройка представляет собой угол нависания конечных точек этих линий." + +#: fdmprinter.def.json +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 "Дополнительная скорость, с помощью которой сопло охлаждается во время экструзии. Это же значение используется для ускорения нагрева сопла при экструзии." + +#: fdmprinter.def.json +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 "Этот экструдер используется для печати первого слоя заполнения поддержек. Используется при наличии нескольких экструдеров." + +#: fdmprinter.def.json +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 "Этот экструдер используется для печати первого слоя подложек. Используется при наличии нескольких экструдеров." + +#: fdmprinter.def.json +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 "Этот экструдер используется для печати низа поддержек. Используется при наличии нескольких экструдеров." + +#: fdmprinter.def.json +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 "Этот экструдер используется для печати заполнения поддержек. Используется при наличии нескольких экструдеров." + +#: fdmprinter.def.json +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 "Этот комплекс экструдеров используется для печати среднего слоя подложек. Используется при наличии нескольких экструдеров." + +#: fdmprinter.def.json +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 "Этот экструдер используется для печати верха и низа поддержек. Используется при наличии нескольких экструдеров." + +#: fdmprinter.def.json +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 "Этот экструдер используется для печати крыши поддержек. Используется при наличии нескольких экструдеров." + +#: fdmprinter.def.json +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 "Этот комплекс экструдеров используется для печати юбки или каймы. Используется при наличии нескольких экструдеров." + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати юбки/каймы/подложки. Используется при наличии нескольких экструдеров." + +#: fdmprinter.def.json +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати поддержек. Используется при наличии нескольких экструдеров." + +#: fdmprinter.def.json +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 "Этот комплекс экструдеров используется для печати верхнего слоя (или нескольких слоев) подложек. Используется при наличии нескольких экструдеров." + +#: fdmprinter.def.json +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "Экструдер, используемый для печати заполнения. Используется при наличии нескольких экструдеров." + +#: fdmprinter.def.json +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати внутренних стенок. Используется при наличии нескольких экструдеров." + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати внешних стенок. Используется при наличии нескольких экструдеров." + +#: fdmprinter.def.json +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 "Экструдер, используемый для печати верхней и нижней оболочек. Используется при наличии нескольких экструдеров." + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "Экструдер, используемый для печати верхних оболочек. Используется при наличии нескольких экструдеров." + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати стенок. Используется при наличии нескольких экструдеров." + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Скорость вентилятора при печати нижнего слоя подложки." + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "Скорость вентилятора при печати средних слоёв подложки." + +#: fdmprinter.def.json +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Скорость вращения вентилятора при печати подложки." + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Скорость вентилятора при печати верхних слоёв подложки." + +#: fdmprinter.def.json +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 "Путь к файлу изображения, из которого значения яркости определяют минимальную плотность в соответствующем месте заполнения при печати." + +#: fdmprinter.def.json +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 "Путь к файлу изображения, из которого значения яркости определяют минимальную плотность в соответствующем месте поддержки." + +#: fdmprinter.def.json +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 "Первые несколько слоёв печатаются на медленной скорости, чем вся остальная модель, чтобы получить лучшее прилипание к столу и увеличить вероятность успешной печати. Скорость последовательно увеличивается по мере печати указанного количества слоёв." + +#: fdmprinter.def.json +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 "Зазор между последним слоем подложки и первым слоем модели. Первый слой будет приподнят на указанное расстояние, чтобы уменьшить связь между слоем подложки и модели. Упрощает процесс последующего отделения подложки." + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Ширина (по оси Z) области печати." + +#: fdmprinter.def.json +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "Высота над горизонтальными частями вашей модели, по которой создаётся форма." + +#: fdmprinter.def.json +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 "Высота, на которой вентилятор вращается с обычной скоростью. На предыдущих слоях скорость вращения вентилятора постепенно увеличивается с начальной." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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 "Высота между кончиком сопла и нижней частью головы." + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "Высота, на которую приподнимается ось Z после смены экструдера." + +#: fdmprinter.def.json +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Расстояние, на которое приподнимается ось Z." + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Расстояние, на которое приподнимается ось Z." + +#: fdmprinter.def.json +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 "Высота каждого слоя в миллиметрах. Большие значения приводят к быстрой печати при низком разрешении, малые значения приводят к замедлению печати с высоким разрешением." + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "Высота заполнения с указанной плотностью перед переключением на половину плотности." + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "Высота заполнения поддержек, по достижению которой происходит снижение плотности." + +#: fdmprinter.def.json +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 "Высота балок взаимосвязанной структуры, измеряемая в количестве слоев. Чем меньше слоев, тем она будет прочнее, но более подвержена дефектам." + +#: fdmprinter.def.json +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 "Высота балок взаимосвязанной структуры, измеряемая в количестве слоев. Чем меньше слоев, тем она будет прочнее, но более подвержена дефектам." + +#: fdmprinter.def.json +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 "Высота первого слоя в миллиметрах. Более толстый слой упрощает прилипание пластика к столу." + +#: fdmprinter.def.json +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 "Высота в шагах низа лестничной поддержки, лежащей на модели. Малые значения усложняют удаление поддержки, а большие значения могут сделать структуру поддержек нестабильной. Установите ноль для выключения лестничной поддержки." + +#: fdmprinter.def.json +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 "Горизонтальное расстояние между первой линией каймы и контуром первого слоя изделия. Небольшой зазор облегчит удаление каймы и позволит сохранить термические преимущества." + +#: fdmprinter.def.json +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" +"Минимальное расстояние. Несколько линий юбки будут расширяться от этого расстояния." + +#: fdmprinter.def.json +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 "Линии заполнения выравниваются для сокращения время печати. Это максимально допустимый угол нависания по всей длине линии заполнения." + +#: fdmprinter.def.json +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "Расстояние перемещения шаблона заполнения по оси X." + +#: fdmprinter.def.json +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "Расстояние перемещения шаблона заполнения по оси Y." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Внутренний диаметр сопла. Измените этот параметр при использовании сопла нестандартного размера." + +#: fdmprinter.def.json +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются нижние слои подложки." + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются средние слои подложки." + +#: fdmprinter.def.json +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "Скорость изменения ускорений при печати подложки." + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются верхние слои подложки." + +#: fdmprinter.def.json +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 "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати нижних оболочек наклонных поверхностей модели." + +#: fdmprinter.def.json +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 "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати верхних/нижних оболочек наклонных поверхностей модели." + +#: fdmprinter.def.json +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 "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати верхних оболочек наклонных поверхностей модели." + +#: fdmprinter.def.json +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 "Слой, на котором вентилятор должен вращаться с обыкновенной скоростью. Если определена обычная скорость для вентилятора на высоте, это значение вычисляется и округляется до целого." + +#: fdmprinter.def.json +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 "Время печати слоя, которое устанавливает порог для переключения с обычной скорости вращения вентилятора на максимальную. Слои, которые будут печататься дольше указанного значения, будут использовать обычную скорость вращения вентилятора. Для быстрых слоёв скорость вентилятора постепенно будет повышаться до максимальной." + +#: fdmprinter.def.json +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "Длина нити материала, которая будет извлечена по время отката." + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Материал рабочего стола, установленного на принтере." + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "Максимальная разрешенная высота по сравнению с высотой базового уровня." + +#: fdmprinter.def.json +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 - будет горизонталь. Малые значения угла приводят к лучшему качеству, но тратят больше материала." + +#: fdmprinter.def.json +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° в модель не вносится никаких изменений." + +#: fdmprinter.def.json +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 мм² приведет к заполнению всех отверстий в основании модели." + +#: fdmprinter.def.json +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-кода. Максимальное отклонение является пределом для максимального разрешения, поэтому, если они конфликтуют, истинным считается максимальное отклонение." + +#: fdmprinter.def.json +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. Если отдельные структуры находятся ближе, чем определено данным значением, они объединяются в одну." + +#: fdmprinter.def.json +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 "Максимальное расстояние (в мм) перемещения материала для компенсации изменения расхода." + +#: fdmprinter.def.json +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-кода уменьшится." + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "Изменение максимальной мгновенной скорости, с которой печатается первый слой." + +#: fdmprinter.def.json +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "Изменение максимальной мгновенной скорости печатающей головки." + +#: fdmprinter.def.json +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Изменение максимальной мгновенной скорости, с которой выполняется разглаживание." + +#: fdmprinter.def.json +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются внутренние стенки." + +#: fdmprinter.def.json +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатается заполнение." + +#: fdmprinter.def.json +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны низ поддержек." + +#: fdmprinter.def.json +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатается заполнение поддержек." + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются внешние стенки." + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатается черновая башня." + +#: fdmprinter.def.json +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны крыши и низ поддержек." + +#: fdmprinter.def.json +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны крыши поддержек." + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатается юбка и кайма." + +#: fdmprinter.def.json +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются поддержки." + +#: fdmprinter.def.json +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой будут напечатаны стены." + +#: fdmprinter.def.json +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются слои верхней оболочки." + +#: fdmprinter.def.json +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются верхние и нижние слои." + +#: fdmprinter.def.json +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "Изменение максимальной мгновенной скорости, с которой выполняются перемещения." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "Максимальная скорость для мотора оси X." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Максимальная скорость для мотора оси Y." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Максимальная скорость для мотора оси Z." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "Максимальная скорость подачи материала." + +#: fdmprinter.def.json +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 "Максимальная ширина шагов низа лестничной поддержки, располагающейся на модели. Малые значения усложняют удаление поддержки, а большие значения могут сделать структуру поддержек нестабильной." + +#: fdmprinter.def.json +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "Минимальное расстояние между внешними сторонами формы и модели." + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Минимальная скорость движения головы." + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "Минимальная температура, в процессе нагрева до температуры печати, на которой можно запустить процесс печати." + +#: fdmprinter.def.json +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 "Минимальное время, которое экструдер должен быть неактивен, чтобы сопло начало охлаждаться. Только когда экструдер не используется дольше, чем указанное время, он может быть охлаждён до температуры ожидания." + +#: fdmprinter.def.json +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° заполнение отсутствует." + +#: fdmprinter.def.json +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° не получат никаких поддержек." + +#: fdmprinter.def.json +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 "Минимальное расстояние на которое необходимо переместиться для отката, чтобы он произошёл. Этот параметр помогает уменьшить количество откатов на небольшой области печати." + +#: fdmprinter.def.json +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, то этот параметр игнорируется." + +#: fdmprinter.def.json +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 * минимальную ширину линии четной стенки." + +#: fdmprinter.def.json +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 * Минимальная ширина линии нечетной стенки." + +#: fdmprinter.def.json +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 "Минимальная скорость печати, независящая от замедления печати до минимального времени печати слоя. Если принтер начнёт слишком замедляться, давление в сопле будет слишком малым, что отрицательно скажется на качестве печати." + +#: fdmprinter.def.json +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 и увеличит скорость слайсинга за счет удаления деталей модели, которые он в любом случае не сможет обработать." + +#: fdmprinter.def.json +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-кода, однако при этом может снизиться точность избегания моделей." + +#: fdmprinter.def.json +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 "Минимальный уклон области, где применяется лестничный шаг. При низких значениях удаление поддержки на более пологих уклонах должно быть проще, но слишком низкие значения могут приводить к очень неожиданным результатам на других деталях модели." + +#: fdmprinter.def.json +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 "Минимальное время, затрачиваемое на печать слоя. Этот параметр заставляет принтер замедляться, как минимум, чтобы потратить на печать слоя время, указанное в этом параметре. Это позволяет напечатанному материалу достаточно охладиться перед печатью следующего слоя. Слои могут печататься быстрее, чем указано в этом параметре, если поднятие головы отключено и если будет нарушено требование по минимальной скорости печати." + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "Минимальный объём материала на каждый слой черновой башни, который требуется выдавить." + +#: fdmprinter.def.json +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Название модели вашего 3D принтера." + +#: fdmprinter.def.json +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\"." + +#: fdmprinter.def.json +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 "Сопло избегает уже напечатанных частей при перемещении. Эта опция доступна только при включенном комбинге." + +#: fdmprinter.def.json +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "При перемещении сопла оно будет избегать напечатанных поддержек. Эта опция доступна только при включенном комбинге." + +#: fdmprinter.def.json +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 "Количество слоёв в дне. При вычислении толщины дна это значение округляется до целого." + +#: fdmprinter.def.json +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 "Количество контуров, которые необходимо напечатать вокруг линейного рисунка в слое основания подложки." + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "Количество слоев, которые поддерживают края оболочки." + +#: fdmprinter.def.json +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 "Количество начальных слоев дна, вверх от рабочего стола. При вычислении толщины дна это значение округляется до целого." + +#: fdmprinter.def.json +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 "Количество слоев между основанием и поверхностью подложки. Они составляют основную толщину подложки. Увеличение этого значения позволяет создать более прочную положку большей толщины." + +#: fdmprinter.def.json +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 "Количество линий, используемых для печати каймы. Большее количество линий каймы улучшает прилипание к столу, но уменьшает эффективную область печати." + +#: fdmprinter.def.json +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 "Количество линий, используемых для каймы поддержки. При увеличении линий каймы улучшается адгезия к рабочему столу и увеличивается расход материала." + +#: fdmprinter.def.json +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 "Количество верхних слоёв над вторым слоем подложки. Это такие полностью заполненные слои, на которых размещается модель. Два слоя приводят к более гладкой поверхности чем один." + +#: fdmprinter.def.json +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 "Количество слоёв в крышке. При вычислении толщины крышки это значение округляется до целого." + +#: fdmprinter.def.json +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 "Количество верхних слоёв оболочки. Обычно достаточно одного слоя для получения верхних поверхностей в хорошем качестве." + +#: fdmprinter.def.json +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 "Количество стенок, окружающих заполнение поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать нависания поддержки, однако оно увеличивает время печати и расход материалов." + +#: fdmprinter.def.json +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 "Количество стенок, которыми можно окружить основание связующего слоя поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов." + +#: fdmprinter.def.json +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 "Количество стенок, которыми можно окружить крышу связующего слоя поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов." + +#: fdmprinter.def.json +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 "Количество стен, которыми можно окружить связующий слой крыши поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов." + +#: fdmprinter.def.json +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 "Количество стенок, считая от центра, на которые необходимо распространить вариацию. Более низкое значение означает, что ширина внешних стенок не изменяется." + +#: fdmprinter.def.json +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 "Количество линий стенки. При вычислении толщины стенки, это значение округляется до целого." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Внешний диаметр кончика сопла." + +#: fdmprinter.def.json +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 "Шаблон заполняющего материала печати. Линейное и зигзагообразное заполнение меняет направление на чередующихся слоях, снижая расходы на материал. Шаблоны «сетка», «треугольник», «шестигранник из треугольников», «куб», «восьмигранник», «четверть куба», «крестовое», «концентрическое» полностью печатаются в каждом слое. Шаблоны заполнения «гироид», «куб», «четверть куба» и «восьмигранник» меняются в каждом слое, чтобы обеспечить более равномерное распределение прочности в каждом направлении. Шаблон заполнения «молния» пытается минимизировать заполнение, поддерживая только верхнюю область объекта." + +#: fdmprinter.def.json +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 "Шаблон печатаемой структуры поддержек. Имеющиеся варианты отличаются крепкостью или простотой удаления поддержек." + +#: fdmprinter.def.json +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "Шаблон, используемый для верхних слоёв оболочки." + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Шаблон слоёв для крышки/дна." + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "Шаблон низа печати на первом слое." + +#: fdmprinter.def.json +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Шаблон, который будет использоваться для разглаживания верхней оболочки." + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "Шаблон, который будет использоваться для печати нижней части поддержек." + +#: fdmprinter.def.json +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Шаблон, который будет использоваться для печати связующего слоя поддержек." + +#: fdmprinter.def.json +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "Шаблон, который будет использоваться для печати верхней части поддержек." + +#: fdmprinter.def.json +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "Позиция, рядом с которой следует начинать путь на каждом слое." + +#: fdmprinter.def.json +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "Изменение максимальной мгновенной скорости на первом слое." + +#: fdmprinter.def.json +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "Форма стола без учёта непечатаемых областей." + +#: fdmprinter.def.json +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 "Форма печатающей головки. Это координаты относительно положения печатной головки, которое обычно совпадает с положением ее первого экструдера. Координаты слева от печатной головки и перед ней должны иметь отрицательные значения." + +#: fdmprinter.def.json +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 по высоте, когда шаблон касается сам себя." + +#: fdmprinter.def.json +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 "Минимальный объём экструзии, который должен быть произведён перед выполнением наката. Для малых путей меньшее давление будет создаваться в боудене и таким образом, объём наката будет изменяться линейно. Это значение должно всегда быть больше \"Объёма наката\"." + +#: fdmprinter.def.json +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/сек.), с которой сопло охлаждается, усреднённая в окне температур при обычной печати и температура ожидания." + +#: fdmprinter.def.json +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/сек.), с которой сопло греет, усреднённая в окне температур при обычной печати и температура ожидания." + +#: fdmprinter.def.json +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 "Скорость, на которой происходит печать внутренних стенок. Печать внутренних стенок на скорости, большей скорости печати внешней стенки, ускоряет печать. Отлично работает, если значение скорости находится между скоростями печати внешней стенки и скорости заполнения." + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "Скорость, с которой печатаются области оболочки мостика." + +#: fdmprinter.def.json +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Скорость, на которой печатается заполнение." + +#: fdmprinter.def.json +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Скорость, на которой происходит печать." + +#: fdmprinter.def.json +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 "Скорость, на которой печатается нижний слой подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой." + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "Скорость, с которой происходит печать стенок мостика." + +#: fdmprinter.def.json +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 "Скорость, с которой вращается вентилятор в начале печати. На последующих слоях скорость вращения постепенно увеличивается до слоя, соответствующего параметру обычной скорости вращения вентилятора на указанной высоте." + +#: fdmprinter.def.json +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 "Скорость, с которой вращается вентилятор до достижения порога. Если слой печатается быстрее установленного порога, то вентилятор постепенно начинает вращаться быстрее." + +#: fdmprinter.def.json +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 "Скорость, с которой вращается вентилятор при минимальной площади слоя. Если слой печатается быстрее установленного порога, то вентилятор постепенно начинает вращаться с указанной скоростью." + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "Скорость с которой материал будет возвращён при откате." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "Скорость, с которой нить заправляется при откате с очисткой." + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "Скорость, с которой материал будет возвращён обратно при смене экструдера." + +#: fdmprinter.def.json +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "Скорость, с которой материал будет извлечён и возвращён обратно при откате." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "Скорость, с которой нить будет втягиваться и заправляться при откате с очисткой." + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "Скорость, с которой материал будет извлечён при откате для смены экструдера." + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "Скорость с которой нить будет извлечена при откате." + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "Скорость, с которой нить будет втягиваться при откате с очисткой." + +#: fdmprinter.def.json +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 "Скорость с которой материал будет извлечён и возвращён обратно при откате. Высокая скорость отката работает лучше, но очень большая скорость портит материал." + +#: fdmprinter.def.json +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 "Скорость, на которой происходит печать низа поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." + +#: fdmprinter.def.json +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 "Скорость, на которой заполняются поддержки. Печать заполнения на пониженных скоростях улучшает стабильность." + +#: fdmprinter.def.json +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 "Скорость, на которой печатаются средние слои подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой." + +#: fdmprinter.def.json +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 "Скорость, на которой происходит печать внешних стенок. Печать внешней стенки на пониженной скорости улучшает качество поверхности модели. Однако, при большой разнице между скоростями печати внутренних и внешних стенок возникает эффект, негативно влияющий на качество." + +#: fdmprinter.def.json +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 "Скорость, на которой печатается черновая башня. Замедленная печать черновой башни может сделать её стабильнее при недостаточном прилипании различных материалов." + +#: fdmprinter.def.json +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "Скорость, с которой вращаются вентиляторы." + +#: fdmprinter.def.json +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "Скорость, на которой печатается подложка." + +#: fdmprinter.def.json +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 "Скорость, на которой происходит печать верха и низа поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." + +#: fdmprinter.def.json +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 "Скорость, на которой происходит печать верха поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." + +#: fdmprinter.def.json +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 "Скорость, на которой происходит печать юбки и каймы. Обычно, их печать происходит на скорости печати первого слоя, но иногда вам может потребоваться печатать юбку или кайму на другой скорости." + +#: fdmprinter.def.json +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 "Скорость, на которой происходит печать структуры поддержек. Печать поддержек на повышенной скорости может значительно уменьшить время печати. Качество поверхности структуры поддержек не имеет значения, так как эта структура будет удалена после печати." + +#: fdmprinter.def.json +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 "Скорость, на которой печатаются верхние слои подложки. Верх подложки должен печататься немного медленнее, чтобы сопло могло медленно разглаживать линии поверхности." + +#: fdmprinter.def.json +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. Обычно она ниже, чем скорость печати, поскольку рабочий стол или портал машины тяжелее сдвинуть." + +#: fdmprinter.def.json +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Скорость, на которой происходит печать стенок." + +#: fdmprinter.def.json +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "Скорость, на которой голова проходит над верхней оболочкой." + +#: fdmprinter.def.json +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "Скорость, при которой убираемый материал отломится чисто." + +#: fdmprinter.def.json +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "Скорость, на которой печатаются слои верхней оболочки." + +#: fdmprinter.def.json +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Скорость, на которой печатаются слои крышки/дна." + +#: fdmprinter.def.json +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Скорость, с которой выполняется перемещение." + +#: fdmprinter.def.json +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%, так как во время наката давление в боудене снижается." + +#: fdmprinter.def.json +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 "Скорость печати первого слоя. Пониженное значение улучшает прилипание материала к печатной пластине. Не влияет на сами адгезионные структуры печатной пластины, такие как край и основание." + +#: fdmprinter.def.json +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 "Скорость печати первого слоя. Пониженное значение помогает улучшить прилипание материала к столу." + +#: fdmprinter.def.json +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 "Скорость перемещений на первом слое. Малые значения помогают предотвращать отлипание напечатанных частей от стола. Значение этого параметра может быть вычислено автоматически из отношения между скоростями перемещения и печати." + +#: fdmprinter.def.json +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "Температура, при которой материал отломится чисто." + +#: fdmprinter.def.json +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, температура для объема печати не будет регулироваться." + +#: fdmprinter.def.json +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "Температура сопла в момент, когда для печати используется другое сопло." + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "Температура, до которой можно начать охлаждать сопло, перед окончанием печати." + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +msgstr "Температура при печати первого слоя. Установите в 0 для отключения специального поведения на первом слое." + +#: fdmprinter.def.json +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Температура, используемая при печати." + +#: fdmprinter.def.json +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, печатная пластина не нагревается при печати первого слоя." + +#: fdmprinter.def.json +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, печатная пластина не нагревается." + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "Температура, используемая для выдавливания материала, должна быть примерно равна максимальной температуре при печати." + +#: fdmprinter.def.json +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 "Толщина дна при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в дне." + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "Толщина дополнительного объема, который поддерживает края оболочки." + +#: fdmprinter.def.json +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 "Толщина связующего слоя поддержек, который касается модели снизу или сверху." + +#: fdmprinter.def.json +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 "Толщина низа поддержки. Управляет количеством плотных слоёв, которые печатаются поверх модели для последующего построения поддержек." + +#: fdmprinter.def.json +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 "Толщина крыши поддержек. Управляет величиной плотности верхних слоёв поддержек, на которых располагается вся модель." + +#: fdmprinter.def.json +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 "Толщина крышки при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в крышке." + +#: fdmprinter.def.json +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 "Толщина слоя дна/крышки при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в дне/крышке." + +#: fdmprinter.def.json +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 "Толщина внешних стенок в горизонтальном направлении. Это значение, разделённое на ширину линии стенки, определяет количество стенок." + +#: fdmprinter.def.json +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 "Толщина слоя для материала заполнения. Данное значение должно быть всегда кратно толщине слоя и всегда округляется." + +#: fdmprinter.def.json +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 "Толщина слоя для материала заполнения поддержек. Это значение должно быть всегда кратно высоте слоя, в противном случае оно будет округлено." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Генерируемый тип G-кода." + +#: fdmprinter.def.json +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Объём, который бы сочился. Это значение должно обычно быть близко к возведенному в куб диаметру сопла." + +#: fdmprinter.def.json +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "Ширина (по оси X) области печати." + +#: fdmprinter.def.json +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 "Ширина каймы для печати под поддержкой. При увеличении каймы улучшается адгезия к рабочему столу и увеличивается расход материала." + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "Ширина балок взаимосвязанной конструкции." + +#: fdmprinter.def.json +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "Ширина черновой башни." + +#: fdmprinter.def.json +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 "Величина амплитуды дрожания. Рекомендуется придерживаться толщины внешней стенки, так как внутренние стенки не изменяются." + +#: fdmprinter.def.json +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 "Окно, в котором может быть выполнено максимальное количество откатов. Это значение приблизительно должно совпадать с расстоянием отката таким образом, чтобы количество выполненных откатов распределялось на величину выдавленного материала." + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "X координата позиции черновой башни." + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "Y координата позиции черновой башни." + +#: fdmprinter.def.json +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "На сцене присутствуют объекты поддержки. Эта настройка контролируется приложением Cura." + +#: fdmprinter.def.json +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 "Эта настройка управляет расстоянием наката экструдера непосредственно перед началом стенки мостика. Накат перед началом мостика может уменьшить давление в сопле и создать более ровный мостик." + +#: fdmprinter.def.json +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 "Этот параметр регулирует величину скругления внутренних углов контура подложки. Внутренние углы скругляются до полукруга с радиусом, равным установленному здесь значению. Этот параметр также приводит к удалению отверстий в контуре подложки, которые меньше такого круга." + +#: fdmprinter.def.json +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 "Данный параметр ограничивает число откатов, которые происходят внутри окна минимальной дистанции экструзии. Дальнейшие откаты внутри этого окна будут проигнорированы. Это исключает выполнение множества повторяющихся откатов над одним и тем же участком нити, что позволяет избежать проблем с истиранием нити." + +#: fdmprinter.def.json +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 "Создаёт стенку вокруг модели, которая удерживает (горячий) воздух и препятствует обдуву модели внешним воздушным потоком. Очень пригодится для материалов, которые легко деформируются." + +#: fdmprinter.def.json +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 (горизонтально)." + +#: fdmprinter.def.json +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 (вертикально)." + +#: fdmprinter.def.json +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 "Для компенсации усадки материала при остывании модель будет масштабирована с этим коэффициентом." + +#: fdmprinter.def.json +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Слои крышки" + +#: fdmprinter.def.json +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Дистанция расширения оболочки сверху" + +#: fdmprinter.def.json +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Ширина удаляемой оболочки сверху" + +#: fdmprinter.def.json +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Ускорение верхней оболочки" + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Экструдер для печати крышки" + +#: fdmprinter.def.json +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Поток для верхней оболочки" + +#: fdmprinter.def.json +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Рывок верхней оболочки" + +#: fdmprinter.def.json +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Слои верхней оболочки" + +#: fdmprinter.def.json +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Направление линий верхней оболочки" + +#: fdmprinter.def.json +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Ширина линии крышки" + +#: fdmprinter.def.json +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Шаблон верхней оболочки" + +#: fdmprinter.def.json +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Скорость верхней оболочки" + +#: fdmprinter.def.json +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Толщина крышки" + +#: fdmprinter.def.json +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° является вертикальным и вызывает расширение всей оболочки." + +#: fdmprinter.def.json +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Дно / крышка" + +#: fdmprinter.def.json +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Дно / крышка" + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Ускорение крышки/дна" + +#: fdmprinter.def.json +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Экструдер дна/крышки" + +#: fdmprinter.def.json +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Поток для верхних/нижних линий" + +#: fdmprinter.def.json +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Рывок крышки/дна" + +#: fdmprinter.def.json +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Направление линии дна/крышки" + +#: fdmprinter.def.json +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Ширина линии дна/крышки" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Шаблон для крышки/дна" + +#: fdmprinter.def.json +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Скорость крышки/дна" + +#: fdmprinter.def.json +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Толщина дна/крышки" + +#: fdmprinter.def.json +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "От стола" + +#: fdmprinter.def.json +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Диаметр башен" + +#: fdmprinter.def.json +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Угол крыши башен" + #: fdmprinter.def.json msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Матрица преобразования, применяемая к модели при её загрузке из файла." -#~ msgctxt "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "2D контур головы принтера (включая крышки вентилятора)." - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Печать внешних стенок" - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Указывает печатать стенки снаружи внутрь. Это помогает улучшить аккуратность печати по осям X и Y, при использовании вязких пластиков подобно ABS. Однако это может отрицательно повлиять на качество печати внешних поверхностей, особенно нависающих." - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Компенсация перекрытия стен" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Компенсирует поток для печатаемых частей стен в местах, где уже напечатана стена." - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Компенсация перекрытия внешних стен" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Компенсирует поток для печатаемых частей внешних стен в местах, где уже напечатана стена." - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Компенсация перекрытия внутренних стен" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Компенсирует поток для печатаемых частей внутренних стен в местах, где уже напечатана стена." - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Минимальный поток для стенки" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "Минимальный разрешенный поток (в процентах) для линии стенки. Компенсация перекрытия стенок снижает поток для стенки при нахождении вблизи от существующей стенки. Стенки с потоком меньше указанного значения будут заменены посредством движения. При использовании этой настройки необходимо активировать компенсацию перекрытия стенок и печатать сначала внешнюю стенку, а затем — внутренние." - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Предпочтительный откат" - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Если включено, вместо комбинга для движений, заменяющих стенки с потоком меньше минимального установленного порога, используется откат." - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Заполнение зазоров между стенками" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Заполняет зазоры между стенками, когда это необходимо." - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Нигде" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Везде" - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "Фильтровать только небольшие зазоры" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "Фильтровать только небольшие зазоры для сокращения пузырей за пределами модели." - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Выравнивание потока материала" - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Печатать более тонкие чем обычно линии быстрее, чтобы объём выдавленного материала в секунду оставался постоянным. Тонкие части в вашей модели могут требовать, чтобы линии были напечатаны с меньшей шириной, чем разрешено настройками. Этот параметр управляет скоростью изменения таких линий." - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Максимальная скорость выравнивания потока" - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "Максимальная скорость печати до которой может увеличиваться скорость печати при выравнивании потока." - -#~ msgctxt "machine_start_gcode description" -#~ msgid "G-code commands to be executed at the very start - separated by \\n." -#~ msgstr "Команды в G-коде, которые будут выполнены в самом начале, разделенные с помощью \\n." - -#~ msgctxt "machine_end_gcode description" -#~ msgid "G-code commands to be executed at the very end - separated by \\n." -#~ msgstr "Команды в G-коде, которые будут выполнены в самом конце, разделенные с помощью \\n." - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ 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 (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ msgstr "Шаблон заполняющего материала печати. Линейное и зигзагообразное заполнение меняет направление на чередующихся слоях, снижая расходы на материал. Шаблоны «сетка», «треугольник», «шестигранник из треугольников», «куб», «восьмигранник», «четверть куба», «крестовое», «концентрическое» полностью печатаются в каждом слое. Шаблоны заполнения «гироид», «куб», «четверть куба» и «восьмигранник» меняются в каждом слое, чтобы обеспечить более равномерное распределение прочности в каждом направлении. Шаблон заполнения «молния» пытается минимизировать заполнение, поддерживая только (внутренние) верхние части объекта. Таким образом, процент заполнения «действует» только на один слой ниже того, который требуется для поддержки модели." - -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "Разность, которая может возникать между слоем шаблона заполнения «молния» и слоем, расположенным непосредственно над ним, при обрезке внешних оконечностей деревьев. Измеряется под углом с учетом толщины." - -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ 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." -#~ msgstr "Шаблон заполняющего материала печати. Линейное и зигзагообразное заполнение меняет направление на чередующихся слоях, снижая расходы на материал. Шаблоны «сетка», «треугольник», «шестигранник из треугольников», «куб», «восьмигранник», «четверть куба», «крестовое», «концентрическое» полностью печатаются в каждом слое. Шаблоны заполнения «гироид», «куб», «четверть куба» и «восьмигранник» меняются в каждом слое, чтобы обеспечить более равномерное распределение прочности в каждом направлении." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "Минимальное расстояние между внешними сторонами формы и модели." - -#~ msgctxt "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "Количество шагов шаговых двигателей, приводящее к экструзии на один миллиметр." - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "При ненулевом значении перемещения комбинга, превышающие указанное расстояние, будут выполняться с откатом." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Применить смещение экструдера к системе координат." - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ 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, while an angle of 90° is vertical." -#~ msgstr "Верхняя и/или нижняя поверхности вашего объекта с углом больше указанного в данном параметре, не будут иметь расширенные оболочки дна/крышки. Это предотвращает расширение узких областей оболочек, которые создаются, если поверхность модели имеет почти вертикальный наклон. Угол в 0° является горизонтальным, а в 90° - вертикальным." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ 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 lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Определяет приоритет данного объекта при вычислении нескольких перекрывающихся заполняющих объектов. К областям с несколькими перекрывающимися заполняющими объектами будут применяться настройки объекта более низкого порядка. Заполняющий объект более высокого порядка будет модифицировать заполнение объектов более низких порядков и обычных объектов." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "Температура, задаваемая для разогретого рабочего стола. Если значение равно 0, температура основания не будет регулироваться." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "Температура стола, используемая при печати первого слоя." - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Коэффициент усадки" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "Коэффициент усадки в процентах." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ 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 "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Порядок заполнения объекта" - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Определяет какой заполняющий объект находится внутри заполнения другого заполняющего объекта. Заполняющий объект с более высоким порядком будет модифицировать заполнение объектов с более низким порядком или обычных объектов." - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Древовидная поддержка" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Генерирование древовидной поддержки с ответвлениями, поддерживающими вашу печать. Данная опция может сэкономить материал и сократить время печати, однако при этом существенно возрастает время разделения на слои." - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "Способ выполнения слайсинга слоев диагональными поверхностями. Области слоя можно создать на основе места пересечения середины слоя и поверхности (Середина). Кроме того, каждый слой может иметь области, попадающие в объем по высоте слоя (Исключение), или слой имеет области, попадающие в любое место слоя (Включение). Способ «Исключение» сохраняет больше деталей. Способ «Включение» обеспечивает наилучшую подгонку. Способ «Середина» требует минимального времени для обработки." - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Спагетти" - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Печатает заполнение так часто, что филамент хаотически заполняет внутренность объекта. Это сокращает время печати, но выражается в непредсказуемом поведении." - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Шаг спагетти заполнения" - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Следует ли пошагово печатать спагетти заполнение или печатать материалом заполнения в конце печати." - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Максимальный угол спагетти заполнения" - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "Максимальный угол по отношению к оси Z внутри печатаемого объёма для заполняемых областей. Уменьшение этого значения приводит к тому, что более наклонённые части вашей модели будут заполнены на каждом слое." - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Максимальная высота спагетти заполнения" - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "Максимальная высота внутри пространства которое может быть объединено и заполнено сверху." - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Спагетти вставка" - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "Смещение от стенок внутри которых должно быть использовано спагетти заполнение." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Спагетти поток" - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Управляет плотностью спагетти заполнения. Следует отметить, что плотность заполнения только контролирует расстояние между линиями шаблона заполнения, а не объёмом выдавливаемого материала." - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Дополнительный объём спагетти заполнения" - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Период исправления для управления общим объёмом выдавленного материала при спагетти заполнении." - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "Идентификатор материала, устанавливается автоматически. " - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Расстояние парковки материала" - -#~ msgctxt "machine_filament_park_distance description" -#~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used." -#~ msgstr "Расстояние от кончика сопла до места, где останавливается материал, пока экструдер не используется." - -#~ msgctxt "material_flush_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Внутреннее значение Material Station" - -#~ msgctxt "material_flush_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Внутреннее значение Material Station" - -#~ msgctxt "material_end_of_filament_purge_speed label" -#~ msgid "End Of Filament Purge Speed" -#~ msgstr "Скорость выдавливания заканчивающегося материала" - -#~ msgctxt "material_end_of_filament_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Внутреннее значение Material Station" - -#~ msgctxt "material_end_of_filament_purge_length label" -#~ msgid "End Of Filament Purge Length" -#~ msgstr "Длина выдавливания заканчивающегося материала" - -#~ msgctxt "material_end_of_filament_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Внутреннее значение Material Station" - -#~ msgctxt "material_maximum_park_duration description" -#~ msgid "Material Station internal value" -#~ msgstr "Внутреннее значение Material Station" - -#~ msgctxt "material_no_load_move_factor description" -#~ msgid "Material Station internal value" -#~ msgstr "Внутреннее значение Material Station" - -#~ msgctxt "retraction_enable description" -#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " -#~ 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 "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "category_fixes" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "category_blackmagic" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "экспериментальное!" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "Полигон головки принтера" - -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "2D контур головы принтера (исключая крышки вентилятора)." - -#~ 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 only possible if 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 "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "Толщина стенки древовидной поддержки" - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "Толщина стенок ответвлений древовидной поддержки. Для печати утолщенных стенок требуется больше времени, однако при этом возрастает устойчивость поддержки." - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "Количество линий стенки древовидной поддержки" - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "Количество стенок ответвлений древовидной поддержки. Для печати утолщенных стенок требуется больше времени, однако при этом возрастает устойчивость поддержки." - -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. 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 description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "Максимальный объем материала, который можно выдавить перед очередной очисткой сопла." - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "Скорость заправки при откате" - -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "Поднятие оси Z с очисткой при откате" - -#~ msgctxt "wipe_hop_enable 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 "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ 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 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 not be generated." -#~ msgstr "Минимальная площадь зоны для нижних частей поддержек. Полигоны с площадью меньше данного значения не будут генерироваться." - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "Чередование вращения оболочек" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "Изменить направление, в котором печатаются слои крышки/дна. Обычно, они печатаются по диагонали. Данный параметр добавляет направления X-только и Y-только." - -#~ 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 compensate." -#~ msgstr "Максимальное компенсируемое расстояние в миллиметрах." - -#~ msgctxt "flow_rate_extrusion_offset_factor label" -#~ msgid "Flow rate compensation factor" -#~ msgstr "Коэффициент компенсации расхода" - -#~ msgctxt "flow_rate_extrusion_offset_factor description" -#~ msgid "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "Коэффициент перевода расхода в расстояние." - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "Порог для адаптивных слоев" - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ 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." -#~ msgstr "Стенки, нависающие под углом, который больше указанного, будут напечатаны с использованием настроек нависающей стенки. Если значение составляет 90, стенки не считаются нависающими." - -#~ 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 adhestion and accuracy." -#~ msgstr "Малые элементы будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность." - -#~ msgctxt "small_feature_speed_factor_0 label" -#~ msgid "First 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 adhestion and accuracy." -#~ msgstr "Малые элементы на первом слое будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность." - -#~ msgctxt "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "Проходить по верхней оболочке ещё раз, но без выдавливания материала. Это приводит к плавлению пластика, что создаёт более гладкую поверхность." - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "Начинать печать в одном месте" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "На каждом слое печать начинается вблизи одной и той же точки, таким образом, мы не начинаем новый слой на том месте, где завершилась печать предыдущего слоя. Это улучшает печать нависаний и мелких частей, но увеличивает длительность процесса." - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ 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." -#~ msgstr "Максимальное допустимое отклонение при снижении разрешения для параметра максимального разрешения. Увеличение этого значения уменьшит точность печати и значение G-кода." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "Вариант G-кода" - -#~ 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." -#~ msgstr "Управляет влиянием углов на контуре модели на позицию шва. Нет означает отсутствие влияния. Спрятать шов означает по возможности перенести шов внутрь угла. Показать шов означает по возможности перенести шов наружу. Спрятать или показать означает выбор по ситуации." - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "Игнорирование Z зазоров" - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "Когда модель имеет небольшие вертикальные зазоры, около 5% дополнительного времени будет потрачено на вычисления верхних и нижних оболочек в этих узких пространствах. В этом случае, отключите данный параметр." - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "Температура, используемая для объема печати. Если значение равно 0, температура для объема печати не будет регулироваться." - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." -#~ msgstr "Избежание отката при перемещении от поддержки к поддержке по прямой. Активация этой настройки сокращает время печати, однако может привести к излишней строчности в поддерживающей структуре." - -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "Максимальная скорость по оси Z" - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "Максимальная скорость, с которой движется ось Z. Установка нуля в качестве значения, приводит к использованию скорости прописанной в прошивке." - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." -#~ msgstr "Максимальное расстояние между структурами поддержки по осям X/Y. Если отдельные структуры находятся ближе, чем определено данным значением, то такие структуры объединяются в одну." - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "Минимальный диаметр" - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "Минимальный диаметр по осям X/Y небольшой области, которая будет поддерживаться с помощью специальных башен." - -#~ msgctxt "prime_tower_circular label" -#~ msgid "Circular Prime Tower" -#~ msgstr "Цилиндрическая черновая башня" - -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "Делает черновую башню цилиндрической формы." - -#~ msgctxt "prime_tower_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." -#~ 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 "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "Экспериментальная возможность: Нижняя часть поддержек становится меньше, чем верхняя." - -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "Количество включенных экструдеров" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "Внешний диаметр сопла" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "Длина сопла" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "Угол сопла" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "Длина зоны нагрева" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "Скорость нагрева" - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "Скорость охлаждения" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "Вариант G-кода" - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "Запрещённые области" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "Полигон головы принтера" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "Полигон головы принтера и вентилятора" - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "Высота портала" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "Смещение экструдера" - -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "Использовать адаптивные слои" - -#~ msgctxt "adaptive_layer_height_variation label" -#~ msgid "Adaptive layers maximum variation" -#~ msgstr "Максимальная вариация адаптивных слоев" - -#~ msgctxt "adaptive_layer_height_variation_step label" -#~ msgid "Adaptive layers variation step size" -#~ msgstr "Размер шага вариации адаптивных слоев" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "Порог для адаптивных слоев" - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "Величина перекрытия между оболочкой и стенками в виде процентного отношения от ширины линии оболочки. Небольшое перекрытие позволяет стенкам надежно соединяться с оболочкой. Это значение является процентным отношением от средней ширины линии оболочки и внутренней стенки." - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Величина перекрытия между оболочкой и стенками. Небольшое перекрытие позволяет стенкам плотно соединиться с оболочкой." - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." -#~ msgstr "Величина отката: Установите 0 для отключения отката. Обычно соответствует длине зоны нагрева." - -#~ 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 and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." -#~ msgstr "Комбинг удерживает сопло внутри напечатанных зон при перемещении. Это выражается в небольшом увеличении пути, но уменьшает необходимость в откатах. При отключенном комбинге выполняется откат материала, а сопло передвигается в следующую точку по прямой. Также можно не применять комбинг над верхними/нижними областями оболочки, разрешив комбинг только в области заполнения. Обратите внимание, что опция «В области заполнения» предполагает те же действия, что и опция «Не в оболочке» более ранних выпусков Cura." - -#~ 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 happend midway over infill this feature can reduce the top surface quality." -#~ 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. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Шаблон заполняющего материала печати. Линейное и зигзагообразное заполнение меняет направление на чередующихся слоях, снижая расходы на материал. Шаблоны «сетка», «треугольник», «шестигранник из треугольников», «куб», «восьмигранник», «четверть куба», «крестовое», «концентрическое» полностью печатаются в каждом слое. Шаблоны заполнения «куб», «четверть куба», «восьмигранник» меняются в каждом слое, чтобы обеспечить более равномерное распределение прочности в каждом направлении." - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Концентрическое 3D" - -#~ 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 by combing within the infill only." -#~ msgstr "Комбинг удерживает сопло при перемещении внутри уже напечатанных зон. Это выражается в небольшом увеличении пути, но уменьшает необходимость в откатах. При отключенном комбинге выполняется откат и сопло передвигается в следующую точку по прямой. Также есть возможность не применять комбинг над областями поверхностей крышки/дна, разрешив комбинг только над заполнением." - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Концентрические 3D" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Концентрический 3D" - -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Концентрический 3D" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Концентрический 3D" - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "Дистанция между линиями подложки" - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "Толщина черновой башни" - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "Толщина полости черновой башни. Если толщина больше половины минимального объёма черновой башни, то результатом будет увеличение плотности башни." - -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "Очистка сопла после переключения" - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "После смены экструдера убираем на первой печатаемой части материал, вытекший из сопла. Выполняется безопасная медленная очистка на месте, где вытекший материал нанесёт наименьший ущерб качеству печатаемой поверхности." - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "Объём очистки черновой башни" - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "Объём материала, который будет выдавлен при очистке на черновой башне. Очистка полезна для компенсации недостатка материала из-за его вытекания при простое сопла." - -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "Максимальное нависание стенки мостика" - -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ 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." -#~ msgstr "Оптимизирует порядок, в котором печатаются стенки для уменьшения количества откатов и перемещений. Большинство моделей будут распечатываться быстрее, но не все. Сравнивайте печать с оптимизацией и без." - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "Без поверхности" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "Смена карманов креста 3D" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "Применяется только к карманам на половине шаблона креста 3D и меняет расположение карманов по высоте, когда шаблон касается сам себя." - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "Пустые объекты" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "Удаляет всё заполнение и разрешает генерацию поддержек внутри объекта." - -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "Максимальная разрешенная высота по сравнению с высотой базового уровня (в мм)." - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ 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 "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "Начало G-кода" - -#~ msgctxt "machine_start_gcode description" +#: fdmprinter.def.json +msgctxt "travel label" +msgid "Travel" +msgstr "Перемещение" + +#: fdmprinter.def.json +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Ускорение перемещения" + +#: fdmprinter.def.json +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Дистанция обхода" + +#: fdmprinter.def.json +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Рывок перемещения" + +#: fdmprinter.def.json +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Скорость перемещения" + +#: fdmprinter.def.json +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 "Рассматривать модель только в виде поверхности или как объёмы со свободными поверхностями. При нормальном режиме печатаются только закрытые объёмы. В режиме \"Поверхность\" печатается одиночная стенка по границе объекта, без заполнения, без верхних и нижних оболочек. В режиме \"Оба варианта\" печатаются закрытые объёмы как нормальные, а любые оставшиеся полигоны как поверхности." + +#: fdmprinter.def.json +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Дерево" + +#: fdmprinter.def.json +msgctxt "support_tree_angle label" +msgid "Tree Support Branch Angle" +msgstr "Угол ответвления древовидной поддержки" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter label" +msgid "Tree Support Branch Diameter" +msgstr "Диаметр ответвления древовидной поддержки" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter_angle label" +msgid "Tree Support Branch Diameter Angle" +msgstr "Угол диаметра ответвления древовидной поддержки" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance label" +msgid "Tree Support Branch Distance" +msgstr "Расстояние ответвления древовидной поддержки" + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution label" +msgid "Tree Support Collision Resolution" +msgstr "Разрешение для расчета столкновений древовидной поддержки" + +#: fdmprinter.def.json +msgctxt "support_tree_max_diameter label" +msgid "Tree Support Trunk Diameter" +msgstr "Диаметр ствола древовидной поддержки" + +#: fdmprinter.def.json +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Шестигранник из треугольников" + +#: fdmprinter.def.json +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Треугольник" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Треугольники" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Треугольники" + +#: fdmprinter.def.json +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Треугольники" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Треугольники" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Объединение перекрывающихся объёмов" + +#: fdmprinter.def.json +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 "Стенки без поддержки, которые короче указанного значения, будут напечатаны с использованием стандартных настроек стенок. Более длинные стенки без поддержки будут напечатаны с использованием настроек стенки мостика." + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Использовать адаптивные слои" + +#: fdmprinter.def.json +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Использовать башни" + +#: fdmprinter.def.json +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 "Использовать отдельный коэффициент ускорения для перемещения. Если опция отключена, то при перемещении будет использоваться значение ускорения строки в пункте назначения." + +#: fdmprinter.def.json +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 "Использовать отдельный коэффициент рывка для перемещения. Если опция отключена, то при перемещении будет использоваться значение рывка строки в пункте назначения." + +#: fdmprinter.def.json +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-кода всегда будет установлен абсолютный режим экструзии." + +#: fdmprinter.def.json +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 "Использование специальных башен для поддержки крошечных нависающих областей. Такие башни имеют диаметр больший, чем поддерживаемый ими регион. Вблизи нависаний диаметр башен увеличивается, формируя крышу." + +#: fdmprinter.def.json +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 "Использовать указанный объект для изменения заполнения других объектов, с которыми он перекрывается. Заменяет области заполнения других объектов областями для этого объекта. Предлагается только для печати одной стенки без верхних и нижних оболочек." + +#: fdmprinter.def.json +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Используйте этот объект для указания области поддержек. Может использоваться при генерации структуры поддержек." + +#: fdmprinter.def.json +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 "Используйте этот объект для указания частей модели, которые не должны рассматриваться как нависающие. Может использоваться для удаления нежелаемых структур поддержки." + +#: fdmprinter.def.json +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Пользовательский" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Вертикальный коэффициент масштабирования для компенсации усадки" + +#: fdmprinter.def.json +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 "Вертикальный допуск в нарезанных слоях. В общем случае контуры слоя создаются путем снятия поперечных сечений по середине толщины каждого слоя (Середина). Кроме того, каждый слой может иметь области, попадающие в объем по всей толщине слоя (Исключение), или области, попадающие в любое место слоя (Включение). Способ «Включение» сохраняет больше деталей, способ «Исключение» обеспечивает наилучшую подгонку, а способ «Середина» — наиболее близкое соответствие оригинальной поверхности." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Ожидать пока прогреется стол" + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Ожидать пока прогреется сопло" + +#: fdmprinter.def.json +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Ускорение стенок" + +#: fdmprinter.def.json +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Счетчик распределений по стенкам" + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Экструдер стенок" + +#: fdmprinter.def.json +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Поток для стенки" + +#: fdmprinter.def.json +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Рывок стены" + +#: fdmprinter.def.json +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Количество линий стенки" + +#: fdmprinter.def.json +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Ширина линии стенки" + +#: fdmprinter.def.json +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Порядок стенок" + +#: fdmprinter.def.json +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Скорость печати стенок" + +#: fdmprinter.def.json +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Толщина стенки" + +#: fdmprinter.def.json +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Длина перехода к стенке" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Расстояние фильтра при переходе между стенками" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Поле фильтра при переходе между стенками" + +#: fdmprinter.def.json +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Пороговый угол перехода между стенками" + +#: fdmprinter.def.json +msgctxt "shell label" +msgid "Walls" +msgstr "Стенки" + +#: fdmprinter.def.json +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, стенки не считаются выступающими. Выступающие элементы, для которых имеется поддержка, также не считаются выступающими." + +#: fdmprinter.def.json +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 "Если выбрано в случае, когда модель находится под и над поддержкой, принимает шаги данной высоты. Малые значения замедляют просчёт, а большие - могут привести к генерации поддержек в некоторых местах, где лучше бы печатать интерфейс поддержек." + +#: fdmprinter.def.json +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 "Если включено, порядок, в котором печатаются линии заполнения, оптимизируется для сокращения пройденного расстояния. Достигнутое сокращение времени перемещения в очень большой степени зависит от модели, разделяемой на слои, шаблона заполнения, плотности и т. п. Обратите внимание, что для некоторых моделей, имеющих множество небольших заполняемых областей, время разделения на слои может существенно возрасти." + +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Если включено, скорость охлаждающего вентилятора, используемого во время печати, изменяется для областей оболочки непосредственно над поддержкой." + +#: fdmprinter.def.json +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 шва привязаны к центру каждой части. Когда отключено, координаты определяются от абсолютной позиции на столе." + +#: fdmprinter.def.json +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 "При значении параметра выше нуля перемещения комбинга, превышающие заданное расстояние, будут выполняться с откатом. Когда значение параметра равно нулю, то максимума нет и перемещения комбинга выполняются без отката." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Во время печати областей оболочки мостика объем выдавленного материала умножается на указанное значение." + +#: fdmprinter.def.json +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Во время печати стенок мостика объем выдавленного материала умножается на указанное значение." + +#: fdmprinter.def.json +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 "Во время печати слоя второй оболочки мостика объем выдавленного материала умножается на указанное значение." + +#: fdmprinter.def.json +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 "Во время печати слоя третьей оболочки мостика объем выдавленного материала умножается на указанное значение." + +#: fdmprinter.def.json +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 "Когда произойдёт конфликт между параметрами минимальной скорости печати и минимальным временем печати слоя, голова принтера будет отведена от печатаемой модели и будет выдержана необходимая пауза для достижения минимального времени печати слоя." + +#: fdmprinter.def.json +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 "Если у модели имеются небольшие вертикальные зазоры, состоящие всего из нескольких слоев, вокруг этих слоев в узком пространстве, как правило, присутствует оболочка. Выбор данного параметра предотвратит создание оболочки в ситуациях, когда вертикальные зазоры очень маленькие. Это позволит сократить время печати и нарезки, но с технической точки зрения область заполнения останется открытой." + +#: fdmprinter.def.json +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 "Когда требуется создавать переходы между четным и нечетным количеством стенок. Клиновидная форма с углом, превышающим этот параметр, не будет иметь переходов, и стенки не будут напечатаны в центре для заполнения оставшегося пространства. Уменьшение значения этого параметра позволяет сократить количество и длину этих центральных стенок, но при этом могут остаться зазоры или произойти чрезмерное экструдирование." + +#: fdmprinter.def.json +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 "При переходе между разным количеством стенок по мере того, как деталь становится тоньше, выделяется определенное пространство для разделения или соединения линий стенок." + +#: fdmprinter.def.json +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 "При очистке рабочий стол опускается для создания зазора между соплом и печатаемой деталью. Это предотвращает соударение сопла и печатаемой детали во время движений, снижая вероятность смещения печатаемой детали на рабочем столе." + +#: fdmprinter.def.json +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 "При выполнении отката между соплом и печатаемой деталью создаётся зазор. Это предотвращает возможность касания сопла частей детали при его перемещении, снижая вероятность смещения детали на столе." + +#: fdmprinter.def.json +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 зазор около нависаний." + +#: fdmprinter.def.json +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 в центре области печати." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Указывает, используют ли для все экструдеры общий нагреватель или у каждого имеется отдельный." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Имеет ли принтер подогреваемый стол." + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Имеет ли принтер возможность стабилизации температуры для объема печати." + +#: fdmprinter.def.json +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), вместо использования координатной системы, в которой был сохранён объект." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 автоматически проигнорирует этот параметр." + +#: fdmprinter.def.json +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 автоматически проигнорирует этот параметр." + +#: fdmprinter.def.json +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-код очистки сопла между слоями (максимум один на слой). Включение этого параметра может повлиять на ход отката при смене слоя. Используйте параметры отката с очисткой для управления откатом на слоях, для которых используется скрипт очистки." + +#: fdmprinter.def.json +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 "Следует ли добавлять команду ожидания прогрева стола до нужной температуры перед началом печати." + +#: fdmprinter.def.json +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 "Следует ли выдавливать материал перед началом печати. Активация этого параметра обеспечивает наполнение материалом сопла экструдера перед началом печати. Печать каймы или юбки может выполнять такое же действие, тогда выключения этого параметра экономит некоторое время." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Следует ли показывать различные варианты этого принтера, которые описаны в отдельных JSON файлах." + +#: fdmprinter.def.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 для отката материала." + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Следует ли добавлять команду ожидания прогрева сопла перед началом печати." + +#: fdmprinter.def.json +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Ширина одной линии заполнения." + +#: fdmprinter.def.json +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Ширина одной линии поддержки крышки или дна." + +#: fdmprinter.def.json +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Ширина одной линии крышки." + +#: fdmprinter.def.json +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 "Ширина одной линии. Обычно, ширина каждой линии должна соответствовать диаметру сопла. Однако небольшое уменьшение этого значение приводит к лучшей печати." + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Ширина отдельной линии черновой башни." + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Ширина одной линии юбки или каймы." + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Ширина одной линии дна поддержки." + +#: fdmprinter.def.json +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Ширина одной линии крыши поддержки." + +#: fdmprinter.def.json +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Ширина одной линии поддержки." + +#: fdmprinter.def.json +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Ширина одной линии дна/крышки." + +#: fdmprinter.def.json +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Ширина одной линии стенки для всех линий стенки, кроме самой внешней." + +#: fdmprinter.def.json +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Ширина одной линии стенки." + +#: fdmprinter.def.json +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 "Ширина линий нижнего слоя подложки. Она должна быть достаточной, чтобы улучшить прилипание к столу." + +#: fdmprinter.def.json +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 "Толщина линий средних слоёв подложки. Приводит к повышенному выдавливанию материала на втором слое, для лучшего прилипания к столу." + +#: fdmprinter.def.json +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 "Ширина линий верхних слоёв подложки. Это могут быть тонкие линии, которые делают подложку гладкой." + +#: fdmprinter.def.json +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 "Ширина линии внешней стенки. Уменьшая данное значение, можно печатать более тонкие детали." + +#: fdmprinter.def.json +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 "Ширина стенки, которая заменит тонкие элементы (согласно минимальному размеру элемента) модели. Если минимальная ширина линии стенки меньше толщины элемента, толщина стенки будет приведена к толщине самого элемента." + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Позиция X очистной щетки" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Скорость поднятия при очистке" + +#: fdmprinter.def.json +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Очистка неактивного сопла на черновой башне" + +#: fdmprinter.def.json +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Расстояние перемещения при очистке" + +#: fdmprinter.def.json +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Очистка сопла между слоями" + +#: fdmprinter.def.json +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Приостановка очистки" + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Количество повторов очистки" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Расстояние отката с очисткой" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Включение отката с очисткой" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Дополнительно заполняемый объем при откате с очисткой" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Скорость заправки при откате с очисткой" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Скорость отката при откате с очисткой" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Скорость отката с очисткой" + +#: fdmprinter.def.json +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Поднятие оси Z при очистке" + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Высота поднятия оси Z при очистке" + +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "В области заполнения" + +#: fdmprinter.def.json +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 или другой прошивки с модальными командами инструментов." + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Ограничитель хода на оси X в прямом направлении" + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "Расположение X, в котором запустится скрипт очистки." + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y перекрывает Z" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Ограничитель хода на оси Y в прямом направлении" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Ограничитель хода на оси Z в прямом направлении" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Поднятие оси Z после смены экструдера" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Высота поднятия оси Z после смены экструдера" + +#: fdmprinter.def.json +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Высота поднятия оси Z" + +#: fdmprinter.def.json +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Поднятие оси Z только над напечатанными частями" + +#: fdmprinter.def.json +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Скорость поднятия оси Z" + +#: fdmprinter.def.json +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Поднятие оси Z при откате" + +#: fdmprinter.def.json +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Выравнивание шва по оси Z" + +#: fdmprinter.def.json +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Позиция Z шва" + +#: fdmprinter.def.json +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Привязка Z шва" + +#: fdmprinter.def.json +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "X координата для Z шва" + +#: fdmprinter.def.json +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Y координата для Z шва" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z перекрывает X/Y" + +#: fdmprinter.def.json +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" + +#: fdmprinter.def.json +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" + +#: fdmprinter.def.json +msgctxt "travel description" +msgid "travel" +msgstr "перемещение" + +#~ msgctxt "wireframe_strategy option compensate" +#~ msgid "Compensate" +#~ msgstr "Компенсация" + +#~ msgctxt "wireframe_top_jump description" +#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." +#~ msgstr "Создаёт небольшой узел наверху возвышающейся линии так, чтобы последующий горизонтальный слой имел больший шанс к присоединению. Применяется только при каркасной печати." + +#~ msgctxt "wireframe_bottom_delay description" +#~ msgid "Delay time after a downward move. Only applies to Wire Printing." +#~ msgstr "Задержка после движения вниз. Применяется только при каркасной печати." + +#~ msgctxt "wireframe_top_delay description" +#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." +#~ msgstr "Задержка после движения вверх, чтобы такие линии были твёрже. Применяется только при каркасной печати." + +#~ msgctxt "wireframe_flat_delay description" +#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." +#~ msgstr "Задержка между двумя горизонтальными сегментами. Внесение такой задержки может улучшить прилипание к предыдущим слоям в местах соединений, в то время как более длинные задержки могут вызывать провисания. Применяется только при нитевой печати." + +#~ msgctxt "wireframe_nozzle_clearance description" +#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." +#~ msgstr "Зазор между соплом и горизонтально нисходящими линиями. Большее значение уменьшает угол нисхождения, что приводит уменьшению восходящих соединений на следующем слое. Применяется только при каркасной печати." + +#~ msgctxt "wireframe_up_half_speed description" #~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." +#~ "Distance of an upward move which is extruded with half speed.\n" +#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." #~ msgstr "" -#~ "Команды в G-коде, которые будут выполнены при старте печати, разделённые \n" -#~ "." - -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "Конец G-кода" - -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "Команды в G-коде, которые будут выполнены в конце печати, разделённые \n" -#~ "." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "Вариант G-кода" - -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "Генерируемый вариант G-кода." - -#~ 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 GCode." -#~ msgstr "Обычно Cura пытается закрыть небольшие отверстия в объекте и убрать части слоя с большими отверстиями. Включение этого параметра сохраняет те части, что не могут быть сшиты. Этот параметр должен использоваться как последний вариант, когда уже ничего не помогает получить нормальный GCode." - -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. 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 Gcode script is output." -#~ msgstr "Использовать относительную, а не абсолютную экструзию. Использование относительной экструзии упрощает пост-обработку G-code. Однако, она не поддерживается всеми принтерами и может приводить к некоторой неточности при выдавливании материала. Независимо от этого параметра, режим экструзии будет всегда абсолютным перед выводом любого G-code скрипта." - -#~ msgctxt "infill_offset_x description" -#~ msgid "The infill pattern is offset this distance along the X axis." -#~ msgstr "Расстояние смещения шаблона заполнения по оси X." - -#~ msgctxt "infill_offset_y description" -#~ msgid "The infill pattern is offset this distance along the Y axis." -#~ msgstr "Расстояние смещения шаблона заполнения по оси Y." - -#~ msgctxt "infill_overlap 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 "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "Объём перекрытия между оболочкой и стенами в виде процента от ширины линии. Небольшое перекрытие позволяют стенам нормально соединяться с оболочкой. Это процент от средней ширины линии оболочки и внутренней стенки." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "Температура, используемая для горячего стола. Если указан 0, то горячий стол не нагревается при печати." - -#~ msgctxt "wall_x_extruder_nr label" -#~ msgid "Inner Walls Extruder" -#~ 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, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Шаблон заполнения при печати. Заполнение линиями или зиг-загом меняет направление на соседних слоях, уменьшая стоимость материала. Сетчатый, треугольный, кубический, восьмигранный и концентрический шаблоны полностью печатаются на каждом слое. Кубическое, четверть кубическое и восьмигранное заполнение меняется на каждом слое для получения более равного распределения по каждому направлению." - -#~ msgctxt "zig_zaggify_infill description" -#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -#~ 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 "z_offset_layer_0 label" -#~ msgid "Initial Layer Z Offset" -#~ msgstr "Смещение первого Z слоя" - -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "Экструдер смещается от стола на указанное значение при печати первого слоя. Значение может быть положительным (выше) или отрицательным (ниже). Некоторые типы материала связываются со столом лучше, когда экструдер чуть приподнят над столом." - -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Компенсация Z смещения" - -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "Если не ноль, то Z смещение уменьшается до 0 на указанном слое. Значение 0 указывает, что Z смещение остаётся постоянным на всех слоях печати." - -#~ msgctxt "raft_smoothing description" -#~ msgid "This setting control 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 "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, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Шаблон для материала заполнения при печати. Заполнение линиями и зигзагом меняет направление при смене слоя, уменьшая стоимость материала. Сетчатый, треугольный и концентрический шаблоны полностью печатаются на каждом слое. Кубическое и тетраэдральное заполнение меняется на каждом слое для равного распределения прочности по каждому направлению." - -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "Тетраэдр" - -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "Расширять оболочку в заполнение" - -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "Расширять области оболочки на верхних и/или нижних обшивках плоских поверхностях. По умолчанию, обшивки завершаются под линиями стенки, которые окружают заполнение, но это может приводить к отверстиям, появляющимся при малой плотности заполнения. Данный параметр расширяет обшивку позади линий стенки таким образом, что заполнение следующего слоя располагается на обшивке." - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ msgstr "Расширять верхнюю оболочку в заполнение" - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "Расширять области верхней оболочки (над ними будет воздух) так, что они поддерживают заполнение над ними." +#~ "Расстояние движения вверх, при котором выдавливание идёт на половине скорости.\n" +#~ "Это может улучшить прилипание к предыдущим слоям, не перегревая материал тех слоёв. Применяется только при каркасной печати." -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "Расширять нижнюю оболочку в заполнение" +#~ msgctxt "wireframe_fall_down description" +#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Расстояние, с которого материал падает вниз после восходящего выдавливания. Расстояние компенсируется. Применяется только при каркасной печати." -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Расширять области нижней оболочки (под ними будет воздух) так, что они сцепляются с слоями заполнения сверху и снизу." +#~ msgctxt "wireframe_drag_along description" +#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Расстояние, на которое материал от восходящего выдавливания тянется во время нисходящего выдавливания. Расстояние компенсируется. Применяется только при каркасной печати." -#~ msgctxt "expand_skins_expand_distance description" -#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." -#~ msgstr "Дистанция, на которую расширяется оболочка внутри заполнения. По умолчанию, дистанция достаточна для связывания промежутков между линиями заполнения и предотвращает появление отверстий в оболочке, где она встречается со стенкой когда плотность заполнения низкая. Меньшая дистанция чаще всего будет достаточной." +#~ msgctxt "wireframe_flow_connection description" +#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." +#~ msgstr "Компенсация потока при движении вверх и вниз. Применяется только при каркасной печати." -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "Пропускать несколько соединений при зигзаге." +#~ msgctxt "wireframe_flow_flat description" +#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." +#~ msgstr "Компенсация потока при печати плоских линий. Применяется только при каркасной печати." -#~ msgctxt "support_skip_some_zags description" -#~ msgid "Skip some ZigZags connections to make the support structure easier to break." -#~ msgstr "Пропускать несколько соединений при зигзаге, чтобы облегчить последующее удаление структуры поддержек." +#~ msgctxt "wireframe_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." +#~ msgstr "Компенсация потока: объём выдавленного материала умножается на это значение. Применяется только при каркасной печати." -#~ msgctxt "support_zag_skip_count label" -#~ msgid "ZigZag Connection Skip Count" -#~ msgstr "Количество пропускаемых соединений при зигзаге" +#~ msgctxt "wireframe_strategy option knot" +#~ msgid "Knot" +#~ msgstr "Узел" -#~ msgctxt "support_zag_skip_count description" -#~ msgid "Skip one in every N connection lines to make the support structure easier to break." -#~ msgstr "Пропускать одну в каждой N-ой линии соединений для облегчения последующего удаления структуры поддержек." +#~ msgctxt "wireframe_straight_before_down description" +#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." +#~ msgstr "Процент диагонально нисходящей линии, которая покрывается куском горизонтальной линии. Это может предотвратить провисание самых верхних точек восходящих линий. Применяется только при каркасной печати." -#~ msgctxt "machine_show_variants label" -#~ msgid "Show machine variants" -#~ msgstr "Показать варианты принтера" +#~ msgctxt "wireframe_enabled description" +#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." +#~ msgstr "Печатать только внешнюю поверхность с редкой перепончатой структурой, печатаемой \"прямо в воздухе\". Это реализуется горизонтальной печатью контуров модели с заданными Z интервалами, которые соединяются диагональными линиями." -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Wait for build plate heatup" -#~ msgstr "Ожидать пока прогреется стол" +#~ msgctxt "wireframe_strategy option retract" +#~ msgid "Retract" +#~ msgstr "Откат" -#~ msgctxt "material_print_temp_wait label" -#~ msgid "Wait for nozzle heatup" -#~ msgstr "Ожидать пока прогреется сопло" +#~ msgctxt "wireframe_printspeed description" +#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." +#~ msgstr "Скорость с которой двигается сопло, выдавая материал. Применяется только при каркасной печати." -#~ msgctxt "material_print_temp_prepend label" -#~ msgid "Include material temperatures" -#~ msgstr "Добавлять температуру из материала" +#~ msgctxt "wireframe_printspeed_down description" +#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." +#~ msgstr "Скорость печати линии диагонально вниз. Применяется только при каркасной печати." -#~ msgctxt "material_bed_temp_prepend label" -#~ msgid "Include build plate temperature" -#~ msgstr "Добавлять температуру стола" +#~ msgctxt "wireframe_printspeed_up description" +#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." +#~ msgstr "Скорость печати линии вверх \"в разрежённом воздухе\". Применяется только при каркасной печати." -#~ msgctxt "machine_width label" -#~ msgid "Machine width" -#~ msgstr "Ширина принтера" +#~ msgctxt "wireframe_printspeed_bottom description" +#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." +#~ msgstr "Скорость, с которой печатается первый слой, касающийся стола. Применяется только при каркасной печати." -#~ msgctxt "machine_depth label" -#~ msgid "Machine depth" -#~ msgstr "Глубина принтера" +#~ msgctxt "wireframe_printspeed_flat description" +#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." +#~ msgstr "Скорость, с которой печатаются горизонтальные контуры модели. Применяется только при нитевой печати." -#~ msgctxt "machine_shape label" -#~ msgid "Build plate shape" -#~ msgstr "Форма стола" +#~ msgctxt "wireframe_strategy description" +#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." +#~ msgstr "Стратегия проверки соединения двух соседних слоёв в соответствующих точках. Откат укрепляет восходящие линии в нужных местах, но может привести к истиранию нити материала. Узел может быть сделан в конце восходящей линии для повышения шанса соединения с ним и позволить линии охладиться; однако, это может потребовать пониженных скоростей печати. Другая стратегия состоит в том, чтобы компенсировать провисание вершины восходящей линии; однако, строки будут не всегда падать, как предсказано." -#~ msgctxt "machine_height label" -#~ msgid "Machine height" -#~ msgstr "Высота принтера" +#~ msgctxt "wireframe_roof_inset description" +#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." +#~ msgstr "Покрываемое расстояние при создании соединения от внешней части крыши внутрь. Применяется только при каркасной печати." -#~ msgctxt "machine_heated_bed label" -#~ msgid "Has heated build plate" -#~ msgstr "Имеет подогреваемый стол" +#~ msgctxt "wireframe_roof_drag_along description" +#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Расстояние финальной части восходящей линии, которая протягивается при возвращении к внешнему контуру крыши. Это расстояние скомпенсировано. Применяется только при каркасной печати." -#~ msgctxt "machine_center_is_zero label" -#~ msgid "Is center origin" -#~ msgstr "Начало координат в центре" +#~ msgctxt "wireframe_roof_fall_down description" +#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Расстояние, на котором линии горизонтальной крыши печатаемые \"в воздухе\" падают вниз при печати. Это расстояние скомпенсировано. Применяется только при каркасной печати." -#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -#~ msgid "RepRap (Marlin/Sprinter)" -#~ msgstr "RepRap (Marlin/Sprinter)" +#~ msgctxt "wireframe_height description" +#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." +#~ msgstr "Высота диагональных линий между двумя горизонтальными частями. Она определяет общую плотность сетевой структуры. Применяется только при каркасной печати." -#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" -#~ msgid "RepRap (Volumetric)" -#~ msgstr "RepRap (Volumetric)" +#~ msgctxt "wireframe_roof_outer_delay description" +#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." +#~ msgstr "Время, потраченное на внешних периметрах отверстия, которое станет крышей. Увеличенное время может придать прочности. Применяется только при каркасной печати." -#~ msgctxt "wall_thickness description" -#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -#~ msgstr "Толщина внешних стенок в горизонтальном направлении. Это значение, разделённое на ширину линии стенки, определяет количество линий стенки." +#~ msgctxt "wireframe_bottom_delay label" +#~ msgid "WP Bottom Delay" +#~ msgstr "Нижняя задержка (КП)" -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Величина перекрытия между оболочкой и стенками. Небольшое перекрытие позволяет стенкам плотно соединиться с оболочкой." +#~ msgctxt "wireframe_printspeed_bottom label" +#~ msgid "WP Bottom Printing Speed" +#~ msgstr "Скорость печати низа (КП)" -#~ msgctxt "support_interface_line_width description" -#~ msgid "Width of a single support interface line." -#~ msgstr "Ширина одной линии поддерживающей крыши." +#~ msgctxt "wireframe_flow_connection label" +#~ msgid "WP Connection Flow" +#~ msgstr "Поток соединений (КП)" -#~ msgctxt "sub_div_rad_mult label" -#~ msgid "Cubic Subdivision Radius" -#~ msgstr "Радиус динамического куба" +#~ msgctxt "wireframe_height label" +#~ msgid "WP Connection Height" +#~ msgstr "Высота соединений (КП)" -#~ msgctxt "sub_div_rad_mult description" -#~ msgid "A multiplier on 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 more subdivisions, i.e. more small cubes." -#~ msgstr "Коэффициент для радиуса от центра каждого куба для проверки границ модели, используется для принятия решения о разделении куба. Большие значения приводят к увеличению делений, т.е. к более мелким кубам." +#~ msgctxt "wireframe_printspeed_down label" +#~ msgid "WP Downward Printing Speed" +#~ msgstr "Скорость печати вниз (КП)" -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Upper Skins" -#~ msgstr "Расширять верхние оболочки" +#~ msgctxt "wireframe_drag_along label" +#~ msgid "WP Drag Along" +#~ msgstr "Протягивание (КП)" -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." -#~ msgstr "Расширять области верхней оболочки (над ними будет воздух) так, что они поддерживают заполнение над ними." +#~ msgctxt "wireframe_up_half_speed label" +#~ msgid "WP Ease Upward" +#~ msgstr "Ослабление вверх (КП)" -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Lower Skins" -#~ msgstr "Расширять нижние оболочки" +#~ msgctxt "wireframe_fall_down label" +#~ msgid "WP Fall Down" +#~ msgstr "Падение (КП)" -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Расширять области нижней оболочки (под ними будет воздух) так, что они сцепляются с слоями заполнения сверху и снизу." +#~ msgctxt "wireframe_flat_delay label" +#~ msgid "WP Flat Delay" +#~ msgstr "Горизонтальная задержка (КП)" -#~ msgctxt "speed_support_interface description" -#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality." -#~ msgstr "Скорость, на которой происходит печать верха и низа поддержек. Печать верха поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." +#~ msgctxt "wireframe_flow_flat label" +#~ msgid "WP Flat Flow" +#~ msgstr "Поток горизонтальных линий (КП)" -#~ msgctxt "acceleration_support_interface description" -#~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality." -#~ msgstr "Ускорение, с которым печатаются верх и низ поддержек. Их печать с пониженными ускорениями может улучшить качество печати нависающих частей." +#~ msgctxt "wireframe_flow label" +#~ msgid "WP Flow" +#~ msgstr "Поток каркасной печати" -#~ msgctxt "jerk_support_interface description" -#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." -#~ msgstr "Изменение максимальной мгновенной скорости, с которой печатается связующие слои поддержек." +#~ msgctxt "wireframe_printspeed_flat label" +#~ msgid "WP Horizontal Printing Speed" +#~ msgstr "Скорость горизонтальной печати (КП)" -#~ msgctxt "support_enable label" -#~ msgid "Enable Support" -#~ msgstr "Разрешить поддержки" +#~ msgctxt "wireframe_top_jump label" +#~ msgid "WP Knot Size" +#~ msgstr "Размер узла (КП)" -#~ msgctxt "support_enable description" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Разрешить печать поддержек. Такие структуры поддерживают части моделей со значительными навесаниями." +#~ msgctxt "wireframe_nozzle_clearance label" +#~ msgid "WP Nozzle Clearance" +#~ msgstr "Зазор сопла (КП)" -#~ msgctxt "support_interface_extruder_nr description" -#~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion." -#~ msgstr "Этот экструдер используется для печати верха и низа поддержек. Используется при наличии нескольких экструдеров." +#~ msgctxt "wireframe_roof_drag_along label" +#~ msgid "WP Roof Drag Along" +#~ 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." -#~ msgstr "Высота шагов лестнично-подобного низа поддержек, лежащих на модели. Малое значение усложняет последующее удаление поддержек, но слишком большое значение может сделать структуру поддержек нестабильной." +#~ msgctxt "wireframe_roof_fall_down label" +#~ msgid "WP Roof Fall Down" +#~ msgstr "Опадание крыши (КП)" -#~ msgctxt "support_bottom_height label" -#~ msgid "Support Bottom Thickness" -#~ msgstr "Толщина низа поддержек" +#~ msgctxt "wireframe_roof_inset label" +#~ msgid "WP Roof Inset Distance" +#~ msgstr "Расстояние крыши внутрь (КП)" -#~ msgctxt "support_bottom_height description" -#~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests." -#~ msgstr "Толщина низа поддержек. Управляет количеством плотных слоёв, которые будут напечатаны на верхних частях модели, где располагаются поддержки." +#~ msgctxt "wireframe_roof_outer_delay label" +#~ msgid "WP Roof Outer Delay" +#~ msgstr "Задержка внешней крыши (КП)" -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above 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 "Если выбрано, то поддержки печатаются с учётом указанной высоты шага. Меньшие значения нарезаются дольше, в то время как большие значения могут привести к печати обычных поддержек в таких местах, где должен быть связующий слой." +#~ msgctxt "wireframe_printspeed label" +#~ msgid "WP Speed" +#~ msgstr "Скорость каркасной печати" -#~ msgctxt "support_interface_density description" -#~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -#~ msgstr "Настройте плотность верха и низа структуры поддержек. Большее значение приведёт к улучшению нависаний, но такие поддержки будет труднее удалять." +#~ msgctxt "wireframe_straight_before_down label" +#~ msgid "WP Straighten Downward Lines" +#~ msgstr "Прямые нисходящие линии (КП)" -#~ msgctxt "support_interface_line_distance label" -#~ msgid "Support Interface Line Distance" -#~ msgstr "Дистанция между линиями связующего слоя" +#~ msgctxt "wireframe_strategy label" +#~ msgid "WP Strategy" +#~ msgstr "Стратегия (КП)" -#~ msgctxt "support_interface_line_distance description" -#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." -#~ msgstr "Расстояние между линиями связующего слоя поддержки. Этот параметр вычисляется из \"Плотности связующего слоя\", но также может быть указан самостоятельно." +#~ msgctxt "wireframe_top_delay label" +#~ msgid "WP Top Delay" +#~ 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 used to be called Joris in older versions." -#~ msgstr "Спирально сглаживать движение по оси Z, печатая внешний контур. Приводит к постоянному увеличению Z координаты во время печати. Этот параметр превращает сплошной объект в одностенную модель с твёрдым дном. Раньше этот параметр назывался Joris." +#~ msgctxt "wireframe_printspeed_up label" +#~ msgid "WP Upward Printing Speed" +#~ msgstr "Скорость печати вверх (КП)" -#~ msgctxt "material_print_temperature description" -#~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." -#~ msgstr "Температура при печати. Установите 0 для предварительного разогрева вручную." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually." -#~ msgstr "Температура стола при печати. Установите 0 для предварительного разогрева вручную." - -#~ 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. This value is rounded down to a multiple of the layer height." -#~ msgstr "Расстояние между верхом/низом структуры поддержек и печатаемой моделью. Этот зазор упрощает последующее удаление поддержек. Это значение округляется вниз и кратно высоте слоя." - -#~ msgctxt "machine_extruder_count label" -#~ msgid "Number extruders" -#~ msgstr "Количество экструдеров" - -#~ msgctxt "machine_heat_zone_length description" -#~ msgid "The distance from the tip of the nozzle in which heat from the nozzle is transfered to the filament." -#~ 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 at the back, 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 "Back" -#~ msgstr "Позади" - -#~ msgctxt "retraction_hop_enabled label" -#~ msgid "Z Hop when Retracted" -#~ msgstr "Поднятие оси 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." -#~ 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 by combing within the infill only. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -#~ msgstr "Комбинг удерживает сопло при перемещении внутри уже напечатанных зон. Это приводит к небольшому увеличению пути, но уменьшает необходимость в откатах. При отключенном комбинге выполняется откат и сопло передвигается в следующую точку по прямой. Также есть возможность не применять комбинг над областями поверхностей крышки/дна, разрешив комбинг только над заполнением." - -#~ msgctxt "travel_avoid_other_parts label" -#~ msgid "Avoid Printed Parts when Traveling" -#~ 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 zero to regular fan speed." -#~ 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." -#~ msgstr "Минимальное время, затрачиваемое на печать слоя. Эта величина заставляет принтер замедлиться, чтобы уложиться в указанное время при печати слоя. Это позволяет материалу остыть до нужной температуры перед печатью следующего слоя." - -#~ msgctxt "prime_tower_wipe_enabled label" -#~ msgid "Wipe Nozzle on Prime Tower" -#~ msgstr "Вытирать сопло о черновую башню" - -#~ msgctxt "multiple_mesh_overlap label" -#~ msgid "Dual Extrusion Overlap" -#~ msgstr "Перекрытие двойной экструзии" - -#~ msgctxt "multiple_mesh_overlap description" -#~ msgid "Make the models printed with different extruder trains overlap a bit. This makes the different materials bond together better." -#~ msgstr "Приводит к небольшому перекрытию моделей, напечатанных разными экструдерами. Это приводит к лучшей связи двух материалов друг с другом." - -#~ msgctxt "meshfix_union_all description" -#~ msgid "Ignore the internal geometry arising from overlapping volumes and print the volumes as one. This may cause internal cavities to disappear." -#~ msgstr "Игнорирование внутренней геометрии, возникшей при объединении объёмов и печать объёмов как единого целого. Это может привести к исчезновению внутренних поверхностей." - -#~ msgctxt "carve_multiple_volumes description" -#~ msgid "Remove areas where multiple objecs are overlapping with each other. This is may be used if merged dual material objects overlap with each other." -#~ msgstr "Удаляет области где несколько объектов перекрываются друг с другом. Можно использовать при пересечении объединённых мультиматериальных объектов." - -#~ msgctxt "remove_overlapping_walls_enabled label" -#~ msgid "Remove Overlapping Wall Parts" -#~ msgstr "Удаление перекрывающихся частей стены" - -#~ msgctxt "remove_overlapping_walls_enabled description" -#~ msgid "Remove parts of a wall which share an overlap which would result in overextrusion in some places. These overlaps occur in thin parts and sharp corners in models." -#~ msgstr "Удаляет части стены, которые перекрываются. что приводит к появлению излишков материала в некоторых местах. Такие перекрытия образуются в тонких частях и острых углах моделей." - -#~ msgctxt "remove_overlapping_walls_0_enabled label" -#~ msgid "Remove Overlapping Outer Wall Parts" -#~ msgstr "Удаление перекрывающихся частей внешних стенок" - -#~ msgctxt "remove_overlapping_walls_0_enabled description" -#~ msgid "Remove parts of an outer wall which share an overlap which would result in overextrusion in some places. These overlaps occur in thin pieces in a model and sharp corners." -#~ msgstr "Удаляет части внешней стены, которые перекрываются, что приводит к появлению излишков материала в некоторых местах. Такие перекрытия образуются в тонких частях и острых углах моделей." - -#~ msgctxt "remove_overlapping_walls_x_enabled label" -#~ msgid "Remove Overlapping Inner Wall Parts" -#~ msgstr "Удаление перекрывающихся частей внутренних стенок" - -#~ msgctxt "remove_overlapping_walls_x_enabled description" -#~ msgid "Remove parts of an inner wall that would otherwise overlap and cause over-extrusion. These overlaps occur in thin pieces in a model and sharp corners." -#~ msgstr "Удаляет части внутренних стенок, которые в противном случае будут перекрываться и приводить к появлению излишков материала. Такие перекрытия образуются в тонких частях и острых углах моделей." - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls when overlapping inner wall parts are removed." -#~ msgstr "Заполняет зазоры между стенами после того, как перекрывающиеся части внутренних стенок были удалены." - -#~ msgctxt "infill_line_distance label" -#~ msgid "Line Distance" -#~ msgstr "Дистанция заполнения" - -#~ msgctxt "retraction_combing label" -#~ msgid "Enable Combing" -#~ msgstr "Разрешить комбинг" - -#~ msgctxt "support_type label" -#~ msgid "Placement" -#~ msgstr "Размещение" - -#~ msgctxt "support_xy_distance label" -#~ msgid "X/Y Distance" -#~ msgstr "Дистанция X/Y" - -#~ msgctxt "support_z_distance label" -#~ msgid "Z Distance" -#~ msgstr "Z дистанция" - -#~ msgctxt "support_top_distance label" -#~ msgid "Top Distance" -#~ msgstr "Дистанция сверху" - -#~ msgctxt "support_join_distance label" -#~ msgid "Join Distance" -#~ msgstr "Дистанция объединения" - -#~ msgctxt "support_area_smoothing label" -#~ msgid "Area Smoothing" -#~ msgstr "Сглаживание зон" - -#~ msgctxt "support_area_smoothing description" -#~ msgid "Maximum distance in the X/Y directions of a line segment which is to be smoothed out. Ragged lines are introduced by the join distance and support bridge, which cause the machine to resonate. Smoothing the support areas won't cause them to break with the constraints, except it might change the overhang." -#~ msgstr "Максимальное расстояние по осям X/Y в сегменте линии, которая подлежит сглаживанию. Неровные линии появляются при дистанции объединения и поддержке в виде моста, что заставляет принтер резонировать. Сглаживание зон поддержек не приводит к нарушению ограничений, кроме возможных изменений в навесаниях." - -#~ msgctxt "support_roof_height description" -#~ msgid "The thickness of the support roofs." -#~ msgstr "Толщина поддерживающей крыши." - -#~ msgctxt "support_conical_angle label" -#~ msgid "Cone Angle" -#~ msgstr "Угол конуса" - -#~ msgctxt "support_conical_min_width label" -#~ msgid "Cone Minimal Width" -#~ msgstr "Минимальная ширина конуса" - -#~ msgctxt "adhesion_type label" -#~ msgid "Type" -#~ msgstr "Тип" - -#~ msgctxt "raft_surface_speed label" -#~ msgid "Raft Surface Print Speed" -#~ msgstr "Скорость печати поверхности подложки" - -#~ msgctxt "raft_interface_speed label" -#~ msgid "Raft Interface Print Speed" -#~ msgstr "Скорость печати связи подложки" - -#~ msgctxt "raft_interface_speed description" -#~ msgid "The speed at which the interface 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_fan_speed label" -#~ msgid "Raft Surface Fan Speed" -#~ msgstr "Скорость вентилятора для поверхности подложки" - -#~ msgctxt "raft_surface_fan_speed description" -#~ msgid "The fan speed for the surface raft layers." -#~ msgstr "Скорость вращения вентилятора при печати поверхности слоёв подложки." - -#~ msgctxt "raft_interface_fan_speed label" -#~ msgid "Raft Interface Fan Speed" -#~ msgstr "Скорость вентилятора для связующего слоя" - -#~ msgctxt "magic_mesh_surface_mode description" -#~ msgid "Print the surface instead of the volume. No infill, no top/bottom skin, just a single wall of which the middle coincides with the surface of the mesh. It's also possible to do both: print the insides of a closed volume as normal, but print all polygons not part of a closed volume as surface." -#~ msgstr "Печатать только поверхность. Никакого заполнения, никаких верхних нижних поверхностей, просто одна стенка, которая совпадает с поверхностью объекта. Позволяет делать и печать внутренностей закрытого объёма в виде нормалей, и печать всех полигонов, не входящих в закрытый объём, в виде поверхностей." +#~ msgctxt "wireframe_enabled label" +#~ msgid "Wire Printing" +#~ msgstr "Каркасная печать (КП)" diff --git a/resources/i18n/tr_TR/cura.po b/resources/i18n/tr_TR/cura.po index cf8093f91f..9eb56d3f3b 100644 --- a/resources/i18n/tr_TR/cura.po +++ b/resources/i18n/tr_TR/cura.po @@ -1,12 +1,14 @@ # Cura -# Copyright (C) 2022 Ultimaker B.V. +# Copyright (C) 2022 UltiMaker. # This file is distributed under the same license as the Cura package. +# Ultimaker , 2022. # +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0200\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-04-06 15:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,199 +18,77 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -msgctxt "@label" -msgid "Unknown" -msgstr "Bilinmiyor" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "Aşağıdaki yazıcı(lar) bir grubun parçası olmadıkları için bağlanamıyor" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Mevcut ağ yazıcıları" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Geçersiz kılınmadı" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Connected printers" -msgstr "Bağlı yazıcılar" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Preset printers" -msgstr "Önayarlı yazıcılar" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:143 -#, 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} yazıcısını kaldırmak istediğinizden emin misiniz? Bu işlem geri alınamaz!" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:61 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 -msgctxt "@label" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:65 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Görsel" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:66 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "Görsel profili, yüksek görsel ve yüzey kalitesi oluşturmak amacıyla, görsel prototipler ve modeller basılması için tasarlanmıştır." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:70 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "Mühendislik profili, daha yüksek doğruluk ve daha yakın toleranslar sağlamak amacıyla, işlevsel prototipler ve son kullanım parçaları basılması için tasarlanmıştır." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:75 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Taslak" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:76 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "Taslak profili, baskı süresinin önemli ölçüde kısaltılması amacıyla, birincil prototipler basılması ve konsept doğrulaması yapılması için tasarlanmıştır." - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:232 -msgctxt "@label" -msgid "Custom Material" -msgstr "Özel Malzeme" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:233 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 -msgctxt "@label" -msgid "Custom" -msgstr "Özel" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:391 -msgctxt "@label" -msgid "Custom profiles" -msgstr "Özel profiller" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:426 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Tüm desteklenen türler ({0})" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Tüm Dosyalar (*)" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Hesaplanmış" - -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 +#: cura/API/Account.py:199 msgctxt "@info:title" msgid "Login failed" msgstr "Giriş başarısız" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: cura/Arranging/ArrangeObjectsJob.py:25 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Nesneler için yeni konum bulunuyor" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: cura/Arranging/ArrangeObjectsJob.py:29 msgctxt "@info:title" msgid "Finding Location" msgstr "Konumu Buluyor" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Yapılan hacim içinde tüm nesneler için konum bulunamadı" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: cura/Arranging/ArrangeObjectsJob.py:43 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Konum Bulunamıyor" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:115 +#: cura/Backups/Backup.py:115 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Kullanıcı veri dizininden arşiv oluşturulamadı: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:159 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +#: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159 +#: plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: plugins/CuraDrive/src/DrivePluginExtension.py:126 msgctxt "@info:title" msgid "Backup" msgstr "Yedekle" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:134 +#: cura/Backups/Backup.py:134 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ı." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:145 +#: cura/Backups/Backup.py:145 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that is higher than the current version." msgstr "Geçerli sürümünüzden yüksek bir sürüme sahip bir Cura yedeği geri yüklenmeye çalışıldı." -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:158 +#: cura/Backups/Backup.py:158 msgctxt "@info:backup_failed" msgid "The following error occurred while trying to restore a Cura backup:" msgstr "Cura yedeklemesi geri yüklenmeye çalışılırken aşağıdaki hata oluştu:" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: cura/BuildVolume.py:100 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." msgstr "Portalın yazdırılan modeller ile çarpışmasını önlemek için yapı hacmi yüksekliği “Sıralamayı Yazdır” ayarı nedeniyle azaltıldı." -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 +#: cura/BuildVolume.py:103 msgctxt "@info:title" msgid "Build Volume" msgstr "Yapı Disk Bölümü" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura başlatılamıyor" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" -"

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

    \n" +"

    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" @@ -220,32 +100,32 @@ msgstr "" "

    Sorunu düzeltmek için lütfen bu Çökme Raporunu bize gönderin.

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: cura/CrashHandler.py:122 msgctxt "@action:button" -msgid "Send crash report to Ultimaker" -msgstr "Çökme raporunu Ultimaker’a gönder" +msgid "Send crash report to UltiMaker" +msgstr "Çökme raporunu UltiMaker’a gönder" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Ayrıntılı çökme raporu göster" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Yapılandırma Klasörünü Göster" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Yapılandırmayı Yedekle ve Sıfırla" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Çökme Raporu" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

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

    \n" @@ -256,573 +136,2241 @@ msgstr "" "

    Sunucularımıza otomatik olarak bir hata raporu yüklemek için lütfen "Rapor gönder" düğmesini kullanın

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Sistem bilgileri" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Bilinmiyor" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura sürümü" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Cura dili" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "İşletim sistemi dili" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" -msgstr "Platform" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qt Sürümü" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQt Sürümü" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized" -msgstr "" +msgstr "Henüz başlatılmadı" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL Sürümü: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL Satıcısı: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL Oluşturucusu: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 +#: cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Hata geri izleme" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 +#: cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Günlükler" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 +#: cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Rapor gönder" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:531 +#: cura/CuraApplication.py:540 msgctxt "@info:progress" msgid "Loading machines..." msgstr "Makineler yükleniyor..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +#: cura/CuraApplication.py:547 msgctxt "@info:progress" msgid "Setting up preferences..." msgstr "Tercihler ayarlanıyor..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +#: cura/CuraApplication.py:692 msgctxt "@info:progress" msgid "Initializing Active Machine..." msgstr "Etkin Makine Başlatılıyor..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +#: cura/CuraApplication.py:839 msgctxt "@info:progress" msgid "Initializing machine manager..." msgstr "Makine yöneticisi başlatılıyor..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +#: cura/CuraApplication.py:853 msgctxt "@info:progress" msgid "Initializing build volume..." msgstr "Yapı hacmi başlatılıyor..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +#: cura/CuraApplication.py:921 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "Görünüm ayarlanıyor..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +#: cura/CuraApplication.py:957 msgctxt "@info:progress" msgid "Loading interface..." msgstr "Arayüz yükleniyor..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +#: cura/CuraApplication.py:962 msgctxt "@info:progress" msgid "Initializing engine..." msgstr "Motor başlatılıyor..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#: cura/CuraApplication.py:1290 #, 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" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1798 +#: cura/CuraApplication.py:1816 #, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Aynı anda yalnızca bir G-code dosyası yüklenebilir. {0} içe aktarma atlandı" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 +#: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 msgctxt "@info:title" msgid "Warning" msgstr "Uyarı" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#: cura/CuraApplication.py:1828 #, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "G-code yüklenirken başka bir dosya açılamaz. {0} içe aktarma atlandı" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1812 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156 +#: cura/Settings/CuraContainerRegistry.py:166 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 msgctxt "@info:title" msgid "Error" msgstr "Hata" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 +#: cura/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Bilinmiyor" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "Aşağıdaki yazıcı(lar) bir grubun parçası olmadıkları için bağlanamıyor" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Mevcut ağ yazıcıları" + +#: cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Geçersiz kılınmadı" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:28 +msgctxt "@label" +msgid "Connected printers" +msgstr "Bağlı yazıcılar" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +msgctxt "@label" +msgid "Preset printers" +msgstr "Önayarlı yazıcılar" + +#: cura/Machines/Models/GlobalStacksModel.py:165 +#, 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} yazıcısını kaldırmak istediğinizden emin misiniz? Bu işlem geri alınamaz!" + +#: cura/Machines/Models/IntentCategoryModel.py:42 +#: cura/Machines/Models/IntentSelectionModel.py:61 +#: cura/Machines/Models/IntentTranslations.py:11 +#: cura/Machines/Models/QualityManagementModel.py:347 +msgctxt "@label" +msgid "Default" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:45 +#: cura/Machines/Models/IntentSelectionModel.py:65 +#: cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "Görsel" + +#: cura/Machines/Models/IntentCategoryModel.py:46 +#: cura/Machines/Models/IntentSelectionModel.py:66 +#: cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "Görsel profili, yüksek görsel ve yüzey kalitesi oluşturmak amacıyla, görsel prototipler ve modeller basılması için tasarlanmıştır." + +#: cura/Machines/Models/IntentCategoryModel.py:49 +#: cura/Machines/Models/IntentSelectionModel.py:70 +#: cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:50 +#: cura/Machines/Models/IntentSelectionModel.py:71 +#: cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "Mühendislik profili, daha yüksek doğruluk ve daha yakın toleranslar sağlamak amacıyla, işlevsel prototipler ve son kullanım parçaları basılması için tasarlanmıştır." + +#: cura/Machines/Models/IntentCategoryModel.py:53 +#: cura/Machines/Models/IntentSelectionModel.py:75 +#: cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "Taslak" + +#: cura/Machines/Models/IntentCategoryModel.py:54 +#: cura/Machines/Models/IntentSelectionModel.py:76 +#: cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "Taslak profili, baskı süresinin önemli ölçüde kısaltılması amacıyla, birincil prototipler basılması ve konsept doğrulaması yapılması için tasarlanmıştır." + +#: cura/Machines/Models/MaterialManagementModel.py:232 +msgctxt "@label" +msgid "Custom Material" +msgstr "Özel Malzeme" + +#: cura/Machines/Models/MaterialManagementModel.py:233 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 +msgctxt "@label" +msgid "Custom" +msgstr "Özel" + +#: cura/Machines/Models/QualityManagementModel.py:400 +msgctxt "@label" +msgid "Custom profiles" +msgstr "Özel profiller" + +#: cura/Machines/Models/QualityManagementModel.py:435 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Tüm desteklenen türler ({0})" + +#: cura/Machines/Models/QualityManagementModel.py:436 +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Tüm Dosyalar (*)" + +#: cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Hesaplanmış" + +#: cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Nesneler çoğaltılıyor ve yerleştiriliyor" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 +#: cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "Nesneler Yerleştiriliyor" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 +#: cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Nesne Yerleştiriliyor" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +#: cura/OAuth2/AuthorizationHelpers.py:89 msgctxt "@message" msgid "Could not read response." msgstr "Yanıt okunamadı." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +#: cura/OAuth2/AuthorizationRequestHandler.py:75 msgctxt "@message" msgid "The provided state is not correct." msgstr "Sağlanan durum doğru değil." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +#: cura/OAuth2/AuthorizationRequestHandler.py:80 msgctxt "@message" msgid "Timeout when authenticating with the account server." msgstr "Hesap sunucusuyla kimlik doğrulaması yapılırken zaman aşımı oluştu." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +#: cura/OAuth2/AuthorizationRequestHandler.py:97 msgctxt "@message" msgid "Please give the required permissions when authorizing this application." msgstr "Lütfen bu başvuruya yetki verirken gerekli izinleri verin." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +#: cura/OAuth2/AuthorizationRequestHandler.py:104 msgctxt "@message" msgid "Something unexpected happened when trying to log in, please try again." msgstr "Oturum açmaya çalışırken beklenmeyen bir sorun oluştu, lütfen tekrar deneyin." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:216 +#: cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Yeni bir oturum açma işlemi başlatılamıyor. Başka bir aktif oturum açma girişimi olup olmadığını kontrol edin." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:277 +#: cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." +msgid "Unable to reach the UltiMaker account server." msgstr "Ultimaker hesabı sunucusuna ulaşılamadı." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 +#: cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" msgid "Log-in failed" msgstr "Giriş başarısız" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +#: cura/PrinterOutput/UploadMaterialsJob.py:104 msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Yazıcılarla senkronize edilecek malzeme arşivi oluşturulamadı." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +#: cura/PrinterOutput/UploadMaterialsJob.py:111 +#: cura/PrinterOutput/UploadMaterialsJob.py:165 msgctxt "@text:error" msgid "Failed to load the archive of materials to sync it with printers." msgstr "Yazıcılarla senkronize etmek için malzeme arşivi oluşturulamadı." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +#: cura/PrinterOutput/UploadMaterialsJob.py:143 msgctxt "@text:error" msgid "The response from Digital Factory appears to be corrupted." msgstr "Digital Factory'den gelen yanıt bozuk görünüyor." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +#: cura/PrinterOutput/UploadMaterialsJob.py:147 +#: cura/PrinterOutput/UploadMaterialsJob.py:151 +#: cura/PrinterOutput/UploadMaterialsJob.py:155 msgctxt "@text:error" msgid "The response from Digital Factory is missing important information." msgstr "Digital Factory'den gelen yanıtta önemli bilgiler eksik." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +#: cura/PrinterOutput/UploadMaterialsJob.py:218 msgctxt "@text:error" msgid "Failed to connect to Digital Factory to sync materials with some of the printers." msgstr "Malzemeleri bazı yazıcılarla senkronize etmek için Digital Factory'ye bağlanılamadı." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +#: cura/PrinterOutput/UploadMaterialsJob.py:232 msgctxt "@text:error" msgid "Failed to connect to Digital Factory." msgstr "Digital Factory'ye bağlanılamadı." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:207 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: cura/Settings/ActiveQuality.py:43 +msgctxt "@label" +msgid "Experimental" +msgstr "Deneysel" + +#: cura/Settings/ContainerManager.py:207 +#: cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "Dosya Zaten Mevcut" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: cura/Settings/ContainerManager.py:208 +#: cura/Settings/CuraContainerRegistry.py:141 #, 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 "Dosya {0} zaten mevcut. Üstüne yazmak istediğinizden emin misiniz?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 +#: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "Geçersiz dosya URL’si:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Profilin {0} dosyasına aktarımı başarısız oldu: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Profilin {0} dosyasına aktarımı başarısız oldu: Yazıcı eklentisinde rapor edilen hata." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profil {0} dosyasına aktarıldı" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Dışa aktarma başarılı" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "{0} dosyasından profil içe aktarımı başarısız oldu: {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: cura/Settings/CuraContainerRegistry.py:209 #, 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 "Yazıcı eklenmeden önce profil, {0} dosyasından içe aktarılamaz." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "{0} dosyasında içe aktarılabilecek özel profil yok" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "{0} dosyasından profil içe aktarımı başarısız oldu:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: cura/Settings/CuraContainerRegistry.py:252 +#: cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Bu {0} profili yanlış veri içeriyor, içeri aktarılamadı." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "{0} dosyasından profil içe aktarımı başarısız oldu:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "{0} profili başarıyla içe aktarıldı." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Dosya {0} geçerli bir profil içermemekte." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Profil {0} öğesinde bilinmeyen bir dosya türü var veya profil bozuk." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Özel profil" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Profilde eksik bir kalite tipi var." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Henüz etkin bir yazıcı yok." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Profil eklenemiyor." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "'{0}' kalite tipi, mevcut aktif makine tanımı '{1}' ile uyumlu değil." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: cura/Settings/CuraContainerRegistry.py:488 #, 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 "Uyarı: Profilin '{0}' kalite tipi, mevcut yapılandırma için kullanılabilir olmadığından profil görünür değil. Bu kalite tipini kullanabilen malzeme/nozül kombinasyonuna geçiş yapın." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Desteklenmiyor" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:219 +#: cura/Settings/MachineManager.py:746 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:221 msgctxt "@label" msgid "Nozzle" msgstr "Nozül" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +#: cura/Settings/MachineManager.py:890 msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Ayarlar, ekstrüderlerin mevcut kullanılabilirliğine uyacak şekilde değiştirildi:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: cura/Settings/MachineManager.py:891 msgctxt "@info:title" msgid "Settings updated" msgstr "Ayarlar güncellendi" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 +#: cura/Settings/MachineManager.py:1514 msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Ekstrüder(ler) Devre Dışı Bırakıldı" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 +#: cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Desteklenmiyor" + +#: cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "" + +#: cura/UI/AddPrinterPagesModel.py:17 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" msgid "Add" msgstr "Ekle" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:290 +#: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290 msgctxt "@action:button" msgid "Finish" msgstr "Bitir" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:508 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:323 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:291 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:74 +#: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386 +#: plugins/ImageReader/ConfigUI.qml:323 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 +#: resources/qml/ColorDialog.qml:143 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: resources/qml/Dialogs/RenameDialog.qml:103 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 msgctxt "@action:button" msgid "Cancel" msgstr "İptal Et" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: cura/UI/ObjectsModel.py:69 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Grup #{group_nr}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 +#: cura/UI/PrintInformation.py:87 msgctxt "@tooltip" msgid "Outer Wall" msgstr "Dış Duvar" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +#: cura/UI/PrintInformation.py:88 msgctxt "@tooltip" msgid "Inner Walls" msgstr "İç Duvarlar" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +#: cura/UI/PrintInformation.py:89 msgctxt "@tooltip" msgid "Skin" msgstr "Yüzey Alanı" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +#: cura/UI/PrintInformation.py:90 msgctxt "@tooltip" msgid "Infill" msgstr "Dolgu" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +#: cura/UI/PrintInformation.py:91 msgctxt "@tooltip" msgid "Support Infill" msgstr "Destek Dolgusu" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +#: cura/UI/PrintInformation.py:92 msgctxt "@tooltip" msgid "Support Interface" msgstr "Destek Arayüzü" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +#: cura/UI/PrintInformation.py:93 msgctxt "@tooltip" msgid "Support" msgstr "Destek" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +#: cura/UI/PrintInformation.py:94 msgctxt "@tooltip" msgid "Skirt" msgstr "Etek" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +#: cura/UI/PrintInformation.py:95 msgctxt "@tooltip" msgid "Prime Tower" msgstr "Astarlama Direği" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +#: cura/UI/PrintInformation.py:96 msgctxt "@tooltip" msgid "Travel" msgstr "Hareket" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +#: cura/UI/PrintInformation.py:97 msgctxt "@tooltip" msgid "Retractions" msgstr "Geri Çekmeler" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +#: cura/UI/PrintInformation.py:98 msgctxt "@tooltip" msgid "Other" msgstr "Diğer" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:63 +#: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63 msgctxt "@text:window" msgid "The release notes could not be opened." msgstr "Sürüm notları açılamadı." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:277 +#: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277 msgctxt "@action:button" msgid "Next" msgstr "Sonraki" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68 msgctxt "@action:button" msgid "Skip" msgstr "Atla" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:443 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:186 +#: cura/UI/WhatsNewPagesModel.py:76 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444 +#: resources/qml/Dialogs/AboutDialog.qml:188 msgctxt "@action:button" msgid "Close" msgstr "Kapat" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: cura/UltimakerCloud/CloudMaterialSync.py:66 msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Lütfen baskıya başlamadan önce malzeme profillerini yazıcılarınızla senkronize edin." -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: cura/UltimakerCloud/CloudMaterialSync.py:67 msgctxt "@action:button" msgid "New materials installed" msgstr "Yeni malzemeler yüklendi" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: cura/UltimakerCloud/CloudMaterialSync.py:74 msgctxt "@action:button" msgid "Sync materials" msgstr "Malzemeleri senkronize et" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:397 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:80 +#: cura/UltimakerCloud/CloudMaterialSync.py:82 +#: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80 msgctxt "@action:button" msgid "Learn more" msgstr "Daha fazla bilgi edinin" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +#: cura/UltimakerCloud/CloudMaterialSync.py:135 msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Malzeme arşivi {} konumuna kaydedilemedi:" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +#: cura/UltimakerCloud/CloudMaterialSync.py:136 msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Malzeme arşivi kaydedilemedi" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +#: cura/UltimakerCloud/CloudMaterialSync.py:188 msgctxt "@text" msgid "Unknown error." msgstr "Bilinmeyen hata." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:558 +#, 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 "Proje dosyası {0} bilinmeyen bir makine tipi içeriyor: {1}. Makine alınamıyor. Bunun yerine modeller alınacak." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:561 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "Proje Dosyası Aç" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: plugins/3MFReader/WorkspaceDialog.qml:99 +#: plugins/3MFReader/WorkspaceDialog.qml:127 +#: plugins/3MFReader/WorkspaceDialog.qml:134 +msgctxt "@button" +msgid "Create new" +msgstr "Yeni oluştur" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:692 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "{0} proje dosyası aniden erişilemez oldu: {1}." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:720 +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "Proje Dosyası Açılamıyor" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:700 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:718 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "Proje dosyası {0} bozuk: {1}." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:765 +#, 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} proje dosyası, Ultimaker Cura'nın bu sürümünde bilinmeyen profiller kullanılarak yapılmış." + +#: plugins/3MFReader/WorkspaceDialog.py:233 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Önerilen Ayarlar" + +#: plugins/3MFReader/WorkspaceDialog.py:235 +msgctxt "@title:tab" +msgid "Custom" +msgstr "Özel" + +#: plugins/3MFReader/WorkspaceDialog.py:411 +msgctxt "@info:status" +msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." +msgstr "Bu projede kullanılan malzeme, Cura'da bulunmayan birtakım malzeme tanımlarını temel alıyor ve bu durum, istenmeyen baskı sonuçlarına sebep olabilir. Mağazadan tam malzeme paketini kurmanızı öneririz." + +#: plugins/3MFReader/WorkspaceDialog.py:413 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "Malzeme profilleri yüklü değil" + +#: plugins/3MFReader/WorkspaceDialog.py:426 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "Malzeme Yükle" + +#: plugins/3MFReader/WorkspaceDialog.qml:15 +msgctxt "@title:window" +msgid "Open Project" +msgstr "Proje Aç" + +#: plugins/3MFReader/WorkspaceDialog.qml:31 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61 +msgctxt "@action:title" +msgid "Summary - Cura Project" +msgstr "Özet - Cura Projesi" + +#: plugins/3MFReader/WorkspaceDialog.qml:65 +msgctxt "@action:ComboBox Update/override existing profile" +msgid "Update existing" +msgstr "Var olanları güncelleştir" + +#: plugins/3MFReader/WorkspaceDialog.qml:66 +msgctxt "@action:ComboBox Save settings in a new profile" +msgid "Create new" +msgstr "Yeni oluştur" + +#: plugins/3MFReader/WorkspaceDialog.qml:83 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97 +msgctxt "@action:label" +msgid "Printer settings" +msgstr "Yazıcı ayarları" + +#: plugins/3MFReader/WorkspaceDialog.qml:92 +#: plugins/3MFReader/WorkspaceRow.qml:23 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106 +msgctxt "@action:label" +msgid "Type" +msgstr "Tür" + +#: plugins/3MFReader/WorkspaceDialog.qml:98 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +msgctxt "@action:label" +msgid "Printer Group" +msgstr "Yazıcı Grubu" + +#: plugins/3MFReader/WorkspaceDialog.qml:103 +msgctxt "@action:label" +msgid "Open With" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:104 +msgctxt "@info:tooltip" +msgid "Printer settings will be updated to match the settings saved with the project." +msgstr "Yazıcı ayarları, projeyle birlikte kaydedilen ayarlarla eşleşecek şekilde güncellenir." + +#: plugins/3MFReader/WorkspaceDialog.qml:156 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222 +msgctxt "@action:label" +msgid "Profile settings" +msgstr "Profil ayarları" + +#: plugins/3MFReader/WorkspaceDialog.qml:166 +#: plugins/3MFReader/WorkspaceDialog.qml:238 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246 +msgctxt "@action:label" +msgid "Name" +msgstr "İsim" + +#: plugins/3MFReader/WorkspaceDialog.qml:172 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263 +msgctxt "@action:label" +msgid "Intent" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:178 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230 +msgctxt "@action:label" +msgid "Not in profile" +msgstr "Profilde değil" + +#: plugins/3MFReader/WorkspaceDialog.qml:179 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235 +msgctxt "@action:label" +msgid "%1 override" +msgid_plural "%1 overrides" +msgstr[0] "%1 geçersiz kılma" +msgstr[1] "%1 geçersiz kılmalar" + +#: plugins/3MFReader/WorkspaceDialog.qml:185 +msgctxt "@action:label" +msgid "Derivative from" +msgstr "Kaynağı" + +#: plugins/3MFReader/WorkspaceDialog.qml:186 +msgctxt "@action:label" +msgid "%1, %2 override" +msgid_plural "%1, %2 overrides" +msgstr[0] "%1, %2 geçersiz kılma" +msgstr[1] "%1, %2 geçersiz kılmalar" + +#: plugins/3MFReader/WorkspaceDialog.qml:226 +msgctxt "@action:label" +msgid "Material settings" +msgstr "Malzeme ayarları" + +#: plugins/3MFReader/WorkspaceDialog.qml:280 +msgctxt "@action:label" +msgid "Setting visibility" +msgstr "Görünürlük ayarı" + +#: plugins/3MFReader/WorkspaceDialog.qml:290 +msgctxt "@action:label" +msgid "Mode" +msgstr "Mod" + +#: plugins/3MFReader/WorkspaceDialog.qml:296 +msgctxt "@action:label" +msgid "%1 out of %2" +msgstr "%1 / %2" + +#: plugins/3MFReader/WorkspaceDialog.qml:321 +msgctxt "@action:warning" +msgid "Loading a project will clear all models on the build plate." +msgstr "Bir projenin yüklenmesi derleme levhasındaki tüm modelleri siler." + +#: plugins/3MFReader/WorkspaceDialog.qml:367 +msgctxt "@label" +msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." +msgstr "Bu projede kullanılan malzeme şu anda Cura’da yüklü değil.
    Malzeme profilini yükleyin ve projeyi yeniden açın." + +#: plugins/3MFReader/WorkspaceDialog.qml:392 +msgctxt "@action:button" +msgid "Open" +msgstr "Aç" + +#: plugins/3MFReader/WorkspaceDialog.qml:398 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "Projeyi yine de aç" + +#: plugins/3MFReader/WorkspaceDialog.qml:407 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "Eksik malzemeyi yükle" + +#: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33 +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "3MF Dosyası" + +#: plugins/3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF Okuyucu" + +#: plugins/3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "3MF dosyalarının okunması için destek sağlar." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "3MF Writer eklentisi bozuk." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Henüz yazılacak bir çalışma alanı yok. Lütfen önce bir yazıcı ekleyin." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "Burada çalışma alanını yazmak için izin yok." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "İşletim sistemi, proje dosyalarının bu konuma veya bu dosya adıyla kaydedilmesine izin vermiyor." + +#: plugins/3MFWriter/ThreeMFWriter.py:240 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "3mf dosyasını yazarken hata oluştu." + +#: plugins/3MFWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "3MF dosyası" + +#: plugins/3MFWriter/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Cura Projesi 3MF dosyası" + +#: plugins/3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF Yazıcı" + +#: plugins/3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "3MF dosyalarının yazılması için destek sağlar." + +#: plugins/AMFReader/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "AMF Dosyası" + +#: plugins/AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF Okuyucu" + +#: plugins/AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "AMF dosyalarının okunması için destek sağlar." + +#: plugins/CuraDrive/plugin.json +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Yapılandırmanızı yedekleyin ve geri yükleyin." + +#: plugins/CuraDrive/plugin.json +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura Yedeklemeleri" + +#: plugins/CuraDrive/src/CreateBackupJob.py:25 +msgctxt "@info:title" +msgid "Backups" +msgstr "Yedeklemeler" + +#: plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Yedeklemeniz yüklenirken bir hata oluştu." + +#: plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "Yedeklemeniz oluşturuluyor..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "Yedeklemeniz oluşturulurken bir hata oluştu." + +#: plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Yedeklemeniz yükleniyor..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Yedeklemenizin yüklenmesi tamamlandı." + +#: plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "Yedekleme maksimum dosya boyutunu aşıyor." + +#: plugins/CuraDrive/src/DriveApiService.py:86 +#: plugins/CuraDrive/src/RestoreBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Yedeklemeniz geri yüklenirken bir hata oluştu." + +#: plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Yedeklemeleri yönet" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "Daha fazla seçenek görüntülemek ister misiniz?" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "Şimdi Yedekle" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Otomatik Yedekle" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Cura’nın başlatıldığı günlerde otomatik olarak yedekleme yapar." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 +msgctxt "@button" +msgid "Restore" +msgstr "Geri Yükle" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Yedeklemeyi Sil" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Bu yedeklemeyi silmek istediğinizden emin misiniz? Bu eylem geri alınamaz." + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Yedeklemeyi Geri Yükle" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "Yedeklemeniz geri yüklenmeden öne Cura’yı yeniden başlatmalısınız. Cura’yı şimdi kapatmak istiyor musunuz?" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Cura Sürümü" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Makineler" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Malzemeler" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Profiller" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Eklentiler" + +#: plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Cura Yedeklemeleri" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "Yedeklemelerim" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Şu anda yedeklemeniz yok. Oluşturmak için “Şimdi Yedekle” düğmesini kullanın." + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Önizleme aşamasında en fazla 5 yedekleme görüntüleyebilirsiniz. Önceki yedeklemeleri görmek için mevcut yedeklemelerden birini kaldırın." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Cura ayarlarınızı yedekleyin ve senkronize edin." + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 +#: plugins/Marketplace/resources/qml/Marketplace.qml:312 +#: resources/qml/Account/GeneralOperations.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180 +#: resources/qml/WelcomePages/CloudContent.qml:212 +msgctxt "@button" +msgid "Sign in" +msgstr "Giriş yap" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "Dilimleme işlemi beklenmeyen bir hatayla başarısız oldu. Lütfen sorun izleyicimizde hata bildirmeyi düşünün." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:163 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "Dilimleme başarısız" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Hata bildirin" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:169 +msgctxt "@message:description" +msgid "Report a bug on UltiMaker Cura's issue tracker." +msgstr "UltiMaker Cura'nın sorun izleyicisinde hata bildirin." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:416 +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "Mevcut malzeme, seçilen makine veya yapılandırma ile uyumlu olmadığından mevcut malzeme ile dilimlenemedi." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:417 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:450 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:477 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:501 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:514 +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "Dilimlenemedi" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:449 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "Geçerli ayarlarla dilimlenemiyor. Şu ayarlarda hata var: {0}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:476 +#, 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 "Modele özgü ayarlar nedeniyle dilimlenemedi. Şu ayarlar bir veya daha fazla modelde hataya yol açıyor: {error_labels}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:488 +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "İlk direk veya ilk konum(lar) geçersiz olduğu için dilimlenemiyor." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:500 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "Etkisizleştirilmiş Extruder %s ile ilgili nesneler olduğundan dilimleme yapılamıyor." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:510 +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 "" +"Lütfen ayarları gözden geçirin ve modellerinizi şu durumlara karşı kontrol edin:\n" +"- Yapı hacmine sığma\n" +"- Etkin bir ekstrüdere atanma\n" +"- Değiştirici kafesler olarak ayarlanmama" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Katmanlar İşleniyor" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "Bilgi" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine Arka Uç" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "CuraEngine arka dilimleme ucuna bağlantı sağlar." + +#: plugins/CuraProfileReader/__init__.py:14 +#: plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Cura Profili" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura Profil Okuyucu" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Cura profillerinin içe aktarılması için destek sağlar." + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura Profili Yazıcı" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Cura profillerinin dışa aktarılması için destek sağlar." + +#: plugins/DigitalLibrary/plugin.json +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." + +#: plugins/DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 +msgctxt "@option" +msgid "Save Cura project and print file" +msgstr "Cura projesini kaydet ve dosyayı yazdır" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Cura projesini kaydet" + +#: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19 +msgctxt "@text Placeholder for the username if it has been deleted" +msgid "deleted user" +msgstr "silinmiş kullanıcı" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "Güncelleme bilgilerine erişilemedi." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, 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} cihazınız için yeni özellikler veya hata düzeltmeleri mevcut olabilir! Henüz son sürüme geçmediyseniz yazıcınızın donanım yazılımını {latest_version} sürümüne güncellemeniz önerilir." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "Yeni %s istikrarlı donanım yazılımı yayınlandı" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "Nasıl güncellenir" + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Bellenim güncellemelerini denetler." + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Bellenim Güncelleme Denetleyicisi" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Aygıt Yazılımını Güncelle" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "Aygıt Yazılımını Güncelle" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 +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 "Aygıt yazılımı doğrudan 3B yazıcı üzerinden çalışan bir yazılım parçasıdır. Bu aygıt yazılımı adım motorlarını kontrol eder, sıcaklığı düzenler ve sonunda yazıcının çalışmasını sağlar." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "Yeni yazıcıları olan aygıt yazılımı gönderimi yararlı olmaktadır, ancak yeni sürümler daha fazla özellik ve geliştirmeye eğilimlidir." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Aygıt Yazılımını otomatik olarak yükselt" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Özel Aygıt Yazılımı Yükle" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "Yazıcı ile bağlantı kurulmadığı için aygıt yazılımı güncellenemiyor." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 +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." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Özel aygıt yazılımı seçin" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Aygıt Yazılımı Güncellemesi" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 +msgctxt "@label" +msgid "Updating firmware." +msgstr "Aygıt yazılımı güncelleniyor." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Aygıt yazılımı güncellemesi tamamlandı." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "Bilinmeyen bir hata nedeniyle aygıt yazılımı güncellemesi başarısız oldu." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "Bir iletişim hatası nedeniyle aygıt yazılımı güncellemesi başarısız oldu." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "Bir girdi/çıktı hatası nedeniyle aygıt yazılımı güncellemesi başarısız oldu." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "Eksik aygıt yazılımı nedeniyle aygıt yazılımı güncellemesi başarısız oldu." + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "name" +msgid "Firmware Updater" +msgstr "Aygıt Yazılımı Güncelleyici" + +#: plugins/FirmwareUpdater/plugin.json +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." + +#: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "Sıkıştırılmış G-code Dosyası" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Sıkıştırılmış G-code Okuyucusu" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Bir sıkıştırılmış arşivden g-code okur." + +#: plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "GCodeGzWriter yazı modunu desteklemez." + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Sıkıştırılmış G-code Yazıcısı" + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "G-code’u bir sıkıştırılmış arşive yazar." + +#: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14 +#: plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "G-code dosyası" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "G-code Profil Okuyucu" + +#: plugins/GCodeProfileReader/plugin.json +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." + +#: plugins/GCodeReader/FlavorParser.py:359 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "G-code ayrıştırma" + +#: plugins/GCodeReader/FlavorParser.py:361 +#: plugins/GCodeReader/FlavorParser.py:515 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "G-code Ayrıntıları" + +#: plugins/GCodeReader/FlavorParser.py:513 +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 "Dosya göndermeden önce g-code’un yazıcınız ve yazıcı yapılandırmanız için uygun olduğundan emin olun. G-code temsili doğru olmayabilir." + +#: plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "G Dosyası" + +#: plugins/GCodeReader/plugin.json +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." + +#: plugins/GCodeReader/plugin.json +msgctxt "name" +msgid "G-code Reader" +msgstr "G-code Okuyucu" + +#: plugins/GCodeWriter/GCodeWriter.py:75 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "GCodeWriter metin dışı modu desteklemez." + +#: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Lütfen dışa aktarmadan önce G-code'u hazırlayın." + +#: plugins/GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "G-code Yazıcı" + +#: plugins/GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "G-code’u bir dosyaya yazar." + +#: plugins/ImageReader/ConfigUI.qml:14 +msgctxt "@title:window" +msgid "Convert Image" +msgstr "Resmi Dönüştür" + +#: plugins/ImageReader/ConfigUI.qml:33 +msgctxt "@action:label" +msgid "Height (mm)" +msgstr "Yükseklik (mm)" + +#: plugins/ImageReader/ConfigUI.qml:56 +msgctxt "@info:tooltip" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "Her bir pikselin “Taban”dan en yüksek mesafesi." + +#: plugins/ImageReader/ConfigUI.qml:66 +msgctxt "@action:label" +msgid "Base (mm)" +msgstr "Taban (mm)" + +#: plugins/ImageReader/ConfigUI.qml:90 +msgctxt "@info:tooltip" +msgid "The base height from the build plate in millimeters." +msgstr "Tabanın yapı levhasından milimetre cinsinden yüksekliği." + +#: plugins/ImageReader/ConfigUI.qml:100 +msgctxt "@action:label" +msgid "Width (mm)" +msgstr "Genişlik (mm)" + +#: plugins/ImageReader/ConfigUI.qml:124 +msgctxt "@info:tooltip" +msgid "The width in millimeters on the build plate" +msgstr "Yapı plakasındaki milimetre cinsinden genişlik" + +#: plugins/ImageReader/ConfigUI.qml:134 +msgctxt "@action:label" +msgid "Depth (mm)" +msgstr "Derinlik (mm)" + +#: plugins/ImageReader/ConfigUI.qml:158 +msgctxt "@info:tooltip" +msgid "The depth in millimeters on the build plate" +msgstr "Yapı levhasındaki milimetre cinsinden derinlik" + +#: plugins/ImageReader/ConfigUI.qml:187 +msgctxt "@item:inlistbox" +msgid "Darker is higher" +msgstr "Daha koyu olan daha yüksek" + +#: plugins/ImageReader/ConfigUI.qml:188 +msgctxt "@item:inlistbox" +msgid "Lighter is higher" +msgstr "Daha açık olan daha yüksek" + +#: plugins/ImageReader/ConfigUI.qml:195 +msgctxt "@info:tooltip" +msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." +msgstr "Litofanlar için, daha fazla ışığın girmesini engellemek amacıyla koyu renk pikseller daha kalın olan bölgelere denk gelmelidir. Yükseklik haritaları için daha açık renk pikseller daha yüksek araziyi ifade eder; bu nedenle daha açık renk piksellerin oluşturulan 3D modelde daha kalın bölgelere denk gelmesi gerekir." + +#: plugins/ImageReader/ConfigUI.qml:205 +msgctxt "@action:label" +msgid "Color Model" +msgstr "Renk Modeli" + +#: plugins/ImageReader/ConfigUI.qml:224 +msgctxt "@item:inlistbox" +msgid "Linear" +msgstr "Doğrusal" + +#: plugins/ImageReader/ConfigUI.qml:225 +msgctxt "@item:inlistbox" +msgid "Translucency" +msgstr "Yarı saydamlık" + +#: plugins/ImageReader/ConfigUI.qml:232 +msgctxt "@info:tooltip" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "Litofanlar için yarı saydamlık sağlayacak basit bir logaritmik model bulunur. Yükseklik haritaları için piksel değerleri doğrusal yüksekliklere karşılık gelir." + +#: plugins/ImageReader/ConfigUI.qml:242 +msgctxt "@action:label" +msgid "1mm Transmittance (%)" +msgstr "1 mm Geçirgenlik (%)" + +#: plugins/ImageReader/ConfigUI.qml:263 +msgctxt "@info:tooltip" +msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." +msgstr "1 milimetre kalınlığında bir baskıya nüfuz eden ışığın yüzdesi. Bu değerin düşürülmesi karanlık bölgelerdeki kontrastı arttırır ve görüntünün açık bölgelerindeki kontrastı azaltır." + +#: plugins/ImageReader/ConfigUI.qml:274 +msgctxt "@action:label" +msgid "Smoothing" +msgstr "Düzeltme" + +#: plugins/ImageReader/ConfigUI.qml:298 +msgctxt "@info:tooltip" +msgid "The amount of smoothing to apply to the image." +msgstr "Resme uygulanacak düzeltme miktarı." + +#: plugins/ImageReader/ConfigUI.qml:329 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 +#: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25 +msgctxt "@action:button" +msgid "OK" +msgstr "Tamam" + +#: plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "JPG Resmi" + +#: plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "JPEG Resmi" + +#: plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "PNG Resmi" + +#: plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "BMP Resmi" + +#: plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "GIF Resmi" + +#: plugins/ImageReader/plugin.json +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." + +#: plugins/ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "Resim Okuyucu" + +#: plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Cura 15.04 profilleri" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Eski Cura Profil Okuyucu" + +#: plugins/LegacyProfileReader/plugin.json +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." + +#: plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "Makine Ayarları" + +#: plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "Yazıcı" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Nozül Ayarları" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 +msgctxt "@label" +msgid "Nozzle size" +msgstr "Nozzle boyutu" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Uyumlu malzeme çapı" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Nozül X ofseti" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Nozül Y ofseti" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Soğutma Fanı Numarası" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "Ekstruder G-Code'u Başlatma" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "Ekstruder G-Code'u Sonlandırma" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Yazıcı Ayarları" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (Genişlik)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Derinlik)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Yükseklik)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 +msgctxt "@label" +msgid "Build plate shape" +msgstr "Yapı levhası şekli" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 +msgctxt "@label" +msgid "Origin at center" +msgstr "Merkez nokta" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 +msgctxt "@label" +msgid "Heated bed" +msgstr "Isıtılmış yatak" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 +msgctxt "@label" +msgid "Heated build volume" +msgstr "Isıtılmış yapı hacmi" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 +msgctxt "@label" +msgid "G-code flavor" +msgstr "G-code türü" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Yazıcı Başlığı Ayarları" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 +msgctxt "@label" +msgid "X min" +msgstr "X min" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 +msgctxt "@label" +msgid "Y min" +msgstr "Y min" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 +msgctxt "@label" +msgid "X max" +msgstr "X maks" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 +msgctxt "@label" +msgid "Y max" +msgstr "Y maks" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 +msgctxt "@label" +msgid "Gantry Height" +msgstr "Portal Yüksekliği" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Ekstrüder Sayısı" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:342 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Ekstrüder ofsetlerini GCode'a uygula" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:390 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "G-code’u Başlat" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:401 +msgctxt "@title:label" +msgid "End G-code" +msgstr "G-code’u Sonlandır" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Makine Ayarları eylemi" + +#: plugins/MachineSettingsAction/plugin.json +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.)" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "Malzeme ve yazılım paketlerini hesabınızla senkronize etmek istiyor musunuz?" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:95 +msgctxt "@info:title" +msgid "Changes detected from your UltiMaker account" +msgstr "UltiMaker hesabınızda değişiklik tespit edildi" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 +msgctxt "@action:button" +msgid "Sync" +msgstr "Senkronize et" + +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "Senkronize ediliyor..." + +#: plugins/Marketplace/CloudSync/LicenseModel.py:12 +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:79 +msgctxt "@button" +msgid "Decline" +msgstr "Reddet" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:13 +#: resources/qml/WelcomePages/UserAgreementContent.qml:53 +msgctxt "@button" +msgid "Agree" +msgstr "Kabul ediyorum" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:77 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Eklenti Lisans Anlaşması" + +#: plugins/Marketplace/CloudSync/LicensePresenter.py:42 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Reddet ve hesaptan kaldır" + +#: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "Değişikliklerin etkili olması için {} uygulamasını kapatarak yeniden başlatmalısınız." + +#: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "{} eklenti indirilemedi" + +#: plugins/Marketplace/LocalPackageList.py:28 +msgctxt "@label" +msgid "Installed Plugins" +msgstr "Yüklü eklentiler" + +#: plugins/Marketplace/LocalPackageList.py:29 +msgctxt "@label" +msgid "Installed Materials" +msgstr "Yüklü malzemeler" + +#: plugins/Marketplace/LocalPackageList.py:33 +msgctxt "@label" +msgid "Bundled Plugins" +msgstr "Paketli eklentiler" + +#: plugins/Marketplace/LocalPackageList.py:34 +msgctxt "@label" +msgid "Bundled Materials" +msgstr "Paketli malzemeler" + +#: plugins/Marketplace/PackageModel.py:43 +msgctxt "@label:property" +msgid "Unknown Package" +msgstr "Bilinmeyen Paket" + +#: plugins/Marketplace/PackageModel.py:66 +msgctxt "@label:property" +msgid "Unknown Author" +msgstr "Bilinmeyen Yazar" + +#: plugins/Marketplace/PackageModel.py:95 +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 projesiyle ilişkilendirilen malzeme paketi Ultimaker Marketplace’te bulunamadı. Cura proje dosyasında saklanan kısmi malzeme profili tanımını, riski göze alarak kullanın." + +#: plugins/Marketplace/RemotePackageList.py:117 +msgctxt "@info:error" +msgid "Could not interpret the server's response." +msgstr "Sunucunun yanıtı yorumlanamadı." + +#: plugins/Marketplace/RemotePackageList.py:148 +msgctxt "@info:error" +msgid "Could not reach Marketplace." +msgstr "Pazar Yerine ulaşılamadı." + +#: plugins/Marketplace/plugin.json +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." + +#: plugins/Marketplace/plugin.json +msgctxt "name" +msgid "Marketplace" +msgstr "Mağaza" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 +msgctxt "@title" +msgid "Changes from your account" +msgstr "Hesabınızda değişiklik var" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +msgctxt "@button" +msgid "Dismiss" +msgstr "Kapat" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +#: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 +#: resources/qml/WelcomePages/WhatsNewContent.qml:175 +msgctxt "@button" +msgid "Next" +msgstr "Sonraki" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "Aşağıdaki paketler eklenecek:" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "Aşağıdaki paketler uyumsuz Cura sürümü nedeniyle yüklenemiyor:" + +#: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "Eksik Malzemeleri yükle" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "Eklenti Lisans Anlaşması" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:47 +msgctxt "@text" +msgid "Please read and agree with the plugin licence." +msgstr "Eklenti lisansını okuyun ve kabul edin." + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "Kabul et" + +#: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Paketleri yönet" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:12 +msgctxt "@header" +msgid "Manage packages" +msgstr "Paketleri yönet" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:16 +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." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" +msgid "Loading..." +msgstr "Yükleniyor..." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "Eklentiler" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "Malzemeler" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "Tarayıcıda ara" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:271 +msgctxt "@button" +msgid "In order to use the package you will need to restart Cura" +msgstr "Paketi kullanmak için Cura'yı yeniden başlatmanız gerekecek" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:279 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "%1 uygulamasından çık" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:300 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" +msgstr "UltiMaker Cura Enterprise için onaylı eklenti ve malzemeleri almak için lütfen oturum açın" + +#: plugins/Marketplace/resources/qml/Materials.qml:8 +#: plugins/Marketplace/resources/qml/MissingPackages.qml:8 +msgctxt "@header" +msgid "Install Materials" +msgstr "Malzeme Yükle" + +#: plugins/Marketplace/resources/qml/Materials.qml:12 +msgctxt "@text" +msgid "Select and install material profiles optimised for your UltiMaker 3D printers." +msgstr "UltiMaker 3D yazıcılarınız için optimize edilmiş malzeme profillerini seçin ve yükleyin." + +#: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "Paketi yüklemek için lisansı kabul etmeniz gerekir" + +#: plugins/Marketplace/resources/qml/OnboardBanner.qml:101 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205 +msgctxt "@button:label" +msgid "Learn More" +msgstr "Daha Fazla Bilgi Edinin" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170 +msgctxt "@label Is followed by the name of an author" +msgid "By" +msgstr "Oluşturan" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Disable" +msgstr "Devre dışı bırak" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Enable" +msgstr "Etkinleştir" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242 +msgctxt "@button" +msgid "Downgrading..." +msgstr "Eski sürüm yükleniyor..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243 +msgctxt "@button" +msgid "Downgrade" +msgstr "Eski Sürümü Yükle" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247 +msgctxt "@button" +msgid "Installing..." +msgstr "Yükleniyor..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248 +msgctxt "@button" +msgid "Install" +msgstr "Yükle" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252 +msgctxt "@button" +msgid "Uninstall" +msgstr "Kaldır" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Update" +msgstr "Güncelle" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Updating..." +msgstr "Güncelleniyor..." + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "Paket ayrıntıları" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Geri" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "Tanım" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "Uyumlu yazıcılar" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "Uyumluluk bilgisi yok" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "Uyumlu destek malzemeleri" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "Hiçbiri" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:193 +msgctxt "@header" +msgid "Compatible with Material Station" +msgstr "Material Station ile uyumlu" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "No" +msgstr "Hayır" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "Yes" +msgstr "Evet" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:219 +msgctxt "@header" +msgid "Optimized for Air Manager" +msgstr "Air Manager için en uygun" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Visit plug-in website" +msgstr "Eklenti web sitesini ziyaret edin" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Website" +msgstr "Web sitesi" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:252 +msgctxt "@button" +msgid "Buy spool" +msgstr "Makara satın al" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:261 +msgctxt "@button" +msgid "Safety datasheet" +msgstr "Güvenlik veri sayfası" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:270 +msgctxt "@button" +msgid "Technical datasheet" +msgstr "Teknik veri sayfası" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Failed to load packages:" +msgstr "Paketler yüklenemedi:" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Retry?" +msgstr "Yeniden denensin mi?" + +#: plugins/Marketplace/resources/qml/Packages.qml:167 +msgctxt "@button" +msgid "Loading" +msgstr "Yükleniyor" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No more results to load" +msgstr "Yüklenecek başka sonuç yok" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No results found with current filter" +msgstr "Mevcut filtreyle başka sonuç bulunmadı" + +#: plugins/Marketplace/resources/qml/Packages.qml:226 +msgctxt "@button" +msgid "Load more" +msgstr "Daha fazla yükle" + +#: plugins/Marketplace/resources/qml/Plugins.qml:8 +msgctxt "@header" +msgid "Install Plugins" +msgstr "Eklentileri Yükle" + +#: plugins/Marketplace/resources/qml/Plugins.qml:12 +msgctxt "@text" +msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." +msgstr "Muhteşem kullanıcı topluluğumuzun katkıda bulunduğu eklentilerle iş akışınızı kolaylaştırın ve UltiMaker Cura deneyiminizi kendinize uygun hale getirin." + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 +msgctxt "@info" +msgid "UltiMaker Verified Plug-in" +msgstr "UltiMaker Tarafından Doğrulanmış Eklenti" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "UltiMaker Certified Material" +msgstr "UltiMaker Sertifikalı Malzeme" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 +msgctxt "@info" +msgid "UltiMaker Verified Package" +msgstr "UltiMaker Tarafından Doğrulanmış Paket" + +#: plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "3D Model Yardımcısı" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -836,823 +2384,1092 @@ msgstr "" "

    En iyi kalite ve güvenilirliği nasıl elde edeceğinizi öğrenin.

    \n" "

    Yazdırma kalitesi kılavuzunu görüntüleyin

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 -#, 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 "Proje dosyası {0} bilinmeyen bir makine tipi içeriyor: {1}. Makine alınamıyor. Bunun yerine modeller alınacak." +#: plugins/ModelChecker/plugin.json +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." -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "Proje Dosyası Aç" +#: plugins/ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "Model Kontrol Edici" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "{0} proje dosyası aniden erişilemez oldu: {1}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:659 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "Proje Dosyası Açılamıyor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:658 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "Proje dosyası {0} bozuk: {1}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:711 -#, 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} proje dosyası, Ultimaker Cura'nın bu sürümünde bilinmeyen profiller kullanılarak yapılmış." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Önerilen Ayarlar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:214 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Özel" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:390 -msgctxt "@info:status" -msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 -msgctxt "@info:title" -msgid "Material profiles not installed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 -msgctxt "@action:button" -msgid "Install Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "3MF Dosyası" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "3MF Writer eklentisi bozuk." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "Henüz yazılacak bir çalışma alanı yok. Lütfen önce bir yazıcı ekleyin." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "Burada çalışma alanını yazmak için izin yok." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "İşletim sistemi, proje dosyalarının bu konuma veya bu dosya adıyla kaydedilmesine izin vermiyor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:238 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "3mf dosyasını yazarken hata oluştu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:282 -#, python-brace-format -msgctxt "@error:material" -msgid "It was not possible to store material package information in project file: {material}. This project may not open correctly on other systems." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 -msgctxt "@info:title" -msgid "Failed to save material package information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF dosyası" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura Projesi 3MF dosyası" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF Dosyası" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 -msgctxt "@info:title" -msgid "Backups" -msgstr "Yedeklemeler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Yedeklemeniz yüklenirken bir hata oluştu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Yedeklemeniz oluşturuluyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "Yedeklemeniz oluşturulurken bir hata oluştu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Yedeklemeniz yükleniyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Yedeklemenizin yüklenmesi tamamlandı." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "Yedekleme maksimum dosya boyutunu aşıyor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Yedeklemeniz geri yüklenirken bir hata oluştu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Yedeklemeleri yönet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "Dilimleme işlemi beklenmeyen bir hatayla başarısız oldu. Lütfen sorun izleyicimizde hata bildirmeyi düşünün." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "Dilimleme başarısız" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 -msgctxt "@message:button" -msgid "Report a bug" -msgstr "Hata bildirin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 -msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." -msgstr "Ultimaker Cura'nın sorun izleyicisinde hata bildirin." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:400 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "Mevcut malzeme, seçilen makine veya yapılandırma ile uyumlu olmadığından mevcut malzeme ile dilimlenemedi." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:401 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:434 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:461 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:473 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:485 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:498 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "Dilimlenemedi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:433 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "Geçerli ayarlarla dilimlenemiyor. Şu ayarlarda hata var: {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:460 -#, 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 "Modele özgü ayarlar nedeniyle dilimlenemedi. Şu ayarlar bir veya daha fazla modelde hataya yol açıyor: {error_labels}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:472 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "İlk direk veya ilk konum(lar) geçersiz olduğu için dilimlenemiyor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:484 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "Etkisizleştirilmiş Extruder %s ile ilgili nesneler olduğundan dilimleme yapılamıyor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 -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 "" -"Lütfen ayarları gözden geçirin ve modellerinizi şu durumlara karşı kontrol edin:\n" -"- Yapı hacmine sığma\n" -"- Etkin bir ekstrüdere atanma\n" -"- Değiştirici kafesler olarak ayarlanmama" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Katmanlar İşleniyor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 -msgctxt "@info:title" -msgid "Information" -msgstr "Bilgi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura Profili" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" -msgid "Could not access update information." -msgstr "Güncelleme bilgilerine erişilemedi." +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 "" +"Lütfen yazıcınızda bağlantı olduğundan emin olun:\n" +"- Yazıcının açık olup olmadığını kontrol edin.\n" +"- Yazıcının ağa bağlı olup olmadığını kontrol edin.\n" +"- Buluta bağlı yazıcıları keşfetmek için giriş yapıp yapmadığınızı kontrol edin." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, 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} cihazınız için yeni özellikler veya hata düzeltmeleri mevcut olabilir! Henüz son sürüme geçmediyseniz yazıcınızın donanım yazılımını {latest_version} sürümüne güncellemeniz önerilir." +#: plugins/MonitorStage/MonitorMain.qml:113 +msgctxt "@info" +msgid "Please connect your printer to the network." +msgstr "Lütfen yazıcınızı ağa bağlayın." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s stable firmware available" -msgstr "Yeni %s istikrarlı donanım yazılımı yayınlandı" +#: plugins/MonitorStage/MonitorMain.qml:148 +msgctxt "@label link to technical assistance" +msgid "View user manuals online" +msgstr "Kullanım kılavuzlarını çevrimiçi olarak görüntüle" -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "Nasıl güncellenir" +#: plugins/MonitorStage/MonitorMain.qml:164 +msgctxt "@info" +msgid "In order to monitor your print from Cura, please connect the printer." +msgstr "Baskınızı Cura üzerinden izlemek için lütfen yazıcıyı bağlayın." -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Aygıt Yazılımını Güncelle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Sıkıştırılmış G-code Dosyası" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter yazı modunu desteklemez." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "G-code dosyası" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:350 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "G-code ayrıştırma" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:506 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-code Ayrıntıları" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 -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 "Dosya göndermeden önce g-code’un yazıcınız ve yazıcı yapılandırmanız için uygun olduğundan emin olun. G-code temsili doğru olmayabilir." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G Dosyası" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter metin dışı modu desteklemez." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Lütfen dışa aktarmadan önce G-code'u hazırlayın." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG Resmi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG Resmi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG Resmi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP Resmi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF Resmi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04 profilleri" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Makine Ayarları" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Malzeme ve yazılım paketlerini hesabınızla senkronize etmek istiyor musunuz?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Ultimaker hesabınızda değişiklik tespit edildi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 -msgctxt "@action:button" -msgid "Sync" -msgstr "Senkronize et" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Senkronize ediliyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:12 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:79 -msgctxt "@button" -msgid "Decline" -msgstr "Reddet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:13 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53 -msgctxt "@button" -msgid "Agree" -msgstr "Kabul ediyorum" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Eklenti Lisans Anlaşması" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Reddet ve hesaptan kaldır" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "Değişikliklerin etkili olması için {} uygulamasını kapatarak yeniden başlatmalısınız." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{} eklenti indirilemedi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:28 -msgctxt "@label" -msgid "Installed Plugins" -msgstr "Yüklü eklentiler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:29 -msgctxt "@label" -msgid "Installed Materials" -msgstr "Yüklü malzemeler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:33 -msgctxt "@label" -msgid "Bundled Plugins" -msgstr "Paketli eklentiler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:34 -msgctxt "@label" -msgid "Bundled Materials" -msgstr "Paketli malzemeler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:43 -msgctxt "@label:property" -msgid "Unknown Package" -msgstr "Bilinmeyen Paket" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:66 -msgctxt "@label:property" -msgid "Unknown Author" -msgstr "Bilinmeyen Yazar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:117 -msgctxt "@info:error" -msgid "Could not interpret the server's response." -msgstr "Sunucunun yanıtı yorumlanamadı." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:148 -msgctxt "@info:error" -msgid "Could not reach Marketplace." -msgstr "Pazar Yerine ulaşılamadı." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 +#: plugins/MonitorStage/__init__.py:14 msgctxt "@item:inmenu" msgid "Monitor" msgstr "Görüntüle" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: plugins/MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "Görüntüleme Aşaması" + +#: plugins/MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Cura’da görüntüleme aşaması sunar." + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 +msgctxt "@label" +msgid "Mesh Type" +msgstr "Ağ Tipi" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 +msgctxt "@label" +msgid "Normal model" +msgstr "" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 +msgctxt "@label" +msgid "Print as support" +msgstr "Destek olarak yazdır" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Çakışma ayarlarını değiştir" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "Çakışmaları destekleme" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 +msgctxt "@item:inlistbox" +msgid "Infill mesh only" +msgstr "Yalnızca dolgu kafes" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161 +msgctxt "@item:inlistbox" +msgid "Cutting mesh" +msgstr "Kesme Örgüsü" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386 +msgctxt "@action:button" +msgid "Select settings" +msgstr "Ayarları seçin" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Bu modeli Özelleştirmek için Ayarları seçin" + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtrele..." + +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Tümünü göster" + +#: plugins/PerObjectSettingsTool/__init__.py:14 msgctxt "@label" msgid "Per Model Settings" msgstr "Model Başına Ayarlar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 +#: plugins/PerObjectSettingsTool/__init__.py:15 msgctxt "@info:tooltip" msgid "Configure Per Model Settings" msgstr "Model Başına Ayarları Yapılandır" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Model Başına Ayarlar Aracı" + +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Model Başına Ayarları sağlar." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Son İşleme" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 msgctxt "@item:inmenu" msgid "Modify G-Code" msgstr "G-Code Öğesini Değiştir" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Son İşleme Uzantısı" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 +msgctxt "@label" +msgid "Post Processing Scripts" +msgstr "Son İşleme Dosyaları" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "Dosya ekle" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 +msgctxt "@label" +msgid "Settings" +msgstr "Ayarlar" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Etkin ileri işleme komut dosyalarını değiştirin." + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "Aşağıdaki komut dosyası etkin:" +msgstr[1] "Aşağıdaki komut dosyaları etkin:" + +#: plugins/PostProcessingPlugin/plugin.json +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ı" + +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "Son İşleme" + +#: plugins/PrepareStage/PrepareMenu.qml:74 +msgctxt "@button" +msgid "Add printer" +msgstr "Yazıcı ekle" + +#: plugins/PrepareStage/PrepareMenu.qml:90 +msgctxt "@button" +msgid "Manage printers" +msgstr "Yazıcıları yönet" + +#: plugins/PrepareStage/__init__.py:12 msgctxt "@item:inmenu" msgid "Prepare" msgstr "Hazırla" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 +#: plugins/PrepareStage/plugin.json +msgctxt "name" +msgid "Prepare Stage" +msgstr "Hazırlık Aşaması" + +#: plugins/PrepareStage/plugin.json +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Cura’da hazırlık aşaması sunar." + +#: plugins/PreviewStage/__init__.py:13 msgctxt "@item:inmenu" msgid "Preview" msgstr "Önizleme" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +#: plugins/PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "Öz İzleme Aşaması" + +#: plugins/PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Cura’da ön izleme aşaması sunar." + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Çıkarılabilir Sürücüye Kaydet" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 #, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Çıkarılabilir Sürücüye Kaydediliyor {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "Yazılacak dosya biçimleri mevcut değil!" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 #, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Çıkarılabilir Sürücü {0} Üzerine Kaydediliyor" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 msgctxt "@info:title" msgid "Saving" msgstr "Kaydediliyor" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "{0} dosyasına kaydedilemedi: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 #, 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} üzerine yazmaya çalışırken dosya adı bulunamadı." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 #, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Çıkarılabilir aygıta {0} kaydedilemedi: {1}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 #, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Çıkarılabilir Sürücüye {0}, {1} olarak kaydedildi" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 msgctxt "@info:title" msgid "File Saved" msgstr "Dosya Kaydedildi" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 msgctxt "@action:button" msgid "Eject" msgstr "Çıkar" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 #, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Çıkarılabilir aygıtı çıkar {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 #, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Çıkarıldı {0}. Şimdi sürücüyü güvenle kaldırabilirsiniz." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 msgctxt "@info:title" msgid "Safely Remove Hardware" msgstr "Donanımı Güvenli Bir Şekilde Kaldırın" -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 #, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Çıkarma işlemi başarısız oldu {0}. Başka bir program sürücüyü kullanıyor olabilir." -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +#: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 msgctxt "@item:intext" msgid "Removable Drive" msgstr "Çıkarılabilir Sürücü" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "Kablo Yazdırma etkinleştirildiğinde Cura, katmanları doğru olarak görüntülemez." +#: plugins/RemovableDriveOutputDevice/plugin.json +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." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Simülasyon Görünümü" +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Çıkarılabilir Sürücü Çıkış Cihazı Eklentisi" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 +#: plugins/SentryLogger/plugin.json +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" + +#: plugins/SentryLogger/plugin.json +msgctxt "name" +msgid "Sentry Logger" +msgstr "Nöbetçi Günlükçü" + +#: plugins/SimulationView/SimulationView.py:129 msgctxt "@info:status" msgid "Nothing is shown because you need to slice first." msgstr "Önce dilimleme yapmanız gerektiğinden hiçbir şey gösterilmez." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 +#: plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "No layers to show" msgstr "Görüntülenecek katman yok" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 +#: plugins/SimulationView/SimulationView.py:132 +#: plugins/SolidView/SolidView.py:74 msgctxt "@info:option_text" msgid "Do not show this message again" msgstr "Bu mesajı bir daha gösterme" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:18 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:47 +msgctxt "@label" +msgid "Color scheme" +msgstr "Renk şeması" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Malzeme Rengi" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Çizgi Tipi" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:112 +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Hız" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:116 +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Katman kalınlığı" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:120 +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Hat Genişliği" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:124 +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Akış" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:164 +msgctxt "@label" +msgid "Compatibility Mode" +msgstr "Uyumluluk Modu" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:231 +msgctxt "@label" +msgid "Travels" +msgstr "Geçişler" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:237 +msgctxt "@label" +msgid "Helpers" +msgstr "Yardımcılar" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:243 +msgctxt "@label" +msgid "Shell" +msgstr "Kabuk" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:249 +msgctxt "@label" +msgid "Infill" +msgstr "Dolgu" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:257 +msgctxt "@label" +msgid "Starts" +msgstr "Başlangıçlar" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:304 +msgctxt "@label" +msgid "Only Show Top Layers" +msgstr "Yalnızca Üst Katmanları Göster" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:313 +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "En Üstteki 5 Ayrıntılı Katmanı Göster" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:326 +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Üst / Alt" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:330 +msgctxt "@label" +msgid "Inner Wall" +msgstr "İç Duvar" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:397 +msgctxt "@label" +msgid "min" +msgstr "min" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:462 +msgctxt "@label" +msgid "max" +msgstr "maks" + +#: plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Katman görünümü" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +#: plugins/SimulationView/plugin.json +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Dilimlenen katman verilerinin önizlemesini sağlar." + +#: plugins/SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "Simülasyon Görünümü" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Anonim veri toplama hakkında daha fazla bilgi" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 +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, yazdırma kalitesini ve kullanıcı deneyimini iyileştirmek için anonim veri toplar. Aşağıda, paylaşılan tüm verilerin bir örneği verilmiştir:" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Anonim veri göndermek istemiyorum" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Anonim veri gönderilmesine izin ver" + +#: plugins/SliceInfoPlugin/SliceInfo.py:95 msgctxt "@text" msgid "Unable to read example data file." msgstr "Örnek veri dosyası okunamıyor." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "Dilim bilgisi" + +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Anonim dilim bilgisi gönderir. Tercihlerden devre dışı bırakılabilir." + +#: plugins/SolidView/SolidView.py:71 msgctxt "@info:status" msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." msgstr "Vurgulanan alanlar, eksik ya da ikincil yüzeyleri gösterir. Modelinizi düzeltin ve Cura'da tekrar açın." -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +#: plugins/SolidView/SolidView.py:73 msgctxt "@info:title" msgid "Model Errors" msgstr "Model hataları" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +#: plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" msgstr "Gerçek görünüm" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +#: plugins/SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Normal gerçek bir ağ görünümü sağlar." + +#: plugins/SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "Gerçek Görünüm" + +#: plugins/SupportEraser/__init__.py:12 msgctxt "@label" msgid "Support Blocker" msgstr "Destek Engelleyici" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 +#: plugins/SupportEraser/__init__.py:13 msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "Desteklerin yazdırılmadığı bir hacim oluşturun." -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 +#: plugins/SupportEraser/plugin.json +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" + +#: plugins/SupportEraser/plugin.json +msgctxt "name" +msgid "Support Eraser" +msgstr "Destek Silici" + +#: plugins/TrimeshReader/__init__.py:15 msgctxt "@item:inlistbox 'Open' is part of the name of this file format." msgid "Open Compressed Triangle Mesh" msgstr "Open Compressed Triangle Mesh" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +#: plugins/TrimeshReader/__init__.py:19 msgctxt "@item:inlistbox" msgid "COLLADA Digital Asset Exchange" msgstr "COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +#: plugins/TrimeshReader/__init__.py:23 msgctxt "@item:inlistbox" msgid "glTF Binary" msgstr "glTF Binary" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +#: plugins/TrimeshReader/__init__.py:27 msgctxt "@item:inlistbox" msgid "glTF Embedded JSON" msgstr "glTF Embedded JSON" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +#: plugins/TrimeshReader/__init__.py:36 msgctxt "@item:inlistbox" msgid "Stanford Triangle Format" msgstr "Stanford Triangle Format" -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +#: plugins/TrimeshReader/__init__.py:40 msgctxt "@item:inlistbox" msgid "Compressed COLLADA Digital Asset Exchange" msgstr "Compressed COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker Biçim Paketi" +#: plugins/TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Model dosyalarını okuma desteği sağlar." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 +#: plugins/TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh Okuyucu" + +#: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "UltiMaker Format Package" +msgstr "UltiMaker Biçim Paketi" + +#: plugins/UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Ultimaker Biçim Paketlerinin okunması için destek sağlar." + +#: plugins/UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP Okuyucu" + +#: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80 +#: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115 +#: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180 msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "UFP dosyasına yazamıyor:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Yapı levhasını dengele" +#: plugins/UFPWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Ultimaker Biçim Paketleri yazmak için destek sağlar." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Yükseltmeleri seçin" +#: plugins/UFPWriter/plugin.json +msgctxt "name" +msgid "UFP Writer" +msgstr "UPF Yazıcı" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: plugins/UM3NetworkPrinting/plugin.json +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." + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Ultimaker Ağ Bağlantısı" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Ağ Yazıcısına Bağlan" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Aşağıdaki listeden yazıcınızı seçin:" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +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 "Yazıcınıza ağ üzerinden doğrudan baskı göndermek için lütfen yazıcınızın ağ kablosuyla ağa bağlı olduğundan veya yazıcınızı WiFi ağınıza bağladığınızdan emin olun. Yazıcınız ile Cura'ya bağlanamıyorsanız g-code dosyalarını yazıcınıza aktarmak için USB sürücüsü kullanabilirsiniz." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 +msgctxt "@action:button" +msgid "Edit" +msgstr "Düzenle" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 +#: resources/qml/Preferences/MachinesPage.qml:153 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:186 +#: resources/qml/Preferences/ProfilesPage.qml:321 +msgctxt "@action:button" +msgid "Remove" +msgstr "Kaldır" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Yenile" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 +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" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 +msgctxt "@label" +msgid "Type" +msgstr "Tür" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 +msgctxt "@label" +msgid "Firmware version" +msgstr "Üretici yazılımı sürümü" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 +msgctxt "@label" +msgid "Address" +msgstr "Adres" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Bu yazıcı, bir yazıcı grubunu barındırmak için ayarlı değildir." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Bu yazıcı, %1 yazıcı grubunun ana makinesidir." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "Bu adresteki yazıcı henüz yanıt vermedi." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" +msgid "Connect" +msgstr "Bağlan" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Geçersiz IP adresi" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Lütfen geçerli bir IP adresi girin." + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Yazıcı Adresi" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Ağdaki yazıcınızın IP adresini girin." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Yapılandırma Değişiklikleri" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 +msgctxt "@action:button" +msgid "Override" +msgstr "Geçersiz kıl" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "Atanan yazıcı %1, şu yapılandırma değişikliğini gerektiriyor:" +msgstr[1] "Atanan yazıcı %1, şu yapılandırma değişikliklerini gerektiriyor:" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "Yazıcı %1 atandı, fakat iş bilinmeyen bir malzeme yapılandırması içeriyor." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "%2 olan %1 malzemesini %3 yapın." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "%3 malzemesini %1 malzemesi olarak yükleyin (Bu işlem geçersiz kılınamaz)." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "%2 olan %1 print core'u %3 yapın." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110 +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "Geçersiz kıl seçeneği mevcut yazıcı yapılandırmasındaki ayarları kullanacaktır. Yazdırma işlemi başarısız olabilir." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +msgctxt "@label" +msgid "Move to top" +msgstr "En üste taşı" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155 +msgctxt "@label" +msgid "Delete" +msgstr "Sil" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186 +#: resources/qml/MonitorButton.qml:284 +msgctxt "@label" +msgid "Resume" +msgstr "Devam et" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188 +msgctxt "@label" +msgid "Pausing..." +msgstr "Duraklatılıyor..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190 +msgctxt "@label" +msgid "Resuming..." +msgstr "Devam ediliyor..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192 +#: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288 +msgctxt "@label" +msgid "Pause" +msgstr "Duraklat" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Abort" +msgstr "Durdur" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Aborting..." +msgstr "İptal ediliyor..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218 +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 öğesini kuyruğun en üstüne taşımak ister misiniz?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Yazdırma işini en üste taşı" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "%1 öğesini silmek istediğinizden emin misiniz?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Yazdırma işini sil" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "%1 öğesini durdurmak istediğinizden emin misiniz?" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237 +#: resources/qml/MonitorButton.qml:326 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Yazdırmayı durdur" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Kullanım dışı yazıcı" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 +msgctxt "@label" +msgid "First available" +msgstr "İlk kullanılabilen" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Kuyruğu uzaktan yönetmek için lütfen yazıcının donanım yazılımını güncelleyin." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +msgctxt "@label:status" +msgid "Aborted" +msgstr "Durduruldu" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 +msgctxt "@label:status" +msgid "Finished" +msgstr "Tamamlandı" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Hazırlanıyor..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +msgctxt "@label:status" +msgid "Aborting..." +msgstr "İptal ediliyor..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +msgctxt "@label:status" +msgid "Failed" +msgstr "Başarısız" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Duraklatılıyor..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +msgctxt "@label:status" +msgid "Paused" +msgstr "Duraklatıldı" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Devam ediliyor..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +msgctxt "@label:status" +msgid "Action required" +msgstr "Eylem gerekli" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "%1 bitiş tarihi: %2" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Yazıcıyı yönet" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280 +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 "Bulut yazıcıları için web kamerası akışları Ultimaker Cura'dan görüntülenemez. Ultimaker Digital Factory'i ziyaret etmek ve bu web kamerasını görüntülemek için \"Yazıcıyı Yönet\"i tıklayın." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Yükleniyor..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Mevcut değil" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Ulaşılamıyor" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Idle" +msgstr "Boşta" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361 +msgctxt "@label:status" +msgid "Printing" +msgstr "Yazdırma" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402 +msgctxt "@label" +msgid "Untitled" +msgstr "Başlıksız" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417 +msgctxt "@label" +msgid "Anonymous" +msgstr "Anonim" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Yapılandırma değişiklikleri gerekiyor" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452 +msgctxt "@action:button" +msgid "Details" +msgstr "Detaylar" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 +msgctxt "@label" +msgid "Queued" +msgstr "Kuyrukta" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64 +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Tarayıcıda yönet" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91 +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "Kuyrukta baskı işi yok. Bir iş eklemek için dilimleme yapın ve gönderin." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 +msgctxt "@label" +msgid "Print jobs" +msgstr "Yazdırma görevleri" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108 +msgctxt "@label" +msgid "Total print time" +msgstr "Toplam yazdırma süresi" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117 +msgctxt "@label" +msgid "Waiting for" +msgstr "Bekleniyor" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117 +msgctxt "@info" +msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" +msgstr "Ultimaker Digital Factory’yi kullanarak yazıcılarınızı her yerden takip edin" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129 +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Yazıcıları Digital Factory’de görüntüleyin" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 +msgctxt "@title:window" +msgid "Print over network" +msgstr "Ağ üzerinden yazdır" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 +msgctxt "@action:button" +msgid "Print" +msgstr "Yazdır" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 +msgctxt "@label" +msgid "Printer selection" +msgstr "Yazıcı seçimi" + +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162 msgctxt "@action:button" msgid "Print via cloud" msgstr "Bulut üzerinden yazdır" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Bulut üzerinden yazdır" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Bulut üzerinden bağlı" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276 msgctxt "@action:button" msgid "Monitor print" msgstr "Baskı izleme" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278 msgctxt "@action:tooltip" msgid "Track the print in Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory'de baskıyı izleyin" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298 #, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Baskı işi yüklenirken bilinmeyen hata kodu: {0}" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "Ultimaker hesabınızdan yeni yazıcı tespit edildi" -msgstr[1] "Ultimaker hesabınızdan yeni yazıcılar tespit edildi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:242 -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "{name} yazıcısı ({model}) hesabınızdan ekleniyor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:261 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "... ve {0} diğeri" -msgstr[1] "... ve {0} diğeri" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:266 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "Digital Factory'den eklenen yazıcılar:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:334 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "Yazıcı için kullanılabilir bulut bağlantısı yok" -msgstr[1] "Bazı yazıcılar için kullanılabilir bulut bağlantısı yok" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:343 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "Bu yazıcı Digital Factory ile bağlantılandırılmamış:" -msgstr[1] "Bu yazıcılar Digital Factory ile bağlantılandırılmamış:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:348 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:440 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23 msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:352 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "Bağlantı kurmak için lütfen {website_link} adresini ziyaret edin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:356 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "Yazıcı yapılandırmalarını koru" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "Yazıcıları kaldır" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:442 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425 #, 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} yazıcısı bir sonraki hesap senkronizasyonuna kadar kaldırılacak." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:443 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426 #, 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} yazıcısını kalıcı olarak kaldırmak için {digital_factory_link} adresini ziyaret edin" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:444 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427 #, 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} yazıcısını geçici olarak kaldırmak istediğinizden emin misiniz?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474 msgctxt "@title:window" msgid "Remove printers?" msgstr "Yazıcılar kaldırılsın mı?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477 #, python-brace-format msgctxt "@label" msgid "" @@ -1668,7 +3485,7 @@ msgstr[1] "" "{0} yazıcıyı Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\n" "Devam etmek istediğinizden emin misiniz?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 msgctxt "@label" msgid "" "You are about to remove all printers from Cura. This action cannot be undone.\n" @@ -1677,7 +3494,7 @@ msgstr "" "Tüm yazıcıları Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\n" "Devam etmek istediğinizden emin misiniz?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, python-brace-format msgctxt "@info:status" msgid "" @@ -1687,2493 +3504,1375 @@ msgstr "" "{printer_name} adlı yazıcınız bulut aracılığıyla bağlanamadı.\n" " Baskı kuyruğunuzu yönetin ve yazıcınızı Digital Factory'ye bağlayarak baskılarınızı dilediğiniz yerden takip edin" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 msgctxt "@info:title" msgid "Are you ready for cloud printing?" msgstr "Buluttan yazdırma için hazır mısınız?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 msgctxt "@action" msgid "Get started" msgstr "Başlayın" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24 msgctxt "@action" msgid "Learn more" msgstr "Daha fazla bilgi edinin" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 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." +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 çalıştırmayan bir yazıcıya bağlanmaya çalışıyorsunuz. Lütfen yazıcının donanım yazılımını son sürüme güncelleyin." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 msgctxt "@info:title" msgid "Update your printer" msgstr "Yazıcınızı güncelleyin" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 #, 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, henüz {0} grubunun ana yazıcısına yüklenmemiş malzeme profilleri tespit etti." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Malzemeler yazıcıya gönderiliyor" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "Ultimaker hesabınızdan yeni yazıcı tespit edildi" +msgstr[1] "Ultimaker hesabınızdan yeni yazıcılar tespit edildi" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29 +#, python-brace-format +msgctxt "info:status Filled in with printer name and printer model." +msgid "Adding printer {name} ({model}) from your account" +msgstr "{name} yazıcısı ({model}) hesabınızdan ekleniyor" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "... ve {0} diğeri" +msgstr[1] "... ve {0} diğeri" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "Digital Factory'den eklenen yazıcılar:" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 #, 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} ile bağlantı kurmayı deniyorsunuz ancak cihaz bir grubun ana makinesi değil. Bu cihazı grup ana makinesi olarak yapılandırmak için web sayfasını ziyaret edebilirsiniz." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 msgctxt "@info:title" msgid "Not a group host" msgstr "Grup ana makinesi değil" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 msgctxt "@action" msgid "Configure group" msgstr "Grubu yapılandır" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18 +msgctxt "@info:status" +msgid "You will receive a confirmation via email when the print job is approved" +msgstr "Baskı işi onaylandığında e-posta üzerinden bir onay alacaksınız" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19 +msgctxt "@info:title" +msgid "The print job was successfully submitted" +msgstr "Baskı işi başarıyla gönderildi" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22 +msgctxt "@action" +msgid "Manage print jobs" +msgstr "Baskı işlerini yönetin" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 msgctxt "@info:status" msgid "Please wait until the current job has been sent." msgstr "Mevcut iş gönderilene kadar bekleyin." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 msgctxt "@info:title" msgid "Print error" msgstr "Baskı hatası" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Veri yazıcıya yüklenemedi." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 msgctxt "@info:title" msgid "Network error" msgstr "Ağ hatası" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 msgctxt "@info:status" msgid "Sending Print Job" msgstr "Yazdırma İşi Gönderiliyor" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 msgctxt "@info:status" msgid "Uploading print job to printer." msgstr "Baskı işi yazıcıya yükleniyor." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 msgctxt "@info:status" msgid "Print job queue is full. The printer can't accept a new job." msgstr "Baskı işi kuyruğu dolu. Yazıcı yeni iş kabul edemez." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 msgctxt "@info:title" msgid "Queue Full" msgstr "Kuyruk Dolu" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "Yazdırma işi yazıcıya başarıyla gönderildi." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 msgctxt "@info:title" msgid "Data Sent" msgstr "Veri Gönderildi" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "Bu yazıcı Digital Factory ile bağlantılandırılmamış:" +msgstr[1] "Bu yazıcılar Digital Factory ile bağlantılandırılmamış:" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "Bağlantı kurmak için lütfen {website_link} adresini ziyaret edin" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "Yazıcı için kullanılabilir bulut bağlantısı yok" +msgstr[1] "Bazı yazıcılar için kullanılabilir bulut bağlantısı yok" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "Yazıcı yapılandırmalarını koru" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "Yazıcıları kaldır" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "Ağ üzerinden yazdır" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "Ağ üzerinden yazdır" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64 msgctxt "@info:status" msgid "Connected over the network" msgstr "Ağ üzerinden bağlandı" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 msgctxt "@action" msgid "Connect via Network" msgstr "Ağ ile Bağlan" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +#: plugins/UM3NetworkPrinting/src/Utils.py:27 msgctxt "@info:status" msgid "tomorrow" msgstr "yarın" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +#: plugins/UM3NetworkPrinting/src/Utils.py:30 msgctxt "@info:status" msgid "today" msgstr "bugün" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:42 msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB yazdırma" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:43 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print via USB" msgstr "USB ile yazdır" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:44 msgctxt "@info:tooltip" msgid "Print via USB" msgstr "USB ile yazdır" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:80 msgctxt "@info:status" msgid "Connected via USB" msgstr "USB ile bağlı" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:110 msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" msgstr "USB’den yazdırma devam ediyor, Cura’yı kapatmanız bu yazdırma işlemini durduracak. Emin misiniz?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:135 msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Devam eden bir baskı var. Cura, önceki baskı tamamlanmadan USB aracılığıyla başka bir baskı işi başlatamaz." -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +#: plugins/USBPrinting/USBPrinterOutputDevice.py:136 msgctxt "@message" msgid "Print in Progress" msgstr "Baskı Sürüyor" -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D Dosyası" +#: plugins/USBPrinting/plugin.json +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." -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Röntgen Görüntüsü" +#: plugins/USBPrinting/plugin.json +msgctxt "name" +msgid "USB printing" +msgstr "USB yazdırma" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 -msgctxt "@title:window" -msgid "Open Project" -msgstr "Proje Aç" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "Var olanları güncelleştir" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "Yeni oluştur" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:59 -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "Özet - Cura Projesi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108 -msgctxt "@info:tooltip" -msgid "How should the conflict in the machine be resolved?" -msgstr "Makinedeki çakışma nasıl çözülmelidir?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:95 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Yazıcı ayarları" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:104 -msgctxt "@action:label" -msgid "Type" -msgstr "Tür" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:192 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -msgctxt "@action:label" -msgid "Printer Group" -msgstr "Yazıcı Grubu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:217 -msgctxt "@info:tooltip" -msgid "How should the conflict in the profile be resolved?" -msgstr "Profildeki çakışma nasıl çözülmelidir?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:220 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Profil ayarları" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:250 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:375 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:244 -msgctxt "@action:label" -msgid "Name" -msgstr "İsim" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:268 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:261 -msgctxt "@action:label" -msgid "Intent" -msgstr "Intent" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:286 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:228 -msgctxt "@action:label" -msgid "Not in profile" -msgstr "Profilde değil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:292 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:233 -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "%1 geçersiz kılma" -msgstr[1] "%1 geçersiz kılmalar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 -msgctxt "@action:label" -msgid "Derivative from" -msgstr "Kaynağı" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:311 -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "%1, %2 geçersiz kılma" -msgstr[1] "%1, %2 geçersiz kılmalar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:333 -msgctxt "@info:tooltip" -msgid "How should the conflict in the material be resolved?" -msgstr "Malzemedeki çakışma nasıl çözülmelidir?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:360 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Malzeme ayarları" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:396 -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "Görünürlük ayarı" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 -msgctxt "@action:label" -msgid "Mode" -msgstr "Mod" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 -msgctxt "@action:label" -msgid "Visible settings:" -msgstr "Görünür ayarlar:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "%1 / %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:447 -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "Bir projenin yüklenmesi derleme levhasındaki tüm modelleri siler." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 -msgctxt "@action:button" -msgid "Open" -msgstr "Aç" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 -msgctxt "@action:button" -msgid "Open project anyway" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 -msgctxt "@action:button" -msgid "Install missing material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Daha fazla seçenek görüntülemek ister misiniz?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Şimdi Yedekle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Otomatik Yedekle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Cura’nın başlatıldığı günlerde otomatik olarak yedekleme yapar." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 -msgctxt "@button" -msgid "Restore" -msgstr "Geri Yükle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Yedeklemeyi Sil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Bu yedeklemeyi silmek istediğinizden emin misiniz? Bu eylem geri alınamaz." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Yedeklemeyi Geri Yükle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "Yedeklemeniz geri yüklenmeden öne Cura’yı yeniden başlatmalısınız. Cura’yı şimdi kapatmak istiyor musunuz?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura Sürümü" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Makineler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Malzemeler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profiller" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Eklentiler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura Yedeklemeleri" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Yedeklemelerim" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Şu anda yedeklemeniz yok. Oluşturmak için “Şimdi Yedekle” düğmesini kullanın." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Önizleme aşamasında en fazla 5 yedekleme görüntüleyebilirsiniz. Önceki yedeklemeleri görmek için mevcut yedeklemelerden birini kaldırın." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Cura ayarlarınızı yedekleyin ve senkronize edin." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:212 -msgctxt "@button" -msgid "Sign in" -msgstr "Giriş yap" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 -msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 -msgctxt "@option" -msgid "Save Cura project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Aygıt Yazılımını Güncelle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 -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 "Aygıt yazılımı doğrudan 3B yazıcı üzerinden çalışan bir yazılım parçasıdır. Bu aygıt yazılımı adım motorlarını kontrol eder, sıcaklığı düzenler ve sonunda yazıcının çalışmasını sağlar." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 -msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "Yeni yazıcıları olan aygıt yazılımı gönderimi yararlı olmaktadır, ancak yeni sürümler daha fazla özellik ve geliştirmeye eğilimlidir." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Aygıt Yazılımını otomatik olarak yükselt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Özel Aygıt Yazılımı Yükle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "Yazıcı ile bağlantı kurulmadığı için aygıt yazılımı güncellenemiyor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 -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." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Özel aygıt yazılımı seçin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Aygıt Yazılımı Güncellemesi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Aygıt yazılımı güncelleniyor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Aygıt yazılımı güncellemesi tamamlandı." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Bilinmeyen bir hata nedeniyle aygıt yazılımı güncellemesi başarısız oldu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Bir iletişim hatası nedeniyle aygıt yazılımı güncellemesi başarısız oldu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Bir girdi/çıktı hatası nedeniyle aygıt yazılımı güncellemesi başarısız oldu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Eksik aygıt yazılımı nedeniyle aygıt yazılımı güncellemesi başarısız oldu." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:14 -msgctxt "@title:window" -msgid "Convert Image" -msgstr "Resmi Dönüştür" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 -msgctxt "@action:label" -msgid "Height (mm)" -msgstr "Yükseklik (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "Her bir pikselin “Taban”dan en yüksek mesafesi." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 -msgctxt "@action:label" -msgid "Base (mm)" -msgstr "Taban (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 -msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "Tabanın yapı levhasından milimetre cinsinden yüksekliği." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 -msgctxt "@action:label" -msgid "Width (mm)" -msgstr "Genişlik (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 -msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate" -msgstr "Yapı plakasındaki milimetre cinsinden genişlik" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 -msgctxt "@action:label" -msgid "Depth (mm)" -msgstr "Derinlik (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 -msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "Yapı levhasındaki milimetre cinsinden derinlik" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 -msgctxt "@item:inlistbox" -msgid "Darker is higher" -msgstr "Daha koyu olan daha yüksek" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -msgctxt "@item:inlistbox" -msgid "Lighter is higher" -msgstr "Daha açık olan daha yüksek" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 -msgctxt "@info:tooltip" -msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." -msgstr "Litofanlar için, daha fazla ışığın girmesini engellemek amacıyla koyu renk pikseller daha kalın olan bölgelere denk gelmelidir. Yükseklik haritaları için daha açık renk pikseller daha yüksek araziyi ifade eder; bu nedenle daha açık renk piksellerin oluşturulan 3D modelde daha kalın bölgelere denk gelmesi gerekir." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:205 -msgctxt "@action:label" -msgid "Color Model" -msgstr "Renk Modeli" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:224 -msgctxt "@item:inlistbox" -msgid "Linear" -msgstr "Doğrusal" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 -msgctxt "@item:inlistbox" -msgid "Translucency" -msgstr "Yarı saydamlık" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 -msgctxt "@info:tooltip" -msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." -msgstr "Litofanlar için yarı saydamlık sağlayacak basit bir logaritmik model bulunur. Yükseklik haritaları için piksel değerleri doğrusal yüksekliklere karşılık gelir." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 -msgctxt "@action:label" -msgid "1mm Transmittance (%)" -msgstr "1 mm Geçirgenlik (%)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 -msgctxt "@info:tooltip" -msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." -msgstr "1 milimetre kalınlığında bir baskıya nüfuz eden ışığın yüzdesi. Bu değerin düşürülmesi karanlık bölgelerdeki kontrastı arttırır ve görüntünün açık bölgelerindeki kontrastı azaltır." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 -msgctxt "@action:label" -msgid "Smoothing" -msgstr "Düzeltme" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:298 -msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "Resme uygulanacak düzeltme miktarı." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:143 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:80 -msgctxt "@action:button" -msgid "OK" -msgstr "Tamam" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Yazıcı" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Nozül Ayarları" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Nozzle boyutu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Uyumlu malzeme çapı" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Nozül X ofseti" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Nozül Y ofseti" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Soğutma Fanı Numarası" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Ekstruder G-Code'u Başlatma" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Ekstruder G-Code'u Sonlandırma" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Yazıcı Ayarları" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (Genişlik)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Derinlik)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Yükseklik)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Yapı levhası şekli" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 -msgctxt "@label" -msgid "Origin at center" -msgstr "Merkez nokta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 -msgctxt "@label" -msgid "Heated bed" -msgstr "Isıtılmış yatak" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Isıtılmış yapı hacmi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 -msgctxt "@label" -msgid "G-code flavor" -msgstr "G-code türü" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Yazıcı Başlığı Ayarları" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 -msgctxt "@label" -msgid "X min" -msgstr "X min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 -msgctxt "@label" -msgid "Y min" -msgstr "Y min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 -msgctxt "@label" -msgid "X max" -msgstr "X maks" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 -msgctxt "@label" -msgid "Y max" -msgstr "Y maks" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Portal Yüksekliği" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Ekstrüder Sayısı" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Ekstrüder ofsetlerini GCode'a uygula" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "G-code’u Başlat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400 -msgctxt "@title:label" -msgid "End G-code" -msgstr "G-code’u Sonlandır" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 -msgctxt "@title" -msgid "Changes from your account" -msgstr "Hesabınızda değişiklik var" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -msgctxt "@button" -msgid "Dismiss" -msgstr "Kapat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:118 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:175 -msgctxt "@button" -msgid "Next" -msgstr "Sonraki" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "Aşağıdaki paketler eklenecek:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "Aşağıdaki paketler uyumsuz Cura sürümü nedeniyle yüklenemiyor:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 -msgctxt "@title" -msgid "Install missing Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 -msgctxt "@button" -msgid "Plugin license agreement" -msgstr "Eklenti Lisans Anlaşması" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47 -msgctxt "@text" -msgid "Please read and agree with the plugin licence." -msgstr "Eklenti lisansını okuyun ve kabul edin." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 -msgctxt "@button" -msgid "Accept" -msgstr "Kabul et" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 -msgctxt "@header" -msgid "Manage packages" -msgstr "Paketleri yönet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15 -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." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 -msgctxt "@info:tooltip" -msgid "Manage packages" -msgstr "Paketleri yönet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 -msgctxt "@title" -msgid "Loading..." -msgstr "Yükleniyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 -msgctxt "@button" -msgid "Plugins" -msgstr "Eklentiler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 -msgctxt "@button" -msgid "Materials" -msgstr "Malzemeler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 -msgctxt "@info" -msgid "Search in the browser" -msgstr "Tarayıcıda ara" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:271 -msgctxt "@button" -msgid "In order to use the package you will need to restart Cura" -msgstr "Paketi kullanmak için Cura'yı yeniden başlatmanız gerekecek" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:279 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "%1 uygulamasından çık" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:8 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MissingPackages.qml:8 -msgctxt "@header" -msgid "Install Materials" -msgstr "Malzeme Yükle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 -msgctxt "@text" -msgid "Select and install material profiles optimised for your Ultimaker 3D printers." -msgstr "Ultimaker 3D yazıcılarınız için optimize edilmiş malzeme profillerini seçin ve yükleyin." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "Paketi yüklemek için lisansı kabul etmeniz gerekir" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:101 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:207 -msgctxt "@button:label" -msgid "Learn More" -msgstr "Daha Fazla Bilgi Edinin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:172 -msgctxt "@label Is followed by the name of an author" -msgid "By" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Enable" -msgstr "Etkinleştir" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Disable" -msgstr "Devre dışı bırak" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 -msgctxt "@button" -msgid "Downgrading..." -msgstr "Eski sürüm yükleniyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 -msgctxt "@button" -msgid "Downgrade" -msgstr "Eski Sürümü Yükle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 -msgctxt "@button" -msgid "Installing..." -msgstr "Yükleniyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 -msgctxt "@button" -msgid "Install" -msgstr "Yükle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 -msgctxt "@button" -msgid "Uninstall" -msgstr "Kaldır" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Updating..." -msgstr "Güncelleniyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Update" -msgstr "Güncelle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 -msgctxt "@header" -msgid "Package details" -msgstr "Paket ayrıntıları" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 -msgctxt "@button:tooltip" -msgid "Back" -msgstr "Geri" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 -msgctxt "@header" -msgid "Description" -msgstr "Tanım" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 -msgctxt "@header" -msgid "Compatible printers" -msgstr "Uyumlu yazıcılar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:134 -msgctxt "@info" -msgid "No compatibility information" -msgstr "Uyumluluk bilgisi yok" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:152 -msgctxt "@header" -msgid "Compatible support materials" -msgstr "Uyumlu destek malzemeleri" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176 -msgctxt "@info No materials" -msgid "None" -msgstr "Hiçbiri" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:193 -msgctxt "@header" -msgid "Compatible with Material Station" -msgstr "Material Station ile uyumlu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "Yes" -msgstr "Evet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "No" -msgstr "Hayır" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:219 -msgctxt "@header" -msgid "Optimized for Air Manager" -msgstr "Air Manager için en uygun" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Visit plug-in website" -msgstr "Eklenti web sitesini ziyaret edin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Website" -msgstr "Web sitesi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:252 -msgctxt "@button" -msgid "Buy spool" -msgstr "Makara satın al" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:261 -msgctxt "@button" -msgid "Safety datasheet" -msgstr "Güvenlik veri sayfası" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:270 -msgctxt "@button" -msgid "Technical datasheet" -msgstr "Teknik veri sayfası" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Failed to load packages:" -msgstr "Paketler yüklenemedi:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Retry?" -msgstr "Yeniden denensin mi?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:167 -msgctxt "@button" -msgid "Loading" -msgstr "Yükleniyor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No more results to load" -msgstr "Yüklenecek başka sonuç yok" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No results found with current filter" -msgstr "Mevcut filtreyle başka sonuç bulunmadı" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:226 -msgctxt "@button" -msgid "Load more" -msgstr "Daha fazla yükle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8 -msgctxt "@header" -msgid "Install Plugins" -msgstr "Eklentileri Yükle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12 -msgctxt "@text" -msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users." -msgstr "Muhteşem kullanıcı topluluğumuzun katkıda bulunduğu eklentilerle iş akışınızı kolaylaştırın ve Ultimaker Cura deneyiminizi kendinize uygun hale getirin." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 -msgctxt "@info" -msgid "Ultimaker Verified Plug-in" -msgstr "Ultimaker Tarafından Doğrulanmış Eklenti" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 -msgctxt "@info" -msgid "Ultimaker Certified Material" -msgstr "Ultimaker Sertifikalı Malzeme" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 -msgctxt "@info" -msgid "Ultimaker Verified Package" -msgstr "Ultimaker Tarafından Doğrulanmış Paket" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 -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 "" -"Lütfen yazıcınızda bağlantı olduğundan emin olun:\n" -"- Yazıcının açık olup olmadığını kontrol edin.\n" -"- Yazıcının ağa bağlı olup olmadığını kontrol edin.\n" -"- Buluta bağlı yazıcıları keşfetmek için giriş yapıp yapmadığınızı kontrol edin." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 -msgctxt "@info" -msgid "Please connect your printer to the network." -msgstr "Lütfen yazıcınızı ağa bağlayın." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 -msgctxt "@label link to technical assistance" -msgid "View user manuals online" -msgstr "Kullanım kılavuzlarını çevrimiçi olarak görüntüle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:163 -msgctxt "@info" -msgid "In order to monitor your print from Cura, please connect the printer." -msgstr "Baskınızı Cura üzerinden izlemek için lütfen yazıcıyı bağlayın." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Ağ Tipi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 -msgctxt "@label" -msgid "Normal model" -msgstr "Normal model" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 -msgctxt "@label" -msgid "Print as support" -msgstr "Destek olarak yazdır" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Çakışma ayarlarını değiştir" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Çakışmaları destekleme" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Yalnızca dolgu kafes" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Kesme Örgüsü" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Ayarları seçin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Bu modeli Özelleştirmek için Ayarları seçin" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtrele..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Tümünü göster" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Son İşleme Uzantısı" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Son İşleme Dosyaları" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" -msgid "Add a script" -msgstr "Dosya ekle" +msgid "Level build plate" +msgstr "Yapı levhasını dengele" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 -msgctxt "@label" -msgid "Settings" -msgstr "Ayarlar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:459 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Etkin ileri işleme komut dosyalarını değiştirin." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:463 -msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "Aşağıdaki komut dosyası etkin:" -msgstr[1] "Aşağıdaki komut dosyaları etkin:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:47 -msgctxt "@label" -msgid "Color scheme" -msgstr "Renk şeması" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Malzeme Rengi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Çizgi Tipi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Hız" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Katman kalınlığı" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Hat Genişliği" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Akış" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Uyumluluk Modu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 -msgctxt "@label" -msgid "Travels" -msgstr "Geçişler" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 -msgctxt "@label" -msgid "Helpers" -msgstr "Yardımcılar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 -msgctxt "@label" -msgid "Shell" -msgstr "Kabuk" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:64 -msgctxt "@label" -msgid "Infill" -msgstr "Dolgu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Starts" -msgstr "Başlangıçlar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Yalnızca Üst Katmanları Göster" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "En Üstteki 5 Ayrıntılı Katmanı Göster" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Üst / Alt" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 -msgctxt "@label" -msgid "Inner Wall" -msgstr "İç Duvar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 -msgctxt "@label" -msgid "min" -msgstr "min" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 -msgctxt "@label" -msgid "max" -msgstr "maks" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Anonim veri toplama hakkında daha fazla bilgi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 -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, yazdırma kalitesini ve kullanıcı deneyimini iyileştirmek için anonim veri toplar. Aşağıda, paylaşılan tüm verilerin bir örneği verilmiştir:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Anonim veri göndermek istemiyorum" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Anonim veri gönderilmesine izin ver" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 msgctxt "@title" msgid "Build Plate Leveling" msgstr "Yapı Levhası Dengeleme" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 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 "Baskılarınızın düzgün çıktığından emin olmak için yapı levhanızı ayarlayabilirsiniz. “Sonraki Konuma Taşı” seçeneğine tıkladığınızda, nozül ayarlanabilen farklı konumlara taşınacak." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 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 "Her konum için nozülün altına bir kağıt yerleştirin ve yazdırma yapı levhasının yüksekliğini ayarlayın. Kağıt nozülün ucundan yavaşça geçerse yazdırma yapı levhasının yüksekliği doğrudur." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 msgctxt "@action:button" msgid "Start Build Plate Leveling" msgstr "Yapı Levhasını Dengelemeyi Başlat" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 msgctxt "@action:button" msgid "Move to Next Position" msgstr "Sonraki Konuma Taşı" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Lütfen Ultimaker Original’e yapılan herhangi bir yükseltmeyi seçin" +#: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "Yükseltmeleri seçin" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this UltiMaker Original" +msgstr "Lütfen UltiMaker Original’e yapılan herhangi bir yükseltmeyi seçin" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 msgctxt "@label" msgid "Heated Build Plate (official kit or self-built)" msgstr "Isıtılmış Yapı Levhası (orijinal donanım veya şahsen yapılan)" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Ağ Yazıcısına Bağlan" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -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 "Yazıcınıza ağ üzerinden doğrudan baskı göndermek için lütfen yazıcınızın ağ kablosuyla ağa bağlı olduğundan veya yazıcınızı WiFi ağınıza bağladığınızdan emin olun. Yazıcınız ile Cura'ya bağlanamıyorsanız g-code dosyalarını yazıcınıza aktarmak için USB sürücüsü kullanabilirsiniz." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Aşağıdaki listeden yazıcınızı seçin:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 -msgctxt "@action:button" -msgid "Edit" -msgstr "Düzenle" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:140 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:321 -msgctxt "@action:button" -msgid "Remove" -msgstr "Kaldır" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Yenile" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 -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" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 -msgctxt "@label" -msgid "Type" -msgstr "Tür" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 -msgctxt "@label" -msgid "Firmware version" -msgstr "Üretici yazılımı sürümü" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 -msgctxt "@label" -msgid "Address" -msgstr "Adres" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Bu yazıcı, bir yazıcı grubunu barındırmak için ayarlı değildir." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Bu yazıcı, %1 yazıcı grubunun ana makinesidir." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "Bu adresteki yazıcı henüz yanıt vermedi." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 -msgctxt "@action:button" -msgid "Connect" -msgstr "Bağlan" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Geçersiz IP adresi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Lütfen geçerli bir IP adresi girin." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Yazıcı Adresi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Ağdaki yazıcınızın IP adresini girin." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Yapılandırma Değişiklikleri" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 -msgctxt "@action:button" -msgid "Override" -msgstr "Geçersiz kıl" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "Atanan yazıcı %1, şu yapılandırma değişikliğini gerektiriyor:" -msgstr[1] "Atanan yazıcı %1, şu yapılandırma değişikliklerini gerektiriyor:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "Yazıcı %1 atandı, fakat iş bilinmeyen bir malzeme yapılandırması içeriyor." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "%2 olan %1 malzemesini %3 yapın." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "%3 malzemesini %1 malzemesi olarak yükleyin (Bu işlem geçersiz kılınamaz)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "%2 olan %1 print core'u %3 yapın." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Baskı tablasını %1 olarak değiştirin (Bu işlem geçersiz kılınamaz)." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "Geçersiz kıl seçeneği mevcut yazıcı yapılandırmasındaki ayarları kullanacaktır. Yazdırma işlemi başarısız olabilir." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:178 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:175 -msgctxt "@label" -msgid "Glass" -msgstr "Cam" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154 -msgctxt "@label" -msgid "Aluminum" -msgstr "Alüminyum" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "En üste taşı" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Sil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:284 -msgctxt "@label" -msgid "Resume" -msgstr "Devam et" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Duraklatılıyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Devam ediliyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:288 -msgctxt "@label" -msgid "Pause" -msgstr "Duraklat" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "İptal ediliyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Durdur" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:142 -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 öğesini kuyruğun en üstüne taşımak ister misiniz?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Yazdırma işini en üste taşı" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:151 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "%1 öğesini silmek istediğinizden emin misiniz?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Yazdırma işini sil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:160 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "%1 öğesini durdurmak istediğinizden emin misiniz?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Yazdırmayı durdur" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Yazıcıyı yönet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:239 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Kuyruğu uzaktan yönetmek için lütfen yazıcının donanım yazılımını güncelleyin." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:275 -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 "Bulut yazıcıları için web kamerası akışları Ultimaker Cura'dan görüntülenemez. Ultimaker Digital Factory'i ziyaret etmek ve bu web kamerasını görüntülemek için \"Yazıcıyı Yönet\"i tıklayın." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Yükleniyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Mevcut değil" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Ulaşılamıyor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347 -msgctxt "@label:status" -msgid "Idle" -msgstr "Boşta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Hazırlanıyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Printing" -msgstr "Yazdırma" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397 -msgctxt "@label" -msgid "Untitled" -msgstr "Başlıksız" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:412 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anonim" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:433 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Yapılandırma değişiklikleri gerekiyor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:447 -msgctxt "@action:button" -msgid "Details" -msgstr "Detaylar" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Kullanım dışı yazıcı" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 -msgctxt "@label" -msgid "First available" -msgstr "İlk kullanılabilen" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Durduruldu" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 -msgctxt "@label:status" -msgid "Finished" -msgstr "Tamamlandı" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "İptal ediliyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -msgctxt "@label:status" -msgid "Failed" -msgstr "Başarısız" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Duraklatılıyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Paused" -msgstr "Duraklatıldı" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Devam ediliyor..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Action required" -msgstr "Eylem gerekli" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "%1 bitiş tarihi: %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 -msgctxt "@label" -msgid "Queued" -msgstr "Kuyrukta" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Tarayıcıda yönet" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:90 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "Kuyrukta baskı işi yok. Bir iş eklemek için dilimleme yapın ve gönderin." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:98 -msgctxt "@label" -msgid "Print jobs" -msgstr "Yazdırma görevleri" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107 -msgctxt "@label" -msgid "Total print time" -msgstr "Toplam yazdırma süresi" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116 -msgctxt "@label" -msgid "Waiting for" -msgstr "Bekleniyor" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Ağ üzerinden yazdır" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 -msgctxt "@action:button" -msgid "Print" -msgstr "Yazdır" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 -msgctxt "@label" -msgid "Printer selection" -msgstr "Yazıcı seçimi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 +#: plugins/UltimakerMachineActions/plugin.json +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.)" + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Ultimaker makine eylemleri" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "2.1’den 2.2’ye Sürüm Yükseltme" + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "2.2’den 2.4’e Sürüm Yükseltme" + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "2.5’ten 2.6’ya Sürüm Yükseltme" + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "2.6’dan 2.7’ye Sürüm Yükseltme" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "2.7’den 3.0’a Sürüm Yükseltme" + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "3.0'dan 3.1'e Sürüm Yükseltme" + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "3.2'dan 3.3'e Sürüm Yükseltme" + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "3.3'dan 3.4'e Sürüm Yükseltme" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "3.4’ten 3.5’e Sürüm Yükseltme" + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "3.5’ten 4.0’a Sürüm Yükseltme" + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "4.0’dan 4.1’e Sürüm Yükseltme" + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "4.11'den 4.12'ye Sürüm Yükseltme" + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "4.13'ten 5.0'a Sürüm Yükseltme" + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Sürüm 4.1'den 4.2'ye Yükseltme" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "4.2'den 4.3'e Sürüm Yükseltme" + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "4.3'ten 4.4'e Sürüm Yükseltme" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "4.4'ten 4.5'e Sürüm Yükseltme" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "4.5'ten 4.6'ya Sürüm Yükseltme" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +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" + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "4.6.2'den 4.7'ye Sürüm Yükseltme" + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "4.7'den 4.8'e Sürüm Yükseltme" + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "4.8'den 4.9'a Sürüm Yükseltme" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "4.9'dan 4.10'a Sürüm Yükseltme" + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +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." + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "5.2'dan 5.3'a Sürüm Yükseltme" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "" + +#: plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3D Dosyası" + +#: plugins/X3DReader/plugin.json +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "X3D dosyalarının okunması için destek sağlar." + +#: plugins/X3DReader/plugin.json +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D Okuyucu" + +#: plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Röntgen Görüntüsü" + +#: plugins/XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Röntgen Görüntüsü sağlar." + +#: plugins/XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "Röntgen Görüntüsü" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "Malzeme Profilleri" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "XML tabanlı malzeme profillerini okuma ve yazma olanağı sağlar." + +#: resources/qml/Account/AccountWidget.qml:24 msgctxt "@action:button" msgid "Sign in" msgstr "Giriş yap" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: resources/qml/Account/GeneralOperations.qml:19 +#: resources/qml/WelcomePages/CloudContent.qml:64 msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "Ultimaker platformuna giriş yapın" +msgid "Sign in to the UltiMaker platform" +msgstr "UltiMaker platformuna giriş yapın" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 +#: resources/qml/Account/GeneralOperations.qml:39 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" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" msgstr "" "- Marketplace'den malzeme profilleri ve eklentiler ekleyin\n" "- Malzeme profillerinizi ve eklentilerinizi yedekleyin ve senkronize edin\n" -"- Ultimaker topluluğunda fikirlerinizi paylaşın ve 48.000'den fazla kullanıcıdan yardım alın" +"- UltiMaker topluluğunda fikirlerinizi paylaşın ve 48.000'den fazla kullanıcıdan yardım alın" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 +#: resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "Ücretsiz Ultimaker hesabı oluşturun" +msgid "Create a free UltiMaker account" +msgstr "Ücretsiz UltiMaker hesabı oluşturun" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 +#: resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "Kontrol ediliyor..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 +#: resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "Hesap senkronize edildi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 +#: resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "Bir sorun oluştu..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 +#: resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "Bekleyen güncellemeleri yükle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 +#: resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "Hesap güncellemelerini kontrol et" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +#: resources/qml/Account/UserOperations.qml:78 msgctxt "@label The argument is a timestamp" msgid "Last update: %1" msgstr "Son güncelleme: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +#: resources/qml/Account/UserOperations.qml:107 msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimaker hesabı" +msgid "UltiMaker Account" +msgstr "UltiMaker hesabı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +#: resources/qml/Account/UserOperations.qml:126 msgctxt "@button" msgid "Sign Out" msgstr "Çıkış yap" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" msgid "No time estimation available" msgstr "Süre tahmini yok" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:77 msgctxt "@label" msgid "No cost estimation available" msgstr "Maliyet tahmini yok" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:127 msgctxt "@button" msgid "Preview" msgstr "Önizleme" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" msgid "Time estimation" msgstr "Süre tahmini" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 +#: resources/qml/ActionPanel/PrintJobInformation.qml:107 msgctxt "@label" msgid "Material estimation" msgstr "Malzeme tahmini" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:156 +#: resources/qml/ActionPanel/PrintJobInformation.qml:156 msgctxt "@label m for meter" msgid "%1m" msgstr "%1 m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:157 +#: resources/qml/ActionPanel/PrintJobInformation.qml:157 msgctxt "@label g for grams" msgid "%1g" msgstr "%1 g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:54 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Dilimleniyor..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:78 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:78 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "Dilimlenemedi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Processing" msgstr "İşleme" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Slice" msgstr "Dilimle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:115 msgctxt "@label" msgid "Start the slicing process" msgstr "Dilimleme sürecini başlat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:132 msgctxt "@button" msgid "Cancel" msgstr "İptal" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 +#: resources/qml/Actions.qml:81 msgctxt "@action:inmenu" msgid "Show Online Troubleshooting" msgstr "Çevrimiçi Sorun Giderme Kılavuzunu Göster" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 +#: resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "Tam Ekrana Geç" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 +#: resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "Tam Ekrandan Çık" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 +#: resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "&Geri Al" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 +#: resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "&Yinele" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 +#: resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "&Çıkış" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 +#: resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "3 Boyutlu Görünüm" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 +#: resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Önden Görünüm" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 +#: resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "Yukarıdan Görünüm" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 +#: resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "Alttan Görünüm" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 +#: resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "Sol Taraftan Görünüm" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 +#: resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "Sağ Taraftan Görünüm" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 +#: resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Cura’yı yapılandır..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 +#: resources/qml/Actions.qml:197 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "&Yazıcı Ekle..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 +#: resources/qml/Actions.qml:203 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "Yazıcıları Yönet..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 +#: resources/qml/Actions.qml:210 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Malzemeleri Yönet..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:216 -msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate." +#: resources/qml/Actions.qml:218 +msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." msgid "Add more materials from Marketplace" msgstr "Mağazadan daha fazla malzeme ekle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 +#: resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "&Profili geçerli ayarlar/geçersiz kılmalar ile güncelle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 +#: resources/qml/Actions.qml:233 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "&Geçerli değişiklikleri iptal et" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 +#: resources/qml/Actions.qml:245 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "G&eçerli ayarlardan/geçersiz kılmalardan profil oluştur..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 +#: resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "Profilleri Yönet..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 +#: resources/qml/Actions.qml:259 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Çevrimiçi Belgeleri Göster" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 +#: resources/qml/Actions.qml:267 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "Hata Bildir" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 +#: resources/qml/Actions.qml:275 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "Yenilikler" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 +#: resources/qml/Actions.qml:289 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "Hakkında..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 +#: resources/qml/Actions.qml:296 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "Seçileni Sil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 +#: resources/qml/Actions.qml:306 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "Seçileni Ortala" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 +#: resources/qml/Actions.qml:315 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "Seçileni Çoğalt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 +#: resources/qml/Actions.qml:324 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Modeli Sil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 +#: resources/qml/Actions.qml:332 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Modeli Platformda Ortala" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 +#: resources/qml/Actions.qml:338 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "Modelleri Gruplandır" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 +#: resources/qml/Actions.qml:358 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Model Grubunu Çöz" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 +#: resources/qml/Actions.qml:368 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "&Modelleri Birleştir" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 +#: resources/qml/Actions.qml:378 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&Modeli Çoğalt..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 +#: resources/qml/Actions.qml:385 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "Tüm modelleri Seç" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 +#: resources/qml/Actions.qml:395 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "Yapı Levhasını Temizle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 +#: resources/qml/Actions.qml:405 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "Tüm Modelleri Yeniden Yükle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 +#: resources/qml/Actions.qml:414 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Tüm Modelleri Düzenle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 +#: resources/qml/Actions.qml:422 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Seçimi Düzenle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 +#: resources/qml/Actions.qml:429 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Tüm Model Konumlarını Sıfırla" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 +#: resources/qml/Actions.qml:436 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "Tüm Model ve Dönüşümleri Sıfırla" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 +#: resources/qml/Actions.qml:445 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Dosya Aç..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 +#: resources/qml/Actions.qml:455 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Yeni Proje..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 +#: resources/qml/Actions.qml:462 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Yapılandırma Klasörünü Göster" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 +#: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Görünürlük ayarını yapılandır..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 msgctxt "@label:button" msgid "My printers" msgstr "Yazıcılarım" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 msgctxt "@tooltip:button" msgid "Monitor printers in Ultimaker Digital Factory." msgstr "Ultimaker Digital Factory'de yazıcıları izleyin." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Digital Library'de baskı projeleri oluşturun." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 msgctxt "@label:button" msgid "Print jobs" msgstr "Yazdırma görevleri" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 msgctxt "@tooltip:button" msgid "Monitor print jobs and reprint from your print history." msgstr "Baskı işlerini takip edin ve baskı geçmişinizden yeniden baskı işlemi yapın." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." -msgstr "Ultimaker Cura'yı eklentilerle ve malzeme profilleriyle genişletin." +msgid "Extend UltiMaker Cura with plugins and material profiles." +msgstr "UltiMaker Cura'yı eklentilerle ve malzeme profilleriyle genişletin." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." -msgstr "Ultimaker e-öğrenme ile 3D baskı uzmanı olun." +msgid "Become a 3D printing expert with UltiMaker e-learning." +msgstr "UltiMaker e-öğrenme ile 3D baskı uzmanı olun." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Ultimaker desteği" +msgid "UltiMaker support" +msgstr "UltiMaker desteği" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." -msgstr "Ultimaker Cura ile işe nasıl başlayacağınızı öğrenin." +msgid "Learn how to get started with UltiMaker Cura." +msgstr "UltiMaker Cura ile işe nasıl başlayacağınızı öğrenin." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 msgctxt "@label:button" msgid "Ask a question" msgstr "Soru gönder" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Ultimaker Topluluğundan yardım alın." +msgid "Consult the UltiMaker Community." +msgstr "UltiMaker Topluluğundan yardım alın." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 msgctxt "@label:button" msgid "Report a bug" msgstr "Hata bildirin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Geliştiricileri sorunlarla ilgili bilgilendirin." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Ultimaker web sitesini ziyaret edin." +msgid "Visit the UltiMaker website." +msgstr "UltiMaker web sitesini ziyaret edin." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 +#: resources/qml/ColorDialog.qml:110 msgctxt "@label" msgid "Hex" msgstr "Altıgen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 +#: resources/qml/Cura.qml:256 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "Bu paket yeniden başlatmanın ardından kurulacak." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +#: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14 msgctxt "@title:tab" msgid "General" msgstr "Genel" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +#: resources/qml/Cura.qml:470 msgctxt "@title:tab" msgid "Settings" msgstr "Ayarlar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:468 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:17 +#: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17 msgctxt "@title:tab" msgid "Printers" msgstr "Yazıcılar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:470 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70 +#: resources/qml/Cura.qml:474 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:70 msgctxt "@title:tab" msgid "Materials" msgstr "Malzemeler" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:472 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:57 +#: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57 msgctxt "@title:tab" msgid "Profiles" msgstr "Profiller" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +#: resources/qml/Cura.qml:581 msgctxt "@title:window %1 is the application name" msgid "Closing %1" msgstr "%1 kapatılıyor" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:590 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:599 +#: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591 msgctxt "@label %1 is the application name" msgid "Are you sure you want to exit %1?" msgstr "%1 uygulamasından çıkmak istediğinizden emin misiniz?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:637 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 +#: resources/qml/Cura.qml:629 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 msgctxt "@title:window" msgid "Open file(s)" msgstr "Dosya aç" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +#: resources/qml/Cura.qml:734 msgctxt "@window:title" msgid "Install Package" msgstr "Paketi Kur" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +#: resources/qml/Cura.qml:741 msgctxt "@title:window" msgid "Open File(s)" msgstr "Dosya Aç" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +#: resources/qml/Cura.qml:743 msgctxt "@text:window" msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." msgstr "Seçtiğiniz dosyalar arasında bir veya daha fazla G-code dosyası bulduk. Tek seferde sadece bir G-code dosyası açabilirsiniz. Bir G-code dosyası açmak istiyorsanız, sadece birini seçiniz." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:831 +#: resources/qml/Cura.qml:828 msgctxt "@title:window" msgid "Add Printer" msgstr "Yazıcı Ekle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +#: resources/qml/Cura.qml:836 msgctxt "@title:window" msgid "What's New" msgstr "Yenilikler" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: resources/qml/Cura.qml:890 +msgctxt "@title:window" +msgid "Save Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:891 +msgctxt "@textfield:placeholder" +msgid "New Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:892 +msgctxt "@info" +msgid "Custom profile name:" +msgstr "" + +#: resources/qml/Cura.qml:909 +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 "Özel profilde yalnızca kullanıcı tarafından değiştirilen ayarlar kaydedilir.
    Yeni özel profil, bunu destekleyen malzemeler için %1adresindeki özellikleri devralır." + +#: resources/qml/Cura.qml:917 +msgctxt "@action:button" +msgid "Learn more about Cura print profiles" +msgstr "Cura baskı profilleri hakkında daha fazla bilgi edinin" + +#: resources/qml/Cura.qml:926 +msgctxt "@button" +msgid "Save new profile" +msgstr "" + +#: resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "%1 hakkında" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: resources/qml/Dialogs/AboutDialog.qml:59 msgctxt "@label" msgid "version: %1" msgstr "sürüm: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: resources/qml/Dialogs/AboutDialog.qml:74 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Kaynaşık filaman 3B yazdırma için kalıcı çözüm." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: resources/qml/Dialogs/AboutDialog.qml:87 msgctxt "@info:credit" msgid "" -"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura is developed by UltiMaker in cooperation with the community.\n" "Cura proudly uses the following open source projects:" msgstr "" -"Cura, topluluk iş birliği ile Ultimaker B.V. tarafından geliştirilmiştir.\n" +"Cura, topluluk iş birliği ile UltiMaker tarafından geliştirilmiştir.\n" "Cura aşağıdaki açık kaynak projelerini gururla kullanmaktadır:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label Description for application component" msgid "Graphical user interface" msgstr "Grafik kullanıcı arayüzü" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label Description for application component" msgid "Application framework" msgstr "Uygulama çerçevesi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label Description for application component" msgid "G-code generator" msgstr "G-code oluşturucu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label Description for application component" msgid "Interprocess communication library" msgstr "İşlemler arası iletişim kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:142 +msgctxt "@label Description for application component" msgid "Python bindings for libnest2d" msgstr "libnest2d için Python bağlamaları" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label Description for application component" msgid "Polygon packing library, developed by Prusa Research" msgstr "Prusa Research tarafından geliştirilen Poligon paketleme kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:144 +msgctxt "@label Description for application component" msgid "Support library for handling 3MF files" msgstr "3MF dosyalarının işlenmesi için destek kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:145 +msgctxt "@label Description for application component" msgid "Support library for file metadata and streaming" msgstr "Dosya meta verileri ve akış için destek kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Programlama dili" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label Description for application dependency" msgid "GUI framework" msgstr "GUI çerçevesi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label Description for application dependency" msgid "GUI framework bindings" msgstr "GUI çerçeve bağlantıları" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label Description for application dependency" msgid "C/C++ Binding library" msgstr "C/C++ Bağlantı kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:152 +msgctxt "@label Description for application dependency" msgid "Data interchange format" msgstr "Veri değişim biçimi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "Font" msgstr "Yazı tipi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label Description for application dependency" msgid "Polygon clipping library" msgstr "Poligon kırpma kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label Description for application dependency" msgid "JSON parser" -msgstr "" +msgstr "JSON ayrıştırıcı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:158 +msgctxt "@label Description for application dependency" msgid "Utility functions, including an image loader" -msgstr "" +msgstr "Kullanım işlevleri, bir resim yükleyici dâhil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:159 +msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" -msgstr "" +msgstr "Kullanım kütüphanesi, Voronoi oluşturma dâhil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:162 +#: resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label Description for application dependency" msgid "Root Certificates for validating SSL trustworthiness" -msgstr "" +msgstr "SSL güvenilirliğini doğrulamak için kök sertifikalar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label Description for application dependency" msgid "Compatibility between Python 2 and 3" -msgstr "" +msgstr "Python 2 ve 3 arasında uyumluluk" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label Description for application dependency" msgid "Support library for system keyring access" msgstr "Sistem anahtarlık erişimi için destek kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label Description for application dependency" msgid "Support library for faster math" msgstr "Daha hızlı matematik için destek kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label Description for application dependency" msgid "Support library for handling STL files" msgstr "STL dosyalarının işlenmesi için destek kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label Description for application dependency" msgid "Python bindings for Clipper" msgstr "Clipper için Python bağlamaları" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Seri iletişim kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label Description for application dependency" msgid "Support library for scientific computing" msgstr "Bilimsel bilgi işlem için destek kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 -msgctxt "@Label" +#: resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@Label Description for application dependency" msgid "Python Error tracking library" msgstr "Python Hata takip kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:172 +msgctxt "@label Description for application dependency" msgid "Support library for handling triangular meshes" msgstr "Üçgen birleşimlerin işlenmesi için destek kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:173 +msgctxt "@label Description for application dependency" msgid "ZeroConf discovery library" msgstr "ZeroConf keşif kitaplığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label Description for development tool" msgid "Universal build system configuration" -msgstr "" +msgstr "Evrensel yapı sistemi yapılandırması" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label Description for development tool" msgid "Dependency and package manager" -msgstr "" +msgstr "Bağımlılık ve paket yöneticisi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label Description for development tool" msgid "Packaging Python-applications" -msgstr "" +msgstr "Python uygulamalarını paketleme" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:179 +msgctxt "@label Description for development tool" msgid "Linux cross-distribution application deployment" msgstr "Linux çapraz-dağıtım uygulama dağıtımı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:180 +msgctxt "@label Description for development tool" msgid "Generating Windows installers" -msgstr "" +msgstr "Windows yükleyicileri oluşturma" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 msgctxt "@title:window" msgid "Open project file" msgstr "Proje dosyası aç" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84 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 "Bu bir Cura proje dosyasıdır. Bir proje olarak açmak mı yoksa içindeki modelleri içe aktarmak mı istiyorsunuz?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:90 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91 msgctxt "@text:window" msgid "Remember my choice" msgstr "Seçimimi hatırla" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105 msgctxt "@action:button" msgid "Open as project" msgstr "Proje olarak aç" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110 msgctxt "@action:button" msgid "Import models" msgstr "Modelleri içe aktar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:17 +msgctxt "@title:window" +msgid "Select Printer" +msgstr "Yazıcı seçin" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:54 +msgctxt "@title:label" +msgid "Compatible Printers" +msgstr "Uyumlu yazıcılar" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:110 +msgctxt "@description" +msgid "No compatible printers, that are currently online, were found." +msgstr "Şu anda çevrimiçi olan hiçbir uyumlu yazıcı bulunamadı." + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Değişiklikleri iptal et veya kaydet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:49 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64 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 "" @@ -4181,1433 +4880,1292 @@ msgstr "" "Profiller arasında geçiş yapıldıktan sonra bu değişiklikleri tutmak ister misiniz?\n" "Alternatif olarak, '%1' üzerinden varsayılanları yüklemek için değişiklikleri silebilirsiniz." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90 msgctxt "@title:column" msgid "Profile settings" msgstr "Profil ayarları" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92 msgctxt "@title:column" msgid "Current changes" msgstr "Mevcut değişiklikler" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:799 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123 +#: resources/qml/Preferences/GeneralPage.qml:820 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Her zaman sor" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "İptal et ve bir daha sorma" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Kaydet ve bir daha sorma" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157 msgctxt "@action:button" msgid "Discard changes" msgstr "Değişiklikleri sil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164 msgctxt "@action:button" msgid "Keep changes" msgstr "Değişiklikleri tut" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171 +msgctxt "@action:button" +msgid "Save as new custom profile" +msgstr "" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178 +msgctxt "@action:button" +msgid "Save changes" +msgstr "" + +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 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 "Seçtiğiniz dosyalar arasında bir veya daha fazla proje dosyası bulduk. Tek seferde sadece bir proje dosyası açabilirsiniz. Sadece bu dosyalarda bulunan modelleri içe aktarmanızı öneririz. Devam etmek istiyor musunuz?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 msgctxt "@action:button" msgid "Import all as models" msgstr "Tümünü model olarak içe aktar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 +#: resources/qml/Dialogs/RenameDialog.qml:23 +msgctxt "@title:window" +msgid "Rename" +msgstr "Yeniden adlandır" + +#: resources/qml/Dialogs/RenameDialog.qml:24 +msgctxt "@info" +msgid "Please provide a new name." +msgstr "Lütfen yeni bir ad girin." + +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 msgctxt "@title:window" msgid "Save Project" msgstr "Projeyi Kaydet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177 msgctxt "@action:label" msgid "Extruder %1" msgstr "Ekstruder %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & malzeme" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195 msgctxt "@action:label" msgid "Material" msgstr "Malzeme" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "Kaydederken proje özetini bir daha gösterme" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298 msgctxt "@action:button" msgid "Save" msgstr "Kaydet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -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" -msgstr[0] "Seçili Modeli %1 ile Yazdır" -msgstr[1] "Seçili Modelleri %1 ile Yazdır" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:93 +#: resources/qml/JobSpecs.qml:93 msgctxt "@text Print job name" msgid "Untitled" msgstr "Başlıksız" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 +#: resources/qml/MainWindow/ApplicationMenu.qml:63 +#: resources/qml/Menus/SettingsMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&Ayarlar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 +#: resources/qml/MainWindow/ApplicationMenu.qml:87 msgctxt "@title:window" msgid "New project" msgstr "Yeni proje" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88 +#: resources/qml/MainWindow/ApplicationMenu.qml:88 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 "Yeni bir proje başlatmak istediğinizden emin misiniz? Bu işlem yapı levhasını ve kaydedilmemiş tüm ayarları silecektir." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135 +#: resources/qml/MainWindow/MainWindowHeader.qml:135 msgctxt "@action:button" msgid "Marketplace" msgstr "Mağaza" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +#: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 msgctxt "@header" msgid "Configurations" msgstr "Yapılandırmalar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "%1 tanınmadığından bu yapılandırma kullanılamaz. Doğru malzeme profilini indirmek için lütfen %2 bölümünü ziyaret edin." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 msgctxt "@label" msgid "Marketplace" msgstr "Mağaza" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 msgctxt "@label" msgid "Loading available configurations from the printer..." msgstr "Kullanılabilir yapılandırmalar yazıcıdan yükleniyor..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 msgctxt "@label" msgid "The configurations are not available because the printer is disconnected." msgstr "Yazıcı bağlı olmadığından yapılandırmalar kullanılamıyor." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 msgctxt "@tooltip" msgid "The configuration of this extruder is not allowed, and prohibits slicing." msgstr "Bu ekstrüderin yapılandırılmasına izin verilmiyor ve dilimleme yapılamaz." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 msgctxt "@tooltip" msgid "There are no profiles matching the configuration of this extruder." msgstr "Bu ekstrüderin yapılandırmasıyla eşleşen profil yok." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 msgctxt "@label" msgid "Select configuration" msgstr "Yapılandırma seç" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 msgctxt "@label" msgid "Configurations" msgstr "Yapılandırmalar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 msgctxt "@header" msgid "Custom" msgstr "Özel" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:62 -msgctxt "@label" -msgid "Printer" -msgstr "Yazıcı" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:217 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173 msgctxt "@label" msgid "Enabled" msgstr "Etkin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222 msgctxt "@label" msgid "Material" msgstr "Malzeme" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348 msgctxt "@label" msgid "Use glue for better adhesion with this material combination." msgstr "Bu malzeme kombinasyonuyla daha iyi yapıştırma için yapıştırıcı kullanın." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:29 +#: resources/qml/Menus/ContextMenu.qml:29 msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "Seçili Modeli Şununla Yazdır:" msgstr[1] "Seçili Modelleri Şununla Yazdır:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:92 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Seçili Modeli Çoğalt" msgstr[1] "Seçili Modelleri Çoğalt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:123 msgctxt "@label" msgid "Number of Copies" msgstr "Kopya Sayısı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/EditMenu.qml:12 +#: resources/qml/Menus/EditMenu.qml:12 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "Düz&enle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ExtensionMenu.qml:13 +#: resources/qml/Menus/ExtensionMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "Uzantılar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 +#: resources/qml/Menus/FileMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "&Dosya" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:45 +#: resources/qml/Menus/FileMenu.qml:45 msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Projeyi Kaydet..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:78 +#: resources/qml/Menus/FileMenu.qml:78 msgctxt "@title:menu menubar:file" msgid "&Export..." msgstr "&Dışa Aktar..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:89 +#: resources/qml/Menus/FileMenu.qml:89 msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Seçimi Dışa Aktar..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/HelpMenu.qml:14 +#: resources/qml/Menus/HelpMenu.qml:14 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "&Yardım" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +#: resources/qml/Menus/MaterialMenu.qml:13 msgctxt "@label:category menu label" msgid "Material" msgstr "Malzeme" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:53 +#: resources/qml/Menus/MaterialMenu.qml:53 msgctxt "@label:category menu label" msgid "Favorites" msgstr "Favoriler" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:78 +#: resources/qml/Menus/MaterialMenu.qml:78 msgctxt "@label:category menu label" msgid "Generic" msgstr "Genel" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +#: resources/qml/Menus/OpenFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open File(s)..." msgstr "Dosya Aç..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PreferencesMenu.qml:21 +#: resources/qml/Menus/PreferencesMenu.qml:21 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "Tercihler" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:13 +#: resources/qml/Menus/PrinterMenu.qml:13 msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "&Yazıcı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:17 +#: resources/qml/Menus/PrinterMenu.qml:17 msgctxt "@label:category menu label" msgid "Network enabled printers" msgstr "Ağ etkin yazıcılar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:50 +#: resources/qml/Menus/PrinterMenu.qml:50 msgctxt "@label:category menu label" msgid "Local printers" msgstr "Yerel yazıcılar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +#: resources/qml/Menus/RecentFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open &Recent" msgstr "En Son Öğeyi Aç" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +#: resources/qml/Menus/SaveProjectMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Save Project..." msgstr "Projeyi Kaydet..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:34 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Malzeme" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:49 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Etkin Ekstruder olarak ayarla" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:55 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Ekstruderi Etkinleştir" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:63 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Ekstruderi Devre Dışı Bırak" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 msgctxt "@action:inmenu" msgid "Visible Settings" msgstr "Görünür ayarlar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 msgctxt "@action:inmenu" msgid "Collapse All Categories" msgstr "Tüm Kategorileri Daralt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 msgctxt "@action:inmenu" msgid "Manage Setting Visibility..." msgstr "Ayar Görünürlüğünü Yönet..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:13 +#: resources/qml/Menus/SettingsMenu.qml:34 +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Malzeme" + +#: resources/qml/Menus/SettingsMenu.qml:49 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Etkin Ekstruder olarak ayarla" + +#: resources/qml/Menus/SettingsMenu.qml:55 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Ekstruderi Etkinleştir" + +#: resources/qml/Menus/SettingsMenu.qml:63 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Ekstruderi Devre Dışı Bırak" + +#: resources/qml/Menus/ViewMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&View" msgstr "&Görünüm" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:17 +#: resources/qml/Menus/ViewMenu.qml:17 msgctxt "@action:inmenu menubar:view" msgid "&Camera position" msgstr "&Kamera konumu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:30 +#: resources/qml/Menus/ViewMenu.qml:30 msgctxt "@action:inmenu menubar:view" msgid "Camera view" msgstr "Kamera görüşü" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 +#: resources/qml/Menus/ViewMenu.qml:48 msgctxt "@action:inmenu menubar:view" msgid "Perspective" msgstr "Perspektif" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +#: resources/qml/Menus/ViewMenu.qml:59 msgctxt "@action:inmenu menubar:view" msgid "Orthographic" msgstr "Ortografik" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:115 +#: resources/qml/MonitorButton.qml:115 msgctxt "@label:MonitorStatus" msgid "Not connected to a printer" msgstr "Yazıcıya bağlı değil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 +#: resources/qml/MonitorButton.qml:119 msgctxt "@label:MonitorStatus" msgid "Printer does not accept commands" msgstr "Yazıcı komutları kabul etmiyor" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:129 +#: resources/qml/MonitorButton.qml:129 msgctxt "@label:MonitorStatus" msgid "In maintenance. Please check the printer" msgstr "Bakımda. Lütfen yazıcıyı kontrol edin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:140 +#: resources/qml/MonitorButton.qml:140 msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Yazıcı bağlantısı koptu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +#: resources/qml/MonitorButton.qml:142 msgctxt "@label:MonitorStatus" msgid "Printing..." msgstr "Yazdırılıyor..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +#: resources/qml/MonitorButton.qml:145 msgctxt "@label:MonitorStatus" msgid "Paused" msgstr "Duraklatıldı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +#: resources/qml/MonitorButton.qml:148 msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Hazırlanıyor..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +#: resources/qml/MonitorButton.qml:150 msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Lütfen yazıcıyı çıkarın" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +#: resources/qml/MonitorButton.qml:318 msgctxt "@label" msgid "Abort Print" msgstr "Yazdırmayı Durdur" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:327 +#: resources/qml/MonitorButton.qml:327 msgctxt "@label" msgid "Are you sure you want to abort the print?" msgstr "Yazdırmayı iptal etmek istediğinizden emin misiniz?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:109 +#: resources/qml/ObjectItemButton.qml:109 msgctxt "@label" msgid "Is printed as support." msgstr "Destek olarak basıldı." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:112 +#: resources/qml/ObjectItemButton.qml:112 msgctxt "@label" msgid "Other models overlapping with this model are modified." msgstr "Bu model ile çakışan diğer modeller değiştirilir." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:115 +#: resources/qml/ObjectItemButton.qml:115 msgctxt "@label" msgid "Infill overlapping with this model is modified." msgstr "Bu model ile çakışan dolgu değiştirilir." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:118 +#: resources/qml/ObjectItemButton.qml:118 msgctxt "@label" msgid "Overlaps with this model are not supported." msgstr "Bu model ile çakışmalar desteklenmez." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:125 +#: resources/qml/ObjectItemButton.qml:125 msgctxt "@label %1 is the number of settings it overrides." msgid "Overrides %1 setting." msgid_plural "Overrides %1 settings." msgstr[0] "%1 ayarı geçersiz kılar." msgstr[1] "%1 ayarı geçersiz kılar." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 +#: resources/qml/ObjectSelector.qml:59 msgctxt "@label" msgid "Object list" msgstr "Nesne listesi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:131 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:24 +#: resources/qml/Preferences/GeneralPage.qml:134 +#: resources/qml/Preferences/SettingVisibilityPage.qml:24 msgctxt "@action:button" msgid "Defaults" msgstr "Varsayılanlar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +#: resources/qml/Preferences/GeneralPage.qml:172 msgctxt "@label" msgid "Interface" msgstr "Arayüz" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +#: resources/qml/Preferences/GeneralPage.qml:215 msgctxt "@heading" msgid "-- incomplete --" msgstr "-- eksik --" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +#: resources/qml/Preferences/GeneralPage.qml:261 msgctxt "@label" msgid "Currency:" msgstr "Para Birimi:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:274 +#: resources/qml/Preferences/GeneralPage.qml:277 msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." msgid "Theme*:" msgstr "Tema*:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +#: resources/qml/Preferences/GeneralPage.qml:323 msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Ayarlar değiştirilirken otomatik olarak dilimle." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +#: resources/qml/Preferences/GeneralPage.qml:331 msgctxt "@option:check" msgid "Slice automatically" msgstr "Otomatik olarak dilimle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:337 +#: resources/qml/Preferences/GeneralPage.qml:340 +msgctxt "@info:tooltip" +msgid "Show an icon and notifications in the system notification area." +msgstr "Sistem bildirim alanında bir simge ve bildirimler gösterin." + +#: resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Add icon to system tray *" +msgstr "Sistem tepsisine simge ekle *" + +#: resources/qml/Preferences/GeneralPage.qml:357 msgctxt "@label" msgid "*You will need to restart the application for these changes to have effect." msgstr "*Bu değişikliklerin etkili olması için uygulamayı yeniden başlatmanız gerekecektir." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +#: resources/qml/Preferences/GeneralPage.qml:373 msgctxt "@label" msgid "Viewport behavior" msgstr "Görünüm şekli" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +#: resources/qml/Preferences/GeneralPage.qml:381 msgctxt "@info:tooltip" msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." msgstr "Modelin desteklenmeyen alanlarını kırmızı ile gösterin. Destek alınmadan bu alanlar düzgün bir şekilde yazdırılmayacaktır." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:369 +#: resources/qml/Preferences/GeneralPage.qml:390 msgctxt "@option:check" msgid "Display overhang" msgstr "Dışarıda kalan alanı göster" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +#: resources/qml/Preferences/GeneralPage.qml:400 msgctxt "@info:tooltip" msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." msgstr "Modelin eksik veya ikincil yüzeylerini uyarı işaretleri kullanarak vurgulayın. Amaçlanan geometrinin eksik parçaları genellikle takım yolları olacaktır." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:388 +#: resources/qml/Preferences/GeneralPage.qml:409 msgctxt "@option:check" msgid "Display model errors" msgstr "Model hatalarını görüntüle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +#: resources/qml/Preferences/GeneralPage.qml:417 msgctxt "@info:tooltip" msgid "Moves the camera so the model is in the center of the view when a model is selected" msgstr "Bir model seçildiğinde bu model görüntünün ortasında kalacak şekilde kamera hareket eder" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:401 +#: resources/qml/Preferences/GeneralPage.qml:422 msgctxt "@action:button" msgid "Center camera when item is selected" msgstr "Öğeyi seçince kamerayı ortalayın" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +#: resources/qml/Preferences/GeneralPage.qml:432 msgctxt "@info:tooltip" msgid "Should the default zoom behavior of cura be inverted?" msgstr "Cura’nın varsayılan yakınlaştırma davranışı tersine çevrilsin mi?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:416 +#: resources/qml/Preferences/GeneralPage.qml:437 msgctxt "@action:button" msgid "Invert the direction of camera zoom." msgstr "Kamera yakınlaştırma yönünü ters çevir." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Should zooming move in the direction of the mouse?" msgstr "Yakınlaştırma farenin hareket yönüne uygun olsun mu?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Zooming towards the mouse is not supported in the orthographic perspective." msgstr "Fareye doğru yakınlaştırma yapılması ortografik perspektifte desteklenmez." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:437 +#: resources/qml/Preferences/GeneralPage.qml:458 msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "Farenin hareket yönüne göre yakınlaştır" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +#: resources/qml/Preferences/GeneralPage.qml:484 msgctxt "@info:tooltip" msgid "Should models on the platform be moved so that they no longer intersect?" msgstr "Platformun üzerindeki öğeler kesişmemeleri için hareket ettirilmeli mi?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:468 +#: resources/qml/Preferences/GeneralPage.qml:489 msgctxt "@option:check" msgid "Ensure models are kept apart" msgstr "Modellerin birbirinden ayrı olduğundan emin olduğundan emin olun" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +#: resources/qml/Preferences/GeneralPage.qml:498 msgctxt "@info:tooltip" msgid "Should models on the platform be moved down to touch the build plate?" msgstr "Platformun üzerindeki modeller yapı levhasına değmeleri için indirilmeli mi?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:482 +#: resources/qml/Preferences/GeneralPage.qml:503 msgctxt "@option:check" msgid "Automatically drop models to the build plate" msgstr "Modelleri otomatik olarak yapı tahtasına indirin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +#: resources/qml/Preferences/GeneralPage.qml:515 msgctxt "@info:tooltip" msgid "Show caution message in g-code reader." msgstr "G-code okuyucuda uyarı mesajı göster." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503 +#: resources/qml/Preferences/GeneralPage.qml:524 msgctxt "@option:check" msgid "Caution message in g-code reader" msgstr "G-code okuyucuda uyarı mesajı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +#: resources/qml/Preferences/GeneralPage.qml:532 msgctxt "@info:tooltip" msgid "Should layer be forced into compatibility mode?" msgstr "Katman, uyumluluk moduna zorlansın mı?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +#: resources/qml/Preferences/GeneralPage.qml:537 msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Katman görünümünü uyumluluk moduna zorla (yeniden başlatma gerekir)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +#: resources/qml/Preferences/GeneralPage.qml:547 msgctxt "@info:tooltip" msgid "Should Cura open at the location it was closed?" msgstr "Cura kapatıldığı yerden mi başlatılsın?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:531 +#: resources/qml/Preferences/GeneralPage.qml:552 msgctxt "@option:check" msgid "Restore window position on start" msgstr "Başlangıçtaki pencere konumuna dönülsün" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +#: resources/qml/Preferences/GeneralPage.qml:562 msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Ne tür bir kamera oluşturma işlemi kullanılmalıdır?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +#: resources/qml/Preferences/GeneralPage.qml:569 msgctxt "@window:text" msgid "Camera rendering:" msgstr "Kamera oluşturma:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +#: resources/qml/Preferences/GeneralPage.qml:576 msgid "Perspective" msgstr "Perspektif" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +#: resources/qml/Preferences/GeneralPage.qml:577 msgid "Orthographic" msgstr "Ortografik" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +#: resources/qml/Preferences/GeneralPage.qml:617 msgctxt "@label" msgid "Opening and saving files" msgstr "Dosyaların açılması ve kaydedilmesi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +#: resources/qml/Preferences/GeneralPage.qml:624 msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "Masaüstünden veya harici uygulamalardan açılan dosyalar aynı Cura örneğinde mi açılacak?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:608 +#: resources/qml/Preferences/GeneralPage.qml:629 msgctxt "@option:check" msgid "Use a single instance of Cura" msgstr "Tek bir Cura örneği kullan" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +#: resources/qml/Preferences/GeneralPage.qml:640 msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Cura'nın tek örneğinde yeni bir model yüklenmeden önce yapı plakası temizlensin mi?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +#: resources/qml/Preferences/GeneralPage.qml:646 msgctxt "@option:check" msgid "Clear buildplate before loading model into the single instance" msgstr "Modeli tek örneğe yüklemeden önce yapı plakasını temizleyin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 +#: resources/qml/Preferences/GeneralPage.qml:656 msgctxt "@info:tooltip" msgid "Should models be scaled to the build volume if they are too large?" msgstr "Modeller çok büyükse yapı hacmine göre ölçeklendirilmeli mi?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +#: resources/qml/Preferences/GeneralPage.qml:661 msgctxt "@option:check" msgid "Scale large models" msgstr "Büyük modelleri ölçeklendirin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +#: resources/qml/Preferences/GeneralPage.qml:671 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 "Bir modelin birimi milimetre değil de metre ise oldukça küçük görünebilir. Bu modeller ölçeklendirilmeli mi?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:655 +#: resources/qml/Preferences/GeneralPage.qml:676 msgctxt "@option:check" msgid "Scale extremely small models" msgstr "Çok küçük modelleri ölçeklendirin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +#: resources/qml/Preferences/GeneralPage.qml:686 msgctxt "@info:tooltip" msgid "Should models be selected after they are loaded?" msgstr "Yüklendikten sonra modeller seçilsin mi?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: resources/qml/Preferences/GeneralPage.qml:691 msgctxt "@option:check" msgid "Select models when loaded" msgstr "Yüklendiğinde modelleri seç" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +#: resources/qml/Preferences/GeneralPage.qml:701 msgctxt "@info:tooltip" msgid "Should a prefix based on the printer name be added to the print job name automatically?" msgstr "Yazıcı adına bağlı bir ön ek otomatik olarak yazdırma işinin adına eklenmeli mi?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:685 +#: resources/qml/Preferences/GeneralPage.qml:706 msgctxt "@option:check" msgid "Add machine prefix to job name" msgstr "Makine ön ekini iş adına ekleyin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +#: resources/qml/Preferences/GeneralPage.qml:716 msgctxt "@info:tooltip" msgid "Should a summary be shown when saving a project file?" msgstr "Bir proje dosyasını kaydederken özet gösterilmeli mi?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: resources/qml/Preferences/GeneralPage.qml:720 msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Projeyi kaydederken özet iletişim kutusunu göster" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +#: resources/qml/Preferences/GeneralPage.qml:730 msgctxt "@info:tooltip" msgid "Default behavior when opening a project file" msgstr "Bir proje dosyası açıldığında varsayılan davranış" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +#: resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@window:text" msgid "Default behavior when opening a project file: " msgstr "Bir proje dosyası açıldığında varsayılan davranış: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +#: resources/qml/Preferences/GeneralPage.qml:753 msgctxt "@option:openProject" msgid "Always ask me this" msgstr "Her zaman sor" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: resources/qml/Preferences/GeneralPage.qml:754 msgctxt "@option:openProject" msgid "Always open as a project" msgstr "Her zaman proje olarak aç" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +#: resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:openProject" msgid "Always import models" msgstr "Her zaman modelleri içe aktar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +#: resources/qml/Preferences/GeneralPage.qml:792 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 "Bir profil üzerinde değişiklik yapıp farklı bir profile geçtiğinizde, değişikliklerin kaydedilmesini isteyip istemediğinizi soran bir iletişim kutusu açılır. Alternatif olarak bu işleve yönelik varsayılan bir davranış seçebilir ve bu iletişim kutusunun bir daha görüntülenmemesini tercih edebilirsiniz." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:780 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:36 +#: resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46 msgctxt "@label" msgid "Profiles" msgstr "Profiller" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +#: resources/qml/Preferences/GeneralPage.qml:806 msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Farklı bir profile geçerken değişen ayar değerleriyle ilgili varsayılan davranış: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:800 +#: resources/qml/Preferences/GeneralPage.qml:821 msgctxt "@option:discardOrKeep" msgid "Always discard changed settings" msgstr "Değiştirilen ayarları her zaman at" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/Preferences/GeneralPage.qml:822 msgctxt "@option:discardOrKeep" msgid "Always transfer changed settings to new profile" msgstr "Değiştirilen ayarları her zaman yeni profile taşı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +#: resources/qml/Preferences/GeneralPage.qml:856 msgctxt "@label" msgid "Privacy" msgstr "Gizlilik" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +#: resources/qml/Preferences/GeneralPage.qml:862 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 "Yazdırmanızdaki anonim veriler Ultimaker’a gönderilmeli mi? Unutmayın; hiçbir model, IP adresi veya diğer kişiye özgü bilgiler gönderilmez veya saklanmaz." +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 "Yazdırmanızdaki anonim veriler UltiMaker’a gönderilmeli mi? Unutmayın; hiçbir model, IP adresi veya diğer kişiye özgü bilgiler gönderilmez veya saklanmaz." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +#: resources/qml/Preferences/GeneralPage.qml:867 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "(Anonim) yazdırma bilgisi gönder" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +#: resources/qml/Preferences/GeneralPage.qml:897 msgctxt "@label" msgid "Updates" msgstr "Güncellemeler" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +#: resources/qml/Preferences/GeneralPage.qml:904 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "Cura, program başladığında güncellemeleri kontrol etmeli mi?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:888 +#: resources/qml/Preferences/GeneralPage.qml:909 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Başlangıçta güncellemeleri kontrol edin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +#: resources/qml/Preferences/GeneralPage.qml:925 msgctxt "@info:tooltip" msgid "When checking for updates, only check for stable releases." msgstr "Güncellemeleri kontrol ederken yalnızca istikrarlı sürümleri kontrol edin." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:910 +#: resources/qml/Preferences/GeneralPage.qml:931 msgctxt "@option:radio" msgid "Stable releases only" msgstr "Yalnızca istikrarlı sürümler" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +#: resources/qml/Preferences/GeneralPage.qml:941 msgctxt "@info:tooltip" msgid "When checking for updates, check for both stable and for beta releases." msgstr "Güncellemeleri kontrol ederken hem istikrarlı hem de beta sürümleri kontrol edin." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:926 +#: resources/qml/Preferences/GeneralPage.qml:947 msgctxt "@option:radio" msgid "Stable and Beta releases" msgstr "İstikrarlı ve Beta sürümler" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +#: resources/qml/Preferences/GeneralPage.qml:957 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 her başlatıldığında yeni eklentiler için otomatik kontrol yapılsın mı? Bu seçeneği devre dışı bırakmanız kesinlikle önerilmez!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:941 +#: resources/qml/Preferences/GeneralPage.qml:962 msgctxt "@option:check" msgid "Get notifications for plugin updates" msgstr "Eklenti güncellemeleri için bildirim alın" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:50 +#: resources/qml/Preferences/MachinesPage.qml:50 msgctxt "@action:button" msgid "Add New" msgstr "Yeni Ekle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:134 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +#: resources/qml/Preferences/MachinesPage.qml:147 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:160 +#: resources/qml/Preferences/ProfilesPage.qml:294 msgctxt "@action:button" msgid "Activate" msgstr "Etkinleştir" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:146 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:331 +#: resources/qml/Preferences/MachinesPage.qml:159 +#: resources/qml/Preferences/ProfilesPage.qml:331 msgctxt "@action:button" msgid "Rename" msgstr "Yeniden adlandır" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:72 msgctxt "@label" msgid "Materials compatible with active printer:" msgstr "Etkin yazıcı ile uyumlu malzemeler:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:94 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:78 +#: resources/qml/Preferences/ProfilesPage.qml:94 msgctxt "@action:button" msgid "Create new" msgstr "Yeni oluştur" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:88 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:90 +#: resources/qml/Preferences/ProfilesPage.qml:88 msgctxt "@action:button" msgid "Import" msgstr "İçe Aktar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:101 msgctxt "@action:button" msgid "Sync with Printers" msgstr "Yazıcılarla Senkronize Et" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:311 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:174 +#: resources/qml/Preferences/ProfilesPage.qml:311 msgctxt "@action:button" msgid "Duplicate" msgstr "Çoğalt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:342 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:198 +#: resources/qml/Preferences/ProfilesPage.qml:342 msgctxt "@action:button" msgid "Export" msgstr "Dışa Aktar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:392 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:212 +#: resources/qml/Preferences/ProfilesPage.qml:392 msgctxt "@title:window" msgid "Confirm Remove" msgstr "Kaldırmayı Onayla" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:393 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:215 +#: resources/qml/Preferences/ProfilesPage.qml:393 msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "%1’i kaldırmak istediğinizden emin misiniz? Bu eylem geri alınamaz!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:228 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:238 msgctxt "@title:window" msgid "Import Material" msgstr "Malzemeyi İçe Aktar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:242 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Malzeme %1 dosyasına başarıyla içe aktarıldı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:245 msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not import material %1: %2" msgstr "Malzeme %1 dosyasına içe aktarılamadı: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:267 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:256 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:267 msgctxt "@title:window" msgid "Export Material" msgstr "Malzemeyi Dışa Aktar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:272 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:272 msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Malzemenin %1 dosyasına dışa aktarımı başarısız oldu: %2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:275 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:275 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ı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 msgctxt "@title:window" msgid "Sync materials with printers" msgstr "Malzemeleri yazıcılarla senkronize et" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 msgctxt "@title:header" msgid "Sync materials with printers" msgstr "Malzemeleri yazıcılarla senkronize et" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 msgctxt "@text" msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "Birkaç basit adımı izleyerek tüm malzeme profillerinizi yazıcılarınızla senkronize edebileceksiniz." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 msgctxt "@button" msgid "Why do I need to sync material profiles?" msgstr "Malzeme profillerini neden senkronize etmem gerekiyor?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 msgctxt "@button" msgid "Start" msgstr "Başlat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144 msgctxt "@title:header" msgid "Sign in" msgstr "Giriş yap" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150 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 "Malzeme profillerini Digital Factory'ye bağlı tüm yazıcılarınızla otomatik olarak senkronize etmek için Cura'da oturum açmanız gerekir." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:446 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:586 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602 msgctxt "@button" msgid "Sync materials with USB" msgstr "Malzemeleri USB ile senkronize et" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 msgctxt "@title:header" msgid "The following printers will receive the new material profiles:" msgstr "Aşağıdaki yazıcılar yeni malzeme profillerini alacak:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:198 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 msgctxt "@title:header" msgid "Something went wrong when sending the materials to the printers." msgstr "Malzemeler yazıcılara gönderilirken bir sorun oluştu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:205 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221 msgctxt "@title:header" msgid "Material profiles successfully synced with the following printers:" msgstr "Malzeme profilleri aşağıdaki yazıcılarla başarıyla senkronize edildi:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:429 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445 msgctxt "@button" msgid "Troubleshooting" msgstr "Sorun giderme" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422 msgctxt "@text Asking the user whether printers are missing in a list." msgid "Printers missing?" msgstr "Yazıcı eksik mi?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:408 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424 msgctxt "@text" msgid "Make sure all your printers are turned ON and connected to Digital Factory." msgstr "Tüm yazıcılarınızın AÇIK ve Digitial Factory'ye bağlı olduğundan emin olun." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:417 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433 msgctxt "@button" msgid "Refresh List" msgstr "Listeyi Yenile" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473 msgctxt "@button" msgid "Try again" msgstr "Yeniden dene" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:461 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Done" msgstr "Bitti" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:606 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622 msgctxt "@button" msgid "Sync" msgstr "Senkronize et" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535 msgctxt "@button" msgid "Syncing" msgstr "Senkronize ediliyor" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553 msgctxt "@title:header" msgid "No printers found" msgstr "Yazıcı bulunamadı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574 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'ye bağlı uyumlu yazıcınız yok gibi görünüyor. Yazıcınızın bağlı olduğundan ve en son donanım yazılımını çalıştırdığından emin olun." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:569 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585 msgctxt "@button" msgid "Learn how to connect your printer to Digital Factory" msgstr "Yazıcınızı Digital Factory'ye nasıl bağlayacağınızı öğrenin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:597 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613 msgctxt "@button" msgid "Refresh" msgstr "Yenile" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642 msgctxt "@title:header" msgid "Sync material profiles via USB" msgstr "Malzeme profillerini USB üzerinden senkronize edin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:632 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648 msgctxt "@text In the UI this is followed by a list of steps the user needs to take." msgid "Follow the following steps to load the new material profiles to your printer." msgstr "Yeni malzeme profillerini yazıcınıza yüklemek için aşağıdaki adımları izleyin." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 msgctxt "@text" msgid "Click the export material archive button." msgstr "Malzeme arşivini dışa aktar düğmesine tıklayın." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr ".umm dosyasını bir USB çubuğa kaydedin." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 msgctxt "@text" msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." msgstr "USB çubuğunu yazıcınıza takın ve yeni malzeme profillerini yükleme işlemini başlatın." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:673 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689 msgctxt "@button" msgid "How to load new material profiles to my printer" -msgstr "How to load new material profiles to my printer" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:687 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 msgctxt "@button" msgid "Back" msgstr "Geri" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Export material archive" msgstr "Malzeme arşivini dışa aktar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747 msgctxt "@title:window" msgid "Export All Materials" msgstr "Tüm Malzemeleri Dışa Aktar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121 +#: resources/qml/Preferences/Materials/MaterialsView.qml:121 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Çap Değişikliğini Onayla" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122 +#: resources/qml/Preferences/Materials/MaterialsView.qml:122 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 "Yeni filaman çapı %1 mm olarak ayarlandı ve bu değer, geçerli ekstrüder ile uyumlu değil. Devam etmek istiyor musunuz?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152 +#: resources/qml/Preferences/Materials/MaterialsView.qml:152 msgctxt "@label" msgid "Display Name" msgstr "Görünen Ad" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 +#: resources/qml/Preferences/Materials/MaterialsView.qml:171 msgctxt "@label" msgid "Brand" msgstr "Marka" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190 +#: resources/qml/Preferences/Materials/MaterialsView.qml:190 msgctxt "@label" msgid "Material Type" msgstr "Malzeme Türü" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +#: resources/qml/Preferences/Materials/MaterialsView.qml:210 msgctxt "@label" msgid "Color" msgstr "Renk" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:262 +#: resources/qml/Preferences/Materials/MaterialsView.qml:262 msgctxt "@title" msgid "Material color picker" msgstr "Malzeme rengi seçici" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:275 +#: resources/qml/Preferences/Materials/MaterialsView.qml:275 msgctxt "@label" msgid "Properties" msgstr "Özellikler" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +#: resources/qml/Preferences/Materials/MaterialsView.qml:286 msgctxt "@label" msgid "Density" msgstr "Yoğunluk" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +#: resources/qml/Preferences/Materials/MaterialsView.qml:319 msgctxt "@label" msgid "Diameter" msgstr "Çap" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:369 +#: resources/qml/Preferences/Materials/MaterialsView.qml:369 msgctxt "@label" msgid "Filament Cost" msgstr "Filaman masrafı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:401 +#: resources/qml/Preferences/Materials/MaterialsView.qml:401 msgctxt "@label" msgid "Filament weight" msgstr "Filaman ağırlığı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:433 +#: resources/qml/Preferences/Materials/MaterialsView.qml:433 msgctxt "@label" msgid "Filament length" msgstr "Filaman uzunluğu" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:451 +#: resources/qml/Preferences/Materials/MaterialsView.qml:451 msgctxt "@label" msgid "Cost per Meter" msgstr "Metre başına maliyet" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:465 +#: resources/qml/Preferences/Materials/MaterialsView.qml:465 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "Bu malzeme %1’e bağlıdır ve özelliklerinden bazılarını paylaşır." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:472 +#: resources/qml/Preferences/Materials/MaterialsView.qml:472 msgctxt "@label" msgid "Unlink Material" msgstr "Malzemeyi Ayır" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +#: resources/qml/Preferences/Materials/MaterialsView.qml:485 msgctxt "@label" msgid "Description" msgstr "Tanım" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:503 +#: resources/qml/Preferences/Materials/MaterialsView.qml:503 msgctxt "@label" msgid "Adhesion Information" msgstr "Yapışma Bilgileri" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642 +#: resources/qml/Preferences/Materials/MaterialsView.qml:642 msgctxt "@title" msgid "Information" msgstr "Bilgi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:647 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:82 +#: resources/qml/Preferences/Materials/MaterialsView.qml:647 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 msgctxt "@label" msgid "Print settings" msgstr "Yazdırma ayarları" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:59 +#: resources/qml/Preferences/ProfilesPage.qml:59 msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "Etkin yazıcı ile uyumlu profiller:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:98 +#: resources/qml/Preferences/ProfilesPage.qml:98 msgctxt "@action:tooltip" msgid "Create new profile from current settings/overrides" msgstr "Mevcut ayarlardan/geçersiz kılmalardan yeni profil oluştur" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:125 +#: resources/qml/Preferences/ProfilesPage.qml:125 msgctxt "@action:label" msgid "Some settings from current profile were overwritten." msgstr "Mevcut profilin bazı ayarlarının üzerine yazılmış." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:140 +#: resources/qml/Preferences/ProfilesPage.qml:140 msgctxt "@action:button" msgid "Update profile." msgstr "Profili güncelleyin." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:143 +#: resources/qml/Preferences/ProfilesPage.qml:143 msgctxt "@action:tooltip" msgid "Update profile with current settings/overrides" msgstr "Profili geçerli ayarlar/geçersiz kılmalar ile güncelle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:148 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256 +#: resources/qml/Preferences/ProfilesPage.qml:148 msgctxt "@action:button" msgid "Discard current changes" msgstr "Geçerli değişiklikleri iptal et" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:158 +#: resources/qml/Preferences/ProfilesPage.qml:158 msgctxt "@action:label" msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." msgstr "Bu profil yazıcının belirlediği varsayılan ayarları kullanır; dolayısıyla aşağıdaki listede bulunan ayarları/geçersiz kılmaları içermez." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:165 +#: resources/qml/Preferences/ProfilesPage.qml:165 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "Geçerli ayarlarınız seçilen profille uyumlu." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +#: resources/qml/Preferences/ProfilesPage.qml:175 msgctxt "@title:tab" msgid "Global Settings" msgstr "Küresel Ayarlar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: resources/qml/Preferences/ProfilesPage.qml:278 msgctxt "@title:window" msgid "Create Profile" msgstr "Profil Oluştur" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:280 +#: resources/qml/Preferences/ProfilesPage.qml:280 msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Bu profil için lütfen bir ad girin." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:368 +#: resources/qml/Preferences/ProfilesPage.qml:352 +#: resources/qml/Preferences/ProfilesPage.qml:368 msgctxt "@title:window" msgid "Export Profile" msgstr "Profili Dışa Aktar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +#: resources/qml/Preferences/ProfilesPage.qml:382 msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Profili Çoğalt" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:409 +#: resources/qml/Preferences/ProfilesPage.qml:409 msgctxt "@title:window" msgid "Rename Profile" msgstr "Profili Yeniden Adlandır" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:422 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:429 +#: resources/qml/Preferences/ProfilesPage.qml:422 +#: resources/qml/Preferences/ProfilesPage.qml:429 msgctxt "@title:window" msgid "Import Profile" msgstr "Profili İçe Aktar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:22 -msgctxt "@title:window" -msgid "Rename" -msgstr "Yeniden adlandır" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:23 -msgctxt "@info" -msgid "Please provide a new name." -msgstr "Lütfen yeni bir ad girin." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56 +#: resources/qml/Preferences/SettingVisibilityItem.qml:56 msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." msgstr "Bu ayar etkin makine tarafından saklanmış ve görünür olmayacak." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73 +#: resources/qml/Preferences/SettingVisibilityItem.qml:73 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] "Bu ayar %1 değerle saklanmış. Ayarı görünür yapmak için ayar değerini değiştirin." msgstr[1] "Bu ayar %1 değerle saklanmış. Ayarı görünür yapmak için bu ayarların değerini değiştirin." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13 +#: resources/qml/Preferences/SettingVisibilityPage.qml:13 msgctxt "@title:tab" msgid "Setting Visibility" msgstr "Görünürlüğü Ayarlama" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 +#: resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" msgid "Check all" msgstr "Tümünü denetle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 -msgctxt "@label" -msgid "Extruder" -msgstr "Ekstrüder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70 -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." -msgstr "Sıcak ucun hedef sıcaklığı. Sıcak uç, bu sıcaklığa doğru ısıtılır veya soğutulur. Bu ayar 0 olarak belirlenirse sıcak uç ısıtma kapatılır." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Bu sıcak ucun geçerli sıcaklığı." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "Sıcak ucun ön ısıtma sıcaklığı." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "İptal Et" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Ön ısıtma" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Yazdırma öncesinde sıcak ucu ısıt. Isıtma sırasında yazdırma işinizi ayarlamaya devam edebilirsiniz. Böylece yazdırmaya hazır olduğunuzda sıcak ucun ısınmasını beklemeniz gerekmez." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Bu ekstruderdeki malzemenin rengi." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Bu ekstruderdeki malzeme." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Bu ekstrudere takılan nozül." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -msgctxt "@label" -msgid "Build plate" -msgstr "Yapı levhası" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55 -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 "Isıtılmış yatağın hedef sıcaklığı. Yatak, bu sıcaklığa doğru ısıtılır veya soğutulur. Bu ayar 0 olarak belirlenirse yatak ısıtma kapatılır." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "Isıtılmış yatağın geçerli sıcaklığı." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "Yatağın ön ısıtma sıcaklığı." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Yazdırma öncesinde yatağı ısıt. Isıtma sırasında yazdırma işinizi ayarlamaya devam edebilirsiniz. Böylece yazdırmaya hazır olduğunuzda yatağın ısınmasını beklemeniz gerekmez." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51 -msgctxt "@label" -msgid "Printer control" -msgstr "Yazıcı kontrolü" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66 -msgctxt "@label" -msgid "Jog Position" -msgstr "Jog Konumu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Jog Mesafesi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Send G-code" -msgstr "G-code Gönder" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Bağlı yazıcıya özel bir G-code komutu gönderin. Komutu göndermek için 'enter' tuşuna basın." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "Yazıcı bağlı değil." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "Bulut yazıcısı çevrimdışı. Yazıcının açık ve internete bağlı olup olmadığını kontrol edin." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Yazıcı hesabınızla bağlanmamış. Bağlantı kurmak için lütfen Ultimaker Digital Factory bölümünü ziyaret edin." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "Bulut bağlantısı şu anda kullanılamıyor. Bulut yazıcısına bağlanmak için lütfen oturum açın." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "Bulut bağlantısı şu anda kullanılamıyor. Lütfen internet bağlantınızı kontrol edin." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:235 -msgctxt "@button" -msgid "Add printer" -msgstr "Yazıcı ekle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Manage printers" -msgstr "Yazıcıları yönet" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Active print" msgstr "Geçerli yazdırma" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Job Name" msgstr "İşin Adı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +#: resources/qml/PrintMonitor.qml:172 msgctxt "@label" msgid "Printing Time" msgstr "Yazdırma süresi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +#: resources/qml/PrintMonitor.qml:180 msgctxt "@label" msgid "Estimated time left" msgstr "Kalan tahmini süre" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 msgctxt "@label" msgid "Profile" msgstr "Profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5618,132 +6176,379 @@ msgstr "" "\n" "Profil yöneticisini açmak için tıklayın." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 +#: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 msgctxt "@label:header" msgid "Custom profiles" msgstr "Özel profiller" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 msgctxt "@label shown when we load a Gcode file" msgid "Print setup disabled. G-code file can not be modified." msgstr "Yazıcı kurulumu devre dışı bırakıldı. G-code dosyası düzenlenemez." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:179 msgctxt "@button" msgid "Recommended" msgstr "Önerilen" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156 -msgctxt "@button" -msgid "Custom" -msgstr "Özel" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 msgctxt "@label:Should be short" msgid "On" msgstr "Açık" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 msgctxt "@label:Should be short" msgid "Off" msgstr "Kapalı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "Deneysel" +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is active and you overwrote some settings." +msgstr "%1 özel profil etkin ve bazı ayarların üzerine yazdınız." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:54 -msgctxt "@info" -msgid "custom profile is active and you overwrote some settings." +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is overriding some settings." +msgstr "%1 özel profil, bazı ayarları geçersiz kılıyor." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92 +msgctxt "@info %1 is the name of a profile" +msgid "Recommended settings (for %1) were altered." +msgstr "Önerilen ayarlar (%1 için) değiştirildi." + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106 +msgctxt "@info %1 is the name of a profile" +msgid "Some setting-values defined in %1 were overridden." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137 msgctxt "@info" -msgid "custom profile is overriding some settings." -msgstr "" +msgid "Reset to defaults." +msgstr "Varsayılanlara sıfırla." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178 msgctxt "@info" -msgid "Some settings were changed." -msgstr "" +msgid "Compare and save." +msgstr "Karşılaştırın ve tasarruf edin." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15 msgctxt "@label" msgid "Adhesion" msgstr "Yapıştırma" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20 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 "Bir kenar veya radye yazdırın. Bu nesnenizin etrafına veya altına daha sonra kesilmesi kolay olan düz bir alan sağlayacak." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:198 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102 msgctxt "@label" -msgid "Gradual infill" -msgstr "Aşamalı dolgu" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:236 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "Kademeli dolgu, yukarıya doğru dolgu miktarını kademeli olarak yükselecektir." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 -msgctxt "@label" -msgid "Resolution" +msgid "Recommended print settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111 +msgctxt "@button" +msgid "Show Custom" +msgstr "Özeli Göster" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27 +msgctxt "@label" +msgid "Resolution" +msgstr "Çözünürlük" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16 +msgctxt "@label" +msgid "Strength" +msgstr "Sağlamlık" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20 +msgctxt "@label" +msgid "The following settings define the strength of your part." +msgstr "Aşağıdaki ayarlar parçanızın sağlamlığını tanımlar." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34 +msgctxt "infill_sparse_density description" +msgid "Infill Density" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35 +msgctxt "@label" +msgid "Adjusts the density of infill of the print." +msgstr "Yazdırma dolgusunun yoğunluğunu ayarlar." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54 +msgctxt "@action:label" +msgid "Infill Pattern" +msgstr "Dolgu Şekli" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56 +msgctxt "@label" +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 "" +"Baskı dolgu malzemesinin deseni:\n" +"\n" +"İşlevsel olmayan modellerin hızlı baskıları için çizgi, zikzak veya aydınlatma dolgusunu seçin.\n" +"\n" +"Çok fazla strese maruz kalmayan işlevsel parçalar için ızgara veya üçgen veya üç altıgen öneriyoruz.\n" +"\n" +"Birden fazla yönde yüksek sağlamlık gerektiren işlevsel 3D baskılar için kübik, kübik alt bölüm, çeyrek kübik, sekizli ve dönel kullanın." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67 +msgctxt "@action:label" +msgid "Shell Thickness" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68 +msgctxt "@label" +msgid "Defines the thickness of your part side walls, roof and floor." +msgstr "Parçanızın yan duvarlarının, tavanının ve tabanının kalınlığını tanımlar." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16 msgctxt "@label" msgid "Support" msgstr "Destek" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21 msgctxt "@label" -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." +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40 +msgctxt "@action:label" +msgid "Support Type" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41 +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." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53 +msgctxt "@action:label" +msgid "Print with" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54 +msgctxt "@label" +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." + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67 +msgctxt "@action:label" +msgid "Placement" +msgstr "Yerleştirme" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68 +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." + +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 msgctxt "@error" msgid "Configuration not supported" -msgstr "" +msgstr "Yapılandırma desteklenmiyor" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." -msgstr "" +msgstr "Seçilen malzeme/%1 yapılandırması için kullanılabilecek profil yok. Lütfen yapılandırmanızı değiştirin." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 msgctxt "@button:label" msgid "Learn more" -msgstr "" +msgstr "Daha fazla bilgi edinin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +#: resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "Ekstrüder" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:70 +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." +msgstr "Sıcak ucun hedef sıcaklığı. Sıcak uç, bu sıcaklığa doğru ısıtılır veya soğutulur. Bu ayar 0 olarak belirlenirse sıcak uç ısıtma kapatılır." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:105 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "Bu sıcak ucun geçerli sıcaklığı." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:182 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "Sıcak ucun ön ısıtma sıcaklığı." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:271 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:259 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "İptal Et" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:274 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:263 +msgctxt "@button" +msgid "Pre-heat" +msgstr "Ön ısıtma" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:297 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Yazdırma öncesinde sıcak ucu ısıt. Isıtma sırasında yazdırma işinizi ayarlamaya devam edebilirsiniz. Böylece yazdırmaya hazır olduğunuzda sıcak ucun ısınmasını beklemeniz gerekmez." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:335 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "Bu ekstruderdeki malzemenin rengi." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:367 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "Bu ekstruderdeki malzeme." + +#: resources/qml/PrinterOutput/ExtruderBox.qml:400 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "Bu ekstrudere takılan nozül." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:25 +msgctxt "@label" +msgid "Build plate" +msgstr "Yapı levhası" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:55 +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 "Isıtılmış yatağın hedef sıcaklığı. Yatak, bu sıcaklığa doğru ısıtılır veya soğutulur. Bu ayar 0 olarak belirlenirse yatak ısıtma kapatılır." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "Isıtılmış yatağın geçerli sıcaklığı." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:162 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "Yatağın ön ısıtma sıcaklığı." + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:286 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Yazdırma öncesinde yatağı ısıt. Isıtma sırasında yazdırma işinizi ayarlamaya devam edebilirsiniz. Böylece yazdırmaya hazır olduğunuzda yatağın ısınmasını beklemeniz gerekmez." + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:51 +msgctxt "@label" +msgid "Printer control" +msgstr "Yazıcı kontrolü" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:66 +msgctxt "@label" +msgid "Jog Position" +msgstr "Jog Konumu" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:82 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:162 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:217 +msgctxt "@label" +msgid "Jog Distance" +msgstr "Jog Mesafesi" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Send G-code" +msgstr "G-code Gönder" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:319 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Bağlı yazıcıya özel bir G-code komutu gönderin. Komutu göndermek için 'enter' tuşuna basın." + +#: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "Yazıcı bağlı değil." + +#: resources/qml/PrinterSelector/MachineListButton.qml:34 +msgctxt "@label" +msgid "Hide all connected printers" +msgstr "Bağlı tüm yazıcıları gizle" + +#: resources/qml/PrinterSelector/MachineListButton.qml:47 +msgctxt "@label" +msgid "Show all connected printers" +msgstr "Bağlı tüm yazıcıları göster" + +#: resources/qml/PrinterSelector/MachineSelector.qml:64 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "Bulut yazıcısı çevrimdışı. Yazıcının açık ve internete bağlı olup olmadığını kontrol edin." + +#: resources/qml/PrinterSelector/MachineSelector.qml:68 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Yazıcı hesabınızla bağlanmamış. Bağlantı kurmak için lütfen Ultimaker Digital Factory bölümünü ziyaret edin." + +#: resources/qml/PrinterSelector/MachineSelector.qml:73 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "Bulut bağlantısı şu anda kullanılamıyor. Bulut yazıcısına bağlanmak için lütfen oturum açın." + +#: resources/qml/PrinterSelector/MachineSelector.qml:78 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "Bulut bağlantısı şu anda kullanılamıyor. Lütfen internet bağlantınızı kontrol edin." + +#: resources/qml/PrinterSelector/MachineSelectorList.qml:30 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:32 +msgctxt "@label" +msgid "Other printers" +msgstr "Diğer yazıcılar" + +#: resources/qml/ProfileOverview.qml:36 msgctxt "@title:column" msgid "Setting" msgstr "Ayar" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +#: resources/qml/ProfileOverview.qml:37 msgctxt "@title:column" msgid "Profile" msgstr "Profil" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +#: resources/qml/ProfileOverview.qml:38 msgctxt "@title:column" msgid "Current" msgstr "Geçerli" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +#: resources/qml/ProfileOverview.qml:39 msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Birim" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +#: resources/qml/SearchBar.qml:17 msgctxt "@placeholder" msgid "Search" msgstr "Ara" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 +#: resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5754,32 +6559,32 @@ msgstr "" "\n" "Bu ayarları görmek için tıklayın." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 +#: resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "Etkilediği tüm ayarlar geçersiz kılındığı için bu ayar kullanılmamaktadır." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +#: resources/qml/Settings/SettingItem.qml:89 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "Etkileri" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +#: resources/qml/Settings/SettingItem.qml:94 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr ".........den etkilenir" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:190 +#: resources/qml/Settings/SettingItem.qml:196 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "Bu ayar her zaman, tüm ekstrüderler arasında paylaşılır. Buradan değiştirildiğinde tüm ekstrüderler için değer değiştirir." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +#: resources/qml/Settings/SettingItem.qml:200 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Bu ayar, çakışan ekstrüdere özgü değerlerden çözümlenir:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +#: resources/qml/Settings/SettingItem.qml:240 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5790,7 +6595,7 @@ msgstr "" "\n" "Profil değerini yenilemek için tıklayın." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:334 +#: resources/qml/Settings/SettingItem.qml:340 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5801,4697 +6606,328 @@ msgstr "" "\n" "Hesaplanan değeri yenilemek için tıklayın." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +#: resources/qml/Settings/SettingView.qml:48 msgctxt "@label:textbox" msgid "Search settings" msgstr "Arama ayarları" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:395 +#: resources/qml/Settings/SettingView.qml:395 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "Değeri tüm ekstruderlere kopyala" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:404 +#: resources/qml/Settings/SettingView.qml:404 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Tüm değiştirilmiş değerleri tüm ekstruderlere kopyala" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:440 +#: resources/qml/Settings/SettingView.qml:440 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Bu ayarı gizle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:453 +#: resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Bu ayarı gösterme" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:457 +#: resources/qml/Settings/SettingView.qml:457 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Bu ayarı görünür yap" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +#: resources/qml/Toolbar.qml:142 +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" +msgstr[0] "Seçili Modeli %1 ile Yazdır" +msgstr[1] "Seçili Modelleri %1 ile Yazdır" + +#: resources/qml/ViewOrientationControls.qml:25 msgctxt "@info:tooltip" msgid "3D View" msgstr "3 Boyutlu Görünüm" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +#: resources/qml/ViewOrientationControls.qml:38 msgctxt "@info:tooltip" msgid "Front View" msgstr "Önden Görünüm" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +#: resources/qml/ViewOrientationControls.qml:51 msgctxt "@info:tooltip" msgid "Top View" msgstr "Yukarıdan Görünüm" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +#: resources/qml/ViewOrientationControls.qml:64 msgctxt "@info:tooltip" msgid "Left View" msgstr "Sol görünüm" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +#: resources/qml/ViewOrientationControls.qml:77 msgctxt "@info:tooltip" msgid "Right View" msgstr "Sağ görünüm" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: resources/qml/ViewsSelector.qml:50 msgctxt "@label" msgid "View type" msgstr "Görüntüleme tipi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:47 msgctxt "@label" msgid "Add a Cloud printer" msgstr "Bulut yazıcısı ekle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:73 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:73 msgctxt "@label" msgid "Waiting for Cloud response" msgstr "Bulut yanıtı bekleniyor" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:83 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:83 msgctxt "@label" msgid "No printers found in your account?" msgstr "Hesabınızda hiç yazıcı bulunamıyor mu?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:117 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:117 msgctxt "@label" msgid "The following printers in your account have been added in Cura:" msgstr "Hesabınızdaki şu yazıcılar Cura'ya eklendi:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:186 msgctxt "@button" msgid "Add printer manually" msgstr "Yazıcıyı manuel olarak ekle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 msgctxt "@label" msgid "Manufacturer" msgstr "Üretici" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Profile author" msgstr "Profil sahibi" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 msgctxt "@label" msgid "Printer name" msgstr "Yazıcı adı" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 msgctxt "@text" msgid "Please name your printer" msgstr "Lütfen yazıcınızı adlandırın" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "Bir yazıcı ekleyin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:38 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Bir ağ yazıcısı ekleyin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:87 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Ağ dışı bir yazıcı ekleyin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 msgctxt "@label" msgid "There is no printer found over your network." msgstr "Ağınızda yazıcı bulunamadı." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 msgctxt "@label" msgid "Refresh" msgstr "Yenile" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 msgctxt "@label" msgid "Add printer by IP" msgstr "IP'ye göre bir yazıcı ekleyin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Bulut yazıcısı ekle" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205 msgctxt "@label" msgid "Troubleshooting" msgstr "Sorun giderme" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 msgctxt "@label" msgid "Add printer by IP address" msgstr "IP adresine göre bir yazıcı ekleyin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Yazıcınızın IP adresini girin." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 msgctxt "@button" msgid "Add" msgstr "Ekle" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 msgctxt "@label" msgid "Could not connect to device." msgstr "Cihaza bağlanılamadı." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Ultimaker yazıcınıza bağlanamıyor musunuz?" +msgid "Can't connect to your UltiMaker printer?" +msgstr "UltiMaker yazıcınıza bağlanamıyor musunuz?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 msgctxt "@label" msgid "The printer at this address has not responded yet." msgstr "Bu adresteki yazıcı henüz yanıt vermedi." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 msgctxt "@label" msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." msgstr "Bu yazıcı bilinmeyen bir yazıcı olduğu veya bir grubun ana makinesi olmadığı için eklenemiyor." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 msgctxt "@button" msgid "Connect" msgstr "Bağlan" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Bir ağ yazıcısı ekleyin" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Ağ dışı bir yazıcı ekleyin" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102 +msgctxt "@button" +msgid "Add UltiMaker printer via Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "In order to start using Cura you will need to configure a printer." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36 +msgctxt "@label" +msgid "What printer would you like to setup?" +msgstr "Hangi yazıcıyı kurmak istersiniz?" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55 +msgctxt "@button" +msgid "UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64 +msgctxt "@button" +msgid "Non UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73 +msgctxt "@button" +msgid "Learn more about adding printers to Cura" +msgstr "Cura’ya yazıcı ekleme hakkında daha fazla bilgi edinin" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29 +msgctxt "@label" +msgid "Add printer" +msgstr "Yazıcı Ekle" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33 +msgctxt "@label" +msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70 +msgctxt "@label" +msgid "If you are trying to add a new UltiMaker printer to Cura" +msgstr "Cura’ya yeni bir UltiMaker yazıcı eklemeye çalışıyorsanız" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80 +msgctxt "@info" +msgid "Sign in into UltiMaker Digital Factory" +msgstr "Ultimaker Digital Factory’ye giriş yapın" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81 +msgctxt "@info" +msgid "Follow the procedure to add a new printer" +msgstr "Yeni bir yazıcı eklemek için prosedürü takip edin" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82 +msgctxt "@info" +msgid "Your new printer will automatically appear in Cura" +msgstr "Yeni yazıcınız Cura’da otomatik olarak görünecektir" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100 +msgctxt "@button" +msgid "Learn more" +msgstr "Daha fazla bilgi edinin" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121 +msgctxt "@button" +msgid "Add local printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129 +msgctxt "@button" +msgid "Sign in to Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133 +msgctxt "@button" +msgid "Waiting for new printers" +msgstr "" + +#: resources/qml/WelcomePages/ChangelogContent.qml:24 msgctxt "@label" msgid "Release Notes" msgstr "Sürüm notları" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:123 +#: resources/qml/WelcomePages/CloudContent.qml:123 msgctxt "@text" msgid "Add material settings and plugins from the Marketplace" msgstr "Marketplace'den malzeme ayarlarını ve eklentileri ekleyin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:149 +#: resources/qml/WelcomePages/CloudContent.qml:149 msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Malzeme ayarlarınızı ve eklentilerinizi yedekleyin ve senkronize edin" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:175 +#: resources/qml/WelcomePages/CloudContent.qml:175 msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Ultimaker Topluluğunda fikirlerinizi paylaşın ve 48.000'den fazla kullanıcıdan yardım alın" +msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" +msgstr "UltiMaker Topluluğunda fikirlerinizi paylaşın ve 48.000'den fazla kullanıcıdan yardım alın" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +#: resources/qml/WelcomePages/CloudContent.qml:189 msgctxt "@button" msgid "Skip" msgstr "Atla" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +#: resources/qml/WelcomePages/CloudContent.qml:201 msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Ücretsiz Ultimaker Hesabı oluşturun" +msgid "Create a free UltiMaker Account" +msgstr "Ücretsiz UltiMaker Hesabı oluşturun" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Ultimaker Cura'yı geliştirmemiz yardım edin" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:56 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura, yazdırma kalitesini ve kullanıcı deneyimini iyileştirmek için anonim veri toplar. Bu veriler aşağıdakileri içerir:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:68 -msgctxt "@text" -msgid "Machine types" -msgstr "Makine türleri" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:74 -msgctxt "@text" -msgid "Material usage" -msgstr "Malzeme kullanımı" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:80 -msgctxt "@text" -msgid "Number of slices" -msgstr "Dilim sayısı" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:86 -msgctxt "@text" -msgid "Print settings" -msgstr "Yazdırma ayarları" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:99 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Ultimaker Cura tarafından toplanan veriler herhangi bir kişisel bilgi içermeyecektir." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:100 -msgctxt "@text" -msgid "More information" -msgstr "Daha fazla bilgi" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +#: resources/qml/WelcomePages/DropDownWidget.qml:93 msgctxt "@label" msgid "Empty" msgstr "Boş" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +#: resources/qml/WelcomePages/UserAgreementContent.qml:23 msgctxt "@label" msgid "User Agreement" msgstr "Kullanıcı Anlaşması" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67 +#: resources/qml/WelcomePages/UserAgreementContent.qml:67 msgctxt "@button" msgid "Decline and close" msgstr "Reddet ve kapat" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Ultimaker Cura'ya hoş geldiniz" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:67 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "" -"Ultimaker Cura'yı kurmak\n" -" için lütfen aşağıdaki adımları izleyin. Bu sadece birkaç saniye sürecektir." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:82 -msgctxt "@button" -msgid "Get started" -msgstr "Başlayın" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: resources/qml/WelcomePages/WhatsNewContent.qml:28 msgctxt "@label" msgid "What's New" msgstr "Yenilikler" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: resources/qml/Widgets/ComboBox.qml:18 msgctxt "@label" msgid "No items to select from" msgstr "Seçilecek öğe yok" -#: ModelChecker/plugin.json -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." - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "Model Kontrol Edici" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "3MF dosyalarının okunması için destek sağlar." - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF Okuyucu" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "3MF dosyalarının yazılması için destek sağlar." - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF Yazıcı" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "AMF dosyalarının okunması için destek sağlar." - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF Okuyucu" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Yapılandırmanızı yedekleyin ve geri yükleyin." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura Yedeklemeleri" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "CuraEngine arka dilimleme ucuna bağlantı sağlar." - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine Arka Uç" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Cura profillerinin içe aktarılması için destek sağlar." - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura Profil Okuyucu" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Cura profillerinin dışa aktarılması için destek sağlar." - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura Profili Yazıcı" - -#: DigitalLibrary/plugin.json -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." - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Bellenim güncellemelerini denetler." - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Bellenim Güncelleme Denetleyicisi" - -#: FirmwareUpdater/plugin.json -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." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "Aygıt Yazılımı Güncelleyici" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Bir sıkıştırılmış arşivden g-code okur." - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Sıkıştırılmış G-code Okuyucusu" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "G-code’u bir sıkıştırılmış arşive yazar." - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Sıkıştırılmış G-code Yazıcısı" - -#: GCodeProfileReader/plugin.json -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." - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-code Profil Okuyucu" - -#: GCodeReader/plugin.json -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." - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "G-code Okuyucu" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "G-code’u bir dosyaya yazar." - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "G-code Yazıcı" - -#: ImageReader/plugin.json -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." - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "Resim Okuyucu" - -#: LegacyProfileReader/plugin.json -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." - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Eski Cura Profil Okuyucu" - -#: MachineSettingsAction/plugin.json -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.)" - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Makine Ayarları eylemi" - -#: Marketplace/plugin.json -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." - -#: Marketplace/plugin.json -msgctxt "name" -msgid "Marketplace" -msgstr "Mağaza" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Cura’da görüntüleme aşaması sunar." - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "Görüntüleme Aşaması" - -#: PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Model Başına Ayarları sağlar." - -#: PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Model Başına Ayarlar Aracı" - -#: PostProcessingPlugin/plugin.json -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ı" - -#: PostProcessingPlugin/plugin.json -msgctxt "name" -msgid "Post Processing" -msgstr "Son İşleme" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Cura’da hazırlık aşaması sunar." - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "Hazırlık Aşaması" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Cura’da ön izleme aşaması sunar." - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "Öz İzleme Aşaması" - -#: RemovableDriveOutputDevice/plugin.json -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." - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Çıkarılabilir Sürücü Çıkış Cihazı Eklentisi" - -#: SentryLogger/plugin.json -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" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "Nöbetçi Günlükçü" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Dilimlenen katman verilerinin önizlemesini sağlar." - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "Simülasyon Görünümü" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Anonim dilim bilgisi gönderir. Tercihlerden devre dışı bırakılabilir." - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "Dilim bilgisi" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Normal gerçek bir ağ görünümü sağlar." - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "Gerçek Görünüm" - -#: SupportEraser/plugin.json -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" - -#: SupportEraser/plugin.json -msgctxt "name" -msgid "Support Eraser" -msgstr "Destek Silici" - -#: TrimeshReader/plugin.json -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Model dosyalarını okuma desteği sağlar." - -#: TrimeshReader/plugin.json -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh Okuyucu" - -#: UFPReader/plugin.json -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Ultimaker Biçim Paketlerinin okunması için destek sağlar." - -#: UFPReader/plugin.json -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP Okuyucu" - -#: UFPWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Ultimaker Biçim Paketleri yazmak için destek sağlar." - -#: UFPWriter/plugin.json -msgctxt "name" -msgid "UFP Writer" -msgstr "UPF Yazıcı" - -#: UltimakerMachineActions/plugin.json -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.)" - -#: UltimakerMachineActions/plugin.json -msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Ultimaker makine eylemleri" - -#: UM3NetworkPrinting/plugin.json -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." - -#: UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Ultimaker Ağ Bağlantısı" - -#: USBPrinting/plugin.json -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." - -#: USBPrinting/plugin.json -msgctxt "name" -msgid "USB printing" -msgstr "USB yazdırma" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "2.1’den 2.2’ye Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "2.2’den 2.4’e Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "2.5’ten 2.6’ya Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "2.6’dan 2.7’ye Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "2.7’den 3.0’a Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "3.0'dan 3.1'e Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "3.2'dan 3.3'e Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "3.3'dan 3.4'e Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "3.4’ten 3.5’e Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "3.5’ten 4.0’a Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "4.0’dan 4.1’e Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "4.11'den 4.12'ye Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "4.13'ten 5.0'a Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Sürüm 4.1'den 4.2'ye Yükseltme" - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "4.2'den 4.3'e Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "4.3'ten 4.4'e Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "4.4'ten 4.5'e Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "4.5'ten 4.6'ya Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -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" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "4.6.2'den 4.7'ye Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "4.7'den 4.8'e Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "4.8'den 4.9'a Sürüm Yükseltme" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -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." - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "4.9'dan 4.10'a Sürüm Yükseltme" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "X3D dosyalarının okunması için destek sağlar." - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D Okuyucu" - -#: XmlMaterialProfile/plugin.json -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "XML tabanlı malzeme profillerini okuma ve yazma olanağı sağlar." - -#: XmlMaterialProfile/plugin.json -msgctxt "name" -msgid "Material Profiles" -msgstr "Malzeme Profilleri" - -#: XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Röntgen Görüntüsü sağlar." - -#: XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "Röntgen Görüntüsü" - -#~ msgctxt "@label" -#~ msgid "Not yet initialized
    " -#~ msgstr "Henüz başlatılmadı
    " - -#~ msgctxt "@label" -#~ msgid "By" -#~ msgstr "Oluşturan" - -#~ msgctxt "@Label" -#~ msgid "Static type checker for Python" -#~ msgstr "Python için statik tür denetleyicisi" - -#~ msgctxt "@Label" -#~ msgid "Root Certificates for validating SSL trustworthiness" -#~ msgstr "SSL güvenilirliğini doğrulamak için kök sertifikalar" - -#~ msgctxt "@label" -#~ msgid "Python extensions for Microsoft Windows" -#~ msgstr "Microsoft Windows için Python uzantıları" - -#~ msgctxt "@label" -#~ msgid "SVG icons" -#~ msgstr "SVG simgeleri" - -#~ msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" -#~ msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" -#~ msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" -#~ msgstr[0] "%2 ekstrüderindeki yapılandırmalar için %1 profili yok. Bunun yerine varsayılan amaç kullanılacak" -#~ msgstr[1] "%2 ekstrüderindeki yapılandırmalar için %1 profili yok. Bunun yerine varsayılan amaç kullanılacak" - -#~ msgctxt "@tooltip" -#~ msgid "You have modified some profile settings. If you want to change these go to custom mode." -#~ msgstr "Bazı profil ayarlarını değiştirdiniz. Bunları değişiklikleri kaydetmek istiyorsanız, özel moda gidin." - -#~ msgctxt "@action:button" -#~ msgid "Sync materials with printers" -#~ msgstr "Malzemeleri yazıcılarla senkronize et" - -#~ msgctxt "@title:window" -#~ msgid "Convert Image..." -#~ msgstr "Resim Dönüştürülüyor..." - -#~ msgctxt "@info:tooltip" -#~ msgid "The width in millimeters on the build plate." -#~ msgstr "Yapı levhasındaki milimetre cinsinden genişlik." - -#~ msgctxt "@title" -#~ msgid "Marketplace" -#~ msgstr "Mağaza" - -#~ msgctxt "@info" -#~ msgid "You will need to restart Cura before changes in packages have effect." -#~ msgstr "Pakette değişikliklerin geçerli olması için Cura’yı yeniden başlatmalısınız." - -#~ msgctxt "@action:button" -#~ msgid "Install" -#~ msgstr "Yükle" - -#~ msgctxt "@action:button" -#~ msgid "Installed" -#~ msgstr "Yüklü" - -#~ msgctxt "@label" -#~ msgid "Premium" -#~ msgstr "Premium" - -#~ msgctxt "@info:tooltip" -#~ msgid "Go to Web Marketplace" -#~ msgstr "Web Mağazasına Git" - -#~ msgctxt "@label" -#~ msgid "Search materials" -#~ msgstr "Malzeme ara" - -#~ msgctxt "@label" -#~ msgid "Compatibility" -#~ msgstr "Uyumluluk" - -#~ msgctxt "@label:table_header" -#~ msgid "Machine" -#~ msgstr "Makine" - -#~ msgctxt "@label:table_header" -#~ msgid "Build Plate" -#~ msgstr "Baskı tepsisi" - -#~ msgctxt "@label:table_header" -#~ msgid "Support" -#~ msgstr "Destek" - -#~ msgctxt "@label:table_header" -#~ msgid "Quality" -#~ msgstr "Kalite" - -#~ msgctxt "@action:label" -#~ msgid "Technical Data Sheet" -#~ msgstr "Teknik Veri Sayfası" - -#~ msgctxt "@action:label" -#~ msgid "Safety Data Sheet" -#~ msgstr "Güvenlik Veri Sayfası" - -#~ msgctxt "@action:label" -#~ msgid "Printing Guidelines" -#~ msgstr "Yazdırma Talimatları" - -#~ msgctxt "@action:label" -#~ msgid "Website" -#~ msgstr "Web sitesi" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to install or update" -#~ msgstr "Yükleme ve güncelleme yapabilmek için oturum açın" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Buy material spools" -#~ msgstr "Malzeme makarası satın al" - -#~ msgctxt "@action:button" -#~ msgid "Update" -#~ msgstr "Güncelle" - -#~ msgctxt "@action:button" -#~ msgid "Updating" -#~ msgstr "Güncelleniyor" - -#~ msgctxt "@action:button" -#~ msgid "Updated" -#~ msgstr "Güncellendi" - -#~ msgctxt "@action:button" -#~ msgid "Back" -#~ msgstr "Geri" - -#~ msgctxt "@title:tab" -#~ msgid "Plugins" -#~ msgstr "Eklentiler" - -#~ msgctxt "@title:tab" -#~ msgid "Installed" -#~ msgstr "Yüklü" - -#~ msgctxt "@label" -#~ msgid "Will install upon restarting" -#~ msgstr "Yeniden başlatıldığında kurulacak" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to update" -#~ msgstr "Güncelleme yapabilmek için oturum açın" - -#~ msgctxt "@action:button" -#~ msgid "Downgrade" -#~ msgstr "Eski Sürümü Yükle" - -#~ msgctxt "@action:button" -#~ msgid "Uninstall" -#~ msgstr "Kaldır" - -#~ msgctxt "@label" -#~ msgid "Community Contributions" -#~ msgstr "Topluluk Katkıları" - -#~ msgctxt "@label" -#~ msgid "Community Plugins" -#~ msgstr "Topluluk Eklentileri" - -#~ msgctxt "@label" -#~ msgid "Generic Materials" -#~ msgstr "Genel Materyaller" - -#~ msgctxt "@info" -#~ msgid "Fetching packages..." -#~ msgstr "Paketler alınıyor..." - -#~ msgctxt "@label" -#~ msgid "Website" -#~ msgstr "Web sitesi" - -#~ msgctxt "@label" -#~ msgid "Email" -#~ msgstr "E-posta" - -#~ msgctxt "@description" -#~ msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -#~ msgstr "Ultimaker Cura Enterprise için onaylı eklenti ve malzemeleri almak için lütfen oturum açın" - -#~ msgctxt "@label" -#~ msgid "Version" -#~ msgstr "Sürüm" - -#~ msgctxt "@label" -#~ msgid "Last updated" -#~ msgstr "Son güncelleme" - -#~ msgctxt "@label" -#~ msgid "Downloads" -#~ msgstr "İndirmeler" - -#~ msgctxt "@title:tab" -#~ msgid "Installed plugins" -#~ msgstr "Yüklü eklentiler" - -#~ msgctxt "@info" -#~ msgid "No plugin has been installed." -#~ msgstr "Hiç eklenti yüklenmedi." - -#~ msgctxt "@title:tab" -#~ msgid "Installed materials" -#~ msgstr "Yüklü malzemeler" - -#~ msgctxt "@info" -#~ msgid "No material has been installed." -#~ msgstr "Hiç malzeme yüklenmedi." - -#~ msgctxt "@title:tab" -#~ msgid "Bundled plugins" -#~ msgstr "Paketli eklentiler" - -#~ msgctxt "@title:tab" -#~ msgid "Bundled materials" -#~ msgstr "Paketli malzemeler" - -#~ msgctxt "@info" -#~ msgid "Could not connect to the Cura Package database. Please check your connection." -#~ msgstr "Cura Paket veri tabanına bağlanılamadı. Lütfen bağlantınızı kontrol edin." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall" -#~ msgstr "Kaldırmayı onayla" - -#~ msgctxt "@text:window" -#~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -#~ msgstr "Kullanımda olan materyalleri ve/veya profilleri kaldırıyorsunuz. Onay verirseniz aşağıdaki materyaller/profiller varsayılan değerlerine sıfırlanacaktır." - -#~ msgctxt "@text:window" -#~ msgid "Materials" -#~ msgstr "Malzemeler" - -#~ msgctxt "@text:window" -#~ msgid "Profiles" -#~ msgstr "Profiller" - -#~ msgctxt "@action:button" -#~ msgid "Confirm" -#~ msgstr "Onayla" - -#~ msgctxt "@info:tooltip" -#~ msgid "Some things could be problematic in this print. Click to see tips for adjustment." -#~ msgstr "Bu yazdırmada bazı şeyler sorunlu olabilir. Ayarlama için ipuçlarını görmek için tıklayın." - -#~ msgctxt "@label" -#~ msgid "Support library for handling planar objects" -#~ msgstr "Düzlemsel nesnelerin işlenmesi için destek kitaplığı" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "Bazı profil ayarlarını özelleştirdiniz.\n" -#~ "Profiller arasında geçiş yapıldıktan sonra bu değişiklikleri tutmak ister misiniz?\n" -#~ "Alternatif olarak, '%1' üzerinden varsayılanları yüklemek için değişiklikleri silebilirsiniz." - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Build plate" -#~ msgstr "&Yapı levhası" - -#~ msgctxt "@label" -#~ msgid "Create" -#~ msgstr "Oluştur" - -#~ msgctxt "@label" -#~ msgid "Duplicate" -#~ msgstr "Çoğalt" - -#~ msgctxt "@label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "Yazıcı: %1" - -#~ msgctxt "@action:button" -#~ msgid "Update profile with current settings/overrides" -#~ msgstr "Profili geçerli ayarlar/geçersiz kılmalar ile güncelle" - -#~ msgctxt "@label" -#~ msgid "Theme:" -#~ msgstr "Tema:" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for these changes to have effect." -#~ msgstr "Bu değişikliklerinin geçerli olması için uygulamayı yeniden başlatmanız gerekecektir." - -#~ msgctxt "@action:button" -#~ msgid "More information" -#~ msgstr "Daha fazla bilgi" - -#~ msgctxt "@action:button" -#~ msgid "Create" -#~ msgstr "Oluştur" - -#~ msgctxt "@action:button Sending materials to printers" -#~ msgid "Sync with Printers" -#~ msgstr "Yazıcılarla Senkronize Et" - -#~ msgctxt "@action:label" -#~ msgid "Printer" -#~ msgstr "Yazıcı" - -#~ msgctxt "@title:column" -#~ msgid "Unit" -#~ msgstr "Birim" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting Guide" -#~ msgstr "Çevrimiçi Sorun Giderme Kılavuzunu" - -#~ msgctxt "@action:inmenu" -#~ msgid "Add more materials from Marketplace" -#~ msgstr "Mağazadan daha fazla malzeme ekle" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange All Models To All Build Plates" -#~ msgstr "Tüm Modelleri Tüm Yapı Levhalarına Yerleştir" - -#~ msgctxt "@action:menu" -#~ msgid "&Marketplace" -#~ msgstr "&Mağazayı Göster" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new Cura packages." -#~ msgstr "Yeni Cura paketleri bulun, yönetin ve kurun." - -#~ msgctxt "name" -#~ msgid "Toolbox" -#~ msgstr "Araç kutusu" - -#~ msgctxt "description" -#~ msgid "Provides the Simulation view." -#~ msgstr "Simülasyon görünümünü sunar." - #~ msgctxt "@info:status" -#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Ultimaker hesabınızı kullanarak yazdırma görevlerini dilediğiniz yerden gönderin ve görüntüleyin." - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Digital Factory" -#~ msgstr "Ultimaker Digital Factory'e Bağlan" - -#~ msgctxt "@info" -#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." -#~ msgstr "Bulut yazıcıları için web kamerası akışları Ultimaker Cura'dan görüntülenemez." - -#~ 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 not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -#~ msgstr "{machine_name} cihazınız için yeni özellikler veya hata düzeltmeleri mevcut olabilir! Henüz son sürüme geçmediyseniz yazıcınızın donanım yazılımını {latest_version} sürümüne güncellemeniz önerilir." - -#~ msgctxt "@info:title The %s gets replaced with the printer name." -#~ msgid "New %s firmware available" -#~ msgstr "Yeni %s bellenimi mevcut" - -#~ msgctxt "@info:status" -#~ msgid "Global stack is missing." -#~ msgstr "Genel yığın eksik." - -#~ msgctxt "@info:status" -#~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces." -#~ msgstr "Modeliniz çok katmanlı değil. Vurgulanan alanlar eksik ya da ikincil yüzeyleri gösterir." +#~ msgid "Cura does not accurately display layers when Wire Printing is enabled." +#~ msgstr "Kablo Yazdırma etkinleştirildiğinde Cura, katmanları doğru olarak görüntülemez." #~ msgctxt "@info:title" -#~ msgid "Model errors" -#~ msgstr "Model hataları" - -#~ msgctxt "@label:listbox" -#~ msgid "Layer thickness" -#~ msgstr "Katman kalınlığı" - -#~ msgctxt "@label" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "3D baskıya bağlı anahtarınız" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Customize your experience with more print profiles and plugins\n" -#~ "- Stay flexible by syncing your setup and loading it anywhere\n" -#~ "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "" -#~ "- Daha fazla baskı profili ve eklenti ile deneyiminizi kişiselleştirin\n" -#~ "- Ayarlarınızı senkronize ederek ve dilediğiniz yerde yükleyerek esnek çalışın\n" -#~ "- Ultimaker yazıcılardaki uzaktan iş akışı sayesinde verimliliği artırın" - -#~ msgctxt "@button" -#~ msgid "Create account" -#~ msgstr "Hesap oluştur" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete Selected Model" -#~ msgid_plural "Delete Selected Models" -#~ msgstr[0] "Seçili Modeli Sil" -#~ msgstr[1] "Seçili Modelleri Sil" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Center Selected Model" -#~ msgid_plural "Center Selected Models" -#~ msgstr[0] "Seçili Modeli Ortala" -#~ msgstr[1] "Seçili Modelleri Ortala" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Multiply Selected Model" -#~ msgid_plural "Multiply Selected Models" -#~ msgstr[0] "Seçili Modeli Çoğalt" -#~ msgstr[1] "Seçili Modelleri Çoğalt" - -#~ msgctxt "@button" -#~ msgid "Finish" -#~ msgstr "Bitir" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Account" -#~ msgstr "Ultimaker hesabı" - -#~ msgctxt "@text" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "3D baskıya bağlı anahtarınız" - -#~ msgctxt "@text" -#~ msgid "- Customize your experience with more print profiles and plugins" -#~ msgstr "- Daha fazla baskı profili ve eklenti ile deneyiminizi kişiselleştirin" - -#~ msgctxt "@text" -#~ msgid "- Stay flexible by syncing your setup and loading it anywhere" -#~ msgstr "- Ayarlarınızı senkronize ederek ve dilediğiniz yerde yükleyerek esnek çalışın" - -#~ msgctxt "@text" -#~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "- Ultimaker yazıcılardaki uzaktan iş akışı sayesinde verimliliği artırın" - -#~ msgctxt "@text" -#~ msgid "" -#~ "Please follow these steps to set up\n" -#~ "Ultimaker Cura. This will only take a few moments." -#~ msgstr "" -#~ "Ultimaker Cura'yı kurmak\n" -#~ " için lütfen aşağıdaki adımları izleyin. Bu sadece birkaç saniye sürecektir." - -#~ msgctxt "@label" -#~ msgid "What's new in Ultimaker Cura" -#~ msgstr "Ultimaker Cura'daki yenilikler" - -#~ msgctxt "@label ({} is object name)" -#~ msgid "Are you sure you wish to remove {}? This cannot be undone!" -#~ msgstr "{} yazıcısını kaldırmak istediğinizden emin misiniz? Bu işlem geri alınamaz!" - -#~ msgctxt "@info:status" -#~ msgid "The selected model was too small to load." -#~ msgstr "Seçilen model yüklenemeyecek kadar küçüktü." - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profile {0}" -#~ msgstr "Profil başarıyla içe aktarıldı {0}" - -#~ msgctxt "@info:status" -#~ msgid "Could not find a quality type {0} for the current configuration." -#~ msgstr "Mevcut yapılandırma için bir kalite tipi {0} bulunamıyor." - -#~ msgctxt "info:status" -#~ msgid "Adding printer {} ({}) from your account" -#~ msgstr "Hesabınızdan {} ({}) yazıcısı ekleniyor" - -#~ msgctxt "info:hidden list items" -#~ msgid "
  • ... and {} others
  • " -#~ msgstr "
  • ... ve {} diğeri
  • " - -#~ msgctxt "info:status" -#~ msgid "Printers added from Digital Factory:
      {}
    " -#~ msgstr "Digital Factory'den eklenen yazıcılar:
      {}
    " - -#~ msgctxt "info:status" -#~ msgid "
      {}
    To establish a connection, please visit the Ultimaker Digital Factory." -#~ msgstr "
      {}
    Bağlantı kurmak için lütfen Ultimaker Digital Factory bölümünü ziyaret edin." - -#~ msgctxt "@label ({} is printer name)" -#~ msgid "{} will be removed until the next account sync.
    To remove {} permanently, visit Ultimaker Digital Factory.

    Are you sure you want to remove {} temporarily?" -#~ msgstr "Sonraki hesap senkronizasyonuna kadar {} yazıcısı kaldırılacak.
    {} yazıcısını kalıcı olarak kaldırmak için Ultimaker Digital Factory bölümünü ziyaret edin.

    {} yazıcısını kaldırmak istediğinizden emin misiniz?" - -#~ msgctxt "@label" -#~ msgid "" -#~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n" -#~ "Are you sure you want to continue?" -#~ msgstr "" -#~ "{} yazıcıyı Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz. \n" -#~ "Devam etmek istediğinizden emin misiniz?" - -#~ msgctxt "@label" -#~ msgid "" -#~ "You are about to remove all printers from Cura. This action cannot be undone. \n" -#~ "Are you sure you want to continue?" -#~ msgstr "" -#~ "Tüm yazıcıları Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz. \n" -#~ "Devam etmek istediğinizden emin misiniz?" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update" -#~ msgstr "Güncelle" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Create new" -#~ msgstr "Yeni oluştur" - -#~ msgctxt "@label" -#~ msgid "Shared Heater" -#~ msgstr "Ortak Isıtıcı" - -#~ msgctxt "@info" -#~ msgid "The webcam is not available because you are monitoring a cloud printer." -#~ msgstr "Görüntülediğiniz yazıcı bulut yazıcısı olduğundan web kamerasını kullanamazsınız." - -#~ msgctxt "@button" -#~ msgid "Ultimaker Digital Factory" -#~ msgstr "Ultimaker Digital Factory" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can Discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "Bazı profil ayarlarını özelleştirdiniz.\n" -#~ "Profiller değiştirildikten sonra bu değişiklikleri tutmak ister misiniz?\n" -#~ "Alternatif olarak, '%1' üzerinden varsayılanları yüklemek için değişiklikleri silebilirsiniz." - -#~ msgctxt "@label" -#~ msgid "Overrides %1 setting." -#~ msgid_plural "Overrides %1 settings." -#~ msgstr[0] "%1 ayarı geçersiz kılar." -#~ msgstr[1] "%1 ayarı geçersiz kılar." - -#~ msgctxt "@text" -#~ msgid "Please give your printer a name" -#~ msgstr "Lütfen yazıcınıza bir isim verin" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." -#~ msgstr "{machine_name} adlı cihazınız için yeni özellikler var! Yazıcınızın fabrika yazılımını güncellemeniz önerilir." - -#~ msgctxt "@action:button" -#~ msgid "Print via Cloud" -#~ msgstr "Bulut üzerinden yazdır" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print via Cloud" -#~ msgstr "Bulut üzerinden yazdır" - -#~ msgctxt "@info:status" -#~ msgid "Connected via Cloud" -#~ msgstr "Bulut üzerinden bağlı" - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud Platformuna Bağlan" - -#~ msgctxt "@label" -#~ msgid "You need to login first before you can rate" -#~ msgstr "Derecelendirme yapabilmek için önce oturum açmalısınız" - -#~ msgctxt "@label" -#~ msgid "You need to install the package before you can rate" -#~ msgstr "Derecelendirme yapabilmek için önce paketi kurmalısınız" - -#~ msgctxt "@label" -#~ msgid "ratings" -#~ msgstr "derecelendirmeler" - -#~ msgctxt "@label" -#~ msgid "Featured" -#~ msgstr "Öne Çıkan" - -#~ msgctxt "@label" -#~ msgid "Your rating" -#~ msgstr "Derecelendirmeniz" - -#~ msgctxt "@label" -#~ msgid "Author" -#~ msgstr "Yazar" - -#~ msgctxt "@description" -#~ msgid "Get plugins and materials verified by Ultimaker" -#~ msgstr "Ultimaker tarafından onaylanan eklentileri ve malzemeleri alın" - -#~ msgctxt "@label The argument is a username." -#~ msgid "Hi %1" -#~ msgstr "Merhaba %1" - -#~ msgctxt "@button" -#~ msgid "Ultimaker account" -#~ msgstr "Ultimaker hesabı" - -#~ msgctxt "@button" -#~ msgid "Sign out" -#~ msgstr "Çıkış yap" - -#~ msgctxt "@label" -#~ msgid "Support library for analysis of complex networks" -#~ msgstr "Karmaşık ağların analizi için destek kitaplığı" - -#~ msgctxt "@Label" -#~ msgid "Python HTTP library" -#~ msgstr "Python HTTP kitaplığı" - -#~ msgctxt "@text:window" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to keep or discard those settings?" -#~ msgstr "" -#~ "Bazı profil ayarlarını özelleştirdiniz.\n" -#~ "Bu ayarları kaydetmek veya iptal etmek ister misiniz?" - -#~ msgctxt "@title:column" -#~ msgid "Default" -#~ msgstr "Varsayılan" - -#~ msgctxt "@title:column" -#~ msgid "Customized" -#~ msgstr "Özelleştirilmiş" - -#~ msgctxt "@action:button" -#~ msgid "Discard" -#~ msgstr "İptal" - -#~ msgctxt "@action:button" -#~ msgid "Keep" -#~ msgstr "Kaydet" - -#~ msgctxt "@action:button" -#~ msgid "Create New Profile" -#~ msgstr "Yeni Profil Oluştur" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "&Save..." -#~ msgstr "&Kaydet..." - -#~ msgctxt "@text" -#~ msgid "Place enter your printer's IP address." -#~ msgstr "Lütfen yazıcınızın IP adresini girin." - -#~ msgctxt "@button" -#~ msgid "Create an account" -#~ msgstr "Bir hesap oluşturun" - -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Do you want to sync material and software packages with your account?" -#~ msgstr "" -#~ "\n" -#~ "Malzeme ve yazılım paketlerini hesabınızla senkronize etmek istiyor musunuz?" - -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Syncing..." -#~ msgstr "" -#~ "\n" -#~ "Senkronize ediliyor..." - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder." -#~ msgstr "Modeller yapı hacmine sığmadığı veya devre dışı bırakılmış bir ekstrüdere atandığı için dilimlenecek öğe yok. Modellerin sığması için lütfen ölçeklendirin veya döndürün ya da ekstrüderi etkinleştirin." - -#~ msgctxt "@info:backup_status" -#~ msgid "There was an error listing your backups." -#~ msgstr "Yedeklemeleriniz listelenirken bir hata oluştu." - -#~ msgctxt "@title:groupbox" -#~ msgid "User description (Note: Developers may not speak your language, please use English if possible)" -#~ msgstr "Kullanıcı açıklaması (Not: Geliştiriciler dilinizi konuşamıyor olabilir, lütfen mümkünse İngilizce kullanın)" - -#~ msgctxt "@title:window" -#~ msgid "Closing Cura" -#~ msgstr "Cura Kapatılıyor" - -#~ msgctxt "@label" -#~ msgid "Are you sure you want to exit Cura?" -#~ msgstr "Cura’dan çıkmak istediğinizden emin misiniz?" - -#~ msgctxt "@label" -#~ msgid "Language:" -#~ msgstr "Dil:" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud" - -#~ msgctxt "@text" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "Yeni nesil 3D yazdırma iş akışı" - -#~ msgctxt "@text" -#~ msgid "- Send print jobs to Ultimaker printers outside your local network" -#~ msgstr "- Yerel ağınızın dışındaki Ultimaker yazıcılara yazdırma işi gönderin" - -#~ msgctxt "@text" -#~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere" -#~ msgstr "- Ultimaker Cura ayarlarınızı her yerde kullanabilmek için bulutta saklayın" - -#~ msgctxt "@text" -#~ msgid "- Get exclusive access to print profiles from leading brands" -#~ msgstr "- Lider markalara ait yazdırma profillerine özel erişim sağlayın" - -#~ msgctxt "@label" -#~ msgid "The value is resolved from per-extruder values " -#~ msgstr "Değer, her bir ekstruder değerinden alınır. " - -#~ msgctxt "@label" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "Yeni nesil 3D yazdırma iş akışı" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to print profiles from leading brands" -#~ msgstr "" -#~ "- Yerel ağınız dışındaki Ultimaker yazıcılarına yazdırma görevleri gönderin\n" -#~ "- Dilediğiniz yerde kullanmak üzere Ultimaker Cura ayarlarınızı bulutta depolayın\n" -#~ "- Lider markalardan yazdırma profillerine özel erişim sağlayın" - -#~ msgctxt "@title:window" -#~ msgid "About " -#~ msgstr "Hakkında " - -#~ msgctxt "@info:button" -#~ msgid "Quit Cura" -#~ msgstr "Cura’dan Çıkın" - -#~ msgctxt "@action:checkbox" -#~ msgid "Infill only" -#~ msgstr "Yalnızca dolgu" - -#~ msgctxt "@info:tooltip" -#~ msgid "Change active post-processing scripts" -#~ msgstr "Etkin son işleme dosyalarını değiştir" - -#~ msgctxt "@label:listbox" -#~ msgid "Feedrate" -#~ msgstr "Besleme hızı" - -#~ msgctxt "name" -#~ msgid "Machine Settings action" -#~ msgstr "Makine Ayarları eylemi" - -#~ msgctxt "@info:title" -#~ msgid "New cloud printers found" -#~ msgstr "Yeni bulut yazıcılar bulundu" - -#~ msgctxt "@info:message" -#~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers." -#~ msgstr "Hesabınıza bağlı yeni yazıcılar bulundu. Keşfedilen yazıcılar listenizde bunları görüntüleyebilirsiniz." - -#~ msgctxt "@info:status" -#~ msgid "Cura does not accurately display layers when Wire Printing is enabled" -#~ msgstr "Tel Yazma etkinleştirildiğinde, Cura katmanları doğru olarak görüntülemez" - -#~ msgctxt "@label" -#~ msgid "Pre-sliced file {0}" -#~ msgstr "Önceden dilimlenmiş dosya {0}" - -#~ msgctxt "@label" -#~ msgid "" -#~ "This plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ "Bu eklenti bir lisans içerir.\n" -#~ "Bu eklentiyi yüklemek için bu lisansı kabul etmeniz gerekir.\n" -#~ "Aşağıdaki koşulları kabul ediyor musunuz?" - -#~ msgctxt "@action:button" -#~ msgid "Accept" -#~ msgstr "Kabul et" - -#~ msgctxt "@action:button" -#~ msgid "Decline" -#~ msgstr "Reddet" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show All Settings" -#~ msgstr "Tüm Ayarları Göster" - -#~ msgctxt "@title:window" -#~ msgid "Ultimaker Cura" -#~ msgstr "Ultimaker Cura" - -#~ msgctxt "@title:window" -#~ msgid "About Cura" -#~ msgstr "Cura hakkında" - -#~ msgctxt "@item:inmenu" -#~ msgid "Flatten active settings" -#~ msgstr "Düzleştirme aktif ayarları" - -#~ msgctxt "@info:status" -#~ msgid "Profile has been flattened & activated." -#~ msgstr "Profil düzleştirilmiş ve aktifleştirilmiştir." - -#~ msgctxt "X3g Writer Plugin Description" -#~ msgid "Writes X3g to files" -#~ msgstr "Dosyalara X3g yazar" - -#~ msgctxt "X3g Writer File Description" -#~ msgid "X3g File" -#~ msgstr "X3g Dosyası" - -#~ msgctxt "X3G Writer File Description" -#~ msgid "X3G File" -#~ msgstr "X3G Dosyası" - -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "Profil Asistanı" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "Profil Asistanı" - -#~ msgctxt "@action:button" -#~ msgid "Retry" -#~ msgstr "Yeniden dene" - -#~ msgctxt "@label:table_header" -#~ msgid "Print Core" -#~ msgstr "Baskı Hücresi" - -#~ msgctxt "@label" -#~ msgid "Don't support overlap with other models" -#~ msgstr "Diğer modellerle örtüşmeyi destekleme" - -#~ msgctxt "@label" -#~ msgid "Modify settings for overlap with other models" -#~ msgstr "Diğer modellerle örtüşme ayarlarını değiştir" - -#~ msgctxt "@label" -#~ msgid "Modify settings for infill of other models" -#~ msgstr "Diğer modellerle doldurma ayarlarını değiştir" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update existing" -#~ msgstr "Var olanları güncelleştir" - -#~ msgctxt "@label" -#~ msgid "Not supported" -#~ msgstr "Desteklenmiyor" - -#~ msgctxt "@action:button" -#~ msgid "Previous" -#~ msgstr "Önceki" - -#~ msgctxt "@label" -#~ msgid "Tip" -#~ msgstr "İpucu" - -#~ msgctxt "@label" -#~ msgid "Print experiment" -#~ msgstr "Yazdırma denemesi" - -#~ msgctxt "@label" -#~ msgid "Checklist" -#~ msgstr "Kontrol listesi" - -#~ msgctxt "@label" -#~ msgid "Please select any upgrades made to this Ultimaker 2." -#~ msgstr "Ultimaker 2 için yapılan herhangi bir yükseltmeyi seçiniz." - -#~ msgctxt "@label" -#~ msgid "Olsson Block" -#~ msgstr "Olsson Bloku" - -#~ msgctxt "@window:text" -#~ msgid "Camera rendering: " -#~ msgstr "Kamera oluşturma: " - -#~ msgctxt "@info:tooltip" -#~ msgid "Use multi build plate functionality" -#~ msgstr "Çok yapılı levha fonksiyonelliğini kullan" - -#~ msgctxt "@option:check" -#~ msgid "Use multi build plate functionality (restart required)" -#~ msgstr "Çok yapılı levha fonksiyonelliğini kullan (yeniden başlatma gerektirir)" - -#~ msgctxt "@label" -#~ msgid "Default profiles" -#~ msgstr "Varsayılan profiller" - -#~ msgctxt "@label:textbox" -#~ msgid "search settings" -#~ msgstr "arama ayarları" - -#~ msgctxt "@label" -#~ msgid "Layer Height" -#~ msgstr "Katman Yüksekliği" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile." -#~ msgstr "Bu kalite profili mevcut malzemeniz ve nozül yapılandırması için kullanılamaz. Bu kalite profilini etkinleştirmek için lütfen bu öğeleri değiştirin." - -#~ msgctxt "@tooltip" -#~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" -#~ msgstr "Özel bir profil şu anda aktif. Kalite kaydırıcısını etkinleştirmek için Özel sekmesinde varsayılan bir kalite seçin" - -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "&Yapı levhası" - -#~ msgctxt "@title:settings" -#~ msgid "&Profile" -#~ msgstr "&Profil" - -#~ msgctxt "@action:label" -#~ msgid "Build plate" -#~ msgstr "Baskı tepsisi" - -#~ msgctxt "description" -#~ msgid "Dump the contents of all settings to a HTML file." -#~ msgstr "Tüm ayarların içeriklerini bir HTML dosyasına aktarır." - -#~ msgctxt "name" -#~ msgid "God Mode" -#~ msgstr "Tanrı Modu" - -#~ msgctxt "description" -#~ msgid "Create a flattened quality changes profile." -#~ msgstr "Düzleştirilmiş kalitede değiştirilmiş bir profil oluşturun." - -#~ msgctxt "name" -#~ msgid "Profile Flattener" -#~ msgstr "Profil Düzleştirici" - -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "Malzeme üreticilerine bir drop-in UI kullanarak yeni malzeme ve kalite profili oluşturma imkanı sunar." - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "Baskı Profili Asistanı" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network." -#~ msgstr "Ağ üzerinden bağlandı." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. Please approve the access request on the printer." -#~ msgstr "Ağ üzerinden bağlandı. Lütfen yazıcıya erişim isteğini onaylayın." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. No access to control the printer." -#~ msgstr "Ağ üzerinden bağlandı. Yazıcıyı kontrol etmek için erişim yok." - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer requested. Please approve the request on the printer" -#~ msgstr "İstenen yazıcıya erişim. Lütfen yazıcı isteğini onaylayın" - -#~ msgctxt "@info:title" -#~ msgid "Authentication status" -#~ msgstr "Kimlik doğrulama durumu" - -#~ msgctxt "@info:title" -#~ msgid "Authentication Status" -#~ msgstr "Kimlik Doğrulama Durumu" - -#~ msgctxt "@info:tooltip" -#~ msgid "Re-send the access request" -#~ msgstr "Erişim talebini yeniden gönder" - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer accepted" -#~ msgstr "Kabul edilen yazıcıya erişim" - -#~ msgctxt "@info:status" -#~ msgid "No access to print with this printer. Unable to send print job." -#~ msgstr "Bu yazıcıyla yazdırmaya erişim yok. Yazdırma işi gönderilemedi." - -#~ msgctxt "@action:button" -#~ msgid "Request Access" -#~ msgstr "Erişim Talep Et" - -#~ msgctxt "@info:tooltip" -#~ msgid "Send access request to the printer" -#~ msgstr "Yazıcıya erişim talebi gönder" - -#~ msgctxt "@label" -#~ msgid "Unable to start a new print job." -#~ msgstr "Yeni bir yazdırma işi başlatılamıyor." - -#~ msgctxt "@label" -#~ msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." -#~ msgstr "Ultimaker’ın yapılandırmasında yazdırmayı başlatmayı imkansız kılan bir sorun var. Devam etmeden önce lütfen bu sorunu çözün." - -#~ msgctxt "@window:title" -#~ msgid "Mismatched configuration" -#~ msgstr "Uyumsuz yapılandırma" - -#~ msgctxt "@label" -#~ msgid "Are you sure you wish to print with the selected configuration?" -#~ msgstr "Seçilen yapılandırma ile yazdırmak istediğinizden emin misiniz?" - -#~ msgctxt "@label" -#~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "Yazıcı yapılandırması veya kalibrasyonu ile Cura arasında eşleşme sorunu var. En iyi sonucu almak istiyorsanız her zaman PrintCore ve yazıcıya eklenen malzemeler için dilimleme yapın." - -#~ msgctxt "@info:status" -#~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." -#~ msgstr "Yeni işlerin gönderilmesi (geçici olarak) engellenmiştir, hala bir önceki yazdırma işi gönderiliyor." - -#~ msgctxt "@info:status" -#~ msgid "Sending data to printer" -#~ msgstr "Veriler yazıcıya gönderiliyor" - -#~ msgctxt "@info:title" -#~ msgid "Sending Data" -#~ msgstr "Veri gönderiliyor" - -#~ msgctxt "@info:status" -#~ msgid "No Printcore loaded in slot {slot_number}" -#~ msgstr "{slot_number} yuvasına Printcore yüklenmedi" - -#~ msgctxt "@info:status" -#~ msgid "No material loaded in slot {slot_number}" -#~ msgstr "{slot_number} yuvasına malzeme yüklenmedi" - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" -#~ msgstr "Farklı PrintCore (Cura: {cura_printcore_name}, Yazıcı: ekstruder {extruder_id} için {remote_printcore_name}) seçildi" - -#~ msgctxt "@label" -#~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Farklı malzeme (Cura: {0}, Yazıcı: {1}), ekstrüder {2} için seçildi" - -#~ msgctxt "@window:title" -#~ msgid "Sync with your printer" -#~ msgstr "Yazıcınız ile eşitleyin" - -#~ msgctxt "@label" -#~ msgid "Would you like to use your current printer configuration in Cura?" -#~ msgstr "Cura’da geçerli yazıcı yapılandırmanızı kullanmak istiyor musunuz?" - -#~ msgctxt "@label" -#~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "Yazıcınızda bulunan PrintCore’lar ve/veya malzemeler geçerli projenizde bulunandan farklı. En iyi sonucu almak istiyorsanız, her zaman PrintCore ve yazıcıya eklenen malzemeler için dilimleme yapın." - -#~ msgctxt "@action:button" -#~ msgid "View in Monitor" -#~ msgstr "Monitörde Görüntüle" - -#~ msgctxt "@info:status" -#~ msgid "Printer '{printer_name}' has finished printing '{job_name}'." -#~ msgstr "{printer_name}, '{job_name}' yazdırmayı tamamladı." - -#~ msgctxt "@info:status" -#~ msgid "The print job '{job_name}' was finished." -#~ msgstr "Yazdırma işi '{job_name}' tamamlandı." - -#~ msgctxt "@info:status" -#~ msgid "Print finished" -#~ msgstr "Baskı tamamlandı" - -#~ msgctxt "@label:material" -#~ msgid "Empty" -#~ msgstr "Boş" - -#~ msgctxt "@label:material" -#~ msgid "Unknown" -#~ msgstr "Bilinmiyor" - -#~ msgctxt "@info:title" -#~ msgid "Cloud error" -#~ msgstr "Bulut hatası" - -#~ msgctxt "@info:status" -#~ msgid "Could not export print job." -#~ msgstr "Yazdırma görevi dışa aktarılamadı." - -#~ msgctxt "@info:description" -#~ msgid "There was an error connecting to the cloud." -#~ msgstr "Buluta bağlanırken hata oluştu." - -#~ msgctxt "@info:status" -#~ msgid "Uploading via Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud İle Yükleniyor" - -#~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud Platformuna Bağlan" - -#~ msgctxt "@action" -#~ msgid "Don't ask me again for this printer." -#~ msgstr "Bu yazıcı için bir daha sorma." - -#~ msgctxt "@info:status" -#~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "Artık, Ultimaker hesabınızı kullanarak yazdırma görevlerini dilediğiniz yerden gönderebilir ve görüntüleyebilirsiniz." - -#~ msgctxt "@info:status" -#~ msgid "Connected!" -#~ msgstr "Bağlı!" - -#~ msgctxt "@action" -#~ msgid "Review your connection" -#~ msgstr "Bağlantınızı inceleyin" - -#~ msgctxt "@info:status Don't translate the XML tags !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "{0} ({1}) profilinde tanımlanan makine, mevcut makineniz ({2}) ile eşleşmiyor, içe aktarılamadı." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}:" -#~ msgstr "{0} dosyasından profil içe aktarımı başarısız oldu:" - -#~ msgctxt "@window:title" -#~ msgid "Existing Connection" -#~ msgstr "Mevcut Bağlantı" - -#~ msgctxt "@message:text" -#~ msgid "This printer/group is already added to Cura. Please select another printer/group." -#~ msgstr "Bu yazıcı/grup Cura’ya zaten eklenmiş. Lütfen başka bir yazıcı/grup seçin." - -#~ msgctxt "@label" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "IP adresini veya yazıcınızın ağ üzerindeki ana bilgisayar adını girin." - -#~ msgctxt "@info:tooltip" -#~ msgid "Connect to a printer" -#~ msgstr "Yazıcıya Bağlan" - -#~ msgctxt "@title" -#~ msgid "Cura Settings Guide" -#~ msgstr "Cura Ayarlar Kılavuzu" - -#~ msgctxt "@info:tooltip" -#~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective." -#~ msgstr "Fareye doğru yakınlaştırma yapılması ortografik perspektifte desteklenmez." - -#~ msgid "Orthogonal" -#~ msgstr "Ortografik" - -#~ msgctxt "description" -#~ msgid "Manages network connections to Ultimaker 3 printers." -#~ msgstr "Ultimaker 3 yazıcıları için ağ bağlantılarını yönetir." - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection" -#~ msgstr "UM3 Ağ Bağlantısı" - -#~ msgctxt "description" -#~ msgid "Provides extra information and explanations about settings in Cura, with images and animations." -#~ msgstr "Resim ve animasyonlar yardımıyla Cura'daki ayarlarla ilgili ekstra bilgi ve açıklama sunar." - -#~ msgctxt "name" -#~ msgid "Settings Guide" -#~ msgstr "Ayarlar Kılavuzu" - -#~ msgctxt "@item:inmenu" -#~ msgid "Cura Settings Guide" -#~ msgstr "Cura Ayarlar Kılavuzu" - -#~ msgctxt "@info:generic" -#~ msgid "Settings have been changed to match the current availability of extruders: [%s]" -#~ msgstr "Ayarlar, ekstruderlerin mevcut kullanılabilirliğine uyacak şekilde değiştirildi: [%s]" - -#~ msgctxt "@title:groupbox" -#~ msgid "User description" -#~ msgstr "Kullanıcı açıklaması" - -#~ msgctxt "@info" -#~ msgid "These options are not available because you are monitoring a cloud printer." -#~ msgstr "Görüntülediğiniz yazıcı bulut yazıcısı olduğundan bu seçenekleri kullanamazsınız." - -#~ msgctxt "@label link to connect manager" -#~ msgid "Go to Cura Connect" -#~ msgstr "Cura Connect’e git" - -#~ msgctxt "@info" -#~ msgid "All jobs are printed." -#~ msgstr "Tüm işler yazdırıldı." - -#~ msgctxt "@label link to connect manager" -#~ msgid "View print history" -#~ msgstr "Yazdırma geçmişini görüntüle" - -#~ 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.\n" -#~ "\n" -#~ "Select your printer from the list below:" -#~ msgstr "" -#~ "Yazıcınıza ağ üzerinden doğrudan bağlamak için, lütfen yazıcınızın ağ kablosu kullanan bir ağa bağlı olduğundan emin olun veya yazıcınızı WiFi ağına bağlayın. Cura'ya yazıcınız ile bağlanamıyorsanız g-code dosyalarını yazıcınıza aktarmak için USB sürücüsü kullanabilirsiniz.\n" -#~ "\n" -#~ "Aşağıdaki listeden yazıcınızı seçin:" - -#~ 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." -#~ msgstr "" -#~ "Lütfen yazıcınızın bağlı olduğunu kontrol edin:\n" -#~ "- Yazıcının açık olduğunu kontrol edin.\n" -#~ "- Yazıcının ağa bağlı olduğunu kontrol edin." - -#~ msgctxt "@option:check" -#~ msgid "See only current build plate" -#~ msgstr "Sadece mevcut yapı levhasını görüntüle" - -#~ msgctxt "@action:button" -#~ msgid "Arrange to all build plates" -#~ msgstr "Tüm yapı levhalarına yerleştir" - -#~ msgctxt "@action:button" -#~ msgid "Arrange current build plate" -#~ msgstr "Sadece mevcut yapı levhasına yerleştir" - -#~ msgctxt "description" -#~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)." -#~ msgstr "Bu formatı okuyan yazıcıları (Malyan, Makerbot ve diğer Sailfish tabanlı yazıcılar) desteklemek için Ortaya çıkacak parçanın X3G dosyası olarak kaydedilmesine izin verir." - -#~ msgctxt "name" -#~ msgid "X3GWriter" -#~ msgstr "X3GWriter" - -#~ msgctxt "description" -#~ msgid "Reads SVG files as toolpaths, for debugging printer movements." -#~ msgstr "Yazıcı hareketlerinde hata ayıklaması yapmak için takım yolu olarak SVG dosyalarını okur." - -#~ msgctxt "name" -#~ msgid "SVG Toolpath Reader" -#~ msgstr "SVG Takım Yolu Okuyucu" - -#~ msgctxt "@item:inmenu" -#~ msgid "Changelog" -#~ msgstr "Değişiklik Günlüğü" - -#~ msgctxt "@item:inmenu" -#~ msgid "Show Changelog" -#~ msgstr "Değişiklik Günlüğünü Göster" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to remote cluster" -#~ msgstr "Veri uzak kümeye gönderiliyor" - -#~ msgctxt "@info:status" -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud Platformuna Bağlan" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymized usage statistics." -#~ msgstr "Cura anonimleştirilmiş kullanım istatistikleri toplar." - -#~ msgctxt "@info:title" -#~ msgid "Collecting Data" -#~ msgstr "Veri Toplanıyor" - -#~ msgctxt "@action:button" -#~ msgid "More info" -#~ msgstr "Daha fazla bilgi" - -#~ msgctxt "@action:tooltip" -#~ msgid "See more information on what data Cura sends." -#~ msgstr "Cura’nın gönderdiği veriler hakkında daha fazla bilgi alın." - -#~ msgctxt "@action:button" -#~ msgid "Allow" -#~ msgstr "İzin Verme" - -#~ msgctxt "@action:tooltip" -#~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." -#~ msgstr "Programın gelecek sürümlerinin iyileştirilmesine yardımcı olmak için Cura’ya anonimleştirilmiş kullanım istatistikleri gönderme izni verin. Tercih ve ayarlarınızın bazıları, Cura sürümü ve dilimlere ayırdığınız modellerin sağlaması gönderilir." - -#~ msgctxt "@item:inmenu" -#~ msgid "Evaluation" -#~ msgstr "Değerlendirme" - -#~ msgctxt "@info:title" -#~ msgid "Network enabled printers" -#~ msgstr "Ağ etkin yazıcılar" - -#~ msgctxt "@info:title" -#~ msgid "Local printers" -#~ msgstr "Yerel yazıcılar" - -#~ msgctxt "@info:backup_failed" -#~ msgid "Tried to restore a Cura backup that does not match your current version." -#~ msgstr "Geçerli sürümünüzle eşleşmeyen bir Cura yedeği geri yüklenmeye çalışıldı." - -#~ msgctxt "@title" -#~ msgid "Machine Settings" -#~ msgstr "Makine Ayarları" - -#~ msgctxt "@label" -#~ msgid "Printer Settings" -#~ msgstr "Yazıcı Ayarları" - -#~ msgctxt "@option:check" -#~ msgid "Origin at center" -#~ msgstr "Merkez nokta" - -#~ msgctxt "@option:check" -#~ msgid "Heated bed" -#~ msgstr "Isıtılmış yatak" - -#~ msgctxt "@label" -#~ msgid "Printhead Settings" -#~ msgstr "Yazıcı Başlığı Ayarları" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Yazıcı başlığının solundan nozülün ortasına kadar olan mesafe. “Birer birer” çıktı alırken önceki çıktılar ile yazıcı başlığının çakışmasını önlemek için kullanılır." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Yazıcı başlığının ön kısmından nozülün ortasına kadar olan mesafe. “Birer birer” çıktı alırken önceki çıktılar ile yazıcı başlığının çakışmasını önlemek için kullanılır." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Yazıcı başlığının sağından nozülün ortasına kadar olan mesafe. “Birer birer” çıktı alırken önceki çıktılar ile yazıcı başlığının çakışmasını önlemek için kullanılır." - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "Yazıcı başlığının arkasından nozülün ortasına kadar olan mesafe. “Birer birer” çıktı alırken önceki çıktılar ile yazıcı başlığının çakışmasını önlemek için kullanılır." - -#~ msgctxt "@label" -#~ msgid "Gantry height" -#~ msgstr "Portal yüksekliği" - -#~ msgctxt "@tooltip" -#~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." -#~ msgstr "Nozül ucu ve portal sistemi (X ve Y aksları) arasındaki yükseklik farkı. “Birer birer” çıktı alırken önceki çıktılar ile portalın çakışmasını önlemek için kullanılır." - -#~ msgctxt "@label" -#~ msgid "Start G-code" -#~ msgstr "G-code’u Başlat" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very start." -#~ msgstr "Başlangıçta yürütülecek G-code komutları." - -#~ msgctxt "@label" -#~ msgid "End G-code" -#~ msgstr "G-code’u Sonlandır" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very end." -#~ msgstr "Bitişte yürütülecek G-code komutları." - -#~ msgctxt "@label" -#~ msgid "Nozzle Settings" -#~ msgstr "Nozül Ayarları" - -#~ msgctxt "@tooltip" -#~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." -#~ msgstr "Yazıcı tarafından desteklenen nominal filaman çapı. Tam çap malzeme ve/veya profil tarafından etkisiz kılınacaktır." - -#~ msgctxt "@label" -#~ msgid "Extruder Start G-code" -#~ msgstr "Ekstruder G-Code'u Başlatma" - -#~ msgctxt "@label" -#~ msgid "Extruder End G-code" -#~ msgstr "Ekstruder G-Code'u Sonlandırma" - -#~ msgctxt "@label" -#~ msgid "Changelog" -#~ msgstr "Değişiklik Günlüğü" - -#~ msgctxt "@title:window" -#~ msgid "User Agreement" -#~ msgstr "Kullanıcı Anlaşması" - -#~ msgctxt "@alabel" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "IP adresini veya yazıcınızın ağ üzerindeki ana bilgisayar adını girin." - -#~ msgctxt "@info" -#~ msgid "Please select a network connected printer to monitor." -#~ msgstr "Görüntülemek için lütfen ağa bağlı bir yazıcı seçin." - -#~ msgctxt "@info" -#~ msgid "Please connect your Ultimaker printer to your local network." -#~ msgstr "Lütfen Ultimaker yazıcınızı yerel ağınıza bağlayın." - -#~ msgctxt "@text:window" -#~ msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent." -#~ msgstr "Cura, yazdırma kalitesini ve kullanıcı deneyimini iyileştirmek için Ultimaker’a anonim veri gönderir. Aşağıda, gönderilen tüm veriler örneklenmiştir." - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send this data" -#~ msgstr "Bu veriyi göndermek istemiyorum" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending this data to Ultimaker and help us improve Cura" -#~ msgstr "Bu verinin Ultimaker’a gönderilmesine izin verin ve Cura’yı iyileştirmemize yardım edin" - -#~ msgctxt "@label" -#~ msgid "No print selected" -#~ msgstr "Yazdırma seçilmedi" - -#~ msgctxt "@info:tooltip" -#~ 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 "Varsayılan olarak, beyaz pikseller ızgara üzerindeki yüksek noktaları ve siyah pikseller ızgara üzerindeki alçak noktaları gösterir. Bu durumu tersine çevirmek için bu seçeneği değiştirin, böylece siyah pikseller ızgara üzerindeki yüksek noktaları ve beyaz pikseller ızgara üzerindeki alçak noktaları gösterir." - -#~ msgctxt "@title" -#~ msgid "Select Printer Upgrades" -#~ msgstr "Yazıcı Yükseltmelerini seçin" - -#~ msgctxt "@label" -#~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "Destek için kullanacağınız ekstruderi seçin. Bu, modelin havadayken düşmesini veya yazdırılmasını önlemek için modelin altındaki destekleyici yapıları güçlendirir." - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "Bu kalite profili mevcut malzemeniz ve nozül yapılandırması için kullanılamaz. Bu kalite profilini etkinleştirmek için lütfen bu öğeleri değiştirin" - -#~ msgctxt "@label shown when we load a Gcode file" -#~ msgid "Print setup disabled. G code file can not be modified." -#~ msgstr "Yazıcı kurulumu devre dışı bırakıldı. G Code dosyası düzenlenemez." - -#~ msgctxt "@label" -#~ msgid "See the material compatibility chart" -#~ msgstr "Malzeme uyumluluğu çizelgesini göster" - -#~ msgctxt "@label" -#~ msgid "View types" -#~ msgstr "Türleri görüntüle" - -#~ msgctxt "@label" -#~ msgid "Hi " -#~ msgstr "Merhaba " - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to material profiles from leading brands" -#~ msgstr "" -#~ "- Yerel ağınız dışındaki Ultimaker yazıcılarına yazdırma görevleri gönderin\n" -#~ "- Dilediğiniz yerde kullanmak üzere Ultimaker Cura ayarlarınızı bulutta depolayın\n" -#~ "- Lider markalardan malzeme profillerine özel erişim sağlayın" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Unable to Slice" -#~ msgstr "Dilimlenemedi" - -#~ msgctxt "@label" -#~ msgid "Time specification" -#~ msgstr "Zaman özellikleri" - -#~ msgctxt "@label" -#~ msgid "Material specification" -#~ msgstr "Malzeme özellikleri" - -#~ msgctxt "@title:tab" -#~ msgid "Add a printer to Cura" -#~ msgstr "Cura’ya bir yazıcı ekleyin" - -#~ msgctxt "@title:tab" -#~ msgid "" -#~ "Select the printer you want to use from the list below.\n" -#~ "\n" -#~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog." -#~ msgstr "" -#~ "Aşağıdaki listeden kullanmak istediğiniz yazıcıyı seçin.\n" -#~ "\n" -#~ "Yazıcınız listede yoksa “Özel” kategorisinden “Özel FFF Yazıcı” seçeneğini kullanın ve sonraki iletişim kutusunda ayarları yazıcınıza göre düzenleyin." - -#~ msgctxt "@label" -#~ msgid "Printer Name" -#~ msgstr "Yazıcı Adı" - -#~ msgctxt "@action:button" -#~ msgid "Add Printer" -#~ msgstr "Yazıcı Ekle" - -#~ msgid "Modify G-Code" -#~ msgstr "GCode Değiştir" - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." -#~ msgstr "Modeller yapı hacmine sığmadığı için dilimlenecek bir şey yok. Lütfen sığdırmak için modelleri ölçeklendirin veya döndürün." - -#~ msgctxt "@info:status" -#~ msgid "The selected material is incompatible with the selected machine or configuration." -#~ msgstr "Seçilen malzeme, seçilen makine veya yapılandırma ile uyumlu değil." - -#~ msgctxt "@info:title" -#~ msgid "Incompatible Material" -#~ msgstr "Uyumsuz Malzeme" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "{0} dosyasından profil içe aktarımı başarısız oldu: {1}" - -#~ msgctxt "@title" -#~ msgid "Toolbox" -#~ msgstr "Araç kutusu" - -#~ msgctxt "@label" -#~ msgid "Not available" -#~ msgstr "Mevcut değil" - -#~ msgctxt "@label" -#~ msgid "Unreachable" -#~ msgstr "Ulaşılamıyor" - -#~ msgctxt "@label" -#~ msgid "Available" -#~ msgstr "Mevcut" - -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "Hazırlanıyor" - -#~ msgctxt "@label:status" -#~ msgid "Pausing" -#~ msgstr "Duraklatılıyor" - -#~ msgctxt "@label:status" -#~ msgid "Resuming" -#~ msgstr "Devam ediliyor" - -#~ msgctxt "@label" -#~ msgid "Waiting for: Unavailable printer" -#~ msgstr "Bekleniyor: Kullanım dışı yazıcı" - -#~ msgctxt "@label" -#~ msgid "Waiting for: First available" -#~ msgstr "Bekleniyor: İlk mevcut olan" - -#~ msgctxt "@label" -#~ msgid "Waiting for: " -#~ msgstr "Bekleniyor: " - -#~ msgctxt "@label" -#~ msgid "Configuration change" -#~ msgstr "Yapılandırma değişikliği" - -#~ msgctxt "@label" -#~ msgid "The assigned printer, %1, requires the following configuration change(s):" -#~ msgstr "Atanan yazıcı %1, aşağıdaki yapılandırma değişikliklerini gerektiriyor:" - -#~ msgctxt "@label" -#~ msgid "Override" -#~ msgstr "Geçersiz kıl" - -#~ msgctxt "@label" -#~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?" -#~ msgstr "Bir yazdırma işini uyumsuz bir yapılandırmayla başlatmak 3D yazıcınıza zarar verebilir. Yapılandırmayı geçersiz kılmak ve %1 öğesini yazdırmak istediğinizden emin misiniz?" - -#~ msgctxt "@window:title" -#~ msgid "Override configuration configuration and start print" -#~ msgstr "Yapılandırmayı geçersiz kıl ve yazdırmayı başlat" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage queue" -#~ msgstr "Kuyruğu yönet" - -#~ msgctxt "@label" -#~ msgid "Printing" -#~ msgstr "Yazdırma" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage printers" -#~ msgstr "Yazıcıları yönet" - -#~ msgctxt "@action:button" -#~ msgid "Activate Configuration" -#~ msgstr "Yapılandırmayı Etkinleştir" - -#~ msgctxt "@info:tooltip" -#~ msgid "Load the configuration of the printer into Cura" -#~ msgstr "Yazıcı yapılandırmasını Cura’ya yükle" - -#~ msgctxt "@label" -#~ msgid "Show Travels" -#~ msgstr "Geçişleri Göster" - -#~ msgctxt "@label" -#~ msgid "Show Helpers" -#~ msgstr "Yardımcıları Göster" - -#~ msgctxt "@label" -#~ msgid "Show Shell" -#~ msgstr "Kabuğu Göster" - -#~ msgctxt "@label" -#~ msgid "Show Infill" -#~ msgstr "Dolguyu Göster" - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send these data" -#~ msgstr "Bu verileri göndermek istemiyorum" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending these data to Ultimaker and help us improve Cura" -#~ msgstr "Bu verilen Ultimaker’a gönderilmesine izin verin ve Cura’yı geliştirmemize yardım edin" - -#~ msgctxt "@label" -#~ msgid "Printer type:" -#~ msgstr "Yazıcı türü:" - -#~ msgctxt "@label" -#~ msgid "Connection:" -#~ msgstr "Bağlantı:" - -#~ msgctxt "@label" -#~ msgid "State:" -#~ msgstr "Durum:" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for a printjob" -#~ msgstr "Yazdırma işlemi bekleniyor" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for someone to clear the build plate" -#~ msgstr "Yapı levhasının temizlenmesi bekleniyor" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Aborting print..." -#~ msgstr "Yazdırma durduruluyor..." - -#~ msgctxt "@label" -#~ msgid "Protected profiles" -#~ msgstr "Korunan profiller" - -#~ msgctxt "@label" -#~ msgid "Printer Name:" -#~ msgstr "Yazıcı Adı:" - -#~ msgctxt "@label" -#~ msgid "Profile:" -#~ msgstr "Profil:" - -#~ msgctxt "@label:textbox" -#~ msgid "Search..." -#~ msgstr "Ara..." - -#~ msgctxt "@action:inmenu" -#~ msgid "Collapse All" -#~ msgstr "Tümünü Daralt" - -#~ msgctxt "@action:inmenu" -#~ msgid "Expand All" -#~ msgstr "Tümünü Genişlet" - -#~ msgctxt "@label:header configurations" -#~ msgid "Available configurations" -#~ msgstr "Kullanılabilir yapılandırmalar" - -#~ msgctxt "@label:extruder label" -#~ msgid "Extruder" -#~ msgstr "Ekstrüder" - -#~ msgctxt "@label:extruder label" -#~ msgid "Yes" -#~ msgstr "Evet" - -#~ msgctxt "@label:extruder label" -#~ msgid "No" -#~ msgstr "Hayır" - -#~ msgctxt "@label:listbox" -#~ msgid "Print Setup" -#~ msgstr "Yazıcı Ayarları" - -#~ msgctxt "@label:listbox" -#~ msgid "" -#~ "Print Setup disabled\n" -#~ "G-code files cannot be modified" -#~ msgstr "" -#~ "Yazdırma Ayarı devre dışı\n" -#~ "G-code dosyaları üzerinde değişiklik yapılamaz" - -#~ msgctxt "@label Hours and minutes" -#~ msgid "00h 00min" -#~ msgstr "00sa 00dk" - -#~ msgctxt "@tooltip" -#~ msgid "Time specification" -#~ msgstr "Zaman Özellikleri" - -#~ msgctxt "@label" -#~ msgid "Cost specification" -#~ msgstr "Maliyet koşulları" - -#~ msgctxt "@label" -#~ msgid "Total:" -#~ msgstr "Toplam:" - -#~ msgctxt "@tooltip" -#~ msgid "Recommended Print Setup

    Print with the recommended settings for the selected printer, material and quality." -#~ msgstr "Önerilen Yazıcı Ayarları

    Seçilen yazıcı, malzeme ve kalite için önerilen ayarları kullanarak yazdırın." - -#~ msgctxt "@tooltip" -#~ msgid "Custom Print Setup

    Print with finegrained control over every last bit of the slicing process." -#~ msgstr "Özel Yazıcı Ayarları

    Dilimleme işleminin her bir bölümünü detaylıca kontrol ederek yazdırın." - -#~ msgctxt "@action:inmenu menubar:help" -#~ msgid "Show Engine &Log..." -#~ msgstr "Motor Günlüğünü Göster..." - -#~ msgctxt "@action:menu" -#~ msgid "Browse packages..." -#~ msgstr "Paketlere gözat..." - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "Expand/Collapse Sidebar" -#~ msgstr "Kenar Çubuğunu Genişlet/Daralt" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3D model" -#~ msgstr "Lütfen bir 3D model yükleyin" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Ready to slice" -#~ msgstr "Dilimlemeye hazır" - -#~ msgctxt "@label:PrintjobStatus %1 is target operation" -#~ msgid "Ready to %1" -#~ msgstr "%1 Hazır" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Slicing unavailable" -#~ msgstr "Dilimleme kullanılamıyor" - -#~ msgctxt "@info:tooltip" -#~ msgid "Slice current printjob" -#~ msgstr "Mevcut yazdırma görevini dilimlere ayır" - -#~ msgctxt "@info:tooltip" -#~ msgid "Cancel slicing process" -#~ msgstr "Dilimleme sürecini iptal et" - -#~ msgctxt "@label:Printjob" -#~ msgid "Prepare" -#~ msgstr "Hazırla" - -#~ msgctxt "@label:Printjob" -#~ msgid "Cancel" -#~ msgstr "İptal Et" - -#~ msgctxt "@info:tooltip" -#~ msgid "Select the active output device" -#~ msgstr "Etkin çıkış aygıtını seçin" - -#~ msgctxt "@title:menu" -#~ msgid "&View" -#~ msgstr "&Görünüm" - -#~ msgctxt "@title:menu" -#~ msgid "&Settings" -#~ msgstr "&Ayarlar" - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "&Toolbox" -#~ msgstr "&Araç kutusu" - -#~ msgctxt "@action:button" -#~ msgid "Open File" -#~ msgstr "Dosya Aç" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "Bu kalite profili mevcut malzemeniz ve nozül yapılandırması için kullanılamaz. Bu kalite profilini etkinleştirmek için lütfen bunları değiştirin" - -#~ msgctxt "@label" -#~ msgid "Print Speed" -#~ msgstr "Yazdırma Hızı" - -#~ msgctxt "@label" -#~ msgid "Slower" -#~ msgstr "Daha yavaş" - -#~ msgctxt "@label" -#~ msgid "Faster" -#~ msgstr "Daha Hızlı" - -#~ msgctxt "@label" -#~ msgid "Enable gradual" -#~ msgstr "Kademeli özelliği etkinleştir" - -#~ msgctxt "@label" -#~ msgid "Generate Support" -#~ msgstr "Oluşturma Desteği" - -#~ msgctxt "@label" -#~ msgid "Build Plate Adhesion" -#~ msgstr "Yapı Levhası Yapıştırması" - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints?
    Read the Ultimaker Troubleshooting Guides" -#~ msgstr "Yazıcı çıktılarınızı iyileştirmek için yardıma mı ihtiyacınız var?
    Ultimaker Sorun Giderme Kılavuzlarını okuyun" - -#~ msgctxt "@title:window" -#~ msgid "Engine Log" -#~ msgstr "Motor Günlüğü" - -#~ msgctxt "@label" -#~ msgid "Printer type" -#~ msgstr "Yazıcı türü" - -#~ msgctxt "@label" -#~ msgid "Use glue with this material combination" -#~ msgstr "Bu malzeme kombinasyonuyla yapışkan kullan" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "Uyumluluğu Kontrol Et" - -#~ msgctxt "@tooltip" -#~ msgid "Click to check the material compatibility on Ultimaker.com." -#~ msgstr "Malzemenin uyumluluğunu Ultimaker.com üzerinden kontrol etmek için tıklayın." - -#~ msgctxt "description" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "Son kontrol edilen versiyondan bu yana yapılan değişiklikleri gösterir." - -#~ msgctxt "name" -#~ msgid "Changelog" -#~ msgstr "Değişiklik Günlüğü" - -#~ msgctxt "description" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "Düzleştirilmiş kalitede değişiklik profili oluşturur." - -#~ msgctxt "name" -#~ msgid "Profile flatener" -#~ msgstr "Profil düzleştirici" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license." -#~ msgstr "Kullanıcıya bir kez lisansımızı kabul edip etmediğini sorun." - -#~ msgctxt "name" -#~ msgid "UserAgreement" -#~ msgstr "UserAgreement" - -#~ msgctxt "@warning:status" -#~ msgid "Please generate G-code before saving." -#~ msgstr "Lütfen kaydetmeden önce G-code oluşturun." - -#~ msgctxt "@action" -#~ msgid "Upgrade Firmware" -#~ msgstr "Aygıt Yazılımını Yükselt" - -#~ msgctxt "@label unknown material" -#~ msgid "Unknown" -#~ msgstr "Bilinmiyor" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "No custom profile to import in file {0}" -#~ msgstr "{0} dosyasında içe aktarılabilecek özel profil yok" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "This profile {0} contains incorrect data, could not import it." -#~ msgstr "Bu profil {0} yanlış veri içermekte, içeri aktarılamadı." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "{0} profilinde tanımlanan makine ({1}), mevcut makinenizle ({2}) eşleşmiyor, içe aktarılamadı." - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall " -#~ msgstr "Kaldırmayı onayla " - -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1 m / ~ %2 g / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1 m / ~ %2 g" - -#~ msgctxt "@title" -#~ msgid "Upgrade Firmware" -#~ msgstr "Aygıt Yazılımını Yükselt" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Doodle3D WiFi-Box ile yazdır" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "Doodle3D WiFi-Box ile yazdır" - -#~ msgctxt "@info:status" -#~ msgid "Connecting to Doodle3D Connect" -#~ msgstr "Doodle3D Connect’e bağlanıyor" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to Doodle3D Connect" -#~ msgstr "Doodle3D Connect’e veri gönderiliyor" - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -#~ msgstr "Doodle3D Connect’e veri gönderilemiyor. Hala etkin olan başka bir iş var mı?" - -#~ msgctxt "@info:status" -#~ msgid "Storing data on Doodle3D Connect" -#~ msgstr "Doodle3D Connect üzerinde veri depolanıyor" - -#~ msgctxt "@info:status" -#~ msgid "File sent to Doodle3D Connect" -#~ msgstr "Doodle3D Connect’e dosya gönderildi" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect..." -#~ msgstr "Connect'i aç.." - -#~ msgctxt "@info:tooltip" -#~ msgid "Open the Doodle3D Connect web interface" -#~ msgstr "Doodle3D Connect web arayüzünü aç" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Blender file" -#~ msgstr "Blender dosyası" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Could not export using \"{}\" quality!\n" -#~ "Felt back to \"{}\"." -#~ msgstr "" -#~ "\"{}\" quality!\n" -#~ "Fell back to \"{}\" kullanarak dışarı aktarım yapılamadı." - -#~ msgctxt "@label" -#~ msgid "Contact" -#~ msgstr "İletişim" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." -#~ msgstr "Bu yazıcı, Ultimaker 3 yazıcı grubunu barındırmak için ayarlı değildir." - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -#~ msgstr "Bu yazıcı, %1 Ultimaker 3 yazıcı grubunun ana makinesidir." - -#~ msgctxt "@label: arg 1 is group name" -#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "%1, bağlı Ultimaker 3 yazıcı grubunu barındırmak için ayarlı değildir" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Add/Remove printers" -#~ msgstr "Yazıcı Ekle/Kaldır" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "Yazdırma işlerini varsayılan web tarayıcınızda açar." - -#~ msgctxt "@action:button" -#~ msgid "View print jobs" -#~ msgstr "Yazdırma işlerini görüntüle" - -#~ msgctxt "@label:status" -#~ msgid "Preparing to print" -#~ msgstr "Yazdırmaya hazırlanıyor" - -#~ msgctxt "@label:status" -#~ msgid "Available" -#~ msgstr "Mevcut" - -#~ msgctxt "@label:status" -#~ msgid "Lost connection with the printer" -#~ msgstr "Yazıcı bağlantısı koptu" - -#~ msgctxt "@label:status" -#~ msgid "Unknown" -#~ msgstr "Bilinmiyor" - -#~ msgctxt "@label:status" -#~ msgid "Disabled" -#~ msgstr "Devre dışı" - -#~ msgctxt "@label:status" -#~ msgid "Reserved" -#~ msgstr "Rezerve edildi" - -#~ msgctxt "@label" -#~ msgid "Preparing to print" -#~ msgstr "Yazdırmaya hazırlanıyor" - -#~ msgctxt "@label:status" -#~ msgid "Print aborted" -#~ msgstr "Yazdırma durduruldu" - -#~ msgctxt "@label" -#~ msgid "Not accepting print jobs" -#~ msgstr "Yazdırma işleri kabul edilmiyor" - -#~ msgctxt "@label" -#~ msgid "Finishes at: " -#~ msgstr "Şu tarihlerde bitirir: " - -#~ msgctxt "@label" -#~ msgid "Clear build plate" -#~ msgstr "Yapı levhasını temizle" - -#~ msgctxt "@label" -#~ msgid "Waiting for configuration change" -#~ msgstr "Yapılandırma değişikliğini bekliyor" - -#~ msgctxt "@title" -#~ msgid "Print jobs" -#~ msgstr "Yazdırma görevleri" - -#~ msgctxt "@label:title" -#~ msgid "Printers" -#~ msgstr "Yazıcılar" - -#~ msgctxt "@action:button" -#~ msgid "View printers" -#~ msgstr "Yazıcıları görüntüle" - -#~ msgctxt "@label:" -#~ msgid "Pause" -#~ msgstr "Durdur" - -#~ msgctxt "@label:" -#~ msgid "Resume" -#~ msgstr "Devam et" - -#~ msgctxt "@label:" -#~ msgid "Abort Print" -#~ msgstr "Yazdırmayı Durdur" - -#~ msgctxt "@option:openProject" -#~ msgid "Always ask" -#~ msgstr "Her zaman sor" - -#~ msgctxt "@label" -#~ msgid "Override Profile" -#~ msgstr "Profilin Üzerine Yaz" - -#~ msgctxt "@info:tooltip" -#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -#~ msgstr "Yeni yüklenen modeller yapılı levhaya mı yerleştirilsin? Çok yapılı levha ile birlikte kullanılır (DENEYSEL)" - -#~ msgctxt "@option:check" -#~ msgid "Do not arrange objects on load" -#~ msgstr "Yüklemenin ardından nesneleri yerleştirme" - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Save Selection to File" -#~ msgstr "&Seçimi Dosyaya Kaydet" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &As..." -#~ msgstr "&Farklı Kaydet" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &Project..." -#~ msgstr "Kaydet&Projelendir..." - -#~ msgctxt "@label" -#~ msgid "Use adhesion sheet or glue with this material combination" -#~ msgstr "Bu malzeme kombinasyonuyla yapışkanlı kağıt veya yapışkan kullan" - -#~ msgctxt "description" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "G-Code’u kabul eder ve WiFi üzerinden Doodle3D WiFi-Box'a gönderir." - -#~ msgctxt "name" -#~ msgid "Doodle3D WiFi-Box" -#~ msgstr "Doodle3D WiFi-Box" - -#~ msgctxt "description" -#~ msgid "Provides an edit window for direct script editing." -#~ msgstr "Doğrudan komut dosyası düzenlemek için düzenleme penceresi sunar." - -#~ msgctxt "name" -#~ msgid "Live scripting tool" -#~ msgstr "Canlı komut dosyası aracı" - -#~ msgctxt "description" -#~ msgid "Helps to open Blender files directly in Cura." -#~ msgstr "Cura’da Blender dosyalarını doğrudan açmanıza yardımcı olur." - -#~ msgctxt "name" -#~ msgid "Blender Integration (experimental)" -#~ msgstr "Blender Entegrasyonu (deneysel)" - -#~ msgctxt "@info:title" -#~ msgid "Model Checker Warning" -#~ msgstr "Model Kontrol Edici Uyarısı" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n" -#~ "Tips that may be useful to improve the print quality:\n" -#~ "1) Use rounded corners.\n" -#~ "2) Turn the fan off (only if there are no tiny details on the model).\n" -#~ "3) Use a different material." -#~ msgstr "" -#~ "Bazı modeller, nesne boyutu ve modeller için seçilen materyal nedeniyle optimal biçimde yazdırılamayabilir: {model_names}.\n" -#~ "Yazdırma kalitesini iyileştirmek için faydalı olabilecek ipuçları:\n" -#~ "1) Yuvarlak köşeler kullanın.\n" -#~ "2) Fanı kapatın (yalnızca eğer modele küçük detaylar yoksa).\n" -#~ "3) Farklı bir materyal kullanın." - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "Dosyanızı açarken SolidWorks tarafından hata rapor edildi. Bu sorunları SolidWorks’ün içinde çözmenizi öneririz." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ "Thanks!" -#~ msgstr "" -#~ "Çiziminizde model bulunamadı. İçeriğini tekrar kontrol edip bir parçanın veya düzeneğin içinde olduğunu teyit edebilir misiniz?\n" -#~ "\n" -#~ "Teşekkürler!" - -#~ 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" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "Çiziminizin içinde birden fazla parça veya düzenek bulundu. Şu anda sadece içerisinde bir parça veya düzenek olan çizimleri desteklemekteyiz.\n" -#~ "\n" -#~ "Üzgünüz!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks part file" -#~ msgstr "SolidWorks part dosyası" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks assembly file" -#~ msgstr "SolidWorks assembly dosyası" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks drawing file" -#~ msgstr "SolidWorks çizim dosyası" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "Sayın müşterimiz,\n" -#~ "Sisteminizde SolidWorks’ün geçerli bir yüklemesini bulamadık. Ya sisteminizde SolidWorks yüklü değil ya da geçerli bir lisansa sahip değilsiniz. SolidWorks’ü tek başına sorunsuz bir biçimde çalıştırabildiğinizden emin olun ve/veya ICT’niz ile irtibata geçin.\n" -#~ "\n" -#~ "Saygılarımızla\n" -#~ " - Thomas Karl Pietrowski" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "Sayın müşterimiz,\n" -#~ "Şu anda bu eklentiyi Windows dışında farklı bir işletim sisteminde kullanmaktasınız. Bu eklenti sadece Windows işletim sisteminde, geçerli bir lisansa sahip, kurulu SolidWorks programıyla çalışır. Lütfen bu eklentiyi SolidWorks’ün kurulu olduğu Windows işletim sistemli bir bilgisayara yükleyin.\n" -#~ "\n" -#~ "Saygılarımızla\n" -#~ " - Thomas Karl Pietrowski" - -#~ msgid "Configure" -#~ msgstr "Yapılandırma" - -#~ msgid "Installation guide for SolidWorks macro" -#~ msgstr "SolidWorks makro kurulum rehberi" - -#~ msgctxt "@action:button" -#~ msgid "Disable" -#~ msgstr "Devre Dışı Bırakma" - -#~ msgctxt "@action:tooltip" -#~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences." -#~ msgstr "Cura’nın anonimleştirilmiş kullanım istatistikleri göndermesine izin vermeyin. Tercihler sekmesinden tekrar açabilirsiniz." - -#~ msgid "Install" -#~ msgstr "Yükle" - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory." -#~ msgstr "Siemens NX eklenti dosyaları kopyalanamadı. Lütfen UGII_USER_DIR ayarınızı kontrol edin. Bir dizine ayarlı değil." - -#~ msgid "Successfully installed Siemens NX Cura plugin." -#~ msgstr "Siemens NX Cura eklentisi başarıyla yüklendi." - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR." -#~ msgstr "Siemens NX eklenti dosyaları kopyalanamadı. Lütfen UGII_USER_DIR ayarınızı kontrol edin." - -#~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX." -#~ msgstr "Siemens NX eklentisi yüklenemedi. Siemens NX ortam değişkeni UGII_USER_DIR ayarlanamadı." - -#~ msgctxt "@info:status" -#~ msgid "Failed to get plugin ID from {0}" -#~ msgstr "Eklenti kimliği, {0} dosyasından alınamadı" - -#~ msgctxt "@info:tile" -#~ msgid "Warning" -#~ msgstr "Uyarı" - -#~ msgctxt "@window:title" -#~ msgid "Plugin browser" -#~ msgstr "Eklenti tarayıcısı" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Genişletilmiş Ultimaker 3" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks: Export wizard" -#~ msgstr "SolidWorks: Dışarı aktarma sihirbazı" - -#~ msgctxt "@action:label" -#~ msgid "Quality:" -#~ msgstr "Kalite" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (3D-printing)" -#~ msgstr "Yüksek Kaliteli (3 boyutlu baskı)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (3D-printing)" -#~ msgstr "Yüzeysel (3 boyutlu baskı)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (SolidWorks)" -#~ msgstr "Yüksek Kaliteli (SolidWorks)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (SolidWorks)" -#~ msgstr "Yüzeysel (SolidWorks)" - -#~ msgctxt "@text:window" -#~ msgid "Show this dialog again" -#~ msgstr "Bu diyaloğu tekrardan göster" - -#~ msgctxt "@action:button" -#~ msgid "Continue" -#~ msgstr "Devam Et" - -#~ msgctxt "@action:button" -#~ msgid "Abort" -#~ msgstr "Durdur" - -#~ msgctxt "@title:window" -#~ msgid "How to install Cura SolidWorks macro" -#~ msgstr "Cura SolidWorks makrosunun yüklenmesi" - -#~ msgctxt "@description:label" -#~ msgid "Steps:" -#~ msgstr "Adımlar:" - -#~ msgctxt "@action:button" -#~ msgid "" -#~ "Open the directory\n" -#~ "with macro and icon" -#~ msgstr "" -#~ "Makro ve simge ile\n" -#~ "dizini açın" - -#~ msgctxt "@description:label" -#~ msgid "Instructions:" -#~ msgstr "Talimatlar:" - -#~ msgctxt "@action:playpause" -#~ msgid "Play" -#~ msgstr "Oynat" - -#~ msgctxt "@action:playpause" -#~ msgid "Pause" -#~ msgstr "Durdur" - -#~ msgctxt "@action:button" -#~ msgid "Previous Step" -#~ msgstr "Önceki Adım" - -#~ msgctxt "@action:button" -#~ msgid "Done" -#~ msgstr "Bitti" - -#~ msgctxt "@action:button" -#~ msgid "Next Step" -#~ msgstr "Sonraki Adım" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks plugin: Configuration" -#~ msgstr "SolidWorks eklentisi: Yapılandırma" - -#~ msgctxt "@title:tab" -#~ msgid "Conversion settings" -#~ msgstr "Dönüştürme ayarları" - -#~ msgctxt "@label" -#~ msgid "First choice:" -#~ msgstr "İlk seçenek:" - -#~ msgctxt "@text:menu" -#~ msgid "Latest installed version (Recommended)" -#~ msgstr "Yüklü en son sürüm (Önerilen)" - -#~ msgctxt "@text:menu" -#~ msgid "Default version" -#~ msgstr "Varsayılan sürüm" - -#~ msgctxt "@label" -#~ msgid "Show wizard before opening SolidWorks files" -#~ msgstr "SolidWorks dosyalarını açmadan önce sihirbazı göster" - -#~ msgctxt "@label" -#~ msgid "Automatically rotate opened file into normed orientation" -#~ msgstr "Açılmış dosyayı normlu yöne döndür" - -#~ msgctxt "@title:tab" -#~ msgid "Installation(s)" -#~ msgstr "Kurulumlar" - -#~ msgctxt "@label" -#~ msgid "COM service found" -#~ msgstr "COM hizmeti bulundu" - -#~ msgctxt "@label" -#~ msgid "Executable found" -#~ msgstr "Çalıştırılabilir dosya bulundu" - -#~ msgctxt "@label" -#~ msgid "COM starting" -#~ msgstr "COM başlatılıyor" - -#~ msgctxt "@label" -#~ msgid "Revision number" -#~ msgstr "Revizyon numarası" - -#~ msgctxt "@label" -#~ msgid "Functions available" -#~ msgstr "Mevcut fonksiyonlar" - -#~ msgctxt "@label (%1 is object name)" -#~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?" -#~ msgstr "Yeni malzeme çapı %1 mm olarak ayarlandı ve bu mevcut makineyle uyumlu değil. Devam etmek istiyor musunuz?" - -#~ msgctxt "@action:menu" -#~ msgid "Browse plugins..." -#~ msgstr "Eklentilere göz at..." - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "P&lugins" -#~ msgstr "&Eklentiler" - -#~ msgctxt "@window:title" -#~ msgid "Install Plugin" -#~ msgstr "Eklenti Kur" - -#~ 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 "Manages network connections to Ultimaker 3 printers" -#~ msgstr "Ultimaker 3 yazıcıları için ağ bağlantılarını yönetir" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations." -#~ msgstr "Bazı dosyaları SolidWorks kullanarak açma imkanı sağlar. Dönüştürme, bu eklenti ve ek optimizasyonlar tarafından gerçekleştirilir." - -#~ msgctxt "name" -#~ msgid "SolidWorks Integration" -#~ msgstr "SolidWorks Entegrasyonu" - -#~ msgctxt "description" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "Değişikliklerden sonra Tercihleri, Makineleri ve Profilleri otomatik olarak kaydeder." - -#~ msgctxt "name" -#~ msgid "Auto Save" -#~ msgstr "Otomatik Kaydet" - -#~ msgctxt "description" -#~ msgid "Helps you to install an 'export to Cura' button in Siemens NX." -#~ msgstr "Siemens NX'de bir \"Cura'ya dışa aktar\" düğmesi kurmanıza yardımcı olur." - -#~ msgctxt "name" -#~ msgid "Siemens NX Integration" -#~ msgstr "Siemens NX Integration" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new plugins." -#~ msgstr "Yeni eklentileri bulur, yönetir ve yükler." - -#~ msgctxt "name" -#~ msgid "Plugin Browser" -#~ msgstr "Eklenti Tarayıcısı" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license" -#~ msgstr "Kullanıcıya bir kez lisansımızı kabul edip etmediğini sorun" - -#~ 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 "@item:inlistbox" -#~ msgid "GCode File" -#~ msgstr "GCode Dosyası" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer is busy or not connected." -#~ msgstr "Yazıcı meşgul veya bağlı olmadığı için yeni bir işlem başlatılamıyor." - -#~ msgctxt "@info:title" -#~ msgid "Printer Unavailable" -#~ msgstr "Yazıcı Mevcut Değil" - -#~ msgctxt "@info:status" -#~ msgid "This printer does not support USB printing because it uses UltiGCode flavor." -#~ msgstr "Yazıcı, UltiGCode türü kullandığı için USB yazdırmayı desteklemiyor." - -#~ msgctxt "@info:title" -#~ msgid "USB Printing" -#~ msgstr "USB Yazdırma" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer does not support usb printing." -#~ msgstr "Yazıcı USB ile yazdırmayı desteklemediği için yeni bir işlem başlatılamıyor." - -#~ msgctxt "@info" -#~ msgid "Unable to update firmware because there are no printers connected." -#~ msgstr "Bağlı yazıcı bulunmadığı için aygıt yazılımı güncellenemiyor." - -#~ msgctxt "@info" -#~ msgid "Could not find firmware required for the printer at %s." -#~ msgstr "%s’te yazıcı için gerekli aygıt yazılım bulunamadı." - -#~ msgctxt "@info:title" -#~ msgid "Printer Firmware" -#~ msgstr "Yazıcı Bellenimi" - -#~ msgctxt "@info:title" -#~ msgid "Connection status" -#~ msgstr "Bağlantı durumu" - -#~ msgctxt "@info:title" -#~ msgid "Connection Status" -#~ msgstr "Bağlantı Durumu" - -#~ msgctxt "@info:status" -#~ msgid "Access request was denied on the printer." -#~ msgstr "Yazıcıya erişim talebi reddedildi." - -#~ msgctxt "@info:status" -#~ msgid "Access request failed due to a timeout." -#~ msgstr "Erişim talebi zaman aşımı nedeniyle başarısız oldu." - -#~ msgctxt "@info:status" -#~ msgid "The connection with the network was lost." -#~ msgstr "Ağ bağlantısı kaybedildi." - -#~ msgctxt "@info:status" -#~ msgid "The connection with the printer was lost. Check your printer to see if it is connected." -#~ msgstr "Yazıcı bağlantısı kaybedildi. Yazıcınızın bağlı olup olmadığını kontrol edin." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s." -#~ msgstr "Yazıcı meşgul, yeni bir yazdırma başlatılamıyor. Geçerli yazıcı durumu: %s." - -#~ msgctxt "@info:title" -#~ msgid "Printer Status" -#~ msgstr "Yazıcı Durumu" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}" -#~ msgstr "Yeni yazdırma işi başlatılamıyor. {0} yuvasına PrintCore yüklenmedi." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No material loaded in slot {0}" -#~ msgstr "Yeni bir yazdırma başlatılamıyor. {0} yuvasına Malzeme yüklenmedi" - -#~ msgctxt "@label" -#~ msgid "Not enough material for spool {0}." -#~ msgstr "Biriktirme {0} için yeterli malzeme yok." - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Ekstruder {2} için farklı bir PrintCore (Cura: {0}, Yazıcı: {1}) seçildi" - -#~ msgctxt "@label" -#~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "PrintCore {0} düzgün bir şekilde ayarlanmadı. XY ayarının yazıcıda yapılması gerekiyor." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to printer. Is another job still active?" -#~ msgstr "Veriler yazıcıya gönderilemedi. Hala etkin olan başka bir iş var mı?" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Print aborted. Please check the printer" -#~ msgstr "Yazdırma durduruldu. Lütfen yazıcıyı kontrol edin" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Pausing print..." -#~ msgstr "Yazdırma duraklatılıyor..." - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Resuming print..." -#~ msgstr "Yazdırma devam ediyor..." - -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "Bu yazıcı, bağlı Ultimaker 3 yazıcı grubunu barındırmak için ayarlı değildir." - -#~ msgctxt "Count is number of printers." -#~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers." -#~ msgstr "Bu yazıcı, bağlı {count} Ultimaker 3 yazıcı grubunun ana makinesidir." - -#~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate." -#~ msgstr "{printer_name}, '{job_name}' yazdırmayı tamamladı. Lütfen çıktıyı alın ve yapı levhasının temizlenmesini onaylayın." - -#~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing." -#~ msgstr "{printer_name}, '{job_name}' yazdırmak için ayrılmıştır. Yazıcının yazdırmayı başlatması için lütfen yazıcı yapılandırmasını işe uygun olacak şekilde değiştirin." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "Yeni yazdırma işi gönderilemiyor: bu 3D yazıcı, bağlı Ultimaker 3 yazıcı grubunu barındırmak için (henüz) ayarlı değildir." - -#~ msgctxt "@info:status" -#~ msgid "Unable to send print job to group {cluster_name}." -#~ msgstr "Yazdırma işi, {cluster_name} grubuna gönderilemiyor." - -#~ msgctxt "@info:status" -#~ msgid "Sent {file_name} to group {cluster_name}." -#~ msgstr "{file_name}, {cluster_name} grubuna gönderildi." - -#~ msgctxt "@action:button" -#~ msgid "Show print jobs" -#~ msgstr "Yazdırma işlerini göster" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs interface in your browser." -#~ msgstr "Yazdırma işleri arayüzünü tarayıcınızda açar." - -#~ msgctxt "@label Printer name" -#~ msgid "Unknown" -#~ msgstr "Bilinmeyen" - -#~ msgctxt "@info:progress" -#~ msgid "Sending {file_name} to group {cluster_name}" -#~ msgstr "{file_name}, {cluster_name} grubuna gönderiliyor" - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "Dosyanızı açarken SolidWorks tarafından hata rapor edildi. Bu sorunları SolidWorks’ün içinde çözmenizi öneririz." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ " Thanks!." -#~ msgstr "" -#~ "Çiziminizde model bulunamadı. İçeriğini tekrar kontrol edip bir parçanın veya düzeneğin içinde olduğunu teyit edebilir misiniz?\n" -#~ "\n" -#~ " Teşekkürler!." - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "Çiziminizin içinde birden fazla parça veya düzenek bulundu. Şu anda sadece içerisinde bir parça veya düzenek olan çizimleri desteklemekteyiz.\n" -#~ "\n" -#~ "Üzgünüz!" - -#~ msgctxt "@item:material" -#~ msgid "No material loaded" -#~ msgstr "Hiçbir malzeme yüklenmedi" - -#~ msgctxt "@item:material" -#~ msgid "Unknown material" -#~ msgstr "Bilinmeyen malzeme" - -#~ msgctxt "@info:status Has a cancel button next to it." -#~ msgid "The selected material diameter causes the material to become incompatible with the current printer." -#~ msgstr "Seçilen malzeme çapı, malzemeyi güncel yazıcıyla uyumsuz hale getiriyor." - -#~ msgctxt "@action:button" -#~ msgid "Undo" -#~ msgstr "Geri Al" - -#~ msgctxt "@action" -#~ msgid "Undo changing the material diameter." -#~ msgstr "Malzeme çapını değiştirme işlemini geri al." - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} doesn't match with your current machine, could not import it." -#~ msgstr "Profilde {0} tanımlanan mevcut cihazınızla eşleşmemekte, içeri aktarılamadı." - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal error has occurred. 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 "" -#~ "

    Onarılamaz bir hata oluştu. Lütfen sorunu çözmek için bize Çökme Raporunu gönderin

    \n" -#~ "

    Sunucularımıza otomatik olarak bir hata raporu yüklemek için lütfen \"Rapor gönder\" düğmesini kullanın

    \n" -#~ " " - -#~ msgctxt "@label" -#~ msgid "not yet initialised
    " -#~ msgstr "henüz başlatılmadı
    " - -#~ msgctxt "@label" -#~ msgid "Gcode flavor" -#~ msgstr "Gcode türü" - -#~ msgctxt "@label" -#~ msgid "Start Gcode" -#~ msgstr "Gcode’u başlat" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very start." -#~ msgstr "Başlangıçta yürütülecek Gcode komutları." - -#~ msgctxt "@label" -#~ msgid "End Gcode" -#~ msgstr "Gcode’u sonlandır" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very end." -#~ msgstr "Bitişte yürütülecek Gcode komutları." - -#~ msgctxt "@label" -#~ msgid "Extruder Start Gcode" -#~ msgstr "Ekstrüder Gcode’u başlat" - -#~ msgctxt "@label" -#~ msgid "Extruder End Gcode" -#~ msgstr "Ekstrüder Gcode’u sonlandır" - -#~ msgctxt "@label" -#~ msgid "Starting firmware update, this may take a while." -#~ msgstr "Aygıt yazılımı başlatılıyor, bu işlem vakit alabilir." - -#~ msgctxt "@label" -#~ msgid "Unknown error code: %1" -#~ msgstr "Bilinmeyen hata kodu: %1" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Genişletilmiş Ultimaker 3" - -#~ msgctxt "@label Printer status" -#~ msgid "Unknown" -#~ msgstr "Bilinmeyen" - -#~ msgctxt "@title:window" -#~ msgid "Find & Update plugins" -#~ msgstr "Eklentileri Bul ve Güncelle" - -#~ msgctxt "@label" -#~ msgid "Here you can find a list of Third Party plugins." -#~ msgstr "Burada Üçüncü Taraf eklentilerinin listesini görebilirsiniz." - -#~ msgctxt "@action:button" -#~ msgid "Upgrade" -#~ msgstr "Yükselt" - -#~ msgctxt "@action:button" -#~ msgid "Download" -#~ msgstr "İndir" - -#~ msgctxt "@info:tooltip" -#~ msgid "Show caution message in gcode reader." -#~ msgstr "Gcode okuyucuda uyarı mesajı göster." - -#~ msgctxt "@option:check" -#~ msgid "Caution message in gcode reader" -#~ msgstr "Gcode okuyucuda uyarı mesajı" - -#~ msgctxt "@window:title" -#~ msgid "Import Profile" -#~ msgstr "Profili İçe Aktar" - -#~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name" -#~ msgid "Printer: %1, %2: %3" -#~ msgstr "Yazıcı: %1, %2: %3" - -#~ msgctxt "@action:label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "Yazıcı: %1" - -#~ msgctxt "@label" -#~ msgid "GCode generator" -#~ msgstr "GCode oluşturucu" - -#~ msgctxt "@action:menu" -#~ msgid "Configure setting visiblity..." -#~ msgstr "Görünürlük ayarını yapılandır..." - -#~ msgctxt "@title:menuitem %1 is the automatically selected material" -#~ msgid "Automatic: %1" -#~ msgstr "Otomatik: %1" - -#~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer" -#~ msgid "Automatic: %1" -#~ msgstr "Otomatik: %1" - -#~ msgctxt "@info:status" -#~ msgid "No printer connected" -#~ msgstr "Yazıcı bağlı değil" - -#~ msgctxt "@tooltip" -#~ msgid "The current temperature of this extruder." -#~ msgstr "Bu ekstruderin geçerli sıcaklığı." - -#~ msgctxt "@action:menu" -#~ msgid "Installed plugins..." -#~ msgstr "Yüklü eklentiler..." - -#~ msgctxt "@label" -#~ msgid "Support Extruder" -#~ msgstr "Destek Ekstrüderi" - -#~ msgctxt "description" -#~ msgid "Writes GCode to a file." -#~ msgstr "GCode’u dosyaya yazar." - -#~ msgctxt "name" -#~ msgid "GCode Writer" -#~ msgstr "GCode Yazıcı" - -#~ msgctxt "name" -#~ msgid "GCode Profile Reader" -#~ msgstr "GCode Profil Okuyucu" - -#~ msgctxt "@info:status" -#~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" -#~ msgstr "SolidWorks dosyanızı açarken hata meydana geldi! Lütfen dosyanızın SolidWorks’te sorunsuz açılıp açılmadığını kontrol edin!" - -#~ msgctxt "@info:status" -#~ msgid "Error while starting %s!" -#~ msgstr "%s başlatılırken hata oluştu!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Simulation view" -#~ msgstr "Simülasyon görünümü" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences." -#~ msgstr "Cura anonim dilimleme istatistiklerini toplar. Bu özelliği tercihlerden devre dışı bırakabilirsiniz." - -#~ msgctxt "@action:button" -#~ msgid "Dismiss" -#~ msgstr "Son Ver" - -#~ msgctxt "@menuitem" -#~ msgid "Global" -#~ msgstr "Genel" - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal exception has occurred. 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 "" -#~ "

    Çok ciddi bir istisna oluştu. Lütfen sorunu çözmek için bize Çökme Raporu'nu gönderin

    \n" -#~ "

    Sunucularımıza otomatik olarak bir hata raporu yüklemek için lütfen \"Rapor gönder\" düğmesini kullanın

    \n" -#~ " " - -#~ msgctxt "@label Cura version" -#~ msgid "Cura version: {version}
    " -#~ msgstr "Cura sürümü: {version}
    " - -#~ msgctxt "@label Platform" -#~ msgid "Platform: {platform}
    " -#~ msgstr "Platform: {platform}
    " - -#~ msgctxt "@label Qt version" -#~ msgid "Qt version: {qt}
    " -#~ msgstr "Qt sürümü: {qt}
    " - -#~ msgctxt "@label PyQt version" -#~ msgid "PyQt version: {pyqt}
    " -#~ msgstr "PyQt sürümü: {pyqt}
    " - -#~ msgctxt "@label OpenGL" -#~ msgid "OpenGL: {opengl}
    " -#~ msgstr "OpenGL: {opengl}
    " - -#~ msgctxt "@title:groupbox" -#~ msgid "Exception traceback" -#~ msgstr "İstisna geri izleme" - -#~ msgctxt "@label" -#~ msgid "Material diameter" -#~ msgstr "Malzeme çapı" - -#~ msgctxt "@title:window" -#~ msgid "Cura SolidWorks Plugin Configuration" -#~ msgstr "Cura SolidWorks Eklenti Yapılandırması" - -#~ msgctxt "@action:label" -#~ msgid "Default quality of the exported STL:" -#~ msgstr "Dışa aktarılan STL dosyasının varsayılan kalitesi:" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always ask" -#~ msgstr "Her zaman sor" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Fine quality" -#~ msgstr "Her zaman İnce kalite modunu kullan" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Coarse quality" -#~ msgstr "Her zaman Düşük kalite modunu kullan" - -#~ msgctxt "@title:window" -#~ msgid "Import SolidWorks File as STL..." -#~ msgstr "SolidWorks Dosyasını STL olarak içe aktar..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Quality of the Exported STL" -#~ msgstr "Dışa aktarılan STL dosyasının kalitesi" - -#~ msgctxt "@action:label" -#~ msgid "Quality" -#~ msgstr "Kalite" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse" -#~ msgstr "Düşük" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine" -#~ msgstr "İnce" - -#~ msgctxt "@" -#~ msgid "No Profile Available" -#~ msgstr "Hiçbir Profil Yok" - -#~ msgctxt "@label" -#~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders" -#~ msgstr "Bu ayar her zaman tüm ekstruderler arasında kullanılır. Bu ayarı değiştirmek tüm ekstruderler için değeri değiştirecektir." - -#~ msgctxt "@tooltip" -#~ msgid "Time specification
    " -#~ msgstr "Zaman koşulları
    " - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Reset camera position" -#~ msgstr "&Kamera konumunu sıfırla" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save project" -#~ msgstr "Projeyi kaydet" - -#~ msgctxt "@title:tab" -#~ msgid "Prepare" -#~ msgstr "Hazırla" - -#~ msgctxt "@title:tab" -#~ msgid "Monitor" -#~ msgstr "İzle" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "Uyumluluğu kontrol et" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura" -#~ msgstr "Belirli dosyaları SolidWorks üzerinden açma imkanı sağlar. Bu dosyalar dönüştürülür ve Cura’ya yüklenir" - -#~ msgctxt "@label:status" -#~ msgid "Blocked" -#~ msgstr "Tıkalı" - -#~ msgctxt "@label:status" -#~ msgid "Can't start print" -#~ msgstr "Baskı başlatılamıyor" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect.." -#~ msgstr "Connect’i aç.." - -#~ msgctxt "@info:title" -#~ msgid "Print Details" -#~ msgstr "Yazdırma Ayrıntıları" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB." -#~ msgstr "Makinenizin {machine_name} en son özellikler ile donanımlı olmasını sağlamak için bellenimi düzenli olarak güncellenmeniz önerilir. Bu, (ağa bağlı olduğunuzda) {machine_name} üzerinde veya USB ile gerçekleştirilebilir." - -#~ msgctxt "@info:title" -#~ msgid "Layer View" -#~ msgstr "Katman Görünümü" - -#~ msgctxt "@menuitem" -#~ msgid "Browse plugins" -#~ msgstr "Eklentilere göz at" - -#~ msgctxt "@info:title" -#~ msgid "Export Details" -#~ msgstr "Dışa Aktarım Ayrıntıları" - -#~ msgctxt "@label" -#~ msgid "" -#~ "

    A fatal exception has occurred that we could not recover from!

    \n" -#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " -#~ msgstr "" -#~ "

    Kurtulunamayan ciddi bir olağanüstü durum oluştu!

    \n" -#~ "

    Yazılım hatası raporunu http://github.com/Ultimaker/Cura/issues adresine gönderirken aşağıdaki bilgileri kullanınız

    \n" -#~ " " - -#~ msgctxt "@action:button" -#~ msgid "Open Web Page" -#~ msgstr "Web Sayfasını Aç" - -#~ msgctxt "@action:button" -#~ msgid "Ok" -#~ msgstr "Tamam" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "Bu yazıcı, bağlı Ultimaker 3 yazıcı grubunu barındırmak için ayarlı değildir" - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" -#~ msgstr "Bu yazıcı, %1 bağlı Ultimaker 3 yazıcı grubunun ana makinesidir" - -#~ msgctxt "@label" -#~ msgid "Completed on: " -#~ msgstr "Tamamlandığı tarih: " - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "Yazdırma işlerini varsayılan web tarayıcınızda açar." - -#~ msgctxt "@label" -#~ msgid "PRINTER GROUP" -#~ msgstr "YAZICI GRUBU" - -#~ msgctxt "@action:warning" -#~ msgid "Loading a project will clear all models on the buildplate" -#~ msgstr "Bir projenin yüklenmesi, yapı levhasındaki tüm modelleri silecektir" - -#~ msgctxt "@label" -#~ msgid "" -#~ " plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ " eklenti lisans içerir.\n" -#~ "Bu eklentiyi kurmak için bu lisans kabul etmeniz gerekir.\n" -#~ "Aşağıdaki koşulları kabul ediyor musunuz?" - -#~ msgctxt "@label" -#~ msgid "00h 00min" -#~ msgstr "00sa 00dk" - -#~ msgctxt "@tooltip" -#~ msgid "Time information" -#~ msgstr "Süre bilgisi" - -#~ msgctxt "@description" -#~ msgid "Print time" -#~ msgstr "Yazdırma süresi" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - -#~ msgctxt "@title:window" -#~ msgid "Cura" -#~ msgstr "Cura" - -#~ msgctxt "@label" -#~ msgid "Check material compatibility" -#~ msgstr "Malzeme uyumunu denetle" - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection (Cluster)" -#~ msgstr "UM3 Ağ Bağlantısı (Küme)" - -#~ msgctxt "description" -#~ msgid "Provides the Layer view." -#~ msgstr "Katman görünümü sağlar." - -#~ msgctxt "name" -#~ msgid "Layer View" -#~ msgstr "Katman Görünümü" - -#~ msgctxt "@item:inlistbox" -#~ msgid "X-Ray" -#~ msgstr "X-Ray" - -#~ msgctxt "@label" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "G-Code’u kabul eder ve WiFi üzerinden Doodle3D WiFi-Box'a gönderir." - -#~ msgctxt "@item:inmenu" -#~ msgid "Doodle3D printing" -#~ msgstr "Doodle3D yazdırma" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D" -#~ msgstr "Doodle3D ile yazdır" - -#~ msgctxt "@info:tooltip" -#~ msgid "Print with " -#~ msgstr "Şununla yazdır:" - -#~ msgctxt "@title:menu" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Enable Scan devices..." -#~ msgstr "Tarama aygıtlarını etkinleştir..." - -#~ msgctxt "@info:progress" -#~ msgid "Saving to Removable Drive {0}" -#~ msgstr "Çıkarılabilir Sürücüye Kaydediliyor {0}" - -#~ msgctxt "@info:status" -#~ msgid "Could not save to {0}: {1}" -#~ msgstr "{0}na kaydedilemedi: {1}" - -#~ msgctxt "@info:status" -#~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!" -#~ msgstr "SolidWorks dosyanızı tekrar manuel olarak açmanız gerektiğini unutmayın! Modeli yeniden yüklemek işe yaramayacaktır!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Layers" -#~ msgstr "Katmanlar" - -#~ msgid "Browse plugins" -#~ msgstr "Eklentilere göz at" - -#~ msgctxt "@item:inmenu" -#~ msgid "Solid" -#~ msgstr "Katı" - -#~ msgctxt "@label" -#~ msgid "The file {0} already exists. Are you sure you want to overwrite it?" -#~ msgstr "Dosya {0} zaten mevcut. Üstüne yazmak istediğinizden emin misiniz?" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export profile to {0}: {1}" -#~ msgstr "Profilin {0}na aktarımı başarısız oldu: {1}" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export profile to {0}: Writer plugin reported failure." -#~ msgstr "Profilin {0}na aktarımı başarısız oldu: Yazıcı uzantı hata bildirdi." - -#~ msgctxt "@info:status" -#~ msgid "Exported profile to {0}" -#~ msgstr "Profil {0}na aktarıldı" - -#~ msgctxt "@info:status" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "{0}dan profil içe aktarımı başarısız oldu: {1}" - -#~ msgctxt "@title:window" -#~ msgid "Doodle3D Settings" -#~ msgstr "Doodle3D Ayarları" - -#~ msgctxt "@title:window" -#~ msgid "Print to: %1" -#~ msgstr "Şuraya yazdır: %1" - -#~ msgctxt "@label" -#~ msgid "Extruder Temperature: %1/%2°C" -#~ msgstr "Ekstruder Sıcaklığı: %1/%2°C" - -#~ msgctxt "@label" -#~ msgid "Bed Temperature: %1/%2°C" -#~ msgstr "Yatak Sıcaklığı: %1/%2°C" - -#~ msgctxt "@label" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@label" -#~ msgid "View Mode: Layers" -#~ msgstr "Görüntüleme Modu: Katmanlar" - -#~ msgctxt "@info:status" -#~ msgid "Could not import material %1: %2" -#~ msgstr "Malzeme aktarılamadı %1: %2" - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported material %1" -#~ msgstr "Malzeme başarıyla aktarıldı %1" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export material to %1: %2" -#~ msgstr "Malzemenin dışa aktarımı başarısız oldu %1: %2" - -#~ msgctxt "@info:status" -#~ msgid "Successfully exported material to %1" -#~ msgstr "Malzeme başarıyla dışa aktarıldı %1" - -#~ msgctxt "@label" -#~ msgid "%1 m / ~ %2 g / ~ %4 %3" -#~ msgstr "%1 m / ~ %2 g / ~ %4 %3" - -#~ msgctxt "@label" -#~ msgid "%1 m / ~ %2 g" -#~ msgstr "%1 m / ~ %2 g" - -#~ msgctxt "@label" -#~ msgid "Hotend" -#~ msgstr "Sıcak uç" - -#~ msgctxt "@action:button" -#~ msgid "View Mode" -#~ msgstr "Görüntüleme Modu" - -#~ msgctxt "@title:tab" -#~ msgid "Print" -#~ msgstr "Yazdır" - -#~ msgctxt "@label" -#~ msgid "0%" -#~ msgstr "%0" - -#~ msgctxt "@label" -#~ msgid "Empty infill will leave your model hollow with low strength." -#~ msgstr "Boş dolgu, modelinizin içinin boş ve düşük dayanımlı olmasına neden olacaktır." - -#~ msgctxt "@label" -#~ msgid "20%" -#~ msgstr "%20" - -#~ msgctxt "@label" -#~ msgid "Light (20%) infill will give your model an average strength." -#~ msgstr "Hafif (%20) dolgu, modelinize ortalama bir dayanıklılık verecektir." - -#~ msgctxt "@label" -#~ msgid "50%" -#~ msgstr "%50" - -#~ msgctxt "@label" -#~ msgid "Dense (50%) infill will give your model an above average strength." -#~ msgstr "Yoğun (%50) dolgu, modelinize ortalamanın üstünde bir dayanıklılık verecektir." - -#~ msgctxt "@label" -#~ msgid "100%" -#~ msgstr "%100" - -#~ msgctxt "@label" -#~ msgid "Solid (100%) infill will make your model completely solid." -#~ msgstr "Katı (%100) dolgu, modelinizi tamamen katı bir hale getirecektir." - -#~ msgctxt "@label" -#~ msgid "Gradual" -#~ msgstr "Kademeli" - -#~ msgctxt "description" -#~ msgid "Provides support for writing X3G files" -#~ msgstr "X3G dosyalarının yazılması için destek sağlar" - -#~ msgctxt "name" -#~ msgid "X3G Writer" -#~ msgstr "X3G Yazıcı" - -#~ msgctxt "@label" -#~ msgid "Machine Settings action" -#~ msgstr "Makine Ayarları eylemi" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)" -#~ msgstr "Makine ayarlarını değiştirilmesini sağlar (yapı hacmi, nozül boyutu vb.)" - -#~ msgctxt "@label" -#~ msgid "X-Ray View" -#~ msgstr "Röntgen Görüntüsü" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the X-Ray view." -#~ msgstr "Röntgen Görüntüsü sağlar." - -#~ msgctxt "@label" -#~ msgid "X3D Reader" -#~ msgstr "X3D Okuyucu" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for reading X3D files." -#~ msgstr "X3D dosyalarının okunması için destek sağlar." - -#~ msgctxt "@label" -#~ msgid "GCode Writer" -#~ msgstr "GCode Yazıcı" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Writes GCode to a file." -#~ msgstr "Dosyaya GCode yazar." - -#~ msgctxt "@action:button Preceded by 'Ready to'." -#~ msgid "Print with Doodle3D" -#~ msgstr "Doodle3D ile yazdır" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "Son kontrol edilen versiyondan bu yana değişiklik gösteriyor." - -#~ msgctxt "@label" -#~ msgid "Profile flatener" -#~ msgstr "Profil düzleştirici" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "Düzleştirilmiş kalitede değiştirilmiş bir profil oluşturun." - -#~ msgctxt "@label" -#~ msgid "USB printing" -#~ msgstr "USB yazdırma" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -#~ msgstr "GCode’u kabul eder ve yazıcıya gönderir. Eklenti de aygıt yazılımını güncelleyebilir." - -#~ msgctxt "X3G Writer Plugin Description" -#~ msgid "Writes X3G to a file" -#~ msgstr "X3G'yi dosyaya yazar" - -#~ msgctxt "@label" -#~ msgid "Removable Drive Output Device Plugin" -#~ msgstr "Çıkarılabilir Sürücü Çıkış Cihazı Eklentisi" - -#~ msgctxt "@info:whatsthis" -#~ 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ğini sağlar." - -#~ msgctxt "@info:whatsthis" -#~ msgid "Manages network connections to Ultimaker 3 printers" -#~ msgstr "Ultimaker 3 yazıcıları için ağ bağlantılarını yönetir" - -#~ msgctxt "@label" -#~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "Ekstrüder {2} için farklı bir PrintCore (Cura: {0}, Yazıcı: {1}) seçildi" - -#~ msgctxt "@label" -#~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "PrintCore {0} düzgün bir şekilde ayarlanmadı. XY ayarının yazıcıda yapılması gerekiyor." - -#~ msgctxt "@label" -#~ msgid "The print cores and/or materials on your printer differ from those within your current project. For the best result, always slice for the print cores and materials that are inserted in your printer." -#~ msgstr "PrintCore ve/veya yazıcınızdaki malzemeler mevcut projenizden farklıdır. En iyi sonucu almak istiyorsanız, her zaman PrintCore ve yazıcıya eklenen malzemeler için dilimleme yapın." - -#~ msgctxt "@label" -#~ msgid "Post Processing" -#~ msgstr "Son İşleme" - -#~ msgctxt "Description of plugin" -#~ 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 "Auto Save" -#~ msgstr "Otomatik Kaydet" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "Değişikliklerden sonra Tercihleri, Makineleri ve Profilleri otomatik olarak kaydeder." - -#~ msgctxt "@label" -#~ msgid "Slice info" -#~ msgstr "Dilim bilgisi" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Submits anonymous slice info. Can be disabled through preferences." -#~ msgstr "Anonim dilim bilgisi gönderir. Tercihler üzerinden devre dışı bırakılabilir." - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences" -#~ msgstr "Cura anonim dilimleme istatistiklerini toplar. Bunu tercihler üzerinden devre dışı bırakabilirsiniz." - -#~ msgctxt "@label" -#~ msgid "Material Profiles" -#~ msgstr "Malzeme Profilleri" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides capabilities to read and write XML-based material profiles." -#~ msgstr "XML tabanlı malzeme profillerini okuma ve yazma olanağı sağlar." - -#~ msgctxt "@label" -#~ msgid "Legacy Cura Profile Reader" -#~ msgstr "Eski Cura Profil Okuyucu" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "GCode Profile Reader" -#~ msgstr "GCode Profil Okuyucu" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "Layer View" -#~ msgstr "Katman Görünümü" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the Layer view." -#~ msgstr "Katman görünümü sağlar." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.5 to 2.6" -#~ msgstr "2.5’ten 2.6’ya Sürüm Yükseltme" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -#~ msgstr "Cura 2.5’ten Cura 2.6’ya yükseltme yapılandırmaları." - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.1 to 2.2" -#~ msgstr "2.1’den 2.2’ye Sürüm Yükseltme" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -#~ msgstr "Cura 2.1’den Cura 2.2.’ye yükseltme yapılandırmaları" - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.2 to 2.4" -#~ msgstr "2.2’den 2.4’e Sürüm Yükseltme" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -#~ msgstr "Cura 2.2’den Cura 2.4’e yükseltme yapılandırmaları." - -#~ msgctxt "@label" -#~ msgid "Image Reader" -#~ msgstr "Resim Okuyucu" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Enables ability to generate printable geometry from 2D image files." -#~ msgstr "2B resim dosyasından yazdırılabilir geometri oluşturulmasını sağlar." - -#~ msgctxt "@label" -#~ msgid "CuraEngine Backend" -#~ msgstr "CuraEngine Arka Uç" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the link to the CuraEngine slicing backend." -#~ msgstr "CuraEngine arka dilimleme ucuna bağlantı sağlar." - -#~ msgctxt "@label" -#~ msgid "Per Model Settings Tool" -#~ msgstr "Model Başına Ayarlar Aracı" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the Per Model Settings." -#~ msgstr "Model Başına Ayarlar sağlar." - -#~ msgctxt "@label" -#~ msgid "3MF Reader" -#~ msgstr "3MF Okuyucu" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for reading 3MF files." -#~ msgstr "3MF dosyalarının okunması için destek sağlar." - -#~ msgctxt "@label" -#~ msgid "Solid View" -#~ msgstr "Katı Görünüm" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides a normal solid mesh view." -#~ msgstr "Normal katı bir ağ görünümü sağlar" - -#~ msgctxt "@label" -#~ msgid "G-code Reader" -#~ msgstr "G-code Okuyucu" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "Cura Profile Writer" -#~ msgstr "Cura Profil Yazıcı" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for exporting Cura profiles." -#~ msgstr "Cura profillerinin dışa aktarılması için destek sağlar." - -#~ msgctxt "@label" -#~ msgid "3MF Writer" -#~ msgstr "3MF Yazıcı" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for writing 3MF files." -#~ msgstr "3MF dosyalarının yazılması için destek sağlar." - -#~ msgctxt "@label" -#~ msgid "Ultimaker machine actions" -#~ msgstr "Ultimaker makine eylemleri" - -#~ msgctxt "@info:whatsthis" -#~ 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 "@label" -#~ msgid "Cura Profile Reader" -#~ msgstr "Vura Profil Okuyucu" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing Cura profiles." -#~ msgstr "Cura profillerinin içe aktarılması için destek sağlar." - -#~ msgctxt "@info" -#~ msgid "%(width).1f x %(depth).1f x %(height).1f mm" -#~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -#~ msgctxt "@label" -#~ msgid "Build Plate Shape" -#~ msgstr "Yapı Levhası Şekli" - -#~ msgctxt "@option:check" -#~ msgid "Machine Center is Zero" -#~ msgstr "Makine Merkezi Sıfırda" - -#~ msgctxt "@option:check" -#~ msgid "Heated Bed" -#~ msgstr "Isıtılmış Yatak" - -#~ msgctxt "@label" -#~ msgid "GCode Flavor" -#~ msgstr "GCode Türü" - -#~ msgctxt "@label" -#~ msgid "Material Diameter" -#~ msgstr "Malzeme Çapı" - -#~ 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 "@item:inlistbox" -#~ msgid "Ultimaker" -#~ msgstr "Ultimaker" - -#~ msgctxt "@label" -#~ msgid "Support library for scientific computing " -#~ msgstr "Bilimsel bilgi işlem için destek kitaplığı " - -#~ msgctxt "@tooltip" -#~ msgid "Print Setup

    Edit or review the settings for the active print job." -#~ msgstr "Yazıcı Ayarları

    Etkin yazıcı ayarlarını düzenleyin veya gözden geçirin." - -#~ msgctxt "@tooltip" -#~ msgid "Print Monitor

    Monitor the state of the connected printer and the print job in progress." -#~ msgstr "Yazıcı İzleyici

    Bağlı yazıcının ve devam eden yazdırmanın durumunu izleyin." - -#~ msgctxt "@title:menuitem %1 is the value from the printer" -#~ msgid "Automatic: %1" -#~ msgstr "Otomatik: %1" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3d model" -#~ msgstr "Lütfen bir 3B model yükleyin" - -#~ msgctxt "@label" -#~ msgid "Print Selected Model with %1" -#~ msgid_plural "Print Selected Models With %1" -#~ msgstr[0] "Seçili Modeli %1 ile Yazdır" -#~ msgstr[1] "Seçili Modelleri %1 ile Yazdır" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}" -#~ msgstr "Yeni bir yazdırma başlatılamıyor. {0} yuvasına PrinterCore yüklenmedi" - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.4 to 2.5" -#~ msgstr "2.4’ten 2.5’e Sürüm Yükseltme" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5." -#~ msgstr "Cura 2.4’ten Cura 2.5’e yükseltme yapılandırmaları." - -#~ msgctxt "@info:status" -#~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead." -#~ msgstr "Bu birleşim için uygun bir profil bulunamadı. Bunun yerine varsayılan ayarlar kullanılacak." - -#~ msgctxt "@title:window" -#~ msgid "Oops!" -#~ msgstr "Hay aksi!" - -#~ msgctxt "@label" -#~ msgid "" -#~ "

    A fatal exception has occurred that we could not recover from!

    \n" -#~ "

    We hope this picture of a kitten helps you recover from the shock.

    \n" -#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " -#~ msgstr "" -#~ "

    Düzeltemediğimiz önemli bir özel durum oluştu!

    \n" -#~ "

    Umarız bu yavru kedi resmi şoku atlatmanıza yardımcı olur.

    \n" -#~ "

    Bir hata raporu göndermek için aşağıdaki bilgileri kullanın: http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " - -#~ msgctxt "@label" -#~ msgid "Please enter the correct settings for your printer below:" -#~ msgstr "Lütfen aşağıdaki yazıcınız için doğru ayarları girin:" - -#~ msgctxt "@label" -#~ msgid "Extruder %1" -#~ msgstr "Ekstruder %1" - -#~ msgctxt "@label Followed by extruder selection drop-down." -#~ msgid "Print model with" -#~ msgstr "........... İle modeli yazdır" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for language changes to have effect." -#~ msgstr "Dil değişikliklerinin tamamlanması için uygulamayı yeniden başlatmanız gerekecektir." - -#~ msgctxt "@info:tooltip" -#~ msgid "Moves the camera so the model is in the center of the view when an model is selected" -#~ msgstr "Kamerayı hareket ettirir, bu şekilde model seçimi yapıldığında model görüntünün ortasında bulunur" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete &Selection" -#~ msgstr "Seçimi Sil" - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Open File..." -#~ msgstr "&Dosyayı Aç..." - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Open Project..." -#~ msgstr "&Proje Aç..." - -#~ msgctxt "@title:window" -#~ msgid "Multiply Model" -#~ msgstr "Modeli Çoğalt" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &All" -#~ msgstr "Tümünü Kaydet" - -#~ msgctxt "@title:window" -#~ msgid "Open file" -#~ msgstr "Dosya aç" - -#~ msgctxt "@title:window" -#~ msgid "Open workspace" -#~ msgstr "Çalışma alanını aç" - -#~ msgctxt "@label" -#~ msgid "Hollow" -#~ msgstr "Boş" - -#~ msgctxt "@label" -#~ msgid "No (0%) infill will leave your model hollow at the cost of low strength" -#~ msgstr "Düşük dayanıklılık pahasına hiçbir (%0) dolgu modelinizde boşluk bırakmayacak" - -#~ msgctxt "@label" -#~ msgid "Light" -#~ msgstr "Hafif" - -#~ msgctxt "@label" -#~ msgid "Light (20%) infill will give your model an average strength" -#~ msgstr "Hafif (%20) dolgu modelinize ortalama bir dayanıklılık getirecek" - -#~ msgctxt "@label" -#~ msgid "Dense" -#~ msgstr "Yoğun" - -#~ msgctxt "@label" -#~ msgid "Dense (50%) infill will give your model an above average strength" -#~ msgstr "Yoğun (%50) dolgu modelinize ortalamanın üstünde bir dayanıklılık kazandıracak" - -#~ msgctxt "@label" -#~ msgid "Solid" -#~ msgstr "Katı" - -#~ msgctxt "@label" -#~ msgid "Solid (100%) infill will make your model completely solid" -#~ msgstr "Katı (%100) dolgu modelinizi tamamen katı bir hale getirecek" - -#~ msgctxt "@label" -#~ msgid "Enable Support" -#~ msgstr "Desteği etkinleştir" - -#~ msgctxt "@label" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Destek yapılarını etkinleştir. Bu yapılar sert çıkıntıları olan model parçalarını destekler." - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints? Read the Ultimaker Troubleshooting Guides" -#~ msgstr "Yazdırmanızı geliştirmek için yardıma mı ihtiyacınız var? Ultimaker Sorun Giderme Kılavuzlarını okuyun" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}. Please approve the access request on the printer." -#~ msgstr "Ağ üzerinden şuraya bağlandı: {0}. Lütfen yazıcıya erişim isteğini onaylayın." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}." -#~ msgstr "Ağ üzerinden şuraya bağlandı: {0}." - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network to {0}. No access to control the printer." -#~ msgstr "Ağ üzerinden şuraya bağlandı: {0}. Yazıcıyı kontrol etmek için erişim yok." - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job because the printer is busy. Please check the printer." -#~ msgstr "Yazıcı meşgul olduğu için yeni bir yazdırma başlatılamıyor. Lütfen yazıcıyı kontrol edin." - -#~ msgctxt "@label" -#~ msgid "You made changes to the following setting(s)/override(s):" -#~ msgstr "Şu ayarlarda/geçersiz kılmalarda değişiklik yaptınız:" - -#~ msgctxt "@window:title" -#~ msgid "Switched profiles" -#~ msgstr "Profiller değiştirildi" - -#~ msgctxt "@label" -#~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?" -#~ msgstr "%d değiştirdiğiniz ayarlarınızı/geçersiz kılmalarınızı bu profile aktarmak istiyor musunuz?" - -#~ msgctxt "@label" -#~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost." -#~ msgstr "Ayarlarınızı aktarırsanız bunlar profilinizdeki ayarları geçersiz kılacaktır. Bu ayarları aktarmazsanız ayarlar kaybedilecektir." - -#~ msgctxt "@label" -#~ msgid "Cost per Meter (Approx.)" -#~ msgstr "Metre başına masraf (Yaklaşık olarak)" - -#~ msgctxt "@label" -#~ msgid "%1/m" -#~ msgstr "%1/m" - -#~ msgctxt "@info:tooltip" -#~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information." -#~ msgstr "Katman görünümündeki 5 üst katmanı veya sadece en üstteki katmanı gösterin. 5 katmanı göstermek daha uzun zaman alır ama daha fazla bilgi sağlayabilir." - -#~ msgctxt "@action:button" -#~ msgid "Display five top layers in layer view" -#~ msgstr "Katman görünümündeki beş üst katmanı gösterin" - -#~ msgctxt "@info:tooltip" -#~ msgid "Should only the top layers be displayed in layerview?" -#~ msgstr "Sadece katman görünümündeki üst katmanlar mı gösterilmeli?" - -#~ msgctxt "@option:check" -#~ msgid "Only display top layer(s) in layer view" -#~ msgstr "Sadece katman görünümündeki üst katman(lar)ı gösterin" - -#~ msgctxt "@label" -#~ msgid "Opening files" -#~ msgstr "Dosyaları açma" - -#~ msgctxt "@label" -#~ msgid "Printer Monitor" -#~ msgstr "Yazıcı İzleyici" - -#~ msgctxt "@label" -#~ msgid "Temperatures" -#~ msgstr "Sıcaklıklar" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Preparing to slice..." -#~ msgstr "Dilimlemeye hazırlanıyor..." - -#~ msgctxt "@window:title" -#~ msgid "Changes on the Printer" -#~ msgstr "Yazıcıdaki Değişiklikler" - -#~ msgctxt "@action:inmenu" -#~ msgid "&Duplicate Model" -#~ msgstr "&Modelleri Çoğalt" - -#~ msgctxt "@label" -#~ msgid "Helper Parts:" -#~ msgstr "Yardımcı Parçalar:" - -#~ msgctxt "@label" -#~ msgid "Enable printing support structures. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "Yazdırma destek yapılarını etkinleştirin. Bu, modelin havadayken düşmesini veya yazdırılmasını önlemek için modelin altındaki destekleyici yapıları güçlendirir." - -#~ msgctxt "@label" -#~ msgid "Don't print support" -#~ msgstr "Desteği yazdırmayın" - -#~ msgctxt "@label" -#~ msgid "Print support using %1" -#~ msgstr "%1 yazdırma desteği kullanılıyor" - -#~ msgctxt "@label:listbox" -#~ msgid "Printer:" -#~ msgstr "Yazıcı:" - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profiles {0}" -#~ msgstr "Profiller başarıyla içe aktarıldı {0}" - -#~ msgctxt "@label" -#~ msgid "Scripts" -#~ msgstr "Komut Dosyaları" - -#~ msgctxt "@label" -#~ msgid "Active Scripts" -#~ msgstr "Etkin Komut Dosyaları" - -#~ msgctxt "@label" -#~ msgid "Done" -#~ msgstr "Bitti" - -#~ msgctxt "@item:inlistbox" -#~ msgid "English" -#~ msgstr "İngilizce" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Finnish" -#~ msgstr "Fince" - -#~ msgctxt "@item:inlistbox" -#~ msgid "French" -#~ msgstr "Fransızca" - -#~ msgctxt "@item:inlistbox" -#~ msgid "German" -#~ msgstr "Almanca" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Italian" -#~ msgstr "İtalyanca" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Dutch" -#~ msgstr "Hollandaca" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Spanish" -#~ msgstr "İspanyolca" - -#~ msgctxt "@label" -#~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?" -#~ msgstr "Yazıcıya uyumlu hale getirmek için PrintCore ve Cura’daki malzemeleri değiştirmek istiyor musunuz?" - -#~ msgctxt "@label:" -#~ msgid "Print Again" -#~ msgstr "Yeniden Yazdır" +#~ msgid "Simulation View" +#~ msgstr "Simülasyon Görünümü" diff --git a/resources/i18n/tr_TR/fdmextruder.def.json.po b/resources/i18n/tr_TR/fdmextruder.def.json.po index 96099fd69a..c04be4464f 100644 --- a/resources/i18n/tr_TR/fdmextruder.def.json.po +++ b/resources/i18n/tr_TR/fdmextruder.def.json.po @@ -1,12 +1,9 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-08 09:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -15,6 +12,96 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: fdmextruder.def.json +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Yapıştırma" + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Yapı Levhası Yapıştırması" + +#: fdmextruder.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Çap" + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "Ekstrüder" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code label" +msgid "Extruder End G-Code" +msgstr "Ekstruder G-Code'u Sonlandırma" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_abs label" +msgid "Extruder End Position Absolute" +msgstr "Ekstruderin Mutlak Bitiş Konumu" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x label" +msgid "Extruder End Position X" +msgstr "Ekstruderin X Bitiş Konumu" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y label" +msgid "Extruder End Position Y" +msgstr "Ekstruderin Y Bitiş Konumu" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Extruder İlk X konumu" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Extruder İlk Y konumu" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Ekstruder İlk Z konumu" + +#: fdmextruder.def.json +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Ekstrüder Yazıcı Soğutma Fanı" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_code label" +msgid "Extruder Start G-Code" +msgstr "Ekstruder G-Code'u Başlatma" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_abs label" +msgid "Extruder Start Position Absolute" +msgstr "Ekstruderin Mutlak Başlangıç Konumu" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "Ekstruder X Başlangıç Konumu" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "Ekstruder Y Başlangıç Konumu" + #: fdmextruder.def.json msgctxt "machine_settings label" msgid "Machine" @@ -26,69 +113,9 @@ msgid "Machine specific settings" msgstr "Makine özel ayarları" #: fdmextruder.def.json -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "Ekstrüder" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Nozül Kimliği" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Nozül Çapı" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x label" -msgid "Nozzle X Offset" -msgstr "Nozül NX Ofseti" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "Nozül ofsetinin x koordinatı." - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "Nozül Y Ofseti" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "Nozül ofsetinin y koordinatı." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code label" -msgid "Extruder Start G-Code" -msgstr "Ekstruder G-Code'u Başlatma" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_abs label" -msgid "Extruder Start Position Absolute" -msgstr "Ekstruderin Mutlak Başlangıç 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." #: fdmextruder.def.json msgctxt "machine_extruder_start_pos_abs description" @@ -96,114 +123,9 @@ msgid "Make the extruder starting position absolute rather than relative to the msgstr "Ekstruder başlama konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın." #: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "Ekstruder X Başlangıç Konumu" - -#: fdmextruder.def.json -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ı." - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "Ekstruder Y Başlangıç Konumu" - -#: fdmextruder.def.json -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ı." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code label" -msgid "Extruder End G-Code" -msgstr "Ekstruder G-Code'u Sonlandırma" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_abs label" -msgid "Extruder End Position Absolute" -msgstr "Ekstruderin Mutlak Bitiş Konumu" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x label" -msgid "Extruder End Position X" -msgstr "Ekstruderin X Bitiş Konumu" - -#: fdmextruder.def.json -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ı." - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y label" -msgid "Extruder End Position Y" -msgstr "Ekstruderin Y Bitiş Konumu" - -#: fdmextruder.def.json -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ı." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Ekstruder İlk Z konumu" - -#: fdmextruder.def.json -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ı." - -#: fdmextruder.def.json -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Ekstrüder Yazıcı Soğutma Fanı" - -#: fdmextruder.def.json -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." - -#: fdmextruder.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Yapı Levhası Yapıştırması" - -#: fdmextruder.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Yapıştırma" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Extruder İlk X konumu" - -#: fdmextruder.def.json -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ı." - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Extruder İlk Y konumu" - -#: fdmextruder.def.json -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 "material description" +msgid "Material" +msgstr "Malzeme" #: fdmextruder.def.json msgctxt "material label" @@ -211,24 +133,91 @@ msgid "Material" msgstr "Malzeme" #: fdmextruder.def.json -msgctxt "material description" -msgid "Material" -msgstr "Malzeme" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Nozül Çapı" #: fdmextruder.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Çap" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Nozül Kimliği" #: fdmextruder.def.json -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 "machine_nozzle_offset_x label" +msgid "Nozzle X Offset" +msgstr "Nozül NX Ofseti" -#~ msgctxt "machine_extruder_start_code description" -#~ msgid "Start g-code to execute whenever turning the extruder on." -#~ msgstr "Ekstruderi her açtığınızda g-code'u başlatın." +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "Nozül Y Ofseti" -#~ msgctxt "machine_extruder_end_code description" -#~ msgid "End g-code to execute whenever turning the extruder off." -#~ msgstr "Ekstruderi her kapattığınızda g-code'u sonlandırın." +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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ı." + +#: fdmextruder.def.json +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ı." + +#: fdmextruder.def.json +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ı." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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." + +#: fdmextruder.def.json +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ı." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "Nozül ofsetinin x koordinatı." + +#: fdmextruder.def.json +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ı." + +#: fdmextruder.def.json +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ı." + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "Nozül ofsetinin y koordinatı." + +#: fdmextruder.def.json +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ı." diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index 090a68b443..b0562d8809 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -1,12 +1,9 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-28 11:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -16,1497 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: fdmprinter.def.json -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Makine" +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." #: fdmprinter.def.json -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Makine özel ayarları" +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." #: fdmprinter.def.json -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Makine Türü" - -#: fdmprinter.def.json -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "3B yazıcı modelinin adı." - -#: fdmprinter.def.json -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Makine Varyantlarını Göster" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "G-code’u Başlat" - -#: fdmprinter.def.json -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ı\n" -"." - -#: fdmprinter.def.json -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "G-code’u Sonlandır" - -#: fdmprinter.def.json -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ı (\n" -" ile ayrılır)." - -#: fdmprinter.def.json -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID malzeme" - -#: fdmprinter.def.json -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "Malzemedeki GUID Otomatik olarak ayarlanır." - -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Çap" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Yapı Levhasının Isınmasını Bekle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Nozülün Isınmasını Bekle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Malzeme Sıcaklıklarını Ekle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Yapı Levhası Sıcaklığını Ekle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Makine Genişliği" - -#: fdmprinter.def.json -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "Yazdırılabilir alan genişliği (X yönü)." - -#: fdmprinter.def.json -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Makine Derinliği" - -#: fdmprinter.def.json -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "Yazdırılabilir alan derinliği (Y yönü)." - -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Makine Yüksekliği" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Yazdırılabilir alan yüksekliği (Z yönü)." - -#: fdmprinter.def.json -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Yapı Levhası Şekli" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Dikdörtgen" - -#: fdmprinter.def.json -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Eliptik" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Yapı Levhası Malzemesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Cam" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Alüminyum" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Isıtılmış Yapı Levhası İçerir" - -#: fdmprinter.def.json -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ığı." - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Yapı Hacmi Sıcaklığı Dengesi Mevcut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "Her Zaman Aktif Aracı Yaz" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Merkez Nokta" - -#: fdmprinter.def.json -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ığı." - -#: fdmprinter.def.json -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Ekstrüder Sayısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Etkinleştirilmiş Ekstruder Sayısı" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Dış Nozül Çapı" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Nozül ucunun dış çapı." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Nozül Uzunluğu" - -#: fdmprinter.def.json -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ı." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Nozül Açısı" - -#: fdmprinter.def.json -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çı." - -#: fdmprinter.def.json -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Isı Bölgesi Uzunluğu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Nozül Sıcaklığı Kontrolünü Etkinleştir" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Isınma Hızı" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Soğuma hızı" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Minimum Sürede Bekleme Sıcaklığı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "G-code türü" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Oluşturulacak g-code türü." - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volümetrik)" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -#: fdmprinter.def.json -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Üretici Yazılımı Geri Çekme" - -#: fdmprinter.def.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 "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ğı." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Ekstrüderler Isıtıcıyı Paylaşır" - -#: fdmprinter.def.json -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ğı." - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Ekstrüder Nozül Paylaşımı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Paylaşılan Nozül İlk Geri Çekme" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "İzin Verilmeyen Alanlar" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Nozül İzni Olmayan Alanlar" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Makinenin Başlığı ve Fan Poligonu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Portal Yüksekliği" - -#: fdmprinter.def.json -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ı." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Nozül Kimliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Nozül Çapı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Ekstruder Ofseti" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Ekstruder İlk Z konumu" - -#: fdmprinter.def.json -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ı." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Mutlak Ekstruder İlk Konumu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Maksimum X Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Maksimum Y Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Maksimum Z Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Maksimum Hız E" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "Filamanın maksimum hızı." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Maksimum X İvmesi" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Maksimum Y İvmesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Maksimum Z İvmesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Maksimum Filaman İvmesi" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Filaman motoru için maksimum ivme." - -#: fdmprinter.def.json -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Varsayılan İvme" - -#: fdmprinter.def.json -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "Yazıcı başlığı hareketinin varsayılan ivmesi." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Varsayılan X-Y Salınımı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Varsayılan Z Salınımı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Varsayılan Filaman Salınımı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Milimetre Başına Adım (X)" - -#: fdmprinter.def.json -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ğı." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Milimetre Başına Adım (Y)" - -#: fdmprinter.def.json -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ğı." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Milimetre Başına Adım (Z)" - -#: fdmprinter.def.json -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ğı." - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Milimetre Başına Adım (E)" - -#: fdmprinter.def.json -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ğı." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "X Kapaması Pozitif Yönde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Y Kapaması Pozitif Yönde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Z Kapaması Pozitif Yönde" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Minimum Besleme Hızı" - -#: fdmprinter.def.json -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ı." - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Besleyici Çark Çapı" - -#: fdmprinter.def.json -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ı." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "resolution label" -msgid "Quality" -msgstr "Kalite" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Katman Yüksekliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "İlk Katman Yüksekliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "line_width label" -msgid "Line Width" -msgstr "Hat Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Duvar Hattı Genişliği" - -#: fdmprinter.def.json -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Tek bir duvar hattının genişliği." - -#: fdmprinter.def.json -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Dış Duvar Hattı Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "İç Duvar(lar) Hattı Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Üst/Alt Hat Genişliği" - -#: fdmprinter.def.json -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Tek bir üst/alt hattın genişliği." - -#: fdmprinter.def.json -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Dolgu Hattı Genişliği" - -#: fdmprinter.def.json -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Tek bir dolgu hattının genişliği." - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Etek/Kenar Hattı Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Destek Hattı Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Destek Arayüz Hattı Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Destek Çatısı Çizgi Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Destek Zemini Çizgi Genişliği" - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Tek bir destek zemininin çizgi genişliği." - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "İlk Direk Hattı Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "İlk Katman Hat Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "shell label" -msgid "Walls" -msgstr "Duvarlar" - -#: fdmprinter.def.json -msgctxt "shell description" -msgid "Shell" -msgstr "Kovan" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Duvar Ekstruderi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Dış Duvar Ekstruderi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "İç Duvar Ekstrüderi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Duvar Kalınlığı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Duvar Hattı Sayısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Duvar Geçişi Uzunluğu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Duvar Dağılım Sayısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Duvar Geçişi Eşik Açısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Duvar Geçişi Filtresi Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Duvar Geçişi Filtresi Kenar Boşluğu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Dış Duvar Sürme Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Dış Duvar İlavesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Duvar Yazdırma Sırasını Optimize Et" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Duvar Sıralaması" - -#: fdmprinter.def.json -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." -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." - -#: fdmprinter.def.json -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "İçten Dışa" - -#: fdmprinter.def.json -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "Dıştan İçe" - -#: fdmprinter.def.json -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Alternatif Ek Duvar" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Minimum Duvar Hattı Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Minimum Çift Duvar Hattı Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold label" -msgid "Split Middle Line Threshold" -msgstr "Bölünmüş Orta Hat Eşiği" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "Normal hat genişliğinin bir faktörü olarak, üzerinde orta hattın (varsa) ikiye bölüneceği en küçük hat genişliğidir. Daha fazla sayıda ve daha ince hatlar kullanmak için bu ayarı düşürün. Daha az sayıda ve daha kalın hatlar kullanmak için ise bu ayarı artırın. Bunun tüm şeklin duvarla doldurulması gerektiğinde geçerli olduğunu unutmayın, bu nedenle buradaki orta hat baskıda duvar yerine dolgu veya diğer bir kaplama olsa bile şeklin iki dış kenarı arasındaki nesnenin ortasını ifade eder." - -#: fdmprinter.def.json -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Minimum Tek Duvar Hattı Genişliği" - -#: fdmprinter.def.json -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," - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold label" -msgid "Add Middle Line Threshold" -msgstr "Orta Hat Eşiği Ekle" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "Normal hat genişliğinin bir faktörü olarak, üzerine bir orta hat (zaten yoksa) eklenecek olan en küçük hat genişliğidir. Daha fazla sayıda ve daha ince hatlar kullanmak için bu ayarı düşürün. Daha az sayıda ve daha kalın hatlar kullanmak için ise bu ayarı artırın. Bunun tüm şeklin duvarla doldurulması gerektiğinde geçerli olduğunu unutmayın, bu nedenle buradaki orta hat baskıda duvar yerine dolgu veya diğer bir kaplama olsa bile şeklin iki dış kenarı arasındaki nesnenin ortasını ifade eder." - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "İnce Duvarları Yazdır" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Minimum Yüz Hattı Boyutu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Minimum İnce Duvar Hattı Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Yatay Büyüme" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "İlk Katmanın Yatay Genişlemesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Delik Yatay Büyüme" - -#: fdmprinter.def.json -msgctxt "hole_xy_offset description" -msgid "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." -msgstr "Her bir katmandaki tüm deliklere uygulanan ofset miktarıdır. Pozitif değerler deliklerin boyutunu artırırken, negatif değerler deliklerin boyutunu düşürür." - -#: fdmprinter.def.json -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Z Dikiş Hizalama" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Kullanıcı Tarafından Belirtilen" - -#: fdmprinter.def.json -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "En kısa" - -#: fdmprinter.def.json -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Gelişigüzel" - -#: fdmprinter.def.json -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "En Keskin Köşe" - -#: fdmprinter.def.json -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Z Dikişi Konumu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Sol Arka" - -#: fdmprinter.def.json -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Geri" - -#: fdmprinter.def.json -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Sağ Arka" - -#: fdmprinter.def.json -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Sağ" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Sağ Ön" - -#: fdmprinter.def.json -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Ön" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Sol Ön" - -#: fdmprinter.def.json -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Sol" - -#: fdmprinter.def.json -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z Dikişi X" - -#: fdmprinter.def.json -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ı." - -#: fdmprinter.def.json -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z Dikişi Y" - -#: fdmprinter.def.json -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ı." - -#: fdmprinter.def.json -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Dikiş Köşesi Tercihi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Hiçbiri" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Dikişi Gizle" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Dikişi Açığa Çıkar" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Dikişi Gizle veya Açığa Çıkar" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Akıllı Gizleme" - -#: fdmprinter.def.json -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Z Dikişi Göreliliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Üst / Alt" - -#: fdmprinter.def.json -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Üst / Alt" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Üst Yüzey Ekstruderi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Üst Yüzey Katmanları" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Üst/Alt Ekstruderi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Üst/Alt Kalınlık" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Üst Kalınlık" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Üst Katmanlar" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Alt Kalınlık" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Alt katmanlar" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "İlk Alt Katmanlar" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Üst/Alt Şekil" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Üst/alt katmanların şekli." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zik Zak" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Alt Şekil İlk Katmanı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Çizgiler" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Eş merkezli" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zikzak" - -#: fdmprinter.def.json -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Üst/Alt Poligonları Bağla" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Monotonik Üst/Alt Düzeni" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Üst/Alt Çizgi 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." #: fdmprinter.def.json msgctxt "skin_angles description" @@ -1514,379 +33,24 @@ msgid "A list of integer line directions to use when the top/bottom layers use t 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." #: fdmprinter.def.json -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Z Boşluklarında Dış Katman Oluşturma" +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." #: fdmprinter.def.json -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 "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." #: fdmprinter.def.json -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Ek Dış Katman Duvar Sayısı" +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." #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Ütülemeyi Etkinleştir" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Sadece En Yüksek Katmanı Ütüle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Ütüleme Modeli" - -#: fdmprinter.def.json -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Üst yüzeyleri ütülemek için kullanılacak model." - -#: fdmprinter.def.json -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" - -#: fdmprinter.def.json -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zikzak" - -#: fdmprinter.def.json -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Monotonik Ütüleme Düzeni" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Ütüleme Hattı Boşluğu" - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "Ütüleme hatları arasında bulunan mesafe." - -#: fdmprinter.def.json -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Ütüleme Akışı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Ütüleme İlave Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Ütüleme Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Ütüleme İvmesi" - -#: fdmprinter.def.json -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "Ütülemenin gerçekleştiği ivme." - -#: fdmprinter.def.json -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Ütüleme İvmesi Değişimi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Yüzey Çakışma Oranı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Yüzey Çakışması" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Yüzey Kaldırma Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Üst Yüzey Kaldırma Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Alt Yüzey Kaldırma Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Yüzey Genişleme Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Üst Yüzey Genişleme Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Alt Yüzey Genişleme Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Genişleme için Maksimum Yüzey Açısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Genişleme için Minimum Yüzey Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill label" -msgid "Infill" -msgstr "Dolgu" - -#: fdmprinter.def.json -msgctxt "infill description" -msgid "Infill" -msgstr "Dolgu" - -#: fdmprinter.def.json -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Dolgu Ekstruderi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Dolgu Yoğunluğu" - -#: fdmprinter.def.json -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Yazdırma dolgusunun yoğunluğunu ayarlar." - -#: fdmprinter.def.json -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Dolgu Hattı Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Dolgu Şekli" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Izgara" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" - -#: fdmprinter.def.json -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Üçgenler" - -#: fdmprinter.def.json -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Üçlü Altıgen" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Kübik" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Kübik Alt Bölüm" - -#: fdmprinter.def.json -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Sekizlik" - -#: fdmprinter.def.json -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Çeyrek Kübik" - -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" - -#: fdmprinter.def.json -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zik Zak" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Çapraz" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Çapraz 3D" - -#: fdmprinter.def.json -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Yıldırım" - -#: fdmprinter.def.json -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Dolgu Hatlarını Bağlayın" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Dolgu Poligonlarını Bağla" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "infill_angles description" @@ -1894,49 +58,44 @@ msgid "A list of integer line directions to use. Elements from the list are used 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)." #: fdmprinter.def.json -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." #: fdmprinter.def.json -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." #: fdmprinter.def.json -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Dolgu Y Kayması" +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "Bir başka parçanın içine tamamen kapatılmış bir parça, diğer parçanın içine temas eden bir dış kenar oluşturabilir. Bu, iç deliklerden bu mesafe içindeki tüm kenarları kaldırır." #: fdmprinter.def.json -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" #: fdmprinter.def.json -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" #: fdmprinter.def.json -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" #: fdmprinter.def.json -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" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "infill_wall_line_count description" @@ -1948,284 +107,9 @@ msgstr "" "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." #: fdmprinter.def.json -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Kübik Alt Bölüm Kalkanı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Dolgu Çakışma Oranı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Dolgu Çakışması" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Dolgu Sürme Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Dolgu Katmanı Kalınlığı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Aşamalı Dolgu Basamakları" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Aşamalı Dolgu Basamak Yüksekliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Duvarlardan Önce Dolgu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Minimum Dolgu Alanı" - -#: fdmprinter.def.json -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)." - -#: fdmprinter.def.json -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Dolgu Desteği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Dolum Çıkıntı Açısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Kaplamanın Kenar Desteği Kalınlığı" - -#: fdmprinter.def.json -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ığı." - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Kaplamanın Kenar Desteği Katmanları" - -#: fdmprinter.def.json -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ığı." - -#: fdmprinter.def.json -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Yıldırım Dolgu Destek Açısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Yıldırım Dolgu Çıkıntı Açısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Yıldırım Dolgu Budama Açısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Yıldırım Dolgu Düzleştirme Açısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material label" -msgid "Material" -msgstr "Malzeme" - -#: fdmprinter.def.json -msgctxt "material description" -msgid "Material" -msgstr "Malzeme" - -#: fdmprinter.def.json -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Varsayılan Yazdırma Sıcaklığı" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Yapı Disk Bölümü Sıcaklığı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Yazdırma Sıcaklığı" - -#: fdmprinter.def.json -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Yazdırma için kullanılan sıcaklık." - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "İlk Katman Yazdırma Sıcaklığı" - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "İlk katmanı yazdırmak için kullanılan sıcaklık. İlk katmanın özel kullanımını devre dışı bırakmak için 0’a ayarlayın." - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "İlk Yazdırma Sıcaklığı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Son Yazdırma Sıcaklığı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Varsayılan Yapı Levhası Sıcaklığı" - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Yapı Levhası Sıcaklığı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "İlk Katman Yapı Levhası Sıcaklığı" - -#: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" @@ -2233,1924 +117,19 @@ msgid "Adhesion Tendency" msgstr "Yapışma Eğilimi" #: fdmprinter.def.json -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." #: fdmprinter.def.json -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." #: fdmprinter.def.json -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Yüzey enerjisi." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Ölçekleme Faktörü Büzülme Telafisi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Yatay Ölçekleme Faktörü Büzülme Telafisi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Dikey Ölçekleme Faktörü Büzülme Telafisi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Kristalli Malzeme" - -#: fdmprinter.def.json -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?" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Sızma Önleme Geri Çekme Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Sızma Önleme Geri Çekme Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Geri Çekme Pozisyonunda Durma Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Durma Payına Uygun Geri Çekme Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Kopma Hazırlığı Sıcaklığı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Kopma Geri Çekme Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Kopma Geri Çekme Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Kopma Sıcaklığı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Temizleme Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Temizleme Uzunluğu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Filament Temizliği Bitiş Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Filament Temizliği Bitiş Uzunluğu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Maksimum Durma Süresi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Yük Taşıma Çarpanı Yok" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flow label" -msgid "Flow" -msgstr "Akış" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Duvar Akışı" - -#: fdmprinter.def.json -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Duvar hatlarının akış telafisidir." - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Dış Duvar Akışı" - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "En dıştaki duvar hattının akış telafisidir." - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "İç Duvar Akışı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Üst/Alt Akış" - -#: fdmprinter.def.json -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Üst/alt hatların akış telafisidir." - -#: fdmprinter.def.json -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Üst Yüzeyin Dış Katman Akışı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Dolgu Akışı" - -#: fdmprinter.def.json -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Dolgu hatlarının akış telafisidir." - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Etek/Kenar Akışı" - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Etek veya kenar hatlarının akış telafisidir." - -#: fdmprinter.def.json -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Destek Akışı" - -#: fdmprinter.def.json -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Destek yapı hatlarının akış telafisidir." - -#: fdmprinter.def.json -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Destek Ara Yüzeyi Akışı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Destek Çatı Akışı" - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Destek çatı hatlarının akış telafisidir." - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Destek Zemin Akışı" - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Destek zemin hatlarının akış telafisidir." - -#: fdmprinter.def.json -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "İlk Direk Akışı" - -#: fdmprinter.def.json -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Temel kule hatlarının akış telafisidir." - -#: fdmprinter.def.json -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "İlk Katman Akışı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Bekleme Sıcaklığı" - -#: fdmprinter.def.json -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ığı." - -#: fdmprinter.def.json -msgctxt "speed label" -msgid "Speed" -msgstr "Hız" - -#: fdmprinter.def.json -msgctxt "speed description" -msgid "Speed" -msgstr "Hız" - -#: fdmprinter.def.json -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Yazdırma Hızı" - -#: fdmprinter.def.json -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Yazdırmanın gerçekleştiği hız." - -#: fdmprinter.def.json -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Dolgu Hızı" - -#: fdmprinter.def.json -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Dolgunun gerçekleştiği hız." - -#: fdmprinter.def.json -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Duvar Hızı" - -#: fdmprinter.def.json -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Duvarların yazdırıldığı hız." - -#: fdmprinter.def.json -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Dış Duvar Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "İç Duvar Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Üst Yüzey Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Üst/Alt Hız" - -#: fdmprinter.def.json -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Üst/alt katmanların yazdırıldığı hız." - -#: fdmprinter.def.json -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Destek Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Destek Dolgu Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Destek Arayüzü Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Destek Çatısı Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Destek Zemini Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "İlk Direk Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Hareket Hızı" - -#: fdmprinter.def.json -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Hareket hamlelerinin hızı." - -#: fdmprinter.def.json -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "İlk Katman Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "İlk Katman Yazdırma Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "İlk Katman Hareket Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Etek/Kenar Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Z Atlama Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Daha Yavaş Katman Sayısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Akış Eşitleme Oranı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "İvme Kontrolünü Etkinleştir" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Yazdırma İvmesi" - -#: fdmprinter.def.json -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Yazdırmanın gerçekleştiği ivme." - -#: fdmprinter.def.json -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Dolgu İvmesi" - -#: fdmprinter.def.json -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "Dolgunun yazdırıldığı ivme." - -#: fdmprinter.def.json -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Duvar İvmesi" - -#: fdmprinter.def.json -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Duvarların yazdırıldığı ivme." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Dış Duvar İvmesi" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "En dış duvarların yazdırıldığı ivme." - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "İç Duvar İvmesi" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "İç duvarların yazdırıldığı ivme." - -#: fdmprinter.def.json -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Üst Yüzey İvmesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Üst/Alt İvme" - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Üst/alt katmanların yazdırıldığı ivme." - -#: fdmprinter.def.json -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Destek İvmesi" - -#: fdmprinter.def.json -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Destek yapısının yazdırıldığı ivme." - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Destek Dolgusu İvmesi" - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Destek dolgusunun yazdırıldığı ivme." - -#: fdmprinter.def.json -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Destek Arayüzü İvmesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Destek Çatısı İvmesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Destek Zemini İvmesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "İlk Direk İvmesi" - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "İlk direğin yazdırıldığı ivme." - -#: fdmprinter.def.json -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Hareket İvmesi" - -#: fdmprinter.def.json -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Hareket hamlelerinin ivmesi." - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "İlk Katman İvmesi" - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "İlk katman için belirlenen ivme." - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "İlk Katman Yazdırma İvmesi" - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "İlk katmanın yazdırıldığı ivme." - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "İlk Katman Hareket İvmesi" - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "İlk katmandaki hareket hamlelerinin ivmesi." - -#: fdmprinter.def.json -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Etek/Kenar İvmesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Salınım Kontrolünü Etkinleştir" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Yazdırma İvmesi Değişimi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Dolgu Salınımı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Duvar Salınımı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Dış Duvar Salınımı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "İç Duvar Salınımı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Üst Yüzey İvmesi Değişimi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Üst/Alt Salınımı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Destek Salınımı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Destek Dolgu İvmesi Değişimi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Destek Arayüz Salınımı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Destek Çatısı Sarsıntısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Destek Zemini Sarsıntısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "İlk Direk Salınımı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Hareket Salınımı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "İlk Katman Salınımı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "İlk Katman Yazdırma Salınımı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "İlk Katman Hareket Salınımı" - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "İlk katmandaki hareket hamlelerinin ivmesi." - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Etek/Kenar İvmesi Değişimi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel label" -msgid "Travel" -msgstr "Hareket" - -#: fdmprinter.def.json -msgctxt "travel description" -msgid "travel" -msgstr "hareket" - -#: fdmprinter.def.json -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Geri Çekmeyi Etkinleştir" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Katman Değişimindeki Geri Çekme" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Geri Çekme Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Geri Çekme Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Geri Çekme Sırasındaki Çekim Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Geri Çekme Sırasındaki Astar Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Geri Çekme Sırasındaki İlave Astar Miktarı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Minimum Geri Çekme Hareketi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Maksimum Geri Çekme Sayısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Minimum Geri Çekme Mesafesi Penceresi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "limit_support_retractions label" -msgid "Limit Support Retractions" -msgstr "Destek Geri Çekmelerini Sınırlandır" - -#: fdmprinter.def.json -msgctxt "limit_support_retractions description" -msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -msgstr "Düz hat üzerinde destekler arasında hareket ederken geri çekmeyi atlayın. Bu ayarın etkinleştirilmesi baskı süresini kısaltır ancak destek yapısında ölçüsüz dizilime yol açabilir." - -#: fdmprinter.def.json -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Tarama Modu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Kapalı" - -#: fdmprinter.def.json -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Tümü" - -#: fdmprinter.def.json -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Dış Yüzeyde Değil" - -#: fdmprinter.def.json -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Yüzey Alanında Değil" - -#: fdmprinter.def.json -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Dolgu İçinde" - -#: fdmprinter.def.json -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Geri Çekmesiz Maks. Tarama Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Dış Duvardan Önce Geri Çek" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Hareket Sırasında Yazdırılan Bölümleri Atlama" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Hareket Sırasında Destekleri Atla" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Hareket Atlama Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "Katman Başlangıcı X" - -#: fdmprinter.def.json -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ı." - -#: fdmprinter.def.json -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Katman Başlangıcı Y" - -#: fdmprinter.def.json -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ı." - -#: fdmprinter.def.json -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Geri Çekildiğinde Z Sıçraması" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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ı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Z Sıçraması Yüksekliği" - -#: fdmprinter.def.json -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ı." - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Ekstruder Değişimi Sonrasındaki Z Sıçraması" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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ı" - -#: fdmprinter.def.json -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ı." - -#: fdmprinter.def.json -msgctxt "cooling label" -msgid "Cooling" -msgstr "Soğuma" - -#: fdmprinter.def.json -msgctxt "cooling description" -msgid "Cooling" -msgstr "Soğuma" - -#: fdmprinter.def.json -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Yazdırma Soğutmayı Etkinleştir" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Fan Hızı" - -#: fdmprinter.def.json -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ı." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Olağan Fan Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Maksimum Fan Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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ı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "İlk Fan Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Yüksekteki Olağan Fan Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Katmandaki Olağan Fan Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Minimum Katman Süresi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Minimum Hız" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Yazıcı Başlığını Kaldır" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support label" -msgid "Support" -msgstr "Destek" - -#: fdmprinter.def.json -msgctxt "support description" -msgid "Support" -msgstr "Destek" - -#: fdmprinter.def.json -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Oluşturma Desteği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Destek Ekstruderi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Destek Dolgu Ekstruderi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "İlk Katman Destek Ekstruderi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Destek Arayüz Ekstruderi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Destek Çatısı Ekstrüderi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Destek Zemini Ekstrüderi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Destek Yapısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" - -#: fdmprinter.def.json -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Ağaç" - -#: fdmprinter.def.json -msgctxt "support_tree_angle label" -msgid "Tree Support Branch Angle" -msgstr "Ağaç Destek Dal Açısı" - -#: fdmprinter.def.json -msgctxt "support_tree_angle description" -msgid "The angle of the branches. 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 açısı. Daha dikey ve daha stabil olmaları için daha düşük bir açı kullanın. Daha fazla erişim için daha yüksek bir açı kullanın." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance label" -msgid "Tree Support Branch Distance" -msgstr "Ağaç Destek Dal Mesafesi" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance description" -msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -msgstr "Dalların modele temas ettiklerinde birbirlerine ne kadar uzaklıkta olacakları. Bu mesafenin kısa yapılması ağaç desteğin modele daha fazla noktada temas etmesini sağlayarak daha iyi bir sarkma sunacaktır ancak desteğin sökülmesini de daha güç hale getirecektir." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter label" -msgid "Tree Support Branch Diameter" -msgstr "Ağaç Destek Dalının Çapı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter_angle label" -msgid "Tree Support Branch Diameter Angle" -msgstr "Ağaç Destek Dalının Çap Açısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution label" -msgid "Tree Support Collision Resolution" -msgstr "Ağaç Destek Çarpışma Çözünürlüğü" - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution description" -msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -msgstr "Modele çarpmamak adına çarpışmaları hesaplamak için çözünürlük. Buna düşük bir değerin verilmesi daha az hata çıkaran daha isabetli ağaçların üretilmesini sağlar ancak dilimleme süresini önemli ölçüde artırır." - -#: fdmprinter.def.json -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Destek Yerleştirme" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Yapı Levhasına Dokunma" - -#: fdmprinter.def.json -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Her bölüm" - -#: fdmprinter.def.json -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Destek Çıkıntı Açısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Destek Şekli" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" - -#: fdmprinter.def.json -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Izgara" - -#: fdmprinter.def.json -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Üçgenler" - -#: fdmprinter.def.json -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" - -#: fdmprinter.def.json -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zik Zak" - -#: fdmprinter.def.json -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Çapraz" - -#: fdmprinter.def.json -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" - -#: fdmprinter.def.json -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Duvar Hattı Sayısını Destekle" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Destek Çizgilerini Bağla" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Destek Zikzaklarını Bağla" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Destek Yoğunluğu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Destek Hattı Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "İlk Katman Destek Hattı Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Destek Dolgu Hattı Yönü" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Destek Kenarını Etkinleştir" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Destek Kenar Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Destek Kenar Hattı Sayısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Destek Z Mesafesi" - -#: fdmprinter.def.json -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. This value is rounded up to a multiple of the layer height." -msgstr "Destek yapısının üst/alt kısmından baskıya olan mesafe. Bu boşluk, model yazdırıldıktan sonra desteklerin sökülmesi için açıklık sağlar. Bu değer, katman yüksekliğinin iki katına kadar yuvarlanır." - -#: fdmprinter.def.json -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Destek Üst Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Destek Alt Mesafesi" - -#: fdmprinter.def.json -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Baskıdan desteğin altına olan mesafe." - -#: fdmprinter.def.json -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Destek X/Y Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Destek Mesafesi Önceliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y, Z’den fazla" - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z, X/Y’den fazla" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Minimum Destek X/Y Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Destek Merdiveni Basamak Yüksekliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Destek Merdiveni Maksimum Basamak Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Basamak Desteğinin Minimum Eğim Açısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Destek Birleşme Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Destek Yatay Büyüme" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Destek Dolgusu Katmanı Kalınlığı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Kademeli Destek Dolgusu Aşamaları" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Aşamalı Destek Dolgusu Basamak Yüksekliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Minimum Destek Bölgesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Destek Arayüzünü Etkinleştir" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Destek Çatısını Etkinleştir" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Destek Zeminini Etkinleştir" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Destek Arayüzü Kalınlığı" - -#: fdmprinter.def.json -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ığı." - -#: fdmprinter.def.json -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Destek Tavanı Kalınlığı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Destek Zemini Kalınlığı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Destek Arayüz Çözünürlüğü" - -#: fdmprinter.def.json -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 "Desteğin üstünde ve altında model bulunduğunda, kontrol sırasında verilen yükseklikte adımlar uygulayın. Daha yüksek değerler, destek arayüzü olması gereken yerlerde yazdırılacak normal destek oluştururken daha düşük değerler daha yavaş dilimler." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "support_interface_density description" @@ -4158,898 +137,19 @@ msgid "Adjusts the density of the roofs and floors of the support structure. A h 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." #: fdmprinter.def.json -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Destek Çatısı 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." #: fdmprinter.def.json -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 "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." #: fdmprinter.def.json -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Destek Çatısı Çizgi Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Destek Zemini Yoğunluğu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Destek Zemini Çizgi Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Destek Arayüzü Şekli" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Izgara" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Üçgenler" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zik Zak" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Destek Çatısı Deseni" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Izgara" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Üçgenler" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Eş Merkezli" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zikzak" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Destek Zemini Deseni" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "Destek zeminlerinin yazdırıldığı desen." - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Izgara" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Üçgenler" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Eş Merkezli" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zikzak" - -#: fdmprinter.def.json -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Minimum Destek Arayüzü Bölgesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Minimum Destek Çatısı Bölgesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Minimum Destek Zemini Bölgesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Destek Arayüzü Yatay Büyüme" - -#: fdmprinter.def.json -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Destek arayüzü poligonlarına uygulanan ofset miktarı." - -#: fdmprinter.def.json -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Destek Çatısı Yatay Büyüme" - -#: fdmprinter.def.json -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Destek çatılarına uygulanan ofset miktarı." - -#: fdmprinter.def.json -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Destek Zemini Yatay Büyüme" - -#: fdmprinter.def.json -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Destek zeminlerine uygulanan ofset miktarı." - -#: fdmprinter.def.json -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Destek Arabirim Hattı Yönleri" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Destek Çatı Hattı Yönleri" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Destek Zemin Hattı Yönleri" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Fan Hızı Geçersiz Kılma" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Desteklenen Yüzey Fan Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Direkleri kullan" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Direk Çapı" - -#: fdmprinter.def.json -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "Özel bir direğin çapı." - -#: fdmprinter.def.json -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Kule Destekli Maksimum Çap" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Direk Tavanı Açısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Alçalan Destek Örgüsü" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "Sahnede Destek Örgüsü Var" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Yapı Levhası Yapıştırması" - -#: fdmprinter.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Yapıştırma" - -#: fdmprinter.def.json -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "İlk Damlayı Etkinleştir" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Extruder İlk X konumu" - -#: fdmprinter.def.json -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ı." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Extruder İlk Y konumu" - -#: fdmprinter.def.json -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ı." - -#: fdmprinter.def.json -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Yapı Levhası Türü" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Etek" - -#: fdmprinter.def.json -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Kenar" - -#: fdmprinter.def.json -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Radye" - -#: fdmprinter.def.json -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Hiçbiri" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Yapı Levhası Yapıştırma Ekstruderi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Etek/Kenar Ekstrüderi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Radye Taban Ekstrüderi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Radye Orta Ekstrüderi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Radye Üst Ekstrüderi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Etek Hattı Sayısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Etek Mesafesi" - -#: fdmprinter.def.json -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 "" -"Baskının eteği ve ilk katmanı arasındaki yatay mesafe.\n" -"Minimum mesafedir. Bu mesafeden çok sayıda etek hattı dışarı doğru uzanır." - -#: fdmprinter.def.json -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Minimum Etek/Kenar Uzunluğu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Kenar Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Kenar Hattı Sayısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Uç Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Kenar, Desteği Değiştirir" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Sadece Dış Kısımdaki Kenar" - -#: fdmprinter.def.json -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 "Sadece modelin dış kısmındaki kenarı yazdırır. Yatak yapışmasını büyük oranda azaltmasa da daha sonra kaldırmanız gereken kenar sayısını azaltır." - -#: fdmprinter.def.json -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Ek Radye Boşluğu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Radye Düzeltme" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Radye Hava Boşluğu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "İlk Katman Z Çakışması" - -#: fdmprinter.def.json -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 "Hava boşluğundaki filaman kaybını telafi etmek için Z yönünde modelin ilk ve ikinci katmanını çakıştırın. İlk model katmanının üstündeki tüm modeller bu miktara indirilecektir." - -#: fdmprinter.def.json -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Radyenin Üst Katmanları" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Radyenin Üst Katman Kalınlığı" - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Üst radye katmanlarının katman kalınlığı." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Radyenin Üst Hat Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Radyenin Üst Boşluğu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Radye Orta Katmanları" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Radye Orta Kalınlığı" - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Radyenin orta katmanının katman kalınlığı." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Radyenin Orta Hat Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Radye Orta Boşluğu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Radye Taban Kalınlığı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Radyenin Taban Hat Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Radye Taban Hat Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Radye Yazdırma Hızı" - -#: fdmprinter.def.json -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "Radyenin yazdırıldığı hız." - -#: fdmprinter.def.json -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Radye Üst Yazdırma Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Radyenin Orta Yazdırma Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Radyenin Taban Yazdırma Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Radye Yazdırma İvmesi" - -#: fdmprinter.def.json -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "Radyenin yazdırıldığı ivme." - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Radye Üst Yazdırma İvmesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Radyenin Orta Yazdırma İvmesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Radyenin Taban Yazdırma İvmesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Radye Yazdırma Salınımı" - -#: fdmprinter.def.json -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "Radyenin yazdırıldığı salınım." - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Radye Üst Yazdırma Salınımı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Radyenin Orta Yazdırma Salınımı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Radyenin Taban Yazdırma Salınımı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Radye Fan Hızı" - -#: fdmprinter.def.json -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Radye için fan hızı." - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Radye Üst Fan Hızı" - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Üst radye katmanları için fan hızı." - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Radyenin Orta Fan Hızı" - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "Radyenin orta katmanı için fan hızı." - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Radyenin Taban Fan Hızı" - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Radyenin taban katmanı için fan hızı." - -#: fdmprinter.def.json -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "İkili ekstrüzyon" - -#: fdmprinter.def.json -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Çoklu ekstruderler ile yapılan yazdırmalar için kullanılan ayarlar." - -#: fdmprinter.def.json -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "İlk Direği Etkinleştir" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "İlk Direk Boyutu" - -#: fdmprinter.def.json -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "İlk Direk Genişliği." - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "İlk Direğin Minimum Hacmi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "İlk Direk X Konumu" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "İlk direk konumunun x koordinatı." - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "İlk Direk Y Konumu" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "İlk direk konumunun y koordinatı." - -#: fdmprinter.def.json -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." #: fdmprinter.def.json msgctxt "prime_tower_wipe_enabled description" @@ -5057,244 +157,14 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f 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." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Astarlama Direği Kenarı" +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." #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Model ihtiyaç duymasa da astarlama direkleri bir kenarın sağladığı ekstra yapışkanlığa ihtiyaç duyabilir. Şu anda \"radye\" yapışma tipi ile birlikte kullanılamamaktadır." - -#: fdmprinter.def.json -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Sızdırma Kalkanını Etkinleştir" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Sızdırma Kalkanı Açısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Sızdırma Kalkanı Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Nozül Anahtarı Geri Çekme Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Nozül Anahtarı Geri Çekme Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Nozül Değişiminin Geri Çekme Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Nozül Değişiminin İlk Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Ağ Onarımları" - -#: fdmprinter.def.json -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Kafesleri 3D baskı için daha uygun hale getirir." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Bağlantı Çakışma Hacimleri" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Tüm Boşlukları Kaldır" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Geniş Dikiş" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Bağlı Olmayan Yüzleri Tut" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Birleştirilmiş Bileşim Çakışması" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Bileşim Kesişimini Kaldırın" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Alternatif Örgü Giderimi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Boş İlk Katmanları Kaldır" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Maksimum Çözünürlük" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Maksimum Hareket Çözünürlüğü" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Maksimum Sapma" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Maksimum Ekstrüzyon Alanı Sapması" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Özel Modlar" - -#: fdmprinter.def.json -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Modellerinizi yazdırmanın geleneksel olmayan yollarıdır." - -#: fdmprinter.def.json -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Yazdırma Dizisi" - -#: fdmprinter.def.json -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ü" #: fdmprinter.def.json msgctxt "print_sequence option all_at_once" @@ -5302,1273 +172,19 @@ msgid "All at Once" msgstr "Tümünü birden" #: fdmprinter.def.json -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Birer Birer" +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" #: fdmprinter.def.json -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Dolgu Ağı" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Alternatif Ek Duvar" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Örgü İşleme Sıralaması" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Kesme Örgüsü" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Kalıp" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Minimum Kalıp Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Kalıp Çatı Yüksekliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Kalıp Açısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Destek Örgüsü" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Çıkıntı Önleme Örgüsü" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Yüzey Modu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Yüzey" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Her İkisi" - -#: fdmprinter.def.json -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Spiral Dış Çevre" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Helezon Şeklinde Düzeltme" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Bağıl Ekstrüzyon" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "experimental label" -msgid "Experimental" -msgstr "Deneysel" - -#: fdmprinter.def.json -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Henüz tamamen detaylandırılmamış özelliklerdir." - -#: fdmprinter.def.json -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Dilimleme Toleransı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Ortalayıcı" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Dışlayıcı" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Kapsayıcı" - -#: fdmprinter.def.json -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Üst Yüzey Hat Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Üst Yüzey Şekli" - -#: fdmprinter.def.json -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "En üst yüzeyin şekli." - -#: fdmprinter.def.json -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zikzak" - -#: fdmprinter.def.json -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Monotonik Üst Yüzey Düzeni" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Üst Yüzey Hat Yönleri" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Dolgu Hareket Optimizasyonu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature label" -msgid "Auto Temperature" -msgstr "Otomatik Sıcaklık" - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature description" -msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -msgstr "Katmanın ortalama akış hızıyla otomatik olarak her katman için sıcaklığı değiştirir." - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Akış Sıcaklık Grafiği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Minimum Poligon Çevre Uzunluğu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Parçalarda Döküm Desteği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Destek Parçasının Boyutu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Destek Parçası Hattı Sayısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Cereyan Kalkanını Etkinleştir" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Cereyan Kalkanı X/Y Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Cereyan Kalkanı Sınırlaması" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Tam" - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Sınırlı" - -#: fdmprinter.def.json -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Cereyan Kalkanı Yüksekliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Çıkıntıyı Yazdırılabilir Yap" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Maksimum Model Açısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Maksimum Çıkıntı Deliği Alanı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Taramayı Etkinleştir" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Tarama Hacmi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Tarama Öncesi Minimum Hacim" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Tarama Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Çapraz 3D Cebin Boyutu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Çapraz Dolgu Yoğunluğu Görüntüsü" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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ü" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Konik Desteği Etkinleştir" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Konik Destek Açısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Koni Desteğinin Minimum Genişliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Belirsiz Dış Katman" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Yalnızca Belirsiz Dış Katman" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Belirsiz Dış Katman Kalınlığı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Belirsiz Dış Katman Yoğunluğu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Belirsiz Dış Katman Noktası Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Akış hızı dengelemesi maksimum ekstrüzyon kayması" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Akış hızı dengeleme çarpanı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wireframe_enabled label" -msgid "Wire Printing" -msgstr "Kablo Yazdırma" - -#: fdmprinter.def.json -msgctxt "wireframe_enabled description" -msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -msgstr "“Belli belirsiz” yazdıran seyrek gövdeli bir yapı ile sadece dış yüzeyi yazdırın. Bu işlem, yukarı ve çapraz olarak aşağı yöndeki hatlar ile bağlı olan verilen Z aralıklarındaki modelin çevresini yatay olarak yazdırarak gerçekleştirilir." - -#: fdmprinter.def.json -msgctxt "wireframe_height label" -msgid "WP Connection Height" -msgstr "WP Bağlantı Yüksekliği" - -#: fdmprinter.def.json -msgctxt "wireframe_height description" -msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -msgstr "İki yatay bölüm arasındaki yukarı ve çapraz olarak aşağı yöndeki hatların yüksekliği. Net yapının genel yoğunluğunu belirler. Sadece kablo yazdırmaya uygulanır." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset label" -msgid "WP Roof Inset Distance" -msgstr "WP Tavan İlave Mesafesi" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset description" -msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -msgstr "İçerideki ana tavan hattından bağlantı yaparken kapatılan mesafe. Sadece kablo yazdırmaya uygulanır." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed label" -msgid "WP Speed" -msgstr "WP Hızı" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed description" -msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -msgstr "Malzemeleri sıkarken nozül hareketlerinin hızı. Sadece kablo yazdırmaya uygulanır." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom label" -msgid "WP Bottom Printing Speed" -msgstr "WP Alt Yazdırma Hızı" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom description" -msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -msgstr "Yapı platformuna değen tek katman olan ilk katmanın yazdırılma hızı. Sadece kablo yazdırmaya uygulanır." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up label" -msgid "WP Upward Printing Speed" -msgstr "WP Yukarı Doğru Yazdırma Hızı" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up description" -msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -msgstr "“Belli belirsiz” yukarı doğru bir hat yazdırma hızı. Sadece kablo yazdırmaya uygulanır." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down label" -msgid "WP Downward Printing Speed" -msgstr "WP Aşağı Doğru Yazdırma Hızı" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down description" -msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -msgstr "Çapraz şekilde aşağı doğru bir hat yazdırma hızı. Sadece kablo yazdırmaya uygulanır." - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat label" -msgid "WP Horizontal Printing Speed" -msgstr "WP Yatay Yazdırma Hızı" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat description" -msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -msgstr "Modelin yatay dış çevresini yazdırma hızı. Sadece kablo yazdırmaya uygulanır." - -#: fdmprinter.def.json -msgctxt "wireframe_flow label" -msgid "WP Flow" -msgstr "WP Akışı" - -#: fdmprinter.def.json -msgctxt "wireframe_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -msgstr "Akış dengeleme: sıkıştırılan malzeme miktarı bu değerle çoğaltılır. Sadece kablo yazdırmaya uygulanır." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection label" -msgid "WP Connection Flow" -msgstr "WP Bağlantı Akışı" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection description" -msgid "Flow compensation when going up or down. Only applies to Wire Printing." -msgstr "Yukarı veya aşağı yönde hareket ederken akış dengelenmesi. Sadece kablo yazdırmaya uygulanır." - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat label" -msgid "WP Flat Flow" -msgstr "WP Düz Akışı" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat description" -msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -msgstr "Düz hatlar yazdırılırken akış dengelenmesi. Sadece kablo yazdırmaya uygulanır." - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay label" -msgid "WP Top Delay" -msgstr "WP Üst Gecikme" - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay description" -msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -msgstr "Yukarı hattın sertleşmesi için, yukarıya doğru hareketten sonraki gecikme süresi. Sadece kablo yazdırmaya uygulanır." - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay label" -msgid "WP Bottom Delay" -msgstr "WP Alt Gecikme" - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay description" -msgid "Delay time after a downward move. Only applies to Wire Printing." -msgstr "Aşağı doğru hareketten sonraki bekleme süresi. Sadece kablo yazdırmaya uygulanır." - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay label" -msgid "WP Flat Delay" -msgstr "WP Düz Gecikme" - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay description" -msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -msgstr "İki yatay dilim arasındaki gecikme süresi. Haha uzun gecikmeler düşüşe neden olduğu halde, bu tür bir gecikme uygulamak bağlantı noktalarındaki önceki katmanlara daha iyi yapışma sağlayabilir. Sadece kablo yazdırmaya uygulanır." - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed label" -msgid "WP Ease Upward" -msgstr "WP Kolay Yukarı Çıkma" - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed description" -msgid "" -"Distance of an upward move which is extruded with half speed.\n" -"This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "" -"Yarı hızda sıkıştırılmış yukarı doğru hareket mesafesi.\n" -"Bu katmanlarda malzemeyi çok fazla ısıtmayarak önceki katmanlarda daha iyi yapışma sağlayabilir. Sadece kablo yazdırmaya uygulanır." - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump label" -msgid "WP Knot Size" -msgstr "WP Düğüm Boyutu" - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump description" -msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -msgstr "Ardından gelen yatay katmanın daha iyi bir bağlanma şansının olması için, yukarı doğru çıkan hattın ucunda küçük bir düğüm oluşturulur. Sadece kablo yazdırmaya uygulanır." - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down label" -msgid "WP Fall Down" -msgstr "WP Aşağı İnme" - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down description" -msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "Malzemenin yukarı doğru ekstrüzyondan sonra aşağı inme mesafesi. Mesafe telafi edilir. Sadece kablo yazdırmaya uygulanır." - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along label" -msgid "WP Drag Along" -msgstr "WP Sürüklenme" - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along description" -msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "Yukarı yönlü ekstrüzyon materyalinin çapraz şekilde aşağı yönlü ekstrüzyona sürüklendiği mesafe. Mesafe telafi edilir. Sadece kablo yazdırmaya uygulanır." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy label" -msgid "WP Strategy" -msgstr "WP Stratejisi" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy description" -msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -msgstr "Art arda gelen iki katmanın her bir bağlantı noktasına bağlı olduğundan emin olma stratejisi. Geri çekme yukarı yöndeki hatların doğru konumda sertleşmesini sağlar ancak filaman aşınmasına neden olabilir. Düğüme bağlanma şansını artırmak ve hattın soğumasını sağlamak için yukarı yöndeki hattın ucunda bir düğüm oluşturulabilir, fakat bu işlem daha yavaş yazdırma hızı gerektirir. Başka bir strateji de yukarı yöndeki hat ucunun düşmesini dengelemektir, ancak hatlar her zaman beklenildiği gibi düşmez." - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option compensate" -msgid "Compensate" -msgstr "Dengele" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option knot" -msgid "Knot" -msgstr "Düğüm" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option retract" -msgid "Retract" -msgstr "Geri Çek" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down label" -msgid "WP Straighten Downward Lines" -msgstr "WP Aşağı Yöndeki Hatları Güçlendirme" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down description" -msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -msgstr "Yatay hat parçasıyla kaplanan çapraz şekilde aşağı yöndeki hat yüzdesi. Bu, yukarı yöndeki hatların en baştaki noktasının düşmesini engelleyebilir. Sadece kablo yazdırmaya uygulanır." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down label" -msgid "WP Roof Fall Down" -msgstr "WP Tavandan Aşağı İnme" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down description" -msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -msgstr "“Belli belirsiz” yazdırılan yatay tavan hatlarının yazdırıldıklarındaki düşme mesafesi. Mesafe telafi edilir. Sadece kablo yazdırmaya uygulanır." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along label" -msgid "WP Roof Drag Along" -msgstr "WP Tavandan Sürüklenme" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along description" -msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -msgstr "Tavanın ana dış kısmına geri gelirken sürüklenen iç kısımdaki bir hattın son parçasının mesafesi. Mesafe telafi edilir. Sadece kablo yazdırmaya uygulanır." - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay label" -msgid "WP Roof Outer Delay" -msgstr "WP Tavan Dış Gecikmesi" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay description" -msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -msgstr "Tavanı oluşturacak dış çevresel uzunluklara harcanan zaman. Sürenin daha uzun olması daha iyi bir bağlantı sağlayabilir. Sadece kablo yazdırmaya uygulanır." - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance label" -msgid "WP Nozzle Clearance" -msgstr "WP Nozül Açıklığı" - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance description" -msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -msgstr "Nozül ve aşağı yöndeki hatlar arasındaki mesafe. Daha büyük açıklık, dik açısı daha küçük çapraz şekilde aşağı yöndeki hatların oluşmasına neden olur, dolayısıyla bu durum bir sonraki katman ile yukarı yönde daha az bağlantıya yol açar. Sadece kablo yazdırmaya uygulanır." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Uyarlanabilir Katmanların Kullanımı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Uyarlanabilir Katmanların Azami Değişkenliği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Uyarlanabilir Katmanların Değişkenlik Adım Boyu" - -#: fdmprinter.def.json -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ı." - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Uyarlanabilir Katman Topografisi Boyutu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Çıkıntılı Duvar Açısı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Çıkıntılı Duvar Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Köprü Ayarlarını Etkinleştir" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Minimum Köprü Duvarı Uzunluğu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Köprü Yüzey Alanı Destek Eşiği" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Maksimum Köprü Seyrek Dolgu Yoğunluğu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Köprü Duvarı Tarama" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Köprü Duvarı Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Köprü Duvarı Akışı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Köprü Yüzey Alanı Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Köprü Yüzey Alanı Akışı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Köprü Yüzey Alanı Yoğunluğu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Köprü Fan Hızı" - -#: fdmprinter.def.json -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ı." - -#: fdmprinter.def.json -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Köprüde Birden Fazla Katman Var" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Köprü İkinci Yüzey Alanı Hızı" - -#: fdmprinter.def.json -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ı." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Köprü İkinci Yüzey Alanı Akışı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Köprü İkinci Yüzey Alanı Yoğunluğu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Köprü İkinci Yüzey Alanı Fan Hızı" - -#: fdmprinter.def.json -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ı." - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Köprü Üçüncü Yüzey Alanı Hızı" - -#: fdmprinter.def.json -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ı." - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Köprü Üçüncü Yüzey Alanı Akışı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Köprü Üçüncü Yüzey Alanı Yoğunluğu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Köprü Üçüncü Yüzey Alanı Fan Hızı" - -#: fdmprinter.def.json -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ı." - -#: fdmprinter.def.json -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Katmanlar Arasındaki Sürme Nozülü" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Sürme Hareketleri Arasındaki Malzeme Hacmi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Sürme Geri Çekmenin Etkinleştirilmesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Sürme Geri Çekme Mesafesi" - -#: fdmprinter.def.json -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ı." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Sürme Geri Çekme Sırasındaki İlave Astar Miktarı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Sürme Geri Çekme Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Sürme Geri Çekme Sırasındaki Çekim Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -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ı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Sürmeyi Durdurma" - -#: fdmprinter.def.json -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Geri çekmenin geri alınmasından sonraki duraklama." - -#: fdmprinter.def.json -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Sürme Z Sıçraması" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Sürme Z Sıçraması Yüksekliği" - -#: fdmprinter.def.json -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ı." - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Sürme Sıçrama Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Sürme Fırçası X Konumu" - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "Sürme komutunun başlatılacağı X konumu." - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Sürme Tekrar Sayısı" - -#: fdmprinter.def.json -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ı." - -#: fdmprinter.def.json -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Sürme Hareket Mesafesi" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Maksimum Küçük Delik Boyutu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Maksimum Küçük Özellik Uzunluğu" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Küçük Özellik Hızı" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Küçük Özellik İlk Katman Hızı" - -#: fdmprinter.def.json -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" #: fdmprinter.def.json msgctxt "material_alternate_walls label" @@ -6581,34 +197,349 @@ msgid "Alternate wall directions every other layer and inset. Useful for materia 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." #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Radye İç Köşelerini Kaldır" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Alüminyum" #: fdmprinter.def.json -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 "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "Her Zaman Aktif Aracı Yaz" #: fdmprinter.def.json -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Radye Tabanı Duvar Sayısı" +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." #: fdmprinter.def.json -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 "hole_xy_offset description" +msgid "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." +msgstr "Her bir katmandaki tüm deliklere uygulanan ofset miktarıdır. Pozitif değerler deliklerin boyutunu artırırken, negatif değerler deliklerin boyutunu düşürür." #: fdmprinter.def.json -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Komut Satırı Ayarları" +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." #: fdmprinter.def.json -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 "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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Destek zeminlerine uygulanan ofset miktarı." + +#: fdmprinter.def.json +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Destek çatılarına uygulanan ofset miktarı." + +#: fdmprinter.def.json +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Destek arayüzü poligonlarına uygulanan ofset miktarı." + +#: fdmprinter.def.json +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ı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Çıkıntı Önleme Örgüsü" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Sızma Önleme Geri Çekme Mesafesi" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Sızma Önleme Geri Çekme Hızı" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Hareket Sırasında Yazdırılan Bölümleri Atlama" + +#: fdmprinter.def.json +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Hareket Sırasında Destekleri Atla" + +#: fdmprinter.def.json +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Geri" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Sol Arka" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Sağ Arka" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Her İkisi" + +#: fdmprinter.def.json +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Alt katmanlar" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Alt Şekil İlk Katmanı" + +#: fdmprinter.def.json +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Alt Yüzey Genişleme Mesafesi" + +#: fdmprinter.def.json +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Alt Yüzey Kaldırma Genişliği" + +#: fdmprinter.def.json +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Alt Kalınlık" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Geri Çekme Pozisyonunda Durma Mesafesi" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Durma Payına Uygun Geri Çekme Hızı" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Kopma Hazırlığı Sıcaklığı" + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Kopma Geri Çekme Mesafesi" + +#: fdmprinter.def.json +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Kopma Geri Çekme Hızı" + +#: fdmprinter.def.json +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Kopma Sıcaklığı" + +#: fdmprinter.def.json +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Parçalarda Döküm Desteği" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Köprü Fan Hızı" + +#: fdmprinter.def.json +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Köprüde Birden Fazla Katman Var" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Köprü İkinci Yüzey Alanı Yoğunluğu" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Köprü İkinci Yüzey Alanı Fan Hızı" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Köprü İkinci Yüzey Alanı Akışı" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Köprü İkinci Yüzey Alanı Hızı" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Köprü Yüzey Alanı Yoğunluğu" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Köprü Yüzey Alanı Akışı" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Köprü Yüzey Alanı Hızı" + +#: fdmprinter.def.json +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Köprü Yüzey Alanı Destek Eşiği" + +#: fdmprinter.def.json +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Maksimum Köprü Seyrek Dolgu Yoğunluğu" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Köprü Üçüncü Yüzey Alanı Yoğunluğu" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Köprü Üçüncü Yüzey Alanı Fan Hızı" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Köprü Üçüncü Yüzey Alanı Akışı" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Köprü Üçüncü Yüzey Alanı Hızı" + +#: fdmprinter.def.json +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Köprü Duvarı Tarama" + +#: fdmprinter.def.json +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Köprü Duvarı Akışı" + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Köprü Duvarı Hızı" + +#: fdmprinter.def.json +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Kenar" + +#: fdmprinter.def.json +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Uç Mesafesi" + +#: fdmprinter.def.json +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "Kenar İçi Kaçınma Payı" + +#: fdmprinter.def.json +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Kenar Hattı Sayısı" + +#: fdmprinter.def.json +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Sadece Dış Kısımdaki Kenar" + +#: fdmprinter.def.json +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Kenar, Desteği Değiştirir" + +#: fdmprinter.def.json +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Kenar Genişliği" + +#: fdmprinter.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Yapı Levhası Yapıştırması" + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Yapı Levhası Yapıştırma Ekstruderi" + +#: fdmprinter.def.json +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Yapı Levhası Türü" + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Yapı Levhası Malzemesi" + +#: fdmprinter.def.json +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Yapı Levhası Şekli" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Yapı Levhası Sıcaklığı" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "İlk Katman Yapı Levhası Sıcaklığı" + +#: fdmprinter.def.json +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Yapı Disk Bölümü Sıcaklığı" #: fdmprinter.def.json msgctxt "center_object label" @@ -6616,1066 +547,6211 @@ msgid "Center Object" msgstr "Nesneyi ortalayın" #: fdmprinter.def.json -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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Tarama Hızı" + +#: fdmprinter.def.json +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Tarama Hacmi" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Tarama Modu" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Komut Satırı Ayarları" + +#: fdmprinter.def.json +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Eş Merkezli" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" + +#: fdmprinter.def.json +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Eş Merkezli" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Eş merkezli" + +#: fdmprinter.def.json +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Konik Destek Açısı" + +#: fdmprinter.def.json +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Koni Desteğinin Minimum Genişliği" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Dolgu Hatlarını Bağlayın" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Dolgu Poligonlarını Bağla" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Destek Çizgilerini Bağla" + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Destek Zikzaklarını Bağla" + +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Üst/Alt Poligonları Bağla" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Soğuma hızı" + +#: fdmprinter.def.json +msgctxt "cooling description" +msgid "Cooling" +msgstr "Soğuma" + +#: fdmprinter.def.json +msgctxt "cooling label" +msgid "Cooling" +msgstr "Soğuma" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Çapraz" + +#: fdmprinter.def.json +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Çapraz" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Çapraz 3D" + +#: fdmprinter.def.json +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Çapraz 3D Cebin Boyutu" + +#: fdmprinter.def.json +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ü" + +#: fdmprinter.def.json +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Çapraz Dolgu Yoğunluğu Görüntüsü" + +#: fdmprinter.def.json +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Kristalli Malzeme" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Kübik" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Kübik Alt Bölüm" + +#: fdmprinter.def.json +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Kübik Alt Bölüm Kalkanı" + +#: fdmprinter.def.json +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Kesme Örgüsü" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Varsayılan İvme" + +#: fdmprinter.def.json +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Varsayılan Yapı Levhası Sıcaklığı" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Varsayılan Filaman Salınımı" + +#: fdmprinter.def.json +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Varsayılan Yazdırma Sıcaklığı" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Varsayılan X-Y Salınımı" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Varsayılan Z Salınımı" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Çap" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "İzin Verilmeyen Alanlar" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support." +msgstr "Baskıdan desteğin altına olan mesafe." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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. This value is rounded up to a multiple of the layer height." +msgstr "Destek yapısının üst/alt kısmından baskıya olan mesafe. Bu boşluk, model yazdırıldıktan sonra desteklerin sökülmesi için açıklık sağlar. Bu değer, katman yüksekliğinin iki katına kadar yuvarlanır." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Cereyan Kalkanı Yüksekliği" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Cereyan Kalkanı Sınırlaması" + +#: fdmprinter.def.json +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Cereyan Kalkanı X/Y Mesafesi" + +#: fdmprinter.def.json +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Alçalan Destek Örgüsü" + +#: fdmprinter.def.json +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "İkili ekstrüzyon" + +#: fdmprinter.def.json +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Eliptik" + +#: fdmprinter.def.json +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "İvme Kontrolünü Etkinleştir" + +#: fdmprinter.def.json +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Köprü Ayarlarını Etkinleştir" + +#: fdmprinter.def.json +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Taramayı Etkinleştir" + +#: fdmprinter.def.json +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Konik Desteği Etkinleştir" + +#: fdmprinter.def.json +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Cereyan Kalkanını Etkinleştir" + +#: fdmprinter.def.json +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Ütülemeyi Etkinleştir" + +#: fdmprinter.def.json +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Salınım Kontrolünü Etkinleştir" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Nozül Sıcaklığı Kontrolünü Etkinleştir" + +#: fdmprinter.def.json +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Sızdırma Kalkanını Etkinleştir" + +#: fdmprinter.def.json +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "İlk Damlayı Etkinleştir" + +#: fdmprinter.def.json +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "İlk Direği Etkinleştir" + +#: fdmprinter.def.json +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Yazdırma Soğutmayı Etkinleştir" + +#: fdmprinter.def.json +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Geri Çekmeyi Etkinleştir" + +#: fdmprinter.def.json +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Destek Kenarını Etkinleştir" + +#: fdmprinter.def.json +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Destek Zeminini Etkinleştir" + +#: fdmprinter.def.json +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Destek Arayüzünü Etkinleştir" + +#: fdmprinter.def.json +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Destek Çatısını Etkinleştir" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Hareket İvmesini Etkinleştir" + +#: fdmprinter.def.json +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Hareket Salınımını Etkinleştir" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "G-code’u Sonlandır" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Filament Temizliği Bitiş Uzunluğu" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Filament Temizliği Bitiş Hızı" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Her bölüm" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Dışlayıcı" + +#: fdmprinter.def.json +msgctxt "experimental label" +msgid "Experimental" +msgstr "Deneysel" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Dikişi Açığa Çıkar" + +#: fdmprinter.def.json +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Geniş Dikiş" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Ekstra Dolgu Duvar Sayısı" + +#: fdmprinter.def.json +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Ek Dış Katman Duvar Sayısı" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Extruder İlk X konumu" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Extruder İlk Y konumu" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Ekstruder İlk Z konumu" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Ekstrüderler Isıtıcıyı Paylaşır" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Ekstrüder Nozül Paylaşımı" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Fan Hızı" + +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Fan Hızı Geçersiz Kılma" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Henüz tamamen detaylandırılmamış özelliklerdir." + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Besleyici Çark Çapı" + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Son Yazdırma Sıcaklığı" + +#: fdmprinter.def.json +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Üretici Yazılımı Geri Çekme" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "İlk Katman Destek Ekstruderi" + +#: fdmprinter.def.json +msgctxt "material_flow label" +msgid "Flow" +msgstr "Akış" + +#: fdmprinter.def.json +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Akış Eşitleme Oranı" + +#: fdmprinter.def.json +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Akış hızı dengeleme çarpanı" + +#: fdmprinter.def.json +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Akış hızı dengelemesi maksimum ekstrüzyon kayması" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Akış Sıcaklık Grafiği" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Dolgu hatlarının akış telafisidir." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Temel kule hatlarının akış telafisidir." + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Etek veya kenar hatlarının akış telafisidir." + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Destek zemin hatlarının akış telafisidir." + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Destek çatı hatlarının akış telafisidir." + +#: fdmprinter.def.json +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Destek yapı hatlarının akış telafisidir." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "En dıştaki duvar hattının akış telafisidir." + +#: fdmprinter.def.json +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Üst/alt hatların akış telafisidir." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Duvar hatlarının akış telafisidir." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Temizleme Uzunluğu" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Temizleme Hızı" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Ön" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Sol Ön" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Sağ Ön" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Tam" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Belirsiz Dış Katman" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Belirsiz Dış Katman Yoğunluğu" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Yalnızca Belirsiz Dış Katman" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Belirsiz Dış Katman Noktası Mesafesi" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Belirsiz Dış Katman Kalınlığı" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "G-code türü" + +#: fdmprinter.def.json +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ı (\n" +" ile ayrılır)." + +#: fdmprinter.def.json +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ı\n" +"." + +#: fdmprinter.def.json +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "Malzemedeki GUID Otomatik olarak ayarlanır." + +#: fdmprinter.def.json +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Portal Yüksekliği" + +#: fdmprinter.def.json +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "İç İçe Geçen Yapı Oluşturma" + +#: fdmprinter.def.json +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Oluşturma Desteği" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Cam" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Aşamalı Dolgu Basamak Yüksekliği" + +#: fdmprinter.def.json +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Aşamalı Dolgu Basamakları" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Aşamalı Destek Dolgusu Basamak Yüksekliği" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Kademeli Destek Dolgusu Aşamaları" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Izgara" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Izgara" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Izgara" + +#: fdmprinter.def.json +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Izgara" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Izgara" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +#: fdmprinter.def.json +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" + +#: fdmprinter.def.json +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Yapı Hacmi Sıcaklığı Dengesi Mevcut" + +#: fdmprinter.def.json +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Isıtılmış Yapı Levhası İçerir" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Isınma Hızı" + +#: fdmprinter.def.json +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Isı Bölgesi Uzunluğu" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Dikişi Gizle" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Dikişi Gizle veya Açığa Çıkar" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Delik Yatay Büyüme" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Yatay Büyüme" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Yatay Ölçekleme Faktörü Büzülme Telafisi" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance description" +msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." +msgstr "Dalların modele temas ettiklerinde birbirlerine ne kadar uzaklıkta olacakları. Bu mesafenin kısa yapılması ağaç desteğin modele daha fazla noktada temas etmesini sağlayarak daha iyi bir sarkma sunacaktır ancak desteğin sökülmesini de daha güç hale getirecektir." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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ğı." + +#: fdmprinter.def.json +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ğı." + +#: fdmprinter.def.json +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ğı." + +#: fdmprinter.def.json +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ğı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Yapı Levhası Sıcaklığını Ekle" + +#: fdmprinter.def.json +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Malzeme Sıcaklıklarını Ekle" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Kapsayıcı" + +#: fdmprinter.def.json +msgctxt "infill description" +msgid "Infill" +msgstr "Dolgu" + +#: fdmprinter.def.json +msgctxt "infill label" +msgid "Infill" +msgstr "Dolgu" + +#: fdmprinter.def.json +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Dolgu İvmesi" + +#: fdmprinter.def.json +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Duvarlardan Önce Dolgu" + +#: fdmprinter.def.json +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Dolgu Yoğunluğu" + +#: fdmprinter.def.json +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Dolgu Ekstruderi" + +#: fdmprinter.def.json +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Dolgu Akışı" + +#: fdmprinter.def.json +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Dolgu Salınımı" + +#: fdmprinter.def.json +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Dolgu Katmanı Kalınlığı" + +#: fdmprinter.def.json +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Dolgu Hattı Yönleri" + +#: fdmprinter.def.json +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Dolgu Hattı Mesafesi" + +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Dolgu Hattı Çoğaltıcı" + +#: fdmprinter.def.json +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Dolgu Hattı Genişliği" + +#: fdmprinter.def.json +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Dolgu Ağı" + +#: fdmprinter.def.json +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Dolum Çıkıntı Açısı" + +#: fdmprinter.def.json +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Dolgu Çakışması" + +#: fdmprinter.def.json +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Dolgu Çakışma Oranı" + +#: fdmprinter.def.json +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Dolgu Şekli" + +#: fdmprinter.def.json +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Dolgu Hızı" + +#: fdmprinter.def.json +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Dolgu Desteği" + +#: fdmprinter.def.json +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Dolgu Hareket Optimizasyonu" + +#: fdmprinter.def.json +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Dolgu Sürme Mesafesi" + +#: fdmprinter.def.json +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Dolgu X Kayması" + +#: fdmprinter.def.json +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Dolgu Y Kayması" + +#: fdmprinter.def.json +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "İlk Alt Katmanlar" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "İlk Fan Hızı" + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "İlk Katman İvmesi" + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "İlk Katman Alt Akışı" + +#: fdmprinter.def.json +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "İlk Katman Akışı" + +#: fdmprinter.def.json +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "İlk Katman Yüksekliği" + +#: fdmprinter.def.json +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "İlk Katmanın Yatay Genişlemesi" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "İlk Katman İç Duvar Akışı" + +#: fdmprinter.def.json +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "İlk Katman Salınımı" + +#: fdmprinter.def.json +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "İlk Katman Hat Genişliği" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "İlk Katman Dış Duvar Akışı" + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "İlk Katman Yazdırma İvmesi" + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "İlk Katman Yazdırma Salınımı" + +#: fdmprinter.def.json +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "İlk Katman Yazdırma Hızı" + +#: fdmprinter.def.json +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "İlk Katman Hızı" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "İlk Katman Destek Hattı Mesafesi" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "İlk Katman Hareket İvmesi" + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "İlk Katman Hareket Salınımı" + +#: fdmprinter.def.json +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "İlk Katman Hareket Hızı" + +#: fdmprinter.def.json +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "İlk Katman Z Çakışması" + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "İlk Yazdırma Sıcaklığı" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "İç Duvar İvmesi" + +#: fdmprinter.def.json +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "İç Duvar Ekstrüderi" + +#: fdmprinter.def.json +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "İç Duvar Salınımı" + +#: fdmprinter.def.json +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "İç Duvar Hızı" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "İç Duvar Akışı" + +#: fdmprinter.def.json +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "İç Duvar(lar) Hattı Genişliği" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "İçten Dışa" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "İç İçe Geçen Kiriş Katman Sayısı" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "İç İçe Geçme Genişliği" + +#: fdmprinter.def.json +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "İç İçe Geçme Sınırından Kaçınma" + +#: fdmprinter.def.json +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "İç İçe Geçme Derinliği" + +#: fdmprinter.def.json +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "İç İçe Geçen Yapı Uyumlaması" + +#: fdmprinter.def.json +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Sadece En Yüksek Katmanı Ütüle" + +#: fdmprinter.def.json +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Ütüleme İvmesi" + +#: fdmprinter.def.json +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Ütüleme Akışı" + +#: fdmprinter.def.json +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Ütüleme İlave Mesafesi" + +#: fdmprinter.def.json +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Ütüleme İvmesi Değişimi" + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Ütüleme Hattı Boşluğu" + +#: fdmprinter.def.json +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Ütüleme Modeli" + +#: fdmprinter.def.json +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Ütüleme Hızı" + +#: fdmprinter.def.json +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Merkez Nokta" + +#: fdmprinter.def.json +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?" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Bağlı Olmayan Yüzleri Tut" + +#: fdmprinter.def.json +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Katman Yüksekliği" + +#: fdmprinter.def.json +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "Katman Başlangıcı X" + +#: fdmprinter.def.json +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Katman Başlangıcı Y" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Radyenin orta katmanının katman kalınlığı." + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Üst radye katmanlarının katman kalınlığı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Sol" + +#: fdmprinter.def.json +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Yazıcı Başlığını Kaldır" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Yıldırım" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Yıldırım Dolgu Çıkıntı Açısı" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Yıldırım Dolgu Budama Açısı" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Yıldırım Dolgu Düzleştirme Açısı" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Yıldırım Dolgu Destek Açısı" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Sınırlı" + +#: fdmprinter.def.json +msgctxt "line_width label" +msgid "Line Width" +msgstr "Hat Genişliği" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" + +#: fdmprinter.def.json +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Çizgiler" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +#: fdmprinter.def.json +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Makine" + +#: fdmprinter.def.json +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Makine Derinliği" + +#: fdmprinter.def.json +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Makinenin Başlığı ve Fan Poligonu" + +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Makine Yüksekliği" + +#: fdmprinter.def.json +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Makine Türü" + +#: fdmprinter.def.json +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Makine Genişliği" + +#: fdmprinter.def.json +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Makine özel ayarları" + +#: fdmprinter.def.json +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Çıkıntıyı Yazdırılabilir Yap" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Hava boşluğundaki filaman kaybını telafi etmek için Z yönünde modelin ilk ve ikinci katmanını çakıştırın. İlk model katmanının üstündeki tüm modeller bu miktara indirilecektir." + +#: fdmprinter.def.json +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Kafesleri 3D baskı için daha uygun hale getirir." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volümetrik)" + +#: fdmprinter.def.json +msgctxt "material description" +msgid "Material" +msgstr "Malzeme" + +#: fdmprinter.def.json +msgctxt "material label" +msgid "Material" +msgstr "Malzeme" + +#: fdmprinter.def.json +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID malzeme" + +#: fdmprinter.def.json +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Sürme Hareketleri Arasındaki Malzeme Hacmi" + +#: fdmprinter.def.json +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Geri Çekmesiz Maks. Tarama Mesafesi" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Maksimum X İvmesi" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Maksimum Y İvmesi" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Maksimum Z İvmesi" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Maksimum Sapma" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Maksimum Ekstrüzyon Alanı Sapması" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Maksimum Fan Hızı" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Maksimum Filaman İvmesi" + +#: fdmprinter.def.json +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Maksimum Model Açısı" + +#: fdmprinter.def.json +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Maksimum Çıkıntı Deliği Alanı" + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Maksimum Durma Süresi" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Maksimum Çözünürlük" + +#: fdmprinter.def.json +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Maksimum Geri Çekme Sayısı" + +#: fdmprinter.def.json +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Genişleme için Maksimum Yüzey Açısı" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Maksimum Hız E" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Maksimum X Hızı" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Maksimum Y Hızı" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Maksimum Z Hızı" + +#: fdmprinter.def.json +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Kule Destekli Maksimum Çap" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Maksimum Hareket Çözünürlüğü" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Filaman motoru için maksimum ivme." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Birleştirilmiş Bileşim Çakışması" + +#: fdmprinter.def.json +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Ağ Onarımları" #: fdmprinter.def.json msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "Bileşim konumu X" -#: fdmprinter.def.json -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Nesneye x yönünde uygulanan ofset." - #: fdmprinter.def.json msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "Bileşim konumu Y" -#: fdmprinter.def.json -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Nesneye y yönünde uygulanan ofset." - #: fdmprinter.def.json msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "Bileşim konumu Z" #: fdmprinter.def.json -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ı" #: fdmprinter.def.json msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "Bileşim Rotasyon Matrisi" +#: fdmprinter.def.json +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Ortalayıcı" + +#: fdmprinter.def.json +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Minimum Kalıp Genişliği" + +#: fdmprinter.def.json +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Minimum Sürede Bekleme Sıcaklığı" + +#: fdmprinter.def.json +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Minimum Köprü Duvarı Uzunluğu" + +#: fdmprinter.def.json +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Minimum Çift Duvar Hattı Genişliği" + +#: fdmprinter.def.json +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Minimum Geri Çekme Mesafesi Penceresi" + +#: fdmprinter.def.json +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Minimum Yüz Hattı Boyutu" + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Minimum Besleme Hızı" + +#: fdmprinter.def.json +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Minimum Dolgu Alanı" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Minimum Katman Süresi" + +#: fdmprinter.def.json +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Minimum Tek Duvar Hattı Genişliği" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Minimum Poligon Çevre Uzunluğu" + +#: fdmprinter.def.json +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Genişleme için Minimum Yüzey Genişliği" + +#: fdmprinter.def.json +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Minimum Hız" + +#: fdmprinter.def.json +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Minimum Destek Bölgesi" + +#: fdmprinter.def.json +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Minimum Destek Zemini Bölgesi" + +#: fdmprinter.def.json +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Minimum Destek Arayüzü Bölgesi" + +#: fdmprinter.def.json +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Minimum Destek Çatısı Bölgesi" + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Minimum Destek X/Y Mesafesi" + +#: fdmprinter.def.json +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Minimum İnce Duvar Hattı Genişliği" + +#: fdmprinter.def.json +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Tarama Öncesi Minimum Hacim" + +#: fdmprinter.def.json +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Minimum Duvar Hattı Genişliği" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Kalıp" + +#: fdmprinter.def.json +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Kalıp Açısı" + +#: fdmprinter.def.json +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Kalıp Çatı Yüksekliği" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Monotonik Ütüleme Düzeni" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Monotonik Üst Yüzey Düzeni" + +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Monotonik Üst/Alt Düzeni" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Yük Taşıma Çarpanı Yok" + +#: fdmprinter.def.json +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Z Boşluklarında Dış Katman Oluşturma" + +#: fdmprinter.def.json +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Modellerinizi yazdırmanın geleneksel olmayan yollarıdır." + +#: fdmprinter.def.json +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Hiçbiri" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Hiçbiri" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normal" + +#: fdmprinter.def.json +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normal" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Yüzey Alanında Değil" + +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Dış Yüzeyde Değil" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Nozül Açısı" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Nozül Çapı" + +#: fdmprinter.def.json +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Nozül İzni Olmayan Alanlar" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Nozül Kimliği" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Nozül Uzunluğu" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Nozül Değişiminin İlk Hızı" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Nozül Değişiminin Geri Çekme Hızı" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Nozül Anahtarı Geri Çekme Mesafesi" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Nozül Anahtarı Geri Çekme Hızı" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Ekstrüder Sayısı" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Etkinleştirilmiş Ekstruder Sayısı" + +#: fdmprinter.def.json +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Daha Yavaş Katman Sayısı" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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ı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Sekizlik" + +#: fdmprinter.def.json +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Kapalı" + +#: fdmprinter.def.json +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Nesneye x yönünde uygulanan ofset." + +#: fdmprinter.def.json +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Nesneye y yönünde uygulanan ofset." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Ekstruder Ofseti" + +#: fdmprinter.def.json +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Birer Birer" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Sadece modelin dış kısmındaki kenarı yazdırır. Yatak yapışmasını büyük oranda azaltmasa da daha sonra kaldırmanız gereken kenar sayısını azaltır." + +#: fdmprinter.def.json +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Sızdırma Kalkanı Açısı" + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Sızdırma Kalkanı Mesafesi" + +#: fdmprinter.def.json +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Duvar Yazdırma Sırasını Optimize Et" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Dış Nozül Çapı" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Dış Duvar İvmesi" + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Dış Duvar Ekstruderi" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Dış Duvar Akışı" + +#: fdmprinter.def.json +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Dış Duvar İlavesi" + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Dış Duvar Salınımı" + +#: fdmprinter.def.json +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Dış Duvar Hattı Genişliği" + +#: fdmprinter.def.json +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Dış Duvar Hızı" + +#: fdmprinter.def.json +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Dış Duvar Sürme Mesafesi" + +#: fdmprinter.def.json +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "Dıştan İçe" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Çıkıntılı Duvar Açısı" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Çıkıntılı Duvar Hızı" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Geri çekmenin geri alınmasından sonraki duraklama." + +#: fdmprinter.def.json +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ı." + +#: fdmprinter.def.json +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ı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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ı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "İlk Direk İvmesi" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Brim" +msgstr "Astarlama Direği Kenarı" + +#: fdmprinter.def.json +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "İlk Direk Akışı" + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "İlk Direk Salınımı" + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "İlk Direk Hattı Genişliği" + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "İlk Direğin Minimum Hacmi" + +#: fdmprinter.def.json +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "İlk Direk Boyutu" + +#: fdmprinter.def.json +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "İlk Direk Hızı" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "İlk Direk X Konumu" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "İlk Direk Y Konumu" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +msgstr "Model ihtiyaç duymasa da astarlama direkleri bir kenarın sağladığı ekstra yapışkanlığa ihtiyaç duyabilir. Şu anda \"radye\" yapışma tipi ile birlikte kullanılamamaktadır." + +#: fdmprinter.def.json +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Yazdırma İvmesi" + +#: fdmprinter.def.json +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Yazdırma İvmesi Değişimi" + +#: fdmprinter.def.json +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Yazdırma Dizisi" + +#: fdmprinter.def.json +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Yazdırma Hızı" + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "İnce Duvarları Yazdır" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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ı." + +#: fdmprinter.def.json +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ı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Yazdırma Sıcaklığı" + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "İlk Katman Yazdırma Sıcaklığı" + +#: fdmprinter.def.json +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "resolution label" +msgid "Quality" +msgstr "Kalite" + +#: fdmprinter.def.json +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Çeyrek Kübik" + +#: fdmprinter.def.json +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Radye" + +#: fdmprinter.def.json +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Radye Hava Boşluğu" + +#: fdmprinter.def.json +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Radye Taban Ekstrüderi" + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Radyenin Taban Fan Hızı" + +#: fdmprinter.def.json +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Radye Taban Hat Genişliği" + +#: fdmprinter.def.json +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Radyenin Taban Hat Genişliği" + +#: fdmprinter.def.json +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Radyenin Taban Yazdırma İvmesi" + +#: fdmprinter.def.json +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Radyenin Taban Yazdırma Salınımı" + +#: fdmprinter.def.json +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Radyenin Taban Yazdırma Hızı" + +#: fdmprinter.def.json +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Radye Taban Kalınlığı" + +#: fdmprinter.def.json +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Radye Tabanı Duvar Sayısı" + +#: fdmprinter.def.json +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Ek Radye Boşluğu" + +#: fdmprinter.def.json +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Radye Fan Hızı" + +#: fdmprinter.def.json +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Radye Orta Ekstrüderi" + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Radyenin Orta Fan Hızı" + +#: fdmprinter.def.json +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Radye Orta Katmanları" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Radyenin Orta Hat Genişliği" + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Radyenin Orta Yazdırma İvmesi" + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Radyenin Orta Yazdırma Salınımı" + +#: fdmprinter.def.json +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Radyenin Orta Yazdırma Hızı" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Radye Orta Boşluğu" + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Radye Orta Kalınlığı" + +#: fdmprinter.def.json +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Radye Yazdırma İvmesi" + +#: fdmprinter.def.json +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Radye Yazdırma Salınımı" + +#: fdmprinter.def.json +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Radye Yazdırma Hızı" + +#: fdmprinter.def.json +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Radye Düzeltme" + +#: fdmprinter.def.json +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Radye Üst Ekstrüderi" + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Radye Üst Fan Hızı" + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Radyenin Üst Katman Kalınlığı" + +#: fdmprinter.def.json +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Radyenin Üst Katmanları" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Radyenin Üst Hat Genişliği" + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Radye Üst Yazdırma İvmesi" + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Radye Üst Yazdırma Salınımı" + +#: fdmprinter.def.json +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Radye Üst Yazdırma Hızı" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Radyenin Üst Boşluğu" + +#: fdmprinter.def.json +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Gelişigüzel" + +#: fdmprinter.def.json +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Rastgele Boşluk Doldurma Başlat" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Dikdörtgen" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Olağan Fan Hızı" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Yüksekteki Olağan Fan Hızı" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Katmandaki Olağan Fan Hızı" + +#: fdmprinter.def.json +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ı" + +#: fdmprinter.def.json +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Bağıl Ekstrüzyon" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Tüm Boşlukları Kaldır" + +#: fdmprinter.def.json +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Boş İlk Katmanları Kaldır" + +#: fdmprinter.def.json +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Bileşim Kesişimini Kaldırın" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Radye İç Köşelerini Kaldır" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution description" +msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." +msgstr "Modele çarpmamak adına çarpışmaları hesaplamak için çözünürlük. Buna düşük bir değerin verilmesi daha az hata çıkaran daha isabetli ağaçların üretilmesini sağlar ancak dilimleme süresini önemli ölçüde artırır." + +#: fdmprinter.def.json +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Dış Duvardan Önce Geri Çek" + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Katman Değişimindeki Geri Çekme" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Geri Çekme Mesafesi" + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Geri Çekme Sırasındaki İlave Astar Miktarı" + +#: fdmprinter.def.json +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Minimum Geri Çekme Hareketi" + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Geri Çekme Sırasındaki Astar Hızı" + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Geri Çekme Sırasındaki Çekim Hızı" + +#: fdmprinter.def.json +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Geri Çekme Hızı" + +#: fdmprinter.def.json +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Sağ" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Ölçekleme Faktörü Büzülme Telafisi" + +#: fdmprinter.def.json +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "Sahnede Destek Örgüsü Var" + +#: fdmprinter.def.json +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Dikiş Köşesi Tercihi" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Çoklu ekstruderler ile yapılan yazdırmalar için kullanılan ayarlar." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Paylaşılan Nozül İlk Geri Çekme" + +#: fdmprinter.def.json +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "En Keskin Köşe" + +#: fdmprinter.def.json +msgctxt "shell description" +msgid "Shell" +msgstr "Kovan" + +#: fdmprinter.def.json +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "En kısa" + +#: fdmprinter.def.json +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Makine Varyantlarını Göster" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Kaplamanın Kenar Desteği Katmanları" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Kaplamanın Kenar Desteği Kalınlığı" + +#: fdmprinter.def.json +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Yüzey Genişleme Mesafesi" + +#: fdmprinter.def.json +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Yüzey Çakışması" + +#: fdmprinter.def.json +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Yüzey Çakışma Oranı" + +#: fdmprinter.def.json +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Yüzey Kaldırma Genişliği" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Etek" + +#: fdmprinter.def.json +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Etek Mesafesi" + +#: fdmprinter.def.json +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Etek Hattı Sayısı" + +#: fdmprinter.def.json +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Etek/Kenar İvmesi" + +#: fdmprinter.def.json +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Etek/Kenar Ekstrüderi" + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Etek/Kenar Akışı" + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Etek/Kenar İvmesi Değişimi" + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Etek/Kenar Hattı Genişliği" + +#: fdmprinter.def.json +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Minimum Etek/Kenar Uzunluğu" + +#: fdmprinter.def.json +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Etek/Kenar Hızı" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Dilimleme Toleransı" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Küçük Özellik İlk Katman Hızı" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Maksimum Küçük Özellik Uzunluğu" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Küçük Özellik Hızı" + +#: fdmprinter.def.json +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Maksimum Küçük Delik Boyutu" + +#: fdmprinter.def.json +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Küçük Katman Yazdırma Sıcaklığı" + +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Akıllı Gizleme" + +#: fdmprinter.def.json +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Helezon Şeklinde Düzeltme" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Özel Modlar" + +#: fdmprinter.def.json +msgctxt "speed description" +msgid "Speed" +msgstr "Hız" + +#: fdmprinter.def.json +msgctxt "speed label" +msgid "Speed" +msgstr "Hız" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Spiral Dış Çevre" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Bekleme Sıcaklığı" + +#: fdmprinter.def.json +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "G-code’u Başlat" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Milimetre Başına Adım (E)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Milimetre Başına Adım (X)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Milimetre Başına Adım (Y)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Milimetre Başına Adım (Z)" + +#: fdmprinter.def.json +msgctxt "support description" +msgid "Support" +msgstr "Destek" + +#: fdmprinter.def.json +msgctxt "support label" +msgid "Support" +msgstr "Destek" + +#: fdmprinter.def.json +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Destek İvmesi" + +#: fdmprinter.def.json +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Destek Alt Mesafesi" + +#: fdmprinter.def.json +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Destek Alt Duvar Hattı Sayısı" + +#: fdmprinter.def.json +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Destek Kenar Hattı Sayısı" + +#: fdmprinter.def.json +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Destek Kenar Genişliği" + +#: fdmprinter.def.json +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Destek Parçası Hattı Sayısı" + +#: fdmprinter.def.json +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Destek Parçasının Boyutu" + +#: fdmprinter.def.json +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Destek Yoğunluğu" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Destek Mesafesi Önceliği" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Destek Ekstruderi" + +#: fdmprinter.def.json +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Destek Zemini İvmesi" + +#: fdmprinter.def.json +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Destek Zemini Yoğunluğu" + +#: fdmprinter.def.json +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Destek Zemini Ekstrüderi" + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Destek Zemin Akışı" + +#: fdmprinter.def.json +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Destek Zemini Yatay Büyüme" + +#: fdmprinter.def.json +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Destek Zemini Sarsıntısı" + +#: fdmprinter.def.json +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Destek Zemin Hattı Yönleri" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Destek Zemini Çizgi Mesafesi" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Destek Zemini Çizgi Genişliği" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Destek Zemini Deseni" + +#: fdmprinter.def.json +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Destek Zemini Hızı" + +#: fdmprinter.def.json +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Destek Zemini Kalınlığı" + +#: fdmprinter.def.json +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Destek Akışı" + +#: fdmprinter.def.json +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Destek Yatay Büyüme" + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Destek Dolgusu İvmesi" + +#: fdmprinter.def.json +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Destek Dolgu Ekstruderi" + +#: fdmprinter.def.json +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Destek Dolgu İvmesi Değişimi" + +#: fdmprinter.def.json +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Destek Dolgusu Katmanı Kalınlığı" + +#: fdmprinter.def.json +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Destek Dolgu Hattı Yönü" + +#: fdmprinter.def.json +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Destek Dolgu Hızı" + +#: fdmprinter.def.json +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Destek Arayüzü İvmesi" + +#: fdmprinter.def.json +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Destek Arayüzü Yoğunluğu" + +#: fdmprinter.def.json +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Destek Arayüz Ekstruderi" + +#: fdmprinter.def.json +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Destek Ara Yüzeyi Akışı" + +#: fdmprinter.def.json +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Destek Arayüzü Yatay Büyüme" + +#: fdmprinter.def.json +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Destek Arayüz Salınımı" + +#: fdmprinter.def.json +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Destek Arabirim Hattı Yönleri" + +#: fdmprinter.def.json +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Destek Arayüz Hattı Genişliği" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Destek Arayüzü Şekli" + +#: fdmprinter.def.json +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Destek Arayüz Çözünürlüğü" + +#: fdmprinter.def.json +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Destek Arayüzü Hızı" + +#: fdmprinter.def.json +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Destek Arayüzü Kalınlığı" + +#: fdmprinter.def.json +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Destek Arayüzü Duvar Hattı Sayısı" + +#: fdmprinter.def.json +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Destek Salınımı" + +#: fdmprinter.def.json +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Destek Birleşme Mesafesi" + +#: fdmprinter.def.json +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Destek Hattı Mesafesi" + +#: fdmprinter.def.json +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Destek Hattı Genişliği" + +#: fdmprinter.def.json +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Destek Örgüsü" + +#: fdmprinter.def.json +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Destek Çıkıntı Açısı" + +#: fdmprinter.def.json +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Destek Şekli" + +#: fdmprinter.def.json +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Destek Yerleştirme" + +#: fdmprinter.def.json +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Destek Çatısı İvmesi" + +#: fdmprinter.def.json +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Destek Çatısı Yoğunluğu" + +#: fdmprinter.def.json +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Destek Çatısı Ekstrüderi" + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Destek Çatı Akışı" + +#: fdmprinter.def.json +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Destek Çatısı Yatay Büyüme" + +#: fdmprinter.def.json +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Destek Çatısı Sarsıntısı" + +#: fdmprinter.def.json +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Destek Çatı Hattı Yönleri" + +#: fdmprinter.def.json +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Destek Çatısı Çizgi Mesafesi" + +#: fdmprinter.def.json +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Destek Çatısı Çizgi Genişliği" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Destek Çatısı Deseni" + +#: fdmprinter.def.json +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Destek Çatısı Hızı" + +#: fdmprinter.def.json +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Destek Tavanı Kalınlığı" + +#: fdmprinter.def.json +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Destek Çatı Duvar Hattı Sayısı" + +#: fdmprinter.def.json +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Destek Hızı" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Destek Merdiveni Basamak Yüksekliği" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Destek Merdiveni Maksimum Basamak Genişliği" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Basamak Desteğinin Minimum Eğim Açısı" + +#: fdmprinter.def.json +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Destek Yapısı" + +#: fdmprinter.def.json +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Destek Üst Mesafesi" + +#: fdmprinter.def.json +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Duvar Hattı Sayısını Destekle" + +#: fdmprinter.def.json +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Destek X/Y Mesafesi" + +#: fdmprinter.def.json +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Destek Z Mesafesi" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Desteklenen Yüzey Fan Hızı" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Yüzey" + +#: fdmprinter.def.json +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Yüzey Enerjisi" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Yüzey Modu" + +#: fdmprinter.def.json +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Yüzeye yapışma eğilimi." + +#: fdmprinter.def.json +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Yüzey enerjisi." + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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ı." + +#: fdmprinter.def.json +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ı." + +#: fdmprinter.def.json +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ı." + +#: fdmprinter.def.json +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ı." + +#: fdmprinter.def.json +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ı." + +#: fdmprinter.def.json +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ı." + +#: fdmprinter.def.json +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ı." + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "İlk katmanın yazdırıldığı ivme." + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "İlk katman için belirlenen ivme." + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "İlk katmandaki hareket hamlelerinin ivmesi." + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "İlk katmandaki hareket hamlelerinin ivmesi." + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "İç duvarların yazdırıldığı ivme." + +#: fdmprinter.def.json +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "Dolgunun yazdırıldığı ivme." + +#: fdmprinter.def.json +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "Ütülemenin gerçekleştiği ivme." + +#: fdmprinter.def.json +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Yazdırmanın gerçekleştiği ivme." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Destek dolgusunun yazdırıldığı ivme." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "En dış duvarların yazdırıldığı ivme." + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "İlk direğin yazdırıldığı ivme." + +#: fdmprinter.def.json +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "Radyenin yazdırıldığı ivme." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Destek yapısının yazdırıldığı ivme." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Duvarların yazdırıldığı ivme." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Üst/alt katmanların yazdırıldığı ivme." + +#: fdmprinter.def.json +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Hareket hamlelerinin ivmesi." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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çı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_tree_angle description" +msgid "The angle of the branches. 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 açısı. Daha dikey ve daha stabil olmaları için daha düşük bir açı kullanın. Daha fazla erişim için daha yüksek bir açı kullanın." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "Yazıcı başlığı hareketinin varsayılan ivmesi." + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "Yazdırılabilir alan derinliği (Y yönü)." + +#: fdmprinter.def.json +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "Özel bir direğin çapı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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ı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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ı." + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "Ütüleme hatları arasında bulunan mesafe." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Radyenin taban katmanı için fan hızı." + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "Radyenin orta katmanı için fan hızı." + +#: fdmprinter.def.json +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Radye için fan hızı." + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Üst radye katmanları için fan hızı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Yazdırılabilir alan yüksekliği (Z yönü)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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ı." + +#: fdmprinter.def.json +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ı." + +#: fdmprinter.def.json +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ı." + +#: fdmprinter.def.json +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ı." + +#: fdmprinter.def.json +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ı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" +"Baskının eteği ve ilk katmanı arasındaki yatay mesafe.\n" +"Minimum mesafedir. Bu mesafeden çok sayıda etek hattı dışarı doğru uzanır." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "Radyenin yazdırıldığı salınım." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "Filamanın maksimum hızı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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ı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "3B yazıcı modelinin adı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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ığı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Nozül ucunun dış çapı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "En üst yüzeyin şekli." + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Üst/alt katmanların şekli." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Üst yüzeyleri ütülemek için kullanılacak model." + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "Destek zeminlerinin yazdırıldığı desen." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Dolgunun gerçekleştiği hız." + +#: fdmprinter.def.json +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Yazdırmanın gerçekleştiği hız." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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ı." + +#: fdmprinter.def.json +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "Radyenin yazdırıldığı hız." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Duvarların yazdırıldığı hız." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Üst/alt katmanların yazdırıldığı hız." + +#: fdmprinter.def.json +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Hareket hamlelerinin hızı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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ığı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +msgstr "İlk katmanı yazdırmak için kullanılan sıcaklık. İlk katmanın özel kullanımını devre dışı bırakmak için 0’a ayarlayın." + +#: fdmprinter.def.json +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Yazdırma için kullanılan sıcaklık." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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ığı." + +#: fdmprinter.def.json +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ığı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Oluşturulacak g-code türü." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "Yazdırılabilir alan genişliği (X yönü)." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "İç içe geçen yapı kirişlerinin genişliği." + +#: fdmprinter.def.json +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "İlk Direk Genişliği." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "İlk direk konumunun x koordinatı." + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "İlk direk konumunun y koordinatı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Üst Katmanlar" + +#: fdmprinter.def.json +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Üst Yüzey Genişleme Mesafesi" + +#: fdmprinter.def.json +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Üst Yüzey Kaldırma Genişliği" + +#: fdmprinter.def.json +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Üst Yüzey İvmesi" + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Üst Yüzey Ekstruderi" + +#: fdmprinter.def.json +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Üst Yüzeyin Dış Katman Akışı" + +#: fdmprinter.def.json +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Üst Yüzey İvmesi Değişimi" + +#: fdmprinter.def.json +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Üst Yüzey Katmanları" + +#: fdmprinter.def.json +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Üst Yüzey Hat Yönleri" + +#: fdmprinter.def.json +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Üst Yüzey Hat Genişliği" + +#: fdmprinter.def.json +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Üst Yüzey Şekli" + +#: fdmprinter.def.json +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Üst Yüzey Hızı" + +#: fdmprinter.def.json +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Üst Kalınlık" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Üst / Alt" + +#: fdmprinter.def.json +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Üst / Alt" + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Üst/Alt İvme" + +#: fdmprinter.def.json +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Üst/Alt Ekstruderi" + +#: fdmprinter.def.json +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Üst/Alt Akış" + +#: fdmprinter.def.json +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Üst/Alt Salınımı" + +#: fdmprinter.def.json +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Üst/Alt Çizgi Yönleri" + +#: fdmprinter.def.json +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Üst/Alt Hat Genişliği" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Üst/Alt Şekil" + +#: fdmprinter.def.json +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Üst/Alt Hız" + +#: fdmprinter.def.json +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Üst/Alt Kalınlık" + +#: fdmprinter.def.json +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Yapı Levhasına Dokunma" + +#: fdmprinter.def.json +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Direk Çapı" + +#: fdmprinter.def.json +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Direk Tavanı Açısı" + #: fdmprinter.def.json 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 "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "Yazıcı başlığının 2B taslağı (fan başlıkları dahil)." - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Önce Dış Sonra İç Duvarlar" - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Etkinleştirilmişse, duvarları dıştan içe doğru yazdırır. ABS gibi yüksek viskoziteli plastik kullanılırken boyutsal kesinliğin artırılmasını sağlayabilir; öte yandan dış düzey baskı kalitesini, özellikle çıkmalı kirişlerde etkileyebilir." - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Duvar Çakışmalarının Telafi Edilmesi" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Halihazırda duvarın olduğu bir yere yazdırılan bir duvarın parçaları için akışı telafi eder." - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Dış Duvar Çakışmalarının Telafi Edilmesi" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Halihazırda dış duvarın olduğu bir yere yazdırılan bir dış duvarın parçaları için akışı telafi eder." - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "İç Duvar Çakışmalarının Telafi Edilmesi" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Halihazırda duvarın olduğu bir yere yazdırılan bir iç duvarın parçaları için akışı telafi eder." - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Minimum Duvar Akışı" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "Bir duvar hattı için izin verilen en düşük yüzde akımdır. Duvar çakışması, mevcut bir duvara yakın duruyorsa bir duvarın akışını azaltır. Akışları bu değerden düşük olan duvarların yerine hareket hamlesi konacaktır. Bu ayarı kullanırken duvar çakışma telafisini açmanız ve iç duvardan önce dış duvarı yazdırmanız gerekir." - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Geri Çekmeyi Tercih Et" - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Geri çekme etkinleştirildiğinde, akışları minimum akış eşiğinin altındaki duvarların yerini alacak hareketleri taramak yerine geri çekme kullanılır." - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Duvarlar Arasındaki Boşlukları Doldur" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Duvarların sığmadığı yerlerde duvarlar arasında kalan boşlukları doldurur." - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Hiçbir yerde" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Her bölüm" - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "Küçük Boşlukların Filtrelenmesi" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "Modelin dışındaki damlalarını azaltmak için küçük boşlukları filtreleyin." - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Filaman Akışını Eşitle" - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Saniye başına geçirilen malzeme sayısının aynı kalabilmesi için normalden ince hatları daha hızlı yazdırın. Modelinizdeki parçalar ayarlarda belirtilenden daha küçük hat genişliği olan hatların yazdırılmasını gerektirebilir. Bu ayar bu tür hatlar için hız değişikliklerini kontrol eder." - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Akışı Eşitlemek için Maksimum Hız" - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "Akışı eşitlemek için yazdırma hızını ayarlarken kullanılan maksimum yazdırma hızı." - -#~ 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ı \\n." - -#~ msgctxt "machine_end_gcode description" -#~ msgid "G-code commands to be executed at the very end - separated by \\n." -#~ msgstr "ile ayrılan, bitişte yürütülecek G-code komutları \\n." - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Maksimum besleme hızı" - -#~ 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 (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ 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 (iç) çatılarını destekleyerek dolgu miktarını en aza indirmeye çalışır. Bu durumda dolgu yüzdesi yalnızca bir katmanın altında 'geçerli' olur ve modeli destekler." - -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "Bir yıldırım dolgu katmanının hemen üstündeki katmanla ağaçların dış uzantılarının budanması şeklinde sahip olabileceği farktır. Dalların açısı olarak ölçülür." - -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ msgstr "Bir yıldırım dolgu katmanının hemen üstündeki katmanla ağaçların düzlenmesi şeklinde sahip olabileceği farktır. Dalların açısı olarak ölçülür." - -#~ 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." -#~ 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." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "Kalıbın dış tarafı ile modelin dış tarafı arasındaki minimum mesafe." - -#~ msgctxt "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "Kademeli motorun kaç adımının, bir milimetre ekstruzyon ile sonuçlanacağı." - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "Sıfır olmadığında, bu mesafeden daha uzun tarama mesafelerinde geri çekme yapılır." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Ekstruder ofsetini koordinat sistemine uygulayın." - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Kovan" - -#~ 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, while an angle of 90° is vertical." -#~ 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; 90°’lik bir açı dikeydir." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "İlk katman için belirlenen hız. Yapı tahtasına yapışmayı artırmak için daha düşük bir değer önerilmektedir." - -#~ 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 lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order 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 düşük 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 "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "Isınan yapı levhası için kullanılan sıcaklık. Bu değer 0 ise yatak sıcaklığı değiştirilmez." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "İlk katmanda ısınan yapı levhası için kullanılan sıcaklık." - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Çekme Oranı" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "Yüzde cinsinden çekme oranı." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Çakışan birimleri göz önüne alarak bu örgünün önceliğini belirler. Birden çok örgünün bulunduğu alanlarda düşük sıralamalı örgü öncelenir. Daha yüksek sıralamaya sahip dolgu örgüsü, dolgu örgülerin dolgusunu daha düşük sıralı ve normal örgüler ile değiştirecektir." - -#~ 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 "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Dolgu Birleşim Düzeni" - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Hangi dolgu birleşiminin diğer dolgu birleşiminin içinde olacağını belirler. Yüksek düzeyli bir dolgu birleşimi, dolgu birleşimlerinin dolgusunu daha düşük düzey ve normal birleşimler ile düzeltir." - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Ağaç Destek" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Baskınızı desteklemesi adına dallarıyla birlikte ağaca benzeyen bir destek oluşturun. Malzeme kullanımı ve baskı süresi düşer ancak dilimleme zamanı da önemli ölçüde artar." - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "Çapraz yüzeylerle katman dilimleme yolları. Bir katmanın alanları katmanın ortasının yüzeyle kesiştiği yere (Ortalayıcı) göre oluşturulabilir. Diğer bir yol da her katmanın yüksekliği boyunca hacim içinde kalan alanları (Dışlayıcı) veya katmanın içinde herhangi bir yerde kalan alanları (Kapsayıcı) almasıdır. Dışlayıcı seçenek en çok ayrıntıyı tutar; Kapsayıcı seçenek en iyi şekilde oturur; Ortalayıcı ise en kısa sürede işlenir." - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Spagetti Dolgu" - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Filamanın nesnenin içinde düzensiz bir şekilde yukarı doğru kıvrılması için dolguyu arada sırada yazdırın. Böylece yazdırma süresi azalır, ancak davranış önceden kestirilemez." - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Spagetti Dolgu Adımları" - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Spagetti dolgusunu adım adım yazdırma veya tüm dolgu filamanını yazdırma işleminin sonunda ekstrude etme." - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Spagetti Maksimum Dolgu Açısı" - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "Daha sonradan spagetti dolgu uygulanacak alanlar için yazdırmanın içindeki Z ekseninin maksimum açısı. Bu değerin düşürülmesi, modelinize yapılan her bir dolgu katmanında daha fazla açılı kısımlara neden olur." - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Spagetti Dolgu Maksimum Yüksekliği" - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "Birleştirilebilecek ve üstten dolgu yapılabilecek iç alanın maksimum yüksekliği." - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Spagetti İç Dolgusu" - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "Spagetti dolgunun yazdırılacağı yerin duvarlardan ofset değeri." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Spagetti Debisi" - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Spagetti dolgusunun yoğunluğunu ayarlar. Dolgu yoğunluğunun spagetti dolgu için ekstrüzyon miktarını değil, sadece dolgu deseni çizgi boşluğunu kontrol ettiğini unutmayın." - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Spagetti Dolgu Ekstra Hacmi" - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Her spagetti dolumunda ekstrude edilen toplam hacmi ayarlamak için kullanılan bir düzeltme terimi." - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "Malzemedeki GUID Otomatik olarak ayarlanır. " - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Filaman Bırakma Mesafesi" - -#~ msgctxt "machine_filament_park_distance description" -#~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used." -#~ msgstr "Bir ekstrüder artık kullanılmadığında filamanın bırakılacağı nozül ucuna olan mesafe." - -#~ msgctxt "material_flush_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Material Station iç değeri" - -#~ msgctxt "material_flush_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Material Station iç değeri" - -#~ 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 "Material Station internal value" -#~ msgstr "Material Station iç değeri" - -#~ 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 "Material Station internal value" -#~ msgstr "Material Station iç değeri" - -#~ msgctxt "material_maximum_park_duration description" -#~ msgid "Material Station internal value" -#~ msgstr "Material Station iç değeri" - -#~ msgctxt "material_no_load_move_factor description" -#~ msgid "Material Station internal value" -#~ msgstr "Material Station iç değeri" - -#~ 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 "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 "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "category_fixes" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "category_blackmagic" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "deneysel!" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "Makinenin Ana Poligonu" - -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "Yazıcı başlığının 2B taslağı (fan başlıkları hariç)." - -#~ 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 only possible if 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, tek seferde bir katmanla tüm modelleri yazdırmak veya bir modelin bitmesini beklemek. Teker teker modu sadece tüm modellerin, yazıcı başlığı aralarında hareket edecek şekilde veya aralarındaki mesafe X/Y aksları arasındaki mesafeden az olacak şekilde ayrıldığında kullanılabilir." - -#~ msgctxt "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "Ağaç Destek Duvarının Kalınlığı" - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "Ağaç desteğin dallarında yer alan duvarların kalınlığı. Kalın duvarların basılması daha uzun sürer ancak kalın duvarlar kolay devrilmezler." - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "Ağaç Destek Duvarının Hat Sayısı" - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "Ağaç desteğin dallarında yer alan duvarların sayısı. Kalın duvarların basılması daha uzun sürer ancak kalın duvarlar kolay devrilmezler." - -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. 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 sürme nozülü G-code'unun dahil edilip edilmeyeceği. 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 description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "Başka bir sürme nozülü başlatılmadan önce ekstrude edilebilecek maksimum malzeme miktarı." - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "Geri Çekme Sırasındaki Astar Hızı" - -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "Geri Çekildiğinde Sürme Z Sıçraması" - -#~ msgctxt "wipe_hop_enable 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 "Bir geri çekme işlemi yapıldığında baskı tepsisi nozül ve baskı arasında açıklık oluşturmak üzere alçaltılır. Bu, hareket sırasında nozülün baskıya çarpmasını önleyerek baskının devrilip baskı tepsisinden düşmesini önler." - -#~ msgctxt "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Destek arayüzü poligonları için minimum alan boyutu. Alanı bu değerden daha düşük olan poligonlar oluşturulmayacaktı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 not be generated." -#~ msgstr "Destek çatıları 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 not be generated." -#~ msgstr "Destek zeminleri için minimum alan boyutu. Alanı bu değerden daha düşük olan poligonlar oluşturulmayacaktır." - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "Dış Katman Rotasyonunu Değiştir" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "Üst/alt katmanların yazdırıldığı yönü değiştirin. Normal koşullarda sadece çapraz şekilde yazdırılırlar. Bu ayar sadece-X ve sadece-Y yönlerini ekler." - -#~ 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 compensate." -#~ msgstr "Dengelenecek, 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 "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "Akış hızından -> mesafeye dönüştürme için çarpan." - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "Uyarlanabilir Katman Eşiği" - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ msgstr "Daha küçük bir katmanın kullanılıp kullanılmayacağını belirleyen eşik. Bu rakam bir katmandaki en dik eğimin tanjantına eşittir." - -#~ 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." -#~ msgstr "Bu açıdan daha fazla çıkıntı yapan duvarlar çıkıntılı duvar ayarları kullanılarak yazdırılacaktır. Değer 90 ise hiçbir duvar çıkıntılı kabul edilmeyecektir." - -#~ 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 adhestion 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 "First Layer Speed" -#~ msgstr "İ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 adhestion 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 "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "Malzeme ekstrude edilmeden önce üst yüzey üzerinden bir kere daha geçilir. Bu işlem en üstte bulunan plastiği eriterek daha pürüzsüz bir yüzey elde etmek için kullanılır." - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "Katmanları Aynı Bölümle Başlatın" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "Bir önceki katmanın bitirdiği bir parçayı yeni bir katmanla tekrar yazdırmamak için, her bir katmanda nesneyi yazdırmaya aynı noktanın yakınından başlayın. Bu şekilde daha iyi çıkıntılar ve küçük parçalar oluşturulur, ancak yazdırma süresi uzar." - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ msgstr "Destekler için dolgu şeklinin döndürülmesi. Destek dolgu şekli yatay düzlemde döndürülü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." -#~ msgstr "Maksimum Çözünürlük ayarı için çözünürlüğü azaltırken izin verilen maksimum sapma. Bunu arttırırsanız baskının doğruluğu azalacak fakat g-code daha küçük olacaktır." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "G-code Türü" - -#~ 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." -#~ 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." - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "Küçük Z Açıklıklarını Yoksay" - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "Modelde küçük dikey açıklıklar varsa bu dar yerlerdeki üst ve alt yüzeyleri oluşturmak için %5 oranında ek hesaplama süresi verilebilir. Bu gibi bir durumda ayarı devre dışı bırakın." - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "Yapı disk bölümü için kullanılan sıcaklık. Bu 0 olursa yapı disk bölümü sıcaklığı ayarlanmaz." - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." -#~ msgstr "Düz çizgi üzerinde destekler arasında hareket ederken geri çekmeyi atla. Bu ayarın etkinleştirilmesi yazdırma süresi tasarrufu sağlar ancak destek yapısı içinde aşırı dizilime yol açabilir." - -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "Maksimum Z Hızı" - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "Yapı levhasının hareket ettiği maksimum hız. Bu hızı 0’a ayarlamak yazdırmanın maksimum z hızı için aygıt yazılımı kullanmasına neden olur." - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." -#~ msgstr "X/Y yönündeki destek yapıları arasındaki maksimum mesafe. Ayrı yapılar birbirlerine bu değerden daha yakınsa yapılar birleşip tek olur." - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "Minimum Çap" - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "Özel bir destek direği ile desteklenecek küçük bir alanın X/Y yönündeki minimum çapı." - -#~ msgctxt "prime_tower_circular label" -#~ msgid "Circular Prime Tower" -#~ msgstr "Dairesel İlk Direk" - -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "İlk direği dairesel bir şekil olarak yapın." - -#~ msgctxt "prime_tower_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 "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 şeklinde konturları düzeltin (Z-dikişi yazdırma durumunda çok az görünür olmalı, ancak tabaka görünümünde halen görünür olmalıdır). Düzeltme işleminin ince yüzey detaylarında bulanıklığa neden olabileceğini unutmayınız." - -#~ msgctxt "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "Deneysel Özellik: Destek alanlarını alt kısımlarda çıkıntılardakinden daha küçük yapar." - -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "Etkinleştirilmiş Ekstruder sayısı" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "Dış nozül çapı" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "Nozül uzunluğu" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "Nozül açısı" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "Isı bölgesi uzunluğu" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "Isınma hızı" - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "Soğuma hızı" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "G-code türü" - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "İzin verilmeyen alanlar" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "Makinenin ana poligonu" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "Makinenin başlığı ve Fan poligonu" - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "Portal yüksekliği" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "Ekstruder Ofseti" - -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "Uyarlanabilir Katmanların Kullanımı" - -#~ 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_step label" -#~ msgid "Adaptive layers variation step size" -#~ msgstr "Uyarlanabilir katmanların değişkenlik adım boyu" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "Uyarlanabilir katman eşiği" - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "Yüzey hattı genişliğinin yüzdesi olarak yüzey ve duvar çakışmasının miktarı. Ufak bir çakışma duvarların yüzeye sıkıca bağlanmasını sağlar. Bu, yüzey ve en iç duvar hat eninin ortalama yüzdesidir." - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Yüzey ve duvarlar arasındaki çakışma miktarı. Hafif bir çakışma duvarların yüzeye sıkıca bağlanmasını sağlar." - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." -#~ msgstr "Geri çekme miktarı: Hiçbir geri çekme yapılmaması için 0’a ayarlayın. Bu genellikle ısı bölgesi uzunluğu ile aynıdır." - -#~ 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 and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." -#~ 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 materyal geri çekilecektir, nozül de bir sonraki noktaya düz bir çizgi üzerinden gider. Üst/alt yüzey alanlarının üzerinde tarama yapmayarak sadece dolgu içerisinde tarama yapılabilir. “Dolgu İçinde” seçeneğinin daha önceki Cura sürümlerinde bulunan “Yüzey Alanında Değil” seçeneğiyle tamamen aynı davranışı gösterdiğini unutmayın." - -#~ 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 happend 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 "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. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ 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. 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." - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Eş merkezli 3D" - -#~ 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 by combing within the infill only." -#~ msgstr "Tarama, hareket sırasında nozülü halihazırda yazdırılmış bölgelerde tutar. Bu şekilde biraz daha uzun hareket hamleleri sağlarken geri çekme ihtiyacını azaltır. Tarama kapatıldığında, malzeme geri çekilecek ve nozül bir sonraki noktaya kadar düz bir çizgide hareket edecektir. Sadece dolgunun taratılmasıyla üst/alt yüzey bölgelerinde taramanın engellenmesi de mümkündür." - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Eş merkezli 3D" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Eş merkezli 3D" - -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Eş Merkezli 3D" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Eş Merkezli 3D" - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "Radye Hat Boşluğu" - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "İlk Direğin Kalınlığı" - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "Boş olan ilk direğin kalınlığı Kalınlığın Minimum İlk Direk Hacminin yarısından fazla olması ilk direğin yoğun olmasına neden olur." - -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "Değişimden Sonra Sürme Nozülü" - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "Ekstruderi değiştirdikten sonra ilk nesne yazdırıldığında nozülden sızan malzemeyi temizleyin. Bu, sızdırılan malzemenin yazdırmanın yüzey kalitesine en az zarar verdiği yerlerde güvenli ve yavaş bir temizleme hareketi gerçekleştirir." - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "İlk Direk Temizleme Hacmi" - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "İlk direk silinirken temizlenecek olan filaman miktarı. Temizleme işlemi, nozül aktif değilken sızarak kaybolan filamanı dengelemeye yarar." - -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "Köprü Duvarı Maksimum Çıkıntısı" - -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ msgstr "Bir duvar, köprü ayarları kullanılarak yazdırılmadan önce o duvar çizgisinin altındaki hava bölgesinin maksimum izin verilen genişliği. Duvar çizgisi genişliğinin bir yüzdesi olarak ifade edilir. Hava boşluğu bundan daha geniş olduğunda, duvar çizgisi köprü ayarları kullanılarak yazdırılır. Aksi halde duvar çizgisi normal ayarlar kullanılarak yazdırılır. Değer ne kadar düşük olursa, çıkıntı yapan duvar çizgilerinin köprü ayarları kullanılarak yazdırılması ihtimali o kadar yüksek olur." - -#~ 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." -#~ 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 bir süre gerekebilir. Bu yüzden, yazdırma süresi tahminlerini optimizasyonlu ve optimizasyonsuz olarak karşılaştırın." - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "Yüzey yok" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "Çapraz 3D Cepleri Değiştir" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "Cepleri sadece çapraz 3D şekildeki dört yönlü kesişme yerlerinin yarısında uygulayın ve şeklin kendisine temas ettiği yüksekliklerin arasında ceplerin yerini değiştirin." - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "Nesnelerin Oyulması" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "Tüm dolgu malzemesini kaldırın ve nesnenin içini destek için uygun hale getirin." - -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "Mm bazında taban katmanı yüksekliğine göre izin verilen azami yükseklik." - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ msgstr "Nesneyi ortalayın" - -#~ msgctxt "mesh_position_x label" -#~ msgid "Mesh position x" -#~ msgstr "Bileşim konumu x" - -#~ msgctxt "mesh_position_y label" -#~ msgid "Mesh position y" -#~ msgstr "Bileşim konumu y" - -#~ msgctxt "mesh_position_z label" -#~ msgid "Mesh position z" -#~ msgstr "Bileşim konumu z" - -#~ msgctxt "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "G-Code'u başlat" - -#~ msgctxt "machine_start_gcode description" +#: fdmprinter.def.json +msgctxt "travel label" +msgid "Travel" +msgstr "Hareket" + +#: fdmprinter.def.json +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Hareket İvmesi" + +#: fdmprinter.def.json +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Hareket Atlama Mesafesi" + +#: fdmprinter.def.json +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Hareket Salınımı" + +#: fdmprinter.def.json +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Hareket Hızı" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Ağaç" + +#: fdmprinter.def.json +msgctxt "support_tree_angle label" +msgid "Tree Support Branch Angle" +msgstr "Ağaç Destek Dal Açısı" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter label" +msgid "Tree Support Branch Diameter" +msgstr "Ağaç Destek Dalının Çapı" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter_angle label" +msgid "Tree Support Branch Diameter Angle" +msgstr "Ağaç Destek Dalının Çap Açısı" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance label" +msgid "Tree Support Branch Distance" +msgstr "Ağaç Destek Dal Mesafesi" + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution label" +msgid "Tree Support Collision Resolution" +msgstr "Ağaç Destek Çarpışma Çözünürlüğü" + +#: fdmprinter.def.json +msgctxt "support_tree_max_diameter label" +msgid "Tree Support Trunk Diameter" +msgstr "Ağaç Desteği Gövde Çapı" + +#: fdmprinter.def.json +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Üçlü Altıgen" + +#: fdmprinter.def.json +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Üçgenler" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Üçgenler" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Üçgenler" + +#: fdmprinter.def.json +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Üçgenler" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Üçgenler" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Bağlantı Çakışma Hacimleri" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Uyarlanabilir Katmanların Kullanımı" + +#: fdmprinter.def.json +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Direkleri kullan" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Kullanıcı Tarafından Belirtilen" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Dikey Ölçekleme Faktörü Büzülme Telafisi" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Yapı Levhasının Isınmasını Bekle" + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Nozülün Isınmasını Bekle" + +#: fdmprinter.def.json +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Duvar İvmesi" + +#: fdmprinter.def.json +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Duvar Dağılım Sayısı" + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Duvar Ekstruderi" + +#: fdmprinter.def.json +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Duvar Akışı" + +#: fdmprinter.def.json +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Duvar Salınımı" + +#: fdmprinter.def.json +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Duvar Hattı Sayısı" + +#: fdmprinter.def.json +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Duvar Hattı Genişliği" + +#: fdmprinter.def.json +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Duvar Sıralaması" + +#: fdmprinter.def.json +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Duvar Hızı" + +#: fdmprinter.def.json +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Duvar Kalınlığı" + +#: fdmprinter.def.json +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Duvar Geçişi Uzunluğu" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Duvar Geçişi Filtresi Mesafesi" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Duvar Geçişi Filtresi Kenar Boşluğu" + +#: fdmprinter.def.json +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Duvar Geçişi Eşik Açısı" + +#: fdmprinter.def.json +msgctxt "shell label" +msgid "Walls" +msgstr "Duvarlar" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "Desteğin üstünde ve altında model bulunduğunda, kontrol sırasında verilen yükseklikte adımlar uygulayın. Daha yüksek değerler, destek arayüzü olması gereken yerlerde yazdırılacak normal destek oluştururken daha düşük değerler daha yavaş dilimler." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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ığı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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ğı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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ığı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.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 "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ğı." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Tek bir dolgu hattının genişliği." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Tek bir destek zemininin çizgi genişliği." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Tek bir üst/alt hattın genişliği." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Tek bir duvar hattının genişliği." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Sürme Fırçası X Konumu" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Sürme Sıçrama Hızı" + +#: fdmprinter.def.json +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "İlk Direkteki Sürme İnaktif Nozülü" + +#: fdmprinter.def.json +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Sürme Hareket Mesafesi" + +#: fdmprinter.def.json +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Katmanlar Arasındaki Sürme Nozülü" + +#: fdmprinter.def.json +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Sürmeyi Durdurma" + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Sürme Tekrar Sayısı" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Sürme Geri Çekme Mesafesi" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Sürme Geri Çekmenin Etkinleştirilmesi" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Sürme Geri Çekme Sırasındaki İlave Astar Miktarı" + +#: fdmprinter.def.json +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ı" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Sürme Geri Çekme Sırasındaki Çekim Hızı" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Sürme Geri Çekme Hızı" + +#: fdmprinter.def.json +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Sürme Z Sıçraması" + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Sürme Z Sıçraması Yüksekliği" + +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Dolgu İçinde" + +#: fdmprinter.def.json +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." + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "X Kapaması Pozitif Yönde" + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "Sürme komutunun başlatılacağı X konumu." + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y, Z’den fazla" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Y Kapaması Pozitif Yönde" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Z Kapaması Pozitif Yönde" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Ekstruder Değişimi Sonrasındaki Z Sıçraması" + +#: fdmprinter.def.json +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ı" + +#: fdmprinter.def.json +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Z Sıçraması Yüksekliği" + +#: fdmprinter.def.json +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ı" + +#: fdmprinter.def.json +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Z Atlama Hızı" + +#: fdmprinter.def.json +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Geri Çekildiğinde Z Sıçraması" + +#: fdmprinter.def.json +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Z Dikiş Hizalama" + +#: fdmprinter.def.json +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Z Dikişi Konumu" + +#: fdmprinter.def.json +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Z Dikişi Göreliliği" + +#: fdmprinter.def.json +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z Dikişi X" + +#: fdmprinter.def.json +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z Dikişi Y" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z, X/Y’den fazla" + +#: fdmprinter.def.json +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zik Zak" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zikzak" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zikzak" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zikzak" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zik Zak" + +#: fdmprinter.def.json +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zik Zak" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zikzak" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zik Zak" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zikzak" + +#: fdmprinter.def.json +msgctxt "travel description" +msgid "travel" +msgstr "hareket" + +#~ msgctxt "wireframe_strategy option compensate" +#~ msgid "Compensate" +#~ msgstr "Dengele" + +#~ msgctxt "wireframe_top_jump description" +#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." +#~ msgstr "Ardından gelen yatay katmanın daha iyi bir bağlanma şansının olması için, yukarı doğru çıkan hattın ucunda küçük bir düğüm oluşturulur. Sadece kablo yazdırmaya uygulanır." + +#~ msgctxt "wireframe_bottom_delay description" +#~ msgid "Delay time after a downward move. Only applies to Wire Printing." +#~ msgstr "Aşağı doğru hareketten sonraki bekleme süresi. Sadece kablo yazdırmaya uygulanır." + +#~ msgctxt "wireframe_top_delay description" +#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." +#~ msgstr "Yukarı hattın sertleşmesi için, yukarıya doğru hareketten sonraki gecikme süresi. Sadece kablo yazdırmaya uygulanır." + +#~ msgctxt "wireframe_flat_delay description" +#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." +#~ msgstr "İki yatay dilim arasındaki gecikme süresi. Haha uzun gecikmeler düşüşe neden olduğu halde, bu tür bir gecikme uygulamak bağlantı noktalarındaki önceki katmanlara daha iyi yapışma sağlayabilir. Sadece kablo yazdırmaya uygulanır." + +#~ msgctxt "wireframe_nozzle_clearance description" +#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." +#~ msgstr "Nozül ve aşağı yöndeki hatlar arasındaki mesafe. Daha büyük açıklık, dik açısı daha küçük çapraz şekilde aşağı yöndeki hatların oluşmasına neden olur, dolayısıyla bu durum bir sonraki katman ile yukarı yönde daha az bağlantıya yol açar. Sadece kablo yazdırmaya uygulanır." + +#~ msgctxt "wireframe_up_half_speed description" #~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." +#~ "Distance of an upward move which is extruded with half speed.\n" +#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." #~ msgstr "" -#~ "​\n" -#~ " ile ayrılan, başlangıçta yürütülecek G-code komutları." - -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "G-Code'u sonlandır" - -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "​\n" -#~ " ile ayrılan, bitişte yürütülecek Gcode komutları." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "GCode türü" - -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "Oluşturulacak gcode türü." - -#~ 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 GCode." -#~ 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 GCode oluşturamaması durumunda başvurulacak son seçenek olarak kullanılmalıdır." - -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. 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 Gcode script is output." -#~ msgstr "Mutlak ekstrüzyon yerine bağıl ekstrüzyon uygulayın. Bağıl E-adımlarının uygulanması, Gcode’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 Gcode komut dosyası çıkartılmadan önce ekstrüzyon modu her zaman mutlak değere ayarlı olacaktır." - -#~ msgctxt "infill_offset_x description" -#~ msgid "The infill pattern is offset 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 offset this distance along the Y axis." -#~ msgstr "Dolgu şekli Y ekseni boyunca bu mesafe kadar kaydırılır." - -#~ msgctxt "infill_overlap 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 "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "Hat genişliğinin bir yüzdesi olarak yüzey ve duvarlar arasındaki çakışma miktarı. Az miktar çakışma duvarların yüzeye sıkıca bağlanmasını sağlar. Bu, yüzey hatlarının ve en içteki duvarın ortalama hat genişliklerinin bir yüzdesidir." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "Isınan yapı levhası için kullanılan sıcaklık. Bu ayar 0 olursa bu yazdırma için yatak ısıtılmaz." - -#~ msgctxt "wall_x_extruder_nr label" -#~ msgid "Inner Walls Extruder" -#~ msgstr "İç Duvar Ekstruderi" - -#~ 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, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Yazdırma dolgu malzemesinin şeklidir. Hat ve zikzak dolgu, farklı katmanlar üzerinde yön değiştirerek malzeme maliyetini azaltır. Izgara, üçgen, kübik, sekizlik, çeyrek kübik ve eş merkezli şekiller, her katmanda tam olarak yazdırılır. 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." - -#~ msgctxt "zig_zaggify_infill description" -#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on 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ğlayın. Bu ayarın etkinleştirilmesi, dolgunun duvarlara daha iyi yapışmasını sağlayabilir ve dolgunun dikey yüzeylerin kalitesi üzerindeki etkilerini azaltır. Bu ayarın devre dışı bırakılması, kullanılan malzemenin miktarını azaltır." - -#~ 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 "" -#~ "Etek ve baskının ilk katmanı arasındaki yatay mesafe.\n" -#~ "Bu minimum mesafedir ve çoklu etek hatları bu mesafeden dışa doğru genişleyecektir." - -#~ msgctxt "z_offset_layer_0 label" -#~ msgid "Initial Layer Z Offset" -#~ msgstr "İlk Katman Z Ofseti" - -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "Ekstrüder, birinci katmanın normal yüksekliğinden bu miktarda mesafe bırakılır. Negatif (yükseltilmiş) veya pozitif (alçaltılmış) olabilir. Ekstrüderin hafifçe yükseltilmesi durumunda, bazı filaman türleri yapı levhasına daha iyi yapışır." - -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Z Ofseti Konik Katmanları" - -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "Sıfır olmadığında, Z ofseti birçok katman üzerinde 0’a düşürülür. 0 değeri, Z ofsetinin yazdırmada yer alan tüm katmanlarda sabit kalması anlamına gelir." - -#~ msgctxt "raft_smoothing description" -#~ msgid "This setting control 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 yuvarlandığı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 "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, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Yazdırma dolgu malzemesinin şekli. Hat ve zik zak dolguları alternatif katmanlarda yön değiştirerek malzeme masrafını azaltır Izgara, üçgen, kübik, dört yüzlü ve eş merkezli desenler her katmanda tamamıyla yazdırılır. Her yönde daha eşit dayanıklılık dağılımı sağlamak için küp ve dört yüzlü dolgular her katmanda değişir." - -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "Dört yüzlü" - -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "Yüzeyleri Dolguya Genişlet" - -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "Düz zeminlerin üst ve/veya alt yüzeylerinin yüzey alanlarını genişletin. Varsayılan olarak yüzeyler dolguyu çevreleyen duvar çizgilerinin altında sona erer. Ancak bu ayar, dolgu yoğunluğu düşük olduğunda deliklerin görünmesine neden olur. Bu ayar, yüzeyleri duvar çizgisinin ötesine genişleterek sonraki katmandaki dolgunun yüzeye dayanmasını sağlar." - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ msgstr "Üst Yüzey Alanını Dolguya Genişlet" - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "Dolguyu yukarıdan desteklemeleri için üst yüzey alanlarını (üzerinde hava bulunan alanları) genişletin." +#~ "Yarı hızda sıkıştırılmış yukarı doğru hareket mesafesi.\n" +#~ "Bu katmanlarda malzemeyi çok fazla ısıtmayarak önceki katmanlarda daha iyi yapışma sağlayabilir. Sadece kablo yazdırmaya uygulanır." -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "Alt Yüzey Alanını Dolguya Genişlet" +#~ msgctxt "wireframe_fall_down description" +#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Malzemenin yukarı doğru ekstrüzyondan sonra aşağı inme mesafesi. Mesafe telafi edilir. Sadece kablo yazdırmaya uygulanır." -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Dolgu katmanlarını yukarıdan ve aşağıdan desteklemeleri için alt yüzey alanlarını (altında hava bulunan alanları) genişletin." +#~ msgctxt "wireframe_drag_along description" +#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Yukarı yönlü ekstrüzyon materyalinin çapraz şekilde aşağı yönlü ekstrüzyona sürüklendiği mesafe. Mesafe telafi edilir. Sadece kablo yazdırmaya uygulanır." -#~ msgctxt "expand_skins_expand_distance description" -#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." -#~ msgstr "Yüzeylerin dolguya doğru genişleyeceği mesafe. Varsayılan mesafe dolgu hatları arasındaki boşluğu kapatmaya yeterlidir ve dolgu yoğunluğu düşük olduğunda yüzeyin duvara temas ettiği kısımlarda oluşan delikleri önler. Küçük bir mesafe genellikle yeterli olur." +#~ msgctxt "wireframe_flow_connection description" +#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." +#~ msgstr "Yukarı veya aşağı yönde hareket ederken akış dengelenmesi. Sadece kablo yazdırmaya uygulanır." -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "Bazı Zikzak Bağlantılarını Atla" +#~ msgctxt "wireframe_flow_flat description" +#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." +#~ msgstr "Düz hatlar yazdırılırken akış dengelenmesi. Sadece kablo yazdırmaya uygulanır." -#~ msgctxt "support_skip_some_zags description" -#~ msgid "Skip some ZigZags connections to make the support structure easier to break." -#~ msgstr "Destek yapısının daha kolay kırılması için bazı Zikzak bağlantılarını atlayın." +#~ msgctxt "wireframe_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." +#~ msgstr "Akış dengeleme: sıkıştırılan malzeme miktarı bu değerle çoğaltılır. Sadece kablo yazdırmaya uygulanır." -#~ msgctxt "support_zag_skip_count label" -#~ msgid "ZigZag Connection Skip Count" -#~ msgstr "Atlanan Zikzak Bağlantısı Sayısı" +#~ msgctxt "wireframe_strategy option knot" +#~ msgid "Knot" +#~ msgstr "Düğüm" -#~ msgctxt "support_zag_skip_count description" -#~ msgid "Skip one in every N connection lines to make the support structure easier to break." -#~ msgstr "Destek yapısının daha kolay kırılması için her N bağlantı hattında bir zikzak atlayın." +#~ msgctxt "wireframe_straight_before_down description" +#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." +#~ msgstr "Yatay hat parçasıyla kaplanan çapraz şekilde aşağı yöndeki hat yüzdesi. Bu, yukarı yöndeki hatların en baştaki noktasının düşmesini engelleyebilir. Sadece kablo yazdırmaya uygulanır." -#~ msgctxt "machine_show_variants label" -#~ msgid "Show machine variants" -#~ msgstr "Makine varyantlarını göster" +#~ msgctxt "wireframe_enabled description" +#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." +#~ msgstr "“Belli belirsiz” yazdıran seyrek gövdeli bir yapı ile sadece dış yüzeyi yazdırın. Bu işlem, yukarı ve çapraz olarak aşağı yöndeki hatlar ile bağlı olan verilen Z aralıklarındaki modelin çevresini yatay olarak yazdırarak gerçekleştirilir." -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Wait for build plate heatup" -#~ msgstr "Yapı levhasının ısınmasını bekle" +#~ msgctxt "wireframe_strategy option retract" +#~ msgid "Retract" +#~ msgstr "Geri Çek" -#~ msgctxt "material_print_temp_wait label" -#~ msgid "Wait for nozzle heatup" -#~ msgstr "Nozülün ısınmasını bekle" +#~ msgctxt "wireframe_printspeed description" +#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." +#~ msgstr "Malzemeleri sıkarken nozül hareketlerinin hızı. Sadece kablo yazdırmaya uygulanır." -#~ msgctxt "material_print_temp_prepend label" -#~ msgid "Include material temperatures" -#~ msgstr "Malzeme sıcaklıkları ekleme" +#~ msgctxt "wireframe_printspeed_down description" +#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." +#~ msgstr "Çapraz şekilde aşağı doğru bir hat yazdırma hızı. Sadece kablo yazdırmaya uygulanır." -#~ msgctxt "material_bed_temp_prepend label" -#~ msgid "Include build plate temperature" -#~ msgstr "Yapı levhası sıcaklığı ekle" +#~ msgctxt "wireframe_printspeed_up description" +#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." +#~ msgstr "“Belli belirsiz” yukarı doğru bir hat yazdırma hızı. Sadece kablo yazdırmaya uygulanır." -#~ msgctxt "machine_width label" -#~ msgid "Machine width" -#~ msgstr "Makine genişliği" +#~ msgctxt "wireframe_printspeed_bottom description" +#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." +#~ msgstr "Yapı platformuna değen tek katman olan ilk katmanın yazdırılma hızı. Sadece kablo yazdırmaya uygulanır." -#~ msgctxt "machine_depth label" -#~ msgid "Machine depth" -#~ msgstr "Makine derinliği" +#~ msgctxt "wireframe_printspeed_flat description" +#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." +#~ msgstr "Modelin yatay dış çevresini yazdırma hızı. Sadece kablo yazdırmaya uygulanır." -#~ msgctxt "machine_shape label" -#~ msgid "Build plate shape" -#~ msgstr "Yapı levhası şekli" +#~ msgctxt "wireframe_strategy description" +#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." +#~ msgstr "Art arda gelen iki katmanın her bir bağlantı noktasına bağlı olduğundan emin olma stratejisi. Geri çekme yukarı yöndeki hatların doğru konumda sertleşmesini sağlar ancak filaman aşınmasına neden olabilir. Düğüme bağlanma şansını artırmak ve hattın soğumasını sağlamak için yukarı yöndeki hattın ucunda bir düğüm oluşturulabilir, fakat bu işlem daha yavaş yazdırma hızı gerektirir. Başka bir strateji de yukarı yöndeki hat ucunun düşmesini dengelemektir, ancak hatlar her zaman beklenildiği gibi düşmez." -#~ msgctxt "machine_height label" -#~ msgid "Machine height" -#~ msgstr "Makine yüksekliği" +#~ msgctxt "wireframe_roof_inset description" +#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." +#~ msgstr "İçerideki ana tavan hattından bağlantı yaparken kapatılan mesafe. Sadece kablo yazdırmaya uygulanır." -#~ msgctxt "machine_heated_bed label" -#~ msgid "Has heated build plate" -#~ msgstr "Yapı levhası ısıtıldı" +#~ msgctxt "wireframe_roof_drag_along description" +#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Tavanın ana dış kısmına geri gelirken sürüklenen iç kısımdaki bir hattın son parçasının mesafesi. Mesafe telafi edilir. Sadece kablo yazdırmaya uygulanır." -#~ msgctxt "machine_center_is_zero label" -#~ msgid "Is center origin" -#~ msgstr "Merkez nokta" +#~ msgctxt "wireframe_roof_fall_down description" +#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "“Belli belirsiz” yazdırılan yatay tavan hatlarının yazdırıldıklarındaki düşme mesafesi. Mesafe telafi edilir. Sadece kablo yazdırmaya uygulanır." -#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -#~ msgid "RepRap (Marlin/Sprinter)" -#~ msgstr "RepRap (Marlin/Sprinter)" +#~ msgctxt "wireframe_height description" +#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." +#~ msgstr "İki yatay bölüm arasındaki yukarı ve çapraz olarak aşağı yöndeki hatların yüksekliği. Net yapının genel yoğunluğunu belirler. Sadece kablo yazdırmaya uygulanır." -#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" -#~ msgid "RepRap (Volumetric)" -#~ msgstr "RepRap (Volumetric)" +#~ msgctxt "wireframe_roof_outer_delay description" +#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." +#~ msgstr "Tavanı oluşturacak dış çevresel uzunluklara harcanan zaman. Sürenin daha uzun olması daha iyi bir bağlantı sağlayabilir. Sadece kablo yazdırmaya uygulanır." -#~ msgctxt "wall_thickness description" -#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -#~ msgstr "Dış duvarların yatay istikametteki kalınlığı. Duvar hattı genişliği ile ayrılan bu değer duvar sayısını belirtir." +#~ msgctxt "wireframe_bottom_delay label" +#~ msgid "WP Bottom Delay" +#~ msgstr "WP Alt Gecikme" -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Yüzey ve duvarlar arasındaki çakışma miktarı. Hafif bir çakışma duvarların yüzeye sıkıca bağlanmasını sağlar." +#~ msgctxt "wireframe_printspeed_bottom label" +#~ msgid "WP Bottom Printing Speed" +#~ msgstr "WP Alt Yazdırma Hızı" -#~ msgctxt "support_interface_line_width description" -#~ msgid "Width of a single support interface line." -#~ msgstr "Tek bir destek arayüz hattının genişliği." +#~ msgctxt "wireframe_flow_connection label" +#~ msgid "WP Connection Flow" +#~ msgstr "WP Bağlantı Akışı" -#~ msgctxt "sub_div_rad_mult label" -#~ msgid "Cubic Subdivision Radius" -#~ msgstr "Kübik Alt Bölüm Yarıçapı" +#~ msgctxt "wireframe_height label" +#~ msgid "WP Connection Height" +#~ msgstr "WP Bağlantı Yüksekliği" -#~ msgctxt "sub_div_rad_mult description" -#~ msgid "A multiplier on 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 more subdivisions, i.e. more small cubes." -#~ 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ıçaptaki çarpan. Büyük değerler, daha küçük küpler gibi daha fazla alt bölüm oluşmasına neden olur." +#~ msgctxt "wireframe_printspeed_down label" +#~ msgid "WP Downward Printing Speed" +#~ msgstr "WP Aşağı Doğru Yazdırma Hızı" -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Upper Skins" -#~ msgstr "Üst Yüzeyleri Genişlet" +#~ msgctxt "wireframe_drag_along label" +#~ msgid "WP Drag Along" +#~ msgstr "WP Sürüklenme" -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." -#~ msgstr "Üst yüzey alanlarını (üzerinde hava bulunan alanları), üstteki dolguyu destekleyecek şekilde genişletin." +#~ msgctxt "wireframe_up_half_speed label" +#~ msgid "WP Ease Upward" +#~ msgstr "WP Kolay Yukarı Çıkma" -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Lower Skins" -#~ msgstr "Alt Yüzeyleri Genişlet" +#~ msgctxt "wireframe_fall_down label" +#~ msgid "WP Fall Down" +#~ msgstr "WP Aşağı İnme" -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Alt yüzey alanlarını (altında hava bulunan alanları), üstteki ve alttaki dolgu katmanlarıyla sabitlenecek şekilde genişletin." +#~ msgctxt "wireframe_flat_delay label" +#~ msgid "WP Flat Delay" +#~ msgstr "WP Düz Gecikme" -#~ msgctxt "speed_support_interface description" -#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality." -#~ msgstr "Destek tavan ve tabanının yazdırıldığı hız. Bunları daha düşük hızda yazdırmak çıkıntı kalitesini artırabilir." +#~ msgctxt "wireframe_flow_flat label" +#~ msgid "WP Flat Flow" +#~ msgstr "WP Düz Akışı" -#~ msgctxt "acceleration_support_interface description" -#~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality." -#~ msgstr "Destek tavanı ve tabanının yazdırıldığı ivme. Bunları daha düşük ivmelerde yazdırmak çıkıntı kalitesini artırabilir." +#~ msgctxt "wireframe_flow label" +#~ msgid "WP Flow" +#~ msgstr "WP Akışı" -#~ msgctxt "jerk_support_interface description" -#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." -#~ msgstr "Desteğin tavan ve tabanlarının yazdırıldığı maksimum anlık hız değişimi." +#~ msgctxt "wireframe_printspeed_flat label" +#~ msgid "WP Horizontal Printing Speed" +#~ msgstr "WP Yatay Yazdırma Hızı" -#~ msgctxt "support_enable label" -#~ msgid "Enable Support" -#~ msgstr "Desteği etkinleştir" +#~ msgctxt "wireframe_top_jump label" +#~ msgid "WP Knot Size" +#~ msgstr "WP Düğüm Boyutu" -#~ msgctxt "support_enable description" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Destek yapılarını etkinleştir. Bu yapılar sert çıkıntıları olan model parçalarını destekler." +#~ msgctxt "wireframe_nozzle_clearance label" +#~ msgid "WP Nozzle Clearance" +#~ msgstr "WP Nozül Açıklığı" -#~ msgctxt "support_interface_extruder_nr description" -#~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion." -#~ msgstr "Destek dolgusunun tavan ve tabanları için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." +#~ msgctxt "wireframe_roof_drag_along label" +#~ msgid "WP Roof Drag Along" +#~ msgstr "WP Tavandan Sürüklenme" -#~ 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." -#~ msgstr "Model üzerindeki desteğin merdivene benzeyen alt kısmındaki basamakların yüksekliği. Düşük bir değer desteğin çıkarılmasını zorlaştırırken yüksek değerler destek yapılarının sağlam olmamasına neden olabilir." +#~ msgctxt "wireframe_roof_fall_down label" +#~ msgid "WP Roof Fall Down" +#~ msgstr "WP Tavandan Aşağı İnme" -#~ msgctxt "support_bottom_height label" -#~ msgid "Support Bottom Thickness" -#~ msgstr "Destek Taban Kalınlığı" +#~ msgctxt "wireframe_roof_inset label" +#~ msgid "WP Roof Inset Distance" +#~ msgstr "WP Tavan İlave Mesafesi" -#~ msgctxt "support_bottom_height description" -#~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests." -#~ msgstr "Destek tabanlarının kalınlığı. Desteğin bulunduğu modelin üst kısımlarına yazdırılan yoğun katmanların sayısını kontrol eder." +#~ msgctxt "wireframe_roof_outer_delay label" +#~ msgid "WP Roof Outer Delay" +#~ msgstr "WP Tavan Dış Gecikmesi" -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above 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 "Destek üzerinde modelin olduğu yeri kontrol ederken belirtilen yükselin adımlarını izleyin. Daha yüksek değerler, destek arayüzü olması gereken yerlerde yazdırılacak normal destek oluştururken daha düşük değerler daha yavaş dilimler." +#~ msgctxt "wireframe_printspeed label" +#~ msgid "WP Speed" +#~ msgstr "WP Hızı" -#~ msgctxt "support_interface_density description" -#~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -#~ msgstr "Destek yapısının tavan ve tabanları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 "wireframe_straight_before_down label" +#~ msgid "WP Straighten Downward Lines" +#~ msgstr "WP Aşağı Yöndeki Hatları Güçlendirme" -#~ msgctxt "support_interface_line_distance label" -#~ msgid "Support Interface Line Distance" -#~ msgstr "Destek Arayüz Hattı Mesafesi" +#~ msgctxt "wireframe_strategy label" +#~ msgid "WP Strategy" +#~ msgstr "WP Stratejisi" -#~ msgctxt "support_interface_line_distance description" -#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." -#~ msgstr "Yazdırılan destek arayüz hatları arasındaki mesafe. Bu ayar, Destek Arayüz Yoğunluğu ile hesaplanır ama ayrı ayrı ayarlanabilir." +#~ msgctxt "wireframe_top_delay label" +#~ msgid "WP Top Delay" +#~ msgstr "WP Üst Gecikme" -#~ 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 used to be called Joris in older versions." -#~ msgstr "Dış kenarın Z hareketini pürüzsüzleştirir. Bu şekilde yazdırma boyunca sabit bir Z artışı oluşur. Bu özellik, katı bir modeli katı bir tabanı olan tek duvarlı bir modele dönüştürür. Özellik, diğer sürümlerde Joris olarak adlandırılmıştır." +#~ msgctxt "wireframe_printspeed_up label" +#~ msgid "WP Upward Printing Speed" +#~ msgstr "WP Yukarı Doğru Yazdırma Hızı" -#~ msgctxt "material_print_temperature description" -#~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." -#~ msgstr "Yazdırma için kullanılan sıcaklık. Yazıcıyı elle önceden ısıtmak için 0’a ayarlayın." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually." -#~ msgstr "Isınan yapı levhası için kullanılan sıcaklık. Yazıcıyı elle önceden ısıtmak için 0’a ayarlayı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. This value is rounded down to a multiple of the layer height." -#~ msgstr "Yazdırılacak destek yapısının üstüne/altına olan mesafe Bu boşluk, model yazdırıldıktan sonra destekleri kaldırmak için açıklık sağlar. Bu değer katman yüksekliğinin üst katına yuvarlanır." - -#~ msgctxt "z_seam_type option back" -#~ msgid "Back" -#~ msgstr "Arka" - -#~ msgctxt "multiple_mesh_overlap label" -#~ msgid "Dual Extrusion Overlap" -#~ msgstr "İkili Ekstrüzyon Çakışması" +#~ msgctxt "wireframe_enabled label" +#~ msgid "Wire Printing" +#~ msgstr "Kablo Yazdırma" diff --git a/resources/i18n/zh_CN/cura.po b/resources/i18n/zh_CN/cura.po index 4dc7869ff5..b4f9687004 100644 --- a/resources/i18n/zh_CN/cura.po +++ b/resources/i18n/zh_CN/cura.po @@ -1,214 +1,94 @@ # Cura -# Copyright (C) 2022 Ultimaker B.V. +# Copyright (C) 2022 UltiMaker. # This file is distributed under the same license as the Cura package. +# Ultimaker , 2022. # msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-04-06 15:55+0000\n" +"PO-Revision-Date: 2022-07-15 11:06+0200\n" +"Last-Translator: \n" +"Language-Team: \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" +"X-Generator: Poedit 3.1.1\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -msgctxt "@label" -msgid "Unknown" -msgstr "未知" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "无法连接到下列打印机,因为这些打印机已在组中" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "可用的网络打印机" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "未覆盖" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Connected printers" -msgstr "已连接的打印机" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Preset printers" -msgstr "预设打印机" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:143 -#, 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}?此操作无法撤消!" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:61 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 -msgctxt "@label" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:65 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "视觉" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:66 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "视觉配置文件用于打印视觉原型和模型,可实现出色的视觉效果和表面质量。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:70 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "工程配置文件用于打印功能性原型和最终用途部件,可提高准确性和减小公差。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:75 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "草稿" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:76 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "草稿配置文件用于打印初始原型和概念验证,可大大缩短打印时间。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:232 -msgctxt "@label" -msgid "Custom Material" -msgstr "自定义材料" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:233 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 -msgctxt "@label" -msgid "Custom" -msgstr "自定义" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:391 -msgctxt "@label" -msgid "Custom profiles" -msgstr "自定义配置文件" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:426 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "所有支持的文件类型 ({0})" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "所有文件 (*)" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 -msgctxt "@info:status" -msgid "Calculated" -msgstr "已计算" - -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 +#: cura/API/Account.py:199 msgctxt "@info:title" msgid "Login failed" msgstr "登录失败" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: cura/Arranging/ArrangeObjectsJob.py:25 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "正在为模型寻找新位置" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: cura/Arranging/ArrangeObjectsJob.py:29 msgctxt "@info:title" msgid "Finding Location" msgstr "正在寻找位置" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "无法在成形空间体积内放下全部模型" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: cura/Arranging/ArrangeObjectsJob.py:43 msgctxt "@info:title" msgid "Can't Find Location" msgstr "找不到位置" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:115 +#: cura/Backups/Backup.py:115 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "不能从用户数据目录创建存档: {}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:159 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +#: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159 +#: plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: plugins/CuraDrive/src/DrivePluginExtension.py:126 msgctxt "@info:title" msgid "Backup" msgstr "备份" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:134 +#: cura/Backups/Backup.py:134 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "试图在没有适当数据或元数据的情况下恢复Cura备份。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:145 +#: cura/Backups/Backup.py:145 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that is higher than the current version." msgstr "尝试恢复的 Cura 备份版本高于当前版本。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:158 +#: cura/Backups/Backup.py:158 msgctxt "@info:backup_failed" msgid "The following error occurred while trying to restore a Cura backup:" msgstr "尝试恢复 Cura 备份时出现以下错误:" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: cura/BuildVolume.py:100 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." msgstr "由于“打印序列”设置的值,成形空间体积高度已被减少,以防止十字轴与打印模型相冲突。" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 +#: cura/BuildVolume.py:103 msgctxt "@info:title" msgid "Build Volume" msgstr "成形空间体积" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura 无法启动" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" -"

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

    \n" +"

    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" @@ -220,32 +100,32 @@ msgstr "" "

    请向我们发送此错误报告,以便解决问题。

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: cura/CrashHandler.py:122 msgctxt "@action:button" -msgid "Send crash report to Ultimaker" -msgstr "向 Ultimaker 发送错误报告" +msgid "Send crash report to UltiMaker" +msgstr "向 UltiMaker 发送错误报告" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "显示详细的错误报告" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "显示配置文件夹" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "备份并重置配置" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "错误报告" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

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

    \n" @@ -256,573 +136,2239 @@ msgstr "" "

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

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "系统信息" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "未知" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura 版本" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Cura 语言" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "操作系统语言" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "平台" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qt 版本" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQt 版本" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized" -msgstr "" +msgstr "尚未初始化" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL 版本: {version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL 供应商: {vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL 渲染器: {renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 +#: cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "错误追溯" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 +#: cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "日志" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 +#: cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "发送报告" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:531 +#: cura/CuraApplication.py:540 msgctxt "@info:progress" msgid "Loading machines..." msgstr "正在载入打印机..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +#: cura/CuraApplication.py:547 msgctxt "@info:progress" msgid "Setting up preferences..." msgstr "正在设置偏好设置..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +#: cura/CuraApplication.py:692 msgctxt "@info:progress" msgid "Initializing Active Machine..." msgstr "正在初始化当前机器..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +#: cura/CuraApplication.py:839 msgctxt "@info:progress" msgid "Initializing machine manager..." msgstr "正在初始化机器管理器..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +#: cura/CuraApplication.py:853 msgctxt "@info:progress" msgid "Initializing build volume..." msgstr "正在初始化成形空间体积..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +#: cura/CuraApplication.py:921 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "正在设置场景..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +#: cura/CuraApplication.py:957 msgctxt "@info:progress" msgid "Loading interface..." msgstr "正在载入界面..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +#: cura/CuraApplication.py:962 msgctxt "@info:progress" msgid "Initializing engine..." msgstr "正在初始化引擎..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#: cura/CuraApplication.py:1290 #, 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" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1798 +#: cura/CuraApplication.py:1816 #, 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} 已跳过导入" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 +#: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 msgctxt "@info:title" msgid "Warning" msgstr "警告" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#: cura/CuraApplication.py:1828 #, 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} 已跳过导入" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1812 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156 +#: cura/Settings/CuraContainerRegistry.py:166 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 msgctxt "@info:title" msgid "Error" msgstr "错误" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 +#: cura/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "未知" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "无法连接到下列打印机,因为这些打印机已在组中" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "可用的网络打印机" + +#: cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "未覆盖" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:28 +msgctxt "@label" +msgid "Connected printers" +msgstr "已连接的打印机" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +msgctxt "@label" +msgid "Preset printers" +msgstr "预设打印机" + +#: cura/Machines/Models/GlobalStacksModel.py:165 +#, 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}?此操作无法撤消!" + +#: cura/Machines/Models/IntentCategoryModel.py:42 +#: cura/Machines/Models/IntentSelectionModel.py:61 +#: cura/Machines/Models/IntentTranslations.py:11 +#: cura/Machines/Models/QualityManagementModel.py:347 +msgctxt "@label" +msgid "Default" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:45 +#: cura/Machines/Models/IntentSelectionModel.py:65 +#: cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "视觉" + +#: cura/Machines/Models/IntentCategoryModel.py:46 +#: cura/Machines/Models/IntentSelectionModel.py:66 +#: cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "视觉配置文件用于打印视觉原型和模型,可实现出色的视觉效果和表面质量。" + +#: cura/Machines/Models/IntentCategoryModel.py:49 +#: cura/Machines/Models/IntentSelectionModel.py:70 +#: cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:50 +#: cura/Machines/Models/IntentSelectionModel.py:71 +#: cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "工程配置文件用于打印功能性原型和最终用途部件,可提高准确性和减小公差。" + +#: cura/Machines/Models/IntentCategoryModel.py:53 +#: cura/Machines/Models/IntentSelectionModel.py:75 +#: cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "草稿" + +#: cura/Machines/Models/IntentCategoryModel.py:54 +#: cura/Machines/Models/IntentSelectionModel.py:76 +#: cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "草稿配置文件用于打印初始原型和概念验证,可大大缩短打印时间。" + +#: cura/Machines/Models/MaterialManagementModel.py:232 +msgctxt "@label" +msgid "Custom Material" +msgstr "自定义材料" + +#: cura/Machines/Models/MaterialManagementModel.py:233 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 +msgctxt "@label" +msgid "Custom" +msgstr "自定义" + +#: cura/Machines/Models/QualityManagementModel.py:400 +msgctxt "@label" +msgid "Custom profiles" +msgstr "自定义配置文件" + +#: cura/Machines/Models/QualityManagementModel.py:435 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "所有支持的文件类型 ({0})" + +#: cura/Machines/Models/QualityManagementModel.py:436 +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "所有文件 (*)" + +#: cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "已计算" + +#: cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "复制并放置模型" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 +#: cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "放置模型" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 +#: cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "放置模型" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +#: cura/OAuth2/AuthorizationHelpers.py:89 msgctxt "@message" msgid "Could not read response." msgstr "无法读取响应。" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +#: cura/OAuth2/AuthorizationRequestHandler.py:75 msgctxt "@message" msgid "The provided state is not correct." msgstr "所提供的状态不正确。" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +#: cura/OAuth2/AuthorizationRequestHandler.py:80 msgctxt "@message" msgid "Timeout when authenticating with the account server." msgstr "使用帐户服务器进行身份验证超时。" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +#: cura/OAuth2/AuthorizationRequestHandler.py:97 msgctxt "@message" msgid "Please give the required permissions when authorizing this application." msgstr "在授权此应用程序时,须提供所需权限。" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +#: cura/OAuth2/AuthorizationRequestHandler.py:104 msgctxt "@message" msgid "Something unexpected happened when trying to log in, please try again." msgstr "尝试登录时出现意外情况,请重试。" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:216 +#: cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "无法开始新的登录过程。请检查是否仍在尝试进行另一登录。" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:277 +#: cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "无法连接 Ultimaker 帐户服务器。" +msgid "Unable to reach the UltiMaker account server." +msgstr "无法连接 UltiMaker 帐户服务器。" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 +#: cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" msgid "Log-in failed" msgstr "登录失败" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +#: cura/PrinterOutput/UploadMaterialsJob.py:104 msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "无法创建材料存档以与打印机同步。" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +#: cura/PrinterOutput/UploadMaterialsJob.py:111 +#: cura/PrinterOutput/UploadMaterialsJob.py:165 msgctxt "@text:error" msgid "Failed to load the archive of materials to sync it with printers." msgstr "无法加载材料存档以与打印机同步。" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +#: cura/PrinterOutput/UploadMaterialsJob.py:143 msgctxt "@text:error" msgid "The response from Digital Factory appears to be corrupted." msgstr "来自 Digital Factory 的响应似乎已损坏。" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +#: cura/PrinterOutput/UploadMaterialsJob.py:147 +#: cura/PrinterOutput/UploadMaterialsJob.py:151 +#: cura/PrinterOutput/UploadMaterialsJob.py:155 msgctxt "@text:error" msgid "The response from Digital Factory is missing important information." msgstr "来自 Digital Factory 的响应缺少重要信息。" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +#: cura/PrinterOutput/UploadMaterialsJob.py:218 msgctxt "@text:error" msgid "Failed to connect to Digital Factory to sync materials with some of the printers." -msgstr "Failed to connect to Digital Factory to sync materials with some of the printers." +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +#: cura/PrinterOutput/UploadMaterialsJob.py:232 msgctxt "@text:error" msgid "Failed to connect to Digital Factory." msgstr "无法连接至 Digital Factory。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:207 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: cura/Settings/ActiveQuality.py:43 +msgctxt "@label" +msgid "Experimental" +msgstr "实验性" + +#: cura/Settings/ContainerManager.py:207 +#: cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "文件已存在" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: cura/Settings/ContainerManager.py:208 +#: cura/Settings/CuraContainerRegistry.py:141 #, 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} 已存在。您确定要覆盖它吗?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 +#: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "文件 URL 无效:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "无法将配置文件导出至 {0} {1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: cura/Settings/CuraContainerRegistry.py:163 #, 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} : 写入器插件报告故障。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "配置文件已导出至: {0} " -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "导出成功" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "无法从 {0} 导入配置文件:{1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: cura/Settings/CuraContainerRegistry.py:209 #, 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} 导入配置文件。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "没有可导入文件 {0} 的自定义配置文件" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "无法从 {0} 导入配置文件:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: cura/Settings/CuraContainerRegistry.py:252 +#: cura/Settings/CuraContainerRegistry.py:262 #, 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} 包含错误数据,无法导入。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "无法从 {0} 导入配置文件:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "已成功导入配置文件 {0}。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "文件 {0} 不包含任何有效的配置文件。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "配置 {0} 文件类型未知或已损坏。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "自定义配置文件" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "配置文件缺少打印质量类型定义。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "尚无处于活动状态的打印机。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "无法添加配置文件。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "质量类型“{0}”与当前有效的机器定义“{1}”不兼容。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: cura/Settings/CuraContainerRegistry.py:488 #, 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}”对当前配置不可用。请切换到可使用此质量类型的材料/喷嘴组合。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "不支持" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:219 +#: cura/Settings/MachineManager.py:746 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:221 msgctxt "@label" msgid "Nozzle" msgstr "喷嘴" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +#: cura/Settings/MachineManager.py:890 msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "已根据挤出机的当前可用性更改设置:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: cura/Settings/MachineManager.py:891 msgctxt "@info:title" msgid "Settings updated" msgstr "设置已更新" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 +#: cura/Settings/MachineManager.py:1514 msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "挤出机已禁用" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 +#: cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "不支持" + +#: cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "" + +#: cura/UI/AddPrinterPagesModel.py:17 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" msgid "Add" msgstr "添加" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:290 +#: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290 msgctxt "@action:button" msgid "Finish" msgstr "完成" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:508 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:323 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:291 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:74 +#: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386 +#: plugins/ImageReader/ConfigUI.qml:323 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 +#: resources/qml/ColorDialog.qml:143 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: resources/qml/Dialogs/RenameDialog.qml:103 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 msgctxt "@action:button" msgid "Cancel" msgstr "取消" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: cura/UI/ObjectsModel.py:69 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "组 #{group_nr}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 +#: cura/UI/PrintInformation.py:87 msgctxt "@tooltip" msgid "Outer Wall" msgstr "外壁" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +#: cura/UI/PrintInformation.py:88 msgctxt "@tooltip" msgid "Inner Walls" msgstr "内壁" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +#: cura/UI/PrintInformation.py:89 msgctxt "@tooltip" msgid "Skin" msgstr "表层" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +#: cura/UI/PrintInformation.py:90 msgctxt "@tooltip" msgid "Infill" msgstr "填充" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +#: cura/UI/PrintInformation.py:91 msgctxt "@tooltip" msgid "Support Infill" msgstr "支撑填充" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +#: cura/UI/PrintInformation.py:92 msgctxt "@tooltip" msgid "Support Interface" msgstr "支撑接触面" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +#: cura/UI/PrintInformation.py:93 msgctxt "@tooltip" msgid "Support" msgstr "支撑" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +#: cura/UI/PrintInformation.py:94 msgctxt "@tooltip" msgid "Skirt" msgstr "Skirt" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +#: cura/UI/PrintInformation.py:95 msgctxt "@tooltip" msgid "Prime Tower" msgstr "装填塔" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +#: cura/UI/PrintInformation.py:96 msgctxt "@tooltip" msgid "Travel" msgstr "移动" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +#: cura/UI/PrintInformation.py:97 msgctxt "@tooltip" msgid "Retractions" msgstr "回抽" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +#: cura/UI/PrintInformation.py:98 msgctxt "@tooltip" msgid "Other" msgstr "其它" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:63 +#: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63 msgctxt "@text:window" msgid "The release notes could not be opened." msgstr "无法打开版本说明。" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:277 +#: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277 msgctxt "@action:button" msgid "Next" msgstr "下一步" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68 msgctxt "@action:button" msgid "Skip" msgstr "跳过" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:443 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:186 +#: cura/UI/WhatsNewPagesModel.py:76 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444 +#: resources/qml/Dialogs/AboutDialog.qml:188 msgctxt "@action:button" msgid "Close" msgstr "关闭" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: cura/UltimakerCloud/CloudMaterialSync.py:66 msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "请在开始打印之前将材料配置文件与您的打印机同步。" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: cura/UltimakerCloud/CloudMaterialSync.py:67 msgctxt "@action:button" msgid "New materials installed" msgstr "新材料已装载" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: cura/UltimakerCloud/CloudMaterialSync.py:74 msgctxt "@action:button" msgid "Sync materials" msgstr "同步材料" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:397 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:80 +#: cura/UltimakerCloud/CloudMaterialSync.py:82 +#: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80 msgctxt "@action:button" msgid "Learn more" msgstr "详细了解" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +#: cura/UltimakerCloud/CloudMaterialSync.py:135 msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "未能将材料存档保存到 {}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +#: cura/UltimakerCloud/CloudMaterialSync.py:136 msgctxt "@message:title" msgid "Failed to save material archive" msgstr "未能保存材料存档" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +#: cura/UltimakerCloud/CloudMaterialSync.py:188 msgctxt "@text" msgid "Unknown error." msgstr "未知错误。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:558 +#, 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}。无法导入机器。将改为导入模型。" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:561 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "打开项目文件" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: plugins/3MFReader/WorkspaceDialog.qml:99 +#: plugins/3MFReader/WorkspaceDialog.qml:127 +#: plugins/3MFReader/WorkspaceDialog.qml:134 +msgctxt "@button" +msgid "Create new" +msgstr "新建" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:692 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "突然无法访问项目文件 {0}{1}。" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:720 +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "无法打开项目文件" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:700 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:718 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "项目文件 {0} 损坏: {1}。" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:765 +#, 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 版本未识别的配置文件制作的。" + +#: plugins/3MFReader/WorkspaceDialog.py:233 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "推荐" + +#: plugins/3MFReader/WorkspaceDialog.py:235 +msgctxt "@title:tab" +msgid "Custom" +msgstr "自定义" + +#: plugins/3MFReader/WorkspaceDialog.py:411 +msgctxt "@info:status" +msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." +msgstr "此项目使用的材料依赖于一些 Cura 中不存在的材料定义,这可能会造成打印效果不如预期。强烈建议安装从 Marketplace 获得的完整材料包。" + +#: plugins/3MFReader/WorkspaceDialog.py:413 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "材料配置文件未安装" + +#: plugins/3MFReader/WorkspaceDialog.py:426 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "安装材料" + +#: plugins/3MFReader/WorkspaceDialog.qml:15 +msgctxt "@title:window" +msgid "Open Project" +msgstr "打开项目" + +#: plugins/3MFReader/WorkspaceDialog.qml:31 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61 +msgctxt "@action:title" +msgid "Summary - Cura Project" +msgstr "摘要 - Cura 项目" + +#: plugins/3MFReader/WorkspaceDialog.qml:65 +msgctxt "@action:ComboBox Update/override existing profile" +msgid "Update existing" +msgstr "更新已有配置" + +#: plugins/3MFReader/WorkspaceDialog.qml:66 +msgctxt "@action:ComboBox Save settings in a new profile" +msgid "Create new" +msgstr "新建" + +#: plugins/3MFReader/WorkspaceDialog.qml:83 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97 +msgctxt "@action:label" +msgid "Printer settings" +msgstr "打印机设置" + +#: plugins/3MFReader/WorkspaceDialog.qml:92 +#: plugins/3MFReader/WorkspaceRow.qml:23 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106 +msgctxt "@action:label" +msgid "Type" +msgstr "类型" + +#: plugins/3MFReader/WorkspaceDialog.qml:98 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +msgctxt "@action:label" +msgid "Printer Group" +msgstr "打印机组" + +#: plugins/3MFReader/WorkspaceDialog.qml:103 +msgctxt "@action:label" +msgid "Open With" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:104 +msgctxt "@info:tooltip" +msgid "Printer settings will be updated to match the settings saved with the project." +msgstr "打印机设置将更新,以便与项目一起保存的设置相一致。" + +#: plugins/3MFReader/WorkspaceDialog.qml:156 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222 +msgctxt "@action:label" +msgid "Profile settings" +msgstr "配置文件设置" + +#: plugins/3MFReader/WorkspaceDialog.qml:166 +#: plugins/3MFReader/WorkspaceDialog.qml:238 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246 +msgctxt "@action:label" +msgid "Name" +msgstr "名字" + +#: plugins/3MFReader/WorkspaceDialog.qml:172 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263 +msgctxt "@action:label" +msgid "Intent" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:178 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230 +msgctxt "@action:label" +msgid "Not in profile" +msgstr "不在配置文件中" + +#: plugins/3MFReader/WorkspaceDialog.qml:179 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235 +msgctxt "@action:label" +msgid "%1 override" +msgid_plural "%1 overrides" +msgstr[0] "%1 重写" + +#: plugins/3MFReader/WorkspaceDialog.qml:185 +msgctxt "@action:label" +msgid "Derivative from" +msgstr "衍生自" + +#: plugins/3MFReader/WorkspaceDialog.qml:186 +msgctxt "@action:label" +msgid "%1, %2 override" +msgid_plural "%1, %2 overrides" +msgstr[0] "%1, %2 重写" + +#: plugins/3MFReader/WorkspaceDialog.qml:226 +msgctxt "@action:label" +msgid "Material settings" +msgstr "材料设置" + +#: plugins/3MFReader/WorkspaceDialog.qml:280 +msgctxt "@action:label" +msgid "Setting visibility" +msgstr "设置可见性" + +#: plugins/3MFReader/WorkspaceDialog.qml:290 +msgctxt "@action:label" +msgid "Mode" +msgstr "模式" + +#: plugins/3MFReader/WorkspaceDialog.qml:296 +msgctxt "@action:label" +msgid "%1 out of %2" +msgstr "%1 / %2" + +#: plugins/3MFReader/WorkspaceDialog.qml:321 +msgctxt "@action:warning" +msgid "Loading a project will clear all models on the build plate." +msgstr "加载项目将清除打印平台上的所有模型。" + +#: plugins/3MFReader/WorkspaceDialog.qml:367 +msgctxt "@label" +msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." +msgstr "该项目使用的材料当前未安装在 Cura 中。
    安装材料配置文件并重新打开项目。" + +#: plugins/3MFReader/WorkspaceDialog.qml:392 +msgctxt "@action:button" +msgid "Open" +msgstr "打开" + +#: plugins/3MFReader/WorkspaceDialog.qml:398 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "仍要打开项目" + +#: plugins/3MFReader/WorkspaceDialog.qml:407 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "安装缺少的材料" + +#: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33 +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "3MF 文件" + +#: plugins/3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF 读取器" + +#: plugins/3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "提供对读取 3MF 格式文件的支持。" + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "3MF 编写器插件已损坏。" + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "没有可写入的工作区。请先添加打印机。" + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "没有在此处写入工作区的权限。" + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "操作系统不允许向此位置或用此文件名保存项目文件。" + +#: plugins/3MFWriter/ThreeMFWriter.py:240 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "写入 3mf 文件时出错。" + +#: plugins/3MFWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "3MF 文件" + +#: plugins/3MFWriter/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Cura 项目 3MF 文件" + +#: plugins/3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF 写入器" + +#: plugins/3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "提供对写入 3MF 文件的支持。" + +#: plugins/AMFReader/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "AMF 文件" + +#: plugins/AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF 读取器" + +#: plugins/AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "提供对读取 AMF 文件的支持。" + +#: plugins/CuraDrive/plugin.json +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "备份和还原配置。" + +#: plugins/CuraDrive/plugin.json +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura 备份" + +#: plugins/CuraDrive/src/CreateBackupJob.py:25 +msgctxt "@info:title" +msgid "Backups" +msgstr "备份" + +#: plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "上传您的备份时出错。" + +#: plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "正在创建您的备份..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "创建您的备份时出错。" + +#: plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "正在上传您的备份..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "您的备份已完成上传。" + +#: plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "备份超过了最大文件大小。" + +#: plugins/CuraDrive/src/DriveApiService.py:86 +#: plugins/CuraDrive/src/RestoreBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "尝试恢复您的备份时出错。" + +#: plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "管理备份" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "想要更多?" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "立即备份" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "自动备份" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "在 Cura 每天启动时自动创建备份。" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 +msgctxt "@button" +msgid "Restore" +msgstr "恢复" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "删除备份" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "您确定要删除此备份吗?此操作无法撤销。" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "恢复备份" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 +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 吗?" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Cura 版本" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "机器" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "材料" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "配置文件" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "插件" + +#: plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Cura 备份" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "我的备份" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "您目前没有任何备份。使用“立即备份”按钮创建一个备份。" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "在预览阶段,将限制为 5 个可见备份。移除一个备份以查看更早的备份。" + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "备份并同步您的 Cura 设置。" + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 +#: plugins/Marketplace/resources/qml/Marketplace.qml:312 +#: resources/qml/Account/GeneralOperations.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180 +#: resources/qml/WelcomePages/CloudContent.qml:212 +msgctxt "@button" +msgid "Sign in" +msgstr "登录" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "发生意外错误,切片失败。请于问题跟踪器上报告错误。" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:163 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "切片失败" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "报告错误" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:169 +msgctxt "@message:description" +msgid "Report a bug on UltiMaker Cura's issue tracker." +msgstr "在 UltiMaker Cura 问题跟踪器上报告错误。" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:416 +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "无法使用当前材料进行切片,因为该材料与所选机器或配置不兼容。" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:417 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:450 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:477 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:501 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:514 +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "无法切片" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:449 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "无法使用当前设置进行切片。以下设置存在错误:{0}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:476 +#, 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 "因部分特定模型设置而无法切片。 以下设置在一个或多个模型上存在错误: {error_labels}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:488 +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "无法切片(原因:主塔或主位置无效)。" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:500 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "无法切片,因为存在与已禁用挤出机 %s 相关联的对象。" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:510 +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 "" +"请检查设置并检查您的模型是否:\n" +"- 适合构建体积\n" +"- 分配给了已启用的挤出器\n" +"- 尚未全部设置为修改器网格" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "正在处理层" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "信息" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine 后端" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "提供 CuraEngine 切片后端的路径。" + +#: plugins/CuraProfileReader/__init__.py:14 +#: plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Cura 配置文件" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura 配置文件读取器" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "提供了对导入 Cura 配置文件的支持。" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura 配置文件写入器" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "提供了对导出 Cura 配置文件的支持。" + +#: plugins/DigitalLibrary/plugin.json +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 打开文件并将文件保存到其中。" + +#: plugins/DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 +msgctxt "@option" +msgid "Save Cura project and print file" +msgstr "保存 Cura 项目并打印文件" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "保存 Cura 项目" + +#: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19 +msgctxt "@text Placeholder for the username if it has been deleted" +msgid "deleted user" +msgstr "已删除的用户" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "无法获取更新信息。" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, 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} 版。" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "新 %s 稳定固件可用" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "如何更新" + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "检查以进行固件更新。" + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "固件更新检查程序" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "更新固件" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "更新固件" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 +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 打印机上运行的一个软件。此固件控制步进电机,调节温度并最终使打印机正常工作。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "新打印机出厂配备的固件完全可以正常使用,但新版本往往具有更多的新功能和改进。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "自动升级固件" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "上传自定义固件" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "未连接打印机,无法更新固件。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "与打印机间的连接不支持固件更新,因此无法更新固件。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "选择自定义固件" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "固件升级" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 +msgctxt "@label" +msgid "Updating firmware." +msgstr "更新固件中..." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "固件更新已完成。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "由于未知错误,固件更新失败。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "由于通信错误,导致固件升级失败。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "由于输入/输出错误,导致固件升级失败。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "由于固件丢失,导致固件升级失败。" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "name" +msgid "Firmware Updater" +msgstr "固件更新程序" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "为固件更新提供操作选项。" + +#: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "压缩 G-code 文件" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "压缩 G-code 读取器" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "从压缩存档文件读取 G-code。" + +#: plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "GCodeGzWriter 不支持文本模式。" + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "压缩 G-code 写入器" + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "将 G-code 写入至压缩存档文件。" + +#: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14 +#: plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "GCode 文件" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "G-code 配置文件读取器" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "提供了从 GCode 文件中导入配置文件的支持。" + +#: plugins/GCodeReader/FlavorParser.py:359 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "解析 G-code" + +#: plugins/GCodeReader/FlavorParser.py:361 +#: plugins/GCodeReader/FlavorParser.py:515 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "G-code 详细信息" + +#: plugins/GCodeReader/FlavorParser.py:513 +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-code 适用于当前打印机和打印机配置。当前 G-code 文件可能不准确。" + +#: plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "G 文件" + +#: plugins/GCodeReader/plugin.json +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "允许加载和显示 G-code 文件。" + +#: plugins/GCodeReader/plugin.json +msgctxt "name" +msgid "G-code Reader" +msgstr "G-code 读取器" + +#: plugins/GCodeWriter/GCodeWriter.py:75 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "GCodeWriter 不支持非文本模式。" + +#: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "导出前请先准备 G-code。" + +#: plugins/GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "G-code 写入器" + +#: plugins/GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "将 G-code 写入至文件。" + +#: plugins/ImageReader/ConfigUI.qml:14 +msgctxt "@title:window" +msgid "Convert Image" +msgstr "转换图像" + +#: plugins/ImageReader/ConfigUI.qml:33 +msgctxt "@action:label" +msgid "Height (mm)" +msgstr "高度 (mm)" + +#: plugins/ImageReader/ConfigUI.qml:56 +msgctxt "@info:tooltip" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "每个像素与底板的最大距离" + +#: plugins/ImageReader/ConfigUI.qml:66 +msgctxt "@action:label" +msgid "Base (mm)" +msgstr "底板 (mm)" + +#: plugins/ImageReader/ConfigUI.qml:90 +msgctxt "@info:tooltip" +msgid "The base height from the build plate in millimeters." +msgstr "距离打印平台的底板高度,以毫米为单位。" + +#: plugins/ImageReader/ConfigUI.qml:100 +msgctxt "@action:label" +msgid "Width (mm)" +msgstr "宽度 (mm)" + +#: plugins/ImageReader/ConfigUI.qml:124 +msgctxt "@info:tooltip" +msgid "The width in millimeters on the build plate" +msgstr "构建板宽度,以毫米为单位" + +#: plugins/ImageReader/ConfigUI.qml:134 +msgctxt "@action:label" +msgid "Depth (mm)" +msgstr "深度 (mm)" + +#: plugins/ImageReader/ConfigUI.qml:158 +msgctxt "@info:tooltip" +msgid "The depth in millimeters on the build plate" +msgstr "打印平台深度,以毫米为单位" + +#: plugins/ImageReader/ConfigUI.qml:187 +msgctxt "@item:inlistbox" +msgid "Darker is higher" +msgstr "颜色越深厚度越大" + +#: plugins/ImageReader/ConfigUI.qml:188 +msgctxt "@item:inlistbox" +msgid "Lighter is higher" +msgstr "颜色越浅厚度越大" + +#: plugins/ImageReader/ConfigUI.qml:195 +msgctxt "@info:tooltip" +msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." +msgstr "在影像浮雕中,为了阻挡更多光源通过,深色像素应对应于较厚的位置。在高度图中,浅色像素代表着更高的地形,因此浅色像素对应于生成的 3D 模型中较厚的位置。" + +#: plugins/ImageReader/ConfigUI.qml:205 +msgctxt "@action:label" +msgid "Color Model" +msgstr "颜色模型" + +#: plugins/ImageReader/ConfigUI.qml:224 +msgctxt "@item:inlistbox" +msgid "Linear" +msgstr "线性" + +#: plugins/ImageReader/ConfigUI.qml:225 +msgctxt "@item:inlistbox" +msgid "Translucency" +msgstr "半透明" + +#: plugins/ImageReader/ConfigUI.qml:232 +msgctxt "@info:tooltip" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "对于隐雕,提供一个用于半透明的简单对数模型。对于高度图,像素值与高度线性对应。" + +#: plugins/ImageReader/ConfigUI.qml:242 +msgctxt "@action:label" +msgid "1mm Transmittance (%)" +msgstr "1 毫米透射率 (%)" + +#: plugins/ImageReader/ConfigUI.qml:263 +msgctxt "@info:tooltip" +msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." +msgstr "穿透 1 毫米厚的打印件的光线百分比。降低此值将增大图像暗区中的对比度并减小图像亮区中的对比度。" + +#: plugins/ImageReader/ConfigUI.qml:274 +msgctxt "@action:label" +msgid "Smoothing" +msgstr "平滑" + +#: plugins/ImageReader/ConfigUI.qml:298 +msgctxt "@info:tooltip" +msgid "The amount of smoothing to apply to the image." +msgstr "要应用到图像的平滑量。" + +#: plugins/ImageReader/ConfigUI.qml:329 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 +#: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25 +msgctxt "@action:button" +msgid "OK" +msgstr "确定" + +#: plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "JPG 图像" + +#: plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "JPEG 图像" + +#: plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "PNG 图像" + +#: plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "BMP 图像" + +#: plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "GIF 图像" + +#: plugins/ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "支持从 2D 图像文件生成可打印几何模型的能力。" + +#: plugins/ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "图像读取器" + +#: plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Cura 15.04 配置文件" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "旧版 Cura 配置文件读取器" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "支持从 Cura 旧版本导入配置文件。" + +#: plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "打印机设置" + +#: plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "打印机" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "喷嘴设置" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 +msgctxt "@label" +msgid "Nozzle size" +msgstr "喷嘴孔径" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "兼容的材料直径" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "喷嘴偏移 X" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "喷嘴偏移 Y" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "冷却风扇数量" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "挤出机的开始 G-code" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "挤出机的结束 G-code" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "打印机设置" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (宽度)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (深度)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (高度)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 +msgctxt "@label" +msgid "Build plate shape" +msgstr "打印平台形状" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 +msgctxt "@label" +msgid "Origin at center" +msgstr "置中" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 +msgctxt "@label" +msgid "Heated bed" +msgstr "加热床" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 +msgctxt "@label" +msgid "Heated build volume" +msgstr "加热的构建体积" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 +msgctxt "@label" +msgid "G-code flavor" +msgstr "G-code 风格" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "打印头设置" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 +msgctxt "@label" +msgid "X min" +msgstr "X 最小值" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 +msgctxt "@label" +msgid "Y min" +msgstr "Y 最小值" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 +msgctxt "@label" +msgid "X max" +msgstr "X 最大值" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 +msgctxt "@label" +msgid "Y max" +msgstr "Y 最大值" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 +msgctxt "@label" +msgid "Gantry Height" +msgstr "十字轴高度" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "挤出机数目" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:342 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "将挤出器偏移量应用于 GCode" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:390 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "开始 G-code" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:401 +msgctxt "@title:label" +msgid "End G-code" +msgstr "结束 G-code" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "name" +msgid "Machine Settings Action" +msgstr "打印机设置操作" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "提供一种改变机器设置的方法(如构建体积、喷嘴大小等)。" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "是否要与您的帐户同步材料和软件包?" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:95 +msgctxt "@info:title" +msgid "Changes detected from your UltiMaker account" +msgstr "检测到您的 UltiMaker 帐户有更改" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 +msgctxt "@action:button" +msgid "Sync" +msgstr "同步" + +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "正在同步..." + +#: plugins/Marketplace/CloudSync/LicenseModel.py:12 +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:79 +msgctxt "@button" +msgid "Decline" +msgstr "拒绝" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:13 +#: resources/qml/WelcomePages/UserAgreementContent.qml:53 +msgctxt "@button" +msgid "Agree" +msgstr "同意" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:77 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "插件许可协议" + +#: plugins/Marketplace/CloudSync/LicensePresenter.py:42 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "拒绝并从帐户中删除" + +#: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "需要退出并重新启动 {},然后更改才能生效。" + +#: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "{} 个插件下载失败" + +#: plugins/Marketplace/LocalPackageList.py:28 +msgctxt "@label" +msgid "Installed Plugins" +msgstr "已安装的插件" + +#: plugins/Marketplace/LocalPackageList.py:29 +msgctxt "@label" +msgid "Installed Materials" +msgstr "已安装的材料" + +#: plugins/Marketplace/LocalPackageList.py:33 +msgctxt "@label" +msgid "Bundled Plugins" +msgstr "已捆绑的插件" + +#: plugins/Marketplace/LocalPackageList.py:34 +msgctxt "@label" +msgid "Bundled Materials" +msgstr "已捆绑的材料" + +#: plugins/Marketplace/PackageModel.py:43 +msgctxt "@label:property" +msgid "Unknown Package" +msgstr "未知包" + +#: plugins/Marketplace/PackageModel.py:66 +msgctxt "@label:property" +msgid "Unknown Author" +msgstr "未知作者" + +#: plugins/Marketplace/PackageModel.py:95 +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 "在 Ultimaker Marketplace 上找不到与 Cura 项目相关的材料包。使用存储在 Cura 项目文件中的部分材料配置文件定义,风险自负。" + +#: plugins/Marketplace/RemotePackageList.py:117 +msgctxt "@info:error" +msgid "Could not interpret the server's response." +msgstr "无法解释服务器的响应。" + +#: plugins/Marketplace/RemotePackageList.py:148 +msgctxt "@info:error" +msgid "Could not reach Marketplace." +msgstr "无法连接到市场。" + +#: plugins/Marketplace/plugin.json +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "" + +#: plugins/Marketplace/plugin.json +msgctxt "name" +msgid "Marketplace" +msgstr "市场" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 +msgctxt "@title" +msgid "Changes from your account" +msgstr "您的帐户有更改" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +msgctxt "@button" +msgid "Dismiss" +msgstr "解除" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +#: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 +#: resources/qml/WelcomePages/WhatsNewContent.qml:175 +msgctxt "@button" +msgid "Next" +msgstr "下一步" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "将添加以下程序包:" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "由于 Cura 版本不兼容,无法安装以下程序包:" + +#: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "安装缺少的材料" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "插件许可协议" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:47 +msgctxt "@text" +msgid "Please read and agree with the plugin licence." +msgstr "请阅读并同意插件许可。" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "接受" + +#: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "管理包" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:12 +msgctxt "@header" +msgid "Manage packages" +msgstr "管理包" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:16 +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 插件和材料配置文件。请确保将插件保持为最新,并定期备份设置。" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" +msgid "Loading..." +msgstr "正在加载..." + +#: plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "插件" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "材料" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "在浏览器中搜索" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:271 +msgctxt "@button" +msgid "In order to use the package you will need to restart Cura" +msgstr "要使用该包,您需要重新启动 Cura" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:279 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "退出 %1" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:300 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" +msgstr "请登录以获取经验证适用于 UltiMaker Cura Enterprise 的插件和材料" + +#: plugins/Marketplace/resources/qml/Materials.qml:8 +#: plugins/Marketplace/resources/qml/MissingPackages.qml:8 +msgctxt "@header" +msgid "Install Materials" +msgstr "安装材料" + +#: plugins/Marketplace/resources/qml/Materials.qml:12 +msgctxt "@text" +msgid "Select and install material profiles optimised for your UltiMaker 3D printers." +msgstr "选择并安装针对您的 UltiMaker 3D 打印机经过优化的材料配置文件。" + +#: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "需要接受许可证才能安装该程序包" + +#: plugins/Marketplace/resources/qml/OnboardBanner.qml:101 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205 +msgctxt "@button:label" +msgid "Learn More" +msgstr "详细了解" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170 +msgctxt "@label Is followed by the name of an author" +msgid "By" +msgstr "由" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Disable" +msgstr "禁用" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Enable" +msgstr "启用" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242 +msgctxt "@button" +msgid "Downgrading..." +msgstr "正在降级..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243 +msgctxt "@button" +msgid "Downgrade" +msgstr "降级" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247 +msgctxt "@button" +msgid "Installing..." +msgstr "正在安装..." + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248 +msgctxt "@button" +msgid "Install" +msgstr "安装" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252 +msgctxt "@button" +msgid "Uninstall" +msgstr "卸载" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Update" +msgstr "更新" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Updating..." +msgstr "正在更新..." + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "包详情" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "返回" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "描述" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "兼容的打印机" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "无兼容性信息" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "兼容的支撑材料" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "无" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:193 +msgctxt "@header" +msgid "Compatible with Material Station" +msgstr "与 Material Station 兼容" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "No" +msgstr "否" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "Yes" +msgstr "是" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:219 +msgctxt "@header" +msgid "Optimized for Air Manager" +msgstr "已针对 Air Manager 优化" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Visit plug-in website" +msgstr "访问插件网站" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Website" +msgstr "网站" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:252 +msgctxt "@button" +msgid "Buy spool" +msgstr "购买线轴" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:261 +msgctxt "@button" +msgid "Safety datasheet" +msgstr "安全数据表" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:270 +msgctxt "@button" +msgid "Technical datasheet" +msgstr "技术数据表" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Failed to load packages:" +msgstr "无法加载包:" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Retry?" +msgstr "是否重试?" + +#: plugins/Marketplace/resources/qml/Packages.qml:167 +msgctxt "@button" +msgid "Loading" +msgstr "加载" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No more results to load" +msgstr "没有更多的结果要加载" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No results found with current filter" +msgstr "当前筛选没有任何结果" + +#: plugins/Marketplace/resources/qml/Packages.qml:226 +msgctxt "@button" +msgid "Load more" +msgstr "加载更多" + +#: plugins/Marketplace/resources/qml/Plugins.qml:8 +msgctxt "@header" +msgid "Install Plugins" +msgstr "安装插件" + +#: plugins/Marketplace/resources/qml/Plugins.qml:12 +msgctxt "@text" +msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." +msgstr "使用由我们卓越的用户社区提供的插件,简化您的工作流程并自定义 UltiMaker Cura 体验。" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 +msgctxt "@info" +msgid "UltiMaker Verified Plug-in" +msgstr "UltiMaker 验证插件" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "UltiMaker Certified Material" +msgstr "UltiMaker 认证材料" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 +msgctxt "@info" +msgid "UltiMaker Verified Package" +msgstr "UltiMaker 验证包" + +#: plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "三维模型的助理" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -836,1925 +2382,17 @@ msgstr "" "

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

    \n" "

    查看打印质量指南

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 -#, 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}。无法导入机器。将改为导入模型。" +#: plugins/ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "检查模型和打印配置,以了解潜在的打印问题并给出建议。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "打开项目文件" +#: plugins/ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "模型检查器" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "突然无法访问项目文件 {0}{1}。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:659 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "无法打开项目文件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:658 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "项目文件 {0} 损坏: {1}。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:711 -#, 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 版本未识别的配置文件制作的。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "推荐" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:214 -msgctxt "@title:tab" -msgid "Custom" -msgstr "自定义" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:390 -msgctxt "@info:status" -msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 -msgctxt "@info:title" -msgid "Material profiles not installed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 -msgctxt "@action:button" -msgid "Install Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "3MF 文件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "3MF 编写器插件已损坏。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "没有可写入的工作区。请先添加打印机。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "没有在此处写入工作区的权限。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "操作系统不允许向此位置或用此文件名保存项目文件。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:238 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "写入 3mf 文件时出错。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:282 -#, python-brace-format -msgctxt "@error:material" -msgid "It was not possible to store material package information in project file: {material}. This project may not open correctly on other systems." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 -msgctxt "@info:title" -msgid "Failed to save material package information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF 文件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura 项目 3MF 文件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF 文件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 -msgctxt "@info:title" -msgid "Backups" -msgstr "备份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "上传您的备份时出错。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "正在创建您的备份..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "创建您的备份时出错。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "正在上传您的备份..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "您的备份已完成上传。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "备份超过了最大文件大小。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "尝试恢复您的备份时出错。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "管理备份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "发生意外错误,切片失败。请于问题跟踪器上报告错误。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "切片失败" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 -msgctxt "@message:button" -msgid "Report a bug" -msgstr "报告错误" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 -msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." -msgstr "在 Ultimaker Cura 问题跟踪器上报告错误。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:400 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "无法使用当前材料进行切片,因为该材料与所选机器或配置不兼容。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:401 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:434 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:461 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:473 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:485 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:498 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "无法切片" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:433 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "无法使用当前设置进行切片。以下设置存在错误:{0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:460 -#, 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 "因部分特定模型设置而无法切片。 以下设置在一个或多个模型上存在错误: {error_labels}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:472 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "无法切片(原因:主塔或主位置无效)。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:484 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "无法切片,因为存在与已禁用挤出机 %s 相关联的对象。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 -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 "" -"请检查设置并检查您的模型是否:\n" -"- 适合构建体积\n" -"- 分配给了已启用的挤出器\n" -"- 尚未全部设置为修改器网格" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "正在处理层" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 -msgctxt "@info:title" -msgid "Information" -msgstr "信息" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura 配置文件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "无法获取更新信息。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, 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} 版。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s stable firmware available" -msgstr "新 %s 稳定固件可用" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "如何更新" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "更新固件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "压缩 G-code 文件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter 不支持文本模式。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "GCode 文件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:350 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "解析 G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:506 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-code 详细信息" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 -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-code 适用于当前打印机和打印机配置。当前 G-code 文件可能不准确。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G 文件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter 不支持非文本模式。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "导出前请先准备 G-code。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG 图像" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG 图像" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG 图像" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP 图像" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF 图像" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04 配置文件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "打印机设置" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "是否要与您的帐户同步材料和软件包?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "检测到您的 Ultimaker 帐户有更改" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 -msgctxt "@action:button" -msgid "Sync" -msgstr "同步" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "正在同步..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:12 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:79 -msgctxt "@button" -msgid "Decline" -msgstr "拒绝" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:13 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53 -msgctxt "@button" -msgid "Agree" -msgstr "同意" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "插件许可协议" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "拒绝并从帐户中删除" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "需要退出并重新启动 {},然后更改才能生效。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{} 个插件下载失败" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:28 -msgctxt "@label" -msgid "Installed Plugins" -msgstr "已安装的插件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:29 -msgctxt "@label" -msgid "Installed Materials" -msgstr "已安装的材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:33 -msgctxt "@label" -msgid "Bundled Plugins" -msgstr "已捆绑的插件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:34 -msgctxt "@label" -msgid "Bundled Materials" -msgstr "已捆绑的材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:43 -msgctxt "@label:property" -msgid "Unknown Package" -msgstr "未知包" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:66 -msgctxt "@label:property" -msgid "Unknown Author" -msgstr "未知作者" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:117 -msgctxt "@info:error" -msgid "Could not interpret the server's response." -msgstr "无法解释服务器的响应。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:148 -msgctxt "@info:error" -msgid "Could not reach Marketplace." -msgstr "无法连接到市场。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "监控" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 -msgctxt "@label" -msgid "Per Model Settings" -msgstr "单一模型设置" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "设置对每个模型的单独设定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "后期处理" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "修改 G-Code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "准备" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "预览" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "保存至可移动磁盘" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "保存到可移动磁盘 {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 -msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "没有可进行写入的文件格式!" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "保存到可移动磁盘 {0} " - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 -msgctxt "@info:title" -msgid "Saving" -msgstr "正在保存" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "无法保存到 {0}{1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 -#, 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} 时找不到文件名。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "无法保存到可移动磁盘 {0}:{1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "保存到可移动磁盘 {0} :{1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -msgctxt "@info:title" -msgid "File Saved" -msgstr "文件已保存" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -msgctxt "@action:button" -msgid "Eject" -msgstr "弹出" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "弹出可移动设备 {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "已弹出 {0}。现在,您可以安全地拔出磁盘。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "安全移除硬件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "无法弹出 {0},另一个程序可能正在使用磁盘。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "可移动磁盘" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "启用“单线打印”后,Cura 将无法准确地显示打印层。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "仿真视图" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "由于需要先切片,因此未显示任何内容。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "无层可显示" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "不再显示此消息" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "分层视图" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 -msgctxt "@text" -msgid "Unable to read example data file." -msgstr "无法读取示例数据文件。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "突出显示的区域指示缺少或多余的表面。修复模型,并再次在 Cura 中打开。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "模型错误" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "实体视图" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "支撑拦截器" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "创建一个不打印支撑的体积。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "打开压缩三角网格" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA 数据资源交换" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF 二进制" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF 嵌入式 JSON" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "斯坦福三角格式" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "压缩 COLLADA 数据资源交换" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker 格式包" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "无法写入到 UFP 文件:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "调平打印平台" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "选择升级" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 -msgctxt "@action:button" -msgid "Print via cloud" -msgstr "通过云打印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 -msgctxt "@properties:tooltip" -msgid "Print via cloud" -msgstr "通过云打印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 -msgctxt "@info:status" -msgid "Connected via cloud" -msgstr "通过云连接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 -msgctxt "@action:button" -msgid "Monitor print" -msgstr "监控打印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 -msgctxt "@action:tooltip" -msgid "Track the print in Ultimaker Digital Factory" -msgstr "在 Ultimaker Digital Factory 中跟踪打印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 -#, python-brace-format -msgctxt "@error:send" -msgid "Unknown error code when uploading print job: {0}" -msgstr "上传打印作业时出现未知错误代码:{0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "从您的 Ultimaker 帐户中检测到新的打印机" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:242 -#, 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})" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:261 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "... 和另外 {0} 台" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:266 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "从 Digital Factory 添加的打印机:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:334 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "某些打印机无云连接可用" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:343 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "这些打印机未链接到 Digital Factory:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:348 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:440 -msgctxt "info:name" -msgid "Ultimaker Digital Factory" -msgstr "Ultimaker Digital Factory" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:352 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "要建立连接,请访问 {website_link}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:356 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "保留打印机配置" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "删除打印机" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:442 -#, 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},直到下次帐户同步为止。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:443 -#, 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}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:444 -#, 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}?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 -msgctxt "@title:window" -msgid "Remove printers?" -msgstr "是否删除打印机?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 -#, python-brace-format -msgctxt "@label" -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" -"是否确实要继续?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 -msgctxt "@label" -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" -"是否确定继续?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 -#, 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 "" -"未能通过云连接您的打印机 {printer_name}。\n" -"只需将您的打印机连接到 Digital Factory,即可随时随地管理您的打印作业队列并监控您的打印结果" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 -msgctxt "@info:title" -msgid "Are you ready for cloud printing?" -msgstr "是否进行云打印?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 -msgctxt "@action" -msgid "Get started" -msgstr "开始" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 -msgctxt "@action" -msgid "Learn more" -msgstr "了解详情" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 -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 的打印机。请将打印机更新至最新固件。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "请更新升级打印机" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 -#, 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} 中的主机打印机上。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "正在将材料发送到打印机" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 -#, 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},但它不是组中的主机。您可以访问网页,将其配置为组主机。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "非组中的主机" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 -msgctxt "@action" -msgid "Configure group" -msgstr "配置组" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "请等待当前作业完成发送。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "打印错误" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "无法将数据上传到打印机。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "网络错误" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "发送打印作业" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "正在将打印作业上传至打印机。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "打印作业队列已满。打印机无法接受新作业。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "队列已满" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "打印作业已成功发送到打印机。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "数据已发送" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "通过网络打印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "通过网络打印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "已通过网络连接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "通过网络连接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "明天" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "今天" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "USB 联机打印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "通过 USB 联机打印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "通过 USB 联机打印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 -msgctxt "@info:status" -msgid "Connected via USB" -msgstr "通过 USB 连接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 -msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "正在进行 USB 打印,关闭 Cura 将停止此打印。您确定吗?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "正在进行打印在上一次打印完成之前,Cura 无法通过 USB 启动另一次打印。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 -msgctxt "@message" -msgid "Print in Progress" -msgstr "正在进行打印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D 文件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "透视视图" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 -msgctxt "@title:window" -msgid "Open Project" -msgstr "打开项目" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "更新已有配置" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "新建" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:59 -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "摘要 - Cura 项目" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108 -msgctxt "@info:tooltip" -msgid "How should the conflict in the machine be resolved?" -msgstr "机器的设置冲突应如何解决?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:95 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "打印机设置" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:104 -msgctxt "@action:label" -msgid "Type" -msgstr "类型" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:192 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -msgctxt "@action:label" -msgid "Printer Group" -msgstr "打印机组" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:217 -msgctxt "@info:tooltip" -msgid "How should the conflict in the profile be resolved?" -msgstr "配置文件中的冲突如何解决?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:220 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "配置文件设置" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:250 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:375 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:244 -msgctxt "@action:label" -msgid "Name" -msgstr "名字" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:268 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:261 -msgctxt "@action:label" -msgid "Intent" -msgstr "Intent" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:286 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:228 -msgctxt "@action:label" -msgid "Not in profile" -msgstr "不在配置文件中" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:292 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:233 -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "%1 重写" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 -msgctxt "@action:label" -msgid "Derivative from" -msgstr "衍生自" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:311 -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "%1, %2 重写" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:333 -msgctxt "@info:tooltip" -msgid "How should the conflict in the material be resolved?" -msgstr "材料的设置冲突应如何解决?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:360 -msgctxt "@action:label" -msgid "Material settings" -msgstr "材料设置" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:396 -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "设置可见性" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 -msgctxt "@action:label" -msgid "Mode" -msgstr "模式" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 -msgctxt "@action:label" -msgid "Visible settings:" -msgstr "可见设置:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "%1 / %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:447 -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "加载项目将清除打印平台上的所有模型。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 -msgctxt "@action:button" -msgid "Open" -msgstr "打开" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 -msgctxt "@action:button" -msgid "Open project anyway" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 -msgctxt "@action:button" -msgid "Install missing material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "想要更多?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "立即备份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "自动备份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "在 Cura 每天启动时自动创建备份。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 -msgctxt "@button" -msgid "Restore" -msgstr "恢复" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "删除备份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "您确定要删除此备份吗?此操作无法撤销。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "恢复备份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 -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 吗?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura 版本" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "机器" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "配置文件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "插件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura 备份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "我的备份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "您目前没有任何备份。使用“立即备份”按钮创建一个备份。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "在预览阶段,将限制为 5 个可见备份。移除一个备份以查看更早的备份。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "备份并同步您的 Cura 设置。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:212 -msgctxt "@button" -msgid "Sign in" -msgstr "登录" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 -msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 -msgctxt "@option" -msgid "Save Cura project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "更新固件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 -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 打印机上运行的一个软件。此固件控制步进电机,调节温度并最终使打印机正常工作。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 -msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "新打印机出厂配备的固件完全可以正常使用,但新版本往往具有更多的新功能和改进。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "自动升级固件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "上传自定义固件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "未连接打印机,无法更新固件。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "与打印机间的连接不支持固件更新,因此无法更新固件。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "选择自定义固件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "固件升级" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 -msgctxt "@label" -msgid "Updating firmware." -msgstr "更新固件中..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "固件更新已完成。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "由于未知错误,固件更新失败。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "由于通信错误,导致固件升级失败。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "由于输入/输出错误,导致固件升级失败。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "由于固件丢失,导致固件升级失败。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:14 -msgctxt "@title:window" -msgid "Convert Image" -msgstr "转换图像" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 -msgctxt "@action:label" -msgid "Height (mm)" -msgstr "高度 (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "每个像素与底板的最大距离" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 -msgctxt "@action:label" -msgid "Base (mm)" -msgstr "底板 (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 -msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "距离打印平台的底板高度,以毫米为单位。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 -msgctxt "@action:label" -msgid "Width (mm)" -msgstr "宽度 (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 -msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate" -msgstr "构建板宽度,以毫米为单位" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 -msgctxt "@action:label" -msgid "Depth (mm)" -msgstr "深度 (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 -msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "打印平台深度,以毫米为单位" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 -msgctxt "@item:inlistbox" -msgid "Darker is higher" -msgstr "颜色越深厚度越大" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -msgctxt "@item:inlistbox" -msgid "Lighter is higher" -msgstr "颜色越浅厚度越大" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 -msgctxt "@info:tooltip" -msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." -msgstr "在影像浮雕中,为了阻挡更多光源通过,深色像素应对应于较厚的位置。在高度图中,浅色像素代表着更高的地形,因此浅色像素对应于生成的 3D 模型中较厚的位置。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:205 -msgctxt "@action:label" -msgid "Color Model" -msgstr "颜色模型" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:224 -msgctxt "@item:inlistbox" -msgid "Linear" -msgstr "线性" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 -msgctxt "@item:inlistbox" -msgid "Translucency" -msgstr "半透明" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 -msgctxt "@info:tooltip" -msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." -msgstr "对于隐雕,提供一个用于半透明的简单对数模型。对于高度图,像素值与高度线性对应。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 -msgctxt "@action:label" -msgid "1mm Transmittance (%)" -msgstr "1 毫米透射率 (%)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 -msgctxt "@info:tooltip" -msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." -msgstr "穿透 1 毫米厚的打印件的光线百分比。降低此值将增大图像暗区中的对比度并减小图像亮区中的对比度。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 -msgctxt "@action:label" -msgid "Smoothing" -msgstr "平滑" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:298 -msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "要应用到图像的平滑量。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:143 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:80 -msgctxt "@action:button" -msgid "OK" -msgstr "确定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "打印机" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "喷嘴设置" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 -msgctxt "@label" -msgid "Nozzle size" -msgstr "喷嘴孔径" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "兼容的材料直径" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "喷嘴偏移 X" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "喷嘴偏移 Y" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "冷却风扇数量" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "挤出机的开始 G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "挤出机的结束 G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "打印机设置" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (宽度)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (深度)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (高度)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 -msgctxt "@label" -msgid "Build plate shape" -msgstr "打印平台形状" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 -msgctxt "@label" -msgid "Origin at center" -msgstr "置中" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 -msgctxt "@label" -msgid "Heated bed" -msgstr "加热床" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 -msgctxt "@label" -msgid "Heated build volume" -msgstr "加热的构建体积" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 -msgctxt "@label" -msgid "G-code flavor" -msgstr "G-code 风格" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "打印头设置" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 -msgctxt "@label" -msgid "X min" -msgstr "X 最小值" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 -msgctxt "@label" -msgid "Y min" -msgstr "Y 最小值" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 -msgctxt "@label" -msgid "X max" -msgstr "X 最大值" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 -msgctxt "@label" -msgid "Y max" -msgstr "Y 最大值" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 -msgctxt "@label" -msgid "Gantry Height" -msgstr "十字轴高度" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "挤出机数目" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "将挤出器偏移量应用于 GCode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "开始 G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400 -msgctxt "@title:label" -msgid "End G-code" -msgstr "结束 G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 -msgctxt "@title" -msgid "Changes from your account" -msgstr "您的帐户有更改" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -msgctxt "@button" -msgid "Dismiss" -msgstr "解除" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:118 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:175 -msgctxt "@button" -msgid "Next" -msgstr "下一步" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "将添加以下程序包:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "由于 Cura 版本不兼容,无法安装以下程序包:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 -msgctxt "@title" -msgid "Install missing Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 -msgctxt "@button" -msgid "Plugin license agreement" -msgstr "插件许可协议" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47 -msgctxt "@text" -msgid "Please read and agree with the plugin licence." -msgstr "请阅读并同意插件许可。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 -msgctxt "@button" -msgid "Accept" -msgstr "接受" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 -msgctxt "@header" -msgid "Manage packages" -msgstr "管理包" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15 -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 插件和材料配置文件。请确保将插件保持为最新,并定期备份设置。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 -msgctxt "@info:tooltip" -msgid "Manage packages" -msgstr "管理包" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 -msgctxt "@title" -msgid "Loading..." -msgstr "正在加载..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 -msgctxt "@button" -msgid "Plugins" -msgstr "插件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 -msgctxt "@button" -msgid "Materials" -msgstr "材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 -msgctxt "@info" -msgid "Search in the browser" -msgstr "在浏览器中搜索" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:271 -msgctxt "@button" -msgid "In order to use the package you will need to restart Cura" -msgstr "要使用该包,您需要重新启动 Cura" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:279 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "退出 %1" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:8 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MissingPackages.qml:8 -msgctxt "@header" -msgid "Install Materials" -msgstr "安装材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 -msgctxt "@text" -msgid "Select and install material profiles optimised for your Ultimaker 3D printers." -msgstr "选择并安装针对您的 Ultimaker 3D 打印机经过优化的材料配置文件。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "需要接受许可证才能安装该程序包" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:101 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:207 -msgctxt "@button:label" -msgid "Learn More" -msgstr "详细了解" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:172 -msgctxt "@label Is followed by the name of an author" -msgid "By" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Enable" -msgstr "启用" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Disable" -msgstr "禁用" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 -msgctxt "@button" -msgid "Downgrading..." -msgstr "正在降级..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 -msgctxt "@button" -msgid "Downgrade" -msgstr "降级" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 -msgctxt "@button" -msgid "Installing..." -msgstr "正在安装..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 -msgctxt "@button" -msgid "Install" -msgstr "安装" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 -msgctxt "@button" -msgid "Uninstall" -msgstr "卸载" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Updating..." -msgstr "正在更新..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Update" -msgstr "更新" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 -msgctxt "@header" -msgid "Package details" -msgstr "包详情" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 -msgctxt "@button:tooltip" -msgid "Back" -msgstr "返回" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 -msgctxt "@header" -msgid "Description" -msgstr "描述" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 -msgctxt "@header" -msgid "Compatible printers" -msgstr "兼容的打印机" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:134 -msgctxt "@info" -msgid "No compatibility information" -msgstr "无兼容性信息" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:152 -msgctxt "@header" -msgid "Compatible support materials" -msgstr "兼容的支撑材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176 -msgctxt "@info No materials" -msgid "None" -msgstr "无" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:193 -msgctxt "@header" -msgid "Compatible with Material Station" -msgstr "与 Material Station 兼容" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "Yes" -msgstr "是" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "No" -msgstr "否" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:219 -msgctxt "@header" -msgid "Optimized for Air Manager" -msgstr "已针对 Air Manager 优化" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Visit plug-in website" -msgstr "访问插件网站" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Website" -msgstr "网站" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:252 -msgctxt "@button" -msgid "Buy spool" -msgstr "购买线轴" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:261 -msgctxt "@button" -msgid "Safety datasheet" -msgstr "安全数据表" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:270 -msgctxt "@button" -msgid "Technical datasheet" -msgstr "技术数据表" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Failed to load packages:" -msgstr "无法加载包:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Retry?" -msgstr "是否重试?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:167 -msgctxt "@button" -msgid "Loading" -msgstr "加载" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No more results to load" -msgstr "没有更多的结果要加载" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No results found with current filter" -msgstr "当前筛选没有任何结果" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:226 -msgctxt "@button" -msgid "Load more" -msgstr "加载更多" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8 -msgctxt "@header" -msgid "Install Plugins" -msgstr "安装插件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12 -msgctxt "@text" -msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users." -msgstr "使用由我们卓越的用户社区提供的插件,简化您的工作流程并自定义 Ultimaker Cura 体验。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 -msgctxt "@info" -msgid "Ultimaker Verified Plug-in" -msgstr "Ultimaker 验证插件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 -msgctxt "@info" -msgid "Ultimaker Certified Material" -msgstr "Ultimaker 认证材料" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 -msgctxt "@info" -msgid "Ultimaker Verified Package" -msgstr "Ultimaker 验证包" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -2767,1402 +2405,2463 @@ msgstr "" "- 检查打印机是否连接至网络。\n" "- 检查您是否已登录查找云连接的打印机。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 +#: plugins/MonitorStage/MonitorMain.qml:113 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "请将打印机连接到网络。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 +#: plugins/MonitorStage/MonitorMain.qml:148 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "查看联机用户手册" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:163 +#: plugins/MonitorStage/MonitorMain.qml:164 msgctxt "@info" msgid "In order to monitor your print from Cura, please connect the printer." msgstr "为了从 Cura 监控您的打印,请连接打印机。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 +#: plugins/MonitorStage/__init__.py:14 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "监控" + +#: plugins/MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "监视阶段" + +#: plugins/MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "在 Cura 中提供监视阶段。" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 msgctxt "@label" msgid "Mesh Type" msgstr "网格类型" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 msgctxt "@label" msgid "Normal model" msgstr "正常模式" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 msgctxt "@label" msgid "Print as support" msgstr "打印为支撑" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 msgctxt "@label" msgid "Modify settings for overlaps" msgstr "修改重叠设置" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 msgctxt "@label" msgid "Don't support overlaps" msgstr "不支持重叠" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 msgctxt "@item:inlistbox" msgid "Infill mesh only" msgstr "仅填充网格" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161 msgctxt "@item:inlistbox" msgid "Cutting mesh" msgstr "切割网格" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386 msgctxt "@action:button" msgid "Select settings" msgstr "选择设置" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 msgctxt "@title:window" msgid "Select Settings to Customize for this model" msgstr "选择对此模型的自定义设置" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: resources/qml/Preferences/SettingVisibilityPage.qml:102 msgctxt "@label:textbox" msgid "Filter..." msgstr "筛选..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 msgctxt "@label:checkbox" msgid "Show all" msgstr "显示全部" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +#: plugins/PerObjectSettingsTool/__init__.py:14 +msgctxt "@label" +msgid "Per Model Settings" +msgstr "单一模型设置" + +#: plugins/PerObjectSettingsTool/__init__.py:15 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "设置对每个模型的单独设定" + +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "单一模型设置工具" + +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "提供对每个模型的单独设置。" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +msgctxt "@item:inmenu" +msgid "Post Processing" +msgstr "后期处理" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +msgctxt "@item:inmenu" +msgid "Modify G-Code" +msgstr "修改 G-Code" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "后期处理插件" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 msgctxt "@label" msgid "Post Processing Scripts" msgstr "后期处理脚本" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 msgctxt "@action" msgid "Add a script" msgstr "添加一个脚本" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 msgctxt "@label" msgid "Settings" msgstr "设置" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:459 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460 msgctxt "@info:tooltip" msgid "Change active post-processing scripts." msgstr "更改处于活动状态的后期处理脚本。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:463 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 msgctxt "@info:tooltip" msgid "The following script is active:" msgid_plural "The following scripts are active:" msgstr[0] "以下脚本处于活动状态:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:47 +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "扩展程序(允许用户创建脚本进行后期处理)" + +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "后期处理" + +#: plugins/PrepareStage/PrepareMenu.qml:74 +msgctxt "@button" +msgid "Add printer" +msgstr "添加打印机" + +#: plugins/PrepareStage/PrepareMenu.qml:90 +msgctxt "@button" +msgid "Manage printers" +msgstr "管理打印机" + +#: plugins/PrepareStage/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "准备" + +#: plugins/PrepareStage/plugin.json +msgctxt "name" +msgid "Prepare Stage" +msgstr "准备阶段" + +#: plugins/PrepareStage/plugin.json +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "在 Cura 中提供准备阶段。" + +#: plugins/PreviewStage/__init__.py:13 +msgctxt "@item:inmenu" +msgid "Preview" +msgstr "预览" + +#: plugins/PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "预览阶段" + +#: plugins/PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "在 Cura 中提供预览阶段。" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "保存至可移动磁盘" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "保存到可移动磁盘 {0}" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "没有可进行写入的文件格式!" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "保存到可移动磁盘 {0} " + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 +msgctxt "@info:title" +msgid "Saving" +msgstr "正在保存" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "无法保存到 {0}{1}" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 +#, 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} 时找不到文件名。" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 +#, python-brace-format +msgctxt "@info:status" +msgid "Could not save to removable drive {0}: {1}" +msgstr "无法保存到可移动磁盘 {0}:{1}" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "保存到可移动磁盘 {0} :{1}" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 +msgctxt "@info:title" +msgid "File Saved" +msgstr "文件已保存" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +msgctxt "@action:button" +msgid "Eject" +msgstr "弹出" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "弹出可移动设备 {0}" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "已弹出 {0}。现在,您可以安全地拔出磁盘。" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "安全移除硬件" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "无法弹出 {0},另一个程序可能正在使用磁盘。" + +#: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "可移动磁盘" + +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "提供可移动磁盘热插拔和写入文件的支持。" + +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "可移动磁盘输出设备插件" + +#: plugins/SentryLogger/plugin.json +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "记录某些事件,以使其可供崩溃报告器使用" + +#: plugins/SentryLogger/plugin.json +msgctxt "name" +msgid "Sentry Logger" +msgstr "Sentry 日志记录" + +#: plugins/SimulationView/SimulationView.py:129 +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "由于需要先切片,因此未显示任何内容。" + +#: plugins/SimulationView/SimulationView.py:130 +msgctxt "@info:title" +msgid "No layers to show" +msgstr "无层可显示" + +#: plugins/SimulationView/SimulationView.py:132 +#: plugins/SolidView/SolidView.py:74 +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "不再显示此消息" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:18 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:47 msgctxt "@label" msgid "Color scheme" msgstr "颜色方案" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:104 msgctxt "@label:listbox" msgid "Material Color" msgstr "材料颜色" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:108 msgctxt "@label:listbox" msgid "Line Type" msgstr "走线类型" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:112 msgctxt "@label:listbox" msgid "Speed" msgstr "速度" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:116 msgctxt "@label:listbox" msgid "Layer Thickness" msgstr "层厚度" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:120 msgctxt "@label:listbox" msgid "Line Width" msgstr "走线宽度" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:124 msgctxt "@label:listbox" msgid "Flow" msgstr "流量" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:164 msgctxt "@label" msgid "Compatibility Mode" msgstr "兼容模式" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:231 msgctxt "@label" msgid "Travels" msgstr "空驶" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:237 msgctxt "@label" msgid "Helpers" msgstr "打印辅助结构" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:243 msgctxt "@label" msgid "Shell" msgstr "外壳" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:64 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:249 msgctxt "@label" msgid "Infill" msgstr "填充" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" msgid "Starts" msgstr "开始" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:304 msgctxt "@label" msgid "Only Show Top Layers" msgstr "只显示顶层" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:313 msgctxt "@label" msgid "Show 5 Detailed Layers On Top" msgstr "在顶部显示 5 层打印细节" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:326 msgctxt "@label" msgid "Top / Bottom" msgstr "顶 / 底层" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:330 msgctxt "@label" msgid "Inner Wall" msgstr "内壁" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:397 msgctxt "@label" msgid "min" msgstr "最小" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:462 msgctxt "@label" msgid "max" msgstr "最大" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 +#: plugins/SimulationView/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "分层视图" + +#: plugins/SimulationView/plugin.json +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "提供切片层数据的预览。" + +#: plugins/SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "仿真视图" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 msgctxt "@title:window" msgid "More information on anonymous data collection" msgstr "更多关于匿名数据收集的信息" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 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 会收集匿名数据。以下是所有数据分享的示例:" +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 会收集匿名数据。以下是所有数据分享的示例:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 msgctxt "@text:window" msgid "I don't want to send anonymous data" msgstr "我不想发送匿名数据" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "允许发送匿名数据" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "打印平台调平" +#: plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "无法读取示例数据文件。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "切片信息" + +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "提交匿名切片信息。 可以通过偏好设置禁用。" + +#: plugins/SolidView/SolidView.py:71 +msgctxt "@info:status" +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "突出显示的区域指示缺少或多余的表面。修复模型,并再次在 Cura 中打开。" + +#: plugins/SolidView/SolidView.py:73 +msgctxt "@info:title" +msgid "Model Errors" +msgstr "模型错误" + +#: plugins/SolidView/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "实体视图" + +#: plugins/SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "提供一个基本的实体网格视图。" + +#: plugins/SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "实体视图" + +#: plugins/SupportEraser/__init__.py:12 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 "为了确保打印质量出色,您现在可以开始调整您的打印平台。当您点击「移动到下一个位置」时,喷嘴将移动到可以调节的不同位置。" +msgid "Support Blocker" +msgstr "支撑拦截器" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 -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 "在打印头停止的每一个位置下方插入一张纸,并调整平台高度。当纸张恰好被喷嘴的尖端轻微压住时,此时打印平台的高度已被正确校准。" +#: plugins/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "创建一个不打印支撑的体积。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "开始进行打印平台调平" +#: plugins/SupportEraser/plugin.json +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "创建橡皮擦网格,以便阻止在某些位置打印支撑" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "移动到下一个位置" +#: plugins/SupportEraser/plugin.json +msgctxt "name" +msgid "Support Eraser" +msgstr "支持橡皮擦" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "请选择适用于 Ultimaker Original 的升级文件" +#: plugins/TrimeshReader/__init__.py:15 +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "打开压缩三角网格" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "热床(官方版本或自制)" +#: plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "COLLADA 数据资源交换" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 +#: plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "glTF 二进制" + +#: plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "glTF 嵌入式 JSON" + +#: plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "斯坦福三角格式" + +#: plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "压缩 COLLADA 数据资源交换" + +#: plugins/TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "提供对读取模型文件的支持。" + +#: plugins/TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh 阅读器" + +#: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "UltiMaker Format Package" +msgstr "UltiMaker 格式包" + +#: plugins/UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "" + +#: plugins/UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP 读取器" + +#: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80 +#: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115 +#: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180 +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "无法写入到 UFP 文件:" + +#: plugins/UFPWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "" + +#: plugins/UFPWriter/plugin.json +msgctxt "name" +msgid "UFP Writer" +msgstr "UFP 写入器" + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "" + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 msgctxt "@title:window" msgid "Connect to Networked Printer" msgstr "连接到网络打印机" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -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-code 文件传输到打印机。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 msgctxt "@label" msgid "Select your printer from the list below:" msgstr "请从以下列表中选择您的打印机:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +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-code 文件传输到打印机。" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 msgctxt "@action:button" msgid "Edit" msgstr "编辑" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:140 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:321 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 +#: resources/qml/Preferences/MachinesPage.qml:153 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:186 +#: resources/qml/Preferences/ProfilesPage.qml:321 msgctxt "@action:button" msgid "Remove" msgstr "删除" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 msgctxt "@action:button" msgid "Refresh" msgstr "刷新" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "如果您的打印机未列出,请阅读网络打印故障排除指南" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 msgctxt "@label" msgid "Type" msgstr "类型" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 msgctxt "@label" msgid "Firmware version" msgstr "固件版本" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 msgctxt "@label" msgid "Address" msgstr "地址" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 msgctxt "@label" msgid "This printer is not set up to host a group of printers." msgstr "这台打印机未设置为运行一组打印机。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "这台打印机是一组共 %1 台打印机的主机。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 msgctxt "@label" msgid "The printer at this address has not yet responded." msgstr "该网络地址的打印机尚未响应。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 msgctxt "@action:button" msgid "Connect" msgstr "连接" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 msgctxt "@title:window" msgid "Invalid IP address" msgstr "IP 地址无效" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 msgctxt "@text" msgid "Please enter a valid IP address." msgstr "请输入有效的 IP 地址。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 msgctxt "@title:window" msgid "Printer Address" msgstr "打印机网络地址" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 msgctxt "@label" msgid "Enter the IP address of your printer on the network." msgstr "请输入打印机在网络上的 IP 地址。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 msgctxt "@title:window" msgid "Configuration Changes" msgstr "配置更改" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 msgctxt "@action:button" msgid "Override" msgstr "覆盖" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 msgctxt "@label" msgid "The assigned printer, %1, requires the following configuration change:" msgid_plural "The assigned printer, %1, requires the following configuration changes:" msgstr[0] "分配的打印机 %1 需要以下配置更改:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 msgctxt "@label" msgid "The printer %1 is assigned, but the job contains an unknown material configuration." msgstr "已向打印机 %1 分配作业,但作业包含未知的材料配置。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 msgctxt "@label" msgid "Change material %1 from %2 to %3." msgstr "将材料 %1 从 %2 更改为 %3。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 msgctxt "@label" msgid "Load %3 as material %1 (This cannot be overridden)." msgstr "将 %3 作为材料 %1 进行加载(此操作无法覆盖)。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 msgctxt "@label" msgid "Change print core %1 from %2 to %3." msgstr "将 Print Core %1 从 %2 更改为 %3。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "将打印平台更改为 %1(此操作无法覆盖)。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110 msgctxt "@label" msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." msgstr "覆盖将使用包含现有打印机配置的指定设置。这可能会导致打印失败。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:178 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:175 -msgctxt "@label" -msgid "Glass" -msgstr "玻璃" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154 -msgctxt "@label" -msgid "Aluminum" -msgstr "铝" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 msgctxt "@label" msgid "Move to top" msgstr "移至顶部" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155 msgctxt "@label" msgid "Delete" msgstr "删除" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:284 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186 +#: resources/qml/MonitorButton.qml:284 msgctxt "@label" msgid "Resume" msgstr "恢复" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188 msgctxt "@label" msgid "Pausing..." msgstr "正在暂停..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190 msgctxt "@label" msgid "Resuming..." msgstr "正在恢复..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:288 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192 +#: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288 msgctxt "@label" msgid "Pause" msgstr "暂停" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "正在中止..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 msgctxt "@label" msgid "Abort" msgstr "中止" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:142 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Aborting..." +msgstr "正在中止..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218 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 移至队列顶部吗?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219 msgctxt "@window:title" msgid "Move print job to top" msgstr "将打印作业移至顶部" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:151 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227 msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to delete %1?" msgstr "您确定要删除 %1 吗?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228 msgctxt "@window:title" msgid "Delete print job" msgstr "删除打印作业" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:160 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236 msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to abort %1?" msgstr "您确定要中止 %1 吗?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237 +#: resources/qml/MonitorButton.qml:326 msgctxt "@window:title" msgid "Abort print" msgstr "中止打印" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "管理打印机" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:239 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "请及时更新打印机固件以远程管理打印队列。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:275 -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 并查看此网络摄像头。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335 -msgctxt "@label:status" -msgid "Loading..." -msgstr "正在加载..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "不可用" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "无法连接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347 -msgctxt "@label:status" -msgid "Idle" -msgstr "空闲" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "正在准备..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Printing" -msgstr "打印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397 -msgctxt "@label" -msgid "Untitled" -msgstr "未命名" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:412 -msgctxt "@label" -msgid "Anonymous" -msgstr "匿名" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:433 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "需要更改配置" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:447 -msgctxt "@action:button" -msgid "Details" -msgstr "详细信息" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 msgctxt "@label" msgid "Unavailable printer" msgstr "不可用的打印机" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 msgctxt "@label" msgid "First available" msgstr "第一个可用" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "请及时更新打印机固件以远程管理打印队列。" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 msgctxt "@label:status" msgid "Aborted" msgstr "已中止" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 msgctxt "@label:status" msgid "Finished" msgstr "已完成" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "正在准备..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 msgctxt "@label:status" msgid "Aborting..." msgstr "正在中止..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 msgctxt "@label:status" msgid "Failed" msgstr "失败" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 msgctxt "@label:status" msgid "Pausing..." msgstr "正在暂停..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 msgctxt "@label:status" msgid "Paused" msgstr "已暂停" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 msgctxt "@label:status" msgid "Resuming..." msgstr "正在恢复..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 msgctxt "@label:status" msgid "Action required" msgstr "需要采取行动" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 msgctxt "@label:status" msgid "Finishes %1 at %2" msgstr "完成 %1 于 %2" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "管理打印机" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280 +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 并查看此网络摄像头。" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340 +msgctxt "@label:status" +msgid "Loading..." +msgstr "正在加载..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "不可用" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "无法连接" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Idle" +msgstr "空闲" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361 +msgctxt "@label:status" +msgid "Printing" +msgstr "打印" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402 +msgctxt "@label" +msgid "Untitled" +msgstr "未命名" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417 +msgctxt "@label" +msgid "Anonymous" +msgstr "匿名" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "需要更改配置" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452 +msgctxt "@action:button" +msgid "Details" +msgstr "详细信息" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 msgctxt "@label" msgid "Queued" msgstr "已排队" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64 msgctxt "@label link to connect manager" msgid "Manage in browser" msgstr "请于浏览器中进行管理" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91 msgctxt "@label" msgid "There are no print jobs in the queue. Slice and send a job to add one." msgstr "队列中无打印任务。可通过切片和发送添加任务。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:98 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 msgctxt "@label" msgid "Print jobs" msgstr "打印作业" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108 msgctxt "@label" msgid "Total print time" msgstr "总打印时间" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117 msgctxt "@label" msgid "Waiting for" msgstr "等待" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117 +msgctxt "@info" +msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" +msgstr "使用 UltiMaker Digital Factory 随时随地监控您的打印机" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129 +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "在 Digital Factory 中查看打印机" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 msgctxt "@title:window" msgid "Print over network" msgstr "通过网络打印" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 msgctxt "@action:button" msgid "Print" msgstr "打印" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 msgctxt "@label" msgid "Printer selection" msgstr "打印机选择" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162 +msgctxt "@action:button" +msgid "Print via cloud" +msgstr "通过云打印" + +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163 +msgctxt "@properties:tooltip" +msgid "Print via cloud" +msgstr "通过云打印" + +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164 +msgctxt "@info:status" +msgid "Connected via cloud" +msgstr "通过云连接" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276 +msgctxt "@action:button" +msgid "Monitor print" +msgstr "监控打印" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278 +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "在 Ultimaker Digital Factory 中跟踪打印" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298 +#, python-brace-format +msgctxt "@error:send" +msgid "Unknown error code when uploading print job: {0}" +msgstr "上传打印作业时出现未知错误代码:{0}" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23 +msgctxt "info:name" +msgid "Ultimaker Digital Factory" +msgstr "Ultimaker Digital Factory" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425 +#, 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},直到下次帐户同步为止。" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426 +#, 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}" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427 +#, 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}?" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474 +msgctxt "@title:window" +msgid "Remove printers?" +msgstr "是否删除打印机?" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477 +#, python-brace-format +msgctxt "@label" +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" +"是否确实要继续?" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +msgctxt "@label" +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" +"是否确定继续?" + +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#, 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 "" +"未能通过云连接您的打印机 {printer_name}。\n" +"只需将您的打印机连接到 Digital Factory,即可随时随地管理您的打印作业队列并监控您的打印结果" + +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "是否进行云打印?" + +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +msgctxt "@action" +msgid "Get started" +msgstr "开始" + +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24 +msgctxt "@action" +msgid "Learn more" +msgstr "了解详情" + +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +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 "" + +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "请更新升级打印机" + +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#, 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} 中的主机打印机上。" + +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "正在将材料发送到打印机" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "从您的 Ultimaker 帐户中检测到新的打印机" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29 +#, 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})" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "... 和另外 {0} 台" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "从 Digital Factory 添加的打印机:" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#, 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},但它不是组中的主机。您可以访问网页,将其配置为组主机。" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "非组中的主机" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +msgctxt "@action" +msgid "Configure group" +msgstr "配置组" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18 +msgctxt "@info:status" +msgid "You will receive a confirmation via email when the print job is approved" +msgstr "打印作业获得批准后,您将收到电子邮件确认信息" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19 +msgctxt "@info:title" +msgid "The print job was successfully submitted" +msgstr "打印作业已成功提交" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22 +msgctxt "@action" +msgid "Manage print jobs" +msgstr "管理打印作业" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "请等待当前作业完成发送。" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +msgctxt "@info:title" +msgid "Print error" +msgstr "打印错误" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "无法将数据上传到打印机。" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +msgctxt "@info:title" +msgid "Network error" +msgstr "网络错误" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "发送打印作业" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "正在将打印作业上传至打印机。" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "打印作业队列已满。打印机无法接受新作业。" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "队列已满" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "打印作业已成功发送到打印机。" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "数据已发送" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "这些打印机未链接到 Digital Factory:" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "要建立连接,请访问 {website_link}" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "某些打印机无云连接可用" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "保留打印机配置" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "删除打印机" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "通过网络打印" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "通过网络打印" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "已通过网络连接" + +#: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +msgctxt "@action" +msgid "Connect via Network" +msgstr "通过网络连接" + +#: plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "明天" + +#: plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "今天" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "USB 联机打印" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:43 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "通过 USB 联机打印" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:44 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "通过 USB 联机打印" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:80 +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "通过 USB 连接" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:110 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "正在进行 USB 打印,关闭 Cura 将停止此打印。您确定吗?" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:135 +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "正在进行打印在上一次打印完成之前,Cura 无法通过 USB 启动另一次打印。" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "正在进行打印" + +#: plugins/USBPrinting/plugin.json +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "接受 G-Code 并将其发送到一台打印机。 插件也可以更新固件。" + +#: plugins/USBPrinting/plugin.json +msgctxt "name" +msgid "USB printing" +msgstr "USB 联机打印" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 +msgctxt "@action" +msgid "Level build plate" +msgstr "调平打印平台" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "打印平台调平" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 +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 "为了确保打印质量出色,您现在可以开始调整您的打印平台。当您点击「移动到下一个位置」时,喷嘴将移动到可以调节的不同位置。" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 +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 "在打印头停止的每一个位置下方插入一张纸,并调整平台高度。当纸张恰好被喷嘴的尖端轻微压住时,此时打印平台的高度已被正确校准。" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "开始进行打印平台调平" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "移动到下一个位置" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "选择升级" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this UltiMaker Original" +msgstr "请选择适用于 UltiMaker Original 的升级文件" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "热床(官方版本或自制)" + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "" + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "将配置从 Cura 2.1 版本升级至 2.2 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "版本自 2.1 升级到 2.2" + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "将配置从 Cura 2.2 版本升级至 2.4 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "版本自 2.2 升级到 2.4" + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "将配置从 Cura 2.5 版本升级至 2.6 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "版本自 2.5 升级到 2.6" + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "将配置从 Cura 2.6 版本升级至 2.7 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "版本自 2.6 升级到 2.7" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "将配置从 Cura 2.7 版本升级至 3.0 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "版本自 2.7 升级到 3.0" + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "将配置从 Cura 3.0 版本升级至 3.1 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "版本自 3.0 升级到 3.1" + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "将配置从 Cura 3.2 版本升级至 3.3 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "版本自 3.2 升级到 3.3" + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "从Cura 3.3升级到Cura 3.4。" + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "版本升级3.3到3.4" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "将配置从 Cura 3.4 版本升级至 3.5 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "版本自 3.4 升级到 3.5" + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "将配置从 Cura 3.5 版本升级至 4.0 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "版本自 3.5 升级到 4.0" + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "将配置从 Cura 4.0 版本升级至 4.1 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "版本自 4.0 升级到 4.1" + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "将配置从 Cura 4.11 升级到 Cura 4.12。" + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "版本从 4.11 升级到 4.12" + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "将配置从 Cura 4.13 升级至 Cura 5.0。" + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "版本从 4.13 升级到 5.0" + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "请将配置从 Cura 4.1 升级至 Cura 4.2。" + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "版本自 4.1 升级到 4.2" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "请将配置从 Cura 4.2 升级至 Cura 4.3。" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "版本自 4.2 升级至 4.3" + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "将配置从 Cura 4.3 升级至 Cura 4.4。" + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "版本自 4.3 升级至 4.4" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "将配置从 Cura 4.4 升级至 Cura 4.5。" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "版本从 4.4 升级至 4.5" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "将配置从 Cura 4.5 升级至 Cura 4.6。" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "版本从 4.5 升级至 4.6" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "将配置从 Cura 4.6.0 升级到 Cura 4.6.2。" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "版本从 4.6.0 升级到 4.6.2" + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "将配置从 Cura 4.6.2 升级到 Cura 4.7。" + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "版本从 4.6.2 升级到 4.7" + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "将配置从 Cura 4.7 升级到 Cura 4.8。" + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "将版本从 4.7 升级到 4.8" + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "将配置从 Cura 4.8 升级到 Cura 4.9。" + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "版本从 4.8 升级到 4.9" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "将配置从 Cura 4.9 升级到 Cura 4.10。" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "版本从 4.9 升级到 4.10" + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "将配置从 Cura 5.2 版本升级至 5.3 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "版本自 5.2 升级到 5.3" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "" + +#: plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3D 文件" + +#: plugins/X3DReader/plugin.json +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "支持读取 X3D 文件。" + +#: plugins/X3DReader/plugin.json +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D 读取器" + +#: plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "透视视图" + +#: plugins/XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "提供透视视图。" + +#: plugins/XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "透视视图" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "材料配置文件" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "提供读取和写入基于 XML 的材料配置文件的功能。" + +#: resources/qml/Account/AccountWidget.qml:24 msgctxt "@action:button" msgid "Sign in" msgstr "登录" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: resources/qml/Account/GeneralOperations.qml:19 +#: resources/qml/WelcomePages/CloudContent.qml:64 msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "登录 Ultimaker 平台" +msgid "Sign in to the UltiMaker platform" +msgstr "登录 UltiMaker 平台" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 +#: resources/qml/Account/GeneralOperations.qml:39 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" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" msgstr "" "- 从 Marketplace 添加材料配置文件和插件\n" "- 备份和同步材料配置文件和插件\n" "- 在 Ultimaker 社区分享观点并获取 48,000 多名用户的帮助" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 +#: resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "创建免费的 Ultimaker 帐户" +msgid "Create a free UltiMaker account" +msgstr "创建免费的 UltiMaker 帐户" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 +#: resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "正在检查..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 +#: resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "帐户已同步" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 +#: resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "发生了错误..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 +#: resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "安装挂起的更新" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 +#: resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "检查是否存在帐户更新" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +#: resources/qml/Account/UserOperations.qml:78 msgctxt "@label The argument is a timestamp" msgid "Last update: %1" msgstr "上次更新时间:%1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +#: resources/qml/Account/UserOperations.qml:107 msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimaker 帐户" +msgid "UltiMaker Account" +msgstr "UltiMaker 帐户" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +#: resources/qml/Account/UserOperations.qml:126 msgctxt "@button" msgid "Sign Out" msgstr "注销" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" msgid "No time estimation available" msgstr "无可用时间估计" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:77 msgctxt "@label" msgid "No cost estimation available" msgstr "无可用成本估计" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:127 msgctxt "@button" msgid "Preview" msgstr "预览" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" msgid "Time estimation" msgstr "预计时间" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 +#: resources/qml/ActionPanel/PrintJobInformation.qml:107 msgctxt "@label" msgid "Material estimation" msgstr "预计材料" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:156 +#: resources/qml/ActionPanel/PrintJobInformation.qml:156 msgctxt "@label m for meter" msgid "%1m" msgstr "%1m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:157 +#: resources/qml/ActionPanel/PrintJobInformation.qml:157 msgctxt "@label g for grams" msgid "%1g" msgstr "%1g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:54 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "正在切片..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:78 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:78 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "无法切片" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Processing" msgstr "正在处理中" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Slice" msgstr "切片" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:115 msgctxt "@label" msgid "Start the slicing process" msgstr "开始切片流程" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:132 msgctxt "@button" msgid "Cancel" msgstr "取消" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 +#: resources/qml/Actions.qml:81 msgctxt "@action:inmenu" msgid "Show Online Troubleshooting" msgstr "显示联机故障排除" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 +#: resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "切换全屏" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 +#: resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "退出全屏" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 +#: resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "撤销(&U)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 +#: resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "重做(&R)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 +#: resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "退出(&Q)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 +#: resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "3D 视图" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 +#: resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "正视图" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 +#: resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "顶视图" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 +#: resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "仰视图" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 +#: resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "左视图" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 +#: resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "右视图" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 +#: resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "配置 Cura..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 +#: resources/qml/Actions.qml:197 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "新增打印机(&A)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 +#: resources/qml/Actions.qml:203 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "管理打印机(&I)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 +#: resources/qml/Actions.qml:210 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "管理材料..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:216 -msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate." +#: resources/qml/Actions.qml:218 +msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." msgid "Add more materials from Marketplace" msgstr "从市场添加更多材料" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 +#: resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "使用当前设置 / 重写值更新配置文件(&U)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 +#: resources/qml/Actions.qml:233 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "舍弃当前更改(&D)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 +#: resources/qml/Actions.qml:245 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "从当前设置 / 重写值创建配置文件(&C)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 +#: resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "管理配置文件.." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 +#: resources/qml/Actions.qml:259 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "显示在线文档(&D)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 +#: resources/qml/Actions.qml:267 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "BUG 反馈(&B)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 +#: resources/qml/Actions.qml:275 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "新增功能" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 +#: resources/qml/Actions.qml:289 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "关于..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 +#: resources/qml/Actions.qml:296 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "删除所选项" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 +#: resources/qml/Actions.qml:306 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "居中所选项" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 +#: resources/qml/Actions.qml:315 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "复制所选项" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 +#: resources/qml/Actions.qml:324 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "删除模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 +#: resources/qml/Actions.qml:332 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "使模型居于平台中央(&N)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 +#: resources/qml/Actions.qml:338 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "绑定模型(&G)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 +#: resources/qml/Actions.qml:358 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "拆分模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 +#: resources/qml/Actions.qml:368 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "合并模型(&M)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 +#: resources/qml/Actions.qml:378 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "复制模型(&M)…" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 +#: resources/qml/Actions.qml:385 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "选择所有模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 +#: resources/qml/Actions.qml:395 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "清空打印平台" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 +#: resources/qml/Actions.qml:405 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "重新载入所有模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 +#: resources/qml/Actions.qml:414 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "编位所有的模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 +#: resources/qml/Actions.qml:422 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "为所选模型编位" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 +#: resources/qml/Actions.qml:429 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "复位所有模型的位置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 +#: resources/qml/Actions.qml:436 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "复位所有模型的变动" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 +#: resources/qml/Actions.qml:445 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "打开文件(&O)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 +#: resources/qml/Actions.qml:455 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "新建项目(&N)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 +#: resources/qml/Actions.qml:462 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "显示配置文件夹" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 +#: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "配置设定可见性..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 msgctxt "@label:button" msgid "My printers" msgstr "我的打印机" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 msgctxt "@tooltip:button" msgid "Monitor printers in Ultimaker Digital Factory." msgstr "在 Ultimaker Digital Factory 中监控打印机。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "在 Digital Library 中创建打印项目。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 msgctxt "@label:button" msgid "Print jobs" msgstr "打印作业" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 msgctxt "@tooltip:button" msgid "Monitor print jobs and reprint from your print history." msgstr "监控打印作业并从打印历史记录重新打印。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." -msgstr "用插件和材料配置文件扩展 Ultimaker Cura。" +msgid "Extend UltiMaker Cura with plugins and material profiles." +msgstr "用插件和材料配置文件扩展 UltiMaker Cura。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." -msgstr "通过 Ultimaker 线上课程教学,成为 3D 打印专家。" +msgid "Become a 3D printing expert with UltiMaker e-learning." +msgstr "通过 UltiMaker 线上课程教学,成为 3D 打印专家。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Ultimaker 支持" +msgid "UltiMaker support" +msgstr "UltiMaker 支持" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." -msgstr "了解如何开始使用 Ultimaker Cura。" +msgid "Learn how to get started with UltiMaker Cura." +msgstr "了解如何开始使用 UltiMaker Cura。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 msgctxt "@label:button" msgid "Ask a question" msgstr "提问" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "咨询 Ultimaker 社区。" +msgid "Consult the UltiMaker Community." +msgstr "咨询 UltiMaker 社区。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 msgctxt "@label:button" msgid "Report a bug" msgstr "报告错误" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "向开发人员报错。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "访问 Ultimaker 网站。" +msgid "Visit the UltiMaker website." +msgstr "访问 UltiMaker 网站。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 +#: resources/qml/ColorDialog.qml:110 msgctxt "@label" msgid "Hex" msgstr "六角" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 +#: resources/qml/Cura.qml:256 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "这个包将在重新启动后安装。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +#: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14 msgctxt "@title:tab" msgid "General" msgstr "基本" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +#: resources/qml/Cura.qml:470 msgctxt "@title:tab" msgid "Settings" msgstr "设置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:468 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:17 +#: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17 msgctxt "@title:tab" msgid "Printers" msgstr "打印机" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:470 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70 +#: resources/qml/Cura.qml:474 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:70 msgctxt "@title:tab" msgid "Materials" msgstr "材料" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:472 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:57 +#: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57 msgctxt "@title:tab" msgid "Profiles" msgstr "配置文件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +#: resources/qml/Cura.qml:581 msgctxt "@title:window %1 is the application name" msgid "Closing %1" msgstr "正在关闭 %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:590 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:599 +#: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591 msgctxt "@label %1 is the application name" msgid "Are you sure you want to exit %1?" msgstr "您确定要退出 %1 吗?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:637 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 +#: resources/qml/Cura.qml:629 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 msgctxt "@title:window" msgid "Open file(s)" msgstr "打开文件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +#: resources/qml/Cura.qml:734 msgctxt "@window:title" msgid "Install Package" msgstr "安装包" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +#: resources/qml/Cura.qml:741 msgctxt "@title:window" msgid "Open File(s)" msgstr "打开文件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +#: resources/qml/Cura.qml:743 msgctxt "@text:window" msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." msgstr "我们已经在您选择的文件中找到一个或多个 G-Code 文件。您一次只能打开一个 G-Code 文件。若需打开 G-Code 文件,请仅选择一个。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:831 +#: resources/qml/Cura.qml:828 msgctxt "@title:window" msgid "Add Printer" msgstr "新增打印机" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +#: resources/qml/Cura.qml:836 msgctxt "@title:window" msgid "What's New" msgstr "新增功能" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: resources/qml/Cura.qml:890 +msgctxt "@title:window" +msgid "Save Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:891 +msgctxt "@textfield:placeholder" +msgid "New Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:892 +msgctxt "@info" +msgid "Custom profile name:" +msgstr "" + +#: resources/qml/Cura.qml:909 +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 继承属性。" + +#: resources/qml/Cura.qml:917 +msgctxt "@action:button" +msgid "Learn more about Cura print profiles" +msgstr "了解有关 Cura 打印配置文件的更多信息" + +#: resources/qml/Cura.qml:926 +msgctxt "@button" +msgid "Save new profile" +msgstr "" + +#: resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "关于 %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: resources/qml/Dialogs/AboutDialog.qml:59 msgctxt "@label" msgid "version: %1" msgstr "版本: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: resources/qml/Dialogs/AboutDialog.qml:74 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "熔丝 3D 打印技术的的端对端解决方案。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: resources/qml/Dialogs/AboutDialog.qml:87 msgctxt "@info:credit" msgid "" -"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura is developed by UltiMaker in cooperation with the community.\n" "Cura proudly uses the following open source projects:" msgstr "" "Cura 由 Ultimaker B.V. 与社区合作开发。\n" "Cura 使用以下开源项目:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label Description for application component" msgid "Graphical user interface" msgstr "图形用户界面" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label Description for application component" msgid "Application framework" msgstr "应用框架" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label Description for application component" msgid "G-code generator" msgstr "G-code 生成器" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label Description for application component" msgid "Interprocess communication library" msgstr "进程间通信交互使用库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:142 +msgctxt "@label Description for application component" msgid "Python bindings for libnest2d" msgstr "libnest2d 的 Python 绑定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label Description for application component" msgid "Polygon packing library, developed by Prusa Research" msgstr "Prusa Research 开发的多边形打包库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:144 +msgctxt "@label Description for application component" msgid "Support library for handling 3MF files" msgstr "用于处理 3MF 文件的支持库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:145 +msgctxt "@label Description for application component" msgid "Support library for file metadata and streaming" msgstr "用于文件元数据和流媒体的支持库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "编程语言" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label Description for application dependency" msgid "GUI framework" msgstr "GUI 框架" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label Description for application dependency" msgid "GUI framework bindings" msgstr "GUI 框架绑定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label Description for application dependency" msgid "C/C++ Binding library" msgstr "C / C++ 绑定库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:152 +msgctxt "@label Description for application dependency" msgid "Data interchange format" msgstr "数据交换格式" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "Font" msgstr "字体" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label Description for application dependency" msgid "Polygon clipping library" msgstr "多边形剪辑库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label Description for application dependency" msgid "JSON parser" -msgstr "" +msgstr "JSON 解析器" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:158 +msgctxt "@label Description for application dependency" msgid "Utility functions, including an image loader" -msgstr "" +msgstr "实用程序函数,包括图像加载器" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:159 +msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" -msgstr "" +msgstr "实用程序库,包括 Voronoi 图生成" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:162 +#: resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label Description for application dependency" msgid "Root Certificates for validating SSL trustworthiness" -msgstr "" +msgstr "用于验证 SSL 可信度的根证书" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label Description for application dependency" msgid "Compatibility between Python 2 and 3" -msgstr "" +msgstr "Python 2 和 3 之间的兼容性" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label Description for application dependency" msgid "Support library for system keyring access" msgstr "支持系统密钥环访问库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label Description for application dependency" msgid "Support library for faster math" msgstr "高速运算支持库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label Description for application dependency" msgid "Support library for handling STL files" msgstr "用于处理 STL 文件的支持库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label Description for application dependency" msgid "Python bindings for Clipper" msgstr "Clipper 的 Python 绑定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "串口通讯库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label Description for application dependency" msgid "Support library for scientific computing" msgstr "科学计算支持库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 -msgctxt "@Label" +#: resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@Label Description for application dependency" msgid "Python Error tracking library" msgstr "Python 错误跟踪库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:172 +msgctxt "@label Description for application dependency" msgid "Support library for handling triangular meshes" msgstr "用于处理三角网格的支持库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:173 +msgctxt "@label Description for application dependency" msgid "ZeroConf discovery library" msgstr "ZeroConf 发现库" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label Description for development tool" msgid "Universal build system configuration" -msgstr "" +msgstr "通用构建系统配置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label Description for development tool" msgid "Dependency and package manager" -msgstr "" +msgstr "依赖性和程序包管理器" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label Description for development tool" msgid "Packaging Python-applications" -msgstr "" +msgstr "打包 Python 应用" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:179 +msgctxt "@label Description for development tool" msgid "Linux cross-distribution application deployment" msgstr "Linux 交叉分布应用程序部署" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:180 +msgctxt "@label Description for development tool" msgid "Generating Windows installers" -msgstr "" +msgstr "生成 Windows 安装程序" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 msgctxt "@title:window" msgid "Open project file" msgstr "打开项目文件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84 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 项目文件。您想将其作为一个项目打开还是从中导入模型?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:90 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91 msgctxt "@text:window" msgid "Remember my choice" msgstr "记住我的选择" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105 msgctxt "@action:button" msgid "Open as project" msgstr "作为项目打开" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110 msgctxt "@action:button" msgid "Import models" msgstr "导入模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:17 +msgctxt "@title:window" +msgid "Select Printer" +msgstr "选择打印机" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:54 +msgctxt "@title:label" +msgid "Compatible Printers" +msgstr "兼容的打印机" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:110 +msgctxt "@description" +msgid "No compatible printers, that are currently online, were found." +msgstr "没有找到当前联机的兼容打印机。" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "舍弃或保留更改" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:49 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64 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 "" @@ -4170,1428 +4869,1288 @@ msgstr "" "是否要在切换配置文件后保留这些更改的设置?\n" "或者,也可舍弃更改以从“%1”加载默认值。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90 msgctxt "@title:column" msgid "Profile settings" msgstr "配置文件设置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92 msgctxt "@title:column" msgid "Current changes" msgstr "当前更改" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:799 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123 +#: resources/qml/Preferences/GeneralPage.qml:820 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "总是询问" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "舍弃更改,并不再询问此问题" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "保留更改,并不再询问此问题" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157 msgctxt "@action:button" msgid "Discard changes" msgstr "舍弃更改" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164 msgctxt "@action:button" msgid "Keep changes" msgstr "保留更改" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171 +msgctxt "@action:button" +msgid "Save as new custom profile" +msgstr "" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178 +msgctxt "@action:button" +msgid "Save changes" +msgstr "" + +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 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 "我们已经在您所选择的文件中找到一个或多个项目文件,但一次只能打开一个项目文件。我们建议只从那些文件中导入模型而不打开项目。您要继续操作吗?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 msgctxt "@action:button" msgid "Import all as models" msgstr "导入所有模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 +#: resources/qml/Dialogs/RenameDialog.qml:23 +msgctxt "@title:window" +msgid "Rename" +msgstr "重命名" + +#: resources/qml/Dialogs/RenameDialog.qml:24 +msgctxt "@info" +msgid "Please provide a new name." +msgstr "请提供新名称。" + +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 msgctxt "@title:window" msgid "Save Project" msgstr "保存项目" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177 msgctxt "@action:label" msgid "Extruder %1" msgstr "挤出机 %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & 材料" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195 msgctxt "@action:label" msgid "Material" msgstr "材料" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "保存时不再显示项目摘要" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298 msgctxt "@action:button" msgid "Save" msgstr "保存" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -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" -msgstr[0] "用 %1 打印所选模型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:93 +#: resources/qml/JobSpecs.qml:93 msgctxt "@text Print job name" msgid "Untitled" msgstr "未命名" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 +#: resources/qml/MainWindow/ApplicationMenu.qml:63 +#: resources/qml/Menus/SettingsMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "设置(&S)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 +#: resources/qml/MainWindow/ApplicationMenu.qml:87 msgctxt "@title:window" msgid "New project" msgstr "新建项目" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88 +#: resources/qml/MainWindow/ApplicationMenu.qml:88 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 "你确定要开始一个新项目吗?这将清除打印平台及任何未保存的设置。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135 +#: resources/qml/MainWindow/MainWindowHeader.qml:135 msgctxt "@action:button" msgid "Marketplace" msgstr "市场" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +#: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 msgctxt "@header" msgid "Configurations" msgstr "配置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 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 以下载正确的材料配置文件。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 msgctxt "@label" msgid "Marketplace" msgstr "市场" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 msgctxt "@label" msgid "Loading available configurations from the printer..." msgstr "正在从打印机加载可用配置..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 msgctxt "@label" msgid "The configurations are not available because the printer is disconnected." msgstr "该配置不可用,因为打印机已断开连接。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 msgctxt "@tooltip" msgid "The configuration of this extruder is not allowed, and prohibits slicing." msgstr "不允许此挤出器的配置并禁止切片。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 msgctxt "@tooltip" msgid "There are no profiles matching the configuration of this extruder." msgstr "没有与此挤出器的配置匹配的配置文件。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 msgctxt "@label" msgid "Select configuration" msgstr "选择配置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 msgctxt "@label" msgid "Configurations" msgstr "配置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 msgctxt "@header" msgid "Custom" msgstr "自定义" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:62 -msgctxt "@label" -msgid "Printer" -msgstr "打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:217 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173 msgctxt "@label" msgid "Enabled" msgstr "已启用" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222 msgctxt "@label" msgid "Material" msgstr "材料" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348 msgctxt "@label" msgid "Use glue for better adhesion with this material combination." msgstr "用胶粘和此材料组合以产生更好的附着。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:29 +#: resources/qml/Menus/ContextMenu.qml:29 msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "打印所选模型:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:92 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "复制所选模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:123 msgctxt "@label" msgid "Number of Copies" msgstr "复制个数" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/EditMenu.qml:12 +#: resources/qml/Menus/EditMenu.qml:12 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "编辑(&E)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ExtensionMenu.qml:13 +#: resources/qml/Menus/ExtensionMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "扩展(&X)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 +#: resources/qml/Menus/FileMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "文件(&F)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:45 +#: resources/qml/Menus/FileMenu.qml:45 msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "保存项目(&S)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:78 +#: resources/qml/Menus/FileMenu.qml:78 msgctxt "@title:menu menubar:file" msgid "&Export..." msgstr "导出(&E)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:89 +#: resources/qml/Menus/FileMenu.qml:89 msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "导出选择..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/HelpMenu.qml:14 +#: resources/qml/Menus/HelpMenu.qml:14 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "帮助(&H)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +#: resources/qml/Menus/MaterialMenu.qml:13 msgctxt "@label:category menu label" msgid "Material" msgstr "材料" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:53 +#: resources/qml/Menus/MaterialMenu.qml:53 msgctxt "@label:category menu label" msgid "Favorites" msgstr "收藏" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:78 +#: resources/qml/Menus/MaterialMenu.qml:78 msgctxt "@label:category menu label" msgid "Generic" msgstr "通用" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +#: resources/qml/Menus/OpenFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open File(s)..." msgstr "打开文件..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PreferencesMenu.qml:21 +#: resources/qml/Menus/PreferencesMenu.qml:21 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "偏好设置(&R)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:13 +#: resources/qml/Menus/PrinterMenu.qml:13 msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "打印机(&P)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:17 +#: resources/qml/Menus/PrinterMenu.qml:17 msgctxt "@label:category menu label" msgid "Network enabled printers" msgstr "网络打印机" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:50 +#: resources/qml/Menus/PrinterMenu.qml:50 msgctxt "@label:category menu label" msgid "Local printers" msgstr "本地打印机" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +#: resources/qml/Menus/RecentFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open &Recent" msgstr "打开最近使用过的文件(&R)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +#: resources/qml/Menus/SaveProjectMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Save Project..." msgstr "保存项目..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:34 -msgctxt "@title:menu" -msgid "&Material" -msgstr "材料(&M)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:49 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "设为主要挤出机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:55 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "启用挤出机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:63 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "禁用挤出机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 msgctxt "@action:inmenu" msgid "Visible Settings" msgstr "可见设置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 msgctxt "@action:inmenu" msgid "Collapse All Categories" msgstr "折叠所有类别" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 msgctxt "@action:inmenu" msgid "Manage Setting Visibility..." msgstr "管理设置可见性..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:13 +#: resources/qml/Menus/SettingsMenu.qml:34 +msgctxt "@title:menu" +msgid "&Material" +msgstr "材料(&M)" + +#: resources/qml/Menus/SettingsMenu.qml:49 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "设为主要挤出机" + +#: resources/qml/Menus/SettingsMenu.qml:55 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "启用挤出机" + +#: resources/qml/Menus/SettingsMenu.qml:63 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "禁用挤出机" + +#: resources/qml/Menus/ViewMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&View" msgstr "视图(&V)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:17 +#: resources/qml/Menus/ViewMenu.qml:17 msgctxt "@action:inmenu menubar:view" msgid "&Camera position" msgstr "摄像头位置(&C)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:30 +#: resources/qml/Menus/ViewMenu.qml:30 msgctxt "@action:inmenu menubar:view" msgid "Camera view" msgstr "摄像头视图" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 +#: resources/qml/Menus/ViewMenu.qml:48 msgctxt "@action:inmenu menubar:view" msgid "Perspective" msgstr "透视" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +#: resources/qml/Menus/ViewMenu.qml:59 msgctxt "@action:inmenu menubar:view" msgid "Orthographic" msgstr "正交" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:115 +#: resources/qml/MonitorButton.qml:115 msgctxt "@label:MonitorStatus" msgid "Not connected to a printer" msgstr "未连接至打印机" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 +#: resources/qml/MonitorButton.qml:119 msgctxt "@label:MonitorStatus" msgid "Printer does not accept commands" msgstr "打印机不接受命令" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:129 +#: resources/qml/MonitorButton.qml:129 msgctxt "@label:MonitorStatus" msgid "In maintenance. Please check the printer" msgstr "维护中。请检查打印机" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:140 +#: resources/qml/MonitorButton.qml:140 msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "与打印机的连接中断" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +#: resources/qml/MonitorButton.qml:142 msgctxt "@label:MonitorStatus" msgid "Printing..." msgstr "打印中..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +#: resources/qml/MonitorButton.qml:145 msgctxt "@label:MonitorStatus" msgid "Paused" msgstr "已暂停" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +#: resources/qml/MonitorButton.qml:148 msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "初始化中..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +#: resources/qml/MonitorButton.qml:150 msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "请取出打印件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +#: resources/qml/MonitorButton.qml:318 msgctxt "@label" msgid "Abort Print" msgstr "中止打印" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:327 +#: resources/qml/MonitorButton.qml:327 msgctxt "@label" msgid "Are you sure you want to abort the print?" msgstr "您确定要中止打印吗?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:109 +#: resources/qml/ObjectItemButton.qml:109 msgctxt "@label" msgid "Is printed as support." msgstr "打印为支撑。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:112 +#: resources/qml/ObjectItemButton.qml:112 msgctxt "@label" msgid "Other models overlapping with this model are modified." msgstr "修改了与此模型重叠的其他模型。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:115 +#: resources/qml/ObjectItemButton.qml:115 msgctxt "@label" msgid "Infill overlapping with this model is modified." msgstr "修改了与该模型重叠的填充。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:118 +#: resources/qml/ObjectItemButton.qml:118 msgctxt "@label" msgid "Overlaps with this model are not supported." msgstr "不支持与此模型重叠。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:125 +#: resources/qml/ObjectItemButton.qml:125 msgctxt "@label %1 is the number of settings it overrides." msgid "Overrides %1 setting." msgid_plural "Overrides %1 settings." msgstr[0] "覆盖 %1 设置。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 +#: resources/qml/ObjectSelector.qml:59 msgctxt "@label" msgid "Object list" msgstr "对象列表" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:131 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:24 +#: resources/qml/Preferences/GeneralPage.qml:134 +#: resources/qml/Preferences/SettingVisibilityPage.qml:24 msgctxt "@action:button" msgid "Defaults" msgstr "默认" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +#: resources/qml/Preferences/GeneralPage.qml:172 msgctxt "@label" msgid "Interface" msgstr "接口" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +#: resources/qml/Preferences/GeneralPage.qml:215 msgctxt "@heading" msgid "-- incomplete --" msgstr "-- 不完整 --" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +#: resources/qml/Preferences/GeneralPage.qml:261 msgctxt "@label" msgid "Currency:" msgstr "币种:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:274 +#: resources/qml/Preferences/GeneralPage.qml:277 msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." msgid "Theme*:" msgstr "主题*:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +#: resources/qml/Preferences/GeneralPage.qml:323 msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "当设置被更改时自动进行切片。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +#: resources/qml/Preferences/GeneralPage.qml:331 msgctxt "@option:check" msgid "Slice automatically" msgstr "自动切片" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:337 +#: resources/qml/Preferences/GeneralPage.qml:340 +msgctxt "@info:tooltip" +msgid "Show an icon and notifications in the system notification area." +msgstr "在系统通知区域中显示图标和通知。" + +#: resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Add icon to system tray *" +msgstr "在系统托盘中添加图标 *" + +#: resources/qml/Preferences/GeneralPage.qml:357 msgctxt "@label" msgid "*You will need to restart the application for these changes to have effect." msgstr "*需重新启动该应用程序,这些更改才能生效。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +#: resources/qml/Preferences/GeneralPage.qml:373 msgctxt "@label" msgid "Viewport behavior" msgstr "视区行为" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +#: resources/qml/Preferences/GeneralPage.qml:381 msgctxt "@info:tooltip" msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." msgstr "以红色突出显示模型需要增加支撑结构的区域。没有支撑,这些区域将无法正确打印。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:369 +#: resources/qml/Preferences/GeneralPage.qml:390 msgctxt "@option:check" msgid "Display overhang" msgstr "显示悬垂(Overhang)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +#: resources/qml/Preferences/GeneralPage.qml:400 msgctxt "@info:tooltip" msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." msgstr "使用警告标志突出显示模型缺少或多余的表面。刀具路径常常是要打印的几何结构缺少的部分。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:388 +#: resources/qml/Preferences/GeneralPage.qml:409 msgctxt "@option:check" msgid "Display model errors" msgstr "显示模型错误" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +#: resources/qml/Preferences/GeneralPage.qml:417 msgctxt "@info:tooltip" msgid "Moves the camera so the model is in the center of the view when a model is selected" msgstr "当模型被选中时,视角将自动调整到最合适的观察位置(模型处于正中央)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:401 +#: resources/qml/Preferences/GeneralPage.qml:422 msgctxt "@action:button" msgid "Center camera when item is selected" msgstr "当项目被选中时,自动对中视角" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +#: resources/qml/Preferences/GeneralPage.qml:432 msgctxt "@info:tooltip" msgid "Should the default zoom behavior of cura be inverted?" msgstr "需要令 Cura 的默认缩放操作反转吗?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:416 +#: resources/qml/Preferences/GeneralPage.qml:437 msgctxt "@action:button" msgid "Invert the direction of camera zoom." msgstr "反转视角变焦方向。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Should zooming move in the direction of the mouse?" msgstr "是否跟随鼠标方向进行缩放?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Zooming towards the mouse is not supported in the orthographic perspective." msgstr "正交透视不支持通过鼠标进行缩放。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:437 +#: resources/qml/Preferences/GeneralPage.qml:458 msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "跟随鼠标方向缩放" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +#: resources/qml/Preferences/GeneralPage.qml:484 msgctxt "@info:tooltip" msgid "Should models on the platform be moved so that they no longer intersect?" msgstr "需要移动平台上的模型,使它们不再相交吗?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:468 +#: resources/qml/Preferences/GeneralPage.qml:489 msgctxt "@option:check" msgid "Ensure models are kept apart" msgstr "确保每个模型都保持分离" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +#: resources/qml/Preferences/GeneralPage.qml:498 msgctxt "@info:tooltip" msgid "Should models on the platform be moved down to touch the build plate?" msgstr "需要转动模型,使它们接触打印平台吗?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:482 +#: resources/qml/Preferences/GeneralPage.qml:503 msgctxt "@option:check" msgid "Automatically drop models to the build plate" msgstr "自动下降模型到打印平台" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +#: resources/qml/Preferences/GeneralPage.qml:515 msgctxt "@info:tooltip" msgid "Show caution message in g-code reader." msgstr "在 G-code 读取器中显示警告信息。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503 +#: resources/qml/Preferences/GeneralPage.qml:524 msgctxt "@option:check" msgid "Caution message in g-code reader" msgstr "G-code 读取器中的警告信息" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +#: resources/qml/Preferences/GeneralPage.qml:532 msgctxt "@info:tooltip" msgid "Should layer be forced into compatibility mode?" msgstr "层视图要强制进入兼容模式吗?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +#: resources/qml/Preferences/GeneralPage.qml:537 msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "强制层视图兼容模式(需要重新启动)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +#: resources/qml/Preferences/GeneralPage.qml:547 msgctxt "@info:tooltip" msgid "Should Cura open at the location it was closed?" msgstr "Cura 是否应该在关闭的位置打开?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:531 +#: resources/qml/Preferences/GeneralPage.qml:552 msgctxt "@option:check" msgid "Restore window position on start" msgstr "恢复初始窗口位置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +#: resources/qml/Preferences/GeneralPage.qml:562 msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "应使用哪种类型的摄像头进行渲染?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +#: resources/qml/Preferences/GeneralPage.qml:569 msgctxt "@window:text" msgid "Camera rendering:" msgstr "摄像头渲染:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +#: resources/qml/Preferences/GeneralPage.qml:576 msgid "Perspective" msgstr "透视" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +#: resources/qml/Preferences/GeneralPage.qml:577 msgid "Orthographic" msgstr "正交" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +#: resources/qml/Preferences/GeneralPage.qml:617 msgctxt "@label" msgid "Opening and saving files" msgstr "打开并保存文件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +#: resources/qml/Preferences/GeneralPage.qml:624 msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "应从桌面打开文件还是在同一 Cura 实例中打开外部应用程序?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:608 +#: resources/qml/Preferences/GeneralPage.qml:629 msgctxt "@option:check" msgid "Use a single instance of Cura" msgstr "使用单个 Cura 实例" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +#: resources/qml/Preferences/GeneralPage.qml:640 msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "是否应在清理构建板后再将新模型加载到单个 Cura 实例中?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +#: resources/qml/Preferences/GeneralPage.qml:646 msgctxt "@option:check" msgid "Clear buildplate before loading model into the single instance" msgstr "在清理构建板后再将模型加载到单个实例中" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 +#: resources/qml/Preferences/GeneralPage.qml:656 msgctxt "@info:tooltip" msgid "Should models be scaled to the build volume if they are too large?" msgstr "当模型的尺寸过大时,是否将模型自动缩小至成形空间体积?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +#: resources/qml/Preferences/GeneralPage.qml:661 msgctxt "@option:check" msgid "Scale large models" msgstr "缩小过大模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +#: resources/qml/Preferences/GeneralPage.qml:671 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 "当模型以米而不是毫米为单位时,模型可能会在打印平台中显得非常小。在此情况下是否进行放大?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:655 +#: resources/qml/Preferences/GeneralPage.qml:676 msgctxt "@option:check" msgid "Scale extremely small models" msgstr "放大过小模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +#: resources/qml/Preferences/GeneralPage.qml:686 msgctxt "@info:tooltip" msgid "Should models be selected after they are loaded?" msgstr "模型是否应该在加载后被选中?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: resources/qml/Preferences/GeneralPage.qml:691 msgctxt "@option:check" msgid "Select models when loaded" msgstr "选择模型时加载" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +#: resources/qml/Preferences/GeneralPage.qml:701 msgctxt "@info:tooltip" msgid "Should a prefix based on the printer name be added to the print job name automatically?" msgstr "打印机名是否自动作为打印作业名称的前缀?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:685 +#: resources/qml/Preferences/GeneralPage.qml:706 msgctxt "@option:check" msgid "Add machine prefix to job name" msgstr "将机器前缀添加到作业名称中" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +#: resources/qml/Preferences/GeneralPage.qml:716 msgctxt "@info:tooltip" msgid "Should a summary be shown when saving a project file?" msgstr "保存项目文件时是否显示摘要?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: resources/qml/Preferences/GeneralPage.qml:720 msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "保存项目时显示摘要对话框" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +#: resources/qml/Preferences/GeneralPage.qml:730 msgctxt "@info:tooltip" msgid "Default behavior when opening a project file" msgstr "打开项目文件时的默认行为" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +#: resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@window:text" msgid "Default behavior when opening a project file: " msgstr "打开项目文件时的默认行为: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +#: resources/qml/Preferences/GeneralPage.qml:753 msgctxt "@option:openProject" msgid "Always ask me this" msgstr "总是询问" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: resources/qml/Preferences/GeneralPage.qml:754 msgctxt "@option:openProject" msgid "Always open as a project" msgstr "始终作为一个项目打开" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +#: resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:openProject" msgid "Always import models" msgstr "始终导入模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +#: resources/qml/Preferences/GeneralPage.qml:792 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 "当您对配置文件进行更改并切换到其他配置文件时将显示一个对话框,询问您是否要保留修改。您也可以选择一个默认行为并令其不再显示该对话框。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:780 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:36 +#: resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46 msgctxt "@label" msgid "Profiles" msgstr "配置文件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +#: resources/qml/Preferences/GeneralPage.qml:806 msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "切换到不同配置文件时对设置值更改的默认操作: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:800 +#: resources/qml/Preferences/GeneralPage.qml:821 msgctxt "@option:discardOrKeep" msgid "Always discard changed settings" msgstr "总是舍失更改的设置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/Preferences/GeneralPage.qml:822 msgctxt "@option:discardOrKeep" msgid "Always transfer changed settings to new profile" msgstr "总是将更改的设置传输至新配置文件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +#: resources/qml/Preferences/GeneralPage.qml:856 msgctxt "@label" msgid "Privacy" msgstr "隐私" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +#: resources/qml/Preferences/GeneralPage.qml:862 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 地址或其他私人数据。" +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 地址或其他私人数据。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +#: resources/qml/Preferences/GeneralPage.qml:867 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "(匿名)发送打印信息" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +#: resources/qml/Preferences/GeneralPage.qml:897 msgctxt "@label" msgid "Updates" msgstr "更新" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +#: resources/qml/Preferences/GeneralPage.qml:904 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "当 Cura 启动时,是否自动检查更新?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:888 +#: resources/qml/Preferences/GeneralPage.qml:909 msgctxt "@option:check" msgid "Check for updates on start" msgstr "启动时检查更新" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +#: resources/qml/Preferences/GeneralPage.qml:925 msgctxt "@info:tooltip" msgid "When checking for updates, only check for stable releases." msgstr "在检查更新时,只检查稳定版。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:910 +#: resources/qml/Preferences/GeneralPage.qml:931 msgctxt "@option:radio" msgid "Stable releases only" msgstr "仅限稳定版" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +#: resources/qml/Preferences/GeneralPage.qml:941 msgctxt "@info:tooltip" msgid "When checking for updates, check for both stable and for beta releases." msgstr "在检查更新时,同时检查稳定版和测试版。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:926 +#: resources/qml/Preferences/GeneralPage.qml:947 msgctxt "@option:radio" msgid "Stable and Beta releases" msgstr "稳定版和测试版" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +#: resources/qml/Preferences/GeneralPage.qml:957 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 时自动检查新插件?强烈建议您不要禁用此功能!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:941 +#: resources/qml/Preferences/GeneralPage.qml:962 msgctxt "@option:check" msgid "Get notifications for plugin updates" msgstr "获取插件更新通知" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:50 +#: resources/qml/Preferences/MachinesPage.qml:50 msgctxt "@action:button" msgid "Add New" msgstr "新增" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:134 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +#: resources/qml/Preferences/MachinesPage.qml:147 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:160 +#: resources/qml/Preferences/ProfilesPage.qml:294 msgctxt "@action:button" msgid "Activate" msgstr "激活" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:146 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:331 +#: resources/qml/Preferences/MachinesPage.qml:159 +#: resources/qml/Preferences/ProfilesPage.qml:331 msgctxt "@action:button" msgid "Rename" msgstr "重命名" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:72 msgctxt "@label" msgid "Materials compatible with active printer:" msgstr "与处于活动状态的打印机兼容的材料:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:94 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:78 +#: resources/qml/Preferences/ProfilesPage.qml:94 msgctxt "@action:button" msgid "Create new" msgstr "新建" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:88 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:90 +#: resources/qml/Preferences/ProfilesPage.qml:88 msgctxt "@action:button" msgid "Import" msgstr "导入" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:101 msgctxt "@action:button" msgid "Sync with Printers" msgstr "与打印机同步" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:311 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:174 +#: resources/qml/Preferences/ProfilesPage.qml:311 msgctxt "@action:button" msgid "Duplicate" msgstr "复制" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:342 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:198 +#: resources/qml/Preferences/ProfilesPage.qml:342 msgctxt "@action:button" msgid "Export" msgstr "导出" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:392 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:212 +#: resources/qml/Preferences/ProfilesPage.qml:392 msgctxt "@title:window" msgid "Confirm Remove" msgstr "确认删除" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:393 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:215 +#: resources/qml/Preferences/ProfilesPage.qml:393 msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "您确认要删除 %1?该操作无法恢复!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:228 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:238 msgctxt "@title:window" msgid "Import Material" msgstr "导入配置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:242 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "成功导入材料 %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:245 msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not import material %1: %2" msgstr "无法导入材料 %1%2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:267 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:256 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:267 msgctxt "@title:window" msgid "Export Material" msgstr "导出材料" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:272 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:272 msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "无法导出材料至 %1%2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:275 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:275 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "成功导出材料至: %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 msgctxt "@title:window" msgid "Sync materials with printers" msgstr "匹配材料和打印机" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 msgctxt "@title:header" msgid "Sync materials with printers" msgstr "匹配材料和打印机" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 msgctxt "@text" msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "只需遵循几个简单步骤,您就可以将所有材料配置文件与打印机同步。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 msgctxt "@button" msgid "Why do I need to sync material profiles?" msgstr "为什么需要同步材料配置文件?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 msgctxt "@button" msgid "Start" msgstr "开始" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144 msgctxt "@title:header" msgid "Sign in" msgstr "登录" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150 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。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:446 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:586 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602 msgctxt "@button" msgid "Sync materials with USB" msgstr "使用 USB 同步材料" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 msgctxt "@title:header" msgid "The following printers will receive the new material profiles:" msgstr "以下打印机将收到新的材料配置文件:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:198 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 msgctxt "@title:header" msgid "Something went wrong when sending the materials to the printers." msgstr "向打印机发送材料时出错。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:205 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221 msgctxt "@title:header" msgid "Material profiles successfully synced with the following printers:" msgstr "材料配置文件与以下打印机成功同步:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:429 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445 msgctxt "@button" msgid "Troubleshooting" msgstr "故障排除" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422 msgctxt "@text Asking the user whether printers are missing in a list." msgid "Printers missing?" msgstr "缺少打印机?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:408 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424 msgctxt "@text" msgid "Make sure all your printers are turned ON and connected to Digital Factory." msgstr "请确保所有打印机都已打开并连接到 Digital Factory。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:417 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433 msgctxt "@button" msgid "Refresh List" msgstr "刷新列表" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473 msgctxt "@button" msgid "Try again" msgstr "再试一次" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:461 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Done" msgstr "完成" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:606 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622 msgctxt "@button" msgid "Sync" msgstr "同步" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535 msgctxt "@button" msgid "Syncing" msgstr "正在同步" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553 msgctxt "@title:header" msgid "No printers found" msgstr "未找到打印机" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574 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。请确保打印机已连接并运行最新固件。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:569 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585 msgctxt "@button" msgid "Learn how to connect your printer to Digital Factory" msgstr "了解如何将打印机连接到 Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:597 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613 msgctxt "@button" msgid "Refresh" msgstr "刷新" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642 msgctxt "@title:header" msgid "Sync material profiles via USB" msgstr "通过 USB 同步材料配置文件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:632 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648 msgctxt "@text In the UI this is followed by a list of steps the user needs to take." msgid "Follow the following steps to load the new material profiles to your printer." msgstr "请遵循以下步骤将新材料配置文件加载到打印机。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 msgctxt "@text" msgid "Click the export material archive button." msgstr "单击导出材料存档按钮。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "将 .umm文件保存到 U 盘。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 msgctxt "@text" msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." msgstr "将 U 盘插入打印机,并启动程序以加载新材料配置文件。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:673 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689 msgctxt "@button" msgid "How to load new material profiles to my printer" msgstr "如何将新材料配置文件加载到打印机" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:687 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 msgctxt "@button" msgid "Back" msgstr "返回" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Export material archive" msgstr "导出材料存档" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747 msgctxt "@title:window" msgid "Export All Materials" msgstr "导出所有材料" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121 +#: resources/qml/Preferences/Materials/MaterialsView.qml:121 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "确认直径更改" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122 +#: resources/qml/Preferences/Materials/MaterialsView.qml:122 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毫米,这与当前的挤出机不兼容。你想继续吗?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152 +#: resources/qml/Preferences/Materials/MaterialsView.qml:152 msgctxt "@label" msgid "Display Name" msgstr "显示名称" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 +#: resources/qml/Preferences/Materials/MaterialsView.qml:171 msgctxt "@label" msgid "Brand" msgstr "品牌" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190 +#: resources/qml/Preferences/Materials/MaterialsView.qml:190 msgctxt "@label" msgid "Material Type" msgstr "材料类型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +#: resources/qml/Preferences/Materials/MaterialsView.qml:210 msgctxt "@label" msgid "Color" msgstr "颜色" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:262 +#: resources/qml/Preferences/Materials/MaterialsView.qml:262 msgctxt "@title" msgid "Material color picker" msgstr "材料颜色选取器" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:275 +#: resources/qml/Preferences/Materials/MaterialsView.qml:275 msgctxt "@label" msgid "Properties" msgstr "属性" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +#: resources/qml/Preferences/Materials/MaterialsView.qml:286 msgctxt "@label" msgid "Density" msgstr "密度" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +#: resources/qml/Preferences/Materials/MaterialsView.qml:319 msgctxt "@label" msgid "Diameter" msgstr "直径" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:369 +#: resources/qml/Preferences/Materials/MaterialsView.qml:369 msgctxt "@label" msgid "Filament Cost" msgstr "耗材成本" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:401 +#: resources/qml/Preferences/Materials/MaterialsView.qml:401 msgctxt "@label" msgid "Filament weight" msgstr "耗材重量" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:433 +#: resources/qml/Preferences/Materials/MaterialsView.qml:433 msgctxt "@label" msgid "Filament length" msgstr "耗材长度" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:451 +#: resources/qml/Preferences/Materials/MaterialsView.qml:451 msgctxt "@label" msgid "Cost per Meter" msgstr "每米成本" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:465 +#: resources/qml/Preferences/Materials/MaterialsView.qml:465 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "此材料与 %1 相关联,并共享其某些属性。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:472 +#: resources/qml/Preferences/Materials/MaterialsView.qml:472 msgctxt "@label" msgid "Unlink Material" msgstr "解绑材料" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +#: resources/qml/Preferences/Materials/MaterialsView.qml:485 msgctxt "@label" msgid "Description" msgstr "描述" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:503 +#: resources/qml/Preferences/Materials/MaterialsView.qml:503 msgctxt "@label" msgid "Adhesion Information" msgstr "粘附信息" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642 +#: resources/qml/Preferences/Materials/MaterialsView.qml:642 msgctxt "@title" msgid "Information" msgstr "信息" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:647 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:82 +#: resources/qml/Preferences/Materials/MaterialsView.qml:647 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 msgctxt "@label" msgid "Print settings" msgstr "打印设置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:59 +#: resources/qml/Preferences/ProfilesPage.qml:59 msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "与处于活动状态的打印机兼容的配置文件:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:98 +#: resources/qml/Preferences/ProfilesPage.qml:98 msgctxt "@action:tooltip" msgid "Create new profile from current settings/overrides" msgstr "使用当前设置/重写值创建新的配置文件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:125 +#: resources/qml/Preferences/ProfilesPage.qml:125 msgctxt "@action:label" msgid "Some settings from current profile were overwritten." msgstr "当前配置文件的一些设置已经重写。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:140 +#: resources/qml/Preferences/ProfilesPage.qml:140 msgctxt "@action:button" msgid "Update profile." msgstr "更新配置文件。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:143 +#: resources/qml/Preferences/ProfilesPage.qml:143 msgctxt "@action:tooltip" msgid "Update profile with current settings/overrides" msgstr "使用当前设置 / 重写值更新配置文件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:148 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256 +#: resources/qml/Preferences/ProfilesPage.qml:148 msgctxt "@action:button" msgid "Discard current changes" msgstr "舍弃当前更改" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:158 +#: resources/qml/Preferences/ProfilesPage.qml:158 msgctxt "@action:label" msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." msgstr "此配置文件使用打印机指定的默认值,因此在下面的列表中没有此设置项。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:165 +#: resources/qml/Preferences/ProfilesPage.qml:165 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "您当前的设置与选定的配置文件相匹配。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +#: resources/qml/Preferences/ProfilesPage.qml:175 msgctxt "@title:tab" msgid "Global Settings" msgstr "全局设置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: resources/qml/Preferences/ProfilesPage.qml:278 msgctxt "@title:window" msgid "Create Profile" msgstr "创建配置文件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:280 +#: resources/qml/Preferences/ProfilesPage.qml:280 msgctxt "@info" msgid "Please provide a name for this profile." msgstr "请为此配置文件提供名称。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:368 +#: resources/qml/Preferences/ProfilesPage.qml:352 +#: resources/qml/Preferences/ProfilesPage.qml:368 msgctxt "@title:window" msgid "Export Profile" msgstr "导出配置文件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +#: resources/qml/Preferences/ProfilesPage.qml:382 msgctxt "@title:window" msgid "Duplicate Profile" msgstr "复制配置文件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:409 +#: resources/qml/Preferences/ProfilesPage.qml:409 msgctxt "@title:window" msgid "Rename Profile" msgstr "重命名配置文件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:422 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:429 +#: resources/qml/Preferences/ProfilesPage.qml:422 +#: resources/qml/Preferences/ProfilesPage.qml:429 msgctxt "@title:window" msgid "Import Profile" msgstr "导入配置文件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:22 -msgctxt "@title:window" -msgid "Rename" -msgstr "重命名" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:23 -msgctxt "@info" -msgid "Please provide a new name." -msgstr "请提供新名称。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56 +#: resources/qml/Preferences/SettingVisibilityItem.qml:56 msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." msgstr "该设置已被当前机器所隐藏并不可见。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73 +#: resources/qml/Preferences/SettingVisibilityItem.qml:73 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 的值所隐藏,若需显示,更改此值可使设置项重新可见。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13 +#: resources/qml/Preferences/SettingVisibilityPage.qml:13 msgctxt "@title:tab" msgid "Setting Visibility" msgstr "设置可见性" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 +#: resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" msgid "Check all" msgstr "全部勾选" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 -msgctxt "@label" -msgid "Extruder" -msgstr "挤出机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70 -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." -msgstr "热端的目标温度。 热端将加热或冷却至此温度。 如果目标温度为 0,则热端加热将关闭。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "该热端的当前温度。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "热端的预热温度。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "取消" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263 -msgctxt "@button" -msgid "Pre-heat" -msgstr "预热" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "打印前请预热热端。您可以在热端加热时继续调整打印机,而不必等待热端加热完毕再做好打印准备。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "该挤出机中材料的颜色。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "该挤出机中的材料。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "该挤出机所使用的喷嘴。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -msgctxt "@label" -msgid "Build plate" -msgstr "打印平台" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55 -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,则不使用热床。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "热床当前温度。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "热床的预热温度。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "打印前请预热热床。您可以在热床加热时继续调整相关项,让您在准备打印时不必等待热床加热完毕。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51 -msgctxt "@label" -msgid "Printer control" -msgstr "打印机控制" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66 -msgctxt "@label" -msgid "Jog Position" -msgstr "垛齐位置" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217 -msgctxt "@label" -msgid "Jog Distance" -msgstr "垛齐距离" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Send G-code" -msgstr "发送 G-code" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "向连接的打印机发送自定义 G-code 命令。按“Enter”发送命令。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "尚未连接到打印机。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "云打印机离线。请检查打印机是否已开启并连接到 Internet。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "此打印机未链接到您的帐户。请访问 Ultimaker Digital Factory 以建立连接。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "云连接当前不可用。请登录以连接到云打印机。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "云连接当前不可用。请检查您的 Internet 连接。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:235 -msgctxt "@button" -msgid "Add printer" -msgstr "添加打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Manage printers" -msgstr "管理打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Active print" msgstr "正在打印" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Job Name" msgstr "作业名" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +#: resources/qml/PrintMonitor.qml:172 msgctxt "@label" msgid "Printing Time" msgstr "打印时间" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +#: resources/qml/PrintMonitor.qml:180 msgctxt "@label" msgid "Estimated time left" msgstr "预计剩余时间" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 msgctxt "@label" msgid "Profile" msgstr "配置文件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5602,132 +6161,379 @@ msgstr "" "\n" "点击打开配置文件管理器。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 +#: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 msgctxt "@label:header" msgid "Custom profiles" msgstr "自定义配置文件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 msgctxt "@label shown when we load a Gcode file" msgid "Print setup disabled. G-code file can not be modified." msgstr "打印设置已禁用。无法修改 G code 文件。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:179 msgctxt "@button" msgid "Recommended" msgstr "推荐" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156 -msgctxt "@button" -msgid "Custom" -msgstr "自定义" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 msgctxt "@label:Should be short" msgid "On" msgstr "开" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 msgctxt "@label:Should be short" msgid "Off" msgstr "关" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "实验性" +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is active and you overwrote some settings." +msgstr "%1 自定义配置文件处于活动状态,并且已覆盖某些设置。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:54 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is overriding some settings." +msgstr "%1 自定义配置文件正在覆盖某些设置。" + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92 +msgctxt "@info %1 is the name of a profile" +msgid "Recommended settings (for %1) were altered." +msgstr "建议的设置(适用于 %1)已更改。" + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106 +msgctxt "@info %1 is the name of a profile" +msgid "Some setting-values defined in %1 were overridden." +msgstr "当前配置文件的一些设置已经重写。" + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137 msgctxt "@info" -msgid "custom profile is active and you overwrote some settings." -msgstr "" +msgid "Reset to defaults." +msgstr "重置为默认值。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178 msgctxt "@info" -msgid "custom profile is overriding some settings." -msgstr "" +msgid "Compare and save." +msgstr "比较并保存。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 -msgctxt "@info" -msgid "Some settings were changed." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15 msgctxt "@label" msgid "Adhesion" msgstr "附着" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20 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 "允许打印 Brim 或 Raft。这将在您的对象周围或下方添加一个容易切断的平面区域。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:198 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102 msgctxt "@label" -msgid "Gradual infill" -msgstr "渐层填充" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:236 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "渐层填充(Gradual infill)将随着打印高度的提升而逐渐加大填充密度。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 -msgctxt "@label" -msgid "Resolution" +msgid "Recommended print settings" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111 +msgctxt "@button" +msgid "Show Custom" +msgstr "显示自定义" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27 +msgctxt "@label" +msgid "Resolution" +msgstr "分辨率" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16 +msgctxt "@label" +msgid "Strength" +msgstr "强度" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20 +msgctxt "@label" +msgid "The following settings define the strength of your part." +msgstr "以下设置定义零件的强度。" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34 +msgctxt "infill_sparse_density description" +msgid "Infill Density" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35 +msgctxt "@label" +msgid "Adjusts the density of infill of the print." +msgstr "调整打印填充的密度。" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54 +msgctxt "@action:label" +msgid "Infill Pattern" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56 +msgctxt "@label" +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 打印,请使用立方体、立方体细分、四分之一立方体、八面体和螺旋形。" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67 +msgctxt "@action:label" +msgid "Shell Thickness" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68 +msgctxt "@label" +msgid "Defines the thickness of your part side walls, roof and floor." +msgstr "定义零件侧壁、顶和底板的厚度。" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16 msgctxt "@label" msgid "Support" msgstr "支持" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21 msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "在模型的悬垂(Overhangs)部分生成支撑结构。若不这样做,这些部分在打印时将倒塌。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40 +msgctxt "@action:label" +msgid "Support Type" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41 +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 "在可用于产生支撑的方法之间进行选择。“普通”支撑在悬垂部分正下方形成一个支撑结构,并直接垂下这些区域。“树形”支撑形成一些分支,它们朝向在这些分支的尖端上支撑模型的悬垂区域,并使这些分支可缠绕在模型周围以尽可能多地从构建板上支撑它。" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53 +msgctxt "@action:label" +msgid "Print with" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54 +msgctxt "@label" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "用于打印支撑的挤出机组。 用于多重挤出。" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67 +msgctxt "@action:label" +msgid "Placement" +msgstr "放置" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68 +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 "调整支撑结构的放置。 放置可以设置为支撑打印平台或全部支撑。 当设置为全部支撑时,支撑结构也将在模型上打印。" + +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 msgctxt "@error" msgid "Configuration not supported" -msgstr "" +msgstr "配置不受支持" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." -msgstr "" +msgstr "对于所选材料/%1 配置,无可用的配置文件。请更改配置。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 msgctxt "@button:label" msgid "Learn more" -msgstr "" +msgstr "了解详情" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +#: resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "挤出机" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:70 +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." +msgstr "热端的目标温度。 热端将加热或冷却至此温度。 如果目标温度为 0,则热端加热将关闭。" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:105 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "该热端的当前温度。" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:182 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "热端的预热温度。" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:271 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:259 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "取消" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:274 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:263 +msgctxt "@button" +msgid "Pre-heat" +msgstr "预热" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:297 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "打印前请预热热端。您可以在热端加热时继续调整打印机,而不必等待热端加热完毕再做好打印准备。" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:335 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "该挤出机中材料的颜色。" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:367 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "该挤出机中的材料。" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:400 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "该挤出机所使用的喷嘴。" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:25 +msgctxt "@label" +msgid "Build plate" +msgstr "打印平台" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:55 +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,则不使用热床。" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "热床当前温度。" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:162 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "热床的预热温度。" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:286 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "打印前请预热热床。您可以在热床加热时继续调整相关项,让您在准备打印时不必等待热床加热完毕。" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:51 +msgctxt "@label" +msgid "Printer control" +msgstr "打印机控制" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:66 +msgctxt "@label" +msgid "Jog Position" +msgstr "垛齐位置" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:82 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:162 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:217 +msgctxt "@label" +msgid "Jog Distance" +msgstr "垛齐距离" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Send G-code" +msgstr "发送 G-code" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:319 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "向连接的打印机发送自定义 G-code 命令。按“Enter”发送命令。" + +#: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "尚未连接到打印机。" + +#: resources/qml/PrinterSelector/MachineListButton.qml:34 +msgctxt "@label" +msgid "Hide all connected printers" +msgstr "隐藏所有连接的打印机" + +#: resources/qml/PrinterSelector/MachineListButton.qml:47 +msgctxt "@label" +msgid "Show all connected printers" +msgstr "显示所有连接的打印机" + +#: resources/qml/PrinterSelector/MachineSelector.qml:64 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "云打印机离线。请检查打印机是否已开启并连接到 Internet。" + +#: resources/qml/PrinterSelector/MachineSelector.qml:68 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "此打印机未链接到您的帐户。请访问 Ultimaker Digital Factory 以建立连接。" + +#: resources/qml/PrinterSelector/MachineSelector.qml:73 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "云连接当前不可用。请登录以连接到云打印机。" + +#: resources/qml/PrinterSelector/MachineSelector.qml:78 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "云连接当前不可用。请检查您的 Internet 连接。" + +#: resources/qml/PrinterSelector/MachineSelectorList.qml:30 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:32 +msgctxt "@label" +msgid "Other printers" +msgstr "其他打印机" + +#: resources/qml/ProfileOverview.qml:36 msgctxt "@title:column" msgid "Setting" msgstr "设置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +#: resources/qml/ProfileOverview.qml:37 msgctxt "@title:column" msgid "Profile" msgstr "配置文件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +#: resources/qml/ProfileOverview.qml:38 msgctxt "@title:column" msgid "Current" msgstr "当前" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +#: resources/qml/ProfileOverview.qml:39 msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "单位" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +#: resources/qml/SearchBar.qml:17 msgctxt "@placeholder" msgid "Search" msgstr "搜索" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 +#: resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5738,32 +6544,32 @@ msgstr "" "\n" "单击以使这些设置可见。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 +#: resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "未使用此设置,因为受其影响的所有设置均已覆盖。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +#: resources/qml/Settings/SettingItem.qml:89 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "影响" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +#: resources/qml/Settings/SettingItem.qml:94 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "受影响项目" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:190 +#: resources/qml/Settings/SettingItem.qml:196 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "此设置始终在所有挤出机之间共享。在此处更改它将改变所有挤出机的值。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +#: resources/qml/Settings/SettingItem.qml:200 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "此设置与挤出器特定值不同:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +#: resources/qml/Settings/SettingItem.qml:240 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5774,7 +6580,7 @@ msgstr "" "\n" "单击以恢复配置文件的值。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:334 +#: resources/qml/Settings/SettingItem.qml:340 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5785,4418 +6591,327 @@ msgstr "" "\n" "单击以恢复自动计算的值。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +#: resources/qml/Settings/SettingView.qml:48 msgctxt "@label:textbox" msgid "Search settings" msgstr "搜索设置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:395 +#: resources/qml/Settings/SettingView.qml:395 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "将值复制到所有挤出机" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:404 +#: resources/qml/Settings/SettingView.qml:404 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "将所有修改值复制到所有挤出机" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:440 +#: resources/qml/Settings/SettingView.qml:440 msgctxt "@action:menu" msgid "Hide this setting" msgstr "隐藏此设置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:453 +#: resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "不再显示此设置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:457 +#: resources/qml/Settings/SettingView.qml:457 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "保持此设置可见" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +#: resources/qml/Toolbar.qml:142 +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" +msgstr[0] "用 %1 打印所选模型" + +#: resources/qml/ViewOrientationControls.qml:25 msgctxt "@info:tooltip" msgid "3D View" msgstr "3D 视图" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +#: resources/qml/ViewOrientationControls.qml:38 msgctxt "@info:tooltip" msgid "Front View" msgstr "正视图" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +#: resources/qml/ViewOrientationControls.qml:51 msgctxt "@info:tooltip" msgid "Top View" msgstr "顶视图" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +#: resources/qml/ViewOrientationControls.qml:64 msgctxt "@info:tooltip" msgid "Left View" msgstr "左视图" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +#: resources/qml/ViewOrientationControls.qml:77 msgctxt "@info:tooltip" msgid "Right View" msgstr "右视图" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: resources/qml/ViewsSelector.qml:50 msgctxt "@label" msgid "View type" msgstr "查看类型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:47 msgctxt "@label" msgid "Add a Cloud printer" msgstr "添加云打印机" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:73 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:73 msgctxt "@label" msgid "Waiting for Cloud response" msgstr "等待云响应" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:83 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:83 msgctxt "@label" msgid "No printers found in your account?" msgstr "在您的帐户中未找到任何打印机?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:117 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:117 msgctxt "@label" msgid "The following printers in your account have been added in Cura:" msgstr "您帐户中的以下打印机已添加到 Cura 中:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:186 msgctxt "@button" msgid "Add printer manually" msgstr "手动添加打印机" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 msgctxt "@label" msgid "Manufacturer" msgstr "制造商" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Profile author" msgstr "配置文件作者" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 msgctxt "@label" msgid "Printer name" msgstr "打印机名称" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 msgctxt "@text" msgid "Please name your printer" msgstr "请为您的打印机命名" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "添加打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:38 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "添加已联网打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:87 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "添加未联网打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 msgctxt "@label" msgid "There is no printer found over your network." msgstr "未找到网络内打印机。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 msgctxt "@label" msgid "Refresh" msgstr "刷新" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 msgctxt "@label" msgid "Add printer by IP" msgstr "按 IP 添加打印机" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "添加云打印机" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205 msgctxt "@label" msgid "Troubleshooting" msgstr "故障排除" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 msgctxt "@label" msgid "Add printer by IP address" msgstr "按 IP 地址添加打印机" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 msgctxt "@text" msgid "Enter your printer's IP address." msgstr "输入您打印机的 IP 地址。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 msgctxt "@button" msgid "Add" msgstr "添加" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 msgctxt "@label" msgid "Could not connect to device." msgstr "无法连接到设备。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "无法连接到 Ultimaker 打印机?" +msgid "Can't connect to your UltiMaker printer?" +msgstr "无法连接到 UltiMaker 打印机?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 msgctxt "@label" msgid "The printer at this address has not responded yet." msgstr "该网络地址的打印机尚未响应。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 msgctxt "@label" msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." msgstr "由于是未知打印机或不是组内主机,无法添加该打印机。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 msgctxt "@button" msgid "Connect" msgstr "连接" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "添加已联网打印机" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "添加未联网打印机" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102 +msgctxt "@button" +msgid "Add UltiMaker printer via Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "In order to start using Cura you will need to configure a printer." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36 +msgctxt "@label" +msgid "What printer would you like to setup?" +msgstr "您要设置什么打印机?" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55 +msgctxt "@button" +msgid "UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64 +msgctxt "@button" +msgid "Non UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73 +msgctxt "@button" +msgid "Learn more about adding printers to Cura" +msgstr "了解有关将打印机添加到 Cura 的更多信息" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29 +msgctxt "@label" +msgid "Add printer" +msgstr "添加打印机" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33 +msgctxt "@label" +msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70 +msgctxt "@label" +msgid "If you are trying to add a new UltiMaker printer to Cura" +msgstr "如果您想向 Cura 添加一台新的 UltiMaker 打印机" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80 +msgctxt "@info" +msgid "Sign in into UltiMaker Digital Factory" +msgstr "登录 UltiMaker Digital Factory" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81 +msgctxt "@info" +msgid "Follow the procedure to add a new printer" +msgstr "按照步骤添加新打印机" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82 +msgctxt "@info" +msgid "Your new printer will automatically appear in Cura" +msgstr "新打印机将自动出现在 Cura 中" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100 +msgctxt "@button" +msgid "Learn more" +msgstr "详细了解" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121 +msgctxt "@button" +msgid "Add local printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129 +msgctxt "@button" +msgid "Sign in to Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133 +msgctxt "@button" +msgid "Waiting for new printers" +msgstr "" + +#: resources/qml/WelcomePages/ChangelogContent.qml:24 msgctxt "@label" msgid "Release Notes" msgstr "版本说明" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:123 +#: resources/qml/WelcomePages/CloudContent.qml:123 msgctxt "@text" msgid "Add material settings and plugins from the Marketplace" msgstr "从 Marketplace 添加材料设置和插件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:149 +#: resources/qml/WelcomePages/CloudContent.qml:149 msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "备份和同步材料设置和插件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:175 +#: resources/qml/WelcomePages/CloudContent.qml:175 msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "在 Ultimaker 社区分享观点并获取 48,000 多名用户的帮助" +msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" +msgstr "在 UltiMaker 社区分享观点并获取 48,000 多名用户的帮助" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +#: resources/qml/WelcomePages/CloudContent.qml:189 msgctxt "@button" msgid "Skip" msgstr "跳过" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +#: resources/qml/WelcomePages/CloudContent.qml:201 msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "创建免费的 Ultimaker 帐户" +msgid "Create a free UltiMaker Account" +msgstr "创建免费的 UltiMaker 帐户" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "帮助我们改进 Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:56 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "为了改善打印质量和用户体验,Ultimaker Cura 会收集匿名数据,这些数据包括:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:68 -msgctxt "@text" -msgid "Machine types" -msgstr "机器类型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:74 -msgctxt "@text" -msgid "Material usage" -msgstr "材料使用" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:80 -msgctxt "@text" -msgid "Number of slices" -msgstr "切片数量" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:86 -msgctxt "@text" -msgid "Print settings" -msgstr "打印设置" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:99 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Ultimaker Cura 收集的数据不会包含任何个人信息。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:100 -msgctxt "@text" -msgid "More information" -msgstr "更多信息" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +#: resources/qml/WelcomePages/DropDownWidget.qml:93 msgctxt "@label" msgid "Empty" msgstr "空" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +#: resources/qml/WelcomePages/UserAgreementContent.qml:23 msgctxt "@label" msgid "User Agreement" msgstr "用户协议" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67 +#: resources/qml/WelcomePages/UserAgreementContent.qml:67 msgctxt "@button" msgid "Decline and close" msgstr "拒绝并关闭" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "欢迎使用 Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:67 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "" -"请按照以下步骤设置\n" -"Ultimaker Cura。此操作只需要几分钟时间。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:82 -msgctxt "@button" -msgid "Get started" -msgstr "开始" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: resources/qml/WelcomePages/WhatsNewContent.qml:28 msgctxt "@label" msgid "What's New" msgstr "新增功能" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: resources/qml/Widgets/ComboBox.qml:18 msgctxt "@label" msgid "No items to select from" msgstr "没有可供选择的项目" -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "检查模型和打印配置,以了解潜在的打印问题并给出建议。" - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "模型检查器" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "提供对读取 3MF 格式文件的支持。" - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF 读取器" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "提供对写入 3MF 文件的支持。" - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF 写入器" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "提供对读取 AMF 文件的支持。" - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF 读取器" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "备份和还原配置。" - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura 备份" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "提供 CuraEngine 切片后端的路径。" - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine 后端" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "提供了对导入 Cura 配置文件的支持。" - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura 配置文件读取器" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "提供了对导出 Cura 配置文件的支持。" - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura 配置文件写入器" - -#: DigitalLibrary/plugin.json -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 打开文件并将文件保存到其中。" - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "检查以进行固件更新。" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "固件更新检查程序" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "为固件更新提供操作选项。" - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "固件更新程序" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "从压缩存档文件读取 G-code。" - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "压缩 G-code 读取器" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "将 G-code 写入至压缩存档文件。" - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "压缩 G-code 写入器" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "提供了从 GCode 文件中导入配置文件的支持。" - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-code 配置文件读取器" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "允许加载和显示 G-code 文件。" - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "G-code 读取器" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "将 G-code 写入至文件。" - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "G-code 写入器" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "支持从 2D 图像文件生成可打印几何模型的能力。" - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "图像读取器" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "支持从 Cura 旧版本导入配置文件。" - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "旧版 Cura 配置文件读取器" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "提供一种改变机器设置的方法(如构建体积、喷嘴大小等)。" - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "打印机设置操作" - -#: Marketplace/plugin.json -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the Ultimaker website." -msgstr "管理对应用程序的扩展并允许从 Ultimaker 网站浏览扩展。" - -#: Marketplace/plugin.json -msgctxt "name" -msgid "Marketplace" -msgstr "市场" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "在 Cura 中提供监视阶段。" - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "监视阶段" - -#: PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "提供对每个模型的单独设置。" - -#: PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "单一模型设置工具" - -#: PostProcessingPlugin/plugin.json -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "扩展程序(允许用户创建脚本进行后期处理)" - -#: PostProcessingPlugin/plugin.json -msgctxt "name" -msgid "Post Processing" -msgstr "后期处理" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "在 Cura 中提供准备阶段。" - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "准备阶段" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "在 Cura 中提供预览阶段。" - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "预览阶段" - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "提供可移动磁盘热插拔和写入文件的支持。" - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "可移动磁盘输出设备插件" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "记录某些事件,以使其可供崩溃报告器使用" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentry 日志记录" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "提供切片层数据的预览。" - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "仿真视图" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "提交匿名切片信息。 可以通过偏好设置禁用。" - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "切片信息" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "提供一个基本的实体网格视图。" - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "实体视图" - -#: SupportEraser/plugin.json -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "创建橡皮擦网格,以便阻止在某些位置打印支撑" - -#: SupportEraser/plugin.json -msgctxt "name" -msgid "Support Eraser" -msgstr "支持橡皮擦" - -#: TrimeshReader/plugin.json -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "提供对读取模型文件的支持。" - -#: TrimeshReader/plugin.json -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh 阅读器" - -#: UFPReader/plugin.json -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "支持读取 Ultimaker 格式包。" - -#: UFPReader/plugin.json -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP 读取器" - -#: UFPWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "支持写入 Ultimaker 格式包。" - -#: UFPWriter/plugin.json -msgctxt "name" -msgid "UFP Writer" -msgstr "UFP 写入器" - -#: UltimakerMachineActions/plugin.json -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "为最后的机器提供机器操作(例如,热床调平向导,选择升级等)。" - -#: UltimakerMachineActions/plugin.json -msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Ultimaker 打印机操作" - -#: UM3NetworkPrinting/plugin.json -msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "管理与 Ultimaker 网络打印机的网络连接。" - -#: UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Ultimaker 网络连接" - -#: USBPrinting/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "接受 G-Code 并将其发送到一台打印机。 插件也可以更新固件。" - -#: USBPrinting/plugin.json -msgctxt "name" -msgid "USB printing" -msgstr "USB 联机打印" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "将配置从 Cura 2.1 版本升级至 2.2 版本。" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "版本自 2.1 升级到 2.2" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "将配置从 Cura 2.2 版本升级至 2.4 版本。" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "版本自 2.2 升级到 2.4" - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "将配置从 Cura 2.5 版本升级至 2.6 版本。" - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "版本自 2.5 升级到 2.6" - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "将配置从 Cura 2.6 版本升级至 2.7 版本。" - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "版本自 2.6 升级到 2.7" - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "将配置从 Cura 2.7 版本升级至 3.0 版本。" - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "版本自 2.7 升级到 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "将配置从 Cura 3.0 版本升级至 3.1 版本。" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "版本自 3.0 升级到 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "将配置从 Cura 3.2 版本升级至 3.3 版本。" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "版本自 3.2 升级到 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "从Cura 3.3升级到Cura 3.4。" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "版本升级3.3到3.4" - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "将配置从 Cura 3.4 版本升级至 3.5 版本。" - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "版本自 3.4 升级到 3.5" - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "将配置从 Cura 3.5 版本升级至 4.0 版本。" - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "版本自 3.5 升级到 4.0" - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "将配置从 Cura 4.0 版本升级至 4.1 版本。" - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "版本自 4.0 升级到 4.1" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "将配置从 Cura 4.11 升级到 Cura 4.12。" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "版本从 4.11 升级到 4.12" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "将配置从 Cura 4.13 升级至 Cura 5.0。" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "版本从 4.13 升级到 5.0" - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "请将配置从 Cura 4.1 升级至 Cura 4.2。" - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "版本自 4.1 升级到 4.2" - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "请将配置从 Cura 4.2 升级至 Cura 4.3。" - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "版本自 4.2 升级至 4.3" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "将配置从 Cura 4.3 升级至 Cura 4.4。" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "版本自 4.3 升级至 4.4" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "将配置从 Cura 4.4 升级至 Cura 4.5。" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "版本从 4.4 升级至 4.5" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "将配置从 Cura 4.5 升级至 Cura 4.6。" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "版本从 4.5 升级至 4.6" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "将配置从 Cura 4.6.0 升级到 Cura 4.6.2。" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "版本从 4.6.0 升级到 4.6.2" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "将配置从 Cura 4.6.2 升级到 Cura 4.7。" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "版本从 4.6.2 升级到 4.7" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "将配置从 Cura 4.7 升级到 Cura 4.8。" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "将版本从 4.7 升级到 4.8" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "将配置从 Cura 4.8 升级到 Cura 4.9。" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "版本从 4.8 升级到 4.9" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "将配置从 Cura 4.9 升级到 Cura 4.10。" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "版本从 4.9 升级到 4.10" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "支持读取 X3D 文件。" - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D 读取器" - -#: XmlMaterialProfile/plugin.json -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "提供读取和写入基于 XML 的材料配置文件的功能。" - -#: XmlMaterialProfile/plugin.json -msgctxt "name" -msgid "Material Profiles" -msgstr "材料配置文件" - -#: XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "提供透视视图。" - -#: XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "透视视图" - -#~ msgctxt "@label" -#~ msgid "Not yet initialized
    " -#~ msgstr "尚未初始化
    " - -#~ msgctxt "@label" -#~ msgid "By" -#~ msgstr "由:" - -#~ msgctxt "@Label" -#~ msgid "Static type checker for Python" -#~ msgstr "适用于 Python 的静态类型检查器" - -#~ msgctxt "@Label" -#~ msgid "Root Certificates for validating SSL trustworthiness" -#~ msgstr "用于验证 SSL 可信度的根证书" - -#~ msgctxt "@label" -#~ msgid "Python extensions for Microsoft Windows" -#~ msgstr "适用于 Microsoft Windows 的 Python 扩展" - -#~ msgctxt "@label" -#~ msgid "SVG icons" -#~ msgstr "SVG 图标" - -#~ msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" -#~ msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" -#~ msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" -#~ msgstr[0] "没有 %1 配置文件可用于挤出器 %2 中的配置。将改为使用默认意图" - -#~ msgctxt "@tooltip" -#~ msgid "You have modified some profile settings. If you want to change these go to custom mode." -#~ msgstr "您已修改部分配置文件设置。 如果您想对其进行更改,请转至自定义模式。" - -#~ msgctxt "@action:button" -#~ msgid "Sync materials with printers" -#~ msgstr "同步材料与打印机" - -#~ msgctxt "@title:window" -#~ msgid "Convert Image..." -#~ msgstr "转换图像..." - -#~ msgctxt "@info:tooltip" -#~ msgid "The width in millimeters on the build plate." -#~ msgstr "打印平台宽度,以毫米为单位。" - -#~ msgctxt "@title" -#~ msgid "Marketplace" -#~ msgstr "市场" - -#~ msgctxt "@info" -#~ msgid "You will need to restart Cura before changes in packages have effect." -#~ msgstr "在包装更改生效之前,您需要重新启动Cura。" - -#~ msgctxt "@action:button" -#~ msgid "Install" -#~ msgstr "安装" - -#~ msgctxt "@action:button" -#~ msgid "Installed" -#~ msgstr "已安装" - -#~ msgctxt "@label" -#~ msgid "Premium" -#~ msgstr "高级" - -#~ msgctxt "@info:tooltip" -#~ msgid "Go to Web Marketplace" -#~ msgstr "前往网上市场" - -#~ msgctxt "@label" -#~ msgid "Search materials" -#~ msgstr "搜索材料" - -#~ msgctxt "@label" -#~ msgid "Compatibility" -#~ msgstr "兼容性" - -#~ msgctxt "@label:table_header" -#~ msgid "Machine" -#~ msgstr "机器" - -#~ msgctxt "@label:table_header" -#~ msgid "Build Plate" -#~ msgstr "打印平台" - -#~ msgctxt "@label:table_header" -#~ msgid "Support" -#~ msgstr "支持" - -#~ msgctxt "@label:table_header" -#~ msgid "Quality" -#~ msgstr "质量" - -#~ msgctxt "@action:label" -#~ msgid "Technical Data Sheet" -#~ msgstr "技术数据表" - -#~ msgctxt "@action:label" -#~ msgid "Safety Data Sheet" -#~ msgstr "安全数据表" - -#~ msgctxt "@action:label" -#~ msgid "Printing Guidelines" -#~ msgstr "打印指南" - -#~ msgctxt "@action:label" -#~ msgid "Website" -#~ msgstr "网站" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to install or update" -#~ msgstr "安装或更新需要登录" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Buy material spools" -#~ msgstr "购买材料线轴" - -#~ msgctxt "@action:button" -#~ msgid "Update" -#~ msgstr "更新" - -#~ msgctxt "@action:button" -#~ msgid "Updating" -#~ msgstr "更新" - -#~ msgctxt "@action:button" -#~ msgid "Updated" -#~ msgstr "更新" - -#~ msgctxt "@action:button" -#~ msgid "Back" -#~ msgstr "背部" - -#~ msgctxt "@title:tab" -#~ msgid "Plugins" -#~ msgstr "插件" - -#~ msgctxt "@title:tab" -#~ msgid "Installed" -#~ msgstr "安装" - -#~ msgctxt "@label" -#~ msgid "Will install upon restarting" -#~ msgstr "将安装后重新启动" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to update" -#~ msgstr "更新需要登录" - -#~ msgctxt "@action:button" -#~ msgid "Downgrade" -#~ msgstr "降级" - -#~ msgctxt "@action:button" -#~ msgid "Uninstall" -#~ msgstr "卸载" - -#~ msgctxt "@label" -#~ msgid "Community Contributions" -#~ msgstr "社区贡献" - -#~ msgctxt "@label" -#~ msgid "Community Plugins" -#~ msgstr "社区插件" - -#~ msgctxt "@label" -#~ msgid "Generic Materials" -#~ msgstr "通用材料" - -#~ msgctxt "@info" -#~ msgid "Fetching packages..." -#~ msgstr "获取包..." - -#~ msgctxt "@label" -#~ msgid "Website" -#~ msgstr "网站" - -#~ msgctxt "@label" -#~ msgid "Email" -#~ msgstr "电子邮件" - -#~ msgctxt "@description" -#~ msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -#~ msgstr "请登录以获取经验证适用于 Ultimaker Cura Enterprise 的插件和材料" - -#~ msgctxt "@label" -#~ msgid "Version" -#~ msgstr "版本" - -#~ msgctxt "@label" -#~ msgid "Last updated" -#~ msgstr "更新日期" - -#~ msgctxt "@label" -#~ msgid "Downloads" -#~ msgstr "下载项" - -#~ msgctxt "@title:tab" -#~ msgid "Installed plugins" -#~ msgstr "已安装的插件" - -#~ msgctxt "@info" -#~ msgid "No plugin has been installed." -#~ msgstr "尚未安装任何插件。" - -#~ msgctxt "@title:tab" -#~ msgid "Installed materials" -#~ msgstr "已安装的材料" - -#~ msgctxt "@info" -#~ msgid "No material has been installed." -#~ msgstr "尚未安装任何材料。" - -#~ msgctxt "@title:tab" -#~ msgid "Bundled plugins" -#~ msgstr "已捆绑的插件" - -#~ msgctxt "@title:tab" -#~ msgid "Bundled materials" -#~ msgstr "已捆绑的材料" - -#~ msgctxt "@info" -#~ msgid "Could not connect to the Cura Package database. Please check your connection." -#~ msgstr "无法连接到Cura包数据库。请检查您的连接。" - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall" -#~ msgstr "确认卸载" - -#~ msgctxt "@text:window" -#~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -#~ msgstr "您正在卸载仍在使用的材料和/或配置文件。确认会将以下材料/配置文件重置为默认值。" - -#~ msgctxt "@text:window" -#~ msgid "Materials" -#~ msgstr "材料" - -#~ msgctxt "@text:window" -#~ msgid "Profiles" -#~ msgstr "配置文件" - -#~ msgctxt "@action:button" -#~ msgid "Confirm" -#~ msgstr "确认" - -#~ msgctxt "@info:tooltip" -#~ msgid "Some things could be problematic in this print. Click to see tips for adjustment." -#~ msgstr "此次打印可能出现了某些问题。点击查看调整提示。" - -#~ msgctxt "@label" -#~ msgid "Support library for handling planar objects" -#~ msgstr "用于处理平面对象的支持库" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "您已经自定义了若干配置文件设置。\n" -#~ "是否要在切换配置文件后保留这些更改的设置?\n" -#~ "或者,也可舍弃更改以从“%1”加载默认值。" - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Build plate" -#~ msgstr "打印平台(&B)" - -#~ msgctxt "@label" -#~ msgid "Create" -#~ msgstr "创建" - -#~ msgctxt "@label" -#~ msgid "Duplicate" -#~ msgstr "复制" - -#~ msgctxt "@label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "打印机:%1" - -#~ msgctxt "@action:button" -#~ msgid "Update profile with current settings/overrides" -#~ msgstr "使用当前设置 / 重写值更新配置文件" - -#~ msgctxt "@label" -#~ msgid "Theme:" -#~ msgstr "主题:" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for these changes to have effect." -#~ msgstr "需重新启动 Cura,新的设置才能生效。" - -#~ msgctxt "@action:button" -#~ msgid "More information" -#~ msgstr "详细信息" - -#~ msgctxt "@action:button" -#~ msgid "Create" -#~ msgstr "创建" - -#~ msgctxt "@action:button Sending materials to printers" -#~ msgid "Sync with Printers" -#~ msgstr "与打印机同步" - -#~ msgctxt "@action:label" -#~ msgid "Printer" -#~ msgstr "打印机" - -#~ msgctxt "@title:column" -#~ msgid "Unit" -#~ msgstr "单位" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting Guide" -#~ msgstr "显示联机故障排除指南" - -#~ msgctxt "@action:inmenu" -#~ msgid "Add more materials from Marketplace" -#~ msgstr "从市场添加更多材料" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange All Models To All Build Plates" -#~ msgstr "将所有模型编位到所有打印平台" - -#~ msgctxt "@action:menu" -#~ msgid "&Marketplace" -#~ msgstr "市场(&M)" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new Cura packages." -#~ msgstr "查找、管理和安装新的Cura包。" - -#~ msgctxt "name" -#~ msgid "Toolbox" -#~ msgstr "工具箱" - -#~ msgctxt "description" -#~ msgid "Provides the Simulation view." -#~ msgstr "提供仿真视图。" - #~ msgctxt "@info:status" -#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "使用您的 Ultimaker account 帐户从任何地方发送和监控打印作业。" - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Digital Factory" -#~ msgstr "连接到 Ultimaker Digital Factory" - -#~ msgctxt "@info" -#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." -#~ msgstr "无法从 Ultimaker Cura 中查看云打印机的网络摄像头馈送。" - -#~ 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 not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -#~ msgstr "您的 {machine_name} 可能有新功能或错误修复可用!如果打印机上的固件还不是最新版本,建议将它更新为 {latest_version} 版。" - -#~ msgctxt "@info:title The %s gets replaced with the printer name." -#~ msgid "New %s firmware available" -#~ msgstr "新 %s 固件可用" - -#~ msgctxt "@info:status" -#~ msgid "Global stack is missing." -#~ msgstr "缺少全局堆栈。" - -#~ msgctxt "@info:status" -#~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces." -#~ msgstr "您的模型不是流形。突出显示的区域指示缺少或多余的表面。" +#~ msgid "Cura does not accurately display layers when Wire Printing is enabled." +#~ msgstr "启用“单线打印”后,Cura 将无法准确地显示打印层。" #~ msgctxt "@info:title" -#~ msgid "Model errors" -#~ msgstr "模型错误" - -#~ msgctxt "@label:listbox" -#~ msgid "Layer thickness" -#~ msgstr "层厚度" - -#~ msgctxt "@label" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "互连 3D 打印的特点" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Customize your experience with more print profiles and plugins\n" -#~ "- Stay flexible by syncing your setup and loading it anywhere\n" -#~ "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "" -#~ "- 借助更多的打印配置文件和插件定制您的体验\n" -#~ "- 通过同步设置并将其加载到任何位置保持灵活性\n" -#~ "- 使用 Ultimaker 打印机上的远程工作流提高效率" - -#~ msgctxt "@button" -#~ msgid "Create account" -#~ msgstr "创建账户" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete Selected Model" -#~ msgid_plural "Delete Selected Models" -#~ msgstr[0] "删除所选模型" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Center Selected Model" -#~ msgid_plural "Center Selected Models" -#~ msgstr[0] "居中所选模型" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Multiply Selected Model" -#~ msgid_plural "Multiply Selected Models" -#~ msgstr[0] "复制所选模型" - -#~ msgctxt "@button" -#~ msgid "Finish" -#~ msgstr "完成" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Account" -#~ msgstr "Ultimaker 帐户" - -#~ msgctxt "@text" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "互连 3D 打印的特点" - -#~ msgctxt "@text" -#~ msgid "- Customize your experience with more print profiles and plugins" -#~ msgstr "- 借助更多的打印配置文件和插件定制您的体验" - -#~ msgctxt "@text" -#~ msgid "- Stay flexible by syncing your setup and loading it anywhere" -#~ msgstr "- 通过同步设置并将其加载到任何位置保持灵活性" - -#~ msgctxt "@text" -#~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "- 使用 Ultimaker 打印机上的远程工作流提高效率" - -#~ msgctxt "@text" -#~ msgid "" -#~ "Please follow these steps to set up\n" -#~ "Ultimaker Cura. This will only take a few moments." -#~ msgstr "" -#~ "请按照以下步骤设置\n" -#~ "Ultimaker Cura。此操作只需要几分钟时间。" - -#~ msgctxt "@label" -#~ msgid "What's new in Ultimaker Cura" -#~ msgstr "Ultimaker Cura 新增功能" - -#~ msgctxt "@label ({} is object name)" -#~ msgid "Are you sure you wish to remove {}? This cannot be undone!" -#~ msgstr "是否确实要删除 {}?此操作无法撤消!" - -#~ msgctxt "@info:status" -#~ msgid "The selected model was too small to load." -#~ msgstr "所选模型过小,无法加载。" - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profile {0}" -#~ msgstr "已成功导入配置文件 {0}" - -#~ msgctxt "@info:status" -#~ msgid "Could not find a quality type {0} for the current configuration." -#~ msgstr "无法为当前配置找到质量类型 {0}。" - -#~ msgctxt "info:status" -#~ msgid "Adding printer {} ({}) from your account" -#~ msgstr "正在从您的帐户添加打印机 {} ({})" - -#~ msgctxt "info:hidden list items" -#~ msgid "
  • ... and {} others
  • " -#~ msgstr "
  • ... 和另外 {} 台
  • " - -#~ msgctxt "info:status" -#~ msgid "Printers added from Digital Factory:
      {}
    " -#~ msgstr "从 Digital Factory 添加的打印机:
      {}
    " - -#~ msgctxt "info:status" -#~ msgid "
      {}
    To establish a connection, please visit the Ultimaker Digital Factory." -#~ msgstr "
      {}
    要建立连接,请访问 Ultimaker Digital Factory。" - -#~ msgctxt "@label ({} is printer name)" -#~ msgid "{} will be removed until the next account sync.
    To remove {} permanently, visit Ultimaker Digital Factory.

    Are you sure you want to remove {} temporarily?" -#~ msgstr "{} 将被删除,直至下次帐户同步为止。
    要永久删除 {},请访问 Ultimaker Digital Factory

    是否确实要暂时删除 {}?" - -#~ msgctxt "@label" -#~ msgid "" -#~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n" -#~ "Are you sure you want to continue?" -#~ msgstr "" -#~ "您即将从 Cura 中删除 {} 台打印机。此操作无法撤消。\n" -#~ "是否确实要继续?" - -#~ msgctxt "@label" -#~ 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" -#~ "是否确实要继续?" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update" -#~ msgstr "更新" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Create new" -#~ msgstr "新建" - -#~ msgctxt "@label" -#~ msgid "Shared Heater" -#~ msgstr "共用加热器" - -#~ msgctxt "@info" -#~ msgid "The webcam is not available because you are monitoring a cloud printer." -#~ msgstr "网络摄像头不可用,因为您正在监控云打印机。" - -#~ msgctxt "@button" -#~ msgid "Ultimaker Digital Factory" -#~ msgstr "Ultimaker Digital Factory" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can Discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "您已经自定义了一些配置文件设置。\n" -#~ "是否要在切换配置文件后保留这些更改的设置?\n" -#~ "或者,也可舍弃更改以从“%1”加载默认值。" - -#~ msgctxt "@label" -#~ msgid "Overrides %1 setting." -#~ msgid_plural "Overrides %1 settings." -#~ msgstr[0] "覆盖 %1 设置。" - -#~ msgctxt "@text" -#~ msgid "Please give your printer a name" -#~ msgstr "请指定打印机名称" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." -#~ msgstr "您的 {machine_name} 有新功能可用! 建议您更新打印机上的固件。" - -#~ msgctxt "@action:button" -#~ msgid "Print via Cloud" -#~ msgstr "通过云打印" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print via Cloud" -#~ msgstr "通过云打印" - -#~ msgctxt "@info:status" -#~ msgid "Connected via Cloud" -#~ msgstr "通过云连接" - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "连接到 Ultimaker Cloud" - -#~ msgctxt "@label" -#~ msgid "You need to login first before you can rate" -#~ msgstr "您需要登录才能评分" - -#~ msgctxt "@label" -#~ msgid "You need to install the package before you can rate" -#~ msgstr "您需要安装程序包才能评分" - -#~ msgctxt "@label" -#~ msgid "ratings" -#~ msgstr "评分" - -#~ msgctxt "@label" -#~ msgid "Featured" -#~ msgstr "精选" - -#~ msgctxt "@label" -#~ msgid "Your rating" -#~ msgstr "您的评分" - -#~ msgctxt "@label" -#~ msgid "Author" -#~ msgstr "作者" - -#~ msgctxt "@description" -#~ msgid "Get plugins and materials verified by Ultimaker" -#~ msgstr "获取经过 Ultimaker 验证的插件和材料" - -#~ msgctxt "@label The argument is a username." -#~ msgid "Hi %1" -#~ msgstr "%1,您好" - -#~ msgctxt "@button" -#~ msgid "Ultimaker account" -#~ msgstr "Ultimaker 帐户" - -#~ msgctxt "@button" -#~ msgid "Sign out" -#~ msgstr "注销" - -#~ msgctxt "@label" -#~ msgid "Support library for analysis of complex networks" -#~ msgstr "用于分析复杂网络的支持库" - -#~ msgctxt "@Label" -#~ msgid "Python HTTP library" -#~ msgstr "Python HTTP 库" - -#~ msgctxt "@text:window" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to keep or discard those settings?" -#~ msgstr "" -#~ "您已自定义某些配置文件设置。\n" -#~ "您想保留或舍弃这些设置吗?" - -#~ msgctxt "@title:column" -#~ msgid "Default" -#~ msgstr "默认" - -#~ msgctxt "@title:column" -#~ msgid "Customized" -#~ msgstr "自定义" - -#~ msgctxt "@action:button" -#~ msgid "Discard" -#~ msgstr "舍弃" - -#~ msgctxt "@action:button" -#~ msgid "Keep" -#~ msgstr "保留" - -#~ msgctxt "@action:button" -#~ msgid "Create New Profile" -#~ msgstr "创建新配置文件" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "&Save..." -#~ msgstr "保存(&S)..." - -#~ msgctxt "@text" -#~ msgid "Place enter your printer's IP address." -#~ msgstr "打印机 IP 地址输入栏。" - -#~ msgctxt "@button" -#~ msgid "Create an account" -#~ msgstr "创建帐户" - -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Do you want to sync material and software packages with your account?" -#~ msgstr "" -#~ "\n" -#~ "是否要与您的帐户同步材料和软件包?" - -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Syncing..." -#~ msgstr "" -#~ "\n" -#~ "正在同步..." - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder." -#~ msgstr "无法切片,因为没有一个模型适合成形空间体积或被分配至已禁用的挤出机。请缩放或旋转模型以匹配,或启用挤出机。" - -#~ msgctxt "@info:backup_status" -#~ msgid "There was an error listing your backups." -#~ msgstr "列出您的备份时出错。" - -#~ msgctxt "@title:groupbox" -#~ msgid "User description (Note: Developers may not speak your language, please use English if possible)" -#~ msgstr "用户说明(注意:为避免开发人员可能不熟悉您的语言,请尽量使用英语)" - -#~ msgctxt "@title:window" -#~ msgid "Closing Cura" -#~ msgstr "关闭 Cura" - -#~ msgctxt "@label" -#~ msgid "Are you sure you want to exit Cura?" -#~ msgstr "您确定要退出 Cura 吗?" - -#~ msgctxt "@label" -#~ msgid "Language:" -#~ msgstr "语言:" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud" - -#~ msgctxt "@text" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "下一代 3D 打印工作流程" - -#~ msgctxt "@text" -#~ msgid "- Send print jobs to Ultimaker printers outside your local network" -#~ msgstr "- 将打印作业发送到局域网外的 Ultimaker 打印机" - -#~ msgctxt "@text" -#~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere" -#~ msgstr "- 将 Ultimaker Cura 设置存储到云以便在任何地方使用" - -#~ msgctxt "@text" -#~ msgid "- Get exclusive access to print profiles from leading brands" -#~ msgstr "- 获得来自领先品牌的打印配置文件的独家访问权限" - -#~ msgctxt "@label" -#~ msgid "The value is resolved from per-extruder values " -#~ msgstr "该值将会根据每一个挤出机的设置而确定 " - -#~ msgctxt "@label" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "下一代 3D 打印工作流程" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to print profiles from leading brands" -#~ msgstr "" -#~ "- 将打印作业发送到局域网外的 Ultimaker 打印机\n" -#~ "- 将 Ultimaker Cura 设置存储到云以便在任何地方使用\n" -#~ "- 获得来自领先品牌的打印配置文件的独家访问权限" - -#~ msgctxt "@title:window" -#~ msgid "About " -#~ msgstr "关于 " - -#~ msgctxt "@info:button" -#~ msgid "Quit Cura" -#~ msgstr "退出 Cura" - -#~ msgctxt "@action:checkbox" -#~ msgid "Infill only" -#~ msgstr "仅填充" - -#~ msgctxt "@info:tooltip" -#~ msgid "Change active post-processing scripts" -#~ msgstr "更改目前启用的后期处理脚本" - -#~ msgctxt "@label:listbox" -#~ msgid "Feedrate" -#~ msgstr "进给速度" - -#~ msgctxt "name" -#~ msgid "Machine Settings action" -#~ msgstr "打印机设置操作" - -#~ msgctxt "@info:title" -#~ msgid "New cloud printers found" -#~ msgstr "发现新的云打印机" - -#~ msgctxt "@info:message" -#~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers." -#~ msgstr "发现有新打印机连接到您的帐户。您可以在已发现的打印机列表中查找新连接的打印机。" - -#~ msgctxt "@info:status" -#~ msgid "Cura does not accurately display layers when Wire Printing is enabled" -#~ msgstr "当单线打印(Wire Printing)功能开启时,Cura 将无法准确地显示打印层(Layers)" - -#~ msgctxt "@label" -#~ msgid "Pre-sliced file {0}" -#~ msgstr "预切片文件 {0}" - -#~ msgctxt "@label" -#~ msgid "" -#~ "This plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ "该插件包含一个许可。\n" -#~ "您需要接受此许可才能安装此插件。\n" -#~ "是否同意下列条款?" - -#~ msgctxt "@action:button" -#~ msgid "Accept" -#~ msgstr "接受" - -#~ msgctxt "@action:button" -#~ msgid "Decline" -#~ msgstr "拒绝" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show All Settings" -#~ msgstr "显示所有设置" - -#~ msgctxt "@title:window" -#~ msgid "Ultimaker Cura" -#~ msgstr "Ultimaker Cura" - -#~ msgctxt "@title:window" -#~ msgid "About Cura" -#~ msgstr "关于 Cura" - -#~ msgctxt "@item:inmenu" -#~ msgid "Flatten active settings" -#~ msgstr "合并有效设置" - -#~ msgctxt "@info:status" -#~ msgid "Profile has been flattened & activated." -#~ msgstr "配置文件已被合并并激活。" - -#~ msgctxt "X3g Writer Plugin Description" -#~ msgid "Writes X3g to files" -#~ msgstr "写入 X3g 到文件" - -#~ msgctxt "X3g Writer File Description" -#~ msgid "X3g File" -#~ msgstr "X3g 文件" - -#~ msgctxt "X3G Writer File Description" -#~ msgid "X3G File" -#~ msgstr "X3G 文件" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Open Compressed Triangle Mesh" -#~ msgstr "打开压缩三角网格" - -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "配置文件助手" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "配置文件助手" - -#~ msgctxt "@action:button" -#~ msgid "Retry" -#~ msgstr "重试" - -#~ msgctxt "@label:table_header" -#~ msgid "Print Core" -#~ msgstr "打印芯" - -#~ msgctxt "@label" -#~ msgid "Don't support overlap with other models" -#~ msgstr "不支持与其他模型重叠" - -#~ msgctxt "@label" -#~ msgid "Modify settings for overlap with other models" -#~ msgstr "修改与其他模型重叠的设置" - -#~ msgctxt "@label" -#~ msgid "Modify settings for infill of other models" -#~ msgstr "修改其他模型填充物的设置" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update existing" -#~ msgstr "更新已有配置" - -#~ msgctxt "@label" -#~ msgid "Not supported" -#~ msgstr "不支持" - -#~ msgctxt "@action:button" -#~ msgid "Previous" -#~ msgstr "上一步" - -#~ msgctxt "@label" -#~ msgid "Tip" -#~ msgstr "提示" - -#~ msgctxt "@label" -#~ msgid "Print experiment" -#~ msgstr "打印试验" - -#~ msgctxt "@label" -#~ msgid "Checklist" -#~ msgstr "检查表" - -#~ msgctxt "@label" -#~ msgid "Please select any upgrades made to this Ultimaker 2." -#~ msgstr "请选择适用于 Ultimaker 2 的升级文件。" - -#~ msgctxt "@label" -#~ msgid "Olsson Block" -#~ msgstr "Olsson Block" - -#~ msgctxt "@window:text" -#~ msgid "Camera rendering: " -#~ msgstr "摄像头渲染: " - -#~ msgctxt "@info:tooltip" -#~ msgid "Use multi build plate functionality" -#~ msgstr "使用多打印平台功能" - -#~ msgctxt "@option:check" -#~ msgid "Use multi build plate functionality (restart required)" -#~ msgstr "使用多打印平台功能(需要重启)" - -#~ msgctxt "@label" -#~ msgid "Default profiles" -#~ msgstr "默认配置文件" - -#~ msgctxt "@label:textbox" -#~ msgid "search settings" -#~ msgstr "搜索设置" - -#~ msgctxt "@label" -#~ msgid "Layer Height" -#~ msgstr "层高" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile." -#~ msgstr "此质量配置文件不适用于当前材料和喷嘴配置。请进行更改以便启用此质量配置文件。" - -#~ msgctxt "@tooltip" -#~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" -#~ msgstr "自定义配置文件目前处于活动状态。 如要启用质量滑块,请在“自定义”选项卡中选择一个默认质量配置文件" - -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "打印平台(&B)" - -#~ msgctxt "@title:settings" -#~ msgid "&Profile" -#~ msgstr "配置文件(&P)" - -#~ msgctxt "@action:label" -#~ msgid "Build plate" -#~ msgstr "打印平台" - -#~ msgctxt "description" -#~ msgid "Dump the contents of all settings to a HTML file." -#~ msgstr "将所有设置内容转储至 HTML 文件。" - -#~ msgctxt "name" -#~ msgid "God Mode" -#~ msgstr "God 模式" - -#~ msgctxt "description" -#~ msgid "Create a flattened quality changes profile." -#~ msgstr "创建一份合并质量变化配置文件。" - -#~ msgctxt "name" -#~ msgid "Profile Flattener" -#~ msgstr "配置文件合并器" - -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "允许材料制造商使用下拉式 UI 创建新的材料和质量配置文件。" - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "打印配置文件助手" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network." -#~ msgstr "已通过网络连接。" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. Please approve the access request on the printer." -#~ msgstr "已通过网络连接。请在打印机上接受访问请求。" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. No access to control the printer." -#~ msgstr "已通过网络连接,但没有打印机的控制权限。" - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer requested. Please approve the request on the printer" -#~ msgstr "已发送打印机访问请求,请在打印机上批准该请求" - -#~ msgctxt "@info:title" -#~ msgid "Authentication status" -#~ msgstr "身份验证状态" - -#~ msgctxt "@info:title" -#~ msgid "Authentication Status" -#~ msgstr "身份验证状态" - -#~ msgctxt "@info:tooltip" -#~ msgid "Re-send the access request" -#~ msgstr "重新发送访问请求" - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer accepted" -#~ msgstr "打印机接受了访问请求" - -#~ msgctxt "@info:status" -#~ msgid "No access to print with this printer. Unable to send print job." -#~ msgstr "无法使用本打印机进行打印,无法发送打印作业。" - -#~ msgctxt "@action:button" -#~ msgid "Request Access" -#~ msgstr "请求访问" - -#~ msgctxt "@info:tooltip" -#~ msgid "Send access request to the printer" -#~ msgstr "向打印机发送访问请求" - -#~ msgctxt "@label" -#~ msgid "Unable to start a new print job." -#~ msgstr "无法启动新的打印作业。" - -#~ msgctxt "@label" -#~ msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." -#~ msgstr "Ultimaker 配置存在问题,导致无法开始打印。请解决此问题,然后再继续。" - -#~ msgctxt "@window:title" -#~ msgid "Mismatched configuration" -#~ msgstr "配置不匹配" - -#~ msgctxt "@label" -#~ msgid "Are you sure you wish to print with the selected configuration?" -#~ msgstr "您确定要使用所选配置进行打印吗?" - -#~ msgctxt "@label" -#~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "打印机的配置或校准与 Cura 之间不匹配。为了获得最佳打印效果,请务必切换打印头和打印机中插入的材料。" - -#~ msgctxt "@info:status" -#~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." -#~ msgstr "发送新作业(暂时)受阻,仍在发送前一份打印作业。" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to printer" -#~ msgstr "向打印机发送数据" - -#~ msgctxt "@info:title" -#~ msgid "Sending Data" -#~ msgstr "正在发送数据" - -#~ msgctxt "@info:status" -#~ msgid "No Printcore loaded in slot {slot_number}" -#~ msgstr "插槽 {slot_number} 中未加载 Printcore" - -#~ msgctxt "@info:status" -#~ msgid "No material loaded in slot {slot_number}" -#~ msgstr "插槽 {slot_number} 中未加载材料" - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" -#~ msgstr "为挤出机 {extruder_id} 选择了不同的 PrintCore(Cura: {cura_printcore_name},打印机:{remote_printcore_name})" - -#~ msgctxt "@label" -#~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "您为挤出机 {2} 选择了不同的材料(Cura:{0},打印机:{1})" - -#~ msgctxt "@window:title" -#~ msgid "Sync with your printer" -#~ msgstr "与您的打印机同步" - -#~ msgctxt "@label" -#~ msgid "Would you like to use your current printer configuration in Cura?" -#~ msgstr "您想在 Cura 中使用当前的打印机配置吗?" - -#~ msgctxt "@label" -#~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "打印机上的打印头和/或材料与当前项目中的不同。 为获得最佳打印效果,请始终使用已插入打印机的打印头和材料进行切片。" - -#~ msgctxt "@action:button" -#~ msgid "View in Monitor" -#~ msgstr "在监控器中查看" - -#~ msgctxt "@info:status" -#~ msgid "Printer '{printer_name}' has finished printing '{job_name}'." -#~ msgstr "打印机 '{printer_name}' 完成了打印任务 '{job_name}'。" - -#~ msgctxt "@info:status" -#~ msgid "The print job '{job_name}' was finished." -#~ msgstr "打印作业 '{job_name}' 已完成。" - -#~ msgctxt "@info:status" -#~ msgid "Print finished" -#~ msgstr "打印完成" - -#~ msgctxt "@label:material" -#~ msgid "Empty" -#~ msgstr "空" - -#~ msgctxt "@label:material" -#~ msgid "Unknown" -#~ msgstr "未知" - -#~ msgctxt "@info:title" -#~ msgid "Cloud error" -#~ msgstr "云错误" - -#~ msgctxt "@info:status" -#~ msgid "Could not export print job." -#~ msgstr "无法导出打印作业。" - -#~ msgctxt "@info:description" -#~ msgid "There was an error connecting to the cloud." -#~ msgstr "连接到云时出错。" - -#~ msgctxt "@info:status" -#~ msgid "Uploading via Ultimaker Cloud" -#~ msgstr "通过 Ultimaker Cloud 上传" - -#~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "连接到 Ultimaker Cloud" - -#~ msgctxt "@action" -#~ msgid "Don't ask me again for this printer." -#~ msgstr "对此打印机不再询问。" - -#~ msgctxt "@info:status" -#~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "您现在可以使用您的 Ultimaker account 帐户从任何地方发送和监控打印作业。" - -#~ msgctxt "@info:status" -#~ msgid "Connected!" -#~ msgstr "已连接!" - -#~ msgctxt "@action" -#~ msgid "Review your connection" -#~ msgstr "查看您的连接" - -#~ msgctxt "@info:status Don't translate the XML tags !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "配置文件 {0} ({1}) 中定义的机器与当前机器 ({2}) 不匹配,无法导入。" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}:" -#~ msgstr "无法从 {0} 导入配置文件:" - -#~ msgctxt "@window:title" -#~ msgid "Existing Connection" -#~ msgstr "现有连接" - -#~ msgctxt "@message:text" -#~ msgid "This printer/group is already added to Cura. Please select another printer/group." -#~ msgstr "此打印机/打印机组已添加到 Cura。请选择其他打印机/打印机组。" - -#~ msgctxt "@label" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "输入打印机在网络上的 IP 地址或主机名。" - -#~ msgctxt "@info:tooltip" -#~ msgid "Connect to a printer" -#~ msgstr "连接到打印机" - -#~ msgctxt "@title" -#~ msgid "Cura Settings Guide" -#~ msgstr "Cura 设置向导" - -#~ msgctxt "@info:tooltip" -#~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective." -#~ msgstr "正交透视中不支持通过鼠标缩放。" - -#~ msgid "Orthogonal" -#~ msgstr "正交" - -#~ msgctxt "description" -#~ msgid "Manages network connections to Ultimaker 3 printers." -#~ msgstr "管理与最后的3个打印机的网络连接。" - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection" -#~ msgstr "UM3 网络连接" - -#~ msgctxt "description" -#~ msgid "Provides extra information and explanations about settings in Cura, with images and animations." -#~ msgstr "提供关于 Cura 设置的额外信息和说明,并附上图片及动画。" - -#~ msgctxt "name" -#~ msgid "Settings Guide" -#~ msgstr "设置向导" - -#~ msgctxt "@item:inmenu" -#~ msgid "Cura Settings Guide" -#~ msgstr "Cura 设置向导" - -#~ msgctxt "@info:generic" -#~ msgid "Settings have been changed to match the current availability of extruders: [%s]" -#~ msgstr "已根据挤出机的当前可用性更改设置:[%s]" - -#~ msgctxt "@title:groupbox" -#~ msgid "User description" -#~ msgstr "用户说明" - -#~ msgctxt "@info" -#~ msgid "These options are not available because you are monitoring a cloud printer." -#~ msgstr "这些选项不可用,因为您正在监控云打印机。" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Go to Cura Connect" -#~ msgstr "转到 Cura Connect" - -#~ msgctxt "@info" -#~ msgid "All jobs are printed." -#~ msgstr "已完成所有打印工作。" - -#~ msgctxt "@label link to connect manager" -#~ msgid "View print history" -#~ 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.\n" -#~ "\n" -#~ "Select your printer from the list below:" -#~ msgstr "" -#~ "要通过网络向打印机发送打印请求,请确保您的打印机已通过网线或 WIFI 连接到网络。若您不能连接 Cura 与打印机,您仍然可以使用 USB 设备将 G-code 文件传输到打印机。\n" -#~ "\n" -#~ "从以下列表中选择您的打印机:" - -#~ 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." -#~ msgstr "" -#~ "请确保您的打印机已连接:\n" -#~ "- 检查打印机是否已启动。\n" -#~ "- 检查打印机是否连接到网络。" - -#~ msgctxt "@option:check" -#~ msgid "See only current build plate" -#~ msgstr "只能看到当前的打印平台" - -#~ msgctxt "@action:button" -#~ msgid "Arrange to all build plates" -#~ msgstr "编位到所有打印平台" - -#~ msgctxt "@action:button" -#~ msgid "Arrange current build plate" -#~ msgstr "编位当前打印平台" - -#~ msgctxt "description" -#~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)." -#~ msgstr "允许将产生的切片保存为X3G文件,以支持读取此格式的打印机(Malyan、Makerbot和其他基于sailfish打印机的打印机)。" - -#~ msgctxt "name" -#~ msgid "X3GWriter" -#~ msgstr "X3G写" - -#~ msgctxt "description" -#~ msgid "Reads SVG files as toolpaths, for debugging printer movements." -#~ msgstr "读取 SVG 文件的刀具路径,调试打印机活动。" - -#~ msgctxt "name" -#~ msgid "SVG Toolpath Reader" -#~ msgstr "SVG 刀具路径读取器" - -#~ msgctxt "@item:inmenu" -#~ msgid "Changelog" -#~ msgstr "更新日志" - -#~ msgctxt "@item:inmenu" -#~ msgid "Show Changelog" -#~ msgstr "显示更新日志" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to remote cluster" -#~ msgstr "发送数据至远程群集" - -#~ msgctxt "@info:status" -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "连接到 Ultimaker Cloud" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymized usage statistics." -#~ msgstr "Cura 将收集匿名的使用统计数据。" - -#~ msgctxt "@info:title" -#~ msgid "Collecting Data" -#~ msgstr "正在收集数据" - -#~ msgctxt "@action:button" -#~ msgid "More info" -#~ msgstr "详细信息" - -#~ msgctxt "@action:tooltip" -#~ msgid "See more information on what data Cura sends." -#~ msgstr "请参阅更多关于Cura发送的数据的信息。" - -#~ msgctxt "@action:button" -#~ msgid "Allow" -#~ msgstr "允许" - -#~ msgctxt "@action:tooltip" -#~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." -#~ msgstr "允许 Cura 发送匿名的使用统计数据,以帮助确定将来 Cura 的改进优先顺序。已发送您的一些偏好和设置,Cura 版本和您正在切片的模型的散列值。" - -#~ msgctxt "@item:inmenu" -#~ msgid "Evaluation" -#~ msgstr "评估" - -#~ msgctxt "@info:title" -#~ msgid "Network enabled printers" -#~ msgstr "网络打印机" - -#~ msgctxt "@info:title" -#~ msgid "Local printers" -#~ msgstr "本地打印机" - -#~ msgctxt "@info:backup_failed" -#~ msgid "Tried to restore a Cura backup that does not match your current version." -#~ msgstr "试图恢复与您当前版本不匹配的Cura备份。" - -#~ msgctxt "@title" -#~ msgid "Machine Settings" -#~ msgstr "打印机设置" - -#~ msgctxt "@label" -#~ msgid "Printer Settings" -#~ msgstr "打印机设置" - -#~ msgctxt "@option:check" -#~ msgid "Origin at center" -#~ msgstr "置中" - -#~ msgctxt "@option:check" -#~ msgid "Heated bed" -#~ msgstr "加热床" - -#~ msgctxt "@label" -#~ msgid "Printhead Settings" -#~ msgstr "打印头设置" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "打印头左侧至喷嘴中心的距离。 用于防止“排队”打印时之前的打印品与打印头发生碰撞。" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "打印头前端至喷嘴中心的距离。 用于防止“排队”打印时之前的打印品与打印头发生碰撞。" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "打印头右侧至喷嘴中心的距离。 用于防止“排队”打印时之前的打印品与打印头发生碰撞。" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "打印头后部至喷嘴中心的距离。 用于防止“排队”打印时之前的打印品与打印头发生碰撞。" - -#~ msgctxt "@label" -#~ msgid "Gantry height" -#~ msgstr "十字轴高度" - -#~ msgctxt "@tooltip" -#~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." -#~ msgstr "喷嘴尖端与十字轴系统(X 轴和 Y 轴)之间的高度差。 用于防止“排队”打印时之前的打印品与十字轴发生碰撞。" - -#~ msgctxt "@label" -#~ msgid "Start G-code" -#~ msgstr "开始 G-code" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very start." -#~ msgstr "将在开始时执行的 G-code 命令。" - -#~ msgctxt "@label" -#~ msgid "End G-code" -#~ msgstr "结束 G-code" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very end." -#~ msgstr "将在结束时执行的 G-code 命令。" - -#~ msgctxt "@label" -#~ msgid "Nozzle Settings" -#~ msgstr "喷嘴设置" - -#~ msgctxt "@tooltip" -#~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." -#~ msgstr "打印机所支持耗材的公称直径。 材料和/或配置文件将覆盖精确直径。" - -#~ msgctxt "@label" -#~ msgid "Extruder Start G-code" -#~ msgstr "挤出机的开始 G-code" - -#~ msgctxt "@label" -#~ msgid "Extruder End G-code" -#~ msgstr "挤出机的结束 G-code" - -#~ msgctxt "@label" -#~ msgid "Changelog" -#~ msgstr "更新日志" - -#~ msgctxt "@title:window" -#~ msgid "User Agreement" -#~ msgstr "用户协议" - -#~ msgctxt "@alabel" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "输入打印机在网络上的 IP 地址或主机名。" - -#~ msgctxt "@info" -#~ msgid "Please select a network connected printer to monitor." -#~ msgstr "请选择已连接网络的打印机进行监控。" - -#~ msgctxt "@info" -#~ msgid "Please connect your Ultimaker printer to your local network." -#~ msgstr "请将 Ultimaker 打印机连接到您的局域网。" - -#~ msgctxt "@text:window" -#~ msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent." -#~ msgstr "Cura向最终用户发送匿名数据,以提高打印质量和用户体验。下面是发送的所有数据的一个示例。" - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send this data" -#~ msgstr "我不想发送此数据" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending this data to Ultimaker and help us improve Cura" -#~ msgstr "允许向 Ultimaker 发送此数据并帮助我们改善 Cura" - -#~ msgctxt "@label" -#~ msgid "No print selected" -#~ msgstr "未选择打印" - -#~ msgctxt "@info:tooltip" -#~ 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 "@title" -#~ msgid "Select Printer Upgrades" -#~ msgstr "选择打印机升级" - -#~ msgctxt "@label" -#~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "选择用于支撑的挤出机。该挤出机将在模型之下建立支撑结构,以防止模型下垂或在空中打印。" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "此质量配置文件不适用于当前材料和喷嘴配置。请更改配置以便启用此配置文件" - -#~ msgctxt "@label shown when we load a Gcode file" -#~ msgid "Print setup disabled. G code file can not be modified." -#~ msgstr "打印设置已禁用。无法修改 G code 文件。" - -#~ msgctxt "@label" -#~ msgid "See the material compatibility chart" -#~ msgstr "查看材料兼容性图表" - -#~ msgctxt "@label" -#~ msgid "View types" -#~ msgstr "查看类型" - -#~ msgctxt "@label" -#~ msgid "Hi " -#~ msgstr "您好 " - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to material profiles from leading brands" -#~ msgstr "" -#~ "- 发送打印作业到局域网外的 Ultimaker 打印机\n" -#~ "- 将 Ultimaker Cura 设置存储到云以便在任何地方使用\n" -#~ "- 获得来自领先品牌的材料配置文件的独家访问权限" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Unable to Slice" -#~ msgstr "无法切片" - -#~ msgctxt "@label" -#~ msgid "Time specification" -#~ msgstr "时间规格" - -#~ msgctxt "@label" -#~ msgid "Material specification" -#~ msgstr "材料规格" - -#~ msgctxt "@title:tab" -#~ msgid "Add a printer to Cura" -#~ msgstr "添加打印机到 Cura" - -#~ msgctxt "@title:tab" -#~ msgid "" -#~ "Select the printer you want to use from the list below.\n" -#~ "\n" -#~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog." -#~ msgstr "" -#~ "从以下列表中选择您要使用的打印机。\n" -#~ "\n" -#~ "如果您的打印机不在列表中,使用“自定义”类别中的“自定义 FFF 打印机”,并在下一个对话框中调整设置以匹配您的打印机。" - -#~ msgctxt "@label" -#~ msgid "Printer Name" -#~ msgstr "打印机名称" - -#~ msgctxt "@action:button" -#~ msgid "Add Printer" -#~ msgstr "新增打印机" - -#~ msgid "Modify G-Code" -#~ msgstr "修改 G-Code 文件" - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." -#~ msgstr "无法执行,因为没有一个模型符合成形空间体积。请缩放或旋转模型以适应打印平台。" - -#~ msgctxt "@info:status" -#~ msgid "The selected material is incompatible with the selected machine or configuration." -#~ msgstr "所选材料与所选机器或配置不兼容。" - -#~ msgctxt "@info:title" -#~ msgid "Incompatible Material" -#~ msgstr "不兼容材料" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "无法从 {0} 导入配置文件: {1}" - -#~ msgctxt "@title" -#~ msgid "Toolbox" -#~ msgstr "工具箱" - -#~ msgctxt "@label" -#~ msgid "Not available" -#~ msgstr "不可用" - -#~ msgctxt "@label" -#~ msgid "Unreachable" -#~ msgstr "无法连接" - -#~ msgctxt "@label" -#~ msgid "Available" -#~ msgstr "可用" - -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "准备" - -#~ msgctxt "@label:status" -#~ msgid "Pausing" -#~ msgstr "暂停" - -#~ msgctxt "@label:status" -#~ msgid "Resuming" -#~ msgstr "恢复" - -#~ msgctxt "@label" -#~ msgid "Waiting for: Unavailable printer" -#~ msgstr "等待:不可用的打印机" - -#~ msgctxt "@label" -#~ msgid "Waiting for: First available" -#~ msgstr "等待:第一个可用的" - -#~ msgctxt "@label" -#~ msgid "Waiting for: " -#~ msgstr "等待: " - -#~ msgctxt "@label" -#~ msgid "Configuration change" -#~ msgstr "配置更改" - -#~ msgctxt "@label" -#~ msgid "The assigned printer, %1, requires the following configuration change(s):" -#~ msgstr "分配的打印机 %1 需要以下配置更改:" - -#~ msgctxt "@label" -#~ msgid "Override" -#~ msgstr "覆盖" - -#~ msgctxt "@label" -#~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?" -#~ msgstr "使用不兼容的配置启动打印作业可能会损坏 3D 打印机。您确定要覆盖配置并打印 %1 吗?" - -#~ msgctxt "@window:title" -#~ msgid "Override configuration configuration and start print" -#~ msgstr "覆盖配置并开始打印" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage queue" -#~ msgstr "管理队列" - -#~ msgctxt "@label" -#~ msgid "Printing" -#~ msgstr "打印" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage printers" -#~ msgstr "管理打印机" - -#~ msgctxt "@action:button" -#~ msgid "Activate Configuration" -#~ msgstr "应用配置" - -#~ msgctxt "@info:tooltip" -#~ msgid "Load the configuration of the printer into Cura" -#~ msgstr "将打印机配置导入 Cura" - -#~ msgctxt "@label" -#~ msgid "Show Travels" -#~ msgstr "显示移动轨迹" - -#~ msgctxt "@label" -#~ msgid "Show Helpers" -#~ msgstr "显示打印辅助结构" - -#~ msgctxt "@label" -#~ msgid "Show Shell" -#~ msgstr "显示外壳" - -#~ msgctxt "@label" -#~ msgid "Show Infill" -#~ msgstr "显示填充" - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send these data" -#~ msgstr "我不想发送这些数据" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending these data to Ultimaker and help us improve Cura" -#~ msgstr "允许将这些数据发送到最后一个,帮助我们改进Cura" - -#~ msgctxt "@label" -#~ msgid "Printer type:" -#~ msgstr "打印机类型:" - -#~ msgctxt "@label" -#~ msgid "Connection:" -#~ msgstr "连接:" - -#~ msgctxt "@label" -#~ msgid "State:" -#~ msgstr "状态:" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for a printjob" -#~ msgstr "等待打印作业" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for someone to clear the build plate" -#~ msgstr "等待清理打印平台" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Aborting print..." -#~ msgstr "中止打印..." - -#~ msgctxt "@label" -#~ msgid "Protected profiles" -#~ msgstr "受保护的配置文件" - -#~ msgctxt "@label" -#~ msgid "Printer Name:" -#~ msgstr "打印机名称:" - -#~ msgctxt "@label" -#~ msgid "Profile:" -#~ msgstr "配置文件:" - -#~ msgctxt "@label:textbox" -#~ msgid "Search..." -#~ msgstr "搜索..." - -#~ msgctxt "@action:inmenu" -#~ msgid "Collapse All" -#~ msgstr "全部折叠" - -#~ msgctxt "@action:inmenu" -#~ msgid "Expand All" -#~ msgstr "全部展开" - -#~ msgctxt "@label:header configurations" -#~ msgid "Available configurations" -#~ msgstr "可用配置" - -#~ msgctxt "@label:extruder label" -#~ msgid "Extruder" -#~ msgstr "挤出机" - -#~ msgctxt "@label:extruder label" -#~ msgid "Yes" -#~ msgstr "是" - -#~ msgctxt "@label:extruder label" -#~ msgid "No" -#~ msgstr "不是" - -#~ msgctxt "@label:listbox" -#~ msgid "Print Setup" -#~ msgstr "打印设置" - -#~ msgctxt "@label:listbox" -#~ msgid "" -#~ "Print Setup disabled\n" -#~ "G-code files cannot be modified" -#~ msgstr "" -#~ "打印设置已禁用\n" -#~ "G-code 文件无法被修改" - -#~ msgctxt "@label Hours and minutes" -#~ msgid "00h 00min" -#~ msgstr "00 小时 00 分" - -#~ msgctxt "@tooltip" -#~ msgid "Time specification" -#~ msgstr "时间规格" - -#~ msgctxt "@label" -#~ msgid "Cost specification" -#~ msgstr "成本规定" - -#~ msgctxt "@label" -#~ msgid "Total:" -#~ msgstr "总计:" - -#~ msgctxt "@tooltip" -#~ msgid "Recommended Print Setup

    Print with the recommended settings for the selected printer, material and quality." -#~ msgstr "推荐的打印设置

    使用针对所选打印机、材料和质量的推荐设置进行打印。" - -#~ msgctxt "@tooltip" -#~ msgid "Custom Print Setup

    Print with finegrained control over every last bit of the slicing process." -#~ msgstr "自定义打印设置

    对切片过程中的每一个细节进行精细控制。" - -#~ msgctxt "@action:inmenu menubar:help" -#~ msgid "Show Engine &Log..." -#~ msgstr "显示引擎日志(&L)..." - -#~ msgctxt "@action:menu" -#~ msgid "Browse packages..." -#~ msgstr "浏览包……" - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "Expand/Collapse Sidebar" -#~ msgstr "展开/折叠侧边栏" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3D model" -#~ msgstr "请载入一个 3D 模型" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Ready to slice" -#~ msgstr "切片已准备就绪" - -#~ msgctxt "@label:PrintjobStatus %1 is target operation" -#~ msgid "Ready to %1" -#~ msgstr "%1 已准备就绪" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Slicing unavailable" -#~ msgstr "切片不可用" - -#~ msgctxt "@info:tooltip" -#~ msgid "Slice current printjob" -#~ msgstr "分割当前打印作业" - -#~ msgctxt "@info:tooltip" -#~ msgid "Cancel slicing process" -#~ msgstr "取消切片流程" - -#~ msgctxt "@label:Printjob" -#~ msgid "Prepare" -#~ msgstr "准备" - -#~ msgctxt "@label:Printjob" -#~ msgid "Cancel" -#~ msgstr "取消" - -#~ msgctxt "@info:tooltip" -#~ msgid "Select the active output device" -#~ msgstr "选择活动的输出装置" - -#~ msgctxt "@title:menu" -#~ msgid "&View" -#~ msgstr "视图(&V)" - -#~ msgctxt "@title:menu" -#~ msgid "&Settings" -#~ msgstr "设置(&S)" - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "&Toolbox" -#~ msgstr "&工具箱" - -#~ msgctxt "@action:button" -#~ msgid "Open File" -#~ msgstr "打开文件" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "此质量配置文件不适用于当前材料和喷嘴配置。请更改配置以便启用此配置文件" - -#~ msgctxt "@label" -#~ msgid "Print Speed" -#~ msgstr "打印速度" - -#~ msgctxt "@label" -#~ msgid "Slower" -#~ msgstr "更慢" - -#~ msgctxt "@label" -#~ msgid "Faster" -#~ msgstr "更快" - -#~ msgctxt "@label" -#~ msgid "Enable gradual" -#~ msgstr "启用渐层" - -#~ msgctxt "@label" -#~ msgid "Generate Support" -#~ msgstr "生成支撑" - -#~ msgctxt "@label" -#~ msgid "Build Plate Adhesion" -#~ msgstr "打印平台附着" - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints?
    Read the Ultimaker Troubleshooting Guides" -#~ msgstr "需要帮助改善您的打印?
    阅读 Ultimaker 故障排除指南" - -#~ msgctxt "@title:window" -#~ msgid "Engine Log" -#~ msgstr "引擎日志" - -#~ msgctxt "@label" -#~ msgid "Printer type" -#~ msgstr "打印机类型" - -#~ msgctxt "@label" -#~ msgid "Use glue with this material combination" -#~ msgstr "用胶粘和此材料组合" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "检查兼容性" - -#~ msgctxt "@tooltip" -#~ msgid "Click to check the material compatibility on Ultimaker.com." -#~ msgstr "点击查看 Ultimaker.com 上的材料兼容情况。" - -#~ msgctxt "description" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "显示最新版本改动。" - -#~ msgctxt "name" -#~ msgid "Changelog" -#~ msgstr "更新日志" - -#~ msgctxt "description" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "创建一份合并质量变化配置文件。" - -#~ msgctxt "name" -#~ msgid "Profile flatener" -#~ msgstr "配置文件合并器" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license." -#~ msgstr "询问用户是否同意我们的许可证。" - -#~ msgctxt "name" -#~ msgid "UserAgreement" -#~ msgstr "用户协议" - -#~ msgctxt "@warning:status" -#~ msgid "Please generate G-code before saving." -#~ msgstr "保存之前,请生成 G-code。" - -#~ msgctxt "@action" -#~ msgid "Upgrade Firmware" -#~ msgstr "升级固件" - -#~ msgctxt "@label unknown material" -#~ msgid "Unknown" -#~ msgstr "未知" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "No custom profile to import in file {0}" -#~ msgstr "没有可供导入文件 {0} 的自定义配置文件" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "This profile {0} contains incorrect data, could not import it." -#~ msgstr "此配置文件 {0} 包含错误数据,无法导入。" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "配置文件 {0} ({1}) 中定义的机器与当前机器 ({2}) 不匹配,无法导入。" - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall " -#~ msgstr "确认卸载 " - -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - -#~ msgctxt "@title" -#~ msgid "Upgrade Firmware" -#~ msgstr "升级固件" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "使用 Doodle3D WiFi-Box 打印" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "使用 Doodle3D WiFi-Box 打印" - -#~ msgctxt "@info:status" -#~ msgid "Connecting to Doodle3D Connect" -#~ msgstr "连接至 Doodle3D Connect" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to Doodle3D Connect" -#~ msgstr "发送数据至 Doodle3D Connect" - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -#~ msgstr "无法发送数据至 Doodle3D Connect。 是否有另一项作业仍在进行?" - -#~ msgctxt "@info:status" -#~ msgid "Storing data on Doodle3D Connect" -#~ msgstr "在 Doodle3D Connect 中存储数据" - -#~ msgctxt "@info:status" -#~ msgid "File sent to Doodle3D Connect" -#~ msgstr "已发送至 Doodle3D Connect 的文件" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect..." -#~ msgstr "打开 链接..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Open the Doodle3D Connect web interface" -#~ msgstr "打开 Doodle3D Connect Web 界面" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Blender file" -#~ msgstr "Blender 文件" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Could not export using \"{}\" quality!\n" -#~ "Felt back to \"{}\"." -#~ msgstr "" -#~ "无法使用 \"{}\" 导出质量!\n" -#~ "返回 \"{}\"。" - -#~ msgctxt "@label" -#~ msgid "Contact" -#~ msgstr "联系方式" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." -#~ msgstr "这台打印机未设置为运行一组连接的 Ultimaker 3 打印机。" - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -#~ msgstr "这台打印机是一组共 %1 台已连接 Ultimaker 3 打印机的主机。" - -#~ msgctxt "@label: arg 1 is group name" -#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "%1 未设置为运行一组连接的 Ultimaker 3 打印机" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Add/Remove printers" -#~ msgstr "添加/删除打印机" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "使用默认 Web 浏览器打开打印作业页面。" - -#~ msgctxt "@action:button" -#~ msgid "View print jobs" -#~ msgstr "查看打印作业" - -#~ msgctxt "@label:status" -#~ msgid "Preparing to print" -#~ msgstr "正在准备打印" - -#~ msgctxt "@label:status" -#~ msgid "Available" -#~ msgstr "可用" - -#~ msgctxt "@label:status" -#~ msgid "Lost connection with the printer" -#~ msgstr "与打印机的连接中断" - -#~ msgctxt "@label:status" -#~ msgid "Unknown" -#~ msgstr "未知" - -#~ msgctxt "@label:status" -#~ msgid "Disabled" -#~ msgstr "已禁用" - -#~ msgctxt "@label:status" -#~ msgid "Reserved" -#~ msgstr "保留" - -#~ msgctxt "@label" -#~ msgid "Preparing to print" -#~ msgstr "正在准备打印" - -#~ msgctxt "@label:status" -#~ msgid "Print aborted" -#~ msgstr "打印已中止" - -#~ msgctxt "@label" -#~ msgid "Not accepting print jobs" -#~ msgstr "不接受打印作业" - -#~ msgctxt "@label" -#~ msgid "Finishes at: " -#~ msgstr "完成时间:" - -#~ msgctxt "@label" -#~ msgid "Clear build plate" -#~ msgstr "清空打印平台" - -#~ msgctxt "@label" -#~ msgid "Waiting for configuration change" -#~ msgstr "正在等待配置更改" - -#~ msgctxt "@title" -#~ msgid "Print jobs" -#~ msgstr "打印作业" - -#~ msgctxt "@label:title" -#~ msgid "Printers" -#~ msgstr "打印机" - -#~ msgctxt "@action:button" -#~ msgid "View printers" -#~ msgstr "查看打印机" - -#~ msgctxt "@label:" -#~ msgid "Pause" -#~ msgstr "暂停" - -#~ msgctxt "@label:" -#~ msgid "Resume" -#~ msgstr "恢复" - -#~ msgctxt "@label:" -#~ msgid "Abort Print" -#~ msgstr "中止打印" - -#~ msgctxt "@option:openProject" -#~ msgid "Always ask" -#~ msgstr "总是询问" - -#~ msgctxt "@label" -#~ msgid "Override Profile" -#~ msgstr "重写配置文件" - -#~ msgctxt "@info:tooltip" -#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -#~ msgstr "是否在打印平台上编位新加载的模型?与多打印平台结合使用(实验性)" - -#~ msgctxt "@option:check" -#~ msgid "Do not arrange objects on load" -#~ msgstr "不要编位加载的对象" - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Save Selection to File" -#~ msgstr "保存到文件(&S)" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &As..." -#~ msgstr "另存为(&A)…" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &Project..." -#~ msgstr "保存项目(&P)..." - -#~ msgctxt "@label" -#~ msgid "Use adhesion sheet or glue with this material combination" -#~ msgstr "在此材料组合的情况下,请使用附着垫片或者胶水" - -#~ msgctxt "description" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "接受 G-Code 并通过 WiFi 将其发送到 Doodle3D WiFi-Box。" - -#~ msgctxt "name" -#~ msgid "Doodle3D WiFi-Box" -#~ msgstr "Doodle3D WiFi-Box" - -#~ msgctxt "description" -#~ msgid "Provides an edit window for direct script editing." -#~ msgstr "提供直接脚本编辑的编辑窗口。" - -#~ msgctxt "name" -#~ msgid "Live scripting tool" -#~ msgstr "实时脚本工具" - -#~ msgctxt "description" -#~ msgid "Helps to open Blender files directly in Cura." -#~ msgstr "帮助直接在 Cura 中打开 Blender 文件。" - -#~ msgctxt "name" -#~ msgid "Blender Integration (experimental)" -#~ msgstr "Blender 集成(实验性)" - -#~ msgctxt "@info:title" -#~ msgid "Model Checker Warning" -#~ msgstr "模型检查器警告" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n" -#~ "Tips that may be useful to improve the print quality:\n" -#~ "1) Use rounded corners.\n" -#~ "2) Turn the fan off (only if there are no tiny details on the model).\n" -#~ "3) Use a different material." -#~ msgstr "" -#~ "由于模型的对象大小和所选材质,某些模型可能无法打印出最佳效果:{Model_names}。\n" -#~ "可以借鉴一些实用技巧来改善打印质量:\n" -#~ "1) 使用圆角。\n" -#~ "2) 关闭风扇(仅在模型没有微小细节时)。\n" -#~ "3) 使用其他材质。" - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "打开文件时,SolidWorks 报错。我们建议在 SolidWorks 内部解决这些问题。" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ "Thanks!" -#~ msgstr "" -#~ "在图纸中找不到模型。请再次检查图纸内容,确保里面有一个零件或组件?\n" -#~ "\n" -#~ "谢谢!" - -#~ 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" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "在图纸中找到一个以上的零件或组件。我们目前只支持里面正好有一个零件或组件的图纸。\n" -#~ "\n" -#~ "很抱歉!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks part file" -#~ msgstr "SolidWorks 零件文件" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks assembly file" -#~ msgstr "SolidWorks 组件文件" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks drawing file" -#~ msgstr "SolidWorks 图纸文件" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "尊敬的客户:\n" -#~ "我们无法在您的系统中找到有效的 SolidWorks 软件。这意味着您的系统中没有安装 SolidWorks,或者您没有获得有效的许可。请确保 SolidWorks 的运行没有任何问题并/或联系您的 ICT。\n" -#~ "\n" -#~ "此致\n" -#~ " - Thomas Karl Pietrowski" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Dear customer,\n" -#~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n" -#~ "\n" -#~ "With kind regards\n" -#~ " - Thomas Karl Pietrowski" -#~ msgstr "" -#~ "尊敬的客户:\n" -#~ "您当前正在非 Windows 操作系统上运行此插件。此插件只能在装有 SolidWorks 且拥有有效许可的 Windows 系统上运行。请在装有 SolidWorks 的 Windows 计算机上安装此插件。\n" -#~ "\n" -#~ "此致\n" -#~ " - Thomas Karl Pietrowski" - -#~ msgid "Configure" -#~ msgstr "配置" - -#~ msgid "Installation guide for SolidWorks macro" -#~ msgstr "SolidWorks 宏的安装指南" - -#~ msgctxt "@action:button" -#~ msgid "Disable" -#~ msgstr "禁用" - -#~ msgctxt "@action:tooltip" -#~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences." -#~ msgstr "不允许 Cura 发送匿名的使用统计数据。您可以在偏好中再次启用。" - -#~ msgid "Install" -#~ msgstr "安装" - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory." -#~ msgstr "复制 Siemens NX 插件文件失败。 请检查您的 UGII_USER_DIR。 未将其设置到目录中。" - -#~ msgid "Successfully installed Siemens NX Cura plugin." -#~ msgstr "已成功安装 Siemens NX Cura 插件。" - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR." -#~ msgstr "复制 Siemens NX 插件文件失败。 请检查您的 UGII_USER_DIR。" - -#~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX." -#~ msgstr "安装 Siemens NX 插件失败。 无法为 Siemens NX 设置环境变量 UGII_USER_DIR。" - -#~ msgctxt "@info:status" -#~ msgid "Failed to get plugin ID from {0}" -#~ msgstr "无法从 {0} 获取插件 ID" - -#~ msgctxt "@info:tile" -#~ msgid "Warning" -#~ msgstr "警告" - -#~ msgctxt "@window:title" -#~ msgid "Plugin browser" -#~ msgstr "插件浏览器" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks: Export wizard" -#~ msgstr "SolidWorks:导出向导" - -#~ msgctxt "@action:label" -#~ msgid "Quality:" -#~ msgstr "质量:" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (3D-printing)" -#~ msgstr "精细(3D 打印)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (3D-printing)" -#~ msgstr "粗糙(3D 打印)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (SolidWorks)" -#~ msgstr "精细 (SolidWorks)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (SolidWorks)" -#~ msgstr "粗糙 (SolidWorks)" - -#~ msgctxt "@text:window" -#~ msgid "Show this dialog again" -#~ msgstr "再次显示此对话框" - -#~ msgctxt "@action:button" -#~ msgid "Continue" -#~ msgstr "继续" - -#~ msgctxt "@action:button" -#~ msgid "Abort" -#~ msgstr "中止" - -#~ msgctxt "@title:window" -#~ msgid "How to install Cura SolidWorks macro" -#~ msgstr "如何安装 Cura SolidWorks 宏" - -#~ msgctxt "@description:label" -#~ msgid "Steps:" -#~ msgstr "步骤:" - -#~ msgctxt "@action:button" -#~ msgid "" -#~ "Open the directory\n" -#~ "with macro and icon" -#~ msgstr "" -#~ "打开宏和图标\n" -#~ "所在的目录" - -#~ msgctxt "@description:label" -#~ msgid "Instructions:" -#~ msgstr "说明:" - -#~ msgctxt "@action:playpause" -#~ msgid "Play" -#~ msgstr "播放" - -#~ msgctxt "@action:playpause" -#~ msgid "Pause" -#~ msgstr "暂停" - -#~ msgctxt "@action:button" -#~ msgid "Previous Step" -#~ msgstr "上一步" - -#~ msgctxt "@action:button" -#~ msgid "Done" -#~ msgstr "完成" - -#~ msgctxt "@action:button" -#~ msgid "Next Step" -#~ msgstr "下一步" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks plugin: Configuration" -#~ msgstr "SolidWorks 插件:配置" - -#~ msgctxt "@title:tab" -#~ msgid "Conversion settings" -#~ msgstr "转换设置" - -#~ msgctxt "@label" -#~ msgid "First choice:" -#~ msgstr "首选:" - -#~ msgctxt "@text:menu" -#~ msgid "Latest installed version (Recommended)" -#~ msgstr "最新安装的版本(推荐)" - -#~ msgctxt "@text:menu" -#~ msgid "Default version" -#~ msgstr "默认版本" - -#~ msgctxt "@label" -#~ msgid "Show wizard before opening SolidWorks files" -#~ msgstr "在打开 SolidWorks 文件前显示向导" - -#~ msgctxt "@label" -#~ msgid "Automatically rotate opened file into normed orientation" -#~ msgstr "自动将打开的文件旋转到标准方向" - -#~ msgctxt "@title:tab" -#~ msgid "Installation(s)" -#~ msgstr "装置" - -#~ msgctxt "@label" -#~ msgid "COM service found" -#~ msgstr "发现 COM 服务" - -#~ msgctxt "@label" -#~ msgid "Executable found" -#~ msgstr "发现可执行文件" - -#~ msgctxt "@label" -#~ msgid "COM starting" -#~ msgstr "COM 启动" - -#~ msgctxt "@label" -#~ msgid "Revision number" -#~ msgstr "版本号" - -#~ msgctxt "@label" -#~ msgid "Functions available" -#~ msgstr "可用功能" - -#~ msgctxt "@label (%1 is object name)" -#~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?" -#~ msgstr "新的材料直径设置为 %1 mm,与当前机器不兼容。是否要继续?" - -#~ msgctxt "@action:menu" -#~ msgid "Browse plugins..." -#~ msgstr "浏览插件..." - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "P&lugins" -#~ msgstr "插件" - -#~ msgctxt "@window:title" -#~ msgid "Install Plugin" -#~ msgstr "安装插件" - -#~ msgctxt "description" -#~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)" -#~ msgstr "提供更改打印机设置(如成形空间体积、喷嘴口径等)的方法" - -#~ msgctxt "description" -#~ msgid "Manages network connections to Ultimaker 3 printers" -#~ msgstr "管理与 Ultimaker 3 打印机的网络连接" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations." -#~ msgstr "允许您使用 SolidWorks 打开某些文件。转换通过此插件和其他优化完成。" - -#~ msgctxt "name" -#~ msgid "SolidWorks Integration" -#~ msgstr "SolidWorks 集成" - -#~ msgctxt "description" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "更改后自动保存首选项、机器和配置文件。" - -#~ msgctxt "name" -#~ msgid "Auto Save" -#~ msgstr "自动保存" - -#~ msgctxt "description" -#~ msgid "Helps you to install an 'export to Cura' button in Siemens NX." -#~ msgstr "帮助您在 Siemens NX 中安装一个“导出至 Cura”按钮。" - -#~ msgctxt "name" -#~ msgid "Siemens NX Integration" -#~ msgstr "Siemens NX 集成" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new plugins." -#~ msgstr "查找、管理和安装新插件。" - -#~ msgctxt "name" -#~ msgid "Plugin Browser" -#~ msgstr "插件浏览器" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license" -#~ msgstr "询问用户一次是否同意我们的许可" - -#~ msgctxt "description" -#~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)" -#~ msgstr "为 Ultimaker 打印机提供操作选项(如平台调平向导、选择升级等)" - -#~ msgctxt "@item:inlistbox" -#~ msgid "GCode File" -#~ msgstr "GCode 文件" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer is busy or not connected." -#~ msgstr "无法启动新作业,因为打印机处于忙碌状态或未连接。" - -#~ msgctxt "@info:title" -#~ msgid "Printer Unavailable" -#~ msgstr "打印机不可用" - -#~ msgctxt "@info:status" -#~ msgid "This printer does not support USB printing because it uses UltiGCode flavor." -#~ msgstr "此打印机不支持通过 USB 打印,因为其使用 UltiGCode 类型的 G-code 文件。" - -#~ msgctxt "@info:title" -#~ msgid "USB Printing" -#~ msgstr "USB 打印" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer does not support usb printing." -#~ msgstr "无法启动新作业,因为该打印机不支持通过 USB 打印。" - -#~ msgctxt "@info" -#~ msgid "Unable to update firmware because there are no printers connected." -#~ msgstr "无法更新固件,因为没有连接打印机。" - -#~ msgctxt "@info" -#~ msgid "Could not find firmware required for the printer at %s." -#~ msgstr "在 %s 无法找到打印机所需的固件。" - -#~ msgctxt "@info:title" -#~ msgid "Printer Firmware" -#~ msgstr "打印机固件" - -#~ msgctxt "@info:title" -#~ msgid "Connection status" -#~ msgstr "连接状态" - -#~ msgctxt "@info:title" -#~ msgid "Connection Status" -#~ msgstr "连接状态" - -#~ msgctxt "@info:status" -#~ msgid "Access request was denied on the printer." -#~ msgstr "访问请求在打印机上被拒绝。" - -#~ msgctxt "@info:status" -#~ msgid "Access request failed due to a timeout." -#~ msgstr "访问请求失败(原因:超时)。" - -#~ msgctxt "@info:status" -#~ msgid "The connection with the network was lost." -#~ msgstr "网络连接中断。" - -#~ msgctxt "@info:status" -#~ msgid "The connection with the printer was lost. Check your printer to see if it is connected." -#~ msgstr "与打印机的连接中断,请检查打印机是否已连接。" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s." -#~ msgstr "打印机无法启动新的打印作业,当前的打印机状态为 %s。" - -#~ msgctxt "@info:title" -#~ msgid "Printer Status" -#~ msgstr "打印机状态" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}" -#~ msgstr "无法启动新的打印作业。插槽 {0} 中未加载打印头。" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No material loaded in slot {0}" -#~ msgstr "无法启动新的打印作业。插槽 {0} 中未加载材料。" - -#~ msgctxt "@label" -#~ msgid "Not enough material for spool {0}." -#~ msgstr "线轴 {0} 上没有足够的材料。" - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "不同的打印头(Cura: {0},打印机: 为挤出机 {2} 选择了 {1})" - -#~ msgctxt "@label" -#~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "打印头 {0} 未正确校准。 需要在打印机上执行 XY 校准。" - -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to printer. Is another job still active?" -#~ msgstr "无法向打印机发送数据。请确认是否有另一项打印任务仍在进行?" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Print aborted. Please check the printer" -#~ msgstr "打印已中止。请检查打印机" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Pausing print..." -#~ msgstr "暂停打印..." - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Resuming print..." -#~ msgstr "恢复打印..." - -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "这台打印机未设置为运行一组连接的 Ultimaker 3 打印机。" - -#~ msgctxt "Count is number of printers." -#~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers." -#~ msgstr "这台打印机是一组共 {count} 台已连接 Ultimaker 3 打印机的主机。" - -#~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate." -#~ msgstr "{printer_name} 已完成打印 '{job_name}'。 请收起打印品并确认清空打印平台。" - -#~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing." -#~ msgstr "{printer_name} 已保留用于打印 '{job_name}'。 请更改打印机配置以匹配此项作业,以便开始打印。" - -#~ msgctxt "@info:status" -#~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "无法发送新打印作业:此 3D 打印机(尚)未设置为运行一组连接的 Ultimaker 3 打印机。" - -#~ msgctxt "@info:status" -#~ msgid "Unable to send print job to group {cluster_name}." -#~ msgstr "无法发送打印作业至组 {cluster_name}。" - -#~ msgctxt "@info:status" -#~ msgid "Sent {file_name} to group {cluster_name}." -#~ msgstr "已发送 {file_name} 至组 {cluster_name}。" - -#~ msgctxt "@action:button" -#~ msgid "Show print jobs" -#~ msgstr "显示打印作业" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs interface in your browser." -#~ msgstr "在您的浏览器中打开打印作业界面。" - -#~ msgctxt "@label Printer name" -#~ msgid "Unknown" -#~ msgstr "未知" - -#~ msgctxt "@info:progress" -#~ msgid "Sending {file_name} to group {cluster_name}" -#~ msgstr "发送 {file_name} 至组 {cluster_name}" - -#~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "打开文件时,SolidWorks 报错。我们建议在 SolidWorks 内部解决这些问题。" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ " Thanks!." -#~ msgstr "" -#~ "在您的图纸中找不到模型。请再次检查图纸内容,确保里面有一个零件或组件。\n" -#~ "\n" -#~ "谢谢!" - -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "在您的图纸中找到一个以上的零件或组件。我们目前只支持里面正好有一个零件或组件的图纸。\n" -#~ "\n" -#~ "很抱歉!" - -#~ msgctxt "@item:material" -#~ msgid "No material loaded" -#~ msgstr "未加载材料" - -#~ msgctxt "@item:material" -#~ msgid "Unknown material" -#~ msgstr "未知材料" - -#~ msgctxt "@info:status Has a cancel button next to it." -#~ msgid "The selected material diameter causes the material to become incompatible with the current printer." -#~ msgstr "所选材料直径导致材料与当前打印机不兼容。" - -#~ msgctxt "@action:button" -#~ msgid "Undo" -#~ msgstr "撤销" - -#~ msgctxt "@action" -#~ msgid "Undo changing the material diameter." -#~ msgstr "撤销更改材料直径。" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} doesn't match with your current machine, could not import it." -#~ msgstr "配置文件 {0} 中定义的机器与您当前的机器不匹配,无法导入。" - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal error has occurred. 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" -#~ "

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

    \n" -#~ " " - -#~ msgctxt "@label" -#~ msgid "not yet initialised
    " -#~ msgstr "尚未初始化
    " - -#~ msgctxt "@label" -#~ msgid "Gcode flavor" -#~ msgstr "GCode 类型" - -#~ msgctxt "@label" -#~ msgid "Start Gcode" -#~ msgstr "GCode 开始部分" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very start." -#~ msgstr "将在开始时执行的 Gcode 命令。" - -#~ msgctxt "@label" -#~ msgid "End Gcode" -#~ msgstr "GCode 结束部分" - -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very end." -#~ msgstr "将在结束时执行的 Gcode 命令。" - -#~ msgctxt "@label" -#~ msgid "Extruder Start Gcode" -#~ msgstr "挤出机 Gcode 开始部分" - -#~ msgctxt "@label" -#~ msgid "Extruder End Gcode" -#~ msgstr "挤出机 Gcode 结束部分" - -#~ msgctxt "@label" -#~ msgid "Starting firmware update, this may take a while." -#~ msgstr "正在开始固件更新。可能需要花费一些时间,请耐心等待。" - -#~ msgctxt "@label" -#~ msgid "Unknown error code: %1" -#~ msgstr "未知错误代码: %1" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@label Printer status" -#~ msgid "Unknown" -#~ msgstr "未知" - -#~ msgctxt "@title:window" -#~ msgid "Find & Update plugins" -#~ msgstr "查找与更新插件" - -#~ msgctxt "@label" -#~ msgid "Here you can find a list of Third Party plugins." -#~ msgstr "您可以在这里找到第三方插件列表。" - -#~ msgctxt "@action:button" -#~ msgid "Upgrade" -#~ msgstr "升级" - -#~ msgctxt "@action:button" -#~ msgid "Download" -#~ msgstr "下载" - -#~ msgctxt "@info:tooltip" -#~ msgid "Show caution message in gcode reader." -#~ msgstr "在 G-code 读取器中显示警告信息。" - -#~ msgctxt "@option:check" -#~ msgid "Caution message in gcode reader" -#~ msgstr "G-code 读取器中的警告信息" - -#~ msgctxt "@window:title" -#~ msgid "Import Profile" -#~ msgstr "导入配置文件" - -#~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name" -#~ msgid "Printer: %1, %2: %3" -#~ msgstr "打印机:%1, %2: %3" - -#~ msgctxt "@action:label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "打印机:%1" - -#~ msgctxt "@label" -#~ msgid "GCode generator" -#~ msgstr "GCode 生成器" - -#~ msgctxt "@action:menu" -#~ msgid "Configure setting visiblity..." -#~ msgstr "配置设置可见性..." - -#~ msgctxt "@title:menuitem %1 is the automatically selected material" -#~ msgid "Automatic: %1" -#~ msgstr "自动:%1" - -#~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer" -#~ msgid "Automatic: %1" -#~ msgstr "自动:%1" - -#~ msgctxt "@info:status" -#~ msgid "No printer connected" -#~ msgstr "没有连接打印机" - -#~ msgctxt "@tooltip" -#~ msgid "The current temperature of this extruder." -#~ msgstr "该挤出机的当前温度。" - -#~ msgctxt "@action:menu" -#~ msgid "Installed plugins..." -#~ msgstr "已安装插件..." - -#~ msgctxt "@label" -#~ msgid "Support Extruder" -#~ msgstr "支撑用挤出机" - -#~ msgctxt "description" -#~ msgid "Writes GCode to a file." -#~ msgstr "将 GCode 写入至文件。" - -#~ msgctxt "name" -#~ msgid "GCode Writer" -#~ msgstr "GCode 写入器" - -#~ msgctxt "name" -#~ msgid "GCode Profile Reader" -#~ msgstr "GCode 配置文件读取器" - -#~ msgctxt "@info:status" -#~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" -#~ msgstr "打开 SolidWorks 文件时发生错误! 请检查能否在 SolidWorks 中正常打开文件而不出现任何问题!" - -#~ msgctxt "@info:status" -#~ msgid "Error while starting %s!" -#~ msgstr "启动 %s 时发生错误!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Simulation view" +#~ msgid "Simulation View" #~ msgstr "仿真视图" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences." -#~ msgstr "Cura 收集匿名切片统计资料。 您可以在偏好设置中禁用此选项。" - -#~ msgctxt "@action:button" -#~ msgid "Dismiss" -#~ msgstr "关闭此通知" - -#~ msgctxt "@menuitem" -#~ msgid "Global" -#~ msgstr "全局" - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal exception has occurred. 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" -#~ "

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

    \n" -#~ " " - -#~ msgctxt "@label Cura version" -#~ msgid "Cura version: {version}
    " -#~ msgstr "Cura 版本: {version}
    " - -#~ msgctxt "@label Platform" -#~ msgid "Platform: {platform}
    " -#~ msgstr "平台: {platform}
    " - -#~ msgctxt "@label Qt version" -#~ msgid "Qt version: {qt}
    " -#~ msgstr "Qt 版本: {qt}
    " - -#~ msgctxt "@label PyQt version" -#~ msgid "PyQt version: {pyqt}
    " -#~ msgstr "PyQt 版本: {pyqt}
    " - -#~ msgctxt "@label OpenGL" -#~ msgid "OpenGL: {opengl}
    " -#~ msgstr "OpenGL: {opengl}
    " - -#~ msgctxt "@title:groupbox" -#~ msgid "Exception traceback" -#~ msgstr "异常追溯" - -#~ msgctxt "@label" -#~ msgid "Material diameter" -#~ msgstr "材料直径" - -#~ msgctxt "@title:window" -#~ msgid "Cura SolidWorks Plugin Configuration" -#~ msgstr "Cura SolidWorks 插件配置" - -#~ msgctxt "@action:label" -#~ msgid "Default quality of the exported STL:" -#~ msgstr "导出 STL 的默认质量:" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always ask" -#~ msgstr "总是询问" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Fine quality" -#~ msgstr "总是使用精细品质" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Coarse quality" -#~ msgstr "总是使用粗糙品质" - -#~ msgctxt "@title:window" -#~ msgid "Import SolidWorks File as STL..." -#~ msgstr "导入 SolidWorks 文件为 STL..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Quality of the Exported STL" -#~ msgstr "导出 STL 的质量" - -#~ msgctxt "@action:label" -#~ msgid "Quality" -#~ msgstr "质量" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse" -#~ msgstr "粗糙" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine" -#~ msgstr "精细" - -#~ msgctxt "@" -#~ msgid "No Profile Available" -#~ msgstr "没有配置文件可用" - -#~ msgctxt "@label" -#~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders" -#~ msgstr "此设置始终对所有挤出机有效。在此进行更改将影响所有挤出机。" - -#~ msgctxt "@tooltip" -#~ msgid "Time specification
    " -#~ msgstr "时间规范
    " - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Reset camera position" -#~ msgstr "重置摄像头位置(&R)" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save project" -#~ msgstr "保存项目" - -#~ msgctxt "@title:tab" -#~ msgid "Prepare" -#~ msgstr "准备" - -#~ msgctxt "@title:tab" -#~ msgid "Monitor" -#~ msgstr "监控" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "检查兼容性" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura" -#~ msgstr "让您可以通过 SolidWorks 自身打开特定文件。 随后会将这些文件进行转换并载入 Cura" - -#~ msgctxt "@label:status" -#~ msgid "Blocked" -#~ msgstr "冻结操作" - -#~ msgctxt "@label:status" -#~ msgid "Can't start print" -#~ msgstr "不能开始打印" - -#~ msgctxt "@action:button" -#~ msgid "Open Connect.." -#~ msgstr "打开 Connect" - -#~ msgctxt "@info:title" -#~ msgid "Print Details" -#~ msgstr "打印品详细信息" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB." -#~ msgstr "为确保您的 {machine_name} 具备最新功能,建议定期更新固件。 更新可在 {machine_name} 上(连接至网络时)或通过 USB 进行。" - -#~ msgctxt "@info:title" -#~ msgid "Layer View" -#~ msgstr "分层视图" - -#~ msgctxt "@menuitem" -#~ msgid "Browse plugins" -#~ msgstr "浏览插件" - -#~ msgctxt "@info:title" -#~ msgid "Export Details" -#~ msgstr "导出详细信息" - -#~ msgctxt "@label" -#~ msgid "" -#~ "

    A fatal exception has occurred that we could not recover from!

    \n" -#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " -#~ msgstr "" -#~ "

    发生了致命错误,我们无法恢复!

    \n" -#~ "

    请在以下网址中使用下方的信息提交错误报告:http://github.com/Ultimaker/Cura/issues

    " - -#~ msgctxt "@action:button" -#~ msgid "Open Web Page" -#~ msgstr "打开网页" - -#~ msgctxt "@action:button" -#~ msgid "Ok" -#~ msgstr "确定" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "这台打印机未设置为运行一组连接的 Ultimaker 3 打印机" - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" -#~ msgstr "这台打印机是一组 %1 台已连接 Ultimaker 3 打印机的主机" - -#~ msgctxt "@label" -#~ msgid "Completed on: " -#~ msgstr "完成时间: " - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "使用默认 Web 浏览器打开打印作业页面。" - -#~ msgctxt "@label" -#~ msgid "PRINTER GROUP" -#~ msgstr "打印机组" - -#~ msgctxt "@action:warning" -#~ msgid "Loading a project will clear all models on the buildplate" -#~ msgstr "加载项目将清除打印平台上的所有模型" - -#~ msgctxt "@label" -#~ msgid "" -#~ " plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ " 插件包含一个许可。\n" -#~ "您需要接受此许可才能安装此插件。\n" -#~ "是否同意下列条款?" - -#~ msgctxt "@label" -#~ msgid "00h 00min" -#~ msgstr "00 小时 00 分" - -#~ msgctxt "@tooltip" -#~ msgid "Time information" -#~ msgstr "时间信息" - -#~ msgctxt "@description" -#~ msgid "Print time" -#~ msgstr "打印时间" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - -#~ msgctxt "@title:window" -#~ msgid "Cura" -#~ msgstr "Cura" - -#~ msgctxt "@label" -#~ msgid "Check material compatibility" -#~ msgstr "检查材料兼容性" - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection (Cluster)" -#~ msgstr "UM3 网络连接(群集)" - -#~ msgctxt "description" -#~ msgid "Provides the Layer view." -#~ msgstr "提供分层视图。" - -#~ msgctxt "name" -#~ msgid "Layer View" -#~ msgstr "分层视图" - -#~ msgctxt "@item:inlistbox" -#~ msgid "X-Ray" -#~ msgstr "透视" - -#~ msgctxt "@label" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "接受 G-Code 并通过 WiFi 将其发送到 Doodle3D WiFi-Box。" - -#~ msgctxt "@item:inmenu" -#~ msgid "Doodle3D printing" -#~ msgstr "Doodle3D 打印" - -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D" -#~ msgstr "使用 Doodle3D 打印" - -#~ msgctxt "@info:tooltip" -#~ msgid "Print with " -#~ msgstr "使用 " - -#~ msgctxt "@title:menu" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D 打印" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Enable Scan devices..." -#~ msgstr "启用扫描设备..." - -#~ msgctxt "@info:progress" -#~ msgid "Saving to Removable Drive {0}" -#~ msgstr "保存到可移动磁盘 {0} " - -#~ msgctxt "@info:status" -#~ msgid "Could not save to {0}: {1}" -#~ msgstr "无法保存到 {0}{1}" - -#~ msgctxt "@info:status" -#~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!" -#~ msgstr "请记住,您必须手动重新打开 SolidWorks 文件! 重新加载模型将无法正常工作!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Layers" -#~ msgstr "层" - -#~ msgid "Browse plugins" -#~ msgstr "浏览插件" - -#~ msgctxt "@item:inmenu" -#~ msgid "Solid" -#~ msgstr "实体" - -#~ msgctxt "@label" -#~ msgid "The file {0} already exists. Are you sure you want to overwrite it?" -#~ msgstr "文件 {0} 已存在。你确定要替换它吗?" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export profile to {0}: {1}" -#~ msgstr "无法将配置文件导出至 {0} {1} " - -#~ msgctxt "@info:status" -#~ msgid "Failed to export profile to {0}: Writer plugin reported failure." -#~ msgstr "无法将配置文件导出至 {0} :写入器插件报告故障。" - -#~ msgctxt "@info:status" -#~ msgid "Exported profile to {0}" -#~ msgstr "配置文件已导出至: {0} " - -#~ msgctxt "@info:status" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "无法从 {0} 导入配置文件: {1} " - -#~ msgctxt "@title:window" -#~ msgid "Doodle3D Settings" -#~ msgstr "Doodle3D 设置" - -#~ msgctxt "@title:window" -#~ msgid "Print to: %1" -#~ msgstr "打印至:%1" - -#~ msgctxt "@label" -#~ msgid "Extruder Temperature: %1/%2°C" -#~ msgstr "打印头温度:%1/%2 °C" - -#~ msgctxt "@label" -#~ msgid "Bed Temperature: %1/%2°C" -#~ msgstr "热床温度:%1/%2°C" - -#~ msgctxt "@label" -#~ msgid "%1" -#~ msgstr "%1" - -#~ msgctxt "@label" -#~ msgid "View Mode: Layers" -#~ msgstr "视图模式:分层" - -#~ msgctxt "@info:status" -#~ msgid "Could not import material %1: %2" -#~ msgstr "无法导入材料 %1%2" - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported material %1" -#~ msgstr "成功导入材料 %1" - -#~ msgctxt "@info:status" -#~ msgid "Failed to export material to %1: %2" -#~ msgstr "无法导出材料至 %1%2" - -#~ msgctxt "@info:status" -#~ msgid "Successfully exported material to %1" -#~ msgstr "成功导出材料至: %1" - -#~ msgctxt "@label" -#~ msgid "%1 m / ~ %2 g / ~ %4 %3" -#~ msgstr "%1 m / ~ %2 g / ~ %4 %3" - -#~ msgctxt "@label" -#~ msgid "%1 m / ~ %2 g" -#~ msgstr "%1 m / ~ %2 g" - -#~ msgctxt "@label" -#~ msgid "Hotend" -#~ msgstr "热端" - -#~ msgctxt "@action:button" -#~ msgid "View Mode" -#~ msgstr "视图模式" - -#~ msgctxt "@title:tab" -#~ msgid "Print" -#~ msgstr "打印" - -#~ msgctxt "@label" -#~ msgid "0%" -#~ msgstr "0%" - -#~ msgctxt "@label" -#~ msgid "Empty infill will leave your model hollow with low strength." -#~ msgstr "无填充将使模型处于低强度且保持空心状态。" - -#~ msgctxt "@label" -#~ msgid "20%" -#~ msgstr "20%" - -#~ msgctxt "@label" -#~ msgid "Light (20%) infill will give your model an average strength." -#~ msgstr "轻度(20%)填充将使打印模型处于中等强度。" - -#~ msgctxt "@label" -#~ msgid "50%" -#~ msgstr "50%" - -#~ msgctxt "@label" -#~ msgid "Dense (50%) infill will give your model an above average strength." -#~ msgstr "密集(50%)填充将使打印模型高于平均的强度。" - -#~ msgctxt "@label" -#~ msgid "100%" -#~ msgstr "100%" - -#~ msgctxt "@label" -#~ msgid "Solid (100%) infill will make your model completely solid." -#~ msgstr "完全(100%)填充将使您的模型处于完全实心状态。" - -#~ msgctxt "@label" -#~ msgid "Gradual" -#~ msgstr "渐层填充" - -#~ msgctxt "description" -#~ msgid "Provides support for writing X3G files" -#~ msgstr "提供对写入 X3G 文件的支持" - -#~ msgctxt "name" -#~ msgid "X3G Writer" -#~ msgstr "X3G 写入器" - -#~ msgctxt "@label" -#~ msgid "Machine Settings action" -#~ msgstr "打印机设置操作" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)" -#~ msgstr "提供更改打印机设置(如成形空间体积、喷嘴口径等)的方法" - -#~ msgctxt "@label" -#~ msgid "X-Ray View" -#~ msgstr "透视视图" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the X-Ray view." -#~ msgstr "提供透视视图。" - -#~ msgctxt "@label" -#~ msgid "X3D Reader" -#~ msgstr "X3D 读取器" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for reading X3D files." -#~ msgstr "支持读取 X3D 文件。" - -#~ msgctxt "@label" -#~ msgid "GCode Writer" -#~ msgstr "GCode 写入器" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Writes GCode to a file." -#~ msgstr "将 GCode 写入至文件。" - -#~ msgctxt "@action:button Preceded by 'Ready to'." -#~ msgid "Print with Doodle3D" -#~ msgstr "使用 Doodle3D 打印" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "显示最新版本改动。" - -#~ msgctxt "@label" -#~ msgid "Profile flatener" -#~ msgstr "配置文件合并器" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "创建一份合并质量变化配置文件。" - -#~ msgctxt "@label" -#~ msgid "USB printing" -#~ msgstr "USB 联机打印" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -#~ msgstr "接受 GCode 并将其发送到打印机。此插件还可以更新固件。" - -#~ msgctxt "X3G Writer Plugin Description" -#~ msgid "Writes X3G to a file" -#~ msgstr "将 X3G 写入文件" - -#~ msgctxt "@label" -#~ msgid "Removable Drive Output Device Plugin" -#~ msgstr "可移动磁盘输出设备插件" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides removable drive hotplugging and writing support." -#~ msgstr "提供可移动磁盘热插拔和写入文件的支持。" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Manages network connections to Ultimaker 3 printers" -#~ msgstr "管理与 Ultimaker 3 打印机的网络连接" - -#~ msgctxt "@label" -#~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "您为挤出机 {2} 选择了不同的打印头(Cura:{0},打印机:{1})" - -#~ msgctxt "@label" -#~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "打印头 {0} 未正确校准,您需要在打印机上执行 XY 校准。" - -#~ msgctxt "@label" -#~ msgid "The print cores and/or materials on your printer differ from those within your current project. For the best result, always slice for the print cores and materials that are inserted in your printer." -#~ msgstr "打印机上的打印头和/或材料与当前项目中的不同。为获得最佳打印效果,请始终使用已插入的打印头和材料配置进行切片。" - -#~ msgctxt "@label" -#~ msgid "Post Processing" -#~ msgstr "后期处理" - -#~ msgctxt "Description of plugin" -#~ msgid "Extension that allows for user created scripts for post processing" -#~ msgstr "扩展程序(允许用户创建脚本进行后期处理)" - -#~ msgctxt "@label" -#~ msgid "Auto Save" -#~ msgstr "自动保存" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "更改后自动保存首选项、机器和配置文件。" - -#~ msgctxt "@label" -#~ msgid "Slice info" -#~ msgstr "切片信息" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Submits anonymous slice info. Can be disabled through preferences." -#~ msgstr "提交匿名切片信息。此特性可在偏好设置中禁用。" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences" -#~ msgstr "Cura 将自动收集匿名的切片统计数据,您可以在偏好设置中禁用此选项。" - -#~ msgctxt "@label" -#~ msgid "Material Profiles" -#~ msgstr "材料配置文件" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides capabilities to read and write XML-based material profiles." -#~ msgstr "提供读取和写入基于 XML 的材料配置文件的功能。" - -#~ msgctxt "@label" -#~ msgid "Legacy Cura Profile Reader" -#~ msgstr "旧版 Cura 配置文件读取器" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing profiles from legacy Cura versions." -#~ msgstr "支持从 Cura 旧版本导入配置文件。" - -#~ msgctxt "@label" -#~ msgid "GCode Profile Reader" -#~ msgstr "GCode 配置读取器" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing profiles from g-code files." -#~ msgstr "提供了从 GCode 文件中导入配置文件的支持。" - -#~ msgctxt "@label" -#~ msgid "Layer View" -#~ msgstr "分层视图" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the Layer view." -#~ msgstr "提供分层视图。" - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.5 to 2.6" -#~ msgstr "版本自 2.5 升级到 2.6" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -#~ msgstr "将配置从 Cura 2.5 版本升级至 2.6 版本。" - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.1 to 2.2" -#~ msgstr "版本自 2.1 升级至 2.2" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -#~ msgstr "将配置从 Cura 2.1 版本升级至 2.2 版本。" - -#~ msgctxt "@label" -#~ msgid "Version Upgrade 2.2 to 2.4" -#~ msgstr "版本自 2.2 升级到 2.4" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -#~ msgstr "将配置从 Cura 2.2 版本升级至 2.4 版本。" - -#~ msgctxt "@label" -#~ msgid "Image Reader" -#~ msgstr "图像读取器" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Enables ability to generate printable geometry from 2D image files." -#~ msgstr "支持从 2D 图像文件生成可打印几何模型。" - -#~ msgctxt "@label" -#~ msgid "CuraEngine Backend" -#~ msgstr "CuraEngine 后端" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the link to the CuraEngine slicing backend." -#~ msgstr "提供 CuraEngine 切片后端的路径" - -#~ msgctxt "@label" -#~ msgid "Per Model Settings Tool" -#~ msgstr "单一模型设置工具" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides the Per Model Settings." -#~ msgstr "提供对每个模型的单独设置。" - -#~ msgctxt "@label" -#~ msgid "3MF Reader" -#~ msgstr "3MF 读取器" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for reading 3MF files." -#~ msgstr "提供对读取 3MF 格式文件的支持。" - -#~ msgctxt "@label" -#~ msgid "Solid View" -#~ msgstr "实体视图" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides a normal solid mesh view." -#~ msgstr "提供一个基本的实体网格视图。" - -#~ msgctxt "@label" -#~ msgid "G-code Reader" -#~ msgstr "G-code 读取器" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Allows loading and displaying G-code files." -#~ msgstr "允许加载和显示 G-code 文件。" - -#~ msgctxt "@label" -#~ msgid "Cura Profile Writer" -#~ msgstr "Cura 配置写入器" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for exporting Cura profiles." -#~ msgstr "提供了对导出 Cura 配置文件的支持。" - -#~ msgctxt "@label" -#~ msgid "3MF Writer" -#~ msgstr "3MF 写入器" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for writing 3MF files." -#~ msgstr "提供对写入 3MF 文件的支持。" - -#~ msgctxt "@label" -#~ msgid "Ultimaker machine actions" -#~ msgstr "Ultimaker 打印机操作" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)" -#~ msgstr "为 Ultimaker 打印机提供操作选项 (如平台调平向导、选择升级等)" - -#~ msgctxt "@label" -#~ msgid "Cura Profile Reader" -#~ msgstr "Cura 配置文件导出" - -#~ msgctxt "@info:whatsthis" -#~ msgid "Provides support for importing Cura profiles." -#~ msgstr "提供了对导入 Cura 配置文件的支持。" - -#~ msgctxt "@info" -#~ msgid "%(width).1f x %(depth).1f x %(height).1f mm" -#~ msgstr "%(宽).1f x %(深).1f x %(高).1f mm" - -#~ msgctxt "@label" -#~ msgid "Build Plate Shape" -#~ msgstr "打印平台形状" - -#~ msgctxt "@option:check" -#~ msgid "Machine Center is Zero" -#~ msgstr "机器中心为零点" - -#~ msgctxt "@option:check" -#~ msgid "Heated Bed" -#~ msgstr "加热床" - -#~ msgctxt "@label" -#~ msgid "GCode Flavor" -#~ msgstr "GCode 类型" - -#~ msgctxt "@label" -#~ msgid "Material Diameter" -#~ msgstr "材料直径" - -#~ msgctxt "@label" -#~ msgid "If your printer is not listed, read the network-printing troubleshooting guide" -#~ msgstr "如果您的打印机未列出,请阅读网络打印故障排除指南" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Ultimaker" -#~ msgstr "Ultimaker" - -#~ msgctxt "@label" -#~ msgid "Support library for scientific computing " -#~ msgstr "科学计算支持库" - -#~ msgctxt "@tooltip" -#~ msgid "Print Setup

    Edit or review the settings for the active print job." -#~ msgstr "打印设置

    编辑或查看活动打印作业的设置。" - -#~ msgctxt "@tooltip" -#~ msgid "Print Monitor

    Monitor the state of the connected printer and the print job in progress." -#~ msgstr "打印监视

    可以监视所连接的打印机和正在进行的打印作业的状态。" - -#~ msgctxt "@title:menuitem %1 is the value from the printer" -#~ msgid "Automatic: %1" -#~ msgstr "自动:%1" - -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3d model" -#~ msgstr "请载入一个 3D 模型" - -#~ msgctxt "@label" -#~ msgid "Print Selected Model with %1" -#~ msgid_plural "Print Selected Models With %1" -#~ msgstr[0] "用 %1 打印所选模型" diff --git a/resources/i18n/zh_CN/fdmextruder.def.json.po b/resources/i18n/zh_CN/fdmextruder.def.json.po index 8b0e51fd1a..578c2b722b 100644 --- a/resources/i18n/zh_CN/fdmextruder.def.json.po +++ b/resources/i18n/zh_CN/fdmextruder.def.json.po @@ -1,12 +1,9 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-08 09:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -15,6 +12,96 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: fdmextruder.def.json +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "附着" + +#: fdmextruder.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。" + +#: fdmextruder.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "打印平台附着" + +#: fdmextruder.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直径" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "在切离此挤出机时执行的结束 G-code。" + +#: fdmextruder.def.json +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "挤出机" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code label" +msgid "Extruder End G-Code" +msgstr "挤出机的结束 G-code" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_abs label" +msgid "Extruder End Position Absolute" +msgstr "挤出机终点绝对位置" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x label" +msgid "Extruder End Position X" +msgstr "挤出机结束位置 X 坐标" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y label" +msgid "Extruder End Position Y" +msgstr "挤出机终点位置 Y 坐标" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "挤出机 X 轴坐标" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "挤出机 Y 轴起始位置" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "挤出机初始 Z 轴位置" + +#: fdmextruder.def.json +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "挤出机打印冷却风扇" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_code label" +msgid "Extruder Start G-Code" +msgstr "挤出机的开始 G-code" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_abs label" +msgid "Extruder Start Position Absolute" +msgstr "挤出机起点绝对位置" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "挤出机起始位置 X 坐标" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "挤出机起始位置 Y 坐标" + #: fdmextruder.def.json msgctxt "machine_settings label" msgid "Machine" @@ -26,69 +113,9 @@ msgid "Machine specific settings" msgstr "机器详细设置" #: fdmextruder.def.json -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "挤出机" - -#: fdmextruder.def.json -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "用于打印的挤出机,在多挤出机情况下适用。" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "喷嘴 ID" - -#: fdmextruder.def.json -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\"。" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "喷嘴直径" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x label" -msgid "Nozzle X Offset" -msgstr "喷嘴 X 轴偏移量" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "喷嘴 X 轴坐标偏移。" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "喷嘴 Y 轴偏移量" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "喷嘴 Y 轴坐标偏移。" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code label" -msgid "Extruder Start G-Code" -msgstr "挤出机的开始 G-code" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "在切换到此挤出机时执行的开始 G-code。" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_abs label" -msgid "Extruder Start 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 "令挤出机结束位置为绝对位置,而不根据打印头的最后位置来改变。" #: fdmextruder.def.json msgctxt "machine_extruder_start_pos_abs description" @@ -96,114 +123,9 @@ msgid "Make the extruder starting position absolute rather than relative to the msgstr "令挤出机起始位置为绝对位置,而不根据打印头的最后位置来改变。" #: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "挤出机起始位置 X 坐标" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "打开挤出机时起始位置的 X 坐标。" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "挤出机起始位置 Y 坐标" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "打开挤压机时的起始位置 Y 坐标。" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code label" -msgid "Extruder End G-Code" -msgstr "挤出机的结束 G-code" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "在切离此挤出机时执行的结束 G-code。" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_abs label" -msgid "Extruder End Position Absolute" -msgstr "挤出机终点绝对位置" - -#: fdmextruder.def.json -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 "令挤出机结束位置为绝对位置,而不根据打印头的最后位置来改变。" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x label" -msgid "Extruder End Position X" -msgstr "挤出机结束位置 X 坐标" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "关闭挤出机时的终止位置的 X 坐标。" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y label" -msgid "Extruder End Position Y" -msgstr "挤出机终点位置 Y 坐标" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "关闭挤出机时的终止位置的 Y 坐标。" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "挤出机初始 Z 轴位置" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置." - -#: fdmextruder.def.json -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "挤出机打印冷却风扇" - -#: fdmextruder.def.json -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 进行更改。" - -#: fdmextruder.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "打印平台附着" - -#: fdmextruder.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "附着" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "挤出机 X 轴坐标" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 X 轴上初始位置。" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "挤出机 Y 轴起始位置" - -#: fdmextruder.def.json -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 "material description" +msgid "Material" +msgstr "材料" #: fdmextruder.def.json msgctxt "material label" @@ -211,24 +133,91 @@ msgid "Material" msgstr "材料" #: fdmextruder.def.json -msgctxt "material description" -msgid "Material" -msgstr "材料" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "喷嘴直径" #: fdmextruder.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "直径" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "喷嘴 ID" #: fdmextruder.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。" +msgctxt "machine_nozzle_offset_x label" +msgid "Nozzle X Offset" +msgstr "喷嘴 X 轴偏移量" -#~ msgctxt "machine_extruder_start_code description" -#~ msgid "Start g-code to execute whenever turning the extruder on." -#~ msgstr "打开挤出机将执行此段 G-code。" +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "喷嘴 Y 轴偏移量" -#~ msgctxt "machine_extruder_end_code description" -#~ msgid "End g-code to execute whenever turning the extruder off." -#~ msgstr "在关闭挤出机时,执行结束 G-code。" +#: fdmextruder.def.json +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "在切换到此挤出机时执行的开始 G-code。" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 X 轴上初始位置。" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置." + +#: fdmextruder.def.json +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "用于打印的挤出机,在多挤出机情况下适用。" + +#: fdmextruder.def.json +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。" + +#: fdmextruder.def.json +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\"。" + +#: fdmextruder.def.json +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 进行更改。" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "关闭挤出机时的终止位置的 X 坐标。" + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "喷嘴 X 轴坐标偏移。" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "打开挤出机时起始位置的 X 坐标。" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "关闭挤出机时的终止位置的 Y 坐标。" + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "喷嘴 Y 轴坐标偏移。" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "打开挤压机时的起始位置 Y 坐标。" diff --git a/resources/i18n/zh_CN/fdmprinter.def.json.po b/resources/i18n/zh_CN/fdmprinter.def.json.po index 7bfdc6d042..f26eb763ac 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -1,12 +1,9 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 5.1\n" +"Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-28 11:57+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -16,1497 +13,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: fdmprinter.def.json -msgctxt "machine_settings label" -msgid "Machine" -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 "与模型边缘保持的距离。 一直熨平至网格的边缘可能导致打印品出现锯齿状边缘。" #: fdmprinter.def.json -msgctxt "machine_settings description" -msgid "Machine specific settings" -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 "表示长丝在进料器和喷嘴室之间被压缩多少的系数,用于确定针对长丝开关将材料移动的距离。" #: fdmprinter.def.json -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "机器类型" - -#: fdmprinter.def.json -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "您的 3D 打印机型号的名称。" - -#: fdmprinter.def.json -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "显示打印机变体" - -#: fdmprinter.def.json -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "这台打印机是否需要显示它在不同的 JSON 文件中所描述的不同变化。" - -#: fdmprinter.def.json -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "开始 G-code" - -#: fdmprinter.def.json -msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." -msgstr "" -"在开始时执行的 G-code 命令 - 以 \n" -" 分行。" - -#: fdmprinter.def.json -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "结束 G-code" - -#: fdmprinter.def.json -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." -msgstr "" -"在结束前执行的 G-code 命令 - 以 \n" -" 分行。" - -#: fdmprinter.def.json -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "材料 GUID" - -#: fdmprinter.def.json -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "材料 GUID,此项为自动设置。" - -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "直径" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。" - -#: fdmprinter.def.json -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "等待打印平台加热" - -#: fdmprinter.def.json -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 "是否插入一条命令,等待开始时达到打印平台温度。" - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "等待喷嘴加热" - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "是否等待开始时达到喷嘴温度。" - -#: fdmprinter.def.json -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "包含材料温度" - -#: fdmprinter.def.json -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 前端将自动禁用此设置。" - -#: fdmprinter.def.json -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "包含打印平台温度" - -#: fdmprinter.def.json -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 前端将自动禁用此设置。" - -#: fdmprinter.def.json -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "机器宽度" - -#: fdmprinter.def.json -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "机器可打印区域宽度(X 坐标)" - -#: fdmprinter.def.json -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "机器深度" - -#: fdmprinter.def.json -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "机器可打印区域深度(Y 坐标)" - -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "机器高度" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "机器可打印区域高度(Z 坐标)" - -#: fdmprinter.def.json -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "打印平台形状" - -#: fdmprinter.def.json -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "打印平台形状(不考虑不可打印区域)。" - -#: fdmprinter.def.json -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "矩形" - -#: fdmprinter.def.json -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "类圆形" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "打印平台材料" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "打印平台材料已安装在打印机上。" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "玻璃" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "铝" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "有加热打印平台" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "机器是否有加热打印平台。" - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "具有构建体积温度稳定性" - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "机器是否能够稳定构建体积温度。" - -#: fdmprinter.def.json -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "始终写入活动工具" - -#: fdmprinter.def.json -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 或其他具有模态工具命令的固件进行的双挤出器打印需要此项。" - -#: fdmprinter.def.json -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "位于中心" - -#: fdmprinter.def.json -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 坐标是否位于可打印区域的中心。" - -#: fdmprinter.def.json -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "挤出机数目" - -#: fdmprinter.def.json -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "挤出机组数目。 挤出机组是指进料装置、鲍登管和喷嘴的组合。" - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "已启用的挤出机数目" - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "已启用的挤出机组数目;软件自动设置" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "喷嘴外径" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "喷嘴尖端的外径。" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "喷嘴长度" - -#: fdmprinter.def.json -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 "喷嘴尖端与打印头最低部分之间的高度差。" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "喷嘴角度" - -#: fdmprinter.def.json -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 "水平面与喷嘴尖端上部圆锥形之间的角度。" - -#: fdmprinter.def.json -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "加热区长度" - -#: fdmprinter.def.json -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 "与喷嘴尖端的距离,喷嘴产生的热量在这段距离内传递到耗材中。" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "启用喷嘴温度控制" - -#: fdmprinter.def.json -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 外部控制喷嘴温度。" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "升温速度" - -#: fdmprinter.def.json -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)。" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "冷却速度" - -#: fdmprinter.def.json -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)。" - -#: fdmprinter.def.json -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "最短时间待机温度" - -#: fdmprinter.def.json -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 "挤出机必须保持不活动以便喷嘴冷却的最短时间。 挤出机必须不使用此时间以上,才可以冷却到待机温度。" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "G-code 风格" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "需要生成的 G-code 类型。" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin(容积)" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -#: fdmprinter.def.json -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "固件收回" - -#: fdmprinter.def.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 属性来收回材料。" - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "挤出器共用加热器" - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "挤出器是否共用一个加热器,而不是每个挤出器都有自己的加热器。" - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "挤出器共用喷嘴" - -#: fdmprinter.def.json -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”参数描述每个挤出器的初始缩回状态。" - -#: fdmprinter.def.json -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "共用喷嘴初始缩回" - -#: fdmprinter.def.json -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 脚本完成后,每个挤出器的细丝从共用喷嘴头缩回多少;该值应等于或大于喷嘴导管公共部分的长度。" - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "不允许区域" - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "包含不允许打印头进入区域的多边形列表。" - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "喷嘴不允许区域" - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "包含不允许喷嘴进入区域的多边形列表。" - -#: fdmprinter.def.json -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "机器头和风扇多边形" - -#: fdmprinter.def.json -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 "打印头的形状。这些是相对于打印头位置的坐标,打印头通常是其第一个挤出器的位置。打印头左侧和前方的尺寸必须采用负坐标。" - -#: fdmprinter.def.json -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "十字轴高度" - -#: fdmprinter.def.json -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 轴)之间的高度差。" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "喷嘴 ID" - -#: fdmprinter.def.json -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\"。" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "喷嘴直径" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。" - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "挤出机偏移量" - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "将挤出器偏移量应用到坐标轴系统。影响所有挤出器。" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "挤出机初始 Z 轴位置" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "绝对挤出机主要位置" - -#: fdmprinter.def.json -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 "使挤出机主要位置为绝对值,而不是与上一已知打印头位置的相对值。" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "X 轴最大速度" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "X 轴方向电机的最大速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Y 轴最大速度" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Y 轴方向电机的最大速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Z 轴最大速度" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Z 轴方向电机的最大速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "E 轴最大速度" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "耗材的最大速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "X 轴最大加速度" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "X 轴方向电机的最大加速度" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "轴最大加速度" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Y 轴方向电机的最大加速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Z 轴最大加速度" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Z 轴方向电机的最大加速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "挤出电机最大加速度" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "耗材电机的最大加速度。" - -#: fdmprinter.def.json -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "默认加速度" - -#: fdmprinter.def.json -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "打印头移动的默认加速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "默认 X-Y 平面抖动速度(Jerk)" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "水平面移动的默认抖动速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "默认 Z 轴抖动速度(Jerk)" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Z 轴方向电机的默认抖动速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "默认挤出电机 Jerk" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "耗材电机的默认抖动速度。" - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "每毫米步数 (X)" - -#: fdmprinter.def.json -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 方向移动一毫米。" - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "每毫米步数 (Y)" - -#: fdmprinter.def.json -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 方向移动一毫米。" - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "每毫米步数 (Z)" - -#: fdmprinter.def.json -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 方向移动一毫米。" - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "每毫米步数 (E)" - -#: fdmprinter.def.json -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 "步进电机前进多少步将导致进料器轮绕其周长移动一毫米。" - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "正向 X 限位开关" - -#: fdmprinter.def.json -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 轴坐标)。" - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "正向 Y 限位开关" - -#: fdmprinter.def.json -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 轴坐标)。" - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "正向 Z 限位开关" - -#: fdmprinter.def.json -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 轴坐标)。" - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "最小进料速率" - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "打印头的最低移动速度。" - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "进料装置驱动轮的直径" - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "进料装置中材料驱动轮的直径。" - -#: fdmprinter.def.json -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "在 0 到 1 范围内设置风扇速度" - -#: fdmprinter.def.json -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 之间。" - -#: fdmprinter.def.json -msgctxt "resolution label" -msgid "Quality" -msgstr "质量" - -#: fdmprinter.def.json -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 "影响打印分辨率的所有设置。 这些设置会对质量(和打印时间)产生显著影响" - -#: fdmprinter.def.json -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "层高" - -#: fdmprinter.def.json -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 "每层的高度(以毫米为单位)。值越高,则打印速度越快,分辨率越低;值越低,则打印速度越慢,分辨率越高。" - -#: fdmprinter.def.json -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "起始层高" - -#: fdmprinter.def.json -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 "起始层高(以毫米为单位)。起始层越厚,与打印平台的粘着越轻松。" - -#: fdmprinter.def.json -msgctxt "line_width label" -msgid "Line Width" -msgstr "走线宽度" - -#: fdmprinter.def.json -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 "单一走线宽度。 一般而言,每条走线的宽度应与喷嘴的宽度对应。 但是,稍微降低此值可以产生更好的打印成果。" - -#: fdmprinter.def.json -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "走线宽度(壁)" - -#: fdmprinter.def.json -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "单一壁线宽度。" - -#: fdmprinter.def.json -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "走线宽度(外壁)" - -#: fdmprinter.def.json -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 "最外壁线宽度。 降低此值,可打印出更高水平的细节。" - -#: fdmprinter.def.json -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "走线宽度(内壁)" - -#: fdmprinter.def.json -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "适用于所有壁线(最外壁线除外)的单一壁线宽度。" - -#: fdmprinter.def.json -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "走线宽度(顶层 / 底层)" - -#: fdmprinter.def.json -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "单一顶层/底层走线宽度。" - -#: fdmprinter.def.json -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "走线宽度(填充)" - -#: fdmprinter.def.json -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "单一填充走线宽度。" - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "走线宽度(Skirt / Brim)" - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "单一 skirt(裙摆)或 brim(边缘)走线宽度。" - -#: fdmprinter.def.json -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "走线宽度(支撑结构)" - -#: fdmprinter.def.json -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "单一支撑结构走线宽度。" - -#: fdmprinter.def.json -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "走线宽度(支撑接触面)" - -#: fdmprinter.def.json -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "支撑顶板或底板单一走线宽度。" - -#: fdmprinter.def.json -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "支撑顶板走线宽度" - -#: fdmprinter.def.json -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "单一支撑顶板走线宽度。" - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "支撑底板走线宽度" - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "单一支撑底板走线宽度。" - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "装填塔走线宽度" - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "单一装填走线宽度。" - -#: fdmprinter.def.json -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "起始层走线宽度" - -#: fdmprinter.def.json -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "第一层走线宽度乘数。 增大此乘数可改善热床粘着。" - -#: fdmprinter.def.json -msgctxt "shell label" -msgid "Walls" -msgstr "墙" - -#: fdmprinter.def.json -msgctxt "shell description" -msgid "Shell" -msgstr "外壳" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "壁挤出机" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "用于打印壁的挤出机组。 用于多重挤出。" - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "外壁挤出机" - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "用于打印外壁的挤出机组。 用于多重挤出。" - -#: fdmprinter.def.json -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "内壁挤出机" - -#: fdmprinter.def.json -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "用于打印内壁的挤出机组。 用于多重挤出。" - -#: fdmprinter.def.json -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "壁厚" - -#: fdmprinter.def.json -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 "水平方向的壁厚度。 此值除以壁线宽度定义壁数量。" - -#: fdmprinter.def.json -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "壁走线次数" - -#: fdmprinter.def.json -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 "壁数量。 在按壁厚计算时,该值舍入为整数。" - -#: fdmprinter.def.json -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "壁过渡长度" - -#: fdmprinter.def.json -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 "当随着零件变薄而在不同数量的壁之间过渡时,会分配一定数量的间距来分割或连接壁走线。" - -#: fdmprinter.def.json -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "壁分派次数" - -#: fdmprinter.def.json -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 "从中心开始计数的壁数量,需要在这些壁上传播变化。较小的值意味着不更改外壁的宽度。" - -#: fdmprinter.def.json -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "壁过渡阈值角度" - -#: fdmprinter.def.json -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 "在奇数和偶数壁之间创建过渡时。角度大于此设置的楔形将没有过渡,并且不会在中心打印壁来填充剩余空间。减少此设置会减少这些中心壁的数量和长度,但可能会留下空隙或挤出过多。" - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "壁过渡筛选距离" - -#: fdmprinter.def.json -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 "如果要在不同数量的壁之间快速连续地来回过渡,那么根本不要过渡。如果这些过渡的距离之和小于此距离,则移除过渡。" - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "壁过渡筛选边距" - -#: fdmprinter.def.json -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 * 最小壁走线宽度 + 边距] 之间。增加此边距将减少过渡数量,从而减少挤出启动/停止次数和行程时间。但是,较大的走线宽度变化会导致挤出不足或挤出过多的问题。" - -#: fdmprinter.def.json -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "外壁擦嘴长度" - -#: fdmprinter.def.json -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 缝。" - -#: fdmprinter.def.json -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "外壁嵌入" - -#: fdmprinter.def.json -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 "应用在外壁路径上的嵌入。 如果外壁小于喷嘴,并且在内壁之后打印,则使用该偏移量来使喷嘴中的孔与内壁而不是模型外部重叠。" - -#: fdmprinter.def.json -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "优化壁打印顺序" - -#: fdmprinter.def.json -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 "优化墙壁印刷的顺序,以减少回撤的数量和旅行的距离。大多数部件会从启用这个功能中受益,但有些可能会花费更长的时间,所以请将打印时间估算与不优化进行比较。第一层在选择边缘作为构建板附着力类型时没有进行优化。" - -#: fdmprinter.def.json -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "壁顺序" - -#: fdmprinter.def.json -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." -msgstr "确定打印壁的顺序。先打印外壁有助于提高尺寸精度,因为内壁的误差不会传播到外壁。不过,在打印悬垂对象时,后打印外壁可以实现更好的堆叠。" - -#: fdmprinter.def.json -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "从内到外" - -#: fdmprinter.def.json -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "从外到内" - -#: fdmprinter.def.json -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "交替备用壁" - -#: fdmprinter.def.json -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 "每隔一层打印一个额外的壁。 通过这种方法,填充物会卡在这些额外的壁之间,从而产生更强韧的打印质量。" - -#: fdmprinter.def.json -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "最小壁走线宽度" - -#: fdmprinter.def.json -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 壁窄。允许的最大壁走线宽度是最小壁走线宽度的两倍。" - -#: fdmprinter.def.json -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "最小偶数壁走线宽度" - -#: fdmprinter.def.json -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 * 最小奇数壁走线宽度。" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold label" -msgid "Split Middle Line Threshold" -msgstr "拆分中间走线阈值" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "最小走线宽度是普通走线宽度的一个系数,超过该值的中间走线(如果有)将拆分为两根。减少此设置将使用更多、更细的走线。增加此设置可使用更少、更宽的走线。请注意,应用此设置时就像是将使用壁来填充整个形状,因此,这里的中间是指形状两个外边缘之间对象的中间,即使在打印中实际上有填充或(其他)表层。" - -#: fdmprinter.def.json -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "最小奇数壁走线宽度" - -#: fdmprinter.def.json -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 * 最小偶数壁走线宽度," - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold label" -msgid "Add Middle Line Threshold" -msgstr "添加中间走线阈值" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "最小走线宽度是普通走线宽度的一个系数,超过该值将添加中间走线(如果还没有)。减少此设置将使用更多、更细的走线。增加此设置可使用更少、更宽的走线。请注意,应用此设置时就像是将使用壁来填充整个形状,因此,这里的中间是指形状两个外边缘之间对象的中间,即使在打印中实际上有填充或(其他)表层。" - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "打印薄壁" - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "打印在水平面上比喷嘴尺寸更薄的模型部件。" - -#: fdmprinter.def.json -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "最小特征尺寸" - -#: fdmprinter.def.json -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 "薄特征的最小厚度。将不打印比此值更薄的模型特征,而比最小特征尺寸更厚的特征将加宽到最小壁走线宽度。" - -#: fdmprinter.def.json -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "最小薄壁走线宽度" - -#: fdmprinter.def.json -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 "用于替换模型薄特征(根据最小特征尺寸)的壁的宽度。如果最小壁走线宽度比特征的厚度要薄,则壁将与特征本身一样厚。" - -#: fdmprinter.def.json -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "水平扩展" - -#: fdmprinter.def.json -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 "应用到每一层所有多边形的偏移量。 正数值可以补偿过大的孔洞;负数值可以补偿过小的孔洞。" - -#: fdmprinter.def.json -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "起始层水平扩展" - -#: fdmprinter.def.json -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 "应用到第一层所有多边形的偏移量。 负数值可以补偿第一层的压扁量(被称为“象脚”)。" - -#: fdmprinter.def.json -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "孔洞水平扩展" - -#: fdmprinter.def.json -msgctxt "hole_xy_offset description" -msgid "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." -msgstr "应用到每一层中所有孔洞的偏移量。正数值可以补偿过大的孔洞,负数值可以补偿过小的孔洞。" - -#: fdmprinter.def.json -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Z 缝对齐" - -#: fdmprinter.def.json -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 "一层中每条路径的起点。 当连续多层的路径从相同点开始时,则打印物上会显示一条垂直缝隙。 如果将这些路径靠近一个用户指定的位置对齐,则缝隙最容易移除。 如果随机放置,则路径起点的不精准度将较不明显。 采用最短的路径时,打印将更为快速。" - -#: fdmprinter.def.json -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "用户指定" - -#: fdmprinter.def.json -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "最短" - -#: fdmprinter.def.json -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "随机" - -#: fdmprinter.def.json -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "最尖角" - -#: fdmprinter.def.json -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Z 缝位置" - -#: fdmprinter.def.json -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "在该位置附近开始打印层中各个部分。" - -#: fdmprinter.def.json -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "左后方" - -#: fdmprinter.def.json -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "返回" - -#: fdmprinter.def.json -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "右后方" - -#: fdmprinter.def.json -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "右侧" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "右前方" - -#: fdmprinter.def.json -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "前方" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "左前方" - -#: fdmprinter.def.json -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "左侧" - -#: fdmprinter.def.json -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z 缝 X" - -#: fdmprinter.def.json -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "位置的 X 轴坐标,在该位置附近开始打印层中各个部分。" - -#: fdmprinter.def.json -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z 缝 Y" - -#: fdmprinter.def.json -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "位置的 Y 轴坐标,在该位置附近开始打印层中各个部分。" - -#: fdmprinter.def.json -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "缝隙角偏好设置" - -#: fdmprinter.def.json -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 "控制模型轮廓上的角是否影响缝隙的位置。“无”表示各个角不影响缝隙位置。“隐藏缝隙”会使缝隙更可能出现在内侧角上。“外露缝隙”会使缝隙更可能出现在外侧角上。“隐藏或外露缝隙”会使缝隙更可能出现在内侧或外侧角上。“智能隐藏”允许缝隙出现在内侧和外侧角上,如适当,会更多地出现在内侧角上。" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "无" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "隐藏缝隙" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "外露缝隙" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "隐藏或外露缝隙" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "智能隐藏" - -#: fdmprinter.def.json -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Z 缝相对" - -#: fdmprinter.def.json -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 缝坐标为相对于各个部分中心的值。 禁用时,坐标定义打印平台上的一个绝对位置。" - -#: fdmprinter.def.json -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "顶 / 底层" - -#: fdmprinter.def.json -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "顶 / 底层" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "顶部皮肤挤出机" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "用于打印最顶部皮肤的挤出机组。 用于多重挤出。" - -#: fdmprinter.def.json -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "顶部表面皮肤层" - -#: fdmprinter.def.json -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 "最顶部皮肤层数。 通常只需一层最顶层就足以生成较高质量的顶部表面。" - -#: fdmprinter.def.json -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "顶部/底部挤出机" - -#: fdmprinter.def.json -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 "用于打印顶部和底部皮肤的挤出机组。 用于多重挤出。" - -#: fdmprinter.def.json -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "顶层 / 底层厚度" - -#: fdmprinter.def.json -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 "打印品中顶层/底层的厚度。 该值除以层高定义顶层/底层的数量。" - -#: fdmprinter.def.json -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "顶层厚度" - -#: fdmprinter.def.json -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 "打印品中顶层的厚度。 该值除以层高定义顶层的数量。" - -#: fdmprinter.def.json -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "顶部层数" - -#: fdmprinter.def.json -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 "顶层的数量。 在按顶层厚度计算时,该值舍入为整数。" - -#: fdmprinter.def.json -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "底层厚度" - -#: fdmprinter.def.json -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 "打印品中底层的厚度。 此值除以层高定义底层数量。" - -#: fdmprinter.def.json -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "底部层数" - -#: fdmprinter.def.json -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 "底层的数量。 在按底层厚度计算时,该值舍入为整数。" - -#: fdmprinter.def.json -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "初始底层数" - -#: fdmprinter.def.json -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 "从构建板向上算起的初始底层数。在按底层厚度计算时,该值四舍五入为整数。" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "顶部 / 底部走线图案" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "顶层/底层图案。" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "直线" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "同心圆" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿状" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "底层图案起始层" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "打印品底部第一层上的图案。" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "直线" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "同心圆" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "锯齿状" - -#: fdmprinter.def.json -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "连接顶部/底部多边形" - -#: fdmprinter.def.json -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 "在顶部/底部皮肤路径互相紧靠运行的地方连接它们。对于同心图案,启用此设置可大大减少空驶时间,但由于连接可在填充中途发生,此功能可能会降低顶部表面质量。" - -#: fdmprinter.def.json -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "单调顶部/底部顺序" - -#: fdmprinter.def.json -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 "按照一定的顺序打印顶部/底部走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" - -#: fdmprinter.def.json -msgctxt "skin_angles label" -msgid "Top/Bottom 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 度)。" #: fdmprinter.def.json msgctxt "skin_angles description" @@ -1514,379 +33,24 @@ msgid "A list of integer line directions to use when the top/bottom layers use t msgstr "当顶层/底层采用线条或锯齿状图案时使用的整数走线方向的列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(45 和 135 度)。" #: fdmprinter.def.json -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Z 间隙内无表层" +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 度。" #: fdmprinter.def.json -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 "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 度之间交替)。" #: fdmprinter.def.json -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -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 度之间交替)。" #: fdmprinter.def.json -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 "用多个同心线代替顶部/底部图案的最外面部分。 使用一条或两条线改善从填充材料开始的顶板。" - -#: fdmprinter.def.json -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "启用熨平" - -#: fdmprinter.def.json -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 "再次经过顶部表面,但这次挤出的材料非常少。这意味着将进一步熔化顶部的塑料,形成更平滑的表面。喷嘴室中的压力保持很高,确保表面折痕中也能填充材料,以保证细节。" - -#: fdmprinter.def.json -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "仅熨平最高层" - -#: fdmprinter.def.json -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 "仅在网格的最后一层执行熨平。 如果较低的层不需要平滑的表面效果,这将节省时间。" - -#: fdmprinter.def.json -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "熨平图案" - -#: fdmprinter.def.json -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "用于熨平顶部表面的图案。" - -#: fdmprinter.def.json -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "同心" - -#: fdmprinter.def.json -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿形" - -#: fdmprinter.def.json -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "单调熨平顺序" - -#: fdmprinter.def.json -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 "按照一定的顺序打印熨平走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "熨平走线间距" - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "熨平走线之间的距离。" - -#: fdmprinter.def.json -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "熨平流量" - -#: fdmprinter.def.json -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 "熨平期间相对于正常皮肤走线的挤出材料量。 保持喷嘴填充状态有助于填充顶层表面的一些缝隙,但如填充过多则会导致表面上过度挤出和光点。" - -#: fdmprinter.def.json -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "熨平嵌入" - -#: fdmprinter.def.json -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 "与模型边缘保持的距离。 一直熨平至网格的边缘可能导致打印品出现锯齿状边缘。" - -#: fdmprinter.def.json -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "熨平速度" - -#: fdmprinter.def.json -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "通过顶部表面的速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "熨平加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "执行熨平的加速度。" - -#: fdmprinter.def.json -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "熨平抖动速度" - -#: fdmprinter.def.json -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "执行熨平时的最大瞬时速度变化。" - -#: fdmprinter.def.json -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "皮肤重叠百分比" - -#: fdmprinter.def.json -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% 的百分比可能已经导致任何皮肤越过壁,因为在该点,皮肤挤出机的喷嘴位置可能已经达到越过壁中间的位置。" - -#: fdmprinter.def.json -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "皮肤重叠" - -#: fdmprinter.def.json -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 "调整壁和皮肤中心线的(端点)之间的重叠量。稍微重叠可让各个壁与皮肤牢固连接。请注意,对于相等的皮肤和壁线宽度,任何超过壁宽度一半的值可能已经导致任何皮肤越过壁,因为在该点,皮肤挤出机的喷嘴位置可能已经达到越过壁中间的位置。" - -#: fdmprinter.def.json -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "肤移除宽度" - -#: fdmprinter.def.json -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 "将被移除的皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印顶部/底部皮肤时所耗用的时间和材料。" - -#: fdmprinter.def.json -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "顶部皮肤移除宽度" - -#: fdmprinter.def.json -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 "将被移除的顶部皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印顶部皮肤时所耗用的时间和材料。" - -#: fdmprinter.def.json -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "底部皮肤移除宽度" - -#: fdmprinter.def.json -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 "将被移除的底部皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印底部皮肤时所耗用的时间和材料。" - -#: fdmprinter.def.json -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "皮肤扩展距离" - -#: fdmprinter.def.json -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 "皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让相邻层的层壁与皮肤更好地粘着。 较低的值将节省所用的材料量。" - -#: fdmprinter.def.json -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "顶部皮肤扩展距离" - -#: fdmprinter.def.json -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 "顶部皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让上方层的层壁与皮肤更好地粘着。 较低的值将节省所用的材料量。" - -#: fdmprinter.def.json -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "底部皮肤扩展距离" - -#: fdmprinter.def.json -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 "底部皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让皮肤与下面层的壁更好地粘着。 较低的值将节省所用的材料量。" - -#: fdmprinter.def.json -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "最大扩展皮肤角度" - -#: fdmprinter.def.json -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° 的角为垂直,将导致扩展所有皮肤。" - -#: fdmprinter.def.json -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "最小扩展皮肤宽度" - -#: fdmprinter.def.json -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 "如果皮肤区域宽度小于此值,则不会扩展。 这会避免扩展在模型表面的坡度接近垂直时所形成的狭窄皮肤区域。" - -#: fdmprinter.def.json -msgctxt "infill label" -msgid "Infill" -msgstr "填充" - -#: fdmprinter.def.json -msgctxt "infill description" -msgid "Infill" -msgstr "填充" - -#: fdmprinter.def.json -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "填充挤出机" - -#: fdmprinter.def.json -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "用于打印填充的挤出机组。 用于多重挤出。" - -#: fdmprinter.def.json -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "填充密度" - -#: fdmprinter.def.json -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "调整打印填充的密度。" - -#: fdmprinter.def.json -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "填充走线距离" - -#: fdmprinter.def.json -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 "打印填充走线之间的距离。 该设置是通过填充密度和填充线宽度计算。" - -#: fdmprinter.def.json -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "填充图案" - -#: fdmprinter.def.json -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 "打印的填充材料的图案。直线和锯齿形填充交替在各层上变换方向,从而降低材料成本。每层都完整地打印网格、三角形、三六边形、立方体、八角形、四分之一立方体、十字和同心图案。螺旋二十四面体、立方体、四分之一立方体和八角形填充随每层变化,以使各方向的强度分布更均衡。闪电形填充尝试通过仅支撑物体顶部,将填充程度降至最低。" - -#: fdmprinter.def.json -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "网格" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "直线" - -#: fdmprinter.def.json -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "三角形" - -#: fdmprinter.def.json -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "内六角" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "立方体" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "立方体分区" - -#: fdmprinter.def.json -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "八角形" - -#: fdmprinter.def.json -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "四面体" - -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "同心圆" - -#: fdmprinter.def.json -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿状" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "交叉" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "交叉 3D" - -#: fdmprinter.def.json -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "螺旋二十四面体" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "闪电形" - -#: fdmprinter.def.json -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "连接填充走线" - -#: fdmprinter.def.json -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 "使用沿内壁形状的走线连接填充图案与内壁相接的各端。启用此设置会使填充更好地粘着在壁上,减少填充物效果对垂直表面质量的影响。禁用此设置可减少使用的材料量。" - -#: fdmprinter.def.json -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "连接填充多边形" - -#: fdmprinter.def.json -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 "在填充路径互相紧靠运行的地方连接它们。对于包含若干闭合多边形的填充图案,启用此设置可大大减少空驶时间。" - -#: fdmprinter.def.json -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 度之间交替)。" #: fdmprinter.def.json msgctxt "infill_angles description" @@ -1894,49 +58,44 @@ msgid "A list of integer line directions to use. Elements from the list are used msgstr "要使用的整数走线方向列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(线条和锯齿形图案为 45 和 135 度,其他所有图案为 45 度)。" #: fdmprinter.def.json -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 "包含不允许喷嘴进入区域的多边形列表。" #: fdmprinter.def.json -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 "包含不允许打印头进入区域的多边形列表。" #: fdmprinter.def.json -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "填充 Y 轴偏移量" +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "一个零件完全封闭在另一个零件内部会生成与另一个零件内部相接触的边沿。这可从内孔移除此距离内的所有边沿。" #: fdmprinter.def.json -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 "绝对挤出机主要位置" #: fdmprinter.def.json -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "开始随机化填充" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "自适应图层最大变化" #: fdmprinter.def.json -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 "自适应图层地形尺寸" #: fdmprinter.def.json -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "填充走线乘数" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "自适应图层变化步长" #: fdmprinter.def.json -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 "将每个填充走线转换成这种多重走线。额外走线互相不交叉,而是互相避开。这使得填充更严格,但会增加打印时间和材料使用。" - -#: fdmprinter.def.json -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 "自适应图层根据模型形状计算图层高度。" #: fdmprinter.def.json msgctxt "infill_wall_line_count description" @@ -1948,284 +107,9 @@ msgstr "" "在适当配置的情况下,此功能可结合连接填充多边形以将所有填充物连接到单一挤出路径而无需空驶或回抽。" #: fdmprinter.def.json -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "立方体分区外壳" - -#: fdmprinter.def.json -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 "从每个立方体的中心对半径进行添加,以检查模型的边界,进而决定是否应对此立方体进行分区。 值越大则模型边界附近的小型立方体外壳越厚。" - -#: fdmprinter.def.json -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "填充重叠百分比" - -#: fdmprinter.def.json -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 "填充物和壁之间的重叠量占填充走线宽度的百分比。稍微重叠可让各个壁与填充物牢固连接。" - -#: fdmprinter.def.json -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "填充重叠" - -#: fdmprinter.def.json -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 "填充物和壁之间的重叠量。 稍微重叠可让各个壁与填充物牢固连接。" - -#: fdmprinter.def.json -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "填充物擦拭距离" - -#: fdmprinter.def.json -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 "每条填充走线后插入的空驶距离,让填充物更好地粘着到壁上。 此选项与填充重叠类似,但没有挤出,且仅位于填充走线的一端。" - -#: fdmprinter.def.json -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "填充层厚度" - -#: fdmprinter.def.json -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 "填充材料每层的厚度。 该值应始终为层高的乘数,否则应进行舍入。" - -#: fdmprinter.def.json -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "渐进填充步阶" - -#: fdmprinter.def.json -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 "在进入顶部表面以下时,将填充密度减少一半的次数。 越靠近顶面的区域密度越高,最高达到填充密度。" - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "渐进填充步阶高度" - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "在切换至密度的一半前指定密度的填充高度。" - -#: fdmprinter.def.json -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "先填充物后壁" - -#: fdmprinter.def.json -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 "打印壁前先打印填充物。 先打印壁可能产生更精确的壁,但悬垂打印质量会较差。 先打印填充会产生更牢固的壁,但有时候填充图案会透过表面显现出来。" - -#: fdmprinter.def.json -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "最小填充区域" - -#: fdmprinter.def.json -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "不要生成小于此面积的填充区域(使用皮肤取代)。" - -#: fdmprinter.def.json -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "填充支撑" - -#: fdmprinter.def.json -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 "只在模型的顶部支持打印填充结构。这样可以减少打印时间和材料的使用,但是会导致不一致的对象强度。" - -#: fdmprinter.def.json -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "填充悬垂角" - -#: fdmprinter.def.json -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将不提供任何填充。" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "皮肤边缘支撑厚度" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "支撑皮肤边缘的额外填充物的厚度。" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "皮肤边缘支撑层数" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "支撑皮肤边缘的填充物的层数。" - -#: fdmprinter.def.json -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "闪电形填充支撑角" - -#: fdmprinter.def.json -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 "决定闪电形填充层何时必须支撑其上方的任何物体。在给定的层厚度下测得的角度。" - -#: fdmprinter.def.json -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "闪电形填充悬垂角" - -#: fdmprinter.def.json -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 "决定闪电形填充层何时必须支撑其上方的模型。在给定的厚度下测得的角度。" - -#: fdmprinter.def.json -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "闪电形填充修剪角" - -#: fdmprinter.def.json -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 "为节省材料,填充线的端点将被缩短。此设置为这些线的端点形成的悬垂角度。" - -#: fdmprinter.def.json -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "闪电形填充矫直角" - -#: fdmprinter.def.json -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 "为节省打印时间,填充线将被拉直。这是整条填充线上允许的最大悬垂角度。" - -#: fdmprinter.def.json -msgctxt "material label" -msgid "Material" -msgstr "材料" - -#: fdmprinter.def.json -msgctxt "material description" -msgid "Material" -msgstr "材料" - -#: fdmprinter.def.json -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "默认打印温度" - -#: fdmprinter.def.json -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 "用于打印的默认温度。 应为材料的\"基本\"温度。 所有其他打印温度均应使用基于此值的偏移量" - -#: fdmprinter.def.json -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "打印体积温度" - -#: fdmprinter.def.json -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,将不会调整构建体积温度。" - -#: fdmprinter.def.json -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "打印温度" - -#: fdmprinter.def.json -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "用于打印的温度。" - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "打印温度起始层" - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "用于打印第一层的温度。 设为 0 即禁用对起始层的特别处理。" - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "起始打印温度" - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "加热到可以开始打印的打印温度时的最低温度。" - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "最终打印温度" - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "打印结束前开始冷却的温度。" - -#: fdmprinter.def.json -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "挤出冷却速度调节器" - -#: fdmprinter.def.json -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 "挤出时喷嘴冷却的额外速度。 使用相同的值表示挤出过程中进行加热时的加热速度损失。" - -#: fdmprinter.def.json -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "默认打印平台温度" - -#: fdmprinter.def.json -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 "用于加热打印平台的默认温度。这应该作为打印平台的“基础”温度。所有其他打印温度均应基于此值进行调整" - -#: fdmprinter.def.json -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "打印平台温度" - -#: fdmprinter.def.json -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,则保持不加热构建板。" - -#: fdmprinter.def.json -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "打印平台温度起始层" - -#: fdmprinter.def.json -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 "附着" #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" @@ -2233,1924 +117,19 @@ msgid "Adhesion Tendency" msgstr "附着倾向" #: fdmprinter.def.json -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% 的百分比可能已经导致任何皮肤越过壁,因为在该点,皮肤挤出机的喷嘴位置可能已经达到越过壁中间的位置。" #: fdmprinter.def.json -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 "调整壁和皮肤中心线的(端点)之间的重叠量。稍微重叠可让各个壁与皮肤牢固连接。请注意,对于相等的皮肤和壁线宽度,任何超过壁宽度一半的值可能已经导致任何皮肤越过壁,因为在该点,皮肤挤出机的喷嘴位置可能已经达到越过壁中间的位置。" #: fdmprinter.def.json -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "表面能。" - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "缩放因子收缩补偿" - -#: fdmprinter.def.json -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 "为了补偿材料在冷却时的收缩,将用此因子缩放模型。" - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "水平缩放因子收缩补偿" - -#: fdmprinter.def.json -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 方向(水平)上缩放模型。" - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "垂直缩放因子收缩补偿" - -#: fdmprinter.def.json -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 方向(垂直)上缩放模型。" - -#: fdmprinter.def.json -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "晶体材料" - -#: fdmprinter.def.json -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 "该材料为受热后脱落干净的类型(晶体),还是会产生长交织状聚合物链的类型(非晶体)?" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "防渗出回抽位置" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "材料在停止渗出前所需的回抽长度。" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "防渗出回抽速度" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "在耗材用于防渗出过程中材料所需的回抽速率。" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "断裂缓冲期回抽位置" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "耗材受热拉伸但不断裂的极限长度。" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "断裂缓冲期回抽速度" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "耗材在回抽过程中恰好折断的回抽速率。" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "断裂缓冲期温度" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "用于清除材料的温度,应大致等于可达到的最高打印温度。" - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "断裂回抽位置" - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "为完全脱落耗材而抽回耗材的长度。" - -#: fdmprinter.def.json -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "断裂回抽速度" - -#: fdmprinter.def.json -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "为完全脱落耗材而抽回耗材的速度。" - -#: fdmprinter.def.json -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "折断温度" - -#: fdmprinter.def.json -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "耗材在完全脱落时的温度。" - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "冲洗清除速度" - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "切换到其他材料后,装填材料的速度如何。" - -#: fdmprinter.def.json -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "冲洗清除长度" - -#: fdmprinter.def.json -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 "切换到其他材料时,需要使用多少材料从喷嘴中清除之前的材料(以长丝长度计)。" - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "耗材末端清除速度" - -#: fdmprinter.def.json -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 "将空线轴替换为使用相同材料的新线轴后,装填材料的速度如何。" - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "耗材末端清除长度" - -#: fdmprinter.def.json -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 "将空线轴替换为使用相同材料的新线轴后,需要使用多少材料从喷嘴中清除之前的材料(以长丝长度计)。" - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "最长停放持续时间" - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "材料能在干燥存储区之外安全存放多长时间。" - -#: fdmprinter.def.json -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "空载移动系数" - -#: fdmprinter.def.json -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 "表示长丝在进料器和喷嘴室之间被压缩多少的系数,用于确定针对长丝开关将材料移动的距离。" - -#: fdmprinter.def.json -msgctxt "material_flow label" -msgid "Flow" -msgstr "流量" - -#: fdmprinter.def.json -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "流量补偿:挤出的材料量乘以此值。" - -#: fdmprinter.def.json -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "壁流量" - -#: fdmprinter.def.json -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "壁走线的流量补偿。" - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "外壁流量" - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "最外壁走线的流量补偿。" - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "内壁流量" - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "适用于所有壁走线(最外壁走线除外)的流量补偿。" - -#: fdmprinter.def.json -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "顶部/底部流量" - -#: fdmprinter.def.json -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "顶部/底部走线的流量补偿。" - -#: fdmprinter.def.json -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "顶部表层流量" - -#: fdmprinter.def.json -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "打印顶部区域走线的流量补偿。" - -#: fdmprinter.def.json -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "填充流量" - -#: fdmprinter.def.json -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "填充走线的流量补偿。" - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "裙边/边缘流量" - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "裙边或边缘走线的流量补偿。" - -#: fdmprinter.def.json -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "支撑流量" - -#: fdmprinter.def.json -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "支撑结构走线的流量补偿。" - -#: fdmprinter.def.json -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "支撑接触面流量" - -#: fdmprinter.def.json -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "支撑顶板或底板走线的流量补偿。" - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "支撑顶板流量" - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "支撑顶板走线的流量补偿。" - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "支撑底板流量" - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "支撑底板走线的流量补偿。" - -#: fdmprinter.def.json -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "装填塔流量" - -#: fdmprinter.def.json -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "装填塔走线的流量补偿。" - -#: fdmprinter.def.json -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "起始层流量" - -#: fdmprinter.def.json -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 "第一层的流量补偿:起始层挤出的材料量乘以此值。" - -#: fdmprinter.def.json -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "待机温度" - -#: fdmprinter.def.json -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "当另一个喷嘴正用于打印时该喷嘴的温度。" - -#: fdmprinter.def.json -msgctxt "speed label" -msgid "Speed" -msgstr "速度" - -#: fdmprinter.def.json -msgctxt "speed description" -msgid "Speed" -msgstr "速度" - -#: fdmprinter.def.json -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "打印速度" - -#: fdmprinter.def.json -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "打印发生的速度。" - -#: fdmprinter.def.json -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "填充速度" - -#: fdmprinter.def.json -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "打印填充的速度。" - -#: fdmprinter.def.json -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "速度(壁)" - -#: fdmprinter.def.json -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "打印壁的速度。" - -#: fdmprinter.def.json -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "速度(外壁)" - -#: fdmprinter.def.json -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 "打印最外壁的速度。 以较低速度打印外壁可改善最终皮肤质量。 但是,如果内壁速度和外壁速度差距过大,则将对质量产生负面影响。" - -#: fdmprinter.def.json -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "速度(内壁)" - -#: fdmprinter.def.json -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 "打印所有内壁的速度。 以比外壁更快的速度打印内壁将减少打印时间。 将该值设为外壁速度和填充速度之间也可行。" - -#: fdmprinter.def.json -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "顶部表面皮肤速度" - -#: fdmprinter.def.json -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "打印顶部表面皮肤层的速度。" - -#: fdmprinter.def.json -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "速度(顶部 / 底部)" - -#: fdmprinter.def.json -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "打印顶部/底部层的速度。" - -#: fdmprinter.def.json -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "速度(支撑结构)" - -#: fdmprinter.def.json -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 "打印支撑结构的速度。 以更高的速度打印支撑可极大地缩短打印时间。 支撑结构的表面质量并不重要,因为在打印后会将其移除。" - -#: fdmprinter.def.json -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "速度(支撑填充)" - -#: fdmprinter.def.json -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 "打印支撑填充物的速度。 以较低的速度打印填充物可改善稳定性。" - -#: fdmprinter.def.json -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "支撑接触面速度" - -#: fdmprinter.def.json -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 "打印支撑顶板和底板的速度。 以较低的速度打印可以改善悬垂质量。" - -#: fdmprinter.def.json -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "支撑顶板速度" - -#: fdmprinter.def.json -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 "打印支撑顶板的速度。 以较低的速度打印可以改善悬垂质量。" - -#: fdmprinter.def.json -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "支撑底板速度" - -#: fdmprinter.def.json -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 "打印支撑底板的速度。 以较低的速度打印可以改善支撑在模型顶部的粘着。" - -#: fdmprinter.def.json -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "装填塔速度" - -#: fdmprinter.def.json -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 "打印装填塔的速度。 以较慢速度打印装填塔可以在不同耗材之间的粘着欠佳时使其更加稳定。" - -#: fdmprinter.def.json -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "空驶速度" - -#: fdmprinter.def.json -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "进行空驶的速度。" - -#: fdmprinter.def.json -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "起始层速度" - -#: fdmprinter.def.json -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 "起始层的速度。建议采用较低的值以便改善与构建板的粘着。不会影响构建板自身的粘着结构,如边沿和筏。" - -#: fdmprinter.def.json -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "起始层打印速度" - -#: fdmprinter.def.json -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 "打印起始层的速度。 建议采用较低的值以便改善与打印平台的粘着。" - -#: fdmprinter.def.json -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "起始层空驶速度" - -#: fdmprinter.def.json -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 "起始层中的空驶速度。 建议采用较低的值,以防止将之前打印的部分从打印平台上拉离。 该设置的值可以根据空驶速度和打印速度的比率自动计算得出。" - -#: fdmprinter.def.json -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Skirt/Brim 速度" - -#: fdmprinter.def.json -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。" - -#: fdmprinter.def.json -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Z 抬升速度" - -#: fdmprinter.def.json -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 垂直移动实现抬升的速度。一般小于打印速度,因为打印平台或打印机的十字轴较难移动。" - -#: fdmprinter.def.json -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "较慢层的数量" - -#: fdmprinter.def.json -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 "前几层的打印速度比模型的其他层慢,以便实现与打印平台的更好粘着,并改善整体的打印成功率。 该速度在这些层中会逐渐增加。" - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "流量均衡比" - -#: fdmprinter.def.json -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% 的值有助于为挤出宽线所需的更高压力提供补偿。" - -#: fdmprinter.def.json -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "启用加速度控制" - -#: fdmprinter.def.json -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 "启用调整打印头加速度。 提高加速度可以通过以打印质量为代价来缩短打印时间。" - -#: fdmprinter.def.json -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "打印加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "打印发生的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "填充加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "打印填充物的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "壁加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "打印壁的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "外壁加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "打印最外壁的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "内壁加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "打印所有内壁的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "顶部表面皮肤加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "打印顶部表面皮肤层的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "顶部/底部加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "打印顶部/底部层的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "支撑加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "打印支撑结构的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "支撑填充加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "打印支撑填充物的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "支撑接触面加速度" - -#: fdmprinter.def.json -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 "打印支撑顶板和底板的加速度。 以较低的加速度打印可以改善悬垂质量。" - -#: fdmprinter.def.json -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "支撑顶板加速度" - -#: fdmprinter.def.json -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 "打印支撑顶板的加速度。 以较低的加速度打印可以改善悬垂质量。" - -#: fdmprinter.def.json -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "支撑底板加速度" - -#: fdmprinter.def.json -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 "打印支撑底板的加速度。 以较低的加速度打印可以改善支撑在模型顶部的粘着。" - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "装填塔加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "打印装填塔的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "空驶加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "进行空驶的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "起始层加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "起始层的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "起始层打印加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "打印起始层时的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "起始层空驶加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "起始层中的空驶加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Skirt/Brim 加速度" - -#: fdmprinter.def.json -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。" - -#: fdmprinter.def.json -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "启用抖动速度控制" - -#: fdmprinter.def.json -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 轴的速度变化时调整打印头的抖动速度。 提高抖动速度可以通过以打印质量为代价来缩短打印时间。" - -#: fdmprinter.def.json -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "打印抖动速度" - -#: fdmprinter.def.json -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "打印头的最大瞬时速度变化。" - -#: fdmprinter.def.json -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "填充抖动速度" - -#: fdmprinter.def.json -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "打印填充物时的最大瞬时速度变化。" - -#: fdmprinter.def.json -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "壁抖动速度" - -#: fdmprinter.def.json -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "打印壁时的最大瞬时速度变化。" - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "外壁抖动速度" - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "打印最外壁时的最大瞬时速度变化。" - -#: fdmprinter.def.json -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "内壁抖动速度" - -#: fdmprinter.def.json -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "打印所有内壁时的最大瞬时速度变化。" - -#: fdmprinter.def.json -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "顶部表面皮肤抖动速度" - -#: fdmprinter.def.json -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "打印顶部表面皮肤层时的最大瞬时速度变化。" - -#: fdmprinter.def.json -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "顶部/底部抖动速度" - -#: fdmprinter.def.json -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "打印顶部/底部层时的最大瞬时速度变化。" - -#: fdmprinter.def.json -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "支撑抖动速度" - -#: fdmprinter.def.json -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "打印支撑结构时的最大瞬时速度变化。" - -#: fdmprinter.def.json -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "支撑填充抖动速度" - -#: fdmprinter.def.json -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "打印支撑填充物时的最大瞬时速度变化。" - -#: fdmprinter.def.json -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "支撑接触面抖动速度" - -#: fdmprinter.def.json -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "打印支撑顶板和底板的最大瞬时速度变化。" - -#: fdmprinter.def.json -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "支撑顶板抖动速度" - -#: fdmprinter.def.json -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "打印支撑顶板的最大瞬时速度变化。" - -#: fdmprinter.def.json -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "支撑底板抖动速度" - -#: fdmprinter.def.json -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "打印支撑底板时的最大瞬时速度变化。" - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "装填塔抖动速度" - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "打印装填塔时的最大瞬时速度变化。" - -#: fdmprinter.def.json -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "空驶抖动速度" - -#: fdmprinter.def.json -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "进行空驶时的最大瞬时速度变化。" - -#: fdmprinter.def.json -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "起始层抖动速度" - -#: fdmprinter.def.json -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "起始层的打印最大瞬时速度变化。" - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "起始层打印抖动速度" - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "打印起始层时的最大瞬时速度变化。" - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "起始层空驶抖动速度" - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "起始层中的空驶加速度。" - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Skirt/Brim 抖动速度" - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "打印 skirt 和 brim 时的最大瞬时速度变化。" - -#: fdmprinter.def.json -msgctxt "travel label" -msgid "Travel" -msgstr "移动" - -#: fdmprinter.def.json -msgctxt "travel description" -msgid "travel" -msgstr "空驶" - -#: fdmprinter.def.json -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "启用回抽" - -#: fdmprinter.def.json -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "当喷嘴移动到非打印区域上方时回抽耗材。" - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "层变化时回抽" - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "当喷嘴移动到下一层时回抽耗材。" - -#: fdmprinter.def.json -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "回抽距离" - -#: fdmprinter.def.json -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "回抽移动期间回抽的材料长度。" - -#: fdmprinter.def.json -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "回抽速度" - -#: fdmprinter.def.json -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "回抽移动期间耗材回抽和装填的速度。" - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "回抽速度" - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "回抽移动期间耗材回抽的速度。" - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "回抽装填速度" - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "回抽移动期间耗材装填的速度。" - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "回抽额外装填量" - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "有些材料可能会在空驶过程中渗出,可以在这里对其进行补偿。" - -#: fdmprinter.def.json -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "回抽最小空驶" - -#: fdmprinter.def.json -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 "回抽发生所需的最小空驶距离。 这有助于在较小区域内实现更少的回抽。" - -#: fdmprinter.def.json -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "最大回抽计数" - -#: fdmprinter.def.json -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 "此设置限制在最小挤出距离范围内发生的回抽数。 此范围内的额外回抽将会忽略。 这避免了在同一件耗材上重复回抽,从而导致耗材变扁并引起磨损问题。" - -#: fdmprinter.def.json -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "最小挤出距离范围" - -#: fdmprinter.def.json -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 "执行最大回抽计数的范围。 该值应与回抽距离大致相同,以便一次回抽通过同一块材料的次数得到有效限制。" - -#: fdmprinter.def.json -msgctxt "limit_support_retractions label" -msgid "Limit Support Retractions" -msgstr "支撑限制被撤销" - -#: fdmprinter.def.json -msgctxt "limit_support_retractions description" -msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -msgstr "当在各个支撑间直线移动时,省略回抽。启用这个设置可以节省打印时间,但会在支撑结构中产生过多穿线。" - -#: fdmprinter.def.json -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "梳理模式" - -#: fdmprinter.def.json -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 "梳理可在空驶时让喷嘴保持在已打印区域内。这会使空驶距离稍微延长,但可减少回抽需求。如果关闭梳理,则材料将回抽,且喷嘴沿着直线移动到下一个点。也可以避免顶部/底部皮肤区域的梳理或仅在填充物内进行梳理。" - -#: fdmprinter.def.json -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "关" - -#: fdmprinter.def.json -msgctxt "retraction_combing option all" -msgid "All" -msgstr "所有" - -#: fdmprinter.def.json -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "不在外表面上" - -#: fdmprinter.def.json -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "除了皮肤" - -#: fdmprinter.def.json -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "在填充物内" - -#: fdmprinter.def.json -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "最大梳距,无收缩" - -#: fdmprinter.def.json -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 "当大于零时,比这段距离更长的梳理空驶将会使用回抽。如果设置为零,则没有最大值,梳理空驶将不会使用回抽。" - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "在外壁前回抽" - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "在移动开始打印外壁时始终回抽。" - -#: fdmprinter.def.json -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "空驶时避开已打印部分" - -#: fdmprinter.def.json -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 "喷嘴会在空驶时避开已打印的部分。 此选项仅在启用梳理功能时可用。" - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "避免移动时支撑" - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "在空走时,喷嘴避免了已打印的支撑。只有在启用了梳理时才可以使用此选项。" - -#: fdmprinter.def.json -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "空驶避让距离" - -#: fdmprinter.def.json -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "喷嘴和已打印部分之间在空驶时避让的距离。" - -#: fdmprinter.def.json -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "层开始 X" - -#: fdmprinter.def.json -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 轴坐标,在该位置附近找到开始打印每层的部分。" - -#: fdmprinter.def.json -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "层开始 Y" - -#: fdmprinter.def.json -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 轴坐标,在该位置附近找到开始打印每层的部分。" - -#: fdmprinter.def.json -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "回抽时 Z 抬升" - -#: fdmprinter.def.json -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 "每当回抽完成时,打印平台会降低以便在喷嘴和打印品之间形成空隙。 它可以防止喷嘴在空驶过程中撞到打印品,降低将打印品从打印平台撞掉的几率。" - -#: fdmprinter.def.json -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "仅在已打印部分上 Z 抬升" - -#: fdmprinter.def.json -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 抬升。" - -#: fdmprinter.def.json -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Z 抬升高度" - -#: fdmprinter.def.json -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "执行 Z 抬升的高度差。" - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "挤出机切换后的 Z 抬升" - -#: fdmprinter.def.json -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 "当机器从一个挤出机切换到另一个时,打印平台会降低以便在喷嘴和打印品之间形成空隙。 这将防止喷嘴在打印品外部留下渗出物。" - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "挤出机切换后的 Z 抬升高度" - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "挤出机切换后执行 Z 抬升的高度差。" - -#: fdmprinter.def.json -msgctxt "cooling label" -msgid "Cooling" -msgstr "冷却" - -#: fdmprinter.def.json -msgctxt "cooling description" -msgid "Cooling" -msgstr "冷却" - -#: fdmprinter.def.json -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "开启打印冷却" - -#: fdmprinter.def.json -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 "打印时启用打印冷却风扇。 风扇可以在层时间较短和有桥接/悬垂的层上提高打印质量。" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "风扇速度" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "打印冷却风扇旋转的速度。" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "正常风扇速度" - -#: fdmprinter.def.json -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 "风扇旋转达到阈值前的速度。 当一层的打印速度超过阈值时,风扇速度逐渐朝最大风扇速度增加。" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "最大风扇速度" - -#: fdmprinter.def.json -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 "风扇在最小层时间上旋转的速度。 当达到阈值时,风扇速度在正常风扇速度和最大风扇速度之间逐渐增加。" - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "正常/最大风扇速度阈值" - -#: fdmprinter.def.json -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 "设定正常风扇速度和最大风扇速度之间阈值的层时间。 打印速度低于此时间的层使用正常风扇速度。 对于更快的层,风扇速度逐渐增加到最大风扇速度。" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "起始风扇速度" - -#: fdmprinter.def.json -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 "风扇在打印开始时旋转的速度。 在随后的层中,风扇速度逐渐增加到对应“正常风扇速度(高度)”的水平。" - -#: fdmprinter.def.json -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "正常风扇速度(高度)" - -#: fdmprinter.def.json -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 "风扇以正常速度旋转的高度。 在下方的层中,风扇速度逐渐从起始风扇速度增加到正常风扇速度。" - -#: fdmprinter.def.json -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "正常风扇速度(层)" - -#: fdmprinter.def.json -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 "风扇以正常风扇速度旋转的层。 如果设置了正常风扇速度(高度),则该值将被计算并舍入为整数。" - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "最短单层冷却时间" - -#: fdmprinter.def.json -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 "在层中花费的最少时间。 这会迫使打印机减速,以便至少在一层中消耗此处所规定的时间。 这会让已打印材料充分冷却后再打印下一层。 如果提升头被禁用,且如果不这么做会违反“最小速度“,则层所花时间可能仍会少于最小层时间。" - -#: fdmprinter.def.json -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "最小风扇速度" - -#: fdmprinter.def.json -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 "最低打印速度,排除因最短层时间而减速。 当打印机减速过多时,喷嘴中的压力将过低并导致较差的打印质量。" - -#: fdmprinter.def.json -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "打印头提升" - -#: fdmprinter.def.json -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 "当因最低层时间达到最低速度时,将打印头从打印品上提升,并等候达到最低层时间。" - -#: fdmprinter.def.json -msgctxt "support label" -msgid "Support" -msgstr "支撑" - -#: fdmprinter.def.json -msgctxt "support description" -msgid "Support" -msgstr "支撑" - -#: fdmprinter.def.json -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "生成支撑" - -#: fdmprinter.def.json -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)部分生成支撑结构。若不这样做,这些部分在打印时将倒塌。" - -#: fdmprinter.def.json -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "支撑用挤出机" - -#: fdmprinter.def.json -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "用于打印支撑的挤出机组。 用于多重挤出。" - -#: fdmprinter.def.json -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "支撑填充挤出机" - -#: fdmprinter.def.json -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 "用于打印支撑填充物的挤出机组。 用于多重挤出。" - -#: fdmprinter.def.json -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "第一层支撑挤出机" - -#: fdmprinter.def.json -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 "用于打印支撑填充物第一层的挤出机组。 用于多重挤出。" - -#: fdmprinter.def.json -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "支撑接触面挤出机" - -#: fdmprinter.def.json -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 "用于打印支撑顶板和底板的挤出机组。 用于多重挤出。" - -#: fdmprinter.def.json -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "支撑顶板挤出机" - -#: fdmprinter.def.json -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 "用于打印支撑顶板的挤出机组。 用于多重挤出。" - -#: fdmprinter.def.json -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "支撑底板挤出机" - -#: fdmprinter.def.json -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 "用于打印支撑底板的挤出机组。 用于多重挤出。" - -#: fdmprinter.def.json -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "支撑结构" - -#: fdmprinter.def.json -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 "在可用于产生支撑的方法之间进行选择。“普通”支撑在悬垂部分正下方形成一个支撑结构,并直接垂下这些区域。“树形”支撑形成一些分支,它们朝向在这些分支的尖端上支撑模型的悬垂区域,并使这些分支可缠绕在模型周围以尽可能多地从构建板上支撑它。" - -#: fdmprinter.def.json -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "正常" - -#: fdmprinter.def.json -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "树形" - -#: fdmprinter.def.json -msgctxt "support_tree_angle label" -msgid "Tree Support Branch Angle" -msgstr "树形支撑分支角度" - -#: fdmprinter.def.json -msgctxt "support_tree_angle description" -msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "分支的角度。使用较小的角度可增加垂直度和稳定性。使用较大的角度可支撑更大范围。" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance label" -msgid "Tree Support Branch Distance" -msgstr "树形支撑分支间距" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance description" -msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -msgstr "在支撑模型时,分支之间需要多大的间距。缩小这一间距会使树形支撑与模型之间有更多接触点,带来更好的悬垂,但会使支撑更难以拆除。" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter label" -msgid "Tree Support Branch Diameter" -msgstr "树形支撑分支直径" - -#: fdmprinter.def.json -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 "树形支撑最细分支的直径。较粗的分支更坚固。接近基础的分支会比这更粗。" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter_angle label" -msgid "Tree Support Branch Diameter Angle" -msgstr "树形支撑分支直径角度" - -#: fdmprinter.def.json -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 表明分支全长具有均匀的粗细度。稍微有些角度可以增加树形支撑的稳定性。" - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution label" -msgid "Tree Support Collision Resolution" -msgstr "树形支撑碰撞分辨率" - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution description" -msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -msgstr "用于计算碰撞的分辨率,目的在于避免碰撞模型。将此设置得较低将产生更准确且通常较少失败的树,但是会大幅增加切片时间。" - -#: fdmprinter.def.json -msgctxt "support_type label" -msgid "Support Placement" -msgstr "支撑放置" - -#: fdmprinter.def.json -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 "调整支撑结构的放置。 放置可以设置为支撑打印平台或全部支撑。 当设置为全部支撑时,支撑结构也将在模型上打印。" - -#: fdmprinter.def.json -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "支撑打印平台" - -#: fdmprinter.def.json -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "全部支撑" - -#: fdmprinter.def.json -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "支撑悬垂角度" - -#: fdmprinter.def.json -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° 时,不提供任何支撑。" - -#: fdmprinter.def.json -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "支撑图案" - -#: fdmprinter.def.json -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 "打印品支撑结构的图案。 提供的不同选项可实现或牢固或易于拆除的支撑。" - -#: fdmprinter.def.json -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "走线" - -#: fdmprinter.def.json -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "网格" - -#: fdmprinter.def.json -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "三角形" - -#: fdmprinter.def.json -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "同心" - -#: fdmprinter.def.json -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿形" - -#: fdmprinter.def.json -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "交叉" - -#: fdmprinter.def.json -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "螺旋二十四面体" - -#: fdmprinter.def.json -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "支撑墙行数" - -#: fdmprinter.def.json -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 "包围支撑的墙的数量。添加一堵墙可以使支持打印更加可靠,并且可以更好地支持挂起,但增加了打印时间和使用的材料。" - -#: fdmprinter.def.json -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "连接支撑线" - -#: fdmprinter.def.json -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 "将支撑线尾端连接在一起。启用此设置会让支撑更为牢固并减少挤出不足,但需要更多材料。" - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "连接支撑锯齿形" - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "连接锯齿形。 这将增加锯齿形支撑结构的强度。" - -#: fdmprinter.def.json -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "支撑密度" - -#: fdmprinter.def.json -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 "调整支撑结构的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。" - -#: fdmprinter.def.json -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "支撑走线距离" - -#: fdmprinter.def.json -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "已打印支撑结构走线之间的距离。 该设置通过支撑密度计算。" - -#: fdmprinter.def.json -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "起始层支撑走线距离" - -#: fdmprinter.def.json -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 "已打印起始层支撑结构走线之间的距离。该设置通过支撑密度计算。" - -#: fdmprinter.def.json -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "支撑填充走线方向" - -#: fdmprinter.def.json -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 度。" - -#: fdmprinter.def.json -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "启用支撑 Brim" - -#: fdmprinter.def.json -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 在支撑下方打印,而非周围。启用此设置会增强支撑与打印平台的附着。" - -#: fdmprinter.def.json -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "支撑 Brim 宽度" - -#: fdmprinter.def.json -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 可增强与打印平台的附着,但也会增加一些额外材料成本。" - -#: fdmprinter.def.json -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "支撑 Brim 走线次数" - -#: fdmprinter.def.json -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 走线可增强与打印平台的附着,但也会增加一些额外材料成本。" - -#: fdmprinter.def.json -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "支撑 Z 距离" - -#: fdmprinter.def.json -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. This value is rounded up to a multiple of the layer height." -msgstr "支撑结构顶部/底部到打印品之间的距离。 该间隙提供了在模型打印完成后移除支撑的空隙。 该值舍入为层高的倍数。" - -#: fdmprinter.def.json -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "支撑顶部距离" - -#: fdmprinter.def.json -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "从支撑顶部到打印品的距离。" - -#: fdmprinter.def.json -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "支撑底部距离" - -#: fdmprinter.def.json -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "从打印品到支撑底部的距离。" - -#: fdmprinter.def.json -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "支撑 X/Y 距离" - -#: fdmprinter.def.json -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "支撑结构在 X/Y 方向距打印品的距离。" - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "支撑距离优先级" - -#: fdmprinter.def.json -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 距离来禁用此选项。" - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y 覆盖 Z" - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z 覆盖 X/Y" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "最小支撑 X/Y 距离" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "支撑结构在 X/Y 方向距悬垂的距离。" - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "支撑梯步阶高度" - -#: fdmprinter.def.json -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 "停留在模型上的支撑阶梯状底部的步阶高度。 较低的值会使支撑更难于移除,但过高的值可能导致不稳定的支撑结构。 设为零可以关闭阶梯状行为。" - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "支撑梯步阶最大宽度" - -#: fdmprinter.def.json -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 "停留在模型上的支撑阶梯状底部的最大步阶宽度。 较低的值会使支撑更难于移除,但过高的值可能导致不稳定的支撑结构。" - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "支撑阶梯最小坡度角" - -#: fdmprinter.def.json -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 "使阶梯生效的区域最小坡度。该值较小可在较浅的坡度上更容易去除支撑,但该值过小可能会在模型的其他部分上产生某些很反常的结果。" - -#: fdmprinter.def.json -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "支撑结合部距离" - -#: fdmprinter.def.json -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 方向的最大距离。当分离结构之间的距离小于此值时,这些结构将合并为一体。" - -#: fdmprinter.def.json -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "支撑水平扩展" - -#: fdmprinter.def.json -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 "应用到每一层所有支撑多边形的偏移量。 正值可以让支撑区域更平滑,并产生更为牢固的支撑。" - -#: fdmprinter.def.json -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "支撑填充层厚度" - -#: fdmprinter.def.json -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 "支撑填充材料每层的厚度。 该值应始终为层高的乘数,否则应进行舍入。" - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "渐进支撑填充步阶" - -#: fdmprinter.def.json -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 "在进入顶层以下时,将支撑填充密度减少一半的次数。 越靠近顶面的区域密度越高,最高达到支撑填充密度。" - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "渐进支撑填充步阶高度" - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "在切换至密度的一半前指定密度的支撑填充高度。" - -#: fdmprinter.def.json -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "最小支撑面积" - -#: fdmprinter.def.json -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 "支撑多边形的最小面积。将不会生成面积小于此值的多边形。" - -#: fdmprinter.def.json -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "启用支撑接触面" - -#: fdmprinter.def.json -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 "在模型和支撑之间生成一个密集的接触面。 这会在打印模型所在的支撑顶部和模型停放的支撑底部创建一个皮肤。" - -#: fdmprinter.def.json -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "启用支撑顶板" - -#: fdmprinter.def.json -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 "在支撑顶部和模型之间生成一个密集的材料板。 这会在模型和支撑之间形成一个皮肤。" - -#: fdmprinter.def.json -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "启用支撑底板" - -#: fdmprinter.def.json -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 "在支撑底部和模型之间生成一个密集的材料板。 这会在模型和支撑之间形成一个皮肤。" - -#: fdmprinter.def.json -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "支撑接触面厚度" - -#: fdmprinter.def.json -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 "支撑与模型在底部或顶部接触的接触面厚度。" - -#: fdmprinter.def.json -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "支撑顶板厚度" - -#: fdmprinter.def.json -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 "支撑顶板的厚度。 这会控制模型所停放的支撑顶部密集层的数量。" - -#: fdmprinter.def.json -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "支撑底板厚度" - -#: fdmprinter.def.json -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 "支撑底板的厚度。 这会控制支撑所停放的模型顶部区域所打印的密集层数量。" - -#: fdmprinter.def.json -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "支撑接触面分辨率" - -#: fdmprinter.def.json -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 "在检查支撑上方或下方是否有模型时,采用指定高度的步阶。 值越低切片速度越慢,而较高的值会导致在部分应有支撑接触面的位置打印一般的支撑。" - -#: fdmprinter.def.json -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 "调整打印填充的密度。" #: fdmprinter.def.json msgctxt "support_interface_density description" @@ -4158,898 +137,19 @@ msgid "Adjusts the density of the roofs and floors of the support structure. A h msgstr "调整支撑结构顶板和底板的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。" #: fdmprinter.def.json -msgctxt "support_roof_density label" -msgid "Support Roof 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 "调整支撑结构的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。" #: fdmprinter.def.json -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 "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。" #: fdmprinter.def.json -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "支撑顶板走线距离" - -#: fdmprinter.def.json -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 "已打印支撑顶板走线之间的距离。 该设置是通过支撑顶板密度计算,但可以单独调整。" - -#: fdmprinter.def.json -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "支撑底板密度" - -#: fdmprinter.def.json -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 "支撑结构底板的密度。 较高的值会在模型顶部产生更好的支撑粘着。" - -#: fdmprinter.def.json -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "支撑底板走线距离" - -#: fdmprinter.def.json -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 "已打印支撑底板走线之间的距离。 该设置是通过支撑底板密度计算,但可以单独调整。" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "支撑接触面图案" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "支撑与模型之间接触面的打印图案。" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "走线" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "网格" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "三角形" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "同心" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿形" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "支撑顶板图案" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "打印支撑顶板的图案。" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "直线" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "网格" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "三角形" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "同心圆" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿状" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "支撑底板图案" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "打印支撑底板的图案。" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "走线" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "网格" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "三角形" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "同心" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿形" - -#: fdmprinter.def.json -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "最小支撑接触面面积" - -#: fdmprinter.def.json -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 "支撑接触面多边形的最小面积。面积小于此值的多边形将打印为一般支撑。" - -#: fdmprinter.def.json -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "最小支撑顶板面积" - -#: fdmprinter.def.json -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 "支撑顶板的最小面积。面积小于此值的多边形将打印为一般支撑。" - -#: fdmprinter.def.json -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "最小支撑底板面积" - -#: fdmprinter.def.json -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 "支撑底板的最小面积。面积小于此值的多边形将打印为一般支撑。" - -#: fdmprinter.def.json -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "支撑接触面水平扩展" - -#: fdmprinter.def.json -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "应用到支撑接触面多边形的偏移量。" - -#: fdmprinter.def.json -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "支撑顶板水平扩展" - -#: fdmprinter.def.json -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "应用到支撑顶板的偏移量。" - -#: fdmprinter.def.json -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "支撑底板水平扩展" - -#: fdmprinter.def.json -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "应用到支撑底板的偏移量。" - -#: fdmprinter.def.json -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "支撑接触面走线方向" - -#: fdmprinter.def.json -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 度之间交替)。" - -#: fdmprinter.def.json -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "支撑顶板走线方向" - -#: fdmprinter.def.json -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 度之间交替)。" - -#: fdmprinter.def.json -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "支撑底板走线方向" - -#: fdmprinter.def.json -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 度之间交替)。" - -#: fdmprinter.def.json -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "风扇速度覆盖" - -#: fdmprinter.def.json -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "启用时,会为支撑正上方的表面区域更改打印冷却风扇速度。" - -#: fdmprinter.def.json -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "支撑的表面风扇速度" - -#: fdmprinter.def.json -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 "打印支撑正上方表面区域时使用的风扇百分比速度。使用高风扇速度可能使支撑更容易移除。" - -#: fdmprinter.def.json -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "使用塔" - -#: fdmprinter.def.json -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 "使用专门的塔来支撑较小的悬垂区域。 这些塔的直径比它们所支撑的区域要大。 在靠近悬垂物时,塔的直径减小,形成顶板。" - -#: fdmprinter.def.json -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "塔直径" - -#: fdmprinter.def.json -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "特殊塔的直径。" - -#: fdmprinter.def.json -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "最大塔支撑直径" - -#: fdmprinter.def.json -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 轴方向的最大直径。" - -#: fdmprinter.def.json -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "塔顶板角度" - -#: fdmprinter.def.json -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 "塔顶角度。 该值越高,塔顶越尖,值越低,塔顶越平。" - -#: fdmprinter.def.json -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "下拉式支撑网格" - -#: fdmprinter.def.json -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 "在支撑网格下方的所有位置进行支撑,让支撑网格中没有悬垂。" - -#: fdmprinter.def.json -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "场景具有支撑网格" - -#: fdmprinter.def.json -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "场景中存在支撑网格。此设置受 Cura 控制。" - -#: fdmprinter.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "打印平台附着" - -#: fdmprinter.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "附着" - -#: fdmprinter.def.json -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "启用装填光点" - -#: fdmprinter.def.json -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 也可作为装填用途,这种情况下关闭此设置可以节省时间。" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "挤出机 X 轴坐标" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 X 轴上初始位置。" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "挤出机 Y 轴起始位置" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。" - -#: fdmprinter.def.json -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "打印平台附着类型" - -#: fdmprinter.def.json -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 是在模型四周打印的一条线,但并不与模型连接。" - -#: fdmprinter.def.json -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Skirt" - -#: fdmprinter.def.json -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Brim" - -#: fdmprinter.def.json -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" - -#: fdmprinter.def.json -msgctxt "adhesion_type option none" -msgid "None" -msgstr "无" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "打印平台附着挤出机" - -#: fdmprinter.def.json -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 的挤出机组。 用于多重挤出。" - -#: fdmprinter.def.json -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Skirt/Brim 挤出器" - -#: fdmprinter.def.json -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 的挤出机组。用于多重挤出。" - -#: fdmprinter.def.json -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Raft 底层挤出器" - -#: fdmprinter.def.json -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 第一层的挤出器组。用于多重挤出。" - -#: fdmprinter.def.json -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Raft 中间挤出器" - -#: fdmprinter.def.json -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 中间层的挤出器组。用于多重挤出。" - -#: fdmprinter.def.json -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Raft 顶层挤出器" - -#: fdmprinter.def.json -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 顶层的挤出器组。用于多重挤出。" - -#: fdmprinter.def.json -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Skirt 走线计数" - -#: fdmprinter.def.json -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。" - -#: fdmprinter.def.json -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Skirt 距离" - -#: fdmprinter.def.json -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 "" -"skirt 和打印第一层之间的水平距离。\n" -"这是最小距离。多个 skirt 走线将从此距离向外延伸。" - -#: fdmprinter.def.json -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Skirt/Brim 最小长度" - -#: fdmprinter.def.json -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,则将忽略此选项。" - -#: fdmprinter.def.json -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Brim 宽度" - -#: fdmprinter.def.json -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 可增强与打印平台的附着,但也会减少有效打印区域。" - -#: fdmprinter.def.json -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Brim 走线计数" - -#: fdmprinter.def.json -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 走线可增强与打印平台的附着,但也会减少有效打印区域。" - -#: fdmprinter.def.json -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "边沿距离" - -#: fdmprinter.def.json -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 "第一条边沿线与打印件第一层轮廓之间的水平距离。较小的间隙可使边沿更容易去除,同时在散热方面仍有优势。" - -#: fdmprinter.def.json -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Brim 替换支撑" - -#: fdmprinter.def.json -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 区域。" - -#: fdmprinter.def.json -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "仅在外部打印 Brim" - -#: fdmprinter.def.json -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 "仅在模型外部打印 brim。 这会减少您之后需要移除的 brim 量,而不会过度影响热床附着。" - -#: fdmprinter.def.json -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Raft 留白" - -#: fdmprinter.def.json -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,但会使用更多材料,为打印品留下的空间更少。" - -#: fdmprinter.def.json -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Raft 平滑度" - -#: fdmprinter.def.json -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 轮廓中小于此半圆形的孔。" - -#: fdmprinter.def.json -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Raft 空隙" - -#: fdmprinter.def.json -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 更容易剥离。" - -#: fdmprinter.def.json -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "起始层 Z 重叠" - -#: fdmprinter.def.json -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 "使模型的第一层和第二层在 Z 方向上重叠以补偿在空隙中损失的耗材。 第一个模型层上方的所有模型将向下移动此重叠量。" - -#: fdmprinter.def.json -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Raft 顶层" - -#: fdmprinter.def.json -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 层上方的顶层数量。 这些是模型所在的完全填充层。 第二层会产生比第一层更平滑的顶部表面。" - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Raft 顶层厚度" - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "顶部 Raft 层的层厚度。" - -#: fdmprinter.def.json -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Raft 顶线宽度" - -#: fdmprinter.def.json -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 顶部。" - -#: fdmprinter.def.json -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Raft 顶部间距" - -#: fdmprinter.def.json -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 走线之间的距离。 间距应等于走线宽度,以便打造坚固表面。" - -#: fdmprinter.def.json -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Raft 中间层" - -#: fdmprinter.def.json -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。" - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Raft 中间厚度" - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "中间 Raft 层的层厚度。" - -#: fdmprinter.def.json -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Raft 中间线宽度" - -#: fdmprinter.def.json -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 层的走线宽度。 让第二层挤出更多会导致走线粘着在打印平台上。" - -#: fdmprinter.def.json -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Raft 中间间距" - -#: fdmprinter.def.json -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 层。" - -#: fdmprinter.def.json -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Raft 基础厚度" - -#: fdmprinter.def.json -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 层的层厚度。 该层应为与打印机打印平台牢固粘着的厚层。" - -#: fdmprinter.def.json -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Raft 基础走线宽度" - -#: fdmprinter.def.json -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 层的走线宽度。 这些走线应该是粗线,以便协助打印平台附着。" - -#: fdmprinter.def.json -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Raft 基础走线间距" - -#: fdmprinter.def.json -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 从打印平台移除。" - -#: fdmprinter.def.json -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Raft 打印速度" - -#: fdmprinter.def.json -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "打印 Raft 的速度。" - -#: fdmprinter.def.json -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Raft 顶部打印速度" - -#: fdmprinter.def.json -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 层的速度。 这些层应以较慢的速度打印,以便喷嘴缓慢地整平临近的表面走线。" - -#: fdmprinter.def.json -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Raft 中间打印速度" - -#: fdmprinter.def.json -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 层的速度。 该层应以很慢的速度打印,因为喷嘴所出的材料量非常高。" - -#: fdmprinter.def.json -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Raft 基础打印速度" - -#: fdmprinter.def.json -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 层的速度。 该层应以很慢的速度打印,因为喷嘴所出的材料量非常高。" - -#: fdmprinter.def.json -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Raft 打印加速度" - -#: fdmprinter.def.json -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "打印 Raft 的加速度。" - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Raft 顶部打印加速度" - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "打印顶部 Raft 层的加速度。" - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Raft 中间打印加速度" - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "打印中间 Raft 层的加速度。" - -#: fdmprinter.def.json -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Raft 基础打印加速度" - -#: fdmprinter.def.json -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "打印基础 Raft 层的加速度。" - -#: fdmprinter.def.json -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Raft 打印抖动速度" - -#: fdmprinter.def.json -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "打印 Raft 的抖动速度。" - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Raft 顶部打印抖动速度" - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "打印顶部 Raft 层的抖动速度。" - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Raft 中间打印抖动速度" - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "打印中间 Raft 层的抖动速度。" - -#: fdmprinter.def.json -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Raft 基础打印抖动速度" - -#: fdmprinter.def.json -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "打印基础 Raft 层的抖动速度。" - -#: fdmprinter.def.json -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Raft 风扇速度" - -#: fdmprinter.def.json -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Raft 的风扇速度。" - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Raft 顶部风扇速度" - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "顶部 Raft 层的风扇速度。" - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Raft 中间风扇速度" - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "中间 Raft 层的风扇速度。" - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Raft 基础风扇速度" - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "基础 Raft 层的风扇速度。" - -#: fdmprinter.def.json -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "双重挤出" - -#: fdmprinter.def.json -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "利用多个挤出机进行打印所用的设置。" - -#: fdmprinter.def.json -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "启用装填塔" - -#: fdmprinter.def.json -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "在打印品相邻处打印一个塔,用于在每个喷嘴切换后装填材料。" - -#: fdmprinter.def.json -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "装填塔尺寸" - -#: fdmprinter.def.json -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "装填塔的宽度。" - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "装填塔最小体积" - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "为了清除足够的材料,装填塔每层的最小体积。" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "装填塔 X 位置" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "装填塔位置的 X 坐标。" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "装填塔 Y 位置" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "装填塔位置的 y 坐标。" - -#: fdmprinter.def.json -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 "调整支撑结构的放置。 放置可以设置为支撑打印平台或全部支撑。 当设置为全部支撑时,支撑结构也将在模型上打印。" #: fdmprinter.def.json msgctxt "prime_tower_wipe_enabled description" @@ -5057,244 +157,14 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "在用一个喷嘴打印装填塔后,从装填塔上的另一个喷嘴擦去渗出的材料。" #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "装填塔 Brim" +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 "当机器从一个挤出机切换到另一个时,打印平台会降低以便在喷嘴和打印品之间形成空隙。 这将防止喷嘴在打印品外部留下渗出物。" #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "装填塔可能需要 Brim 提供额外附着力,无论模型是否需要。目前不可与 'Raft' 附着类型配合使用。" - -#: fdmprinter.def.json -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "启用渗出罩" - -#: fdmprinter.def.json -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 "启用外部渗出罩。 这将在模型周围创建一个外壳,如果与第一个喷嘴处于相同的高度,则可能会擦拭第二个喷嘴。" - -#: fdmprinter.def.json -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "渗出罩角度" - -#: fdmprinter.def.json -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 度时为水平。 较小的角度会降低渗出罩失效次数,但会耗费更多材料。" - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "渗出罩距离" - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "渗出罩在 X/Y 方向距打印品的距离。" - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "喷嘴切换回抽距离" - -#: fdmprinter.def.json -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,不进行任何回抽。该值通常应与加热区的长度相同。" - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "喷嘴切换回抽速度" - -#: fdmprinter.def.json -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 "回抽耗材的速度。 较高的回抽速度效果较好,但回抽速度过高可能导致耗材磨损。" - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "喷嘴切换回抽速度" - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "喷嘴切换回抽期间耗材回抽的速度。" - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "喷嘴切换装填速度" - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "喷嘴切换回抽后耗材被推回的速度。" - -#: fdmprinter.def.json -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "喷嘴切换额外装填量" - -#: fdmprinter.def.json -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "喷嘴切换后的额外装填材料。" - -#: fdmprinter.def.json -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "网格修复" - -#: fdmprinter.def.json -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "使网格更适合 3D 打印。" - -#: fdmprinter.def.json -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "联合覆盖体积" - -#: fdmprinter.def.json -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 "忽略由网格内的重叠体积产生的内部几何,并将多个部分作为一个打印。 这可能会导致意外的内部孔洞消失。" - -#: fdmprinter.def.json -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "移除所有孔洞" - -#: fdmprinter.def.json -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 "移除每层的孔洞,仅保留外部形状。 这会忽略任何不可见的内部几何。 但是,也会忽略可从上方或下方看到的层孔洞。" - -#: fdmprinter.def.json -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "广泛缝合" - -#: fdmprinter.def.json -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 "广泛缝合尝试通过接触多边形来闭合孔洞,以此缝合网格中的开孔。 此选项可能会产生大量的处理时间。" - -#: fdmprinter.def.json -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "保留断开连接的面" - -#: fdmprinter.def.json -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 时,最后才应考虑该选项。" - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "合并网格重叠" - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "让彼此接触的网格略微重叠。 这会让它们更好地粘合在一起。" - -#: fdmprinter.def.json -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "移除网格交叉" - -#: fdmprinter.def.json -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 "移除多个网格互相重叠的区域。 如果合并的双材料模型彼此重叠,此选项可能适用。" - -#: fdmprinter.def.json -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "交替网格移除" - -#: fdmprinter.def.json -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 "切换为与每个层相交的网格相交体积,以便重叠的网格交织在一起。 关闭此设置将使其中一个网格获得重叠中的所有体积,同时将其从其他网格中移除。" - -#: fdmprinter.def.json -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "移除空白第一层" - -#: fdmprinter.def.json -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 "移除第一个打印层下方的空白层(如果存在)。如果“切片公差”设置被设为“独占”或“中间”,禁用此设置可能导致空白第一层。" - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "最大分辨率" - -#: fdmprinter.def.json -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 所需的速度,并将通过移除无法处理的网格细节提高切片速度。" - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "空走的最大分辨率" - -#: fdmprinter.def.json -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代码的速度,但是它可能导致模型的避免变得不那么准确。" - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "最大偏移量" - -#: fdmprinter.def.json -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 将减小。“最大偏移量”是“最大分辨率”的限制,因此如果两者冲突,则“最大偏移量”将始终保持有效。" - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "最大挤出面积偏移量" - -#: fdmprinter.def.json -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 将减小。" - -#: fdmprinter.def.json -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "特殊模式" - -#: fdmprinter.def.json -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "打印模型的非传统方式。" - -#: fdmprinter.def.json -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "打印序列" - -#: fdmprinter.def.json -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 "所有" #: fdmprinter.def.json msgctxt "print_sequence option all_at_once" @@ -5302,1273 +172,19 @@ msgid "All at Once" msgstr "同时打印" #: fdmprinter.def.json -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -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 "影响打印分辨率的所有设置。 这些设置会对质量(和打印时间)产生显著影响" #: fdmprinter.def.json -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "填充网格" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "交替备用壁" #: fdmprinter.def.json -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 "使用此网格修改与其重叠的其他网格的填充物。 利用此网格的区域替换其他网格的填充区域。 建议仅为此网格打印一个壁,而不打印顶部/底部皮肤。" - -#: fdmprinter.def.json -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "网格处理等级" - -#: fdmprinter.def.json -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 "在考虑多个重叠的填充网格时确定此网格的优先级。其中有多个填充网格重叠的区域将采用等级最高的网格的设置。具有较高等级的填充网格将修改具有较低等级的填充网格和普通网格的填充。" - -#: fdmprinter.def.json -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "切割网格" - -#: fdmprinter.def.json -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 "将此网格的体积限制在其他网格内。 您可以使用它来制作采用不同的设置以及完全不同的挤出机的网格打印的特定区域。" - -#: fdmprinter.def.json -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "模具" - -#: fdmprinter.def.json -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 "将模型作为模具打印,可进行铸造,以便获取与打印平台上的模型类似的模型。" - -#: fdmprinter.def.json -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "最小模具宽度" - -#: fdmprinter.def.json -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "模具外侧与模型外侧之间的最短距离。" - -#: fdmprinter.def.json -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "模具顶板高度" - -#: fdmprinter.def.json -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "用于打印模具的模型水平部分上方的高度。" - -#: fdmprinter.def.json -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "模具角度" - -#: fdmprinter.def.json -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° 将使模型的外部遵循模型的轮廓。" - -#: fdmprinter.def.json -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "支撑网格" - -#: fdmprinter.def.json -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "使用此网格指定支撑区域。 可用于生成支撑结构。" - -#: fdmprinter.def.json -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "防悬网格" - -#: fdmprinter.def.json -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 "使用此网格指定模型的任何部分不应被检测为悬垂的区域。 可用于移除不需要的支撑结构。" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "表面模式" - -#: fdmprinter.def.json -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 "将模型作为仅表面、一个空间或多个具有松散表面的空间处理。 正常打印模式仅打印封闭的空间。 “表面”打印跟踪网格表面的单个壁,没有填充物,也没有顶部/底部皮肤。 \"两者都\"将封闭空间正常打印,并将任何剩余多边形作为表面打印。" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "正常" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "表面" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "两者都" - -#: fdmprinter.def.json -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "螺旋打印外轮廓" - -#: fdmprinter.def.json -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 增量。 该功能会将一个实心模型转变为具有实体底部的单壁打印。 只有在当每一层仅包含一个部分时才应启用此功能。" - -#: fdmprinter.def.json -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "平滑螺旋轮廓" - -#: fdmprinter.def.json -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 缝于打印品上几乎不可见,但在层视图中仍然可见)。注意:平滑操作将模糊精细的表面细节。" - -#: fdmprinter.def.json -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "相对挤出" - -#: fdmprinter.def.json -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 脚本。" - -#: fdmprinter.def.json -msgctxt "experimental label" -msgid "Experimental" -msgstr "实验性" - -#: fdmprinter.def.json -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "尚未完全充实的功能。" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "切片公差" - -#: fdmprinter.def.json -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 "切片层的垂直公差。一般通过穿过每层厚度的中间截取横截面而产生该层的轮廓(中间)。此外,每层均可有一些区域,这些区域落入体积内部并遍布该层的整个厚度(排除),或层具有一些区域,这些区域落入该层内的任意位置(包含)。“包含”保留最多的细节,“排除”有利于最佳贴合,而“中间”保持最接近原始表面。" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Middle" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exclusive" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusive" - -#: fdmprinter.def.json -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "顶部表面皮肤线宽" - -#: fdmprinter.def.json -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "打印顶部区域单一走线宽度。" - -#: fdmprinter.def.json -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "顶部表面皮肤图案" - -#: fdmprinter.def.json -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "最顶层图案。" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "走线" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "同心" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿形" - -#: fdmprinter.def.json -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "单调顶部表面顺序" - -#: fdmprinter.def.json -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 "按照一定的顺序打印顶部表面走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" - -#: fdmprinter.def.json -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "顶部表面皮肤走线方向" - -#: fdmprinter.def.json -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 度)。" - -#: fdmprinter.def.json -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "填充物空驶优化" - -#: fdmprinter.def.json -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 "启用后,可优化打印填充走线的顺序,缩短空驶距离。空驶时间的缩短很大程度上取决于被切割的模型、填充图案、密度等。请注意,对于具有许多小填充区域的一些模型,分割模型的时间可能会大幅增加。" - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature label" -msgid "Auto Temperature" -msgstr "自动温度" - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature description" -msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -msgstr "根据每一层的平均流速自动更改每层的温度。" - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "流量温度图" - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "数据连接材料流量(mm3/s)到温度(摄氏度)。" - -#: fdmprinter.def.json -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "最小多边形周长" - -#: fdmprinter.def.json -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 模型。" - -#: fdmprinter.def.json -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "将支撑结构分拆成块状" - -#: fdmprinter.def.json -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 "跳过部分支撑线连接,让支撑结构更容易脱离。 此设置适用于锯齿形支撑结构填充图案。" - -#: fdmprinter.def.json -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "支撑块大小" - -#: fdmprinter.def.json -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 毫米在支撑线之间略去一个连接,让支撑结构更容易脱离。" - -#: fdmprinter.def.json -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "支撑块走线数" - -#: fdmprinter.def.json -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 个连接线跳过一个连接,让支撑结构更容易脱离。" - -#: fdmprinter.def.json -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "启用防风罩" - -#: fdmprinter.def.json -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 "这将在模型周围创建一个壁,该壁会吸住(热)空气并遮住外部气流。 对于容易卷曲的材料尤为有用。" - -#: fdmprinter.def.json -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "防风罩 X/Y 距离" - -#: fdmprinter.def.json -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "防风罩在 X/Y 方向与打印品的距离。" - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "防风罩限制" - -#: fdmprinter.def.json -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 "设置防风罩的高度。 选择在模型的完整高度或有限高度处打印防风罩。" - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "完整" - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "有限" - -#: fdmprinter.def.json -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "防风罩高度" - -#: fdmprinter.def.json -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "防风罩的高度限制。 在此高度以上不会打印任何防风罩。" - -#: fdmprinter.def.json -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "使悬垂可打印" - -#: fdmprinter.def.json -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 "更改打印模型的几何,以最大程度减少需要的支撑。 陡峭的悬垂物将变浅。 悬垂区域将下降变得更垂直。" - -#: fdmprinter.def.json -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "最大模型角度" - -#: fdmprinter.def.json -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° 时,不会以任何方式更改模型。" - -#: fdmprinter.def.json -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "最大悬垂孔面积" - -#: fdmprinter.def.json -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² 将填充模型底部的所有孔。" - -#: fdmprinter.def.json -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "启用滑行" - -#: fdmprinter.def.json -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 "滑行会用一个空驶路径替代挤出路径的最后部分。 渗出材料用于打印挤出路径的最后部分,以便减少串接。" - -#: fdmprinter.def.json -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "滑行体积" - -#: fdmprinter.def.json -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "该体积如不进行滑行则会渗出。 该值一般应接近喷嘴立方直径。" - -#: fdmprinter.def.json -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "滑行前最小体积" - -#: fdmprinter.def.json -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 "挤出路径在可以进行滑行前应拥有的最小体积。 对于较小的挤出路径,鲍登管内累积的压力较少,因此滑行空间采用线性扩展。 该值应始终大于滑行空间。" - -#: fdmprinter.def.json -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "滑行速度" - -#: fdmprinter.def.json -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% 的值,因为在滑行移动期间鲍登管中的压力会下降。" - -#: fdmprinter.def.json -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "交叉 3D 气槽大小" - -#: fdmprinter.def.json -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 图案的四向交叉处的气槽大小,高度为图案与自身接触的位置。" - -#: fdmprinter.def.json -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "交叉加密图像密度" - -#: fdmprinter.def.json -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 "在打印的填充中,亮度值决定了相应位置的最小密度的图像的文件位置。" - -#: fdmprinter.def.json -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "交叉填充密度图象" - -#: fdmprinter.def.json -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 "一个图像的文件位置,在这个图像中,亮度值决定了在支持中相应位置的最小密度。" - -#: fdmprinter.def.json -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "启用锥形支撑" - -#: fdmprinter.def.json -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "使底部的支撑区域小于悬垂处的支撑区域。" - -#: fdmprinter.def.json -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "锥形支撑角度" - -#: fdmprinter.def.json -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 度时为水平。 较小的角度会让支撑更为牢固,但需要更多材料。 负角会让支撑底座比顶部宽。" - -#: fdmprinter.def.json -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "锥形支撑最小宽度" - -#: fdmprinter.def.json -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 "锥形支撑区域底部被缩小至的最小宽度。 宽度较小可导致不稳定的支撑结构。" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "模糊皮肤" - -#: fdmprinter.def.json -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 "在打印外墙时随机抖动,使表面具有粗糙和模糊的外观。" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "仅外部模糊皮肤" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "仅抖动部件的轮廓,而不抖动部件的孔。" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "模糊皮肤厚度" - -#: fdmprinter.def.json -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 "在其中进行抖动的宽度。 建议让此值低于外壁宽度,因为内壁不会更改。" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "模糊皮肤密度" - -#: fdmprinter.def.json -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 "在一层中的每个多边形上引入的点的平均密度。 注意,多边形的原始点被舍弃,因此低密度导致分辨率降低。" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "模糊皮肤点距离" - -#: fdmprinter.def.json -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 "在每个走线部分引入的随机点之间的平均距离。 注意,多边形的原始点被舍弃,因此高平滑度导致分辨率降低。 该值必须大于模糊皮肤厚度的一半。" - -#: fdmprinter.def.json -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "流量补偿最大挤出偏移值" - -#: fdmprinter.def.json -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 "移动线材以补偿流量变化的最大距离(以毫米为单位)。" - -#: fdmprinter.def.json -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "流量补偿因子" - -#: fdmprinter.def.json -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 "为补偿流量变化而将线材移动的距离,在挤出一秒钟的情况下占线材移动距离的百分比。" - -#: fdmprinter.def.json -msgctxt "wireframe_enabled label" -msgid "Wire Printing" -msgstr "单线打印(以下简称 WP)" - -#: fdmprinter.def.json -msgctxt "wireframe_enabled description" -msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -msgstr "只打印一个具有稀疏网状结构的外表面,在“稀薄的空气中”打印。 这是通过在给定的 Z 间隔水平打印模型的轮廓来实现的,这些间隔通过上行线和下行斜线连接。" - -#: fdmprinter.def.json -msgctxt "wireframe_height label" -msgid "WP Connection Height" -msgstr "WP 连接高度" - -#: fdmprinter.def.json -msgctxt "wireframe_height description" -msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -msgstr "两个水平部分之间上行线和下行斜线的高度。 这决定网结构的整体密度。 仅应用于单线打印。" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset label" -msgid "WP Roof Inset Distance" -msgstr "WP 顶板嵌入距离" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset description" -msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -msgstr "在从顶板轮廓向内进行连接时所覆盖的距离。 仅应用于单线打印。" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed label" -msgid "WP Speed" -msgstr "WP 速度" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed description" -msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -msgstr "挤出材料时喷嘴移动的速度。 仅应用于单线打印。" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom label" -msgid "WP Bottom Printing Speed" -msgstr "WP 底部打印速度" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom description" -msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -msgstr "打印第一层的速度,该层是唯一接触打印平台的层。 仅应用于单线打印。" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up label" -msgid "WP Upward Printing Speed" -msgstr "WP 上升打印速度" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up description" -msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -msgstr "“在稀薄空气中”向上打印走线的速度。 仅应用于单线打印。" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down label" -msgid "WP Downward Printing Speed" -msgstr "WP 下降打印速度" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down description" -msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -msgstr "打印下行斜线的速度。 仅应用于单线打印。" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat label" -msgid "WP Horizontal Printing Speed" -msgstr "WP 水平打印速度" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat description" -msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -msgstr "打印模型水平轮廓的速度。 仅应用于单线打印。" - -#: fdmprinter.def.json -msgctxt "wireframe_flow label" -msgid "WP Flow" -msgstr "WP 打印流量" - -#: fdmprinter.def.json -msgctxt "wireframe_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -msgstr "流量补偿:挤出的材料量乘以此值。 仅应用于单线打印。" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection label" -msgid "WP Connection Flow" -msgstr "WP 连接流量" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection description" -msgid "Flow compensation when going up or down. Only applies to Wire Printing." -msgstr "向上或向下时的流量补偿。 仅应用于单线打印。" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat label" -msgid "WP Flat Flow" -msgstr "WP 平面流量" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat description" -msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -msgstr "打印平面走线时的流量补偿。 仅应用于单线打印。" - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay label" -msgid "WP Top Delay" -msgstr "WP 顶部延迟" - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay description" -msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -msgstr "向上移动后的延迟时间,以便上行走线硬化。 仅应用于单线打印。" - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay label" -msgid "WP Bottom Delay" -msgstr "WP 底部延迟" - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay description" -msgid "Delay time after a downward move. Only applies to Wire Printing." -msgstr "向下移动后的延迟时间。 仅应用于单线打印。" - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay label" -msgid "WP Flat Delay" -msgstr "WP 平面延迟" - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay description" -msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -msgstr "两个水平部分之间的延迟时间。 引入这样的延迟可以在连接点处与先前的层产生更好的附着,而太长的延迟会引起下垂。 仅应用于单线打印。" - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed label" -msgid "WP Ease Upward" -msgstr "WP 轻松上行" - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed description" -msgid "" -"Distance of an upward move which is extruded with half speed.\n" -"This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "" -"以半速挤出的上行移动的距离。\n" -"这会与之前的层产生更好的附着,而不会将这些层中的材料过度加热。 仅应用于单线打印。" - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump label" -msgid "WP Knot Size" -msgstr "WP 纽结大小" - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump description" -msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -msgstr "在上行走线的顶部创建一个小纽结,使连续的水平层有更好的机会与其连接。 仅应用于单线打印。" - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down label" -msgid "WP Fall Down" -msgstr "WP 倒塌" - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down description" -msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "材料在向上挤出后倒塌的距离。 将对此距离进行补偿。 仅应用于单线打印。" - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along label" -msgid "WP Drag Along" -msgstr "WP 拖行" - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along description" -msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "向上挤出材料与斜向下挤出一起拖动的距离。 将对此距离进行补偿。 仅应用于单线打印。" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy label" -msgid "WP Strategy" -msgstr "WP 使用策略" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy description" -msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -msgstr "用于确定两个连续层在每个连接点连接的策略。 回抽可让上行走线在正确的位置硬化,但可能导致耗材磨损。 可以在上行走线的尾端进行打结以便提高与其连接的几率,并让走线冷却;但这会需要较慢的打印速度。 另一种策略是补偿上行走线顶部的下垂;然而,线条不会总是如预期的那样下降。" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option compensate" -msgid "Compensate" -msgstr "补偿" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option knot" -msgid "Knot" -msgstr "纽结" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option retract" -msgid "Retract" -msgstr "回抽" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down label" -msgid "WP Straighten Downward Lines" -msgstr "WP 拉直下行走线" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down description" -msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -msgstr "水平走线部分所覆盖的斜下行走线的百分比。 这可以防止上行线最顶端点下垂。 仅应用于单线打印。" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down label" -msgid "WP Roof Fall Down" -msgstr "WP 顶板倒塌" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down description" -msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -msgstr "打印时,在“稀薄空气中”打印的水平顶板走线倒塌的距离。 将对此距离进行补偿。 仅应用于单线打印。" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along label" -msgid "WP Roof Drag Along" -msgstr "WP 顶板拖行" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along description" -msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -msgstr "向内线的端部在返回至顶板外部轮廓时被拖行的距离。 将对此距离进行补偿。 仅应用于单线打印。" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay label" -msgid "WP Roof Outer Delay" -msgstr "WP 顶板外部延迟" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay description" -msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -msgstr "在成为顶板的孔的外围花费的时间。 较长的时间可确保更好的连接。 仅应用于单线打印。" - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance label" -msgid "WP Nozzle Clearance" -msgstr "WP 喷嘴间隙" - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance description" -msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -msgstr "喷嘴和水平下行线之间的距离。 较大的间隙会让斜下行线角度较平缓,进而使第二层的上行连接较少。 仅应用于单线打印。" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "使用自适应图层" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "自适应图层根据模型形状计算图层高度。" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "自适应图层最大变化" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "最大允许高度与基层高度不同。" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "自适应图层变化步长" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "下一层与前一层的高度差。" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "自适应图层地形尺寸" - -#: fdmprinter.def.json -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 "两个相邻图层之间的目标水平距离。减小此设置的值会使要使用的图层变薄,从而使图层的边缘距离更近。" - -#: fdmprinter.def.json -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "悬垂壁角度" - -#: fdmprinter.def.json -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 时,不会将任何壁视为悬垂。受到支撑支持的悬垂也不会被视为悬垂。" - -#: fdmprinter.def.json -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "悬垂壁速度" - -#: fdmprinter.def.json -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "悬垂壁将以其正常打印速度的此百分比打印。" - -#: fdmprinter.def.json -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "启用连桥设置" - -#: fdmprinter.def.json -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "在打印连桥时,检测连桥并修改打印速度、流量和风扇设置。" - -#: fdmprinter.def.json -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "最小桥壁长度" - -#: fdmprinter.def.json -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 "将使用正常壁设置打印短于此长度且没有支撑的壁。将使用桥壁设置打印长于此长度且没有支撑的壁。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "连桥表面支撑阈值" - -#: fdmprinter.def.json -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 "如果受支撑的表面区域小于整个区域的这一百分比,则使用连桥设置打印。否则,使用正常表面设置打印。" - -#: fdmprinter.def.json -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "连桥稀疏填充物最大密度" - -#: fdmprinter.def.json -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 "填充物的最大密度被视为稀疏。稀疏填充物表面被视为不受支持,因此可被视为连桥表面。" - -#: fdmprinter.def.json -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "桥壁滑行" - -#: fdmprinter.def.json -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 "此参数用于控制挤出机在开始打印桥壁前应该滑行的距离。在开始打印连桥之前滑行,可以降低喷嘴中的压力,并保证打印出平滑的连桥。" - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "桥壁速度" - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "打印桥壁的速度。" - -#: fdmprinter.def.json -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "桥壁流量" - -#: fdmprinter.def.json -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "打印桥壁时,将挤出的材料量乘以此值。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "连桥表面速度" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "打印连桥表面区域的速度。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "连桥表面流量" - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "打印连桥表面区域时,将挤出的材料量乘以此值。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "连桥表面密度" - -#: fdmprinter.def.json -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 则会增大表面线条的缝隙。" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "连桥风扇速度" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "打印连桥表面和桥壁时使用的风扇百分比速度。" - -#: fdmprinter.def.json -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "连桥有多层" - -#: fdmprinter.def.json -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 "如果启用此选项,则使用以下设置打印净空区域上方第二层和第三层。否则,将使用正常设置打印这些层。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "连桥第二层表面速度" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "打印桥梁第二层表面时使用的打印速度。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "连桥第二层表面流量" - -#: fdmprinter.def.json -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 "打印连桥第二层表面时,将挤出的材料量乘以此值。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "连桥第二层表面密度" - -#: fdmprinter.def.json -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 则会增大表面线条的缝隙。" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "连桥第二层表面风扇速度" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "打印桥梁第二层表面时使用的风扇百分比速度。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "连桥第三层表面速度" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "打印桥梁第三层表面时使用的打印速度。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "连桥第三层表面流量" - -#: fdmprinter.def.json -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 "打印连桥第三层表面时,将挤出的材料量乘以此值。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "连桥第三层表面密度" - -#: fdmprinter.def.json -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 则会增大表面线条的缝隙。" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "连桥第三层表面风扇速度" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "打印桥梁第三层表面时使用的风扇百分比速度。" - -#: fdmprinter.def.json -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "图层切换后擦拭喷嘴" - -#: fdmprinter.def.json -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 个)。启用此设置可能会影响图层变化时的回抽。请使用“擦拭回抽”设置来控制擦拭脚本将在其中工作的图层回抽。" - -#: fdmprinter.def.json -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "擦拭之间的材料量" - -#: fdmprinter.def.json -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 "在开始下一轮喷嘴擦拭之前可挤出的最大材料量。如果此值小于层中所需的材料量,则该设置在此层中无效,即每层仅限擦拭一次。" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "启用擦拭回抽" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "当喷嘴移动到非打印区域上方时回抽耗材。" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "擦拭回抽距离" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "耗材回抽量,可避免耗材在擦拭期间渗出。" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "擦拭回抽额外装填量" - -#: fdmprinter.def.json -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 "有些材料可能会在擦拭空驶过程中渗出,可以在这里进行补偿。" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "擦拭回抽速度" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "擦拭回抽移动期间耗材回抽和装填的速度。" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "擦拭回抽期间的回抽速度" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "擦拭回抽移动期间耗材回抽的速度。" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "擦拭回抽装填速度" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "擦拭回抽移动期间耗材装填的速度。" - -#: fdmprinter.def.json -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "擦拭暂停" - -#: fdmprinter.def.json -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "在未回抽后暂停。" - -#: fdmprinter.def.json -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "擦拭 Z 抬升" - -#: fdmprinter.def.json -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 "在擦拭时,构建板会降低以在喷嘴与打印件之间形成间隙。这样可防止喷嘴在行程中撞击打印件,降低从构建板上撞掉打印件的可能性。" - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "擦拭 Z 抬升高度" - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "执行 Z 抬升的高度差。" - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "擦拭抬升速度" - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "抬升期间移动 Z 轴的速度。" - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "擦拭刷 X 轴坐标" - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "擦拭开始处的 X 轴坐标。" - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "擦拭重复计数" - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "在擦拭刷上移动喷嘴的次数。" - -#: fdmprinter.def.json -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "擦拭移动距离" - -#: fdmprinter.def.json -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "在擦拭刷上来回移动喷嘴头的距离。" - -#: fdmprinter.def.json -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "小孔最大尺寸" - -#: fdmprinter.def.json -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 "将使用微小特征速度打印直径小于此尺寸的孔和零件轮廓。" - -#: fdmprinter.def.json -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "微小特征最大长度" - -#: fdmprinter.def.json -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "将使用微小特征速度打印小于此长度的特征轮廓。" - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "微小特征速度" - -#: fdmprinter.def.json -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 "微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。" - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "微小特征初始层速度" - -#: fdmprinter.def.json -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 "交替网格移除" #: fdmprinter.def.json msgctxt "material_alternate_walls label" @@ -6581,34 +197,349 @@ msgid "Alternate wall directions every other layer and inset. Useful for materia msgstr "在每一层或嵌入上交替壁方向。这适用于会产生应力的材料,例如在金属打印中。" #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "移除 Raft 内侧角" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "铝" #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "从 Raft 上移除内侧角,这会使 Raft 变得凸出。" +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "始终写入活动工具" #: fdmprinter.def.json -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Raft 底板壁数" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "在移动开始打印外壁时始终回抽。" #: fdmprinter.def.json -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 "hole_xy_offset description" +msgid "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." +msgstr "应用到每一层中所有孔洞的偏移量。正数值可以补偿过大的孔洞,负数值可以补偿过小的孔洞。" #: fdmprinter.def.json -msgctxt "command_line_settings label" -msgid "Command Line Settings" -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 "应用到每一层所有多边形的偏移量。 正数值可以补偿过大的孔洞;负数值可以补偿过小的孔洞。" #: fdmprinter.def.json -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "未从 Cura 前端调用 CuraEngine 时使用的设置。" +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 "应用到第一层所有多边形的偏移量。 负数值可以补偿第一层的压扁量(被称为“象脚”)。" + +#: fdmprinter.def.json +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 "应用到每一层所有支撑多边形的偏移量。 正值可以让支撑区域更平滑,并产生更为牢固的支撑。" + +#: fdmprinter.def.json +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "应用到支撑底板的偏移量。" + +#: fdmprinter.def.json +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "应用到支撑顶板的偏移量。" + +#: fdmprinter.def.json +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "应用到支撑接触面多边形的偏移量。" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "耗材回抽量,可避免耗材在擦拭期间渗出。" + +#: fdmprinter.def.json +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 "从每个立方体的中心对半径进行添加,以检查模型的边界,进而决定是否应对此立方体进行分区。 值越大则模型边界附近的小型立方体外壳越厚。" + +#: fdmprinter.def.json +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "防悬网格" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "防渗出回抽位置" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "防渗出回抽速度" + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "将挤出器偏移量应用到坐标轴系统。影响所有挤出器。" + +#: fdmprinter.def.json +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 "在模型接触的位置,生成互锁梁结构。这改善了模型之间的粘合力,特别是用不同材料打印的模型。" + +#: fdmprinter.def.json +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "空驶时避开已打印部分" + +#: fdmprinter.def.json +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "避免移动时支撑" + +#: fdmprinter.def.json +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "返回" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "左后方" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "右后方" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "两者都" + +#: fdmprinter.def.json +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "底部层数" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "底层图案起始层" + +#: fdmprinter.def.json +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "底部皮肤扩展距离" + +#: fdmprinter.def.json +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "底部皮肤移除宽度" + +#: fdmprinter.def.json +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "底层厚度" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "断裂缓冲期回抽位置" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "断裂缓冲期回抽速度" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "断裂缓冲期温度" + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "断裂回抽位置" + +#: fdmprinter.def.json +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "断裂回抽速度" + +#: fdmprinter.def.json +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "折断温度" + +#: fdmprinter.def.json +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "将支撑结构分拆成块状" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "连桥风扇速度" + +#: fdmprinter.def.json +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "连桥有多层" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "连桥第二层表面密度" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "连桥第二层表面风扇速度" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "连桥第二层表面流量" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "连桥第二层表面速度" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "连桥表面密度" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "连桥表面流量" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "连桥表面速度" + +#: fdmprinter.def.json +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "连桥表面支撑阈值" + +#: fdmprinter.def.json +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "连桥稀疏填充物最大密度" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "连桥第三层表面密度" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "连桥第三层表面风扇速度" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "连桥第三层表面流量" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "连桥第三层表面速度" + +#: fdmprinter.def.json +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "桥壁滑行" + +#: fdmprinter.def.json +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "桥壁流量" + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "桥壁速度" + +#: fdmprinter.def.json +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Brim" + +#: fdmprinter.def.json +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "边沿距离" + +#: fdmprinter.def.json +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "修剪内部对象避免留白" + +#: fdmprinter.def.json +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Brim 走线计数" + +#: fdmprinter.def.json +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "仅在外部打印 Brim" + +#: fdmprinter.def.json +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Brim 替换支撑" + +#: fdmprinter.def.json +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Brim 宽度" + +#: fdmprinter.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "打印平台附着" + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "打印平台附着挤出机" + +#: fdmprinter.def.json +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "打印平台附着类型" + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "打印平台材料" + +#: fdmprinter.def.json +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "打印平台形状" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "打印平台温度" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "打印平台温度起始层" + +#: fdmprinter.def.json +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "打印体积温度" #: fdmprinter.def.json msgctxt "center_object label" @@ -6616,946 +547,6211 @@ msgid "Center Object" msgstr "中心点" #: fdmprinter.def.json -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 "更改打印模型的几何,以最大程度减少需要的支撑。 陡峭的悬垂物将变浅。 悬垂区域将下降变得更垂直。" + +#: fdmprinter.def.json +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 "在可用于产生支撑的方法之间进行选择。“普通”支撑在悬垂部分正下方形成一个支撑结构,并直接垂下这些区域。“树形”支撑形成一些分支,它们朝向在这些分支的尖端上支撑模型的悬垂区域,并使这些分支可缠绕在模型周围以尽可能多地从构建板上支撑它。" + +#: fdmprinter.def.json +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "滑行速度" + +#: fdmprinter.def.json +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "滑行体积" + +#: fdmprinter.def.json +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 "滑行会用一个空驶路径替代挤出路径的最后部分。 渗出材料用于打印挤出路径的最后部分,以便减少串接。" + +#: fdmprinter.def.json +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "梳理模式" + +#: fdmprinter.def.json +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 "梳理可在空驶时让喷嘴保持在已打印区域内。这会使空驶距离稍微延长,但可减少回抽需求。如果关闭梳理,则材料将回抽,且喷嘴沿着直线移动到下一个点。也可以避免顶部/底部皮肤区域的梳理或仅在填充物内进行梳理。" + +#: fdmprinter.def.json +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "命令行设置" + +#: fdmprinter.def.json +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "同心圆" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "同心" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "同心" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "同心" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "同心" + +#: fdmprinter.def.json +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "同心" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "同心圆" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "同心圆" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "同心圆" + +#: fdmprinter.def.json +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "锥形支撑角度" + +#: fdmprinter.def.json +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "锥形支撑最小宽度" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "连接填充走线" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "连接填充多边形" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "连接支撑线" + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "连接支撑锯齿形" + +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "连接顶部/底部多边形" + +#: fdmprinter.def.json +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 "在填充路径互相紧靠运行的地方连接它们。对于包含若干闭合多边形的填充图案,启用此设置可大大减少空驶时间。" + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "连接锯齿形。 这将增加锯齿形支撑结构的强度。" + +#: fdmprinter.def.json +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 "将支撑线尾端连接在一起。启用此设置会让支撑更为牢固并减少挤出不足,但需要更多材料。" + +#: fdmprinter.def.json +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 "使用沿内壁形状的走线连接填充图案与内壁相接的各端。启用此设置会使填充更好地粘着在壁上,减少填充物效果对垂直表面质量的影响。禁用此设置可减少使用的材料量。" + +#: fdmprinter.def.json +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 "在顶部/底部皮肤路径互相紧靠运行的地方连接它们。对于同心图案,启用此设置可大大减少空驶时间,但由于连接可在填充中途发生,此功能可能会降低顶部表面质量。" + +#: fdmprinter.def.json +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 "控制模型轮廓上的角是否影响缝隙的位置。“无”表示各个角不影响缝隙位置。“隐藏缝隙”会使缝隙更可能出现在内侧角上。“外露缝隙”会使缝隙更可能出现在外侧角上。“隐藏或外露缝隙”会使缝隙更可能出现在内侧或外侧角上。“智能隐藏”允许缝隙出现在内侧和外侧角上,如适当,会更多地出现在内侧角上。" + +#: fdmprinter.def.json +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 "将每个填充走线转换成这种多重走线。额外走线互相不交叉,而是互相避开。这使得填充更严格,但会增加打印时间和材料使用。" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "冷却速度" + +#: fdmprinter.def.json +msgctxt "cooling description" +msgid "Cooling" +msgstr "冷却" + +#: fdmprinter.def.json +msgctxt "cooling label" +msgid "Cooling" +msgstr "冷却" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "交叉" + +#: fdmprinter.def.json +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "交叉" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "交叉 3D" + +#: fdmprinter.def.json +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "交叉 3D 气槽大小" + +#: fdmprinter.def.json +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "交叉填充密度图象" + +#: fdmprinter.def.json +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "交叉加密图像密度" + +#: fdmprinter.def.json +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "晶体材料" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "立方体" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "立方体分区" + +#: fdmprinter.def.json +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "立方体分区外壳" + +#: fdmprinter.def.json +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "切割网格" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "数据连接材料流量(mm3/s)到温度(摄氏度)。" + +#: fdmprinter.def.json +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "默认加速度" + +#: fdmprinter.def.json +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "默认打印平台温度" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "默认挤出电机 Jerk" + +#: fdmprinter.def.json +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "默认打印温度" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "默认 X-Y 平面抖动速度(Jerk)" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "默认 Z 轴抖动速度(Jerk)" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "水平面移动的默认抖动速度。" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Z 轴方向电机的默认抖动速度。" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "耗材电机的默认抖动速度。" + +#: fdmprinter.def.json +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "在打印连桥时,检测连桥并修改打印速度、流量和风扇设置。" + +#: fdmprinter.def.json +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 "确定打印壁的顺序。先打印外壁有助于提高尺寸精度,因为内壁的误差不会传播到外壁。不过,在打印悬垂对象时,后打印外壁可以实现更好的堆叠。当总内壁数量不均匀时,“中心最后线”总是最后打印。" + +#: fdmprinter.def.json +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 "在考虑多个重叠的填充网格时确定此网格的优先级。其中有多个填充网格重叠的区域将采用等级最高的网格的设置。具有较高等级的填充网格将修改具有较低等级的填充网格和普通网格的填充。" + +#: fdmprinter.def.json +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 "决定闪电形填充层何时必须支撑其上方的任何物体。在给定的层厚度下测得的角度。" + +#: fdmprinter.def.json +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 "决定闪电形填充层何时必须支撑其上方的模型。在给定的厚度下测得的角度。" + +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直径" + +#: fdmprinter.def.json +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 是在模型四周打印的一条线,但并不与模型连接。" + +#: fdmprinter.def.json +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "不允许区域" + +#: fdmprinter.def.json +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 "打印填充走线之间的距离。 该设置是通过填充密度和填充线宽度计算。" + +#: fdmprinter.def.json +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 "已打印起始层支撑结构走线之间的距离。该设置通过支撑密度计算。" + +#: fdmprinter.def.json +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 "已打印支撑底板走线之间的距离。 该设置是通过支撑底板密度计算,但可以单独调整。" + +#: fdmprinter.def.json +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 "已打印支撑顶板走线之间的距离。 该设置是通过支撑顶板密度计算,但可以单独调整。" + +#: fdmprinter.def.json +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "已打印支撑结构走线之间的距离。 该设置通过支撑密度计算。" + +#: fdmprinter.def.json +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support." +msgstr "从打印品到支撑底部的距离。" + +#: fdmprinter.def.json +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "从支撑顶部到打印品的距离。" + +#: fdmprinter.def.json +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. This value is rounded up to a multiple of the layer height." +msgstr "支撑结构顶部/底部到打印品之间的距离。 该间隙提供了在模型打印完成后移除支撑的空隙。 该值舍入为层高的倍数。" + +#: fdmprinter.def.json +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 "每条填充走线后插入的空驶距离,让填充物更好地粘着到壁上。 此选项与填充重叠类似,但没有挤出,且仅位于填充走线的一端。" + +#: fdmprinter.def.json +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 缝。" + +#: fdmprinter.def.json +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "防风罩在 X/Y 方向与打印品的距离。" + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "渗出罩在 X/Y 方向距打印品的距离。" + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "支撑结构在 X/Y 方向距悬垂的距离。" + +#: fdmprinter.def.json +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "支撑结构在 X/Y 方向距打印品的距离。" + +#: fdmprinter.def.json +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "不要生成小于此面积的填充区域(使用皮肤取代)。" + +#: fdmprinter.def.json +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "防风罩高度" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "防风罩限制" + +#: fdmprinter.def.json +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "防风罩 X/Y 距离" + +#: fdmprinter.def.json +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "下拉式支撑网格" + +#: fdmprinter.def.json +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "双重挤出" + +#: fdmprinter.def.json +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "类圆形" + +#: fdmprinter.def.json +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "启用加速度控制" + +#: fdmprinter.def.json +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "启用连桥设置" + +#: fdmprinter.def.json +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "启用滑行" + +#: fdmprinter.def.json +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "启用锥形支撑" + +#: fdmprinter.def.json +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "启用防风罩" + +#: fdmprinter.def.json +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "启用熨平" + +#: fdmprinter.def.json +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "启用抖动速度控制" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "启用喷嘴温度控制" + +#: fdmprinter.def.json +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "启用渗出罩" + +#: fdmprinter.def.json +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "启用装填光点" + +#: fdmprinter.def.json +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "启用装填塔" + +#: fdmprinter.def.json +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "开启打印冷却" + +#: fdmprinter.def.json +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "启用回抽" + +#: fdmprinter.def.json +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "启用支撑 Brim" + +#: fdmprinter.def.json +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "启用支撑底板" + +#: fdmprinter.def.json +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "启用支撑接触面" + +#: fdmprinter.def.json +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "启用支撑顶板" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "启用空驶加速度" + +#: fdmprinter.def.json +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "启用空驶抖动速度" + +#: fdmprinter.def.json +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 "启用外部渗出罩。 这将在模型周围创建一个外壳,如果与第一个喷嘴处于相同的高度,则可能会擦拭第二个喷嘴。" + +#: fdmprinter.def.json +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 轴的速度变化时调整打印头的抖动速度。 提高抖动速度可以通过以打印质量为代价来缩短打印时间。" + +#: fdmprinter.def.json +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 "启用调整打印头加速度。 提高加速度可以通过以打印质量为代价来缩短打印时间。" + +#: fdmprinter.def.json +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 "打印时启用打印冷却风扇。 风扇可以在层时间较短和有桥接/悬垂的层上提高打印质量。" + +#: fdmprinter.def.json +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "结束 G-code" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "耗材末端清除长度" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "耗材末端清除速度" + +#: fdmprinter.def.json +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 区域。" + +#: fdmprinter.def.json +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "全部支撑" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "" + +#: fdmprinter.def.json +msgctxt "experimental label" +msgid "Experimental" +msgstr "实验性" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "外露缝隙" + +#: fdmprinter.def.json +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "广泛缝合" + +#: fdmprinter.def.json +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 "广泛缝合尝试通过接触多边形来闭合孔洞,以此缝合网格中的开孔。 此选项可能会产生大量的处理时间。" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "额外填充壁计数" + +#: fdmprinter.def.json +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "额外皮肤壁计数" + +#: fdmprinter.def.json +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "喷嘴切换后的额外装填材料。" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "挤出机 X 轴坐标" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "挤出机 Y 轴起始位置" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "挤出机初始 Z 轴位置" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "挤出器共用加热器" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "挤出器共用喷嘴" + +#: fdmprinter.def.json +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "挤出冷却速度调节器" + +#: fdmprinter.def.json +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% 的值有助于为挤出宽线所需的更高压力提供补偿。" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "风扇速度" + +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "风扇速度覆盖" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "将使用微小特征速度打印小于此长度的特征轮廓。" + +#: fdmprinter.def.json +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "尚未完全充实的功能。" + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "进料装置驱动轮的直径" + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "最终打印温度" + +#: fdmprinter.def.json +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "固件收回" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "第一层支撑挤出机" + +#: fdmprinter.def.json +msgctxt "material_flow label" +msgid "Flow" +msgstr "流量" + +#: fdmprinter.def.json +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "流量均衡比" + +#: fdmprinter.def.json +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "流量补偿因子" + +#: fdmprinter.def.json +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "流量补偿最大挤出偏移值" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "流量温度图" + +#: fdmprinter.def.json +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 "第一层的流量补偿:起始层挤出的材料量乘以此值。" + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "第一层底部走线的流量补偿" + +#: fdmprinter.def.json +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "填充走线的流量补偿。" + +#: fdmprinter.def.json +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "支撑顶板或底板走线的流量补偿。" + +#: fdmprinter.def.json +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "打印顶部区域走线的流量补偿。" + +#: fdmprinter.def.json +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "装填塔走线的流量补偿。" + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "裙边或边缘走线的流量补偿。" + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "支撑底板走线的流量补偿。" + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "支撑顶板走线的流量补偿。" + +#: fdmprinter.def.json +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "支撑结构走线的流量补偿。" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "第一层最外壁走线的流量补偿。" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "最外壁走线的流量补偿。" + +#: fdmprinter.def.json +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "顶部/底部走线的流量补偿。" + +#: fdmprinter.def.json +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 "适用于所有壁走线(最外壁走线除外)的流量补偿,但仅适用于第一层。" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "适用于所有壁走线(最外壁走线除外)的流量补偿。" + +#: fdmprinter.def.json +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "壁走线的流量补偿。" + +#: fdmprinter.def.json +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "流量补偿:挤出的材料量乘以此值。" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "冲洗清除长度" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "冲洗清除速度" + +#: fdmprinter.def.json +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 壁窄。允许的最大壁走线宽度是最小壁走线宽度的两倍。" + +#: fdmprinter.def.json +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "前方" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "左前方" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "右前方" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "完整" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "模糊皮肤" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "模糊皮肤密度" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "仅外部模糊皮肤" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "模糊皮肤点距离" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "模糊皮肤厚度" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "G-code 风格" + +#: fdmprinter.def.json +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "" +"在结束前执行的 G-code 命令 - 以 \n" +" 分行。" + +#: fdmprinter.def.json +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" +"在开始时执行的 G-code 命令 - 以 \n" +" 分行。" + +#: fdmprinter.def.json +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "材料 GUID,此项为自动设置。" + +#: fdmprinter.def.json +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "十字轴高度" + +#: fdmprinter.def.json +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "生成互锁结构" + +#: fdmprinter.def.json +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "生成支撑" + +#: fdmprinter.def.json +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 在支撑下方打印,而非周围。启用此设置会增强支撑与打印平台的附着。" + +#: fdmprinter.def.json +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 "在模型和支撑之间生成一个密集的接触面。 这会在打印模型所在的支撑顶部和模型停放的支撑底部创建一个皮肤。" + +#: fdmprinter.def.json +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 "在支撑底部和模型之间生成一个密集的材料板。 这会在模型和支撑之间形成一个皮肤。" + +#: fdmprinter.def.json +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 "在支撑顶部和模型之间生成一个密集的材料板。 这会在模型和支撑之间形成一个皮肤。" + +#: fdmprinter.def.json +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)部分生成支撑结构。若不这样做,这些部分在打印时将倒塌。" + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "玻璃" + +#: fdmprinter.def.json +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 "再次经过顶部表面,但这次挤出的材料非常少。这意味着将进一步熔化顶部的塑料,形成更平滑的表面。喷嘴室中的压力保持很高,确保表面折痕中也能填充材料,以保证细节。" + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "渐进填充步阶高度" + +#: fdmprinter.def.json +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "渐进填充步阶" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "渐进支撑填充步阶高度" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "渐进支撑填充步阶" + +#: fdmprinter.def.json +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "当由于最短印层时间而导致打印速度降低时,温度将逐渐降低至该温度。" + +#: fdmprinter.def.json +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "网格" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "网格" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "网格" + +#: fdmprinter.def.json +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "网格" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "网格" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +#: fdmprinter.def.json +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "螺旋二十四面体" + +#: fdmprinter.def.json +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "螺旋二十四面体" + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "具有构建体积温度稳定性" + +#: fdmprinter.def.json +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "有加热打印平台" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "升温速度" + +#: fdmprinter.def.json +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "加热区长度" + +#: fdmprinter.def.json +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "防风罩的高度限制。 在此高度以上不会打印任何防风罩。" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "隐藏缝隙" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "隐藏或外露缝隙" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "孔洞水平扩展" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "" + +#: fdmprinter.def.json +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 "将使用微小特征速度打印直径小于此尺寸的孔和零件轮廓。" + +#: fdmprinter.def.json +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "水平扩展" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "水平缩放因子收缩补偿" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance description" +msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." +msgstr "在支撑模型时,分支之间需要多大的间距。缩小这一间距会使树形支撑与模型之间有更多接触点,带来更好的悬垂,但会使支撑更难以拆除。" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "耗材受热拉伸但不断裂的极限长度。" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "材料在停止渗出前所需的回抽长度。" + +#: fdmprinter.def.json +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 "为补偿流量变化而将线材移动的距离,在挤出一秒钟的情况下占线材移动距离的百分比。" + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "为完全脱落耗材而抽回耗材的长度。" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "耗材在回抽过程中恰好折断的回抽速率。" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "在耗材用于防渗出过程中材料所需的回抽速率。" + +#: fdmprinter.def.json +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 "将空线轴替换为使用相同材料的新线轴后,装填材料的速度如何。" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "切换到其他材料后,装填材料的速度如何。" + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "材料能在干燥存储区之外安全存放多长时间。" + +#: fdmprinter.def.json +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 方向移动一毫米。" + +#: fdmprinter.def.json +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 方向移动一毫米。" + +#: fdmprinter.def.json +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 方向移动一毫米。" + +#: fdmprinter.def.json +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 "步进电机前进多少步将导致进料器轮绕其周长移动一毫米。" + +#: fdmprinter.def.json +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 "将空线轴替换为使用相同材料的新线轴后,需要使用多少材料从喷嘴中清除之前的材料(以长丝长度计)。" + +#: fdmprinter.def.json +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 "切换到其他材料时,需要使用多少材料从喷嘴中清除之前的材料(以长丝长度计)。" + +#: fdmprinter.def.json +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 脚本完成后,每个挤出器的细丝从共用喷嘴头缩回多少;该值应等于或大于喷嘴导管公共部分的长度。" + +#: fdmprinter.def.json +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 "如果受支撑的表面区域小于整个区域的这一百分比,则使用连桥设置打印。否则,使用正常表面设置打印。" + +#: fdmprinter.def.json +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 "如果启用此选项,则使用以下设置打印净空区域上方第二层和第三层。否则,将使用正常设置打印这些层。" + +#: fdmprinter.def.json +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 "如果要在不同数量的壁之间快速连续地来回过渡,那么根本不要过渡。如果这些过渡的距离之和小于此距离,则移除过渡。" + +#: fdmprinter.def.json +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,但会使用更多材料,为打印品留下的空间更少。" + +#: fdmprinter.def.json +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 "忽略由网格内的重叠体积产生的内部几何,并将多个部分作为一个打印。 这可能会导致意外的内部孔洞消失。" + +#: fdmprinter.def.json +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "包含打印平台温度" + +#: fdmprinter.def.json +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "包含材料温度" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill description" +msgid "Infill" +msgstr "填充" + +#: fdmprinter.def.json +msgctxt "infill label" +msgid "Infill" +msgstr "填充" + +#: fdmprinter.def.json +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "填充加速度" + +#: fdmprinter.def.json +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "先填充物后壁" + +#: fdmprinter.def.json +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "填充密度" + +#: fdmprinter.def.json +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "填充挤出机" + +#: fdmprinter.def.json +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "填充流量" + +#: fdmprinter.def.json +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "填充抖动速度" + +#: fdmprinter.def.json +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "填充层厚度" + +#: fdmprinter.def.json +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "填充走线方向" + +#: fdmprinter.def.json +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "填充走线距离" + +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "填充走线乘数" + +#: fdmprinter.def.json +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "走线宽度(填充)" + +#: fdmprinter.def.json +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "填充网格" + +#: fdmprinter.def.json +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "填充悬垂角" + +#: fdmprinter.def.json +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "填充重叠" + +#: fdmprinter.def.json +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "填充重叠百分比" + +#: fdmprinter.def.json +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "填充图案" + +#: fdmprinter.def.json +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "填充速度" + +#: fdmprinter.def.json +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "填充支撑" + +#: fdmprinter.def.json +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "填充物空驶优化" + +#: fdmprinter.def.json +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "填充物擦拭距离" + +#: fdmprinter.def.json +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "填充 X 轴偏移量" + +#: fdmprinter.def.json +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "填充 Y 轴偏移量" + +#: fdmprinter.def.json +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "初始底层数" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "起始风扇速度" + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "起始层加速度" + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "起始层底部流量" + +#: fdmprinter.def.json +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "起始层流量" + +#: fdmprinter.def.json +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "起始层高" + +#: fdmprinter.def.json +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "起始层水平扩展" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "起始层内壁流量" + +#: fdmprinter.def.json +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "起始层抖动速度" + +#: fdmprinter.def.json +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "起始层走线宽度" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "起始层外壁流量" + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "起始层打印加速度" + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "起始层打印抖动速度" + +#: fdmprinter.def.json +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "起始层打印速度" + +#: fdmprinter.def.json +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "起始层速度" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "起始层支撑走线距离" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "起始层空驶加速度" + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "起始层空驶抖动速度" + +#: fdmprinter.def.json +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "起始层空驶速度" + +#: fdmprinter.def.json +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "起始层 Z 重叠" + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "起始打印温度" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "内壁加速度" + +#: fdmprinter.def.json +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "内壁挤出机" + +#: fdmprinter.def.json +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "内壁抖动速度" + +#: fdmprinter.def.json +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "速度(内壁)" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "内壁流量" + +#: fdmprinter.def.json +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "走线宽度(内壁)" + +#: fdmprinter.def.json +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 "应用在外壁路径上的嵌入。 如果外壁小于喷嘴,并且在内壁之后打印,则使用该偏移量来使喷嘴中的孔与内壁而不是模型外部重叠。" + +#: fdmprinter.def.json +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "从内到外" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "互锁梁层数" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "互锁梁宽度" + +#: fdmprinter.def.json +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "互锁边界回避" + +#: fdmprinter.def.json +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "互锁深度" + +#: fdmprinter.def.json +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "互锁结构方向" + +#: fdmprinter.def.json +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "仅熨平最高层" + +#: fdmprinter.def.json +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "熨平加速度" + +#: fdmprinter.def.json +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "熨平流量" + +#: fdmprinter.def.json +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "熨平嵌入" + +#: fdmprinter.def.json +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "熨平抖动速度" + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "熨平走线间距" + +#: fdmprinter.def.json +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "熨平图案" + +#: fdmprinter.def.json +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "熨平速度" + +#: fdmprinter.def.json +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "位于中心" + +#: fdmprinter.def.json +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 "该材料为受热后脱落干净的类型(晶体),还是会产生长交织状聚合物链的类型(非晶体)?" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "仅抖动部件的轮廓,而不抖动部件的孔。" + +#: fdmprinter.def.json +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "保留断开连接的面" + +#: fdmprinter.def.json +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "层高" + +#: fdmprinter.def.json +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "层开始 X" + +#: fdmprinter.def.json +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "层开始 Y" + +#: fdmprinter.def.json +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 层的层厚度。 该层应为与打印机打印平台牢固粘着的厚层。" + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "中间 Raft 层的层厚度。" + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "顶部 Raft 层的层厚度。" + +#: fdmprinter.def.json +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 毫米在支撑线之间略去一个连接,让支撑结构更容易脱离。" + +#: fdmprinter.def.json +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "左侧" + +#: fdmprinter.def.json +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "打印头提升" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "闪电形" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "闪电形填充悬垂角" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "闪电形填充修剪角" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "闪电形填充矫直角" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "闪电形填充支撑角" + +#: fdmprinter.def.json +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 "将此网格的体积限制在其他网格内。 您可以使用它来制作采用不同的设置以及完全不同的挤出机的网格打印的特定区域。" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "有限" + +#: fdmprinter.def.json +msgctxt "line_width label" +msgid "Line Width" +msgstr "走线宽度" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "直线" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "走线" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "走线" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "走线" + +#: fdmprinter.def.json +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "走线" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "直线" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "直线" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "直线" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +#: fdmprinter.def.json +msgctxt "machine_settings label" +msgid "Machine" +msgstr "机器" + +#: fdmprinter.def.json +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "机器深度" + +#: fdmprinter.def.json +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "机器头和风扇多边形" + +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "机器高度" + +#: fdmprinter.def.json +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "机器类型" + +#: fdmprinter.def.json +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "机器宽度" + +#: fdmprinter.def.json +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "机器详细设置" + +#: fdmprinter.def.json +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "使悬垂可打印" + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "让彼此接触的网格略微重叠。 这会让它们更好地粘合在一起。" + +#: fdmprinter.def.json +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "使底部的支撑区域小于悬垂处的支撑区域。" + +#: fdmprinter.def.json +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 "在支撑网格下方的所有位置进行支撑,让支撑网格中没有悬垂。" + +#: fdmprinter.def.json +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 "使挤出机主要位置为绝对值,而不是与上一已知打印头位置的相对值。" + +#: fdmprinter.def.json +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 "使模型的第一层和第二层在 Z 方向上重叠以补偿在空隙中损失的耗材。 第一个模型层上方的所有模型将向下移动此重叠量。" + +#: fdmprinter.def.json +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "使网格更适合 3D 打印。" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin(容积)" + +#: fdmprinter.def.json +msgctxt "material description" +msgid "Material" +msgstr "材料" + +#: fdmprinter.def.json +msgctxt "material label" +msgid "Material" +msgstr "材料" + +#: fdmprinter.def.json +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "材料 GUID" + +#: fdmprinter.def.json +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "擦拭之间的材料量" + +#: fdmprinter.def.json +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "最大梳距,无收缩" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "X 轴最大加速度" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "轴最大加速度" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Z 轴最大加速度" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "最大偏移量" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "最大挤出面积偏移量" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "最大风扇速度" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "挤出电机最大加速度" + +#: fdmprinter.def.json +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "最大模型角度" + +#: fdmprinter.def.json +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "最大悬垂孔面积" + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "最长停放持续时间" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "最大分辨率" + +#: fdmprinter.def.json +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "最大回抽计数" + +#: fdmprinter.def.json +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "最大扩展皮肤角度" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "E 轴最大速度" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "X 轴最大速度" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Y 轴最大速度" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Z 轴最大速度" + +#: fdmprinter.def.json +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "最大塔支撑直径" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "空走的最大分辨率" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "X 轴方向电机的最大加速度" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Y 轴方向电机的最大加速度。" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Z 轴方向电机的最大加速度。" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "耗材电机的最大加速度。" + +#: fdmprinter.def.json +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 "填充物的最大密度被视为稀疏。稀疏填充物表面被视为不受支持,因此可被视为连桥表面。" + +#: fdmprinter.def.json +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 轴方向的最大直径。" + +#: fdmprinter.def.json +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 "在开始下一轮喷嘴擦拭之前可挤出的最大材料量。如果此值小于层中所需的材料量,则该设置在此层中无效,即每层仅限擦拭一次。" + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "合并网格重叠" + +#: fdmprinter.def.json +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "网格修复" #: fdmprinter.def.json msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "网格X位置" -#: fdmprinter.def.json -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "应用在模型 x 方向上的偏移量。" - #: fdmprinter.def.json msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "网格Y位置" -#: fdmprinter.def.json -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "应用在模型 y 方向上的偏移量。" - #: fdmprinter.def.json msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "网格Z位置" #: fdmprinter.def.json -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 "网格处理等级" #: fdmprinter.def.json msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "网格旋转矩阵" +#: fdmprinter.def.json +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Middle" + +#: fdmprinter.def.json +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "最小模具宽度" + +#: fdmprinter.def.json +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "最短时间待机温度" + +#: fdmprinter.def.json +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "最小桥壁长度" + +#: fdmprinter.def.json +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "最小偶数壁走线宽度" + +#: fdmprinter.def.json +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "最小挤出距离范围" + +#: fdmprinter.def.json +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "最小特征尺寸" + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "最小进料速率" + +#: fdmprinter.def.json +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "最小填充区域" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "最短单层冷却时间" + +#: fdmprinter.def.json +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "最小奇数壁走线宽度" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "最小多边形周长" + +#: fdmprinter.def.json +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "最小扩展皮肤宽度" + +#: fdmprinter.def.json +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "最小风扇速度" + +#: fdmprinter.def.json +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "最小支撑面积" + +#: fdmprinter.def.json +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "最小支撑底板面积" + +#: fdmprinter.def.json +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "最小支撑接触面面积" + +#: fdmprinter.def.json +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "最小支撑顶板面积" + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "最小支撑 X/Y 距离" + +#: fdmprinter.def.json +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "最小薄壁走线宽度" + +#: fdmprinter.def.json +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "滑行前最小体积" + +#: fdmprinter.def.json +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "最小壁走线宽度" + +#: fdmprinter.def.json +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 "支撑接触面多边形的最小面积。面积小于此值的多边形将打印为一般支撑。" + +#: fdmprinter.def.json +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 "支撑多边形的最小面积。将不会生成面积小于此值的多边形。" + +#: fdmprinter.def.json +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 "支撑底板的最小面积。面积小于此值的多边形将打印为一般支撑。" + +#: fdmprinter.def.json +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 "支撑顶板的最小面积。面积小于此值的多边形将打印为一般支撑。" + +#: fdmprinter.def.json +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 "薄特征的最小厚度。将不打印比此值更薄的模型特征,而比最小特征尺寸更厚的特征将加宽到最小壁走线宽度。" + +#: fdmprinter.def.json +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 "锥形支撑区域底部被缩小至的最小宽度。 宽度较小可导致不稳定的支撑结构。" + +#: fdmprinter.def.json +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "模具" + +#: fdmprinter.def.json +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "模具角度" + +#: fdmprinter.def.json +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "模具顶板高度" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "单调熨平顺序" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "单调顶部表面顺序" + +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "单调顶部/底部顺序" + +#: fdmprinter.def.json +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。" + +#: fdmprinter.def.json +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "第一层走线宽度乘数。 增大此乘数可改善热床粘着。" + +#: fdmprinter.def.json +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "空载移动系数" + +#: fdmprinter.def.json +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Z 间隙内无表层" + +#: fdmprinter.def.json +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "打印模型的非传统方式。" + +#: fdmprinter.def.json +msgctxt "adhesion_type option none" +msgid "None" +msgstr "无" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "无" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "正常" + +#: fdmprinter.def.json +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "正常" + +#: fdmprinter.def.json +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 时,最后才应考虑该选项。" + +#: fdmprinter.def.json +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "除了皮肤" + +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "不在外表面上" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "喷嘴角度" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "喷嘴直径" + +#: fdmprinter.def.json +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "喷嘴不允许区域" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "喷嘴 ID" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "喷嘴长度" + +#: fdmprinter.def.json +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "喷嘴切换额外装填量" + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "喷嘴切换装填速度" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "喷嘴切换回抽速度" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "喷嘴切换回抽距离" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "喷嘴切换回抽速度" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "挤出机数目" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "已启用的挤出机数目" + +#: fdmprinter.def.json +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "较慢层的数量" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "已启用的挤出机组数目;软件自动设置" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "挤出机组数目。 挤出机组是指进料装置、鲍登管和喷嘴的组合。" + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "在擦拭刷上移动喷嘴的次数。" + +#: fdmprinter.def.json +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 "在进入顶部表面以下时,将填充密度减少一半的次数。 越靠近顶面的区域密度越高,最高达到填充密度。" + +#: fdmprinter.def.json +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 "在进入顶层以下时,将支撑填充密度减少一半的次数。 越靠近顶面的区域密度越高,最高达到支撑填充密度。" + +#: fdmprinter.def.json +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "八角形" + +#: fdmprinter.def.json +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "关" + +#: fdmprinter.def.json +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "应用在模型 x 方向上的偏移量。" + +#: fdmprinter.def.json +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "应用在模型 y 方向上的偏移量。" + +#: fdmprinter.def.json +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 方向上的偏移量。 利用此选项,您可以执行过去被称为“模型沉降”的操作。" + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "挤出机偏移量" + +#: fdmprinter.def.json +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "排队打印" + +#: fdmprinter.def.json +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 抬升。" + +#: fdmprinter.def.json +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 "仅在网格的最后一层执行熨平。 如果较低的层不需要平滑的表面效果,这将节省时间。" + +#: fdmprinter.def.json +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 "仅在模型外部打印 brim。 这会减少您之后需要移除的 brim 量,而不会过度影响热床附着。" + +#: fdmprinter.def.json +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "渗出罩角度" + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "渗出罩距离" + +#: fdmprinter.def.json +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "优化壁打印顺序" + +#: fdmprinter.def.json +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 "优化墙壁印刷的顺序,以减少回撤的数量和旅行的距离。大多数部件会从启用这个功能中受益,但有些可能会花费更长的时间,所以请将打印时间估算与不优化进行比较。第一层在选择边缘作为构建板附着力类型时没有进行优化。" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "喷嘴外径" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "外壁加速度" + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "外壁挤出机" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "外壁流量" + +#: fdmprinter.def.json +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "外壁嵌入" + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "外壁抖动速度" + +#: fdmprinter.def.json +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "走线宽度(外壁)" + +#: fdmprinter.def.json +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "速度(外壁)" + +#: fdmprinter.def.json +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "外壁擦嘴长度" + +#: fdmprinter.def.json +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "从外到内" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "悬垂壁角度" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "悬垂壁速度" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "悬垂壁将以其正常打印速度的此百分比打印。" + +#: fdmprinter.def.json +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "在未回抽后暂停。" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "打印连桥表面和桥壁时使用的风扇百分比速度。" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "打印桥梁第二层表面时使用的风扇百分比速度。" + +#: fdmprinter.def.json +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 "打印支撑正上方表面区域时使用的风扇百分比速度。使用高风扇速度可能使支撑更容易移除。" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "打印桥梁第三层表面时使用的风扇百分比速度。" + +#: fdmprinter.def.json +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 模型。" + +#: fdmprinter.def.json +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 * 最小壁走线宽度 + 边距] 之间。增加此边距将减少过渡数量,从而减少挤出启动/停止次数和行程时间。但是,较大的走线宽度变化会导致挤出不足或挤出过多的问题。" + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "装填塔加速度" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Brim" +msgstr "装填塔 Brim" + +#: fdmprinter.def.json +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "装填塔流量" + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "装填塔抖动速度" + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "装填塔走线宽度" + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "装填塔最小体积" + +#: fdmprinter.def.json +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "装填塔尺寸" + +#: fdmprinter.def.json +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "装填塔速度" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "装填塔 X 位置" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "装填塔 Y 位置" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +msgstr "装填塔可能需要 Brim 提供额外附着力,无论模型是否需要。目前不可与 'Raft' 附着类型配合使用。" + +#: fdmprinter.def.json +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "打印加速度" + +#: fdmprinter.def.json +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "打印抖动速度" + +#: fdmprinter.def.json +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "打印序列" + +#: fdmprinter.def.json +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "打印速度" + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "打印薄壁" + +#: fdmprinter.def.json +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "在打印品相邻处打印一个塔,用于在每个喷嘴切换后装填材料。" + +#: fdmprinter.def.json +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 "只在模型的顶部支持打印填充结构。这样可以减少打印时间和材料的使用,但是会导致不一致的对象强度。" + +#: fdmprinter.def.json +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 "按照一定的顺序打印熨平走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" + +#: fdmprinter.def.json +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 "将模型作为模具打印,可进行铸造,以便获取与打印平台上的模型类似的模型。" + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "打印在水平面上比喷嘴尺寸更薄的模型部件。" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "打印桥梁第二层表面时使用的打印速度。" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "打印桥梁第三层表面时使用的打印速度。" + +#: fdmprinter.def.json +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 "打印壁前先打印填充物。 先打印壁可能产生更精确的壁,但悬垂打印质量会较差。 先打印填充会产生更牢固的壁,但有时候填充图案会透过表面显现出来。" + +#: fdmprinter.def.json +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 "按照一定的顺序打印顶部表面走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" + +#: fdmprinter.def.json +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 "按照一定的顺序打印顶部/底部走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" + +#: fdmprinter.def.json +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "打印温度" + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "打印温度起始层" + +#: fdmprinter.def.json +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "" + +#: fdmprinter.def.json +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 "每隔一层打印一个额外的壁。 通过这种方法,填充物会卡在这些额外的壁之间,从而产生更强韧的打印质量。" + +#: fdmprinter.def.json +msgctxt "resolution label" +msgid "Quality" +msgstr "质量" + +#: fdmprinter.def.json +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "四面体" + +#: fdmprinter.def.json +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" + +#: fdmprinter.def.json +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Raft 空隙" + +#: fdmprinter.def.json +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Raft 底层挤出器" + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Raft 基础风扇速度" + +#: fdmprinter.def.json +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Raft 基础走线间距" + +#: fdmprinter.def.json +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Raft 基础走线宽度" + +#: fdmprinter.def.json +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Raft 基础打印加速度" + +#: fdmprinter.def.json +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Raft 基础打印抖动速度" + +#: fdmprinter.def.json +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Raft 基础打印速度" + +#: fdmprinter.def.json +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Raft 基础厚度" + +#: fdmprinter.def.json +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Raft 底板壁数" + +#: fdmprinter.def.json +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Raft 留白" + +#: fdmprinter.def.json +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Raft 风扇速度" + +#: fdmprinter.def.json +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Raft 中间挤出器" + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Raft 中间风扇速度" + +#: fdmprinter.def.json +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Raft 中间层" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Raft 中间线宽度" + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Raft 中间打印加速度" + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Raft 中间打印抖动速度" + +#: fdmprinter.def.json +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Raft 中间打印速度" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Raft 中间间距" + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Raft 中间厚度" + +#: fdmprinter.def.json +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Raft 打印加速度" + +#: fdmprinter.def.json +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Raft 打印抖动速度" + +#: fdmprinter.def.json +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Raft 打印速度" + +#: fdmprinter.def.json +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Raft 平滑度" + +#: fdmprinter.def.json +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Raft 顶层挤出器" + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Raft 顶部风扇速度" + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Raft 顶层厚度" + +#: fdmprinter.def.json +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Raft 顶层" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Raft 顶线宽度" + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Raft 顶部打印加速度" + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Raft 顶部打印抖动速度" + +#: fdmprinter.def.json +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Raft 顶部打印速度" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Raft 顶部间距" + +#: fdmprinter.def.json +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "随机" + +#: fdmprinter.def.json +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "开始随机化填充" + +#: fdmprinter.def.json +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 "先随机化打印哪条填充线。这可以防止一个部分变强,但会导致一次额外的空驶。" + +#: fdmprinter.def.json +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 "在打印外墙时随机抖动,使表面具有粗糙和模糊的外观。" + +#: fdmprinter.def.json +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "矩形" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "正常风扇速度" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "正常风扇速度(高度)" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "正常风扇速度(层)" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "正常/最大风扇速度阈值" + +#: fdmprinter.def.json +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "相对挤出" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "移除所有孔洞" + +#: fdmprinter.def.json +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "移除空白第一层" + +#: fdmprinter.def.json +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "移除网格交叉" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "移除 Raft 内侧角" + +#: fdmprinter.def.json +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 "移除多个网格互相重叠的区域。 如果合并的双材料模型彼此重叠,此选项可能适用。" + +#: fdmprinter.def.json +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 "移除第一个打印层下方的空白层(如果存在)。如果“切片公差”设置被设为“独占”或“中间”,禁用此设置可能导致空白第一层。" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "从 Raft 上移除内侧角,这会使 Raft 变得凸出。" + +#: fdmprinter.def.json +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 "移除每层的孔洞,仅保留外部形状。 这会忽略任何不可见的内部几何。 但是,也会忽略可从上方或下方看到的层孔洞。" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +#: fdmprinter.def.json +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 "用多个同心线代替顶部/底部图案的最外面部分。 使用一条或两条线改善从填充材料开始的顶板。" + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution description" +msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." +msgstr "用于计算碰撞的分辨率,目的在于避免碰撞模型。将此设置得较低将产生更准确且通常较少失败的树,但是会大幅增加切片时间。" + +#: fdmprinter.def.json +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "在外壁前回抽" + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "层变化时回抽" + +#: fdmprinter.def.json +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "当喷嘴移动到非打印区域上方时回抽耗材。" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "当喷嘴移动到非打印区域上方时回抽耗材。" + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "当喷嘴移动到下一层时回抽耗材。" + +#: fdmprinter.def.json +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "回抽距离" + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "回抽额外装填量" + +#: fdmprinter.def.json +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "回抽最小空驶" + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "回抽装填速度" + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "回抽速度" + +#: fdmprinter.def.json +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "回抽速度" + +#: fdmprinter.def.json +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "右侧" + +#: fdmprinter.def.json +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "在 0 到 1 范围内设置风扇速度" + +#: fdmprinter.def.json +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 之间。" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "缩放因子收缩补偿" + +#: fdmprinter.def.json +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "场景具有支撑网格" + +#: fdmprinter.def.json +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "缝隙角偏好设置" + +#: fdmprinter.def.json +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 "设置防风罩的高度。 选择在模型的完整高度或有限高度处打印防风罩。" + +#: fdmprinter.def.json +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "利用多个挤出机进行打印所用的设置。" + +#: fdmprinter.def.json +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "未从 Cura 前端调用 CuraEngine 时使用的设置。" + +#: fdmprinter.def.json +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "共用喷嘴初始缩回" + +#: fdmprinter.def.json +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "最尖角" + +#: fdmprinter.def.json +msgctxt "shell description" +msgid "Shell" +msgstr "外壳" + +#: fdmprinter.def.json +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "最短" + +#: fdmprinter.def.json +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "显示打印机变体" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "皮肤边缘支撑层数" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "皮肤边缘支撑厚度" + +#: fdmprinter.def.json +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "皮肤扩展距离" + +#: fdmprinter.def.json +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "皮肤重叠" + +#: fdmprinter.def.json +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "皮肤重叠百分比" + +#: fdmprinter.def.json +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "肤移除宽度" + +#: fdmprinter.def.json +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 "如果皮肤区域宽度小于此值,则不会扩展。 这会避免扩展在模型表面的坡度接近垂直时所形成的狭窄皮肤区域。" + +#: fdmprinter.def.json +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 个连接线跳过一个连接,让支撑结构更容易脱离。" + +#: fdmprinter.def.json +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 "跳过部分支撑线连接,让支撑结构更容易脱离。 此设置适用于锯齿形支撑结构填充图案。" + +#: fdmprinter.def.json +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Skirt" + +#: fdmprinter.def.json +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Skirt 距离" + +#: fdmprinter.def.json +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Skirt 走线计数" + +#: fdmprinter.def.json +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Skirt/Brim 加速度" + +#: fdmprinter.def.json +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Skirt/Brim 挤出器" + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "裙边/边缘流量" + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Skirt/Brim 抖动速度" + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "走线宽度(Skirt / Brim)" + +#: fdmprinter.def.json +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Skirt/Brim 最小长度" + +#: fdmprinter.def.json +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Skirt/Brim 速度" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "切片公差" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "微小特征初始层速度" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "微小特征最大长度" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "微小特征速度" + +#: fdmprinter.def.json +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "小孔最大尺寸" + +#: fdmprinter.def.json +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "小型层打印温度" + +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + +#: fdmprinter.def.json +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 "第一层的微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。" + +#: fdmprinter.def.json +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 "微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。" + +#: fdmprinter.def.json +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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "智能隐藏" + +#: fdmprinter.def.json +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "平滑螺旋轮廓" + +#: fdmprinter.def.json +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 缝于打印品上几乎不可见,但在层视图中仍然可见)。注意:平滑操作将模糊精细的表面细节。" + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "有些材料可能会在空驶过程中渗出,可以在这里对其进行补偿。" + +#: fdmprinter.def.json +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 "有些材料可能会在擦拭空驶过程中渗出,可以在这里进行补偿。" + +#: fdmprinter.def.json +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "特殊模式" + +#: fdmprinter.def.json +msgctxt "speed description" +msgid "Speed" +msgstr "速度" + +#: fdmprinter.def.json +msgctxt "speed label" +msgid "Speed" +msgstr "速度" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "抬升期间移动 Z 轴的速度。" + +#: fdmprinter.def.json +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "螺旋打印外轮廓" + +#: fdmprinter.def.json +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 增量。 该功能会将一个实心模型转变为具有实体底部的单壁打印。 只有在当每一层仅包含一个部分时才应启用此功能。" + +#: fdmprinter.def.json +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "待机温度" + +#: fdmprinter.def.json +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "开始 G-code" + +#: fdmprinter.def.json +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 "一层中每条路径的起点。 当连续多层的路径从相同点开始时,则打印物上会显示一条垂直缝隙。 如果将这些路径靠近一个用户指定的位置对齐,则缝隙最容易移除。 如果随机放置,则路径起点的不精准度将较不明显。 采用最短的路径时,打印将更为快速。" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "每毫米步数 (E)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "每毫米步数 (X)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "每毫米步数 (Y)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "每毫米步数 (Z)" + +#: fdmprinter.def.json +msgctxt "support description" +msgid "Support" +msgstr "支撑" + +#: fdmprinter.def.json +msgctxt "support label" +msgid "Support" +msgstr "支撑" + +#: fdmprinter.def.json +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "支撑加速度" + +#: fdmprinter.def.json +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "支撑底部距离" + +#: fdmprinter.def.json +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "支撑底层墙线条数" + +#: fdmprinter.def.json +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "支撑 Brim 走线次数" + +#: fdmprinter.def.json +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "支撑 Brim 宽度" + +#: fdmprinter.def.json +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "支撑块走线数" + +#: fdmprinter.def.json +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "支撑块大小" + +#: fdmprinter.def.json +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "支撑密度" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "支撑距离优先级" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "支撑用挤出机" + +#: fdmprinter.def.json +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "支撑底板加速度" + +#: fdmprinter.def.json +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "支撑底板密度" + +#: fdmprinter.def.json +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "支撑底板挤出机" + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "支撑底板流量" + +#: fdmprinter.def.json +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "支撑底板水平扩展" + +#: fdmprinter.def.json +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "支撑底板抖动速度" + +#: fdmprinter.def.json +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "支撑底板走线方向" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "支撑底板走线距离" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "支撑底板走线宽度" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "支撑底板图案" + +#: fdmprinter.def.json +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "支撑底板速度" + +#: fdmprinter.def.json +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "支撑底板厚度" + +#: fdmprinter.def.json +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "支撑流量" + +#: fdmprinter.def.json +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "支撑水平扩展" + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "支撑填充加速度" + +#: fdmprinter.def.json +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "支撑填充挤出机" + +#: fdmprinter.def.json +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "支撑填充抖动速度" + +#: fdmprinter.def.json +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "支撑填充层厚度" + +#: fdmprinter.def.json +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "支撑填充走线方向" + +#: fdmprinter.def.json +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "速度(支撑填充)" + +#: fdmprinter.def.json +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "支撑接触面加速度" + +#: fdmprinter.def.json +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "支撑接触面密度" + +#: fdmprinter.def.json +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "支撑接触面挤出机" + +#: fdmprinter.def.json +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "支撑接触面流量" + +#: fdmprinter.def.json +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "支撑接触面水平扩展" + +#: fdmprinter.def.json +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "支撑接触面抖动速度" + +#: fdmprinter.def.json +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "支撑接触面走线方向" + +#: fdmprinter.def.json +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "走线宽度(支撑接触面)" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "支撑接触面图案" + +#: fdmprinter.def.json +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "支撑接触面分辨率" + +#: fdmprinter.def.json +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "支撑接触面速度" + +#: fdmprinter.def.json +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "支撑接触面厚度" + +#: fdmprinter.def.json +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "支撑接触面墙线条数" + +#: fdmprinter.def.json +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "支撑抖动速度" + +#: fdmprinter.def.json +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "支撑结合部距离" + +#: fdmprinter.def.json +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "支撑走线距离" + +#: fdmprinter.def.json +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "走线宽度(支撑结构)" + +#: fdmprinter.def.json +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "支撑网格" + +#: fdmprinter.def.json +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "支撑悬垂角度" + +#: fdmprinter.def.json +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "支撑图案" + +#: fdmprinter.def.json +msgctxt "support_type label" +msgid "Support Placement" +msgstr "支撑放置" + +#: fdmprinter.def.json +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "支撑顶板加速度" + +#: fdmprinter.def.json +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "支撑顶板密度" + +#: fdmprinter.def.json +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "支撑顶板挤出机" + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "支撑顶板流量" + +#: fdmprinter.def.json +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "支撑顶板水平扩展" + +#: fdmprinter.def.json +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "支撑顶板抖动速度" + +#: fdmprinter.def.json +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "支撑顶板走线方向" + +#: fdmprinter.def.json +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "支撑顶板走线距离" + +#: fdmprinter.def.json +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "支撑顶板走线宽度" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "支撑顶板图案" + +#: fdmprinter.def.json +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "支撑顶板速度" + +#: fdmprinter.def.json +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "支撑顶板厚度" + +#: fdmprinter.def.json +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "支撑顶板墙线条数" + +#: fdmprinter.def.json +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "速度(支撑结构)" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "支撑梯步阶高度" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "支撑梯步阶最大宽度" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "支撑阶梯最小坡度角" + +#: fdmprinter.def.json +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "支撑结构" + +#: fdmprinter.def.json +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "支撑顶部距离" + +#: fdmprinter.def.json +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "支撑墙行数" + +#: fdmprinter.def.json +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "支撑 X/Y 距离" + +#: fdmprinter.def.json +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "支撑 Z 距离" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "支撑的表面风扇速度" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "表面" + +#: fdmprinter.def.json +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "表面能" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "表面模式" + +#: fdmprinter.def.json +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "表面附着倾向。" + +#: fdmprinter.def.json +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "表面能。" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + +#: fdmprinter.def.json +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 "切换为与每个层相交的网格相交体积,以便重叠的网格交织在一起。 关闭此设置将使其中一个网格获得重叠中的所有体积,同时将其从其他网格中移除。" + +#: fdmprinter.def.json +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 "两个相邻图层之间的目标水平距离。减小此设置的值会使要使用的图层变薄,从而使图层的边缘距离更近。" + +#: fdmprinter.def.json +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 轴坐标,在该位置附近找到开始打印每层的部分。" + +#: fdmprinter.def.json +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "位置的 X 轴坐标,在该位置附近开始打印层中各个部分。" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 X 轴上初始位置。" + +#: fdmprinter.def.json +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 轴坐标,在该位置附近找到开始打印每层的部分。" + +#: fdmprinter.def.json +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "位置的 Y 轴坐标,在该位置附近开始打印层中各个部分。" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置." + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "打印起始层时的加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "起始层的加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "起始层中的空驶加速度。" + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "起始层中的空驶加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "打印所有内壁的加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "打印填充物的加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "执行熨平的加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "打印发生的加速度。" + +#: fdmprinter.def.json +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "打印基础 Raft 层的加速度。" + +#: fdmprinter.def.json +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 "打印支撑底板的加速度。 以较低的加速度打印可以改善支撑在模型顶部的粘着。" + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "打印支撑填充物的加速度。" + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "打印中间 Raft 层的加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "打印最外壁的加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "打印装填塔的加速度。" + +#: fdmprinter.def.json +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "打印 Raft 的加速度。" + +#: fdmprinter.def.json +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 "打印支撑顶板和底板的加速度。 以较低的加速度打印可以改善悬垂质量。" + +#: fdmprinter.def.json +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 "打印支撑顶板的加速度。 以较低的加速度打印可以改善悬垂质量。" + +#: fdmprinter.def.json +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。" + +#: fdmprinter.def.json +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "打印支撑结构的加速度。" + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "打印顶部 Raft 层的加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "打印壁的加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "打印顶部表面皮肤层的加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "打印顶部/底部层的加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "进行空驶的加速度。" + +#: fdmprinter.def.json +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 "熨平期间相对于正常皮肤走线的挤出材料量。 保持喷嘴填充状态有助于填充顶层表面的一些缝隙,但如填充过多则会导致表面上过度挤出和光点。" + +#: fdmprinter.def.json +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 "填充物和壁之间的重叠量占填充走线宽度的百分比。稍微重叠可让各个壁与填充物牢固连接。" + +#: fdmprinter.def.json +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 "填充物和壁之间的重叠量。 稍微重叠可让各个壁与填充物牢固连接。" + +#: fdmprinter.def.json +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,不进行任何回抽。该值通常应与加热区的长度相同。" + +#: fdmprinter.def.json +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 "水平面与喷嘴尖端上部圆锥形之间的角度。" + +#: fdmprinter.def.json +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 "塔顶角度。 该值越高,塔顶越尖,值越低,塔顶越平。" + +#: fdmprinter.def.json +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° 将使模型的外部遵循模型的轮廓。" + +#: fdmprinter.def.json +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 表明分支全长具有均匀的粗细度。稍微有些角度可以增加树形支撑的稳定性。" + +#: fdmprinter.def.json +msgctxt "support_tree_angle description" +msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "分支的角度。使用较小的角度可增加垂直度和稳定性。使用较大的角度可支撑更大范围。" + +#: fdmprinter.def.json +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 度时为水平。 较小的角度会让支撑更为牢固,但需要更多材料。 负角会让支撑底座比顶部宽。" + +#: fdmprinter.def.json +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 "在一层中的每个多边形上引入的点的平均密度。 注意,多边形的原始点被舍弃,因此低密度导致分辨率降低。" + +#: fdmprinter.def.json +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 "在每个走线部分引入的随机点之间的平均距离。 注意,多边形的原始点被舍弃,因此高平滑度导致分辨率降低。 该值必须大于模糊皮肤厚度的一半。" + +#: fdmprinter.def.json +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "打印头移动的默认加速度。" + +#: fdmprinter.def.json +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 "用于打印的默认温度。 应为材料的\"基本\"温度。 所有其他打印温度均应使用基于此值的偏移量" + +#: fdmprinter.def.json +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 "用于加热打印平台的默认温度。这应该作为打印平台的“基础”温度。所有其他打印温度均应基于此值进行调整" + +#: fdmprinter.def.json +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 则会增大表面线条的缝隙。" + +#: fdmprinter.def.json +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 "支撑结构底板的密度。 较高的值会在模型顶部产生更好的支撑粘着。" + +#: fdmprinter.def.json +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 "支撑结构顶板的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。" + +#: fdmprinter.def.json +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 则会增大表面线条的缝隙。" + +#: fdmprinter.def.json +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 则会增大表面线条的缝隙。" + +#: fdmprinter.def.json +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "机器可打印区域深度(Y 坐标)" + +#: fdmprinter.def.json +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "特殊塔的直径。" + +#: fdmprinter.def.json +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 "树形支撑最细分支的直径。较粗的分支更坚固。接近基础的分支会比这更粗。" + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "进料装置中材料驱动轮的直径。" + +#: fdmprinter.def.json +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 "树形支撑最粗分支的直径。较粗的主干更坚固;较细主干在构建板上占据的空间较小。" + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "下一层与前一层的高度差。" + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "熨平走线之间的距离。" + +#: fdmprinter.def.json +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "喷嘴和已打印部分之间在空驶时避让的距离。" + +#: fdmprinter.def.json +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 从打印平台移除。" + +#: fdmprinter.def.json +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 层。" + +#: fdmprinter.def.json +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 走线之间的距离。 间距应等于走线宽度,以便打造坚固表面。" + +#: fdmprinter.def.json +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 "从模型之间的边界到生成互锁结构的距离,以单元格衡量。单元格太少会导致粘附不良。" + +#: fdmprinter.def.json +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 可增强与打印平台的附着,但也会减少有效打印区域。" + +#: fdmprinter.def.json +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 "与不会生成互锁结构的模型外部的距离,以单元格衡量。" + +#: fdmprinter.def.json +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 "与喷嘴尖端的距离,喷嘴产生的热量在这段距离内传递到耗材中。" + +#: fdmprinter.def.json +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 "底部皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让皮肤与下面层的壁更好地粘着。 较低的值将节省所用的材料量。" + +#: fdmprinter.def.json +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 "皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让相邻层的层壁与皮肤更好地粘着。 较低的值将节省所用的材料量。" + +#: fdmprinter.def.json +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 "顶部皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让上方层的层壁与皮肤更好地粘着。 较低的值将节省所用的材料量。" + +#: fdmprinter.def.json +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "在擦拭刷上来回移动喷嘴头的距离。" + +#: fdmprinter.def.json +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 "为节省材料,填充线的端点将被缩短。此设置为这些线的端点形成的悬垂角度。" + +#: fdmprinter.def.json +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 "挤出时喷嘴冷却的额外速度。 使用相同的值表示挤出过程中进行加热时的加热速度损失。" + +#: fdmprinter.def.json +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 "用于打印支撑填充物第一层的挤出机组。 用于多重挤出。" + +#: fdmprinter.def.json +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 第一层的挤出器组。用于多重挤出。" + +#: fdmprinter.def.json +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 "用于打印支撑底板的挤出机组。 用于多重挤出。" + +#: fdmprinter.def.json +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 "用于打印支撑填充物的挤出机组。 用于多重挤出。" + +#: fdmprinter.def.json +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 中间层的挤出器组。用于多重挤出。" + +#: fdmprinter.def.json +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 "用于打印支撑顶板和底板的挤出机组。 用于多重挤出。" + +#: fdmprinter.def.json +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 "用于打印支撑顶板的挤出机组。 用于多重挤出。" + +#: fdmprinter.def.json +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 的挤出机组。用于多重挤出。" + +#: fdmprinter.def.json +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 的挤出机组。 用于多重挤出。" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "用于打印支撑的挤出机组。 用于多重挤出。" + +#: fdmprinter.def.json +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 顶层的挤出器组。用于多重挤出。" + +#: fdmprinter.def.json +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "用于打印填充的挤出机组。 用于多重挤出。" + +#: fdmprinter.def.json +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "用于打印内壁的挤出机组。 用于多重挤出。" + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "用于打印外壁的挤出机组。 用于多重挤出。" + +#: fdmprinter.def.json +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 "用于打印顶部和底部皮肤的挤出机组。 用于多重挤出。" + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "用于打印最顶部皮肤的挤出机组。 用于多重挤出。" + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "用于打印壁的挤出机组。 用于多重挤出。" + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "基础 Raft 层的风扇速度。" + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "中间 Raft 层的风扇速度。" + +#: fdmprinter.def.json +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Raft 的风扇速度。" + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "顶部 Raft 层的风扇速度。" + +#: fdmprinter.def.json +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 "在打印的填充中,亮度值决定了相应位置的最小密度的图像的文件位置。" + +#: fdmprinter.def.json +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 "一个图像的文件位置,在这个图像中,亮度值决定了在支持中相应位置的最小密度。" + +#: fdmprinter.def.json +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 "前几层的打印速度比模型的其他层慢,以便实现与打印平台的更好粘着,并改善整体的打印成功率。 该速度在这些层中会逐渐增加。" + +#: fdmprinter.def.json +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 更容易剥离。" + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "机器可打印区域高度(Z 坐标)" + +#: fdmprinter.def.json +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "用于打印模具的模型水平部分上方的高度。" + +#: fdmprinter.def.json +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 "风扇以正常速度旋转的高度。 在下方的层中,风扇速度逐渐从起始风扇速度增加到正常风扇速度。" + +#: fdmprinter.def.json +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 轴)之间的高度差。" + +#: fdmprinter.def.json +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 "喷嘴尖端与打印头最低部分之间的高度差。" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "挤出机切换后执行 Z 抬升的高度差。" + +#: fdmprinter.def.json +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "执行 Z 抬升的高度差。" + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "执行 Z 抬升的高度差。" + +#: fdmprinter.def.json +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 "每层的高度(以毫米为单位)。值越高,则打印速度越快,分辨率越低;值越低,则打印速度越慢,分辨率越高。" + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "在切换至密度的一半前指定密度的填充高度。" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "在切换至密度的一半前指定密度的支撑填充高度。" + +#: fdmprinter.def.json +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 "互锁结构梁的高度,以层数衡量。层数越少越坚固,但更容易出现缺陷。" + +#: fdmprinter.def.json +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 "互锁结构梁的高度,以层数衡量。层数越少越坚固,但更容易出现缺陷。" + +#: fdmprinter.def.json +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 "起始层高(以毫米为单位)。起始层越厚,与打印平台的粘着越轻松。" + +#: fdmprinter.def.json +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 "停留在模型上的支撑阶梯状底部的步阶高度。 较低的值会使支撑更难于移除,但过高的值可能导致不稳定的支撑结构。 设为零可以关闭阶梯状行为。" + +#: fdmprinter.def.json +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 "第一条边沿线与打印件第一层轮廓之间的水平距离。较小的间隙可使边沿更容易去除,同时在散热方面仍有优势。" + +#: fdmprinter.def.json +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 "" +"skirt 和打印第一层之间的水平距离。\n" +"这是最小距离。多个 skirt 走线将从此距离向外延伸。" + +#: fdmprinter.def.json +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 "为节省打印时间,填充线将被拉直。这是整条填充线上允许的最大悬垂角度。" + +#: fdmprinter.def.json +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "填充图案沿 X 轴移动此距离。" + +#: fdmprinter.def.json +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "填充图案沿 Y 轴移动此距离。" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。" + +#: fdmprinter.def.json +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "打印基础 Raft 层的抖动速度。" + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "打印中间 Raft 层的抖动速度。" + +#: fdmprinter.def.json +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "打印 Raft 的抖动速度。" + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "打印顶部 Raft 层的抖动速度。" + +#: fdmprinter.def.json +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 "将被移除的底部皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印底部皮肤时所耗用的时间和材料。" + +#: fdmprinter.def.json +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 "将被移除的皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印顶部/底部皮肤时所耗用的时间和材料。" + +#: fdmprinter.def.json +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 "将被移除的顶部皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印顶部皮肤时所耗用的时间和材料。" + +#: fdmprinter.def.json +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 "风扇以正常风扇速度旋转的层。 如果设置了正常风扇速度(高度),则该值将被计算并舍入为整数。" + +#: fdmprinter.def.json +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 "设定正常风扇速度和最大风扇速度之间阈值的层时间。 打印速度低于此时间的层使用正常风扇速度。 对于更快的层,风扇速度逐渐增加到最大风扇速度。" + +#: fdmprinter.def.json +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "回抽移动期间回抽的材料长度。" + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "打印平台材料已安装在打印机上。" + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "最大允许高度与基层高度不同。" + +#: fdmprinter.def.json +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 度时为水平。 较小的角度会降低渗出罩失效次数,但会耗费更多材料。" + +#: fdmprinter.def.json +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° 时,不会以任何方式更改模型。" + +#: fdmprinter.def.json +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² 将填充模型底部的所有孔。" + +#: fdmprinter.def.json +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 将减小。“最大偏移量”是“最大分辨率”的限制,因此如果两者冲突,则“最大偏移量”将始终保持有效。" + +#: fdmprinter.def.json +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 方向的最大距离。当分离结构之间的距离小于此值时,这些结构将合并为一体。" + +#: fdmprinter.def.json +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 "移动线材以补偿流量变化的最大距离(以毫米为单位)。" + +#: fdmprinter.def.json +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 将减小。" + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "打印起始层时的最大瞬时速度变化。" + +#: fdmprinter.def.json +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "打印头的最大瞬时速度变化。" + +#: fdmprinter.def.json +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "执行熨平时的最大瞬时速度变化。" + +#: fdmprinter.def.json +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "打印所有内壁时的最大瞬时速度变化。" + +#: fdmprinter.def.json +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "打印填充物时的最大瞬时速度变化。" + +#: fdmprinter.def.json +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "打印支撑底板时的最大瞬时速度变化。" + +#: fdmprinter.def.json +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "打印支撑填充物时的最大瞬时速度变化。" + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "打印最外壁时的最大瞬时速度变化。" + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "打印装填塔时的最大瞬时速度变化。" + +#: fdmprinter.def.json +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "打印支撑顶板和底板的最大瞬时速度变化。" + +#: fdmprinter.def.json +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "打印支撑顶板的最大瞬时速度变化。" + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "打印 skirt 和 brim 时的最大瞬时速度变化。" + +#: fdmprinter.def.json +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "打印支撑结构时的最大瞬时速度变化。" + +#: fdmprinter.def.json +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "打印壁时的最大瞬时速度变化。" + +#: fdmprinter.def.json +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "打印顶部表面皮肤层时的最大瞬时速度变化。" + +#: fdmprinter.def.json +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "打印顶部/底部层时的最大瞬时速度变化。" + +#: fdmprinter.def.json +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "进行空驶时的最大瞬时速度变化。" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "X 轴方向电机的最大速度。" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Y 轴方向电机的最大速度。" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Z 轴方向电机的最大速度。" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "耗材的最大速度。" + +#: fdmprinter.def.json +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 "停留在模型上的支撑阶梯状底部的最大步阶宽度。 较低的值会使支撑更难于移除,但过高的值可能导致不稳定的支撑结构。" + +#: fdmprinter.def.json +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "模具外侧与模型外侧之间的最短距离。" + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "打印头的最低移动速度。" + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "加热到可以开始打印的打印温度时的最低温度。" + +#: fdmprinter.def.json +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 "挤出机必须保持不活动以便喷嘴冷却的最短时间。 挤出机必须不使用此时间以上,才可以冷却到待机温度。" + +#: fdmprinter.def.json +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将不提供任何填充。" + +#: fdmprinter.def.json +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° 时,不提供任何支撑。" + +#: fdmprinter.def.json +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 "回抽发生所需的最小空驶距离。 这有助于在较小区域内实现更少的回抽。" + +#: fdmprinter.def.json +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,则将忽略此选项。" + +#: fdmprinter.def.json +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 * 最小偶数壁走线宽度。" + +#: fdmprinter.def.json +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 * 最小奇数壁走线宽度。" + +#: fdmprinter.def.json +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 "最低打印速度,排除因最短层时间而减速。 当打印机减速过多时,喷嘴中的压力将过低并导致较差的打印质量。" + +#: fdmprinter.def.json +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 所需的速度,并将通过移除无法处理的网格细节提高切片速度。" + +#: fdmprinter.def.json +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代码的速度,但是它可能导致模型的避免变得不那么准确。" + +#: fdmprinter.def.json +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 "使阶梯生效的区域最小坡度。该值较小可在较浅的坡度上更容易去除支撑,但该值过小可能会在模型的其他部分上产生某些很反常的结果。" + +#: fdmprinter.def.json +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 "在层中花费的最少时间。 这会迫使打印机减速,以便至少在一层中消耗此处所规定的时间。 这会让已打印材料充分冷却后再打印下一层。 如果提升头被禁用,且如果不这么做会违反“最小速度“,则层所花时间可能仍会少于最小层时间。" + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "为了清除足够的材料,装填塔每层的最小体积。" + +#: fdmprinter.def.json +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "您的 3D 打印机型号的名称。" + +#: fdmprinter.def.json +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\"。" + +#: fdmprinter.def.json +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 "喷嘴会在空驶时避开已打印的部分。 此选项仅在启用梳理功能时可用。" + +#: fdmprinter.def.json +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "在空走时,喷嘴避免了已打印的支撑。只有在启用了梳理时才可以使用此选项。" + +#: fdmprinter.def.json +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 "底层的数量。 在按底层厚度计算时,该值舍入为整数。" + +#: fdmprinter.def.json +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 的底板层中,围绕线型图案打印轮廓的次数。" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "支撑皮肤边缘的填充物的层数。" + +#: fdmprinter.def.json +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 "从构建板向上算起的初始底层数。在按底层厚度计算时,该值四舍五入为整数。" + +#: fdmprinter.def.json +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。" + +#: fdmprinter.def.json +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 走线可增强与打印平台的附着,但也会减少有效打印区域。" + +#: fdmprinter.def.json +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 走线可增强与打印平台的附着,但也会增加一些额外材料成本。" + +#: fdmprinter.def.json +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 层上方的顶层数量。 这些是模型所在的完全填充层。 第二层会产生比第一层更平滑的顶部表面。" + +#: fdmprinter.def.json +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 "顶层的数量。 在按顶层厚度计算时,该值舍入为整数。" + +#: fdmprinter.def.json +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 "最顶部皮肤层数。 通常只需一层最顶层就足以生成较高质量的顶部表面。" + +#: fdmprinter.def.json +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 "包围支撑的墙的数量。添加一堵墙可以使支持打印更加可靠,并且可以更好地支持挂起,但增加了打印时间和使用的材料。" + +#: fdmprinter.def.json +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 "包围支撑接触面底板的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。" + +#: fdmprinter.def.json +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 "包围支撑接触面顶板的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。" + +#: fdmprinter.def.json +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 "包围支撑接触面的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。" + +#: fdmprinter.def.json +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 "从中心开始计数的壁数量,需要在这些壁上传播变化。较小的值意味着不更改外壁的宽度。" + +#: fdmprinter.def.json +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 "壁数量。 在按壁厚计算时,该值舍入为整数。" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "喷嘴尖端的外径。" + +#: fdmprinter.def.json +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 "打印的填充材料的图案。直线和锯齿形填充交替在各层上变换方向,从而降低材料成本。每层都完整地打印网格、三角形、三六边形、立方体、八角形、四分之一立方体、十字和同心图案。螺旋二十四面体、立方体、四分之一立方体和八角形填充随每层变化,以使各方向的强度分布更均衡。闪电形填充尝试通过仅支撑物体顶部,将填充程度降至最低。" + +#: fdmprinter.def.json +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 "打印品支撑结构的图案。 提供的不同选项可实现或牢固或易于拆除的支撑。" + +#: fdmprinter.def.json +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "最顶层图案。" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "顶层/底层图案。" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "打印品底部第一层上的图案。" + +#: fdmprinter.def.json +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "用于熨平顶部表面的图案。" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "打印支撑底板的图案。" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "支撑与模型之间接触面的打印图案。" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "打印支撑顶板的图案。" + +#: fdmprinter.def.json +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "在该位置附近开始打印层中各个部分。" + +#: fdmprinter.def.json +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "起始层的打印最大瞬时速度变化。" + +#: fdmprinter.def.json +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "打印平台形状(不考虑不可打印区域)。" + +#: fdmprinter.def.json +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 "打印头的形状。这些是相对于打印头位置的坐标,打印头通常是其第一个挤出器的位置。打印头左侧和前方的尺寸必须采用负坐标。" + +#: fdmprinter.def.json +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 图案的四向交叉处的气槽大小,高度为图案与自身接触的位置。" + +#: fdmprinter.def.json +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 "挤出路径在可以进行滑行前应拥有的最小体积。 对于较小的挤出路径,鲍登管内累积的压力较少,因此滑行空间采用线性扩展。 该值应始终大于滑行空间。" + +#: fdmprinter.def.json +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)。" + +#: fdmprinter.def.json +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)。" + +#: fdmprinter.def.json +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 "打印所有内壁的速度。 以比外壁更快的速度打印内壁将减少打印时间。 将该值设为外壁速度和填充速度之间也可行。" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "打印连桥表面区域的速度。" + +#: fdmprinter.def.json +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "打印填充的速度。" + +#: fdmprinter.def.json +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "打印发生的速度。" + +#: fdmprinter.def.json +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 层的速度。 该层应以很慢的速度打印,因为喷嘴所出的材料量非常高。" + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "打印桥壁的速度。" + +#: fdmprinter.def.json +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 "风扇在打印开始时旋转的速度。 在随后的层中,风扇速度逐渐增加到对应“正常风扇速度(高度)”的水平。" + +#: fdmprinter.def.json +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 "风扇旋转达到阈值前的速度。 当一层的打印速度超过阈值时,风扇速度逐渐朝最大风扇速度增加。" + +#: fdmprinter.def.json +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 "风扇在最小层时间上旋转的速度。 当达到阈值时,风扇速度在正常风扇速度和最大风扇速度之间逐渐增加。" + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "回抽移动期间耗材装填的速度。" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "擦拭回抽移动期间耗材装填的速度。" + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "喷嘴切换回抽后耗材被推回的速度。" + +#: fdmprinter.def.json +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "回抽移动期间耗材回抽和装填的速度。" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "擦拭回抽移动期间耗材回抽和装填的速度。" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "喷嘴切换回抽期间耗材回抽的速度。" + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "回抽移动期间耗材回抽的速度。" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "擦拭回抽移动期间耗材回抽的速度。" + +#: fdmprinter.def.json +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 "回抽耗材的速度。 较高的回抽速度效果较好,但回抽速度过高可能导致耗材磨损。" + +#: fdmprinter.def.json +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 "打印支撑底板的速度。 以较低的速度打印可以改善支撑在模型顶部的粘着。" + +#: fdmprinter.def.json +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 "打印支撑填充物的速度。 以较低的速度打印填充物可改善稳定性。" + +#: fdmprinter.def.json +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 层的速度。 该层应以很慢的速度打印,因为喷嘴所出的材料量非常高。" + +#: fdmprinter.def.json +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 "打印最外壁的速度。 以较低速度打印外壁可改善最终皮肤质量。 但是,如果内壁速度和外壁速度差距过大,则将对质量产生负面影响。" + +#: fdmprinter.def.json +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 "打印装填塔的速度。 以较慢速度打印装填塔可以在不同耗材之间的粘着欠佳时使其更加稳定。" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "打印冷却风扇旋转的速度。" + +#: fdmprinter.def.json +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "打印 Raft 的速度。" + +#: fdmprinter.def.json +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 "打印支撑顶板和底板的速度。 以较低的速度打印可以改善悬垂质量。" + +#: fdmprinter.def.json +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 "打印支撑顶板的速度。 以较低的速度打印可以改善悬垂质量。" + +#: fdmprinter.def.json +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。" + +#: fdmprinter.def.json +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 "打印支撑结构的速度。 以更高的速度打印支撑可极大地缩短打印时间。 支撑结构的表面质量并不重要,因为在打印后会将其移除。" + +#: fdmprinter.def.json +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 层的速度。 这些层应以较慢的速度打印,以便喷嘴缓慢地整平临近的表面走线。" + +#: fdmprinter.def.json +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 垂直移动实现抬升的速度。一般小于打印速度,因为打印平台或打印机的十字轴较难移动。" + +#: fdmprinter.def.json +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "打印壁的速度。" + +#: fdmprinter.def.json +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "通过顶部表面的速度。" + +#: fdmprinter.def.json +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "为完全脱落耗材而抽回耗材的速度。" + +#: fdmprinter.def.json +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "打印顶部表面皮肤层的速度。" + +#: fdmprinter.def.json +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "打印顶部/底部层的速度。" + +#: fdmprinter.def.json +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "进行空驶的速度。" + +#: fdmprinter.def.json +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% 的值,因为在滑行移动期间鲍登管中的压力会下降。" + +#: fdmprinter.def.json +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 "起始层的速度。建议采用较低的值以便改善与构建板的粘着。不会影响构建板自身的粘着结构,如边沿和筏。" + +#: fdmprinter.def.json +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 "打印起始层的速度。 建议采用较低的值以便改善与打印平台的粘着。" + +#: fdmprinter.def.json +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 "起始层中的空驶速度。 建议采用较低的值,以防止将之前打印的部分从打印平台上拉离。 该设置的值可以根据空驶速度和打印速度的比率自动计算得出。" + +#: fdmprinter.def.json +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "耗材在完全脱落时的温度。" + +#: fdmprinter.def.json +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,将不会调整构建体积温度。" + +#: fdmprinter.def.json +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "当另一个喷嘴正用于打印时该喷嘴的温度。" + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "打印结束前开始冷却的温度。" + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +msgstr "用于打印第一层的温度。 设为 0 即禁用对起始层的特别处理。" + +#: fdmprinter.def.json +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "用于打印的温度。" + +#: fdmprinter.def.json +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,则在打印第一层期间保持不加热构建板。" + +#: fdmprinter.def.json +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,则保持不加热构建板。" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "用于清除材料的温度,应大致等于可达到的最高打印温度。" + +#: fdmprinter.def.json +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 "打印品中底层的厚度。 此值除以层高定义底层数量。" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "支撑皮肤边缘的额外填充物的厚度。" + +#: fdmprinter.def.json +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 "支撑与模型在底部或顶部接触的接触面厚度。" + +#: fdmprinter.def.json +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 "支撑底板的厚度。 这会控制支撑所停放的模型顶部区域所打印的密集层数量。" + +#: fdmprinter.def.json +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 "支撑顶板的厚度。 这会控制模型所停放的支撑顶部密集层的数量。" + +#: fdmprinter.def.json +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 "打印品中顶层的厚度。 该值除以层高定义顶层的数量。" + +#: fdmprinter.def.json +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 "打印品中顶层/底层的厚度。 该值除以层高定义顶层/底层的数量。" + +#: fdmprinter.def.json +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 "水平方向的壁厚度。 此值除以壁线宽度定义壁数量。" + +#: fdmprinter.def.json +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 "填充材料每层的厚度。 该值应始终为层高的乘数,否则应进行舍入。" + +#: fdmprinter.def.json +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 "支撑填充材料每层的厚度。 该值应始终为层高的乘数,否则应进行舍入。" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "需要生成的 G-code 类型。" + +#: fdmprinter.def.json +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "该体积如不进行滑行则会渗出。 该值一般应接近喷嘴立方直径。" + +#: fdmprinter.def.json +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "机器可打印区域宽度(X 坐标)" + +#: fdmprinter.def.json +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 可增强与打印平台的附着,但也会增加一些额外材料成本。" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "互锁结构梁的宽度。" + +#: fdmprinter.def.json +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "装填塔的宽度。" + +#: fdmprinter.def.json +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 "在其中进行抖动的宽度。 建议让此值低于外壁宽度,因为内壁不会更改。" + +#: fdmprinter.def.json +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 "执行最大回抽计数的范围。 该值应与回抽距离大致相同,以便一次回抽通过同一块材料的次数得到有效限制。" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "装填塔位置的 X 坐标。" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "装填塔位置的 y 坐标。" + +#: fdmprinter.def.json +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "场景中存在支撑网格。此设置受 Cura 控制。" + +#: fdmprinter.def.json +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 "此参数用于控制挤出机在开始打印桥壁前应该滑行的距离。在开始打印连桥之前滑行,可以降低喷嘴中的压力,并保证打印出平滑的连桥。" + +#: fdmprinter.def.json +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 轮廓中小于此半圆形的孔。" + +#: fdmprinter.def.json +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 "此设置限制在最小挤出距离范围内发生的回抽数。 此范围内的额外回抽将会忽略。 这避免了在同一件耗材上重复回抽,从而导致耗材变扁并引起磨损问题。" + +#: fdmprinter.def.json +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 "这将在模型周围创建一个壁,该壁会吸住(热)空气并遮住外部气流。 对于容易卷曲的材料尤为有用。" + +#: fdmprinter.def.json +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 方向(水平)上缩放模型。" + +#: fdmprinter.def.json +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 方向(垂直)上缩放模型。" + +#: fdmprinter.def.json +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 "为了补偿材料在冷却时的收缩,将用此因子缩放模型。" + +#: fdmprinter.def.json +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "顶部层数" + +#: fdmprinter.def.json +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "顶部皮肤扩展距离" + +#: fdmprinter.def.json +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "顶部皮肤移除宽度" + +#: fdmprinter.def.json +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "顶部表面皮肤加速度" + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "顶部皮肤挤出机" + +#: fdmprinter.def.json +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "顶部表层流量" + +#: fdmprinter.def.json +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "顶部表面皮肤抖动速度" + +#: fdmprinter.def.json +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "顶部表面皮肤层" + +#: fdmprinter.def.json +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "顶部表面皮肤走线方向" + +#: fdmprinter.def.json +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "顶部表面皮肤线宽" + +#: fdmprinter.def.json +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "顶部表面皮肤图案" + +#: fdmprinter.def.json +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "顶部表面皮肤速度" + +#: fdmprinter.def.json +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "顶层厚度" + +#: fdmprinter.def.json +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° 的角为垂直,将导致扩展所有皮肤。" + +#: fdmprinter.def.json +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "顶 / 底层" + +#: fdmprinter.def.json +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "顶 / 底层" + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "顶部/底部加速度" + +#: fdmprinter.def.json +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "顶部/底部挤出机" + +#: fdmprinter.def.json +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "顶部/底部流量" + +#: fdmprinter.def.json +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "顶部/底部抖动速度" + +#: fdmprinter.def.json +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "顶层/底层走线方向" + +#: fdmprinter.def.json +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "走线宽度(顶层 / 底层)" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "顶部 / 底部走线图案" + +#: fdmprinter.def.json +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "速度(顶部 / 底部)" + +#: fdmprinter.def.json +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "顶层 / 底层厚度" + +#: fdmprinter.def.json +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "支撑打印平台" + +#: fdmprinter.def.json +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "塔直径" + +#: fdmprinter.def.json +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "塔顶板角度" + #: fdmprinter.def.json msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "在将模型从文件中载入时应用在模型上的转换矩阵。" -#~ msgctxt "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "打印头 2D 轮廓图(包含风扇盖)。" - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "先外壁后内壁" - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "启用时以从外向内的顺序打印壁。 当使用高粘度塑料如 ABS 时,这有助于提高 X 和 Y 的尺寸精度;但是,它可能会降低外表面打印质量,特别是在悬垂部分。" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "补偿壁重叠" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "在壁已经存在时补偿所打印壁部分的流量。" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "补偿外壁重叠" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "在外壁已经存在时补偿所打印外壁部分的流量。" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "补偿内壁重叠" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "在内壁已经存在时补偿所打印内壁部分的流量。" - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "最小壁流量" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "壁线允许的最小百分比流量。当某个壁靠近现有壁时,壁重叠补偿可减小其流量。流量小于此值的壁将由空驶替代。在使用此设置时,您必须启用壁重叠补偿并在打印内壁之前打印外壁。" - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "首选回抽" - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "如启用,会使用回抽而不是梳理取代流量低于最小流量阈值的壁的空驶。" - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "填充壁之间空隙" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "在没有墙壁适合的位置填充墙壁之间的间隙。" - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "都不填充" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "全部填充" - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "滤除微小的间隙" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "滤除微小的间隙以减少模型外的光点。" - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "均衡耗材流量" - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "以较快的速度打印比正常走线更细的走线,使每秒挤出的材料量保持相同。 模型中较薄的部分可能需要以低于设置中所提供宽度的走线宽度来打印走线。 该设置控制这些走线的速度变化。" - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "均流最大速度" - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "调整打印速度以便均衡流量时的最大打印速度。" - -#~ msgctxt "machine_start_gcode description" -#~ msgid "G-code commands to be executed at the very start - separated by \\n." -#~ msgstr "在开始时执行的 G-code 命令 - 以 \\n 分行。" - -#~ msgctxt "machine_end_gcode description" -#~ msgid "G-code commands to be executed at the very end - separated by \\n." -#~ msgstr "在结束前执行的 G-code 命令 - 以 \\n 分行。" - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ 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 (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ msgstr "打印的填充材料的图案。直线和锯齿形填充交替在各层上变换方向,从而降低材料成本。每层都完整地打印网格、三角形、三六边形、立方体、八角形、四分之一立方体、十字和同心图案。螺旋二十四面体、立方体、四分之一立方体和八角形填充随每层变化,以使各方向的强度分布更均衡。闪电形填充尝试通过仅支撑物体的(内)顶部,将填充程度降至最低。因此,填充百分比仅在支撑模型所需的无论何种物体之下的一层“有效”。" - -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "对于修剪树形外端的情况,闪电形填充层与紧接其上的一层可存在的区别。在给定的厚度下测得的角度。" - -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ 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." -#~ msgstr "打印填充材料的图案。线条和锯齿形填充在交替层上交换方向,从而降低材料成本。网格、三角形、内六角、立方体、八角形、四面体、交叉和同心图案在每层完整打印。螺旋二十四面体、立方体、四面体和八角形填充随每层变化,以在各个方向提供更均衡的强度分布。" - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "模具外侧和模型外侧之间的最小距离。" - -#~ msgctxt "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "步进电机前进多少步将导致挤出一毫米。" - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "当非零的时候,梳理比这段距离更长的旅行移动将会使用撤回。" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "将挤出机偏移量应用到坐标轴系统。" - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ 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, while an angle of 90° is vertical." -#~ msgstr "如果模型的顶部和/或底部表面的角度大于此设置,则不要扩展其顶部/底部皮肤。 这会避免扩展在模型表面有接近垂直的坡度时所形成的狭窄皮肤区域。 0° 的角为水平,90° 的角为垂直。" - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ 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 lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "在考虑多个重叠的填充网格时确定此网格的优先级。其中有多个填充网格重叠的区域将采用等级最低的网格的设置。具有较高顺序的填充网格将修改具有较低顺序的填充网格和普通网格的填充。" - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "用于加热打印平台的温度。如果该值为 0,将不会调整热床。" - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "用于第一层加热打印平台的温度。" - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "收缩率" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "百分比收缩率。" - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ 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 "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "填充网格顺序" - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "确定哪个填充网格在另一个填充网格的填充物内。 顺序较高的填充网格将修改顺序较低的填充网格以及普通网格的填充物。" - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "树形支撑" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "生成树形支撑,用分支支撑打印的模型。这可以减少材料用量和缩短打印时间,但会大幅增加切片时间。" - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "如何对带有对角线表面的层进行切片。层面积可以根据层的中心与表面 (Middle) 相交的位置生成。或者每一层的面积可以为落在整个层高度中成形体积内的面积 (Exclusive),或者为落在层中任何位置的面积 (Inclusive)。Exclusive 保留大部分细节,Inclusive 可实现最佳匹配,而 Middle 需要的处理时间最少。" - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "意面式填充" - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "经常打印填充物,使得耗材在模型内部混乱地卷曲。 这会缩短打印时间,但行为会难以预测。" - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "意面式填充步阶" - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "是否逐步打印意面式填充或在打印结束时挤出所有填充耗材。" - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "意面式填充 - 最大填充角度" - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "相对于打印物内部的 Z 轴,之后将填充意面式填充物区域的最大角度。 降低此值会导致模型中的更多成角度部分在每层填充。" - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "意面式填充 - 最大填充高度" - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "可以从顶部组合和填充的内部空间的最大高度。" - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "意面式嵌入" - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "从其开始打印意面式填充物的壁偏移量。" - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "意面式流量" - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "调整意面式填充的密度。 注意,填充密度仅控制填充图案的走线间距,而不是意面式填充的挤出量。" - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "意面式填充额外体积" - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "一个用于调整每次进行意面式填充时挤出总量的修正期。" - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "材料 GUID,此项为自动设置。 " - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "耗材停放距离" - -#~ msgctxt "machine_filament_park_distance description" -#~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used." -#~ msgstr "与喷嘴尖端的距离,当不再使用挤出机时会将耗材停放在此区域。" - -#~ msgctxt "material_flush_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Material Station 内部值" - -#~ msgctxt "material_flush_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Material Station 内部值" - -#~ msgctxt "material_end_of_filament_purge_speed label" -#~ msgid "End Of Filament Purge Speed" -#~ msgstr "线末清除速度" - -#~ msgctxt "material_end_of_filament_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Material Station 内部值" - -#~ msgctxt "material_end_of_filament_purge_length label" -#~ msgid "End Of Filament Purge Length" -#~ msgstr "线末清除长度" - -#~ msgctxt "material_end_of_filament_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Material Station 内部值" - -#~ msgctxt "material_maximum_park_duration description" -#~ msgid "Material Station internal value" -#~ msgstr "Material Station 内部值" - -#~ msgctxt "material_no_load_move_factor description" -#~ msgid "Material Station internal value" -#~ msgstr "Material Station 内部值" - -#~ msgctxt "retraction_enable description" -#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " -#~ 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 "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "category_fixes" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "category_blackmagic" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "实验性!" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "机器头多边形" - -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "打印头 2D 轮廓图(不包含风扇盖)。" - -#~ 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 only possible if 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 "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "树形支撑壁厚度" - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "树形支撑分支的壁厚度。较厚的壁需要的打印时间更长,但不易掉落。" - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "树形支撑壁走线次数" - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "树形支撑的分支壁数量。较厚的壁需要的打印时间更长,但不易掉落。" - -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. 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。启用此设置可能会影响图层变化时的回抽。请使用“擦拭回抽”设置来控制擦拭脚本将在其中工作的图层回抽。" - -#~ msgctxt "max_extrusion_before_wipe description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "开始下一轮喷嘴擦拭前,可挤出的最大材料量。" - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "回抽装填速度" - -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "回抽后擦拭 Z 抬升" - -#~ msgctxt "wipe_hop_enable 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 "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ 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 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 not be generated." -#~ msgstr "支撑底板的最小面积。将不会生成面积小于此值的多边形。" - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "交替皮肤旋转" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "交替打印顶部/底部层的方向。 通常它们只进行对角线打印。 此设置添加仅限 X 和仅限 Y 的方向。" - -#~ 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 compensate." -#~ msgstr "以毫米为单位的最大补偿距离。" - -#~ msgctxt "flow_rate_extrusion_offset_factor label" -#~ msgid "Flow rate compensation factor" -#~ msgstr "流量补偿因子" - -#~ msgctxt "flow_rate_extrusion_offset_factor description" -#~ msgid "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "流量的倍增因子-> 距离转换。" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "自适应图层阈值" - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ 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." -#~ msgstr "悬垂超过此角度的壁将使用悬垂壁设置打印。该值为 90 时,不会将任何壁视为悬垂。" - -#~ 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 adhestion and accuracy." -#~ msgstr "微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。" - -#~ msgctxt "small_feature_speed_factor_0 label" -#~ msgid "First 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 adhestion and accuracy." -#~ msgstr "第一层的微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。" - -#~ msgctxt "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "再一次经过顶部表面,但不挤出材料。 这是为了进一步融化顶部的塑料,打造更平滑的表面。" - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "开始具有相同部分的层" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "每一层都在相同点附近开始打印模型,这样我们就不用在开始新层时打印上一层结束的部分。 这会打印出更好的悬垂和较小的部分,但会增加打印时间。" - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ 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." -#~ msgstr "在最大分辨率设置中减小分辨率时,允许的最大偏移量。如果增加该值,打印作业的准确性将降低,G-code 将减小。" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "G-code 风格" - -#~ 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." -#~ msgstr "控制模型轮廓上的各个角是否影响缝隙的位置。 “无”意味着各个角不影响缝隙位置。 “隐藏缝隙”会使缝隙更可能出现在内侧角上。 “外露缝隙”会使缝隙更可能出现在外侧角上。 “隐藏或外露缝隙”会使缝隙更可能出现在内侧或外侧角上。" - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "忽略小 Z 间隙" - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "当模型具有小的垂直间隙时,可能会花费大约 5% 的额外计算时间来生成这些狭窄空间中的顶部和底部皮肤。 这种情况下,禁用该设置。" - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "用于打印体积的温度。如果该值为 0,将不会调整打印体积温度。" - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." -#~ msgstr "当从支撑移动到支撑直线时,省略撤回。启用这个设置可以节省打印时间,但是可以在支撑结构中产生出色的字符串。" - -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "最大 Z 速度" - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "打印平台移动的最大速度。 将该值设为零会使打印为最大 Z 速度采用固件默认值。" - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." -#~ msgstr "支撑结构间在 X/Y 方向的最大距离。 当分离结构之间的距离小于此值时,这些结构将合并为一个。" - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "最小直径" - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "将由专门的支撑塔支撑的小区域 X/Y 轴方向的最小直径。" - -#~ msgctxt "prime_tower_circular label" -#~ msgid "Circular Prime Tower" -#~ msgstr "圆形装填塔" - -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "使装填塔成圆形。" - -#~ msgctxt "prime_tower_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." -#~ 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 "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "实验性功能: 让底部的支撑区域小于悬垂处的支撑区域。" - -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "已启用的挤出机数目" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "喷嘴外径" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "喷嘴长度" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "喷嘴角度" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "加热区长度" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "升温速度" - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "冷却速度" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "G-code 风格" - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "不允许区域" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "机器头多边形" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "机器头和风扇多边形" - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "十字轴高度" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "挤出机偏移量" - -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "使用自适应图层" - -#~ msgctxt "adaptive_layer_height_variation label" -#~ msgid "Adaptive layers maximum variation" -#~ msgstr "自适应图层最大变化" - -#~ msgctxt "adaptive_layer_height_variation_step label" -#~ msgid "Adaptive layers variation step size" -#~ msgstr "自适应图层变化步长" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "自适应图层阈值" - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "皮肤和壁之间的重叠量占皮肤走线宽度的百分比。稍微重叠可让各个壁与皮肤牢固连接。这是皮肤走线和最内壁的平均走线宽度的百分比。" - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "皮肤和壁之间的重叠量。 稍微重叠可让各个壁与皮肤牢固连接。" - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." -#~ msgstr "回抽量: 设为 0,不进行任何回抽。 该值通常应与加热区的长度相同。" - -#~ 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 and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." -#~ msgstr "梳理可在空驶时让喷嘴保持在已打印区域内。这会使空驶距离稍微延长,但可减少回抽需求。如果关闭梳理,则材料将回抽,且喷嘴沿着直线移动到下一个点。也可以避免顶部/底部皮肤区域的梳理和仅在填充物内进行梳理。请注意,“在填充物内”选项的操作方式与较早 Cura 版本中的“不在皮肤中”选项完全相同。" - -#~ 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 happend midway over infill this feature can reduce the top surface quality." -#~ 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. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "打印填充材料的图案。线条和锯齿形填充在交替层上交换方向,从而降低材料成本。网格、三角形、内六角、立方体、八角形、四面体、交叉和同心图案在每层完整打印。立方体、四面体和八角形填充随每层变化,以在各个方向提供更均衡的强度分布。" - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ 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 by combing within the infill only." -#~ msgstr "梳理可在空驶时让喷嘴保持在已打印区域内。 这会使空驶距离稍微延长,但可减少回抽需求。 如果关闭梳理,则材料将回抽,且喷嘴沿着直线移动到下一个点。 也可以通过仅在填充物内进行梳理避免梳理顶部/底部皮肤区域。" - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "同心 3D" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "同心 3D" - -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "立体同心圆" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "同心 3D" - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "Raft 走线间距" - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "装填塔厚度" - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "空装填塔的厚度。 如果厚度大于装填塔最小体积的一半,则将打造一个密集的装填塔。" - -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "切换后擦拭喷嘴" - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "切换挤出机后,在打印的第一个物件上擦去喷嘴上的渗出材料。 这会在渗出材料对打印品表面品质造成最小损害的位置进行缓慢安全的擦拭动作。" - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "装填塔清洗量" - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "在装填塔上进行擦拭时要清洗的耗材量。 清洗可用于补偿在喷嘴不活动期间由于渗出而损失的耗材。" - -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "桥壁最大悬垂" - -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ 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." -#~ msgstr "优化打印各个壁的顺序,以减少回抽次数和空驶距离。 启用此设置将对大部分零件有益,但有的则会耗费更长时间,因此请将优化和不优化的打印时间估计值进行对比。" - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "无皮肤" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "交替交叉 3D 气槽" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "仅在交叉 3D 图案的一半四向交叉处应用气槽,并在图案与自身接触的高度之间交替气槽的位置。" - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "挖空模型" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "移除所有填充物并让模型内部可以进行支撑。" - -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "相比底层高度所允许的最大高度(单位:毫米)。" - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ 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 "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "GCode 开始部分" - -#~ msgctxt "machine_start_gcode description" +#: fdmprinter.def.json +msgctxt "travel label" +msgid "Travel" +msgstr "移动" + +#: fdmprinter.def.json +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "空驶加速度" + +#: fdmprinter.def.json +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "空驶避让距离" + +#: fdmprinter.def.json +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "空驶抖动速度" + +#: fdmprinter.def.json +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "空驶速度" + +#: fdmprinter.def.json +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 "将模型作为仅表面、一个空间或多个具有松散表面的空间处理。 正常打印模式仅打印封闭的空间。 “表面”打印跟踪网格表面的单个壁,没有填充物,也没有顶部/底部皮肤。 \"两者都\"将封闭空间正常打印,并将任何剩余多边形作为表面打印。" + +#: fdmprinter.def.json +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "树形" + +#: fdmprinter.def.json +msgctxt "support_tree_angle label" +msgid "Tree Support Branch Angle" +msgstr "树形支撑分支角度" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter label" +msgid "Tree Support Branch Diameter" +msgstr "树形支撑分支直径" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter_angle label" +msgid "Tree Support Branch Diameter Angle" +msgstr "树形支撑分支直径角度" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance label" +msgid "Tree Support Branch Distance" +msgstr "树形支撑分支间距" + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution label" +msgid "Tree Support Collision Resolution" +msgstr "树形支撑碰撞分辨率" + +#: fdmprinter.def.json +msgctxt "support_tree_max_diameter label" +msgid "Tree Support Trunk Diameter" +msgstr "树形支撑主干直径" + +#: fdmprinter.def.json +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "内六角" + +#: fdmprinter.def.json +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "三角形" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "三角形" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "三角形" + +#: fdmprinter.def.json +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "三角形" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "三角形" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "联合覆盖体积" + +#: fdmprinter.def.json +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 "将使用正常壁设置打印短于此长度且没有支撑的壁。将使用桥壁设置打印长于此长度且没有支撑的壁。" + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "使用自适应图层" + +#: fdmprinter.def.json +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "使用塔" + +#: fdmprinter.def.json +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 "空驶时使用单独的加速度。如果禁用,空驶将使用打印线在目的地的加速度值。" + +#: fdmprinter.def.json +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 "空驶时使用单独的抖动速度。如果禁用,空驶将使用打印线在目的地的抖动速度值。" + +#: fdmprinter.def.json +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 脚本。" + +#: fdmprinter.def.json +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 "使用专门的塔来支撑较小的悬垂区域。 这些塔的直径比它们所支撑的区域要大。 在靠近悬垂物时,塔的直径减小,形成顶板。" + +#: fdmprinter.def.json +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 "使用此网格修改与其重叠的其他网格的填充物。 利用此网格的区域替换其他网格的填充区域。 建议仅为此网格打印一个壁,而不打印顶部/底部皮肤。" + +#: fdmprinter.def.json +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "使用此网格指定支撑区域。 可用于生成支撑结构。" + +#: fdmprinter.def.json +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 "使用此网格指定模型的任何部分不应被检测为悬垂的区域。 可用于移除不需要的支撑结构。" + +#: fdmprinter.def.json +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "用户指定" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "垂直缩放因子收缩补偿" + +#: fdmprinter.def.json +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 "切片层的垂直公差。一般通过穿过每层厚度的中间截取横截面而产生该层的轮廓(中间)。此外,每层均可有一些区域,这些区域落入体积内部并遍布该层的整个厚度(排除),或层具有一些区域,这些区域落入该层内的任意位置(包含)。“包含”保留最多的细节,“排除”有利于最佳贴合,而“中间”保持最接近原始表面。" + +#: fdmprinter.def.json +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "等待打印平台加热" + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "等待喷嘴加热" + +#: fdmprinter.def.json +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "壁加速度" + +#: fdmprinter.def.json +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "壁分派次数" + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "壁挤出机" + +#: fdmprinter.def.json +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "壁流量" + +#: fdmprinter.def.json +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "壁抖动速度" + +#: fdmprinter.def.json +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "壁走线次数" + +#: fdmprinter.def.json +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "走线宽度(壁)" + +#: fdmprinter.def.json +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "壁顺序" + +#: fdmprinter.def.json +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "速度(壁)" + +#: fdmprinter.def.json +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "壁厚" + +#: fdmprinter.def.json +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "壁过渡长度" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "壁过渡筛选距离" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "壁过渡筛选边距" + +#: fdmprinter.def.json +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "壁过渡阈值角度" + +#: fdmprinter.def.json +msgctxt "shell label" +msgid "Walls" +msgstr "墙" + +#: fdmprinter.def.json +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 时,不会将任何壁视为悬垂。受到支撑支持的悬垂也不会被视为悬垂。" + +#: fdmprinter.def.json +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 "在检查支撑上方或下方是否有模型时,采用指定高度的步阶。 值越低切片速度越慢,而较高的值会导致在部分应有支撑接触面的位置打印一般的支撑。" + +#: fdmprinter.def.json +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 "启用后,可优化打印填充走线的顺序,缩短空驶距离。空驶时间的缩短很大程度上取决于被切割的模型、填充图案、密度等。请注意,对于具有许多小填充区域的一些模型,分割模型的时间可能会大幅增加。" + +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "启用时,会为支撑正上方的表面区域更改打印冷却风扇速度。" + +#: fdmprinter.def.json +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 缝坐标为相对于各个部分中心的值。 禁用时,坐标定义打印平台上的一个绝对位置。" + +#: fdmprinter.def.json +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 "当大于零时,比这段距离更长的梳理空驶将会使用回抽。如果设置为零,则没有最大值,梳理空驶将不会使用回抽。" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "打印连桥表面区域时,将挤出的材料量乘以此值。" + +#: fdmprinter.def.json +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "打印桥壁时,将挤出的材料量乘以此值。" + +#: fdmprinter.def.json +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 "打印连桥第二层表面时,将挤出的材料量乘以此值。" + +#: fdmprinter.def.json +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 "打印连桥第三层表面时,将挤出的材料量乘以此值。" + +#: fdmprinter.def.json +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 "当因最低层时间达到最低速度时,将打印头从打印品上提升,并等候达到最低层时间。" + +#: fdmprinter.def.json +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 "当模型中只有几个分层有微小垂直间隙时,通常狭窄空间的分层周围应有表层。如果垂直间隙非常小,则启用此设置不生成表层。这缩短了打印时间和切片时间,但从技术方面看,会使填充物暴露在空气中。" + +#: fdmprinter.def.json +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 "在奇数和偶数壁之间创建过渡时。角度大于此设置的楔形将没有过渡,并且不会在中心打印壁来填充剩余空间。减少此设置会减少这些中心壁的数量和长度,但可能会留下空隙或挤出过多。" + +#: fdmprinter.def.json +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 "当随着零件变薄而在不同数量的壁之间过渡时,会分配一定数量的间距来分割或连接壁走线。" + +#: fdmprinter.def.json +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 "在擦拭时,构建板会降低以在喷嘴与打印件之间形成间隙。这样可防止喷嘴在行程中撞击打印件,降低从构建板上撞掉打印件的可能性。" + +#: fdmprinter.def.json +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 "每当回抽完成时,打印平台会降低以便在喷嘴和打印品之间形成空隙。 它可以防止喷嘴在空驶过程中撞到打印品,降低将打印品从打印平台撞掉的几率。" + +#: fdmprinter.def.json +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 距离来禁用此选项。" + +#: fdmprinter.def.json +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 坐标是否位于可打印区域的中心。" + +#: fdmprinter.def.json +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 轴坐标)。" + +#: fdmprinter.def.json +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 轴坐标)。" + +#: fdmprinter.def.json +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 轴坐标)。" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "挤出器是否共用一个加热器,而不是每个挤出器都有自己的加热器。" + +#: fdmprinter.def.json +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”参数描述每个挤出器的初始缩回状态。" + +#: fdmprinter.def.json +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "机器是否有加热打印平台。" + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "机器是否能够稳定构建体积温度。" + +#: fdmprinter.def.json +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),而不是使用模型在其中保存的坐标系统。" + +#: fdmprinter.def.json +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 外部控制喷嘴温度。" + +#: fdmprinter.def.json +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 前端将自动禁用此设置。" + +#: fdmprinter.def.json +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 前端将自动禁用此设置。" + +#: fdmprinter.def.json +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 个)。启用此设置可能会影响图层变化时的回抽。请使用“擦拭回抽”设置来控制擦拭脚本将在其中工作的图层回抽。" + +#: fdmprinter.def.json +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 "是否插入一条命令,等待开始时达到打印平台温度。" + +#: fdmprinter.def.json +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 也可作为装填用途,这种情况下关闭此设置可以节省时间。" + +#: fdmprinter.def.json +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 轴之间的距离,则可使用排队打印模式。" + +#: fdmprinter.def.json +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "这台打印机是否需要显示它在不同的 JSON 文件中所描述的不同变化。" + +#: fdmprinter.def.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 属性来收回材料。" + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "是否等待开始时达到喷嘴温度。" + +#: fdmprinter.def.json +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "单一填充走线宽度。" + +#: fdmprinter.def.json +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "支撑顶板或底板单一走线宽度。" + +#: fdmprinter.def.json +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "打印顶部区域单一走线宽度。" + +#: fdmprinter.def.json +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 "单一走线宽度。 一般而言,每条走线的宽度应与喷嘴的宽度对应。 但是,稍微降低此值可以产生更好的打印成果。" + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "单一装填走线宽度。" + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "单一 skirt(裙摆)或 brim(边缘)走线宽度。" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "单一支撑底板走线宽度。" + +#: fdmprinter.def.json +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "单一支撑顶板走线宽度。" + +#: fdmprinter.def.json +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "单一支撑结构走线宽度。" + +#: fdmprinter.def.json +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "单一顶层/底层走线宽度。" + +#: fdmprinter.def.json +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "适用于所有壁线(最外壁线除外)的单一壁线宽度。" + +#: fdmprinter.def.json +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "单一壁线宽度。" + +#: fdmprinter.def.json +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 层的走线宽度。 这些走线应该是粗线,以便协助打印平台附着。" + +#: fdmprinter.def.json +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 层的走线宽度。 让第二层挤出更多会导致走线粘着在打印平台上。" + +#: fdmprinter.def.json +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 顶部。" + +#: fdmprinter.def.json +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 "最外壁线宽度。 降低此值,可打印出更高水平的细节。" + +#: fdmprinter.def.json +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 "用于替换模型薄特征(根据最小特征尺寸)的壁的宽度。如果最小壁走线宽度比特征的厚度要薄,则壁将与特征本身一样厚。" + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "擦拭刷 X 轴坐标" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "擦拭抬升速度" + +#: fdmprinter.def.json +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "擦拭装填塔上的不活动喷嘴" + +#: fdmprinter.def.json +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "擦拭移动距离" + +#: fdmprinter.def.json +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "图层切换后擦拭喷嘴" + +#: fdmprinter.def.json +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "擦拭暂停" + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "擦拭重复计数" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "擦拭回抽距离" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "启用擦拭回抽" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "擦拭回抽额外装填量" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "擦拭回抽装填速度" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "擦拭回抽期间的回抽速度" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "擦拭回抽速度" + +#: fdmprinter.def.json +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "擦拭 Z 抬升" + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "擦拭 Z 抬升高度" + +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "在填充物内" + +#: fdmprinter.def.json +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 或其他具有模态工具命令的固件进行的双挤出器打印需要此项。" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "正向 X 限位开关" + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "擦拭开始处的 X 轴坐标。" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y 覆盖 Z" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "正向 Y 限位开关" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "正向 Z 限位开关" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "挤出机切换后的 Z 抬升" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "挤出机切换后的 Z 抬升高度" + +#: fdmprinter.def.json +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Z 抬升高度" + +#: fdmprinter.def.json +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "仅在已打印部分上 Z 抬升" + +#: fdmprinter.def.json +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Z 抬升速度" + +#: fdmprinter.def.json +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "回抽时 Z 抬升" + +#: fdmprinter.def.json +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Z 缝对齐" + +#: fdmprinter.def.json +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Z 缝位置" + +#: fdmprinter.def.json +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Z 缝相对" + +#: fdmprinter.def.json +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z 缝 X" + +#: fdmprinter.def.json +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z 缝 Y" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z 覆盖 X/Y" + +#: fdmprinter.def.json +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿状" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿形" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿形" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿形" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿形" + +#: fdmprinter.def.json +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿形" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿状" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿状" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "锯齿状" + +#: fdmprinter.def.json +msgctxt "travel description" +msgid "travel" +msgstr "空驶" + +#~ msgctxt "wireframe_strategy option compensate" +#~ msgid "Compensate" +#~ msgstr "补偿" + +#~ msgctxt "wireframe_top_jump description" +#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." +#~ msgstr "在上行走线的顶部创建一个小纽结,使连续的水平层有更好的机会与其连接。 仅应用于单线打印。" + +#~ msgctxt "wireframe_bottom_delay description" +#~ msgid "Delay time after a downward move. Only applies to Wire Printing." +#~ msgstr "向下移动后的延迟时间。 仅应用于单线打印。" + +#~ msgctxt "wireframe_top_delay description" +#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." +#~ msgstr "向上移动后的延迟时间,以便上行走线硬化。 仅应用于单线打印。" + +#~ msgctxt "wireframe_flat_delay description" +#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." +#~ msgstr "两个水平部分之间的延迟时间。 引入这样的延迟可以在连接点处与先前的层产生更好的附着,而太长的延迟会引起下垂。 仅应用于单线打印。" + +#~ msgctxt "wireframe_nozzle_clearance description" +#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." +#~ msgstr "喷嘴和水平下行线之间的距离。 较大的间隙会让斜下行线角度较平缓,进而使第二层的上行连接较少。 仅应用于单线打印。" + +#~ msgctxt "wireframe_up_half_speed description" #~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." +#~ "Distance of an upward move which is extruded with half speed.\n" +#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." #~ msgstr "" -#~ "在开始后执行的 G-code 命令 - 以 \n" -#~ " 分行" +#~ "以半速挤出的上行移动的距离。\n" +#~ "这会与之前的层产生更好的附着,而不会将这些层中的材料过度加热。 仅应用于单线打印。" -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "GCode 结束部分" +#~ msgctxt "wireframe_fall_down description" +#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "材料在向上挤出后倒塌的距离。 将对此距离进行补偿。 仅应用于单线打印。" -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "在结束前执行的 G-code 命令 - 以 \n" -#~ " 分行" +#~ msgctxt "wireframe_drag_along description" +#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "向上挤出材料与斜向下挤出一起拖动的距离。 将对此距离进行补偿。 仅应用于单线打印。" -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "G-code 代码风格" +#~ msgctxt "wireframe_flow_connection description" +#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." +#~ msgstr "向上或向下时的流量补偿。 仅应用于单线打印。" -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "需要生成的 G-code 代码类型" +#~ msgctxt "wireframe_flow_flat description" +#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." +#~ 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 GCode." -#~ msgstr "一般情况下,Cura 会尝试缝合网格中的小孔,并移除有大孔的部分层。 启用此选项将保留那些无法缝合的部分。 当其他所有方法都无法产生正确的 GCode 时,该选项应该被用作最后手段。" +#~ msgctxt "wireframe_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." +#~ msgstr "流量补偿:挤出的材料量乘以此值。 仅应用于单线打印。" -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. 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 Gcode script is output." -#~ msgstr "使用相对挤出而不是绝对挤出。 使用相对 E 步阶,对 Gcode 进行更轻松的后期处理。 但是,不是所有打印机均支持此功能,而且与绝对 E 步阶相比,它在沉积材料量上会产生非常轻微的偏差。 不论是否有此设置,挤出模式将始终设置为绝对挤出后才会输出任何 Gcode 脚本。" +#~ msgctxt "wireframe_strategy option knot" +#~ msgid "Knot" +#~ msgstr "纽结" -#~ msgctxt "infill_offset_x description" -#~ msgid "The infill pattern is offset this distance along the X axis." -#~ msgstr "填充图案沿 X 轴偏移此距离。" +#~ msgctxt "wireframe_straight_before_down description" +#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." +#~ msgstr "水平走线部分所覆盖的斜下行走线的百分比。 这可以防止上行线最顶端点下垂。 仅应用于单线打印。" -#~ msgctxt "infill_offset_y description" -#~ msgid "The infill pattern is offset this distance along the Y axis." -#~ msgstr "填充图案沿 Y 轴偏移此距离。" +#~ msgctxt "wireframe_enabled description" +#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." +#~ msgstr "只打印一个具有稀疏网状结构的外表面,在“稀薄的空气中”打印。 这是通过在给定的 Z 间隔水平打印模型的轮廓来实现的,这些间隔通过上行线和下行斜线连接。" -#~ msgctxt "infill_overlap 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 "wireframe_strategy option retract" +#~ msgid "Retract" +#~ msgstr "回抽" -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "皮肤和壁之间的重叠量,以走线宽度百分比表示。 稍微重叠可让各个壁与皮肤牢固连接。 这是皮肤线平均走线宽度和最内壁的百分比。" +#~ msgctxt "wireframe_printspeed description" +#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." +#~ msgstr "挤出材料时喷嘴移动的速度。 仅应用于单线打印。" -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "用于加热打印平台的温度。 如果打印平台温度为 0,则热床将不会为此次打印加热。" +#~ msgctxt "wireframe_printspeed_down description" +#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." +#~ msgstr "打印下行斜线的速度。 仅应用于单线打印。" -#~ msgctxt "wall_x_extruder_nr label" -#~ msgid "Inner Walls Extruder" -#~ msgstr "内壁挤出机" +#~ msgctxt "wireframe_printspeed_up description" +#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." +#~ 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, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "打印填充材料的图案。 线条和锯齿形填充在交替层上交换方向,从而降低材料成本。 网格、三角形、立方体、八角形、四面体和同心图案在每层完整打印。 立方体、四面体和八角形填充随每层变化,以在各个方向提供更均衡的强度分布。" +#~ msgctxt "wireframe_printspeed_bottom description" +#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." +#~ msgstr "打印第一层的速度,该层是唯一接触打印平台的层。 仅应用于单线打印。" -#~ msgctxt "zig_zaggify_infill description" -#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -#~ msgstr "使用沿内壁形状的走线连接填充图案与内壁相接的各端。 启用此设置会使填充更好地粘着在壁上,减少填充物效果对垂直表面质量的影响。 禁用此设置可减少使用的材料量。" +#~ msgctxt "wireframe_printspeed_flat description" +#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." +#~ 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 "" -#~ "skirt 和打印第一层之间的水平距离。\n" -#~ "这是最小距离,多个 skirt 走线将从此距离向外延伸。" +#~ msgctxt "wireframe_strategy description" +#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." +#~ msgstr "用于确定两个连续层在每个连接点连接的策略。 回抽可让上行走线在正确的位置硬化,但可能导致耗材磨损。 可以在上行走线的尾端进行打结以便提高与其连接的几率,并让走线冷却;但这会需要较慢的打印速度。 另一种策略是补偿上行走线顶部的下垂;然而,线条不会总是如预期的那样下降。" -#~ msgctxt "z_offset_layer_0 label" -#~ msgid "Initial Layer Z Offset" -#~ msgstr "起始层 Z 偏移量" +#~ msgctxt "wireframe_roof_inset description" +#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." +#~ msgstr "在从顶板轮廓向内进行连接时所覆盖的距离。 仅应用于单线打印。" -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "此值为挤出机与第一层正常高度之间的偏移量。 该值可以为正(升起),也可以为负(降下)。 如果挤出机略微升起,部分耗材类型会与打印平台实现更好的粘着。" +#~ msgctxt "wireframe_roof_drag_along description" +#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "向内线的端部在返回至顶板外部轮廓时被拖行的距离。 将对此距离进行补偿。 仅应用于单线打印。" -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Z 偏移锥形层" +#~ msgctxt "wireframe_roof_fall_down description" +#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "打印时,在“稀薄空气中”打印的水平顶板走线倒塌的距离。 将对此距离进行补偿。 仅应用于单线打印。" -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "当非零时,Z 偏移在多个层中逐步降至零。 值为 0 则表示,在打印品的各个层中 Z 偏移量保持不变。" +#~ msgctxt "wireframe_height description" +#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." +#~ msgstr "两个水平部分之间上行线和下行斜线的高度。 这决定网结构的整体密度。 仅应用于单线打印。" -#~ msgctxt "raft_smoothing description" -#~ msgid "This setting control 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 "wireframe_roof_outer_delay description" +#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." +#~ 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, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "打印填充材料的图案。 线条和锯齿形填充在交替层上的交换方向,从而降低材料成本。 网格、三角形、立方体、四面体和同心图案在每层完整打印。 立方体和四面体填充随每层变化,以在各个方向提供更均衡的强度分布。" +#~ msgctxt "wireframe_bottom_delay label" +#~ msgid "WP Bottom Delay" +#~ msgstr "WP 底部延迟" -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "正四面体" +#~ msgctxt "wireframe_printspeed_bottom label" +#~ msgid "WP Bottom Printing Speed" +#~ msgstr "WP 底部打印速度" -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "将皮肤扩展到填充物中" +#~ msgctxt "wireframe_flow_connection label" +#~ msgid "WP Connection Flow" +#~ msgstr "WP 连接流量" -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "扩展平面顶部和/或底部皮肤的皮肤区域。 默认情况下,皮肤会在环绕填充的壁线下方停止,但如果填充密度较低,则可能导致出现孔洞。 该设置将皮肤延展到壁线以外,因此下一层的填充物会停留在皮肤上。" +#~ msgctxt "wireframe_height label" +#~ msgid "WP Connection Height" +#~ msgstr "WP 连接高度" -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ msgstr "将顶部皮肤扩展到填充物中" +#~ msgctxt "wireframe_printspeed_down label" +#~ msgid "WP Downward Printing Speed" +#~ msgstr "WP 下降打印速度" -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "扩展顶部皮肤区域(上方有空气的区域),让它们支撑上方的填充物。" +#~ msgctxt "wireframe_drag_along label" +#~ msgid "WP Drag Along" +#~ msgstr "WP 拖行" -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "将底部皮肤扩展到填充物中" +#~ msgctxt "wireframe_up_half_speed label" +#~ msgid "WP Ease Upward" +#~ msgstr "WP 轻松上行" -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "扩展底部皮肤区域(下方有空气的区域),让它们由上下的填充层锚定。" +#~ msgctxt "wireframe_fall_down label" +#~ msgid "WP Fall Down" +#~ msgstr "WP 倒塌" -#~ msgctxt "expand_skins_expand_distance description" -#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." -#~ msgstr "皮肤扩展到填充物中的距离。 默认距离足以弥合填充线之间的间隙,并且在填充密度低时,可以防止在皮肤与壁接触的位置出现孔洞。 通常较小的距离就足够了。" +#~ msgctxt "wireframe_flat_delay label" +#~ msgid "WP Flat Delay" +#~ msgstr "WP 平面延迟" -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "跳过部分锯齿形连接" +#~ msgctxt "wireframe_flow_flat label" +#~ msgid "WP Flat Flow" +#~ msgstr "WP 平面流量" -#~ msgctxt "support_skip_some_zags description" -#~ msgid "Skip some ZigZags connections to make the support structure easier to break." -#~ msgstr "跳过部分锯齿形连接,让支撑结构更容易打破。" +#~ msgctxt "wireframe_flow label" +#~ msgid "WP Flow" +#~ msgstr "WP 打印流量" -#~ msgctxt "support_zag_skip_count label" -#~ msgid "ZigZag Connection Skip Count" -#~ msgstr "锯齿形连接跳过计数" +#~ msgctxt "wireframe_printspeed_flat label" +#~ msgid "WP Horizontal Printing Speed" +#~ msgstr "WP 水平打印速度" -#~ msgctxt "support_zag_skip_count description" -#~ msgid "Skip one in every N connection lines to make the support structure easier to break." -#~ msgstr "每隔 N 个连接线跳过一次,让支撑结构更容易打破。" +#~ msgctxt "wireframe_top_jump label" +#~ msgid "WP Knot Size" +#~ msgstr "WP 纽结大小" -#~ msgctxt "machine_show_variants label" -#~ msgid "Show machine variants" -#~ msgstr "显示机器型号" +#~ msgctxt "wireframe_nozzle_clearance label" +#~ msgid "WP Nozzle Clearance" +#~ msgstr "WP 喷嘴间隙" -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Wait for build plate heatup" -#~ msgstr "等待热床升温" +#~ msgctxt "wireframe_roof_drag_along label" +#~ msgid "WP Roof Drag Along" +#~ msgstr "WP 顶板拖行" -#~ msgctxt "material_print_temp_wait label" -#~ msgid "Wait for nozzle heatup" -#~ msgstr "等待热床升温" +#~ msgctxt "wireframe_roof_fall_down label" +#~ msgid "WP Roof Fall Down" +#~ msgstr "WP 顶板倒塌" -#~ msgctxt "material_bed_temp_prepend label" -#~ msgid "Include build plate temperature" -#~ msgstr "包含热床温度" +#~ msgctxt "wireframe_roof_inset label" +#~ msgid "WP Roof Inset Distance" +#~ msgstr "WP 顶板嵌入距离" -#~ msgctxt "machine_width label" -#~ msgid "Machine width" -#~ msgstr "机器宽度" +#~ msgctxt "wireframe_roof_outer_delay label" +#~ msgid "WP Roof Outer Delay" +#~ msgstr "WP 顶板外部延迟" -#~ msgctxt "machine_depth label" -#~ msgid "Machine depth" -#~ msgstr "机器深度" +#~ msgctxt "wireframe_printspeed label" +#~ msgid "WP Speed" +#~ msgstr "WP 速度" -#~ msgctxt "machine_shape label" -#~ msgid "Build plate shape" -#~ msgstr "打印平台形状" +#~ msgctxt "wireframe_straight_before_down label" +#~ msgid "WP Straighten Downward Lines" +#~ msgstr "WP 拉直下行走线" -#~ msgctxt "machine_height label" -#~ msgid "Machine height" -#~ msgstr "机器高度" +#~ msgctxt "wireframe_strategy label" +#~ msgid "WP Strategy" +#~ msgstr "WP 使用策略" -#~ msgctxt "machine_center_is_zero label" -#~ msgid "Is center origin" -#~ msgstr "机器中心为零点" +#~ msgctxt "wireframe_top_delay label" +#~ msgid "WP Top Delay" +#~ msgstr "WP 顶部延迟" -#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -#~ msgid "RepRap (Marlin/Sprinter)" -#~ msgstr "RepRap (Marlin/Sprinter)" +#~ msgctxt "wireframe_printspeed_up label" +#~ msgid "WP Upward Printing Speed" +#~ msgstr "WP 上升打印速度" -#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" -#~ msgid "RepRap (Volumetric)" -#~ msgstr "RepRap (Volumetric)" +#~ msgctxt "wireframe_enabled label" +#~ msgid "Wire Printing" +#~ msgstr "单线打印(以下简称 WP)" diff --git a/resources/i18n/zh_TW/cura.po b/resources/i18n/zh_TW/cura.po index 972b982289..ac25b65d37 100644 --- a/resources/i18n/zh_TW/cura.po +++ b/resources/i18n/zh_TW/cura.po @@ -1,13 +1,13 @@ # Cura -# Copyright (C) 2022 Ultimaker B.V. +# Copyright (C) 2022 UltiMaker. # This file is distributed under the same license as the Cura package. # Ultimaker , 2022. # msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2022-06-21 12:50+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-04-06 15:55+0000\n" "PO-Revision-Date: 2022-01-02 19:59+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -18,236 +18,114 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0\n" -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -msgctxt "@label" -msgid "Unknown" -msgstr "未知" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "下列印表機因為是群組的一部份導致無法連接" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "可用的網路印表機" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "不覆寫" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Connected printers" -msgstr "已連線印表機" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:138 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 -msgctxt "@label" -msgid "Preset printers" -msgstr "預設印表機" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:143 -#, 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} 嗎?這動作無法復原!" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:61 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338 -msgctxt "@label" -msgid "Default" -msgstr "預設值" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:65 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "外觀" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:66 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15 -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "外觀參數是設計來列印較高品質形狀和表面的視覺性原型和模型。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:70 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "工程" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:71 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19 -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "工程參數是設計來列印較高精度和較小公差的功能性原型和實際使用零件。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:75 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "草稿" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentSelectionModel.py:76 -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23 -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "草稿參數是設計來縮短時間,快速列印初始原型和概念驗證。" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:232 -msgctxt "@label" -msgid "Custom Material" -msgstr "自訂線材資料" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:233 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 -msgctxt "@label" -msgid "Custom" -msgstr "自訂" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:391 -msgctxt "@label" -msgid "Custom profiles" -msgstr "自訂列印參數" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:426 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "所有支援的類型 ({0})" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "所有檔案 (*)" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 -msgctxt "@info:status" -msgid "Calculated" -msgstr "已計算" - -#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 +#: cura/API/Account.py:199 msgctxt "@info:title" msgid "Login failed" msgstr "登入失敗" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 +#: cura/Arranging/ArrangeObjectsJob.py:25 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "正在為物件尋找新位置" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 +#: cura/Arranging/ArrangeObjectsJob.py:29 msgctxt "@info:title" msgid "Finding Location" msgstr "尋找位置中" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "無法在列印範圍內放下全部物件" -#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 +#: cura/Arranging/ArrangeObjectsJob.py:43 msgctxt "@info:title" msgid "Can't Find Location" msgstr "無法找到位置" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:115 +#: cura/Backups/Backup.py:115 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "無法從使用者資料目錄建立備份檔:{}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:159 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 +#: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159 +#: plugins/CuraDrive/src/DrivePluginExtension.py:118 +#: plugins/CuraDrive/src/DrivePluginExtension.py:126 msgctxt "@info:title" msgid "Backup" msgstr "備份" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:134 +#: cura/Backups/Backup.py:134 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "嘗試復原Cura 備份(若無proper data或meta data)。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:145 +#: cura/Backups/Backup.py:145 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that is higher than the current version." msgstr "嘗試復原新版本的Cura備份。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:158 +#: cura/Backups/Backup.py:158 msgctxt "@info:backup_failed" msgid "The following error occurred while trying to restore a Cura backup:" msgstr "恢復Cura備份時,出現下列錯誤:" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 +#: cura/BuildVolume.py:100 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." msgstr "由於「列印序列」設定的值,成形列印範圍高度已被減少,以防止龍門與列印模型相衝突。" -#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 +#: cura/BuildVolume.py:103 msgctxt "@info:title" msgid "Build Volume" msgstr "列印範圍" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 +#: cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura 無法啟動" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 +#: cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" -"

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

    \n" +"

    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" +"

    糟糕,UltiMaker Cura 遇到了一些似乎不正常的事情。

    \n" "

    我們在啟動過程中遇到了無法修正的錯誤。這可能是由一些不正確的設定檔造成的。我們建議備份並重置您的設定。

    \n" "

    備份檔案可在設定資料夾中找到。

    \n" "

    請將錯誤報告傳送給我們以修正此問題。

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 +#: cura/CrashHandler.py:122 msgctxt "@action:button" -msgid "Send crash report to Ultimaker" -msgstr "傳送錯誤報告給 Ultimaker" +msgid "Send crash report to UltiMaker" +msgstr "傳送錯誤報告給 UltiMaker" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 +#: cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "顯示詳細的錯誤報告" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 +#: cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "顯示設定資料夾" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 +#: cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "備份和重置設定" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 +#: cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "錯誤報告" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 +#: cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

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

    \n" @@ -258,573 +136,2239 @@ msgstr "" "

    請用\"送出報告\"按鈕自動發出一份錯誤報告到我們的伺服器

    \n" " " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 +#: cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "系統資訊" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 +#: cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "未知" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 +#: cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura 版本" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 +#: cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Cura 語言" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 +#: cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "作業系統語言" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 +#: cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "平台" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 +#: cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qt 版本" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 +#: cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQt 版本" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 +#: cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 +#: cura/CrashHandler.py:264 msgctxt "@label" msgid "Not yet initialized" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 +#: cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL 版本:{version}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 +#: cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL 供應商:{vendor}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 +#: cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL 渲染器:{renderer}
  • " -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 +#: cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "錯誤追溯" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 +#: cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "日誌" -#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 +#: cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "送出報告" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:531 +#: cura/CuraApplication.py:540 msgctxt "@info:progress" msgid "Loading machines..." msgstr "正在載入印表機..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +#: cura/CuraApplication.py:547 msgctxt "@info:progress" msgid "Setting up preferences..." msgstr "正在設定偏好設定..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +#: cura/CuraApplication.py:692 msgctxt "@info:progress" msgid "Initializing Active Machine..." msgstr "正在初始化啟用的機器..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +#: cura/CuraApplication.py:839 msgctxt "@info:progress" msgid "Initializing machine manager..." msgstr "正在初始化機器管理員..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +#: cura/CuraApplication.py:853 msgctxt "@info:progress" msgid "Initializing build volume..." msgstr "正在初始化列印範圍..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +#: cura/CuraApplication.py:921 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "正在設定場景..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +#: cura/CuraApplication.py:957 msgctxt "@info:progress" msgid "Loading interface..." msgstr "正在載入介面..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +#: cura/CuraApplication.py:962 msgctxt "@info:progress" msgid "Initializing engine..." msgstr "正在初始化引擎..." -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#: cura/CuraApplication.py:1290 #, 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" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1798 +#: cura/CuraApplication.py:1816 #, 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} 已跳過匯入" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800 -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 +#: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189 msgctxt "@info:title" msgid "Warning" msgstr "警告" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#: cura/CuraApplication.py:1828 #, 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} 已跳過匯入" -#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1812 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156 +#: cura/Settings/CuraContainerRegistry.py:166 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 msgctxt "@info:title" msgid "Error" msgstr "錯誤" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 +#: cura/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "未知" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:113 +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "下列印表機因為是群組的一部份導致無法連接" + +#: cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "可用的網路印表機" + +#: cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "不覆寫" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:28 +msgctxt "@label" +msgid "Connected printers" +msgstr "已連線印表機" + +#: cura/Machines/Models/GlobalStacksModel.py:160 +msgctxt "@label" +msgid "Preset printers" +msgstr "預設印表機" + +#: cura/Machines/Models/GlobalStacksModel.py:165 +#, 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} 嗎?這動作無法復原!" + +#: cura/Machines/Models/IntentCategoryModel.py:42 +#: cura/Machines/Models/IntentSelectionModel.py:61 +#: cura/Machines/Models/IntentTranslations.py:11 +#: cura/Machines/Models/QualityManagementModel.py:347 +msgctxt "@label" +msgid "Default" +msgstr "預設值" + +#: cura/Machines/Models/IntentCategoryModel.py:45 +#: cura/Machines/Models/IntentSelectionModel.py:65 +#: cura/Machines/Models/IntentTranslations.py:14 +msgctxt "@label" +msgid "Visual" +msgstr "外觀" + +#: cura/Machines/Models/IntentCategoryModel.py:46 +#: cura/Machines/Models/IntentSelectionModel.py:66 +#: cura/Machines/Models/IntentTranslations.py:15 +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "外觀參數是設計來列印較高品質形狀和表面的視覺性原型和模型。" + +#: cura/Machines/Models/IntentCategoryModel.py:49 +#: cura/Machines/Models/IntentSelectionModel.py:70 +#: cura/Machines/Models/IntentTranslations.py:18 +msgctxt "@label" +msgid "Engineering" +msgstr "工程" + +#: cura/Machines/Models/IntentCategoryModel.py:50 +#: cura/Machines/Models/IntentSelectionModel.py:71 +#: cura/Machines/Models/IntentTranslations.py:19 +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "工程參數是設計來列印較高精度和較小公差的功能性原型和實際使用零件。" + +#: cura/Machines/Models/IntentCategoryModel.py:53 +#: cura/Machines/Models/IntentSelectionModel.py:75 +#: cura/Machines/Models/IntentTranslations.py:22 +msgctxt "@label" +msgid "Draft" +msgstr "草稿" + +#: cura/Machines/Models/IntentCategoryModel.py:54 +#: cura/Machines/Models/IntentSelectionModel.py:76 +#: cura/Machines/Models/IntentTranslations.py:23 +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "草稿參數是設計來縮短時間,快速列印初始原型和概念驗證。" + +#: cura/Machines/Models/MaterialManagementModel.py:232 +msgctxt "@label" +msgid "Custom Material" +msgstr "自訂線材資料" + +#: cura/Machines/Models/MaterialManagementModel.py:233 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340 +msgctxt "@label" +msgid "Custom" +msgstr "自訂" + +#: cura/Machines/Models/QualityManagementModel.py:400 +msgctxt "@label" +msgid "Custom profiles" +msgstr "自訂列印參數" + +#: cura/Machines/Models/QualityManagementModel.py:435 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "所有支援的類型 ({0})" + +#: cura/Machines/Models/QualityManagementModel.py:436 +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "所有檔案 (*)" + +#: cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "已計算" + +#: cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "正在複製並放置模型" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 +#: cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "正在放置模型" -#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 +#: cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "擺放物件中" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +#: cura/OAuth2/AuthorizationHelpers.py:89 msgctxt "@message" msgid "Could not read response." msgstr "雲端沒有讀取回應。" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +#: cura/OAuth2/AuthorizationRequestHandler.py:75 msgctxt "@message" msgid "The provided state is not correct." msgstr "提供的狀態不正確。" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +#: cura/OAuth2/AuthorizationRequestHandler.py:80 msgctxt "@message" msgid "Timeout when authenticating with the account server." msgstr "在向帳戶伺服器進行身分驗證時逾時." -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 +#: cura/OAuth2/AuthorizationRequestHandler.py:97 msgctxt "@message" msgid "Please give the required permissions when authorizing this application." msgstr "核准此應用程式時,請給予所需的權限。" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 +#: cura/OAuth2/AuthorizationRequestHandler.py:104 msgctxt "@message" msgid "Something unexpected happened when trying to log in, please try again." msgstr "嘗試登入時出現意外狀況,請再試一次。" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:216 +#: cura/OAuth2/AuthorizationService.py:216 msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "無法開始新的登入程序。檢查是否有其他登入仍在進行中。" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:277 +#: cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "無法連上 Ultimaker 帳號伺服器。" +msgid "Unable to reach the UltiMaker account server." +msgstr "無法連上 UltiMaker 帳號伺服器。" -#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 +#: cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" msgid "Log-in failed" msgstr "登入失敗" -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +#: cura/PrinterOutput/UploadMaterialsJob.py:104 msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "無法建立與印表機同步的材料檔案." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +#: cura/PrinterOutput/UploadMaterialsJob.py:111 +#: cura/PrinterOutput/UploadMaterialsJob.py:165 msgctxt "@text:error" msgid "Failed to load the archive of materials to sync it with printers." msgstr "無法載入與印表機同步的材料檔案." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +#: cura/PrinterOutput/UploadMaterialsJob.py:143 msgctxt "@text:error" msgid "The response from Digital Factory appears to be corrupted." msgstr "從Digital Factory的回應似乎已損壞." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 +#: cura/PrinterOutput/UploadMaterialsJob.py:147 +#: cura/PrinterOutput/UploadMaterialsJob.py:151 +#: cura/PrinterOutput/UploadMaterialsJob.py:155 msgctxt "@text:error" msgid "The response from Digital Factory is missing important information." msgstr "從Digital Factory的回應似乎遺漏重要資訊." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +#: cura/PrinterOutput/UploadMaterialsJob.py:218 msgctxt "@text:error" msgid "Failed to connect to Digital Factory to sync materials with some of the printers." msgstr "在連接至Digital Factory去同步材料的過程中失敗." -#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +#: cura/PrinterOutput/UploadMaterialsJob.py:232 msgctxt "@text:error" msgid "Failed to connect to Digital Factory." msgstr "在連接至Digital Factory的過程中失敗." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:207 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: cura/Settings/ActiveQuality.py:43 +msgctxt "@label" +msgid "Experimental" +msgstr "實驗功能" + +#: cura/Settings/ContainerManager.py:207 +#: cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "檔案已經存在" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: cura/Settings/ContainerManager.py:208 +#: cura/Settings/CuraContainerRegistry.py:141 #, 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} 已存在。你確定要覆蓋掉它嗎?" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 +#: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "無效的檔案網址:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: cura/Settings/CuraContainerRegistry.py:153 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "無法將列印參數匯出至 {0}{1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: cura/Settings/CuraContainerRegistry.py:163 #, 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}:寫入器外掛報告故障。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "列印參數已匯出至:{0}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "匯出成功" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: cura/Settings/CuraContainerRegistry.py:205 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "無法從 {0} 匯入列印參數:{1}" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: cura/Settings/CuraContainerRegistry.py:209 #, 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} 匯入列印參數。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: cura/Settings/CuraContainerRegistry.py:224 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "檔案 {0} 內沒有自訂列印參數可匯入" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: cura/Settings/CuraContainerRegistry.py:228 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "從 {0} 匯入列印參數失敗:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: cura/Settings/CuraContainerRegistry.py:252 +#: cura/Settings/CuraContainerRegistry.py:262 #, 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} 含有不正確的資料,無法匯入。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: cura/Settings/CuraContainerRegistry.py:355 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "從 {0} 匯入列印參數失敗:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "已成功匯入列印參數 {0}。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "檔案 {0} 內未含有效的列印參數。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "列印參數 {0} 檔案類型未知或已損壞。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "自訂列印參數" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "列印參數缺少列印品質類型定義。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "尚未啟動列印機." -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "無法新增列印參數。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "品質類型 '{0}' 與目前的啟用的機器設定 '{1} '不相容。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: cura/Settings/CuraContainerRegistry.py:488 #, 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}' 無法在目前設定使用。切換到可使用此品質類型的線材/噴頭組合。" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "不支援" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "預設值" - -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:219 +#: cura/Settings/MachineManager.py:746 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:221 msgctxt "@label" msgid "Nozzle" msgstr "噴頭" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +#: cura/Settings/MachineManager.py:890 msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "設定已被更改為符合目前擠出機:" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 +#: cura/Settings/MachineManager.py:891 msgctxt "@info:title" msgid "Settings updated" msgstr "設定更新" -#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 +#: cura/Settings/MachineManager.py:1514 msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "擠出機已停用" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 +#: cura/Settings/cura_empty_instance_containers.py:36 +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "不支援" + +#: cura/Settings/cura_empty_instance_containers.py:55 +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "預設值" + +#: cura/UI/AddPrinterPagesModel.py:17 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" msgid "Add" msgstr "增加" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:290 +#: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290 msgctxt "@action:button" msgid "Finish" msgstr "完成" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:508 -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:323 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:139 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:291 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:74 +#: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386 +#: plugins/ImageReader/ConfigUI.qml:323 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43 +#: resources/qml/ColorDialog.qml:143 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: resources/qml/Dialogs/RenameDialog.qml:103 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 msgctxt "@action:button" msgid "Cancel" msgstr "取消" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#: cura/UI/ObjectsModel.py:69 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "群組 #{group_nr}" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 +#: cura/UI/PrintInformation.py:87 msgctxt "@tooltip" msgid "Outer Wall" msgstr "外壁" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +#: cura/UI/PrintInformation.py:88 msgctxt "@tooltip" msgid "Inner Walls" msgstr "內壁" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +#: cura/UI/PrintInformation.py:89 msgctxt "@tooltip" msgid "Skin" msgstr "表層" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +#: cura/UI/PrintInformation.py:90 msgctxt "@tooltip" msgid "Infill" msgstr "填充" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +#: cura/UI/PrintInformation.py:91 msgctxt "@tooltip" msgid "Support Infill" msgstr "支撐填充" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +#: cura/UI/PrintInformation.py:92 msgctxt "@tooltip" msgid "Support Interface" msgstr "支撐介面" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +#: cura/UI/PrintInformation.py:93 msgctxt "@tooltip" msgid "Support" msgstr "支撐" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +#: cura/UI/PrintInformation.py:94 msgctxt "@tooltip" msgid "Skirt" msgstr "裙邊" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +#: cura/UI/PrintInformation.py:95 msgctxt "@tooltip" msgid "Prime Tower" msgstr "裝填塔" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +#: cura/UI/PrintInformation.py:96 msgctxt "@tooltip" msgid "Travel" msgstr "移動" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +#: cura/UI/PrintInformation.py:97 msgctxt "@tooltip" msgid "Retractions" msgstr "回抽" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +#: cura/UI/PrintInformation.py:98 msgctxt "@tooltip" msgid "Other" msgstr "其它" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:63 +#: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63 msgctxt "@text:window" msgid "The release notes could not be opened." msgstr "發佈通知無法開啟." -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:277 +#: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277 msgctxt "@action:button" msgid "Next" msgstr "下一步" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 +#: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68 msgctxt "@action:button" msgid "Skip" msgstr "略過" -#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:443 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:186 +#: cura/UI/WhatsNewPagesModel.py:76 +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444 +#: resources/qml/Dialogs/AboutDialog.qml:188 msgctxt "@action:button" msgid "Close" msgstr "關閉" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +#: cura/UltimakerCloud/CloudMaterialSync.py:66 msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "再列印前請先同步線材資料." -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +#: cura/UltimakerCloud/CloudMaterialSync.py:67 msgctxt "@action:button" msgid "New materials installed" msgstr "新線材資料安裝" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +#: cura/UltimakerCloud/CloudMaterialSync.py:74 msgctxt "@action:button" msgid "Sync materials" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:397 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:80 +#: cura/UltimakerCloud/CloudMaterialSync.py:82 +#: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80 msgctxt "@action:button" msgid "Learn more" msgstr "學習更多" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +#: cura/UltimakerCloud/CloudMaterialSync.py:135 msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "無法儲存線材資料至{}:" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +#: cura/UltimakerCloud/CloudMaterialSync.py:136 msgctxt "@message:title" msgid "Failed to save material archive" msgstr "線材資料儲存失敗" -#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +#: cura/UltimakerCloud/CloudMaterialSync.py:188 msgctxt "@text" msgid "Unknown error." msgstr "未知的錯誤." -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:558 +#, 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}。機器無法被匯入,但模型將被匯入。" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:561 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "開啟專案檔案" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: plugins/3MFReader/WorkspaceDialog.qml:99 +#: plugins/3MFReader/WorkspaceDialog.qml:127 +#: plugins/3MFReader/WorkspaceDialog.qml:134 +msgctxt "@button" +msgid "Create new" +msgstr "" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:692 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "專案檔案 {0} 無法存取:{1}。" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:720 +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "無法開啟專案檔案" + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:700 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:718 +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "專案檔案{0} 已毀損 : {1}." + +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:765 +#, 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 未知的參數製作。" + +#: plugins/3MFReader/WorkspaceDialog.py:233 +msgctxt "@title:tab" +msgid "Recommended" +msgstr "推薦" + +#: plugins/3MFReader/WorkspaceDialog.py:235 +msgctxt "@title:tab" +msgid "Custom" +msgstr "自訂選項" + +#: plugins/3MFReader/WorkspaceDialog.py:411 +msgctxt "@info:status" +msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.py:413 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.py:426 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:15 +msgctxt "@title:window" +msgid "Open Project" +msgstr "開啟專案" + +#: plugins/3MFReader/WorkspaceDialog.qml:31 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61 +msgctxt "@action:title" +msgid "Summary - Cura Project" +msgstr "摘要 - Cura 專案" + +#: plugins/3MFReader/WorkspaceDialog.qml:65 +msgctxt "@action:ComboBox Update/override existing profile" +msgid "Update existing" +msgstr "更新已有設定" + +#: plugins/3MFReader/WorkspaceDialog.qml:66 +msgctxt "@action:ComboBox Save settings in a new profile" +msgid "Create new" +msgstr "新建設定" + +#: plugins/3MFReader/WorkspaceDialog.qml:83 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97 +msgctxt "@action:label" +msgid "Printer settings" +msgstr "印表機設定" + +#: plugins/3MFReader/WorkspaceDialog.qml:92 +#: plugins/3MFReader/WorkspaceRow.qml:23 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106 +msgctxt "@action:label" +msgid "Type" +msgstr "類型" + +#: plugins/3MFReader/WorkspaceDialog.qml:98 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +msgctxt "@action:label" +msgid "Printer Group" +msgstr "印表機群組" + +#: plugins/3MFReader/WorkspaceDialog.qml:103 +msgctxt "@action:label" +msgid "Open With" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:104 +msgctxt "@info:tooltip" +msgid "Printer settings will be updated to match the settings saved with the project." +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:156 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222 +msgctxt "@action:label" +msgid "Profile settings" +msgstr "列印參數設定" + +#: plugins/3MFReader/WorkspaceDialog.qml:166 +#: plugins/3MFReader/WorkspaceDialog.qml:238 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246 +msgctxt "@action:label" +msgid "Name" +msgstr "名稱" + +#: plugins/3MFReader/WorkspaceDialog.qml:172 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263 +msgctxt "@action:label" +msgid "Intent" +msgstr "意圖" + +#: plugins/3MFReader/WorkspaceDialog.qml:178 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230 +msgctxt "@action:label" +msgid "Not in profile" +msgstr "不在列印參數中" + +#: plugins/3MFReader/WorkspaceDialog.qml:179 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235 +msgctxt "@action:label" +msgid "%1 override" +msgid_plural "%1 overrides" +msgstr[0] "%1 覆寫" + +#: plugins/3MFReader/WorkspaceDialog.qml:185 +msgctxt "@action:label" +msgid "Derivative from" +msgstr "衍生自" + +#: plugins/3MFReader/WorkspaceDialog.qml:186 +msgctxt "@action:label" +msgid "%1, %2 override" +msgid_plural "%1, %2 overrides" +msgstr[0] "%1, %2 覆寫" + +#: plugins/3MFReader/WorkspaceDialog.qml:226 +msgctxt "@action:label" +msgid "Material settings" +msgstr "線材設定" + +#: plugins/3MFReader/WorkspaceDialog.qml:280 +msgctxt "@action:label" +msgid "Setting visibility" +msgstr "參數顯示設定" + +#: plugins/3MFReader/WorkspaceDialog.qml:290 +msgctxt "@action:label" +msgid "Mode" +msgstr "模式" + +#: plugins/3MFReader/WorkspaceDialog.qml:296 +msgctxt "@action:label" +msgid "%1 out of %2" +msgstr "%1 / %2" + +#: plugins/3MFReader/WorkspaceDialog.qml:321 +msgctxt "@action:warning" +msgid "Loading a project will clear all models on the build plate." +msgstr "載入專案時將清除列印平台上的所有模型。" + +#: plugins/3MFReader/WorkspaceDialog.qml:367 +msgctxt "@label" +msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:392 +msgctxt "@action:button" +msgid "Open" +msgstr "開啟" + +#: plugins/3MFReader/WorkspaceDialog.qml:398 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "" + +#: plugins/3MFReader/WorkspaceDialog.qml:407 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "" + +#: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33 +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "3MF 檔案" + +#: plugins/3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF 讀取器" + +#: plugins/3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "提供讀取 3MF 格式檔案的支援。" + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "3MF 寫入器外掛已損壞。" + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "無工作區可寫入,請先添加一部印表機." + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "沒有寫入此處工作區的權限。" + +#: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 +msgctxt "@error:zip" +msgid "The operating system does not allow saving a project file to this location or with this file name." +msgstr "操作系統不允許將專案檔案儲存到此位置或儲存為此檔名。" + +#: plugins/3MFWriter/ThreeMFWriter.py:240 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "寫入 3mf 檔案發生錯誤。" + +#: plugins/3MFWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "3MF 檔案" + +#: plugins/3MFWriter/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Cura 專案 3MF 檔案" + +#: plugins/3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF 寫入器" + +#: plugins/3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "提供寫入 3MF 檔案的支援。" + +#: plugins/AMFReader/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "AMF 檔案" + +#: plugins/AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF 讀取器" + +#: plugins/AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "提供對讀取 AMF 格式檔案的支援。" + +#: plugins/CuraDrive/plugin.json +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "備份和復原你的設定。" + +#: plugins/CuraDrive/plugin.json +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura 備份" + +#: plugins/CuraDrive/src/CreateBackupJob.py:25 +msgctxt "@info:title" +msgid "Backups" +msgstr "備份" + +#: plugins/CuraDrive/src/CreateBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "上傳你的備份時發生錯誤。" + +#: plugins/CuraDrive/src/CreateBackupJob.py:46 +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "正在建立備份..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:55 +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "建立備份時發生了錯誤。" + +#: plugins/CuraDrive/src/CreateBackupJob.py:59 +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "正在上傳你的備份..." + +#: plugins/CuraDrive/src/CreateBackupJob.py:69 +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "你的備份上傳完成。" + +#: plugins/CuraDrive/src/CreateBackupJob.py:103 +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "備份超過了最大檔案大小。" + +#: plugins/CuraDrive/src/DriveApiService.py:86 +#: plugins/CuraDrive/src/RestoreBackupJob.py:26 +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "嘗試恢復備份時發生錯誤。" + +#: plugins/CuraDrive/src/DrivePluginExtension.py:69 +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "管理備份" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +msgctxt "@button" +msgid "Want more?" +msgstr "想要更多?" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +msgctxt "@button" +msgid "Backup Now" +msgstr "立即備份" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "自動備份" + +#: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "每天啟動 Cura 時自動建立備份。" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 +msgctxt "@button" +msgid "Restore" +msgstr "復原" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "刪除備份" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "你確定要刪除此備份嗎? 這動作無法復原。" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "復原備份" + +#: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 +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 嗎?" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Cura 版本" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "印表機" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "線材" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "參數" + +#: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "外掛" + +#: plugins/CuraDrive/src/qml/main.qml:25 +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Cura 備份" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "我的備份" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "你目前沒有任何備份。 使用「立即備份」按鈕建立一個。" + +#: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "在預覽階段限制只能顯示 5 個備份。 刪除備份以顯示較舊的備份。" + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "備份並同步你的 Cura 設定。" + +#: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 +#: plugins/Marketplace/resources/qml/Marketplace.qml:312 +#: resources/qml/Account/GeneralOperations.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180 +#: resources/qml/WelcomePages/CloudContent.qml:212 +msgctxt "@button" +msgid "Sign in" +msgstr "登入" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:162 +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "未知問題使切片失敗. 請考慮在我們的問題追蹤器內回報問題." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:163 +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "切片失敗" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:168 +msgctxt "@message:button" +msgid "Report a bug" +msgstr "回報問題" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:169 +msgctxt "@message:description" +msgid "Report a bug on UltiMaker Cura's issue tracker." +msgstr "於UltiMaker Cura問題追蹤器中回報問題." + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:416 +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "無法使用目前線材切片,因為它與所選機器或設定不相容。" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:417 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:450 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:477 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:501 +#: plugins/CuraEngineBackend/CuraEngineBackend.py:514 +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "無法切片" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:449 +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "無法使用目前設定進行切片。以下設定存在錯誤:{0}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:476 +#, 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 "因部份模型設定問題無法進行切片。部份模型的下列設定有錯誤:{error_labels}" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:488 +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "無法切片(原因:換料塔或主位置無效)。" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:500 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "有物件使用了被停用的擠出機 %s ,因此無法進行切片。" + +#: plugins/CuraEngineBackend/CuraEngineBackend.py:510 +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 "" +"請檢查設定並檢查你的模型是否:\n" +"- 適合列印範圍\n" +"- 分配了一個已啟用的擠出機\n" +"- 沒有全部設定成修改網格" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "正在處理層" + +#: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +msgctxt "@info:title" +msgid "Information" +msgstr "資訊" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Cura 引擎後台" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "提供連結到 Cura 切片引擎後台。" + +#: plugins/CuraProfileReader/__init__.py:14 +#: plugins/CuraProfileWriter/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Cura 列印參數" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura 列印參數讀取器" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "提供匯入 Cura 列印參數的支援。" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura 列印參數寫入器" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "提供匯出 Cura 列印參數的支援。" + +#: plugins/DigitalLibrary/plugin.json +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "連結至\"數位博物館\",允許Cura從\"數位博物館\"打開或保存文件." + +#: plugins/DigitalLibrary/plugin.json +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "UltiMaker 數位博物館" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 +msgctxt "@option" +msgid "Save Cura project and print file" +msgstr "" + +#: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "" + +#: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19 +msgctxt "@text Placeholder for the username if it has been deleted" +msgid "deleted user" +msgstr "" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +msgctxt "@info" +msgid "Could not access update information." +msgstr "無法存取更新資訊。" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#, 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}." + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "新的%s軟體已可使用" + +#: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +msgctxt "@action:button" +msgid "How to update" +msgstr "如何更新" + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "檢查是否有韌體更新。" + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "韌體更新檢查" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "更新韌體" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +msgctxt "@title" +msgid "Update Firmware" +msgstr "更新韌體" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 +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 印表機上運行的一個軟體。此韌體控制步進馬達,調節溫度讓印表機正常運作。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "新印表機出廠配備的韌體完全可以正常使用,但新版本往往具有更多的新功能和改進。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "自動升級韌體" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "上傳自訂韌體" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "因為沒有與印表機連線,無法更新韌體。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "因為連線的印表機不支援更新韌體,無法更新韌體。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "選擇自訂韌體" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "韌體更新" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 +msgctxt "@label" +msgid "Updating firmware." +msgstr "更新韌體中..." + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 +msgctxt "@label" +msgid "Firmware update completed." +msgstr "韌體更新已完成。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "由於未知錯誤,韌體更新失敗。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "由於通訊錯誤,導致韌體更新失敗。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "由於輸入/輸出錯誤,導致韌體更新失敗。" + +#: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "由於韌體遺失,導致韌體更新失敗。" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "name" +msgid "Firmware Updater" +msgstr "韌體更新器" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "提供升級韌體用的機器操作。" + +#: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "壓縮 G-code 檔案" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "壓縮檔案 G-code 讀取器" + +#: plugins/GCodeGzReader/plugin.json +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "從一個壓縮檔案中讀取 G-code。" + +#: plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "G-code GZ 寫入器不支援非文字模式。" + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "壓縮檔案 G-code 寫入器" + +#: plugins/GCodeGzWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "將 G-code 寫入壓縮檔案。" + +#: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14 +#: plugins/GCodeWriter/__init__.py:16 +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "G-code 檔案" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "G-code 列印參數讀取器" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "提供匯入 G-code 檔案中列印參數的支援。" + +#: plugins/GCodeReader/FlavorParser.py:359 +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "正在解析 G-code" + +#: plugins/GCodeReader/FlavorParser.py:361 +#: plugins/GCodeReader/FlavorParser.py:515 +msgctxt "@info:title" +msgid "G-code Details" +msgstr "G-code 細項設定" + +#: plugins/GCodeReader/FlavorParser.py:513 +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-code 適用於目前印表機和印表機設定。目前 G-code 檔案可能不準確。" + +#: plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "G 檔案" + +#: plugins/GCodeReader/plugin.json +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "允許載入和顯示 G-code 檔案。" + +#: plugins/GCodeReader/plugin.json +msgctxt "name" +msgid "G-code Reader" +msgstr "G-code 讀取器" + +#: plugins/GCodeWriter/GCodeWriter.py:75 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "G-code 寫入器不支援非文字模式。" + +#: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97 +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "匯出前請先將 G-code 準備好。" + +#: plugins/GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" +msgstr "G-code 寫入器" + +#: plugins/GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "將 G-code 寫入檔案。" + +#: plugins/ImageReader/ConfigUI.qml:14 +msgctxt "@title:window" +msgid "Convert Image" +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:33 +msgctxt "@action:label" +msgid "Height (mm)" +msgstr "高度 (mm)" + +#: plugins/ImageReader/ConfigUI.qml:56 +msgctxt "@info:tooltip" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "每個像素與底板的最大距離。" + +#: plugins/ImageReader/ConfigUI.qml:66 +msgctxt "@action:label" +msgid "Base (mm)" +msgstr "底板 (mm)" + +#: plugins/ImageReader/ConfigUI.qml:90 +msgctxt "@info:tooltip" +msgid "The base height from the build plate in millimeters." +msgstr "距離列印平台的底板高度,以毫米為單位。" + +#: plugins/ImageReader/ConfigUI.qml:100 +msgctxt "@action:label" +msgid "Width (mm)" +msgstr "寬度 (mm)" + +#: plugins/ImageReader/ConfigUI.qml:124 +msgctxt "@info:tooltip" +msgid "The width in millimeters on the build plate" +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:134 +msgctxt "@action:label" +msgid "Depth (mm)" +msgstr "深度 (mm)" + +#: plugins/ImageReader/ConfigUI.qml:158 +msgctxt "@info:tooltip" +msgid "The depth in millimeters on the build plate" +msgstr "列印平台深度,以毫米為單位" + +#: plugins/ImageReader/ConfigUI.qml:187 +msgctxt "@item:inlistbox" +msgid "Darker is higher" +msgstr "顏色越深高度越高" + +#: plugins/ImageReader/ConfigUI.qml:188 +msgctxt "@item:inlistbox" +msgid "Lighter is higher" +msgstr "顏色越淺高度越高" + +#: plugins/ImageReader/ConfigUI.qml:195 +msgctxt "@info:tooltip" +msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." +msgstr "若要列印浮雕,深色像素應該對應到較厚的位置,以阻擋更多的光通過。若要列印高度圖,淺色像素表示較高的地形,因此淺色像素應對應於產生的 3D 模型中較厚的位置。" + +#: plugins/ImageReader/ConfigUI.qml:205 +msgctxt "@action:label" +msgid "Color Model" +msgstr "" + +#: plugins/ImageReader/ConfigUI.qml:224 +msgctxt "@item:inlistbox" +msgid "Linear" +msgstr "線性" + +#: plugins/ImageReader/ConfigUI.qml:225 +msgctxt "@item:inlistbox" +msgid "Translucency" +msgstr "半透明" + +#: plugins/ImageReader/ConfigUI.qml:232 +msgctxt "@info:tooltip" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "若要列印浮雕,使用一個簡易的對數模型計算半透明效果。若要列印高度圖,將像素值線性對應到高度。" + +#: plugins/ImageReader/ConfigUI.qml:242 +msgctxt "@action:label" +msgid "1mm Transmittance (%)" +msgstr "1mm 透明度" + +#: plugins/ImageReader/ConfigUI.qml:263 +msgctxt "@info:tooltip" +msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." +msgstr "光線穿透 1mm 厚度列印件的百分比。降低此值可增加暗部的對比度,並降低亮部的對比度。" + +#: plugins/ImageReader/ConfigUI.qml:274 +msgctxt "@action:label" +msgid "Smoothing" +msgstr "平滑" + +#: plugins/ImageReader/ConfigUI.qml:298 +msgctxt "@info:tooltip" +msgid "The amount of smoothing to apply to the image." +msgstr "影像平滑程度。" + +#: plugins/ImageReader/ConfigUI.qml:329 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 +#: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25 +msgctxt "@action:button" +msgid "OK" +msgstr "確定" + +#: plugins/ImageReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "JPG 圖片" + +#: plugins/ImageReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "JPEG 圖片" + +#: plugins/ImageReader/__init__.py:22 +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "PNG 圖片" + +#: plugins/ImageReader/__init__.py:26 +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "BMP 圖片" + +#: plugins/ImageReader/__init__.py:30 +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "GIF 圖片" + +#: plugins/ImageReader/plugin.json +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "支援從 2D 圖片檔案產生可列印 3D 模型的能力。" + +#: plugins/ImageReader/plugin.json +msgctxt "name" +msgid "Image Reader" +msgstr "圖片讀取器" + +#: plugins/LegacyProfileReader/__init__.py:14 +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Cura 15.04 列印參數" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "舊版 Cura 列印參數讀取器" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "提供匯入 Cura 舊版本列印參數的支援。" + +#: plugins/MachineSettingsAction/MachineSettingsAction.py:32 +msgctxt "@action" +msgid "Machine Settings" +msgstr "印表機設定" + +#: plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" +msgstr "印表機" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "噴頭設定" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 +msgctxt "@label" +msgid "Nozzle size" +msgstr "噴頭孔徑" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99 +msgctxt "@label" +msgid "mm" +msgstr "mm" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "相容的線材直徑" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "噴頭偏移 X" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "噴頭偏移 Y" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "冷卻風扇數量" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "擠出機起始 G-code" + +#: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "擠出機結束 G-code" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "印表機設定" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 +msgctxt "@label" +msgid "X (Width)" +msgstr "X (寬度)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (深度)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (高度)" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 +msgctxt "@label" +msgid "Build plate shape" +msgstr "列印平台形狀" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 +msgctxt "@label" +msgid "Origin at center" +msgstr "原點位於中心" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 +msgctxt "@label" +msgid "Heated bed" +msgstr "熱床" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 +msgctxt "@label" +msgid "Heated build volume" +msgstr "熱箱" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 +msgctxt "@label" +msgid "G-code flavor" +msgstr "G-code 類型" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "列印頭設定" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 +msgctxt "@label" +msgid "X min" +msgstr "X 最小值" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 +msgctxt "@label" +msgid "Y min" +msgstr "Y 最小值" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 +msgctxt "@label" +msgid "X max" +msgstr "X 最大值" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 +msgctxt "@label" +msgid "Y max" +msgstr "Y 最大值" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 +msgctxt "@label" +msgid "Gantry Height" +msgstr "吊車高度" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 +msgctxt "@label" +msgid "Number of Extruders" +msgstr "擠出機數目" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:342 +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "將擠出機偏移設定至Gcode" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:390 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "起始 G-code" + +#: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:401 +msgctxt "@title:label" +msgid "End G-code" +msgstr "結束 G-code" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "name" +msgid "Machine Settings Action" +msgstr "印表機設定操作" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "提供更改機器設定的方法(如列印範圍,噴頭大小等)。" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "你要使用你的帳號同步線材資料和軟體套件嗎?" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:95 +msgctxt "@info:title" +msgid "Changes detected from your UltiMaker account" +msgstr "從你的 UltiMaker 帳號偵測到資料更動" + +#: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 +msgctxt "@action:button" +msgid "Sync" +msgstr "同步" + +#: plugins/Marketplace/CloudSync/DownloadPresenter.py:91 +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "同步中..." + +#: plugins/Marketplace/CloudSync/LicenseModel.py:12 +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:79 +msgctxt "@button" +msgid "Decline" +msgstr "拒絕" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:13 +#: resources/qml/WelcomePages/UserAgreementContent.qml:53 +msgctxt "@button" +msgid "Agree" +msgstr "同意" + +#: plugins/Marketplace/CloudSync/LicenseModel.py:77 +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "外掛授權協議" + +#: plugins/Marketplace/CloudSync/LicensePresenter.py:42 +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "拒絕並從帳號中刪除" + +#: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "你需要結束並重新啟動 {} ,更動才能生效。" + +#: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "下載外掛 {} 失敗" + +#: plugins/Marketplace/LocalPackageList.py:28 +msgctxt "@label" +msgid "Installed Plugins" +msgstr "" + +#: plugins/Marketplace/LocalPackageList.py:29 +msgctxt "@label" +msgid "Installed Materials" +msgstr "" + +#: plugins/Marketplace/LocalPackageList.py:33 +msgctxt "@label" +msgid "Bundled Plugins" +msgstr "" + +#: plugins/Marketplace/LocalPackageList.py:34 +msgctxt "@label" +msgid "Bundled Materials" +msgstr "" + +#: plugins/Marketplace/PackageModel.py:43 +msgctxt "@label:property" +msgid "Unknown Package" +msgstr "" + +#: plugins/Marketplace/PackageModel.py:66 +msgctxt "@label:property" +msgid "Unknown Author" +msgstr "" + +#: plugins/Marketplace/PackageModel.py:95 +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 "" + +#: plugins/Marketplace/RemotePackageList.py:117 +msgctxt "@info:error" +msgid "Could not interpret the server's response." +msgstr "" + +#: plugins/Marketplace/RemotePackageList.py:148 +msgctxt "@info:error" +msgid "Could not reach Marketplace." +msgstr "" + +#: plugins/Marketplace/plugin.json +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "" + +#: plugins/Marketplace/plugin.json +msgctxt "name" +msgid "Marketplace" +msgstr "" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 +msgctxt "@title" +msgid "Changes from your account" +msgstr "你帳戶的更動" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +msgctxt "@button" +msgid "Dismiss" +msgstr "捨棄" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 +#: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 +#: resources/qml/WelcomePages/WhatsNewContent.qml:175 +msgctxt "@button" +msgid "Next" +msgstr "下一步" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "將新增下列套件:" + +#: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "下列套件因 Cura 版本不相容,無法安裝:" + +#: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:47 +msgctxt "@text" +msgid "Please read and agree with the plugin licence." +msgstr "" + +#: plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "" + +#: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:12 +msgctxt "@header" +msgid "Manage packages" +msgstr "" + +#: plugins/Marketplace/resources/qml/ManagedPackages.qml:16 +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 "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" +msgid "Loading..." +msgstr "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:271 +msgctxt "@button" +msgid "In order to use the package you will need to restart Cura" +msgstr "" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:279 +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "結束 %1" + +#: plugins/Marketplace/resources/qml/Marketplace.qml:300 +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" +msgstr "請登入以取得 UltiMaker Cura Enterprise 驗証的外掛及線材" + +#: plugins/Marketplace/resources/qml/Materials.qml:8 +#: plugins/Marketplace/resources/qml/MissingPackages.qml:8 +msgctxt "@header" +msgid "Install Materials" +msgstr "" + +#: plugins/Marketplace/resources/qml/Materials.qml:12 +msgctxt "@text" +msgid "Select and install material profiles optimised for your UltiMaker 3D printers." +msgstr "" + +#: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "你必需同意授權協議才能安裝套件" + +#: plugins/Marketplace/resources/qml/OnboardBanner.qml:101 +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205 +msgctxt "@button:label" +msgid "Learn More" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170 +msgctxt "@label Is followed by the name of an author" +msgid "By" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Disable" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224 +msgctxt "@button" +msgid "Enable" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242 +msgctxt "@button" +msgid "Downgrading..." +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243 +msgctxt "@button" +msgid "Downgrade" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247 +msgctxt "@button" +msgid "Installing..." +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248 +msgctxt "@button" +msgid "Install" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252 +msgctxt "@button" +msgid "Uninstall" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Update" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267 +msgctxt "@button" +msgid "Updating..." +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:193 +msgctxt "@header" +msgid "Compatible with Material Station" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "No" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:202 +#: plugins/Marketplace/resources/qml/PackagePage.qml:228 +msgctxt "@info" +msgid "Yes" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:219 +msgctxt "@header" +msgid "Optimized for Air Manager" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Visit plug-in website" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:243 +msgctxt "@button" +msgid "Website" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:252 +msgctxt "@button" +msgid "Buy spool" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:261 +msgctxt "@button" +msgid "Safety datasheet" +msgstr "" + +#: plugins/Marketplace/resources/qml/PackagePage.qml:270 +msgctxt "@button" +msgid "Technical datasheet" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Failed to load packages:" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:151 +msgctxt "@button" +msgid "Retry?" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:167 +msgctxt "@button" +msgid "Loading" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No more results to load" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:183 +msgctxt "@message" +msgid "No results found with current filter" +msgstr "" + +#: plugins/Marketplace/resources/qml/Packages.qml:226 +msgctxt "@button" +msgid "Load more" +msgstr "" + +#: plugins/Marketplace/resources/qml/Plugins.qml:8 +msgctxt "@header" +msgid "Install Plugins" +msgstr "" + +#: plugins/Marketplace/resources/qml/Plugins.qml:12 +msgctxt "@text" +msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." +msgstr "" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 +msgctxt "@info" +msgid "UltiMaker Verified Plug-in" +msgstr "" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "UltiMaker Certified Material" +msgstr "" + +#: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 +msgctxt "@info" +msgid "UltiMaker Verified Package" +msgstr "" + +#: plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "3D 模型助手" -#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -838,1926 +2382,17 @@ msgstr "" "

    了解如何確保最佳的列印品質和可靠性。

    \n" "

    閱讀列印品質指南

    " -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 -#, 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}。機器無法被匯入,但模型將被匯入。" +#: plugins/ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "檢查模型和列印設定以了解可能發生的問題並給出建議。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "開啟專案檔案" +#: plugins/ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "模器檢查器" -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "專案檔案 {0} 無法存取:{1}。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:659 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "無法開啟專案檔案" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:658 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "專案檔案{0} 已毀損 : {1}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:711 -#, 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 未知的參數製作。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "推薦" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:214 -msgctxt "@title:tab" -msgid "Custom" -msgstr "自訂選項" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:390 -msgctxt "@info:status" -msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 -msgctxt "@info:title" -msgid "Material profiles not installed" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 -msgctxt "@action:button" -msgid "Install Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33 -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "3MF 檔案" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "3MF 寫入器外掛已損壞。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "無工作區可寫入,請先添加一部印表機." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "沒有寫入此處工作區的權限。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101 -msgctxt "@error:zip" -msgid "The operating system does not allow saving a project file to this location or with this file name." -msgstr "操作系統不允許將專案檔案儲存到此位置或儲存為此檔名。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:238 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "寫入 3mf 檔案發生錯誤。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:282 -#, python-brace-format -msgctxt "@error:material" -msgid "It was not possible to store material package information in project file: {material}. This project may not open correctly on other systems." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 -msgctxt "@info:title" -msgid "Failed to save material package information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF 檔案" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura 專案 3MF 檔案" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF 檔案" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 -msgctxt "@info:title" -msgid "Backups" -msgstr "備份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "上傳你的備份時發生錯誤。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "正在建立備份..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "建立備份時發生了錯誤。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "正在上傳你的備份..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "你的備份上傳完成。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "備份超過了最大檔案大小。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "嘗試恢復備份時發生錯誤。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "管理備份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "未知問題使切片失敗. 請考慮在我們的問題追蹤器內回報問題." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "切片失敗" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 -msgctxt "@message:button" -msgid "Report a bug" -msgstr "回報問題" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 -msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." -msgstr "於Ultimaker Cura問題追蹤器中回報問題." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:400 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "無法使用目前線材切片,因為它與所選機器或設定不相容。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:401 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:434 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:461 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:473 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:485 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:498 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "無法切片" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:433 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "無法使用目前設定進行切片。以下設定存在錯誤:{0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:460 -#, 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 "因部份模型設定問題無法進行切片。部份模型的下列設定有錯誤:{error_labels}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:472 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "無法切片(原因:換料塔或主位置無效)。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:484 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "有物件使用了被停用的擠出機 %s ,因此無法進行切片。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 -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 "" -"請檢查設定並檢查你的模型是否:\n" -"- 適合列印範圍\n" -"- 分配了一個已啟用的擠出機\n" -"- 沒有全部設定成修改網格" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "正在處理層" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 -msgctxt "@info:title" -msgid "Information" -msgstr "資訊" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura 列印參數" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "無法存取更新資訊。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 -#, 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}." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s stable firmware available" -msgstr "新的%s軟體已可使用" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 -msgctxt "@action:button" -msgid "How to update" -msgstr "如何更新" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "更新韌體" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "壓縮 G-code 檔案" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "G-code GZ 寫入器不支援非文字模式。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "G-code 檔案" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:350 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "正在解析 G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:352 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:506 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-code 細項設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 -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-code 適用於目前印表機和印表機設定。目前 G-code 檔案可能不準確。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G 檔案" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "G-code 寫入器不支援非文字模式。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "匯出前請先將 G-code 準備好。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG 圖片" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG 圖片" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG 圖片" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP 圖片" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF 圖片" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04 列印參數" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "印表機設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "你要使用你的帳號同步線材資料和軟體套件嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "從你的 Ultimaker 帳號偵測到資料更動" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:147 -msgctxt "@action:button" -msgid "Sync" -msgstr "同步" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "同步中..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:12 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:79 -msgctxt "@button" -msgid "Decline" -msgstr "拒絕" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:13 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53 -msgctxt "@button" -msgid "Agree" -msgstr "同意" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "外掛授權協議" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "拒絕並從帳號中刪除" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "你需要結束並重新啟動 {} ,更動才能生效。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "下載外掛 {} 失敗" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:28 -msgctxt "@label" -msgid "Installed Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:29 -msgctxt "@label" -msgid "Installed Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:33 -msgctxt "@label" -msgid "Bundled Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/LocalPackageList.py:34 -msgctxt "@label" -msgid "Bundled Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:43 -msgctxt "@label:property" -msgid "Unknown Package" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/PackageModel.py:66 -msgctxt "@label:property" -msgid "Unknown Author" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:117 -msgctxt "@info:error" -msgid "Could not interpret the server's response." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/RemotePackageList.py:148 -msgctxt "@info:error" -msgid "Could not reach Marketplace." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "監控" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 -msgctxt "@label" -msgid "Per Model Settings" -msgstr "單一模型設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "設定對每個模型的單獨設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "後處理" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "修改 G-Code 檔案" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "準備" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "預覽" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "儲存至行動裝置" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "儲存到行動裝置 {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 -msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "沒有可供寫入的檔案格式!" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "正在儲存到行動裝置 {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 -msgctxt "@info:title" -msgid "Saving" -msgstr "儲存中" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "無法儲存到 {0}{1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 -#, 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} 時無法找到檔名。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "無法儲存到行動裝置 {0}:{1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "儲存到行動裝置 {0}:{1}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -msgctxt "@info:title" -msgid "File Saved" -msgstr "檔案已儲存" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -msgctxt "@action:button" -msgid "Eject" -msgstr "卸載" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "卸載行動裝置 {0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "已卸載 {0}。現在你可以安全地移除行動裝置。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "安全移除硬體" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "無法卸載 {0},可能有其它程式正在使用行動裝置。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "行動裝置" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "當鐵絲網列印(Wire Printing)功能開啟時,Cura 將無法準確地顯示列印層。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "模擬檢視" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "因為你還沒切片,沒有東西可顯示。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "沒有列印層可顯示" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "不要再顯示這個訊息" - -# Added manually to fix a string that was changed after string freeze. -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "分層檢視" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 -msgctxt "@text" -msgid "Unable to read example data file." -msgstr "無法讀取範例資料檔案." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "模型區域顯示已遺失或突出表面, 請修復您的模型並重新匯入Cura." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "模型錯誤" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "實體檢視" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "支撐阻斷器" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "建立一塊不列印支撐的空間。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15 -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "打開壓縮的三角面網格" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF Binary" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF Embedded JSON" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford 三角形格式" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Compressed COLLADA Digital Asset Exchange" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker 格式的封包" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "無法寫入 UFP 檔案:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "調整列印平台水平" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "選擇升級" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 -msgctxt "@action:button" -msgid "Print via cloud" -msgstr "透過雲端服務列印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 -msgctxt "@properties:tooltip" -msgid "Print via cloud" -msgstr "透過雲端服務列印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 -msgctxt "@info:status" -msgid "Connected via cloud" -msgstr "透過雲端服務連接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 -msgctxt "@action:button" -msgid "Monitor print" -msgstr "監控列印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 -msgctxt "@action:tooltip" -msgid "Track the print in Ultimaker Digital Factory" -msgstr "在Ultimaker Digital Factory中追蹤您的列印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 -#, python-brace-format -msgctxt "@error:send" -msgid "Unknown error code when uploading print job: {0}" -msgstr "不明上傳列印作業錯誤代碼:{0}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "從你的 Ultimaker 帳號偵測到新的印表機" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:242 -#, 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})" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:261 -#, python-brace-format -msgctxt "info:{0} gets replaced by a number of printers" -msgid "... and {0} other" -msgid_plural "... and {0} others" -msgstr[0] "… 和 {0} 其他" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:266 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "從 Digital Factory 新增的印表機:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:334 -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "印表機無法使用雲端連接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:343 -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "印表機未連到 Digital Factory:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:348 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:440 -msgctxt "info:name" -msgid "Ultimaker Digital Factory" -msgstr "Ultimaker Digital Factory" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:352 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "要建立連線,請前往 {website_link}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:356 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "保留印表機設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "移除印表機" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:442 -#, 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} 將被移除,直到下次帳號同步之前。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:443 -#, 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}" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:444 -#, 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} 嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 -msgctxt "@title:window" -msgid "Remove printers?" -msgstr "移除印表機?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 -#, python-brace-format -msgctxt "@label" -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" -"你確定要繼續嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 -msgctxt "@label" -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" -"你確定要繼續嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 -#, 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 "" -"您的列印機 {printer_name} 可以透過雲端連接.\n" -"\v透過連接Digital Factory使您可以任意管理列印順序及監控列印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 -msgctxt "@info:title" -msgid "Are you ready for cloud printing?" -msgstr "您準備好雲端列印嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 -msgctxt "@action" -msgid "Get started" -msgstr "開始" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 -msgctxt "@action" -msgid "Learn more" -msgstr "學習更多" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 -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 的印表機。請將印表機更新至最新版本的韌體。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "更新你印表機" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 -#, 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} 的管理主機上未安裝的線材參數。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "向印表機傳送線材參數中" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 -#, 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},但它不是印表機群組的管理者。你可以透過網頁將其設定為印表機群組的管理者。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "不是印表機群組管理者" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 -msgctxt "@action" -msgid "Configure group" -msgstr "設定印表機群組" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "請等待目前作業傳送完成。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "列印錯誤" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "雲端服務未上傳資料到印表機。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "網路錯誤" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "正在傳送列印作業" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "正在上傳列印作業到印表機。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "列印作業隊列已滿,印表機無法再接受新的作業。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "隊列已滿" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "列印作業已成功傳送到印表機。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "資料傳送" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "網路連線列印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "網路連線列印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "透過網路連接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "透過網路連接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "明天" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "今天" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "USB 連線列印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "透過 USB 連線列印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "透過 USB 連線列印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 -msgctxt "@info:status" -msgid "Connected via USB" -msgstr "透過 USB 連接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110 -msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "USB 列印正在進行中,關閉 Cura 將停止此列印工作。你確定要繼續嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135 -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "列印仍在進行中。列印完成前,Cura 無法透過 USB 開始另一次列印。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 -msgctxt "@message" -msgid "Print in Progress" -msgstr "列印正在進行中" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D 檔案" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "透視檢視" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 -msgctxt "@title:window" -msgid "Open Project" -msgstr "開啟專案" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "更新已有設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "新建設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:59 -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "摘要 - Cura 專案" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108 -msgctxt "@info:tooltip" -msgid "How should the conflict in the machine be resolved?" -msgstr "如何解決機器的設定衝突?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:95 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "印表機設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:175 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:104 -msgctxt "@action:label" -msgid "Type" -msgstr "類型" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:192 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -msgctxt "@action:label" -msgid "Printer Group" -msgstr "印表機群組" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:217 -msgctxt "@info:tooltip" -msgid "How should the conflict in the profile be resolved?" -msgstr "如何解决列印參數中的設定衝突?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:239 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:220 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "列印參數設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:250 -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:375 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:119 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:244 -msgctxt "@action:label" -msgid "Name" -msgstr "名稱" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:268 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:261 -msgctxt "@action:label" -msgid "Intent" -msgstr "意圖" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:286 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:228 -msgctxt "@action:label" -msgid "Not in profile" -msgstr "不在列印參數中" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:292 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:233 -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "%1 覆寫" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 -msgctxt "@action:label" -msgid "Derivative from" -msgstr "衍生自" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:311 -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "%1, %2 覆寫" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:333 -msgctxt "@info:tooltip" -msgid "How should the conflict in the material be resolved?" -msgstr "如何解决線材的設定衝突?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:360 -msgctxt "@action:label" -msgid "Material settings" -msgstr "線材設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:396 -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "參數顯示設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 -msgctxt "@action:label" -msgid "Mode" -msgstr "模式" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 -msgctxt "@action:label" -msgid "Visible settings:" -msgstr "顯示設定:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "%1 / %2" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:447 -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "載入專案時將清除列印平台上的所有模型。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 -msgctxt "@action:button" -msgid "Open" -msgstr "開啟" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 -msgctxt "@action:button" -msgid "Open project anyway" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 -msgctxt "@action:button" -msgid "Install missing material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "想要更多?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "立即備份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "自動備份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "每天啟動 Cura 時自動建立備份。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 -msgctxt "@button" -msgid "Restore" -msgstr "復原" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "刪除備份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "你確定要刪除此備份嗎? 這動作無法復原。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "復原備份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103 -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 嗎?" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura 版本" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "印表機" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "線材" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "參數" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "外掛" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura 備份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "我的備份" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "你目前沒有任何備份。 使用「立即備份」按鈕建立一個。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55 -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "在預覽階段限制只能顯示 5 個備份。 刪除備份以顯示較舊的備份。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "備份並同步你的 Cura 設定。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:49 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:164 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:212 -msgctxt "@button" -msgid "Sign in" -msgstr "登入" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 -msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 -msgctxt "@option" -msgid "Save Cura project" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "更新韌體" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37 -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 印表機上運行的一個軟體。此韌體控制步進馬達,調節溫度讓印表機正常運作。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 -msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "新印表機出廠配備的韌體完全可以正常使用,但新版本往往具有更多的新功能和改進。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "自動升級韌體" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "上傳自訂韌體" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "因為沒有與印表機連線,無法更新韌體。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "因為連線的印表機不支援更新韌體,無法更新韌體。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "選擇自訂韌體" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "韌體更新" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 -msgctxt "@label" -msgid "Updating firmware." -msgstr "更新韌體中..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "韌體更新已完成。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "由於未知錯誤,韌體更新失敗。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "由於通訊錯誤,導致韌體更新失敗。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "由於輸入/輸出錯誤,導致韌體更新失敗。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "由於韌體遺失,導致韌體更新失敗。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:14 -msgctxt "@title:window" -msgid "Convert Image" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 -msgctxt "@action:label" -msgid "Height (mm)" -msgstr "高度 (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "每個像素與底板的最大距離。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 -msgctxt "@action:label" -msgid "Base (mm)" -msgstr "底板 (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 -msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "距離列印平台的底板高度,以毫米為單位。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 -msgctxt "@action:label" -msgid "Width (mm)" -msgstr "寬度 (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 -msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 -msgctxt "@action:label" -msgid "Depth (mm)" -msgstr "深度 (mm)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 -msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "列印平台深度,以毫米為單位" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 -msgctxt "@item:inlistbox" -msgid "Darker is higher" -msgstr "顏色越深高度越高" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -msgctxt "@item:inlistbox" -msgid "Lighter is higher" -msgstr "顏色越淺高度越高" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 -msgctxt "@info:tooltip" -msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." -msgstr "若要列印浮雕,深色像素應該對應到較厚的位置,以阻擋更多的光通過。若要列印高度圖,淺色像素表示較高的地形,因此淺色像素應對應於產生的 3D 模型中較厚的位置。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:205 -msgctxt "@action:label" -msgid "Color Model" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:224 -msgctxt "@item:inlistbox" -msgid "Linear" -msgstr "線性" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 -msgctxt "@item:inlistbox" -msgid "Translucency" -msgstr "半透明" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 -msgctxt "@info:tooltip" -msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." -msgstr "若要列印浮雕,使用一個簡易的對數模型計算半透明效果。若要列印高度圖,將像素值線性對應到高度。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 -msgctxt "@action:label" -msgid "1mm Transmittance (%)" -msgstr "1mm 透明度" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 -msgctxt "@info:tooltip" -msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." -msgstr "光線穿透 1mm 厚度列印件的百分比。降低此值可增加暗部的對比度,並降低亮部的對比度。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 -msgctxt "@action:label" -msgid "Smoothing" -msgstr "平滑" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:298 -msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "影像平滑程度。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:329 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:143 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:80 -msgctxt "@action:button" -msgid "OK" -msgstr "確定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "印表機" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "噴頭設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 -msgctxt "@label" -msgid "Nozzle size" -msgstr "噴頭孔徑" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "相容的線材直徑" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "噴頭偏移 X" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "噴頭偏移 Y" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "冷卻風扇數量" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "擠出機起始 G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "擠出機結束 G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "印表機設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (寬度)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (深度)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (高度)" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 -msgctxt "@label" -msgid "Build plate shape" -msgstr "列印平台形狀" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 -msgctxt "@label" -msgid "Origin at center" -msgstr "原點位於中心" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137 -msgctxt "@label" -msgid "Heated bed" -msgstr "熱床" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149 -msgctxt "@label" -msgid "Heated build volume" -msgstr "熱箱" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161 -msgctxt "@label" -msgid "G-code flavor" -msgstr "G-code 類型" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "列印頭設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197 -msgctxt "@label" -msgid "X min" -msgstr "X 最小值" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 -msgctxt "@label" -msgid "Y min" -msgstr "Y 最小值" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 -msgctxt "@label" -msgid "X max" -msgstr "X 最大值" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 -msgctxt "@label" -msgid "Y max" -msgstr "Y 最大值" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275 -msgctxt "@label" -msgid "Gantry Height" -msgstr "吊車高度" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "擠出機數目" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "將擠出機偏移設定至Gcode" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "起始 G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400 -msgctxt "@title:label" -msgid "End G-code" -msgstr "結束 G-code" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 -msgctxt "@title" -msgid "Changes from your account" -msgstr "你帳戶的更動" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -msgctxt "@button" -msgid "Dismiss" -msgstr "捨棄" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:118 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:175 -msgctxt "@button" -msgid "Next" -msgstr "下一步" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "將新增下列套件:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94 -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "下列套件因 Cura 版本不相容,無法安裝:" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 -msgctxt "@title" -msgid "Install missing Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 -msgctxt "@button" -msgid "Plugin license agreement" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47 -msgctxt "@text" -msgid "Please read and agree with the plugin licence." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 -msgctxt "@button" -msgid "Accept" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 -msgctxt "@header" -msgid "Manage packages" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15 -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 "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 -msgctxt "@info:tooltip" -msgid "Manage packages" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 -msgctxt "@title" -msgid "Loading..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 -msgctxt "@button" -msgid "Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 -msgctxt "@button" -msgid "Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 -msgctxt "@info" -msgid "Search in the browser" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:271 -msgctxt "@button" -msgid "In order to use the package you will need to restart Cura" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:279 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "結束 %1" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:8 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MissingPackages.qml:8 -msgctxt "@header" -msgid "Install Materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 -msgctxt "@text" -msgid "Select and install material profiles optimised for your Ultimaker 3D printers." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "你必需同意授權協議才能安裝套件" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:101 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:207 -msgctxt "@button:label" -msgid "Learn More" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:172 -msgctxt "@label Is followed by the name of an author" -msgid "By" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Enable" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 -msgctxt "@button" -msgid "Disable" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 -msgctxt "@button" -msgid "Downgrading..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 -msgctxt "@button" -msgid "Downgrade" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 -msgctxt "@button" -msgid "Installing..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 -msgctxt "@button" -msgid "Install" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 -msgctxt "@button" -msgid "Uninstall" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Updating..." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 -msgctxt "@button" -msgid "Update" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 -msgctxt "@header" -msgid "Package details" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 -msgctxt "@button:tooltip" -msgid "Back" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 -msgctxt "@header" -msgid "Description" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 -msgctxt "@header" -msgid "Compatible printers" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:134 -msgctxt "@info" -msgid "No compatibility information" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:152 -msgctxt "@header" -msgid "Compatible support materials" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176 -msgctxt "@info No materials" -msgid "None" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:193 -msgctxt "@header" -msgid "Compatible with Material Station" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "Yes" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228 -msgctxt "@info" -msgid "No" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:219 -msgctxt "@header" -msgid "Optimized for Air Manager" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Visit plug-in website" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243 -msgctxt "@button" -msgid "Website" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:252 -msgctxt "@button" -msgid "Buy spool" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:261 -msgctxt "@button" -msgid "Safety datasheet" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:270 -msgctxt "@button" -msgid "Technical datasheet" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Failed to load packages:" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:151 -msgctxt "@button" -msgid "Retry?" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:167 -msgctxt "@button" -msgid "Loading" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No more results to load" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:183 -msgctxt "@message" -msgid "No results found with current filter" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Packages.qml:226 -msgctxt "@button" -msgid "Load more" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8 -msgctxt "@header" -msgid "Install Plugins" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12 -msgctxt "@text" -msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 -msgctxt "@info" -msgid "Ultimaker Verified Plug-in" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 -msgctxt "@info" -msgid "Ultimaker Certified Material" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 -msgctxt "@info" -msgid "Ultimaker Verified Package" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -2770,2828 +2405,3750 @@ msgstr "" "- 檢查印表機是否已連接到網路。\n" "- 檢查是否已登入以尋找雲端連接的印表機。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 +#: plugins/MonitorStage/MonitorMain.qml:113 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "請將你的印表機連上網路。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 +#: plugins/MonitorStage/MonitorMain.qml:148 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "查看線上使用者手冊" -#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:163 +#: plugins/MonitorStage/MonitorMain.qml:164 msgctxt "@info" msgid "In order to monitor your print from Cura, please connect the printer." msgstr "為了監控您的印表機,請連結印表機." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 +#: plugins/MonitorStage/__init__.py:14 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "監控" + +#: plugins/MonitorStage/plugin.json +msgctxt "name" +msgid "Monitor Stage" +msgstr "監控介面" + +#: plugins/MonitorStage/plugin.json +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "在 cura 提供一個監控介面。" + +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 msgctxt "@label" msgid "Mesh Type" msgstr "網格類型" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 msgctxt "@label" msgid "Normal model" msgstr "普通模型" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96 msgctxt "@label" msgid "Print as support" msgstr "做為支撐" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111 msgctxt "@label" msgid "Modify settings for overlaps" msgstr "修改重疊處設定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 msgctxt "@label" msgid "Don't support overlaps" msgstr "重疊處不建立支撐" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 msgctxt "@item:inlistbox" msgid "Infill mesh only" msgstr "只填充網格" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161 msgctxt "@item:inlistbox" msgid "Cutting mesh" msgstr "切割網格" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385 +#: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386 msgctxt "@action:button" msgid "Select settings" msgstr "選擇設定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 msgctxt "@title:window" msgid "Select Settings to Customize for this model" msgstr "選擇對此模型的自訂設定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: resources/qml/Preferences/SettingVisibilityPage.qml:102 msgctxt "@label:textbox" msgid "Filter..." msgstr "篩選..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +#: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 msgctxt "@label:checkbox" msgid "Show all" msgstr "顯示全部" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +#: plugins/PerObjectSettingsTool/__init__.py:14 +msgctxt "@label" +msgid "Per Model Settings" +msgstr "單一模型設定" + +#: plugins/PerObjectSettingsTool/__init__.py:15 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "設定對每個模型的單獨設定" + +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "單一模型設定工具" + +#: plugins/PerObjectSettingsTool/plugin.json +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "提供對每個模型的單獨設定。" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +msgctxt "@item:inmenu" +msgid "Post Processing" +msgstr "後處理" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 +msgctxt "@item:inmenu" +msgid "Modify G-Code" +msgstr "修改 G-Code 檔案" + +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "後處理外掛" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 msgctxt "@label" msgid "Post Processing Scripts" msgstr "後處理腳本" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 msgctxt "@action" msgid "Add a script" msgstr "添加一個腳本" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 msgctxt "@label" msgid "Settings" msgstr "設定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:459 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460 msgctxt "@info:tooltip" msgid "Change active post-processing scripts." msgstr "更改目前啟用的後處理腳本。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:463 +#: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 msgctxt "@info:tooltip" msgid "The following script is active:" msgid_plural "The following scripts are active:" msgstr[0] "下列為啟用中的腳本:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:47 +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "擴充程式(允許用戶建立腳本進行後處理)" + +#: plugins/PostProcessingPlugin/plugin.json +msgctxt "name" +msgid "Post Processing" +msgstr "後處理" + +#: plugins/PrepareStage/PrepareMenu.qml:74 +msgctxt "@button" +msgid "Add printer" +msgstr "新增印表機" + +#: plugins/PrepareStage/PrepareMenu.qml:90 +msgctxt "@button" +msgid "Manage printers" +msgstr "管理印表機" + +#: plugins/PrepareStage/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "準備" + +#: plugins/PrepareStage/plugin.json +msgctxt "name" +msgid "Prepare Stage" +msgstr "準備介面" + +#: plugins/PrepareStage/plugin.json +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "在 cura 提供一個準備介面。" + +#: plugins/PreviewStage/__init__.py:13 +msgctxt "@item:inmenu" +msgid "Preview" +msgstr "預覽" + +#: plugins/PreviewStage/plugin.json +msgctxt "name" +msgid "Preview Stage" +msgstr "預覽介面" + +#: plugins/PreviewStage/plugin.json +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "在 Cura 提供一個預覽介面。" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "儲存至行動裝置" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "儲存到行動裝置 {0}" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 +#: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "沒有可供寫入的檔案格式!" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109 +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "正在儲存到行動裝置 {0}" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110 +msgctxt "@info:title" +msgid "Saving" +msgstr "儲存中" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123 +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "無法儲存到 {0}{1}" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139 +#, 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} 時無法找到檔名。" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171 +#, python-brace-format +msgctxt "@info:status" +msgid "Could not save to removable drive {0}: {1}" +msgstr "無法儲存到行動裝置 {0}:{1}" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162 +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "儲存到行動裝置 {0}:{1}" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 +msgctxt "@info:title" +msgid "File Saved" +msgstr "檔案已儲存" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +msgctxt "@action:button" +msgid "Eject" +msgstr "卸載" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "卸載行動裝置 {0}" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184 +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "已卸載 {0}。現在你可以安全地移除行動裝置。" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "安全移除硬體" + +#: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188 +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "無法卸載 {0},可能有其它程式正在使用行動裝置。" + +#: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "行動裝置" + +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "提供行動裝置熱插拔和寫入檔案的支援。" + +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "行動裝置輸出設備外掛" + +#: plugins/SentryLogger/plugin.json +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "記錄某些事件以便在錯誤報告中使用" + +#: plugins/SentryLogger/plugin.json +msgctxt "name" +msgid "Sentry Logger" +msgstr "哨兵記錄器" + +#: plugins/SimulationView/SimulationView.py:129 +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "因為你還沒切片,沒有東西可顯示。" + +#: plugins/SimulationView/SimulationView.py:130 +msgctxt "@info:title" +msgid "No layers to show" +msgstr "沒有列印層可顯示" + +#: plugins/SimulationView/SimulationView.py:132 +#: plugins/SolidView/SolidView.py:74 +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "不要再顯示這個訊息" + +#: plugins/SimulationView/SimulationViewMenuComponent.qml:18 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:47 msgctxt "@label" msgid "Color scheme" msgstr "顏色方案" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:104 msgctxt "@label:listbox" msgid "Material Color" msgstr "線材顏色" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:108 msgctxt "@label:listbox" msgid "Line Type" msgstr "線條類型" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:112 msgctxt "@label:listbox" msgid "Speed" msgstr "速度" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:116 msgctxt "@label:listbox" msgid "Layer Thickness" msgstr "層厚" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:120 msgctxt "@label:listbox" msgid "Line Width" msgstr "線寬" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:124 msgctxt "@label:listbox" msgid "Flow" msgstr "流動" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:164 msgctxt "@label" msgid "Compatibility Mode" msgstr "相容模式" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:231 msgctxt "@label" msgid "Travels" msgstr "移動軌跡" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:237 msgctxt "@label" msgid "Helpers" msgstr "輔助結構" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:243 msgctxt "@label" msgid "Shell" msgstr "外殼" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:64 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:249 msgctxt "@label" msgid "Infill" msgstr "填充" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" msgid "Starts" msgstr "啟動" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:304 msgctxt "@label" msgid "Only Show Top Layers" msgstr "只顯示頂層" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:313 msgctxt "@label" msgid "Show 5 Detailed Layers On Top" msgstr "顯示頂端 5 層列印細節" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:326 msgctxt "@label" msgid "Top / Bottom" msgstr "頂 / 底層" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:330 msgctxt "@label" msgid "Inner Wall" msgstr "內壁" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:397 msgctxt "@label" msgid "min" msgstr "最小值" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 +#: plugins/SimulationView/SimulationViewMenuComponent.qml:462 msgctxt "@label" msgid "max" msgstr "最大值" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 +# Added manually to fix a string that was changed after string freeze. +#: plugins/SimulationView/__init__.py:15 +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "分層檢視" + +#: plugins/SimulationView/plugin.json +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "" + +#: plugins/SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "模擬檢視" + +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16 msgctxt "@title:window" msgid "More information on anonymous data collection" msgstr "更多關於匿名資料收集的資訊" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73 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 搜集匿名資料以提高列印品質和使用者體驗。以下是共享資料的範例:" +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 搜集匿名資料以提高列印品質和使用者體驗。以下是共享資料的範例:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107 msgctxt "@text:window" msgid "I don't want to send anonymous data" msgstr "我不想傳送匿名資料" -#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 +#: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "允許傳送匿名資料" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "列印平台調整水平" +#: plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "無法讀取範例資料檔案." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "name" +msgid "Slice info" +msgstr "切片資訊" + +#: plugins/SliceInfoPlugin/plugin.json +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "提交匿名切片資訊。這項功能可以在偏好設定中關閉。" + +#: plugins/SolidView/SolidView.py:71 +msgctxt "@info:status" +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "模型區域顯示已遺失或突出表面, 請修復您的模型並重新匯入Cura." + +#: plugins/SolidView/SolidView.py:73 +msgctxt "@info:title" +msgid "Model Errors" +msgstr "模型錯誤" + +#: plugins/SolidView/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "實體檢視" + +#: plugins/SolidView/plugin.json +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "提供一個基本的實體網格檢視。" + +#: plugins/SolidView/plugin.json +msgctxt "name" +msgid "Solid View" +msgstr "實體檢視" + +#: plugins/SupportEraser/__init__.py:12 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 "為了確保列印品質出色,你現在可以開始調整你的列印平台。當你點擊「移動到下一個位置」時,噴頭將移動到不同的可調節位置。" +msgid "Support Blocker" +msgstr "支撐阻斷器" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 -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 "在噴頭停止的每一個位置下方插入一張紙,並調整平台高度。當紙張恰好被噴頭的尖端輕微壓住時,表示列印平台已被校準在正確的高度。" +#: plugins/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "建立一塊不列印支撐的空間。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "開始進行列印平台調平" +#: plugins/SupportEraser/plugin.json +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "建立一個抹除器網格放在某些地方用來防止列印支撐" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "移動到下一個位置" +#: plugins/SupportEraser/plugin.json +msgctxt "name" +msgid "Support Eraser" +msgstr "支援抹除器" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "請選擇適用於 Ultimaker Original 的更新檔案" +#: plugins/TrimeshReader/__init__.py:15 +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "打開壓縮的三角面網格" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "熱床(官方版本或自製版本)" +#: plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "COLLADA Digital Asset Exchange" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 +#: plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "glTF Binary" + +#: plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "glTF Embedded JSON" + +#: plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Stanford 三角形格式" + +#: plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "Compressed COLLADA Digital Asset Exchange" + +#: plugins/TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "提供讀取模型檔案的支援。" + +#: plugins/TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh 讀取器" + +#: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "UltiMaker Format Package" +msgstr "UltiMaker 格式的封包" + +#: plugins/UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "" + +#: plugins/UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP 讀取器" + +#: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80 +#: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115 +#: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180 +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "無法寫入 UFP 檔案:" + +#: plugins/UFPWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "" + +#: plugins/UFPWriter/plugin.json +msgctxt "name" +msgid "UFP Writer" +msgstr "UFP 寫入器" + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "" + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "UltiMaker 網絡連線" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 msgctxt "@title:window" msgid "Connect to Networked Printer" msgstr "連接到網路印表機" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 -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-code 檔案傳輸到印表機。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 msgctxt "@label" msgid "Select your printer from the list below:" msgstr "從下列清單中選擇你的印表機:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +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-code 檔案傳輸到印表機。" + +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 msgctxt "@action:button" msgid "Edit" msgstr "編輯" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:140 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:321 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 +#: resources/qml/Preferences/MachinesPage.qml:153 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:186 +#: resources/qml/Preferences/ProfilesPage.qml:321 msgctxt "@action:button" msgid "Remove" msgstr "移除" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 msgctxt "@action:button" msgid "Refresh" msgstr "刷新" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "如果你的印表機未被列出,請閱讀網路列印故障排除指南" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247 msgctxt "@label" msgid "Type" msgstr "類型" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256 msgctxt "@label" msgid "Firmware version" msgstr "韌體版本" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266 msgctxt "@label" msgid "Address" msgstr "位址" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 msgctxt "@label" msgid "This printer is not set up to host a group of printers." msgstr "此印表機未被設定為管理印表機群組。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "此印表機為 %1 印表機群組的管理者。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 msgctxt "@label" msgid "The printer at this address has not yet responded." msgstr "該網路位址的印表機尚無回應。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 msgctxt "@action:button" msgid "Connect" msgstr "連接" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 msgctxt "@title:window" msgid "Invalid IP address" msgstr "無效的 IP 位址" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141 msgctxt "@text" msgid "Please enter a valid IP address." msgstr "請輸入有效的 IP 位址 。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 msgctxt "@title:window" msgid "Printer Address" msgstr "印表機網路位址" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 +#: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97 msgctxt "@label" msgid "Enter the IP address of your printer on the network." msgstr "輸入印表機的 IP 位址。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 msgctxt "@title:window" msgid "Configuration Changes" msgstr "修改設定" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36 msgctxt "@action:button" msgid "Override" msgstr "覆寫" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83 msgctxt "@label" msgid "The assigned printer, %1, requires the following configuration change:" msgid_plural "The assigned printer, %1, requires the following configuration changes:" msgstr[0] "分配的印表機 %1 需要下列的設定更動:" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87 msgctxt "@label" msgid "The printer %1 is assigned, but the job contains an unknown material configuration." msgstr "已分配到印表機 %1,但列印工作含有未知的線材設定。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97 msgctxt "@label" msgid "Change material %1 from %2 to %3." msgstr "將線材 %1 從 %2 改成 %3。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100 msgctxt "@label" msgid "Load %3 as material %1 (This cannot be overridden)." msgstr "將 %3 做為線材 %1 載入(無法覆寫)。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103 msgctxt "@label" msgid "Change print core %1 from %2 to %3." msgstr "將 print core %1 從 %2 改成 %3。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "將列印平台改成 %1(無法覆寫)。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110 msgctxt "@label" msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." msgstr "覆寫會將指定的設定套用在現有的印表機上。這可能導致列印失敗。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:178 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:175 -msgctxt "@label" -msgid "Glass" -msgstr "玻璃" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154 -msgctxt "@label" -msgid "Aluminum" -msgstr "鋁" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 msgctxt "@label" msgid "Move to top" msgstr "移至頂端" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155 msgctxt "@label" msgid "Delete" msgstr "刪除" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:284 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186 +#: resources/qml/MonitorButton.qml:284 msgctxt "@label" msgid "Resume" msgstr "繼續" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188 msgctxt "@label" msgid "Pausing..." msgstr "正在暫停..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190 msgctxt "@label" msgid "Resuming..." msgstr "正在繼續..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:279 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:288 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192 +#: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288 msgctxt "@label" msgid "Pause" msgstr "暫停" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "正在中斷..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 msgctxt "@label" msgid "Abort" msgstr "中斷" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:142 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206 +msgctxt "@label" +msgid "Aborting..." +msgstr "正在中斷..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218 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 移至隊列的頂端嗎?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219 msgctxt "@window:title" msgid "Move print job to top" msgstr "將列印作業移至最頂端" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:151 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227 msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to delete %1?" msgstr "你確定要刪除 %1 嗎?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228 msgctxt "@window:title" msgid "Delete print job" msgstr "刪除列印作業" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:160 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236 msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to abort %1?" msgstr "你確定要中斷 %1 嗎?" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:161 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237 +#: resources/qml/MonitorButton.qml:326 msgctxt "@window:title" msgid "Abort print" msgstr "中斷列印" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "管理印表機" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:239 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "請更新你印表機的韌體以便遠端管理工作隊列。" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:275 -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中瀏覽網路攝影機." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335 -msgctxt "@label:status" -msgid "Loading..." -msgstr "正在載入..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "無法使用" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "無法連接" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347 -msgctxt "@label:status" -msgid "Idle" -msgstr "閒置中" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "正在準備..." - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Printing" -msgstr "正在列印" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397 -msgctxt "@label" -msgid "Untitled" -msgstr "無標題" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:412 -msgctxt "@label" -msgid "Anonymous" -msgstr "匿名" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:433 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "需要修改設定" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:447 -msgctxt "@action:button" -msgid "Details" -msgstr "細項" - -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 msgctxt "@label" msgid "Unavailable printer" msgstr "無法使用的印表機" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 msgctxt "@label" msgid "First available" msgstr "可用的第一個" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472 +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "請更新你印表機的韌體以便遠端管理工作隊列。" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 msgctxt "@label:status" msgid "Aborted" msgstr "已中斷" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74 msgctxt "@label:status" msgid "Finished" msgstr "已完成" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Preparing..." +msgstr "正在準備..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 msgctxt "@label:status" msgid "Aborting..." msgstr "正在中斷..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 msgctxt "@label:status" msgid "Failed" msgstr "失敗" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 msgctxt "@label:status" msgid "Pausing..." msgstr "正在暫停..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 msgctxt "@label:status" msgid "Paused" msgstr "已暫停" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 msgctxt "@label:status" msgid "Resuming..." msgstr "正在繼續..." -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 msgctxt "@label:status" msgid "Action required" msgstr "需要採取的動作" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 msgctxt "@label:status" msgid "Finishes %1 at %2" msgstr "在 %2 完成 %1" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148 +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "管理印表機" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280 +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中瀏覽網路攝影機." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340 +msgctxt "@label:status" +msgid "Loading..." +msgstr "正在載入..." + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344 +msgctxt "@label:status" +msgid "Unavailable" +msgstr "無法使用" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 +msgctxt "@label:status" +msgid "Unreachable" +msgstr "無法連接" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 +msgctxt "@label:status" +msgid "Idle" +msgstr "閒置中" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361 +msgctxt "@label:status" +msgid "Printing" +msgstr "正在列印" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402 +msgctxt "@label" +msgid "Untitled" +msgstr "無標題" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417 +msgctxt "@label" +msgid "Anonymous" +msgstr "匿名" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438 +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "需要修改設定" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452 +msgctxt "@action:button" +msgid "Details" +msgstr "細項" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29 msgctxt "@label" msgid "Queued" msgstr "已排入隊列" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64 msgctxt "@label link to connect manager" msgid "Manage in browser" msgstr "使用瀏覽器管理" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:90 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91 msgctxt "@label" msgid "There are no print jobs in the queue. Slice and send a job to add one." msgstr "目前沒有列印作業在隊列中。可透過切片並傳送列印作來增加一個。" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:98 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 msgctxt "@label" msgid "Print jobs" msgstr "列印作業" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108 msgctxt "@label" msgid "Total print time" msgstr "總列印時間" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117 msgctxt "@label" msgid "Waiting for" msgstr "等待" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117 +msgctxt "@info" +msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129 +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "" + +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12 msgctxt "@title:window" msgid "Print over network" msgstr "網路連線列印" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 msgctxt "@action:button" msgid "Print" msgstr "列印" -#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 +#: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 msgctxt "@label" msgid "Printer selection" msgstr "印表機選擇" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162 +msgctxt "@action:button" +msgid "Print via cloud" +msgstr "透過雲端服務列印" + +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163 +msgctxt "@properties:tooltip" +msgid "Print via cloud" +msgstr "透過雲端服務列印" + +#: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82 +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164 +msgctxt "@info:status" +msgid "Connected via cloud" +msgstr "透過雲端服務連接" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276 +msgctxt "@action:button" +msgid "Monitor print" +msgstr "監控列印" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278 +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "在Ultimaker Digital Factory中追蹤您的列印" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298 +#, python-brace-format +msgctxt "@error:send" +msgid "Unknown error code when uploading print job: {0}" +msgstr "不明上傳列印作業錯誤代碼:{0}" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422 +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23 +msgctxt "info:name" +msgid "Ultimaker Digital Factory" +msgstr "Ultimaker Digital Factory" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425 +#, 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} 將被移除,直到下次帳號同步之前。" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426 +#, 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}" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427 +#, 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} 嗎?" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474 +msgctxt "@title:window" +msgid "Remove printers?" +msgstr "移除印表機?" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477 +#, python-brace-format +msgctxt "@label" +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" +"你確定要繼續嗎?" + +#: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +msgctxt "@label" +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" +"你確定要繼續嗎?" + +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 +#, 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 "" +"您的列印機 {printer_name} 可以透過雲端連接.\n" +"\v透過連接Digital Factory使您可以任意管理列印順序及監控列印" + +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "您準備好雲端列印嗎?" + +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +msgctxt "@action" +msgid "Get started" +msgstr "開始" + +#: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24 +msgctxt "@action" +msgid "Learn more" +msgstr "學習更多" + +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +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 的印表機。請將印表機更新至最新版本的韌體。" + +#: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "更新你印表機" + +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24 +#, 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} 的管理主機上未安裝的線材參數。" + +#: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "向印表機傳送線材參數中" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13 +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29 +#, 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})" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48 +#, python-brace-format +msgctxt "info:{0} gets replaced by a number of printers" +msgid "... and {0} other" +msgid_plural "... and {0} others" +msgstr[0] "… 和 {0} 其他" + +#: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57 +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "從 Digital Factory 新增的印表機:" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27 +#, 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},但它不是印表機群組的管理者。你可以透過網頁將其設定為印表機群組的管理者。" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "不是印表機群組管理者" + +#: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +msgctxt "@action" +msgid "Configure group" +msgstr "設定印表機群組" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18 +msgctxt "@info:status" +msgid "You will receive a confirmation via email when the print job is approved" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19 +msgctxt "@info:title" +msgid "The print job was successfully submitted" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22 +msgctxt "@action" +msgid "Manage print jobs" +msgstr "" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "請等待目前作業傳送完成。" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 +msgctxt "@info:title" +msgid "Print error" +msgstr "列印錯誤" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "雲端服務未上傳資料到印表機。" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 +msgctxt "@info:title" +msgid "Network error" +msgstr "網路錯誤" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "正在傳送列印作業" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "正在上傳列印作業到印表機。" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16 +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "列印作業隊列已滿,印表機無法再接受新的作業。" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "隊列已滿" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "列印作業已成功傳送到印表機。" + +#: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "資料傳送" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17 +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "印表機未連到 Digital Factory:" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29 +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "要建立連線,請前往 {website_link}" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33 +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "印表機無法使用雲端連接" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41 +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "保留印表機設定" + +#: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46 +msgctxt "@action:button" +msgid "Remove printers" +msgstr "移除印表機" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "網路連線列印" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "網路連線列印" + +#: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "透過網路連接" + +#: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +msgctxt "@action" +msgid "Connect via Network" +msgstr "透過網路連接" + +#: plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "明天" + +#: plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "今天" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "USB 連線列印" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:43 +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "透過 USB 連線列印" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:44 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "透過 USB 連線列印" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:80 +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "透過 USB 連接" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:110 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "USB 列印正在進行中,關閉 Cura 將停止此列印工作。你確定要繼續嗎?" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:135 +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "列印仍在進行中。列印完成前,Cura 無法透過 USB 開始另一次列印。" + +#: plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "列印正在進行中" + +#: plugins/USBPrinting/plugin.json +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "接受 G-Code 並且傳送到印表機。此外掛也可以更新韌體。" + +#: plugins/USBPrinting/plugin.json +msgctxt "name" +msgid "USB printing" +msgstr "USB 連線列印" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 +msgctxt "@action" +msgid "Level build plate" +msgstr "調整列印平台水平" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "列印平台調整水平" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 +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 "為了確保列印品質出色,你現在可以開始調整你的列印平台。當你點擊「移動到下一個位置」時,噴頭將移動到不同的可調節位置。" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 +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 "在噴頭停止的每一個位置下方插入一張紙,並調整平台高度。當紙張恰好被噴頭的尖端輕微壓住時,表示列印平台已被校準在正確的高度。" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "開始進行列印平台調平" + +#: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "移動到下一個位置" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 +msgctxt "@action" +msgid "Select upgrades" +msgstr "選擇升級" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 +msgctxt "@label" +msgid "Please select any upgrades made to this UltiMaker Original" +msgstr "請選擇適用於 UltiMaker Original 的更新檔案" + +#: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "熱床(官方版本或自製版本)" + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "提供 UltiMaker 機器的操作(例如平台調平精靈,選擇升級等)。" + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "將設定從 Cura 2.1 版本升級至 2.2 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "升級版本 2.1 到 2.2" + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "將設定從 Cura 2.2 版本升級至 2.4 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "升級版本 2.2 到 2.4" + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "將設定從 Cura 2.5 版本升級至 2.6 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "升級版本 2.5 到 2.6" + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "將設定從 Cura 2.6 版本升級至 2.7 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "升級版本 2.6 到 2.7" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "將設定從 Cura 2.7 版本升級至 3.0 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "升級版本 2.7 到 3.0" + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "將設定從 Cura 3.0 版本升級至 3.1 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "升級版本 3.0 到 3.1" + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "將設定從 Cura 3.2 版本升級至 3.3 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "升級版本 3.2 到 3.3" + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "將設定從 Cura 3.3 版本升級至 3.4 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "升級版本 3.3 到 3.4" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "將設定從 Cura 3.4 版本升級至 3.5 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "升級版本 3.4 到 3.5" + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "將設定從 Cura 3.5 版本升級至 4.0 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "升級版本 3.5 到 4.0" + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "將設定從 Cura 4.0 版本升級至 4.1 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "升級版本 4.0 到 4.1" + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "將設定從 Cura 4.11 版本升級至 4.12 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "升級版本 4.11 到 4.12" + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "將設定從 Cura 4.1 版本升級至 4.2 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "升級版本 4.1 到 4.2" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "將設定從 Cura 4.2 版本升級至 4.3 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "升級版本 4.2 到 4.3" + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "將設定從 Cura 4.3 版本升級至 4.4 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "升級版本 4.3 到 4.4" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "將設定從 Cura 4.4 版本升級至 4.5 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "升級版本 4.4 到 4.5" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "將設定從 Cura 4.5 版本升級至 4.6 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "升級版本 4.5 到 4.6" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "將設定從 Cura 4.6.0 版本升級至 4.6.2 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "升級版本 4.6.0 到 4.6.2" + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "將設定從 Cura 4.6.2 版本升級至 4.7 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "升級版本 4.6.2 到 4.7" + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "將設定從 Cura 4.7 版本升級至 4.8 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "升級版本 4.7 到 4.8" + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "將設定從 Cura 4.8 版本升級至 4.9 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "升級版本 4.8 到 4.9" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "將設定從 Cura 4.9 版本升級至 4.10 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "升級版本 4.9 到 4.10" + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "將設定從 Cura 5.2 版本升級至 5.3 版本。" + +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "升級版本 5.2 到 5.3" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "" + +#: plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3D 檔案" + +#: plugins/X3DReader/plugin.json +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "提供讀取 X3D 檔案的支援。" + +#: plugins/X3DReader/plugin.json +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D 讀取器" + +#: plugins/XRayView/__init__.py:12 +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "透視檢視" + +#: plugins/XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "提供透視檢視。" + +#: plugins/XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "透視檢視" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "線材參數" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "提供讀寫 XML 格式線材參數的功能。" + +#: resources/qml/Account/AccountWidget.qml:24 msgctxt "@action:button" msgid "Sign in" msgstr "登入" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:19 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 +#: resources/qml/Account/GeneralOperations.qml:19 +#: resources/qml/WelcomePages/CloudContent.qml:64 msgctxt "@label" -msgid "Sign in to the Ultimaker platform" -msgstr "登入Ultimaker 論壇" +msgid "Sign in to the UltiMaker platform" +msgstr "登入UltiMaker 論壇" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 +#: resources/qml/Account/GeneralOperations.qml:39 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" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" msgstr "" "- 從市集中加入線材參數及插件\n" "-備份及同步您的線材設定與插件 \n" -"- 分享創意並可從Ultimaker社群中超過48000的使用者得到幫助" +"- 分享創意並可從UltiMaker社群中超過48000的使用者得到幫助" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 +#: resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "創建免費的Ultimaker帳戶" +msgid "Create a free UltiMaker account" +msgstr "創建免費的UltiMaker帳戶" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 +#: resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "檢查中..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 +#: resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "帳號已同步" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 +#: resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "出了些問題..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 +#: resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "安裝待處理的更新" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 +#: resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "檢查帳號更新" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +#: resources/qml/Account/UserOperations.qml:78 msgctxt "@label The argument is a timestamp" msgid "Last update: %1" msgstr "最後一次更新:%1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +#: resources/qml/Account/UserOperations.qml:107 msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimaker 帳號" +msgid "UltiMaker Account" +msgstr "UltiMaker 帳號" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +#: resources/qml/Account/UserOperations.qml:126 msgctxt "@button" msgid "Sign Out" msgstr "登出" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" msgid "No time estimation available" msgstr "沒有時間估計" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:77 msgctxt "@label" msgid "No cost estimation available" msgstr "沒有成本估算" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +#: resources/qml/ActionPanel/OutputProcessWidget.qml:127 msgctxt "@button" msgid "Preview" msgstr "預覽" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" msgid "Time estimation" msgstr "時間估計" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 +#: resources/qml/ActionPanel/PrintJobInformation.qml:107 msgctxt "@label" msgid "Material estimation" msgstr "線材估計" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:156 +#: resources/qml/ActionPanel/PrintJobInformation.qml:156 msgctxt "@label m for meter" msgid "%1m" msgstr "%1m" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:157 +#: resources/qml/ActionPanel/PrintJobInformation.qml:157 msgctxt "@label g for grams" msgid "%1g" msgstr "%1g" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:54 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "正在切片..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:78 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:78 msgctxt "@label:PrintjobStatus" msgid "Unable to slice" msgstr "無法切片" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Processing" msgstr "處理中" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:114 msgctxt "@button" msgid "Slice" msgstr "切片" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:115 msgctxt "@label" msgid "Start the slicing process" msgstr "開始切片程序" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132 +#: resources/qml/ActionPanel/SliceProcessWidget.qml:132 msgctxt "@button" msgid "Cancel" msgstr "取消" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 +#: resources/qml/Actions.qml:81 msgctxt "@action:inmenu" msgid "Show Online Troubleshooting" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 +#: resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "切換全螢幕" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 +#: resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "離開全螢幕" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 +#: resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "復原(&U)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 +#: resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "取消復原(&R)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 +#: resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "退出(&Q)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 +#: resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "立體圖" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 +#: resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "前視圖" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 +#: resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "上視圖" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 +#: resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "下視圖" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 +#: resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "左視圖" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 +#: resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "右視圖" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 +#: resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "設定 Cura..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 +#: resources/qml/Actions.qml:197 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "新增印表機(&A)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 +#: resources/qml/Actions.qml:203 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "管理印表機(&I)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 +#: resources/qml/Actions.qml:210 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "管理線材..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:216 -msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate." +#: resources/qml/Actions.qml:218 +msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." msgid "Add more materials from Marketplace" -msgstr "" +msgstr "從市集增加更多線材" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 +#: resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "使用目前設定 / 覆寫更新列印參數(&U)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 +#: resources/qml/Actions.qml:233 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "捨棄目前更改(&D)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 +#: resources/qml/Actions.qml:245 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "從目前設定 / 覆寫值建立列印參數(&C)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 +#: resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "管理列印參數.." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 +#: resources/qml/Actions.qml:259 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "顯示線上說明文件(&D)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 +#: resources/qml/Actions.qml:267 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "BUG 回報(&B)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 +#: resources/qml/Actions.qml:275 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "新功能" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 +#: resources/qml/Actions.qml:289 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "關於..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 +#: resources/qml/Actions.qml:296 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "刪除選取" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 +#: resources/qml/Actions.qml:306 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "置中選取" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 +#: resources/qml/Actions.qml:315 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "複製選取" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 +#: resources/qml/Actions.qml:324 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "刪除模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 +#: resources/qml/Actions.qml:332 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "將模型置中(&N)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 +#: resources/qml/Actions.qml:338 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "群組模型(&G)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 +#: resources/qml/Actions.qml:358 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "取消模型群組" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 +#: resources/qml/Actions.qml:368 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "結合模型(&M)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 +#: resources/qml/Actions.qml:378 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "複製模型...(&M)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 +#: resources/qml/Actions.qml:385 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "選擇所有模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 +#: resources/qml/Actions.qml:395 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "清空列印平台" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 +#: resources/qml/Actions.qml:405 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "重新載入所有模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 +#: resources/qml/Actions.qml:414 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "排列所有模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 +#: resources/qml/Actions.qml:422 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "排列所選模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 +#: resources/qml/Actions.qml:429 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "重置所有模型位置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 +#: resources/qml/Actions.qml:436 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "重置所有模型旋轉" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 +#: resources/qml/Actions.qml:445 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "開啟檔案(&O)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 +#: resources/qml/Actions.qml:455 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "新建專案(&N)..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 +#: resources/qml/Actions.qml:462 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "顯示設定資料夾" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 +#: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "參數顯示設定..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 msgctxt "@label:button" msgid "My printers" msgstr "我的列印機" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 msgctxt "@tooltip:button" msgid "Monitor printers in Ultimaker Digital Factory." msgstr "從Ultimaker Digital Factory中監控我的列印機." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "從 Digital Library中創建列印專案." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 msgctxt "@label:button" msgid "Print jobs" msgstr "列印工作" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 msgctxt "@tooltip:button" msgid "Monitor print jobs and reprint from your print history." msgstr "監控列印工作並於從您的歷史紀錄中再次列印." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." -msgstr "使用插件及線材參數擴充Ultimaker Cura." +msgid "Extend UltiMaker Cura with plugins and material profiles." +msgstr "使用插件及線材參數擴充UltiMaker Cura." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." -msgstr "使用Ultimaker e-learning成為一位3D列印專家." +msgid "Become a 3D printing expert with UltiMaker e-learning." +msgstr "使用UltiMaker e-learning成為一位3D列印專家." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Ultimaker 支援" +msgid "UltiMaker support" +msgstr "UltiMaker 支援" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." -msgstr "學習如何開始使用Ultimaker Cura." +msgid "Learn how to get started with UltiMaker Cura." +msgstr "學習如何開始使用UltiMaker Cura." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 msgctxt "@label:button" msgid "Ask a question" msgstr "提出問題" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "諮詢Ultimaker社群." +msgid "Consult the UltiMaker Community." +msgstr "諮詢UltiMaker社群." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 msgctxt "@label:button" msgid "Report a bug" msgstr "回報Bug" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "讓開發者了解您遇到的問題." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +#: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "參觀Ultimaker網站." +msgid "Visit the UltiMaker website." +msgstr "參觀UltiMaker網站." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 +#: resources/qml/ColorDialog.qml:110 msgctxt "@label" msgid "Hex" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 +#: resources/qml/Cura.qml:256 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "此套件將在重新啟動後安裝。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +#: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14 msgctxt "@title:tab" msgid "General" msgstr "基本" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +#: resources/qml/Cura.qml:470 msgctxt "@title:tab" msgid "Settings" msgstr "設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:468 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:17 +#: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17 msgctxt "@title:tab" msgid "Printers" msgstr "印表機" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:470 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70 +#: resources/qml/Cura.qml:474 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:70 msgctxt "@title:tab" msgid "Materials" msgstr "線材" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:472 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:57 +#: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57 msgctxt "@title:tab" msgid "Profiles" msgstr "列印參數" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +#: resources/qml/Cura.qml:581 msgctxt "@title:window %1 is the application name" msgid "Closing %1" msgstr "關閉 %1 中" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:590 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:599 +#: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591 msgctxt "@label %1 is the application name" msgid "Are you sure you want to exit %1?" msgstr "是否確定要離開 %1 ?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:637 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 +#: resources/qml/Cura.qml:629 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 msgctxt "@title:window" msgid "Open file(s)" msgstr "開啟檔案" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +#: resources/qml/Cura.qml:734 msgctxt "@window:title" msgid "Install Package" msgstr "安裝套件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +#: resources/qml/Cura.qml:741 msgctxt "@title:window" msgid "Open File(s)" msgstr "開啟檔案" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +#: resources/qml/Cura.qml:743 msgctxt "@text:window" msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." msgstr "我們已經在你選擇的檔案中找到一個或多個 G-Code 檔案。你一次只能開啟一個 G-Code 檔案。若需開啟 G-Code 檔案,請僅選擇一個。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:831 +#: resources/qml/Cura.qml:828 msgctxt "@title:window" msgid "Add Printer" msgstr "新增印表機" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +#: resources/qml/Cura.qml:836 msgctxt "@title:window" msgid "What's New" msgstr "新功能" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: resources/qml/Cura.qml:890 +msgctxt "@title:window" +msgid "Save Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:891 +msgctxt "@textfield:placeholder" +msgid "New Custom Profile" +msgstr "" + +#: resources/qml/Cura.qml:892 +msgctxt "@info" +msgid "Custom profile name:" +msgstr "" + +#: resources/qml/Cura.qml:909 +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 "" + +#: resources/qml/Cura.qml:917 +msgctxt "@action:button" +msgid "Learn more about Cura print profiles" +msgstr "" + +#: resources/qml/Cura.qml:926 +msgctxt "@button" +msgid "Save new profile" +msgstr "" + +#: resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "關於 %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: resources/qml/Dialogs/AboutDialog.qml:59 msgctxt "@label" msgid "version: %1" msgstr "版本:%1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: resources/qml/Dialogs/AboutDialog.qml:74 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "熔絲 3D 列印技術的的端對端解決方案。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: resources/qml/Dialogs/AboutDialog.qml:87 msgctxt "@info:credit" msgid "" -"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura is developed by UltiMaker in cooperation with the community.\n" "Cura proudly uses the following open source projects:" msgstr "" "Cura 由 Ultimaker B.V. 與社群合作開發。\n" "Cura 使用以下開源專案:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label Description for application component" msgid "Graphical user interface" msgstr "圖形用戶介面" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label Description for application component" msgid "Application framework" msgstr "應用框架" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label Description for application component" msgid "G-code generator" msgstr "G-code 產生器" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label Description for application component" msgid "Interprocess communication library" msgstr "進程間通訊交互使用庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:142 +msgctxt "@label Description for application component" msgid "Python bindings for libnest2d" -msgstr "Python bindings for libnest2d" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label Description for application component" msgid "Polygon packing library, developed by Prusa Research" msgstr "多邊形包裝函式庫,由 Prusa Research 開發" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:144 +msgctxt "@label Description for application component" msgid "Support library for handling 3MF files" msgstr "用於處理 3MF 檔案的函式庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:145 +msgctxt "@label Description for application component" msgid "Support library for file metadata and streaming" msgstr "用於檔案 metadata 和串流的函式庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "編程語言" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label Description for application dependency" msgid "GUI framework" msgstr "GUI 框架" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label Description for application dependency" msgid "GUI framework bindings" msgstr "GUI 框架綁定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label Description for application dependency" msgid "C/C++ Binding library" msgstr "C / C++ 綁定庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:152 +msgctxt "@label Description for application dependency" msgid "Data interchange format" msgstr "資料交換格式" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +#: resources/qml/Dialogs/AboutDialog.qml:153 msgctxt "@label" msgid "Font" msgstr "字體" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label Description for application dependency" msgid "Polygon clipping library" msgstr "多邊形剪輯函式庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label Description for application dependency" msgid "JSON parser" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:158 +msgctxt "@label Description for application dependency" msgid "Utility functions, including an image loader" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:159 +msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:162 +#: resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label Description for application dependency" msgid "Root Certificates for validating SSL trustworthiness" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label Description for application dependency" msgid "Compatibility between Python 2 and 3" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label Description for application dependency" msgid "Support library for system keyring access" msgstr "存取系統金鑰函式庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label Description for application dependency" msgid "Support library for faster math" msgstr "高速運算函式庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label Description for application dependency" msgid "Support library for handling STL files" msgstr "用於處理 STL 檔案的函式庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label Description for application dependency" msgid "Python bindings for Clipper" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "串口通訊函式庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label Description for application dependency" msgid "Support library for scientific computing" msgstr "科學計算函式庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 -msgctxt "@Label" +#: resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@Label Description for application dependency" msgid "Python Error tracking library" -msgstr "Python 錯誤追蹤函式庫" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:172 +msgctxt "@label Description for application dependency" msgid "Support library for handling triangular meshes" msgstr "用於處理三角形網格的函式庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:173 +msgctxt "@label Description for application dependency" msgid "ZeroConf discovery library" msgstr "ZeroConf 發現函式庫" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label Description for development tool" msgid "Dependency and package manager" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label Description for development tool" msgid "Packaging Python-applications" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:179 +msgctxt "@label Description for development tool" msgid "Linux cross-distribution application deployment" msgstr "Linux cross-distribution 應用程式部署" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 -msgctxt "@label" +#: resources/qml/Dialogs/AboutDialog.qml:180 +msgctxt "@label Description for development tool" msgid "Generating Windows installers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 msgctxt "@title:window" msgid "Open project file" msgstr "開啟專案檔案" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84 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 專案檔案。你想將其作為一個專案開啟還是從中匯入模型?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:90 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91 msgctxt "@text:window" msgid "Remember my choice" msgstr "記住我的選擇" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105 msgctxt "@action:button" msgid "Open as project" msgstr "作為專案開啟" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +#: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110 msgctxt "@action:button" msgid "Import models" msgstr "匯入模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:17 +msgctxt "@title:window" +msgid "Select Printer" +msgstr "" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:54 +msgctxt "@title:label" +msgid "Compatible Printers" +msgstr "" + +#: resources/qml/Dialogs/ChoosePrinterDialog.qml:110 +msgctxt "@description" +msgid "No compatible printers, that are currently online, were found." +msgstr "" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "捨棄或保留更改" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:49 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64 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 "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90 msgctxt "@title:column" msgid "Profile settings" msgstr "列印參數設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92 msgctxt "@title:column" msgid "Current changes" msgstr "目前更動" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:104 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:799 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123 +#: resources/qml/Preferences/GeneralPage.qml:820 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "總是詢問" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "捨棄更改,並不再詢問此問題" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "保留更改,並不再詢問此問題" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157 msgctxt "@action:button" msgid "Discard changes" msgstr "忽略更動" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164 msgctxt "@action:button" msgid "Keep changes" msgstr "保留更動" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171 +msgctxt "@action:button" +msgid "Save as new custom profile" +msgstr "" + +#: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178 +msgctxt "@action:button" +msgid "Save changes" +msgstr "" + +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47 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 "我們已經在你所選擇的檔案中找到一個或多個專案檔案,但一次只能開啟一個專案檔案。我們建議只從那些檔案中匯入模型而不開啟專案。你要繼續操作嗎?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 +#: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 msgctxt "@action:button" msgid "Import all as models" msgstr "匯入所有模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 +#: resources/qml/Dialogs/RenameDialog.qml:23 +msgctxt "@title:window" +msgid "Rename" +msgstr "" + +#: resources/qml/Dialogs/RenameDialog.qml:24 +msgctxt "@info" +msgid "Please provide a new name." +msgstr "" + +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 msgctxt "@title:window" msgid "Save Project" msgstr "儲存專案" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177 msgctxt "@action:label" msgid "Extruder %1" msgstr "擠出機 %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & 線材" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195 msgctxt "@action:label" msgid "Material" msgstr "線材" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "儲存時不再顯示專案摘要" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 +#: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298 msgctxt "@action:button" msgid "Save" msgstr "儲存" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16 -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" -msgstr[0] "用 %1 列印所選模型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:93 +#: resources/qml/JobSpecs.qml:93 msgctxt "@text Print job name" msgid "Untitled" msgstr "無標題" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13 +#: resources/qml/MainWindow/ApplicationMenu.qml:63 +#: resources/qml/Menus/SettingsMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "設定(&S)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 +#: resources/qml/MainWindow/ApplicationMenu.qml:87 msgctxt "@title:window" msgid "New project" msgstr "新建專案" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88 +#: resources/qml/MainWindow/ApplicationMenu.qml:88 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 "你確定要開始一個新專案嗎?這將清除列印平台及任何未儲存的設定。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135 +#: resources/qml/MainWindow/MainWindowHeader.qml:135 msgctxt "@action:button" msgid "Marketplace" msgstr "市集" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +#: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 msgctxt "@header" msgid "Configurations" msgstr "設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 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 下載正確的線材參數設定。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 msgctxt "@label" msgid "Marketplace" msgstr "市集" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 msgctxt "@label" msgid "Loading available configurations from the printer..." msgstr "從印表機載入可用的設定..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 msgctxt "@label" msgid "The configurations are not available because the printer is disconnected." msgstr "由於印表機已斷線,因此設定無法使用。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 msgctxt "@tooltip" msgid "The configuration of this extruder is not allowed, and prohibits slicing." msgstr "不允許使用此擠出機的配置並禁止切片功能." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110 msgctxt "@tooltip" msgid "There are no profiles matching the configuration of this extruder." msgstr "目前無對應此擠出機的配置設定." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 msgctxt "@label" msgid "Select configuration" msgstr "選擇設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +#: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 msgctxt "@label" msgid "Configurations" msgstr "設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27 msgctxt "@header" msgid "Custom" msgstr "自訂選項" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:62 -msgctxt "@label" -msgid "Printer" -msgstr "印表機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:217 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173 msgctxt "@label" msgid "Enabled" msgstr "已啟用" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222 msgctxt "@label" msgid "Material" msgstr "線材" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +#: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348 msgctxt "@label" msgid "Use glue for better adhesion with this material combination." msgstr "在此線材組合下,使用膠水以獲得較佳的附著。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:29 +#: resources/qml/Menus/ContextMenu.qml:29 msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "列印所選模型:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:92 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "複製所選模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:123 msgctxt "@label" msgid "Number of Copies" msgstr "複製個數" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/EditMenu.qml:12 +#: resources/qml/Menus/EditMenu.qml:12 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "編輯(&E)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ExtensionMenu.qml:13 +#: resources/qml/Menus/ExtensionMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "擴充功能(&X)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13 +#: resources/qml/Menus/FileMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "檔案(&F)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:45 +#: resources/qml/Menus/FileMenu.qml:45 msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "儲存專案...(&S)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:78 +#: resources/qml/Menus/FileMenu.qml:78 msgctxt "@title:menu menubar:file" msgid "&Export..." msgstr "匯出...(&E)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:89 +#: resources/qml/Menus/FileMenu.qml:89 msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "匯出選擇..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/HelpMenu.qml:14 +#: resources/qml/Menus/HelpMenu.qml:14 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "幫助(&H)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +#: resources/qml/Menus/MaterialMenu.qml:13 msgctxt "@label:category menu label" msgid "Material" msgstr "線材" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:53 +#: resources/qml/Menus/MaterialMenu.qml:53 msgctxt "@label:category menu label" msgid "Favorites" msgstr "常用" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:78 +#: resources/qml/Menus/MaterialMenu.qml:78 msgctxt "@label:category menu label" msgid "Generic" msgstr "通用" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 +#: resources/qml/Menus/OpenFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open File(s)..." msgstr "開啟檔案." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PreferencesMenu.qml:21 +#: resources/qml/Menus/PreferencesMenu.qml:21 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "偏好設定(&R)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:13 +#: resources/qml/Menus/PrinterMenu.qml:13 msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "印表機(&P)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:17 +#: resources/qml/Menus/PrinterMenu.qml:17 msgctxt "@label:category menu label" msgid "Network enabled printers" msgstr "支援網路的印表機" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:50 +#: resources/qml/Menus/PrinterMenu.qml:50 msgctxt "@label:category menu label" msgid "Local printers" msgstr "本機印表機" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 +#: resources/qml/Menus/RecentFilesMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Open &Recent" msgstr "最近開啟的檔案(&R)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 +#: resources/qml/Menus/SaveProjectMenu.qml:15 msgctxt "@title:menu menubar:file" msgid "Save Project..." msgstr "儲存專案." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:34 -msgctxt "@title:menu" -msgid "&Material" -msgstr "線材(&M)" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:49 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "設為主要擠出機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:55 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "啟用擠出機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:63 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "關閉擠出機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 msgctxt "@action:inmenu" msgid "Visible Settings" msgstr "顯示設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42 msgctxt "@action:inmenu" msgid "Collapse All Categories" msgstr "折疊所有分類" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 +#: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51 msgctxt "@action:inmenu" msgid "Manage Setting Visibility..." msgstr "管理參數顯示..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:13 +#: resources/qml/Menus/SettingsMenu.qml:34 +msgctxt "@title:menu" +msgid "&Material" +msgstr "線材(&M)" + +#: resources/qml/Menus/SettingsMenu.qml:49 +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "設為主要擠出機" + +#: resources/qml/Menus/SettingsMenu.qml:55 +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "啟用擠出機" + +#: resources/qml/Menus/SettingsMenu.qml:63 +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "關閉擠出機" + +#: resources/qml/Menus/ViewMenu.qml:13 msgctxt "@title:menu menubar:toplevel" msgid "&View" msgstr "檢視(&V)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:17 +#: resources/qml/Menus/ViewMenu.qml:17 msgctxt "@action:inmenu menubar:view" msgid "&Camera position" msgstr "視角位置(&C)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:30 +#: resources/qml/Menus/ViewMenu.qml:30 msgctxt "@action:inmenu menubar:view" msgid "Camera view" msgstr "攝影機檢視" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48 +#: resources/qml/Menus/ViewMenu.qml:48 msgctxt "@action:inmenu menubar:view" msgid "Perspective" msgstr "透視" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +#: resources/qml/Menus/ViewMenu.qml:59 msgctxt "@action:inmenu menubar:view" msgid "Orthographic" msgstr "正交" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:115 +#: resources/qml/MonitorButton.qml:115 msgctxt "@label:MonitorStatus" msgid "Not connected to a printer" msgstr "未連接至印表機" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119 +#: resources/qml/MonitorButton.qml:119 msgctxt "@label:MonitorStatus" msgid "Printer does not accept commands" msgstr "印表機不接受命令" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:129 +#: resources/qml/MonitorButton.qml:129 msgctxt "@label:MonitorStatus" msgid "In maintenance. Please check the printer" msgstr "維護中。請檢查印表機" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:140 +#: resources/qml/MonitorButton.qml:140 msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "與印表機的連線中斷" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +#: resources/qml/MonitorButton.qml:142 msgctxt "@label:MonitorStatus" msgid "Printing..." msgstr "列印中..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +#: resources/qml/MonitorButton.qml:145 msgctxt "@label:MonitorStatus" msgid "Paused" msgstr "已暫停" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +#: resources/qml/MonitorButton.qml:148 msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "準備中..." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +#: resources/qml/MonitorButton.qml:150 msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "請取出列印件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +#: resources/qml/MonitorButton.qml:318 msgctxt "@label" msgid "Abort Print" msgstr "中斷列印" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:327 +#: resources/qml/MonitorButton.qml:327 msgctxt "@label" msgid "Are you sure you want to abort the print?" msgstr "你確定要中斷列印嗎?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:109 +#: resources/qml/ObjectItemButton.qml:109 msgctxt "@label" msgid "Is printed as support." msgstr "做為支撐而列印。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:112 +#: resources/qml/ObjectItemButton.qml:112 msgctxt "@label" msgid "Other models overlapping with this model are modified." msgstr "與此模型重疊的其他模型已被更改。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:115 +#: resources/qml/ObjectItemButton.qml:115 msgctxt "@label" msgid "Infill overlapping with this model is modified." msgstr "與此模型重疊的填充已被更改。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:118 +#: resources/qml/ObjectItemButton.qml:118 msgctxt "@label" msgid "Overlaps with this model are not supported." msgstr "與此模型的重疊沒有支撐。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:125 +#: resources/qml/ObjectItemButton.qml:125 msgctxt "@label %1 is the number of settings it overrides." msgid "Overrides %1 setting." msgid_plural "Overrides %1 settings." msgstr[0] "覆寫 %1 設定。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59 +#: resources/qml/ObjectSelector.qml:59 msgctxt "@label" msgid "Object list" msgstr "物件清單" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:131 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:24 +#: resources/qml/Preferences/GeneralPage.qml:134 +#: resources/qml/Preferences/SettingVisibilityPage.qml:24 msgctxt "@action:button" msgid "Defaults" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +#: resources/qml/Preferences/GeneralPage.qml:172 msgctxt "@label" msgid "Interface" msgstr "介面" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +#: resources/qml/Preferences/GeneralPage.qml:215 msgctxt "@heading" msgid "-- incomplete --" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +#: resources/qml/Preferences/GeneralPage.qml:261 msgctxt "@label" msgid "Currency:" msgstr "貨幣:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:274 +#: resources/qml/Preferences/GeneralPage.qml:277 msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." msgid "Theme*:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +#: resources/qml/Preferences/GeneralPage.qml:323 msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "當設定變更時自動進行切片。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +#: resources/qml/Preferences/GeneralPage.qml:331 msgctxt "@option:check" msgid "Slice automatically" msgstr "自動切片" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:337 +#: resources/qml/Preferences/GeneralPage.qml:340 +msgctxt "@info:tooltip" +msgid "Show an icon and notifications in the system notification area." +msgstr "" + +#: resources/qml/Preferences/GeneralPage.qml:348 +msgctxt "@option:check" +msgid "Add icon to system tray *" +msgstr "" + +#: resources/qml/Preferences/GeneralPage.qml:357 msgctxt "@label" msgid "*You will need to restart the application for these changes to have effect." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +#: resources/qml/Preferences/GeneralPage.qml:373 msgctxt "@label" msgid "Viewport behavior" msgstr "顯示區設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +#: resources/qml/Preferences/GeneralPage.qml:381 msgctxt "@info:tooltip" msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." msgstr "模型缺少支撐的區域已以紅色標示。如果沒有支撐這些區域將無法正常列印。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:369 +#: resources/qml/Preferences/GeneralPage.qml:390 msgctxt "@option:check" msgid "Display overhang" msgstr "顯示突出部分" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +#: resources/qml/Preferences/GeneralPage.qml:400 msgctxt "@info:tooltip" msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." msgstr "模型缺少或多餘的表面已用警告符號標示。工具路徑是將缺少部份補上的型狀。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:388 +#: resources/qml/Preferences/GeneralPage.qml:409 msgctxt "@option:check" msgid "Display model errors" msgstr "顯示模型錯誤" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +#: resources/qml/Preferences/GeneralPage.qml:417 msgctxt "@info:tooltip" msgid "Moves the camera so the model is in the center of the view when a model is selected" msgstr "當模型被選中時,視角將自動調整到最合適的觀察位置(模型處於正中央)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:401 +#: resources/qml/Preferences/GeneralPage.qml:422 msgctxt "@action:button" msgid "Center camera when item is selected" msgstr "當專案被選中時,自動置中視角" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +#: resources/qml/Preferences/GeneralPage.qml:432 msgctxt "@info:tooltip" msgid "Should the default zoom behavior of cura be inverted?" msgstr "需要讓 Cura 的預設縮放操作反轉嗎?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:416 +#: resources/qml/Preferences/GeneralPage.qml:437 msgctxt "@action:button" msgid "Invert the direction of camera zoom." msgstr "反轉視角縮放方向。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Should zooming move in the direction of the mouse?" msgstr "是否跟隨滑鼠方向進行縮放?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +#: resources/qml/Preferences/GeneralPage.qml:453 msgctxt "@info:tooltip" msgid "Zooming towards the mouse is not supported in the orthographic perspective." msgstr "正交透視不支援游標縮放功能。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:437 +#: resources/qml/Preferences/GeneralPage.qml:458 msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "跟隨滑鼠方向縮放" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +#: resources/qml/Preferences/GeneralPage.qml:484 msgctxt "@info:tooltip" msgid "Should models on the platform be moved so that they no longer intersect?" msgstr "需要移動平台上的模型,使它們不再交錯嗎?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:468 +#: resources/qml/Preferences/GeneralPage.qml:489 msgctxt "@option:check" msgid "Ensure models are kept apart" msgstr "確保每個模型都保持分離" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +#: resources/qml/Preferences/GeneralPage.qml:498 msgctxt "@info:tooltip" msgid "Should models on the platform be moved down to touch the build plate?" msgstr "要將模型下降到碰觸列印平台嗎?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:482 +#: resources/qml/Preferences/GeneralPage.qml:503 msgctxt "@option:check" msgid "Automatically drop models to the build plate" msgstr "自動下降模型到列印平台" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +#: resources/qml/Preferences/GeneralPage.qml:515 msgctxt "@info:tooltip" msgid "Show caution message in g-code reader." msgstr "在 g-code 讀取器中顯示警告訊息。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503 +#: resources/qml/Preferences/GeneralPage.qml:524 msgctxt "@option:check" msgid "Caution message in g-code reader" msgstr "G-code 讀取器中的警告訊息" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +#: resources/qml/Preferences/GeneralPage.qml:532 msgctxt "@info:tooltip" msgid "Should layer be forced into compatibility mode?" msgstr "分層檢視要強制進入相容模式嗎?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +#: resources/qml/Preferences/GeneralPage.qml:537 msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "強制分層檢視相容模式(需要重新啟動)" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +#: resources/qml/Preferences/GeneralPage.qml:547 msgctxt "@info:tooltip" msgid "Should Cura open at the location it was closed?" msgstr "Cura 應該開啟在前次關閉時的位置嗎?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:531 +#: resources/qml/Preferences/GeneralPage.qml:552 msgctxt "@option:check" msgid "Restore window position on start" msgstr "開啟時復原視窗位置" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +#: resources/qml/Preferences/GeneralPage.qml:562 msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "使用哪種類型的攝影機渲染?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +#: resources/qml/Preferences/GeneralPage.qml:569 msgctxt "@window:text" msgid "Camera rendering:" msgstr "攝影機渲染:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +#: resources/qml/Preferences/GeneralPage.qml:576 msgid "Perspective" msgstr "透視" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +#: resources/qml/Preferences/GeneralPage.qml:577 msgid "Orthographic" msgstr "正交" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +#: resources/qml/Preferences/GeneralPage.qml:617 msgctxt "@label" msgid "Opening and saving files" msgstr "開啟並儲存檔案" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +#: resources/qml/Preferences/GeneralPage.qml:624 msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "從桌面或外部程式開啟檔案時,使用同一 Cura 視窗嗎?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:608 +#: resources/qml/Preferences/GeneralPage.qml:629 msgctxt "@option:check" msgid "Use a single instance of Cura" msgstr "使用同一 Cura 視窗" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +#: resources/qml/Preferences/GeneralPage.qml:640 msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "需要再載入新模型前清空視窗內之列印平台嗎?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +#: resources/qml/Preferences/GeneralPage.qml:646 msgctxt "@option:check" msgid "Clear buildplate before loading model into the single instance" msgstr "載入新模型時清空視窗內之列印平台" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 +#: resources/qml/Preferences/GeneralPage.qml:656 msgctxt "@info:tooltip" msgid "Should models be scaled to the build volume if they are too large?" msgstr "當模型的尺寸過大時,是否將模型自動縮小至列印範圍嗎?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +#: resources/qml/Preferences/GeneralPage.qml:661 msgctxt "@option:check" msgid "Scale large models" msgstr "縮小過大模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +#: resources/qml/Preferences/GeneralPage.qml:671 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 "部份模型採用較大的單位(例如:公尺),導致模型變得非常小,要將這些模型放大嗎?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:655 +#: resources/qml/Preferences/GeneralPage.qml:676 msgctxt "@option:check" msgid "Scale extremely small models" msgstr "放大過小模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +#: resources/qml/Preferences/GeneralPage.qml:686 msgctxt "@info:tooltip" msgid "Should models be selected after they are loaded?" msgstr "模型載入後要設為被選擇的狀態嗎?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: resources/qml/Preferences/GeneralPage.qml:691 msgctxt "@option:check" msgid "Select models when loaded" msgstr "模型載入後選擇模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +#: resources/qml/Preferences/GeneralPage.qml:701 msgctxt "@info:tooltip" msgid "Should a prefix based on the printer name be added to the print job name automatically?" msgstr "是否自動將印表機名稱作為列印作業名稱的前綴?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:685 +#: resources/qml/Preferences/GeneralPage.qml:706 msgctxt "@option:check" msgid "Add machine prefix to job name" msgstr "將印表機名稱前綴添加到列印作業名稱中" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +#: resources/qml/Preferences/GeneralPage.qml:716 msgctxt "@info:tooltip" msgid "Should a summary be shown when saving a project file?" msgstr "儲存專案檔案時是否顯示摘要?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: resources/qml/Preferences/GeneralPage.qml:720 msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "儲存專案時顯示摘要對話框" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +#: resources/qml/Preferences/GeneralPage.qml:730 msgctxt "@info:tooltip" msgid "Default behavior when opening a project file" msgstr "開啟專案檔案時的預設行為" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +#: resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@window:text" msgid "Default behavior when opening a project file: " msgstr "開啟專案檔案時的預設行為: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +#: resources/qml/Preferences/GeneralPage.qml:753 msgctxt "@option:openProject" msgid "Always ask me this" msgstr "每次都向我確認" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: resources/qml/Preferences/GeneralPage.qml:754 msgctxt "@option:openProject" msgid "Always open as a project" msgstr "總是作為一個專案開啟" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +#: resources/qml/Preferences/GeneralPage.qml:755 msgctxt "@option:openProject" msgid "Always import models" msgstr "總是匯入模型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +#: resources/qml/Preferences/GeneralPage.qml:792 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 "當你對列印參數進行更改然後切換到其他列印參數時,將顯示一個對話框詢問你是否要保留修改。你也可以選擇預設不顯示該對話框。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:780 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:36 +#: resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46 msgctxt "@label" msgid "Profiles" msgstr "列印參數" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +#: resources/qml/Preferences/GeneralPage.qml:806 msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "當切換到另一組列印參數時,對於被修改過的設定的預設行為: " -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:800 +#: resources/qml/Preferences/GeneralPage.qml:821 msgctxt "@option:discardOrKeep" msgid "Always discard changed settings" msgstr "總是放棄修改過的設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +#: resources/qml/Preferences/GeneralPage.qml:822 msgctxt "@option:discardOrKeep" msgid "Always transfer changed settings to new profile" msgstr "總是將修改過的設定轉移至新的列印參數" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +#: resources/qml/Preferences/GeneralPage.qml:856 msgctxt "@label" msgid "Privacy" msgstr "隱私權" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +#: resources/qml/Preferences/GeneralPage.qml:862 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 位址或其他私人資料。" +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 位址或其他私人資料。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +#: resources/qml/Preferences/GeneralPage.qml:867 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "(匿名)發送列印資訊" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +#: resources/qml/Preferences/GeneralPage.qml:897 msgctxt "@label" msgid "Updates" msgstr "更新" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +#: resources/qml/Preferences/GeneralPage.qml:904 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "當 Cura 啟動時,是否自動檢查更新?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:888 +#: resources/qml/Preferences/GeneralPage.qml:909 msgctxt "@option:check" msgid "Check for updates on start" msgstr "啟動時檢查更新" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +#: resources/qml/Preferences/GeneralPage.qml:925 msgctxt "@info:tooltip" msgid "When checking for updates, only check for stable releases." msgstr "當檢查更新時,只檢查正式版本." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:910 +#: resources/qml/Preferences/GeneralPage.qml:931 msgctxt "@option:radio" msgid "Stable releases only" msgstr "僅正式版本" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +#: resources/qml/Preferences/GeneralPage.qml:941 msgctxt "@info:tooltip" msgid "When checking for updates, check for both stable and for beta releases." msgstr "當檢查更新時,同時檢查正式版本與測試版本." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:926 +#: resources/qml/Preferences/GeneralPage.qml:947 msgctxt "@option:radio" msgid "Stable and Beta releases" msgstr "正式版本與測試版本發佈" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +#: resources/qml/Preferences/GeneralPage.qml:957 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時自動更新插件嗎? 建議您勿關閉此功能!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:941 +#: resources/qml/Preferences/GeneralPage.qml:962 msgctxt "@option:check" msgid "Get notifications for plugin updates" msgstr "設定插件更新提示" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:50 +#: resources/qml/Preferences/MachinesPage.qml:50 msgctxt "@action:button" msgid "Add New" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:134 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294 +#: resources/qml/Preferences/MachinesPage.qml:147 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:160 +#: resources/qml/Preferences/ProfilesPage.qml:294 msgctxt "@action:button" msgid "Activate" msgstr "啟用" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:146 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:331 +#: resources/qml/Preferences/MachinesPage.qml:159 +#: resources/qml/Preferences/ProfilesPage.qml:331 msgctxt "@action:button" msgid "Rename" msgstr "重命名" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:72 msgctxt "@label" msgid "Materials compatible with active printer:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:94 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:78 +#: resources/qml/Preferences/ProfilesPage.qml:94 msgctxt "@action:button" msgid "Create new" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:88 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:90 +#: resources/qml/Preferences/ProfilesPage.qml:88 msgctxt "@action:button" msgid "Import" msgstr "匯入" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:101 msgctxt "@action:button" msgid "Sync with Printers" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:311 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:174 +#: resources/qml/Preferences/ProfilesPage.qml:311 msgctxt "@action:button" msgid "Duplicate" msgstr "複製" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:342 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:198 +#: resources/qml/Preferences/ProfilesPage.qml:342 msgctxt "@action:button" msgid "Export" msgstr "匯出" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:392 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:212 +#: resources/qml/Preferences/ProfilesPage.qml:392 msgctxt "@title:window" msgid "Confirm Remove" msgstr "移除確認" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:393 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:215 +#: resources/qml/Preferences/ProfilesPage.qml:393 msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "你確定要移除 %1 嗎?這動作無法復原!" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:228 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:238 msgctxt "@title:window" msgid "Import Material" msgstr "匯入線材設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:242 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "成功匯入線材 %1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:245 msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not import material %1: %2" msgstr "無法匯入線材 %1%2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:267 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:256 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:267 msgctxt "@title:window" msgid "Export Material" msgstr "匯出線材設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:272 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:272 msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "無法匯出線材至 %1%2" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:275 +#: resources/qml/Preferences/Materials/MaterialsPage.qml:275 msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "成功匯出線材至:%1" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18 msgctxt "@title:window" msgid "Sync materials with printers" msgstr "同步印表機線材設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49 msgctxt "@title:header" msgid "Sync materials with printers" msgstr "同步印表機線材設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55 msgctxt "@text" msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "依照下述簡單的步驟。您將同步線材設定檔至您的印表機." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 msgctxt "@button" msgid "Why do I need to sync material profiles?" msgstr "為何我需要同步線材設定檔?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 msgctxt "@button" msgid "Start" msgstr "開始" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144 msgctxt "@title:header" msgid "Sign in" msgstr "登入" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150 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進行登入." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:158 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:446 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:586 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602 msgctxt "@button" msgid "Sync materials with USB" msgstr "從USB進行同步線材設定檔" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 msgctxt "@title:header" msgid "The following printers will receive the new material profiles:" msgstr "下述的印表機將新增新的線材設定檔:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:198 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 msgctxt "@title:header" msgid "Something went wrong when sending the materials to the printers." msgstr "再發送線材設定檔至印表機時發生錯誤." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:205 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221 msgctxt "@title:header" msgid "Material profiles successfully synced with the following printers:" msgstr "線材設定檔成功同步至下述的印表機內:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:242 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:429 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445 msgctxt "@button" msgid "Troubleshooting" msgstr "故障排除" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422 msgctxt "@text Asking the user whether printers are missing in a list." msgid "Printers missing?" msgstr "列印機資訊遺失了?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:408 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424 msgctxt "@text" msgid "Make sure all your printers are turned ON and connected to Digital Factory." msgstr "確認您的列印機已開機並連接至Digital Factory." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:417 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433 msgctxt "@button" msgid "Refresh List" msgstr "重新載入清單" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473 msgctxt "@button" msgid "Try again" msgstr "再試一次" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:461 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Done" msgstr "完成" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:463 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:606 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622 msgctxt "@button" msgid "Sync" msgstr "同步" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535 msgctxt "@button" msgid "Syncing" msgstr "同步中" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553 msgctxt "@title:header" msgid "No printers found" msgstr "未發現任何列印機資訊" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574 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。請確保您的打印機已連接並且安裝最新的軟體." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:569 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585 msgctxt "@button" msgid "Learn how to connect your printer to Digital Factory" msgstr "學習如何連結您的印表機至Digital Factory" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:597 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613 msgctxt "@button" msgid "Refresh" msgstr "重新載入" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642 msgctxt "@title:header" msgid "Sync material profiles via USB" msgstr "透過USB同步您的線材設定檔" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:632 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648 msgctxt "@text In the UI this is followed by a list of steps the user needs to take." msgid "Follow the following steps to load the new material profiles to your printer." msgstr "請依照下述步驟載入新的線材設定檔至印表機." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 msgctxt "@text" msgid "Click the export material archive button." msgstr "請點擊輸出材料檔案按鈕." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "將 .umm 的文件儲存至USB." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681 msgctxt "@text" msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." msgstr "插入USB至您的列印機,並啟動程式去載入新的線材設定檔." -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:673 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689 msgctxt "@button" msgid "How to load new material profiles to my printer" msgstr "如何載入新的線材設定檔至我的列印機" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:687 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 msgctxt "@button" msgid "Back" msgstr "返回" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712 msgctxt "@button" msgid "Export material archive" msgstr "輸出線材設定存檔" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +#: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747 msgctxt "@title:window" msgid "Export All Materials" msgstr "匯出所有線材設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121 +#: resources/qml/Preferences/Materials/MaterialsView.qml:121 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "直徑更改確認" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122 +#: resources/qml/Preferences/Materials/MaterialsView.qml:122 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,這與目前的擠出機不相容。你要繼續嗎?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152 +#: resources/qml/Preferences/Materials/MaterialsView.qml:152 msgctxt "@label" msgid "Display Name" msgstr "顯示名稱" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 +#: resources/qml/Preferences/Materials/MaterialsView.qml:171 msgctxt "@label" msgid "Brand" msgstr "品牌" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190 +#: resources/qml/Preferences/Materials/MaterialsView.qml:190 msgctxt "@label" msgid "Material Type" msgstr "線材類型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +#: resources/qml/Preferences/Materials/MaterialsView.qml:210 msgctxt "@label" msgid "Color" msgstr "顏色" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:262 +#: resources/qml/Preferences/Materials/MaterialsView.qml:262 msgctxt "@title" msgid "Material color picker" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:275 +#: resources/qml/Preferences/Materials/MaterialsView.qml:275 msgctxt "@label" msgid "Properties" msgstr "屬性" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +#: resources/qml/Preferences/Materials/MaterialsView.qml:286 msgctxt "@label" msgid "Density" msgstr "密度" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +#: resources/qml/Preferences/Materials/MaterialsView.qml:319 msgctxt "@label" msgid "Diameter" msgstr "直徑" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:369 +#: resources/qml/Preferences/Materials/MaterialsView.qml:369 msgctxt "@label" msgid "Filament Cost" msgstr "線材成本" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:401 +#: resources/qml/Preferences/Materials/MaterialsView.qml:401 msgctxt "@label" msgid "Filament weight" msgstr "線材重量" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:433 +#: resources/qml/Preferences/Materials/MaterialsView.qml:433 msgctxt "@label" msgid "Filament length" msgstr "線材長度" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:451 +#: resources/qml/Preferences/Materials/MaterialsView.qml:451 msgctxt "@label" msgid "Cost per Meter" msgstr "每公尺成本" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:465 +#: resources/qml/Preferences/Materials/MaterialsView.qml:465 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "此線材與 %1 相關聯,並共享其部份屬性。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:472 +#: resources/qml/Preferences/Materials/MaterialsView.qml:472 msgctxt "@label" msgid "Unlink Material" msgstr "解除聯結線材" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +#: resources/qml/Preferences/Materials/MaterialsView.qml:485 msgctxt "@label" msgid "Description" msgstr "描述" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:503 +#: resources/qml/Preferences/Materials/MaterialsView.qml:503 msgctxt "@label" msgid "Adhesion Information" msgstr "附著資訊" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642 +#: resources/qml/Preferences/Materials/MaterialsView.qml:642 msgctxt "@title" msgid "Information" msgstr "資訊" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:647 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:82 +#: resources/qml/Preferences/Materials/MaterialsView.qml:647 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18 msgctxt "@label" msgid "Print settings" msgstr "列印設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:59 +#: resources/qml/Preferences/ProfilesPage.qml:59 msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:98 +#: resources/qml/Preferences/ProfilesPage.qml:98 msgctxt "@action:tooltip" msgid "Create new profile from current settings/overrides" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:125 +#: resources/qml/Preferences/ProfilesPage.qml:125 msgctxt "@action:label" msgid "Some settings from current profile were overwritten." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:140 +#: resources/qml/Preferences/ProfilesPage.qml:140 msgctxt "@action:button" msgid "Update profile." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:143 +#: resources/qml/Preferences/ProfilesPage.qml:143 msgctxt "@action:tooltip" msgid "Update profile with current settings/overrides" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:148 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256 +#: resources/qml/Preferences/ProfilesPage.qml:148 msgctxt "@action:button" msgid "Discard current changes" msgstr "捨棄目前更改" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:158 +#: resources/qml/Preferences/ProfilesPage.qml:158 msgctxt "@action:label" msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." msgstr "此列印參數使用印表機指定的預設值,因此在下面的清單中沒有此設定項。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:165 +#: resources/qml/Preferences/ProfilesPage.qml:165 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "你目前的設定與選定的列印參數相匹配。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +#: resources/qml/Preferences/ProfilesPage.qml:175 msgctxt "@title:tab" msgid "Global Settings" msgstr "全局設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +#: resources/qml/Preferences/ProfilesPage.qml:278 msgctxt "@title:window" msgid "Create Profile" msgstr "建立列印參數" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:280 +#: resources/qml/Preferences/ProfilesPage.qml:280 msgctxt "@info" msgid "Please provide a name for this profile." msgstr "請為此參數提供一個名字。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:352 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:368 +#: resources/qml/Preferences/ProfilesPage.qml:352 +#: resources/qml/Preferences/ProfilesPage.qml:368 msgctxt "@title:window" msgid "Export Profile" msgstr "匯出列印參數" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +#: resources/qml/Preferences/ProfilesPage.qml:382 msgctxt "@title:window" msgid "Duplicate Profile" msgstr "複製列印參數" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:409 +#: resources/qml/Preferences/ProfilesPage.qml:409 msgctxt "@title:window" msgid "Rename Profile" msgstr "重命名列印參數" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:422 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:429 +#: resources/qml/Preferences/ProfilesPage.qml:422 +#: resources/qml/Preferences/ProfilesPage.qml:429 msgctxt "@title:window" msgid "Import Profile" msgstr "匯入列印參數" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:22 -msgctxt "@title:window" -msgid "Rename" -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/RenameDialog.qml:23 -msgctxt "@info" -msgid "Please provide a new name." -msgstr "" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56 +#: resources/qml/Preferences/SettingVisibilityItem.qml:56 msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73 +#: resources/qml/Preferences/SettingVisibilityItem.qml:73 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] "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13 +#: resources/qml/Preferences/SettingVisibilityPage.qml:13 msgctxt "@title:tab" msgid "Setting Visibility" msgstr "參數顯示設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 +#: resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" msgid "Check all" msgstr "全選" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 -msgctxt "@label" -msgid "Extruder" -msgstr "擠出機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70 -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." -msgstr "加熱頭的目標溫度。加熱頭將加熱或冷卻至此溫度。若設定為 0,則關閉加熱頭的加熱。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "此加熱頭的目前溫度。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "加熱頭預熱溫度。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "取消" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263 -msgctxt "@button" -msgid "Pre-heat" -msgstr "預熱" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297 -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "列印前預先加熱。你可以在加熱時繼續調整你的列印,當你準備好列印時就不需等待加熱頭升溫。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "該擠出機中線材的顏色。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "該擠出機中的線材。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "該擠出機所使用的噴頭。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -msgctxt "@label" -msgid "Build plate" -msgstr "列印平台" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55 -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,則不使用熱床。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "熱床目前溫度。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "熱床的預熱溫度。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286 -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "列印前請預熱熱床。你可以在熱床加熱時繼續調整相關物件,讓你在準備列印時不必等待熱床加熱完畢。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51 -msgctxt "@label" -msgid "Printer control" -msgstr "印表機控制" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66 -msgctxt "@label" -msgid "Jog Position" -msgstr "輕搖位置" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217 -msgctxt "@label" -msgid "Jog Distance" -msgstr "輕搖距離" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Send G-code" -msgstr "傳送 G-code" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319 -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "傳送一個自訂的 G-code 命令到連接中的印表機。按下 Enter 鍵傳送命令。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "尚未連線到印表機。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "雲端印表機為離線狀態。請檢查印表機是否已開機並連上網路。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "此印表機未連接到你的帳號。請前往 Ultimaker Digital Factory 建立連接。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "雲端服務目前無法使用。請登入以連接到雲端印表機。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "雲端服務目前無法使用。請檢查你的網路連線。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:235 -msgctxt "@button" -msgid "Add printer" -msgstr "新增印表機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Manage printers" -msgstr "管理印表機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 +#: resources/qml/PrintMonitor.qml:156 msgctxt "@label" msgid "Active print" msgstr "正在列印" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +#: resources/qml/PrintMonitor.qml:164 msgctxt "@label" msgid "Job Name" msgstr "作業名稱" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +#: resources/qml/PrintMonitor.qml:172 msgctxt "@label" msgid "Printing Time" msgstr "列印時間" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +#: resources/qml/PrintMonitor.qml:180 msgctxt "@label" msgid "Estimated time left" msgstr "預計剩餘時間" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 msgctxt "@label" msgid "Profile" msgstr "參數" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +#: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -5602,132 +6159,372 @@ msgstr "" "\n" "點擊開啟列印參數管理器。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 +#: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 msgctxt "@label:header" msgid "Custom profiles" msgstr "自訂列印參數" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 +#: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20 msgctxt "@label shown when we load a Gcode file" msgid "Print setup disabled. G-code file can not be modified." msgstr "列印設定已被停用。 G-code 檔案無法修改。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:179 msgctxt "@button" msgid "Recommended" msgstr "推薦" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156 -msgctxt "@button" -msgid "Custom" -msgstr "自訂選項" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 msgctxt "@label:Should be short" msgid "On" msgstr "開啟" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +#: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 msgctxt "@label:Should be short" msgid "Off" msgstr "關閉" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "實驗功能" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:54 -msgctxt "@info" -msgid "custom profile is active and you overwrote some settings." +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is active and you overwrote some settings." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 -msgctxt "@info" -msgid "custom profile is overriding some settings." +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78 +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is overriding some settings." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 -msgctxt "@info" -msgid "Some settings were changed." +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92 +msgctxt "@info %1 is the name of a profile" +msgid "Recommended settings (for %1) were altered." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106 +msgctxt "@info %1 is the name of a profile" +msgid "Some setting-values defined in %1 were overridden." +msgstr "" + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137 +msgctxt "@info" +msgid "Reset to defaults." +msgstr "" + +#: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178 +msgctxt "@info" +msgid "Compare and save." +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15 msgctxt "@label" msgid "Adhesion" msgstr "附著" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20 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 "允許列印邊緣或木筏。這將在你的物件周圍或下方添加一個容易切斷的平面區域。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:198 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102 msgctxt "@label" -msgid "Gradual infill" -msgstr "漸近式填充" +msgid "Recommended print settings" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:236 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "漸近式填充將隨著列印高度的提升而逐漸加大填充密度。" +#: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111 +msgctxt "@button" +msgid "Show Custom" +msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27 msgctxt "@label" msgid "Resolution" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16 +msgctxt "@label" +msgid "Strength" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20 +msgctxt "@label" +msgid "The following settings define the strength of your part." +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34 +msgctxt "infill_sparse_density description" +msgid "Infill Density" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35 +msgctxt "@label" +msgid "Adjusts the density of infill of the print." +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54 +msgctxt "@action:label" +msgid "Infill Pattern" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56 +msgctxt "@label" +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 "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67 +msgctxt "@action:label" +msgid "Shell Thickness" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68 +msgctxt "@label" +msgid "Defines the thickness of your part side walls, roof and floor." +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16 msgctxt "@label" msgid "Support" msgstr "支撐" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21 msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "在模型的突出部分產生支撐結構。若不這樣做,這些部分在列印時將倒塌。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40 +msgctxt "@action:label" +msgid "Support Type" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41 +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 "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53 +msgctxt "@action:label" +msgid "Print with" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54 +msgctxt "@label" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67 +msgctxt "@action:label" +msgid "Placement" +msgstr "" + +#: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68 +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 "" + +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 msgctxt "@error" msgid "Configuration not supported" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +#: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 msgctxt "@button:label" msgid "Learn more" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +#: resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "擠出機" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:70 +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." +msgstr "加熱頭的目標溫度。加熱頭將加熱或冷卻至此溫度。若設定為 0,則關閉加熱頭的加熱。" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:105 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "此加熱頭的目前溫度。" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:182 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "加熱頭預熱溫度。" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:271 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:259 +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "取消" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:274 +#: resources/qml/PrinterOutput/HeatedBedBox.qml:263 +msgctxt "@button" +msgid "Pre-heat" +msgstr "預熱" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:297 +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "列印前預先加熱。你可以在加熱時繼續調整你的列印,當你準備好列印時就不需等待加熱頭升溫。" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:335 +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "該擠出機中線材的顏色。" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:367 +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "該擠出機中的線材。" + +#: resources/qml/PrinterOutput/ExtruderBox.qml:400 +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "該擠出機所使用的噴頭。" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:25 +msgctxt "@label" +msgid "Build plate" +msgstr "列印平台" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:55 +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,則不使用熱床。" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:88 +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "熱床目前溫度。" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:162 +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "熱床的預熱溫度。" + +#: resources/qml/PrinterOutput/HeatedBedBox.qml:286 +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "列印前請預熱熱床。你可以在熱床加熱時繼續調整相關物件,讓你在準備列印時不必等待熱床加熱完畢。" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:51 +msgctxt "@label" +msgid "Printer control" +msgstr "印表機控制" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:66 +msgctxt "@label" +msgid "Jog Position" +msgstr "輕搖位置" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:82 +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:162 +msgctxt "@label" +msgid "Z" +msgstr "Z" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:217 +msgctxt "@label" +msgid "Jog Distance" +msgstr "輕搖距離" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:257 +msgctxt "@label" +msgid "Send G-code" +msgstr "傳送 G-code" + +#: resources/qml/PrinterOutput/ManualPrinterControl.qml:319 +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "傳送一個自訂的 G-code 命令到連接中的印表機。按下 Enter 鍵傳送命令。" + +#: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "尚未連線到印表機。" + +#: resources/qml/PrinterSelector/MachineListButton.qml:34 +msgctxt "@label" +msgid "Hide all connected printers" +msgstr "" + +#: resources/qml/PrinterSelector/MachineListButton.qml:47 +msgctxt "@label" +msgid "Show all connected printers" +msgstr "" + +#: resources/qml/PrinterSelector/MachineSelector.qml:64 +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "雲端印表機為離線狀態。請檢查印表機是否已開機並連上網路。" + +#: resources/qml/PrinterSelector/MachineSelector.qml:68 +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "此印表機未連接到你的帳號。請前往 Ultimaker Digital Factory 建立連接。" + +#: resources/qml/PrinterSelector/MachineSelector.qml:73 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "雲端服務目前無法使用。請登入以連接到雲端印表機。" + +#: resources/qml/PrinterSelector/MachineSelector.qml:78 +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "雲端服務目前無法使用。請檢查你的網路連線。" + +#: resources/qml/PrinterSelector/MachineSelectorList.qml:30 +#: resources/qml/PrinterSelector/MachineSelectorList.qml:32 +msgctxt "@label" +msgid "Other printers" +msgstr "" + +#: resources/qml/ProfileOverview.qml:36 msgctxt "@title:column" msgid "Setting" msgstr "設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +#: resources/qml/ProfileOverview.qml:37 msgctxt "@title:column" msgid "Profile" msgstr "列印參數" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +#: resources/qml/ProfileOverview.qml:38 msgctxt "@title:column" msgid "Current" msgstr "目前" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +#: resources/qml/ProfileOverview.qml:39 msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +#: resources/qml/SearchBar.qml:17 msgctxt "@placeholder" msgid "Search" msgstr "" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 +#: resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5738,32 +6535,32 @@ msgstr "" "\n" "點擊以顯這些設定。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 +#: resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." msgstr "此設定未被使用,因為受它影響的設定都被覆寫了。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +#: resources/qml/Settings/SettingItem.qml:89 msgctxt "@label Header for list of settings." msgid "Affects" msgstr "影響" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +#: resources/qml/Settings/SettingItem.qml:94 msgctxt "@label Header for list of settings." msgid "Affected By" msgstr "影響因素" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:190 +#: resources/qml/Settings/SettingItem.qml:196 msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "這個設定是所有擠出機共用的。修改它會同時更動到所有擠出機的值。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +#: resources/qml/Settings/SettingItem.qml:200 msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "此設定是透過解決擠出機設定值衝突獲得:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +#: resources/qml/Settings/SettingItem.qml:240 msgctxt "@label" msgid "" "This setting has a value that is different from the profile.\n" @@ -5774,7 +6571,7 @@ msgstr "" "\n" "單擊以復原列印參數的值。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:334 +#: resources/qml/Settings/SettingItem.qml:340 msgctxt "@label" msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" @@ -5785,1570 +6582,326 @@ msgstr "" "\n" "點擊以恢復計算得出的數值。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +#: resources/qml/Settings/SettingView.qml:48 msgctxt "@label:textbox" msgid "Search settings" msgstr "搜尋設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:395 +#: resources/qml/Settings/SettingView.qml:395 msgctxt "@action:menu" msgid "Copy value to all extruders" msgstr "將設定值複製到所有擠出機" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:404 +#: resources/qml/Settings/SettingView.qml:404 msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "複製所有改變的設定值到所有擠出機" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:440 +#: resources/qml/Settings/SettingView.qml:440 msgctxt "@action:menu" msgid "Hide this setting" msgstr "隱藏此設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:453 +#: resources/qml/Settings/SettingView.qml:453 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "不再顯示此設定" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:457 +#: resources/qml/Settings/SettingView.qml:457 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "保持此設定顯示" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +#: resources/qml/Toolbar.qml:142 +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" +msgstr[0] "用 %1 列印所選模型" + +#: resources/qml/ViewOrientationControls.qml:25 msgctxt "@info:tooltip" msgid "3D View" msgstr "立體圖" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +#: resources/qml/ViewOrientationControls.qml:38 msgctxt "@info:tooltip" msgid "Front View" msgstr "前視圖" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +#: resources/qml/ViewOrientationControls.qml:51 msgctxt "@info:tooltip" msgid "Top View" msgstr "上視圖" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +#: resources/qml/ViewOrientationControls.qml:64 msgctxt "@info:tooltip" msgid "Left View" msgstr "左視圖" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +#: resources/qml/ViewOrientationControls.qml:77 msgctxt "@info:tooltip" msgid "Right View" msgstr "右視圖" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +#: resources/qml/ViewsSelector.qml:50 msgctxt "@label" msgid "View type" msgstr "檢示類型" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:47 msgctxt "@label" msgid "Add a Cloud printer" msgstr "新增雲端印表機" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:73 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:73 msgctxt "@label" msgid "Waiting for Cloud response" msgstr "等待雲端服務回應" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:83 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:83 msgctxt "@label" msgid "No printers found in your account?" msgstr "在你的帳號未發現任何印表機?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:117 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:117 msgctxt "@label" msgid "The following printers in your account have been added in Cura:" msgstr "下列您帳號中的印表機已新增至 Cura:" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186 +#: resources/qml/WelcomePages/AddCloudPrintersView.qml:186 msgctxt "@button" msgid "Add printer manually" msgstr "手動新增印表機" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 msgctxt "@label" msgid "Manufacturer" msgstr "製造商" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Profile author" msgstr "列印參數作者" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 msgctxt "@label" msgid "Printer name" msgstr "印表機名稱" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232 msgctxt "@text" msgid "Please name your printer" msgstr "請為你的印表機取一個名稱" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "新增印表機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:38 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "新增網路印表機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:87 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "新增非網路印表機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 msgctxt "@label" msgid "There is no printer found over your network." msgstr "在你的網路上找不到印表機。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 msgctxt "@label" msgid "Refresh" msgstr "更新" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 msgctxt "@label" msgid "Add printer by IP" msgstr "使用 IP 位址新增印表機" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "新增雲端印表機" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220 +#: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205 msgctxt "@label" msgid "Troubleshooting" msgstr "故障排除" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 msgctxt "@label" msgid "Add printer by IP address" msgstr "使用 IP 位址新增印表機" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128 msgctxt "@text" msgid "Enter your printer's IP address." msgstr "輸入印表機的 IP 位址。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 msgctxt "@button" msgid "Add" msgstr "新增" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195 msgctxt "@label" msgid "Could not connect to device." msgstr "無法連接到裝置。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "無法連接到 Ultimaker 印表機?" +msgid "Can't connect to your UltiMaker printer?" +msgstr "無法連接到 UltiMaker 印表機?" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200 msgctxt "@label" msgid "The printer at this address has not responded yet." msgstr "此位址的印表機尚未回應。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231 msgctxt "@label" msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." msgstr "無法添加此印表機,因為它是未知的印表機,或者它不是印表機群組的主機。" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 +#: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312 msgctxt "@button" msgid "Connect" msgstr "連接" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "新增網路印表機" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "新增非網路印表機" + +#: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102 +msgctxt "@button" +msgid "Add UltiMaker printer via Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29 +msgctxt "@label" +msgid "In order to start using Cura you will need to configure a printer." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36 +msgctxt "@label" +msgid "What printer would you like to setup?" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55 +msgctxt "@button" +msgid "UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64 +msgctxt "@button" +msgid "Non UltiMaker printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73 +msgctxt "@button" +msgid "Learn more about adding printers to Cura" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29 +msgctxt "@label" +msgid "Add printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33 +msgctxt "@label" +msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70 +msgctxt "@label" +msgid "If you are trying to add a new UltiMaker printer to Cura" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80 +msgctxt "@info" +msgid "Sign in into UltiMaker Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81 +msgctxt "@info" +msgid "Follow the procedure to add a new printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82 +msgctxt "@info" +msgid "Your new printer will automatically appear in Cura" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100 +msgctxt "@button" +msgid "Learn more" +msgstr "學習更多" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121 +msgctxt "@button" +msgid "Add local printer" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129 +msgctxt "@button" +msgid "Sign in to Digital Factory" +msgstr "" + +#: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133 +msgctxt "@button" +msgid "Waiting for new printers" +msgstr "" + +#: resources/qml/WelcomePages/ChangelogContent.qml:24 msgctxt "@label" msgid "Release Notes" msgstr "發佈通知" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:123 +#: resources/qml/WelcomePages/CloudContent.qml:123 msgctxt "@text" msgid "Add material settings and plugins from the Marketplace" msgstr "從市集中加入線材設定或插件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:149 +#: resources/qml/WelcomePages/CloudContent.qml:149 msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "備份及同步您的線材設定與插件" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:175 +#: resources/qml/WelcomePages/CloudContent.qml:175 msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "分享創意並可從Ultimaker社群中超過48000的使用者得到幫助" +msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" +msgstr "分享創意並可從UltiMaker社群中超過48000的使用者得到幫助" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +#: resources/qml/WelcomePages/CloudContent.qml:189 msgctxt "@button" msgid "Skip" msgstr "略過" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +#: resources/qml/WelcomePages/CloudContent.qml:201 msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "創建免費的Ultimaker帳戶" +msgid "Create a free UltiMaker Account" +msgstr "創建免費的UltiMaker帳戶" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "協助我們改進 Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:56 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura 搜集匿名資料以提高列印品質和使用者體驗,包含:" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:68 -msgctxt "@text" -msgid "Machine types" -msgstr "機器類型" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:74 -msgctxt "@text" -msgid "Material usage" -msgstr "線材用法" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:80 -msgctxt "@text" -msgid "Number of slices" -msgstr "切片次數" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:86 -msgctxt "@text" -msgid "Print settings" -msgstr "列印設定" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:99 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Ultimaker Cura 收集的資料不包含任何個人資訊。" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:100 -msgctxt "@text" -msgid "More information" -msgstr "更多資訊" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 +#: resources/qml/WelcomePages/DropDownWidget.qml:93 msgctxt "@label" msgid "Empty" msgstr "空的" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +#: resources/qml/WelcomePages/UserAgreementContent.qml:23 msgctxt "@label" msgid "User Agreement" msgstr "使用者授權" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67 +#: resources/qml/WelcomePages/UserAgreementContent.qml:67 msgctxt "@button" msgid "Decline and close" msgstr "拒絕並關閉" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "歡迎來到 Ultimaker Cura" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:67 -msgctxt "@text" -msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "請依照步驟安裝Ultimaker Cura. 這會需要幾分鐘的時間." - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:82 -msgctxt "@button" -msgid "Get started" -msgstr "開始" - -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28 +#: resources/qml/WelcomePages/WhatsNewContent.qml:28 msgctxt "@label" msgid "What's New" msgstr "新功能" -#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: resources/qml/Widgets/ComboBox.qml:18 msgctxt "@label" msgid "No items to select from" msgstr "沒有可選取的專案" -#: ModelChecker/plugin.json -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "檢查模型和列印設定以了解可能發生的問題並給出建議。" - -#: ModelChecker/plugin.json -msgctxt "name" -msgid "Model Checker" -msgstr "模器檢查器" - -#: 3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "提供讀取 3MF 格式檔案的支援。" - -#: 3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF 讀取器" - -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "提供寫入 3MF 檔案的支援。" - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF 寫入器" - -#: AMFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "提供對讀取 AMF 格式檔案的支援。" - -#: AMFReader/plugin.json -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF 讀取器" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "備份和復原你的設定。" - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura 備份" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "提供連結到 Cura 切片引擎後台。" - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Cura 引擎後台" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "提供匯入 Cura 列印參數的支援。" - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura 列印參數讀取器" - -#: CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "提供匯出 Cura 列印參數的支援。" - -#: CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura 列印參數寫入器" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "連結至\"數位博物館\",允許Cura從\"數位博物館\"打開或保存文件." - -#: DigitalLibrary/plugin.json -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker 數位博物館" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "檢查是否有韌體更新。" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "韌體更新檢查" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "提供升級韌體用的機器操作。" - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "韌體更新器" - -#: GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "從一個壓縮檔案中讀取 G-code。" - -#: GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "壓縮檔案 G-code 讀取器" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "將 G-code 寫入壓縮檔案。" - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "壓縮檔案 G-code 寫入器" - -#: GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "提供匯入 G-code 檔案中列印參數的支援。" - -#: GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-code 列印參數讀取器" - -#: GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "允許載入和顯示 G-code 檔案。" - -#: GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "G-code 讀取器" - -#: GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "將 G-code 寫入檔案。" - -#: GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "G-code 寫入器" - -#: ImageReader/plugin.json -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "支援從 2D 圖片檔案產生可列印 3D 模型的能力。" - -#: ImageReader/plugin.json -msgctxt "name" -msgid "Image Reader" -msgstr "圖片讀取器" - -#: LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "提供匯入 Cura 舊版本列印參數的支援。" - -#: LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "舊版 Cura 列印參數讀取器" - -#: MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "提供更改機器設定的方法(如列印範圍,噴頭大小等)。" - -#: MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "印表機設定操作" - -#: Marketplace/plugin.json -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the Ultimaker website." -msgstr "" - -#: Marketplace/plugin.json -msgctxt "name" -msgid "Marketplace" -msgstr "" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "在 cura 提供一個監控介面。" - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "監控介面" - -#: PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "提供對每個模型的單獨設定。" - -#: PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "單一模型設定工具" - -#: PostProcessingPlugin/plugin.json -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "擴充程式(允許用戶建立腳本進行後處理)" - -#: PostProcessingPlugin/plugin.json -msgctxt "name" -msgid "Post Processing" -msgstr "後處理" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "在 cura 提供一個準備介面。" - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "準備介面" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "在 Cura 提供一個預覽介面。" - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "預覽介面" - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "提供行動裝置熱插拔和寫入檔案的支援。" - -#: RemovableDriveOutputDevice/plugin.json -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "行動裝置輸出設備外掛" - -#: SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "記錄某些事件以便在錯誤報告中使用" - -#: SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "哨兵記錄器" - -#: SimulationView/plugin.json -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "" - -#: SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "模擬檢視" - -#: SliceInfoPlugin/plugin.json -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "提交匿名切片資訊。這項功能可以在偏好設定中關閉。" - -#: SliceInfoPlugin/plugin.json -msgctxt "name" -msgid "Slice info" -msgstr "切片資訊" - -#: SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "提供一個基本的實體網格檢視。" - -#: SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "實體檢視" - -#: SupportEraser/plugin.json -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "建立一個抹除器網格放在某些地方用來防止列印支撐" - -#: SupportEraser/plugin.json -msgctxt "name" -msgid "Support Eraser" -msgstr "支援抹除器" - -#: TrimeshReader/plugin.json -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "提供讀取模型檔案的支援。" - -#: TrimeshReader/plugin.json -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh 讀取器" - -#: UFPReader/plugin.json -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "提供讀取 Ultimaker 格式封包的支援。" - -#: UFPReader/plugin.json -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP 讀取器" - -#: UFPWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "提供寫入 Ultimaker 格式封包的支援。" - -#: UFPWriter/plugin.json -msgctxt "name" -msgid "UFP Writer" -msgstr "UFP 寫入器" - -#: UltimakerMachineActions/plugin.json -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "提供 Ultimaker 機器的操作(例如平台調平精靈,選擇升級等)。" - -#: UltimakerMachineActions/plugin.json -msgctxt "name" -msgid "Ultimaker machine actions" -msgstr "Ultimaker 印表機操作" - -#: UM3NetworkPrinting/plugin.json -msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "管理與 Ultimaker 網絡印表機的網絡連線。" - -#: UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "Ultimaker Network Connection" -msgstr "Ultimaker 網絡連線" - -#: USBPrinting/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "接受 G-Code 並且傳送到印表機。此外掛也可以更新韌體。" - -#: USBPrinting/plugin.json -msgctxt "name" -msgid "USB printing" -msgstr "USB 連線列印" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "將設定從 Cura 2.1 版本升級至 2.2 版本。" - -#: VersionUpgrade/VersionUpgrade21to22/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "升級版本 2.1 到 2.2" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "將設定從 Cura 2.2 版本升級至 2.4 版本。" - -#: VersionUpgrade/VersionUpgrade22to24/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "升級版本 2.2 到 2.4" - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "將設定從 Cura 2.5 版本升級至 2.6 版本。" - -#: VersionUpgrade/VersionUpgrade25to26/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "升級版本 2.5 到 2.6" - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "將設定從 Cura 2.6 版本升級至 2.7 版本。" - -#: VersionUpgrade/VersionUpgrade26to27/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "升級版本 2.6 到 2.7" - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "將設定從 Cura 2.7 版本升級至 3.0 版本。" - -#: VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "升級版本 2.7 到 3.0" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "將設定從 Cura 3.0 版本升級至 3.1 版本。" - -#: VersionUpgrade/VersionUpgrade30to31/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "升級版本 3.0 到 3.1" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "將設定從 Cura 3.2 版本升級至 3.3 版本。" - -#: VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "升級版本 3.2 到 3.3" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "將設定從 Cura 3.3 版本升級至 3.4 版本。" - -#: VersionUpgrade/VersionUpgrade33to34/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "升級版本 3.3 到 3.4" - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "將設定從 Cura 3.4 版本升級至 3.5 版本。" - -#: VersionUpgrade/VersionUpgrade34to35/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "升級版本 3.4 到 3.5" - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "將設定從 Cura 3.5 版本升級至 4.0 版本。" - -#: VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "升級版本 3.5 到 4.0" - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "將設定從 Cura 4.0 版本升級至 4.1 版本。" - -#: VersionUpgrade/VersionUpgrade40to41/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "升級版本 4.0 到 4.1" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "將設定從 Cura 4.11 版本升級至 4.12 版本。" - -#: VersionUpgrade/VersionUpgrade411to412/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "升級版本 4.11 到 4.12" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "" - -#: VersionUpgrade/VersionUpgrade413to50/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "" - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "將設定從 Cura 4.1 版本升級至 4.2 版本。" - -#: VersionUpgrade/VersionUpgrade41to42/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "升級版本 4.1 到 4.2" - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "將設定從 Cura 4.2 版本升級至 4.3 版本。" - -#: VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "升級版本 4.2 到 4.3" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "將設定從 Cura 4.3 版本升級至 4.4 版本。" - -#: VersionUpgrade/VersionUpgrade43to44/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "升級版本 4.3 到 4.4" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "將設定從 Cura 4.4 版本升級至 4.5 版本。" - -#: VersionUpgrade/VersionUpgrade44to45/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "升級版本 4.4 到 4.5" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "將設定從 Cura 4.5 版本升級至 4.6 版本。" - -#: VersionUpgrade/VersionUpgrade45to46/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "升級版本 4.5 到 4.6" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "將設定從 Cura 4.6.0 版本升級至 4.6.2 版本。" - -#: VersionUpgrade/VersionUpgrade460to462/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "升級版本 4.6.0 到 4.6.2" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "將設定從 Cura 4.6.2 版本升級至 4.7 版本。" - -#: VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "升級版本 4.6.2 到 4.7" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "將設定從 Cura 4.7 版本升級至 4.8 版本。" - -#: VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "升級版本 4.7 到 4.8" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "將設定從 Cura 4.8 版本升級至 4.9 版本。" - -#: VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "升級版本 4.8 到 4.9" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "將設定從 Cura 4.9 版本升級至 4.10 版本。" - -#: VersionUpgrade/VersionUpgrade49to410/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "升級版本 4.9 到 4.10" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "提供讀取 X3D 檔案的支援。" - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D 讀取器" - -#: XmlMaterialProfile/plugin.json -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "提供讀寫 XML 格式線材參數的功能。" - -#: XmlMaterialProfile/plugin.json -msgctxt "name" -msgid "Material Profiles" -msgstr "線材參數" - -#: XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "提供透視檢視。" - -#: XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "透視檢視" - -#~ msgctxt "@label" -#~ msgid "Not yet initialized
    " -#~ msgstr "尚未初始化
    " - -#~ msgctxt "@Label" -#~ msgid "Static type checker for Python" -#~ msgstr "Python 靜態型別檢查器" - -#~ msgctxt "@Label" -#~ msgid "Root Certificates for validating SSL trustworthiness" -#~ msgstr "驗證 SSL 可信度用的根憑證" - -#~ msgctxt "@label" -#~ msgid "Python extensions for Microsoft Windows" -#~ msgstr "Python擴充(windows)" - -#~ msgctxt "@label" -#~ msgid "SVG icons" -#~ msgstr "SVG 圖標" - -#~ msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" -#~ msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" -#~ msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" -#~ msgstr[0] "沒有擠出機 %2 用的 %1 參數。將使用預設參數" - -#~ msgctxt "@tooltip" -#~ msgid "You have modified some profile settings. If you want to change these go to custom mode." -#~ msgstr "你修改過部份列印參數設定。如果你想改變這些設定,請切換到自訂模式。" - -#~ msgctxt "@action:button" -#~ msgid "Sync materials with printers" -#~ msgstr "列印機同步線材資料" - -#~ msgctxt "@title:window" -#~ msgid "Convert Image..." -#~ msgstr "轉換圖片..." - -#~ msgctxt "@info:tooltip" -#~ msgid "The width in millimeters on the build plate." -#~ msgstr "列印平台寬度,以毫米為單位。" - -#~ msgctxt "@title" -#~ msgid "Marketplace" -#~ msgstr "市集" - -#~ msgctxt "@info" -#~ msgid "You will need to restart Cura before changes in packages have effect." -#~ msgstr "需重新啟動 Cura,套件的更動才能生效。" - -#~ msgctxt "@action:button" -#~ msgid "Install" -#~ msgstr "安裝" - -#~ msgctxt "@action:button" -#~ msgid "Installed" -#~ msgstr "已安裝" - -#~ msgctxt "@label" -#~ msgid "Premium" -#~ msgstr "付費會員" - -#~ msgctxt "@info:tooltip" -#~ msgid "Go to Web Marketplace" -#~ msgstr "前往網路市集" - -#~ msgctxt "@label" -#~ msgid "Search materials" -#~ msgstr "搜尋線材" - -#~ msgctxt "@label" -#~ msgid "Compatibility" -#~ msgstr "相容性" - -#~ msgctxt "@label:table_header" -#~ msgid "Machine" -#~ msgstr "機器" - -#~ msgctxt "@label:table_header" -#~ msgid "Build Plate" -#~ msgstr "列印平台" - -#~ msgctxt "@label:table_header" -#~ msgid "Support" -#~ msgstr "支撐" - -#~ msgctxt "@label:table_header" -#~ msgid "Quality" -#~ msgstr "品質" - #~ msgctxt "@action:label" -#~ msgid "Technical Data Sheet" -#~ msgstr "技術資料表" - -#~ msgctxt "@action:label" -#~ msgid "Safety Data Sheet" -#~ msgstr "安全資料表" - -#~ msgctxt "@action:label" -#~ msgid "Printing Guidelines" -#~ msgstr "列印指南" - -#~ msgctxt "@action:label" -#~ msgid "Website" -#~ msgstr "網站" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to install or update" -#~ msgstr "需要登入才能進行安裝或升級" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Buy material spools" -#~ msgstr "購買線材線軸" - -#~ msgctxt "@action:button" -#~ msgid "Update" -#~ msgstr "更新" - -#~ msgctxt "@action:button" -#~ msgid "Updating" -#~ msgstr "更新中" - -#~ msgctxt "@action:button" -#~ msgid "Updated" -#~ msgstr "更新完成" - -#~ msgctxt "@action:button" -#~ msgid "Back" -#~ msgstr "返回" - -#~ msgctxt "@title:tab" -#~ msgid "Plugins" -#~ msgstr "外掛" - -#~ msgctxt "@title:tab" -#~ msgid "Installed" -#~ msgstr "已安裝" - -#~ msgctxt "@label" -#~ msgid "Will install upon restarting" -#~ msgstr "將在重新啟動時安裝" - -#~ msgctxt "@label:The string between and is the highlighted link" -#~ msgid "Log in is required to update" -#~ msgstr "需要登入才能進行升級" - -#~ msgctxt "@action:button" -#~ msgid "Downgrade" -#~ msgstr "降級版本" - -#~ msgctxt "@action:button" -#~ msgid "Uninstall" -#~ msgstr "移除" - -#~ msgctxt "@label" -#~ msgid "Community Contributions" -#~ msgstr "社群貢獻" - -#~ msgctxt "@label" -#~ msgid "Community Plugins" -#~ msgstr "社群外掛" - -#~ msgctxt "@label" -#~ msgid "Generic Materials" -#~ msgstr "通用線材" - -#~ msgctxt "@info" -#~ msgid "Fetching packages..." -#~ msgstr "取得套件..." - -#~ msgctxt "@label" -#~ msgid "Website" -#~ msgstr "網站" - -#~ msgctxt "@label" -#~ msgid "Email" -#~ msgstr "電子郵件" - -#~ msgctxt "@description" -#~ msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -#~ msgstr "請登入以取得 Ultimaker Cura Enterprise 驗証的外掛及線材" - -#~ msgctxt "@label" -#~ msgid "Version" -#~ msgstr "版本" - -#~ msgctxt "@label" -#~ msgid "Last updated" -#~ msgstr "最後更新時間" - -#~ msgctxt "@label" -#~ msgid "Downloads" -#~ msgstr "下載" - -#~ msgctxt "@title:tab" -#~ msgid "Installed plugins" -#~ msgstr "已安裝外掛" - -#~ msgctxt "@info" -#~ msgid "No plugin has been installed." -#~ msgstr "尚未安裝任何外掛。" - -#~ msgctxt "@title:tab" -#~ msgid "Installed materials" -#~ msgstr "已安裝線材" - -#~ msgctxt "@info" -#~ msgid "No material has been installed." -#~ msgstr "尚未安裝任何線材。" - -#~ msgctxt "@title:tab" -#~ msgid "Bundled plugins" -#~ msgstr "捆綁式外掛" - -#~ msgctxt "@title:tab" -#~ msgid "Bundled materials" -#~ msgstr "捆綁式線材" - -#~ msgctxt "@info" -#~ msgid "Could not connect to the Cura Package database. Please check your connection." -#~ msgstr "無法連上 Cura 套件資料庫。請檢查你的網路連線。" - -#~ msgctxt "@title:window" -#~ msgid "Confirm uninstall" -#~ msgstr "移除確認" - -#~ msgctxt "@text:window" -#~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." -#~ msgstr "你正在移除仍被使用的線材/列印設定。確認後會將下列耗材/列印設定重設為預設值。" - -#~ msgctxt "@text:window" -#~ msgid "Materials" -#~ msgstr "線材" - -#~ msgctxt "@text:window" -#~ msgid "Profiles" -#~ msgstr "參數" - -#~ msgctxt "@action:button" -#~ msgid "Confirm" -#~ msgstr "確定" - -#~ msgctxt "@info:tooltip" -#~ msgid "Some things could be problematic in this print. Click to see tips for adjustment." -#~ msgstr "此列印可能會有些問題。點擊查看調整提示。" - -#~ msgctxt "@label" -#~ msgid "Support library for handling planar objects" -#~ msgstr "用於處理平面物件的函式庫" - -#~ msgctxt "@text:window, %1 is a profile name" #~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "你修改了一些參數設定。\n" -#~ "你要在切換參數後保留這些更動嗎?\n" -#~ "或者你也可以忽略這些更動,從 '%1' 載入預設值。" - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Build plate" -#~ msgstr "列印平台(&B)" - -#~ msgctxt "@label" -#~ msgid "Create" -#~ msgstr "建立" - -#~ msgctxt "@label" -#~ msgid "Duplicate" -#~ msgstr "複製" - -#~ msgctxt "@label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "印表機:%1" - -#~ msgctxt "@action:button" -#~ msgid "Update profile with current settings/overrides" -#~ msgstr "使用目前設定 / 覆寫值更新列印參數" - -#~ msgctxt "@label" -#~ msgid "Theme:" -#~ msgstr "主題:" - -#~ msgctxt "@label" -#~ msgid "You will need to restart the application for these changes to have effect." -#~ msgstr "需重新啟動 Cura,新的設定才能生效。" - -#~ msgctxt "@action:button" -#~ msgid "More information" -#~ msgstr "更多資訊" - -#~ msgctxt "@action:button" -#~ msgid "Create" -#~ msgstr "建立" - -#~ msgctxt "@action:button Sending materials to printers" -#~ msgid "Sync with Printers" -#~ msgstr "同步列印機" - -#~ msgctxt "@action:label" -#~ msgid "Printer" -#~ msgstr "印表機" - -#~ msgctxt "@title:column" -#~ msgid "Unit" -#~ msgstr "單位" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting Guide" -#~ msgstr "顯示線上故障排除指南" - -#~ msgctxt "@action:inmenu" -#~ msgid "Add more materials from Marketplace" -#~ msgstr "從市集增加更多線材" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange All Models To All Build Plates" -#~ msgstr "將所有模型排列到所有列印平台上" - -#~ msgctxt "@action:menu" -#~ msgid "&Marketplace" -#~ msgstr "市集(&M)" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new Cura packages." -#~ msgstr "查詢,管理和安裝新的 Cura 套件。" - -#~ msgctxt "name" -#~ msgid "Toolbox" -#~ msgstr "工具箱" - -#~ msgctxt "description" -#~ msgid "Provides the Simulation view." -#~ msgstr "提供模擬檢視。" - -#~ msgctxt "@info:status" -#~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "利用你的 Ultimaker 帳號在任何地方傳送和監控列印作業。" - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Digital Factory" -#~ msgstr "連接到 Ultimaker Digital Factory" - -#~ msgctxt "@info" -#~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura." -#~ msgstr "無法從Ultimaker Cura中查看你的雲端列印機." - -#~ 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 not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." -#~ msgstr "可能有適用於你的 {machine_name} 的新功能或錯誤修正!假如尚未使用最新版本,建議更新你印表機的韌體到版本 {latest_version}。" - -#~ msgctxt "@info:title The %s gets replaced with the printer name." -#~ msgid "New %s firmware available" -#~ msgstr "有新 %s 韌體可用" - -#~ msgctxt "@info:status" -#~ msgid "Global stack is missing." -#~ msgstr "全域堆疊遺失。" - -#~ msgctxt "@info:status" -#~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces." -#~ msgstr "模型沒有封閉,標示的區域有缺少或多餘的表面。" - -#~ msgctxt "@info:title" -#~ msgid "Model errors" -#~ msgstr "模型錯誤" - -#~ msgctxt "@label:listbox" -#~ msgid "Layer thickness" -#~ msgstr "層厚" - -#~ msgctxt "@label" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "連線 3D 列印的金鑰" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Customize your experience with more print profiles and plugins\n" -#~ "- Stay flexible by syncing your setup and loading it anywhere\n" -#~ "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "" -#~ "- 使用更多的列印參數設定和外掛訂做你的使用體驗\n" -#~ "- 通過同步設定可在任何地方將其載入以保持靈活性\n" -#~ "- 透過 Ultimaker 印表機上的遠端工作流程提高效率" - -#~ msgctxt "@button" -#~ msgid "Create account" -#~ msgstr "建立帳號" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Delete Selected Model" -#~ msgid_plural "Delete Selected Models" -#~ msgstr[0] "刪除所選模型" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Center Selected Model" -#~ msgid_plural "Center Selected Models" -#~ msgstr[0] "置中所選模型" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Multiply Selected Model" -#~ msgid_plural "Multiply Selected Models" -#~ msgstr[0] "複製所選模型" - -#~ msgctxt "@button" -#~ msgid "Finish" -#~ msgstr "完成" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Account" -#~ msgstr "Ultimaker 帳號" - -#~ msgctxt "@text" -#~ msgid "Your key to connected 3D printing" -#~ msgstr "連線 3D 列印的金鑰" - -#~ msgctxt "@text" -#~ msgid "- Customize your experience with more print profiles and plugins" -#~ msgstr "- 使用更多的列印參數設定和外掛訂做你的使用體驗" - -#~ msgctxt "@text" -#~ msgid "- Stay flexible by syncing your setup and loading it anywhere" -#~ msgstr "- 通過同步設定可在任何地方將其載入以保持靈活性" - -#~ msgctxt "@text" -#~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers" -#~ msgstr "- 透過 Ultimaker 印表機上的遠端工作流程提高效率" - -#~ msgctxt "@text" -#~ msgid "" -#~ "Please follow these steps to set up\n" -#~ "Ultimaker Cura. This will only take a few moments." -#~ msgstr "" -#~ "請按照以下步驟進行設定\n" -#~ "Ultimaker Cura。這只需要一點時間。" - -#~ msgctxt "@label" -#~ msgid "What's new in Ultimaker Cura" -#~ msgstr "Ultimaker Cura 新功能" - -#~ msgctxt "@label ({} is object name)" -#~ msgid "Are you sure you wish to remove {}? This cannot be undone!" -#~ msgstr "你確認要移除 {}?此動作無法復原!" - -#~ msgctxt "@info:status" -#~ msgid "The selected model was too small to load." -#~ msgstr "選擇的模型太小無法載入。" - -#~ msgctxt "@info:status" -#~ msgid "Successfully imported profile {0}" -#~ msgstr "已成功匯入列印參數 {0}" - -#~ msgctxt "@info:status" -#~ msgid "Could not find a quality type {0} for the current configuration." -#~ msgstr "無法為目前設定找到品質類型 {0}。" - -#~ msgctxt "info:status" -#~ msgid "Adding printer {} ({}) from your account" -#~ msgstr "從你的帳號新增印表機 {} ({})" - -#~ msgctxt "info:hidden list items" -#~ msgid "
  • ... and {} others
  • " -#~ msgstr "
  • ... 和 {} 其他
  • " - -#~ msgctxt "info:status" -#~ msgid "Printers added from Digital Factory:
      {}
    " -#~ msgstr "從 Digital Factory 新增印表機:
      {}
    " - -#~ msgctxt "info:status" -#~ msgid "
      {}
    To establish a connection, please visit the Ultimaker Digital Factory." -#~ msgstr "
      {}
    要建立連線,請前往 Ultimaker Digital Factory。" - -#~ msgctxt "@label ({} is printer name)" -#~ msgid "{} will be removed until the next account sync.
    To remove {} permanently, visit Ultimaker Digital Factory.

    Are you sure you want to remove {} temporarily?" -#~ msgstr "直到下次帳號同步前 {} 將被移除。
    要永久移除 {},請前往 Ultimaker Digital Factory

    你確定要暫時移除 {} 嗎?" - -#~ msgctxt "@label" -#~ msgid "" -#~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n" -#~ "Are you sure you want to continue?" -#~ msgstr "" -#~ "你將從 Cura 移除 {} 印表機。此動作無法復原。\n" -#~ "你確定要繼續嗎?" - -#~ msgctxt "@label" -#~ 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" -#~ "你確定要繼續嗎?" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update" -#~ msgstr "更新" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Create new" -#~ msgstr "新建" - -#~ msgctxt "@label" -#~ msgid "Shared Heater" -#~ msgstr "共用加熱器" - -#~ msgctxt "@info" -#~ msgid "The webcam is not available because you are monitoring a cloud printer." -#~ msgstr "由於你正在監控一台雲端印表機,因此無法使用網路攝影機。" - -#~ msgctxt "@button" -#~ msgid "Ultimaker Digital Factory" -#~ msgstr "Ultimaker Digital Factory" - -#~ msgctxt "@text:window, %1 is a profile name" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to Keep these changed settings after switching profiles?\n" -#~ "Alternatively, you can Discard the changes to load the defaults from '%1'." -#~ msgstr "" -#~ "你修改了一些參數設定。\n" -#~ "你要在切換參數後保留這些更動?\n" -#~ "或者你也可以忽略這些更動,從 '%1' 載入預設值。" - -#~ msgctxt "@label" -#~ msgid "Overrides %1 setting." -#~ msgid_plural "Overrides %1 settings." -#~ msgstr[0] "覆寫 %1 設定。" - -#~ msgctxt "@text" -#~ msgid "Please give your printer a name" -#~ msgstr "請為你的印表機取一個名稱" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." -#~ msgstr "你的 {machine_name} 有新功能可用!建議更新印表機韌體。" - -#~ msgctxt "@action:button" -#~ msgid "Print via Cloud" -#~ msgstr "透過雲端服務列印" - -#~ msgctxt "@properties:tooltip" -#~ msgid "Print via Cloud" -#~ msgstr "透過雲端服務列印" - -#~ msgctxt "@info:status" -#~ msgid "Connected via Cloud" -#~ msgstr "透過雲端服務連接" - -#~ msgctxt "@info:status Ultimaker Cloud should not be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "連接到 Ultimaker Cloud" - -#~ msgctxt "@label" -#~ msgid "You need to login first before you can rate" -#~ msgstr "你需要先登入才能進行評分" - -#~ msgctxt "@label" -#~ msgid "You need to install the package before you can rate" -#~ msgstr "你需要先安裝套件才能進行評分" - -#~ msgctxt "@label" -#~ msgid "ratings" -#~ msgstr "評分" - -#~ msgctxt "@label" -#~ msgid "Featured" -#~ msgstr "精選" - -#~ msgctxt "@label" -#~ msgid "Your rating" -#~ msgstr "你的評分" - -#~ msgctxt "@label" -#~ msgid "Author" -#~ msgstr "作者" - -#~ msgctxt "@description" -#~ msgid "Get plugins and materials verified by Ultimaker" -#~ msgstr "取得經 Ultimaker 驗証過的外掛和耗材" - -#~ msgctxt "@label The argument is a username." -#~ msgid "Hi %1" -#~ msgstr "嗨 %1" - -#~ msgctxt "@button" -#~ msgid "Ultimaker account" -#~ msgstr "Ultimaker 帳號" - -#~ msgctxt "@button" -#~ msgid "Sign out" -#~ msgstr "登出" - -#~ msgctxt "@label" -#~ msgid "Support library for analysis of complex networks" -#~ msgstr "用於分析複雜網路的函式庫" - -#~ msgctxt "@Label" -#~ msgid "Python HTTP library" -#~ msgstr "Python HTTP 函式庫" - -#~ msgctxt "@text:window" -#~ msgid "" -#~ "You have customized some profile settings.\n" -#~ "Would you like to keep or discard those settings?" -#~ msgstr "" -#~ "你已自訂部份列印參數設定。\n" -#~ "你想保留或捨棄這些設定嗎?" - -#~ msgctxt "@title:column" -#~ msgid "Default" -#~ msgstr "預設" - -#~ msgctxt "@title:column" -#~ msgid "Customized" -#~ msgstr "自訂" - -#~ msgctxt "@action:button" -#~ msgid "Discard" -#~ msgstr "捨棄" - -#~ msgctxt "@action:button" -#~ msgid "Keep" -#~ msgstr "保留" - -#~ msgctxt "@action:button" -#~ msgid "Create New Profile" -#~ msgstr "建立新的列印參數" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "&Save..." -#~ msgstr "儲存(&S)" - -#~ msgctxt "@text" -#~ msgid "Place enter your printer's IP address." -#~ msgstr "輸入印表機的 IP 地址。" - -#~ msgctxt "@button" -#~ msgid "Create an account" -#~ msgstr "建立帳號" +#~ msgstr "使用 " #~ msgctxt "@info:generic" #~ msgid "" @@ -7366,780 +6919,83 @@ msgstr "透視檢視" #~ "\n" #~ "同步中..." -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder." -#~ msgstr "因沒有模型符合列印範圍或是被分配到停用的擠出機,無模型可進行切片。請縮放或旋轉模型以符合列印範圍,或是啟用擠出機。" +#~ msgctxt "@label: arg 1 is group name" +#~ msgid "%1 is not set up to host a group of connected UltiMaker 3 printers" +#~ msgstr "%1 未設定成管理一組連線的 UltiMaker 3 印表機的主機" -#~ msgctxt "@info:backup_status" -#~ msgid "There was an error listing your backups." -#~ msgstr "列出備份時發生錯誤。" +#~ msgctxt "@label Print estimates: m for meters, g for grams" +#~ msgid "%1m / ~ %2g" +#~ msgstr "%1m / ~ %2g" -#~ msgctxt "@title:groupbox" -#~ msgid "User description (Note: Developers may not speak your language, please use English if possible)" -#~ msgstr "使用者描述(注意:開發人員可能不會說您的語言,請盡可能使用英語)" +#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" +#~ msgid "%1m / ~ %2g / ~ %4 %3" +#~ msgstr "%1m / ~ %2g / ~ %4 %3" -#~ msgctxt "@title:window" -#~ msgid "Closing Cura" -#~ msgstr "關閉 Cura 中" - -#~ msgctxt "@label" -#~ msgid "Are you sure you want to exit Cura?" -#~ msgstr "你確定要結束 Cura 嗎?" - -#~ msgctxt "@label" -#~ msgid "Language:" -#~ msgstr "語言:" - -#~ msgctxt "@label" -#~ msgid "Ultimaker Cloud" -#~ msgstr "Ultimaker Cloud" - -#~ msgctxt "@text" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "下一世代的 3D 列印流程" - -#~ msgctxt "@text" -#~ msgid "- Send print jobs to Ultimaker printers outside your local network" -#~ msgstr "- 將列印作業傳送到你區域網路外的 Ultimaker 印表機" - -#~ msgctxt "@text" -#~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere" -#~ msgstr "- 將你的 Ultimaker Cura 設定儲存在雲端以便隨處使用" - -#~ msgctxt "@text" -#~ msgid "- Get exclusive access to print profiles from leading brands" -#~ msgstr "- 取得領導品牌的耗材參數設定的獨家存取權限" - -#~ msgctxt "@label" -#~ msgid "The value is resolved from per-extruder values " -#~ msgstr "這個數值是由每個擠出機的設定值解析出來的 " - -#~ msgctxt "@label" -#~ msgid "The next generation 3D printing workflow" -#~ msgstr "下一世代的 3D 列印流程" - -#~ msgctxt "@text" -#~ msgid "" -#~ "- Send print jobs to Ultimaker printers outside your local network\n" -#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" -#~ "- Get exclusive access to print profiles from leading brands" -#~ msgstr "" -#~ "- 將列印作業傳送到你區域網路外的 Ultimaker 印表機\n" -#~ "- 將你的 Ultimaker Cura 設定儲存在雲端以便隨處使用\n" -#~ "- 取得領導品牌的耗材參數設定的獨家存取權限" - -#~ msgctxt "@title:window" -#~ msgid "About " -#~ msgstr "關於 " - -#~ msgctxt "@info:button" -#~ msgid "Quit Cura" -#~ msgstr "結束 Cura" - -#~ msgctxt "@action:checkbox" -#~ msgid "Infill only" -#~ msgstr "只有填充" - -#~ msgctxt "@info:tooltip" -#~ msgid "Change active post-processing scripts" -#~ msgstr "更改目前啟用的後處理腳本" - -#~ msgctxt "@label:listbox" -#~ msgid "Feedrate" -#~ msgstr "進給率" - -#~ msgctxt "name" -#~ msgid "Machine Settings action" -#~ msgstr "印表機設定操作" - -#~ msgctxt "@info:title" -#~ msgid "New cloud printers found" -#~ msgstr "找到新的雲端印表機" - -#~ msgctxt "@info:message" -#~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers." -#~ msgstr "新找到的印表機已連接到你的帳戶,你可以在已發現的印表機清單中找到它們。" - -#~ msgctxt "@info:status" -#~ msgid "Cura does not accurately display layers when Wire Printing is enabled" -#~ msgstr "當鐵絲網列印(Wire Printing)功能開啟時,Cura 將無法準確地顯示列印層(Layers)" - -#~ msgctxt "@label" -#~ msgid "Pre-sliced file {0}" -#~ msgstr "預切片檔案 {0}" - -#~ msgctxt "@label" -#~ msgid "" -#~ "This plugin contains a license.\n" -#~ "You need to accept this license to install this plugin.\n" -#~ "Do you agree with the terms below?" -#~ msgstr "" -#~ "外掛內含一份授權協議。\n" -#~ "你必需同意此份授權協議才能安裝此外掛。\n" -#~ "是否同意下列條款?" - -#~ msgctxt "@action:button" -#~ msgid "Accept" -#~ msgstr "接受" - -#~ msgctxt "@action:button" -#~ msgid "Decline" -#~ msgstr "拒絕" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show All Settings" -#~ msgstr "顯示所有設定" - -#~ msgctxt "@title:window" -#~ msgid "Ultimaker Cura" -#~ msgstr "Ultimaker Cura" - -#~ msgctxt "@title:window" -#~ msgid "About Cura" -#~ msgstr "關於 Cura" - -#~ msgctxt "@item:inmenu" -#~ msgid "Flatten active settings" -#~ msgstr "合併有效設定" - -#~ msgctxt "@info:status" -#~ msgid "Profile has been flattened & activated." -#~ msgstr "列印參數已被合併並啟用。" - -#~ msgctxt "X3g Writer Plugin Description" -#~ msgid "Writes X3g to files" -#~ msgstr "將 X3g 寫入檔案" - -#~ msgctxt "X3g Writer File Description" -#~ msgid "X3g File" -#~ msgstr "X3g 檔案" - -#~ msgctxt "X3G Writer File Description" -#~ msgid "X3G File" -#~ msgstr "X3G 檔案" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Open Compressed Triangle Mesh" -#~ msgstr "Open Compressed Triangle Mesh" - -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "參數助手" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "參數助手" - -#~ msgctxt "@action:button" -#~ msgid "Retry" -#~ msgstr "重試" - -#~ msgctxt "@label:table_header" -#~ msgid "Print Core" -#~ msgstr "Print Core" - -#~ msgctxt "@label" -#~ msgid "Don't support overlap with other models" -#~ msgstr "與模型重疊處不建立支撐" - -#~ msgctxt "@label" -#~ msgid "Modify settings for overlap with other models" -#~ msgstr "修改與模型重疊處的設定" - -#~ msgctxt "@label" -#~ msgid "Modify settings for infill of other models" -#~ msgstr "修改其他模型的填充設定" - -#~ msgctxt "@action:ComboBox option" -#~ msgid "Update existing" -#~ msgstr "更新已有設定" - -#~ msgctxt "@label" -#~ msgid "Not supported" -#~ msgstr "不支援" - -#~ msgctxt "@action:button" -#~ msgid "Previous" -#~ msgstr "前一個" - -#~ msgctxt "@label" -#~ msgid "Tip" -#~ msgstr "提示" - -#~ msgctxt "@label" -#~ msgid "Print experiment" -#~ msgstr "列印實驗" - -#~ msgctxt "@label" -#~ msgid "Checklist" -#~ msgstr "檢查清單" - -#~ msgctxt "@label" -#~ msgid "Please select any upgrades made to this Ultimaker 2." -#~ msgstr "請選擇適用於 Ultimaker 2 的更新檔案。" - -#~ msgctxt "@label" -#~ msgid "Olsson Block" -#~ msgstr "Olsson Block" - -#~ msgctxt "@window:text" -#~ msgid "Camera rendering: " -#~ msgstr "攝影機渲染:" - -#~ msgctxt "@info:tooltip" -#~ msgid "Use multi build plate functionality" -#~ msgstr "使用多列印平台功能" - -#~ msgctxt "@option:check" -#~ msgid "Use multi build plate functionality (restart required)" -#~ msgstr "使用多列印平台功能(需重啟軟體)" - -#~ msgctxt "@label" -#~ msgid "Default profiles" -#~ msgstr "預設參數" - -#~ msgctxt "@label:textbox" -#~ msgid "search settings" -#~ msgstr "搜尋設定" - -#~ msgctxt "@label" -#~ msgid "Layer Height" -#~ msgstr "層高" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile." -#~ msgstr "品質參數無法用於目前的耗材和噴頭設定。請修改這些設定以啟用此品質參數。" - -#~ msgctxt "@tooltip" -#~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" -#~ msgstr "目前正使用自訂列印參數。若要使用品質滑動條,在自訂分頁中選擇預設的列印參數" +#~ msgctxt "@action:inmenu menubar:view" +#~ msgid "&Build plate" +#~ msgstr "列印平台(&B)" #~ msgctxt "@title:menu" #~ msgid "&Build plate" #~ msgstr "列印平台(&B)" +#~ msgctxt "@action:menu" +#~ msgid "&Marketplace" +#~ msgstr "市集(&M)" + #~ msgctxt "@title:settings" #~ msgid "&Profile" #~ msgstr "列印參數(&P)" -#~ msgctxt "@action:label" -#~ msgid "Build plate" -#~ msgstr "列印平台" +#~ msgctxt "@action:inmenu menubar:view" +#~ msgid "&Reset camera position" +#~ msgstr "重置視角位置" -#~ msgctxt "description" -#~ msgid "Dump the contents of all settings to a HTML file." -#~ msgstr "將所有設定內容轉儲至 HTML 檔案。" +#~ msgctxt "@action:inmenu menubar:file" +#~ msgid "&Save Selection to File" +#~ msgstr "儲存到檔案(&S)" -#~ msgctxt "name" -#~ msgid "God Mode" -#~ msgstr "上帝模式" +#~ msgctxt "@title:menu menubar:file" +#~ msgid "&Save..." +#~ msgstr "儲存(&S)" -#~ msgctxt "description" -#~ msgid "Create a flattened quality changes profile." -#~ msgstr "建立一個撫平的品質修改參數。" +#~ msgctxt "@title:menu" +#~ msgid "&Settings" +#~ msgstr "設定(&S)" -#~ msgctxt "name" -#~ msgid "Profile Flattener" -#~ msgstr "參數撫平器" +#~ msgctxt "@title:menu menubar:toplevel" +#~ msgid "&Toolbox" +#~ msgstr "工具箱(&T)" -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "允許耗材製造商使用下拉式 UI 建立新的耗材和品質設定參數。" +#~ msgctxt "@title:menu" +#~ msgid "&View" +#~ msgstr "檢視(&V)" -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "列印參數設定助手" +#~ msgctxt "@text" +#~ msgid "- Customize your experience with more print profiles and plugins" +#~ msgstr "- 使用更多的列印參數設定和外掛訂做你的使用體驗" -#~ msgctxt "@info:status" -#~ msgid "Connected over the network." -#~ msgstr "已透過網路連接。" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. Please approve the access request on the printer." -#~ msgstr "已透過網路連接。請在印表機上接受存取請求。" - -#~ msgctxt "@info:status" -#~ msgid "Connected over the network. No access to control the printer." -#~ msgstr "已透過網路連接,但沒有印表機的控制權限。" - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer requested. Please approve the request on the printer" -#~ msgstr "已發送印表機存取請求,請在印表機上批准該請求" - -#~ msgctxt "@info:title" -#~ msgid "Authentication status" -#~ msgstr "認証狀態" - -#~ msgctxt "@info:title" -#~ msgid "Authentication Status" -#~ msgstr "認証狀態" - -#~ msgctxt "@info:tooltip" -#~ msgid "Re-send the access request" -#~ msgstr "重新發送存取請求" - -#~ msgctxt "@info:status" -#~ msgid "Access to the printer accepted" -#~ msgstr "印表機接受了存取請求" - -#~ msgctxt "@info:status" -#~ msgid "No access to print with this printer. Unable to send print job." -#~ msgstr "無法使用本印表機進行列印,無法發送列印作業。" - -#~ msgctxt "@action:button" -#~ msgid "Request Access" -#~ msgstr "請求存取" - -#~ msgctxt "@info:tooltip" -#~ msgid "Send access request to the printer" -#~ msgstr "向印表機發送存取請求" - -#~ msgctxt "@label" -#~ msgid "Unable to start a new print job." -#~ msgstr "無法開始新的列印作業。" - -#~ msgctxt "@label" -#~ msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." -#~ msgstr "Ultimaker 的設定有問題導致無法開始列印。請在繼續之前解決這個問題。" - -#~ msgctxt "@window:title" -#~ msgid "Mismatched configuration" -#~ msgstr "設定不匹配" - -#~ msgctxt "@label" -#~ msgid "Are you sure you wish to print with the selected configuration?" -#~ msgstr "你確定要使用所選設定進行列印嗎?" - -#~ msgctxt "@label" -#~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "印表機的設定或校正與 Cura 之間不匹配。為了獲得最佳列印效果,請使用印表機的 PrintCores 和耗材設定進行切片。" - -#~ msgctxt "@info:status" -#~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." -#~ msgstr "前一列印作業傳送中,暫停傳送新列印作業。" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to printer" -#~ msgstr "正在向印表機發送資料" - -#~ msgctxt "@info:title" -#~ msgid "Sending Data" -#~ msgstr "發送資料中" - -#~ msgctxt "@info:status" -#~ msgid "No Printcore loaded in slot {slot_number}" -#~ msgstr "Slot {slot_number} 中沒有載入 Printcore" - -#~ msgctxt "@info:status" -#~ msgid "No material loaded in slot {slot_number}" -#~ msgstr "Slot {slot_number} 中沒有載入耗材" - -#~ msgctxt "@label" -#~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" -#~ msgstr "擠出機 {extruder_id} 選擇了不同的 PrintCore(Cura:{cura_printcore_name},印表機:{remote_printcore_name})" - -#~ msgctxt "@label" -#~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" -#~ msgstr "擠出機 {2} 選擇了不同的耗材(Cura:{0},印表機:{1})" - -#~ msgctxt "@window:title" -#~ msgid "Sync with your printer" -#~ msgstr "與你的印表機同步" - -#~ msgctxt "@label" -#~ msgid "Would you like to use your current printer configuration in Cura?" -#~ msgstr "你想在 Cura 中使用目前的印表機設定嗎?" - -#~ msgctxt "@label" -#~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." -#~ msgstr "印表機上的 PrintCores 和/或耗材與目前專案中的不同。為獲得最佳列印效果,請使用目前印表機的 PrintCores 和耗材設定進行切片。" - -#~ msgctxt "@action:button" -#~ msgid "View in Monitor" -#~ msgstr "使用監控觀看" - -#~ msgctxt "@info:status" -#~ msgid "Printer '{printer_name}' has finished printing '{job_name}'." -#~ msgstr "印表機 '{printer_name}' 已完成列印 '{job_name}'。" - -#~ msgctxt "@info:status" -#~ msgid "The print job '{job_name}' was finished." -#~ msgstr "列印作業 '{job_name}' 已完成。" - -#~ msgctxt "@info:status" -#~ msgid "Print finished" -#~ msgstr "列印已完成" - -#~ msgctxt "@label:material" -#~ msgid "Empty" -#~ msgstr "空的" - -#~ msgctxt "@label:material" -#~ msgid "Unknown" -#~ msgstr "未知" - -#~ msgctxt "@info:title" -#~ msgid "Cloud error" -#~ msgstr "雲端服務錯誤" - -#~ msgctxt "@info:status" -#~ msgid "Could not export print job." -#~ msgstr "雲端服務未匯出列印作業。" - -#~ msgctxt "@info:description" -#~ msgid "There was an error connecting to the cloud." -#~ msgstr "連接到雲端服務時發生錯誤。" - -#~ msgctxt "@info:status" -#~ msgid "Uploading via Ultimaker Cloud" -#~ msgstr "透過 Ultimaker Cloud 上傳" - -#~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated." -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "連接到 Ultimaker Cloud" - -#~ msgctxt "@action" -#~ msgid "Don't ask me again for this printer." -#~ msgstr "對此印表機不要再次詢問。" - -#~ msgctxt "@info:status" -#~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account." -#~ msgstr "現在你可以利用你的 Ultimaker 帳號在任何地方傳送和監控列印作業。" - -#~ msgctxt "@info:status" -#~ msgid "Connected!" -#~ msgstr "已連線!" - -#~ msgctxt "@action" -#~ msgid "Review your connection" -#~ msgstr "檢查您的連線" - -#~ msgctxt "@info:status Don't translate the XML tags !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "列印參數 {0} 內定義的機器({1})與你目前的機器({2})不匹配, 無法匯入。" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}:" -#~ msgstr "從 {0} 匯入列印參數失敗:" - -#~ msgctxt "@window:title" -#~ msgid "Existing Connection" -#~ msgstr "目前連線中" - -#~ msgctxt "@message:text" -#~ msgid "This printer/group is already added to Cura. Please select another printer/group." -#~ msgstr "此印表機/群組已加入 Cura。請選擇另一個印表機/群組。" - -#~ msgctxt "@label" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "輸入印表機在網路上的 IP 位址或主機名稱。" - -#~ msgctxt "@info:tooltip" -#~ msgid "Connect to a printer" -#~ msgstr "連接到印表機" - -#~ msgctxt "@title" -#~ msgid "Cura Settings Guide" -#~ msgstr "Cura 設定指南" - -#~ msgctxt "@info:tooltip" -#~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective." -#~ msgstr "正交透視不支援游標縮放功能。" - -#~ msgid "Orthogonal" -#~ msgstr "正交" - -#~ msgctxt "description" -#~ msgid "Manages network connections to Ultimaker 3 printers." -#~ msgstr "管理與 Ultimaker 3 印表機的網絡連線。" - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection" -#~ msgstr "UM3 網路連線" - -#~ msgctxt "description" -#~ msgid "Provides extra information and explanations about settings in Cura, with images and animations." -#~ msgstr "提供關於 Cura 設定額外的圖片動畫資訊和說明。" - -#~ msgctxt "name" -#~ msgid "Settings Guide" -#~ msgstr "設定指南" - -#~ msgctxt "@item:inmenu" -#~ msgid "Cura Settings Guide" -#~ msgstr "Cura 設定指南" - -#~ msgctxt "@info:generic" -#~ msgid "Settings have been changed to match the current availability of extruders: [%s]" -#~ msgstr "設定已改為與目前擠出機性能相匹配:[%s]" - -#~ msgctxt "@title:groupbox" -#~ msgid "User description" -#~ msgstr "使用者描述" - -#~ msgctxt "@info" -#~ msgid "These options are not available because you are monitoring a cloud printer." -#~ msgstr "由於你正在監控一台雲端印表機,因此無法使用這些選項。" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Go to Cura Connect" -#~ msgstr "前往 Cura Connect" - -#~ msgctxt "@info" -#~ msgid "All jobs are printed." -#~ msgstr "所有列印作業已完成。" - -#~ msgctxt "@label link to connect manager" -#~ msgid "View print history" -#~ msgstr "檢視列印歷史記錄" - -#~ msgctxt "@label" +#~ msgctxt "@text" #~ 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.\n" -#~ "\n" -#~ "Select your printer from the list below:" +#~ "- Customize your experience with more print profiles and plugins\n" +#~ "- Stay flexible by syncing your setup and loading it anywhere\n" +#~ "- Increase efficiency with a remote workflow on Ultimaker printers" #~ msgstr "" -#~ "要透過網路列印,請確認你的印表機已透過網路線或 WIFI 連接到網路。若你無法讓 Cura 與印表機連線,你仍然可以使用 USB 裝置將 G-code 檔案傳輸到印表機。\n" -#~ "\n" -#~ "從以下清單中選擇你的印表機:" +#~ "- 使用更多的列印參數設定和外掛訂做你的使用體驗\n" +#~ "- 通過同步設定可在任何地方將其載入以保持靈活性\n" +#~ "- 透過 Ultimaker 印表機上的遠端工作流程提高效率" -#~ 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." -#~ msgstr "" -#~ "請確認你的印表機有連接:\n" -#~ "- 檢查印表機是否已打開。\n" -#~ "- 檢查印表機是否已連接到網路。" +#~ msgctxt "@text" +#~ msgid "- Get exclusive access to print profiles from leading brands" +#~ msgstr "- 取得領導品牌的耗材參數設定的獨家存取權限" -#~ msgctxt "@option:check" -#~ msgid "See only current build plate" -#~ msgstr "只顯示目前的列印平台" +#~ msgctxt "@text" +#~ msgid "- Increase efficiency with a remote workflow on UltiMaker printers" +#~ msgstr "- 透過 UltiMaker 印表機上的遠端工作流程提高效率" -#~ msgctxt "@action:button" -#~ msgid "Arrange to all build plates" -#~ msgstr "擺放到所有的列印平台" - -#~ msgctxt "@action:button" -#~ msgid "Arrange current build plate" -#~ msgstr "擺放到目前的列印平台" - -#~ msgctxt "description" -#~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)." -#~ msgstr "允許將切片結果儲存為 X3G 檔案,以支援讀取此格式的印表機(Malyan,Makerbot 和其他以 Sailfish 為原型的印表機)。" - -#~ msgctxt "name" -#~ msgid "X3GWriter" -#~ msgstr "X3G 寫入器" - -#~ msgctxt "description" -#~ msgid "Reads SVG files as toolpaths, for debugging printer movements." -#~ msgstr "讀取 SVG 檔案做為工具路徑,用於印表機移動的除錯。" - -#~ msgctxt "name" -#~ msgid "SVG Toolpath Reader" -#~ msgstr "SVG 工具路徑讀取器" - -#~ msgctxt "@item:inmenu" -#~ msgid "Changelog" -#~ msgstr "更新日誌" - -#~ msgctxt "@item:inmenu" -#~ msgid "Show Changelog" -#~ msgstr "顯示更新日誌" - -#~ msgctxt "@info:status" -#~ msgid "Sending data to remote cluster" -#~ msgstr "正在傳送資料到遠端叢集" - -#~ msgctxt "@info:status" -#~ msgid "Connect to Ultimaker Cloud" -#~ msgstr "連接到 Ultimaker Cloud" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymized usage statistics." -#~ msgstr "Cura 以匿名方式蒐集使用狀況統計資料。" - -#~ msgctxt "@info:title" -#~ msgid "Collecting Data" -#~ msgstr "收集資料中" - -#~ msgctxt "@action:button" -#~ msgid "More info" -#~ msgstr "更多資訊" - -#~ msgctxt "@action:tooltip" -#~ msgid "See more information on what data Cura sends." -#~ msgstr "檢視更多關於 Cura 傳送資料的資訊。" - -#~ msgctxt "@action:button" -#~ msgid "Allow" -#~ msgstr "允許" - -#~ msgctxt "@action:tooltip" -#~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." -#~ msgstr "允許 Cura 以匿名方式傳送使用狀況統計資料,用來協助 Cura 的未來改善工作。你的部份偏好設定和參數,Cura 的版本及你切片模型的雜湊值會被傳送。" - -#~ msgctxt "@item:inmenu" -#~ msgid "Evaluation" -#~ msgstr "評估" - -#~ msgctxt "@info:title" -#~ msgid "Network enabled printers" -#~ msgstr "網路印表機" - -#~ msgctxt "@info:title" -#~ msgid "Local printers" -#~ msgstr "本機印表機" - -#~ msgctxt "@info:backup_failed" -#~ msgid "Tried to restore a Cura backup that does not match your current version." -#~ msgstr "嘗試復原版本不符的 Cura 備份。" - -#~ msgctxt "@title" -#~ msgid "Machine Settings" -#~ msgstr "印表機設定" - -#~ msgctxt "@label" -#~ msgid "Printer Settings" -#~ msgstr "印表機設定" - -#~ msgctxt "@option:check" -#~ msgid "Origin at center" -#~ msgstr "原點位於中心" - -#~ msgctxt "@option:check" -#~ msgid "Heated bed" -#~ msgstr "熱床" - -#~ msgctxt "@label" -#~ msgid "Printhead Settings" -#~ msgstr "列印頭設定" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "列印頭左側至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "列印頭前端至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "列印頭右側至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。" - -#~ msgctxt "@tooltip" -#~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." -#~ msgstr "列印頭後部至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。" - -#~ msgctxt "@label" -#~ msgid "Gantry height" -#~ msgstr "龍門高度" - -#~ msgctxt "@tooltip" -#~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." -#~ msgstr "噴頭尖端與龍門系統(X 軸和 Y 軸)之間的高度差。用於防止「排隊列印」時之前的列印品與龍門發生碰撞。" - -#~ msgctxt "@label" -#~ msgid "Start G-code" -#~ msgstr "起始 G-code" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very start." -#~ msgstr "開始時最先執行的 G-code 命令。" - -#~ msgctxt "@label" -#~ msgid "End G-code" -#~ msgstr "結束 G-code" - -#~ msgctxt "@tooltip" -#~ msgid "G-code commands to be executed at the very end." -#~ msgstr "結束前最後執行的 G-code 命令。" - -#~ msgctxt "@label" -#~ msgid "Nozzle Settings" -#~ msgstr "噴頭設定" - -#~ msgctxt "@tooltip" -#~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." -#~ msgstr "印表機所支援的耗材直徑。實際列印的耗材直徑由耗材和/或列印參數提供。" - -#~ msgctxt "@label" -#~ msgid "Extruder Start G-code" -#~ msgstr "擠出機起始 G-code" - -#~ msgctxt "@label" -#~ msgid "Extruder End G-code" -#~ msgstr "擠出機結束 G-code" - -#~ msgctxt "@label" -#~ msgid "Changelog" -#~ msgstr "更新日誌" - -#~ msgctxt "@title:window" -#~ msgid "User Agreement" -#~ msgstr "使用者授權" - -#~ msgctxt "@alabel" -#~ msgid "Enter the IP address or hostname of your printer on the network." -#~ msgstr "輸入印表機在網路上的 IP 位址或主機名。" - -#~ msgctxt "@info" -#~ msgid "Please select a network connected printer to monitor." -#~ msgstr "請選擇要監控的網絡連線印表機。" - -#~ msgctxt "@info" -#~ msgid "Please connect your Ultimaker printer to your local network." -#~ msgstr "請將你的 Ultimaker 印表機連接到區域網路。" - -#~ msgctxt "@text:window" -#~ msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent." -#~ msgstr "Cura 傳送匿名資料給 Ultimaker 以提高列印品質和使用者體驗。以下是傳送資料的例子。" - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send this data" -#~ msgstr "我不想傳送這些資料" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending this data to Ultimaker and help us improve Cura" -#~ msgstr "允許將這些資料傳送給 Ultimaker 以協助我們改進 Cura" - -#~ msgctxt "@label" -#~ msgid "No print selected" -#~ msgstr "沒有選擇任何模型" - -#~ msgctxt "@info:tooltip" -#~ 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 "@title" -#~ msgid "Select Printer Upgrades" -#~ msgstr "選擇印表機更新檔案" - -#~ msgctxt "@label" -#~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." -#~ msgstr "選擇用於支撐的擠出機。該擠出機將在模型之下建立支撐結構,以防止模型下垂或在空中列印。" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "品質參數不適用於目前的耗材和噴頭設定。請修改這些設定以啟用此品質參數" - -#~ msgctxt "@label shown when we load a Gcode file" -#~ msgid "Print setup disabled. G code file can not be modified." -#~ msgstr "列印設定已被停用。 G-code 檔案無法修改。" - -#~ msgctxt "@label" -#~ msgid "See the material compatibility chart" -#~ msgstr "請參閱耗材相容性圖表" - -#~ msgctxt "@label" -#~ msgid "View types" -#~ msgstr "檢示類型" - -#~ msgctxt "@label" -#~ msgid "Hi " -#~ msgstr "嗨 " +#~ msgctxt "@text" +#~ msgid "- Send print jobs to UltiMaker printers outside your local network" +#~ msgstr "- 將列印作業傳送到你區域網路外的 UltiMaker 印表機" #~ msgctxt "@text" #~ msgid "" @@ -8151,482 +7007,593 @@ msgstr "透視檢視" #~ "- 將你的 Ultimaker Cura 設定儲存在雲端以便隨處使用\n" #~ "- 取得領導品牌的耗材參數設定的獨家存取權限" -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Unable to Slice" -#~ msgstr "無法切片" - -#~ msgctxt "@label" -#~ msgid "Time specification" -#~ msgstr "時間規格" - -#~ msgctxt "@label" -#~ msgid "Material specification" -#~ msgstr "耗材規格" - -#~ msgctxt "@title:tab" -#~ msgid "Add a printer to Cura" -#~ msgstr "新增印表機到 Cura" - -#~ msgctxt "@title:tab" +#~ msgctxt "@text" #~ msgid "" -#~ "Select the printer you want to use from the list below.\n" -#~ "\n" -#~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog." +#~ "- Send print jobs to Ultimaker printers outside your local network\n" +#~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n" +#~ "- Get exclusive access to print profiles from leading brands" #~ msgstr "" -#~ "從下面的清單中選擇要使用的印表機。\n" -#~ "\n" -#~ "假如你的印表機不在清單上,選擇“Custom”類別中的“Custom FFF Printer”,並在下一個對話窗中調整設定以符合你的印表機。" +#~ "- 將列印作業傳送到你區域網路外的 Ultimaker 印表機\n" +#~ "- 將你的 Ultimaker Cura 設定儲存在雲端以便隨處使用\n" +#~ "- 取得領導品牌的耗材參數設定的獨家存取權限" + +#~ msgctxt "@text" +#~ msgid "- Stay flexible by syncing your setup and loading it anywhere" +#~ msgstr "- 通過同步設定可在任何地方將其載入以保持靈活性" + +#~ msgctxt "@text" +#~ msgid "- Store your UltiMaker Cura settings in the cloud for use anywhere" +#~ msgstr "- 將你的 UltiMaker Cura 設定儲存在雲端以便隨處使用" #~ msgctxt "@label" -#~ msgid "Printer Name" -#~ msgstr "印表機名稱" - -#~ msgctxt "@action:button" -#~ msgid "Add Printer" -#~ msgstr "新增印表機" - -#~ msgid "Modify G-Code" -#~ msgstr "修改 G-Code 檔案" - -#~ msgctxt "@info:status" -#~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." -#~ msgstr "沒有模型可進行切片,因為模型超出了列印範圍。請縮放或旋轉模型, 讓模型可置入列印範圍。" - -#~ msgctxt "@info:status" -#~ msgid "The selected material is incompatible with the selected machine or configuration." -#~ msgstr "所選耗材與所選機器或設定不相容。" - -#~ msgctxt "@info:title" -#~ msgid "Incompatible Material" -#~ msgstr "不相容的耗材" - -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "Failed to import profile from {0}: {1}" -#~ msgstr "無法從 {0} 匯入列印參數:{1}" - -#~ msgctxt "@title" -#~ msgid "Toolbox" -#~ msgstr "工具箱" - -#~ msgctxt "@label" -#~ msgid "Not available" -#~ msgstr "無法使用" - -#~ msgctxt "@label" -#~ msgid "Unreachable" -#~ msgstr "無法連接" - -#~ msgctxt "@label" -#~ msgid "Available" -#~ msgstr "可用" - -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "正在準備" - -#~ msgctxt "@label:status" -#~ msgid "Pausing" -#~ msgstr "暫停中" - -#~ msgctxt "@label:status" -#~ msgid "Resuming" -#~ msgstr "繼續" - -#~ msgctxt "@label" -#~ msgid "Waiting for: Unavailable printer" -#~ msgstr "等待:印表機無法使用" - -#~ msgctxt "@label" -#~ msgid "Waiting for: First available" -#~ msgstr "等待:第一可用" - -#~ msgctxt "@label" -#~ msgid "Waiting for: " -#~ msgstr "等待: " - -#~ msgctxt "@label" -#~ msgid "Configuration change" -#~ msgstr "設定更動" - -#~ msgctxt "@label" -#~ msgid "The assigned printer, %1, requires the following configuration change(s):" -#~ msgstr "分配的印表機 %1 需要下列的設定更動:" - -#~ msgctxt "@label" -#~ msgid "Override" -#~ msgstr "覆寫" - -#~ msgctxt "@label" -#~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?" -#~ msgstr "使用不相容的設定啟動列印工作可能會損壞你的 3D 印表機。你確定要覆寫設定並列印 %1 嗎?" - -#~ msgctxt "@window:title" -#~ msgid "Override configuration configuration and start print" -#~ msgstr "覆寫設定並開始列印" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage queue" -#~ msgstr "管理隊列" - -#~ msgctxt "@label" -#~ msgid "Printing" -#~ msgstr "列印中" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Manage printers" -#~ msgstr "管理印表機" - -#~ msgctxt "@action:button" -#~ msgid "Activate Configuration" -#~ msgstr "啟用設定" - -#~ msgctxt "@info:tooltip" -#~ msgid "Load the configuration of the printer into Cura" -#~ msgstr "將印表機設定載入 Cura" - -#~ msgctxt "@label" -#~ msgid "Show Travels" -#~ msgstr "顯示移動軌跡" - -#~ msgctxt "@label" -#~ msgid "Show Helpers" -#~ msgstr "顯示輔助結構" - -#~ msgctxt "@label" -#~ msgid "Show Shell" -#~ msgstr "顯示外殼" - -#~ msgctxt "@label" -#~ msgid "Show Infill" -#~ msgstr "顯示填充" - -#~ msgctxt "@text:window" -#~ msgid "I don't want to send these data" -#~ msgstr "我不想傳送這些資料" - -#~ msgctxt "@text:window" -#~ msgid "Allow sending these data to Ultimaker and help us improve Cura" -#~ msgstr "允許將這些資料傳送給 Ultimaker 並協助我們改進 Cura" - -#~ msgctxt "@label" -#~ msgid "Printer type:" -#~ msgstr "印表機類型:" - -#~ msgctxt "@label" -#~ msgid "Connection:" -#~ msgstr "連線:" - -#~ msgctxt "@label" -#~ msgid "State:" -#~ msgstr "狀態:" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for a printjob" -#~ msgstr "等待列印作業" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Waiting for someone to clear the build plate" -#~ msgstr "等待清空列印平台" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Aborting print..." -#~ msgstr "中斷列印..." - -#~ msgctxt "@label" -#~ msgid "Protected profiles" -#~ msgstr "受保護的列印參數" - -#~ msgctxt "@label" -#~ msgid "Printer Name:" -#~ msgstr "印表機名稱:" - -#~ msgctxt "@label" -#~ msgid "Profile:" -#~ msgstr "列印參數:" - -#~ msgctxt "@label:textbox" -#~ msgid "Search..." -#~ msgstr "搜尋..." - -#~ msgctxt "@action:inmenu" -#~ msgid "Collapse All" -#~ msgstr "全部折疊" - -#~ msgctxt "@action:inmenu" -#~ msgid "Expand All" -#~ msgstr "全部展開" - -#~ msgctxt "@label:header configurations" -#~ msgid "Available configurations" -#~ msgstr "可用的設定" - -#~ msgctxt "@label:extruder label" -#~ msgid "Extruder" -#~ msgstr "擠出機" - -#~ msgctxt "@label:extruder label" -#~ msgid "Yes" -#~ msgstr "是" - -#~ msgctxt "@label:extruder label" -#~ msgid "No" -#~ msgstr "否" - -#~ msgctxt "@label:listbox" -#~ msgid "Print Setup" -#~ msgstr "列印設定" - -#~ msgctxt "@label:listbox" -#~ msgid "" -#~ "Print Setup disabled\n" -#~ "G-code files cannot be modified" -#~ msgstr "" -#~ "列印設定已關閉\n" -#~ "G-code 檔案無法被修改" +#~ msgid "0%" +#~ msgstr "0%" #~ msgctxt "@label Hours and minutes" #~ msgid "00h 00min" #~ msgstr "00 小時 00 分" +#~ msgctxt "@label" +#~ msgid "100%" +#~ msgstr "100%" + +#~ msgctxt "@label" +#~ msgid "20%" +#~ msgstr "20%" + +#~ msgctxt "@label" +#~ msgid "50%" +#~ msgstr "50%" + +#~ msgctxt "@label:The string between and is the highlighted link" +#~ msgid "Buy material spools" +#~ msgstr "購買線材線軸" + +#~ msgctxt "@label" +#~ msgid "Check compatibility" +#~ msgstr "檢查耗材相容性" + +#~ msgctxt "@label:The string between and is the highlighted link" +#~ msgid "Log in is required to install or update" +#~ msgstr "需要登入才能進行安裝或升級" + +#~ msgctxt "@label:The string between and is the highlighted link" +#~ msgid "Log in is required to update" +#~ msgstr "需要登入才能進行升級" + +#~ msgctxt "@label Cura version" +#~ msgid "Cura version: {version}
    " +#~ msgstr "Cura 版本: {version}
    " + #~ msgctxt "@tooltip" -#~ msgid "Time specification" -#~ msgstr "時間規格" +#~ msgid "Custom Print Setup

    Print with finegrained control over every last bit of the slicing process." +#~ msgstr "自訂列印設定
    對切片過程中的每一個細節進行精細控制。" -#~ msgctxt "@label" -#~ msgid "Cost specification" -#~ msgstr "成本明細" +#~ msgctxt "@label OpenGL" +#~ msgid "OpenGL: {opengl}
    " +#~ msgstr "OpenGL: {opengl}
    " -#~ msgctxt "@label" -#~ msgid "Total:" -#~ msgstr "總共:" +#~ msgctxt "@label Platform" +#~ msgid "Platform: {platform}
    " +#~ msgstr "平台: {platform}
    " + +#~ msgctxt "@label PyQt version" +#~ msgid "PyQt version: {pyqt}
    " +#~ msgstr "PyQt 版本: {pyqt}
    " + +#~ msgctxt "@label Qt version" +#~ msgid "Qt version: {qt}
    " +#~ msgstr "Qt 版本: {qt}
    " #~ msgctxt "@tooltip" #~ msgid "Recommended Print Setup

    Print with the recommended settings for the selected printer, material and quality." #~ msgstr "推薦的列印設定

    使用針對所選印表機、耗材和品質的推薦設定進行列印。" #~ msgctxt "@tooltip" -#~ msgid "Custom Print Setup

    Print with finegrained control over every last bit of the slicing process." -#~ msgstr "自訂列印設定
    對切片過程中的每一個細節進行精細控制。" +#~ msgid "Time specification
    " +#~ msgstr "時間資訊
    " -#~ msgctxt "@action:inmenu menubar:help" -#~ msgid "Show Engine &Log..." -#~ msgstr "顯示切片引擎日誌(&L)..." +#~ msgctxt "info:hidden list items" +#~ msgid "
  • ... and {} others
  • " +#~ msgstr "
  • ... 和 {} 其他
  • " + +#~ msgctxt "@label crash message" +#~ msgid "" +#~ "

    A fatal error has occurred. 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" +#~ "

    請使用\"送出報告\"按鈕自動發送一份問題報告給我們的伺服器

    \n" +#~ " " + +#~ msgctxt "@label crash message" +#~ msgid "" +#~ "

    A fatal exception has occurred. 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" +#~ "

    請使用「送出報告」按鈕將錯誤報告自動發送到我們的伺服器

    \n" +#~ " " + +#~ msgctxt "@label" +#~ msgid "" +#~ "

    A fatal exception has occurred that we could not recover from!

    \n" +#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" +#~ " " +#~ msgstr "" +#~ "

    發生了致命錯誤,我們無法繼續!

    \n" +#~ "

    請利用下方資訊回報錯誤到 http://github.com/Ultimaker/Cura/issues

    \n" +#~ " " + +#~ msgctxt "info:status" +#~ msgid "
      {}
    To establish a connection, please visit the Ultimaker Digital Factory." +#~ msgstr "
      {}
    要建立連線,請前往 Ultimaker Digital Factory。" + +#~ msgctxt "@tooltip" +#~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" +#~ msgstr "目前正使用自訂列印參數。若要使用品質滑動條,在自訂分頁中選擇預設的列印參數" + +#~ msgctxt "@action:button" +#~ msgid "Abort" +#~ msgstr "取消" + +#~ msgctxt "@label:" +#~ msgid "Abort Print" +#~ msgstr "中斷列印" + +#~ msgctxt "@label:MonitorStatus" +#~ msgid "Aborting print..." +#~ msgstr "中斷列印..." + +#~ msgctxt "@title:window" +#~ msgid "About " +#~ msgstr "關於 " + +#~ msgctxt "@title:window" +#~ msgid "About Cura" +#~ msgstr "關於 Cura" + +#~ msgctxt "@action:button" +#~ msgid "Accept" +#~ msgstr "接受" + +#~ msgctxt "description" +#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." +#~ msgstr "接受 G-Code 並透過 WiFi 將其發送到 Doodle3D 無線網路盒。" + +#~ msgctxt "@info:status" +#~ msgid "Access request failed due to a timeout." +#~ msgstr "存取請求超時失敗。" + +#~ msgctxt "@info:status" +#~ msgid "Access request was denied on the printer." +#~ msgstr "存取請求被印表機上拒絕。" + +#~ msgctxt "@info:status" +#~ msgid "Access to the printer accepted" +#~ msgstr "印表機接受了存取請求" + +#~ msgctxt "@info:status" +#~ msgid "Access to the printer requested. Please approve the request on the printer" +#~ msgstr "已發送印表機存取請求,請在印表機上批准該請求" + +#~ msgctxt "@action:button" +#~ msgid "Activate Configuration" +#~ msgstr "啟用設定" + +#~ msgctxt "@action:button" +#~ msgid "Add Printer" +#~ msgstr "新增印表機" + +#~ msgctxt "@title:tab" +#~ msgid "Add a printer to Cura" +#~ msgstr "新增印表機到 Cura" + +#~ msgctxt "@label" +#~ msgid "Add cloud printer" +#~ msgstr "新增雲端印表機" + +#~ msgctxt "@label link to connect manager" +#~ msgid "Add/Remove printers" +#~ msgstr "新增/移除印表機" + +#~ msgctxt "info:status" +#~ msgid "Adding printer {} ({}) from your account" +#~ msgstr "從你的帳號新增印表機 {} ({})" + +#~ msgctxt "@info" +#~ msgid "All jobs are printed." +#~ msgstr "所有列印作業已完成。" + +#~ msgctxt "@action:button" +#~ msgid "Allow" +#~ msgstr "允許" + +#~ msgctxt "@action:tooltip" +#~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." +#~ msgstr "允許 Cura 以匿名方式傳送使用狀況統計資料,用來協助 Cura 的未來改善工作。你的部份偏好設定和參數,Cura 的版本及你切片模型的雜湊值會被傳送。" + +#~ msgctxt "@text:window" +#~ msgid "Allow sending these data to UltiMaker and help us improve Cura" +#~ msgstr "允許將這些資料傳送給 UltiMaker 並協助我們改進 Cura" + +#~ msgctxt "@text:window" +#~ msgid "Allow sending this data to UltiMaker and help us improve Cura" +#~ msgstr "允許將這些資料傳送給 UltiMaker 以協助我們改進 Cura" + +#~ msgctxt "description" +#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." +#~ msgstr "允許耗材製造商使用下拉式 UI 建立新的耗材和品質設定參數。" + +#~ msgctxt "description" +#~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)." +#~ msgstr "允許將切片結果儲存為 X3G 檔案,以支援讀取此格式的印表機(Malyan,Makerbot 和其他以 Sailfish 為原型的印表機)。" + +#~ msgctxt "@label" +#~ msgid "Aluminum" +#~ msgstr "鋁" + +#~ msgctxt "@option:curaSolidworksStlQuality" +#~ msgid "Always ask" +#~ msgstr "總是詢問" + +#~ msgctxt "@option:openProject" +#~ msgid "Always ask" +#~ msgstr "總是詢問" + +#~ msgctxt "@option:curaSolidworksStlQuality" +#~ msgid "Always use Coarse quality" +#~ msgstr "總是使用粗糙品質" + +#~ msgctxt "@option:curaSolidworksStlQuality" +#~ msgid "Always use Fine quality" +#~ msgstr "總是使用精細品質" + +#~ msgctxt "@label" +#~ msgid "Are you sure you want to exit Cura?" +#~ msgstr "你確定要結束 Cura 嗎?" + +#~ msgctxt "@label" +#~ msgid "Are you sure you wish to print with the selected configuration?" +#~ msgstr "你確定要使用所選設定進行列印嗎?" + +#~ msgctxt "@label ({} is object name)" +#~ msgid "Are you sure you wish to remove {}? This cannot be undone!" +#~ msgstr "你確認要移除 {}?此動作無法復原!" + +#~ msgctxt "@action:inmenu menubar:edit" +#~ msgid "Arrange All Models To All Build Plates" +#~ msgstr "將所有模型排列到所有列印平台上" + +#~ msgctxt "@action:button" +#~ msgid "Arrange current build plate" +#~ msgstr "擺放到目前的列印平台" + +#~ msgctxt "@action:button" +#~ msgid "Arrange to all build plates" +#~ msgstr "擺放到所有的列印平台" + +#~ msgctxt "description" +#~ msgid "Ask the user once if he/she agrees with our license" +#~ msgstr "詢問使用者是否同意我們的授權協議" + +#~ msgctxt "description" +#~ msgid "Ask the user once if he/she agrees with our license." +#~ msgstr "詢問使用者是否同意我們的授權協議。" + +#~ msgctxt "@info:title" +#~ msgid "Authentication Status" +#~ msgstr "認証狀態" + +#~ msgctxt "@info:title" +#~ msgid "Authentication status" +#~ msgstr "認証狀態" + +#~ msgctxt "@label" +#~ msgid "Author" +#~ msgstr "作者" + +#~ msgctxt "name" +#~ msgid "Auto Save" +#~ msgstr "自動儲存" + +#~ msgctxt "@title:menuitem %1 is the automatically selected material" +#~ msgid "Automatic: %1" +#~ msgstr "自動:%1" + +#~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer" +#~ msgid "Automatic: %1" +#~ msgstr "自動: %1" + +#~ msgctxt "@label" +#~ msgid "Automatically rotate opened file into normed orientation" +#~ msgstr "自動將開啟的檔案旋轉到正常方向" + +#~ msgctxt "description" +#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." +#~ msgstr "偏好設定、機器設定和列印參數修改後自動儲存。" + +#~ msgctxt "@label" +#~ msgid "Available" +#~ msgstr "可用" + +#~ msgctxt "@label:status" +#~ msgid "Available" +#~ msgstr "可用" + +#~ msgctxt "@label:header configurations" +#~ msgid "Available configurations" +#~ msgstr "可用的設定" + +#~ msgctxt "@action:button" +#~ msgid "Back" +#~ msgstr "返回" + +#~ msgctxt "@label" +#~ msgid "Bed Temperature: %1/%2°C" +#~ msgstr "熱床溫度:%1/%2°C" + +#~ msgctxt "name" +#~ msgid "Blender Integration (experimental)" +#~ msgstr "Blender 整合(實驗功能)" + +#~ msgctxt "@item:inlistbox" +#~ msgid "Blender file" +#~ msgstr "Blender 檔案" + +#~ msgctxt "@label:status" +#~ msgid "Blocked" +#~ msgstr "暫停" #~ msgctxt "@action:menu" #~ msgid "Browse packages..." #~ msgstr "瀏覽套件..." -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "Expand/Collapse Sidebar" -#~ msgstr "展開/收合側邊欄" +#~ msgctxt "@menuitem" +#~ msgid "Browse plugins" +#~ msgstr "瀏覽外掛" -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Please load a 3D model" -#~ msgstr "請載入一個 3D 模型" +#~ msgctxt "@action:menu" +#~ msgid "Browse plugins..." +#~ msgstr "瀏覽外掛..." -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Ready to slice" -#~ msgstr "切片已準備就緒" +#~ msgctxt "@label:table_header" +#~ msgid "Build Plate" +#~ msgstr "列印平台" -#~ msgctxt "@label:PrintjobStatus %1 is target operation" -#~ msgid "Ready to %1" -#~ msgstr "%1 已準備就緒" +#~ msgctxt "@label" +#~ msgid "Build Plate Adhesion" +#~ msgstr "列印平台附著" -#~ msgctxt "@label:PrintjobStatus" -#~ msgid "Slicing unavailable" -#~ msgstr "切片無法使用" +#~ msgctxt "@action:label" +#~ msgid "Build plate" +#~ msgstr "列印平台" + +#~ msgctxt "@title:tab" +#~ msgid "Bundled materials" +#~ msgstr "捆綁式線材" + +#~ msgctxt "@title:tab" +#~ msgid "Bundled plugins" +#~ msgstr "捆綁式外掛" #~ msgctxt "@info:tooltip" -#~ msgid "Slice current printjob" -#~ 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 "@info:tooltip" -#~ msgid "Cancel slicing process" -#~ msgstr "取消進行中的切片程序" +#~ msgctxt "@label" +#~ msgid "COM service found" +#~ msgstr "找到 COM 服務" -#~ msgctxt "@label:Printjob" -#~ msgid "Prepare" -#~ msgstr "準備" +#~ msgctxt "@label" +#~ msgid "COM starting" +#~ msgstr "COM 啟動中" + +#~ msgctxt "@window:text" +#~ msgid "Camera rendering: " +#~ msgstr "攝影機渲染:" + +#~ msgctxt "@label:status" +#~ msgid "Can't start print" +#~ msgstr "無法開始列印" #~ msgctxt "@label:Printjob" #~ msgid "Cancel" #~ msgstr "取消" #~ msgctxt "@info:tooltip" -#~ msgid "Select the active output device" -#~ msgstr "選擇作用中的輸出裝置" +#~ msgid "Cancel slicing process" +#~ msgstr "取消進行中的切片程序" -#~ msgctxt "@title:menu" -#~ msgid "&View" -#~ msgstr "檢視(&V)" +#~ msgctxt "@option:check" +#~ msgid "Caution message in gcode reader" +#~ msgstr "G-code 讀取器中的警告資訊" -#~ msgctxt "@title:menu" -#~ msgid "&Settings" -#~ msgstr "設定(&S)" +#~ msgctxt "@action:inmenu menubar:edit" +#~ msgid "Center Selected Model" +#~ msgid_plural "Center Selected Models" +#~ msgstr[0] "置中所選模型" -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "&Toolbox" -#~ msgstr "工具箱(&T)" - -#~ msgctxt "@action:button" -#~ msgid "Open File" -#~ msgstr "開啟檔案" - -#~ msgctxt "@tooltip" -#~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" -#~ msgstr "品質參數不適用於目前的耗材和噴頭設定。請變更這些設定以啟用此品質參數" +#~ msgctxt "@info:tooltip" +#~ msgid "Change active post-processing scripts" +#~ msgstr "更改目前啟用的後處理腳本" #~ msgctxt "@label" -#~ msgid "Print Speed" -#~ msgstr "列印速度" +#~ msgid "Change build plate to %1 (This cannot be overridden)." +#~ msgstr "將列印平台改成 %1(無法覆寫)。" + +#~ msgctxt "@item:inmenu" +#~ msgid "Changelog" +#~ msgstr "更新日誌" #~ msgctxt "@label" -#~ msgid "Slower" -#~ msgstr "更慢" - -#~ msgctxt "@label" -#~ msgid "Faster" -#~ msgstr "更快" - -#~ msgctxt "@label" -#~ msgid "Enable gradual" -#~ msgstr "啟用漸層" - -#~ msgctxt "@label" -#~ msgid "Generate Support" -#~ msgstr "產生支撐" - -#~ msgctxt "@label" -#~ msgid "Build Plate Adhesion" -#~ msgstr "列印平台附著" - -#~ msgctxt "@label" -#~ msgid "Need help improving your prints?
    Read the Ultimaker Troubleshooting Guides" -#~ msgstr "需要幫助改善你的列印?閱讀 Ultimaker 故障排除指南" - -#~ msgctxt "@title:window" -#~ msgid "Engine Log" -#~ msgstr "引擎日誌" - -#~ msgctxt "@label" -#~ msgid "Printer type" -#~ msgstr "印表機類型" - -#~ msgctxt "@label" -#~ msgid "Use glue with this material combination" -#~ msgstr "此耗材使用膠水組合" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "檢查相容性" - -#~ msgctxt "@tooltip" -#~ msgid "Click to check the material compatibility on Ultimaker.com." -#~ msgstr "點擊查看 Ultimaker.com 上的耗材相容性。" - -#~ msgctxt "description" -#~ msgid "Shows changes since latest checked version." -#~ msgstr "顯示最新版本更動。" +#~ msgid "Changelog" +#~ msgstr "更新日誌" #~ msgctxt "name" #~ msgid "Changelog" #~ msgstr "更新日誌" -#~ msgctxt "description" -#~ msgid "Create a flattend quality changes profile." -#~ msgstr "建立一份合併品質變化列印參數。" +#~ msgctxt "@label" +#~ msgid "Check compatibility" +#~ msgstr "檢查相容性" -#~ msgctxt "name" -#~ msgid "Profile flatener" -#~ msgstr "列印參數合併器" +#~ msgctxt "@label" +#~ msgid "Checklist" +#~ msgstr "檢查清單" -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license." -#~ msgstr "詢問使用者是否同意我們的授權協議。" +#~ msgctxt "@label" +#~ msgid "Clear build plate" +#~ msgstr "清空列印平台" -#~ msgctxt "name" -#~ msgid "UserAgreement" -#~ msgstr "使用者授權" +#~ msgctxt "@tooltip" +#~ msgid "Click to check the material compatibility on UltiMaker.com." +#~ msgstr "點擊查看 UltiMaker.com 上的耗材相容性。" -#~ msgctxt "@warning:status" -#~ msgid "Please generate G-code before saving." -#~ msgstr "請在儲存前產出 G-code。" +#~ msgctxt "@title:window" +#~ msgid "Closing Cura" +#~ msgstr "關閉 Cura 中" -#~ msgctxt "@action" -#~ msgid "Upgrade Firmware" -#~ msgstr "升級韌體" +#~ msgctxt "@info:title" +#~ msgid "Cloud error" +#~ msgstr "雲端服務錯誤" -#~ msgctxt "@label unknown material" -#~ msgid "Unknown" -#~ msgstr "未知" +#~ msgctxt "@option:curaSolidworksStlQuality" +#~ msgid "Coarse" +#~ msgstr "粗糙" -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "No custom profile to import in file {0}" -#~ msgstr "檔案 {0} 內無自訂參數可匯入" +#~ msgctxt "@option:curaSolidworksStlQuality" +#~ msgid "Coarse (3D-printing)" +#~ msgstr "粗糙 (3D-printing)" -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "This profile {0} contains incorrect data, could not import it." -#~ msgstr "此列印參數 {0} 含有錯誤的資料,無法導入。" +#~ msgctxt "@option:curaSolidworksStlQuality" +#~ msgid "Coarse (SolidWorks)" +#~ msgstr "粗糙 (SolidWorks)" -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." -#~ msgstr "參數檔案 {0} ({1}) 中定義的機器與你目前的機器 ({2}) 不匹配,無法匯入。" +#~ msgctxt "@action:inmenu" +#~ msgid "Collapse All" +#~ msgstr "全部折疊" + +#~ msgctxt "@info:title" +#~ msgid "Collecting Data" +#~ msgstr "收集資料中" + +#~ msgctxt "@label" +#~ msgid "Community Contributions" +#~ msgstr "社群貢獻" + +#~ msgctxt "@label" +#~ msgid "Community Plugins" +#~ msgstr "社群外掛" + +#~ msgctxt "@label" +#~ msgid "Compatibility" +#~ msgstr "相容性" + +#~ msgctxt "@label" +#~ msgid "Completed on: " +#~ msgstr "完成時間:" + +#~ msgctxt "@label" +#~ msgid "Configuration change" +#~ msgstr "設定更動" + +#~ msgid "Configure" +#~ msgstr "設定" + +#~ msgctxt "@action:menu" +#~ msgid "Configure setting visiblity..." +#~ msgstr "設定設定可見性..." + +#~ msgctxt "@action:button" +#~ msgid "Confirm" +#~ msgstr "確定" + +#~ msgctxt "@title:window" +#~ msgid "Confirm uninstall" +#~ msgstr "移除確認" #~ msgctxt "@title:window" #~ msgid "Confirm uninstall " #~ msgstr "移除確認 " -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" +#~ msgctxt "@info:status" +#~ msgid "Connect to UltiMaker Cloud" +#~ msgstr "連接到 UltiMaker Cloud" -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" +#~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated." +#~ msgid "Connect to UltiMaker Cloud" +#~ msgstr "連接到 UltiMaker Cloud" -#~ msgctxt "@title" -#~ msgid "Upgrade Firmware" -#~ msgstr "升級韌體" +#~ msgctxt "@info:status Ultimaker Cloud should not be translated." +#~ msgid "Connect to UltiMaker Cloud" +#~ msgstr "連接到 UltiMaker Cloud" -#~ msgctxt "@action:button" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "使用 Doodle3D 無線網路盒列印" +#~ msgctxt "@info:tooltip" +#~ msgid "Connect to a printer" +#~ msgstr "連接到印表機" -#~ msgctxt "@properties:tooltip" -#~ msgid "Print with Doodle3D WiFi-Box" -#~ msgstr "使用 Doodle3D 無線網路盒列印" +#~ msgctxt "@info:status" +#~ msgid "Connected over the network." +#~ msgstr "已透過網路連接。" + +#~ msgctxt "@info:status" +#~ msgid "Connected over the network. No access to control the printer." +#~ msgstr "已透過網路連接,但沒有印表機的控制權限。" + +#~ msgctxt "@info:status" +#~ msgid "Connected over the network. Please approve the access request on the printer." +#~ msgstr "已透過網路連接。請在印表機上接受存取請求。" + +#~ msgctxt "@info:status" +#~ msgid "Connected via Cloud" +#~ msgstr "透過雲端服務連接" + +#~ msgctxt "@info:status" +#~ msgid "Connected!" +#~ msgstr "已連線!" #~ msgctxt "@info:status" #~ msgid "Connecting to Doodle3D Connect" #~ msgstr "正在連接 Doodle3D Connect" -#~ msgctxt "@info:status" -#~ msgid "Sending data to Doodle3D Connect" -#~ msgstr "正在向 Doodle3D Connect 發送資料" +#~ msgctxt "@info:title" +#~ msgid "Connection Status" +#~ msgstr "連線狀態" -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -#~ msgstr "無法向 Doodle3D Connect 發送資料。請確認是否有另一項列印作業正在進行?" +#~ msgctxt "@info:title" +#~ msgid "Connection status" +#~ msgstr "連線狀態" -#~ msgctxt "@info:status" -#~ msgid "Storing data on Doodle3D Connect" -#~ msgstr "正在儲存資料到 Doodle3D Connect" +#~ msgctxt "@label" +#~ msgid "Connection:" +#~ msgstr "連線:" -#~ msgctxt "@info:status" -#~ msgid "File sent to Doodle3D Connect" -#~ msgstr "檔案已被傳送到 Doodle3D Connect" +#~ msgctxt "@label" +#~ msgid "Contact" +#~ msgstr "聯繫" #~ msgctxt "@action:button" -#~ msgid "Open Connect..." -#~ msgstr "開啟連線..." +#~ msgid "Continue" +#~ msgstr "繼續" -#~ msgctxt "@info:tooltip" -#~ msgid "Open the Doodle3D Connect web interface" -#~ msgstr "開啟 Doodle3D Connect 的網路介面" +#~ msgctxt "@title:window" +#~ msgid "Convert Image..." +#~ msgstr "轉換圖片..." -#~ msgctxt "@item:inlistbox" -#~ msgid "Blender file" -#~ msgstr "Blender 檔案" +#~ msgctxt "@label" +#~ msgid "Cost specification" +#~ msgstr "成本明細" + +#~ msgctxt "@info" +#~ msgid "Could not connect to the Cura Package database. Please check your connection." +#~ msgstr "無法連上 Cura 套件資料庫。請檢查你的網路連線。" + +#~ msgctxt "@info:status" +#~ msgid "Could not export print job." +#~ msgstr "雲端服務未匯出列印作業。" #~ msgctxt "@info:status" #~ msgid "" @@ -8636,216 +7603,85 @@ msgstr "透視檢視" #~ "無法使用 \"{}\" 品質導出!\n" #~ "覆蓋回 \"{}\"。" -#~ msgctxt "@label" -#~ msgid "Contact" -#~ msgstr "聯繫" +#~ msgctxt "@info:status" +#~ msgid "Could not find a quality type {0} for the current configuration." +#~ msgstr "無法為目前設定找到品質類型 {0}。" -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." -#~ msgstr "這台印表機未設定成管理一組 Ultimaker 3 印表機的主機。" - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -#~ msgstr "這台印表機是 %1 台 Ultimaker 3 印表機群組的主機。" - -#~ msgctxt "@label: arg 1 is group name" -#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "%1 未設定成管理一組連線的 Ultimaker 3 印表機的主機" - -#~ msgctxt "@label link to connect manager" -#~ msgid "Add/Remove printers" -#~ msgstr "新增/移除印表機" - -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs page with your default web browser." -#~ msgstr "使用預設瀏覽器開啟列印作業頁面。" +#~ msgctxt "@info" +#~ msgid "Could not find firmware required for the printer at %s." +#~ msgstr "在 %s 無法找到印表機所需的韌體。" #~ msgctxt "@action:button" -#~ msgid "View print jobs" -#~ msgstr "檢視列印作業" - -#~ msgctxt "@label:status" -#~ msgid "Preparing to print" -#~ msgstr "準備列印中" - -#~ msgctxt "@label:status" -#~ msgid "Available" -#~ msgstr "可用" - -#~ msgctxt "@label:status" -#~ msgid "Lost connection with the printer" -#~ msgstr "與印表機失去連線" - -#~ msgctxt "@label:status" -#~ msgid "Unknown" -#~ msgstr "未知" - -#~ msgctxt "@label:status" -#~ msgid "Disabled" -#~ msgstr "已關閉" - -#~ msgctxt "@label:status" -#~ msgid "Reserved" -#~ msgstr "保留" +#~ msgid "Create" +#~ msgstr "建立" #~ msgctxt "@label" -#~ msgid "Preparing to print" -#~ msgstr "準備列印中" +#~ msgid "Create" +#~ msgstr "建立" -#~ msgctxt "@label:status" -#~ msgid "Print aborted" -#~ msgstr "列印已取消" +#~ msgctxt "description" +#~ msgid "Create a flattend quality changes profile." +#~ msgstr "建立一份合併品質變化列印參數。" -#~ msgctxt "@label" -#~ msgid "Not accepting print jobs" -#~ msgstr "不接受列印作業" +#~ msgctxt "description" +#~ msgid "Create a flattened quality changes profile." +#~ msgstr "建立一個撫平的品質修改參數。" -#~ msgctxt "@label" -#~ msgid "Finishes at: " -#~ msgstr "完成時間:" +#~ msgctxt "@button" +#~ msgid "Create account" +#~ msgstr "建立帳號" -#~ msgctxt "@label" -#~ msgid "Clear build plate" -#~ msgstr "清空列印平台" +#~ msgctxt "@button" +#~ msgid "Create an account" +#~ msgstr "建立帳號" -#~ msgctxt "@label" -#~ msgid "Waiting for configuration change" -#~ msgstr "等待設定更動" +#~ msgctxt "@action:ComboBox option" +#~ msgid "Create new" +#~ msgstr "新建" + +#~ msgctxt "@title:window" +#~ msgid "Cura" +#~ msgstr "Cura" + +#~ msgctxt "@item:inmenu" +#~ msgid "Cura Settings Guide" +#~ msgstr "Cura 設定指南" #~ msgctxt "@title" -#~ msgid "Print jobs" -#~ msgstr "列印作業" +#~ msgid "Cura Settings Guide" +#~ msgstr "Cura 設定指南" -#~ msgctxt "@label:title" -#~ msgid "Printers" -#~ msgstr "印表機" +#~ msgctxt "@title:window" +#~ msgid "Cura SolidWorks Plugin Configuration" +#~ msgstr "Cura SolidWorks 外掛設定" -#~ msgctxt "@action:button" -#~ msgid "View printers" -#~ msgstr "檢視印表機" +#~ msgctxt "@info" +#~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences." +#~ msgstr "Cura 收集匿名切片統計資料。你可以在偏好設定中關閉此選項。" -#~ msgctxt "@label:" -#~ msgid "Pause" -#~ msgstr "暫停" - -#~ msgctxt "@label:" -#~ msgid "Resume" -#~ msgstr "繼續" - -#~ msgctxt "@label:" -#~ msgid "Abort Print" -#~ msgstr "中斷列印" - -#~ msgctxt "@option:openProject" -#~ msgid "Always ask" -#~ msgstr "總是詢問" - -#~ msgctxt "@label" -#~ msgid "Override Profile" -#~ msgstr "覆寫列印參數" - -#~ msgctxt "@info:tooltip" -#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -#~ msgstr "新載入的模型要擺放在列印平台上嗎?必需與多列印平台功能一起使用(實驗功能)" - -#~ msgctxt "@option:check" -#~ msgid "Do not arrange objects on load" -#~ msgstr "載入時不要擺放物件" - -#~ msgctxt "@action:inmenu menubar:file" -#~ msgid "&Save Selection to File" -#~ msgstr "儲存到檔案(&S)" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &As..." -#~ msgstr "另存為(&A)…" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save &Project..." -#~ msgstr "儲存專案...(&P)" - -# Added after the string freeze. -#~ msgctxt "@label" -#~ msgid "Use adhesion sheet or glue with this material combination" -#~ msgstr "在此耗材組合下使用膠水或是附著墊片" - -#~ msgctxt "description" -#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -#~ msgstr "接受 G-Code 並透過 WiFi 將其發送到 Doodle3D 無線網路盒。" - -#~ msgctxt "name" -#~ msgid "Doodle3D WiFi-Box" -#~ msgstr "Doodle3D 無線網路盒" - -#~ msgctxt "description" -#~ msgid "Provides an edit window for direct script editing." -#~ msgstr "提供一個直接編輯描述檔的編輯視窗。" - -#~ msgctxt "name" -#~ msgid "Live scripting tool" -#~ msgstr "即時描述檔工具" - -#~ msgctxt "description" -#~ msgid "Helps to open Blender files directly in Cura." -#~ msgstr "協助你直接在 Cura 中打開 Blender 檔案。" - -#~ msgctxt "name" -#~ msgid "Blender Integration (experimental)" -#~ msgstr "Blender 整合(實驗功能)" - -#~ msgctxt "@info:title" -#~ msgid "Model Checker Warning" -#~ msgstr "模型檢查器警告" +#~ msgctxt "@info" +#~ msgid "Cura collects anonymized usage statistics." +#~ msgstr "Cura 以匿名方式蒐集使用狀況統計資料。" #~ msgctxt "@info:status" -#~ msgid "" -#~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n" -#~ "Tips that may be useful to improve the print quality:\n" -#~ "1) Use rounded corners.\n" -#~ "2) Turn the fan off (only if there are no tiny details on the model).\n" -#~ "3) Use a different material." -#~ msgstr "" -#~ "由於物件大小和模型所選用的耗材,某些模型可能無法理想地列印:{model_names}。\n" -#~ "可能有助於提高列印品質的訣竅:\n" -#~ "1) 使用圓角。\n" -#~ "2) 關閉風扇(在模型沒有微小細節的情況下)。\n" -#~ "3) 使用不同的耗材。" +#~ msgid "Cura does not accurately display layers when Wire Printing is enabled" +#~ msgstr "當鐵絲網列印(Wire Printing)功能開啟時,Cura 將無法準確地顯示列印層(Layers)" #~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "SolidWorks 在開啟檔案時回報了錯誤。建議在 SolidWorks 內解決這些問題。" +#~ msgid "Cura does not accurately display layers when Wire Printing is enabled." +#~ msgstr "當鐵絲網列印(Wire Printing)功能開啟時,Cura 將無法準確地顯示列印層。" -#~ msgctxt "@info:status" -#~ msgid "" -#~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n" -#~ "\n" -#~ "Thanks!" -#~ msgstr "" -#~ "在你的繪圖中找不到模型。請你再次檢查它的內容並確認裡面有一個零件或組件。\n" -#~ "\n" -#~ "謝謝!" +#~ msgctxt "@text:window" +#~ msgid "Cura sends anonymous data to UltiMaker in order to improve the print quality and user experience. Below is an example of all the data that is sent." +#~ msgstr "Cura 傳送匿名資料給 UltiMaker 以提高列印品質和使用者體驗。以下是傳送資料的例子。" -#~ 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" -#~ "\n" -#~ "Sorry!" -#~ msgstr "" -#~ "在你的繪圖中發現了超過一個以上的零件或組件。我們目前只支援只有正好一個零件或組件的繪圖。\n" -#~ "\n" -#~ "抱歉!" +#~ msgctxt "@title:column" +#~ msgid "Customized" +#~ msgstr "自訂" -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks part file" -#~ msgstr "SolidWorks 零件檔案" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks assembly file" -#~ msgstr "SolidWorks 組件檔案" - -#~ msgctxt "@item:inlistbox" -#~ msgid "SolidWorks drawing file" -#~ msgstr "SolidWorks 繪圖檔案" +#~ msgctxt "@text" +#~ msgid "Data collected by UltiMaker Cura will not contain any personal information." +#~ msgstr "UltiMaker Cura 收集的資料不包含任何個人資訊。" #~ msgctxt "@info:status" #~ msgid "" @@ -8875,395 +7711,335 @@ msgstr "透視檢視" #~ "順頌 時祺\n" #~ " - Thomas Karl Pietrowski" -#~ msgid "Configure" -#~ msgstr "設定" - -#~ msgid "Installation guide for SolidWorks macro" -#~ msgstr "SolidWorks 巨集的安裝指南" - #~ msgctxt "@action:button" -#~ msgid "Disable" -#~ msgstr "關閉" +#~ msgid "Decline" +#~ msgstr "拒絕" -#~ msgctxt "@action:tooltip" -#~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences." -#~ msgstr "不允許 Cura 傳送匿名的使用狀況統計資料。你可以在偏好設定中再次啟用此功能。" - -#~ msgid "Install" -#~ msgstr "安裝" - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory." -#~ msgstr "無法複製 Siemens NX 外掛檔案。請檢查你的 UGII_USER_DIR,它沒有設置到正確的目錄。" - -#~ msgid "Successfully installed Siemens NX Cura plugin." -#~ msgstr "Siemens NX Cura 外掛已成功安裝。" - -#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR." -#~ msgstr "無法複製 Siemens NX 外掛檔案。請檢查你的 UGII_USER_DIR。" - -#~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX." -#~ msgstr "無法安裝 Siemens NX 外掛。無法為 Siemens NX 設定環境變數 UGII_USER_DIR。" - -#~ msgctxt "@info:status" -#~ msgid "Failed to get plugin ID from {0}" -#~ msgstr "無法從 {0} 取得外掛 ID" - -#~ msgctxt "@info:tile" -#~ msgid "Warning" -#~ msgstr "警告" - -#~ msgctxt "@window:title" -#~ msgid "Plugin browser" -#~ msgstr "外掛瀏覽器" +#~ msgctxt "@title:column" +#~ msgid "Default" +#~ msgstr "預設" #~ msgctxt "@label" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks: Export wizard" -#~ msgstr "SolidWorks: 導出精靈" +#~ msgid "Default profiles" +#~ msgstr "預設參數" #~ msgctxt "@action:label" -#~ msgid "Quality:" -#~ msgstr "品質:" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (3D-printing)" -#~ msgstr "精細 (3D-printing)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (3D-printing)" -#~ msgstr "粗糙 (3D-printing)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine (SolidWorks)" -#~ msgstr "精細 (SolidWorks)" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse (SolidWorks)" -#~ msgstr "粗糙 (SolidWorks)" - -#~ msgctxt "@text:window" -#~ msgid "Show this dialog again" -#~ msgstr "再次顯示這個對話框" - -#~ msgctxt "@action:button" -#~ msgid "Continue" -#~ msgstr "繼續" - -#~ msgctxt "@action:button" -#~ msgid "Abort" -#~ msgstr "取消" - -#~ msgctxt "@title:window" -#~ msgid "How to install Cura SolidWorks macro" -#~ msgstr "如何安裝 Cura SolidWorks 巨集" - -#~ msgctxt "@description:label" -#~ msgid "Steps:" -#~ msgstr "步驟:" - -#~ msgctxt "@action:button" -#~ msgid "" -#~ "Open the directory\n" -#~ "with macro and icon" -#~ msgstr "" -#~ "使用巨集和圖示\n" -#~ "開啟目錄" - -#~ msgctxt "@description:label" -#~ msgid "Instructions:" -#~ msgstr "操作說明:" - -#~ msgctxt "@action:playpause" -#~ msgid "Play" -#~ msgstr "播放" - -#~ msgctxt "@action:playpause" -#~ msgid "Pause" -#~ msgstr "暫停" - -#~ msgctxt "@action:button" -#~ msgid "Previous Step" -#~ msgstr "前一步" - -#~ msgctxt "@action:button" -#~ msgid "Done" -#~ msgstr "完成" - -#~ msgctxt "@action:button" -#~ msgid "Next Step" -#~ msgstr "下一步" - -#~ msgctxt "@title:window" -#~ msgid "SolidWorks plugin: Configuration" -#~ msgstr "SolidWorks 外掛:設定" - -#~ msgctxt "@title:tab" -#~ msgid "Conversion settings" -#~ msgstr "轉換設定" - -#~ msgctxt "@label" -#~ msgid "First choice:" -#~ msgstr "第一選擇:" - -#~ msgctxt "@text:menu" -#~ msgid "Latest installed version (Recommended)" -#~ msgstr "最新安裝的版本(建議)" +#~ msgid "Default quality of the exported STL:" +#~ msgstr "預設的匯出 STL 品質:" #~ msgctxt "@text:menu" #~ msgid "Default version" #~ msgstr "預設的版本" -#~ msgctxt "@label" -#~ msgid "Show wizard before opening SolidWorks files" -#~ msgstr "開啟 SolidWorks 檔案時顯示精靈" +#~ msgctxt "@action:inmenu menubar:edit" +#~ msgid "Delete Selected Model" +#~ msgid_plural "Delete Selected Models" +#~ msgstr[0] "刪除所選模型" #~ msgctxt "@label" -#~ msgid "Automatically rotate opened file into normed orientation" -#~ msgstr "自動將開啟的檔案旋轉到正常方向" - -#~ msgctxt "@title:tab" -#~ msgid "Installation(s)" -#~ msgstr "安裝" - -#~ msgctxt "@label" -#~ msgid "COM service found" -#~ msgstr "找到 COM 服務" - -#~ msgctxt "@label" -#~ msgid "Executable found" -#~ msgstr "找到可執行檔案" - -#~ msgctxt "@label" -#~ msgid "COM starting" -#~ msgstr "COM 啟動中" - -#~ msgctxt "@label" -#~ msgid "Revision number" -#~ msgstr "版本號碼" - -#~ msgctxt "@label" -#~ msgid "Functions available" -#~ msgstr "可用功能" - -#~ msgctxt "@label (%1 is object name)" -#~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?" -#~ msgstr "新的耗材直徑設定為 %1 mm,這與目前機器不相容。你想繼續嗎?" - -#~ msgctxt "@action:menu" -#~ msgid "Browse plugins..." -#~ msgstr "瀏覽外掛..." - -#~ msgctxt "@title:menu menubar:toplevel" -#~ msgid "P&lugins" -#~ msgstr "外掛(&l)" - -#~ msgctxt "@window:title" -#~ msgid "Install Plugin" -#~ msgstr "安裝外掛" - -#~ msgctxt "description" -#~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)" -#~ msgstr "提供更改印表機設定(如成形空間體積、噴頭口徑等)的方法" - -#~ msgctxt "description" -#~ msgid "Manages network connections to Ultimaker 3 printers" -#~ msgstr "管理與 Ultimaker 3 印表機的網路連接" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations." -#~ msgstr "讓你可以使用 SolidWorks 開啟某些檔案。此外掛會完成轉換和最佳化的工作。" - -#~ msgctxt "name" -#~ msgid "SolidWorks Integration" -#~ msgstr "SolidWorks 整合" - -#~ msgctxt "description" -#~ msgid "Automatically saves Preferences, Machines and Profiles after changes." -#~ msgstr "偏好設定、機器設定和列印參數修改後自動儲存。" - -#~ msgctxt "name" -#~ msgid "Auto Save" -#~ msgstr "自動儲存" - -#~ msgctxt "description" -#~ msgid "Helps you to install an 'export to Cura' button in Siemens NX." -#~ msgstr "協助你在 Siemens NX 中安裝一個「匯出到 Cura」按鈕。" - -#~ msgctxt "name" -#~ msgid "Siemens NX Integration" -#~ msgstr "Siemens NX 整合" - -#~ msgctxt "description" -#~ msgid "Find, manage and install new plugins." -#~ msgstr "尋找、管理和安裝新外掛。" - -#~ msgctxt "name" -#~ msgid "Plugin Browser" -#~ msgstr "外掛瀏覽器" - -#~ msgctxt "description" -#~ msgid "Ask the user once if he/she agrees with our license" -#~ msgstr "詢問使用者是否同意我們的授權協議" - -#~ msgctxt "description" -#~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)" -#~ msgstr "提供 Ultimaker 印表機專屬功能(如平台調平精靈、選擇升級等)" - -#~ msgctxt "@item:inlistbox" -#~ msgid "GCode File" -#~ msgstr "GCode 檔案" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer is busy or not connected." -#~ msgstr "無法啟動新作業,因為印表機處於忙碌狀態或未連接。" - -#~ msgctxt "@info:title" -#~ msgid "Printer Unavailable" -#~ msgstr "印表機無法使用" - -#~ msgctxt "@info:status" -#~ msgid "This printer does not support USB printing because it uses UltiGCode flavor." -#~ msgstr "此印表機不支援透過 USB 連線列印,因為其使用 UltiGCode 類型的 G-code 檔案。" - -#~ msgctxt "@info:title" -#~ msgid "USB Printing" -#~ msgstr "USB 連線列印" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new job because the printer does not support usb printing." -#~ msgstr "無法啟動新作業,因為該印表機不支援 USB 連線列印。" - -#~ msgctxt "@info" -#~ msgid "Unable to update firmware because there are no printers connected." -#~ msgstr "無法更新韌體,因為沒有連接印表機。" - -#~ msgctxt "@info" -#~ msgid "Could not find firmware required for the printer at %s." -#~ msgstr "在 %s 無法找到印表機所需的韌體。" - -#~ msgctxt "@info:title" -#~ msgid "Printer Firmware" -#~ msgstr "印表機韌體" - -#~ msgctxt "@info:title" -#~ msgid "Connection status" -#~ msgstr "連線狀態" - -#~ msgctxt "@info:title" -#~ msgid "Connection Status" -#~ msgstr "連線狀態" - -#~ msgctxt "@info:status" -#~ msgid "Access request was denied on the printer." -#~ msgstr "存取請求被印表機上拒絕。" - -#~ msgctxt "@info:status" -#~ msgid "Access request failed due to a timeout." -#~ msgstr "存取請求超時失敗。" - -#~ msgctxt "@info:status" -#~ msgid "The connection with the network was lost." -#~ msgstr "網路連接中斷。" - -#~ msgctxt "@info:status" -#~ msgid "The connection with the printer was lost. Check your printer to see if it is connected." -#~ msgstr "與印表機的連接中斷,請檢查印表機是否已連接。" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s." -#~ msgstr "印表機無法啟動新的列印作業,目前的印表機狀態為 %s。" - -#~ msgctxt "@info:title" -#~ msgid "Printer Status" -#~ msgstr "印表機狀態" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}" -#~ msgstr "無法啟動新的列印作業。插槽 {0} 中未載入列印頭。" - -#~ msgctxt "@info:status" -#~ msgid "Unable to start a new print job. No material loaded in slot {0}" -#~ msgstr "無法啟動新的列印作業。插槽 {0} 中未載入耗材。" - -#~ msgctxt "@label" -#~ msgid "Not enough material for spool {0}." -#~ msgstr "線軸 {0} 上沒有足夠的耗材。" +#~ msgid "Dense (50%) infill will give your model an above average strength." +#~ msgstr "密集(50%)填充將使列印模型高於平均的強度。" #~ msgctxt "@label" #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}" #~ msgstr "不同的列印頭(Cura:{0},印表機: 為擠出機 {2} 選擇了 {1})" #~ msgctxt "@label" -#~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer." -#~ msgstr "列印頭 {0} 未正確校準。需要在印表機上執行 XY 校正。" +#~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" +#~ msgstr "擠出機 {extruder_id} 選擇了不同的 PrintCore(Cura:{cura_printcore_name},印表機:{remote_printcore_name})" -#~ msgctxt "@info:status" -#~ msgid "Unable to send data to printer. Is another job still active?" -#~ msgstr "無法向印表機發送資料。請確認是否有另一項列印作業正在進行?" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Print aborted. Please check the printer" -#~ msgstr "列印已中斷。請檢查印表機" - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Pausing print..." -#~ msgstr "暫停列印..." - -#~ msgctxt "@label:MonitorStatus" -#~ msgid "Resuming print..." -#~ msgstr "繼續列印..." - -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "這台印表機未設定成管理一組連線的 Ultimaker 3 印表機的主機。" - -#~ msgctxt "Count is number of printers." -#~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers." -#~ msgstr "這台印表機是 {count} 台連線的 Ultimaker 3 印表機群組的主機。" - -#~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate." -#~ msgstr "{printer_name} 已完成列印 '{job_name}'。請收起列印件並確認清空列印平台。" - -#~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing." -#~ msgstr "{printer_name} 已為了列印 '{job_name}' 保留。請更改印表機設定配合此列印作業,以便開始列印。" - -#~ msgctxt "@info:status" -#~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers." -#~ msgstr "無法傳送新的列印作業:這台印表機尚未設定成管理一組連線的 Ultimaker 3 印表機的主機。" - -#~ msgctxt "@info:status" -#~ msgid "Unable to send print job to group {cluster_name}." -#~ msgstr "無法傳送列印作業到群組 {cluster_name}。" - -#~ msgctxt "@info:status" -#~ msgid "Sent {file_name} to group {cluster_name}." -#~ msgstr "{file_name} 已傳送到群組 {cluster_name}。" +#~ msgctxt "@label" +#~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" +#~ msgstr "擠出機 {2} 選擇了不同的耗材(Cura:{0},印表機:{1})" #~ msgctxt "@action:button" -#~ msgid "Show print jobs" -#~ msgstr "顯示列印作業" +#~ msgid "Disable" +#~ msgstr "關閉" -#~ msgctxt "@info:tooltip" -#~ msgid "Opens the print jobs interface in your browser." -#~ msgstr "使用瀏覽器開啟列印作業介面。" +#~ msgctxt "@label:status" +#~ msgid "Disabled" +#~ msgstr "已關閉" -#~ msgctxt "@label Printer name" -#~ msgid "Unknown" -#~ msgstr "未知" +#~ msgctxt "@action:button" +#~ msgid "Discard" +#~ msgstr "捨棄" -#~ msgctxt "@info:progress" -#~ msgid "Sending {file_name} to group {cluster_name}" -#~ msgstr "傳送 {file_name} 到群組 {cluster_name} 中" +#~ msgctxt "@action:button" +#~ msgid "Dismiss" +#~ msgstr "關閉此通知" + +#~ msgctxt "@tooltip" +#~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." +#~ msgstr "列印頭前端至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。" + +#~ msgctxt "@tooltip" +#~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." +#~ msgstr "列印頭左側至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。" + +#~ msgctxt "@tooltip" +#~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." +#~ msgstr "列印頭後部至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。" + +#~ msgctxt "@tooltip" +#~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." +#~ msgstr "列印頭右側至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。" + +#~ msgctxt "@option:check" +#~ msgid "Do not arrange objects on load" +#~ msgstr "載入時不要擺放物件" + +#~ msgctxt "@action:tooltip" +#~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences." +#~ msgstr "不允許 Cura 傳送匿名的使用狀況統計資料。你可以在偏好設定中再次啟用此功能。" + +#~ msgctxt "@action" +#~ msgid "Don't ask me again for this printer." +#~ msgstr "對此印表機不要再次詢問。" + +#~ msgctxt "@label" +#~ msgid "Don't support overlap with other models" +#~ msgstr "與模型重疊處不建立支撐" + +#~ msgctxt "@action:button" +#~ msgid "Done" +#~ msgstr "完成" + +#~ msgctxt "@label" +#~ msgid "Doodle3D" +#~ msgstr "Doodle3D" + +#~ msgctxt "@title:menu" +#~ msgid "Doodle3D" +#~ msgstr "Doodle3D 列印" + +#~ msgctxt "@title:window" +#~ msgid "Doodle3D Settings" +#~ msgstr "Doodle3D 設定" + +#~ msgctxt "name" +#~ msgid "Doodle3D WiFi-Box" +#~ msgstr "Doodle3D 無線網路盒" + +#~ msgctxt "@action:button" +#~ msgid "Downgrade" +#~ msgstr "降級版本" + +#~ msgctxt "@action:button" +#~ msgid "Download" +#~ msgstr "下載" + +#~ msgctxt "@label" +#~ msgid "Downloads" +#~ msgstr "下載" + +#~ msgctxt "description" +#~ msgid "Dump the contents of all settings to a HTML file." +#~ msgstr "將所有設定內容轉儲至 HTML 檔案。" + +#~ msgctxt "@label" +#~ msgid "Duplicate" +#~ msgstr "複製" + +#~ msgctxt "@label" +#~ msgid "Email" +#~ msgstr "電子郵件" + +#~ msgctxt "@label:material" +#~ msgid "Empty" +#~ msgstr "空的" + +#~ msgctxt "@label" +#~ msgid "Empty infill will leave your model hollow with low strength." +#~ msgstr "無填充將使模型處於低強度且保持空心狀態。" + +#~ msgctxt "@item:inlistbox" +#~ msgid "Enable Scan devices..." +#~ msgstr "啟用掃描設備..." + +#~ msgctxt "@label" +#~ msgid "Enable gradual" +#~ msgstr "啟用漸層" + +#~ msgctxt "@label" +#~ msgid "End G-code" +#~ msgstr "結束 G-code" + +#~ msgctxt "@label" +#~ msgid "End Gcode" +#~ msgstr "結束 Gcode" + +#~ msgctxt "@title:window" +#~ msgid "Engine Log" +#~ msgstr "引擎日誌" + +#~ msgctxt "@alabel" +#~ msgid "Enter the IP address or hostname of your printer on the network." +#~ msgstr "輸入印表機在網路上的 IP 位址或主機名。" + +#~ msgctxt "@label" +#~ msgid "Enter the IP address or hostname of your printer on the network." +#~ msgstr "輸入印表機在網路上的 IP 位址或主機名稱。" #~ msgctxt "@info:status" -#~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself." -#~ msgstr "SolidWorks 在開啟檔案時回報了錯誤。建議在 SolidWorks 內部解決這些問題。" +#~ msgid "Error while starting %s!" +#~ msgstr "啟動 %s 時發生錯誤!" + +#~ msgctxt "@info:status" +#~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" +#~ msgstr "開啟 SolidWorks 檔案時發生錯誤! 請檢查能否在 SolidWorks 中正常開啟檔案而不出現任何問題!" + +#~ msgctxt "@item:inmenu" +#~ msgid "Evaluation" +#~ msgstr "評估" + +#~ msgctxt "@title:groupbox" +#~ msgid "Exception traceback" +#~ msgstr "異常追溯" + +#~ msgctxt "@label" +#~ msgid "Executable found" +#~ msgstr "找到可執行檔案" + +#~ msgctxt "@window:title" +#~ msgid "Existing Connection" +#~ msgstr "目前連線中" + +#~ msgctxt "@action:inmenu" +#~ msgid "Expand All" +#~ msgstr "全部展開" + +#~ msgctxt "@action:inmenu menubar:view" +#~ msgid "Expand/Collapse Sidebar" +#~ msgstr "展開/收合側邊欄" + +#~ msgctxt "@info:title" +#~ msgid "Export Details" +#~ msgstr "匯出細項設定" + +#~ msgctxt "@label:extruder label" +#~ msgid "Extruder" +#~ msgstr "擠出機" + +#~ msgctxt "@label" +#~ msgid "Extruder End G-code" +#~ msgstr "擠出機結束 G-code" + +#~ msgctxt "@label" +#~ msgid "Extruder End Gcode" +#~ msgstr "擠出機結束 Gcode" + +#~ msgctxt "@label" +#~ msgid "Extruder Start G-code" +#~ msgstr "擠出機起始 G-code" + +#~ msgctxt "@label" +#~ msgid "Extruder Start Gcode" +#~ msgstr "擠出機起始 Gcode" + +#~ msgctxt "@label" +#~ msgid "Extruder Temperature: %1/%2°C" +#~ msgstr "列印頭溫度:%1/%2 °C" + +#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR." +#~ msgstr "無法複製 Siemens NX 外掛檔案。請檢查你的 UGII_USER_DIR。" + +#~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory." +#~ msgstr "無法複製 Siemens NX 外掛檔案。請檢查你的 UGII_USER_DIR,它沒有設置到正確的目錄。" + +#~ msgctxt "@info:status" +#~ msgid "Failed to get plugin ID from {0}" +#~ msgstr "無法從 {0} 取得外掛 ID" + +#~ msgctxt "@info:status Don't translate the XML tags or !" +#~ msgid "Failed to import profile from {0}:" +#~ msgstr "從 {0} 匯入列印參數失敗:" + +#~ msgctxt "@info:status Don't translate the XML tags or !" +#~ msgid "Failed to import profile from {0}: {1}" +#~ msgstr "無法從 {0} 匯入列印參數:{1}" + +#~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX." +#~ msgstr "無法安裝 Siemens NX 外掛。無法為 Siemens NX 設定環境變數 UGII_USER_DIR。" + +#~ msgctxt "@label" +#~ msgid "Faster" +#~ msgstr "更快" + +#~ msgctxt "@label" +#~ msgid "Featured" +#~ msgstr "精選" + +#~ msgctxt "@label:listbox" +#~ msgid "Feedrate" +#~ msgstr "進給率" + +#~ msgctxt "@info" +#~ msgid "Fetching packages..." +#~ msgstr "取得套件..." + +#~ msgctxt "@info:status" +#~ msgid "File sent to Doodle3D Connect" +#~ msgstr "檔案已被傳送到 Doodle3D Connect" + +#~ msgctxt "@title:window" +#~ msgid "Find & Update plugins" +#~ msgstr "查找與更新外掛" + +#~ msgctxt "description" +#~ msgid "Find, manage and install new Cura packages." +#~ msgstr "查詢,管理和安裝新的 Cura 套件。" + +#~ msgctxt "description" +#~ msgid "Find, manage and install new plugins." +#~ msgstr "尋找、管理和安裝新外掛。" + +#~ msgctxt "@option:curaSolidworksStlQuality" +#~ msgid "Fine" +#~ msgstr "精細" + +#~ msgctxt "@option:curaSolidworksStlQuality" +#~ msgid "Fine (3D-printing)" +#~ msgstr "精細 (3D-printing)" + +#~ msgctxt "@option:curaSolidworksStlQuality" +#~ msgid "Fine (SolidWorks)" +#~ msgstr "精細 (SolidWorks)" + +#~ msgctxt "@button" +#~ msgid "Finish" +#~ msgstr "完成" + +#~ msgctxt "@label" +#~ msgid "Finishes at: " +#~ msgstr "完成時間:" + +#~ msgctxt "@label" +#~ msgid "First choice:" +#~ msgstr "第一選擇:" + +#~ msgctxt "@item:inmenu" +#~ msgid "Flatten active settings" +#~ 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" +#~ "\n" +#~ "Sorry!" +#~ msgstr "" +#~ "在你的繪圖中發現了超過一個以上的零件或組件。我們目前只支援只有正好一個零件或組件的繪圖。\n" +#~ "\n" +#~ "抱歉!" + +#~ msgctxt "@info:status" +#~ msgid "" +#~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n" +#~ "\n" +#~ "Sorry!" +#~ msgstr "" +#~ "在你的繪圖找到了超過一個的零件或組件。我們目前只支援一個零件或組件的繪圖。\n" +#~ "\n" +#~ "抱歉!" #~ msgctxt "@info:status" #~ msgid "" @@ -9277,26 +8053,1629 @@ msgstr "透視檢視" #~ msgctxt "@info:status" #~ msgid "" -#~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n" +#~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n" #~ "\n" -#~ "Sorry!" +#~ "Thanks!" #~ msgstr "" -#~ "在你的繪圖找到了超過一個的零件或組件。我們目前只支援一個零件或組件的繪圖。\n" +#~ "在你的繪圖中找不到模型。請你再次檢查它的內容並確認裡面有一個零件或組件。\n" #~ "\n" -#~ "抱歉!" +#~ "謝謝!" + +#~ msgctxt "@label" +#~ msgid "Functions available" +#~ msgstr "可用功能" + +#~ msgctxt "@tooltip" +#~ msgid "G-code commands to be executed at the very end." +#~ msgstr "結束前最後執行的 G-code 命令。" + +#~ msgctxt "@tooltip" +#~ msgid "G-code commands to be executed at the very start." +#~ msgstr "開始時最先執行的 G-code 命令。" + +#~ msgctxt "@item:inlistbox" +#~ msgid "GCode File" +#~ msgstr "GCode 檔案" + +#~ msgctxt "name" +#~ msgid "GCode Profile Reader" +#~ msgstr "G-code 列印參數讀取器" + +#~ msgctxt "name" +#~ msgid "GCode Writer" +#~ msgstr "GCode 寫入器" + +#~ msgctxt "@label" +#~ msgid "GCode generator" +#~ msgstr "GCode 產生器" + +#~ msgctxt "@label" +#~ msgid "Gantry height" +#~ msgstr "龍門高度" + +#~ msgctxt "@tooltip" +#~ msgid "Gcode commands to be executed at the very end." +#~ msgstr "將在結束時執行的 Gcode 命令。" + +#~ msgctxt "@tooltip" +#~ msgid "Gcode commands to be executed at the very start." +#~ msgstr "將在開始時執行的 Gcode 命令。" + +#~ msgctxt "@label" +#~ msgid "Gcode flavor" +#~ msgstr "GCode 類型" + +#~ msgctxt "@label" +#~ msgid "Generate Support" +#~ msgstr "產生支撐" + +#~ msgctxt "@label" +#~ msgid "Generic Materials" +#~ msgstr "通用線材" + +#~ msgctxt "@description" +#~ msgid "Get plugins and materials verified by UltiMaker" +#~ msgstr "取得經 UltiMaker 驗証過的外掛和耗材" + +#~ msgctxt "@button" +#~ msgid "Get started" +#~ msgstr "開始" + +#~ msgctxt "description" +#~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations." +#~ msgstr "讓你可以使用 SolidWorks 開啟某些檔案。此外掛會完成轉換和最佳化的工作。" + +#~ msgctxt "description" +#~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura" +#~ msgstr "讓你可以透過 SolidWorks 自身開啟特定檔案。隨後會將這些檔案進行轉換並載入 Cura" + +#~ msgctxt "@label" +#~ msgid "Glass" +#~ msgstr "玻璃" + +#~ msgctxt "@menuitem" +#~ msgid "Global" +#~ msgstr "整體" + +#~ msgctxt "@info:status" +#~ msgid "Global stack is missing." +#~ msgstr "全域堆疊遺失。" + +#~ msgctxt "@label link to connect manager" +#~ msgid "Go to Cura Connect" +#~ msgstr "前往 Cura Connect" + +#~ msgctxt "@info:tooltip" +#~ msgid "Go to Web Marketplace" +#~ msgstr "前往網路市集" + +#~ msgctxt "name" +#~ msgid "God Mode" +#~ msgstr "上帝模式" + +#~ msgctxt "@label" +#~ msgid "Gradual" +#~ msgstr "漸層填充" + +#~ msgctxt "@label" +#~ msgid "Gradual infill" +#~ msgstr "漸近式填充" + +#~ msgctxt "@label" +#~ msgid "Gradual infill will gradually increase the amount of infill towards the top." +#~ msgstr "漸近式填充將隨著列印高度的提升而逐漸加大填充密度。" + +#~ msgctxt "@option:check" +#~ msgid "Heated bed" +#~ msgstr "熱床" + +#~ msgctxt "@label" +#~ msgid "Help us to improve UltiMaker Cura" +#~ msgstr "協助我們改進 UltiMaker Cura" + +#~ msgctxt "description" +#~ msgid "Helps to open Blender files directly in Cura." +#~ msgstr "協助你直接在 Cura 中打開 Blender 檔案。" + +#~ msgctxt "description" +#~ msgid "Helps you to install an 'export to Cura' button in Siemens NX." +#~ msgstr "協助你在 Siemens NX 中安裝一個「匯出到 Cura」按鈕。" + +#~ msgctxt "@label" +#~ msgid "Here you can find a list of Third Party plugins." +#~ msgstr "你可以在這裡找到第三方外掛列表。" + +#~ msgctxt "@label" +#~ msgid "Hi " +#~ msgstr "嗨 " + +#~ msgctxt "@label The argument is a username." +#~ msgid "Hi %1" +#~ msgstr "嗨 %1" + +#~ msgctxt "@label" +#~ msgid "Hotend" +#~ msgstr "熱端" + +#~ msgctxt "@info:tooltip" +#~ msgid "How should the conflict in the machine be resolved?" +#~ msgstr "如何解決機器的設定衝突?" + +#~ msgctxt "@info:tooltip" +#~ msgid "How should the conflict in the material be resolved?" +#~ msgstr "如何解决線材的設定衝突?" + +#~ msgctxt "@info:tooltip" +#~ msgid "How should the conflict in the profile be resolved?" +#~ msgstr "如何解决列印參數中的設定衝突?" + +#~ msgctxt "@title:window" +#~ msgid "How to install Cura SolidWorks macro" +#~ msgstr "如何安裝 Cura SolidWorks 巨集" + +#~ msgctxt "@text:window" +#~ msgid "I don't want to send these data" +#~ msgstr "我不想傳送這些資料" + +#~ msgctxt "@text:window" +#~ msgid "I don't want to send this data" +#~ msgstr "我不想傳送這些資料" + +#~ msgctxt "@window:title" +#~ msgid "Import Profile" +#~ msgstr "匯入列印參數" + +#~ msgctxt "@title:window" +#~ msgid "Import SolidWorks File as STL..." +#~ msgstr "匯入 SolidWorks 檔案為 STL..." + +#~ msgctxt "@info:title" +#~ msgid "Incompatible Material" +#~ msgstr "不相容的耗材" + +#~ msgid "Install" +#~ msgstr "安裝" + +#~ msgctxt "@action:button" +#~ msgid "Install" +#~ msgstr "安裝" + +#~ msgctxt "@window:title" +#~ msgid "Install Plugin" +#~ msgstr "安裝外掛" + +#~ msgid "Installation guide for SolidWorks macro" +#~ msgstr "SolidWorks 巨集的安裝指南" + +#~ msgctxt "@title:tab" +#~ msgid "Installation(s)" +#~ msgstr "安裝" + +#~ msgctxt "@action:button" +#~ msgid "Installed" +#~ msgstr "已安裝" + +#~ msgctxt "@title:tab" +#~ msgid "Installed" +#~ msgstr "已安裝" + +#~ msgctxt "@title:tab" +#~ msgid "Installed materials" +#~ msgstr "已安裝線材" + +#~ msgctxt "@title:tab" +#~ msgid "Installed plugins" +#~ msgstr "已安裝外掛" + +#~ msgctxt "@action:menu" +#~ msgid "Installed plugins..." +#~ msgstr "安裝外掛..." + +#~ msgctxt "@description:label" +#~ msgid "Instructions:" +#~ msgstr "操作說明:" + +#~ msgctxt "@action:button" +#~ msgid "Keep" +#~ msgstr "保留" + +#~ msgctxt "@label" +#~ msgid "Language:" +#~ msgstr "語言:" + +#~ msgctxt "@label" +#~ msgid "Last updated" +#~ msgstr "最後更新時間" + +#~ msgctxt "@text:menu" +#~ msgid "Latest installed version (Recommended)" +#~ msgstr "最新安裝的版本(建議)" + +#~ msgctxt "@label" +#~ msgid "Layer Height" +#~ msgstr "層高" + +#~ msgctxt "@info:title" +#~ msgid "Layer View" +#~ msgstr "分層檢視" + +#~ msgctxt "name" +#~ msgid "Layer View" +#~ msgstr "分層檢視" + +#~ msgctxt "@label:listbox" +#~ msgid "Layer thickness" +#~ msgstr "層厚" + +#~ msgctxt "@item:inlistbox" +#~ msgid "Layers" +#~ msgstr "層" + +#~ msgctxt "@label" +#~ msgid "Light (20%) infill will give your model an average strength." +#~ msgstr "輕度(20%)填充將使列印模型處於中等強度。" + +#~ msgctxt "name" +#~ msgid "Live scripting tool" +#~ msgstr "即時描述檔工具" + +#~ msgctxt "@info:tooltip" +#~ msgid "Load the configuration of the printer into Cura" +#~ msgstr "將印表機設定載入 Cura" + +#~ msgctxt "@info:title" +#~ msgid "Local printers" +#~ msgstr "本機印表機" + +#~ msgctxt "@label:status" +#~ msgid "Lost connection with the printer" +#~ msgstr "與印表機失去連線" + +#~ msgctxt "@label:table_header" +#~ msgid "Machine" +#~ msgstr "機器" + +#~ msgctxt "@title" +#~ msgid "Machine Settings" +#~ msgstr "印表機設定" + +#~ msgctxt "name" +#~ msgid "Machine Settings action" +#~ msgstr "印表機設定操作" + +#~ msgctxt "@text" +#~ msgid "Machine types" +#~ msgstr "機器類型" + +#~ msgctxt "@label link to connect manager" +#~ msgid "Manage printers" +#~ msgstr "管理印表機" + +#~ msgctxt "@label link to connect manager" +#~ msgid "Manage queue" +#~ msgstr "管理隊列" + +#~ msgctxt "description" +#~ msgid "Manages network connections to UltiMaker 3 printers" +#~ msgstr "管理與 UltiMaker 3 印表機的網路連接" + +#~ msgctxt "description" +#~ msgid "Manages network connections to UltiMaker 3 printers." +#~ msgstr "管理與 UltiMaker 3 印表機的網絡連線。" + +#~ msgctxt "@title" +#~ msgid "Marketplace" +#~ msgstr "市集" + +#~ msgctxt "@label" +#~ msgid "Material diameter" +#~ msgstr "耗材直徑" + +#~ msgctxt "@label" +#~ msgid "Material specification" +#~ msgstr "耗材規格" + +#~ msgctxt "@text" +#~ msgid "Material usage" +#~ msgstr "線材用法" + +#~ msgctxt "@text:window" +#~ msgid "Materials" +#~ msgstr "線材" + +#~ msgctxt "@window:title" +#~ msgid "Mismatched configuration" +#~ msgstr "設定不匹配" + +#~ msgctxt "@info:title" +#~ msgid "Model Checker Warning" +#~ msgstr "模型檢查器警告" + +#~ msgctxt "@info:title" +#~ msgid "Model errors" +#~ msgstr "模型錯誤" + +#~ msgid "Modify G-Code" +#~ msgstr "修改 G-Code 檔案" + +#~ msgctxt "@label" +#~ msgid "Modify settings for infill of other models" +#~ msgstr "修改其他模型的填充設定" + +#~ msgctxt "@label" +#~ msgid "Modify settings for overlap with other models" +#~ msgstr "修改與模型重疊處的設定" + +#~ msgctxt "@title:tab" +#~ msgid "Monitor" +#~ msgstr "監控" + +#~ msgctxt "@action:button" +#~ msgid "More info" +#~ msgstr "更多資訊" + +#~ msgctxt "@action:button" +#~ msgid "More information" +#~ msgstr "更多資訊" + +#~ msgctxt "@text" +#~ msgid "More information" +#~ msgstr "更多資訊" + +#~ msgctxt "@action:inmenu menubar:edit" +#~ msgid "Multiply Selected Model" +#~ msgid_plural "Multiply Selected Models" +#~ msgstr[0] "複製所選模型" + +#~ msgctxt "@label" +#~ msgid "Need help improving your prints?
    Read the UltiMaker Troubleshooting Guides" +#~ msgstr "需要幫助改善你的列印?閱讀 UltiMaker 故障排除指南" + +#~ msgctxt "@info:title" +#~ msgid "Network enabled printers" +#~ msgstr "網路印表機" + +#~ msgctxt "@info:title The %s gets replaced with the printer name." +#~ msgid "New %s firmware available" +#~ msgstr "有新 %s 韌體可用" + +#~ msgctxt "@info:title" +#~ msgid "New cloud printers found" +#~ msgstr "找到新的雲端印表機" + +#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +#~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." +#~ msgstr "你的 {machine_name} 有新功能可用!建議更新印表機韌體。" + +#~ 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 not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}." +#~ msgstr "可能有適用於你的 {machine_name} 的新功能或錯誤修正!假如尚未使用最新版本,建議更新你印表機的韌體到版本 {latest_version}。" + +#~ msgctxt "@info:message" +#~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers." +#~ msgstr "新找到的印表機已連接到你的帳戶,你可以在已發現的印表機清單中找到它們。" + +#~ msgctxt "@action:button" +#~ msgid "Next Step" +#~ msgstr "下一步" + +#~ msgctxt "@label:extruder label" +#~ msgid "No" +#~ msgstr "否" + +#~ msgctxt "@info:status" +#~ msgid "No Printcore loaded in slot {slot_number}" +#~ msgstr "Slot {slot_number} 中沒有載入 Printcore" + +#~ msgctxt "@" +#~ msgid "No Profile Available" +#~ msgstr "無可用的列印參數" + +#~ msgctxt "@info:status" +#~ msgid "No access to print with this printer. Unable to send print job." +#~ msgstr "無法使用本印表機進行列印,無法發送列印作業。" + +#~ msgctxt "@info:status Don't translate the XML tags or !" +#~ msgid "No custom profile to import in file {0}" +#~ msgstr "檔案 {0} 內無自訂參數可匯入" + +#~ msgctxt "@info" +#~ msgid "No material has been installed." +#~ msgstr "尚未安裝任何線材。" #~ msgctxt "@item:material" #~ msgid "No material loaded" #~ msgstr "未載入耗材" -#~ msgctxt "@item:material" -#~ msgid "Unknown material" -#~ msgstr "未知耗材" +#~ msgctxt "@info:status" +#~ msgid "No material loaded in slot {slot_number}" +#~ msgstr "Slot {slot_number} 中沒有載入耗材" + +#~ msgctxt "@info" +#~ msgid "No plugin has been installed." +#~ msgstr "尚未安裝任何外掛。" + +#~ msgctxt "@label" +#~ msgid "No print selected" +#~ msgstr "沒有選擇任何模型" + +#~ msgctxt "@info:status" +#~ msgid "No printer connected" +#~ msgstr "沒有連接印表機" + +#~ msgctxt "@label" +#~ msgid "Not accepting print jobs" +#~ msgstr "不接受列印作業" + +#~ msgctxt "@label" +#~ msgid "Not available" +#~ msgstr "無法使用" + +#~ msgctxt "@label" +#~ msgid "Not enough material for spool {0}." +#~ msgstr "線軸 {0} 上沒有足夠的耗材。" + +#~ msgctxt "@label" +#~ msgid "Not supported" +#~ msgstr "不支援" + +#~ msgctxt "@label" +#~ msgid "Not yet initialized
    " +#~ msgstr "尚未初始化
    " + +#~ msgctxt "@info:status" +#~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder." +#~ msgstr "因沒有模型符合列印範圍或是被分配到停用的擠出機,無模型可進行切片。請縮放或旋轉模型以符合列印範圍,或是啟用擠出機。" + +#~ msgctxt "@info:status" +#~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." +#~ msgstr "沒有模型可進行切片,因為模型超出了列印範圍。請縮放或旋轉模型, 讓模型可置入列印範圍。" + +#~ msgctxt "@label" +#~ msgid "Nozzle Settings" +#~ msgstr "噴頭設定" + +#~ msgctxt "@text" +#~ msgid "Number of slices" +#~ msgstr "切片次數" + +#~ msgctxt "@action:button" +#~ msgid "Ok" +#~ msgstr "確定" + +#~ msgctxt "@label" +#~ msgid "Olsson Block" +#~ msgstr "Olsson Block" + +#~ msgctxt "@item:inlistbox" +#~ msgid "Open Compressed Triangle Mesh" +#~ msgstr "Open Compressed Triangle Mesh" + +#~ msgctxt "@action:button" +#~ msgid "Open Connect..." +#~ msgstr "開啟連線..." + +#~ msgctxt "@action:button" +#~ msgid "Open Web Page" +#~ msgstr "開啟網頁" + +#~ msgctxt "@info:tooltip" +#~ msgid "Open the Doodle3D Connect web interface" +#~ msgstr "開啟 Doodle3D Connect 的網路介面" + +#~ msgctxt "@action:button" +#~ msgid "" +#~ "Open the directory\n" +#~ "with macro and icon" +#~ msgstr "" +#~ "使用巨集和圖示\n" +#~ "開啟目錄" + +#~ msgctxt "@info:tooltip" +#~ msgid "Opens the print jobs interface in your browser." +#~ msgstr "使用瀏覽器開啟列印作業介面。" + +#~ msgctxt "@info:tooltip" +#~ msgid "Opens the print jobs page with your default web browser." +#~ msgstr "使用預設瀏覽器開啟列印作業頁面。" + +#~ msgctxt "@option:check" +#~ msgid "Origin at center" +#~ msgstr "原點位於中心" + +#~ msgid "Orthogonal" +#~ msgstr "正交" + +#~ msgctxt "@label" +#~ msgid "Override" +#~ msgstr "覆寫" + +#~ msgctxt "@label" +#~ msgid "Override Profile" +#~ msgstr "覆寫列印參數" + +#~ msgctxt "@window:title" +#~ msgid "Override configuration configuration and start print" +#~ msgstr "覆寫設定並開始列印" + +#~ msgctxt "@label" +#~ msgid "Overrides %1 setting." +#~ msgid_plural "Overrides %1 settings." +#~ msgstr[0] "覆寫 %1 設定。" + +#~ msgctxt "@title:menu menubar:toplevel" +#~ msgid "P&lugins" +#~ msgstr "外掛(&l)" + +#~ msgctxt "@label" +#~ msgid "PRINTER GROUP" +#~ msgstr "印表機群組" + +#~ msgctxt "@action:playpause" +#~ msgid "Pause" +#~ msgstr "暫停" + +#~ msgctxt "@label:" +#~ msgid "Pause" +#~ msgstr "暫停" + +#~ msgctxt "@label:status" +#~ msgid "Pausing" +#~ msgstr "暫停中" + +#~ msgctxt "@label:MonitorStatus" +#~ msgid "Pausing print..." +#~ msgstr "暫停列印..." + +#~ msgctxt "@text" +#~ msgid "Place enter your printer's IP address." +#~ msgstr "輸入印表機的 IP 地址。" + +#~ msgctxt "@action:playpause" +#~ msgid "Play" +#~ msgstr "播放" + +#~ msgctxt "@info" +#~ msgid "Please connect your UltiMaker printer to your local network." +#~ msgstr "請將你的 UltiMaker 印表機連接到區域網路。" + +#~ msgctxt "@text" +#~ msgid "" +#~ "Please follow these steps to set up\n" +#~ "Ultimaker Cura. This will only take a few moments." +#~ msgstr "" +#~ "請按照以下步驟進行設定\n" +#~ "Ultimaker Cura。這只需要一點時間。" + +#~ msgctxt "@text" +#~ msgid "Please follow these steps to set up UltiMaker Cura. This will only take a few moments." +#~ msgstr "請依照步驟安裝UltiMaker Cura. 這會需要幾分鐘的時間." + +#~ msgctxt "@warning:status" +#~ msgid "Please generate G-code before saving." +#~ msgstr "請在儲存前產出 G-code。" + +#~ msgctxt "@text" +#~ msgid "Please give your printer a name" +#~ msgstr "請為你的印表機取一個名稱" + +#~ msgctxt "@info:status" +#~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!" +#~ msgstr "請注意,重新載入模型功能無法運作!你必須手動重新開啟 SolidWorks 檔案!" + +#~ msgctxt "@label:PrintjobStatus" +#~ msgid "Please load a 3D model" +#~ msgstr "請載入一個 3D 模型" + +#~ 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." +#~ msgstr "" +#~ "請確認你的印表機有連接:\n" +#~ "- 檢查印表機是否已打開。\n" +#~ "- 檢查印表機是否已連接到網路。" + +#~ msgctxt "@info" +#~ msgid "Please select a network connected printer to monitor." +#~ msgstr "請選擇要監控的網絡連線印表機。" + +#~ msgctxt "@label" +#~ msgid "Please select any upgrades made to this UltiMaker 2." +#~ msgstr "請選擇適用於 UltiMaker 2 的更新檔案。" + +#~ msgctxt "name" +#~ msgid "Plugin Browser" +#~ msgstr "外掛瀏覽器" + +#~ msgctxt "@window:title" +#~ msgid "Plugin browser" +#~ msgstr "外掛瀏覽器" + +#~ msgctxt "@title:tab" +#~ msgid "Plugins" +#~ msgstr "外掛" + +#~ msgctxt "@label" +#~ msgid "Pre-sliced file {0}" +#~ msgstr "預切片檔案 {0}" + +#~ msgctxt "@label" +#~ msgid "Premium" +#~ msgstr "付費會員" + +#~ msgctxt "@label:Printjob" +#~ msgid "Prepare" +#~ msgstr "準備" + +#~ msgctxt "@title:tab" +#~ msgid "Prepare" +#~ msgstr "準備" + +#~ msgctxt "@label:status" +#~ msgid "Preparing" +#~ msgstr "正在準備" + +#~ msgctxt "@label" +#~ msgid "Preparing to print" +#~ msgstr "準備列印中" + +#~ msgctxt "@label:status" +#~ msgid "Preparing to print" +#~ msgstr "準備列印中" + +#~ msgctxt "@action:button" +#~ msgid "Previous" +#~ msgstr "前一個" + +#~ msgctxt "@action:button" +#~ msgid "Previous Step" +#~ msgstr "前一步" + +#~ msgctxt "@title:tab" +#~ msgid "Print" +#~ msgstr "列印" + +#~ msgctxt "@label:table_header" +#~ msgid "Print Core" +#~ msgstr "Print Core" + +#~ msgctxt "@info:title" +#~ msgid "Print Details" +#~ msgstr "列印細項設定" + +#~ msgctxt "name" +#~ msgid "Print Profile Assistant" +#~ msgstr "列印參數設定助手" + +#~ msgctxt "@label:listbox" +#~ msgid "Print Setup" +#~ msgstr "列印設定" + +#~ msgctxt "@label:listbox" +#~ msgid "" +#~ "Print Setup disabled\n" +#~ "G-code files cannot be modified" +#~ msgstr "" +#~ "列印設定已關閉\n" +#~ "G-code 檔案無法被修改" + +#~ msgctxt "@label" +#~ msgid "Print Speed" +#~ msgstr "列印速度" + +#~ msgctxt "@label:status" +#~ msgid "Print aborted" +#~ msgstr "列印已取消" + +#~ msgctxt "@label:MonitorStatus" +#~ msgid "Print aborted. Please check the printer" +#~ msgstr "列印已中斷。請檢查印表機" + +#~ msgctxt "@label" +#~ msgid "Print experiment" +#~ msgstr "列印實驗" + +#~ msgctxt "@info:status" +#~ msgid "Print finished" +#~ msgstr "列印已完成" + +#~ msgctxt "@title" +#~ msgid "Print jobs" +#~ msgstr "列印作業" + +#~ msgctxt "@text" +#~ msgid "Print settings" +#~ msgstr "列印設定" + +#~ msgctxt "@label shown when we load a Gcode file" +#~ msgid "Print setup disabled. G code file can not be modified." +#~ msgstr "列印設定已被停用。 G-code 檔案無法修改。" + +#~ msgctxt "@description" +#~ msgid "Print time" +#~ msgstr "列印時間" + +#~ msgctxt "@title:window" +#~ msgid "Print to: %1" +#~ msgstr "列印至:%1" + +#~ msgctxt "@action:button" +#~ msgid "Print via Cloud" +#~ msgstr "透過雲端服務列印" + +#~ msgctxt "@properties:tooltip" +#~ msgid "Print via Cloud" +#~ msgstr "透過雲端服務列印" + +#~ msgctxt "@action:button" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "使用 Doodle3D 無線網路盒列印" + +#~ msgctxt "@properties:tooltip" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "使用 Doodle3D 無線網路盒列印" + +#~ msgctxt "@label" +#~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer." +#~ msgstr "列印頭 {0} 未正確校準。需要在印表機上執行 XY 校正。" + +#~ msgctxt "@action:label" +#~ msgid "Printer" +#~ msgstr "印表機" + +#~ msgctxt "@label" +#~ msgid "Printer" +#~ msgstr "印表機" + +#~ msgctxt "@info:status" +#~ msgid "Printer '{printer_name}' has finished printing '{job_name}'." +#~ msgstr "印表機 '{printer_name}' 已完成列印 '{job_name}'。" + +#~ msgctxt "@info:title" +#~ msgid "Printer Firmware" +#~ msgstr "印表機韌體" + +#~ msgctxt "@label" +#~ msgid "Printer Name" +#~ msgstr "印表機名稱" + +#~ msgctxt "@label" +#~ msgid "Printer Name:" +#~ msgstr "印表機名稱:" + +#~ msgctxt "@label" +#~ msgid "Printer Settings" +#~ msgstr "印表機設定" + +#~ msgctxt "@info:title" +#~ msgid "Printer Status" +#~ msgstr "印表機狀態" + +#~ msgctxt "@info:title" +#~ msgid "Printer Unavailable" +#~ msgstr "印表機無法使用" + +#~ msgctxt "@label" +#~ msgid "Printer type" +#~ msgstr "印表機類型" + +#~ msgctxt "@label" +#~ msgid "Printer type:" +#~ msgstr "印表機類型:" + +#~ msgctxt "@action:label %1 is printer name" +#~ msgid "Printer: %1" +#~ msgstr "印表機:%1" + +#~ msgctxt "@label %1 is printer name" +#~ msgid "Printer: %1" +#~ msgstr "印表機:%1" + +#~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name" +#~ msgid "Printer: %1, %2: %3" +#~ msgstr "印表機:%1, %2: %3" + +#~ msgctxt "@label:title" +#~ msgid "Printers" +#~ msgstr "印表機" + +#~ msgctxt "info:status" +#~ msgid "Printers added from Digital Factory:
      {}
    " +#~ msgstr "從 Digital Factory 新增印表機:
      {}
    " + +#~ msgctxt "@label" +#~ msgid "Printhead Settings" +#~ msgstr "列印頭設定" + +#~ msgctxt "@label" +#~ msgid "Printing" +#~ msgstr "列印中" + +#~ msgctxt "@action:label" +#~ msgid "Printing Guidelines" +#~ msgstr "列印指南" + +#~ msgctxt "@item:inlistbox" +#~ msgid "Profile Assistant" +#~ msgstr "參數助手" + +#~ msgctxt "@item:inmenu" +#~ msgid "Profile Assistant" +#~ msgstr "參數助手" + +#~ msgctxt "name" +#~ msgid "Profile Flattener" +#~ msgstr "參數撫平器" + +#~ msgctxt "name" +#~ msgid "Profile flatener" +#~ msgstr "列印參數合併器" + +#~ msgctxt "@info:status" +#~ msgid "Profile has been flattened & activated." +#~ msgstr "列印參數已被合併並啟用。" + +#~ msgctxt "@label" +#~ msgid "Profile:" +#~ msgstr "列印參數:" + +#~ msgctxt "@text:window" +#~ msgid "Profiles" +#~ msgstr "參數" + +#~ msgctxt "@label" +#~ msgid "Protected profiles" +#~ msgstr "受保護的列印參數" + +#~ msgctxt "description" +#~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)" +#~ msgstr "提供更改印表機設定(如成形空間體積、噴頭口徑等)的方法" + +#~ msgctxt "description" +#~ msgid "Provides an edit window for direct script editing." +#~ msgstr "提供一個直接編輯描述檔的編輯視窗。" + +#~ msgctxt "description" +#~ msgid "Provides extra information and explanations about settings in Cura, with images and animations." +#~ msgstr "提供關於 Cura 設定額外的圖片動畫資訊和說明。" + +#~ msgctxt "description" +#~ msgid "Provides machine actions for UltiMaker machines (such as bed leveling wizard, selecting upgrades, etc)" +#~ msgstr "提供 UltiMaker 印表機專屬功能(如平台調平精靈、選擇升級等)" + +#~ msgctxt "description" +#~ msgid "Provides support for writing X3G files" +#~ msgstr "提供寫入 X3G 檔案的支援" + +#~ msgctxt "description" +#~ msgid "Provides the Layer view." +#~ msgstr "提供分層檢視。" + +#~ msgctxt "description" +#~ msgid "Provides the Simulation view." +#~ msgstr "提供模擬檢視。" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Python Error tracking library" +#~ msgstr "Python 錯誤追蹤函式庫" + +#~ msgctxt "@Label" +#~ msgid "Python HTTP library" +#~ msgstr "Python HTTP 函式庫" + +#~ msgctxt "@label" +#~ msgid "Python extensions for Microsoft Windows" +#~ msgstr "Python擴充(windows)" + +#~ msgctxt "@action:label" +#~ msgid "Quality" +#~ msgstr "品質" + +#~ msgctxt "@label:table_header" +#~ msgid "Quality" +#~ msgstr "品質" + +#~ msgctxt "@info:tooltip" +#~ msgid "Quality of the Exported STL" +#~ msgstr "匯出 STL 的品質" + +#~ msgctxt "@action:label" +#~ msgid "Quality:" +#~ msgstr "品質:" + +#~ msgctxt "@info:button" +#~ msgid "Quit Cura" +#~ msgstr "結束 Cura" + +#~ msgctxt "@info:tooltip" +#~ msgid "Re-send the access request" +#~ msgstr "重新發送存取請求" + +#~ msgctxt "description" +#~ msgid "Reads SVG files as toolpaths, for debugging printer movements." +#~ msgstr "讀取 SVG 檔案做為工具路徑,用於印表機移動的除錯。" + +#~ msgctxt "@label:PrintjobStatus %1 is target operation" +#~ msgid "Ready to %1" +#~ msgstr "%1 已準備就緒" + +#~ msgctxt "@label:PrintjobStatus" +#~ msgid "Ready to slice" +#~ msgstr "切片已準備就緒" + +#~ msgctxt "@action:button" +#~ msgid "Request Access" +#~ msgstr "請求存取" + +#~ msgctxt "@label:status" +#~ msgid "Reserved" +#~ msgstr "保留" + +#~ msgctxt "@label:" +#~ msgid "Resume" +#~ msgstr "繼續" + +#~ msgctxt "@label:status" +#~ msgid "Resuming" +#~ msgstr "繼續" + +#~ msgctxt "@label:MonitorStatus" +#~ msgid "Resuming print..." +#~ msgstr "繼續列印..." + +#~ msgctxt "@action:button" +#~ msgid "Retry" +#~ msgstr "重試" + +#~ msgctxt "@action" +#~ msgid "Review your connection" +#~ msgstr "檢查您的連線" + +#~ msgctxt "@label" +#~ msgid "Revision number" +#~ msgstr "版本號碼" + +#~ msgctxt "@Label" +#~ msgid "Root Certificates for validating SSL trustworthiness" +#~ msgstr "驗證 SSL 可信度用的根憑證" + +#~ msgctxt "name" +#~ msgid "SVG Toolpath Reader" +#~ msgstr "SVG 工具路徑讀取器" + +#~ msgctxt "@label" +#~ msgid "SVG icons" +#~ msgstr "SVG 圖標" + +#~ msgctxt "@action:label" +#~ msgid "Safety Data Sheet" +#~ msgstr "安全資料表" + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &As..." +#~ msgstr "另存為(&A)…" + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &Project..." +#~ msgstr "儲存專案...(&P)" + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save project" +#~ msgstr "儲存專案" + +#~ msgctxt "@label" +#~ msgid "Search materials" +#~ msgstr "搜尋線材" + +#~ msgctxt "@label:textbox" +#~ msgid "Search..." +#~ msgstr "搜尋..." + +#~ msgctxt "@action:tooltip" +#~ msgid "See more information on what data Cura sends." +#~ msgstr "檢視更多關於 Cura 傳送資料的資訊。" + +#~ msgctxt "@option:check" +#~ msgid "See only current build plate" +#~ msgstr "只顯示目前的列印平台" + +#~ msgctxt "@label" +#~ msgid "See the material compatibility chart" +#~ msgstr "請參閱耗材相容性圖表" + +#~ msgctxt "@title" +#~ msgid "Select Printer Upgrades" +#~ msgstr "選擇印表機更新檔案" + +#~ msgctxt "@info:tooltip" +#~ msgid "Select the active output device" +#~ msgstr "選擇作用中的輸出裝置" + +#~ msgctxt "@title:tab" +#~ msgid "" +#~ "Select the printer you want to use from the list below.\n" +#~ "\n" +#~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog." +#~ msgstr "" +#~ "從下面的清單中選擇要使用的印表機。\n" +#~ "\n" +#~ "假如你的印表機不在清單上,選擇“Custom”類別中的“Custom FFF Printer”,並在下一個對話窗中調整設定以符合你的印表機。" + +#~ msgctxt "@label" +#~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." +#~ msgstr "選擇用於支撐的擠出機。該擠出機將在模型之下建立支撐結構,以防止模型下垂或在空中列印。" + +#~ msgctxt "@info:tooltip" +#~ msgid "Send access request to the printer" +#~ msgstr "向印表機發送存取請求" + +#~ msgctxt "@info:status" +#~ msgid "Send and monitor print jobs from anywhere using your UltiMaker account." +#~ msgstr "利用你的 UltiMaker 帳號在任何地方傳送和監控列印作業。" + +#~ msgctxt "@info:progress" +#~ msgid "Sending {file_name} to group {cluster_name}" +#~ msgstr "傳送 {file_name} 到群組 {cluster_name} 中" + +#~ msgctxt "@info:title" +#~ msgid "Sending Data" +#~ msgstr "發送資料中" + +#~ msgctxt "@info:status" +#~ msgid "Sending data to Doodle3D Connect" +#~ msgstr "正在向 Doodle3D Connect 發送資料" + +#~ msgctxt "@info:status" +#~ msgid "Sending data to printer" +#~ msgstr "正在向印表機發送資料" + +#~ msgctxt "@info:status" +#~ msgid "Sending data to remote cluster" +#~ msgstr "正在傳送資料到遠端叢集" + +#~ msgctxt "@info:status" +#~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." +#~ msgstr "前一列印作業傳送中,暫停傳送新列印作業。" + +#~ msgctxt "@info:status" +#~ msgid "Sent {file_name} to group {cluster_name}." +#~ msgstr "{file_name} 已傳送到群組 {cluster_name}。" + +#~ msgctxt "name" +#~ msgid "Settings Guide" +#~ msgstr "設定指南" + +#~ msgctxt "@info:generic" +#~ msgid "Settings have been changed to match the current availability of extruders: [%s]" +#~ msgstr "設定已改為與目前擠出機性能相匹配:[%s]" + +#~ msgctxt "@label" +#~ msgid "Shared Heater" +#~ msgstr "共用加熱器" + +#~ msgctxt "@info:tooltip" +#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" +#~ msgstr "新載入的模型要擺放在列印平台上嗎?必需與多列印平台功能一起使用(實驗功能)" + +#~ msgctxt "@action:inmenu" +#~ msgid "Show All Settings" +#~ msgstr "顯示所有設定" + +#~ msgctxt "@item:inmenu" +#~ msgid "Show Changelog" +#~ msgstr "顯示更新日誌" + +#~ msgctxt "@action:inmenu menubar:help" +#~ msgid "Show Engine &Log..." +#~ msgstr "顯示切片引擎日誌(&L)..." + +#~ msgctxt "@label" +#~ msgid "Show Helpers" +#~ msgstr "顯示輔助結構" + +#~ msgctxt "@label" +#~ msgid "Show Infill" +#~ msgstr "顯示填充" + +#~ msgctxt "@action:inmenu" +#~ msgid "Show Online Troubleshooting Guide" +#~ msgstr "顯示線上故障排除指南" + +#~ msgctxt "@label" +#~ msgid "Show Shell" +#~ msgstr "顯示外殼" + +#~ msgctxt "@label" +#~ msgid "Show Travels" +#~ msgstr "顯示移動軌跡" + +#~ msgctxt "@info:tooltip" +#~ msgid "Show caution message in gcode reader." +#~ msgstr "在 G-code 讀取器中顯示警告資訊。" + +#~ msgctxt "@action:button" +#~ msgid "Show print jobs" +#~ msgstr "顯示列印作業" + +#~ msgctxt "@text:window" +#~ msgid "Show this dialog again" +#~ msgstr "再次顯示這個對話框" + +#~ msgctxt "@label" +#~ msgid "Show wizard before opening SolidWorks files" +#~ msgstr "開啟 SolidWorks 檔案時顯示精靈" + +#~ msgctxt "description" +#~ msgid "Shows changes since latest checked version." +#~ msgstr "顯示最新版本更動。" + +#~ msgctxt "name" +#~ msgid "Siemens NX Integration" +#~ msgstr "Siemens NX 整合" + +#~ msgctxt "@button" +#~ msgid "Sign out" +#~ msgstr "登出" + +#~ msgctxt "@info:title" +#~ msgid "Simulation View" +#~ msgstr "模擬檢視" + +#~ msgctxt "@item:inlistbox" +#~ msgid "Simulation view" +#~ msgstr "模擬檢視" + +#~ msgctxt "@info:tooltip" +#~ msgid "Slice current printjob" +#~ msgstr "對目前列印工作進行切片" + +#~ msgctxt "@label:PrintjobStatus" +#~ msgid "Slicing unavailable" +#~ msgstr "切片無法使用" + +#~ msgctxt "@label" +#~ msgid "Slower" +#~ msgstr "更慢" + +#~ msgctxt "@item:inmenu" +#~ msgid "Solid" +#~ msgstr "實體" + +#~ msgctxt "@label" +#~ msgid "Solid (100%) infill will make your model completely solid." +#~ msgstr "完全(100%)填充將使你的模型處於完全實心狀態。" + +#~ msgctxt "name" +#~ msgid "SolidWorks Integration" +#~ msgstr "SolidWorks 整合" + +#~ msgctxt "@item:inlistbox" +#~ msgid "SolidWorks assembly file" +#~ msgstr "SolidWorks 組件檔案" + +#~ msgctxt "@item:inlistbox" +#~ msgid "SolidWorks drawing file" +#~ msgstr "SolidWorks 繪圖檔案" + +#~ msgctxt "@item:inlistbox" +#~ msgid "SolidWorks part file" +#~ msgstr "SolidWorks 零件檔案" + +#~ msgctxt "@title:window" +#~ msgid "SolidWorks plugin: Configuration" +#~ msgstr "SolidWorks 外掛:設定" + +#~ msgctxt "@info:status" +#~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself." +#~ msgstr "SolidWorks 在開啟檔案時回報了錯誤。建議在 SolidWorks 內解決這些問題。" + +#~ msgctxt "@info:status" +#~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself." +#~ msgstr "SolidWorks 在開啟檔案時回報了錯誤。建議在 SolidWorks 內部解決這些問題。" + +#~ msgctxt "@title:window" +#~ msgid "SolidWorks: Export wizard" +#~ msgstr "SolidWorks: 導出精靈" + +#~ msgctxt "@info:status" +#~ msgid "" +#~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n" +#~ "Tips that may be useful to improve the print quality:\n" +#~ "1) Use rounded corners.\n" +#~ "2) Turn the fan off (only if there are no tiny details on the model).\n" +#~ "3) Use a different material." +#~ msgstr "" +#~ "由於物件大小和模型所選用的耗材,某些模型可能無法理想地列印:{model_names}。\n" +#~ "可能有助於提高列印品質的訣竅:\n" +#~ "1) 使用圓角。\n" +#~ "2) 關閉風扇(在模型沒有微小細節的情況下)。\n" +#~ "3) 使用不同的耗材。" + +#~ msgctxt "@info:tooltip" +#~ msgid "Some things could be problematic in this print. Click to see tips for adjustment." +#~ msgstr "此列印可能會有些問題。點擊查看調整提示。" + +#~ msgctxt "@label" +#~ msgid "Start G-code" +#~ msgstr "起始 G-code" + +#~ msgctxt "@label" +#~ msgid "Start Gcode" +#~ msgstr "起始 Gcode" + +#~ msgctxt "@label" +#~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?" +#~ msgstr "使用不相容的設定啟動列印工作可能會損壞你的 3D 印表機。你確定要覆寫設定並列印 %1 嗎?" + +#~ msgctxt "@label" +#~ msgid "Starting firmware update, this may take a while." +#~ msgstr "正在開始韌體更新。可能需要花費一些時間,請耐心等待。" + +#~ msgctxt "@label" +#~ msgid "State:" +#~ msgstr "狀態:" + +#~ msgctxt "@Label" +#~ msgid "Static type checker for Python" +#~ msgstr "Python 靜態型別檢查器" + +#~ msgctxt "@description:label" +#~ msgid "Steps:" +#~ msgstr "步驟:" + +#~ msgctxt "@info:status" +#~ msgid "Storing data on Doodle3D Connect" +#~ msgstr "正在儲存資料到 Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "Successfully imported profile {0}" +#~ msgstr "已成功匯入列印參數 {0}" + +#~ msgid "Successfully installed Siemens NX Cura plugin." +#~ msgstr "Siemens NX Cura 外掛已成功安裝。" + +#~ msgctxt "@label:table_header" +#~ msgid "Support" +#~ msgstr "支撐" + +#~ msgctxt "@label" +#~ msgid "Support Extruder" +#~ msgstr "支撐用擠出機" + +#~ msgctxt "@label" +#~ msgid "Support library for analysis of complex networks" +#~ msgstr "用於分析複雜網路的函式庫" + +#~ msgctxt "@label" +#~ msgid "Support library for handling planar objects" +#~ msgstr "用於處理平面物件的函式庫" + +#~ msgctxt "@action:button" +#~ msgid "Sync materials with printers" +#~ msgstr "列印機同步線材資料" + +#~ msgctxt "@action:button Sending materials to printers" +#~ msgid "Sync with Printers" +#~ msgstr "同步列印機" + +#~ msgctxt "@window:title" +#~ msgid "Sync with your printer" +#~ msgstr "與你的印表機同步" + +#~ msgctxt "@action:label" +#~ msgid "Technical Data Sheet" +#~ msgstr "技術資料表" + +#~ msgctxt "@label" +#~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." +#~ msgstr "印表機上的 PrintCores 和/或耗材與目前專案中的不同。為獲得最佳列印效果,請使用目前印表機的 PrintCores 和耗材設定進行切片。" + +#~ msgctxt "@label" +#~ msgid "The assigned printer, %1, requires the following configuration change(s):" +#~ msgstr "分配的印表機 %1 需要下列的設定更動:" + +#~ msgctxt "@info:status" +#~ msgid "The connection with the network was lost." +#~ msgstr "網路連接中斷。" + +#~ msgctxt "@info:status" +#~ msgid "The connection with the printer was lost. Check your printer to see if it is connected." +#~ msgstr "與印表機的連接中斷,請檢查印表機是否已連接。" + +#~ msgctxt "@tooltip" +#~ msgid "The current temperature of this extruder." +#~ msgstr "該擠出機的目前溫度。" + +#~ msgctxt "@tooltip" +#~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." +#~ msgstr "噴頭尖端與龍門系統(X 軸和 Y 軸)之間的高度差。用於防止「排隊列印」時之前的列印品與龍門發生碰撞。" + +#~ msgctxt "@info:status Don't translate the XML tags or !" +#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." +#~ msgstr "參數檔案 {0} ({1}) 中定義的機器與你目前的機器 ({2}) 不匹配,無法匯入。" + +#~ msgctxt "@info:status Don't translate the XML tags !" +#~ msgid "The machine defined in profile {0} ({1}) doesn't match with your current machine ({2}), could not import it." +#~ msgstr "列印參數 {0} 內定義的機器({1})與你目前的機器({2})不匹配, 無法匯入。" + +#~ msgctxt "@info:status Don't translate the XML tags or !" +#~ msgid "The machine defined in profile {0} doesn't match with your current machine, could not import it." +#~ msgstr "列印參數 {0} 中的機器設定與你目前的機器不相符,無法導入。" + +#~ msgctxt "@label (%1 is object name)" +#~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?" +#~ msgstr "新的耗材直徑設定為 %1 mm,這與目前機器不相容。你想繼續嗎?" + +#~ msgctxt "@label" +#~ msgid "The next generation 3D printing workflow" +#~ msgstr "下一世代的 3D 列印流程" + +#~ msgctxt "@text" +#~ msgid "The next generation 3D printing workflow" +#~ msgstr "下一世代的 3D 列印流程" + +#~ msgctxt "@tooltip" +#~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." +#~ msgstr "印表機所支援的耗材直徑。實際列印的耗材直徑由耗材和/或列印參數提供。" + +#~ msgctxt "@info:status" +#~ msgid "The print job '{job_name}' was finished." +#~ msgstr "列印作業 '{job_name}' 已完成。" #~ msgctxt "@info:status Has a cancel button next to it." #~ msgid "The selected material diameter causes the material to become incompatible with the current printer." #~ msgstr "所選耗材直徑導致耗材與目前印表機不相容。" +#~ msgctxt "@info:status" +#~ msgid "The selected material is incompatible with the selected machine or configuration." +#~ msgstr "所選耗材與所選機器或設定不相容。" + +#~ msgctxt "@info:status" +#~ msgid "The selected model was too small to load." +#~ msgstr "選擇的模型太小無法載入。" + +#~ msgctxt "@label" +#~ msgid "The value is resolved from per-extruder values " +#~ msgstr "這個數值是由每個擠出機的設定值解析出來的 " + +#~ msgctxt "@info" +#~ msgid "The webcam is not available because you are monitoring a cloud printer." +#~ msgstr "由於你正在監控一台雲端印表機,因此無法使用網路攝影機。" + +#~ msgctxt "@info:tooltip" +#~ msgid "The width in millimeters on the build plate." +#~ msgstr "列印平台寬度,以毫米為單位。" + +#~ msgctxt "@label" +#~ msgid "Theme:" +#~ msgstr "主題:" + +#~ msgctxt "@label" +#~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." +#~ msgstr "印表機的設定或校正與 Cura 之間不匹配。為了獲得最佳列印效果,請使用印表機的 PrintCores 和耗材設定進行切片。" + +#~ msgctxt "@label" +#~ msgid "There is an issue with the configuration of your UltiMaker, which makes it impossible to start the print. Please resolve this issues before continuing." +#~ msgstr "UltiMaker 的設定有問題導致無法開始列印。請在繼續之前解決這個問題。" + +#~ msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')" +#~ msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead" +#~ msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead" +#~ msgstr[0] "沒有擠出機 %2 用的 %1 參數。將使用預設參數" + +#~ msgctxt "@info:description" +#~ msgid "There was an error connecting to the cloud." +#~ msgstr "連接到雲端服務時發生錯誤。" + +#~ msgctxt "@info:backup_status" +#~ msgid "There was an error listing your backups." +#~ msgstr "列出備份時發生錯誤。" + +#~ msgctxt "@info" +#~ msgid "These options are not available because you are monitoring a cloud printer." +#~ msgstr "由於你正在監控一台雲端印表機,因此無法使用這些選項。" + +#~ msgctxt "@label" +#~ msgid "" +#~ "This plugin contains a license.\n" +#~ "You need to accept this license to install this plugin.\n" +#~ "Do you agree with the terms below?" +#~ msgstr "" +#~ "外掛內含一份授權協議。\n" +#~ "你必需同意此份授權協議才能安裝此外掛。\n" +#~ "是否同意下列條款?" + +#~ msgctxt "@info:status" +#~ msgid "This printer does not support USB printing because it uses UltiGCode flavor." +#~ msgstr "此印表機不支援透過 USB 連線列印,因為其使用 UltiGCode 類型的 G-code 檔案。" + +#~ msgctxt "@label" +#~ msgid "This printer is not set up to host a group of UltiMaker 3 printers." +#~ msgstr "這台印表機未設定成管理一組 UltiMaker 3 印表機的主機。" + +#~ msgctxt "@label" +#~ msgid "This printer is not set up to host a group of connected UltiMaker 3 printers" +#~ msgstr "這台印表機未設定成管理一組連線的 UltiMaker 3 印表機的主機" + +#~ msgid "This printer is not set up to host a group of connected UltiMaker 3 printers." +#~ msgstr "這台印表機未設定成管理一組連線的 UltiMaker 3 印表機的主機。" + +#~ msgctxt "@label" +#~ msgid "This printer is the host for a group of %1 UltiMaker 3 printers." +#~ msgstr "這台印表機是 %1 台 UltiMaker 3 印表機群組的主機。" + +#~ msgctxt "@label" +#~ msgid "This printer is the host for a group of %1 connected UltiMaker 3 printers" +#~ msgstr "這台印表機是 %1 台 UltiMaker 3 印表機群組的主機" + +#~ msgctxt "Count is number of printers." +#~ msgid "This printer is the host for a group of {count} connected UltiMaker 3 printers." +#~ msgstr "這台印表機是 {count} 台連線的 UltiMaker 3 印表機群組的主機。" + +#~ msgctxt "@message:text" +#~ msgid "This printer/group is already added to Cura. Please select another printer/group." +#~ msgstr "此印表機/群組已加入 Cura。請選擇另一個印表機/群組。" + +#~ msgctxt "@info:status Don't translate the XML tags or !" +#~ msgid "This profile {0} contains incorrect data, could not import it." +#~ msgstr "此列印參數 {0} 含有錯誤的資料,無法導入。" + +#~ msgctxt "@tooltip" +#~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" +#~ msgstr "品質參數不適用於目前的耗材和噴頭設定。請變更這些設定以啟用此品質參數" + +#~ msgctxt "@tooltip" +#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile" +#~ msgstr "品質參數不適用於目前的耗材和噴頭設定。請修改這些設定以啟用此品質參數" + +#~ msgctxt "@tooltip" +#~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile." +#~ msgstr "品質參數無法用於目前的耗材和噴頭設定。請修改這些設定以啟用此品質參數。" + +#~ 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 "Time specification" +#~ msgstr "時間規格" + +#~ msgctxt "@tooltip" +#~ msgid "Time specification" +#~ msgstr "時間規格" + +#~ msgctxt "@label" +#~ msgid "Tip" +#~ msgstr "提示" + +#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +#~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB." +#~ msgstr "為了確保您的 {machine_name} 配備了最新功能,建議定期更新韌體。 這可以在 {machine_name} 上完成(有連接到網絡時)或透過 USB 完成。" + +#~ 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.\n" +#~ "\n" +#~ "Select your printer from the list below:" +#~ msgstr "" +#~ "要透過網路列印,請確認你的印表機已透過網路線或 WIFI 連接到網路。若你無法讓 Cura 與印表機連線,你仍然可以使用 USB 裝置將 G-code 檔案傳輸到印表機。\n" +#~ "\n" +#~ "從以下清單中選擇你的印表機:" + +#~ msgctxt "@title" +#~ msgid "Toolbox" +#~ msgstr "工具箱" + +#~ msgctxt "name" +#~ msgid "Toolbox" +#~ msgstr "工具箱" + +#~ msgctxt "@label" +#~ msgid "Total:" +#~ msgstr "總共:" + +#~ msgctxt "@info:backup_failed" +#~ msgid "Tried to restore a Cura backup that does not match your current version." +#~ msgstr "嘗試復原版本不符的 Cura 備份。" + +#~ msgctxt "name" +#~ msgid "UM3 Network Connection" +#~ msgstr "UM3 網路連線" + +#~ msgctxt "name" +#~ msgid "UM3 Network Connection (Cluster)" +#~ msgstr "UM3 網路連接(叢集)" + +#~ msgctxt "@info:title" +#~ msgid "USB Printing" +#~ msgstr "USB 連線列印" + +#~ msgctxt "@label" +#~ msgid "UltiMaker 3" +#~ msgstr "UltiMaker 3" + +#~ msgctxt "@label Printer name" +#~ msgid "UltiMaker 3" +#~ msgstr "UltiMaker 3" + +#~ msgctxt "@label" +#~ msgid "UltiMaker 3 Extended" +#~ msgstr "UltiMaker 3 Extended" + +#~ msgctxt "@label Printer name" +#~ msgid "UltiMaker 3 Extended" +#~ msgstr "UltiMaker 3 Extended" + +#~ msgctxt "@label" +#~ msgid "UltiMaker Account" +#~ msgstr "UltiMaker 帳號" + +#~ msgctxt "@label" +#~ msgid "UltiMaker Cloud" +#~ msgstr "UltiMaker Cloud" + +#~ msgctxt "@title:window" +#~ msgid "UltiMaker Cura" +#~ msgstr "UltiMaker Cura" + +#~ msgctxt "@text" +#~ msgid "UltiMaker Cura collects anonymous data to improve print quality and user experience, including:" +#~ msgstr "UltiMaker Cura 搜集匿名資料以提高列印品質和使用者體驗,包含:" + +#~ msgctxt "@button" +#~ msgid "UltiMaker account" +#~ msgstr "UltiMaker 帳號" + +#~ msgctxt "@label:PrintjobStatus" +#~ msgid "Unable to Slice" +#~ msgstr "無法切片" + +#~ msgctxt "@info:status" +#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" +#~ msgstr "無法向 Doodle3D Connect 發送資料。請確認是否有另一項列印作業正在進行?" + +#~ msgctxt "@info:status" +#~ msgid "Unable to send data to printer. Is another job still active?" +#~ msgstr "無法向印表機發送資料。請確認是否有另一項列印作業正在進行?" + +#~ msgctxt "@info:status" +#~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected UltiMaker 3 printers." +#~ msgstr "無法傳送新的列印作業:這台印表機尚未設定成管理一組連線的 UltiMaker 3 印表機的主機。" + +#~ msgctxt "@info:status" +#~ msgid "Unable to send print job to group {cluster_name}." +#~ msgstr "無法傳送列印作業到群組 {cluster_name}。" + +#~ msgctxt "@info:status" +#~ msgid "Unable to start a new job because the printer does not support usb printing." +#~ msgstr "無法啟動新作業,因為該印表機不支援 USB 連線列印。" + +#~ msgctxt "@info:status" +#~ msgid "Unable to start a new job because the printer is busy or not connected." +#~ msgstr "無法啟動新作業,因為印表機處於忙碌狀態或未連接。" + +#~ msgctxt "@info:status" +#~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s." +#~ msgstr "印表機無法啟動新的列印作業,目前的印表機狀態為 %s。" + +#~ msgctxt "@label" +#~ msgid "Unable to start a new print job." +#~ msgstr "無法開始新的列印作業。" + +#~ msgctxt "@info:status" +#~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}" +#~ msgstr "無法啟動新的列印作業。插槽 {0} 中未載入列印頭。" + +#~ msgctxt "@info:status" +#~ msgid "Unable to start a new print job. No material loaded in slot {0}" +#~ msgstr "無法啟動新的列印作業。插槽 {0} 中未載入耗材。" + +#~ msgctxt "@info" +#~ msgid "Unable to update firmware because there are no printers connected." +#~ msgstr "無法更新韌體,因為沒有連接印表機。" + #~ msgctxt "@action:button" #~ msgid "Undo" #~ msgstr "復原" @@ -9305,476 +9684,349 @@ msgstr "透視檢視" #~ msgid "Undo changing the material diameter." #~ msgstr "復原更改耗材直徑。" -#~ msgctxt "@info:status Don't translate the XML tags or !" -#~ msgid "The machine defined in profile {0} doesn't match with your current machine, could not import it." -#~ msgstr "列印參數 {0} 中的機器設定與你目前的機器不相符,無法導入。" +#~ msgctxt "@action:button" +#~ msgid "Uninstall" +#~ msgstr "移除" -#~ msgctxt "@label crash message" +#~ msgctxt "@title:column" +#~ msgid "Unit" +#~ msgstr "單位" + +#~ msgctxt "@label Printer name" +#~ msgid "Unknown" +#~ msgstr "未知" + +#~ msgctxt "@label Printer status" +#~ msgid "Unknown" +#~ msgstr "未知" + +#~ msgctxt "@label unknown material" +#~ msgid "Unknown" +#~ msgstr "未知" + +#~ msgctxt "@label:material" +#~ msgid "Unknown" +#~ msgstr "未知" + +#~ msgctxt "@label:status" +#~ msgid "Unknown" +#~ msgstr "未知" + +#~ msgctxt "@label" +#~ msgid "Unknown error code: %1" +#~ msgstr "未知錯誤代碼: %1" + +#~ msgctxt "@item:material" +#~ msgid "Unknown material" +#~ msgstr "未知耗材" + +#~ msgctxt "@label" +#~ msgid "Unreachable" +#~ msgstr "無法連接" + +#~ msgctxt "@action:ComboBox option" +#~ msgid "Update" +#~ msgstr "更新" + +#~ msgctxt "@action:button" +#~ msgid "Update" +#~ msgstr "更新" + +#~ msgctxt "@action:ComboBox option" +#~ msgid "Update existing" +#~ msgstr "更新已有設定" + +#~ msgctxt "@action:button" +#~ msgid "Update profile with current settings/overrides" +#~ msgstr "使用目前設定 / 覆寫值更新列印參數" + +#~ msgctxt "@action:button" +#~ msgid "Updated" +#~ msgstr "更新完成" + +#~ msgctxt "@action:button" +#~ msgid "Updating" +#~ msgstr "更新中" + +#~ msgctxt "@action:button" +#~ msgid "Upgrade" +#~ msgstr "升級" + +#~ msgctxt "@action" +#~ msgid "Upgrade Firmware" +#~ msgstr "升級韌體" + +#~ msgctxt "@title" +#~ msgid "Upgrade Firmware" +#~ msgstr "升級韌體" + +#~ msgctxt "@info:status" +#~ msgid "Uploading via UltiMaker Cloud" +#~ msgstr "透過 UltiMaker Cloud 上傳" + +# Added after the string freeze. +#~ msgctxt "@label" +#~ msgid "Use adhesion sheet or glue with this material combination" +#~ msgstr "在此耗材組合下使用膠水或是附著墊片" + +#~ msgctxt "@label" +#~ msgid "Use glue with this material combination" +#~ msgstr "此耗材使用膠水組合" + +#~ msgctxt "@info:tooltip" +#~ msgid "Use multi build plate functionality" +#~ msgstr "使用多列印平台功能" + +#~ msgctxt "@option:check" +#~ msgid "Use multi build plate functionality (restart required)" +#~ msgstr "使用多列印平台功能(需重啟軟體)" + +#~ msgctxt "@title:window" +#~ msgid "User Agreement" +#~ msgstr "使用者授權" + +#~ msgctxt "@title:groupbox" +#~ msgid "User description" +#~ msgstr "使用者描述" + +#~ msgctxt "@title:groupbox" +#~ msgid "User description (Note: Developers may not speak your language, please use English if possible)" +#~ msgstr "使用者描述(注意:開發人員可能不會說您的語言,請盡可能使用英語)" + +#~ msgctxt "name" +#~ msgid "UserAgreement" +#~ msgstr "使用者授權" + +#~ msgctxt "@label" +#~ msgid "Version" +#~ msgstr "版本" + +#~ msgctxt "@action:button" +#~ msgid "View Mode" +#~ msgstr "檢視模式" + +#~ msgctxt "@label" +#~ msgid "View Mode: Layers" +#~ msgstr "檢視模式:分層" + +#~ msgctxt "@action:button" +#~ msgid "View in Monitor" +#~ msgstr "使用監控觀看" + +#~ msgctxt "@label link to connect manager" +#~ msgid "View print history" +#~ msgstr "檢視列印歷史記錄" + +#~ msgctxt "@action:button" +#~ msgid "View print jobs" +#~ msgstr "檢視列印作業" + +#~ msgctxt "@action:button" +#~ msgid "View printers" +#~ msgstr "檢視印表機" + +#~ msgctxt "@label" +#~ msgid "View types" +#~ msgstr "檢示類型" + +#~ msgctxt "@action:label" +#~ msgid "Visible settings:" +#~ msgstr "顯示設定:" + +#~ msgctxt "@label:MonitorStatus" +#~ msgid "Waiting for a printjob" +#~ msgstr "等待列印作業" + +#~ msgctxt "@label" +#~ msgid "Waiting for configuration change" +#~ msgstr "等待設定更動" + +#~ msgctxt "@label:MonitorStatus" +#~ msgid "Waiting for someone to clear the build plate" +#~ msgstr "等待清空列印平台" + +#~ msgctxt "@label" +#~ msgid "Waiting for: " +#~ msgstr "等待: " + +#~ msgctxt "@label" +#~ msgid "Waiting for: First available" +#~ msgstr "等待:第一可用" + +#~ msgctxt "@info:tile" +#~ msgid "Warning" +#~ msgstr "警告" + +#~ msgctxt "@info" +#~ msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura." +#~ msgstr "無法從UltiMaker Cura中查看你的雲端列印機." + +#~ msgctxt "@action:label" +#~ msgid "Website" +#~ msgstr "網站" + +#~ msgctxt "@label" +#~ msgid "Website" +#~ msgstr "網站" + +#~ msgctxt "@label" +#~ msgid "Welcome to UltiMaker Cura" +#~ msgstr "歡迎來到 UltiMaker Cura" + +#~ msgctxt "@label" +#~ msgid "What's new in UltiMaker Cura" +#~ msgstr "UltiMaker Cura 新功能" + +#~ msgctxt "@label" +#~ msgid "Will install upon restarting" +#~ msgstr "將在重新啟動時安裝" + +#~ msgctxt "@label" +#~ msgid "Would you like to use your current printer configuration in Cura?" +#~ msgstr "你想在 Cura 中使用目前的印表機設定嗎?" + +#~ msgctxt "description" +#~ msgid "Writes GCode to a file." +#~ msgstr "將 GCode 寫入至檔案。" + +#~ msgctxt "X3g Writer Plugin Description" +#~ msgid "Writes X3g to files" +#~ msgstr "將 X3g 寫入檔案" + +#~ msgctxt "@item:inlistbox" +#~ msgid "X-Ray" +#~ msgstr "透視" + +#~ msgctxt "X3G Writer File Description" +#~ msgid "X3G File" +#~ msgstr "X3G 檔案" + +#~ msgctxt "name" +#~ msgid "X3G Writer" +#~ msgstr "X3G 寫入器" + +#~ msgctxt "name" +#~ msgid "X3GWriter" +#~ msgstr "X3G 寫入器" + +#~ msgctxt "X3g Writer File Description" +#~ msgid "X3g File" +#~ msgstr "X3g 檔案" + +#~ msgctxt "@label:extruder label" +#~ msgid "Yes" +#~ msgstr "是" + +#~ msgctxt "@label" #~ msgid "" -#~ "

    A fatal error has occurred. 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" -#~ " " +#~ "You are about to remove all printers from Cura. This action cannot be undone. \n" +#~ "Are you sure you want to continue?" #~ msgstr "" -#~ "

    發生致命錯誤。請將錯誤報告傳送給我們以便修正此問題。

    \n" -#~ "

    請使用\"送出報告\"按鈕自動發送一份問題報告給我們的伺服器

    \n" -#~ " " +#~ "你將從 Cura 移除所有印表機。此動作無法復原。\n" +#~ "你確定要繼續嗎?" + +#~ msgctxt "@label" +#~ msgid "" +#~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n" +#~ "Are you sure you want to continue?" +#~ msgstr "" +#~ "你將從 Cura 移除 {} 印表機。此動作無法復原。\n" +#~ "你確定要繼續嗎?" + +#~ msgctxt "@text:window" +#~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults." +#~ msgstr "你正在移除仍被使用的線材/列印設定。確認後會將下列耗材/列印設定重設為預設值。" + +#~ msgctxt "@info:status" +#~ msgid "You can now send and monitor print jobs from anywhere using your UltiMaker account." +#~ msgstr "現在你可以利用你的 UltiMaker 帳號在任何地方傳送和監控列印作業。" + +#~ msgctxt "@text:window, %1 is a profile name" +#~ msgid "" +#~ "You have customized some profile settings.\n" +#~ "Would you like to Keep these changed settings after switching profiles?\n" +#~ "Alternatively, you can Discard the changes to load the defaults from '%1'." +#~ msgstr "" +#~ "你修改了一些參數設定。\n" +#~ "你要在切換參數後保留這些更動?\n" +#~ "或者你也可以忽略這些更動,從 '%1' 載入預設值。" + +#~ msgctxt "@text:window, %1 is a profile name" +#~ msgid "" +#~ "You have customized some profile settings.\n" +#~ "Would you like to Keep these changed settings after switching profiles?\n" +#~ "Alternatively, you can discard the changes to load the defaults from '%1'." +#~ msgstr "" +#~ "你修改了一些參數設定。\n" +#~ "你要在切換參數後保留這些更動嗎?\n" +#~ "或者你也可以忽略這些更動,從 '%1' 載入預設值。" + +#~ msgctxt "@text:window" +#~ msgid "" +#~ "You have customized some profile settings.\n" +#~ "Would you like to keep or discard those settings?" +#~ msgstr "" +#~ "你已自訂部份列印參數設定。\n" +#~ "你想保留或捨棄這些設定嗎?" + +#~ msgctxt "@tooltip" +#~ msgid "You have modified some profile settings. If you want to change these go to custom mode." +#~ msgstr "你修改過部份列印參數設定。如果你想改變這些設定,請切換到自訂模式。" + +#~ msgctxt "@label" +#~ msgid "You need to install the package before you can rate" +#~ msgstr "你需要先安裝套件才能進行評分" + +#~ msgctxt "@label" +#~ msgid "You need to login first before you can rate" +#~ msgstr "你需要先登入才能進行評分" + +#~ msgctxt "@info" +#~ msgid "You will need to restart Cura before changes in packages have effect." +#~ msgstr "需重新啟動 Cura,套件的更動才能生效。" + +#~ msgctxt "@label" +#~ msgid "You will need to restart the application for these changes to have effect." +#~ msgstr "需重新啟動 Cura,新的設定才能生效。" + +#~ msgctxt "@label" +#~ msgid "Your key to connected 3D printing" +#~ msgstr "連線 3D 列印的金鑰" + +#~ msgctxt "@text" +#~ msgid "Your key to connected 3D printing" +#~ msgstr "連線 3D 列印的金鑰" + +#~ msgctxt "@info:status" +#~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces." +#~ msgstr "模型沒有封閉,標示的區域有缺少或多餘的表面。" + +#~ msgctxt "@label" +#~ msgid "Your rating" +#~ msgstr "你的評分" + +#~ msgctxt "@info:tooltip" +#~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective." +#~ msgstr "正交透視不支援游標縮放功能。" #~ msgctxt "@label" #~ msgid "not yet initialised
    " #~ msgstr "尚未初始化
    " #~ msgctxt "@label" -#~ msgid "Gcode flavor" -#~ msgstr "GCode 類型" +#~ msgid "ratings" +#~ msgstr "評分" -#~ msgctxt "@label" -#~ msgid "Start Gcode" -#~ msgstr "起始 Gcode" +#~ msgctxt "@label:textbox" +#~ msgid "search settings" +#~ msgstr "搜尋設定" -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very start." -#~ msgstr "將在開始時執行的 Gcode 命令。" +#~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate." +#~ msgstr "{printer_name} 已完成列印 '{job_name}'。請收起列印件並確認清空列印平台。" -#~ msgctxt "@label" -#~ msgid "End Gcode" -#~ msgstr "結束 Gcode" +#~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing." +#~ msgstr "{printer_name} 已為了列印 '{job_name}' 保留。請更改印表機設定配合此列印作業,以便開始列印。" -#~ msgctxt "@tooltip" -#~ msgid "Gcode commands to be executed at the very end." -#~ msgstr "將在結束時執行的 Gcode 命令。" - -#~ msgctxt "@label" -#~ msgid "Extruder Start Gcode" -#~ msgstr "擠出機起始 Gcode" - -#~ msgctxt "@label" -#~ msgid "Extruder End Gcode" -#~ msgstr "擠出機結束 Gcode" - -#~ msgctxt "@label" -#~ msgid "Starting firmware update, this may take a while." -#~ msgstr "正在開始韌體更新。可能需要花費一些時間,請耐心等待。" - -#~ msgctxt "@label" -#~ msgid "Unknown error code: %1" -#~ msgstr "未知錯誤代碼: %1" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3" -#~ msgstr "Ultimaker 3" - -#~ msgctxt "@label Printer name" -#~ msgid "Ultimaker 3 Extended" -#~ msgstr "Ultimaker 3 Extended" - -#~ msgctxt "@label Printer status" -#~ msgid "Unknown" -#~ msgstr "未知" - -#~ msgctxt "@title:window" -#~ msgid "Find & Update plugins" -#~ msgstr "查找與更新外掛" - -#~ msgctxt "@label" -#~ msgid "Here you can find a list of Third Party plugins." -#~ msgstr "你可以在這裡找到第三方外掛列表。" - -#~ msgctxt "@action:button" -#~ msgid "Upgrade" -#~ msgstr "升級" - -#~ msgctxt "@action:button" -#~ msgid "Download" -#~ msgstr "下載" - -#~ msgctxt "@info:tooltip" -#~ msgid "Show caution message in gcode reader." -#~ msgstr "在 G-code 讀取器中顯示警告資訊。" - -#~ msgctxt "@option:check" -#~ msgid "Caution message in gcode reader" -#~ msgstr "G-code 讀取器中的警告資訊" - -#~ msgctxt "@window:title" -#~ msgid "Import Profile" -#~ msgstr "匯入列印參數" - -#~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name" -#~ msgid "Printer: %1, %2: %3" -#~ msgstr "印表機:%1, %2: %3" - -#~ msgctxt "@action:label %1 is printer name" -#~ msgid "Printer: %1" -#~ msgstr "印表機:%1" - -#~ msgctxt "@label" -#~ msgid "GCode generator" -#~ msgstr "GCode 產生器" - -#~ msgctxt "@action:menu" -#~ msgid "Configure setting visiblity..." -#~ msgstr "設定設定可見性..." - -#~ msgctxt "@title:menuitem %1 is the automatically selected material" -#~ msgid "Automatic: %1" -#~ msgstr "自動:%1" - -#~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer" -#~ msgid "Automatic: %1" -#~ msgstr "自動: %1" - -#~ msgctxt "@info:status" -#~ msgid "No printer connected" -#~ msgstr "沒有連接印表機" - -#~ msgctxt "@tooltip" -#~ msgid "The current temperature of this extruder." -#~ msgstr "該擠出機的目前溫度。" - -#~ msgctxt "@action:menu" -#~ msgid "Installed plugins..." -#~ msgstr "安裝外掛..." - -#~ msgctxt "@label" -#~ msgid "Support Extruder" -#~ msgstr "支撐用擠出機" - -#~ msgctxt "description" -#~ msgid "Writes GCode to a file." -#~ msgstr "將 GCode 寫入至檔案。" - -#~ msgctxt "name" -#~ msgid "GCode Writer" -#~ msgstr "GCode 寫入器" - -#~ msgctxt "name" -#~ msgid "GCode Profile Reader" -#~ msgstr "G-code 列印參數讀取器" - -#~ msgctxt "@info:status" -#~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" -#~ msgstr "開啟 SolidWorks 檔案時發生錯誤! 請檢查能否在 SolidWorks 中正常開啟檔案而不出現任何問題!" - -#~ msgctxt "@info:status" -#~ msgid "Error while starting %s!" -#~ msgstr "啟動 %s 時發生錯誤!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Simulation view" -#~ msgstr "模擬檢視" - -#~ msgctxt "@info" -#~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences." -#~ msgstr "Cura 收集匿名切片統計資料。你可以在偏好設定中關閉此選項。" - -#~ msgctxt "@action:button" -#~ msgid "Dismiss" -#~ msgstr "關閉此通知" - -#~ msgctxt "@menuitem" -#~ msgid "Global" -#~ msgstr "整體" - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

    A fatal exception has occurred. 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" -#~ "

    請使用「送出報告」按鈕將錯誤報告自動發送到我們的伺服器

    \n" -#~ " " - -#~ msgctxt "@label Cura version" -#~ msgid "Cura version: {version}
    " -#~ msgstr "Cura 版本: {version}
    " - -#~ msgctxt "@label Platform" -#~ msgid "Platform: {platform}
    " -#~ msgstr "平台: {platform}
    " - -#~ msgctxt "@label Qt version" -#~ msgid "Qt version: {qt}
    " -#~ msgstr "Qt 版本: {qt}
    " - -#~ msgctxt "@label PyQt version" -#~ msgid "PyQt version: {pyqt}
    " -#~ msgstr "PyQt 版本: {pyqt}
    " - -#~ msgctxt "@label OpenGL" -#~ msgid "OpenGL: {opengl}
    " -#~ msgstr "OpenGL: {opengl}
    " - -#~ msgctxt "@title:groupbox" -#~ msgid "Exception traceback" -#~ msgstr "異常追溯" - -#~ msgctxt "@label" -#~ msgid "Material diameter" -#~ msgstr "耗材直徑" - -#~ msgctxt "@title:window" -#~ msgid "Cura SolidWorks Plugin Configuration" -#~ msgstr "Cura SolidWorks 外掛設定" - -#~ msgctxt "@action:label" -#~ msgid "Default quality of the exported STL:" -#~ msgstr "預設的匯出 STL 品質:" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always ask" -#~ msgstr "總是詢問" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Fine quality" -#~ msgstr "總是使用精細品質" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Always use Coarse quality" -#~ msgstr "總是使用粗糙品質" - -#~ msgctxt "@title:window" -#~ msgid "Import SolidWorks File as STL..." -#~ msgstr "匯入 SolidWorks 檔案為 STL..." - -#~ msgctxt "@info:tooltip" -#~ msgid "Quality of the Exported STL" -#~ msgstr "匯出 STL 的品質" - -#~ msgctxt "@action:label" -#~ msgid "Quality" -#~ msgstr "品質" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Coarse" -#~ msgstr "粗糙" - -#~ msgctxt "@option:curaSolidworksStlQuality" -#~ msgid "Fine" -#~ msgstr "精細" - -#~ msgctxt "@" -#~ msgid "No Profile Available" -#~ msgstr "無可用的列印參數" - -#~ msgctxt "@label" -#~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders" -#~ msgstr "這個設定由全部的擠出機共享,變更這個設定將改變全部擠出機的設定值" - -#~ msgctxt "@tooltip" -#~ msgid "Time specification
    " -#~ msgstr "時間資訊
    " - -#~ msgctxt "@action:inmenu menubar:view" -#~ msgid "&Reset camera position" -#~ msgstr "重置視角位置" - -#~ msgctxt "@title:menu menubar:file" -#~ msgid "Save project" -#~ msgstr "儲存專案" - -#~ msgctxt "@title:tab" -#~ msgid "Prepare" -#~ msgstr "準備" - -#~ msgctxt "@title:tab" -#~ msgid "Monitor" -#~ msgstr "監控" - -#~ msgctxt "@label" -#~ msgid "Check compatibility" -#~ msgstr "檢查耗材相容性" - -#~ msgctxt "description" -#~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura" -#~ msgstr "讓你可以透過 SolidWorks 自身開啟特定檔案。隨後會將這些檔案進行轉換並載入 Cura" - -#~ msgctxt "@label:status" -#~ msgid "Blocked" -#~ msgstr "暫停" - -#~ msgctxt "@label:status" -#~ msgid "Can't start print" -#~ msgstr "無法開始列印" - -#~ msgctxt "@info:title" -#~ msgid "Print Details" -#~ msgstr "列印細項設定" - -#~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -#~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB." -#~ msgstr "為了確保您的 {machine_name} 配備了最新功能,建議定期更新韌體。 這可以在 {machine_name} 上完成(有連接到網絡時)或透過 USB 完成。" - -#~ msgctxt "@info:title" -#~ msgid "Layer View" -#~ msgstr "分層檢視" - -#~ msgctxt "@menuitem" -#~ msgid "Browse plugins" -#~ msgstr "瀏覽外掛" - -#~ msgctxt "@info:title" -#~ msgid "Export Details" -#~ msgstr "匯出細項設定" - -#~ msgctxt "@label" -#~ msgid "" -#~ "

    A fatal exception has occurred that we could not recover from!

    \n" -#~ "

    Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " -#~ msgstr "" -#~ "

    發生了致命錯誤,我們無法繼續!

    \n" -#~ "

    請利用下方資訊回報錯誤到 http://github.com/Ultimaker/Cura/issues

    \n" -#~ " " - -#~ msgctxt "@action:button" -#~ msgid "Open Web Page" -#~ msgstr "開啟網頁" - -#~ msgctxt "@action:button" -#~ msgid "Ok" -#~ msgstr "確定" - -#~ msgctxt "@label" -#~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers" -#~ msgstr "這台印表機未設定成管理一組連線的 Ultimaker 3 印表機的主機" - -#~ msgctxt "@label" -#~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" -#~ msgstr "這台印表機是 %1 台 Ultimaker 3 印表機群組的主機" - -#~ msgctxt "@label" -#~ msgid "Completed on: " -#~ msgstr "完成時間:" - -#~ msgctxt "@label" -#~ msgid "PRINTER GROUP" -#~ msgstr "印表機群組" - -#~ msgctxt "@description" -#~ msgid "Print time" -#~ msgstr "列印時間" - -#~ msgctxt "@title:window" -#~ msgid "Cura" -#~ msgstr "Cura" - -#~ msgctxt "name" -#~ msgid "UM3 Network Connection (Cluster)" -#~ msgstr "UM3 網路連接(叢集)" - -#~ msgctxt "description" -#~ msgid "Provides the Layer view." -#~ msgstr "提供分層檢視。" - -#~ msgctxt "name" -#~ msgid "Layer View" -#~ msgstr "分層檢視" - -#~ msgctxt "@item:inlistbox" -#~ msgid "X-Ray" -#~ msgstr "透視" - -#~ msgctxt "@label" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D" - -#~ msgctxt "@info:tooltip" -#~ msgid "Print with " -#~ msgstr "使用 " - -#~ msgctxt "@title:menu" -#~ msgid "Doodle3D" -#~ msgstr "Doodle3D 列印" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Enable Scan devices..." -#~ msgstr "啟用掃描設備..." - -#~ msgctxt "@info:status" -#~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!" -#~ msgstr "請注意,重新載入模型功能無法運作!你必須手動重新開啟 SolidWorks 檔案!" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Layers" -#~ msgstr "層" - -#~ msgctxt "@item:inmenu" -#~ msgid "Solid" -#~ msgstr "實體" - -#~ msgctxt "@title:window" -#~ msgid "Doodle3D Settings" -#~ msgstr "Doodle3D 設定" - -#~ msgctxt "@title:window" -#~ msgid "Print to: %1" -#~ msgstr "列印至:%1" - -#~ msgctxt "@label" -#~ msgid "Extruder Temperature: %1/%2°C" -#~ msgstr "列印頭溫度:%1/%2 °C" - -#~ msgctxt "@label" -#~ msgid "Bed Temperature: %1/%2°C" -#~ msgstr "熱床溫度:%1/%2°C" - -#~ msgctxt "@label" -#~ msgid "View Mode: Layers" -#~ msgstr "檢視模式:分層" - -#~ msgctxt "@label" -#~ msgid "Hotend" -#~ msgstr "熱端" - -#~ msgctxt "@action:button" -#~ msgid "View Mode" -#~ msgstr "檢視模式" - -#~ msgctxt "@title:tab" -#~ msgid "Print" -#~ msgstr "列印" - -#~ msgctxt "@label" -#~ msgid "0%" -#~ msgstr "0%" - -#~ msgctxt "@label" -#~ msgid "Empty infill will leave your model hollow with low strength." -#~ msgstr "無填充將使模型處於低強度且保持空心狀態。" - -#~ msgctxt "@label" -#~ msgid "20%" -#~ msgstr "20%" - -#~ msgctxt "@label" -#~ msgid "Light (20%) infill will give your model an average strength." -#~ msgstr "輕度(20%)填充將使列印模型處於中等強度。" - -#~ msgctxt "@label" -#~ msgid "50%" -#~ msgstr "50%" - -#~ msgctxt "@label" -#~ msgid "Dense (50%) infill will give your model an above average strength." -#~ msgstr "密集(50%)填充將使列印模型高於平均的強度。" - -#~ msgctxt "@label" -#~ msgid "100%" -#~ msgstr "100%" - -#~ msgctxt "@label" -#~ msgid "Solid (100%) infill will make your model completely solid." -#~ msgstr "完全(100%)填充將使你的模型處於完全實心狀態。" - -#~ msgctxt "@label" -#~ msgid "Gradual" -#~ msgstr "漸層填充" - -#~ msgctxt "description" -#~ msgid "Provides support for writing X3G files" -#~ msgstr "提供寫入 X3G 檔案的支援" - -#~ msgctxt "name" -#~ msgid "X3G Writer" -#~ msgstr "X3G 寫入器" +#~ msgctxt "@label ({} is printer name)" +#~ msgid "{} will be removed until the next account sync.
    To remove {} permanently, visit Ultimaker Digital Factory.

    Are you sure you want to remove {} temporarily?" +#~ msgstr "直到下次帳號同步前 {} 將被移除。
    要永久移除 {},請前往 Ultimaker Digital Factory

    你確定要暫時移除 {} 嗎?" diff --git a/resources/i18n/zh_TW/fdmextruder.def.json.po b/resources/i18n/zh_TW/fdmextruder.def.json.po index fe6e822417..dc8d990dc4 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: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-08 09:03+0000\n" "PO-Revision-Date: 2022-01-02 19:59+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -17,6 +17,96 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.0\n" +#: fdmextruder.def.json +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "附著" + +#: fdmextruder.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "調整所用耗材的直徑。調整此值與所用耗材的直徑相匹配。" + +#: fdmextruder.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "列印平台附著" + +#: fdmextruder.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直徑" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "從此擠出機切換到其它擠出機時,要執行的結束 G-code。" + +#: fdmextruder.def.json +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "擠出機" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_code label" +msgid "Extruder End G-Code" +msgstr "擠出機結束 Gcode" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_abs label" +msgid "Extruder End Position Absolute" +msgstr "擠出機終點絕對位置" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x label" +msgid "Extruder End Position X" +msgstr "擠出機結束位置 X 座標" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y label" +msgid "Extruder End Position Y" +msgstr "擠出機終點位置 Y 座標" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "擠出機 X 軸座標" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "擠出機 Y 軸起始位置" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "擠出機初始 Z 軸位置" + +#: fdmextruder.def.json +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "擠出機列印冷卻風扇" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_code label" +msgid "Extruder Start G-Code" +msgstr "擠出機起始 G-code" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_abs label" +msgid "Extruder Start Position Absolute" +msgstr "擠出機起點絕對位置" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "擠出機起始位置 X 座標" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "擠出機起始位置 Y 座標" + #: fdmextruder.def.json msgctxt "machine_settings label" msgid "Machine" @@ -28,69 +118,9 @@ msgid "Machine specific settings" msgstr "機器詳細設定" #: fdmextruder.def.json -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "擠出機" - -#: fdmextruder.def.json -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "用於列印的擠出機,在多擠出機情況下適用。" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "噴頭 ID" - -#: fdmextruder.def.json -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\"。" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "噴頭直徑" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "噴頭內徑,在使用非標準噴頭尺寸時需更改此設定。" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x label" -msgid "Nozzle X Offset" -msgstr "噴頭 X 軸偏移量" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "噴頭 X 軸座標偏移。" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y label" -msgid "Nozzle Y Offset" -msgstr "噴頭 Y 軸偏移量" - -#: fdmextruder.def.json -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "噴頭 Y 軸座標偏移。" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code label" -msgid "Extruder Start G-Code" -msgstr "擠出機起始 G-code" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "切換到此擠出機時,要執行的啟動 G-code。" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_abs label" -msgid "Extruder Start 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 "讓擠出機以絕對位置為終點,而不是與前一次位置的相對位置。" #: fdmextruder.def.json msgctxt "machine_extruder_start_pos_abs description" @@ -98,114 +128,9 @@ msgid "Make the extruder starting position absolute rather than relative to the msgstr "讓擠出機以絕對位置做為起點,而不是與前一次位置的相對位置。" #: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "擠出機起始位置 X 座標" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "打開擠出機時起始位置的 X 座標。" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "擠出機起始位置 Y 座標" - -#: fdmextruder.def.json -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "打開擠出機時的起始位置 Y 座標。" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code label" -msgid "Extruder End G-Code" -msgstr "擠出機結束 Gcode" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "從此擠出機切換到其它擠出機時,要執行的結束 G-code。" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_abs label" -msgid "Extruder End Position Absolute" -msgstr "擠出機終點絕對位置" - -#: fdmextruder.def.json -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 "讓擠出機以絕對位置為終點,而不是與前一次位置的相對位置。" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x label" -msgid "Extruder End Position X" -msgstr "擠出機結束位置 X 座標" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "關閉擠出機時的終止位置的 X 座標。" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y label" -msgid "Extruder End Position Y" -msgstr "擠出機終點位置 Y 座標" - -#: fdmextruder.def.json -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "關閉擠出機時的終止位置的 Y 座標。" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "擠出機初始 Z 軸位置" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "列印開始時,噴頭在 Z 軸座標上的起始位置." - -#: fdmextruder.def.json -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "擠出機列印冷卻風扇" - -#: fdmextruder.def.json -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 即可。" - -#: fdmextruder.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "列印平台附著" - -#: fdmextruder.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "附著" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "擠出機 X 軸座標" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "列印開始時,噴頭在 X 軸上初始位置。" - -#: fdmextruder.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "擠出機 Y 軸起始位置" - -#: fdmextruder.def.json -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 "material description" +msgid "Material" +msgstr "線材" #: fdmextruder.def.json msgctxt "material label" @@ -213,24 +138,99 @@ msgid "Material" msgstr "線材" #: fdmextruder.def.json -msgctxt "material description" -msgid "Material" -msgstr "線材" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "噴頭直徑" #: fdmextruder.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "直徑" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "噴頭 ID" #: fdmextruder.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "調整所用耗材的直徑。調整此值與所用耗材的直徑相匹配。" +msgctxt "machine_nozzle_offset_x label" +msgid "Nozzle X Offset" +msgstr "噴頭 X 軸偏移量" -#~ msgctxt "machine_extruder_start_code description" -#~ msgid "Start g-code to execute whenever turning the extruder on." -#~ msgstr "打開擠出機將執行此段 G-code。" +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y label" +msgid "Nozzle Y Offset" +msgstr "噴頭 Y 軸偏移量" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "切換到此擠出機時,要執行的啟動 G-code。" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "列印開始時,噴頭在 X 軸上初始位置。" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "列印開始時,噴頭在 Y 軸座標上初始位置。" + +#: fdmextruder.def.json +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "列印開始時,噴頭在 Z 軸座標上的起始位置." + +#: fdmextruder.def.json +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "用於列印的擠出機,在多擠出機情況下適用。" + +#: fdmextruder.def.json +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "噴頭內徑,在使用非標準噴頭尺寸時需更改此設定。" + +#: fdmextruder.def.json +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\"。" + +#: fdmextruder.def.json +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 即可。" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "關閉擠出機時的終止位置的 X 座標。" + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "噴頭 X 軸座標偏移。" + +#: fdmextruder.def.json +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "打開擠出機時起始位置的 X 座標。" + +#: fdmextruder.def.json +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "關閉擠出機時的終止位置的 Y 座標。" + +#: fdmextruder.def.json +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "噴頭 Y 軸座標偏移。" + +#: fdmextruder.def.json +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_end_code description" #~ msgid "End g-code to execute whenever turning the extruder off." #~ msgstr "在關閉擠出機時,執行結束 G-code。" + +#~ msgctxt "machine_extruder_start_code description" +#~ msgid "Start g-code to execute whenever turning the extruder on." +#~ msgstr "打開擠出機將執行此段 G-code。" diff --git a/resources/i18n/zh_TW/fdmprinter.def.json.po b/resources/i18n/zh_TW/fdmprinter.def.json.po index 7cd52a92dc..81b78576f6 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: 2022-06-21 12:50+0000\n" +"POT-Creation-Date: 2023-03-28 11:57+0000\n" "PO-Revision-Date: 2022-01-02 20:24+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -18,1497 +18,19 @@ msgstr "" "X-Generator: Poedit 3.0\n" #: fdmprinter.def.json -msgctxt "machine_settings label" -msgid "Machine" -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 "與模型邊緣保持的距離。一直燙平至網格的邊緣可能導致列印品出現鋸齒狀邊緣。" #: fdmprinter.def.json -msgctxt "machine_settings description" -msgid "Machine specific settings" -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 "一個用來表示線材在進料器和噴頭腔室之間能被壓縮多少的係數,用來決定線材切換時需要移動多長。" #: fdmprinter.def.json -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "機器類型" - -#: fdmprinter.def.json -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "你的 3D 印表機型號的名稱。" - -#: fdmprinter.def.json -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "顯示印表機型號" - -#: fdmprinter.def.json -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "是否顯示這台印表機在不同的 JSON 檔案中所描述的型號。" - -#: fdmprinter.def.json -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "起始 G-code" - -#: fdmprinter.def.json -msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." -msgstr "" -"開始時最先執行的 G-code 命令 - 使用 \n" -"隔開。" - -#: fdmprinter.def.json -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "結束 G-code" - -#: fdmprinter.def.json -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." -msgstr "" -"結束前最後執行的 G-code 命令 - 使用 \n" -" 隔開。" - -#: fdmprinter.def.json -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "線材 GUID" - -#: fdmprinter.def.json -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "線材的 GUID,此項為自動設定。" - -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "直徑" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "調整所使用線材的直徑。這個數值要等同於所使用線材的直徑。" - -#: fdmprinter.def.json -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "等待列印平台加熱" - -#: fdmprinter.def.json -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 "是否插入一條命令,在開始時等待列印平台達到設定溫度。" - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "等待噴頭加熱" - -#: fdmprinter.def.json -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "是否在開始時等待噴頭達到設定溫度。" - -#: fdmprinter.def.json -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "插入線材溫度" - -#: fdmprinter.def.json -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-code 開始部分插入噴頭溫度命令。當起始 G-code 已包含噴頭溫度命令時,Cura 前端將自動關閉此設定。" - -#: fdmprinter.def.json -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "插入熱床溫度" - -#: fdmprinter.def.json -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 開始部分插入熱床溫度的命令。當起始 G-code 包含熱床溫度命令時,Cura 前端將自動關閉此設定。" - -#: fdmprinter.def.json -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "機器寬度" - -#: fdmprinter.def.json -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "機器可列印區域寬度(X 座標)" - -#: fdmprinter.def.json -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "機器深度" - -#: fdmprinter.def.json -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "機器可列印區域深度(Y 座標)" - -#: fdmprinter.def.json -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "機器高度" - -#: fdmprinter.def.json -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "機器可列印區域高度(Z 座標)" - -#: fdmprinter.def.json -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "列印平台形狀" - -#: fdmprinter.def.json -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "列印平台形狀(不計算不可列印區域)。" - -#: fdmprinter.def.json -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "矩形" - -#: fdmprinter.def.json -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "類圓形" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "列印平台材質" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "印表機上列印平台的材質。" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "玻璃" - -#: fdmprinter.def.json -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "鋁" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "有熱床" - -#: fdmprinter.def.json -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "機器是否有熱床。" - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "具有列印空間溫度穩定性" - -#: fdmprinter.def.json -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "機器是否能夠穩定列印空間溫度。" - -#: fdmprinter.def.json -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "總是寫入啟用工具" - -#: fdmprinter.def.json -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 或是使用 modal tool 命令的韌體做雙擠出機列印時,此功能是必需開啟的。" - -#: fdmprinter.def.json -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "原點是否位於中心" - -#: fdmprinter.def.json -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 座標原點是否位於可列印區域的中心。" - -#: fdmprinter.def.json -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "擠出機數目" - -#: fdmprinter.def.json -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "擠出機組數目。擠出機組是指進料裝置、喉管和噴頭的組合。" - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "已啟用擠出機的數量" - -#: fdmprinter.def.json -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "啟用擠出機的數量;軟體自動設定" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "噴頭外徑" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "噴頭尖端的外徑。" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "噴頭長度" - -#: fdmprinter.def.json -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 "噴頭尖端與列印頭最低部分之間的高度差。" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "噴頭角度" - -#: fdmprinter.def.json -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 "水平面與噴頭尖端上部圓錐形之間的角度。" - -#: fdmprinter.def.json -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "加熱區長度" - -#: fdmprinter.def.json -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 "與噴頭尖端的距離,噴頭產生的熱量在這段距離內傳遞到線材中。" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "啟用噴頭溫度控制" - -#: fdmprinter.def.json -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 外部控制噴頭溫度,關閉此選項。" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "加熱速度" - -#: fdmprinter.def.json -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)。" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "冷卻速度" - -#: fdmprinter.def.json -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)。" - -#: fdmprinter.def.json -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "待機溫度最短時間" - -#: fdmprinter.def.json -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 "擠出機必須保持不活動以便噴頭冷卻的最短時間。擠出機必須停用超過此時間,才可以冷卻到待機溫度。" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "G-code 類型" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "產生 G-code 的類型。" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin(容積)" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -#: fdmprinter.def.json -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -#: fdmprinter.def.json -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "韌體回抽" - -#: fdmprinter.def.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 參數來回抽線材。" - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "擠出機共用加熱器" - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "擠出機共用一個加熱器,而不是每個擠出機都有獨立的加熱器。" - -#: fdmprinter.def.json -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "擠出機共用噴頭" - -#: fdmprinter.def.json -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 "擠出機共用一個噴頭,而不是每個擠出機都有獨立的噴頭。當設置為\"同意\"時,預期\"Printer-start G-code\"已妥善設定擠出機之初始回抽值互相相容(設置為0或其一線材不回抽); 在此種情況下,每個擠出機之初始回抽值已透過機器.擠出機.共用噴頭.初始回抽值等參數描述設定." - -#: fdmprinter.def.json -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "共用噴頭初始回抽" - -#: fdmprinter.def.json -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 G-code\"後,各擠出機將從共用噴頭回抽多少的線材。此數值應等於或大於噴頭的共用管道長度。" - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "禁入區域" - -#: fdmprinter.def.json -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "禁止列印頭進入區域的多邊形清單。" - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "噴頭禁入區域" - -#: fdmprinter.def.json -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "禁止噴頭進入區域的多邊形清單。" - -#: fdmprinter.def.json -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "機器頭和風扇多邊形" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "吊車高度" - -#: fdmprinter.def.json -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "噴頭尖端與吊車之間的高度差。" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "噴頭 ID" - -#: fdmprinter.def.json -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\"。" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "噴頭直徑" - -#: fdmprinter.def.json -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "噴頭內徑,在使用非標準噴頭尺寸時需更改此設定。" - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "擠出機偏移量" - -#: fdmprinter.def.json -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "開啟擠出機補償並應用於所有擠出機." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "擠出機初始 Z 軸位置" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "列印開始時,噴頭在 Z 軸座標上的起始位置." - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "擠出機使用絕對位置" - -#: fdmprinter.def.json -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 "擠出機的控制參數使用絕對位置,而不是與前次位置的相對位移。" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "X 軸最大速度" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "X 軸方向馬達的最大速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Y 軸最大速度" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Y 軸方向馬達的最大速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Z 軸最大速度" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Z 軸方向馬達的最大速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "E 軸最大速度" - -#: fdmprinter.def.json -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "線材的最大速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "X 軸最大加速度" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "X 軸方向馬達的最大加速度" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Y 軸最大加速度" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Y 軸方向馬達的最大加速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Z 軸最大加速度" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Z 軸方向馬達的最大加速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "擠出馬達最大加速度" - -#: fdmprinter.def.json -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "擠出馬達的最大加速度。" - -#: fdmprinter.def.json -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "預設加速度" - -#: fdmprinter.def.json -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "列印頭移動的預設加速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "預設 X-Y 平面加加速度" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "水平面移動的預設加加速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "預設 Z 軸加加速度" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Z 軸方向馬達的預設加加速度。" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "預設擠出馬達加加速度" - -#: fdmprinter.def.json -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "擠出馬達的預設加加速度。" - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "每毫米的步數(X)" - -#: fdmprinter.def.json -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 方向移動一毫米時,步進馬達所需移動的步數。" - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "每毫米的步數(Y)" - -#: fdmprinter.def.json -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 方向移動一毫米時,步進馬達所需移動的步數。" - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "每毫米的步數(Z)" - -#: fdmprinter.def.json -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 方向移動一毫米時,步進馬達所需移動的步數。" - -#: fdmprinter.def.json -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "每毫米的步數(E)" - -#: fdmprinter.def.json -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 "在擠出輪旋轉一毫米時,步進馬達所需移動的步數." - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "X 限位開關位於正向" - -#: fdmprinter.def.json -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 座標值小)。" - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Y 限位開關位於正向" - -#: fdmprinter.def.json -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 座標值小)。" - -#: fdmprinter.def.json -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Z 限位開關位於正向" - -#: fdmprinter.def.json -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 座標值小)。" - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "最小進料速率" - -#: fdmprinter.def.json -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "列印頭的最低移動速度。" - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "進料輪直徑" - -#: fdmprinter.def.json -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "帶動進料器中線材的輪子的直徑。" - -#: fdmprinter.def.json -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "resolution label" -msgid "Quality" -msgstr "品質" - -#: fdmprinter.def.json -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 "影響列印解析度的所有設定。這些設定會對品質(和列印時間)產生顯著影響" - -#: fdmprinter.def.json -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "層高" - -#: fdmprinter.def.json -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 "每層的高度(以毫米為單位)。值越高,則列印速度越快,解析度越低;值越低,則列印速度越慢,解析度越高。" - -#: fdmprinter.def.json -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "起始層高" - -#: fdmprinter.def.json -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 "起始層高(以毫米為單位)。起始層越厚,與列印平台的附著越輕鬆。" - -#: fdmprinter.def.json -msgctxt "line_width label" -msgid "Line Width" -msgstr "線寬" - -#: fdmprinter.def.json -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 "單一線寬。一般而言,每條線條的寬度應與噴頭的寬度對應。但是,稍微降低此值可以產生更好的列印成果。" - -#: fdmprinter.def.json -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "牆壁線寬" - -#: fdmprinter.def.json -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "單層牆壁線寬。" - -#: fdmprinter.def.json -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "線寬(外壁)" - -#: fdmprinter.def.json -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 "最外側牆壁的線寬。降低此值,可列印出更高水準的細節。" - -#: fdmprinter.def.json -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "內壁線寬" - -#: fdmprinter.def.json -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "除了外壁以外牆壁的線寬。" - -#: fdmprinter.def.json -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "頂部/底部線寬" - -#: fdmprinter.def.json -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "單一頂部/底部線寬。" - -#: fdmprinter.def.json -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "填充線寬" - -#: fdmprinter.def.json -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "單一填充線寬。" - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "外圍/邊緣線寬" - -#: fdmprinter.def.json -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "單一外圍或邊緣的線寬。" - -#: fdmprinter.def.json -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "支撐線寬" - -#: fdmprinter.def.json -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "單一支撐線寬。" - -#: fdmprinter.def.json -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "支撐介面線寬" - -#: fdmprinter.def.json -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "支撐頂板或底板單一線寬。" - -#: fdmprinter.def.json -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "支撐頂板線寬" - -#: fdmprinter.def.json -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "單一支撐頂板線寬。" - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "支撐底板線寬" - -#: fdmprinter.def.json -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "單一支撐底板線寬。" - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "換料塔線寬" - -#: fdmprinter.def.json -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "單一換料塔線寬。" - -#: fdmprinter.def.json -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "起始層線寬" - -#: fdmprinter.def.json -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "第一層線寬倍數。增大此倍數可改善熱床附著。" - -#: fdmprinter.def.json -msgctxt "shell label" -msgid "Walls" -msgstr "牆" - -#: fdmprinter.def.json -msgctxt "shell description" -msgid "Shell" -msgstr "外殼" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "牆壁擠出機" - -#: fdmprinter.def.json -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "用於列印牆壁的擠出機組。在多擠出機情況下適用。" - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "外壁擠出機" - -#: fdmprinter.def.json -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "用於列印外壁的擠出機組。在多擠出機情況下適用。" - -#: fdmprinter.def.json -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "內壁擠出機" - -#: fdmprinter.def.json -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "用於列印內壁的擠出機組。在多擠出機情況下適用。" - -#: fdmprinter.def.json -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "壁厚" - -#: fdmprinter.def.json -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 "水平方向的牆壁厚度。此值除以壁線寬度決定牆壁數量。" - -#: fdmprinter.def.json -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "牆壁線條圈數" - -#: fdmprinter.def.json -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 "牆壁的線條圈數,如果由壁厚計算,會四捨五入為一個整數值。" - -#: fdmprinter.def.json -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "外壁擦拭噴頭長度" - -#: fdmprinter.def.json -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 縫的銜接痕跡。" - -#: fdmprinter.def.json -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "外壁內嵌" - -#: fdmprinter.def.json -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 "內嵌是套用在外壁路徑上的功能。如果外壁小於噴頭,並且在內壁之後列印,則此偏移量將使噴頭孔內移與內壁重疊而不是行走在模型外部。" - -#: fdmprinter.def.json -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "最佳化牆壁列印順序" - -#: fdmprinter.def.json -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 "最佳化列印牆壁的順序,以減少縮回次數和行進距離。啟用此功能對大多數的零件是有益的,但有些零件可能反而會更花時間,因此請比較列印時間的估計值評估是否進行最佳化。當列印平台附著類型設定為邊緣時,第一層不會進行最佳化。" - -#: fdmprinter.def.json -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "" - -#: fdmprinter.def.json -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." -msgstr "" - -#: fdmprinter.def.json -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "" - -#: fdmprinter.def.json -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "" - -#: fdmprinter.def.json -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "交錯額外牆壁" - -#: fdmprinter.def.json -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 "每兩層建立一個額外牆壁,這些額外的牆壁能更緊密地抓填充部分,產生較強壯的模型。" - -#: fdmprinter.def.json -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold label" -msgid "Split Middle Line Threshold" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wall_split_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "" - -#: fdmprinter.def.json -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold label" -msgid "Add Middle Line Threshold" -msgstr "" - -#: fdmprinter.def.json -msgctxt "wall_add_middle_threshold description" -msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -msgstr "" - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "列印薄壁" - -#: fdmprinter.def.json -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "列印在水平面上比噴頭尺寸更薄的模型部件。" - -#: fdmprinter.def.json -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "水平擴展" - -#: fdmprinter.def.json -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 "如果模型有挖孔,以便用來組合、鑲嵌時,這個偏移量可以用來微調孔的大小,當設為正值時,模型外擴,孔會變小;若設為負值,模型內縮,孔會變大。" - -#: fdmprinter.def.json -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "起始層水平擴展" - -#: fdmprinter.def.json -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 "套用到第一層所有多邊形的偏移量。負數值可以補償第一層的壓扁量(被稱為“象脚”)。" - -#: fdmprinter.def.json -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "孔洞水平擴展" - -#: fdmprinter.def.json -msgctxt "hole_xy_offset description" -msgid "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." -msgstr "套用到每一層孔洞的偏移量。正值增加孔洞的大小,負值減小孔洞的大小。" - -#: fdmprinter.def.json -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Z 接縫對齊" - -#: fdmprinter.def.json -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 "一層中每條路徑的起點。當連續多層的路徑從相同點開始時,則列印物上會顯示一條垂直縫隙。如果將這些路徑靠近一個使用者指定的位置對齊,則縫隙最容易移除。如果隨機放置,則路徑起點的不精準度將較不明顯。採用最短的路徑時,列印將更為快速。" - -#: fdmprinter.def.json -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "使用者指定" - -#: fdmprinter.def.json -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "最短" - -#: fdmprinter.def.json -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "隨機" - -#: fdmprinter.def.json -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "最尖銳的轉角" - -#: fdmprinter.def.json -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Z 接縫位置" - -#: fdmprinter.def.json -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "每一層開始列印位置要靠近哪個方向。" - -#: fdmprinter.def.json -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "左後方" - -#: fdmprinter.def.json -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "後方" - -#: fdmprinter.def.json -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "右後方" - -#: fdmprinter.def.json -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "右方" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "右前方" - -#: fdmprinter.def.json -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "前方" - -#: fdmprinter.def.json -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "左前方" - -#: fdmprinter.def.json -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "左方" - -#: fdmprinter.def.json -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z 接縫 X 座標" - -#: fdmprinter.def.json -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "位置的 X 軸座標,在該位置附近開始列印層中各個部分。" - -#: fdmprinter.def.json -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z 接縫 Y 座標" - -#: fdmprinter.def.json -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "位置的 Y 軸座標,在該位置附近開始列印層中各個部分。" - -#: fdmprinter.def.json -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "接縫偏好設定" - -#: fdmprinter.def.json -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 "控制模型輪廓上的轉角是否影響接縫的位置。「無」表示轉角不影響接縫位置。「隱藏接縫」讓接縫盡量出現在凹角。「暴露接縫」讓接縫盡量出現在凸角。「隱藏或暴露接縫」讓接縫盡量出現在凹角或凸角。「智慧隱藏」允許使用凹角或凸角,但如果狀況合適,會盡可能地選擇凹角。" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "無" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "隱藏接縫" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "暴露接縫" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "隱藏或暴露接縫" - -#: fdmprinter.def.json -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "智慧隱藏" - -#: fdmprinter.def.json -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Z 接縫相對" - -#: fdmprinter.def.json -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 接縫座標為相對於各個部分中心的值。關閉時,座標固定在列印平台上的一個絕對位置。" - -#: fdmprinter.def.json -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "頂層/底層" - -#: fdmprinter.def.json -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "頂層/底層" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "頂部表層擠出機" - -#: fdmprinter.def.json -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "用於列印最頂部表層的擠出機組。在多擠出機情況下適用。" - -#: fdmprinter.def.json -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "頂部表層" - -#: fdmprinter.def.json -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 "最頂部表層層數。通常只需一層最頂部就足以產生較高品質的頂部表面。" - -#: fdmprinter.def.json -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "頂部/底部擠出機" - -#: fdmprinter.def.json -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 "用於列印頂部和底部表層的擠出機組。在多擠出機情況下適用。" - -#: fdmprinter.def.json -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "頂部 / 底部厚度" - -#: fdmprinter.def.json -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 "列印模型中頂部/底部的厚度。該值除以層高決定頂部/底部的層數。" - -#: fdmprinter.def.json -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "頂部厚度" - -#: fdmprinter.def.json -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 "列印模型中頂部的厚度。該值除以層高決定頂部的層數。" - -#: fdmprinter.def.json -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "頂部層數" - -#: fdmprinter.def.json -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 "頂部列印層數,當由頂部厚度來計算時層數時,會四捨五入為一個整數值。" - -#: fdmprinter.def.json -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "底部厚度" - -#: fdmprinter.def.json -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 "列印模型中底部的厚度。此值除以層高決定底部的層數。" - -#: fdmprinter.def.json -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "底部層數" - -#: fdmprinter.def.json -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 "底部列印層數,當由底部厚度來計算時層數時,會四捨五入為一個整數值。" - -#: fdmprinter.def.json -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "起始底部層數" - -#: fdmprinter.def.json -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 "從列印平台列印的起始底部列印層數,當由底部厚度來計算時層數時,會四捨五入為一個整數值。" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "頂部/底部填充樣式" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "頂部/底部的列印樣式。" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "直線" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "同心" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "鋸齒狀" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "起始層列印樣式" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "列印件底部第一層的列印樣式。" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "直線" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "同心" - -#: fdmprinter.def.json -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "鋸齒狀" - -#: fdmprinter.def.json -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "連接頂部/底部多邊形" - -#: fdmprinter.def.json -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 "將頂部/底部表層路徑相鄰的位置連接。同心模式時啟用此設定,可以大大地減少移動時間。但因連接可能碰巧在途中跨越填充,所以此功能可能會降低頂部表層的品質。" - -#: fdmprinter.def.json -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "單一化列印 頂層/底層 順序" - -#: fdmprinter.def.json -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 "再列印頂層/底層線條時,命令相鄰線條於單方向重疊. 雖然會花更多時間列印,但會使平面更平整." - -#: fdmprinter.def.json -msgctxt "skin_angles label" -msgid "Top/Bottom 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 度)。" #: fdmprinter.def.json msgctxt "skin_angles description" @@ -1516,379 +38,24 @@ msgid "A list of integer line directions to use when the top/bottom layers use t msgstr "當頂部/底部採用線條或鋸齒狀的列印樣式時使用的整數線條方向的清單。清單中的元素隨層的進度依次使用,當達到清單末尾時,它將從頭開始。清單元素以逗號分隔,整個清單包含在方括號中。空的清單代表使用傳統的預設角度(45 和 135 度)。" #: fdmprinter.def.json -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Z 間隙無表層" +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 度。" #: fdmprinter.def.json -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 "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 度交替)。" #: fdmprinter.def.json -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -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 度交替)。" #: fdmprinter.def.json -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 "用多個同心線代替頂部/底部列印樣式的最外面部分。使用一條或兩條線可以改善列印在填充上的頂板。" - -#: fdmprinter.def.json -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "啟用燙平" - -#: fdmprinter.def.json -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 "噴頭額外跑過上表層一次,但這次擠出的材料非常少。這是為了進一步融化頂部的塑料,創造更平滑的表面。噴頭中的壓力會保持很高,將表面中的細縫中填滿材料。" - -#: fdmprinter.def.json -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "只燙平最高層" - -#: fdmprinter.def.json -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 "只在網格的最後一層進行燙平處理。 如果下層不需要光滑的表面,可啟用此選項以節省時間。" - -#: fdmprinter.def.json -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "燙平列印樣式" - -#: fdmprinter.def.json -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "用於燙平頂部表面的列印樣式。" - -#: fdmprinter.def.json -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "同心" - -#: fdmprinter.def.json -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "鋸齒狀" - -#: fdmprinter.def.json -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "單一化燙平順序" - -#: fdmprinter.def.json -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 "再使用燙平列印線條時,命令相鄰線條於單方向重疊。雖然會花更多時間列印,但會使平面更平整." - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "燙平線條間距" - -#: fdmprinter.def.json -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "燙平線條之間的距離。" - -#: fdmprinter.def.json -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "燙平流量" - -#: fdmprinter.def.json -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 "燙平期間相對於正常表層線條的擠出線材量。保持噴頭填充狀态有助於填充頂部表面的一些縫隙,但如填充過多則會導致表面上過度擠出和光點。" - -#: fdmprinter.def.json -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "燙平內嵌" - -#: fdmprinter.def.json -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 "與模型邊緣保持的距離。一直燙平至網格的邊緣可能導致列印品出現鋸齒狀邊緣。" - -#: fdmprinter.def.json -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "燙平速度" - -#: fdmprinter.def.json -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "通過頂部表面的速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "燙平加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "執行燙平的加速度。" - -#: fdmprinter.def.json -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "燙平加加速度" - -#: fdmprinter.def.json -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "執行燙平時的最大瞬時速度變化。" - -#: fdmprinter.def.json -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "表層重疊百分比" - -#: fdmprinter.def.json -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% 的百分比可能導致表層越過內壁, 因為此時擠出機噴嘴的位置可能已經超過了內壁線條的中間。" - -#: fdmprinter.def.json -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "表層重疊" - -#: fdmprinter.def.json -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 "調整內壁和表層中心線(的端點)之間的重疊量。輕微的重疊可以讓牆壁牢固地連接到表層。但要注意在表層和內壁線寬度相等的情形下, 超過線寬一半的值可能導致表層越過內壁, 因為此時擠出機噴嘴的位置可能已經超過了內壁線條的中間。" - -#: fdmprinter.def.json -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "表層移除寬度" - -#: fdmprinter.def.json -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 "要移除表層區域的最大寬度。寬度小於此值的表層區域將會消失。這有助於減少在列印模型傾斜的頂部表層和底部表層所花費的時間和線材。" - -#: fdmprinter.def.json -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "頂部表層移除寬度" - -#: fdmprinter.def.json -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 "要移除頂部表層區域的最大寬度。寬度小於此值的頂部表層區域將會消失。這有助於減少在列印模型傾斜的頂部表層所花費的時間和線材。" - -#: fdmprinter.def.json -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "底部表層移除寬度" - -#: fdmprinter.def.json -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 "要移除底部表層區域的最大寬度。寬度小於此值的底部表層區域將會消失。這有助於減少在列印模型傾斜的底部表層所花費的時間和線材。" - -#: fdmprinter.def.json -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "表層延伸距離" - -#: fdmprinter.def.json -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 "表層延伸進入填充的距離。值愈高表層與填充之間的附著愈好,並使相鄰層的牆壁與表層黏得更緊。而較低的值可以節省線材的使用。" - -#: fdmprinter.def.json -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "頂部表層延伸距離" - -#: fdmprinter.def.json -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 "頂部表層延伸進入填充的距離。值愈高表層與填充之間的附著愈好,並使上方的牆壁與表層黏得更緊。而較低的值可以節省線材的使用。" - -#: fdmprinter.def.json -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "底部表層延伸距離" - -#: fdmprinter.def.json -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 "底部表層延伸進入填充的距離。值愈高表層與填充之間的附著愈好,並使下方的牆壁與表層黏得更緊。而較低的值可以節省線材的使用。" - -#: fdmprinter.def.json -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "最大延伸表層角度" - -#: fdmprinter.def.json -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°為垂直,所有表層將被延伸。" - -#: fdmprinter.def.json -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "最小延伸表層寬度" - -#: fdmprinter.def.json -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 "如果表層區域寬度小於此值,則不會延伸。這會避免延伸在模型表面的斜度接近垂直時所形成的狹窄表層區域。" - -#: fdmprinter.def.json -msgctxt "infill label" -msgid "Infill" -msgstr "填充" - -#: fdmprinter.def.json -msgctxt "infill description" -msgid "Infill" -msgstr "填充" - -#: fdmprinter.def.json -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "填充擠出機" - -#: fdmprinter.def.json -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "用於列印填充的擠出機組。在多擠出機情況下適用。" - -#: fdmprinter.def.json -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "填充密度" - -#: fdmprinter.def.json -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "調整列印填充的密度。" - -#: fdmprinter.def.json -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "填充線條距離" - -#: fdmprinter.def.json -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 "列印填充線條之間的距離。該設定是通過填充密度和填充線寬度計算。" - -#: fdmprinter.def.json -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "填充列印樣式" - -#: fdmprinter.def.json -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 "內部填充層的圖案。線形、鋸齒形填充在交替層間交換方向,已降低材料成本。網格、三角形、三角-六邊形、立方體、八面體、四分立方體、十字和同心圖案每個層間皆有列印。螺旋型、立方體、四分立方體和八面體的填充隨著每一層而變化,以在每個方向上提供更均勻的強度分佈。閃電型填充透過僅支撐物體的頂層來最小化填充。" - -#: fdmprinter.def.json -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "網格" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "直線" - -#: fdmprinter.def.json -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "三角形" - -#: fdmprinter.def.json -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "三角-六邊形混和" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "立方體" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "立方體細分" - -#: fdmprinter.def.json -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "八面體" - -#: fdmprinter.def.json -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "四分立方體" - -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "同心" - -#: fdmprinter.def.json -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "鋸齒狀" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "十字形" - -#: fdmprinter.def.json -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "立體十字形" - -#: fdmprinter.def.json -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "螺旋形" - -#: fdmprinter.def.json -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "閃電形" - -#: fdmprinter.def.json -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "連接填充線條" - -#: fdmprinter.def.json -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 "使用一條線沿著內牆的形狀,連接填充線條與內牆交會的末端。啟用此設定可以使填充更好地附著在內牆上,並減少對垂直表面品質的影響。關閉此設定可降低材料的使用量。" - -#: fdmprinter.def.json -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "連接填充多邊形" - -#: fdmprinter.def.json -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 "連接彼此相鄰的填充路徑。 對於由多個閉合多邊形組成的填充圖案,啟用此設定可大大縮短空跑時間。" - -#: fdmprinter.def.json -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 度交替)。" #: fdmprinter.def.json msgctxt "infill_angles description" @@ -1896,49 +63,44 @@ msgid "A list of integer line directions to use. Elements from the list are used msgstr "要使用的整數線條方向清單。清單中的元素隨層的進度依次使用,當達到清單末尾時,它將從頭開始。清單元素以逗號分隔,整個清單包含在方括號中。空的清單代表使用傳統的預設角度(線條和鋸齒狀的列印樣式為 45 和 135 度,其他所有的列印樣式為 45 度)。" #: fdmprinter.def.json -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 "禁止噴頭進入區域的多邊形清單。" #: fdmprinter.def.json -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 "禁止列印頭進入區域的多邊形清單。" #: fdmprinter.def.json -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "填充 Y 軸偏移" +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "" #: fdmprinter.def.json -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 "擠出機使用絕對位置" #: fdmprinter.def.json -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "隨機填充起始位置" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "適應性層高最大變化量" #: fdmprinter.def.json -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 "適應性層高地形尺寸" #: fdmprinter.def.json -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "填充線倍增器" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "適應性層高變化幅度" #: fdmprinter.def.json -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 "將每條填充線轉換為此數量。 額外的線條不會相互交叉,而是相互避開。 這會使填充更硬,但增加了列印時間和線材使用。" - -#: fdmprinter.def.json -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 "適應性層高會依據模型的形狀計算列印的層高。" #: fdmprinter.def.json msgctxt "infill_wall_line_count description" @@ -1950,284 +112,9 @@ msgstr "" "此功能可與「連接填充多邊形」結合使用。如果設定正確,可將所有填充連接為單一擠出路徑,不需空跑或回抽。" #: fdmprinter.def.json -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "立方體細分外殼" - -#: fdmprinter.def.json -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 "每個立方體半徑的增加量,用來檢查模型的邊界,決定是否應該細分該立方體。值越大,靠近模型邊界附近的小立方體的殼越厚。" - -#: fdmprinter.def.json -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "填充重疊百分比" - -#: fdmprinter.def.json -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 "填充與牆壁的重疊量佔填充線寬的百分比。輕微的重疊能讓填充與牆壁牢固地連接。" - -#: fdmprinter.def.json -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "填充重疊" - -#: fdmprinter.def.json -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 "填充和牆壁之間的重疊量。稍微重疊可讓各個壁與填充牢固連接。" - -#: fdmprinter.def.json -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "填充擦拭距離" - -#: fdmprinter.def.json -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 "每條填充線條後插入的空跑距離,讓填充更好地附著到壁上。此選項與填充重疊類似,但没有擠出,且僅位於填充線條的一端。" - -#: fdmprinter.def.json -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "填充層厚度" - -#: fdmprinter.def.json -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 "每層填充的厚度。此值應該是層高度的倍數,並且否則會四捨五入。" - -#: fdmprinter.def.json -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "漸進填充步階數" - -#: fdmprinter.def.json -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 "由模型頂部往下,填充密度減半的次數。愈接近頂部的填充密度愈高,直到所設定的填充密度。" - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "漸進填充步階高度" - -#: fdmprinter.def.json -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "減半填充密度的高度。" - -#: fdmprinter.def.json -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "先印填充再印牆壁" - -#: fdmprinter.def.json -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 "列印牆壁前先列印填充。先列印牆壁可以產生更精確的牆壁,但突出部分列印品質會較差。先列印填充會產生更牢固的牆壁,但有時候填充的列印樣式會透過表面顯現出來。" - -#: fdmprinter.def.json -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "最小填充面積" - -#: fdmprinter.def.json -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "不要產生小於此面積的填充區域(使用表層取代)。" - -#: fdmprinter.def.json -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "填充支撐" - -#: fdmprinter.def.json -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 "只在模型頂部需要支撐的地方才列印填充。啟用此功能可減少列印時間和線材用量,但會導致物件強度不均勻。" - -#: fdmprinter.def.json -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "填充突出角度" - -#: fdmprinter.def.json -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° 時,不提供任何填充。" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "表層邊緣支撐厚度" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "支撐表層邊緣的額外填充的厚度。" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "表層邊緣支撐層數" - -#: fdmprinter.def.json -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "支撐表層邊緣的額外填充的層數。" - -#: fdmprinter.def.json -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "閃電形填充支撐堆疊角度" - -#: fdmprinter.def.json -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 "決定使用閃電形填充支撐時,層間堆疊的角度." - -#: fdmprinter.def.json -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "閃電形填充突出角度" - -#: fdmprinter.def.json -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 "決定使用閃電形填充支撐時,層間堆疊的角度." - -#: fdmprinter.def.json -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "閃電形填充生成角度" - -#: fdmprinter.def.json -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 "內部填充線的端點已被縮減以節省線材. 這個設定用於調整突出線的角度." - -#: fdmprinter.def.json -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "閃電形填充層間垂直堆疊角度" - -#: fdmprinter.def.json -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 "填充線被拉直用以節省列印時間. 這是填充線長度上允許的最大突出角度." - -#: fdmprinter.def.json -msgctxt "material label" -msgid "Material" -msgstr "線材" - -#: fdmprinter.def.json -msgctxt "material description" -msgid "Material" -msgstr "線材" - -#: fdmprinter.def.json -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "預設列印溫度" - -#: fdmprinter.def.json -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 "用於列印的預設溫度。應為線材的溫度\"基礎值\"。其他列印溫度將以此值為基準計算偏移" - -#: fdmprinter.def.json -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "列印空間溫度" - -#: fdmprinter.def.json -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,則不會調整列印空間溫度。" - -#: fdmprinter.def.json -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "列印溫度" - -#: fdmprinter.def.json -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "用於列印的溫度。" - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "列印溫度起始層" - -#: fdmprinter.def.json -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "用於列印第一層的溫度。設為 0 即關閉對起始層的特别處理。" - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "起始列印溫度" - -#: fdmprinter.def.json -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "加熱到可以開始列印的列印溫度時的最低溫度。" - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "最終列印溫度" - -#: fdmprinter.def.json -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "列印結束前開始冷卻的溫度。" - -#: fdmprinter.def.json -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "擠出降溫速度修正" - -#: fdmprinter.def.json -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 "解決在擠料的同時因為噴頭冷卻所造成的影響的額外速度修正。相同的值被用於表示在擠壓時所失去的升溫速度。" - -#: fdmprinter.def.json -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "列印平台預設溫度" - -#: fdmprinter.def.json -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 "列印平台加熱的預設溫度。這會是列印平台的溫度\"基礎值\"。其他列印溫度將以此值為基準計算偏移" - -#: fdmprinter.def.json -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "列印平台溫度" - -#: fdmprinter.def.json -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,就不會加熱列印平台。" - -#: fdmprinter.def.json -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "列印平台溫度起始層" - -#: fdmprinter.def.json -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 "附著" #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" @@ -2235,1924 +122,19 @@ msgid "Adhesion Tendency" msgstr "附著趨勢" #: fdmprinter.def.json -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% 的百分比可能導致表層越過內壁, 因為此時擠出機噴嘴的位置可能已經超過了內壁線條的中間。" #: fdmprinter.def.json -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 "調整內壁和表層中心線(的端點)之間的重疊量。輕微的重疊可以讓牆壁牢固地連接到表層。但要注意在表層和內壁線寬度相等的情形下, 超過線寬一半的值可能導致表層越過內壁, 因為此時擠出機噴嘴的位置可能已經超過了內壁線條的中間。" #: fdmprinter.def.json -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "表面能量。" - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "收縮補償放大倍率" - -#: fdmprinter.def.json -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 "為了補償線材在冷卻時的收縮,模型會依此比例放大列印。" - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "晶狀線材" - -#: fdmprinter.def.json -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 "這種線材高溫時是脆斷的類型(晶狀),還是拉絲的類型(非晶狀)?" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "防滲漏回抽位置" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "停止滲漏要回抽線材多長的距離。" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "防滲漏回抽速度" - -#: fdmprinter.def.json -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "在線材切換回抽時,需要多快的速度來防止滲漏。" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "回抽切斷前位置" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "在加熱時,線材在脆斷前可以拉伸多長的距離。" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "回抽切斷前速度" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "回抽切斷前,線材回抽的速度。" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "回抽切斷溫度" - -#: fdmprinter.def.json -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "清洗線材的溫度,應該約等於可能的最高列印溫度。" - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "回抽切斷位置" - -#: fdmprinter.def.json -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "要讓線材脆斷需要回抽長的距離。" - -#: fdmprinter.def.json -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "回抽切斷速度" - -#: fdmprinter.def.json -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "要讓線材脆斷要回抽多快。" - -#: fdmprinter.def.json -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "切斷溫度" - -#: fdmprinter.def.json -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "要讓線材脆斷所需的溫度。" - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "沖洗速度" - -#: fdmprinter.def.json -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "切換到另一線材後,用多快的速度擠出線材做沖洗。" - -#: fdmprinter.def.json -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "沖洗長度" - -#: fdmprinter.def.json -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 "切換到另一線材時,要使用多少線材(以線材長度計算)將噴頭內先前的線材沖洗出來。" - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "線材更換沖洗速度" - -#: fdmprinter.def.json -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 "更換新的一捲相同線材後,用多快的速度擠出線材做沖洗。" - -#: fdmprinter.def.json -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "線材更換沖洗長度" - -#: fdmprinter.def.json -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 "更換新的一捲相同線材時,要使用多少線材(以線材長度計算)將噴頭內先前的線材沖洗出來。" - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "最長停放時間" - -#: fdmprinter.def.json -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "線材可在乾燥箱外安全的存放多久。" - -#: fdmprinter.def.json -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "空載移動係數" - -#: fdmprinter.def.json -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 "一個用來表示線材在進料器和噴頭腔室之間能被壓縮多少的係數,用來決定線材切換時需要移動多長。" - -#: fdmprinter.def.json -msgctxt "material_flow label" -msgid "Flow" -msgstr "流量" - -#: fdmprinter.def.json -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "流量補償:擠出的線材量乘以此值。" - -#: fdmprinter.def.json -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "牆壁流量" - -#: fdmprinter.def.json -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "牆壁線條的流量補償。" - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "外壁流量" - -#: fdmprinter.def.json -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "外壁線條的流量補償。" - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "內壁流量" - -#: fdmprinter.def.json -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "最外層牆壁以外的牆壁線條的流量補償。" - -#: fdmprinter.def.json -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "頂部/底部流量" - -#: fdmprinter.def.json -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "頂部/底部線條的流量補償。" - -#: fdmprinter.def.json -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "頂部表層流量" - -#: fdmprinter.def.json -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "頂部區域線條的流量補償。" - -#: fdmprinter.def.json -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "填充流量" - -#: fdmprinter.def.json -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "填充線條的流量補償。" - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "外圍/邊緣流量" - -#: fdmprinter.def.json -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "外圍/邊緣線條的流量補償。" - -#: fdmprinter.def.json -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "支撐流量" - -#: fdmprinter.def.json -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "支撐結構線條的流量補償。" - -#: fdmprinter.def.json -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "支撐介面流量" - -#: fdmprinter.def.json -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "支撐頂板或底板線條的流量補償。" - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "支撐頂板流量" - -#: fdmprinter.def.json -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "支撐頂板線條的流量補償。" - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "支撐底板流量" - -#: fdmprinter.def.json -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "支撐底板線條的流量補償。" - -#: fdmprinter.def.json -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "換料塔流量" - -#: fdmprinter.def.json -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "換料塔線條的流量補償。" - -#: fdmprinter.def.json -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "起始層流量" - -#: fdmprinter.def.json -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 "第一層的流量補償:在起始層上擠出的線材量會乘以此值。" - -#: fdmprinter.def.json -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "待機溫度" - -#: fdmprinter.def.json -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "當另一個噴頭進行列印時,這個噴頭要保持的溫度。" - -#: fdmprinter.def.json -msgctxt "speed label" -msgid "Speed" -msgstr "速度" - -#: fdmprinter.def.json -msgctxt "speed description" -msgid "Speed" -msgstr "速度" - -#: fdmprinter.def.json -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "列印速度" - -#: fdmprinter.def.json -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "開始列印時的速度。" - -#: fdmprinter.def.json -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "填充速度" - -#: fdmprinter.def.json -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "列印填充的速度。" - -#: fdmprinter.def.json -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "牆壁速度" - -#: fdmprinter.def.json -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "列印牆壁的速度。" - -#: fdmprinter.def.json -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "外壁速度" - -#: fdmprinter.def.json -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 "列印最外壁的速度。以較低速度列印外壁可改善最終表層品質。但是,如果內壁速度和外壁速度差距過大,則將對品質產生負面影響。" - -#: fdmprinter.def.json -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "內壁速度" - -#: fdmprinter.def.json -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 "列印所有內壁的速度。以比外壁更快的速度列印內壁將減少列印時間。將該值設為外壁速度和填充速度之間也可行。" - -#: fdmprinter.def.json -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "頂部表層速度" - -#: fdmprinter.def.json -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "列印頂部表層的速度。" - -#: fdmprinter.def.json -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "頂部/底部速度" - -#: fdmprinter.def.json -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "列印頂部/底部層的速度。" - -#: fdmprinter.def.json -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "支撐速度" - -#: fdmprinter.def.json -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 "在列印支撐結構時的速度。以更高的速度列印支撐可以大大減少列印時間。因為支撐在列印後會被清除,所以表面品質並不重要。" - -#: fdmprinter.def.json -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "支撐填充速度" - -#: fdmprinter.def.json -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 "列印支撐填充的速度。以較低的速度列印填充可改善穩定性。" - -#: fdmprinter.def.json -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "支撐介面速度" - -#: fdmprinter.def.json -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 "列印支撐頂板和底板的速度。以較低的速度列印可以改善突出部分的品質。" - -#: fdmprinter.def.json -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "支撐頂板速度" - -#: fdmprinter.def.json -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 "列印支撐頂板的速度。以較低的速度列印可以改善突出部分的品質。" - -#: fdmprinter.def.json -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "支撐底板速度" - -#: fdmprinter.def.json -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 "列印支撐底板的速度。以較低的速度列印可以改善支撐在模型頂部的附著。" - -#: fdmprinter.def.json -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "換料塔速度" - -#: fdmprinter.def.json -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 "列印換料塔的速度。當不同線材之間的黏合力不佳時,較慢地列印速度可以讓它更穩定。" - -#: fdmprinter.def.json -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "空跑速度" - -#: fdmprinter.def.json -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "噴頭在非列印時的移動速度。" - -#: fdmprinter.def.json -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "起始層速度" - -#: fdmprinter.def.json -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 "初始層速度, 建議以一個較低的值去改善列印平台的附著. 並不影響模型的附著方式,例如開啟邊緣或木筏." - -#: fdmprinter.def.json -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "起始層列印速度" - -#: fdmprinter.def.json -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 "列印起始層的速度。建議採用較低的值以便改善與列印平台的附著。" - -#: fdmprinter.def.json -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "起始層空跑速度" - -#: fdmprinter.def.json -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 "起始層中的空跑速度。建議採用較低的值,以防止將之前列印的部分從列印平台上拉離。該設定的值可以根據空跑速度和列印速度的比率自動計算得出。" - -#: fdmprinter.def.json -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "外圍/邊緣速度" - -#: fdmprinter.def.json -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 "列印外圍和邊緣的速度。一般情况是以起始層速度列印這些部分,但有時候你可能想要以不同速度來列印外圍或邊緣。" - -#: fdmprinter.def.json -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Z 抬升速度" - -#: fdmprinter.def.json -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 軸垂直移動的速度。這通常低於列印速度,因為列印平台或機器的吊車較難移動。" - -#: fdmprinter.def.json -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "慢速列印層數" - -#: fdmprinter.def.json -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 "前幾層的列印速度比模型的其他層慢,以便實現與列印平台的更好附著,並改善整體的列印成功率。該速度在這些層中會逐漸增加。" - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "啟用加速度控制" - -#: fdmprinter.def.json -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 "啟用調整噴頭的加速度。增加加速度可以減少列印時間卻會犧牲列印品質。" - -#: fdmprinter.def.json -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "列印加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "列印發生的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "填充加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "列印填充的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "牆壁加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "列印牆壁的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "外壁加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "列印最外壁的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "內壁加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "列印所有內壁的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "頂部表層加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "列印頂部表層的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "頂部/底部加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "列印頂部/底部層的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "支撐加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "列印支撐的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "支撐填充加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "列印支撐填充的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "支撐介面加速度" - -#: fdmprinter.def.json -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 "列印支撐頂板和底板的加速度。以較低的加速度列印可以改善突出部分的品質。" - -#: fdmprinter.def.json -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "支撐頂板加速度" - -#: fdmprinter.def.json -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 "列印支撐頂板的加速度。以較低的加速度列印可以改善突出部分的品質。" - -#: fdmprinter.def.json -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "支撐底板加速度" - -#: fdmprinter.def.json -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 "列印支撐底板的加速度。以較低的加速度列印可以改善支撐在模型頂部的附著。" - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "換料塔加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "列印換料塔的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "空跑加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "進行空跑的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "起始層加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "起始層的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "起始層列印加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "列印起始層時的加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "起始層空跑加速度" - -#: fdmprinter.def.json -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "起始層中的空跑加速度。" - -#: fdmprinter.def.json -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "外圍/邊緣加速度" - -#: fdmprinter.def.json -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 "列印外圍和邊緣的加速度。一般情况是以起始層加速度列印這些部分,但有時候你可能想要以不同加速度來列印外圍或邊緣。" - -#: fdmprinter.def.json -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "啟用加加速度控制" - -#: fdmprinter.def.json -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 軸的速度變化時調整列印頭的加加速度。提高加加速度可以通過以列印品質為代價來縮短列印時間。" - -#: fdmprinter.def.json -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "列印加加速度" - -#: fdmprinter.def.json -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "列印頭的最大瞬時速度變化。" - -#: fdmprinter.def.json -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "填充加加速度" - -#: fdmprinter.def.json -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "列印填充時的最大瞬時速度變化。" - -#: fdmprinter.def.json -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "牆壁加加速度" - -#: fdmprinter.def.json -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "列印牆壁時的最大瞬時速度變化。" - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "外壁加加速度" - -#: fdmprinter.def.json -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "列印最外壁時的最大瞬時速度變化。" - -#: fdmprinter.def.json -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "內壁加加速度" - -#: fdmprinter.def.json -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "列印所有內壁時的最大瞬時速度變化。" - -#: fdmprinter.def.json -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "頂部表層加加速度" - -#: fdmprinter.def.json -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "列印頂部表層時的最大瞬時速度變化。" - -#: fdmprinter.def.json -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "頂部/底部加加速度" - -#: fdmprinter.def.json -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "列印頂部/底部層時的最大瞬時速度變化。" - -#: fdmprinter.def.json -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "支撐加加速度" - -#: fdmprinter.def.json -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "列印支撐結構時的最大瞬時速度變化。" - -#: fdmprinter.def.json -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "支撐填充加加速度" - -#: fdmprinter.def.json -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "列印支撐填充時的最大瞬時速度變化。" - -#: fdmprinter.def.json -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "支撐介面加加速度" - -#: fdmprinter.def.json -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "列印支撐頂板和底板的最大瞬時速度變化。" - -#: fdmprinter.def.json -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "支撐頂板加加速度" - -#: fdmprinter.def.json -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "列印支撐頂板的最大瞬時速度變化。" - -#: fdmprinter.def.json -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "支撐底板加加速度" - -#: fdmprinter.def.json -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "列印支撐底板時的最大瞬時速度變化。" - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "換料塔加加速度" - -#: fdmprinter.def.json -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "列印換料塔時的最大瞬時速度變化。" - -#: fdmprinter.def.json -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "空跑加加速度" - -#: fdmprinter.def.json -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "進行空跑時的最大瞬時速度變化。" - -#: fdmprinter.def.json -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "起始層加加速度" - -#: fdmprinter.def.json -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "起始層的列印最大瞬時速度變化。" - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "起始層列印加加速度" - -#: fdmprinter.def.json -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "列印起始層時的最大瞬時速度變化。" - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "起始層空跑加加速度" - -#: fdmprinter.def.json -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "起始層中的空跑加速度。" - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "外圍/邊緣加加速度" - -#: fdmprinter.def.json -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "列印外圍和邊緣時的最大瞬時速度變化。" - -#: fdmprinter.def.json -msgctxt "travel label" -msgid "Travel" -msgstr "空跑" - -#: fdmprinter.def.json -msgctxt "travel description" -msgid "travel" -msgstr "空跑" - -#: fdmprinter.def.json -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "啟用回抽" - -#: fdmprinter.def.json -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "當噴頭移動經過非列印區域時回抽線材。" - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "列印下一層時回抽" - -#: fdmprinter.def.json -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "當噴頭移動到下一層時回抽線材。" - -#: fdmprinter.def.json -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "回抽距離" - -#: fdmprinter.def.json -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "回抽移動期間回抽的線材長度。" - -#: fdmprinter.def.json -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "回抽速度" - -#: fdmprinter.def.json -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "回抽移動期間線材回抽和裝填的速度。" - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "回抽速度" - -#: fdmprinter.def.json -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "回抽移動期間線材回抽的速度。" - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "回抽裝填速度" - -#: fdmprinter.def.json -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "回抽移動期間線材裝填的速度。" - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "回抽額外裝填量" - -#: fdmprinter.def.json -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "有些線材可能會在空跑過程中滲出,可以在這裡對其進行補償。" - -#: fdmprinter.def.json -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "回抽最小空跑距離" - -#: fdmprinter.def.json -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 "觸發回抽所需的最小空跑距離。這有助於減少小區域內的回抽次數。" - -#: fdmprinter.def.json -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "最大回抽次數" - -#: fdmprinter.def.json -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 "此設定限制在最小擠出距離範圍內發生的回抽數。此範圍內的額外回抽將會忽略。這避免了在同一件線材上重複回抽,從而導致線材變扁並引起磨損問題。" - -#: fdmprinter.def.json -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "最小擠出距離範圍" - -#: fdmprinter.def.json -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 "最大回抽次數範圍。此值應大致與回抽距離相等,從而有效地限制在同一段線材上的回抽次數。" - -#: fdmprinter.def.json -msgctxt "limit_support_retractions label" -msgid "Limit Support Retractions" -msgstr "限制支撐回抽" - -#: fdmprinter.def.json -msgctxt "limit_support_retractions description" -msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -msgstr "當從支撐直線移動到另一支撐時,省略回抽。啟用此功能可節省列印時間,但會導致支撐內部有較多的牽絲。" - -#: fdmprinter.def.json -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "梳理模式" - -#: fdmprinter.def.json -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 "梳理模式讓噴頭空跑時保持在已列印的區域內。這將導致稍長的空跑移動但減少了回抽的需求。如果關閉梳理模式,噴頭將會回抽線材,直線移動到下一點。可以設定在頂部/底部表層不使用梳理模式,或只使用在內部填充。" - -#: fdmprinter.def.json -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "關" - -#: fdmprinter.def.json -msgctxt "retraction_combing option all" -msgid "All" -msgstr "所有" - -#: fdmprinter.def.json -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "不在外表面上" - -#: fdmprinter.def.json -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "表層以外區域" - -#: fdmprinter.def.json -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "內部填充" - -#: fdmprinter.def.json -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "不回抽的最大梳理距離" - -#: fdmprinter.def.json -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,則關閉回抽." - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "列印外壁前先進行回抽" - -#: fdmprinter.def.json -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "當移動到外牆起始點時總是進行回抽。" - -#: fdmprinter.def.json -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "空跑時避開已列印部分" - -#: fdmprinter.def.json -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 "噴頭會在空跑時避開已列印的部分。此選項僅在啟用梳理功能時可用。" - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "空跑避開支撐" - -#: fdmprinter.def.json -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "噴頭在空跑時避開已列印的支撐。此選項僅在啟用梳理功能時可用。" - -#: fdmprinter.def.json -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "空跑避開距離" - -#: fdmprinter.def.json -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "噴頭和已列印部分之間在空跑時避開的距離。" - -#: fdmprinter.def.json -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "每層列印起始點的 X 座標" - -#: fdmprinter.def.json -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 坐標。" - -#: fdmprinter.def.json -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "每層列印起始點的 Y 座標" - -#: fdmprinter.def.json -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 坐標。" - -#: fdmprinter.def.json -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "回抽時 Z 抬升" - -#: fdmprinter.def.json -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 "每當回抽完成時,列印平台會降低以便在噴頭和列印品之間形成空隙。它可以防止噴頭在空跑過程中撞到列印品,降低將列印品從列印平台撞掉的幾率。" - -#: fdmprinter.def.json -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "僅在已列印部分上 Z 抬升" - -#: fdmprinter.def.json -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 抬升。" - -#: fdmprinter.def.json -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Z 抬升高度" - -#: fdmprinter.def.json -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "執行 Z 抬升的高度差。" - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "擠出機切換後的 Z 抬升" - -#: fdmprinter.def.json -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 "當機器從一個擠出機切換到另一個時,列印平台會降低以便在噴頭和列印品之間形成空隙。這將防止噴頭在列印品外部留下滲出物。" - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "擠出機切換後的 Z 抬升高度" - -#: fdmprinter.def.json -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "擠出機切換後進行 Z 抬升的高度差。" - -#: fdmprinter.def.json -msgctxt "cooling label" -msgid "Cooling" -msgstr "冷卻" - -#: fdmprinter.def.json -msgctxt "cooling description" -msgid "Cooling" -msgstr "冷卻" - -#: fdmprinter.def.json -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "開啟列印冷卻" - -#: fdmprinter.def.json -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 "列印時啟用列印冷卻風扇。風扇可以在列印時間較短的層和橋接/突出部分提高列印品質。" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "風扇轉速" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "列印冷卻風扇旋轉的速度。" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "標準風扇轉速" - -#: fdmprinter.def.json -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 "在單層列印時間大於門檻值時,風扇運轉的速度。當單層列印時間小於門檻值時,系統會根據單層列印時間決定使用的風扇轉速。列印時間愈短,所使用的風扇轉速愈快,但不會超過最大風扇轉速。" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "最大風扇轉速" - -#: fdmprinter.def.json -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 "在“最短單層列印時間”時,風扇運轉的速度。當單層列印時間小於門檻值時,系統會根據單層列印時間決定使用的風扇轉速。列印時間愈短,所使用的風扇轉速愈快,但不會超過最大風扇轉速。" - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "標準風扇轉速門檻值" - -#: fdmprinter.def.json -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 "使用標準風扇轉速的單層列印時間門檻值。如果單層列印時間大於這個門檻值,就使用標準風扇轉速。如果單層列印時間比這個門檻值短,系統會根據單層列印時間決定使用的風扇轉速。列印時間愈短,所使用的風扇轉速愈快,但不會超過最大風扇轉速。" - -#: fdmprinter.def.json -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "起始層風扇轉速" - -#: fdmprinter.def.json -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 "列印起始層時的風扇轉速。在隨後的層中,風扇轉速會逐漸增加到對應層所設定的速度。" - -#: fdmprinter.def.json -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "標準風扇轉速(高度)" - -#: fdmprinter.def.json -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 "使用標準風扇轉速的高度。風扇轉速會從起始轉速逐漸增加,在此高度達到標準風扇轉速。" - -#: fdmprinter.def.json -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "標準風扇轉速(層)" - -#: fdmprinter.def.json -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 "要使用標準風扇轉速的層。如果標準風扇轉速高度已被設定,這個值將使用計算出來後取四捨五入的整數值。" - -#: fdmprinter.def.json -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "最短單層列印時間" - -#: fdmprinter.def.json -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 "單層列印時間的下限。這會迫使印表機減速,以便在單層列印中消耗此處所規定的時間。這會讓模型充分冷卻後再列印下一層。如果“噴頭抬升”功能被關閉,為了不違反“最低列印速度”,單層列印時間仍有可能低於此設定值。" - -#: fdmprinter.def.json -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "最低列印速度" - -#: fdmprinter.def.json -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 "列印速度的下限,限制因“最短單層列印時間”的減速。當印表機減速過多時,噴頭中的壓力將過低並導致較差的列印品質。" - -#: fdmprinter.def.json -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "噴頭抬升" - -#: fdmprinter.def.json -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 "當“最短單層列印時間”受到“最低列印速度”限制時,將噴頭從模型上抬高,並等候達到最短單層列印時間。" - -#: fdmprinter.def.json -msgctxt "support label" -msgid "Support" -msgstr "支撐" - -#: fdmprinter.def.json -msgctxt "support description" -msgid "Support" -msgstr "支撐" - -#: fdmprinter.def.json -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "產生支撐" - -#: fdmprinter.def.json -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 "在模型的突出部分產生支撐結構。若不這樣做,這些部分在列印時會倒塌。" - -#: fdmprinter.def.json -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "支撐用擠出機" - -#: fdmprinter.def.json -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "用於列印支撐的擠出機組。在多擠出機情況下適用。" - -#: fdmprinter.def.json -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "支撐填充擠出機" - -#: fdmprinter.def.json -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 "用於列印支撐填充的擠出機組。在多擠出機情況下適用。" - -#: fdmprinter.def.json -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "第一層支撐擠出機" - -#: fdmprinter.def.json -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 "用於列印支撐填充第一層的擠出機組。在多擠出機情況下適用。" - -#: fdmprinter.def.json -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "支撐介面擠出機" - -#: fdmprinter.def.json -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 "用於列印支撐頂板和底板的擠出機組。在多擠出機情況下適用。" - -#: fdmprinter.def.json -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "支撐頂板擠出機" - -#: fdmprinter.def.json -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 "用於列印支撐頂板的擠出機組。在多擠出機情況下適用。" - -#: fdmprinter.def.json -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "支撐底板擠出機" - -#: fdmprinter.def.json -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 "用於列印支撐底板的擠出機組。在多擠出機情況下適用。" - -#: fdmprinter.def.json -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "支撐結構" - -#: fdmprinter.def.json -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 "選擇產生支撐的技術。「正常」支撐會在突出部份的下方產生支撐結構,並重直向下延伸。「樹狀」支撐會朝突出部份長出樹枝用樹枝末端支撐模型,並讓分枝在模型周圍爬行盡可能地支撐模型。" - -#: fdmprinter.def.json -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "正常" - -#: fdmprinter.def.json -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "樹狀" - -#: fdmprinter.def.json -msgctxt "support_tree_angle label" -msgid "Tree Support Branch Angle" -msgstr "樹狀支撐樹枝角度" - -#: fdmprinter.def.json -msgctxt "support_tree_angle description" -msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "樹枝的角度。使用較小的角度讓樹枝較垂直且較平穩。使用較大的角度則可以支撐較大的範圍。" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance label" -msgid "Tree Support Branch Distance" -msgstr "樹狀支撐樹枝距離" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_distance description" -msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -msgstr "樹支與模型接觸的點與點之間的間隔距離。較小的距離會讓支撐和模型有較多的接觸點,會有較佳的突出部分但支撐也較難移除。" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter label" -msgid "Tree Support Branch Diameter" -msgstr "樹狀支撐樹枝直徑" - -#: fdmprinter.def.json -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 "樹狀支撐中最細樹枝的直徑。越粗的樹枝越堅固。底部的樹枝會比這更粗。" - -#: fdmprinter.def.json -msgctxt "support_tree_branch_diameter_angle label" -msgid "Tree Support Branch Diameter Angle" -msgstr "樹狀支撐樹枝外徑角度" - -#: fdmprinter.def.json -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 可讓整條樹枝的粗細一致, 而有點角度可增加樹狀支撐的穩定性。" - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution label" -msgid "Tree Support Collision Resolution" -msgstr "樹狀支撐碰撞計算精度" - -#: fdmprinter.def.json -msgctxt "support_tree_collision_resolution description" -msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -msgstr "計算避免碰撞模型的計算精度。設定較低的值可產生較精確的樹狀支撐,這樣的支撐問題較少但會嚴重的增加切片所需的時間。" - -#: fdmprinter.def.json -msgctxt "support_type label" -msgid "Support Placement" -msgstr "支撐位置" - -#: fdmprinter.def.json -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 "調整支撐結構的位置。位置可以設定為“接觸列印平台”或“每個地方”。當設定為“每個地方”時,在模型上也會列印支撐結構。" - -#: fdmprinter.def.json -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "接觸列印平台" - -#: fdmprinter.def.json -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "每個地方" - -#: fdmprinter.def.json -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "支撐突出角度" - -#: fdmprinter.def.json -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° 時,不提供任何支撐。" - -#: fdmprinter.def.json -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "支撐列印樣式" - -#: fdmprinter.def.json -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 "支撐結構的列印樣式。有不同的選項可產生堅固的或容易清除的支撐。" - -#: fdmprinter.def.json -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "線條" - -#: fdmprinter.def.json -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "網格" - -#: fdmprinter.def.json -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "三角形" - -#: fdmprinter.def.json -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "同心" - -#: fdmprinter.def.json -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "鋸齒狀" - -#: fdmprinter.def.json -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "十字形" - -#: fdmprinter.def.json -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "螺旋形" - -#: fdmprinter.def.json -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "支撐牆壁線條數量" - -#: fdmprinter.def.json -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 "支撐填充的牆壁數。增加牆壁能讓支撐填充更加可靠並能更佳的支撐突出部分,但會增長列印時間和使用的線材。" - -#: fdmprinter.def.json -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "連接支撐線條" - -#: fdmprinter.def.json -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 "將支撐線條的末端連接在一起。啟用此設定能讓支撐更堅固並減少擠出不足的問題,但會花費更多的線材。" - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "連接支撐鋸齒狀" - -#: fdmprinter.def.json -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "連接鋸齒狀。這將增加鋸齒狀支撐結構的强度。" - -#: fdmprinter.def.json -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "支撐密度" - -#: fdmprinter.def.json -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 "調整支撐結構的密度。較高的值會實現更好的突出部分,但支撐將更加難以移除。" - -#: fdmprinter.def.json -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "支撐線條間距" - -#: fdmprinter.def.json -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "支撐結構線條之間的距離。該設定通過支撐密度計算。" - -#: fdmprinter.def.json -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "支撐起始層線條間距" - -#: fdmprinter.def.json -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 "支撐結構起始層線條之間的距離。該設定通過支撐密度計算。" - -#: fdmprinter.def.json -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "支撐填充線條方向" - -#: fdmprinter.def.json -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 度。" - -#: fdmprinter.def.json -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "啟用支撐邊緣" - -#: fdmprinter.def.json -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 "在第一層的支撐填充區域內產生邊緣。這些邊緣列印在支撐下面,而不是支撐的周圍。啟用此設定可增加支撐對列印平台的附著力。" - -#: fdmprinter.def.json -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "支撐邊緣寬度" - -#: fdmprinter.def.json -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 "列印在支撐下面邊緣的寬度。較大的邊緣會加強對列印平台的附著力,但會需要一些額外的線材。" - -#: fdmprinter.def.json -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "支撐邊緣線條數量" - -#: fdmprinter.def.json -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 "支撐邊緣所使用的線條數量。邊緣使用較多的線條會加強對列印平台的附著力,但會需要一些額外的線材。" - -#: fdmprinter.def.json -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "支撐 Z 間距" - -#: fdmprinter.def.json -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. This value is rounded up to a multiple of the layer height." -msgstr "支撐結構距離模型頂部/底部的距離。這一個小的差距使得它更容易被去除,這個數值會被無條件進位到層高的倍數。" - -#: fdmprinter.def.json -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "支撐頂部間距" - -#: fdmprinter.def.json -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "從支撐頂部到列印品的距離。" - -#: fdmprinter.def.json -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "支撐底部間距" - -#: fdmprinter.def.json -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "從列印品到支撐底部的距離。" - -#: fdmprinter.def.json -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "支撐 X/Y 間距" - -#: fdmprinter.def.json -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "支撐結構在 X/Y 方向距列印品的距離。" - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "支撐間距優先權" - -#: fdmprinter.def.json -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 間距來關閉此選項。" - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y 優先 Z" - -#: fdmprinter.def.json -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z 優先 X/Y" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "最小支撐 X/Y 間距" - -#: fdmprinter.def.json -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "支撐結構在 X/Y 方向與突出部分的間距。" - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "支撐階梯高度" - -#: fdmprinter.def.json -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 "模型上的支撐階梯狀底部的階梯高度。較低的值會使支撐更難於移除,但過高的值可能導致不穩定的支撐結構。設為零可以關閉階梯狀行為。" - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "支撐階梯最大寬度" - -#: fdmprinter.def.json -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 "停留在模型上的支撐階梯狀底部的最大階梯寬度。較低的值會使支撐更難於移除,但過高的值可能導致不穩定的支撐結構。" - -#: fdmprinter.def.json -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "支撐階梯最小傾角" - -#: fdmprinter.def.json -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 "階梯作用區域的最小斜率。較低的值應能讓較淺的斜面上的支撐更容易移除,但過低的值可能會在模型的其它部位導致與直覺相反的結果。" - -#: fdmprinter.def.json -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "支撐結合距離" - -#: fdmprinter.def.json -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 方向的最大距離。當結構與結構靠近到小於此值時,這些結構將合併為一個。" - -#: fdmprinter.def.json -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "支撐水平擴展" - -#: fdmprinter.def.json -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 "套用到每一層所有支撐多邊形的偏移量。正值可以讓支撐區域更平滑,並產生更為牢固的支撐。" - -#: fdmprinter.def.json -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "支撐填充層厚度" - -#: fdmprinter.def.json -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 "支撐填充線材每層的厚度。該值應為層高的倍數,否則數值會被四捨五入到層高的倍數。" - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "漸進支撐填充步階" - -#: fdmprinter.def.json -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 "從支撐頂層往下,填充密度減半的次數。越靠近頂層的填充密度越高,最高密度為支撐填充密度。" - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "漸進支撐填充步階高度" - -#: fdmprinter.def.json -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "支撐層密度減半的厚度。" - -#: fdmprinter.def.json -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "最小支撐面積" - -#: fdmprinter.def.json -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 "支撐區域的最小面積大小。面積小於此值的區域將不會產生支撐。" - -#: fdmprinter.def.json -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "啟用支撐介面" - -#: fdmprinter.def.json -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 "在模型和支撐之間產生一個密度較高的介面。這會在承載模型的支撐頂部和座落在模型上的支撐底部創造出一個介面層。" - -#: fdmprinter.def.json -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "啟用支撐頂板" - -#: fdmprinter.def.json -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 "在支撐頂部和模型之間產生一個密集的平板。這會在模型和支撐之間形成一個介面層。" - -#: fdmprinter.def.json -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "啟用支撐底板" - -#: fdmprinter.def.json -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 "在支撐底部和模型之間產生一個密集的平板。這會在模型和支撐之間形成一個介面層。" - -#: fdmprinter.def.json -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "支撐介面厚度" - -#: fdmprinter.def.json -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 "支撐與模型在底部或頂部接觸的介面厚度。" - -#: fdmprinter.def.json -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "支撐頂板厚度" - -#: fdmprinter.def.json -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 "支撐頂板的厚度。這會控制承載模型的支撐頂部密集層的數量。" - -#: fdmprinter.def.json -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "支撐底板厚度" - -#: fdmprinter.def.json -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 "支撐底板的厚度。這會控制座落在模型上的支撐底部密集層的數量。" - -#: fdmprinter.def.json -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "支撐介面解析度" - -#: fdmprinter.def.json -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 "在檢查支撐上方或下方是否有模型時,所採用步階的高度。值越低切片速度越慢,而較高的值會導致在部分應有支撐介面的位置列印一般的支撐。" - -#: fdmprinter.def.json -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 "調整列印填充的密度。" #: fdmprinter.def.json msgctxt "support_interface_density description" @@ -4160,898 +142,19 @@ msgid "Adjusts the density of the roofs and floors of the support structure. A h msgstr "調整支撐結構頂板和底板的密度。較高的值會實現更好的突出部分,但支撐將更加難以移除。" #: fdmprinter.def.json -msgctxt "support_roof_density label" -msgid "Support Roof 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 "調整支撐結構的密度。較高的值會實現更好的突出部分,但支撐將更加難以移除。" #: fdmprinter.def.json -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 "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "調整所使用線材的直徑。這個數值要等同於所使用線材的直徑。" #: fdmprinter.def.json -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "支撐頂板線條距離" - -#: fdmprinter.def.json -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 "支撐頂板線條之間的距離。該設定是通過支撐頂板密度計算,但可以單獨調整。" - -#: fdmprinter.def.json -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "支撐底板密度" - -#: fdmprinter.def.json -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 "支撐結構底板的密度。較高的值會讓支撐更容易附著在模型上。" - -#: fdmprinter.def.json -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "支撐底板線條距離" - -#: fdmprinter.def.json -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 "支撐底板線條之間的距離。該設定是通過支撐底板密度計算,但可以單獨調整。" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "支撐介面列印樣式" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "支撐與模型之間介面的列印樣式。" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "線條" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "網格" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "三角形" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "同心" - -#: fdmprinter.def.json -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "鋸齒狀" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "支撐頂板列印樣式" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "列印支撐頂板的列印樣式。" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "直線" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "網格" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "三角形" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "同心" - -#: fdmprinter.def.json -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "鋸齒狀" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "支撐底板列印樣式" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "列印支撐底板的列印樣式。" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "線條" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "網格" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "三角形" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "同心" - -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "鋸齒狀" - -#: fdmprinter.def.json -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "最小支撐介面面積" - -#: fdmprinter.def.json -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 "支撐介面區域的最小面積大小。面積小於此值的區域將列印一般支撐。" - -#: fdmprinter.def.json -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "最小支撐頂板面積" - -#: fdmprinter.def.json -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 "支撐頂板區域的最小面積大小。面積小於此值的區域將列印一般支撐。" - -#: fdmprinter.def.json -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "最小支撐底板面積" - -#: fdmprinter.def.json -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 "支撐底板區域的最小面積大小。面積小於此值的區域將列印一般支撐。" - -#: fdmprinter.def.json -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "支撐介面水平擴展" - -#: fdmprinter.def.json -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "套用到支撐介面多邊形的偏移量。" - -#: fdmprinter.def.json -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "支撐頂板水平擴展" - -#: fdmprinter.def.json -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "套用到支撐頂板多邊形的偏移量。" - -#: fdmprinter.def.json -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "支撐底板水平擴展" - -#: fdmprinter.def.json -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "套用到支撐底板多邊形的偏移量。" - -#: fdmprinter.def.json -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "支撐介面線條方向" - -#: fdmprinter.def.json -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 度交替)。" - -#: fdmprinter.def.json -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "支撐頂板線條方向" - -#: fdmprinter.def.json -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 度交替)。" - -#: fdmprinter.def.json -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "支撐底板線條方向" - -#: fdmprinter.def.json -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 度交替)。" - -#: fdmprinter.def.json -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "改變風扇轉速" - -#: fdmprinter.def.json -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "啟用後,列印支撐上方表層的風扇轉速會發生變化。" - -#: fdmprinter.def.json -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "受支撐表層風扇轉速" - -#: fdmprinter.def.json -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 "在支撐上方列印表層區域時使用的風扇轉速百分比。使用高風扇轉速可以使支撐更容易移除。" - -#: fdmprinter.def.json -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "使用塔型支撐" - -#: fdmprinter.def.json -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 "使用專門的塔來支撐較小的突出區域。這些塔的直徑比它們所支撐的區域要大。在靠近突出部分時,塔的直徑減小,形成頂板。" - -#: fdmprinter.def.json -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "塔直徑" - -#: fdmprinter.def.json -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "特殊塔的直徑。" - -#: fdmprinter.def.json -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "最大塔型支撐直徑" - -#: fdmprinter.def.json -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 方向的最大直徑。" - -#: fdmprinter.def.json -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "塔頂板角度" - -#: fdmprinter.def.json -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 "塔頂角度。該值越高,塔頂越尖,值越低,塔頂越平。" - -#: fdmprinter.def.json -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "下拉式支撐網格" - -#: fdmprinter.def.json -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 "在支撐網格下方的所有位置進行支撐,讓支撐網格中没有突出部分。" - -#: fdmprinter.def.json -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "場景具有支撐網格" - -#: fdmprinter.def.json -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "場景中有支撐網格存在。此設定由 Cura 控制。" - -#: fdmprinter.def.json -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "列印平台附著" - -#: fdmprinter.def.json -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "附著" - -#: fdmprinter.def.json -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "啟用少量裝填" - -#: fdmprinter.def.json -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 "列印前是否裝填少量的線材。開啟此設定將確保列印前擠出機的噴頭處已準備好線材。列印邊緣或外圍也可作為裝填用途,這種情况下關閉此設定可以節省時間。" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "擠出機 X 軸起始位置" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "列印開始時,噴頭在 X 軸上初始位置。" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "擠出機 Y 軸起始位置" - -#: fdmprinter.def.json -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "列印開始時,噴頭在 Y 軸座標上初始位置。" - -#: fdmprinter.def.json -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "列印平台附著類型" - -#: fdmprinter.def.json -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 "幫助改善擠出裝填以及與列印平台附著的不同選項。邊緣會在模型基座周圍添加單層平面區域,以防止翹曲。木筏會在模型底下添加一個有頂板的厚網格。外圍是在模型四周列印的一條線,但並不與模型連接。" - -#: fdmprinter.def.json -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "外圍" - -#: fdmprinter.def.json -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "邊緣" - -#: fdmprinter.def.json -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "木筏" - -#: fdmprinter.def.json -msgctxt "adhesion_type option none" -msgid "None" -msgstr "無" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "列印平台附著擠出機" - -#: fdmprinter.def.json -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "用於列印外圍/邊緣/木筏的擠出機組。在多擠出機情況下適用。" - -#: fdmprinter.def.json -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "外圍線條數量" - -#: fdmprinter.def.json -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 將關閉外圍。" - -#: fdmprinter.def.json -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "外圍間距" - -#: fdmprinter.def.json -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" -"這是最小距離,多個外圍線條將從此距離向外延伸。" - -#: fdmprinter.def.json -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "外圍/邊緣最小長度" - -#: fdmprinter.def.json -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,則將忽略此選項。" - -#: fdmprinter.def.json -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "邊緣寬度" - -#: fdmprinter.def.json -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 "模型到最外側邊緣線的距離。較大的邊緣可增强與列印平台的附著,但也會減少有效列印區域。" - -#: fdmprinter.def.json -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "邊緣線條數量" - -#: fdmprinter.def.json -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 "邊緣所用線條數量。更多邊緣線條可增强與列印平台的附著,但也會減少有效列印區域。" - -#: fdmprinter.def.json -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "邊緣間距" - -#: fdmprinter.def.json -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 "第一條邊緣線和列印品第一層輪廓之間的水平距離。 一個小間隙可以讓邊緣更容易移除,同時仍然具有散熱優點。" - -#: fdmprinter.def.json -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "邊綠取代支撐" - -#: fdmprinter.def.json -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 "強制在模型周圍列印邊緣,即使該空間已被支撐佔用。在第一層的部份區域會以邊綠取代支撐。" - -#: fdmprinter.def.json -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "僅在外部列印邊緣" - -#: fdmprinter.def.json -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 "僅在模型外部列印邊緣。這會減少你之後需要移除的邊緣量,而不會過度影響列印平台附著。" - -#: fdmprinter.def.json -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "木筏額外邊緣" - -#: fdmprinter.def.json -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 "如果啟用了木筏,在模型周圍也會增加額外邊緣。增大這個邊緣將產生更強的木筏,不過也會使用更多的線材,並減少印表機的可列印面積。" - -#: fdmprinter.def.json -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "木筏平滑處理" - -#: fdmprinter.def.json -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 "此設定控制木筏輪廓凹角導圓角的量。向內的轉角會被導為圓弧,其半徑等於此設定值。此設定同時可以移除木筏輪廓中半徑小於此設定值的圓孔。" - -#: fdmprinter.def.json -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "木筏間隙" - -#: fdmprinter.def.json -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 "木筏最後一層與模型第一層之間的間隙。只有第一層被提高了這個距離,以便降低木筏和模型之間的附著。讓木筏更容易剝離。" - -#: fdmprinter.def.json -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "起始層 Z 重疊" - -#: fdmprinter.def.json -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 "使模型的第一層和第二層在 Z 方向上重疊以補償在空隙中損失的線材。第一個模型層上方的所有模型將向下移動此重疊量。" - -#: fdmprinter.def.json -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "木筏頂部層數" - -#: fdmprinter.def.json -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 "位於木筏中層上方的頂部層數。這是承載模型的完全填充層。兩層會產生比一層更平滑的頂部表面。" - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "木筏頂部層厚" - -#: fdmprinter.def.json -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "木筏頂部單層的厚度。" - -#: fdmprinter.def.json -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "木筏頂部線寬" - -#: fdmprinter.def.json -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 "木筏頂部表面的線寬。這些線條可以是細線,以便讓木筏頂部變得平滑。" - -#: fdmprinter.def.json -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "木筏頂部間距" - -#: fdmprinter.def.json -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 "木筏頂部線條之間的距離。間距應等於線寬,以便打造堅固表面。" - -#: fdmprinter.def.json -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "木筏中層厚度" - -#: fdmprinter.def.json -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "木筏中層的層厚。" - -#: fdmprinter.def.json -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "木筏中層線寬" - -#: fdmprinter.def.json -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 "木筏中層的線寬。第二層擠出多一些會讓線條附著在列印平台上。" - -#: fdmprinter.def.json -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "木筏中層間距" - -#: fdmprinter.def.json -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 "木筏中層線條之間的距離。中層的間距應足夠寬,同時也要足夠密集,以便支撐木筏頂部。" - -#: fdmprinter.def.json -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "木筏底部厚度" - -#: fdmprinter.def.json -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 "木筏底部的層厚。本層應為與印表機列印平台穩固附著厚實的一層。" - -#: fdmprinter.def.json -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "木筏底部線寬" - -#: fdmprinter.def.json -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 "木筏底部的線寬。這些線條應該是粗線,以便協助列印平台附著。" - -#: fdmprinter.def.json -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "木筏底部間距" - -#: fdmprinter.def.json -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 "木筏底部線條之間的距離。寬間距方便讓木筏從列印平台移除。" - -#: fdmprinter.def.json -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "木筏列印速度" - -#: fdmprinter.def.json -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "列印木筏的速度。" - -#: fdmprinter.def.json -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "木筏頂部列印速度" - -#: fdmprinter.def.json -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 "列印木筏頂部的速度。這些層應以稍慢的速度列印,以便噴頭緩慢地整平臨近的表面線條。" - -#: fdmprinter.def.json -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "木筏中層列印速度" - -#: fdmprinter.def.json -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 "列印木筏中層的速度。這些層應以很慢的速度列印,因為噴頭所出的線材量非常高。" - -#: fdmprinter.def.json -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "木筏底部列印速度" - -#: fdmprinter.def.json -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 "列印木筏底部的速度。這些層應以很慢的速度列印,因為噴頭所出的線材量非常高。" - -#: fdmprinter.def.json -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "木筏列印加速度" - -#: fdmprinter.def.json -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "列印木筏的加速度。" - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "木筏頂部列印加速度" - -#: fdmprinter.def.json -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "列印木筏頂部的加速度。" - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "木筏中層列印加速度" - -#: fdmprinter.def.json -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "列印木筏中層的加速度。" - -#: fdmprinter.def.json -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "木筏底部列印加速度" - -#: fdmprinter.def.json -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "列印木筏底部的加速度。" - -#: fdmprinter.def.json -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "木筏列印加加速度" - -#: fdmprinter.def.json -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "列印木筏的加加速度。" - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "木筏頂部列印加加速度" - -#: fdmprinter.def.json -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "列印木筏頂部的加加速度。" - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "木筏中層列印加加速度" - -#: fdmprinter.def.json -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "列印木筏中層的加加速度。" - -#: fdmprinter.def.json -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "木筏底部列印加加速度" - -#: fdmprinter.def.json -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "列印木筏底部的加加速度。" - -#: fdmprinter.def.json -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "木筏風扇轉速" - -#: fdmprinter.def.json -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "木筏的風扇轉速。" - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "木筏頂部風扇轉速" - -#: fdmprinter.def.json -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "木筏頂部的風扇轉速。" - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "木筏中層風扇轉速" - -#: fdmprinter.def.json -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "木筏中層的風扇轉速。" - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "木筏底部風扇轉速" - -#: fdmprinter.def.json -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "木筏底部的風扇轉速。" - -#: fdmprinter.def.json -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "雙重擠出機" - -#: fdmprinter.def.json -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "用於多擠出機情況下的設定。" - -#: fdmprinter.def.json -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "啟用換料塔" - -#: fdmprinter.def.json -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "在列印件旁邊印一個塔,用在每次切換噴頭後填充線材。" - -#: fdmprinter.def.json -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "換料塔尺寸" - -#: fdmprinter.def.json -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "換料塔的寬度。" - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "換料塔最小體積" - -#: fdmprinter.def.json -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "為了清除足夠的線材,換料塔每層的最小體積。" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "換料塔 X 位置" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "換料塔位置的 X 座標。" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "換料塔 Y 位置" - -#: fdmprinter.def.json -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "換料塔位置的 Y 座標。" - -#: fdmprinter.def.json -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 "調整支撐結構的位置。位置可以設定為“接觸列印平台”或“每個地方”。當設定為“每個地方”時,在模型上也會列印支撐結構。" #: fdmprinter.def.json msgctxt "prime_tower_wipe_enabled description" @@ -5059,244 +162,14 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "在一個噴頭列印換料塔後,在換料塔上擦拭另一個噴頭滲出的線材。" #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -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 "當機器從一個擠出機切換到另一個時,列印平台會降低以便在噴頭和列印品之間形成空隙。這將防止噴頭在列印品外部留下滲出物。" #: fdmprinter.def.json -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "即使模型沒有開啟邊緣功能,裝填塔也列印邊緣以提供額外的附著力。目前無法與「木筏」的平台附著類型同時使用。" - -#: fdmprinter.def.json -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "啟用擦拭牆" - -#: fdmprinter.def.json -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 "啟用外部擦拭牆。這將在模型周圍創建一個外殼,如果與第一個噴頭處於相同的高度,則可能會擦拭第二個噴頭。" - -#: fdmprinter.def.json -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "擦拭牆角度" - -#: fdmprinter.def.json -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度為水平。較小的角度擦拭效果較好,但是要用更多的線材。" - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "擦拭牆距離" - -#: fdmprinter.def.json -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "擦拭牆與模型間的水平(X/Y 方向)距離。" - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "噴頭切換回抽距離" - -#: fdmprinter.def.json -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 表示沒有回抽。這值通常和加熱區的長度相同。" - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "噴頭切換回抽速度" - -#: fdmprinter.def.json -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 "回抽線材的速度。較高的回抽速度效果較好,但回抽速度過高可能導致線材磨損。" - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "噴頭切換回抽速度" - -#: fdmprinter.def.json -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "噴頭切換回抽期間線材回抽的速度。" - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "噴頭切換裝填速度" - -#: fdmprinter.def.json -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "噴頭切換回抽後線材被推回的速度。" - -#: fdmprinter.def.json -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "噴頭切換額外裝填量" - -#: fdmprinter.def.json -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "噴頭切換後額外裝填的線材量。" - -#: fdmprinter.def.json -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "網格修復" - -#: fdmprinter.def.json -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "讓網格更適合 3D 列印。" - -#: fdmprinter.def.json -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "合併重疊體積" - -#: fdmprinter.def.json -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 "忽略因網格內部重疊產生的幾何空間,並將多個重疊體積作為一個列印。這可能會導致意外的內部孔洞消失。" - -#: fdmprinter.def.json -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "移除所有孔洞" - -#: fdmprinter.def.json -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 "移除每層的孔洞,僅保留外部形狀。這會忽略任何不可見的內部幾何。但是,也會忽略可從上方或下方看到的層孔洞。" - -#: fdmprinter.def.json -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "廣泛縫合" - -#: fdmprinter.def.json -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 "廣泛縫合嘗試通過接觸多邊形來閉合孔洞,以此縫合網格中的開孔。此選項可能會產生大量的處理時間。" - -#: fdmprinter.def.json -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "保持斷開表面" - -#: fdmprinter.def.json -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 時的最後選擇。" - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "合併網格重疊" - -#: fdmprinter.def.json -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "使彼此接觸的網格稍微重疊。使他們能更緊密地結合在一起。" - -#: fdmprinter.def.json -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "刪除網格交集部分" - -#: fdmprinter.def.json -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 "刪除多個網格彼此重疊的區域。如果合併的雙重線材對象彼此重疊,則可以使用此選項。" - -#: fdmprinter.def.json -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "交互移除網格重疊部分" - -#: fdmprinter.def.json -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 "將網格重疊的部分,交互的在每一層中歸屬到不同的網格,以便重疊的網格交織在一起。關閉此設定將使其中一個網格物體獲得重疊中的所有體積,而從其他網格物體中移除。" - -#: fdmprinter.def.json -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "移除空的第一層" - -#: fdmprinter.def.json -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 "如果可列印的第一層下方有空的層,將其移除。假如「切片公差」設定為「排除」或「中間」,關閉此設定可能會導致空的第一層。" - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "最高解析度" - -#: fdmprinter.def.json -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 的速度,並通過移除無法處理的網格細節來增加切片速度。" - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "最大空跑解析度" - -#: fdmprinter.def.json -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,但可能造成噴頭迴避模型時較不精確。" - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "最大偏差值" - -#: fdmprinter.def.json -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 會較小。最大偏差是最高解析度的限制,所以當兩者衝突時,會以最大偏差成立為優先。" - -#: fdmprinter.def.json -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "" - -#: fdmprinter.def.json -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 "" - -#: fdmprinter.def.json -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "特殊模式" - -#: fdmprinter.def.json -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "以非傳統的方式列印你的模型。" - -#: fdmprinter.def.json -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "列印順序" - -#: fdmprinter.def.json -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 "所有" #: fdmprinter.def.json msgctxt "print_sequence option all_at_once" @@ -5304,1273 +177,19 @@ msgid "All at Once" msgstr "同時列印" #: fdmprinter.def.json -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -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 "影響列印解析度的所有設定。這些設定會對品質(和列印時間)產生顯著影響" #: fdmprinter.def.json -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "填充網格" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "交錯額外牆壁" #: fdmprinter.def.json -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 "使用此網格修改與其重疊的其他網格的填充。利用此網格的區域替換其他網格的填充區域。建議僅為此網格列印一個壁,而不列印頂部/底部表層。" - -#: fdmprinter.def.json -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "網格處理等級" - -#: fdmprinter.def.json -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 "決定多個網格重疊填充的優先權. 多個重疊填充區域會採取網格設定之最高值. 較高的填充網格設定會改動較低網格及普通網格之填充." - -#: fdmprinter.def.json -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "切割網格" - -#: fdmprinter.def.json -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 "將此網格的體積限制在其他網格內。你可以使用它來制作採用不同的設定以及完全不同的擠出機的網格列印的特定區域。" - -#: fdmprinter.def.json -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "模具" - -#: fdmprinter.def.json -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 "將模型作為模具列印,可進行鑄造,以便獲取與列印平台上的模型類似的模型。" - -#: fdmprinter.def.json -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "最小模具寬度" - -#: fdmprinter.def.json -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "模具外部與模型外部的最小距離." - -#: fdmprinter.def.json -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "模具頂板高度" - -#: fdmprinter.def.json -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "用於列印模具的模型水平部分上方的高度。" - -#: fdmprinter.def.json -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "模具角度" - -#: fdmprinter.def.json -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° 將使模型的外部遵循模型的輪廓。" - -#: fdmprinter.def.json -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "支撐網格" - -#: fdmprinter.def.json -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "使用此網格指定支撐區域。可用於產生支撐結構。" - -#: fdmprinter.def.json -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "防突出網格" - -#: fdmprinter.def.json -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 "使用此網格指定模型的任何部分不應被檢測為突出的區域。可用於移除不需要的支撐結構。" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "表面模式" - -#: fdmprinter.def.json -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 "將模型作為僅表面、一個空間或多個具有鬆散表面的空間處理。“正常”僅列印封閉的空間。“表面”列印模型表面的單壁,没有填充,也没有頂部/底部表層。“兩者”將封閉空間正常列印,並將任何剩餘多邊形作為表面列印。" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "正常" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "表面" - -#: fdmprinter.def.json -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "兩者" - -#: fdmprinter.def.json -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "螺旋列印外輪廓" - -#: fdmprinter.def.json -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 軸穩定增動。該功能會將一個實心模型轉變為具有實體底部的單壁列印。只有在當每一層只包含一個封閉面時才應啟用此功能。" - -#: fdmprinter.def.json -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "平滑螺旋輪廓" - -#: fdmprinter.def.json -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 縫應在列印品上幾乎看不到,但在分層檢視中仍然可見)。請注意,平滑操作將傾向於模糊精細的表面細節。" - -#: fdmprinter.def.json -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "相對模式擠出" - -#: fdmprinter.def.json -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 之前都是使用絕對模式。" - -#: fdmprinter.def.json -msgctxt "experimental label" -msgid "Experimental" -msgstr "實驗性" - -#: fdmprinter.def.json -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "尚未完全的功能。" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "切片公差" - -#: fdmprinter.def.json -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 "切片層的垂直方向公差。切片層的輪廓通常是採「中間」的方式,取每一層厚度中間的橫切面來產生。選擇「排除」,讓列印區域在該層厚度內的所有高度都維持在模型內。或是選擇「包含」,列印區域將包住該層模型。「包含」保留了最多的細節,「排除」選擇最合身的位置,而「中間」維持最接近原始表面。" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "中間" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "排除" - -#: fdmprinter.def.json -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "包含" - -#: fdmprinter.def.json -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "頂部表層線寬" - -#: fdmprinter.def.json -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "列印頂部區域單一線寬。" - -#: fdmprinter.def.json -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "頂部表層列印樣式" - -#: fdmprinter.def.json -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "最頂部列印樣式。" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "線條" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "同心" - -#: fdmprinter.def.json -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "鋸齒狀" - -#: fdmprinter.def.json -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "頂層表面單一化列印順序" - -#: fdmprinter.def.json -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 "再列印頂層表面線條時,命令相鄰線條於單方向重疊. 雖然會花更多時間列印,但會使平面更平整." - -#: fdmprinter.def.json -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "頂部表層線條方向" - -#: fdmprinter.def.json -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 度)。" - -#: fdmprinter.def.json -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "填充空跑最佳化" - -#: fdmprinter.def.json -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 "當功能啟用時,填充線條的列印順序會對降低空跑距離做最佳化。所能減少的空跑時間取決於模型、填充樣式、填充密度等。請注意,對於有很多小型填充區域的模型,切片時間可能會大量增加。" - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature label" -msgid "Auto Temperature" -msgstr "自動溫度" - -#: fdmprinter.def.json -msgctxt "material_flow_dependent_temperature description" -msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -msgstr "根據每一層的平均流速自動更改每層的溫度。" - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "流量溫度圖" - -#: fdmprinter.def.json -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "數據連接線材流量(mm3/s)到溫度(攝氏)。" - -#: fdmprinter.def.json -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "最小多邊形周長" - -#: fdmprinter.def.json -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 模型。" - -#: fdmprinter.def.json -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "將支撐拆成塊狀" - -#: fdmprinter.def.json -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 "省略支撐的部分連接線,讓支撐結構更容易拆除。此設定適用於鋸齒狀的支撐樣式。" - -#: fdmprinter.def.json -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "支撐塊大小" - -#: fdmprinter.def.json -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 毫米省略一次連接線,讓支撐結構更容易拆除。" - -#: fdmprinter.def.json -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "支撐塊線條數" - -#: fdmprinter.def.json -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 個連接線省略一次,讓支撐結構更容易拆除。" - -#: fdmprinter.def.json -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "啟用防風罩" - -#: fdmprinter.def.json -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 "這將在模型周圍建立一個牆壁留住(熱)空氣並遮住外部氣流。對於容易翹曲的線材非常有用。" - -#: fdmprinter.def.json -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "防風罩 X/Y 距離" - -#: fdmprinter.def.json -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "防風罩與模型在 X/Y 軸方向的距離。" - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "防風罩限高" - -#: fdmprinter.def.json -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 "設定防風罩的高度。選擇防風罩與模型同高或只列印到限制的高度。" - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "完整" - -#: fdmprinter.def.json -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "限制" - -#: fdmprinter.def.json -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "防風罩高度" - -#: fdmprinter.def.json -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "防風罩的高度限制。超過這個高度就不再列印防風罩。" - -#: fdmprinter.def.json -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "使突出可列印" - -#: fdmprinter.def.json -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 "更改列印模型的幾何形狀,以最大程度減少需要的支撐。陡峭的突出部分將變淺。突出區域將下降變得更垂直。" - -#: fdmprinter.def.json -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "最大模型角度" - -#: fdmprinter.def.json -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° 時,不會以任何方式更改模型。" - -#: fdmprinter.def.json -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "最大突出孔洞面積" - -#: fdmprinter.def.json -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會填補所有模型底層孔洞." - -#: fdmprinter.def.json -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "啟用滑行" - -#: fdmprinter.def.json -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 "滑行會用一個空跑路徑替代擠出路徑的最後部分。滲出線材用於列印擠出路徑的最後部分,以便減少牽絲。" - -#: fdmprinter.def.json -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "滑行體積" - -#: fdmprinter.def.json -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "不進行滑行時,會滲出的體積。該值一般應接近噴頭直徑的立方。" - -#: fdmprinter.def.json -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "滑行前最小體積" - -#: fdmprinter.def.json -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 "可以進行滑行前,擠出路徑應有的最小體積。對於較小的擠出路徑,喉管內累積的壓力較少,因此滑行體積採用線性比率縮小。該值應大於滑行體積。" - -#: fdmprinter.def.json -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "滑行速度" - -#: fdmprinter.def.json -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% 的值,因為在滑行移動期間喉管中的壓力會下降。" - -#: fdmprinter.def.json -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "立體十字形氣囊大小" - -#: fdmprinter.def.json -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 "立體十字形在樣式閉合的高度處,中央十字交叉的氣囊大小。" - -#: fdmprinter.def.json -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "十字形填充密度圖片" - -#: fdmprinter.def.json -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 "圖片檔案位置,該圖片的亮度值決定最小密度在填充中對應的位置。" - -#: fdmprinter.def.json -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "支撐十字形填充密度圖片" - -#: fdmprinter.def.json -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 "圖片檔案位置,該圖片的亮度值決定最小密度在支撐中對應的位置。" - -#: fdmprinter.def.json -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "啟用錐形支撐" - -#: fdmprinter.def.json -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "讓底部的支撐區域小於突出部分的支撐區域。" - -#: fdmprinter.def.json -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "錐形支撐角度" - -#: fdmprinter.def.json -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 度時為水平。較小的角度會讓支撐更為牢固,但需要更多線材。負值會讓支撐底座比頂部寬。" - -#: fdmprinter.def.json -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "錐形支撐最小寬度" - -#: fdmprinter.def.json -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 "錐形支撐區域底部的最小寬度。寬度較小可能導致不穩定的支撐結構。" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "絨毛皮膚" - -#: fdmprinter.def.json -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 "在列印外牆時隨機抖動,使表面具有粗糙和毛絨絨的外觀。" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "絨毛皮膚只限外層" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "只在列印外側時隨機抖動,內部孔洞不抖動。" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "絨毛皮膚厚度" - -#: fdmprinter.def.json -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 "進行抖動的寬度。建議讓此值低於外壁寬度,因為內壁不會更改。" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "絨毛皮膚密度" - -#: fdmprinter.def.json -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 "在每一層中,每個多邊形上改變的點的平均密度。注意,多邊形的原始點會被捨棄,因此低密度導致解析度降低。" - -#: fdmprinter.def.json -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "絨毛皮膚距離" - -#: fdmprinter.def.json -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 "在每個線條部分改變的隨機點之間的平均距離。注意,多邊形的原始點會被捨棄,因此高平滑度導致解析度降低。該值必須大於絨毛皮膚厚度的一半。" - -#: fdmprinter.def.json -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "流速補償的最大擠出偏移量" - -#: fdmprinter.def.json -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 "流速補償時線材可移動的最大距離(以毫米為單位)。" - -#: fdmprinter.def.json -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "流速補償係數" - -#: fdmprinter.def.json -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 "為了補償流速變化,線材所移動的距離,以線材一秒內擠出距離的百分比表示。" - -#: fdmprinter.def.json -msgctxt "wireframe_enabled label" -msgid "Wire Printing" -msgstr "鐵絲網列印(以下簡稱 WP)" - -#: fdmprinter.def.json -msgctxt "wireframe_enabled description" -msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -msgstr "只列印一個具有稀疏網狀結構的外表面,在“稀疏的空中”列印。這是在给定的 Z 軸間隔內,通過上行線和下行斜線連接,橫向列印模型的輪廓來實現的。" - -#: fdmprinter.def.json -msgctxt "wireframe_height label" -msgid "WP Connection Height" -msgstr "WP 連接高度" - -#: fdmprinter.def.json -msgctxt "wireframe_height description" -msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -msgstr "兩個水平部分之間上行線和下行斜線的高度。這决定網狀結構的整體密度。僅套用於鐵絲網列印。" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset label" -msgid "WP Roof Inset Distance" -msgstr "WP 頂板嵌入距離" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_inset description" -msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -msgstr "在從頂板輪廓向內進行連接時所覆蓋的距離。僅套用於鐵絲網列印。" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed label" -msgid "WP Speed" -msgstr "WP 速度" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed description" -msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -msgstr "擠出線材時噴頭移動的速度。僅套用於鐵絲網列印。" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom label" -msgid "WP Bottom Printing Speed" -msgstr "WP 底部列印速度" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_bottom description" -msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -msgstr "列印第一層的速度,該層是唯一接觸列印平台的層。僅套用於鐵絲網列印。" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up label" -msgid "WP Upward Printing Speed" -msgstr "WP 上升列印速度" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_up description" -msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -msgstr "在“稀疏的空中”向上列印線條的速度。僅套用於鐵絲網列印。" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down label" -msgid "WP Downward Printing Speed" -msgstr "WP 下降列印速度" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_down description" -msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -msgstr "列印下行斜線的速度。僅套用於鐵絲網列印。" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat label" -msgid "WP Horizontal Printing Speed" -msgstr "WP 水平列印速度" - -#: fdmprinter.def.json -msgctxt "wireframe_printspeed_flat description" -msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -msgstr "列印模型水平輪廓的速度。僅套用於鐵絲網列印。" - -#: fdmprinter.def.json -msgctxt "wireframe_flow label" -msgid "WP Flow" -msgstr "WP 列印流量" - -#: fdmprinter.def.json -msgctxt "wireframe_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -msgstr "流量補償:擠出的線材量乘以此值。僅套用於鐵絲網列印。" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection label" -msgid "WP Connection Flow" -msgstr "WP 連接流量" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_connection description" -msgid "Flow compensation when going up or down. Only applies to Wire Printing." -msgstr "向上或向下時的流量補償。僅套用於鐵絲網列印。" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat label" -msgid "WP Flat Flow" -msgstr "WP 平面流量" - -#: fdmprinter.def.json -msgctxt "wireframe_flow_flat description" -msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -msgstr "列印平面線條時的流量補償。僅套用於鐵絲網列印。" - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay label" -msgid "WP Top Delay" -msgstr "WP 頂部延遲" - -#: fdmprinter.def.json -msgctxt "wireframe_top_delay description" -msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -msgstr "向上移動後的延遲時間,以便上行線條硬化。僅套用於鐵絲網列印。" - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay label" -msgid "WP Bottom Delay" -msgstr "WP 底部延遲" - -#: fdmprinter.def.json -msgctxt "wireframe_bottom_delay description" -msgid "Delay time after a downward move. Only applies to Wire Printing." -msgstr "向下移動後的延遲時間。僅套用於鐵絲網列印。" - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay label" -msgid "WP Flat Delay" -msgstr "WP 平面延遲" - -#: fdmprinter.def.json -msgctxt "wireframe_flat_delay description" -msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -msgstr "兩個水平部分之間的延遲時間。引入這樣的延遲可以在連接點處與先前的層產生更好的附著,而太長的延遲會引起下垂。僅套用於鐵絲網列印。" - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed label" -msgid "WP Ease Upward" -msgstr "WP 輕鬆上行" - -#: fdmprinter.def.json -msgctxt "wireframe_up_half_speed description" -msgid "" -"Distance of an upward move which is extruded with half speed.\n" -"This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "" -"以半速擠出的上行移動的距離。\n" -"這會與之前的層產生更好的附著,而不會將這些層中的線材過度加熱。僅套用於鐵絲網列印。" - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump label" -msgid "WP Knot Size" -msgstr "WP 紐結大小" - -#: fdmprinter.def.json -msgctxt "wireframe_top_jump description" -msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -msgstr "在上行線條的頂部創建一個小紐結,使連續的水平層有更好的機會與其連接。僅套用於鐵絲網列印。" - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down label" -msgid "WP Fall Down" -msgstr "WP 倒塌" - -#: fdmprinter.def.json -msgctxt "wireframe_fall_down description" -msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "線材在向上擠出後倒塌的距離。將對此距離進行補償。僅套用於鐵絲網列印。" - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along label" -msgid "WP Drag Along" -msgstr "WP 拖行" - -#: fdmprinter.def.json -msgctxt "wireframe_drag_along description" -msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -msgstr "向上擠出線材與斜向下擠出一起拖動的距離。將對此距離進行補償。僅套用於鐵絲網列印。" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy label" -msgid "WP Strategy" -msgstr "WP 使用策略" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy description" -msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -msgstr "用於確定兩個連續層在每個連接點連接的策略。回抽可讓上行線條在正確的位置硬化,但可能導致線材磨損。紐結可以在上行線條的尾端進行打結以便提高與其連接的幾率,並讓線條冷卻;但這會需要較慢的列印速度。另一種策略是補償上行線條頂部的下垂;然而,線條不會總是如預期的那樣下降。" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option compensate" -msgid "Compensate" -msgstr "補償" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option knot" -msgid "Knot" -msgstr "紐結" - -#: fdmprinter.def.json -msgctxt "wireframe_strategy option retract" -msgid "Retract" -msgstr "回抽" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down label" -msgid "WP Straighten Downward Lines" -msgstr "WP 拉直下行線條" - -#: fdmprinter.def.json -msgctxt "wireframe_straight_before_down description" -msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -msgstr "水平線條部分所覆蓋的斜下行線條的百分比。這可以防止上行線最頂端點下垂。僅套用於鐵絲網列印。" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down label" -msgid "WP Roof Fall Down" -msgstr "WP 頂板倒塌" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_fall_down description" -msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -msgstr "列印時,在“稀疏的空中”列印的水平頂板線條倒塌的距離。將對此距離進行補償。僅套用於鐵絲網列印。" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along label" -msgid "WP Roof Drag Along" -msgstr "WP 頂板拖行" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_drag_along description" -msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -msgstr "向內線的末端在返回至頂板外部輪廓時被拖行的距離。將對此距離進行補償。僅套用於鐵絲網列印。" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay label" -msgid "WP Roof Outer Delay" -msgstr "WP 頂板外部延遲" - -#: fdmprinter.def.json -msgctxt "wireframe_roof_outer_delay description" -msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -msgstr "在成為頂板的孔的外圍花費的時間。較長的時間可確保更好的連接。僅套用於鐵絲網列印。" - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance label" -msgid "WP Nozzle Clearance" -msgstr "WP 噴頭間隙" - -#: fdmprinter.def.json -msgctxt "wireframe_nozzle_clearance description" -msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -msgstr "噴頭和水平下行線之間的距離。較大的間隙會讓斜下行線角度較平緩,進而使第二層的上行連接較少。僅套用於鐵絲網列印。" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "使用適應性層高" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "適應性層高會依據模型的形狀計算列印的層高。" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "適應性層高最大變化量" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "允許與底層高度差異的最大值。" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "適應性層高變化幅度" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "下一列印層與前一列印層的層高差。" - -#: fdmprinter.def.json -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "適應性層高地形尺寸" - -#: fdmprinter.def.json -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 "兩個相鄰層之間的目標水平距離。 減少此設定將導致使用較薄的層高以使各層的邊緣更靠近。" - -#: fdmprinter.def.json -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "突出牆壁角度" - -#: fdmprinter.def.json -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 時,所有牆壁都不會被當作突出牆壁。被支撐的突出牆壁也將不不會被當作突出牆壁。" - -#: fdmprinter.def.json -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "突出牆壁速度" - -#: fdmprinter.def.json -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "突出牆壁將會以正常速度的此百分比值列印。" - -#: fdmprinter.def.json -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "啟用橋樑設定" - -#: fdmprinter.def.json -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "偵測橋樑,並在列印橋樑時改變列印速度,流量和風扇轉速。" - -#: fdmprinter.def.json -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "最小橋樑牆壁長度" - -#: fdmprinter.def.json -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 "比此長度短的無支撐牆壁將以一般牆壁設定列印。較長的無支撐牆壁則以橋樑牆壁的設定列印。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "橋樑表層支撐門檻值" - -#: fdmprinter.def.json -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 "假如表層區域受支撐的面積小於此百分比,使用橋樑設定列印。否則用一般的表層設定列印。" - -#: fdmprinter.def.json -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "橋樑稀疏填充最大密度" - -#: fdmprinter.def.json -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 "低於此密度的填充被視為稀疏填充。位於稀疏填充上的表層被視為沒有受到支撐,因此會被當作橋樑處理。" - -#: fdmprinter.def.json -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "橋樑牆壁滑行" - -#: fdmprinter.def.json -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 "這可以控制擠出機在開始列印橋樑牆壁前滑行的距離。在橋樑開始之前進行滑行可以減小噴頭中的壓力並可能產生更平坦的橋樑。" - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "橋樑牆壁速度" - -#: fdmprinter.def.json -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "列印橋樑牆壁時的速度。" - -#: fdmprinter.def.json -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "橋樑牆壁流量" - -#: fdmprinter.def.json -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "列印橋樑牆壁時,擠出的線材量乘以此值。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "橋樑表層速度" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "列印橋樑表層區域時的速度。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "橋樑表層流量" - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "列印橋樑表層區域時,擠出的線材量乘以此值。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "橋樑表層密度" - -#: fdmprinter.def.json -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 時會增加表層線條的間隙。" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "橋樑風扇轉速" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "列印橋樑牆壁和表層時,風扇轉速的百分比。" - -#: fdmprinter.def.json -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "多層橋樑" - -#: fdmprinter.def.json -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 "假如啟用此功能,橋樑上的第二層和第三層使用下列的設定列印。否則這些層以一般設定列印。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "橋樑第二表層速度" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "列印橋樑表層區域第二層時的速度。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "橋樑第二表層流量" - -#: fdmprinter.def.json -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 "列印橋樑表層區域第二層時,擠出的線材量乘以此值。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "橋樑第二表層密度" - -#: fdmprinter.def.json -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 時會增加表層線條的間隙。" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "橋樑第二表層風扇轉速" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "列印橋樑表層第二層時,風扇轉速的百分比。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "橋樑第三表層速度" - -#: fdmprinter.def.json -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "列印橋樑表層區域第三層時的速度。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "橋樑第三表層流量" - -#: fdmprinter.def.json -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 "列印橋樑表層區域第三層時,擠出的線材量乘以此值。" - -#: fdmprinter.def.json -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "橋樑第三表層密度" - -#: fdmprinter.def.json -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 時會增加表層線條的間隙。" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "橋樑第三表層風扇轉速" - -#: fdmprinter.def.json -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "列印橋樑表層第三層時,風扇轉速的百分比。" - -#: fdmprinter.def.json -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "換層時擦拭噴頭" - -#: fdmprinter.def.json -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(每層最多一次)。啟用此設定會影響換層時的回抽行為。請用「擦拭回抽」設定來控制何處使用擦拭腳本。" - -#: fdmprinter.def.json -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "擦拭線材體積" - -#: fdmprinter.def.json -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 "在另一次擦拭噴頭前可擠出的最大線材量。假如此值小於列印此層所需的線材量,則此設定對此層無效,也就是說,每層只會擦拭一次。" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "擦拭回抽啟用" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "當噴頭移動經過非列印區域時回抽線材。" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "擦拭回抽距離" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "回抽線材的量,使其在擦拭過程中不會滲出。" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "擦拭回抽額外裝填量" - -#: fdmprinter.def.json -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 "有些線材可能會在擦拭過程中滲出,可以在這裡對其進行補償。" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "擦拭回抽速度" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "擦拭過程中線材回抽和裝填的速度。" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "擦拭回抽回抽速度" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "擦拭過程中線材回抽的速度。" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "擦拭回抽裝填速度" - -#: fdmprinter.def.json -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "擦拭過程中線材裝填的速度。" - -#: fdmprinter.def.json -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "擦拭暫停" - -#: fdmprinter.def.json -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "若無回抽,擦拭後暫停。" - -#: fdmprinter.def.json -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "擦拭 Z 抬升" - -#: fdmprinter.def.json -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 "擦拭時列印平台會降低以便在噴頭和列印品之間形成空隙。它可以防止噴頭在空跑過程中撞到列印品,降低將列印品從列印平台撞掉的幾率。" - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "擦拭 Z 抬升高度" - -#: fdmprinter.def.json -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "執行 Z 抬升的高度差。" - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "擦拭 Z 抬升速度" - -#: fdmprinter.def.json -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "抬升時移動 Z 軸的速度。" - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "擦拭刷 X 軸位置" - -#: fdmprinter.def.json -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "擦拭動作開始的 X 位置。" - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "擦拭重覆次數" - -#: fdmprinter.def.json -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "將噴頭移動經過刷子的次數。" - -#: fdmprinter.def.json -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "擦拭移動距離" - -#: fdmprinter.def.json -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "將噴頭來回移動經過刷子的距離。" - -#: fdmprinter.def.json -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "細部模式最大直徑" - -#: fdmprinter.def.json -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 "小於此直徑的孔洞和零件輪廓,使用細部模式速度列印。" - -#: fdmprinter.def.json -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "細部模式最大長度" - -#: fdmprinter.def.json -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "輪廓長度小於此值時,使用細部模式速度列印。" - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "細部模式速度" - -#: fdmprinter.def.json -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 "細部模式將以正常列印速度的此百分比值列印。 較慢的列印有助於黏合和精度。" - -#: fdmprinter.def.json -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "細部模式起始層速度" - -#: fdmprinter.def.json -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 "交互移除網格重疊部分" #: fdmprinter.def.json msgctxt "material_alternate_walls label" @@ -6583,34 +202,349 @@ msgid "Alternate wall directions every other layer and inset. Useful for materia msgstr "" #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "鋁" + +#: fdmprinter.def.json +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "總是寫入啟用工具" + +#: fdmprinter.def.json +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "當移動到外牆起始點時總是進行回抽。" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset description" +msgid "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." +msgstr "套用到每一層孔洞的偏移量。正值增加孔洞的大小,負值減小孔洞的大小。" + +#: fdmprinter.def.json +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 "如果模型有挖孔,以便用來組合、鑲嵌時,這個偏移量可以用來微調孔的大小,當設為正值時,模型外擴,孔會變小;若設為負值,模型內縮,孔會變大。" + +#: fdmprinter.def.json +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 "套用到第一層所有多邊形的偏移量。負數值可以補償第一層的壓扁量(被稱為“象脚”)。" + +#: fdmprinter.def.json +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 "套用到每一層所有支撐多邊形的偏移量。正值可以讓支撐區域更平滑,並產生更為牢固的支撐。" + +#: fdmprinter.def.json +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "套用到支撐底板多邊形的偏移量。" + +#: fdmprinter.def.json +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "套用到支撐頂板多邊形的偏移量。" + +#: fdmprinter.def.json +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "套用到支撐介面多邊形的偏移量。" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "回抽線材的量,使其在擦拭過程中不會滲出。" + +#: fdmprinter.def.json +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 "每個立方體半徑的增加量,用來檢查模型的邊界,決定是否應該細分該立方體。值越大,靠近模型邊界附近的小立方體的殼越厚。" + +#: fdmprinter.def.json +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "防突出網格" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "防滲漏回抽位置" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "防滲漏回抽速度" + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "開啟擠出機補償並應用於所有擠出機." + +#: fdmprinter.def.json +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 "" #: fdmprinter.def.json -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "空跑時避開已列印部分" + +#: fdmprinter.def.json +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "空跑避開支撐" + +#: fdmprinter.def.json +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "後方" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "左後方" + +#: fdmprinter.def.json +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "右後方" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "兩者" + +#: fdmprinter.def.json +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "底部層數" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "起始層列印樣式" + +#: fdmprinter.def.json +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "底部表層延伸距離" + +#: fdmprinter.def.json +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "底部表層移除寬度" + +#: fdmprinter.def.json +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "底部厚度" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "回抽切斷前位置" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "回抽切斷前速度" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "回抽切斷溫度" + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "回抽切斷位置" + +#: fdmprinter.def.json +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "回抽切斷速度" + +#: fdmprinter.def.json +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "切斷溫度" + +#: fdmprinter.def.json +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "將支撐拆成塊狀" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "橋樑風扇轉速" + +#: fdmprinter.def.json +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "多層橋樑" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "橋樑第二表層密度" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "橋樑第二表層風扇轉速" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "橋樑第二表層流量" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "橋樑第二表層速度" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "橋樑表層密度" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "橋樑表層流量" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "橋樑表層速度" + +#: fdmprinter.def.json +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "橋樑表層支撐門檻值" + +#: fdmprinter.def.json +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "橋樑稀疏填充最大密度" + +#: fdmprinter.def.json +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "橋樑第三表層密度" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "橋樑第三表層風扇轉速" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "橋樑第三表層流量" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "橋樑第三表層速度" + +#: fdmprinter.def.json +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "橋樑牆壁滑行" + +#: fdmprinter.def.json +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "橋樑牆壁流量" + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "橋樑牆壁速度" + +#: fdmprinter.def.json +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "邊緣" + +#: fdmprinter.def.json +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "邊緣間距" + +#: fdmprinter.def.json +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" msgstr "" #: fdmprinter.def.json -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "" +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "邊緣線條數量" #: fdmprinter.def.json -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 "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "僅在外部列印邊緣" #: fdmprinter.def.json -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "命令行設定" +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "邊綠取代支撐" #: fdmprinter.def.json -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "未從 Cura 前端調用 CuraEngine 時使用的設定。" +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "邊緣寬度" + +#: fdmprinter.def.json +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "列印平台附著" + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "列印平台附著擠出機" + +#: fdmprinter.def.json +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "列印平台附著類型" + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "列印平台材質" + +#: fdmprinter.def.json +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "列印平台形狀" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "列印平台溫度" + +#: fdmprinter.def.json +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "列印平台溫度起始層" + +#: fdmprinter.def.json +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "列印空間溫度" #: fdmprinter.def.json msgctxt "center_object label" @@ -6618,61 +552,6111 @@ msgid "Center Object" msgstr "物件置中" #: fdmprinter.def.json -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 "更改列印模型的幾何形狀,以最大程度減少需要的支撐。陡峭的突出部分將變淺。突出區域將下降變得更垂直。" + +#: fdmprinter.def.json +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 "選擇產生支撐的技術。「正常」支撐會在突出部份的下方產生支撐結構,並重直向下延伸。「樹狀」支撐會朝突出部份長出樹枝用樹枝末端支撐模型,並讓分枝在模型周圍爬行盡可能地支撐模型。" + +#: fdmprinter.def.json +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "滑行速度" + +#: fdmprinter.def.json +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "滑行體積" + +#: fdmprinter.def.json +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 "滑行會用一個空跑路徑替代擠出路徑的最後部分。滲出線材用於列印擠出路徑的最後部分,以便減少牽絲。" + +#: fdmprinter.def.json +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "梳理模式" + +#: fdmprinter.def.json +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 "梳理模式讓噴頭空跑時保持在已列印的區域內。這將導致稍長的空跑移動但減少了回抽的需求。如果關閉梳理模式,噴頭將會回抽線材,直線移動到下一點。可以設定在頂部/底部表層不使用梳理模式,或只使用在內部填充。" + +#: fdmprinter.def.json +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "命令行設定" + +#: fdmprinter.def.json +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "同心" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "同心" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "同心" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "同心" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "同心" + +#: fdmprinter.def.json +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "同心" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "同心" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "同心" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "同心" + +#: fdmprinter.def.json +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "錐形支撐角度" + +#: fdmprinter.def.json +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "錐形支撐最小寬度" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "連接填充線條" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "連接填充多邊形" + +#: fdmprinter.def.json +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "連接支撐線條" + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "連接支撐鋸齒狀" + +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "連接頂部/底部多邊形" + +#: fdmprinter.def.json +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 "連接彼此相鄰的填充路徑。 對於由多個閉合多邊形組成的填充圖案,啟用此設定可大大縮短空跑時間。" + +#: fdmprinter.def.json +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "連接鋸齒狀。這將增加鋸齒狀支撐結構的强度。" + +#: fdmprinter.def.json +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 "將支撐線條的末端連接在一起。啟用此設定能讓支撐更堅固並減少擠出不足的問題,但會花費更多的線材。" + +#: fdmprinter.def.json +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 "使用一條線沿著內牆的形狀,連接填充線條與內牆交會的末端。啟用此設定可以使填充更好地附著在內牆上,並減少對垂直表面品質的影響。關閉此設定可降低材料的使用量。" + +#: fdmprinter.def.json +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 "將頂部/底部表層路徑相鄰的位置連接。同心模式時啟用此設定,可以大大地減少移動時間。但因連接可能碰巧在途中跨越填充,所以此功能可能會降低頂部表層的品質。" + +#: fdmprinter.def.json +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 "控制模型輪廓上的轉角是否影響接縫的位置。「無」表示轉角不影響接縫位置。「隱藏接縫」讓接縫盡量出現在凹角。「暴露接縫」讓接縫盡量出現在凸角。「隱藏或暴露接縫」讓接縫盡量出現在凹角或凸角。「智慧隱藏」允許使用凹角或凸角,但如果狀況合適,會盡可能地選擇凹角。" + +#: fdmprinter.def.json +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 "將每條填充線轉換為此數量。 額外的線條不會相互交叉,而是相互避開。 這會使填充更硬,但增加了列印時間和線材使用。" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "冷卻速度" + +#: fdmprinter.def.json +msgctxt "cooling description" +msgid "Cooling" +msgstr "冷卻" + +#: fdmprinter.def.json +msgctxt "cooling label" +msgid "Cooling" +msgstr "冷卻" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "十字形" + +#: fdmprinter.def.json +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "十字形" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "立體十字形" + +#: fdmprinter.def.json +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "立體十字形氣囊大小" + +#: fdmprinter.def.json +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "支撐十字形填充密度圖片" + +#: fdmprinter.def.json +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "十字形填充密度圖片" + +#: fdmprinter.def.json +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "晶狀線材" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "立方體" + +#: fdmprinter.def.json +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "立方體細分" + +#: fdmprinter.def.json +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "立方體細分外殼" + +#: fdmprinter.def.json +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "切割網格" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "數據連接線材流量(mm3/s)到溫度(攝氏)。" + +#: fdmprinter.def.json +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "預設加速度" + +#: fdmprinter.def.json +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "列印平台預設溫度" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "預設擠出馬達加加速度" + +#: fdmprinter.def.json +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "預設列印溫度" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "預設 X-Y 平面加加速度" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "預設 Z 軸加加速度" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "水平面移動的預設加加速度。" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Z 軸方向馬達的預設加加速度。" + +#: fdmprinter.def.json +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "擠出馬達的預設加加速度。" + +#: fdmprinter.def.json +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "偵測橋樑,並在列印橋樑時改變列印速度,流量和風扇轉速。" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "決定多個網格重疊填充的優先權. 多個重疊填充區域會採取網格設定之最高值. 較高的填充網格設定會改動較低網格及普通網格之填充." + +#: fdmprinter.def.json +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 "決定使用閃電形填充支撐時,層間堆疊的角度." + +#: fdmprinter.def.json +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 "決定使用閃電形填充支撐時,層間堆疊的角度." + +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直徑" + +#: fdmprinter.def.json +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 "幫助改善擠出裝填以及與列印平台附著的不同選項。邊緣會在模型基座周圍添加單層平面區域,以防止翹曲。木筏會在模型底下添加一個有頂板的厚網格。外圍是在模型四周列印的一條線,但並不與模型連接。" + +#: fdmprinter.def.json +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "禁入區域" + +#: fdmprinter.def.json +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 "列印填充線條之間的距離。該設定是通過填充密度和填充線寬度計算。" + +#: fdmprinter.def.json +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 "支撐結構起始層線條之間的距離。該設定通過支撐密度計算。" + +#: fdmprinter.def.json +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 "支撐底板線條之間的距離。該設定是通過支撐底板密度計算,但可以單獨調整。" + +#: fdmprinter.def.json +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 "支撐頂板線條之間的距離。該設定是通過支撐頂板密度計算,但可以單獨調整。" + +#: fdmprinter.def.json +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "支撐結構線條之間的距離。該設定通過支撐密度計算。" + +#: fdmprinter.def.json +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support." +msgstr "從列印品到支撐底部的距離。" + +#: fdmprinter.def.json +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "從支撐頂部到列印品的距離。" + +#: fdmprinter.def.json +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. This value is rounded up to a multiple of the layer height." +msgstr "支撐結構距離模型頂部/底部的距離。這一個小的差距使得它更容易被去除,這個數值會被無條件進位到層高的倍數。" + +#: fdmprinter.def.json +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 "每條填充線條後插入的空跑距離,讓填充更好地附著到壁上。此選項與填充重疊類似,但没有擠出,且僅位於填充線條的一端。" + +#: fdmprinter.def.json +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 縫的銜接痕跡。" + +#: fdmprinter.def.json +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "防風罩與模型在 X/Y 軸方向的距離。" + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "擦拭牆與模型間的水平(X/Y 方向)距離。" + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "支撐結構在 X/Y 方向與突出部分的間距。" + +#: fdmprinter.def.json +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "支撐結構在 X/Y 方向距列印品的距離。" + +#: fdmprinter.def.json +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "不要產生小於此面積的填充區域(使用表層取代)。" + +#: fdmprinter.def.json +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "防風罩高度" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "防風罩限高" + +#: fdmprinter.def.json +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "防風罩 X/Y 距離" + +#: fdmprinter.def.json +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "下拉式支撐網格" + +#: fdmprinter.def.json +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "雙重擠出機" + +#: fdmprinter.def.json +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "類圓形" + +#: fdmprinter.def.json +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "啟用加速度控制" + +#: fdmprinter.def.json +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "啟用橋樑設定" + +#: fdmprinter.def.json +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "啟用滑行" + +#: fdmprinter.def.json +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "啟用錐形支撐" + +#: fdmprinter.def.json +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "啟用防風罩" + +#: fdmprinter.def.json +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "啟用燙平" + +#: fdmprinter.def.json +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "啟用加加速度控制" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "啟用噴頭溫度控制" + +#: fdmprinter.def.json +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "啟用擦拭牆" + +#: fdmprinter.def.json +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "啟用少量裝填" + +#: fdmprinter.def.json +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "啟用換料塔" + +#: fdmprinter.def.json +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "開啟列印冷卻" + +#: fdmprinter.def.json +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "啟用回抽" + +#: fdmprinter.def.json +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "啟用支撐邊緣" + +#: fdmprinter.def.json +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "啟用支撐底板" + +#: fdmprinter.def.json +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "啟用支撐介面" + +#: fdmprinter.def.json +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "啟用支撐頂板" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "" + +#: fdmprinter.def.json +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "" + +#: fdmprinter.def.json +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 "啟用外部擦拭牆。這將在模型周圍創建一個外殼,如果與第一個噴頭處於相同的高度,則可能會擦拭第二個噴頭。" + +#: fdmprinter.def.json +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 軸的速度變化時調整列印頭的加加速度。提高加加速度可以通過以列印品質為代價來縮短列印時間。" + +#: fdmprinter.def.json +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 "啟用調整噴頭的加速度。增加加速度可以減少列印時間卻會犧牲列印品質。" + +#: fdmprinter.def.json +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 "列印時啟用列印冷卻風扇。風扇可以在列印時間較短的層和橋接/突出部分提高列印品質。" + +#: fdmprinter.def.json +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "結束 G-code" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "線材更換沖洗長度" + +#: fdmprinter.def.json +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "線材更換沖洗速度" + +#: fdmprinter.def.json +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 "強制在模型周圍列印邊緣,即使該空間已被支撐佔用。在第一層的部份區域會以邊綠取代支撐。" + +#: fdmprinter.def.json +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "每個地方" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "排除" + +#: fdmprinter.def.json +msgctxt "experimental label" +msgid "Experimental" +msgstr "實驗性" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "暴露接縫" + +#: fdmprinter.def.json +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "廣泛縫合" + +#: fdmprinter.def.json +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 "廣泛縫合嘗試通過接觸多邊形來閉合孔洞,以此縫合網格中的開孔。此選項可能會產生大量的處理時間。" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "額外填充牆壁數量" + +#: fdmprinter.def.json +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "額外表層牆壁計數" + +#: fdmprinter.def.json +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "噴頭切換後額外裝填的線材量。" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "擠出機 X 軸起始位置" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "擠出機 Y 軸起始位置" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "擠出機初始 Z 軸位置" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "擠出機共用加熱器" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "擠出機共用噴頭" + +#: fdmprinter.def.json +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "擠出降溫速度修正" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "風扇轉速" + +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "改變風扇轉速" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "輪廓長度小於此值時,使用細部模式速度列印。" + +#: fdmprinter.def.json +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "尚未完全的功能。" + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "進料輪直徑" + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "最終列印溫度" + +#: fdmprinter.def.json +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "韌體回抽" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "第一層支撐擠出機" + +#: fdmprinter.def.json +msgctxt "material_flow label" +msgid "Flow" +msgstr "流量" + +#: fdmprinter.def.json +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "" + +#: fdmprinter.def.json +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "流速補償係數" + +#: fdmprinter.def.json +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "流速補償的最大擠出偏移量" + +#: fdmprinter.def.json +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "流量溫度圖" + +#: fdmprinter.def.json +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 "第一層的流量補償:在起始層上擠出的線材量會乘以此值。" + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "填充線條的流量補償。" + +#: fdmprinter.def.json +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "支撐頂板或底板線條的流量補償。" + +#: fdmprinter.def.json +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "頂部區域線條的流量補償。" + +#: fdmprinter.def.json +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "換料塔線條的流量補償。" + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "外圍/邊緣線條的流量補償。" + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "支撐底板線條的流量補償。" + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "支撐頂板線條的流量補償。" + +#: fdmprinter.def.json +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "支撐結構線條的流量補償。" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "外壁線條的流量補償。" + +#: fdmprinter.def.json +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "頂部/底部線條的流量補償。" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "最外層牆壁以外的牆壁線條的流量補償。" + +#: fdmprinter.def.json +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "牆壁線條的流量補償。" + +#: fdmprinter.def.json +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "流量補償:擠出的線材量乘以此值。" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "沖洗長度" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "沖洗速度" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "前方" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "左前方" + +#: fdmprinter.def.json +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "右前方" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "完整" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "絨毛皮膚" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "絨毛皮膚密度" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "絨毛皮膚只限外層" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "絨毛皮膚距離" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "絨毛皮膚厚度" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "G-code 類型" + +#: fdmprinter.def.json +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "" +"結束前最後執行的 G-code 命令 - 使用 \n" +" 隔開。" + +#: fdmprinter.def.json +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" +"開始時最先執行的 G-code 命令 - 使用 \n" +"隔開。" + +#: fdmprinter.def.json +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "線材的 GUID,此項為自動設定。" + +#: fdmprinter.def.json +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "吊車高度" + +#: fdmprinter.def.json +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "產生支撐" + +#: fdmprinter.def.json +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 "在第一層的支撐填充區域內產生邊緣。這些邊緣列印在支撐下面,而不是支撐的周圍。啟用此設定可增加支撐對列印平台的附著力。" + +#: fdmprinter.def.json +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 "在模型和支撐之間產生一個密度較高的介面。這會在承載模型的支撐頂部和座落在模型上的支撐底部創造出一個介面層。" + +#: fdmprinter.def.json +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 "在支撐底部和模型之間產生一個密集的平板。這會在模型和支撐之間形成一個介面層。" + +#: fdmprinter.def.json +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 "在支撐頂部和模型之間產生一個密集的平板。這會在模型和支撐之間形成一個介面層。" + +#: fdmprinter.def.json +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 "在模型的突出部分產生支撐結構。若不這樣做,這些部分在列印時會倒塌。" + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "玻璃" + +#: fdmprinter.def.json +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 "噴頭額外跑過上表層一次,但這次擠出的材料非常少。這是為了進一步融化頂部的塑料,創造更平滑的表面。噴頭中的壓力會保持很高,將表面中的細縫中填滿材料。" + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "漸進填充步階高度" + +#: fdmprinter.def.json +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "漸進填充步階數" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "漸進支撐填充步階高度" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "漸進支撐填充步階" + +#: fdmprinter.def.json +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "網格" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "網格" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "網格" + +#: fdmprinter.def.json +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "網格" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "網格" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +#: fdmprinter.def.json +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "螺旋形" + +#: fdmprinter.def.json +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "螺旋形" + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "具有列印空間溫度穩定性" + +#: fdmprinter.def.json +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "有熱床" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "加熱速度" + +#: fdmprinter.def.json +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "加熱區長度" + +#: fdmprinter.def.json +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "防風罩的高度限制。超過這個高度就不再列印防風罩。" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "隱藏接縫" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "隱藏或暴露接縫" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "孔洞水平擴展" + +#: fdmprinter.def.json +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "" + +#: fdmprinter.def.json +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 "小於此直徑的孔洞和零件輪廓,使用細部模式速度列印。" + +#: fdmprinter.def.json +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "水平擴展" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance description" +msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." +msgstr "樹支與模型接觸的點與點之間的間隔距離。較小的距離會讓支撐和模型有較多的接觸點,會有較佳的突出部分但支撐也較難移除。" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "在加熱時,線材在脆斷前可以拉伸多長的距離。" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "停止滲漏要回抽線材多長的距離。" + +#: fdmprinter.def.json +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 "為了補償流速變化,線材所移動的距離,以線材一秒內擠出距離的百分比表示。" + +#: fdmprinter.def.json +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "要讓線材脆斷需要回抽長的距離。" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "回抽切斷前,線材回抽的速度。" + +#: fdmprinter.def.json +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "在線材切換回抽時,需要多快的速度來防止滲漏。" + +#: fdmprinter.def.json +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 "更換新的一捲相同線材後,用多快的速度擠出線材做沖洗。" + +#: fdmprinter.def.json +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "切換到另一線材後,用多快的速度擠出線材做沖洗。" + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "線材可在乾燥箱外安全的存放多久。" + +#: fdmprinter.def.json +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 方向移動一毫米時,步進馬達所需移動的步數。" + +#: fdmprinter.def.json +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 方向移動一毫米時,步進馬達所需移動的步數。" + +#: fdmprinter.def.json +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 方向移動一毫米時,步進馬達所需移動的步數。" + +#: fdmprinter.def.json +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 "在擠出輪旋轉一毫米時,步進馬達所需移動的步數." + +#: fdmprinter.def.json +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 "更換新的一捲相同線材時,要使用多少線材(以線材長度計算)將噴頭內先前的線材沖洗出來。" + +#: fdmprinter.def.json +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 "切換到另一線材時,要使用多少線材(以線材長度計算)將噴頭內先前的線材沖洗出來。" + +#: fdmprinter.def.json +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 G-code\"後,各擠出機將從共用噴頭回抽多少的線材。此數值應等於或大於噴頭的共用管道長度。" + +#: fdmprinter.def.json +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 "假如表層區域受支撐的面積小於此百分比,使用橋樑設定列印。否則用一般的表層設定列印。" + +#: fdmprinter.def.json +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 "假如啟用此功能,橋樑上的第二層和第三層使用下列的設定列印。否則這些層以一般設定列印。" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "如果啟用了木筏,在模型周圍也會增加額外邊緣。增大這個邊緣將產生更強的木筏,不過也會使用更多的線材,並減少印表機的可列印面積。" + +#: fdmprinter.def.json +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 "忽略因網格內部重疊產生的幾何空間,並將多個重疊體積作為一個列印。這可能會導致意外的內部孔洞消失。" + +#: fdmprinter.def.json +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "插入熱床溫度" + +#: fdmprinter.def.json +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "插入線材溫度" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "包含" + +#: fdmprinter.def.json +msgctxt "infill description" +msgid "Infill" +msgstr "填充" + +#: fdmprinter.def.json +msgctxt "infill label" +msgid "Infill" +msgstr "填充" + +#: fdmprinter.def.json +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "填充加速度" + +#: fdmprinter.def.json +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "先印填充再印牆壁" + +#: fdmprinter.def.json +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "填充密度" + +#: fdmprinter.def.json +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "填充擠出機" + +#: fdmprinter.def.json +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "填充流量" + +#: fdmprinter.def.json +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "填充加加速度" + +#: fdmprinter.def.json +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "填充層厚度" + +#: fdmprinter.def.json +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "填充線條方向" + +#: fdmprinter.def.json +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "填充線條距離" + +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "填充線倍增器" + +#: fdmprinter.def.json +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "填充線寬" + +#: fdmprinter.def.json +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "填充網格" + +#: fdmprinter.def.json +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "填充突出角度" + +#: fdmprinter.def.json +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "填充重疊" + +#: fdmprinter.def.json +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "填充重疊百分比" + +#: fdmprinter.def.json +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "填充列印樣式" + +#: fdmprinter.def.json +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "填充速度" + +#: fdmprinter.def.json +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "填充支撐" + +#: fdmprinter.def.json +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "填充空跑最佳化" + +#: fdmprinter.def.json +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "填充擦拭距離" + +#: fdmprinter.def.json +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "填充 X 軸偏移" + +#: fdmprinter.def.json +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "填充 Y 軸偏移" + +#: fdmprinter.def.json +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "起始底部層數" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "起始層風扇轉速" + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "起始層加速度" + +#: fdmprinter.def.json +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "起始層流量" + +#: fdmprinter.def.json +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "起始層高" + +#: fdmprinter.def.json +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "起始層水平擴展" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "起始層加加速度" + +#: fdmprinter.def.json +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "起始層線寬" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "起始層列印加速度" + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "起始層列印加加速度" + +#: fdmprinter.def.json +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "起始層列印速度" + +#: fdmprinter.def.json +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "起始層速度" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "支撐起始層線條間距" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "起始層空跑加速度" + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "起始層空跑加加速度" + +#: fdmprinter.def.json +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "起始層空跑速度" + +#: fdmprinter.def.json +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "起始層 Z 重疊" + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "起始列印溫度" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "內壁加速度" + +#: fdmprinter.def.json +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "內壁擠出機" + +#: fdmprinter.def.json +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "內壁加加速度" + +#: fdmprinter.def.json +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "內壁速度" + +#: fdmprinter.def.json +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "內壁流量" + +#: fdmprinter.def.json +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "內壁線寬" + +#: fdmprinter.def.json +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 "內嵌是套用在外壁路徑上的功能。如果外壁小於噴頭,並且在內壁之後列印,則此偏移量將使噴頭孔內移與內壁重疊而不是行走在模型外部。" + +#: fdmprinter.def.json +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "" + +#: fdmprinter.def.json +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "" + +#: fdmprinter.def.json +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "" + +#: fdmprinter.def.json +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "只燙平最高層" + +#: fdmprinter.def.json +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "燙平加速度" + +#: fdmprinter.def.json +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "燙平流量" + +#: fdmprinter.def.json +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "燙平內嵌" + +#: fdmprinter.def.json +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "燙平加加速度" + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "燙平線條間距" + +#: fdmprinter.def.json +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "燙平列印樣式" + +#: fdmprinter.def.json +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "燙平速度" + +#: fdmprinter.def.json +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "原點是否位於中心" + +#: fdmprinter.def.json +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 "這種線材高溫時是脆斷的類型(晶狀),還是拉絲的類型(非晶狀)?" + +#: fdmprinter.def.json +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "只在列印外側時隨機抖動,內部孔洞不抖動。" + +#: fdmprinter.def.json +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "保持斷開表面" + +#: fdmprinter.def.json +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "層高" + +#: fdmprinter.def.json +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "每層列印起始點的 X 座標" + +#: fdmprinter.def.json +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "每層列印起始點的 Y 座標" + +#: fdmprinter.def.json +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 "木筏底部的層厚。本層應為與印表機列印平台穩固附著厚實的一層。" + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "木筏中層的層厚。" + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "木筏頂部單層的厚度。" + +#: fdmprinter.def.json +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 毫米省略一次連接線,讓支撐結構更容易拆除。" + +#: fdmprinter.def.json +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "左方" + +#: fdmprinter.def.json +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "噴頭抬升" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "閃電形" + +#: fdmprinter.def.json +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "閃電形填充突出角度" + +#: fdmprinter.def.json +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "閃電形填充生成角度" + +#: fdmprinter.def.json +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "閃電形填充層間垂直堆疊角度" + +#: fdmprinter.def.json +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "閃電形填充支撐堆疊角度" + +#: fdmprinter.def.json +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 "將此網格的體積限制在其他網格內。你可以使用它來制作採用不同的設定以及完全不同的擠出機的網格列印的特定區域。" + +#: fdmprinter.def.json +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "限制" + +#: fdmprinter.def.json +msgctxt "line_width label" +msgid "Line Width" +msgstr "線寬" + +#: fdmprinter.def.json +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "直線" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "線條" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "線條" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "線條" + +#: fdmprinter.def.json +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "線條" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "直線" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "直線" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "直線" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +#: fdmprinter.def.json +msgctxt "machine_settings label" +msgid "Machine" +msgstr "機器" + +#: fdmprinter.def.json +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "機器深度" + +#: fdmprinter.def.json +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "機器頭和風扇多邊形" + +#: fdmprinter.def.json +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "機器高度" + +#: fdmprinter.def.json +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "機器類型" + +#: fdmprinter.def.json +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "機器寬度" + +#: fdmprinter.def.json +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "機器詳細設定" + +#: fdmprinter.def.json +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "使突出可列印" + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "使彼此接觸的網格稍微重疊。使他們能更緊密地結合在一起。" + +#: fdmprinter.def.json +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "讓底部的支撐區域小於突出部分的支撐區域。" + +#: fdmprinter.def.json +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 "在支撐網格下方的所有位置進行支撐,讓支撐網格中没有突出部分。" + +#: fdmprinter.def.json +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 "擠出機的控制參數使用絕對位置,而不是與前次位置的相對位移。" + +#: fdmprinter.def.json +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 "使模型的第一層和第二層在 Z 方向上重疊以補償在空隙中損失的線材。第一個模型層上方的所有模型將向下移動此重疊量。" + +#: fdmprinter.def.json +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "讓網格更適合 3D 列印。" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin(容積)" + +#: fdmprinter.def.json +msgctxt "material description" +msgid "Material" +msgstr "線材" + +#: fdmprinter.def.json +msgctxt "material label" +msgid "Material" +msgstr "線材" + +#: fdmprinter.def.json +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "線材 GUID" + +#: fdmprinter.def.json +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "擦拭線材體積" + +#: fdmprinter.def.json +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "不回抽的最大梳理距離" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "X 軸最大加速度" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Y 軸最大加速度" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Z 軸最大加速度" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "最大偏差值" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "最大風扇轉速" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "擠出馬達最大加速度" + +#: fdmprinter.def.json +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "最大模型角度" + +#: fdmprinter.def.json +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "最大突出孔洞面積" + +#: fdmprinter.def.json +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "最長停放時間" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "最高解析度" + +#: fdmprinter.def.json +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "最大回抽次數" + +#: fdmprinter.def.json +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "最大延伸表層角度" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "E 軸最大速度" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "X 軸最大速度" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Y 軸最大速度" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Z 軸最大速度" + +#: fdmprinter.def.json +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "最大塔型支撐直徑" + +#: fdmprinter.def.json +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "最大空跑解析度" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "X 軸方向馬達的最大加速度" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Y 軸方向馬達的最大加速度。" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Z 軸方向馬達的最大加速度。" + +#: fdmprinter.def.json +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "擠出馬達的最大加速度。" + +#: fdmprinter.def.json +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 "低於此密度的填充被視為稀疏填充。位於稀疏填充上的表層被視為沒有受到支撐,因此會被當作橋樑處理。" + +#: fdmprinter.def.json +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 方向的最大直徑。" + +#: fdmprinter.def.json +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 "在另一次擦拭噴頭前可擠出的最大線材量。假如此值小於列印此層所需的線材量,則此設定對此層無效,也就是說,每層只會擦拭一次。" + +#: fdmprinter.def.json +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "合併網格重疊" + +#: fdmprinter.def.json +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "網格修復" #: fdmprinter.def.json msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "網格位置 X" -#: fdmprinter.def.json -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "套用在模型 x 方向上的偏移量。" - #: fdmprinter.def.json msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "網格位置 Y" -#: fdmprinter.def.json -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "套用在模型 y 方向上的偏移量。" - #: fdmprinter.def.json msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "網格位置 Z" #: fdmprinter.def.json -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 "網格處理等級" #: fdmprinter.def.json msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "網格旋轉矩陣" +#: fdmprinter.def.json +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "中間" + +#: fdmprinter.def.json +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "最小模具寬度" + +#: fdmprinter.def.json +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "待機溫度最短時間" + +#: fdmprinter.def.json +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "最小橋樑牆壁長度" + +#: fdmprinter.def.json +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "" + +#: fdmprinter.def.json +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "最小擠出距離範圍" + +#: fdmprinter.def.json +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "" + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "最小進料速率" + +#: fdmprinter.def.json +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "最小填充面積" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "最短單層列印時間" + +#: fdmprinter.def.json +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "最小多邊形周長" + +#: fdmprinter.def.json +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "最小延伸表層寬度" + +#: fdmprinter.def.json +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "最低列印速度" + +#: fdmprinter.def.json +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "最小支撐面積" + +#: fdmprinter.def.json +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "最小支撐底板面積" + +#: fdmprinter.def.json +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "最小支撐介面面積" + +#: fdmprinter.def.json +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "最小支撐頂板面積" + +#: fdmprinter.def.json +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "最小支撐 X/Y 間距" + +#: fdmprinter.def.json +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "" + +#: fdmprinter.def.json +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "滑行前最小體積" + +#: fdmprinter.def.json +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "" + +#: fdmprinter.def.json +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 "支撐介面區域的最小面積大小。面積小於此值的區域將列印一般支撐。" + +#: fdmprinter.def.json +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 "支撐區域的最小面積大小。面積小於此值的區域將不會產生支撐。" + +#: fdmprinter.def.json +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 "支撐底板區域的最小面積大小。面積小於此值的區域將列印一般支撐。" + +#: fdmprinter.def.json +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 "支撐頂板區域的最小面積大小。面積小於此值的區域將列印一般支撐。" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "錐形支撐區域底部的最小寬度。寬度較小可能導致不穩定的支撐結構。" + +#: fdmprinter.def.json +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "模具" + +#: fdmprinter.def.json +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "模具角度" + +#: fdmprinter.def.json +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "模具頂板高度" + +#: fdmprinter.def.json +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "單一化燙平順序" + +#: fdmprinter.def.json +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "頂層表面單一化列印順序" + +#: fdmprinter.def.json +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "單一化列印 頂層/底層 順序" + +#: fdmprinter.def.json +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 將關閉外圍。" + +#: fdmprinter.def.json +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "第一層線寬倍數。增大此倍數可改善熱床附著。" + +#: fdmprinter.def.json +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "空載移動係數" + +#: fdmprinter.def.json +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Z 間隙無表層" + +#: fdmprinter.def.json +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "以非傳統的方式列印你的模型。" + +#: fdmprinter.def.json +msgctxt "adhesion_type option none" +msgid "None" +msgstr "無" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "無" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "正常" + +#: fdmprinter.def.json +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "正常" + +#: fdmprinter.def.json +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 時的最後選擇。" + +#: fdmprinter.def.json +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "表層以外區域" + +#: fdmprinter.def.json +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "不在外表面上" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "噴頭角度" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "噴頭直徑" + +#: fdmprinter.def.json +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "噴頭禁入區域" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "噴頭 ID" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "噴頭長度" + +#: fdmprinter.def.json +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "噴頭切換額外裝填量" + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "噴頭切換裝填速度" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "噴頭切換回抽速度" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "噴頭切換回抽距離" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "噴頭切換回抽速度" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "擠出機數目" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "已啟用擠出機的數量" + +#: fdmprinter.def.json +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "慢速列印層數" + +#: fdmprinter.def.json +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "啟用擠出機的數量;軟體自動設定" + +#: fdmprinter.def.json +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "擠出機組數目。擠出機組是指進料裝置、喉管和噴頭的組合。" + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "將噴頭移動經過刷子的次數。" + +#: fdmprinter.def.json +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 "由模型頂部往下,填充密度減半的次數。愈接近頂部的填充密度愈高,直到所設定的填充密度。" + +#: fdmprinter.def.json +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 "從支撐頂層往下,填充密度減半的次數。越靠近頂層的填充密度越高,最高密度為支撐填充密度。" + +#: fdmprinter.def.json +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "八面體" + +#: fdmprinter.def.json +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "關" + +#: fdmprinter.def.json +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "套用在模型 x 方向上的偏移量。" + +#: fdmprinter.def.json +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "套用在模型 y 方向上的偏移量。" + +#: fdmprinter.def.json +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 方向上的偏移量。利用此選項,你可以執行過去被稱為“模型沉降”的操作。" + +#: fdmprinter.def.json +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "擠出機偏移量" + +#: fdmprinter.def.json +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "排隊列印" + +#: fdmprinter.def.json +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 抬升。" + +#: fdmprinter.def.json +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 "只在網格的最後一層進行燙平處理。 如果下層不需要光滑的表面,可啟用此選項以節省時間。" + +#: fdmprinter.def.json +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 "僅在模型外部列印邊緣。這會減少你之後需要移除的邊緣量,而不會過度影響列印平台附著。" + +#: fdmprinter.def.json +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "擦拭牆角度" + +#: fdmprinter.def.json +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "擦拭牆距離" + +#: fdmprinter.def.json +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "最佳化牆壁列印順序" + +#: fdmprinter.def.json +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 "最佳化列印牆壁的順序,以減少縮回次數和行進距離。啟用此功能對大多數的零件是有益的,但有些零件可能反而會更花時間,因此請比較列印時間的估計值評估是否進行最佳化。當列印平台附著類型設定為邊緣時,第一層不會進行最佳化。" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "噴頭外徑" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "外壁加速度" + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "外壁擠出機" + +#: fdmprinter.def.json +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "外壁流量" + +#: fdmprinter.def.json +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "外壁內嵌" + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "外壁加加速度" + +#: fdmprinter.def.json +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "線寬(外壁)" + +#: fdmprinter.def.json +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "外壁速度" + +#: fdmprinter.def.json +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "外壁擦拭噴頭長度" + +#: fdmprinter.def.json +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "突出牆壁角度" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "突出牆壁速度" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "突出牆壁將會以正常速度的此百分比值列印。" + +#: fdmprinter.def.json +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "若無回抽,擦拭後暫停。" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "列印橋樑牆壁和表層時,風扇轉速的百分比。" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "列印橋樑表層第二層時,風扇轉速的百分比。" + +#: fdmprinter.def.json +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 "在支撐上方列印表層區域時使用的風扇轉速百分比。使用高風扇轉速可以使支撐更容易移除。" + +#: fdmprinter.def.json +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "列印橋樑表層第三層時,風扇轉速的百分比。" + +#: fdmprinter.def.json +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 模型。" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "換料塔加速度" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Brim" +msgstr "換料塔邊緣" + +#: fdmprinter.def.json +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "換料塔流量" + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "換料塔加加速度" + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "換料塔線寬" + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "換料塔最小體積" + +#: fdmprinter.def.json +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "換料塔尺寸" + +#: fdmprinter.def.json +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "換料塔速度" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "換料塔 X 位置" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "換料塔 Y 位置" + +#: fdmprinter.def.json +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +msgstr "即使模型沒有開啟邊緣功能,裝填塔也列印邊緣以提供額外的附著力。目前無法與「木筏」的平台附著類型同時使用。" + +#: fdmprinter.def.json +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "列印加速度" + +#: fdmprinter.def.json +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "列印加加速度" + +#: fdmprinter.def.json +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "列印順序" + +#: fdmprinter.def.json +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "列印速度" + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "列印薄壁" + +#: fdmprinter.def.json +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "在列印件旁邊印一個塔,用在每次切換噴頭後填充線材。" + +#: fdmprinter.def.json +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 "只在模型頂部需要支撐的地方才列印填充。啟用此功能可減少列印時間和線材用量,但會導致物件強度不均勻。" + +#: fdmprinter.def.json +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 "再使用燙平列印線條時,命令相鄰線條於單方向重疊。雖然會花更多時間列印,但會使平面更平整." + +#: fdmprinter.def.json +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 "將模型作為模具列印,可進行鑄造,以便獲取與列印平台上的模型類似的模型。" + +#: fdmprinter.def.json +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "列印在水平面上比噴頭尺寸更薄的模型部件。" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "列印橋樑表層區域第二層時的速度。" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "列印橋樑表層區域第三層時的速度。" + +#: fdmprinter.def.json +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 "列印牆壁前先列印填充。先列印牆壁可以產生更精確的牆壁,但突出部分列印品質會較差。先列印填充會產生更牢固的牆壁,但有時候填充的列印樣式會透過表面顯現出來。" + +#: fdmprinter.def.json +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 "再列印頂層表面線條時,命令相鄰線條於單方向重疊. 雖然會花更多時間列印,但會使平面更平整." + +#: fdmprinter.def.json +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 "再列印頂層/底層線條時,命令相鄰線條於單方向重疊. 雖然會花更多時間列印,但會使平面更平整." + +#: fdmprinter.def.json +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "列印溫度" + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "列印溫度起始層" + +#: fdmprinter.def.json +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "" + +#: fdmprinter.def.json +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 "每兩層建立一個額外牆壁,這些額外的牆壁能更緊密地抓填充部分,產生較強壯的模型。" + +#: fdmprinter.def.json +msgctxt "resolution label" +msgid "Quality" +msgstr "品質" + +#: fdmprinter.def.json +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "四分立方體" + +#: fdmprinter.def.json +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "木筏" + +#: fdmprinter.def.json +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "木筏間隙" + +#: fdmprinter.def.json +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "" + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "木筏底部風扇轉速" + +#: fdmprinter.def.json +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "木筏底部間距" + +#: fdmprinter.def.json +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "木筏底部線寬" + +#: fdmprinter.def.json +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "木筏底部列印加速度" + +#: fdmprinter.def.json +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "木筏底部列印加加速度" + +#: fdmprinter.def.json +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "木筏底部列印速度" + +#: fdmprinter.def.json +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "木筏底部厚度" + +#: fdmprinter.def.json +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "木筏額外邊緣" + +#: fdmprinter.def.json +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "木筏風扇轉速" + +#: fdmprinter.def.json +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "" + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "木筏中層風扇轉速" + +#: fdmprinter.def.json +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "木筏中層線寬" + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "木筏中層列印加速度" + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "木筏中層列印加加速度" + +#: fdmprinter.def.json +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "木筏中層列印速度" + +#: fdmprinter.def.json +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "木筏中層間距" + +#: fdmprinter.def.json +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "木筏中層厚度" + +#: fdmprinter.def.json +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "木筏列印加速度" + +#: fdmprinter.def.json +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "木筏列印加加速度" + +#: fdmprinter.def.json +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "木筏列印速度" + +#: fdmprinter.def.json +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "木筏平滑處理" + +#: fdmprinter.def.json +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "" + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "木筏頂部風扇轉速" + +#: fdmprinter.def.json +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "木筏頂部層厚" + +#: fdmprinter.def.json +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "木筏頂部層數" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "木筏頂部線寬" + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "木筏頂部列印加速度" + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "木筏頂部列印加加速度" + +#: fdmprinter.def.json +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "木筏頂部列印速度" + +#: fdmprinter.def.json +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "木筏頂部間距" + +#: fdmprinter.def.json +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "隨機" + +#: fdmprinter.def.json +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "隨機填充起始位置" + +#: fdmprinter.def.json +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 "隨機選擇第一條填充線列印。 這可以防止強度集中在某一個部分,但會花費額外的空跑。" + +#: fdmprinter.def.json +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 "在列印外牆時隨機抖動,使表面具有粗糙和毛絨絨的外觀。" + +#: fdmprinter.def.json +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "矩形" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "標準風扇轉速" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "標準風扇轉速(高度)" + +#: fdmprinter.def.json +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "標準風扇轉速(層)" + +#: fdmprinter.def.json +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "標準風扇轉速門檻值" + +#: fdmprinter.def.json +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "相對模式擠出" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "移除所有孔洞" + +#: fdmprinter.def.json +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "移除空的第一層" + +#: fdmprinter.def.json +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "刪除網格交集部分" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "" + +#: fdmprinter.def.json +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 "刪除多個網格彼此重疊的區域。如果合併的雙重線材對象彼此重疊,則可以使用此選項。" + +#: fdmprinter.def.json +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 "如果可列印的第一層下方有空的層,將其移除。假如「切片公差」設定為「排除」或「中間」,關閉此設定可能會導致空的第一層。" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "" + +#: fdmprinter.def.json +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 "移除每層的孔洞,僅保留外部形狀。這會忽略任何不可見的內部幾何。但是,也會忽略可從上方或下方看到的層孔洞。" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +#: fdmprinter.def.json +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 "用多個同心線代替頂部/底部列印樣式的最外面部分。使用一條或兩條線可以改善列印在填充上的頂板。" + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution description" +msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." +msgstr "計算避免碰撞模型的計算精度。設定較低的值可產生較精確的樹狀支撐,這樣的支撐問題較少但會嚴重的增加切片所需的時間。" + +#: fdmprinter.def.json +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "列印外壁前先進行回抽" + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "列印下一層時回抽" + +#: fdmprinter.def.json +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "當噴頭移動經過非列印區域時回抽線材。" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "當噴頭移動經過非列印區域時回抽線材。" + +#: fdmprinter.def.json +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "當噴頭移動到下一層時回抽線材。" + +#: fdmprinter.def.json +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "回抽距離" + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "回抽額外裝填量" + +#: fdmprinter.def.json +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "回抽最小空跑距離" + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "回抽裝填速度" + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "回抽速度" + +#: fdmprinter.def.json +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "回抽速度" + +#: fdmprinter.def.json +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "右方" + +#: fdmprinter.def.json +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "收縮補償放大倍率" + +#: fdmprinter.def.json +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "場景具有支撐網格" + +#: fdmprinter.def.json +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "接縫偏好設定" + +#: fdmprinter.def.json +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 "設定防風罩的高度。選擇防風罩與模型同高或只列印到限制的高度。" + +#: fdmprinter.def.json +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "用於多擠出機情況下的設定。" + +#: fdmprinter.def.json +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "未從 Cura 前端調用 CuraEngine 時使用的設定。" + +#: fdmprinter.def.json +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "共用噴頭初始回抽" + +#: fdmprinter.def.json +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "最尖銳的轉角" + +#: fdmprinter.def.json +msgctxt "shell description" +msgid "Shell" +msgstr "外殼" + +#: fdmprinter.def.json +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "最短" + +#: fdmprinter.def.json +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "顯示印表機型號" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "表層邊緣支撐層數" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "表層邊緣支撐厚度" + +#: fdmprinter.def.json +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "表層延伸距離" + +#: fdmprinter.def.json +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "表層重疊" + +#: fdmprinter.def.json +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "表層重疊百分比" + +#: fdmprinter.def.json +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "表層移除寬度" + +#: fdmprinter.def.json +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 "如果表層區域寬度小於此值,則不會延伸。這會避免延伸在模型表面的斜度接近垂直時所形成的狹窄表層區域。" + +#: fdmprinter.def.json +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 個連接線省略一次,讓支撐結構更容易拆除。" + +#: fdmprinter.def.json +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 "省略支撐的部分連接線,讓支撐結構更容易拆除。此設定適用於鋸齒狀的支撐樣式。" + +#: fdmprinter.def.json +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "外圍" + +#: fdmprinter.def.json +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "外圍間距" + +#: fdmprinter.def.json +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "外圍線條數量" + +#: fdmprinter.def.json +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "外圍/邊緣加速度" + +#: fdmprinter.def.json +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "" + +#: fdmprinter.def.json +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "外圍/邊緣流量" + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "外圍/邊緣加加速度" + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "外圍/邊緣線寬" + +#: fdmprinter.def.json +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "外圍/邊緣最小長度" + +#: fdmprinter.def.json +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "外圍/邊緣速度" + +#: fdmprinter.def.json +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "切片公差" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "細部模式起始層速度" + +#: fdmprinter.def.json +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "細部模式最大長度" + +#: fdmprinter.def.json +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "細部模式速度" + +#: fdmprinter.def.json +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "細部模式最大直徑" + +#: fdmprinter.def.json +#, fuzzy +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "最終列印溫度" + +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + +#: fdmprinter.def.json +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 "第一層的細部模式將以正常列印速度的此百分比值列印。 較慢的列印有助於黏合和精度。" + +#: fdmprinter.def.json +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 "細部模式將以正常列印速度的此百分比值列印。 較慢的列印有助於黏合和精度。" + +#: fdmprinter.def.json +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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + +#: fdmprinter.def.json +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "智慧隱藏" + +#: fdmprinter.def.json +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "平滑螺旋輪廓" + +#: fdmprinter.def.json +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 縫應在列印品上幾乎看不到,但在分層檢視中仍然可見)。請注意,平滑操作將傾向於模糊精細的表面細節。" + +#: fdmprinter.def.json +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "有些線材可能會在空跑過程中滲出,可以在這裡對其進行補償。" + +#: fdmprinter.def.json +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 "有些線材可能會在擦拭過程中滲出,可以在這裡對其進行補償。" + +#: fdmprinter.def.json +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "特殊模式" + +#: fdmprinter.def.json +msgctxt "speed description" +msgid "Speed" +msgstr "速度" + +#: fdmprinter.def.json +msgctxt "speed label" +msgid "Speed" +msgstr "速度" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "抬升時移動 Z 軸的速度。" + +#: fdmprinter.def.json +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "螺旋列印外輪廓" + +#: fdmprinter.def.json +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 軸穩定增動。該功能會將一個實心模型轉變為具有實體底部的單壁列印。只有在當每一層只包含一個封閉面時才應啟用此功能。" + +#: fdmprinter.def.json +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "待機溫度" + +#: fdmprinter.def.json +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "起始 G-code" + +#: fdmprinter.def.json +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 "一層中每條路徑的起點。當連續多層的路徑從相同點開始時,則列印物上會顯示一條垂直縫隙。如果將這些路徑靠近一個使用者指定的位置對齊,則縫隙最容易移除。如果隨機放置,則路徑起點的不精準度將較不明顯。採用最短的路徑時,列印將更為快速。" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "每毫米的步數(E)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "每毫米的步數(X)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "每毫米的步數(Y)" + +#: fdmprinter.def.json +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "每毫米的步數(Z)" + +#: fdmprinter.def.json +msgctxt "support description" +msgid "Support" +msgstr "支撐" + +#: fdmprinter.def.json +msgctxt "support label" +msgid "Support" +msgstr "支撐" + +#: fdmprinter.def.json +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "支撐加速度" + +#: fdmprinter.def.json +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "支撐底部間距" + +#: fdmprinter.def.json +#, fuzzy +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "支撐牆壁線條數量" + +#: fdmprinter.def.json +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "支撐邊緣線條數量" + +#: fdmprinter.def.json +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "支撐邊緣寬度" + +#: fdmprinter.def.json +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "支撐塊線條數" + +#: fdmprinter.def.json +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "支撐塊大小" + +#: fdmprinter.def.json +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "支撐密度" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "支撐間距優先權" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "支撐用擠出機" + +#: fdmprinter.def.json +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "支撐底板加速度" + +#: fdmprinter.def.json +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "支撐底板密度" + +#: fdmprinter.def.json +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "支撐底板擠出機" + +#: fdmprinter.def.json +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "支撐底板流量" + +#: fdmprinter.def.json +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "支撐底板水平擴展" + +#: fdmprinter.def.json +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "支撐底板加加速度" + +#: fdmprinter.def.json +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "支撐底板線條方向" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "支撐底板線條距離" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "支撐底板線寬" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "支撐底板列印樣式" + +#: fdmprinter.def.json +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "支撐底板速度" + +#: fdmprinter.def.json +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "支撐底板厚度" + +#: fdmprinter.def.json +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "支撐流量" + +#: fdmprinter.def.json +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "支撐水平擴展" + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "支撐填充加速度" + +#: fdmprinter.def.json +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "支撐填充擠出機" + +#: fdmprinter.def.json +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "支撐填充加加速度" + +#: fdmprinter.def.json +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "支撐填充層厚度" + +#: fdmprinter.def.json +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "支撐填充線條方向" + +#: fdmprinter.def.json +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "支撐填充速度" + +#: fdmprinter.def.json +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "支撐介面加速度" + +#: fdmprinter.def.json +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "支撐介面密度" + +#: fdmprinter.def.json +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "支撐介面擠出機" + +#: fdmprinter.def.json +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "支撐介面流量" + +#: fdmprinter.def.json +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "支撐介面水平擴展" + +#: fdmprinter.def.json +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "支撐介面加加速度" + +#: fdmprinter.def.json +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "支撐介面線條方向" + +#: fdmprinter.def.json +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "支撐介面線寬" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "支撐介面列印樣式" + +#: fdmprinter.def.json +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "支撐介面解析度" + +#: fdmprinter.def.json +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "支撐介面速度" + +#: fdmprinter.def.json +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "支撐介面厚度" + +#: fdmprinter.def.json +#, fuzzy +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "支撐牆壁線條數量" + +#: fdmprinter.def.json +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "支撐加加速度" + +#: fdmprinter.def.json +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "支撐結合距離" + +#: fdmprinter.def.json +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "支撐線條間距" + +#: fdmprinter.def.json +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "支撐線寬" + +#: fdmprinter.def.json +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "支撐網格" + +#: fdmprinter.def.json +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "支撐突出角度" + +#: fdmprinter.def.json +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "支撐列印樣式" + +#: fdmprinter.def.json +msgctxt "support_type label" +msgid "Support Placement" +msgstr "支撐位置" + +#: fdmprinter.def.json +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "支撐頂板加速度" + +#: fdmprinter.def.json +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "支撐頂板密度" + +#: fdmprinter.def.json +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "支撐頂板擠出機" + +#: fdmprinter.def.json +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "支撐頂板流量" + +#: fdmprinter.def.json +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "支撐頂板水平擴展" + +#: fdmprinter.def.json +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "支撐頂板加加速度" + +#: fdmprinter.def.json +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "支撐頂板線條方向" + +#: fdmprinter.def.json +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "支撐頂板線條距離" + +#: fdmprinter.def.json +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "支撐頂板線寬" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "支撐頂板列印樣式" + +#: fdmprinter.def.json +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "支撐頂板速度" + +#: fdmprinter.def.json +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "支撐頂板厚度" + +#: fdmprinter.def.json +#, fuzzy +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "支撐牆壁線條數量" + +#: fdmprinter.def.json +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "支撐速度" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "支撐階梯高度" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "支撐階梯最大寬度" + +#: fdmprinter.def.json +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "支撐階梯最小傾角" + +#: fdmprinter.def.json +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "支撐結構" + +#: fdmprinter.def.json +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "支撐頂部間距" + +#: fdmprinter.def.json +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "支撐牆壁線條數量" + +#: fdmprinter.def.json +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "支撐 X/Y 間距" + +#: fdmprinter.def.json +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "支撐 Z 間距" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "受支撐表層風扇轉速" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "表面" + +#: fdmprinter.def.json +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "表面能量" + +#: fdmprinter.def.json +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "表面模式" + +#: fdmprinter.def.json +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "表面附著趨勢。" + +#: fdmprinter.def.json +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "表面能量。" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + +#: fdmprinter.def.json +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 "將網格重疊的部分,交互的在每一層中歸屬到不同的網格,以便重疊的網格交織在一起。關閉此設定將使其中一個網格物體獲得重疊中的所有體積,而從其他網格物體中移除。" + +#: fdmprinter.def.json +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 "兩個相鄰層之間的目標水平距離。 減少此設定將導致使用較薄的層高以使各層的邊緣更靠近。" + +#: fdmprinter.def.json +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 坐標。" + +#: fdmprinter.def.json +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "位置的 X 軸座標,在該位置附近開始列印層中各個部分。" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "列印開始時,噴頭在 X 軸上初始位置。" + +#: fdmprinter.def.json +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 坐標。" + +#: fdmprinter.def.json +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "位置的 Y 軸座標,在該位置附近開始列印層中各個部分。" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "列印開始時,噴頭在 Y 軸座標上初始位置。" + +#: fdmprinter.def.json +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "列印開始時,噴頭在 Z 軸座標上的起始位置." + +#: fdmprinter.def.json +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "列印起始層時的加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "起始層的加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "起始層中的空跑加速度。" + +#: fdmprinter.def.json +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "起始層中的空跑加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "列印所有內壁的加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "列印填充的加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "執行燙平的加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "列印發生的加速度。" + +#: fdmprinter.def.json +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "列印木筏底部的加速度。" + +#: fdmprinter.def.json +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 "列印支撐底板的加速度。以較低的加速度列印可以改善支撐在模型頂部的附著。" + +#: fdmprinter.def.json +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "列印支撐填充的加速度。" + +#: fdmprinter.def.json +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "列印木筏中層的加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "列印最外壁的加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "列印換料塔的加速度。" + +#: fdmprinter.def.json +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "列印木筏的加速度。" + +#: fdmprinter.def.json +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 "列印支撐頂板和底板的加速度。以較低的加速度列印可以改善突出部分的品質。" + +#: fdmprinter.def.json +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 "列印支撐頂板的加速度。以較低的加速度列印可以改善突出部分的品質。" + +#: fdmprinter.def.json +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 "列印外圍和邊緣的加速度。一般情况是以起始層加速度列印這些部分,但有時候你可能想要以不同加速度來列印外圍或邊緣。" + +#: fdmprinter.def.json +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "列印支撐的加速度。" + +#: fdmprinter.def.json +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "列印木筏頂部的加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "列印牆壁的加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "列印頂部表層的加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "列印頂部/底部層的加速度。" + +#: fdmprinter.def.json +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "進行空跑的加速度。" + +#: fdmprinter.def.json +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 "燙平期間相對於正常表層線條的擠出線材量。保持噴頭填充狀态有助於填充頂部表面的一些縫隙,但如填充過多則會導致表面上過度擠出和光點。" + +#: fdmprinter.def.json +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 "填充與牆壁的重疊量佔填充線寬的百分比。輕微的重疊能讓填充與牆壁牢固地連接。" + +#: fdmprinter.def.json +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 "填充和牆壁之間的重疊量。稍微重疊可讓各個壁與填充牢固連接。" + +#: fdmprinter.def.json +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 表示沒有回抽。這值通常和加熱區的長度相同。" + +#: fdmprinter.def.json +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 "水平面與噴頭尖端上部圓錐形之間的角度。" + +#: fdmprinter.def.json +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 "塔頂角度。該值越高,塔頂越尖,值越低,塔頂越平。" + +#: fdmprinter.def.json +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° 將使模型的外部遵循模型的輪廓。" + +#: fdmprinter.def.json +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 可讓整條樹枝的粗細一致, 而有點角度可增加樹狀支撐的穩定性。" + +#: fdmprinter.def.json +msgctxt "support_tree_angle description" +msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "樹枝的角度。使用較小的角度讓樹枝較垂直且較平穩。使用較大的角度則可以支撐較大的範圍。" + +#: fdmprinter.def.json +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 度時為水平。較小的角度會讓支撐更為牢固,但需要更多線材。負值會讓支撐底座比頂部寬。" + +#: fdmprinter.def.json +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 "在每一層中,每個多邊形上改變的點的平均密度。注意,多邊形的原始點會被捨棄,因此低密度導致解析度降低。" + +#: fdmprinter.def.json +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 "在每個線條部分改變的隨機點之間的平均距離。注意,多邊形的原始點會被捨棄,因此高平滑度導致解析度降低。該值必須大於絨毛皮膚厚度的一半。" + +#: fdmprinter.def.json +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "列印頭移動的預設加速度。" + +#: fdmprinter.def.json +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 "用於列印的預設溫度。應為線材的溫度\"基礎值\"。其他列印溫度將以此值為基準計算偏移" + +#: fdmprinter.def.json +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 "列印平台加熱的預設溫度。這會是列印平台的溫度\"基礎值\"。其他列印溫度將以此值為基準計算偏移" + +#: fdmprinter.def.json +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 時會增加表層線條的間隙。" + +#: fdmprinter.def.json +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 "支撐結構底板的密度。較高的值會讓支撐更容易附著在模型上。" + +#: fdmprinter.def.json +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 "支撐結構頂板的密度。較高的值會讓突出部分印得更好,但支撐將更加難以移除。" + +#: fdmprinter.def.json +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 時會增加表層線條的間隙。" + +#: fdmprinter.def.json +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 時會增加表層線條的間隙。" + +#: fdmprinter.def.json +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "機器可列印區域深度(Y 座標)" + +#: fdmprinter.def.json +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "特殊塔的直徑。" + +#: fdmprinter.def.json +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 "樹狀支撐中最細樹枝的直徑。越粗的樹枝越堅固。底部的樹枝會比這更粗。" + +#: fdmprinter.def.json +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "帶動進料器中線材的輪子的直徑。" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "下一列印層與前一列印層的層高差。" + +#: fdmprinter.def.json +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "燙平線條之間的距離。" + +#: fdmprinter.def.json +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "噴頭和已列印部分之間在空跑時避開的距離。" + +#: fdmprinter.def.json +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 "木筏底部線條之間的距離。寬間距方便讓木筏從列印平台移除。" + +#: fdmprinter.def.json +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 "木筏中層線條之間的距離。中層的間距應足夠寬,同時也要足夠密集,以便支撐木筏頂部。" + +#: fdmprinter.def.json +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 "木筏頂部線條之間的距離。間距應等於線寬,以便打造堅固表面。" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "模型到最外側邊緣線的距離。較大的邊緣可增强與列印平台的附著,但也會減少有效列印區域。" + +#: fdmprinter.def.json +#, 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 "與噴頭尖端的距離,當不再使用擠出機時會將耗材停放在此區域。" + +#: fdmprinter.def.json +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 "與噴頭尖端的距離,噴頭產生的熱量在這段距離內傳遞到線材中。" + +#: fdmprinter.def.json +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 "底部表層延伸進入填充的距離。值愈高表層與填充之間的附著愈好,並使下方的牆壁與表層黏得更緊。而較低的值可以節省線材的使用。" + +#: fdmprinter.def.json +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 "表層延伸進入填充的距離。值愈高表層與填充之間的附著愈好,並使相鄰層的牆壁與表層黏得更緊。而較低的值可以節省線材的使用。" + +#: fdmprinter.def.json +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 "頂部表層延伸進入填充的距離。值愈高表層與填充之間的附著愈好,並使上方的牆壁與表層黏得更緊。而較低的值可以節省線材的使用。" + +#: fdmprinter.def.json +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "將噴頭來回移動經過刷子的距離。" + +#: fdmprinter.def.json +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 "內部填充線的端點已被縮減以節省線材. 這個設定用於調整突出線的角度." + +#: fdmprinter.def.json +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 "解決在擠料的同時因為噴頭冷卻所造成的影響的額外速度修正。相同的值被用於表示在擠壓時所失去的升溫速度。" + +#: fdmprinter.def.json +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 "用於列印支撐填充第一層的擠出機組。在多擠出機情況下適用。" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "用於列印支撐底板的擠出機組。在多擠出機情況下適用。" + +#: fdmprinter.def.json +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 "用於列印支撐填充的擠出機組。在多擠出機情況下適用。" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "用於列印支撐頂板和底板的擠出機組。在多擠出機情況下適用。" + +#: fdmprinter.def.json +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 "用於列印支撐頂板的擠出機組。在多擠出機情況下適用。" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "用於列印外圍/邊緣/木筏的擠出機組。在多擠出機情況下適用。" + +#: fdmprinter.def.json +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "用於列印支撐的擠出機組。在多擠出機情況下適用。" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "用於列印填充的擠出機組。在多擠出機情況下適用。" + +#: fdmprinter.def.json +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "用於列印內壁的擠出機組。在多擠出機情況下適用。" + +#: fdmprinter.def.json +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "用於列印外壁的擠出機組。在多擠出機情況下適用。" + +#: fdmprinter.def.json +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 "用於列印頂部和底部表層的擠出機組。在多擠出機情況下適用。" + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "用於列印最頂部表層的擠出機組。在多擠出機情況下適用。" + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "用於列印牆壁的擠出機組。在多擠出機情況下適用。" + +#: fdmprinter.def.json +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "木筏底部的風扇轉速。" + +#: fdmprinter.def.json +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "木筏中層的風扇轉速。" + +#: fdmprinter.def.json +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "木筏的風扇轉速。" + +#: fdmprinter.def.json +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "木筏頂部的風扇轉速。" + +#: fdmprinter.def.json +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 "圖片檔案位置,該圖片的亮度值決定最小密度在填充中對應的位置。" + +#: fdmprinter.def.json +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 "圖片檔案位置,該圖片的亮度值決定最小密度在支撐中對應的位置。" + +#: fdmprinter.def.json +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 "前幾層的列印速度比模型的其他層慢,以便實現與列印平台的更好附著,並改善整體的列印成功率。該速度在這些層中會逐漸增加。" + +#: fdmprinter.def.json +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 "木筏最後一層與模型第一層之間的間隙。只有第一層被提高了這個距離,以便降低木筏和模型之間的附著。讓木筏更容易剝離。" + +#: fdmprinter.def.json +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "機器可列印區域高度(Z 座標)" + +#: fdmprinter.def.json +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "用於列印模具的模型水平部分上方的高度。" + +#: fdmprinter.def.json +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 "使用標準風扇轉速的高度。風扇轉速會從起始轉速逐漸增加,在此高度達到標準風扇轉速。" + +#: fdmprinter.def.json +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "噴頭尖端與吊車之間的高度差。" + +#: fdmprinter.def.json +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 "噴頭尖端與列印頭最低部分之間的高度差。" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "擠出機切換後進行 Z 抬升的高度差。" + +#: fdmprinter.def.json +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "執行 Z 抬升的高度差。" + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "執行 Z 抬升的高度差。" + +#: fdmprinter.def.json +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 "每層的高度(以毫米為單位)。值越高,則列印速度越快,解析度越低;值越低,則列印速度越慢,解析度越高。" + +#: fdmprinter.def.json +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "減半填充密度的高度。" + +#: fdmprinter.def.json +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "支撐層密度減半的厚度。" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "起始層高(以毫米為單位)。起始層越厚,與列印平台的附著越輕鬆。" + +#: fdmprinter.def.json +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 "模型上的支撐階梯狀底部的階梯高度。較低的值會使支撐更難於移除,但過高的值可能導致不穩定的支撐結構。設為零可以關閉階梯狀行為。" + +#: fdmprinter.def.json +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 "第一條邊緣線和列印品第一層輪廓之間的水平距離。 一個小間隙可以讓邊緣更容易移除,同時仍然具有散熱優點。" + +#: fdmprinter.def.json +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" +"這是最小距離,多個外圍線條將從此距離向外延伸。" + +#: fdmprinter.def.json +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 "填充線被拉直用以節省列印時間. 這是填充線長度上允許的最大突出角度." + +#: fdmprinter.def.json +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "填充樣式在 X 軸方向平移此距離。" + +#: fdmprinter.def.json +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "填充樣式在 Y 軸方向平移此距離。" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "噴頭內徑,在使用非標準噴頭尺寸時需更改此設定。" + +#: fdmprinter.def.json +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "列印木筏底部的加加速度。" + +#: fdmprinter.def.json +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "列印木筏中層的加加速度。" + +#: fdmprinter.def.json +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "列印木筏的加加速度。" + +#: fdmprinter.def.json +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "列印木筏頂部的加加速度。" + +#: fdmprinter.def.json +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 "要移除底部表層區域的最大寬度。寬度小於此值的底部表層區域將會消失。這有助於減少在列印模型傾斜的底部表層所花費的時間和線材。" + +#: fdmprinter.def.json +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 "要移除表層區域的最大寬度。寬度小於此值的表層區域將會消失。這有助於減少在列印模型傾斜的頂部表層和底部表層所花費的時間和線材。" + +#: fdmprinter.def.json +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 "要移除頂部表層區域的最大寬度。寬度小於此值的頂部表層區域將會消失。這有助於減少在列印模型傾斜的頂部表層所花費的時間和線材。" + +#: fdmprinter.def.json +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 "要使用標準風扇轉速的層。如果標準風扇轉速高度已被設定,這個值將使用計算出來後取四捨五入的整數值。" + +#: fdmprinter.def.json +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 "使用標準風扇轉速的單層列印時間門檻值。如果單層列印時間大於這個門檻值,就使用標準風扇轉速。如果單層列印時間比這個門檻值短,系統會根據單層列印時間決定使用的風扇轉速。列印時間愈短,所使用的風扇轉速愈快,但不會超過最大風扇轉速。" + +#: fdmprinter.def.json +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "回抽移動期間回抽的線材長度。" + +#: fdmprinter.def.json +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "印表機上列印平台的材質。" + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "允許與底層高度差異的最大值。" + +#: fdmprinter.def.json +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度為水平。較小的角度擦拭效果較好,但是要用更多的線材。" + +#: fdmprinter.def.json +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° 時,不會以任何方式更改模型。" + +#: fdmprinter.def.json +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會填補所有模型底層孔洞." + +#: fdmprinter.def.json +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 會較小。最大偏差是最高解析度的限制,所以當兩者衝突時,會以最大偏差成立為優先。" + +#: fdmprinter.def.json +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 方向的最大距離。當結構與結構靠近到小於此值時,這些結構將合併為一個。" + +#: fdmprinter.def.json +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 "流速補償時線材可移動的最大距離(以毫米為單位)。" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "列印起始層時的最大瞬時速度變化。" + +#: fdmprinter.def.json +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "列印頭的最大瞬時速度變化。" + +#: fdmprinter.def.json +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "執行燙平時的最大瞬時速度變化。" + +#: fdmprinter.def.json +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "列印所有內壁時的最大瞬時速度變化。" + +#: fdmprinter.def.json +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "列印填充時的最大瞬時速度變化。" + +#: fdmprinter.def.json +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "列印支撐底板時的最大瞬時速度變化。" + +#: fdmprinter.def.json +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "列印支撐填充時的最大瞬時速度變化。" + +#: fdmprinter.def.json +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "列印最外壁時的最大瞬時速度變化。" + +#: fdmprinter.def.json +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "列印換料塔時的最大瞬時速度變化。" + +#: fdmprinter.def.json +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "列印支撐頂板和底板的最大瞬時速度變化。" + +#: fdmprinter.def.json +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "列印支撐頂板的最大瞬時速度變化。" + +#: fdmprinter.def.json +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "列印外圍和邊緣時的最大瞬時速度變化。" + +#: fdmprinter.def.json +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "列印支撐結構時的最大瞬時速度變化。" + +#: fdmprinter.def.json +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "列印牆壁時的最大瞬時速度變化。" + +#: fdmprinter.def.json +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "列印頂部表層時的最大瞬時速度變化。" + +#: fdmprinter.def.json +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "列印頂部/底部層時的最大瞬時速度變化。" + +#: fdmprinter.def.json +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "進行空跑時的最大瞬時速度變化。" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "X 軸方向馬達的最大速度。" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Y 軸方向馬達的最大速度。" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Z 軸方向馬達的最大速度。" + +#: fdmprinter.def.json +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "線材的最大速度。" + +#: fdmprinter.def.json +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 "停留在模型上的支撐階梯狀底部的最大階梯寬度。較低的值會使支撐更難於移除,但過高的值可能導致不穩定的支撐結構。" + +#: fdmprinter.def.json +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "模具外部與模型外部的最小距離." + +#: fdmprinter.def.json +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "列印頭的最低移動速度。" + +#: fdmprinter.def.json +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "加熱到可以開始列印的列印溫度時的最低溫度。" + +#: fdmprinter.def.json +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 "擠出機必須保持不活動以便噴頭冷卻的最短時間。擠出機必須停用超過此時間,才可以冷卻到待機溫度。" + +#: fdmprinter.def.json +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° 時,不提供任何填充。" + +#: fdmprinter.def.json +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° 時,不提供任何支撐。" + +#: fdmprinter.def.json +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 "觸發回抽所需的最小空跑距離。這有助於減少小區域內的回抽次數。" + +#: fdmprinter.def.json +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,則將忽略此選項。" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "列印速度的下限,限制因“最短單層列印時間”的減速。當印表機減速過多時,噴頭中的壓力將過低並導致較差的列印品質。" + +#: fdmprinter.def.json +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 的速度,並通過移除無法處理的網格細節來增加切片速度。" + +#: fdmprinter.def.json +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,但可能造成噴頭迴避模型時較不精確。" + +#: fdmprinter.def.json +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 "階梯作用區域的最小斜率。較低的值應能讓較淺的斜面上的支撐更容易移除,但過低的值可能會在模型的其它部位導致與直覺相反的結果。" + +#: fdmprinter.def.json +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 "單層列印時間的下限。這會迫使印表機減速,以便在單層列印中消耗此處所規定的時間。這會讓模型充分冷卻後再列印下一層。如果“噴頭抬升”功能被關閉,為了不違反“最低列印速度”,單層列印時間仍有可能低於此設定值。" + +#: fdmprinter.def.json +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "為了清除足夠的線材,換料塔每層的最小體積。" + +#: fdmprinter.def.json +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "你的 3D 印表機型號的名稱。" + +#: fdmprinter.def.json +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\"。" + +#: fdmprinter.def.json +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 "噴頭會在空跑時避開已列印的部分。此選項僅在啟用梳理功能時可用。" + +#: fdmprinter.def.json +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "噴頭在空跑時避開已列印的支撐。此選項僅在啟用梳理功能時可用。" + +#: fdmprinter.def.json +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 "底部列印層數,當由底部厚度來計算時層數時,會四捨五入為一個整數值。" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "支撐表層邊緣的額外填充的層數。" + +#: fdmprinter.def.json +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 "從列印平台列印的起始底部列印層數,當由底部厚度來計算時層數時,會四捨五入為一個整數值。" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "邊緣所用線條數量。更多邊緣線條可增强與列印平台的附著,但也會減少有效列印區域。" + +#: fdmprinter.def.json +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 "支撐邊緣所使用的線條數量。邊緣使用較多的線條會加強對列印平台的附著力,但會需要一些額外的線材。" + +#: fdmprinter.def.json +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 "位於木筏中層上方的頂部層數。這是承載模型的完全填充層。兩層會產生比一層更平滑的頂部表面。" + +#: fdmprinter.def.json +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 "頂部列印層數,當由頂部厚度來計算時層數時,會四捨五入為一個整數值。" + +#: fdmprinter.def.json +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 "最頂部表層層數。通常只需一層最頂部就足以產生較高品質的頂部表面。" + +#: fdmprinter.def.json +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 "支撐填充的牆壁數。增加牆壁能讓支撐填充更加可靠並能更佳的支撐突出部分,但會增長列印時間和使用的線材。" + +#: fdmprinter.def.json +#, 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 "支撐填充的牆壁數。增加牆壁能讓支撐填充更加可靠並能更佳的支撐突出部分,但會增長列印時間和使用的線材。" + +#: fdmprinter.def.json +#, 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 "支撐填充的牆壁數。增加牆壁能讓支撐填充更加可靠並能更佳的支撐突出部分,但會增長列印時間和使用的線材。" + +#: fdmprinter.def.json +#, 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 "支撐填充的牆壁數。增加牆壁能讓支撐填充更加可靠並能更佳的支撐突出部分,但會增長列印時間和使用的線材。" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "牆壁的線條圈數,如果由壁厚計算,會四捨五入為一個整數值。" + +#: fdmprinter.def.json +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "噴頭尖端的外徑。" + +#: fdmprinter.def.json +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 "內部填充層的圖案。線形、鋸齒形填充在交替層間交換方向,已降低材料成本。網格、三角形、三角-六邊形、立方體、八面體、四分立方體、十字和同心圖案每個層間皆有列印。螺旋型、立方體、四分立方體和八面體的填充隨著每一層而變化,以在每個方向上提供更均勻的強度分佈。閃電型填充透過僅支撐物體的頂層來最小化填充。" + +#: fdmprinter.def.json +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 "支撐結構的列印樣式。有不同的選項可產生堅固的或容易清除的支撐。" + +#: fdmprinter.def.json +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "最頂部列印樣式。" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "頂部/底部的列印樣式。" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "列印件底部第一層的列印樣式。" + +#: fdmprinter.def.json +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "用於燙平頂部表面的列印樣式。" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "列印支撐底板的列印樣式。" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "支撐與模型之間介面的列印樣式。" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "列印支撐頂板的列印樣式。" + +#: fdmprinter.def.json +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "每一層開始列印位置要靠近哪個方向。" + +#: fdmprinter.def.json +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "起始層的列印最大瞬時速度變化。" + +#: fdmprinter.def.json +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "列印平台形狀(不計算不可列印區域)。" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "立體十字形在樣式閉合的高度處,中央十字交叉的氣囊大小。" + +#: fdmprinter.def.json +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 "可以進行滑行前,擠出路徑應有的最小體積。對於較小的擠出路徑,喉管內累積的壓力較少,因此滑行體積採用線性比率縮小。該值應大於滑行體積。" + +#: fdmprinter.def.json +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)。" + +#: fdmprinter.def.json +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)。" + +#: fdmprinter.def.json +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 "列印所有內壁的速度。以比外壁更快的速度列印內壁將減少列印時間。將該值設為外壁速度和填充速度之間也可行。" + +#: fdmprinter.def.json +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "列印橋樑表層區域時的速度。" + +#: fdmprinter.def.json +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "列印填充的速度。" + +#: fdmprinter.def.json +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "開始列印時的速度。" + +#: fdmprinter.def.json +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 "列印木筏底部的速度。這些層應以很慢的速度列印,因為噴頭所出的線材量非常高。" + +#: fdmprinter.def.json +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "列印橋樑牆壁時的速度。" + +#: fdmprinter.def.json +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 "列印起始層時的風扇轉速。在隨後的層中,風扇轉速會逐漸增加到對應層所設定的速度。" + +#: fdmprinter.def.json +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 "在單層列印時間大於門檻值時,風扇運轉的速度。當單層列印時間小於門檻值時,系統會根據單層列印時間決定使用的風扇轉速。列印時間愈短,所使用的風扇轉速愈快,但不會超過最大風扇轉速。" + +#: fdmprinter.def.json +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 "在“最短單層列印時間”時,風扇運轉的速度。當單層列印時間小於門檻值時,系統會根據單層列印時間決定使用的風扇轉速。列印時間愈短,所使用的風扇轉速愈快,但不會超過最大風扇轉速。" + +#: fdmprinter.def.json +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "回抽移動期間線材裝填的速度。" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "擦拭過程中線材裝填的速度。" + +#: fdmprinter.def.json +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "噴頭切換回抽後線材被推回的速度。" + +#: fdmprinter.def.json +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "回抽移動期間線材回抽和裝填的速度。" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "擦拭過程中線材回抽和裝填的速度。" + +#: fdmprinter.def.json +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "噴頭切換回抽期間線材回抽的速度。" + +#: fdmprinter.def.json +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "回抽移動期間線材回抽的速度。" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "擦拭過程中線材回抽的速度。" + +#: fdmprinter.def.json +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 "回抽線材的速度。較高的回抽速度效果較好,但回抽速度過高可能導致線材磨損。" + +#: fdmprinter.def.json +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 "列印支撐底板的速度。以較低的速度列印可以改善支撐在模型頂部的附著。" + +#: fdmprinter.def.json +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 "列印支撐填充的速度。以較低的速度列印填充可改善穩定性。" + +#: fdmprinter.def.json +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 "列印木筏中層的速度。這些層應以很慢的速度列印,因為噴頭所出的線材量非常高。" + +#: fdmprinter.def.json +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 "列印最外壁的速度。以較低速度列印外壁可改善最終表層品質。但是,如果內壁速度和外壁速度差距過大,則將對品質產生負面影響。" + +#: fdmprinter.def.json +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 "列印換料塔的速度。當不同線材之間的黏合力不佳時,較慢地列印速度可以讓它更穩定。" + +#: fdmprinter.def.json +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "列印冷卻風扇旋轉的速度。" + +#: fdmprinter.def.json +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "列印木筏的速度。" + +#: fdmprinter.def.json +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 "列印支撐頂板和底板的速度。以較低的速度列印可以改善突出部分的品質。" + +#: fdmprinter.def.json +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 "列印支撐頂板的速度。以較低的速度列印可以改善突出部分的品質。" + +#: fdmprinter.def.json +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 "列印外圍和邊緣的速度。一般情况是以起始層速度列印這些部分,但有時候你可能想要以不同速度來列印外圍或邊緣。" + +#: fdmprinter.def.json +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 "在列印支撐結構時的速度。以更高的速度列印支撐可以大大減少列印時間。因為支撐在列印後會被清除,所以表面品質並不重要。" + +#: fdmprinter.def.json +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 "列印木筏頂部的速度。這些層應以稍慢的速度列印,以便噴頭緩慢地整平臨近的表面線條。" + +#: fdmprinter.def.json +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 軸垂直移動的速度。這通常低於列印速度,因為列印平台或機器的吊車較難移動。" + +#: fdmprinter.def.json +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "列印牆壁的速度。" + +#: fdmprinter.def.json +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "通過頂部表面的速度。" + +#: fdmprinter.def.json +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "要讓線材脆斷要回抽多快。" + +#: fdmprinter.def.json +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "列印頂部表層的速度。" + +#: fdmprinter.def.json +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "列印頂部/底部層的速度。" + +#: fdmprinter.def.json +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "噴頭在非列印時的移動速度。" + +#: fdmprinter.def.json +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% 的值,因為在滑行移動期間喉管中的壓力會下降。" + +#: fdmprinter.def.json +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 "初始層速度, 建議以一個較低的值去改善列印平台的附著. 並不影響模型的附著方式,例如開啟邊緣或木筏." + +#: fdmprinter.def.json +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 "列印起始層的速度。建議採用較低的值以便改善與列印平台的附著。" + +#: fdmprinter.def.json +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 "起始層中的空跑速度。建議採用較低的值,以防止將之前列印的部分從列印平台上拉離。該設定的值可以根據空跑速度和列印速度的比率自動計算得出。" + +#: fdmprinter.def.json +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "要讓線材脆斷所需的溫度。" + +#: fdmprinter.def.json +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,則不會調整列印空間溫度。" + +#: fdmprinter.def.json +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "當另一個噴頭進行列印時,這個噴頭要保持的溫度。" + +#: fdmprinter.def.json +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "列印結束前開始冷卻的溫度。" + +#: fdmprinter.def.json +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +msgstr "用於列印第一層的溫度。設為 0 即關閉對起始層的特别處理。" + +#: fdmprinter.def.json +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "用於列印的溫度。" + +#: fdmprinter.def.json +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,就列印第一層時不會加熱列印平台。" + +#: fdmprinter.def.json +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,就不會加熱列印平台。" + +#: fdmprinter.def.json +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "清洗線材的溫度,應該約等於可能的最高列印溫度。" + +#: fdmprinter.def.json +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 "列印模型中底部的厚度。此值除以層高決定底部的層數。" + +#: fdmprinter.def.json +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "支撐表層邊緣的額外填充的厚度。" + +#: fdmprinter.def.json +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 "支撐與模型在底部或頂部接觸的介面厚度。" + +#: fdmprinter.def.json +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 "支撐底板的厚度。這會控制座落在模型上的支撐底部密集層的數量。" + +#: fdmprinter.def.json +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 "支撐頂板的厚度。這會控制承載模型的支撐頂部密集層的數量。" + +#: fdmprinter.def.json +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 "列印模型中頂部的厚度。該值除以層高決定頂部的層數。" + +#: fdmprinter.def.json +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 "列印模型中頂部/底部的厚度。該值除以層高決定頂部/底部的層數。" + +#: fdmprinter.def.json +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 "水平方向的牆壁厚度。此值除以壁線寬度決定牆壁數量。" + +#: fdmprinter.def.json +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 "每層填充的厚度。此值應該是層高度的倍數,並且否則會四捨五入。" + +#: fdmprinter.def.json +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 "支撐填充線材每層的厚度。該值應為層高的倍數,否則數值會被四捨五入到層高的倍數。" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "產生 G-code 的類型。" + +#: fdmprinter.def.json +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "不進行滑行時,會滲出的體積。該值一般應接近噴頭直徑的立方。" + +#: fdmprinter.def.json +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "機器可列印區域寬度(X 座標)" + +#: fdmprinter.def.json +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 "列印在支撐下面邊緣的寬度。較大的邊緣會加強對列印平台的附著力,但會需要一些額外的線材。" + +#: fdmprinter.def.json +#, fuzzy +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "換料塔的寬度。" + +#: fdmprinter.def.json +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "換料塔的寬度。" + +#: fdmprinter.def.json +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 "進行抖動的寬度。建議讓此值低於外壁寬度,因為內壁不會更改。" + +#: fdmprinter.def.json +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 "最大回抽次數範圍。此值應大致與回抽距離相等,從而有效地限制在同一段線材上的回抽次數。" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "換料塔位置的 X 座標。" + +#: fdmprinter.def.json +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "換料塔位置的 Y 座標。" + +#: fdmprinter.def.json +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "場景中有支撐網格存在。此設定由 Cura 控制。" + +#: fdmprinter.def.json +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 "這可以控制擠出機在開始列印橋樑牆壁前滑行的距離。在橋樑開始之前進行滑行可以減小噴頭中的壓力並可能產生更平坦的橋樑。" + +#: fdmprinter.def.json +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 "此設定控制木筏輪廓凹角導圓角的量。向內的轉角會被導為圓弧,其半徑等於此設定值。此設定同時可以移除木筏輪廓中半徑小於此設定值的圓孔。" + +#: fdmprinter.def.json +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 "此設定限制在最小擠出距離範圍內發生的回抽數。此範圍內的額外回抽將會忽略。這避免了在同一件線材上重複回抽,從而導致線材變扁並引起磨損問題。" + +#: fdmprinter.def.json +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 "這將在模型周圍建立一個牆壁留住(熱)空氣並遮住外部氣流。對於容易翹曲的線材非常有用。" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "為了補償線材在冷卻時的收縮,模型會依此比例放大列印。" + +#: fdmprinter.def.json +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "頂部層數" + +#: fdmprinter.def.json +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "頂部表層延伸距離" + +#: fdmprinter.def.json +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "頂部表層移除寬度" + +#: fdmprinter.def.json +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "頂部表層加速度" + +#: fdmprinter.def.json +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "頂部表層擠出機" + +#: fdmprinter.def.json +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "頂部表層流量" + +#: fdmprinter.def.json +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "頂部表層加加速度" + +#: fdmprinter.def.json +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "頂部表層" + +#: fdmprinter.def.json +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "頂部表層線條方向" + +#: fdmprinter.def.json +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "頂部表層線寬" + +#: fdmprinter.def.json +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "頂部表層列印樣式" + +#: fdmprinter.def.json +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "頂部表層速度" + +#: fdmprinter.def.json +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "頂部厚度" + +#: fdmprinter.def.json +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°為垂直,所有表層將被延伸。" + +#: fdmprinter.def.json +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "頂層/底層" + +#: fdmprinter.def.json +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "頂層/底層" + +#: fdmprinter.def.json +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "頂部/底部加速度" + +#: fdmprinter.def.json +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "頂部/底部擠出機" + +#: fdmprinter.def.json +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "頂部/底部流量" + +#: fdmprinter.def.json +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "頂部/底部加加速度" + +#: fdmprinter.def.json +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "頂部/底部線條方向" + +#: fdmprinter.def.json +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "頂部/底部線寬" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "頂部/底部填充樣式" + +#: fdmprinter.def.json +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "頂部/底部速度" + +#: fdmprinter.def.json +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "頂部 / 底部厚度" + +#: fdmprinter.def.json +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "接觸列印平台" + +#: fdmprinter.def.json +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "塔直徑" + +#: fdmprinter.def.json +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "塔頂板角度" + #: fdmprinter.def.json msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "在將模型從檔案中載入時套用在模型上的轉換矩陣。" +#: fdmprinter.def.json +msgctxt "travel label" +msgid "Travel" +msgstr "空跑" + +#: fdmprinter.def.json +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "空跑加速度" + +#: fdmprinter.def.json +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "空跑避開距離" + +#: fdmprinter.def.json +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "空跑加加速度" + +#: fdmprinter.def.json +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "空跑速度" + +#: fdmprinter.def.json +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 "將模型作為僅表面、一個空間或多個具有鬆散表面的空間處理。“正常”僅列印封閉的空間。“表面”列印模型表面的單壁,没有填充,也没有頂部/底部表層。“兩者”將封閉空間正常列印,並將任何剩餘多邊形作為表面列印。" + +#: fdmprinter.def.json +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "樹狀" + +#: fdmprinter.def.json +msgctxt "support_tree_angle label" +msgid "Tree Support Branch Angle" +msgstr "樹狀支撐樹枝角度" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter label" +msgid "Tree Support Branch Diameter" +msgstr "樹狀支撐樹枝直徑" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_diameter_angle label" +msgid "Tree Support Branch Diameter Angle" +msgstr "樹狀支撐樹枝外徑角度" + +#: fdmprinter.def.json +msgctxt "support_tree_branch_distance label" +msgid "Tree Support Branch Distance" +msgstr "樹狀支撐樹枝距離" + +#: fdmprinter.def.json +msgctxt "support_tree_collision_resolution label" +msgid "Tree Support Collision Resolution" +msgstr "樹狀支撐碰撞計算精度" + +#: fdmprinter.def.json +msgctxt "support_tree_max_diameter label" +msgid "Tree Support Trunk Diameter" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "三角-六邊形混和" + +#: fdmprinter.def.json +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "三角形" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "三角形" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "三角形" + +#: fdmprinter.def.json +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "三角形" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "三角形" + +#: fdmprinter.def.json +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +#: fdmprinter.def.json +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "合併重疊體積" + +#: fdmprinter.def.json +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 "比此長度短的無支撐牆壁將以一般牆壁設定列印。較長的無支撐牆壁則以橋樑牆壁的設定列印。" + +#: fdmprinter.def.json +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "使用適應性層高" + +#: fdmprinter.def.json +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "使用塔型支撐" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 之前都是使用絕對模式。" + +#: fdmprinter.def.json +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 "使用專門的塔來支撐較小的突出區域。這些塔的直徑比它們所支撐的區域要大。在靠近突出部分時,塔的直徑減小,形成頂板。" + +#: fdmprinter.def.json +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 "使用此網格修改與其重疊的其他網格的填充。利用此網格的區域替換其他網格的填充區域。建議僅為此網格列印一個壁,而不列印頂部/底部表層。" + +#: fdmprinter.def.json +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "使用此網格指定支撐區域。可用於產生支撐結構。" + +#: fdmprinter.def.json +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 "使用此網格指定模型的任何部分不應被檢測為突出的區域。可用於移除不需要的支撐結構。" + +#: fdmprinter.def.json +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "使用者指定" + +#: fdmprinter.def.json +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "" + +#: fdmprinter.def.json +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 "切片層的垂直方向公差。切片層的輪廓通常是採「中間」的方式,取每一層厚度中間的橫切面來產生。選擇「排除」,讓列印區域在該層厚度內的所有高度都維持在模型內。或是選擇「包含」,列印區域將包住該層模型。「包含」保留了最多的細節,「排除」選擇最合身的位置,而「中間」維持最接近原始表面。" + +#: fdmprinter.def.json +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "等待列印平台加熱" + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "等待噴頭加熱" + +#: fdmprinter.def.json +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "牆壁加速度" + +#: fdmprinter.def.json +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "牆壁擠出機" + +#: fdmprinter.def.json +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "牆壁流量" + +#: fdmprinter.def.json +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "牆壁加加速度" + +#: fdmprinter.def.json +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "牆壁線條圈數" + +#: fdmprinter.def.json +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "牆壁線寬" + +#: fdmprinter.def.json +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "" + +#: fdmprinter.def.json +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "牆壁速度" + +#: fdmprinter.def.json +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "壁厚" + +#: fdmprinter.def.json +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "shell label" +msgid "Walls" +msgstr "牆" + +#: fdmprinter.def.json +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 時,所有牆壁都不會被當作突出牆壁。被支撐的突出牆壁也將不不會被當作突出牆壁。" + +#: fdmprinter.def.json +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 "在檢查支撐上方或下方是否有模型時,所採用步階的高度。值越低切片速度越慢,而較高的值會導致在部分應有支撐介面的位置列印一般的支撐。" + +#: fdmprinter.def.json +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 "當功能啟用時,填充線條的列印順序會對降低空跑距離做最佳化。所能減少的空跑時間取決於模型、填充樣式、填充密度等。請注意,對於有很多小型填充區域的模型,切片時間可能會大量增加。" + +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "啟用後,列印支撐上方表層的風扇轉速會發生變化。" + +#: fdmprinter.def.json +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 接縫座標為相對於各個部分中心的值。關閉時,座標固定在列印平台上的一個絕對位置。" + +#: fdmprinter.def.json +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,則關閉回抽." + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "列印橋樑表層區域時,擠出的線材量乘以此值。" + +#: fdmprinter.def.json +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "列印橋樑牆壁時,擠出的線材量乘以此值。" + +#: fdmprinter.def.json +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 "列印橋樑表層區域第二層時,擠出的線材量乘以此值。" + +#: fdmprinter.def.json +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 "列印橋樑表層區域第三層時,擠出的線材量乘以此值。" + +#: fdmprinter.def.json +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 "當“最短單層列印時間”受到“最低列印速度”限制時,將噴頭從模型上抬高,並等候達到最短單層列印時間。" + +#: fdmprinter.def.json +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 "當模型具有僅幾層的小垂直間隙時,通常在那些層周圍的狹窄空間中應該存在表層。如果垂直間隙非常小,啟用此設定會停止自動產生表層。這樣可以縮短列印時間和切片時間,但技術上會使填充暴露出來。" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +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 "擦拭時列印平台會降低以便在噴頭和列印品之間形成空隙。它可以防止噴頭在空跑過程中撞到列印品,降低將列印品從列印平台撞掉的幾率。" + +#: fdmprinter.def.json +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 "每當回抽完成時,列印平台會降低以便在噴頭和列印品之間形成空隙。它可以防止噴頭在空跑過程中撞到列印品,降低將列印品從列印平台撞掉的幾率。" + +#: fdmprinter.def.json +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 間距來關閉此選項。" + +#: fdmprinter.def.json +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 座標原點是否位於可列印區域的中心。" + +#: fdmprinter.def.json +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 座標值小)。" + +#: fdmprinter.def.json +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 座標值小)。" + +#: fdmprinter.def.json +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 座標值小)。" + +#: fdmprinter.def.json +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "擠出機共用一個加熱器,而不是每個擠出機都有獨立的加熱器。" + +#: fdmprinter.def.json +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 "擠出機共用一個噴頭,而不是每個擠出機都有獨立的噴頭。當設置為\"同意\"時,預期\"Printer-start G-code\"已妥善設定擠出機之初始回抽值互相相容(設置為0或其一線材不回抽); 在此種情況下,每個擠出機之初始回抽值已透過機器.擠出機.共用噴頭.初始回抽值等參數描述設定." + +#: fdmprinter.def.json +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "機器是否有熱床。" + +#: fdmprinter.def.json +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "機器是否能夠穩定列印空間溫度。" + +#: fdmprinter.def.json +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),而不是使用模型內儲存的座標系統。" + +#: fdmprinter.def.json +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 外部控制噴頭溫度,關閉此選項。" + +#: fdmprinter.def.json +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 開始部分插入熱床溫度的命令。當起始 G-code 包含熱床溫度命令時,Cura 前端將自動關閉此設定。" + +#: fdmprinter.def.json +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-code 開始部分插入噴頭溫度命令。當起始 G-code 已包含噴頭溫度命令時,Cura 前端將自動關閉此設定。" + +#: fdmprinter.def.json +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(每層最多一次)。啟用此設定會影響換層時的回抽行為。請用「擦拭回抽」設定來控制何處使用擦拭腳本。" + +#: fdmprinter.def.json +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 "是否插入一條命令,在開始時等待列印平台達到設定溫度。" + +#: fdmprinter.def.json +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 "列印前是否裝填少量的線材。開啟此設定將確保列印前擠出機的噴頭處已準備好線材。列印邊緣或外圍也可作為裝填用途,這種情况下關閉此設定可以節省時間。" + +#: fdmprinter.def.json +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 軸之間距離的情况下,排隊列印才可使用。" + +#: fdmprinter.def.json +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "是否顯示這台印表機在不同的 JSON 檔案中所描述的型號。" + +#: fdmprinter.def.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 參數來回抽線材。" + +#: fdmprinter.def.json +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "是否在開始時等待噴頭達到設定溫度。" + +#: fdmprinter.def.json +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "單一填充線寬。" + +#: fdmprinter.def.json +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "支撐頂板或底板單一線寬。" + +#: fdmprinter.def.json +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "列印頂部區域單一線寬。" + +#: fdmprinter.def.json +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 "單一線寬。一般而言,每條線條的寬度應與噴頭的寬度對應。但是,稍微降低此值可以產生更好的列印成果。" + +#: fdmprinter.def.json +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "單一換料塔線寬。" + +#: fdmprinter.def.json +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "單一外圍或邊緣的線寬。" + +#: fdmprinter.def.json +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "單一支撐底板線寬。" + +#: fdmprinter.def.json +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "單一支撐頂板線寬。" + +#: fdmprinter.def.json +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "單一支撐線寬。" + +#: fdmprinter.def.json +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "單一頂部/底部線寬。" + +#: fdmprinter.def.json +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "除了外壁以外牆壁的線寬。" + +#: fdmprinter.def.json +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "單層牆壁線寬。" + +#: fdmprinter.def.json +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 "木筏底部的線寬。這些線條應該是粗線,以便協助列印平台附著。" + +#: fdmprinter.def.json +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 "木筏中層的線寬。第二層擠出多一些會讓線條附著在列印平台上。" + +#: fdmprinter.def.json +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 "木筏頂部表面的線寬。這些線條可以是細線,以便讓木筏頂部變得平滑。" + +#: fdmprinter.def.json +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 "最外側牆壁的線寬。降低此值,可列印出更高水準的細節。" + +#: fdmprinter.def.json +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 "" + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "擦拭刷 X 軸位置" + +#: fdmprinter.def.json +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "擦拭 Z 抬升速度" + +#: fdmprinter.def.json +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "在換料塔上擦拭非作用中的噴頭" + +#: fdmprinter.def.json +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "擦拭移動距離" + +#: fdmprinter.def.json +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "換層時擦拭噴頭" + +#: fdmprinter.def.json +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "擦拭暫停" + +#: fdmprinter.def.json +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "擦拭重覆次數" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "擦拭回抽距離" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "擦拭回抽啟用" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "擦拭回抽額外裝填量" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "擦拭回抽裝填速度" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "擦拭回抽回抽速度" + +#: fdmprinter.def.json +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "擦拭回抽速度" + +#: fdmprinter.def.json +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "擦拭 Z 抬升" + +#: fdmprinter.def.json +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "擦拭 Z 抬升高度" + +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "內部填充" + +#: fdmprinter.def.json +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 或是使用 modal tool 命令的韌體做雙擠出機列印時,此功能是必需開啟的。" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "X 限位開關位於正向" + +#: fdmprinter.def.json +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "擦拭動作開始的 X 位置。" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y 優先 Z" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Y 限位開關位於正向" + +#: fdmprinter.def.json +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Z 限位開關位於正向" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "擠出機切換後的 Z 抬升" + +#: fdmprinter.def.json +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "擠出機切換後的 Z 抬升高度" + +#: fdmprinter.def.json +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Z 抬升高度" + +#: fdmprinter.def.json +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "僅在已列印部分上 Z 抬升" + +#: fdmprinter.def.json +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Z 抬升速度" + +#: fdmprinter.def.json +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "回抽時 Z 抬升" + +#: fdmprinter.def.json +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Z 接縫對齊" + +#: fdmprinter.def.json +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Z 接縫位置" + +#: fdmprinter.def.json +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Z 接縫相對" + +#: fdmprinter.def.json +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z 接縫 X 座標" + +#: fdmprinter.def.json +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z 接縫 Y 座標" + +#: fdmprinter.def.json +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z 優先 X/Y" + +#: fdmprinter.def.json +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "鋸齒狀" + +#: fdmprinter.def.json +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "鋸齒狀" + +#: fdmprinter.def.json +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "鋸齒狀" + +#: fdmprinter.def.json +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "鋸齒狀" + +#: fdmprinter.def.json +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "鋸齒狀" + +#: fdmprinter.def.json +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "鋸齒狀" + +#: fdmprinter.def.json +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "鋸齒狀" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "鋸齒狀" + +#: fdmprinter.def.json +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "鋸齒狀" + +#: fdmprinter.def.json +msgctxt "travel description" +msgid "travel" +msgstr "空跑" + +#~ msgctxt "machine_head_polygon description" +#~ msgid "A 2D silhouette of the print head (fan caps excluded)." +#~ msgstr "列印頭 2D 輪廓圖(不包含風扇蓋)。" + #~ msgctxt "machine_head_with_fans_polygon description" #~ msgid "A 2D silhouette of the print head (fan caps included)." #~ msgstr "列印頭 2D 輪廓圖(包含風扇蓋)。" -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "先印外壁後印內壁" +#~ msgctxt "spaghetti_infill_extra_volume description" +#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." +#~ msgstr "一個用於調整每次進行義大利麵式填充時擠出總量的修正項。" -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "啟用時以從外向內的順序列印牆壁。當使用高黏度塑料如 ABS 時,這有助於提高 X 和 Y 的尺寸精度;但是,它可能會降低表面列印品質,尤其是在突出部分。" +#~ msgctxt "adaptive_layer_height_threshold label" +#~ msgid "Adaptive Layers Threshold" +#~ msgstr "適應性層高門檻值" + +#~ msgctxt "adaptive_layer_height_variation label" +#~ msgid "Adaptive layers maximum variation" +#~ msgstr "適應層高最大變化量" + +#~ msgctxt "adaptive_layer_height_threshold label" +#~ msgid "Adaptive layers threshold" +#~ msgstr "適應層高門檻值" + +#~ msgctxt "adaptive_layer_height_variation_step label" +#~ msgid "Adaptive layers variation step size" +#~ msgstr "適應層高變化幅度" + +#~ msgctxt "spaghetti_flow description" +#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." +#~ msgstr "調整義大利麵式填充的密度。注意,填充密度僅控制填充列印樣式的線條間距,而不是義大利麵式填充的擠出量。" + +#~ msgctxt "dual_pre_wipe description" +#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." +#~ msgstr "切換擠出機後,在列印的第一個物件上擦拭噴頭上的滲出耗材。這會在滲出耗材對列印品表面品質造成最小損害的位置進行緩慢安全的擦拭動作。" + +#~ msgctxt "cross_infill_apply_pockets_alternatingly label" +#~ msgid "Alternate Cross 3D Pockets" +#~ msgstr "交錯立體十字形氣囊" + +#~ msgctxt "skin_alternate_rotation label" +#~ msgid "Alternate Skin Rotation" +#~ msgstr "交替表層旋轉" + +#~ msgctxt "skin_alternate_rotation description" +#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." +#~ msgstr "交替列印頂部/底部層的方向。通常它們只進行對角線列印。此設定添加純 X 和純 Y 方向。" + +#~ msgctxt "prime_tower_purge_volume description" +#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." +#~ msgstr "在換料塔上進行擦拭時要清洗的耗材量。清洗可用於補償在噴頭不活動期間由於滲出而損失的耗材。" + +#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" +#~ msgid "Apply the extruder offset to the coordinate system." +#~ msgstr "將擠出機偏移量套用到座標軸系統。" + +#~ msgctxt "material_flow_dependent_temperature label" +#~ msgid "Auto Temperature" +#~ msgstr "自動溫度" + +#~ msgctxt "bridge_wall_max_overhang label" +#~ msgid "Bridge Wall Max Overhang" +#~ msgstr "最大橋樑牆壁突出" + +#~ msgctxt "center_object label" +#~ msgid "Center object" +#~ msgstr "模型置中" + +#~ msgctxt "material_flow_dependent_temperature description" +#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." +#~ msgstr "根據每一層的平均流速自動更改每層的溫度。" + +#~ msgctxt "prime_tower_circular label" +#~ msgid "Circular Prime Tower" +#~ 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 and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." +#~ msgstr "梳理模式讓噴頭空跑時保持在已列印的區域內。這導致較長的空跑距離但減少回抽的需求。如果關閉梳理模式,噴頭將會回抽耗材,直線移動到下一點。梳理模式可以避開頂部/底部表層,也可以只用在內部填充。注意「內部填充」選項的行為與舊版 Cura 的「表層以外區域」選項是完全相同的。" + +#~ 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 by combing within the infill only." +#~ msgstr "梳理可在空跑時讓噴頭保持在已列印區域內。這會使空跑距離稍微延長,但可減少回抽需求。如果關閉梳理,則耗材將回抽,且噴頭沿著直線移動到下一個點。也可以通過僅在填充內進行梳理避免梳理頂部/底部表層區域。" + +#~ msgctxt "wireframe_strategy option compensate" +#~ msgid "Compensate" +#~ msgstr "補償" + +#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" +#~ msgid "Compensate Inner Wall Overlaps" +#~ msgstr "補償內壁重疊" + +#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" +#~ msgid "Compensate Outer Wall Overlaps" +#~ msgstr "補償外壁重疊" #~ msgctxt "travel_compensate_overlapping_walls_enabled label" #~ msgid "Compensate Wall Overlaps" @@ -6682,37 +6666,153 @@ msgstr "在將模型從檔案中載入時套用在模型上的轉換矩陣。" #~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." #~ msgstr "彌補牆壁重疊部分的流量。" -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "補償外壁重疊" +#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" +#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." +#~ msgstr "列印內壁時如果該位置已經有牆壁存在,所進行的的流量補償。" #~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" #~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." #~ msgstr "列印外壁時如果該位置已經有牆壁存在,所進行的的流量補償。" -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "補償內壁重疊" +#~ msgctxt "infill_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "立體同心圓" -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "列印內壁時如果該位置已經有牆壁存在,所進行的的流量補償。" +#~ msgctxt "support_bottom_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "同心 3D" -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "最小牆壁流量" +#~ msgctxt "support_interface_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "同心 3D" -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "牆壁允許的最小流量百分比。當在已列印的牆壁旁列印牆壁時,「補償牆壁重疊」會減少線材流量。小於此設定流量的牆壁會被空跑取代。當啟用此設定時,必需啟用「補償牆壁重疊」並設定先列印外壁再列印內壁。" +#~ msgctxt "support_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "同心 3D" -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "回抽優先" +#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "立體同心圓" -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ 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 happend 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." +#~ msgstr "控制接縫是否受模型輪廓上的角影響。'無'表示轉角不影響接縫位置。'隱藏接縫'表示使用盡可能使用凹角做為接縫位置。'暴露接縫'表示盡可能使用凸角做為接縫位置。'隱藏或暴露接縫'則同時使用凹角和凸角做為接縫位置。" + +#~ msgctxt "machine_nozzle_cool_down_speed label" +#~ msgid "Cool down speed" +#~ msgstr "冷卻速度" + +#~ msgctxt "wireframe_top_jump description" +#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." +#~ msgstr "在上行線條的頂部創建一個小紐結,使連續的水平層有更好的機會與其連接。僅套用於鐵絲網列印。" + +#~ msgctxt "wireframe_bottom_delay description" +#~ msgid "Delay time after a downward move. Only applies to Wire Printing." +#~ msgstr "向下移動後的延遲時間。僅套用於鐵絲網列印。" + +#~ msgctxt "wireframe_top_delay description" +#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." +#~ msgstr "向上移動後的延遲時間,以便上行線條硬化。僅套用於鐵絲網列印。" + +#~ msgctxt "wireframe_flat_delay description" +#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." +#~ 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 lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "決定當多個網格重疊時此網格的優先等級。在多個網格重疊的區域中,將採用處理等級值最小的網格設定。高順位的填充網格將覆蓋掉低順位和普通順位網格的填充設定。" + +#~ msgctxt "infill_mesh_order description" +#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "決定當空間重疊時此網格的優先等級。在多個網格重疊的區域中,處理等級值較低的網格將優先處理。高順位的填充網格將修改低順位和普通順位網格的填充。" + +#~ msgctxt "infill_mesh_order description" +#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "確定哪個填充網格在另一個填充網格的填充內。順序較高的填充網格將修改順序較低的填充網格以及普通網格的填充。" + +#~ msgctxt "machine_disallowed_areas label" +#~ msgid "Disallowed areas" +#~ msgstr "不允許區域" + +#~ msgctxt "wireframe_nozzle_clearance description" +#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." +#~ msgstr "噴頭和水平下行線之間的距離。較大的間隙會讓斜下行線角度較平緩,進而使第二層的上行連接較少。僅套用於鐵絲網列印。" + +#~ msgctxt "wireframe_up_half_speed description" +#~ msgid "" +#~ "Distance of an upward move which is extruded with half speed.\n" +#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." +#~ msgstr "" +#~ "以半速擠出的上行移動的距離。\n" +#~ "這會與之前的層產生更好的附著,而不會將這些層中的線材過度加熱。僅套用於鐵絲網列印。" + +#~ msgctxt "support_xy_distance_overhang description" +#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " +#~ msgstr "支撐結構在 X/Y 方向與突出部分的間距。 " + +#~ msgctxt "wireframe_fall_down description" +#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "線材在向上擠出後倒塌的距離。將對此距離進行補償。僅套用於鐵絲網列印。" + +#~ msgctxt "wireframe_drag_along description" +#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "向上擠出線材與斜向下擠出一起拖動的距離。將對此距離進行補償。僅套用於鐵絲網列印。" + +#~ msgctxt "machine_end_gcode label" +#~ msgid "End GCode" +#~ 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 "speed_equalize_flow_enabled label" +#~ msgid "Equalize Filament Flow" +#~ msgstr "均衡線材流量" + +#~ msgctxt "fill_perimeter_gaps option everywhere" +#~ msgid "Everywhere" +#~ msgstr "全部填充" + +#~ msgctxt "expand_lower_skins label" +#~ msgid "Expand Bottom Skins Into Infill" +#~ msgstr "將底部表層延伸到填充中" + +#~ msgctxt "expand_skins_into_infill label" +#~ msgid "Expand Skins Into Infill" +#~ msgstr "將表層延伸到填充中" + +#~ msgctxt "expand_upper_skins label" +#~ msgid "Expand Top Skins Into Infill" +#~ msgstr "將頂部表層延伸到填充中" + +#~ msgctxt "expand_skins_into_infill description" +#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." +#~ msgstr "延伸平面頂部和/或底部表層的區域。預設情况下,表層會在環繞填充的壁線下方停止,但如果填充密度較低,則可能導致出現孔洞。該設定將表層延展到壁線以外,因此下一層的填充會座落在表層上。" + +#~ msgctxt "expand_lower_skins description" +#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." +#~ msgstr "延伸底部表層區域(下方有空氣的區域),讓它們由上下的填充層錨定。" + +#~ msgctxt "expand_upper_skins description" +#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." +#~ msgstr "延伸頂部表層區域(上方有空氣的區域),讓它們支撐上方的填充。" + +#~ msgctxt "support_conical_enabled description" +#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." +#~ msgstr "實驗性功能: 讓底部的支撐區域小於突出部分的支撐區域。" + +#~ msgctxt "machine_filament_park_distance label" +#~ msgid "Filament Park Distance" +#~ msgstr "耗材停放距離" #~ msgctxt "fill_perimeter_gaps label" #~ msgid "Fill Gaps Between Walls" @@ -6722,14 +6822,6 @@ msgstr "在將模型從檔案中載入時套用在模型上的轉換矩陣。" #~ msgid "Fills the gaps between walls where no walls fit." #~ msgstr "填充牆壁之間空隙。" -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "都不填充" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "全部填充" - #~ msgctxt "filter_out_tiny_gaps label" #~ msgid "Filter Out Tiny Gaps" #~ msgstr "濾除微小間隙" @@ -6738,187 +6830,143 @@ msgstr "在將模型從檔案中載入時套用在模型上的轉換矩陣。" #~ msgid "Filter out tiny gaps to reduce blobs on outside of model." #~ msgstr "濾除微小間隙以減少模型外側的斑點 。" -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "均衡線材流量" +#~ msgctxt "small_feature_speed_factor_0 label" +#~ msgid "First Layer Speed" +#~ msgstr "第一層速度" -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "以較快的速度列印比正常線條更細的線條,使每秒擠出的線材量保持相同。模型中較薄的部分可能需要以低於設定中所提供寬度的線寬來列印線條。該設定控制這些線條的速度變化。" +#~ msgctxt "wireframe_flow_connection description" +#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." +#~ msgstr "向上或向下時的流量補償。僅套用於鐵絲網列印。" -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "流量均衡的最大速度" +#~ msgctxt "wireframe_flow_flat description" +#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." +#~ msgstr "列印平面線條時的流量補償。僅套用於鐵絲網列印。" -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "調整列印速度以便均衡流量時的最大列印速度。" +#~ msgctxt "prime_tower_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." +#~ msgstr "流量補償:擠出的耗材量乘以此值。" -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "最大進料速率" +#~ msgctxt "wireframe_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." +#~ 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 (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ msgstr "列印填充樣式;直線型與鋸齒狀填充於層間交替方向,減少線材消耗;網格型、三角形、三角-六邊形混和、立方體、八面體、四分立方體、十字形、同心於每層間皆完整列印;螺旋形、立方體、四分立方體及八面體填充於每層一間進行改變,確保每個方向都有相同的強度分配,閃電形填充透過只支撐物件內層頂部來最小化填充,因此填充百分比只對於下一層才有效果." +#~ msgctxt "flow_rate_extrusion_offset_factor label" +#~ msgid "Flow rate compensation factor" +#~ msgstr "流量補償因子" -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "閃電形填充層與其附著物間的生成角度." +#~ msgctxt "flow_rate_max_extrusion_offset label" +#~ msgid "Flow rate compensation max extrusion offset" +#~ msgstr "流量補償的最大擠出偏移量" -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ msgstr "設定閃電形填充層間垂直堆疊角度,調整樹狀堆疊的平滑度." +#~ msgctxt "machine_gcode_flavor label" +#~ msgid "G-code Flavour" +#~ msgstr "G-code 類型" -#~ 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." -#~ msgstr "選擇填充線材的樣式。直線和鋸齒狀填充輪流在每一層交換方向,以降低線材成本。網格、三角形、三-六邊形、立方體、八面體、四分立方體、十字形和同心的列印樣式在每層完整列印。螺旋形、立方體、四分立方體和八面體填充隨每層變化,以在各個方向提供更均衡的强度分布。" - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "模具外側和模型外側之間的最小距離。" - -#~ msgctxt "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "擠出機移動一毫米時,步進馬達所需移動的步數。" - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "當此值不為 0 時,在梳理模式空跑超過此距離時,會啟用回抽。" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "將擠出機偏移量套用到座標軸系統。" - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ 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, while an angle of 90° is vertical." -#~ msgstr "如果模型的頂部和/或底部表面的角度大於此設定,則不要延伸其頂部/底部表層。這會避免延伸作用在模型表面有接近垂直的斜面時所形成的狹窄表層區域。0° 的角為水平,90° 的角為垂直。" - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ 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 lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "決定當多個網格重疊時此網格的優先等級。在多個網格重疊的區域中,將採用處理等級值最小的網格設定。高順位的填充網格將覆蓋掉低順位和普通順位網格的填充設定。" - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "設定列印平台的溫度。如果設定為 0,就不會加熱列印平台。" - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "用於第一層加熱列印平台的溫度。" - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "收縮率" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "收縮率百分比。" - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ 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 "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "填充網格順序" - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "確定哪個填充網格在另一個填充網格的填充內。順序較高的填充網格將修改順序較低的填充網格以及普通網格的填充。" - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "樹狀支撐" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "產生帶有樹枝樹狀支撐結構支撐你的模型。這可能可以減少耗材的使用和列印的時間,但會大大的增加切片時間。" - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "如何使用傾斜的外表切片。可以使用層高的中間與外表相交產生的截面(中間)。也可以使用該層高完全不超出模型體積的區域(排除),或是該層高的模型投影區域(包含)。「排除」保留最多的細節,「包含」有最符合的外形,而「中間」花最少的運算時間。" - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "義大利麵式填充" - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "經常列印填充,使得耗材在模型內部混亂地捲曲。這會縮短列印時間,但行為會難以預測。" - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "義大利麵式逐步填充" - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "是否逐步列印義大利麵式填充或在列印結束時一次擠出所有填充耗材。" - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "義大利麵式填充 - 最大填充角度" - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "允許延後填充義大利麵式填充的最大角度,取列印物內側與 Z 軸的夾角。降低此值會導致模型中的更多有角度部位在各層填充。" - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "義大利麵式填充 - 最大填充高度" - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "可以從頂部組合和填充的內部空間的最大高度。" - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "義大利麵式填充內嵌" - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "列印義大利麵式填充開始位置與牆壁的偏移量。" - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "義大利麵式填充流量" - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "調整義大利麵式填充的密度。注意,填充密度僅控制填充列印樣式的線條間距,而不是義大利麵式填充的擠出量。" - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "義大利麵式填充額外體積" - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "一個用於調整每次進行義大利麵式填充時擠出總量的修正項。" +#~ msgctxt "machine_gcode_flavor label" +#~ msgid "G-code flavour" +#~ msgstr "G-code 類型" #~ msgctxt "material_guid description" #~ msgid "GUID of the material. This is set automatically. " #~ msgstr "耗材 GUID,此項為自動設定。 " -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "耗材停放距離" +#~ msgctxt "gantry_height label" +#~ msgid "Gantry height" +#~ msgstr "吊車高度" -#~ msgctxt "machine_filament_park_distance description" -#~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used." -#~ msgstr "與噴頭尖端的距離,當不再使用擠出機時會將耗材停放在此區域。" +#~ msgctxt "machine_end_gcode description" +#~ msgid "" +#~ "Gcode commands to be executed at the very end - separated by \n" +#~ "." +#~ msgstr "" +#~ "在結束前執行的 G-code 命令 - 以 \n" +#~ " 分行。" -#~ msgctxt "material_flush_purge_speed description" +#~ msgctxt "machine_start_gcode description" +#~ msgid "" +#~ "Gcode commands to be executed at the very start - separated by \n" +#~ "." +#~ msgstr "" +#~ "在開始後執行的 G-code 命令 - 以 \n" +#~ " 分行。" + +#~ msgctxt "machine_gcode_flavor label" +#~ msgid "Gcode flavour" +#~ msgstr "G-code 類型" + +#~ msgctxt "support_tree_enable description" +#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." +#~ msgstr "產生帶有樹枝樹狀支撐結構支撐你的模型。這可能可以減少耗材的使用和列印的時間,但會大大的增加切片時間。" + +#~ msgctxt "ironing_enabled description" +#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." +#~ 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 "infill_hollow label" +#~ msgid "Hollow Out Objects" +#~ msgstr "挖空模型" + +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "擠出機移動一毫米時,步進馬達所需移動的步數。" + +#~ msgctxt "slicing_tolerance description" +#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." +#~ msgstr "如何使用傾斜的外表切片。可以使用層高的中間與外表相交產生的截面(中間)。也可以使用該層高完全不超出模型體積的區域(排除),或是該層高的模型投影區域(包含)。「排除」保留最多的細節,「包含」有最符合的外形,而「中間」花最少的運算時間。" + +#~ msgctxt "wall_min_flow_retract description" +#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +#~ msgstr "當此功能開啟時,對於低於最小流量門檻值的牆壁,使用回抽取代而非梳理模式空跑。" + +#~ msgctxt "skin_no_small_gaps_heuristic label" +#~ msgid "Ignore Small Z Gaps" +#~ msgstr "忽略 Z 方向的小間隙" + +#~ msgctxt "start_layers_at_same_position description" +#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." +#~ msgstr "每一層都在相同點附近開始列印,這樣在列印新的一層時,就不需要列印前一層結束時的那一小段區域。在突出部分和小零件有良好的效果,但會增加列印時間。" + +#~ msgctxt "infill_mesh_order label" +#~ msgid "Infill Mesh Order" +#~ msgstr "填充網格順序" + +#~ msgctxt "wireframe_strategy option knot" +#~ msgid "Knot" +#~ msgstr "紐結" + +#~ msgctxt "limit_support_retractions label" +#~ msgid "Limit Support Retractions" +#~ msgstr "限制支撐回抽" + +#~ msgctxt "machine_head_polygon label" +#~ msgid "Machine Head Polygon" +#~ msgstr "機器頭多邊形" + +#~ msgctxt "machine_head_with_fans_polygon label" +#~ msgid "Machine head & Fan polygon" +#~ msgstr "機器頭和風扇多邊形" + +#~ msgctxt "machine_head_polygon label" +#~ msgid "Machine head polygon" +#~ msgstr "機器頭多邊形" + +#~ msgctxt "prime_tower_circular description" +#~ msgid "Make the prime tower as a circular shape." +#~ msgstr "將換料塔印成圓型。" + +#~ msgctxt "material_end_of_filament_purge_length description" +#~ msgid "Material Station internal value" +#~ msgstr "耗材站內部值" + +#~ msgctxt "material_end_of_filament_purge_speed description" #~ msgid "Material Station internal value" #~ msgstr "耗材站內部值" @@ -6926,19 +6974,7 @@ msgstr "在將模型從檔案中載入時套用在模型上的轉換矩陣。" #~ msgid "Material Station internal value" #~ 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 "Material Station internal value" -#~ msgstr "耗材站內部值" - -#~ msgctxt "material_end_of_filament_purge_length label" -#~ msgid "End Of Filament Purge Length" -#~ msgstr "線材末端沖洗長度" - -#~ msgctxt "material_end_of_filament_purge_length description" +#~ msgctxt "material_flush_purge_speed description" #~ msgid "Material Station internal value" #~ msgstr "耗材站內部值" @@ -6950,401 +6986,25 @@ msgstr "在將模型從檔案中載入時套用在模型上的轉換矩陣。" #~ msgid "Material Station internal value" #~ msgstr "耗材站內部值" -#~ msgctxt "retraction_enable description" -#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " -#~ msgstr "當噴頭移動到非列印區域上方時回抽耗材。 " +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ 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 "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "修復" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "黑魔法" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "實驗性!" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "機器頭多邊形" - -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "列印頭 2D 輪廓圖(不包含風扇蓋)。" - -#~ 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 only possible if 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 "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "樹狀支撐牆厚" - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "樹狀支撐樹枝的牆壁厚度。較厚的牆壁需要花較長的時間列印,但較不易倒下。" - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "樹狀支撐牆壁線條數量" - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "樹狀支撐樹枝牆壁的圈數。較厚的牆壁需要花較長的時間列印,但較不易倒下。" - -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. 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。啟用此設定會影響換層時的回抽行為。請用「擦拭回抽」設定來控制擦拭時的回抽量。" - -#~ msgctxt "max_extrusion_before_wipe description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "在另一次擦拭噴頭前可擠出的最大耗材量。" - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "擦拭回抽裝填速度" - -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "擦拭回抽後 Z 抬升" - -#~ msgctxt "wipe_hop_enable 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 "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ 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 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 not be generated." -#~ msgstr "支撐底板區域的最小面積大小。面積小於此值的區域將不會產生支撐底板。" - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "交替表層旋轉" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "交替列印頂部/底部層的方向。通常它們只進行對角線列印。此設定添加純 X 和純 Y 方向。" - -#~ 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 compensate." -#~ msgstr "最大補償距離(以毫米為單位)。" - -#~ msgctxt "flow_rate_extrusion_offset_factor label" -#~ msgid "Flow rate compensation factor" -#~ msgstr "流量補償因子" - -#~ msgctxt "flow_rate_extrusion_offset_factor description" -#~ msgid "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "流量倍率 -> 移動距離。" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "適應性層高門檻值" - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ msgstr "決定是否使用較小層高的門檻值。此值會與一層中最陡坡度的 tan 值做比較。" - -#~ 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." -#~ msgstr "牆壁突出的角度大於此值時,將使用突出牆壁的設定列印。當此值設定為 90 時,所有牆壁都不會被當作突出牆壁。" - -#~ 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 adhestion and accuracy." -#~ msgstr "細部模式將以正常列印速度的此百分比值列印。 較慢的列印有助於黏合和精度。" - -#~ msgctxt "small_feature_speed_factor_0 label" -#~ msgid "First 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 adhestion and accuracy." -#~ msgstr "細部模式第一層將以正常列印速度的此百分比值列印。 較慢的列印有助於黏合和精度。" - -#~ msgctxt "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "再一次經過頂部表面,但不擠出耗材。這是為了進一步融化頂部的塑料,打造更平滑的表面。" - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "在相同的位置列印新層" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "每一層都在相同點附近開始列印,這樣在列印新的一層時,就不需要列印前一層結束時的那一小段區域。在突出部分和小零件有良好的效果,但會增加列印時間。" - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ 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." -#~ msgstr "「最高解析度」設定在降低解析度時允許的最大偏差。如果增加此值,列印精度會較差但 G-code 會較小。" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "G-code 類型" - -#~ 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." -#~ msgstr "控制接縫是否受模型輪廓上的角影響。'無'表示轉角不影響接縫位置。'隱藏接縫'表示使用盡可能使用凹角做為接縫位置。'暴露接縫'表示盡可能使用凸角做為接縫位置。'隱藏或暴露接縫'則同時使用凹角和凸角做為接縫位置。" - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "忽略 Z 方向的小間隙" - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "當模型具有微小的垂直間隙時,為了在這些間隙上產生頂部、底部等表面,會花費大約5%的額外的計算時間。勾選這個項目可以節省時間,但是間隙會消失,若要保留這些間隙,不要勾選這個項目。" - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "設定列印空間的溫度。如果設定為 0,就不會加熱列印空間。" - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." -#~ msgstr "當從支撐直線移動到另一支撐時,省略回抽。啟用此功能可節省列印時間,但會導致支撐內部有較多的牽絲。" +#~ msgctxt "speed_equalize_flow_max label" +#~ msgid "Maximum Speed for Flow Equalization" +#~ msgstr "流量均衡的最大速度" #~ msgctxt "max_feedrate_z_override label" #~ msgid "Maximum Z Speed" #~ msgstr "最大 Z 軸速度" -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "列印平台移動的最大速度。將該值設為零會使列印為最大 Z 速度採用韌體預設值。" +#~ msgctxt "max_extrusion_before_wipe description" +#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." +#~ msgstr "在另一次擦拭噴頭前可擠出的最大耗材量。" -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." -#~ msgstr "支撐結構間在 X/Y 方向的最大距離。當分離結構之間的距離小於此值時,這些結構將合併為一個。" - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "最小直徑" - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "小區域中支撐塔的 X/Y 軸方向最小直徑。" - -#~ msgctxt "prime_tower_circular label" -#~ msgid "Circular Prime Tower" -#~ msgstr "圓型換料塔" - -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "將換料塔印成圓型。" - -#~ msgctxt "prime_tower_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." -#~ 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 "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "實驗性功能: 讓底部的支撐區域小於突出部分的支撐區域。" - -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "已啟用擠出機的數量" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "噴頭外徑" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "噴頭長度" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "噴頭角度" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "加熱區長度" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "加熱速度" - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "冷卻速度" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "G-code 類型" - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "不允許區域" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "機器頭多邊形" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "機器頭和風扇多邊形" - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "吊車高度" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "擠出機偏移量" - -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "使用適應層高" - -#~ msgctxt "adaptive_layer_height_variation label" -#~ msgid "Adaptive layers maximum variation" -#~ msgstr "適應層高最大變化量" - -#~ msgctxt "adaptive_layer_height_variation_step label" -#~ msgid "Adaptive layers variation step size" -#~ msgstr "適應層高變化幅度" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "適應層高門檻值" - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "表層與牆壁的重疊量佔表層線寬的百分比。輕微的重疊能讓填充與表層牢固地連接。這是表層線寬和最內層牆壁線寬平均的百分比。" - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "表層和牆壁之間的重疊量。稍微重疊可讓各個牆壁與表層牢固連接。" - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." -#~ msgstr "回抽量:設為 0,不進行任何回抽。該值通常應與加熱區的長度相同。" - -#~ 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 and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." -#~ msgstr "梳理模式讓噴頭空跑時保持在已列印的區域內。這導致較長的空跑距離但減少回抽的需求。如果關閉梳理模式,噴頭將會回抽耗材,直線移動到下一點。梳理模式可以避開頂部/底部表層,也可以只用在內部填充。注意「內部填充」選項的行為與舊版 Cura 的「表層以外區域」選項是完全相同的。" - -#~ 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 happend midway over infill this feature can reduce the top surface quality." -#~ 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. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "填充耗材的樣式。線條和鋸齒狀填充輪流在每一層交換方向,以降低耗材成本。網格、三角形、三-六邊形、立方體、八面體、四分立方體、十字形和同心的列印樣式在每層完整列印。立方體、四分立方體和八面體填充隨每層變化,以在各個方向提供更均衡的强度分布。" - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ 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 by combing within the infill only." -#~ msgstr "梳理可在空跑時讓噴頭保持在已列印區域內。這會使空跑距離稍微延長,但可減少回抽需求。如果關閉梳理,則耗材將回抽,且噴頭沿著直線移動到下一個點。也可以通過僅在填充內進行梳理避免梳理頂部/底部表層區域。" - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "同心 3D" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "同心 3D" - -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "立體同心圓" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "同心 3D" - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "木筏底部間距" - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "換料塔厚度" - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "空心換料塔的厚度。如果厚度大於換料塔最小體積的一半,則將形成一個密集的換料塔。" - -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "切換後擦拭噴頭" - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "切換擠出機後,在列印的第一個物件上擦拭噴頭上的滲出耗材。這會在滲出耗材對列印品表面品質造成最小損害的位置進行緩慢安全的擦拭動作。" - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "換料塔清洗量" - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "在換料塔上進行擦拭時要清洗的耗材量。清洗可用於補償在噴頭不活動期間由於滲出而損失的耗材。" - -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "最大橋樑牆壁突出" - -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ 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." -#~ msgstr "最佳化牆壁列印順序以減少回抽的次數和空跑的距離。啟用此功能對大多數是有益的,但有的可能會花更多的時間。所以請比較有無最佳化的估算時間進行確認。" - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "表層除外" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "交錯立體十字形氣囊" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "在立體十字形樣式中,只在半數樣式閉合的中央十字交叉處使用氣囊,並在高度上交錯排列。" - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "挖空模型" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "移除所有填充並讓模型內部可以進行支撐。" - -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "允許與層高基礎值相差的最大值(以毫米為單位)。" - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ msgstr "模型置中" +#~ msgctxt "speed_equalize_flow_max description" +#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." +#~ msgstr "調整列印速度以便均衡流量時的最大列印速度。" #~ msgctxt "mesh_position_x label" #~ msgid "Mesh position x" @@ -7358,53 +7018,233 @@ msgstr "在將模型從檔案中載入時套用在模型上的轉換矩陣。" #~ msgid "Mesh position z" #~ msgstr "網格位置 z" -#~ msgctxt "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "起始 G-code" +#~ msgctxt "support_minimal_diameter label" +#~ msgid "Minimum Diameter" +#~ msgstr "最小直徑" -#~ msgctxt "machine_start_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." -#~ msgstr "" -#~ "在開始後執行的 G-code 命令 - 以 \n" -#~ " 分行。" +#~ msgctxt "wall_min_flow label" +#~ msgid "Minimum Wall Flow" +#~ msgstr "最小牆壁流量" -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "結束 G-code" +#~ msgctxt "wall_min_flow description" +#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." +#~ msgstr "牆壁允許的最小流量百分比。當在已列印的牆壁旁列印牆壁時,「補償牆壁重疊」會減少線材流量。小於此設定流量的牆壁會被空跑取代。當啟用此設定時,必需啟用「補償牆壁重疊」並設定先列印外壁再列印內壁。" -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "在結束前執行的 G-code 命令 - 以 \n" -#~ " 分行。" +#~ msgctxt "minimum_interface_area description" +#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." +#~ msgstr "支撐介面區域的最小面積大小。面積小於此值的區域將不會產生支撐介面。" -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "G-code 類型" +#~ 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 not be generated." +#~ msgstr "支撐底板區域的最小面積大小。面積小於此值的區域將不會產生支撐底板。" -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "需要產生的 G-code 類型。" +#~ 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 not be generated." +#~ msgstr "支撐頂板區域的最小面積大小。面積小於此值的區域將不會產生支撐頂板。" + +#~ msgctxt "support_minimal_diameter description" +#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +#~ msgstr "小區域中支撐塔的 X/Y 軸方向最小直徑。" + +#~ msgctxt "retraction_combing option noskin" +#~ msgid "No Skin" +#~ 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 GCode." #~ msgstr "一般情况下,Cura 會嘗試縫合網格中的小孔,並移除有大孔的部分層。啟用此選項將保留那些無法縫合的部分。當其他所有方法都無法產生正確的 GCode 時,該選項應該被用作最後手段。" -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. 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 Gcode script is output." -#~ msgstr "擠出控制使用相對模式而非絕對模式。使用相對的 E 步數使 G-code 在後處理上更為簡便。然而並非所有印表機都支援此模式,而且和絕對的 E 步數相比,它可能在沉積耗材的使用量上產生輕微的偏差。無論此設定為何,在輸出任何 G-code 腳本之前,擠出模式將始終設定為絕對模式。" +#~ msgctxt "fill_perimeter_gaps option nowhere" +#~ msgid "Nowhere" +#~ msgstr "都不填充" -#~ msgctxt "infill_offset_x description" -#~ msgid "The infill pattern is offset this distance along the X axis." -#~ msgstr "填充樣式在 X 軸方向偏移此距離。" +#~ msgctxt "machine_nozzle_expansion_angle label" +#~ msgid "Nozzle angle" +#~ msgstr "噴頭角度" -#~ msgctxt "infill_offset_y description" -#~ msgid "The infill pattern is offset this distance along the Y axis." -#~ msgstr "填充樣式在 Y 軸方向偏移此距離。" +#~ msgctxt "machine_nozzle_head_distance label" +#~ msgid "Nozzle length" +#~ msgstr "噴頭長度" + +#~ msgctxt "extruders_enabled_count label" +#~ msgid "Number of Extruders that are enabled" +#~ msgstr "已啟用擠出機的數量" + +#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" +#~ msgid "Offset With Extruder" +#~ msgstr "擠出機偏移量" + +#~ msgctxt "limit_support_retractions description" +#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." +#~ msgstr "當從支撐直線移動到另一支撐時,省略回抽。啟用此功能可節省列印時間,但會導致支撐內部有較多的牽絲。" + +#~ msgctxt "limit_support_retractions description" +#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." +#~ msgstr "當從支撐直線移動到另一支撐時,省略回抽。啟用此功能可節省列印時間,但會導致支撐內部有較多的牽絲。" + +#~ msgctxt "cross_infill_apply_pockets_alternatingly description" +#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." +#~ 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." +#~ msgstr "最佳化牆壁列印順序以減少回抽的次數和空跑的距離。啟用此功能對大多數是有益的,但有的可能會花更多的時間。所以請比較有無最佳化的估算時間進行確認。" + +#~ msgctxt "support_infill_angles description" +#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." +#~ msgstr "支撐填充樣式的方向。 支撐填充樣式的旋轉方向是在水平面上旋轉。" + +#~ msgctxt "outer_inset_first label" +#~ msgid "Outer Before Inner Walls" +#~ msgstr "先印外壁後印內壁" + +#~ msgctxt "machine_nozzle_tip_outer_diameter label" +#~ msgid "Outer nozzle diameter" +#~ msgstr "噴頭外徑" + +#~ msgctxt "wireframe_straight_before_down description" +#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." +#~ msgstr "水平線條部分所覆蓋的斜下行線條的百分比。這可以防止上行線最頂端點下垂。僅套用於鐵絲網列印。" + +#~ msgctxt "wall_min_flow_retract label" +#~ msgid "Prefer Retract" +#~ msgstr "回抽優先" + +#~ msgctxt "prime_tower_purge_volume label" +#~ msgid "Prime Tower Purge Volume" +#~ msgstr "換料塔清洗量" + +#~ msgctxt "prime_tower_wall_thickness label" +#~ msgid "Prime Tower Thickness" +#~ msgstr "換料塔厚度" + +#~ msgctxt "wireframe_enabled description" +#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." +#~ msgstr "只列印一個具有稀疏網狀結構的外表面,在“稀疏的空中”列印。這是在给定的 Z 軸間隔內,通過上行線和下行斜線連接,橫向列印模型的輪廓來實現的。" + +#~ msgctxt "spaghetti_infill_enabled description" +#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." +#~ msgstr "經常列印填充,使得耗材在模型內部混亂地捲曲。這會縮短列印時間,但行為會難以預測。" + +#~ msgctxt "speed_equalize_flow_enabled description" +#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." +#~ msgstr "以較快的速度列印比正常線條更細的線條,使每秒擠出的線材量保持相同。模型中較薄的部分可能需要以低於設定中所提供寬度的線寬來列印線條。該設定控制這些線條的速度變化。" + +#~ msgctxt "outer_inset_first description" +#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." +#~ msgstr "啟用時以從外向內的順序列印牆壁。當使用高黏度塑料如 ABS 時,這有助於提高 X 和 Y 的尺寸精度;但是,它可能會降低表面列印品質,尤其是在突出部分。" + +#~ msgctxt "raft_base_line_spacing label" +#~ msgid "Raft Line Spacing" +#~ msgstr "木筏底部間距" + +#~ msgctxt "infill_hollow description" +#~ msgid "Remove all infill and make the inside of the object eligible for support." +#~ msgstr "移除所有填充並讓模型內部可以進行支撐。" + +#~ msgctxt "wireframe_strategy option retract" +#~ msgid "Retract" +#~ msgstr "回抽" + +#~ msgctxt "retraction_enable description" +#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " +#~ msgstr "當噴頭移動到非列印區域上方時回抽耗材。 " + +#~ msgctxt "wipe_retraction_prime_speed label" +#~ msgid "Retraction Prime Speed" +#~ msgstr "擦拭回抽裝填速度" + +#~ msgctxt "shell label" +#~ msgid "Shell" +#~ msgstr "外殼" + +#~ msgctxt "material_shrinkage_percentage label" +#~ msgid "Shrinkage Ratio" +#~ msgstr "收縮率" + +#~ msgctxt "material_shrinkage_percentage description" +#~ msgid "Shrinkage ratio in percentage." +#~ msgstr "收縮率百分比。" + +#~ msgctxt "support_skip_some_zags label" +#~ msgid "Skip Some ZigZags Connections" +#~ 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 adhestion 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 adhestion and accuracy." +#~ 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 "spaghetti_flow label" +#~ msgid "Spaghetti Flow" +#~ msgstr "義大利麵式填充流量" + +#~ msgctxt "spaghetti_infill_enabled label" +#~ msgid "Spaghetti Infill" +#~ msgstr "義大利麵式填充" + +#~ msgctxt "spaghetti_infill_extra_volume label" +#~ msgid "Spaghetti Infill Extra Volume" +#~ msgstr "義大利麵式填充額外體積" + +#~ msgctxt "spaghetti_max_height label" +#~ msgid "Spaghetti Infill Maximum Height" +#~ msgstr "義大利麵式填充 - 最大填充高度" + +#~ msgctxt "spaghetti_infill_stepped label" +#~ msgid "Spaghetti Infill Stepping" +#~ msgstr "義大利麵式逐步填充" + +#~ msgctxt "spaghetti_inset label" +#~ msgid "Spaghetti Inset" +#~ msgstr "義大利麵式填充內嵌" + +#~ msgctxt "spaghetti_max_infill_angle label" +#~ msgid "Spaghetti Maximum Infill Angle" +#~ msgstr "義大利麵式填充 - 最大填充角度" + +#~ msgctxt "wireframe_printspeed description" +#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." +#~ msgstr "擠出線材時噴頭移動的速度。僅套用於鐵絲網列印。" + +#~ msgctxt "wireframe_printspeed_down description" +#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." +#~ msgstr "列印下行斜線的速度。僅套用於鐵絲網列印。" + +#~ msgctxt "wireframe_printspeed_up description" +#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." +#~ msgstr "在“稀疏的空中”向上列印線條的速度。僅套用於鐵絲網列印。" + +#~ msgctxt "wireframe_printspeed_bottom description" +#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." +#~ msgstr "列印第一層的速度,該層是唯一接觸列印平台的層。僅套用於鐵絲網列印。" + +#~ msgctxt "wireframe_printspeed_flat description" +#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." +#~ msgstr "列印模型水平輪廓的速度。僅套用於鐵絲網列印。" + +#~ msgctxt "machine_start_gcode label" +#~ msgid "Start GCode" +#~ msgstr "起始 G-code" + +#~ msgctxt "start_layers_at_same_position label" +#~ msgid "Start Layers with the Same Part" +#~ msgstr "在相同的位置列印新層" + +#~ msgctxt "wireframe_strategy description" +#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." +#~ msgstr "用於確定兩個連續層在每個連接點連接的策略。回抽可讓上行線條在正確的位置硬化,但可能導致線材磨損。紐結可以在上行線條的尾端進行打結以便提高與其連接的幾率,並讓線條冷卻;但這會需要較慢的列印速度。另一種策略是補償上行線條頂部的下垂;然而,線條不會總是如預期的那樣下降。" + +#~ msgctxt "infill_pattern option tetrahedral" +#~ msgid "Tetrahedral" +#~ msgstr "正四面體" #~ msgctxt "infill_overlap description" #~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." @@ -7414,54 +7254,334 @@ msgstr "在將模型從檔案中載入時套用在模型上的轉換矩陣。" #~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." #~ msgstr "表層和牆壁之間的重疊量,以線寬百分比表示。稍微重疊可讓各個牆壁與表層牢固連接。這是表層平均線寬和最內壁的百分比。" -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "用於加熱列印平台的溫度。如果列印平台溫度為 0,則熱床將不會為此次列印加熱。" +#~ msgctxt "skin_overlap description" +#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." +#~ msgstr "表層與牆壁的重疊量佔表層線寬的百分比。輕微的重疊能讓填充與表層牢固地連接。這是表層線寬和最內層牆壁線寬平均的百分比。" + +#~ msgctxt "skin_overlap_mm description" +#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." +#~ msgstr "表層和牆壁之間的重疊量。稍微重疊可讓各個牆壁與表層牢固連接。" + +#~ msgctxt "switch_extruder_retraction_amount description" +#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." +#~ msgstr "回抽量:設為 0,不進行任何回抽。該值通常應與加熱區的長度相同。" + +#~ msgctxt "lightning_infill_prune_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." +#~ msgstr "閃電形填充層與其附著物間的生成角度." + +#~ msgctxt "lightning_infill_straightening_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." +#~ msgstr "設定閃電形填充層間垂直堆疊角度,調整樹狀堆疊的平滑度." + +#~ msgctxt "wireframe_roof_inset description" +#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." +#~ msgstr "在從頂板輪廓向內進行連接時所覆蓋的距離。僅套用於鐵絲網列印。" + +#~ msgctxt "wireframe_roof_drag_along description" +#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "向內線的末端在返回至頂板外部輪廓時被拖行的距離。將對此距離進行補償。僅套用於鐵絲網列印。" + +#~ msgctxt "wireframe_roof_fall_down description" +#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "列印時,在“稀疏的空中”列印的水平頂板線條倒塌的距離。將對此距離進行補償。僅套用於鐵絲網列印。" #~ msgctxt "z_offset_layer_0 description" #~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." #~ msgstr "擠出機在第一層從正常高度偏移了此設定量。它可以是正值(上升)或負值(下降)。某些耗材類型在擠出機稍微上升情況下,會更好地附著在列印平台上。" -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Z 軸偏移漸減層數" +#~ msgctxt "wireframe_height description" +#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." +#~ msgstr "兩個水平部分之間上行線和下行斜線的高度。這决定網狀結構的整體密度。僅套用於鐵絲網列印。" + +#~ msgctxt "infill_offset_x description" +#~ msgid "The infill pattern is offset this distance along the X axis." +#~ msgstr "填充樣式在 X 軸方向偏移此距離。" + +#~ msgctxt "infill_offset_y description" +#~ msgid "The infill pattern is offset this distance along the Y axis." +#~ msgstr "填充樣式在 Y 軸方向偏移此距離。" + +#~ msgctxt "adaptive_layer_height_variation description" +#~ msgid "The maximum allowed height different from the base layer height in mm." +#~ msgstr "允許與層高基礎值相差的最大值(以毫米為單位)。" + +#~ msgctxt "bridge_wall_max_overhang description" +#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." +#~ msgstr "使用一般設定列印牆壁線條允許最大的突出寬度。以牆壁線寬的百分比表示。當間隙比此寬時,使用橋樑設定列印牆壁線條。否則就使用一般設定列印牆壁線條。數值越低,越有可能使用橋樑設定列印牆壁線條。" + +#~ msgctxt "spaghetti_max_infill_angle description" +#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." +#~ msgstr "允許延後填充義大利麵式填充的最大角度,取列印物內側與 Z 軸的夾角。降低此值會導致模型中的更多有角度部位在各層填充。" + +#~ 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." +#~ msgstr "「最高解析度」設定在降低解析度時允許的最大偏差。如果增加此值,列印精度會較差但 G-code 會較小。" + +#~ msgctxt "support_join_distance description" +#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate 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 compensate." +#~ msgstr "最大補償距離(以毫米為單位)。" + +#~ msgctxt "spaghetti_max_height description" +#~ msgid "The maximum height of inside space which can be combined and filled from the top." +#~ msgstr "可以從頂部組合和填充的內部空間的最大高度。" + +#~ msgctxt "max_feedrate_z_override description" +#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." +#~ msgstr "列印平台移動的最大速度。將該值設為零會使列印為最大 Z 速度採用韌體預設值。" + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "模具外側和模型外側之間的最小距離。" + +#~ msgctxt "flow_rate_extrusion_offset_factor description" +#~ msgid "The multiplication factor for the flow rate -> distance translation." +#~ msgstr "流量倍率 -> 移動距離。" + +#~ msgctxt "support_tree_wall_count description" +#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." +#~ msgstr "樹狀支撐樹枝牆壁的圈數。較厚的牆壁需要花較長的時間列印,但較不易倒下。" + +#~ msgctxt "spaghetti_inset description" +#~ msgid "The offset from the walls from where the spaghetti infill will be printed." +#~ 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. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ 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." +#~ 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 (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." +#~ 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." +#~ msgstr "起始層的速度。建議採用較低的值以便改善與列印平台的附著。" + +#~ msgctxt "build_volume_temperature description" +#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." +#~ msgstr "設定列印空間的溫度。如果設定為 0,就不會加熱列印空間。" + +#~ msgctxt "material_bed_temperature_layer_0 description" +#~ msgid "The temperature used for the heated build plate at the first layer." +#~ msgstr "用於第一層加熱列印平台的溫度。" + +#~ msgctxt "material_bed_temperature description" +#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." +#~ msgstr "設定列印平台的溫度。如果設定為 0,就不會加熱列印平台。" + +#~ msgctxt "material_bed_temperature description" +#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." +#~ msgstr "用於加熱列印平台的溫度。如果列印平台溫度為 0,則熱床將不會為此次列印加熱。" + +#~ msgctxt "prime_tower_wall_thickness description" +#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." +#~ msgstr "空心換料塔的厚度。如果厚度大於換料塔最小體積的一半,則將形成一個密集的換料塔。" + +#~ msgctxt "support_tree_wall_thickness description" +#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." +#~ msgstr "樹狀支撐樹枝的牆壁厚度。較厚的牆壁需要花較長的時間列印,但較不易倒下。" + +#~ msgctxt "machine_gcode_flavor description" +#~ msgid "The type of gcode to be generated." +#~ msgstr "需要產生的 G-code 類型。" + +#~ msgctxt "adaptive_layer_height_threshold description" +#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." +#~ msgstr "決定是否使用較小層高的門檻值。此值會與一層中最陡坡度的 tan 值做比較。" + +#~ msgctxt "wireframe_roof_outer_delay description" +#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." +#~ 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, while an angle of 90° is vertical." +#~ msgstr "如果模型的頂部和/或底部表面的角度大於此設定,則不要延伸其頂部/底部表層。這會避免延伸作用在模型表面有接近垂直的斜面時所形成的狹窄表層區域。0° 的角為水平,90° 的角為垂直。" + +#~ msgctxt "support_tree_enable label" +#~ msgid "Tree Support" +#~ msgstr "樹狀支撐" + +#~ msgctxt "support_tree_wall_count label" +#~ msgid "Tree Support Wall Line Count" +#~ msgstr "樹狀支撐牆壁線條數量" + +#~ msgctxt "support_tree_wall_thickness label" +#~ msgid "Tree Support Wall Thickness" +#~ msgstr "樹狀支撐牆厚" + +#~ msgctxt "adaptive_layer_height_enabled label" +#~ msgid "Use adaptive layers" +#~ msgstr "使用適應層高" + +#~ msgctxt "relative_extrusion description" +#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. 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 Gcode script is output." +#~ msgstr "擠出控制使用相對模式而非絕對模式。使用相對的 E 步數使 G-code 在後處理上更為簡便。然而並非所有印表機都支援此模式,而且和絕對的 E 步數相比,它可能在沉積耗材的使用量上產生輕微的偏差。無論此設定為何,在輸出任何 G-code 腳本之前,擠出模式將始終設定為絕對模式。" + +#~ msgctxt "wireframe_bottom_delay label" +#~ msgid "WP Bottom Delay" +#~ msgstr "WP 底部延遲" + +#~ msgctxt "wireframe_printspeed_bottom label" +#~ msgid "WP Bottom Printing Speed" +#~ msgstr "WP 底部列印速度" + +#~ msgctxt "wireframe_flow_connection label" +#~ msgid "WP Connection Flow" +#~ msgstr "WP 連接流量" + +#~ msgctxt "wireframe_height label" +#~ msgid "WP Connection Height" +#~ msgstr "WP 連接高度" + +#~ msgctxt "wireframe_printspeed_down label" +#~ msgid "WP Downward Printing Speed" +#~ msgstr "WP 下降列印速度" + +#~ msgctxt "wireframe_drag_along label" +#~ msgid "WP Drag Along" +#~ msgstr "WP 拖行" + +#~ msgctxt "wireframe_up_half_speed label" +#~ msgid "WP Ease Upward" +#~ msgstr "WP 輕鬆上行" + +#~ msgctxt "wireframe_fall_down label" +#~ msgid "WP Fall Down" +#~ msgstr "WP 倒塌" + +#~ msgctxt "wireframe_flat_delay label" +#~ msgid "WP Flat Delay" +#~ msgstr "WP 平面延遲" + +#~ msgctxt "wireframe_flow_flat label" +#~ msgid "WP Flat Flow" +#~ msgstr "WP 平面流量" + +#~ msgctxt "wireframe_flow label" +#~ msgid "WP Flow" +#~ msgstr "WP 列印流量" + +#~ msgctxt "wireframe_printspeed_flat label" +#~ msgid "WP Horizontal Printing Speed" +#~ msgstr "WP 水平列印速度" + +#~ msgctxt "wireframe_top_jump label" +#~ msgid "WP Knot Size" +#~ msgstr "WP 紐結大小" + +#~ msgctxt "wireframe_nozzle_clearance label" +#~ msgid "WP Nozzle Clearance" +#~ msgstr "WP 噴頭間隙" + +#~ msgctxt "wireframe_roof_drag_along label" +#~ msgid "WP Roof Drag Along" +#~ msgstr "WP 頂板拖行" + +#~ msgctxt "wireframe_roof_fall_down label" +#~ msgid "WP Roof Fall Down" +#~ msgstr "WP 頂板倒塌" + +#~ msgctxt "wireframe_roof_inset label" +#~ msgid "WP Roof Inset Distance" +#~ msgstr "WP 頂板嵌入距離" + +#~ msgctxt "wireframe_roof_outer_delay label" +#~ msgid "WP Roof Outer Delay" +#~ msgstr "WP 頂板外部延遲" + +#~ msgctxt "wireframe_printspeed label" +#~ msgid "WP Speed" +#~ msgstr "WP 速度" + +#~ msgctxt "wireframe_straight_before_down label" +#~ msgid "WP Straighten Downward Lines" +#~ msgstr "WP 拉直下行線條" + +#~ msgctxt "wireframe_strategy label" +#~ msgid "WP Strategy" +#~ msgstr "WP 使用策略" + +#~ msgctxt "wireframe_top_delay label" +#~ msgid "WP Top Delay" +#~ msgstr "WP 頂部延遲" + +#~ msgctxt "wireframe_printspeed_up label" +#~ msgid "WP Upward Printing Speed" +#~ msgstr "WP 上升列印速度" + +#~ 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." +#~ msgstr "牆壁突出的角度大於此值時,將使用突出牆壁的設定列印。當此值設定為 90 時,所有牆壁都不會被當作突出牆壁。" + +#~ msgctxt "retraction_combing_max_distance description" +#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." +#~ msgstr "當此值不為 0 時,在梳理模式空跑超過此距離時,會啟用回抽。" #~ msgctxt "z_offset_taper_layers description" #~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." #~ msgstr "當此值不為 0 時,Z 軸偏移量在經過此層數時逐漸降為 0。此值設為 0 表示所有列印層的 Z 軸偏移量保持為固定值。" -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "正四面體" +#~ msgctxt "skin_no_small_gaps_heuristic description" +#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." +#~ msgstr "當模型具有微小的垂直間隙時,為了在這些間隙上產生頂部、底部等表面,會花費大約5%的額外的計算時間。勾選這個項目可以節省時間,但是間隙會消失,若要保留這些間隙,不要勾選這個項目。" -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "將表層延伸到填充中" +#~ msgctxt "wipe_hop_enable 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 "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "延伸平面頂部和/或底部表層的區域。預設情况下,表層會在環繞填充的壁線下方停止,但如果填充密度較低,則可能導致出現孔洞。該設定將表層延展到壁線以外,因此下一層的填充會座落在表層上。" +#~ msgctxt "clean_between_layers description" +#~ msgid "Whether to include nozzle wipe G-Code between layers. 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。啟用此設定會影響換層時的回抽行為。請用「擦拭回抽」設定來控制擦拭時的回抽量。" -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ 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 only possible if 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 "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ 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 "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "將底部表層延伸到填充中" +#~ msgctxt "spaghetti_infill_stepped description" +#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." +#~ msgstr "是否逐步列印義大利麵式填充或在列印結束時一次擠出所有填充耗材。" -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "延伸底部表層區域(下方有空氣的區域),讓它們由上下的填充層錨定。" +#~ msgctxt "dual_pre_wipe label" +#~ msgid "Wipe Nozzle After Switch" +#~ msgstr "切換後擦拭噴頭" -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "跳過部分鋸齒狀連接" +#~ msgctxt "wipe_hop_enable label" +#~ msgid "Wipe Z Hop When Retracted" +#~ msgstr "擦拭回抽後 Z 抬升" + +#~ msgctxt "wireframe_enabled label" +#~ msgid "Wire Printing" +#~ msgstr "鐵絲網列印(以下簡稱 WP)" + +#~ msgctxt "z_offset_taper_layers label" +#~ msgid "Z Offset Taper Layers" +#~ msgstr "Z 軸偏移漸減層數" #~ msgctxt "support_zag_skip_count label" #~ msgid "ZigZag Connection Skip Count" #~ msgstr "鋸齒狀連接跳過計數" + +#~ msgctxt "blackmagic description" +#~ msgid "category_blackmagic" +#~ msgstr "黑魔法" + +#~ msgctxt "meshfix description" +#~ msgid "category_fixes" +#~ msgstr "修復" + +#~ msgctxt "experimental description" +#~ msgid "experimental!" +#~ msgstr "實驗性!" diff --git a/resources/images/Hellbot_Magna_SE_300.png b/resources/images/Hellbot_Magna_SE_300.png new file mode 100644 index 0000000000..be8a8d2e6b Binary files /dev/null and b/resources/images/Hellbot_Magna_SE_300.png differ diff --git a/resources/images/Hellbot_magna_SE_Pro.png b/resources/images/Hellbot_magna_SE_Pro.png new file mode 100644 index 0000000000..48a1bc463f Binary files /dev/null and b/resources/images/Hellbot_magna_SE_Pro.png differ diff --git a/resources/images/UltimakerS7backplate.png b/resources/images/UltimakerS7backplate.png new file mode 100644 index 0000000000..c35f819d7d Binary files /dev/null and b/resources/images/UltimakerS7backplate.png differ diff --git a/resources/images/ankermake_m5.png b/resources/images/ankermake_m5.png new file mode 100644 index 0000000000..aec9697c9e Binary files /dev/null and b/resources/images/ankermake_m5.png differ diff --git a/resources/images/cura.png b/resources/images/cura.png index 66b10d5118..ac1677f3f8 100644 Binary files a/resources/images/cura.png and b/resources/images/cura.png differ diff --git a/resources/images/cura_enterprise.png b/resources/images/cura_enterprise.png index fd5025b67c..4a200a8c6b 100644 Binary files a/resources/images/cura_enterprise.png and b/resources/images/cura_enterprise.png differ diff --git a/resources/images/cura_wip.png b/resources/images/cura_wip.png index f98957a0b5..5c2c8104cc 100644 Binary files a/resources/images/cura_wip.png and b/resources/images/cura_wip.png differ diff --git a/resources/images/tank_m.png b/resources/images/tank_m.png new file mode 100644 index 0000000000..b5c93afc5a Binary files /dev/null and b/resources/images/tank_m.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 fc92d04fca..d6629aeb1c 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = deltacomb_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D010 intent_category = engineering material = generic_abs +quality_type = D010 +setting_version = 22 +type = intent variant = DBE 0.40mm [values] jerk_wall = 5 jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -wall_thickness = =line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset + 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 0d9be05d37..9dcbbf4f5f 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = deltacomb_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D015 intent_category = engineering material = generic_abs +quality_type = D015 +setting_version = 22 +type = intent variant = DBE 0.40mm [values] jerk_wall = 5 jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -wall_thickness = =line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset + 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 bf5a6e7d55..4f12d0c670 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = deltacomb_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D020 intent_category = engineering material = generic_abs +quality_type = D020 +setting_version = 22 +type = intent variant = DBE 0.40mm [values] jerk_wall = 5 jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -wall_thickness = =line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset + 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 9ed2e3b18e..54a76b8192 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Quick definition = deltacomb_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D020 intent_category = quick material = generic_abs +quality_type = D020 +setting_version = 22 +type = intent variant = DBE 0.40mm [values] -speed_infill = =speed_print -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 * 2 -infill_sparse_density = 15 infill_line_width = =line_width +infill_sparse_density = 15 jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall line_width = =machine_nozzle_size -wall_line_width_x = =line_width \ No newline at end of file +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_line_width_x = =line_width +wall_thickness = =line_width * 2 + 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 3589432452..173d99acbc 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Quick definition = deltacomb_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D030 intent_category = quick material = generic_abs +quality_type = D030 +setting_version = 22 +type = intent variant = DBE 0.40mm [values] -speed_infill = =speed_print -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 * 2 -infill_sparse_density = 15 infill_line_width = =line_width +infill_sparse_density = 15 jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall line_width = =machine_nozzle_size -wall_line_width_x = =line_width \ No newline at end of file +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_line_width_x = =line_width +wall_thickness = =line_width * 2 + 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 0588da5673..a5d3f342ea 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = deltacomb_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D010 intent_category = engineering material = generic_abs +quality_type = D010 +setting_version = 22 +type = intent variant = FBE 0.40mm [values] jerk_wall = 5 jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -wall_thickness = =line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset + 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 2185ffbfad..d30d8f67b8 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = deltacomb_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D015 intent_category = engineering material = generic_abs +quality_type = D015 +setting_version = 22 +type = intent variant = FBE 0.40mm [values] jerk_wall = 5 jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -wall_thickness = =line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset + 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 2edfe7018a..cdce34e01a 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = deltacomb_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D020 intent_category = engineering material = generic_abs +quality_type = D020 +setting_version = 22 +type = intent variant = FBE 0.40mm [values] jerk_wall = 5 jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -wall_thickness = =line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset + 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 790f01fba7..00363e3dba 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Quick definition = deltacomb_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D020 intent_category = quick material = generic_abs +quality_type = D020 +setting_version = 22 +type = intent variant = FBE 0.40mm [values] -speed_infill = =speed_print -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 * 2 -infill_sparse_density = 15 infill_line_width = =line_width +infill_sparse_density = 15 jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall line_width = =machine_nozzle_size -wall_line_width_x = =line_width \ No newline at end of file +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_line_width_x = =line_width +wall_thickness = =line_width * 2 + 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 d5ff43e5c4..cf4c937e75 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Quick definition = deltacomb_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D030 intent_category = quick material = generic_abs +quality_type = D030 +setting_version = 22 +type = intent variant = FBE 0.40mm [values] -speed_infill = =speed_print -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 * 2 -infill_sparse_density = 15 infill_line_width = =line_width +infill_sparse_density = 15 jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall line_width = =machine_nozzle_size -wall_line_width_x = =line_width \ No newline at end of file +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_line_width_x = =line_width +wall_thickness = =line_width * 2 + 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 de228f760e..9cf8e2a47b 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = deltacomb_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D010 intent_category = engineering material = generic_petg +quality_type = D010 +setting_version = 22 +type = intent variant = DBE 0.40mm [values] jerk_wall = 5 jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -wall_thickness = =line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset + 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 86529c093b..a7c6e21278 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = deltacomb_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D015 intent_category = engineering material = generic_petg +quality_type = D015 +setting_version = 22 +type = intent variant = DBE 0.40mm [values] jerk_wall = 5 jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -wall_thickness = =line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset + 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 482bfab89d..c1f4f49b6d 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = deltacomb_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D020 intent_category = engineering material = generic_petg +quality_type = D020 +setting_version = 22 +type = intent variant = DBE 0.40mm [values] jerk_wall = 5 jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -wall_thickness = =line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset + 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 97535eebee..ac2faaf589 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Quick definition = deltacomb_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D020 intent_category = quick material = generic_petg +quality_type = D020 +setting_version = 22 +type = intent variant = DBE 0.40mm [values] -speed_print = 75 -speed_infill = =speed_print -speed_topbottom = =speed_print -speed_wall = =speed_print -speed_wall_x = =speed_wall -top_bottom_thickness = =wall_thickness -wall_thickness = =line_width * 2 -infill_sparse_density = 15 infill_line_width = =line_width +infill_sparse_density = 15 jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall line_width = =machine_nozzle_size -wall_line_width_x = =line_width \ No newline at end of file +speed_infill = =speed_print +speed_print = 75 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_line_width_x = =line_width +wall_thickness = =line_width * 2 + 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 97535eebee..ac2faaf589 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Quick definition = deltacomb_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D020 intent_category = quick material = generic_petg +quality_type = D020 +setting_version = 22 +type = intent variant = DBE 0.40mm [values] -speed_print = 75 -speed_infill = =speed_print -speed_topbottom = =speed_print -speed_wall = =speed_print -speed_wall_x = =speed_wall -top_bottom_thickness = =wall_thickness -wall_thickness = =line_width * 2 -infill_sparse_density = 15 infill_line_width = =line_width +infill_sparse_density = 15 jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall line_width = =machine_nozzle_size -wall_line_width_x = =line_width \ No newline at end of file +speed_infill = =speed_print +speed_print = 75 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_line_width_x = =line_width +wall_thickness = =line_width * 2 + 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 73249ec65d..40cbc081d0 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Quick definition = deltacomb_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D030 intent_category = quick material = generic_petg +quality_type = D030 +setting_version = 22 +type = intent variant = DBE 0.40mm [values] -speed_print = 75 -speed_infill = =speed_print -speed_topbottom = =speed_print -speed_wall = =speed_print -speed_wall_x = =speed_wall -top_bottom_thickness = =wall_thickness -wall_thickness = =line_width * 2 -infill_sparse_density = 15 infill_line_width = =line_width +infill_sparse_density = 15 jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall line_width = =machine_nozzle_size -wall_line_width_x = =line_width \ No newline at end of file +speed_infill = =speed_print +speed_print = 75 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_line_width_x = =line_width +wall_thickness = =line_width * 2 + 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 8526eb1bb2..6b76d5b201 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = deltacomb_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D010 intent_category = engineering material = generic_petg +quality_type = D010 +setting_version = 22 +type = intent variant = FBE 0.40mm [values] jerk_wall = 5 jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -wall_thickness = =line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset + 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 b4224d74ad..af6eafd5fd 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = deltacomb_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D015 intent_category = engineering material = generic_petg +quality_type = D015 +setting_version = 22 +type = intent variant = FBE 0.40mm [values] jerk_wall = 5 jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -wall_thickness = =line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset + 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 42d277ed91..ae9ae28b76 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = deltacomb_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D020 intent_category = engineering material = generic_petg +quality_type = D020 +setting_version = 22 +type = intent variant = FBE 0.40mm [values] jerk_wall = 5 jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -wall_thickness = =line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset + 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 050e16e423..a668f69265 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Quick definition = deltacomb_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D015 intent_category = quick material = generic_petg +quality_type = D015 +setting_version = 22 +type = intent variant = FBE 0.40mm [values] -speed_print = 75 -speed_infill = =speed_print -speed_topbottom = =speed_print -speed_wall = =speed_print -speed_wall_x = =speed_wall -top_bottom_thickness = =wall_thickness -wall_thickness = =line_width * 2 -infill_sparse_density = 15 infill_line_width = =line_width +infill_sparse_density = 15 jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall line_width = =machine_nozzle_size -wall_line_width_x = =line_width \ No newline at end of file +speed_infill = =speed_print +speed_print = 75 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_line_width_x = =line_width +wall_thickness = =line_width * 2 + 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 f9bee00b41..a077cd2ced 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Quick definition = deltacomb_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D020 intent_category = quick material = generic_petg +quality_type = D020 +setting_version = 22 +type = intent variant = FBE 0.40mm [values] -speed_print = 75 -speed_infill = =speed_print -speed_topbottom = =speed_print -speed_wall = =speed_print -speed_wall_x = =speed_wall -top_bottom_thickness = =wall_thickness -wall_thickness = =line_width * 2 -infill_sparse_density = 15 infill_line_width = =line_width +infill_sparse_density = 15 jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall line_width = =machine_nozzle_size -wall_line_width_x = =line_width \ No newline at end of file +speed_infill = =speed_print +speed_print = 75 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_line_width_x = =line_width +wall_thickness = =line_width * 2 + 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 75b57ff478..fde9381855 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Quick definition = deltacomb_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D030 intent_category = quick material = generic_petg +quality_type = D030 +setting_version = 22 +type = intent variant = FBE 0.40mm [values] -speed_print = 75 -speed_infill = =speed_print -speed_topbottom = =speed_print -speed_wall = =speed_print -speed_wall_x = =speed_wall -top_bottom_thickness = =wall_thickness -wall_thickness = =line_width * 2 -infill_sparse_density = 15 infill_line_width = =line_width +infill_sparse_density = 15 jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall line_width = =machine_nozzle_size -wall_line_width_x = =line_width \ No newline at end of file +speed_infill = =speed_print +speed_print = 75 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_line_width_x = =line_width +wall_thickness = =line_width * 2 + 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 0273f3d075..496c28b43e 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = deltacomb_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D010 intent_category = engineering material = generic_pla +quality_type = D010 +setting_version = 22 +type = intent variant = DBE 0.40mm [values] jerk_wall = 5 jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -wall_thickness = =line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset + 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 930f4f2006..05a545e4dc 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = deltacomb_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D015 intent_category = engineering material = generic_pla +quality_type = D015 +setting_version = 22 +type = intent variant = DBE 0.40mm [values] jerk_wall = 5 jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -wall_thickness = =line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset + 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 285d172974..b07338020d 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = deltacomb_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D020 intent_category = engineering material = generic_pla +quality_type = D020 +setting_version = 22 +type = intent variant = DBE 0.40mm [values] jerk_wall = 5 jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -wall_thickness = =line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset + 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 5c998aed11..d9271d1082 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Quick definition = deltacomb_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D020 intent_category = quick material = generic_pla +quality_type = D020 +setting_version = 22 +type = intent variant = DBE 0.40mm [values] -speed_infill = =speed_print -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 * 2 -infill_sparse_density = 15 infill_line_width = =line_width +infill_sparse_density = 15 jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall line_width = =machine_nozzle_size -wall_line_width_x = =line_width \ No newline at end of file +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_line_width_x = =line_width +wall_thickness = =line_width * 2 + 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 7bc35f2ddd..0e014c6e04 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Quick definition = deltacomb_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D030 intent_category = quick material = generic_pla +quality_type = D030 +setting_version = 22 +type = intent variant = DBE 0.40mm [values] -speed_infill = =speed_print -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 * 2 -infill_sparse_density = 15 infill_line_width = =line_width +infill_sparse_density = 15 jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall line_width = =machine_nozzle_size -wall_line_width_x = =line_width \ No newline at end of file +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_line_width_x = =line_width +wall_thickness = =line_width * 2 + 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 f671829c2b..94df4366f9 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = deltacomb_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D010 intent_category = engineering material = generic_pla +quality_type = D010 +setting_version = 22 +type = intent variant = FBE 0.40mm [values] jerk_wall = 5 jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -wall_thickness = =line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset + 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 ac306939ff..54bdb53002 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = deltacomb_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D015 intent_category = engineering material = generic_pla +quality_type = D015 +setting_version = 22 +type = intent variant = FBE 0.40mm [values] jerk_wall = 5 jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -wall_thickness = =line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset + 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 e7509106b6..c163d8f630 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = deltacomb_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D020 intent_category = engineering material = generic_pla +quality_type = D020 +setting_version = 22 +type = intent variant = FBE 0.40mm [values] jerk_wall = 5 jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -wall_thickness = =line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file +xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset + 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 b5fc8601fc..31f6a9a62d 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Quick definition = deltacomb_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D020 intent_category = quick material = generic_pla +quality_type = D020 +setting_version = 22 +type = intent variant = FBE 0.40mm [values] -speed_infill = =speed_print -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 * 2 -infill_sparse_density = 15 infill_line_width = =line_width +infill_sparse_density = 15 jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall line_width = =machine_nozzle_size -wall_line_width_x = =line_width \ No newline at end of file +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_line_width_x = =line_width +wall_thickness = =line_width * 2 + 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 054ce9211c..4cc2f49777 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Quick definition = deltacomb_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = D030 intent_category = quick material = generic_pla +quality_type = D030 +setting_version = 22 +type = intent variant = FBE 0.40mm [values] -speed_infill = =speed_print -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 * 2 -infill_sparse_density = 15 infill_line_width = =line_width +infill_sparse_density = 15 jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall line_width = =machine_nozzle_size -wall_line_width_x = =line_width \ No newline at end of file +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_line_width_x = =line_width +wall_thickness = =line_width * 2 + 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 7071bfd411..402359dd84 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 @@ -1,33 +1,34 @@ [general] -version = 4 -name = Quick definition = liquid +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = draft material = generic_abs +quality_type = draft +setting_version = 22 +type = intent variant = VO 0.4 [values] -speed_infill = =speed_print -speed_topbottom = =speed_print -speed_wall = =speed_print -speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall -speed_layer_0 = 20 -top_bottom_thickness = =wall_thickness -wall_thickness = =line_width * 2 -infill_sparse_density = 15 infill_line_width = =line_width -jerk_print = 10 +infill_sparse_density = 15 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 10 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 line_width = =machine_nozzle_size +speed_infill = =speed_print +speed_layer_0 = 20 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness wall_line_width_x = =line_width +wall_thickness = =line_width * 2 + 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 f220639229..3f334fdf2d 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 @@ -1,29 +1,29 @@ [general] -version = 4 -name = Accurate definition = liquid +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = fast material = generic_abs +quality_type = fast +setting_version = 22 +type = intent variant = VO 0.4 [values] infill_line_width = =line_width -jerk_print = 10 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 10 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 line_width = =machine_nozzle_size -speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 30 speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall @@ -32,3 +32,4 @@ top_bottom_thickness = =wall_thickness wall_line_width_x = =line_width wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 + 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 b69b21b6e4..8c8a23e85e 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Visual definition = liquid +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = fast intent_category = visual material = generic_abs +quality_type = fast +setting_version = 22 +type = intent variant = VO 0.4 [values] speed_infill = 50 -wall_thickness = =wall_line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =wall_line_width * 3 + 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 c28ab907f2..9405c8b295 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Visual definition = liquid +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = high intent_category = visual material = generic_abs +quality_type = high +setting_version = 22 +type = intent variant = VO 0.4 [values] speed_infill = 50 -wall_thickness = =wall_line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =wall_line_width * 3 + 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 ca21d34368..c23a110e09 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 @@ -1,29 +1,29 @@ [general] -version = 4 -name = Accurate definition = liquid +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = normal material = generic_abs +quality_type = normal +setting_version = 22 +type = intent variant = VO 0.4 [values] infill_line_width = =line_width -jerk_print = 10 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 10 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 line_width = =machine_nozzle_size -speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 30 speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall @@ -32,3 +32,4 @@ top_bottom_thickness = =wall_thickness wall_line_width_x = =line_width wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 + 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 241a31f2ef..61db293004 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Visual definition = liquid +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = normal intent_category = visual material = generic_abs +quality_type = normal +setting_version = 22 +type = intent variant = VO 0.4 [values] speed_infill = 50 -wall_thickness = =wall_line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =wall_line_width * 3 + 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 69fa6da2c4..5c8d8dcab5 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 @@ -1,29 +1,29 @@ [general] -version = 4 -name = Accurate definition = liquid +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = fast material = generic_cpe +quality_type = fast +setting_version = 22 +type = intent variant = VO 0.4 [values] infill_line_width = =line_width -jerk_print = 10 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 10 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 line_width = =machine_nozzle_size -speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 30 speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall 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 e38c8119d7..7e957a6401 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 @@ -1,29 +1,29 @@ [general] -version = 4 -name = Accurate definition = liquid +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = normal material = generic_cpe +quality_type = normal +setting_version = 22 +type = intent variant = VO 0.4 [values] infill_line_width = =line_width -jerk_print = 10 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 10 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 line_width = =machine_nozzle_size -speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 30 speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall 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 0562865621..58b46b6a59 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 @@ -1,29 +1,29 @@ [general] -version = 4 -name = Accurate definition = liquid +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = fast material = generic_nylon +quality_type = fast +setting_version = 22 +type = intent variant = VO 0.4 [values] infill_line_width = =line_width -jerk_print = 10 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 10 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 line_width = =machine_nozzle_size -speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 30 speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall 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 db469a979d..236f1dee61 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 @@ -1,29 +1,29 @@ [general] -version = 4 -name = Accurate definition = liquid +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = normal material = generic_nylon +quality_type = normal +setting_version = 22 +type = intent variant = VO 0.4 [values] infill_line_width = =line_width -jerk_print = 10 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 10 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 line_width = =machine_nozzle_size -speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 30 speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall 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 54a2db84af..0b3060b0ac 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 @@ -1,29 +1,29 @@ [general] -version = 4 -name = Accurate definition = liquid +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = fast material = generic_pc +quality_type = fast +setting_version = 22 +type = intent variant = VO 0.4 [values] infill_line_width = =line_width -jerk_print = 10 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 10 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 line_width = =machine_nozzle_size -speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 30 speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall 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 f9c7ea533e..13ac4647ff 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 @@ -1,29 +1,29 @@ [general] -version = 4 -name = Accurate definition = liquid +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = normal material = generic_pc +quality_type = normal +setting_version = 22 +type = intent variant = VO 0.4 [values] infill_line_width = =line_width -jerk_print = 10 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 10 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 line_width = =machine_nozzle_size -speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 30 speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall 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 c88d77adc2..6a19492587 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 @@ -1,33 +1,34 @@ [general] -version = 4 -name = Quick definition = liquid +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = draft material = generic_petg +quality_type = draft +setting_version = 22 +type = intent variant = VO 0.4 [values] -speed_infill = =speed_print -speed_topbottom = =speed_print -speed_wall = =speed_print -speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall -speed_layer_0 = 20 -top_bottom_thickness = =wall_thickness -wall_thickness = =line_width * 2 -infill_sparse_density = 15 infill_line_width = =line_width -jerk_print = 15 +infill_sparse_density = 15 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 15 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 line_width = =machine_nozzle_size +speed_infill = =speed_print +speed_layer_0 = 20 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness wall_line_width_x = =line_width +wall_thickness = =line_width * 2 + 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 1c7dae2d6c..0aaf41e0be 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 @@ -1,29 +1,29 @@ [general] -version = 4 -name = Accurate definition = liquid +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = fast material = generic_petg +quality_type = fast +setting_version = 22 +type = intent variant = VO 0.4 [values] infill_line_width = =line_width -jerk_print = 15 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 15 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 line_width = =machine_nozzle_size -speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 30 speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall @@ -32,3 +32,4 @@ top_bottom_thickness = =wall_thickness wall_line_width_x = =line_width wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 + 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 c8b476a0a3..481634d7ba 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Visual definition = liquid +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = fast intent_category = visual material = generic_petg +quality_type = fast +setting_version = 22 +type = intent variant = VO 0.4 [values] speed_infill = 50 -wall_thickness = =wall_line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =wall_line_width * 3 + 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 31c6deddaf..2e418c390f 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Visual definition = liquid +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = high intent_category = visual material = generic_petg +quality_type = high +setting_version = 22 +type = intent variant = VO 0.4 [values] speed_infill = 50 -wall_thickness = =wall_line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =wall_line_width * 3 + 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 2fd49160a1..068d775fc4 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 @@ -1,29 +1,29 @@ [general] -version = 4 -name = Accurate definition = liquid +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = normal material = generic_petg +quality_type = normal +setting_version = 22 +type = intent variant = VO 0.4 [values] infill_line_width = =line_width -jerk_print = 15 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 15 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 line_width = =machine_nozzle_size -speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 30 speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall @@ -32,3 +32,4 @@ top_bottom_thickness = =wall_thickness wall_line_width_x = =line_width wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 + 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 a0465c8d05..9f91179da0 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Visual definition = liquid +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = normal intent_category = visual material = generic_petg +quality_type = normal +setting_version = 22 +type = intent variant = VO 0.4 [values] speed_infill = 50 -wall_thickness = =wall_line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =wall_line_width * 3 + 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 15139c3832..1773ad0189 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 @@ -1,33 +1,34 @@ [general] -version = 4 -name = Quick definition = liquid +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = intent variant = VO 0.4 [values] -speed_infill = =speed_print -speed_topbottom = =speed_print -speed_wall = =speed_print -speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall -speed_layer_0 = 20 -top_bottom_thickness = =wall_thickness -wall_thickness = =line_width * 2 -infill_sparse_density = 15 infill_line_width = =line_width -jerk_print = 15 +infill_sparse_density = 15 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 15 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 line_width = =machine_nozzle_size +speed_infill = =speed_print +speed_layer_0 = 20 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness wall_line_width_x = =line_width +wall_thickness = =line_width * 2 + 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 b782010c52..ee4a315c20 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 @@ -1,29 +1,29 @@ [general] -version = 4 -name = Accurate definition = liquid +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = fast material = generic_pla +quality_type = fast +setting_version = 22 +type = intent variant = VO 0.4 [values] infill_line_width = =line_width -jerk_print = 15 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 15 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 line_width = =machine_nozzle_size -speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 30 speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall @@ -32,3 +32,4 @@ top_bottom_thickness = =wall_thickness wall_line_width_x = =line_width wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 + 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 5c2a41924a..dfe92c8089 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Visual definition = liquid +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = fast intent_category = visual material = generic_pla +quality_type = fast +setting_version = 22 +type = intent variant = VO 0.4 [values] speed_infill = 50 -wall_thickness = =wall_line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =wall_line_width * 3 + 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 9168accf94..ead3f9f64d 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Visual definition = liquid +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = high intent_category = visual material = generic_pla +quality_type = high +setting_version = 22 +type = intent variant = VO 0.4 [values] speed_infill = 50 -wall_thickness = =wall_line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =wall_line_width * 3 + 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 110fa95a18..7455753997 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 @@ -1,29 +1,29 @@ [general] -version = 4 -name = Accurate definition = liquid +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = normal material = generic_pla +quality_type = normal +setting_version = 22 +type = intent variant = VO 0.4 [values] infill_line_width = =line_width -jerk_print = 15 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 15 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 line_width = =machine_nozzle_size -speed_print = 30 speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 30 speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall @@ -32,3 +32,4 @@ top_bottom_thickness = =wall_thickness wall_line_width_x = =line_width wall_thickness = =line_width * 3 xy_offset = =-layer_height * 0.2 + 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 af184eff8a..b5789fe9e9 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Visual definition = liquid +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = normal intent_category = visual material = generic_pla +quality_type = normal +setting_version = 22 +type = intent variant = VO 0.4 [values] speed_infill = 50 -wall_thickness = =wall_line_width * 3 top_bottom_thickness = =wall_thickness +wall_thickness = =wall_line_width * 3 + diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Fast_Print_Accurate.inst.cfg deleted file mode 100644 index ed17a36b8a..0000000000 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Fast_Print_Accurate.inst.cfg +++ /dev/null @@ -1,33 +0,0 @@ -[general] -version = 4 -name = Accurate -definition = ultimaker_s3 - -[metadata] -setting_version = 20 -type = intent -intent_category = engineering -quality_type = fast -material = generic_abs -variant = AA 0.4 - -[values] - -jerk_print = 30 -jerk_infill = =jerk_print -jerk_topbottom = =jerk_print -jerk_wall = =jerk_print -jerk_wall_0 = =jerk_wall -jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 - -speed_print = 30 -speed_infill = =speed_print -speed_layer_0 = 20 -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_aa0.4_ABS_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Normal_Quality_Accurate.inst.cfg deleted file mode 100644 index 4ec7a841a5..0000000000 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Normal_Quality_Accurate.inst.cfg +++ /dev/null @@ -1,33 +0,0 @@ -[general] -version = 4 -name = Accurate -definition = ultimaker_s3 - -[metadata] -setting_version = 20 -type = intent -intent_category = engineering -quality_type = normal -material = generic_abs -variant = AA 0.4 - -[values] - -jerk_print = 30 -jerk_infill = =jerk_print -jerk_topbottom = =jerk_print -jerk_wall = =jerk_print -jerk_wall_0 = =jerk_wall -jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 - -speed_print = 30 -speed_infill = =speed_print -speed_layer_0 = 20 -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_aa0.4_CPE_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_CPE_Fast_Print_Accurate.inst.cfg deleted file mode 100644 index de109c9810..0000000000 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_CPE_Fast_Print_Accurate.inst.cfg +++ /dev/null @@ -1,34 +0,0 @@ -[general] -version = 4 -name = Accurate -definition = ultimaker_s3 - -[metadata] -setting_version = 20 -type = intent -intent_category = engineering -quality_type = fast -material = generic_cpe -variant = AA 0.4 - -[values] - -jerk_print = 30 -jerk_infill = =jerk_print -jerk_topbottom = =jerk_print -jerk_wall = =jerk_print -jerk_wall_0 = =jerk_wall -jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 - -speed_print = 30 -speed_infill = =speed_print -speed_layer_0 = 20 -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_aa0.4_PLA_Draft_Print_Quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Draft_Print_Quick.inst.cfg deleted file mode 100644 index 3186c6be4e..0000000000 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Draft_Print_Quick.inst.cfg +++ /dev/null @@ -1,32 +0,0 @@ -[general] -version = 4 -name = Quick -definition = ultimaker_s3 - -[metadata] -setting_version = 20 -type = intent -intent_category = quick -quality_type = draft -material = generic_pla -variant = AA 0.4 - -[values] -speed_infill = =speed_print -speed_topbottom = =speed_print -speed_wall = =speed_print -speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall -speed_layer_0 = 20 -top_bottom_thickness = 0.8 -infill_sparse_density = 15 - -jerk_print = 30 -jerk_infill = =jerk_print -jerk_topbottom = =jerk_print -jerk_wall = =jerk_print -jerk_wall_0 = =jerk_wall -jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 - - diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Draft_Print_Quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Draft_Print_Quick.inst.cfg deleted file mode 100644 index 1ca1775990..0000000000 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Draft_Print_Quick.inst.cfg +++ /dev/null @@ -1,32 +0,0 @@ -[general] -version = 4 -name = Quick -definition = ultimaker_s3 - -[metadata] -setting_version = 20 -type = intent -intent_category = quick -quality_type = draft -material = generic_tough_pla -variant = AA 0.4 - -[values] -speed_infill = =speed_print -speed_topbottom = =speed_print -speed_wall = =speed_print -speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall -speed_layer_0 = 20 -top_bottom_thickness = 0.8 -infill_sparse_density = 15 - -jerk_print = 30 -jerk_infill = =jerk_print -jerk_topbottom = =jerk_print -jerk_wall = =jerk_print -jerk_wall_0 = =jerk_wall -jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 - - diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_High_Visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_High_Visual.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg index 3874bc0cce..850ab8b213 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_High_Visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Visual definition = ultimaker_s3 +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = high intent_category = visual material = generic_abs +quality_type = high +setting_version = 22 +type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 + 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 new file mode 100644 index 0000000000..c1ade2391e --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s3 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_abs +quality_type = fast +setting_version = 22 +type = intent +variant = AA 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_aa0.4_ABS_Fast_Visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Fast_Visual.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg index 694f4f1591..95644621ad 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Fast_Visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Visual definition = ultimaker_s3 +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = fast intent_category = visual material = generic_abs +quality_type = fast +setting_version = 22 +type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 + 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 new file mode 100644 index 0000000000..c9e5804306 --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s3 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_abs +quality_type = normal +setting_version = 22 +type = intent +variant = AA 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_aa0.4_ABS_Normal_Visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Normal_Visual.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg index bf3dcdc208..57df5208d6 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Normal_Visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Visual definition = ultimaker_s3 +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = normal intent_category = visual material = generic_abs +quality_type = normal +setting_version = 22 +type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 + diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Draft_Print_Quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg similarity index 90% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Draft_Print_Quick.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg index f2095ba055..c50a4c6331 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_ABS_Draft_Print_Quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg @@ -1,27 +1,23 @@ [general] -version = 4 -name = Quick definition = ultimaker_s3 +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = draft material = generic_abs +quality_type = draft +setting_version = 22 +type = intent variant = AA 0.4 [values] +infill_sparse_density = 15 +jerk_print = 30 speed_infill = =speed_print speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall -speed_layer_0 = 20 top_bottom_thickness = 0.8 -infill_sparse_density = 15 - -jerk_print = 30 - - diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_CPEP_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_CPEP_Fast_Print_Accurate.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg index b74cd522ac..4e53829056 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_CPEP_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg @@ -1,28 +1,24 @@ [general] -version = 4 -name = Accurate definition = ultimaker_s3 +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = fast material = generic_cpe_plus +quality_type = fast +setting_version = 22 +type = intent variant = AA 0.4 [values] - jerk_print = 30 - -speed_print = 30 speed_infill = =speed_print -speed_layer_0 = 20 +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_aa0.4_CPEP_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_CPEP_Normal_Quality_Accurate.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg index 1caacdf72f..9513f56dfe 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_CPEP_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg @@ -1,28 +1,24 @@ [general] -version = 4 -name = Accurate definition = ultimaker_s3 +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = normal material = generic_cpe_plus +quality_type = normal +setting_version = 22 +type = intent variant = AA 0.4 [values] - jerk_print = 30 - -speed_print = 30 speed_infill = =speed_print -speed_layer_0 = 20 +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_aa0.4_cpe_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg new file mode 100644 index 0000000000..66196a4215 --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s3 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_cpe +quality_type = fast +setting_version = 22 +type = intent +variant = AA 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_aa0.4_CPE_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_CPE_Normal_Quality_Accurate.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg index 315b26a3b1..295e4681f5 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_CPE_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg @@ -1,28 +1,24 @@ [general] -version = 4 -name = Accurate definition = ultimaker_s3 +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = normal material = generic_cpe +quality_type = normal +setting_version = 22 +type = intent variant = AA 0.4 [values] - jerk_print = 30 - -speed_print = 30 speed_infill = =speed_print -speed_layer_0 = 20 +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_aa0.4_Nylon_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_Nylon_Fast_Print_Accurate.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg index d4a999d8eb..5c95a8bb6b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_Nylon_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg @@ -1,28 +1,24 @@ [general] -version = 4 -name = Accurate definition = ultimaker_s3 +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = fast material = generic_nylon +quality_type = fast +setting_version = 22 +type = intent variant = AA 0.4 [values] - jerk_print = 30 - -speed_print = 30 speed_infill = =speed_print -speed_layer_0 = 20 +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_aa0.4_Nylon_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_Nylon_Normal_Quality_Accurate.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg index aa371be6f3..0143426335 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_Nylon_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg @@ -1,28 +1,24 @@ [general] -version = 4 -name = Accurate definition = ultimaker_s3 +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = normal material = generic_nylon +quality_type = normal +setting_version = 22 +type = intent variant = AA 0.4 [values] - jerk_print = 30 - -speed_print = 30 speed_infill = =speed_print -speed_layer_0 = 20 +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_aa0.4_PC_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg similarity index 90% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_PC_Fast_Print_Accurate.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg index abd125f483..5deb69e5ab 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_PC_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg @@ -1,28 +1,24 @@ [general] -version = 4 -name = Accurate definition = ultimaker_s3 +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = fast material = generic_pc +quality_type = fast +setting_version = 22 +type = intent variant = AA 0.4 [values] - jerk_print = 30 - -speed_print = 30 speed_infill = =speed_print -speed_layer_0 = 20 +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_aa0.4_PC_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_PC_Normal_Quality_Accurate.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg index c8cf2a3bd4..8c1a60b5b4 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_PC_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg @@ -1,28 +1,24 @@ [general] -version = 4 -name = Accurate definition = ultimaker_s3 +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = normal material = generic_pc +quality_type = normal +setting_version = 22 +type = intent variant = AA 0.4 [values] - jerk_print = 30 - -speed_print = 30 speed_infill = =speed_print -speed_layer_0 = 20 +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_aa0.4_PETG_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_PETG_Fast_Print_Accurate.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg index b4bbdddff7..50011a3188 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_PETG_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg @@ -1,28 +1,24 @@ [general] -version = 4 -name = Accurate definition = ultimaker_s3 +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = fast material = generic_petg +quality_type = fast +setting_version = 22 +type = intent variant = AA 0.4 [values] - jerk_print = 30 - -speed_print = 30 speed_infill = =speed_print -speed_layer_0 = 20 +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_aa0.4_PETG_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_PETG_Normal_Quality_Accurate.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg index 19418812af..8e1cbd003b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_PETG_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg @@ -1,28 +1,24 @@ [general] -version = 4 -name = Accurate definition = ultimaker_s3 +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = normal material = generic_petg +quality_type = normal +setting_version = 22 +type = intent variant = AA 0.4 [values] - jerk_print = 30 - -speed_print = 30 speed_infill = =speed_print -speed_layer_0 = 20 +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_aa0.4_PLA_High_Visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_High_Visual.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg index 64a25cd046..f3cd83f0fb 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_High_Visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Visual definition = ultimaker_s3 +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = high intent_category = visual material = generic_pla +quality_type = high +setting_version = 22 +type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 + diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Fast_Print_Accurate.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg index 36ea7c975e..853db370a7 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -1,27 +1,24 @@ [general] -version = 4 -name = Accurate definition = ultimaker_s3 +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = fast material = generic_pla +quality_type = fast +setting_version = 22 +type = intent variant = AA 0.4 [values] - jerk_print = 30 - -speed_print = 30 speed_infill = =speed_print -speed_layer_0 = 20 +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_aa0.4_PLA_Fast_Visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Fast_Visual.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg index 2c9b008765..6f3a0aa8d9 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Fast_Visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Visual definition = ultimaker_s3 +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = fast intent_category = visual material = generic_pla +quality_type = fast +setting_version = 22 +type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 + diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Normal_Quality_Accurate.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg index 88691ef1d6..ed0c770c33 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -1,27 +1,24 @@ [general] -version = 4 -name = Accurate definition = ultimaker_s3 +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = normal material = generic_pla +quality_type = normal +setting_version = 22 +type = intent variant = AA 0.4 [values] - jerk_print = 30 - -speed_print = 30 speed_infill = =speed_print -speed_layer_0 = 20 +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_aa0.4_PLA_Normal_Visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Normal_Visual.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg index 5b9177f803..3aec759ed8 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_Normal_Visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Visual definition = ultimaker_s3 +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = normal intent_category = visual material = generic_pla +quality_type = normal +setting_version = 22 +type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 + 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 new file mode 100644 index 0000000000..7db781a22e --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = ultimaker_s3 +name = Quick +version = 4 + +[metadata] +intent_category = quick +material = generic_pla +quality_type = draft +setting_version = 22 +type = intent +variant = AA 0.4 + +[values] +infill_sparse_density = 15 +jerk_print = 30 +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = 0.8 + diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_VeryDraft_Print_Quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg similarity index 87% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_VeryDraft_Print_Quick.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg index b59ed875b4..f5bcf98ba2 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_PLA_VeryDraft_Print_Quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg @@ -1,32 +1,28 @@ [general] -version = 4 -name = Quick definition = ultimaker_s3 +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = verydraft -material = generic_pla -variant = AA 0.4 is_experimental = True +material = generic_pla +quality_type = verydraft +setting_version = 22 +type = intent +variant = AA 0.4 [values] -infill_sparse_density = 10 - -jerk_print = 30 - acceleration_print = 4000 acceleration_wall = 2000 acceleration_wall_0 = 2000 - -speed_print = 50 +infill_sparse_density = 10 +jerk_print = 30 speed_infill = =speed_print +speed_print = 50 speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall -speed_layer_0 = 20 +top_bottom_thickness = 0.8 -top_bottom_thickness = 0.8 \ No newline at end of file diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_High_Visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_High_Visual.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg index 05b6b33857..ce4c717c54 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_High_Visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Visual definition = ultimaker_s3 +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = high intent_category = visual material = generic_tough_pla +quality_type = high +setting_version = 22 +type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 + diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Fast_Print_Accurate.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg index 924edf577d..01d2128f62 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg @@ -1,27 +1,24 @@ [general] -version = 4 -name = Accurate definition = ultimaker_s3 +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = fast material = generic_tough_pla +quality_type = fast +setting_version = 22 +type = intent variant = AA 0.4 [values] - jerk_print = 30 - -speed_print = 30 speed_infill = =speed_print -speed_layer_0 = 20 +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_aa0.4_TPLA_Fast_Visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Fast_Visual.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg index d9c514676d..83f9024c20 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Fast_Visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Visual definition = ultimaker_s3 +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = fast intent_category = visual material = generic_tough_pla +quality_type = fast +setting_version = 22 +type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 + diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Normal_Quality_Accurate.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg index b92e07a877..ead230ea21 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg @@ -1,27 +1,24 @@ [general] -version = 4 -name = Accurate definition = ultimaker_s3 +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = normal material = generic_tough_pla +quality_type = normal +setting_version = 22 +type = intent variant = AA 0.4 [values] - jerk_print = 30 - -speed_print = 30 speed_infill = =speed_print -speed_layer_0 = 20 +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_aa0.4_TPLA_Normal_Visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Normal_Visual.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg index a7e1e2f83e..bad763a0ae 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_Normal_Visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Visual definition = ultimaker_s3 +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = normal intent_category = visual material = generic_tough_pla +quality_type = normal +setting_version = 22 +type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 + 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 new file mode 100644 index 0000000000..7ce3655a1f --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = ultimaker_s3 +name = Quick +version = 4 + +[metadata] +intent_category = quick +material = generic_tough_pla +quality_type = draft +setting_version = 22 +type = intent +variant = AA 0.4 + +[values] +infill_sparse_density = 15 +jerk_print = 30 +speed_infill = =speed_print +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = 0.8 + diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_VeryDraft_Print_Quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg similarity index 69% rename from resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_VeryDraft_Print_Quick.inst.cfg rename to resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg index 21cd1059f0..e359e6d1ab 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_TPLA_VeryDraft_Print_Quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg @@ -1,38 +1,28 @@ [general] -version = 4 -name = Quick definition = ultimaker_s3 +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = verydraft -material = generic_tough_pla -variant = AA 0.4 is_experimental = True +material = generic_tough_pla +quality_type = verydraft +setting_version = 22 +type = intent +variant = AA 0.4 [values] -infill_sparse_density = 10 - -jerk_print = 30 -jerk_infill = =jerk_print -jerk_topbottom = =jerk_print -jerk_wall = =jerk_print -jerk_wall_0 = =jerk_wall -jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 - acceleration_print = 4000 acceleration_wall = 2000 acceleration_wall_0 = 2000 - -speed_print = 50 +infill_sparse_density = 10 +jerk_print = 30 speed_infill = =speed_print +speed_print = 50 speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall -speed_layer_0 = 20 +top_bottom_thickness = 0.8 -top_bottom_thickness = 0.8 \ No newline at end of file diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Fast_Print_Accurate.inst.cfg deleted file mode 100644 index 8939d670b1..0000000000 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Fast_Print_Accurate.inst.cfg +++ /dev/null @@ -1,28 +0,0 @@ -[general] -version = 4 -name = Accurate -definition = ultimaker_s5 - -[metadata] -setting_version = 20 -type = intent -intent_category = engineering -quality_type = fast -material = generic_abs -variant = AA 0.4 - -[values] - -jerk_print = 30 - -speed_print = 30 -speed_infill = =speed_print -speed_layer_0 = 20 -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 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Normal_Quality_Accurate.inst.cfg deleted file mode 100644 index 44f76d561f..0000000000 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Normal_Quality_Accurate.inst.cfg +++ /dev/null @@ -1,28 +0,0 @@ -[general] -version = 4 -name = Accurate -definition = ultimaker_s5 - -[metadata] -setting_version = 20 -type = intent -intent_category = engineering -quality_type = normal -material = generic_abs -variant = AA 0.4 - -[values] - -jerk_print = 30 - -speed_print = 30 -speed_infill = =speed_print -speed_layer_0 = 20 -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 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_CPEP_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_CPEP_Fast_Print_Accurate.inst.cfg deleted file mode 100644 index 7bf1fc834a..0000000000 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_CPEP_Fast_Print_Accurate.inst.cfg +++ /dev/null @@ -1,29 +0,0 @@ -[general] -version = 4 -name = Accurate -definition = ultimaker_s5 - -[metadata] -setting_version = 20 -type = intent -intent_category = engineering -quality_type = fast -material = generic_cpe_plus -variant = AA 0.4 - -[values] - -jerk_print = 30 - -speed_print = 30 -speed_infill = =speed_print -speed_layer_0 = 20 -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 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset - diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_CPEP_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_CPEP_Normal_Quality_Accurate.inst.cfg deleted file mode 100644 index a95862c35a..0000000000 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_CPEP_Normal_Quality_Accurate.inst.cfg +++ /dev/null @@ -1,29 +0,0 @@ -[general] -version = 4 -name = Accurate -definition = ultimaker_s5 - -[metadata] -setting_version = 20 -type = intent -intent_category = engineering -quality_type = normal -material = generic_cpe_plus -variant = AA 0.4 - -[values] - -jerk_print = 30 - -speed_print = 30 -speed_infill = =speed_print -speed_layer_0 = 20 -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 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset - diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_CPE_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_CPE_Fast_Print_Accurate.inst.cfg deleted file mode 100644 index bfdd35017c..0000000000 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_CPE_Fast_Print_Accurate.inst.cfg +++ /dev/null @@ -1,29 +0,0 @@ -[general] -version = 4 -name = Accurate -definition = ultimaker_s5 - -[metadata] -setting_version = 20 -type = intent -intent_category = engineering -quality_type = fast -material = generic_cpe -variant = AA 0.4 - -[values] - -jerk_print = 30 - -speed_print = 30 -speed_infill = =speed_print -speed_layer_0 = 20 -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 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset - diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_CPE_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_CPE_Normal_Quality_Accurate.inst.cfg deleted file mode 100644 index 022fb2b50d..0000000000 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_CPE_Normal_Quality_Accurate.inst.cfg +++ /dev/null @@ -1,29 +0,0 @@ -[general] -version = 4 -name = Accurate -definition = ultimaker_s5 - -[metadata] -setting_version = 20 -type = intent -intent_category = engineering -quality_type = normal -material = generic_cpe -variant = AA 0.4 - -[values] - -jerk_print = 30 - -speed_print = 30 -speed_infill = =speed_print -speed_layer_0 = 20 -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 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset - diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_Nylon_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_Nylon_Fast_Print_Accurate.inst.cfg deleted file mode 100644 index 3637040c4c..0000000000 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_Nylon_Fast_Print_Accurate.inst.cfg +++ /dev/null @@ -1,29 +0,0 @@ -[general] -version = 4 -name = Accurate -definition = ultimaker_s5 - -[metadata] -setting_version = 20 -type = intent -intent_category = engineering -quality_type = fast -material = generic_nylon -variant = AA 0.4 - -[values] - -jerk_print = 30 - -speed_print = 30 -speed_infill = =speed_print -speed_layer_0 = 20 -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 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset - diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_Nylon_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_Nylon_Normal_Quality_Accurate.inst.cfg deleted file mode 100644 index 6cce98ca60..0000000000 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_Nylon_Normal_Quality_Accurate.inst.cfg +++ /dev/null @@ -1,29 +0,0 @@ -[general] -version = 4 -name = Accurate -definition = ultimaker_s5 - -[metadata] -setting_version = 20 -type = intent -intent_category = engineering -quality_type = normal -material = generic_nylon -variant = AA 0.4 - -[values] - -jerk_print = 30 - -speed_print = 30 -speed_infill = =speed_print -speed_layer_0 = 20 -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 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset - diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_PC_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_PC_Fast_Print_Accurate.inst.cfg deleted file mode 100644 index 32e0463447..0000000000 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_PC_Fast_Print_Accurate.inst.cfg +++ /dev/null @@ -1,29 +0,0 @@ -[general] -version = 4 -name = Accurate -definition = ultimaker_s5 - -[metadata] -setting_version = 20 -type = intent -intent_category = engineering -quality_type = fast -material = generic_pc -variant = AA 0.4 - -[values] - -jerk_print = 30 - -speed_print = 30 -speed_infill = =speed_print -speed_layer_0 = 20 -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 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset - diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_PC_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_PC_Normal_Quality_Accurate.inst.cfg deleted file mode 100644 index 0b7ffb4154..0000000000 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_PC_Normal_Quality_Accurate.inst.cfg +++ /dev/null @@ -1,29 +0,0 @@ -[general] -version = 4 -name = Accurate -definition = ultimaker_s5 - -[metadata] -setting_version = 20 -type = intent -intent_category = engineering -quality_type = normal -material = generic_pc -variant = AA 0.4 - -[values] - -jerk_print = 30 - -speed_print = 30 -speed_infill = =speed_print -speed_layer_0 = 20 -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 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset - diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_PETG_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_PETG_Fast_Print_Accurate.inst.cfg deleted file mode 100644 index 186281c17c..0000000000 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_PETG_Fast_Print_Accurate.inst.cfg +++ /dev/null @@ -1,29 +0,0 @@ -[general] -version = 4 -name = Accurate -definition = ultimaker_s5 - -[metadata] -setting_version = 20 -type = intent -intent_category = engineering -quality_type = fast -material = generic_petg -variant = AA 0.4 - -[values] - -jerk_print = 30 - -speed_print = 30 -speed_infill = =speed_print -speed_layer_0 = 20 -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 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset - diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_PETG_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_PETG_Normal_Quality_Accurate.inst.cfg deleted file mode 100644 index 545a8b5654..0000000000 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_PETG_Normal_Quality_Accurate.inst.cfg +++ /dev/null @@ -1,29 +0,0 @@ -[general] -version = 4 -name = Accurate -definition = ultimaker_s5 - -[metadata] -setting_version = 20 -type = intent -intent_category = engineering -quality_type = normal -material = generic_petg -variant = AA 0.4 - -[values] - -jerk_print = 30 - -speed_print = 30 -speed_infill = =speed_print -speed_layer_0 = 20 -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 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset - diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Fast_Print_Accurate.inst.cfg deleted file mode 100644 index ca098b5bfa..0000000000 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Fast_Print_Accurate.inst.cfg +++ /dev/null @@ -1,28 +0,0 @@ -[general] -version = 4 -name = Accurate -definition = ultimaker_s5 - -[metadata] -setting_version = 20 -type = intent -intent_category = engineering -quality_type = fast -material = generic_pla -variant = AA 0.4 - -[values] - -jerk_print = 30 - -speed_print = 30 -speed_infill = =speed_print -speed_layer_0 = 20 -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 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Normal_Quality_Accurate.inst.cfg deleted file mode 100644 index 472c0b4359..0000000000 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Normal_Quality_Accurate.inst.cfg +++ /dev/null @@ -1,28 +0,0 @@ -[general] -version = 4 -name = Accurate -definition = ultimaker_s5 - -[metadata] -setting_version = 20 -type = intent -intent_category = engineering -quality_type = normal -material = generic_pla -variant = AA 0.4 - -[values] - -jerk_print = 30 - -speed_print = 30 -speed_infill = =speed_print -speed_layer_0 = 20 -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 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Fast_Print_Accurate.inst.cfg deleted file mode 100644 index 2b1b769595..0000000000 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Fast_Print_Accurate.inst.cfg +++ /dev/null @@ -1,28 +0,0 @@ -[general] -version = 4 -name = Accurate -definition = ultimaker_s5 - -[metadata] -setting_version = 20 -type = intent -intent_category = engineering -quality_type = fast -material = generic_tough_pla -variant = AA 0.4 - -[values] - -jerk_print = 30 - -speed_print = 30 -speed_infill = =speed_print -speed_layer_0 = 20 -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 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Normal_Quality_Accurate.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Normal_Quality_Accurate.inst.cfg deleted file mode 100644 index daa327a2f5..0000000000 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Normal_Quality_Accurate.inst.cfg +++ /dev/null @@ -1,28 +0,0 @@ -[general] -version = 4 -name = Accurate -definition = ultimaker_s5 - -[metadata] -setting_version = 20 -type = intent -intent_category = engineering -quality_type = normal -material = generic_tough_pla -variant = AA 0.4 - -[values] - -jerk_print = 30 - -speed_print = 30 -speed_infill = =speed_print -speed_layer_0 = 20 -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 -xy_offset_layer_0 = =((-0.2 + layer_height * 0.2) if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_High_Visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_High_Visual.inst.cfg rename to resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg index 4d7510de6d..01af38e710 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_High_Visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Visual definition = ultimaker_s5 +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = high intent_category = visual material = generic_abs +quality_type = high +setting_version = 22 +type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 + 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 new file mode 100644 index 0000000000..015f9de741 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_abs +quality_type = fast +setting_version = 22 +type = intent +variant = AA 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_aa0.4_ABS_Fast_Visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Fast_Visual.inst.cfg rename to resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg index e6d8d67c8b..767644af8f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Fast_Visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Visual definition = ultimaker_s5 +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = fast intent_category = visual material = generic_abs +quality_type = fast +setting_version = 22 +type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 + 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 new file mode 100644 index 0000000000..8912a439f5 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_abs +quality_type = normal +setting_version = 22 +type = intent +variant = AA 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_aa0.4_ABS_Normal_Visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Normal_Visual.inst.cfg rename to resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg index a0778dcb25..9fbe2d656b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Normal_Visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Visual definition = ultimaker_s5 +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = normal intent_category = visual material = generic_abs +quality_type = normal +setting_version = 22 +type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 + diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Draft_Print_Quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg similarity index 90% rename from resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Draft_Print_Quick.inst.cfg rename to resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg index 98ad3af40b..a06a805684 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_ABS_Draft_Print_Quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg @@ -1,27 +1,23 @@ [general] -version = 4 -name = Quick definition = ultimaker_s5 +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = draft material = generic_abs +quality_type = draft +setting_version = 22 +type = intent variant = AA 0.4 [values] +infill_sparse_density = 15 +jerk_print = 30 speed_infill = =speed_print speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall -speed_layer_0 = 20 top_bottom_thickness = 0.8 -infill_sparse_density = 15 - -jerk_print = 30 - - 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 new file mode 100644 index 0000000000..6310212dad --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_cpe_plus +quality_type = fast +setting_version = 22 +type = intent +variant = AA 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_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 new file mode 100644 index 0000000000..4737b633fc --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_cpe_plus +quality_type = normal +setting_version = 22 +type = intent +variant = AA 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_aa0.4_cpe_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg new file mode 100644 index 0000000000..7225bab936 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_cpe +quality_type = fast +setting_version = 22 +type = intent +variant = AA 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_aa0.4_cpe_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg new file mode 100644 index 0000000000..eefe637954 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_cpe +quality_type = normal +setting_version = 22 +type = intent +variant = AA 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_aa0.4_nylon_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg new file mode 100644 index 0000000000..63207f8f14 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_nylon +quality_type = fast +setting_version = 22 +type = intent +variant = AA 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_aa0.4_nylon_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg new file mode 100644 index 0000000000..d20118ef97 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_nylon +quality_type = normal +setting_version = 22 +type = intent +variant = AA 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_aa0.4_pc_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg new file mode 100644 index 0000000000..296959f646 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_pc +quality_type = fast +setting_version = 22 +type = intent +variant = AA 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_aa0.4_pc_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg new file mode 100644 index 0000000000..13369f1eab --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_pc +quality_type = normal +setting_version = 22 +type = intent +variant = AA 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_aa0.4_petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg new file mode 100644 index 0000000000..b952bc3f2b --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petg +quality_type = fast +setting_version = 22 +type = intent +variant = AA 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_aa0.4_petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg new file mode 100644 index 0000000000..c8a9e7ec65 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petg +quality_type = normal +setting_version = 22 +type = intent +variant = AA 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_aa0.4_PLA_High_Visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_High_Visual.inst.cfg rename to resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg index 5d5d433d9a..5fdb90d5e5 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_High_Visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Visual definition = ultimaker_s5 +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = high intent_category = visual material = generic_pla +quality_type = high +setting_version = 22 +type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 + 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 new file mode 100644 index 0000000000..9bb289a3b1 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_pla +quality_type = fast +setting_version = 22 +type = intent +variant = AA 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_aa0.4_PLA_Fast_Visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Fast_Visual.inst.cfg rename to resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg index 35bb47e546..6fa63725c5 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Fast_Visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Visual definition = ultimaker_s5 +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = fast intent_category = visual material = generic_pla +quality_type = fast +setting_version = 22 +type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 + 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 new file mode 100644 index 0000000000..ad06050ef1 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_pla +quality_type = normal +setting_version = 22 +type = intent +variant = AA 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_aa0.4_PLA_Normal_Visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Normal_Visual.inst.cfg rename to resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg index ad280d6142..e2b41d7445 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Normal_Visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Visual definition = ultimaker_s5 +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = normal intent_category = visual material = generic_pla +quality_type = normal +setting_version = 22 +type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 + diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Draft_Print_Quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg similarity index 90% rename from resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Draft_Print_Quick.inst.cfg rename to resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg index 76d9191fc1..3428f1fdda 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_Draft_Print_Quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg @@ -1,27 +1,23 @@ [general] -version = 4 -name = Quick definition = ultimaker_s5 +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = intent variant = AA 0.4 [values] +infill_sparse_density = 15 +jerk_print = 30 speed_infill = =speed_print speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall -speed_layer_0 = 20 top_bottom_thickness = 0.8 -infill_sparse_density = 15 - -jerk_print = 30 - - diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_VeryDraft_Print_Quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg similarity index 87% rename from resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_VeryDraft_Print_Quick.inst.cfg rename to resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg index 51cfaebe34..899fa76b61 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_PLA_VeryDraft_Print_Quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg @@ -1,32 +1,28 @@ [general] -version = 4 -name = Quick definition = ultimaker_s5 +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = verydraft -material = generic_pla -variant = AA 0.4 is_experimental = True +material = generic_pla +quality_type = verydraft +setting_version = 22 +type = intent +variant = AA 0.4 [values] -infill_sparse_density = 10 - -jerk_print = 30 - acceleration_print = 4000 acceleration_wall = 2000 acceleration_wall_0 = 2000 - -speed_print = 50 +infill_sparse_density = 10 +jerk_print = 30 speed_infill = =speed_print +speed_print = 50 speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall -speed_layer_0 = 20 +top_bottom_thickness = 0.8 -top_bottom_thickness = 0.8 \ No newline at end of file diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_High_Visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_High_Visual.inst.cfg rename to resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg index 84ab765c21..ce5961883a 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_High_Visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Visual definition = ultimaker_s5 +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = high intent_category = visual material = generic_tough_pla +quality_type = high +setting_version = 22 +type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 + 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 new file mode 100644 index 0000000000..d71cea9bdc --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_tough_pla +quality_type = fast +setting_version = 22 +type = intent +variant = AA 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_aa0.4_TPLA_Fast_Visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Fast_Visual.inst.cfg rename to resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg index 2c0ca34f03..31aaa88fc1 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Fast_Visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Visual definition = ultimaker_s5 +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = fast intent_category = visual material = generic_tough_pla +quality_type = fast +setting_version = 22 +type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 + 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 new file mode 100644 index 0000000000..84c8068563 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_tough_pla +quality_type = normal +setting_version = 22 +type = intent +variant = AA 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_aa0.4_TPLA_Normal_Visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg similarity index 91% rename from resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Normal_Visual.inst.cfg rename to resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg index a3740c80c3..c9455300ec 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Normal_Visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Visual definition = ultimaker_s5 +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = normal intent_category = visual material = generic_tough_pla +quality_type = normal +setting_version = 22 +type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 + diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Draft_Print_Quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg similarity index 90% rename from resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Draft_Print_Quick.inst.cfg rename to resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg index 7851ecd793..b657f45d71 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_Draft_Print_Quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg @@ -1,27 +1,23 @@ [general] -version = 4 -name = Quick definition = ultimaker_s5 +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = draft material = generic_tough_pla +quality_type = draft +setting_version = 22 +type = intent variant = AA 0.4 [values] +infill_sparse_density = 15 +jerk_print = 30 speed_infill = =speed_print speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall -speed_layer_0 = 20 top_bottom_thickness = 0.8 -infill_sparse_density = 15 - -jerk_print = 30 - - diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_VeryDraft_Print_Quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg similarity index 87% rename from resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_VeryDraft_Print_Quick.inst.cfg rename to resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg index ec93cc5599..f4e1bab762 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_TPLA_VeryDraft_Print_Quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg @@ -1,32 +1,28 @@ [general] -version = 4 -name = Quick definition = ultimaker_s5 +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = verydraft -material = generic_tough_pla -variant = AA 0.4 is_experimental = True +material = generic_tough_pla +quality_type = verydraft +setting_version = 22 +type = intent +variant = AA 0.4 [values] -infill_sparse_density = 10 - -jerk_print = 30 - acceleration_print = 4000 acceleration_wall = 2000 acceleration_wall_0 = 2000 - -speed_print = 50 +infill_sparse_density = 10 +jerk_print = 30 speed_infill = =speed_print +speed_print = 50 speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall speed_wall_x = =speed_wall -speed_layer_0 = 20 +top_bottom_thickness = 0.8 -top_bottom_thickness = 0.8 \ No newline at end of file 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 2579528ee4..2f4ea429a7 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Visual definition = uni_base +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = q010 intent_category = visual material = generic_abs -variant = 0.40mm Nozzle +quality_type = q010 +setting_version = 22 +type = intent +variant = 0.40mm Nozzle [values] -speed_print = 50 +adaptive_layer_height_enabled = true speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 50 speed_topbottom = 35 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall -adaptive_layer_height_enabled = true +speed_wall_x = =speed_wall + 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 360ad2b935..59e028f9d9 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = uni_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = q015 material = generic_abs +quality_type = q015 +setting_version = 22 +type = intent variant = 0.40mm Nozzle [values] -speed_print = 70 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 70 speed_topbottom = 40 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall + 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 3ef89a8ba5..8de69b4d8d 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Visual definition = uni_base +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = q015 intent_category = visual material = generic_abs -variant = 0.40mm Nozzle +quality_type = q015 +setting_version = 22 +type = intent +variant = 0.40mm Nozzle [values] -speed_print = 50 +adaptive_layer_height_enabled = true speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 50 speed_topbottom = 35 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall -adaptive_layer_height_enabled = true +speed_wall_x = =speed_wall + 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 4249a6656c..4dd79af2b2 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = uni_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = q020 material = generic_abs +quality_type = q020 +setting_version = 22 +type = intent variant = 0.40mm Nozzle [values] -speed_print = 70 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 70 speed_topbottom = 40 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall + 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 aca65ed75b..ea85344a43 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 @@ -1,28 +1,29 @@ [general] -version = 4 -name = Quick definition = uni_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = q020 material = generic_abs +quality_type = q020 +setting_version = 22 +type = intent variant = 0.40mm Nozzle [values] -jerk_print = 30 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 -speed_print = 100 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 100 speed_topbottom = 65 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall + 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 b0e0bf3f33..8d85083a2b 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Visual definition = uni_base +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = q020 intent_category = visual material = generic_abs -variant = 0.40mm Nozzle +quality_type = q020 +setting_version = 22 +type = intent +variant = 0.40mm Nozzle [values] -speed_print = 50 +adaptive_layer_height_enabled = true speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 50 speed_topbottom = 35 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall -adaptive_layer_height_enabled = true +speed_wall_x = =speed_wall + 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 f32098879a..7dad65fadc 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 @@ -1,28 +1,29 @@ [general] -version = 4 -name = Quick definition = uni_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = q025 material = generic_abs +quality_type = q025 +setting_version = 22 +type = intent variant = 0.40mm Nozzle [values] -jerk_print = 30 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 -speed_print = 100 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 100 speed_topbottom = 65 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall + 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 ba0b7ef2b0..3d3ea1858a 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 @@ -1,28 +1,29 @@ [general] -version = 4 -name = Quick definition = uni_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = q030 material = generic_abs +quality_type = q030 +setting_version = 22 +type = intent variant = 0.40mm Nozzle [values] -jerk_print = 30 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 -speed_print = 100 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 100 speed_topbottom = 65 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall + 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 3aec48f51a..d132622930 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Visual definition = uni_base +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = q010 intent_category = visual material = generic_petg -variant = 0.40mm Nozzle +quality_type = q010 +setting_version = 22 +type = intent +variant = 0.40mm Nozzle [values] -speed_print = 50 +adaptive_layer_height_enabled = true speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 50 speed_topbottom = 35 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall -adaptive_layer_height_enabled = true +speed_wall_x = =speed_wall + 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 f6210c6d17..fdb0f4c443 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = uni_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = q015 material = generic_petg +quality_type = q015 +setting_version = 22 +type = intent variant = 0.40mm Nozzle [values] -speed_print = 70 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 70 speed_topbottom = 40 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall + 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 c0447585ba..266774c67f 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Visual definition = uni_base +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = q015 intent_category = visual material = generic_petg -variant = 0.40mm Nozzle +quality_type = q015 +setting_version = 22 +type = intent +variant = 0.40mm Nozzle [values] -speed_print = 50 +adaptive_layer_height_enabled = true speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 50 speed_topbottom = 35 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall -adaptive_layer_height_enabled = true +speed_wall_x = =speed_wall + 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 aef6e96dc8..d8544e80ae 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = uni_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = q020 material = generic_petg +quality_type = q020 +setting_version = 22 +type = intent variant = 0.40mm Nozzle [values] -speed_print = 70 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 70 speed_topbottom = 40 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall + 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 9921be1922..4883a59ca8 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 @@ -1,28 +1,29 @@ [general] -version = 4 -name = Quick definition = uni_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = q020 material = generic_petg +quality_type = q020 +setting_version = 22 +type = intent variant = 0.40mm Nozzle [values] -jerk_print = 30 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 -speed_print = 100 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 100 speed_topbottom = 65 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall + 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 8f795be154..45c5f8efb7 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Visual definition = uni_base +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = q020 intent_category = visual material = generic_petg -variant = 0.40mm Nozzle +quality_type = q020 +setting_version = 22 +type = intent +variant = 0.40mm Nozzle [values] -speed_print = 50 +adaptive_layer_height_enabled = true speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 50 speed_topbottom = 35 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall -adaptive_layer_height_enabled = true +speed_wall_x = =speed_wall + 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 658fe25b1f..1766ed7762 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 @@ -1,28 +1,29 @@ [general] -version = 4 -name = Quick definition = uni_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = q025 material = generic_petg +quality_type = q025 +setting_version = 22 +type = intent variant = 0.40mm Nozzle [values] -jerk_print = 30 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 -speed_print = 100 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 100 speed_topbottom = 65 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall + 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 fccccc14fd..e3effc7247 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 @@ -1,28 +1,29 @@ [general] -version = 4 -name = Quick definition = uni_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = q030 material = generic_petg +quality_type = q030 +setting_version = 22 +type = intent variant = 0.40mm Nozzle [values] -jerk_print = 30 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 -speed_print = 100 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 100 speed_topbottom = 65 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall + 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 d60a340613..4b26c6f8d2 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Visual definition = uni_base +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = q010 intent_category = visual material = generic_pla -variant = 0.40mm Nozzle +quality_type = q010 +setting_version = 22 +type = intent +variant = 0.40mm Nozzle [values] -speed_print = 50 +adaptive_layer_height_enabled = true speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 50 speed_topbottom = 35 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall -adaptive_layer_height_enabled = true +speed_wall_x = =speed_wall + 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 716e001ba1..03ead6e755 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = uni_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = q015 material = generic_pla +quality_type = q015 +setting_version = 22 +type = intent variant = 0.40mm Nozzle [values] -speed_print = 70 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 70 speed_topbottom = 40 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall + 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 bc58af6119..4ec6a43fc3 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Visual definition = uni_base +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = q015 intent_category = visual material = generic_pla -variant = 0.40mm Nozzle +quality_type = q015 +setting_version = 22 +type = intent +variant = 0.40mm Nozzle [values] -speed_print = 50 +adaptive_layer_height_enabled = true speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 50 speed_topbottom = 35 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall -adaptive_layer_height_enabled = true +speed_wall_x = =speed_wall + 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 9c7a50ae4b..380b25ec39 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = uni_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = q020 material = generic_pla +quality_type = q020 +setting_version = 22 +type = intent variant = 0.40mm Nozzle [values] -speed_print = 70 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 70 speed_topbottom = 40 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall + 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 7a2de6b69d..de4a124a63 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 @@ -1,28 +1,29 @@ [general] -version = 4 -name = Quick definition = uni_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = q020 material = generic_pla +quality_type = q020 +setting_version = 22 +type = intent variant = 0.40mm Nozzle [values] -jerk_print = 30 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 -speed_print = 100 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 100 speed_topbottom = 65 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall + 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 53678cbe83..9406777b94 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Visual definition = uni_base +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = q020 intent_category = visual material = generic_pla -variant = 0.40mm Nozzle +quality_type = q020 +setting_version = 22 +type = intent +variant = 0.40mm Nozzle [values] -speed_print = 50 +adaptive_layer_height_enabled = true speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 50 speed_topbottom = 35 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall -adaptive_layer_height_enabled = true +speed_wall_x = =speed_wall + 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 6f6891abd6..295313baf9 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 @@ -1,28 +1,29 @@ [general] -version = 4 -name = Quick definition = uni_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = q025 material = generic_pla +quality_type = q025 +setting_version = 22 +type = intent variant = 0.40mm Nozzle [values] -jerk_print = 30 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 -speed_print = 100 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 100 speed_topbottom = 65 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall + 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 51334e88ea..bf3880d4a5 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 @@ -1,28 +1,29 @@ [general] -version = 4 -name = Quick definition = uni_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = q030 material = generic_pla +quality_type = q030 +setting_version = 22 +type = intent variant = 0.40mm Nozzle [values] -jerk_print = 30 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 -speed_print = 100 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 100 speed_topbottom = 65 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall + 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 eacc67af42..1b5440da22 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 @@ -1,23 +1,23 @@ [general] -version = 4 -name = Visual definition = zav_base +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = ZAV_layer_010 intent_category = visual material = generic_abs -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_010 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -speed_print = 50 +adaptive_layer_height_enabled = true speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 50 speed_topbottom = 35 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall -adaptive_layer_height_enabled = true +speed_wall_x = =speed_wall 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 6cc10ca8b1..7eedd16f1d 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 @@ -1,22 +1,22 @@ [general] -version = 4 -name = Accurate definition = zav_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = ZAV_layer_015 material = generic_abs -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_015 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -speed_print = 70 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 70 speed_topbottom = 40 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall 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 711074863e..b3249837d4 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 @@ -1,23 +1,23 @@ [general] -version = 4 -name = Visual definition = zav_base +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = ZAV_layer_015 intent_category = visual material = generic_abs -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_015 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -speed_print = 50 +adaptive_layer_height_enabled = true speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 50 speed_topbottom = 35 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall -adaptive_layer_height_enabled = true +speed_wall_x = =speed_wall 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 daf37e9202..133b2403b0 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = zav_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = ZAV_layer_020 material = generic_abs -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_020 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -speed_print = 70 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 70 speed_topbottom = 40 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall + 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 bebe2fe8bc..7fd74b45e0 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 @@ -1,29 +1,29 @@ [general] -version = 4 -name = Quick definition = zav_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = ZAV_layer_020 material = generic_abs -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_020 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -jerk_print = 30 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 -speed_print = 100 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 100 speed_topbottom = 65 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall 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 55af55c502..1c36175ac5 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 @@ -1,23 +1,23 @@ [general] -version = 4 -name = Visual definition = zav_base +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = ZAV_layer_020 intent_category = visual material = generic_abs -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_020 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -speed_print = 50 +adaptive_layer_height_enabled = true speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 50 speed_topbottom = 35 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall -adaptive_layer_height_enabled = true +speed_wall_x = =speed_wall 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 0b7a66b02d..d683c6f889 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 @@ -1,29 +1,29 @@ [general] -version = 4 -name = Quick definition = zav_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = ZAV_layer_025 material = generic_abs -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_025 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -jerk_print = 30 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 -speed_print = 100 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 100 speed_topbottom = 65 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall 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 31b2268489..590790f820 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 @@ -1,29 +1,29 @@ [general] -version = 4 -name = Quick definition = zav_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = ZAV_layer_030 material = generic_abs -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_030 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -jerk_print = 30 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 -speed_print = 100 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 100 speed_topbottom = 65 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall 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 26404954b4..1bcc1d1ef3 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 @@ -1,23 +1,23 @@ [general] -version = 4 -name = Visual definition = zav_base +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = ZAV_layer_010 intent_category = visual material = generic_petg -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_010 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -speed_print = 50 +adaptive_layer_height_enabled = true speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 50 speed_topbottom = 35 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall -adaptive_layer_height_enabled = true +speed_wall_x = =speed_wall 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 59175befc3..7e8356dab7 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = zav_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = ZAV_layer_015 material = generic_petg -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_015 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -speed_print = 70 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 70 speed_topbottom = 40 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall + 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 54226ebd41..09326033b7 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 @@ -1,23 +1,23 @@ [general] -version = 4 -name = Visual definition = zav_base +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = ZAV_layer_015 intent_category = visual material = generic_petg -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_015 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -speed_print = 50 +adaptive_layer_height_enabled = true speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 50 speed_topbottom = 35 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall -adaptive_layer_height_enabled = true +speed_wall_x = =speed_wall 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 59e5cd1082..8ddf724274 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = zav_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = ZAV_layer_020 material = generic_petg -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_020 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -speed_print = 70 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 70 speed_topbottom = 40 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall + 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 9d91773da6..11a5cf6bf4 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 @@ -1,29 +1,29 @@ [general] -version = 4 -name = Quick definition = zav_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = ZAV_layer_020 material = generic_petg -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_020 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -jerk_print = 30 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 -speed_print = 100 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 100 speed_topbottom = 65 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall 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 4a1b28bb53..576892e25f 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 @@ -1,23 +1,23 @@ [general] -version = 4 -name = Visual definition = zav_base +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = ZAV_layer_020 intent_category = visual material = generic_petg -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_020 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -speed_print = 50 +adaptive_layer_height_enabled = true speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 50 speed_topbottom = 35 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall -adaptive_layer_height_enabled = true +speed_wall_x = =speed_wall 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 00c54879a9..e9ecec5b4b 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 @@ -1,29 +1,29 @@ [general] -version = 4 -name = Quick definition = zav_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = ZAV_layer_025 material = generic_petg -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_025 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -jerk_print = 30 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 -speed_print = 100 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 100 speed_topbottom = 65 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall 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 445228fa7d..de644ce01b 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 @@ -1,29 +1,29 @@ [general] -version = 4 -name = Quick definition = zav_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = ZAV_layer_030 material = generic_petg -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_030 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -jerk_print = 30 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 -speed_print = 100 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 100 speed_topbottom = 65 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall 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 d547381aef..ca21b4caba 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 @@ -1,23 +1,23 @@ [general] -version = 4 -name = Visual definition = zav_base +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = ZAV_layer_010 intent_category = visual material = generic_pla -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_010 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -speed_print = 50 +adaptive_layer_height_enabled = true speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 50 speed_topbottom = 35 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall -adaptive_layer_height_enabled = true +speed_wall_x = =speed_wall 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 e310858197..34edf422d1 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = zav_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = ZAV_layer_015 material = generic_pla -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_015 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -speed_print = 70 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 70 speed_topbottom = 40 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall + 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 42f0a3f9e5..1113fd75a7 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 @@ -1,23 +1,23 @@ [general] -version = 4 -name = Visual definition = zav_base +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = ZAV_layer_015 intent_category = visual material = generic_pla -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_015 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -speed_print = 50 +adaptive_layer_height_enabled = true speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 50 speed_topbottom = 35 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall -adaptive_layer_height_enabled = true +speed_wall_x = =speed_wall 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 435d5e7d0a..277d0a1649 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Accurate definition = zav_base +name = Accurate +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = engineering -quality_type = ZAV_layer_020 material = generic_pla -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_020 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -speed_print = 70 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 70 speed_topbottom = 40 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall + 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 a1b78a2a82..7f7e8ca157 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 @@ -1,29 +1,29 @@ [general] -version = 4 -name = Quick definition = zav_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = ZAV_layer_020 material = generic_pla -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_020 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -jerk_print = 30 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 -speed_print = 100 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 100 speed_topbottom = 65 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall 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 75310d58b5..63e2723f41 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 @@ -1,23 +1,23 @@ [general] -version = 4 -name = Visual definition = zav_base +name = Visual +version = 4 [metadata] -setting_version = 20 -type = intent -quality_type = ZAV_layer_020 intent_category = visual material = generic_pla -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_020 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -speed_print = 50 +adaptive_layer_height_enabled = true speed_infill = =speed_print speed_layer_0 = 20 +speed_print = 50 speed_topbottom = 35 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall -adaptive_layer_height_enabled = true +speed_wall_x = =speed_wall 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 f3c38d26d8..c64f4660dd 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 @@ -1,29 +1,29 @@ [general] -version = 4 -name = Quick definition = zav_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = ZAV_layer_025 material = generic_pla -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_025 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -jerk_print = 30 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 -speed_print = 100 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 100 speed_topbottom = 65 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall 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 cbdb7bdc91..eedf055bb8 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 @@ -1,29 +1,29 @@ [general] -version = 4 -name = Quick definition = zav_base +name = Quick +version = 4 [metadata] -setting_version = 20 -type = intent intent_category = quick -quality_type = ZAV_layer_030 material = generic_pla -variant = 0.40mm_ZAV_Nozzle +quality_type = ZAV_layer_030 +setting_version = 22 +type = intent +variant = 0.40mm_ZAV_Nozzle [values] -jerk_print = 30 jerk_infill = =jerk_print +jerk_layer_0 = 5 +jerk_print = 30 jerk_topbottom = =jerk_print jerk_wall = =jerk_print jerk_wall_0 = =jerk_wall jerk_wall_x = =jerk_wall -jerk_layer_0 = 5 -speed_print = 100 speed_infill = =speed_print speed_layer_0 = 25 +speed_print = 100 speed_topbottom = 65 speed_wall = =speed_topbottom speed_wall_0 = =speed_wall -speed_wall_x = =speed_wall +speed_wall_x = =speed_wall diff --git a/resources/meshes/BIQU_Hurakan_bed.stl b/resources/meshes/BIQU_Hurakan_bed.stl new file mode 100644 index 0000000000..3681cf95f9 Binary files /dev/null and b/resources/meshes/BIQU_Hurakan_bed.stl differ diff --git a/resources/meshes/Hellbot_Magna_SE_300.obj b/resources/meshes/Hellbot_Magna_SE_300.obj new file mode 100644 index 0000000000..ab9fcc1f30 --- /dev/null +++ b/resources/meshes/Hellbot_Magna_SE_300.obj @@ -0,0 +1,616 @@ +# Exported from 3D Builder +mtllib Hellbot_Magna_SE_300.mtl + +o Object.1 +v -155.000000 -150.000015 2.000102 188 188 188 +v -154.938446 -150.782181 0.000102 188 188 188 +v -154.938446 -150.782181 2.000102 188 188 188 +v -154.755280 -151.545090 0.000103 188 188 188 +v -152.938919 -154.045090 2.000104 188 188 188 +v -152.269958 -154.455063 0.000105 188 188 188 +v -151.545090 -154.755325 0.000105 188 188 188 +v -150.782166 -154.938431 0.000105 188 188 188 +v -150.782166 -154.938431 2.000105 188 188 188 +v -150.000000 -155.000015 0.000105 188 188 188 +v 151.545074 -154.755325 0.000105 188 188 188 +v 151.545074 -154.755325 2.000105 188 188 188 +v 152.269958 -154.455063 0.000105 188 188 188 +v 152.938934 -154.045090 0.000104 188 188 188 +v 152.269958 -154.455063 2.000105 188 188 188 +v 152.938934 -154.045090 2.000104 188 188 188 +v 154.045074 -152.938950 0.000104 188 188 188 +v 154.045074 -152.938950 2.000104 188 188 188 +v 154.455048 -152.269974 0.000103 188 188 188 +v 154.455048 -152.269974 2.000103 188 188 188 +v 154.755310 -151.545090 0.000103 188 188 188 +v 154.938416 150.782181 -0.000102 188 188 188 +v 154.755310 151.545105 1.999897 188 188 188 +v 154.455048 152.269974 1.999897 188 188 188 +v 154.045074 152.938934 -0.000104 188 188 188 +v 154.045074 152.938950 1.999897 188 188 188 +v 153.535553 153.535553 -0.000104 188 188 188 +v 152.938934 154.045105 -0.000104 188 188 188 +v 152.938934 154.045105 1.999896 188 188 188 +v 152.269958 154.455048 1.999896 188 188 188 +v 151.545074 154.755295 1.999895 188 188 188 +v 150.000000 155.000015 -0.000105 188 188 188 +v 150.000000 155.000015 1.999895 188 188 188 +v -150.782166 154.938461 -0.000105 188 188 188 +v -150.782166 154.938461 1.999895 188 188 188 +v -152.269958 154.455048 -0.000105 188 188 188 +v -152.938919 154.045105 1.999896 188 188 188 +v -153.535538 153.535553 1.999896 188 188 188 +v -153.535538 153.535553 -0.000104 188 188 188 +v -154.755280 151.545105 -0.000103 188 188 188 +v -154.755280 151.545105 1.999897 188 188 188 +v -154.938446 150.782181 -0.000102 188 188 188 +v -155.000000 150.000015 1.999898 188 188 188 +v -155.000000 -150.000015 0.000102 188 188 188 +v -155.000000 150.000015 -0.000102 188 188 188 +v 150.000000 -155.000015 2.000105 188 188 188 +v 150.782166 -154.938431 2.000105 188 188 188 +v -150.000000 155.000015 1.999895 188 188 188 +v -152.269958 -154.455063 2.000105 188 188 188 +v -151.545090 -154.755325 2.000105 188 188 188 +v -150.000000 -155.000015 2.000105 188 188 188 +v 153.535553 -153.535568 2.000104 188 188 188 +v 154.755310 -151.545090 2.000103 188 188 188 +v 154.938416 -150.782181 2.000102 188 188 188 +v 155.000000 -150.000015 2.000102 188 188 188 +v 154.938416 150.782196 1.999898 188 188 188 +v 153.535553 153.535553 1.999896 188 188 188 +v 155.000000 150.000015 1.999898 188 188 188 +v 150.782166 154.938461 1.999895 188 188 188 +v -151.545090 154.755295 1.999895 188 188 188 +v -152.269958 154.455048 1.999896 188 188 188 +v -153.535538 -153.535568 2.000104 188 188 188 +v -154.045090 152.938950 1.999897 188 188 188 +v -154.755280 -151.545090 2.000103 188 188 188 +v -154.455032 -152.269974 2.000103 188 188 188 +v -154.045090 -152.938950 2.000104 188 188 188 +v -154.455032 152.269974 1.999897 188 188 188 +v -154.938446 150.782196 1.999898 188 188 188 +v 153.535553 -153.535568 0.000104 188 188 188 +v 155.000000 -150.000015 0.000102 188 188 188 +v 154.938416 -150.782181 0.000102 188 188 188 +v 150.000000 -155.000015 0.000105 188 188 188 +v 150.782166 -154.938431 0.000105 188 188 188 +v -151.545090 154.755295 -0.000105 188 188 188 +v -150.000000 155.000015 -0.000105 188 188 188 +v 150.782166 154.938461 -0.000105 188 188 188 +v -152.938919 -154.045090 0.000104 188 188 188 +v -153.535538 -153.535568 0.000104 188 188 188 +v -154.455032 152.269974 -0.000103 188 188 188 +v -154.045090 152.938934 -0.000104 188 188 188 +v -154.045090 -152.938950 0.000104 188 188 188 +v -154.455032 -152.269974 0.000103 188 188 188 +v -152.938919 154.045105 -0.000104 188 188 188 +v 151.545074 154.755295 -0.000105 188 188 188 +v 152.269958 154.455048 -0.000105 188 188 188 +v 155.000000 150.000015 -0.000102 188 188 188 +v 154.455048 152.269974 -0.000103 188 188 188 +v 154.755310 151.545105 -0.000103 188 188 188 + +v -155.000000 -150.000015 2.000102 188 188 188 +v -154.938446 -150.782181 0.000102 188 188 188 +v 155.000000 -150.000015 2.000102 188 188 188 +v 155.000000 -150.000015 0.000102 188 188 188 +v -155.000000 -150.000015 0.000102 188 188 188 +v 155.000000 150.000015 -0.000102 188 188 188 +v 155.000000 -150.000015 0.000102 188 188 188 +v -155.000000 -150.000015 0.000102 188 188 188 +v 155.000000 -150.000015 0.000102 188 188 188 +v 150.000000 -155.000015 0.000105 188 188 188 +v -155.000000 -150.000015 0.000102 188 188 188 +v -150.000000 -155.000015 0.000105 188 188 188 +v -155.000000 -150.000015 0.000102 188 188 188 +v -155.000000 -150.000015 0.000102 188 188 188 +v -150.782166 -154.938431 0.000105 188 188 188 +v -155.000000 -150.000015 0.000102 188 188 188 +v -151.545090 -154.755325 0.000105 188 188 188 +v -152.269958 -154.455063 0.000105 188 188 188 +v -155.000000 -150.000015 0.000102 188 188 188 +v -155.000000 -150.000015 0.000102 188 188 188 +v -152.938919 -154.045090 0.000104 188 188 188 +v -155.000000 -150.000015 0.000102 188 188 188 +v -153.535538 -153.535568 0.000104 188 188 188 +v -154.045090 -152.938950 0.000104 188 188 188 +v -155.000000 -150.000015 0.000102 188 188 188 +v -155.000000 -150.000015 0.000102 188 188 188 +v -154.455032 -152.269974 0.000103 188 188 188 +v -154.755280 -151.545090 0.000103 188 188 188 +v -154.455032 -152.269974 0.000103 188 188 188 +v -154.455032 -152.269974 0.000103 188 188 188 +v -154.045090 -152.938950 0.000104 188 188 188 +v -154.045090 -152.938950 0.000104 188 188 188 +v -153.535538 -153.535568 0.000104 188 188 188 +v -153.535538 -153.535568 0.000104 188 188 188 +v -152.938919 -154.045090 0.000104 188 188 188 +v -152.938919 -154.045090 0.000104 188 188 188 +v -152.269958 -154.455063 0.000105 188 188 188 +v -152.269958 -154.455063 0.000105 188 188 188 +v -151.545090 -154.755325 0.000105 188 188 188 +v -151.545090 -154.755325 0.000105 188 188 188 +v -150.782166 -154.938431 0.000105 188 188 188 +v -150.782166 -154.938431 0.000105 188 188 188 +v -150.000000 -155.000015 0.000105 188 188 188 +v 150.000000 -155.000015 0.000105 188 188 188 +v -150.000000 -155.000015 0.000105 188 188 188 +v 150.000000 -155.000015 0.000105 188 188 188 +v 155.000000 -150.000015 0.000102 188 188 188 +v 150.000000 -155.000015 0.000105 188 188 188 +v 154.938416 -150.782181 0.000102 188 188 188 +v 154.755310 -151.545090 0.000103 188 188 188 +v 150.000000 -155.000015 0.000105 188 188 188 +v 150.000000 -155.000015 0.000105 188 188 188 +v 154.455048 -152.269974 0.000103 188 188 188 +v 150.000000 -155.000015 0.000105 188 188 188 +v 154.045074 -152.938950 0.000104 188 188 188 +v 153.535553 -153.535568 0.000104 188 188 188 +v 150.000000 -155.000015 0.000105 188 188 188 +v 152.938934 -154.045090 0.000104 188 188 188 +v 150.000000 -155.000015 0.000105 188 188 188 +v 150.000000 -155.000015 0.000105 188 188 188 +v 150.782166 -154.938431 0.000105 188 188 188 +v 152.938934 -154.045090 0.000104 188 188 188 +v 150.782166 -154.938431 0.000105 188 188 188 +v 150.782166 -154.938431 0.000105 188 188 188 +v 151.545074 -154.755325 0.000105 188 188 188 +v 151.545074 -154.755325 0.000105 188 188 188 +v 152.938934 -154.045090 0.000104 188 188 188 +v 152.269958 -154.455063 0.000105 188 188 188 +v 152.938934 -154.045090 0.000104 188 188 188 +v 151.545074 -154.755325 0.000105 188 188 188 +v 152.269958 -154.455063 0.000105 188 188 188 +v 152.938934 -154.045090 0.000104 188 188 188 +v 153.535553 -153.535568 0.000104 188 188 188 +v 153.535553 -153.535568 0.000104 188 188 188 +v 154.045074 -152.938950 0.000104 188 188 188 +v 154.045074 -152.938950 0.000104 188 188 188 +v 154.455048 -152.269974 0.000103 188 188 188 +v 154.045074 -152.938950 2.000104 188 188 188 +v 154.455048 -152.269974 0.000103 188 188 188 +v 154.455048 -152.269974 2.000103 188 188 188 +v 154.755310 -151.545090 0.000103 188 188 188 +v 154.455048 -152.269974 2.000103 188 188 188 +v 154.455048 -152.269974 0.000103 188 188 188 +v 154.755310 -151.545090 0.000103 188 188 188 +v 154.755310 -151.545090 2.000103 188 188 188 +v 154.755310 -151.545090 0.000103 188 188 188 +v 154.938416 -150.782181 0.000102 188 188 188 +v 154.755310 -151.545090 2.000103 188 188 188 +v 154.938416 -150.782181 0.000102 188 188 188 +v 154.938416 -150.782181 2.000102 188 188 188 +v 155.000000 150.000015 -0.000102 188 188 188 +v -155.000000 -150.000015 0.000102 188 188 188 +v -155.000000 -150.000015 0.000102 188 188 188 +v -155.000000 150.000015 -0.000102 188 188 188 +v -155.000000 150.000015 -0.000102 188 188 188 +v -155.000000 150.000015 1.999898 188 188 188 +v -152.938919 154.045105 1.999896 188 188 188 +v -152.938919 154.045105 -0.000104 188 188 188 +v -152.938919 154.045105 1.999896 188 188 188 +v -153.535538 153.535553 -0.000104 188 188 188 +v -153.535538 153.535553 1.999896 188 188 188 +v -154.045090 152.938950 1.999897 188 188 188 +v -154.045090 152.938934 -0.000104 188 188 188 +v -154.045090 152.938950 1.999897 188 188 188 +v -154.455032 152.269974 -0.000103 188 188 188 +v -154.455032 152.269974 1.999897 188 188 188 +v -154.455032 152.269974 -0.000103 188 188 188 +v -154.455032 152.269974 1.999897 188 188 188 +v -154.755280 151.545105 -0.000103 188 188 188 +v -154.755280 151.545105 1.999897 188 188 188 +v -154.755280 151.545105 -0.000103 188 188 188 +v -154.755280 151.545105 1.999897 188 188 188 +v -154.938446 150.782181 -0.000102 188 188 188 +v -154.938446 150.782196 1.999898 188 188 188 +v -152.938919 154.045105 -0.000104 188 188 188 +v -154.938446 150.782181 -0.000102 188 188 188 +v -154.755280 151.545105 -0.000103 188 188 188 +v -152.938919 154.045105 -0.000104 188 188 188 +v -155.000000 150.000015 -0.000102 188 188 188 +v -154.938446 150.782181 -0.000102 188 188 188 +v -155.000000 150.000015 -0.000102 188 188 188 +v -152.938919 154.045105 -0.000104 188 188 188 +v -155.000000 150.000015 -0.000102 188 188 188 +v -152.269958 154.455048 -0.000105 188 188 188 +v -151.545090 154.755295 -0.000105 188 188 188 +v -155.000000 150.000015 -0.000102 188 188 188 +v -155.000000 150.000015 -0.000102 188 188 188 +v -150.782166 154.938461 -0.000105 188 188 188 +v -150.000000 155.000015 -0.000105 188 188 188 +v -150.782166 154.938461 -0.000105 188 188 188 +v -150.000000 155.000015 1.999895 188 188 188 +v -150.782166 154.938461 -0.000105 188 188 188 +v -150.782166 154.938461 1.999895 188 188 188 +v -151.545090 154.755295 -0.000105 188 188 188 +v 150.782166 154.938461 1.999895 188 188 188 +v 150.782166 154.938461 -0.000105 188 188 188 +v 155.000000 150.000015 -0.000102 188 188 188 +v 150.000000 155.000015 -0.000105 188 188 188 +v 150.782166 154.938461 -0.000105 188 188 188 +v 150.782166 154.938461 -0.000105 188 188 188 +v 155.000000 150.000015 -0.000102 188 188 188 +v 155.000000 150.000015 -0.000102 188 188 188 +v 151.545074 154.755295 -0.000105 188 188 188 +v 155.000000 150.000015 -0.000102 188 188 188 +v 152.269958 154.455048 -0.000105 188 188 188 +v 152.938934 154.045105 -0.000104 188 188 188 +v 155.000000 150.000015 -0.000102 188 188 188 +v 155.000000 150.000015 -0.000102 188 188 188 +v 153.535553 153.535553 -0.000104 188 188 188 +v 155.000000 150.000015 -0.000102 188 188 188 +v 154.045074 152.938934 -0.000104 188 188 188 +v 155.000000 150.000015 -0.000102 188 188 188 +v 154.938416 150.782181 -0.000102 188 188 188 +v 155.000000 150.000015 1.999898 188 188 188 +v 154.938416 150.782181 -0.000102 188 188 188 +v 152.269958 154.455048 -0.000105 188 188 188 +v 152.938934 154.045105 -0.000104 188 188 188 +v 152.938934 154.045105 1.999896 188 188 188 +v 153.535553 153.535553 -0.000104 188 188 188 +v 153.535553 153.535553 1.999896 188 188 188 +v 154.045074 152.938934 -0.000104 188 188 188 +v 154.045074 152.938950 1.999897 188 188 188 +v 154.455048 152.269974 1.999897 188 188 188 +v 154.045074 152.938934 -0.000104 188 188 188 +v 154.455048 152.269974 -0.000103 188 188 188 +v 154.455048 152.269974 1.999897 188 188 188 +v 154.755310 151.545105 1.999897 188 188 188 +v 154.455048 152.269974 -0.000103 188 188 188 +v 154.938416 150.782181 -0.000102 188 188 188 +v 154.455048 152.269974 -0.000103 188 188 188 +v 154.755310 151.545105 -0.000103 188 188 188 +v 154.938416 150.782196 1.999898 188 188 188 +v 154.755310 151.545105 -0.000103 188 188 188 +v 154.755310 151.545105 1.999897 188 188 188 +v 154.938416 150.782196 1.999898 188 188 188 +v 154.938416 150.782181 -0.000102 188 188 188 +v 154.755310 151.545105 -0.000103 188 188 188 +v 154.938416 150.782181 -0.000102 188 188 188 +v 154.045074 152.938934 -0.000104 188 188 188 +v 154.455048 152.269974 -0.000103 188 188 188 +v 154.045074 152.938950 1.999897 188 188 188 +v 154.045074 152.938934 -0.000104 188 188 188 +v 153.535553 153.535553 -0.000104 188 188 188 +v 153.535553 153.535553 1.999896 188 188 188 +v 153.535553 153.535553 -0.000104 188 188 188 +v 152.938934 154.045105 -0.000104 188 188 188 +v 152.938934 154.045105 1.999896 188 188 188 +v 152.938934 154.045105 -0.000104 188 188 188 +v 152.269958 154.455048 -0.000105 188 188 188 +v 152.269958 154.455048 1.999896 188 188 188 +v 152.269958 154.455048 -0.000105 188 188 188 +v 151.545074 154.755295 -0.000105 188 188 188 +v 152.269958 154.455048 1.999896 188 188 188 +v 151.545074 154.755295 -0.000105 188 188 188 +v 151.545074 154.755295 1.999895 188 188 188 +v 155.000000 150.000015 -0.000102 188 188 188 +v -150.000000 155.000015 -0.000105 188 188 188 +v 150.000000 155.000015 -0.000105 188 188 188 +v -150.000000 155.000015 -0.000105 188 188 188 +v 150.000000 155.000015 -0.000105 188 188 188 +v 151.545074 154.755295 1.999895 188 188 188 +v 151.545074 154.755295 -0.000105 188 188 188 +v 150.782166 154.938461 -0.000105 188 188 188 +v 150.782166 154.938461 1.999895 188 188 188 +v 150.000000 155.000015 -0.000105 188 188 188 +v 150.000000 155.000015 1.999895 188 188 188 +v -150.000000 155.000015 1.999895 188 188 188 +v 150.000000 155.000015 1.999895 188 188 188 +v -150.000000 155.000015 -0.000105 188 188 188 +v -150.782166 154.938461 1.999895 188 188 188 +v -150.782166 154.938461 -0.000105 188 188 188 +v -151.545090 154.755295 -0.000105 188 188 188 +v -151.545090 154.755295 1.999895 188 188 188 +v -151.545090 154.755295 -0.000105 188 188 188 +v -152.269958 154.455048 -0.000105 188 188 188 +v -151.545090 154.755295 1.999895 188 188 188 +v -152.269958 154.455048 -0.000105 188 188 188 +v -152.269958 154.455048 1.999896 188 188 188 +v -154.755280 151.545105 -0.000103 188 188 188 +v -154.455032 152.269974 -0.000103 188 188 188 +v -152.938919 154.045105 -0.000104 188 188 188 +v -152.938919 154.045105 -0.000104 188 188 188 +v -154.455032 152.269974 -0.000103 188 188 188 +v -154.045090 152.938934 -0.000104 188 188 188 +v -153.535538 153.535553 1.999896 188 188 188 +v -153.535538 153.535553 -0.000104 188 188 188 +v -154.045090 152.938934 -0.000104 188 188 188 +v -152.938919 154.045105 -0.000104 188 188 188 +v -154.045090 152.938934 -0.000104 188 188 188 +v -153.535538 153.535553 -0.000104 188 188 188 +v -152.269958 154.455048 1.999896 188 188 188 +v -152.269958 154.455048 -0.000105 188 188 188 +v -152.938919 154.045105 -0.000104 188 188 188 +v -154.938446 150.782196 1.999898 188 188 188 +v -154.938446 150.782181 -0.000102 188 188 188 +v -155.000000 150.000015 -0.000102 188 188 188 +v -155.000000 150.000015 -0.000102 188 188 188 +v -150.000000 155.000015 -0.000105 188 188 188 +v 155.000000 150.000015 -0.000102 188 188 188 +v 155.000000 150.000015 1.999898 188 188 188 +v 155.000000 -150.000015 2.000102 188 188 188 +v 155.000000 150.000015 -0.000102 188 188 188 +v 154.938416 -150.782181 2.000102 188 188 188 +v 154.938416 -150.782181 0.000102 188 188 188 +v 155.000000 -150.000015 0.000102 188 188 188 +v 153.535553 -153.535568 2.000104 188 188 188 +v 154.045074 -152.938950 0.000104 188 188 188 +v 154.045074 -152.938950 2.000104 188 188 188 +v 152.938934 -154.045090 2.000104 188 188 188 +v 153.535553 -153.535568 0.000104 188 188 188 +v 153.535553 -153.535568 2.000104 188 188 188 +v 152.269958 -154.455063 2.000105 188 188 188 +v 152.938934 -154.045090 0.000104 188 188 188 +v 152.938934 -154.045090 2.000104 188 188 188 +v 151.545074 -154.755325 2.000105 188 188 188 +v 152.269958 -154.455063 0.000105 188 188 188 +v 152.269958 -154.455063 2.000105 188 188 188 +v 150.782166 -154.938431 2.000105 188 188 188 +v 151.545074 -154.755325 0.000105 188 188 188 +v 151.545074 -154.755325 2.000105 188 188 188 +v 150.000000 -155.000015 2.000105 188 188 188 +v 150.782166 -154.938431 0.000105 188 188 188 +v 150.782166 -154.938431 2.000105 188 188 188 +v 150.000000 -155.000015 2.000105 188 188 188 +v -150.000000 -155.000015 2.000105 188 188 188 +v 150.000000 -155.000015 0.000105 188 188 188 +v -150.782166 -154.938431 2.000105 188 188 188 +v -150.000000 -155.000015 0.000105 188 188 188 +v -150.000000 -155.000015 2.000105 188 188 188 +v -151.545090 -154.755325 2.000105 188 188 188 +v -150.782166 -154.938431 0.000105 188 188 188 +v -150.782166 -154.938431 2.000105 188 188 188 +v -152.269958 -154.455063 2.000105 188 188 188 +v -151.545090 -154.755325 0.000105 188 188 188 +v -151.545090 -154.755325 2.000105 188 188 188 +v -152.938919 -154.045090 2.000104 188 188 188 +v -152.269958 -154.455063 0.000105 188 188 188 +v -152.269958 -154.455063 2.000105 188 188 188 +v -153.535538 -153.535568 2.000104 188 188 188 +v -152.938919 -154.045090 0.000104 188 188 188 +v -152.938919 -154.045090 2.000104 188 188 188 +v -154.045090 -152.938950 2.000104 188 188 188 +v -153.535538 -153.535568 0.000104 188 188 188 +v -153.535538 -153.535568 2.000104 188 188 188 +v -154.455032 -152.269974 2.000103 188 188 188 +v -154.045090 -152.938950 0.000104 188 188 188 +v -154.045090 -152.938950 2.000104 188 188 188 +v -154.755280 -151.545090 2.000103 188 188 188 +v -154.455032 -152.269974 0.000103 188 188 188 +v -154.455032 -152.269974 2.000103 188 188 188 +v -154.938446 -150.782181 2.000102 188 188 188 +v -154.755280 -151.545090 0.000103 188 188 188 +v -154.755280 -151.545090 2.000103 188 188 188 +v -154.938446 -150.782181 2.000102 188 188 188 +v -154.938446 -150.782181 0.000102 188 188 188 +v -154.755280 -151.545090 0.000103 188 188 188 +v -155.000000 -150.000015 0.000102 188 188 188 +v -154.755280 -151.545090 0.000103 188 188 188 +v -154.938446 -150.782181 0.000102 188 188 188 +v -155.000000 -150.000015 2.000102 188 188 188 +v -155.000000 150.000015 1.999898 188 188 188 +v -155.000000 -150.000015 0.000102 188 188 188 + +f 1 44 2 +f 89 90 3 +f 54 70 55 +f 86 91 92 +f 93 94 95 +f 96 97 72 +f 98 10 99 +f 100 8 101 +f 102 103 7 +f 104 105 6 +f 106 77 107 +f 108 109 78 +f 110 111 81 +f 112 82 113 +f 114 115 4 +f 64 116 117 +f 65 118 119 +f 66 120 121 +f 62 122 123 +f 5 124 125 +f 49 126 127 +f 50 128 129 +f 9 130 131 +f 132 51 133 +f 134 135 71 +f 136 137 21 +f 138 19 139 +f 140 141 17 +f 142 143 69 +f 144 14 145 +f 146 73 147 +f 46 148 149 +f 150 11 151 +f 47 152 153 +f 13 154 155 +f 15 156 157 +f 12 158 159 +f 16 160 161 +f 52 162 163 +f 18 164 165 +f 166 167 20 +f 168 169 53 +f 170 171 172 +f 173 174 175 +f 176 177 178 +f 45 179 180 +f 181 43 182 +f 68 183 184 +f 61 83 37 +f 185 186 39 +f 187 188 38 +f 189 80 63 +f 190 191 79 +f 192 193 67 +f 194 195 40 +f 196 197 41 +f 198 199 42 +f 200 201 202 +f 203 204 205 +f 206 207 208 +f 36 209 210 +f 211 212 74 +f 213 34 214 +f 215 216 75 +f 48 217 218 +f 219 220 35 +f 221 222 60 +f 31 76 59 +f 223 224 32 +f 225 226 227 +f 228 84 229 +f 230 231 85 +f 232 233 28 +f 234 27 235 +f 236 237 25 +f 238 239 22 +f 58 240 241 +f 242 243 56 +f 29 244 30 +f 57 245 246 +f 26 247 248 +f 24 249 250 +f 251 87 252 +f 23 253 254 +f 255 88 256 +f 257 258 259 +f 260 261 262 +f 263 264 265 +f 266 267 268 +f 269 270 271 +f 272 273 274 +f 275 276 277 +f 278 279 280 +f 281 282 283 +f 284 285 286 +f 287 33 288 +f 289 290 291 +f 292 293 294 +f 295 296 297 +f 298 299 300 +f 301 302 303 +f 304 305 306 +f 307 308 309 +f 310 311 312 +f 313 314 315 +f 316 317 318 +f 319 320 321 +f 322 323 324 +f 325 326 327 +f 328 329 330 +f 331 332 333 +f 334 335 336 +f 337 338 339 +f 340 341 342 +f 343 344 345 +f 346 347 348 +f 349 350 351 +f 352 353 354 +f 355 356 357 +f 358 359 360 +f 361 362 363 +f 364 365 366 +f 367 368 369 +f 370 371 372 +f 373 374 375 +f 376 377 378 +f 379 380 381 +f 382 383 384 +f 385 386 387 +f 388 389 390 + +vt 1.000000 0.983871 +vt 0.000000 0.983871 +vt 1.000000 0.016129 +vt 0.983871 1.000000 +vt 0.016129 1.000000 +vt 0.013606 1.000000 +vt 0.011145 1.000000 +vt 0.008807 0.996774 +vt 0.006649 0.996774 +vt 0.000199 0.987097 +vt 0.000789 0.990323 +vt 0.001758 0.990323 +vt 0.003080 0.993548 +vt 0.004724 0.996774 +vt 0.986394 1.000000 +vt 0.988855 1.000000 +vt 0.991193 0.996774 +vt 0.993351 0.996774 +vt 0.995276 0.996774 +vt 0.996920 0.993548 +vt 0.999801 0.987097 +vt 0.998242 0.990323 +vt 0.999211 0.990323 +vt 0.000000 0.016129 +vt 0.016129 0.000000 +vt 0.013606 0.000000 +vt 0.011145 0.000000 +vt 0.008807 0.003226 +vt 0.006649 0.003226 +vt 0.004724 0.003226 +vt 0.003080 0.006452 +vt 0.001758 0.009677 +vt 0.000789 0.009677 +vt 0.000199 0.012903 +vt 0.983871 0.000000 +vt 0.986394 0.000000 +vt 0.988855 0.000000 +vt 0.991193 0.003226 +vt 0.993351 0.003226 +vt 0.995276 0.003226 +vt 0.996920 0.006452 +vt 0.999801 0.012903 +vt 0.999211 0.009677 +vt 0.998242 0.009677 + +usemtl Mat_0 +f 3/34 64/33 1/24 +f 1/24 64/33 65/32 +f 1/24 65/32 66/31 +f 66/31 62/30 1/24 +f 1/24 62/30 5/29 +f 1/24 5/29 49/28 +f 49/28 50/27 1/24 +f 1/24 50/27 9/26 +f 1/24 9/26 51/25 +f 55/3 1/24 51/25 +f 51/25 46/35 55/3 +f 55/3 46/35 47/36 +f 55/3 47/36 12/37 +f 12/37 15/38 55/3 +f 55/3 15/38 16/39 +f 55/3 16/39 52/40 +f 52/40 18/41 55/3 +f 18/41 54/42 55/3 +f 20/44 53/43 18/41 +f 37/9 68/10 43/2 +f 43/2 61/8 37/9 +f 63/13 37/9 38/14 +f 67/12 41/11 37/9 +f 43/2 48/5 35/6 +f 35/6 60/7 43/2 +f 43/2 33/4 48/5 +f 58/1 33/4 43/2 +f 58/1 43/2 55/3 +f 59/15 33/4 58/1 +f 58/1 31/16 59/15 +f 56/21 26/20 58/1 +f 58/1 26/20 57/19 +f 58/1 57/19 29/18 +f 29/18 30/17 58/1 +f 56/21 24/22 26/20 +f 23/23 24/22 56/21 +f 58/1 30/17 31/16 +f 67/12 37/9 63/13 +f 43/2 60/7 61/8 +f 37/9 41/11 68/10 +f 18/41 53/43 54/42 +f 55/3 43/2 1/24 + diff --git a/resources/meshes/Hellbot_Magna_SE_Pro.obj b/resources/meshes/Hellbot_Magna_SE_Pro.obj new file mode 100644 index 0000000000..3ccafd05a5 --- /dev/null +++ b/resources/meshes/Hellbot_Magna_SE_Pro.obj @@ -0,0 +1,924 @@ +# Exported from 3D Builder +mtllib Hellbot_Magna_SE_Pro.mtl + +o Object.1 +v 112.500000 117.499786 1.999997 188 188 188 +v -112.500008 117.499786 1.999997 188 188 188 +v -117.500000 112.499794 0.000008 188 188 188 +v -112.500008 117.499786 0.000000 188 188 188 +v -71.801117 -118.044769 0.000402 188 188 188 +v -71.132141 -118.454727 0.000402 188 188 188 +v -70.535538 -118.964279 0.000403 188 188 188 +v 71.321274 -118.163330 0.000402 188 188 188 +v 72.108124 -117.798447 0.000401 188 188 188 +v 72.946182 -117.575027 2.000398 188 188 188 +v 73.810242 -117.499802 2.000398 188 188 188 +v 73.810242 -117.499802 0.000401 188 188 188 +v 117.500000 -112.499817 0.000392 188 188 188 +v 117.438446 -113.281998 0.000393 188 188 188 +v 112.500000 -117.499802 0.000401 188 188 188 +v 117.438446 -113.281998 2.000391 188 188 188 +v 117.500000 -112.499817 2.000390 188 188 188 +v 117.500000 112.499794 0.000008 188 188 188 +v 117.500000 112.499794 2.000005 188 188 188 +v 117.438446 113.281960 0.000007 188 188 188 +v 117.438446 113.281960 2.000005 188 188 188 +v 117.255280 114.044876 2.000002 188 188 188 +v 116.955032 114.769745 0.000005 188 188 188 +v 116.955032 114.769745 2.000001 188 188 188 +v 116.545074 115.438713 2.000000 188 188 188 +v 116.035522 116.035316 2.000000 188 188 188 +v 116.035522 116.035316 0.000002 188 188 188 +v 115.438919 116.544868 0.000001 188 188 188 +v 115.438919 116.544868 1.999998 188 188 188 +v 114.769943 116.954811 0.000001 188 188 188 +v 114.045090 117.255066 1.999997 188 188 188 +v 114.769943 116.954819 1.999997 188 188 188 +v 113.282166 117.438225 0.000000 188 188 188 +v 71.321274 -118.163330 2.000400 188 188 188 +v 58.189739 -127.499786 0.000418 188 188 188 +v 70.609329 -118.658691 0.000403 188 188 188 +v 60.678722 -126.836258 0.000417 188 188 188 +v 59.891872 -127.201157 0.000417 188 188 188 +v 61.390667 -126.340897 0.000416 188 188 188 +v 61.390667 -126.340897 2.000413 188 188 188 +v -114.769958 116.954819 1.999997 188 188 188 +v -115.438934 116.544868 0.000001 188 188 188 +v -115.438934 116.544868 1.999998 188 188 188 +v -116.035538 116.035316 0.000002 188 188 188 +v -116.545090 115.438713 0.000003 188 188 188 +v -116.545090 115.438713 2.000000 188 188 188 +v -116.955032 114.769745 2.000001 188 188 188 +v -117.255287 114.044876 2.000002 188 188 188 +v -117.438446 113.281960 0.000007 188 188 188 +v -117.255287 114.044876 0.000005 188 188 188 +v -117.438446 113.281960 2.000005 188 188 188 +v -117.500000 112.499794 2.000005 188 188 188 +v -116.955032 114.769745 0.000005 188 188 188 +v -116.035538 116.035316 2.000000 188 188 188 +v -114.045090 117.255066 1.999997 188 188 188 +v -114.769958 116.954811 0.000001 188 188 188 +v -117.500000 -112.499817 2.000390 188 188 188 +v -117.500000 -112.499817 0.000392 188 188 188 +v -117.438446 -113.281998 0.000393 188 188 188 +v -117.438446 -113.281998 2.000391 188 188 188 +v -117.255287 -114.044907 0.000395 188 188 188 +v -74.071075 -117.499802 0.000401 188 188 188 +v -116.955032 -114.769775 2.000393 188 188 188 +v -117.255287 -114.044907 2.000392 188 188 188 +v -116.545090 -115.438751 2.000395 188 188 188 +v -116.035538 -116.035355 0.000398 188 188 188 +v -116.545090 -115.438751 0.000397 188 188 188 +v -116.035538 -116.035355 2.000396 188 188 188 +v -115.438934 -116.544891 0.000399 188 188 188 +v -115.438934 -116.544891 2.000396 188 188 188 +v -114.769958 -116.954834 2.000397 188 188 188 +v -114.769958 -116.954834 0.000400 188 188 188 +v -114.045090 -117.255081 0.000400 188 188 188 +v -113.282173 -117.438248 0.000401 188 188 188 +v -113.282173 -117.438248 2.000398 188 188 188 +v -114.045090 -117.255081 2.000397 188 188 188 +v -112.500008 -117.499802 0.000401 188 188 188 +v -112.500008 -117.499802 2.000398 188 188 188 +v -74.071075 -117.499802 2.000398 188 188 188 +v -116.955032 -114.769775 0.000396 188 188 188 +v -73.288895 -117.561371 2.000398 188 188 188 +v -72.525986 -117.744522 2.000398 188 188 188 +v -71.801117 -118.044769 2.000398 188 188 188 +v -70.535538 -118.964279 2.000401 188 188 188 +v -71.132141 -118.454727 2.000400 188 188 188 +v -63.464474 -126.035324 2.000412 188 188 188 +v -62.198891 -126.954819 0.000417 188 188 188 +v -62.867863 -126.544876 2.000413 188 188 188 +v -61.474022 -127.255066 0.000417 188 188 188 +v -62.198891 -126.954819 2.000414 188 188 188 +v -59.928940 -127.499786 0.000418 188 188 188 +v -60.711113 -127.438232 0.000418 188 188 188 +v -60.711113 -127.438232 2.000414 188 188 188 +v -61.474022 -127.255066 2.000414 188 188 188 +v -59.928940 -127.499786 2.000416 188 188 188 +v 58.189739 -127.499786 2.000416 188 188 188 +v 59.053814 -127.424561 2.000414 188 188 188 +v 59.891872 -127.201157 2.000414 188 188 188 +v 60.678722 -126.836258 2.000413 188 188 188 +v 59.053814 -127.424561 0.000418 188 188 188 +v -62.867863 -126.544876 0.000416 188 188 188 +v 70.609329 -118.658691 2.000400 188 188 188 +v 114.045090 117.255066 0.000000 188 188 188 +v 116.545074 115.438713 0.000003 188 188 188 +v 117.255280 114.044876 0.000005 188 188 188 +v 117.255280 -114.044907 2.000392 188 188 188 +v 116.955032 -114.769775 2.000393 188 188 188 +v 113.282166 -117.438248 0.000401 188 188 188 +v 114.769943 -116.954834 0.000400 188 188 188 +v 116.955032 -114.769775 0.000396 188 188 188 +v 116.545074 -115.438751 2.000395 188 188 188 +v 116.035522 -116.035355 2.000396 188 188 188 +v 115.438919 -116.544891 2.000396 188 188 188 +v 116.035522 -116.035355 0.000398 188 188 188 +v 114.769943 -116.954834 2.000397 188 188 188 +v 114.045090 -117.255081 2.000397 188 188 188 +v 113.282166 -117.438248 2.000398 188 188 188 +v 114.045090 -117.255081 0.000400 188 188 188 +v 112.500000 -117.499802 2.000398 188 188 188 +v 115.438919 -116.544891 0.000399 188 188 188 +v 116.545074 -115.438751 0.000397 188 188 188 +v 117.255280 -114.044907 0.000395 188 188 188 +v 72.108124 -117.798447 2.000398 188 188 188 +v -63.464474 -126.035324 0.000415 188 188 188 +v -72.525986 -117.744522 0.000401 188 188 188 +v -73.288895 -117.561371 0.000401 188 188 188 +v -114.045090 117.255066 0.000000 188 188 188 +v -113.282173 117.438225 1.999997 188 188 188 +v -113.282173 117.438225 0.000000 188 188 188 +v 72.946182 -117.575027 0.000401 188 188 188 +v 113.282166 117.438225 1.999997 188 188 188 +v 112.500000 117.499786 0.000000 188 188 188 + +v 112.500000 117.499786 1.999997 188 188 188 +v -112.500008 117.499786 0.000000 188 188 188 +v -112.500008 117.499786 1.999997 188 188 188 +v -112.500008 117.499786 0.000000 188 188 188 +v -113.282173 117.438225 0.000000 188 188 188 +v -112.500008 117.499786 0.000000 188 188 188 +v -117.500000 112.499794 0.000008 188 188 188 +v -112.500008 117.499786 0.000000 188 188 188 +v -117.500000 -112.499817 0.000392 188 188 188 +v -112.500008 117.499786 0.000000 188 188 188 +v -74.071075 -117.499802 0.000401 188 188 188 +v -112.500008 117.499786 0.000000 188 188 188 +v -73.288895 -117.561371 0.000401 188 188 188 +v -112.500008 117.499786 0.000000 188 188 188 +v -72.525986 -117.744522 0.000401 188 188 188 +v -112.500008 117.499786 0.000000 188 188 188 +v -71.801117 -118.044769 0.000402 188 188 188 +v -112.500008 117.499786 0.000000 188 188 188 +v -71.132141 -118.454727 0.000402 188 188 188 +v -112.500008 117.499786 0.000000 188 188 188 +v -70.535538 -118.964279 0.000403 188 188 188 +v -112.500008 117.499786 0.000000 188 188 188 +v 71.321274 -118.163330 0.000402 188 188 188 +v -112.500008 117.499786 0.000000 188 188 188 +v 72.108124 -117.798447 0.000401 188 188 188 +v -112.500008 117.499786 0.000000 188 188 188 +v 72.108124 -117.798447 0.000401 188 188 188 +v 72.946182 -117.575027 0.000401 188 188 188 +v 72.946182 -117.575027 2.000398 188 188 188 +v 72.946182 -117.575027 0.000401 188 188 188 +v 73.810242 -117.499802 2.000398 188 188 188 +v 72.946182 -117.575027 0.000401 188 188 188 +v 73.810242 -117.499802 2.000398 188 188 188 +v 73.810242 -117.499802 0.000401 188 188 188 +v 112.500000 -117.499802 0.000401 188 188 188 +v 73.810242 -117.499802 0.000401 188 188 188 +v 112.500000 -117.499802 0.000401 188 188 188 +v 117.500000 -112.499817 0.000392 188 188 188 +v 117.438446 -113.281998 0.000393 188 188 188 +v 117.500000 -112.499817 0.000392 188 188 188 +v 117.438446 -113.281998 2.000391 188 188 188 +v 117.500000 -112.499817 0.000392 188 188 188 +v 117.500000 -112.499817 2.000390 188 188 188 +v 117.500000 -112.499817 0.000392 188 188 188 +v 117.500000 -112.499817 2.000390 188 188 188 +v 117.500000 112.499794 0.000008 188 188 188 +v 117.500000 112.499794 2.000005 188 188 188 +v 117.500000 112.499794 0.000008 188 188 188 +v 117.500000 112.499794 2.000005 188 188 188 +v 117.438446 113.281960 0.000007 188 188 188 +v 117.438446 113.281960 2.000005 188 188 188 +v 117.438446 113.281960 0.000007 188 188 188 +v 117.438446 113.281960 2.000005 188 188 188 +v 117.255280 114.044876 0.000005 188 188 188 +v 117.255280 114.044876 2.000002 188 188 188 +v 117.255280 114.044876 0.000005 188 188 188 +v 117.255280 114.044876 2.000002 188 188 188 +v 116.955032 114.769745 0.000005 188 188 188 +v 116.955032 114.769745 2.000001 188 188 188 +v 116.955032 114.769745 0.000005 188 188 188 +v 116.955032 114.769745 2.000001 188 188 188 +v 116.545074 115.438713 0.000003 188 188 188 +v 116.545074 115.438713 2.000000 188 188 188 +v 116.545074 115.438713 0.000003 188 188 188 +v 116.545074 115.438713 2.000000 188 188 188 +v 116.035522 116.035316 0.000002 188 188 188 +v 116.035522 116.035316 2.000000 188 188 188 +v 116.035522 116.035316 0.000002 188 188 188 +v 116.035522 116.035316 2.000000 188 188 188 +v 115.438919 116.544868 0.000001 188 188 188 +v 115.438919 116.544868 1.999998 188 188 188 +v 115.438919 116.544868 0.000001 188 188 188 +v 115.438919 116.544868 1.999998 188 188 188 +v 114.769943 116.954811 0.000001 188 188 188 +v 114.769943 116.954819 1.999997 188 188 188 +v 114.769943 116.954811 0.000001 188 188 188 +v 114.769943 116.954819 1.999997 188 188 188 +v 114.045090 117.255066 0.000000 188 188 188 +v 114.045090 117.255066 1.999997 188 188 188 +v 114.045090 117.255066 0.000000 188 188 188 +v 114.045090 117.255066 1.999997 188 188 188 +v 113.282166 117.438225 0.000000 188 188 188 +v 113.282166 117.438225 1.999997 188 188 188 +v 113.282166 117.438225 0.000000 188 188 188 +v 112.500000 117.499786 0.000000 188 188 188 +v 71.321274 -118.163330 0.000402 188 188 188 +v 71.321274 -118.163330 2.000400 188 188 188 +v 71.321274 -118.163330 0.000402 188 188 188 +v 70.609329 -118.658691 0.000403 188 188 188 +v 71.321274 -118.163330 0.000402 188 188 188 +v -63.464474 -126.035324 0.000415 188 188 188 +v 70.609329 -118.658691 0.000403 188 188 188 +v -59.928940 -127.499786 0.000418 188 188 188 +v 70.609329 -118.658691 0.000403 188 188 188 +v 58.189739 -127.499786 0.000418 188 188 188 +v 70.609329 -118.658691 0.000403 188 188 188 +v 59.053814 -127.424561 0.000418 188 188 188 +v 70.609329 -118.658691 0.000403 188 188 188 +v 59.891872 -127.201157 0.000417 188 188 188 +v 70.609329 -118.658691 0.000403 188 188 188 +v 60.678722 -126.836258 0.000417 188 188 188 +v 70.609329 -118.658691 0.000403 188 188 188 +v 61.390667 -126.340897 0.000416 188 188 188 +v 70.609329 -118.658691 0.000403 188 188 188 +v 61.390667 -126.340897 2.000413 188 188 188 +v 70.609329 -118.658691 0.000403 188 188 188 +v -114.045090 117.255066 1.999997 188 188 188 +v -114.045090 117.255066 0.000000 188 188 188 +v -117.500000 112.499794 0.000008 188 188 188 +v -114.769958 116.954811 0.000001 188 188 188 +v -114.045090 117.255066 0.000000 188 188 188 +v -117.500000 112.499794 0.000008 188 188 188 +v -114.769958 116.954811 0.000001 188 188 188 +v -115.438934 116.544868 0.000001 188 188 188 +v -114.769958 116.954811 0.000001 188 188 188 +v -114.769958 116.954819 1.999997 188 188 188 +v -115.438934 116.544868 0.000001 188 188 188 +v -115.438934 116.544868 1.999998 188 188 188 +v -115.438934 116.544868 0.000001 188 188 188 +v -115.438934 116.544868 1.999998 188 188 188 +v -116.035538 116.035316 0.000002 188 188 188 +v -116.035538 116.035316 2.000000 188 188 188 +v -116.035538 116.035316 0.000002 188 188 188 +v -117.500000 112.499794 0.000008 188 188 188 +v -116.545090 115.438713 0.000003 188 188 188 +v -116.035538 116.035316 0.000002 188 188 188 +v -117.500000 112.499794 0.000008 188 188 188 +v -116.545090 115.438713 0.000003 188 188 188 +v -116.955032 114.769745 0.000005 188 188 188 +v -116.545090 115.438713 0.000003 188 188 188 +v -116.545090 115.438713 2.000000 188 188 188 +v -116.955032 114.769745 0.000005 188 188 188 +v -116.955032 114.769745 2.000001 188 188 188 +v -116.955032 114.769745 0.000005 188 188 188 +v -116.955032 114.769745 2.000001 188 188 188 +v -117.255287 114.044876 0.000005 188 188 188 +v -117.255287 114.044876 2.000002 188 188 188 +v -117.255287 114.044876 0.000005 188 188 188 +v -117.500000 112.499794 0.000008 188 188 188 +v -117.438446 113.281960 0.000007 188 188 188 +v -117.255287 114.044876 0.000005 188 188 188 +v -117.500000 112.499794 0.000008 188 188 188 +v -117.438446 113.281960 0.000007 188 188 188 +v -117.438446 113.281960 2.000005 188 188 188 +v -117.500000 112.499794 0.000008 188 188 188 +v -117.438446 113.281960 2.000005 188 188 188 +v -117.255287 114.044876 2.000002 188 188 188 +v -117.438446 113.281960 0.000007 188 188 188 +v -117.500000 112.499794 0.000008 188 188 188 +v -117.255287 114.044876 0.000005 188 188 188 +v -116.955032 114.769745 0.000005 188 188 188 +v -116.545090 115.438713 2.000000 188 188 188 +v -116.035538 116.035316 2.000000 188 188 188 +v -116.545090 115.438713 0.000003 188 188 188 +v -117.500000 112.499794 0.000008 188 188 188 +v -116.035538 116.035316 0.000002 188 188 188 +v -115.438934 116.544868 0.000001 188 188 188 +v -114.769958 116.954819 1.999997 188 188 188 +v -114.045090 117.255066 1.999997 188 188 188 +v -114.769958 116.954811 0.000001 188 188 188 +v -114.045090 117.255066 0.000000 188 188 188 +v -113.282173 117.438225 1.999997 188 188 188 +v -113.282173 117.438225 0.000000 188 188 188 +v -117.500000 112.499794 2.000005 188 188 188 +v -117.500000 -112.499817 0.000392 188 188 188 +v -117.500000 -112.499817 2.000390 188 188 188 +v -117.500000 -112.499817 0.000392 188 188 188 +v -117.500000 -112.499817 2.000390 188 188 188 +v -117.438446 -113.281998 0.000393 188 188 188 +v -117.438446 -113.281998 2.000391 188 188 188 +v -117.438446 -113.281998 0.000393 188 188 188 +v -74.071075 -117.499802 0.000401 188 188 188 +v -117.255287 -114.044907 0.000395 188 188 188 +v -117.438446 -113.281998 0.000393 188 188 188 +v -74.071075 -117.499802 0.000401 188 188 188 +v -117.255287 -114.044907 0.000395 188 188 188 +v -116.955032 -114.769775 0.000396 188 188 188 +v -117.255287 -114.044907 0.000395 188 188 188 +v -117.255287 -114.044907 2.000392 188 188 188 +v -116.955032 -114.769775 0.000396 188 188 188 +v -116.955032 -114.769775 2.000393 188 188 188 +v -116.955032 -114.769775 0.000396 188 188 188 +v -116.955032 -114.769775 2.000393 188 188 188 +v -116.545090 -115.438751 0.000397 188 188 188 +v -116.545090 -115.438751 2.000395 188 188 188 +v -116.545090 -115.438751 0.000397 188 188 188 +v -74.071075 -117.499802 0.000401 188 188 188 +v -116.035538 -116.035355 0.000398 188 188 188 +v -116.545090 -115.438751 0.000397 188 188 188 +v -74.071075 -117.499802 0.000401 188 188 188 +v -116.035538 -116.035355 0.000398 188 188 188 +v -115.438934 -116.544891 0.000399 188 188 188 +v -116.035538 -116.035355 0.000398 188 188 188 +v -116.035538 -116.035355 2.000396 188 188 188 +v -115.438934 -116.544891 0.000399 188 188 188 +v -115.438934 -116.544891 2.000396 188 188 188 +v -115.438934 -116.544891 0.000399 188 188 188 +v -115.438934 -116.544891 2.000396 188 188 188 +v -114.769958 -116.954834 0.000400 188 188 188 +v -114.769958 -116.954834 2.000397 188 188 188 +v -114.769958 -116.954834 0.000400 188 188 188 +v -74.071075 -117.499802 0.000401 188 188 188 +v -114.045090 -117.255081 0.000400 188 188 188 +v -114.769958 -116.954834 0.000400 188 188 188 +v -74.071075 -117.499802 0.000401 188 188 188 +v -114.045090 -117.255081 0.000400 188 188 188 +v -112.500008 -117.499802 0.000401 188 188 188 +v -114.045090 -117.255081 0.000400 188 188 188 +v -113.282173 -117.438248 0.000401 188 188 188 +v -114.045090 -117.255081 0.000400 188 188 188 +v -114.045090 -117.255081 2.000397 188 188 188 +v -113.282173 -117.438248 0.000401 188 188 188 +v -113.282173 -117.438248 2.000398 188 188 188 +v -112.500008 -117.499802 0.000401 188 188 188 +v -112.500008 -117.499802 0.000401 188 188 188 +v -113.282173 -117.438248 2.000398 188 188 188 +v -113.282173 -117.438248 0.000401 188 188 188 +v -74.071075 -117.499802 0.000401 188 188 188 +v -112.500008 -117.499802 2.000398 188 188 188 +v -112.500008 -117.499802 0.000401 188 188 188 +v -112.500008 -117.499802 2.000398 188 188 188 +v -74.071075 -117.499802 0.000401 188 188 188 +v -114.045090 -117.255081 2.000397 188 188 188 +v -114.769958 -116.954834 2.000397 188 188 188 +v -114.045090 -117.255081 0.000400 188 188 188 +v -74.071075 -117.499802 0.000401 188 188 188 +v -114.769958 -116.954834 0.000400 188 188 188 +v -115.438934 -116.544891 0.000399 188 188 188 +v -116.035538 -116.035355 2.000396 188 188 188 +v -116.545090 -115.438751 2.000395 188 188 188 +v -116.035538 -116.035355 0.000398 188 188 188 +v -74.071075 -117.499802 0.000401 188 188 188 +v -116.545090 -115.438751 0.000397 188 188 188 +v -116.955032 -114.769775 0.000396 188 188 188 +v -117.255287 -114.044907 2.000392 188 188 188 +v -117.438446 -113.281998 2.000391 188 188 188 +v -117.255287 -114.044907 0.000395 188 188 188 +v -74.071075 -117.499802 2.000398 188 188 188 +v -74.071075 -117.499802 0.000401 188 188 188 +v -73.288895 -117.561371 2.000398 188 188 188 +v -73.288895 -117.561371 0.000401 188 188 188 +v -72.525986 -117.744522 2.000398 188 188 188 +v -72.525986 -117.744522 0.000401 188 188 188 +v -71.801117 -118.044769 2.000398 188 188 188 +v -71.801117 -118.044769 0.000402 188 188 188 +v -71.132141 -118.454727 2.000400 188 188 188 +v -71.132141 -118.454727 0.000402 188 188 188 +v -70.535538 -118.964279 2.000401 188 188 188 +v -63.464474 -126.035324 0.000415 188 188 188 +v -63.464474 -126.035324 2.000412 188 188 188 +v -63.464474 -126.035324 0.000415 188 188 188 +v -63.464474 -126.035324 0.000415 188 188 188 +v -70.535538 -118.964279 2.000401 188 188 188 +v -70.535538 -118.964279 0.000403 188 188 188 +v -63.464474 -126.035324 2.000412 188 188 188 +v -62.867863 -126.544876 0.000416 188 188 188 +v -62.867863 -126.544876 2.000413 188 188 188 +v -62.867863 -126.544876 0.000416 188 188 188 +v -59.928940 -127.499786 0.000418 188 188 188 +v -62.198891 -126.954819 0.000417 188 188 188 +v -62.867863 -126.544876 0.000416 188 188 188 +v -59.928940 -127.499786 0.000418 188 188 188 +v -62.198891 -126.954819 0.000417 188 188 188 +v -61.474022 -127.255066 0.000417 188 188 188 +v -62.198891 -126.954819 0.000417 188 188 188 +v -59.928940 -127.499786 0.000418 188 188 188 +v -61.474022 -127.255066 0.000417 188 188 188 +v -60.711113 -127.438232 0.000418 188 188 188 +v -61.474022 -127.255066 0.000417 188 188 188 +v -59.928940 -127.499786 0.000418 188 188 188 +v -60.711113 -127.438232 0.000418 188 188 188 +v -62.198891 -126.954819 2.000414 188 188 188 +v -62.867863 -126.544876 2.000413 188 188 188 +v -62.198891 -126.954819 0.000417 188 188 188 +v -61.474022 -127.255066 2.000414 188 188 188 +v -62.198891 -126.954819 2.000414 188 188 188 +v -61.474022 -127.255066 0.000417 188 188 188 +v -60.711113 -127.438232 2.000414 188 188 188 +v -61.474022 -127.255066 2.000414 188 188 188 +v -60.711113 -127.438232 0.000418 188 188 188 +v -60.711113 -127.438232 2.000414 188 188 188 +v -59.928940 -127.499786 0.000418 188 188 188 +v -59.928940 -127.499786 2.000416 188 188 188 +v 58.189739 -127.499786 0.000418 188 188 188 +v 58.189739 -127.499786 2.000416 188 188 188 +v 59.053814 -127.424561 0.000418 188 188 188 +v 59.053814 -127.424561 2.000414 188 188 188 +v 59.891872 -127.201157 0.000417 188 188 188 +v 59.891872 -127.201157 2.000414 188 188 188 +v 60.678722 -126.836258 0.000417 188 188 188 +v 61.390667 -126.340897 2.000413 188 188 188 +v 60.678722 -126.836258 2.000413 188 188 188 +v 61.390667 -126.340897 0.000416 188 188 188 +v 60.678722 -126.836258 2.000413 188 188 188 +v 60.678722 -126.836258 0.000417 188 188 188 +v 61.390667 -126.340897 0.000416 188 188 188 +v 59.891872 -127.201157 2.000414 188 188 188 +v 59.891872 -127.201157 0.000417 188 188 188 +v 60.678722 -126.836258 0.000417 188 188 188 +v 59.053814 -127.424561 2.000414 188 188 188 +v 59.053814 -127.424561 0.000418 188 188 188 +v 59.891872 -127.201157 0.000417 188 188 188 +v 58.189739 -127.499786 2.000416 188 188 188 +v 58.189739 -127.499786 0.000418 188 188 188 +v 59.053814 -127.424561 0.000418 188 188 188 +v 58.189739 -127.499786 0.000418 188 188 188 +v -59.928940 -127.499786 2.000416 188 188 188 +v -59.928940 -127.499786 0.000418 188 188 188 +v -59.928940 -127.499786 0.000418 188 188 188 +v -62.867863 -126.544876 0.000416 188 188 188 +v -63.464474 -126.035324 0.000415 188 188 188 +v 71.321274 -118.163330 2.000400 188 188 188 +v 70.609329 -118.658691 2.000400 188 188 188 +v 70.609329 -118.658691 0.000403 188 188 188 +v 113.282166 117.438225 0.000000 188 188 188 +v 114.045090 117.255066 0.000000 188 188 188 +v 112.500000 117.499786 0.000000 188 188 188 +v 114.045090 117.255066 0.000000 188 188 188 +v 114.769943 116.954811 0.000001 188 188 188 +v 112.500000 117.499786 0.000000 188 188 188 +v 114.769943 116.954811 0.000001 188 188 188 +v 115.438919 116.544868 0.000001 188 188 188 +v 112.500000 117.499786 0.000000 188 188 188 +v 115.438919 116.544868 0.000001 188 188 188 +v 116.035522 116.035316 0.000002 188 188 188 +v 112.500000 117.499786 0.000000 188 188 188 +v 116.035522 116.035316 0.000002 188 188 188 +v 116.545074 115.438713 0.000003 188 188 188 +v 112.500000 117.499786 0.000000 188 188 188 +v 116.545074 115.438713 0.000003 188 188 188 +v 116.955032 114.769745 0.000005 188 188 188 +v 112.500000 117.499786 0.000000 188 188 188 +v 116.955032 114.769745 0.000005 188 188 188 +v 117.255280 114.044876 0.000005 188 188 188 +v 112.500000 117.499786 0.000000 188 188 188 +v 117.255280 114.044876 0.000005 188 188 188 +v 117.438446 113.281960 0.000007 188 188 188 +v 112.500000 117.499786 0.000000 188 188 188 +v 117.438446 113.281960 0.000007 188 188 188 +v 117.500000 112.499794 0.000008 188 188 188 +v 112.500000 117.499786 0.000000 188 188 188 +v 117.500000 112.499794 0.000008 188 188 188 +v 73.810242 -117.499802 0.000401 188 188 188 +v 112.500000 117.499786 0.000000 188 188 188 +v 117.438446 -113.281998 2.000391 188 188 188 +v 117.438446 -113.281998 0.000393 188 188 188 +v 117.255280 -114.044907 2.000392 188 188 188 +v 117.438446 -113.281998 0.000393 188 188 188 +v 117.255280 -114.044907 2.000392 188 188 188 +v 117.255280 -114.044907 0.000395 188 188 188 +v 116.955032 -114.769775 2.000393 188 188 188 +v 117.255280 -114.044907 0.000395 188 188 188 +v 116.955032 -114.769775 0.000396 188 188 188 +v 112.500000 -117.499802 0.000401 188 188 188 +v 117.255280 -114.044907 0.000395 188 188 188 +v 112.500000 -117.499802 0.000401 188 188 188 +v 116.955032 -114.769775 0.000396 188 188 188 +v 113.282166 -117.438248 0.000401 188 188 188 +v 116.955032 -114.769775 0.000396 188 188 188 +v 114.045090 -117.255081 0.000400 188 188 188 +v 116.955032 -114.769775 0.000396 188 188 188 +v 114.769943 -116.954834 0.000400 188 188 188 +v 116.955032 -114.769775 0.000396 188 188 188 +v 116.545074 -115.438751 0.000397 188 188 188 +v 116.955032 -114.769775 0.000396 188 188 188 +v 116.545074 -115.438751 2.000395 188 188 188 +v 116.545074 -115.438751 0.000397 188 188 188 +v 116.035522 -116.035355 2.000396 188 188 188 +v 116.545074 -115.438751 0.000397 188 188 188 +v 116.035522 -116.035355 2.000396 188 188 188 +v 116.035522 -116.035355 0.000398 188 188 188 +v 115.438919 -116.544891 2.000396 188 188 188 +v 116.035522 -116.035355 0.000398 188 188 188 +v 115.438919 -116.544891 0.000399 188 188 188 +v 114.769943 -116.954834 0.000400 188 188 188 +v 116.035522 -116.035355 0.000398 188 188 188 +v 114.769943 -116.954834 0.000400 188 188 188 +v 115.438919 -116.544891 0.000399 188 188 188 +v 114.769943 -116.954834 2.000397 188 188 188 +v 114.769943 -116.954834 0.000400 188 188 188 +v 114.045090 -117.255081 2.000397 188 188 188 +v 114.045090 -117.255081 0.000400 188 188 188 +v 113.282166 -117.438248 2.000398 188 188 188 +v 113.282166 -117.438248 0.000401 188 188 188 +v 115.438919 -116.544891 2.000396 188 188 188 +v 114.769943 -116.954834 2.000397 188 188 188 +v 115.438919 -116.544891 0.000399 188 188 188 +v 116.035522 -116.035355 0.000398 188 188 188 +v 114.769943 -116.954834 0.000400 188 188 188 +v 116.545074 -115.438751 0.000397 188 188 188 +v 114.045090 -117.255081 2.000397 188 188 188 +v 114.045090 -117.255081 0.000400 188 188 188 +v 114.769943 -116.954834 0.000400 188 188 188 +v 113.282166 -117.438248 2.000398 188 188 188 +v 113.282166 -117.438248 0.000401 188 188 188 +v 114.045090 -117.255081 0.000400 188 188 188 +v 112.500000 -117.499802 2.000398 188 188 188 +v 112.500000 -117.499802 0.000401 188 188 188 +v 113.282166 -117.438248 0.000401 188 188 188 +v 116.955032 -114.769775 2.000393 188 188 188 +v 116.545074 -115.438751 2.000395 188 188 188 +v 116.955032 -114.769775 0.000396 188 188 188 +v 117.255280 -114.044907 0.000395 188 188 188 +v 112.500000 -117.499802 0.000401 188 188 188 +v 117.438446 -113.281998 0.000393 188 188 188 +v 117.500000 -112.499817 0.000392 188 188 188 +v 73.810242 -117.499802 0.000401 188 188 188 +v 117.500000 112.499794 0.000008 188 188 188 +v 112.500000 -117.499802 2.000398 188 188 188 +v 73.810242 -117.499802 2.000398 188 188 188 +v 112.500000 -117.499802 0.000401 188 188 188 +v 73.810242 -117.499802 0.000401 188 188 188 +v 72.946182 -117.575027 0.000401 188 188 188 +v 112.500000 117.499786 0.000000 188 188 188 +v 72.946182 -117.575027 2.000398 188 188 188 +v 72.108124 -117.798447 2.000398 188 188 188 +v 72.108124 -117.798447 0.000401 188 188 188 +v 72.108124 -117.798447 2.000398 188 188 188 +v 71.321274 -118.163330 0.000402 188 188 188 +v 72.108124 -117.798447 0.000401 188 188 188 +v -63.464474 -126.035324 0.000415 188 188 188 +v -70.535538 -118.964279 0.000403 188 188 188 +v 71.321274 -118.163330 0.000402 188 188 188 +v -70.535538 -118.964279 0.000403 188 188 188 +v -70.535538 -118.964279 2.000401 188 188 188 +v -71.132141 -118.454727 0.000402 188 188 188 +v -71.132141 -118.454727 0.000402 188 188 188 +v -71.132141 -118.454727 2.000400 188 188 188 +v -71.801117 -118.044769 0.000402 188 188 188 +v -71.801117 -118.044769 0.000402 188 188 188 +v -71.801117 -118.044769 2.000398 188 188 188 +v -72.525986 -117.744522 0.000401 188 188 188 +v -72.525986 -117.744522 0.000401 188 188 188 +v -72.525986 -117.744522 2.000398 188 188 188 +v -73.288895 -117.561371 0.000401 188 188 188 +v -73.288895 -117.561371 0.000401 188 188 188 +v -73.288895 -117.561371 2.000398 188 188 188 +v -74.071075 -117.499802 0.000401 188 188 188 +v -74.071075 -117.499802 0.000401 188 188 188 +v -117.438446 -113.281998 0.000393 188 188 188 +v -117.500000 -112.499817 0.000392 188 188 188 +v -117.500000 -112.499817 0.000392 188 188 188 +v -117.500000 112.499794 2.000005 188 188 188 +v -117.500000 112.499794 0.000008 188 188 188 +v -117.500000 112.499794 0.000008 188 188 188 +v -114.045090 117.255066 0.000000 188 188 188 +v -113.282173 117.438225 0.000000 188 188 188 +v -113.282173 117.438225 1.999997 188 188 188 +v -112.500008 117.499786 1.999997 188 188 188 +v -113.282173 117.438225 0.000000 188 188 188 +v 112.500000 117.499786 0.000000 188 188 188 +v 72.946182 -117.575027 0.000401 188 188 188 +v -112.500008 117.499786 0.000000 188 188 188 +v 112.500000 117.499786 1.999997 188 188 188 +v 113.282166 117.438225 1.999997 188 188 188 +v 112.500000 117.499786 0.000000 188 188 188 + +f 1 132 4 +f 2 133 134 +f 129 135 136 +f 3 137 138 +f 58 139 140 +f 62 141 142 +f 126 143 144 +f 125 145 146 +f 5 147 148 +f 6 149 150 +f 7 151 152 +f 8 153 154 +f 9 155 156 +f 130 157 158 +f 10 159 160 +f 11 161 162 +f 163 164 12 +f 15 165 166 +f 167 168 13 +f 14 169 170 +f 16 171 172 +f 17 173 174 +f 175 176 18 +f 19 177 178 +f 179 180 20 +f 21 181 182 +f 183 184 105 +f 22 185 186 +f 187 188 23 +f 24 189 190 +f 191 192 104 +f 25 193 194 +f 195 196 27 +f 26 197 198 +f 199 200 28 +f 29 201 202 +f 203 204 30 +f 32 205 206 +f 207 208 103 +f 31 209 210 +f 211 212 33 +f 131 213 214 +f 215 216 217 +f 123 34 218 +f 219 36 220 +f 221 124 222 +f 91 223 224 +f 35 225 226 +f 100 227 228 +f 38 229 230 +f 37 231 232 +f 39 233 234 +f 40 235 236 +f 102 237 238 +f 55 128 127 +f 56 239 240 +f 241 242 243 +f 244 42 245 +f 246 41 247 +f 43 248 249 +f 44 250 251 +f 54 252 253 +f 45 254 255 +f 256 257 258 +f 259 53 260 +f 261 46 262 +f 47 263 264 +f 50 265 266 +f 48 267 268 +f 49 269 270 +f 271 272 273 +f 274 51 275 +f 52 276 277 +f 278 279 280 +f 281 282 283 +f 284 285 286 +f 287 288 289 +f 290 291 292 +f 293 294 295 +f 57 296 297 +f 59 298 299 +f 60 300 301 +f 61 302 303 +f 304 305 306 +f 307 80 308 +f 309 64 310 +f 63 311 312 +f 67 313 314 +f 65 315 316 +f 66 317 318 +f 319 320 321 +f 322 69 323 +f 324 68 325 +f 70 326 327 +f 72 328 329 +f 71 330 331 +f 73 332 333 +f 334 335 336 +f 337 77 338 +f 339 74 340 +f 341 76 342 +f 75 343 344 +f 78 345 346 +f 347 348 349 +f 350 351 352 +f 79 353 354 +f 355 356 357 +f 358 359 360 +f 361 362 363 +f 364 365 366 +f 367 368 369 +f 81 370 371 +f 82 372 373 +f 83 374 375 +f 85 376 377 +f 84 378 379 +f 86 380 381 +f 101 382 383 +f 384 385 386 +f 88 387 388 +f 87 389 390 +f 391 392 393 +f 394 89 395 +f 396 90 397 +f 398 92 399 +f 400 94 401 +f 402 93 403 +f 404 405 406 +f 407 408 409 +f 410 411 412 +f 95 413 414 +f 96 415 416 +f 97 417 418 +f 98 419 420 +f 99 421 422 +f 423 424 425 +f 426 427 428 +f 429 430 431 +f 432 433 434 +f 435 436 437 +f 438 439 440 +f 441 442 443 +f 444 445 446 +f 447 448 449 +f 450 451 452 +f 453 454 455 +f 456 457 458 +f 459 460 461 +f 462 463 464 +f 465 466 467 +f 468 469 470 +f 471 472 473 +f 474 475 476 +f 477 106 478 +f 479 122 480 +f 481 107 482 +f 483 110 484 +f 485 486 487 +f 108 488 489 +f 118 490 491 +f 109 492 493 +f 121 494 495 +f 111 496 497 +f 498 112 499 +f 500 114 501 +f 502 113 503 +f 504 120 505 +f 506 507 508 +f 115 509 510 +f 511 116 512 +f 513 117 514 +f 515 119 516 +f 517 518 519 +f 520 521 522 +f 523 524 525 +f 526 527 528 +f 529 530 531 +f 532 533 534 +f 535 536 537 +f 538 539 540 +f 541 542 543 +f 544 545 546 +f 547 548 549 +f 550 551 552 +f 553 554 555 +f 556 557 558 +f 559 560 561 +f 562 563 564 +f 565 566 567 +f 568 569 570 +f 571 572 573 +f 574 575 576 +f 577 578 579 +f 580 581 582 +f 583 584 585 +f 586 587 588 + +vt 0.203940 0.049153 +vt 0.742257 0.013039 +vt 0.031741 0.991253 +vt 0.745853 0.013339 +vt 0.749342 0.014231 +vt 0.752617 0.015688 +vt 0.755581 0.017666 +vt 0.793954 0.048339 +vt 0.796918 0.050316 +vt 0.968329 0.991253 +vt 0.800193 0.051773 +vt 0.971585 0.991007 +vt 0.974761 0.990276 +vt 0.977778 0.989077 +vt 0.980563 0.987440 +vt 0.983046 0.985405 +vt 0.985167 0.983023 +vt 0.986874 0.980352 +vt 0.988124 0.977458 +vt 0.988886 0.974412 +vt 0.989142 0.971289 +vt 0.803682 0.052665 +vt 0.989142 0.072929 +vt 0.988886 0.069806 +vt 0.807279 0.052966 +vt 0.988124 0.066760 +vt 0.986874 0.063866 +vt 0.985167 0.061195 +vt 0.983046 0.058813 +vt 0.980563 0.056778 +vt 0.977778 0.055142 +vt 0.974761 0.053943 +vt 0.968329 0.052966 +vt 0.971585 0.053211 +vt 0.250574 0.013039 +vt 0.206423 0.047118 +vt 0.247318 0.013284 +vt 0.244143 0.014016 +vt 0.241125 0.015214 +vt 0.238341 0.016851 +vt 0.235857 0.018886 +vt 0.201155 0.050790 +vt 0.198138 0.051989 +vt 0.194962 0.052720 +vt 0.191706 0.052966 +vt 0.010928 0.971289 +vt 0.010928 0.072929 +vt 0.031741 0.052966 +vt 0.011184 0.069806 +vt 0.011947 0.066760 +vt 0.013197 0.063866 +vt 0.014903 0.061195 +vt 0.017024 0.058813 +vt 0.019508 0.056778 +vt 0.022292 0.055142 +vt 0.025310 0.053943 +vt 0.028485 0.053211 +vt 0.028485 0.991007 +vt 0.025310 0.990276 +vt 0.022292 0.989077 +vt 0.019508 0.987440 +vt 0.017024 0.985405 +vt 0.014903 0.983023 +vt 0.013197 0.980352 +vt 0.011947 0.977458 +vt 0.011184 0.974412 + +usemtl Mat_0 +f 123/11 31/13 131/12 +f 123/11 131/12 1/10 +f 34/9 123/11 1/10 +f 40/7 102/8 2/3 +f 99/6 40/7 2/3 +f 98/5 99/6 2/3 +f 97/4 98/5 2/3 +f 96/2 97/4 2/3 +f 85/1 96/2 2/3 +f 83/42 85/1 2/3 +f 82/43 83/42 2/3 +f 81/44 82/43 2/3 +f 79/45 81/44 2/3 +f 52/46 79/45 2/3 +f 128/58 52/46 2/3 +f 55/59 52/46 128/58 +f 51/66 52/46 48/65 +f 48/65 52/46 47/64 +f 47/64 52/46 46/63 +f 46/63 52/46 54/62 +f 54/62 52/46 43/61 +f 43/61 52/46 41/60 +f 41/60 52/46 55/59 +f 57/47 79/45 52/46 +f 75/57 78/48 76/56 +f 76/56 78/48 71/55 +f 71/55 78/48 70/54 +f 70/54 78/48 68/53 +f 68/53 78/48 65/52 +f 65/52 78/48 63/51 +f 63/51 78/48 64/50 +f 64/50 78/48 60/49 +f 60/49 78/48 57/47 +f 78/48 79/45 57/47 +f 95/35 96/2 85/1 +f 84/36 95/35 85/1 +f 93/37 95/35 84/36 +f 94/38 93/37 84/36 +f 90/39 94/38 84/36 +f 88/40 90/39 84/36 +f 86/41 88/40 84/36 +f 102/8 34/9 2/3 +f 123/11 32/14 31/13 +f 123/11 29/15 32/14 +f 123/11 26/16 29/15 +f 123/11 25/17 26/16 +f 123/11 24/18 25/17 +f 123/11 22/19 24/18 +f 123/11 21/20 22/19 +f 123/11 19/21 21/20 +f 123/11 10/22 19/21 +f 10/22 17/23 19/21 +f 10/22 16/24 17/23 +f 11/25 116/32 115/31 +f 11/25 115/31 113/30 +f 11/25 119/33 116/32 +f 119/33 117/34 116/32 +f 11/25 113/30 112/29 +f 11/25 112/29 111/28 +f 11/25 111/28 107/27 +f 11/25 107/27 106/26 +f 11/25 106/26 16/24 +f 10/22 11/25 16/24 +f 34/9 1/10 2/3 + diff --git a/resources/meshes/ankermake_m5_platform.obj b/resources/meshes/ankermake_m5_platform.obj new file mode 100644 index 0000000000..d84dccafd6 --- /dev/null +++ b/resources/meshes/ankermake_m5_platform.obj @@ -0,0 +1,745 @@ +# Exported from 3D Builder +mtllib D:\Documents\Projects\AnkerMake-M5-Profile\5.1\images\AM-M5-bed.mtl + +o Object.1 +v 121.092972 123.154205 -0.102764 +v 119.840958 123.932068 -0.102778 +v 119.840958 123.932068 0.097220 +v 121.092972 123.154205 0.097234 +v 78.657051 -126.525543 0.102253 +v 78.012062 -126.955132 0.102262 +v 78.012062 -126.955139 -0.097736 +v 78.657051 -126.525551 -0.097745 +v -75.704933 -141.014282 -0.097276 +v -75.352928 -141.851379 -0.097260 +v -75.352928 -141.851364 0.102738 +v -75.704933 -141.014282 0.102722 +v -74.881927 -142.616196 -0.097246 +v -74.881927 -142.616180 0.102752 +v 116.994965 124.874573 -0.102794 +v 118.468956 124.512222 -0.102788 +v 115.440956 125.000031 -0.102794 +v 122.205963 122.196655 -0.102746 +v 123.159973 121.079498 -0.102725 +v 123.935974 119.821854 -0.102701 +v 124.513977 118.444763 -0.102674 +v 124.874969 116.966278 -0.102645 +v 124.999969 115.405518 -0.102615 +v 79.364059 -126.202339 0.102246 +v 79.364059 -126.202347 -0.097752 +v -76.946938 -128.027161 0.102464 +v -76.946938 -128.027161 -0.097534 +v -76.547928 -128.674576 -0.097521 +v -76.547928 -128.674561 0.102477 +v 80.123062 -125.999588 0.102241 +v 80.123062 -125.999596 -0.097757 +v 80.924057 -125.929337 -0.097759 +v 80.924057 -125.929329 0.102239 +v 125.000061 -116.334778 -0.098002 +v 124.875061 -117.895561 -0.097971 +v -115.441032 124.999939 -0.102525 +v 75.924065 -140.114868 -0.097471 +v 75.924065 -140.114868 0.102527 +v 75.705070 -141.014221 0.102545 +v 75.705070 -141.014221 -0.097453 +v 74.301064 -143.294632 -0.097406 +v 74.301064 -143.294632 0.102592 +v 73.625069 -143.876816 -0.097394 +v 118.468956 124.512222 0.097210 +v 74.881050 -142.616135 -0.097420 +v 74.881050 -142.616135 0.102578 +v 116.994965 124.874573 0.097204 +v 75.353065 -141.851318 -0.097436 +v 75.353065 -141.851318 0.102562 +v 115.440956 125.000031 0.097204 +v 115.441055 -125.929314 0.102198 +v 115.441055 -125.929321 -0.097800 +v 116.995064 -125.803848 -0.097804 +v 116.995064 -125.803841 0.102194 +v 118.469055 -125.441521 -0.097813 +v 118.469055 -125.441513 0.102185 +v -124.999947 -116.334877 -0.097710 +v -125.000031 115.405426 0.097675 +v -125.000031 115.405418 -0.102323 +v 119.841057 -124.861359 -0.097826 +v 119.841057 -124.861351 0.102172 +v 121.093071 -124.082481 -0.097843 +v 121.093071 -124.082474 0.102155 +v -124.874954 -117.895653 0.102319 +v -124.513947 -119.374130 0.102348 +v -124.999947 -116.334869 0.102288 +v 124.514069 -119.374039 -0.097941 +v 123.936066 -120.751137 -0.097913 +v 123.160065 -122.008789 -0.097887 +v 122.206055 -123.124947 -0.097863 +v 122.206055 -123.124939 0.102135 +v 74.000061 -122.918182 -0.097811 +v -72.999939 -122.918236 -0.097640 +v 123.160065 -122.008789 0.102111 +v 123.936066 -120.751137 0.102085 +v -116.996040 124.874481 0.097477 +v -116.996040 124.874481 -0.102521 +v -118.469032 124.512131 -0.102512 +v -118.469032 124.512131 0.097486 +v 124.514069 -119.374039 0.102057 +v -119.841042 123.931976 -0.102499 +v -119.841042 123.931976 0.097499 +v 124.875061 -117.895561 0.102027 +v -121.094032 123.154114 -0.102482 +v -121.094032 123.154114 0.097516 +v 125.000061 -116.334778 0.101996 +v -122.207047 122.196564 -0.102462 +v -122.207047 122.196564 0.097537 +v -123.161026 121.079407 -0.102438 +v -123.161026 121.079407 0.097560 +v -123.936020 119.821762 -0.102412 +v -123.936020 119.821762 0.097586 +v 76.250061 -129.496536 -0.097683 +v 76.548050 -128.762833 -0.097698 +v 76.948059 -128.086334 -0.097712 +v -124.514038 118.444664 -0.102384 +v -124.514038 118.444672 0.097614 +v -124.875038 116.966179 -0.102354 +v -124.875038 116.966187 0.097644 +v 77.439056 -127.480080 -0.097724 +v 76.000069 -139.166367 0.102508 +v 76.000069 -139.166367 -0.097490 +v -115.441032 124.999939 0.097473 +v 76.000061 -131.083420 0.102347 +v 76.000061 -131.083420 -0.097651 +v -80.121941 -126.071922 0.102429 +v -80.922943 -126.007690 0.102429 +v -80.922943 -126.007698 -0.097569 +v -80.121941 -126.071930 -0.097569 +v 124.874969 116.966278 0.097353 +v 124.999969 115.405518 0.097383 +v 76.064056 -130.274429 0.102331 +v 76.064056 -130.274445 -0.097667 +v 124.513977 118.444763 0.097324 +v -79.363937 -126.258606 0.102432 +v -79.363937 -126.258614 -0.097566 +v 74.000069 -142.992523 -0.097412 +v 123.935974 119.821869 0.097297 +v 76.250061 -129.496536 0.102315 +v -78.656929 -126.557716 0.102437 +v -78.656929 -126.557724 -0.097561 +v 123.159973 121.079514 0.097273 +v 76.548050 -128.762817 0.102300 +v 122.205963 122.196655 0.097252 +v -78.011940 -126.959198 0.102444 +v -78.011940 -126.959206 -0.097554 +v 76.948059 -128.086319 0.102286 +v -77.438934 -127.452026 0.102454 +v -77.438934 -127.452034 -0.097544 +v 77.439056 -127.480072 0.102274 +v -74.301933 -143.294693 -0.097233 +v -74.301933 -143.294678 0.102765 +v -73.624931 -143.876877 -0.097222 +v -73.624931 -143.876862 0.102776 +v -88.022942 -125.929398 -0.097562 +v -121.093933 -124.082565 0.102437 +v -76.249939 -129.384201 -0.097507 +v -88.022942 -126.007698 -0.097561 +v -76.063942 -130.146011 -0.097492 +v -75.999939 -130.948990 -0.097476 +v -72.999931 -142.992584 -0.097240 +v 71.133072 -144.923676 -0.097370 +v 72.029060 -144.703873 -0.097375 +v 70.188072 -144.999969 -0.097367 +v 72.863068 -144.350555 -0.097383 +v -70.187927 -145.000031 -0.097204 +v -72.028931 -144.703934 -0.097207 +v -71.133934 -144.923737 -0.097204 +v -72.863922 -144.350616 -0.097213 +v -75.999931 -139.166428 -0.097313 +v -75.923935 -140.114929 -0.097294 +v 70.188072 -144.999969 0.102631 +v -70.187927 -145.000015 0.102794 +v 71.133072 -144.923676 0.102628 +v 72.029060 -144.703873 0.102623 +v 72.863068 -144.350555 0.102615 +v 73.625069 -143.876816 0.102604 +v -72.863922 -144.350601 0.102785 +v -72.028931 -144.703918 0.102791 +v -71.133934 -144.923721 0.102794 +v -115.440933 -125.929413 -0.097530 +v -116.995941 -125.803940 -0.097531 +v -118.468933 -125.441612 -0.097537 +v -119.840942 -124.861450 -0.097547 +v -121.093933 -124.082573 -0.097561 +v -122.206947 -123.125038 -0.097578 +v -123.160934 -122.008888 -0.097599 +v -123.935928 -120.751236 -0.097624 +v -124.513947 -119.374138 -0.097650 +v -124.874954 -117.895660 -0.097679 +v -76.249939 -129.384186 0.102491 +v -76.063942 -130.145996 0.102506 +v -75.999939 -130.948975 0.102522 +v -75.999931 -139.166428 0.102685 +v -88.022942 -125.929398 0.102436 +v -88.022942 -126.007698 0.102437 +v -123.935928 -120.751228 0.102374 +v -123.160934 -122.008881 0.102399 +v -122.206947 -123.125031 0.102420 +v -119.840942 -124.861443 0.102451 +v -118.468933 -125.441605 0.102461 +v -116.995941 -125.803932 0.102467 +v -115.440933 -125.929405 0.102468 +v -75.923935 -140.114929 0.102704 + +usemtl Material.001_0 +f 1 2 3 +f 1 3 4 +f 18 1 4 +f 18 4 124 +f 19 18 124 +f 19 124 122 +f 20 19 122 +f 20 122 118 +f 21 20 118 +f 21 118 114 +f 22 21 114 +f 22 114 110 +f 23 22 110 +f 23 110 111 +f 23 111 34 +f 17 36 50 +f 15 17 50 +f 15 50 47 +f 16 15 47 +f 16 47 44 +f 2 16 44 +f 70 74 71 +f 62 70 71 +f 69 68 75 +f 69 75 74 +f 35 86 83 +f 67 35 83 +f 35 34 86 +f 67 83 80 +f 68 67 80 +f 68 80 75 +f 60 62 63 +f 60 63 61 +f 55 60 61 +f 55 61 56 +f 53 55 56 +f 53 56 54 +f 51 53 54 +f 51 33 52 +f 32 52 33 +f 32 33 30 +f 32 30 31 +f 120 116 121 +f 125 120 121 +f 125 121 126 +f 128 125 126 +f 128 126 129 +f 128 129 27 +f 128 27 26 +f 130 127 95 +f 130 95 100 +f 6 130 100 +f 6 100 7 +f 5 6 7 +f 5 7 8 +f 24 5 8 +f 24 8 25 +f 30 24 25 +f 106 107 108 +f 106 108 109 +f 115 106 109 +f 115 109 116 +f 76 77 78 +f 76 78 79 +f 91 97 92 +f 89 91 92 +f 96 98 99 +f 96 99 97 +f 165 136 179 +f 165 179 166 +f 168 167 178 +f 168 178 177 +f 169 168 177 +f 169 177 65 +f 170 169 65 +f 170 65 64 +f 66 170 64 +f 66 57 170 +f 58 57 66 +f 57 58 59 +f 163 180 164 +f 164 180 136 +f 163 181 180 +f 162 181 163 +f 162 182 181 +f 175 183 135 +f 175 135 138 +f 175 138 176 +f 107 176 138 +f 161 183 182 +f 161 182 162 +f 161 135 183 +f 98 59 58 +f 167 166 179 +f 164 136 165 +f 167 179 178 +f 98 58 99 +f 87 89 90 +f 87 90 88 +f 84 87 88 +f 84 88 85 +f 81 84 85 +f 81 85 82 +f 78 81 82 +f 91 96 97 +f 89 92 90 +f 36 76 103 +f 78 82 79 +f 108 107 138 +f 123 93 94 +f 127 123 94 +f 123 119 93 +f 119 113 93 +f 119 112 113 +f 112 105 113 +f 104 102 105 +f 104 101 102 +f 102 101 37 +f 38 37 101 +f 37 38 39 +f 37 39 40 +f 45 42 41 +f 41 42 43 +f 43 42 157 +f 43 157 156 +f 43 156 145 +f 143 154 142 +f 142 154 152 +f 142 152 144 +f 144 152 146 +f 172 139 140 +f 172 140 173 +f 39 49 48 +f 48 49 46 +f 146 153 160 +f 146 160 148 +f 148 160 159 +f 148 159 147 +f 147 158 149 +f 149 158 133 +f 134 133 158 +f 13 132 14 +f 10 13 14 +f 133 132 131 +f 9 10 11 +f 9 11 12 +f 151 9 12 +f 151 12 184 +f 151 184 174 +f 150 151 174 +f 140 150 174 +f 13 131 132 +f 10 14 11 +f 133 134 132 +f 147 159 158 +f 140 174 173 +f 171 139 172 +f 171 137 139 +f 29 137 171 +f 29 28 137 +f 26 28 29 +f 146 152 153 +f 143 155 154 +f 145 155 143 +f 145 156 155 +f 45 46 42 +f 48 46 45 +f 39 48 40 +f 112 104 105 +f 127 94 95 +f 26 27 28 +f 120 115 116 +f 36 77 76 +f 30 25 31 +f 51 52 53 +f 70 69 74 +f 62 71 63 +f 103 50 36 +f 86 34 111 +f 2 44 3 + +vt -0.000000 0.964465 +vt 0.000000 0.106167 +vt 0.961764 1.000000 +vt 0.000500 0.100387 +vt 0.001944 0.094911 +vt 0.004256 0.089810 +vt 0.007360 0.085152 +vt 0.011176 0.081019 +vt 0.015628 0.077472 +vt 0.020636 0.074587 +vt 0.026124 0.072439 +vt 0.032020 0.071097 +vt 0.038236 0.070632 +vt 0.176304 0.070632 +vt 0.204000 0.081784 +vt 0.179508 0.070372 +vt 0.182544 0.069621 +vt 0.185372 0.068424 +vt 0.187952 0.066833 +vt 0.190244 0.064888 +vt 0.192208 0.062643 +vt 0.193808 0.060138 +vt 0.195000 0.057420 +vt 0.195744 0.054539 +vt 0.196000 0.051543 +vt 0.204000 0.007435 +vt 0.196000 0.021606 +vt 0.196304 0.018093 +vt 0.197180 0.014762 +vt 0.198588 0.011662 +vt 0.200476 0.008829 +vt 0.202796 0.006316 +vt 0.205500 0.004160 +vt 0.208548 0.002405 +vt 0.211884 0.001097 +vt 0.215468 0.000283 +vt 0.219248 0.000000 +vt 0.792000 0.007435 +vt 0.780752 0.000000 +vt 0.784536 0.000283 +vt 0.788116 0.001097 +vt 0.791456 0.002405 +vt 0.794500 0.004160 +vt 0.797208 0.006316 +vt 0.799528 0.008829 +vt 0.801412 0.011662 +vt 0.802820 0.014762 +vt 0.803696 0.018093 +vt 0.804000 0.021606 +vt 0.804000 0.052041 +vt 0.792000 0.081784 +vt 0.967984 0.999535 +vt 0.814628 0.068305 +vt 0.812048 0.066818 +vt 0.809756 0.064993 +vt 0.807788 0.062863 +vt 0.806192 0.060465 +vt 0.805000 0.057837 +vt 0.804256 0.055015 +vt 0.817456 0.069413 +vt 0.820488 0.070104 +vt 0.823692 0.070342 +vt 0.852092 0.070632 +vt 0.852092 0.070342 +vt 0.973876 0.998193 +vt 0.979364 0.996045 +vt 0.984376 0.993164 +vt 0.988828 0.989617 +vt 0.992644 0.985480 +vt 0.995744 0.980822 +vt 0.998056 0.975721 +vt 0.999500 0.970245 +vt 1.000000 0.964465 +vt 1.000000 0.106167 +vt 0.961764 0.070632 +vt 0.967984 0.071097 +vt 0.973876 0.072439 +vt 0.979364 0.074587 +vt 0.984376 0.077472 +vt 0.988828 0.081019 +vt 0.992644 0.085152 +vt 0.995744 0.089810 +vt 0.998056 0.094911 +vt 0.999500 0.100387 +vt 0.038236 1.000000 +vt 0.000500 0.970245 +vt 0.001944 0.975721 +vt 0.004256 0.980821 +vt 0.007360 0.985479 +vt 0.011176 0.989617 +vt 0.015628 0.993164 +vt 0.020636 0.996045 +vt 0.026124 0.998193 +vt 0.032020 0.999535 + +usemtl Mat_0 +f 23/1 34/2 36/3 +f 17/85 23/1 36/3 +f 16/93 2/92 17/85 +f 62/9 36/3 70/8 +f 70/8 36/3 69/7 +f 69/7 36/3 68/6 +f 67/5 36/3 35/4 +f 68/6 36/3 67/5 +f 60/10 36/3 62/9 +f 32/14 31/16 72/15 +f 32/14 72/15 36/3 +f 72/15 73/51 36/3 +f 77/52 36/3 73/51 +f 77/52 73/51 121/53 +f 116/60 77/52 121/53 +f 77/52 109/61 108/62 +f 108/62 135/63 77/52 +f 77/52 135/63 78/65 +f 89/69 135/63 91/70 +f 91/70 135/63 96/71 +f 96/71 135/63 98/72 +f 57/74 165/79 166/80 +f 57/74 166/80 167/81 +f 168/82 57/74 167/81 +f 57/74 59/73 135/63 +f 135/63 161/75 57/74 +f 161/75 162/76 57/74 +f 162/76 163/77 57/74 +f 57/74 163/77 164/78 +f 170/84 57/74 169/83 +f 169/83 57/74 168/82 +f 57/74 164/78 165/79 +f 59/73 98/72 135/63 +f 87/68 135/63 89/69 +f 81/66 135/63 84/67 +f 84/67 135/63 87/68 +f 78/65 135/63 81/66 +f 138/64 135/63 108/62 +f 25/17 8/18 72/15 +f 7/19 72/15 8/18 +f 7/19 100/20 72/15 +f 95/21 72/15 100/20 +f 95/21 94/22 72/15 +f 93/23 72/15 94/22 +f 105/25 72/15 113/24 +f 72/15 105/25 117/26 +f 102/27 117/26 105/25 +f 117/26 37/28 40/29 +f 117/26 40/29 48/30 +f 117/26 48/30 45/31 +f 41/32 117/26 45/31 +f 43/33 145/34 117/26 +f 145/34 143/35 117/26 +f 142/36 117/26 143/35 +f 146/39 141/38 144/37 +f 117/26 144/37 141/38 +f 141/38 73/51 117/26 +f 141/38 140/50 73/51 +f 139/59 73/51 140/50 +f 147/41 141/38 148/40 +f 149/42 141/38 147/41 +f 10/46 141/38 13/45 +f 131/44 13/45 141/38 +f 133/43 131/44 141/38 +f 9/47 141/38 10/46 +f 150/49 141/38 151/48 +f 151/48 141/38 9/47 +f 133/43 141/38 149/42 +f 137/58 28/57 73/51 +f 28/57 27/56 73/51 +f 139/59 137/58 73/51 +f 140/50 141/38 150/49 +f 146/39 148/40 141/38 +f 144/37 117/26 142/36 +f 43/33 117/26 41/32 +f 117/26 102/27 37/28 +f 93/23 113/24 72/15 +f 27/56 129/55 73/51 +f 129/55 126/54 73/51 +f 77/52 116/60 109/61 +f 126/54 121/53 73/51 +f 72/15 117/26 73/51 +f 25/17 72/15 31/16 +f 52/13 32/14 36/3 +f 53/12 52/13 36/3 +f 55/11 53/12 36/3 +f 55/11 36/3 60/10 +f 15/94 16/93 17/85 +f 34/2 35/4 36/3 +f 17/85 22/86 23/1 +f 17/85 21/87 22/86 +f 17/85 20/88 21/87 +f 17/85 19/89 20/88 +f 17/85 18/90 19/89 +f 17/85 1/91 18/90 +f 2/92 1/91 17/85 + +vt 0.992640 0.085152 +vt 0.038236 1.000000 +vt 0.015624 0.077472 +vt 0.995744 0.980822 +vt 0.979364 0.996045 +vt 0.967980 0.999535 +vt 0.973876 0.998193 +vt 0.961764 1.000000 +vt 0.988824 0.989617 +vt 0.992640 0.985480 +vt 0.984372 0.993164 +vt 1.000000 0.106167 +vt 0.998056 0.094911 +vt 0.995744 0.089810 +vt 0.999500 0.100387 +vt 0.999500 0.970245 +vt 1.000000 0.964465 +vt 0.998056 0.975721 +vt 0.001944 0.975721 +vt 0.015624 0.993164 +vt 0.026124 0.998193 +vt 0.032016 0.999535 +vt 0.020636 0.996045 +vt 0.007356 0.985479 +vt 0.011172 0.989617 +vt 0.004256 0.980821 +vt 0.001944 0.094911 +vt -0.000000 0.964465 +vt 0.000500 0.970245 +vt 0.000000 0.106167 +vt 0.000500 0.100387 +vt 0.007356 0.085152 +vt 0.004256 0.089810 +vt 0.011172 0.081019 +vt 0.147908 0.070632 +vt 0.026124 0.072439 +vt 0.020636 0.074587 +vt 0.032016 0.071097 +vt 0.038236 0.070632 +vt 0.973876 0.072439 +vt 0.823696 0.070632 +vt 0.176308 0.070342 +vt 0.147908 0.070342 +vt 0.820492 0.070372 +vt 0.179512 0.070104 +vt 0.817456 0.069621 +vt 0.182544 0.069413 +vt 0.814628 0.068424 +vt 0.185372 0.068305 +vt 0.812048 0.066833 +vt 0.187952 0.066818 +vt 0.809756 0.064889 +vt 0.190244 0.064993 +vt 0.807792 0.062643 +vt 0.192212 0.062862 +vt 0.806192 0.060138 +vt 0.193808 0.060465 +vt 0.805000 0.057420 +vt 0.195000 0.057836 +vt 0.804256 0.054539 +vt 0.195744 0.055015 +vt 0.794500 0.004160 +vt 0.196000 0.052041 +vt 0.208544 0.002405 +vt 0.198588 0.011662 +vt 0.202792 0.006316 +vt 0.205500 0.004160 +vt 0.200472 0.008829 +vt 0.196304 0.018093 +vt 0.196000 0.021606 +vt 0.197180 0.014762 +vt 0.780752 0.000000 +vt 0.215464 0.000283 +vt 0.211884 0.001097 +vt 0.219248 0.000000 +vt 0.788116 0.001097 +vt 0.784532 0.000283 +vt 0.791452 0.002405 +vt 0.804000 0.051543 +vt 0.802820 0.014762 +vt 0.799524 0.008829 +vt 0.797204 0.006316 +vt 0.801412 0.011662 +vt 0.804000 0.021606 +vt 0.803696 0.018093 +vt 0.967980 0.071097 +vt 0.961764 0.070632 +vt 0.984372 0.077472 +vt 0.979364 0.074587 +vt 0.988824 0.081019 + +usemtl Mat_0 +f 3/99 44/101 47/100 +f 3/99 47/100 103/96 +f 118/98 3/99 103/96 +f 74/95 118/98 103/96 +f 74/95 103/96 136/97 +f 136/97 175/129 74/95 +f 175/129 56/134 74/95 +f 56/134 63/182 74/95 +f 63/182 71/184 74/95 +f 74/95 75/108 80/107 +f 74/95 80/107 86/106 +f 80/107 83/109 86/106 +f 33/135 51/181 54/180 +f 128/147 26/149 127/148 +f 128/147 127/148 130/146 +f 106/139 24/140 30/138 +f 107/136 106/139 30/138 +f 103/96 76/116 79/115 +f 103/96 79/115 85/114 +f 103/96 85/114 97/113 +f 85/114 90/118 97/113 +f 90/118 92/120 97/113 +f 97/113 99/123 58/122 +f 97/113 58/122 65/121 +f 97/113 65/121 136/97 +f 65/121 178/126 136/97 +f 178/126 179/128 136/97 +f 136/97 180/131 181/130 +f 181/130 182/132 175/129 +f 182/132 183/133 175/129 +f 175/129 176/137 107/136 +f 175/129 107/136 33/135 +f 64/125 65/121 66/124 +f 65/121 177/127 178/126 +f 58/122 66/124 65/121 +f 85/114 88/119 90/118 +f 79/115 82/117 85/114 +f 106/139 115/141 24/140 +f 115/141 5/142 24/140 +f 115/141 120/143 5/142 +f 120/143 6/144 5/142 +f 125/145 130/146 6/144 +f 39/174 38/179 101/178 +f 172/155 173/157 157/156 +f 172/155 157/156 112/154 +f 171/153 172/155 112/154 +f 157/156 104/173 112/154 +f 157/156 39/174 104/173 +f 157/156 46/175 39/174 +f 46/175 49/177 39/174 +f 173/157 158/158 157/156 +f 158/158 152/166 157/156 +f 152/166 155/170 157/156 +f 158/158 160/167 152/166 +f 160/167 153/169 152/166 +f 132/160 134/161 158/158 +f 11/159 132/160 158/158 +f 11/159 14/162 132/160 +f 173/157 174/164 184/163 +f 173/157 184/163 11/159 +f 184/163 12/165 11/159 +f 158/158 159/168 160/167 +f 173/157 11/159 158/158 +f 29/151 171/153 119/152 +f 26/149 29/151 123/150 +f 152/166 154/171 155/170 +f 155/170 156/172 157/156 +f 157/156 42/176 46/175 +f 39/174 101/178 104/173 +f 171/153 112/154 119/152 +f 29/151 119/152 123/150 +f 26/149 123/150 127/148 +f 125/145 128/147 130/146 +f 120/143 125/145 6/144 +f 107/136 30/138 33/135 +f 33/135 54/180 56/134 +f 56/134 61/183 63/182 +f 175/129 33/135 56/134 +f 136/97 181/130 175/129 +f 103/96 97/113 136/97 +f 74/95 86/106 118/98 +f 86/106 110/110 118/98 +f 118/98 124/103 3/99 +f 47/100 50/102 103/96 +f 86/106 111/111 110/110 +f 110/110 114/112 118/98 +f 118/98 122/104 124/103 +f 124/103 4/105 3/99 + diff --git a/resources/meshes/artillery_hornet.stl b/resources/meshes/artillery_hornet.stl new file mode 100644 index 0000000000..59e0a826ad Binary files /dev/null and b/resources/meshes/artillery_hornet.stl differ diff --git a/resources/meshes/blocks_mk2_platform.stl b/resources/meshes/blocks_mk2_platform.stl new file mode 100644 index 0000000000..d6bb991076 Binary files /dev/null and b/resources/meshes/blocks_mk2_platform.stl differ diff --git a/resources/meshes/blocks_pros100_platform.stl b/resources/meshes/blocks_pros100_platform.stl new file mode 100644 index 0000000000..701c2a1d6c Binary files /dev/null and b/resources/meshes/blocks_pros100_platform.stl differ diff --git a/resources/meshes/blocks_pros30_platform.stl b/resources/meshes/blocks_pros30_platform.stl new file mode 100644 index 0000000000..1467a26489 Binary files /dev/null and b/resources/meshes/blocks_pros30_platform.stl differ diff --git a/resources/meshes/blocks_r21_platform.stl b/resources/meshes/blocks_r21_platform.stl new file mode 100644 index 0000000000..2269ea0fe7 Binary files /dev/null and b/resources/meshes/blocks_r21_platform.stl differ diff --git a/resources/meshes/blocks_rd50_platform.stl b/resources/meshes/blocks_rd50_platform.stl new file mode 100644 index 0000000000..1e08e064d5 Binary files /dev/null and b/resources/meshes/blocks_rd50_platform.stl differ diff --git a/resources/meshes/blocks_zero_platform.stl b/resources/meshes/blocks_zero_platform.stl new file mode 100644 index 0000000000..800fe6050f Binary files /dev/null and b/resources/meshes/blocks_zero_platform.stl differ diff --git a/resources/meshes/dagoma_pro430.obj b/resources/meshes/dagoma_pro430.obj new file mode 100644 index 0000000000..49b9b63e0d --- /dev/null +++ b/resources/meshes/dagoma_pro430.obj @@ -0,0 +1,2172 @@ +# Blender v3.0.0 OBJ File: '' +# www.blender.org +mtllib dagoma_pro430.mtl +o Object.1 +v 187.910614 222.604492 -3.377744 +v 187.910614 222.604492 -18.377743 +v 184.666382 220.436768 -3.377744 +v 184.666382 220.436768 -3.377744 +v 185.431763 218.589020 -1.377745 +v 187.910614 222.604492 -3.377744 +v 187.910614 222.604492 -3.377744 +v 185.431763 218.589020 -1.377745 +v 189.324829 221.190277 -1.377744 +v 187.910614 222.604492 -3.377744 +v 189.324829 221.190277 -1.377744 +v 201.786774 236.480652 -3.377741 +v 201.786774 236.480652 -3.377741 +v 201.786774 236.480652 -18.377741 +v 187.910614 222.604492 -3.377744 +v 205.325623 238.845245 -3.377741 +v 201.786774 236.480652 -18.377741 +v 201.786774 236.480652 -3.377741 +v 206.091003 236.997498 -1.377742 +v 205.325623 238.845245 -3.377741 +v 201.786774 236.480652 -3.377741 +v 206.091003 236.997498 -1.377742 +v 201.786774 236.480652 -3.377741 +v 203.200989 235.066467 -1.377742 +v 209.499969 237.675568 -1.377741 +v 206.091003 236.997498 -1.377742 +v 203.200989 235.066467 -1.377742 +v 203.200989 235.066467 -1.377742 +v 265.390869 172.876587 -1.377751 +v 209.499969 237.675568 -1.377741 +v 265.390869 172.876587 -1.377751 +v 267.321899 175.766571 -1.377751 +v 209.499969 237.675568 -1.377741 +v 209.499969 237.675568 -1.377741 +v 267.321899 175.766571 -1.377751 +v 268.000000 179.175568 -1.377750 +v 209.499969 237.675568 -1.377741 +v 268.000000 179.175568 -1.377750 +v 268.000000 199.379791 -1.377748 +v 268.000000 199.379791 -1.377748 +v 258.976562 215.242706 -1.377745 +v 209.499969 237.675568 -1.377741 +v 209.499969 237.675568 -1.377741 +v 258.976562 215.242706 -1.377745 +v 245.567139 228.652161 -1.377743 +v 209.499969 237.675568 -1.377741 +v 245.567139 228.652161 -1.377743 +v 229.704224 237.675568 -1.377741 +v 230.091858 239.675568 -3.377741 +v 209.499969 237.675568 -1.377741 +v 229.704224 237.675568 -1.377741 +v 229.704224 237.675568 -1.377741 +v 246.775391 230.245911 -3.377742 +v 230.091858 239.675568 -3.377741 +v 246.775391 230.245911 -18.377743 +v 230.091858 239.675568 -3.377741 +v 246.775391 230.245911 -3.377742 +v 246.775391 230.245911 -18.377743 +v 246.775391 230.245911 -3.377742 +v 246.867798 230.175720 -18.377743 +v 246.867798 230.175720 -18.377743 +v 245.567139 228.652161 -20.377743 +v 246.775391 230.245911 -18.377743 +v 246.775391 230.245911 -18.377743 +v 245.567139 228.652161 -20.377743 +v 230.091858 239.675568 -18.377741 +v 230.091858 239.675568 -18.377741 +v 245.567139 228.652161 -20.377743 +v 229.704224 237.675568 -20.377741 +v 229.704224 237.675568 -20.377741 +v 209.499969 239.675568 -18.377741 +v 230.091858 239.675568 -18.377741 +v 209.499969 239.675568 -3.377741 +v 230.091858 239.675568 -18.377741 +v 209.499969 239.675568 -18.377741 +v 209.499969 239.675568 -3.377741 +v 209.499969 239.675568 -18.377741 +v 205.325623 238.845245 -18.377741 +v 209.499969 239.675568 -3.377741 +v 205.325623 238.845245 -18.377741 +v 205.325623 238.845245 -3.377741 +v 209.499969 237.675568 -1.377741 +v 209.499969 239.675568 -3.377741 +v 205.325623 238.845245 -3.377741 +v 206.091003 236.997498 -20.377743 +v 205.325623 238.845245 -18.377741 +v 209.499969 239.675568 -18.377741 +v 206.091003 236.997498 -20.377743 +v 209.499969 239.675568 -18.377741 +v 209.499969 237.675568 -20.377741 +v 268.000000 179.175568 -20.377750 +v 206.091003 236.997498 -20.377743 +v 209.499969 237.675568 -20.377741 +v 258.976562 215.242706 -20.377745 +v 268.000000 179.175568 -20.377750 +v 209.499969 237.675568 -20.377741 +v 258.976562 215.242706 -20.377745 +v 209.499969 237.675568 -20.377741 +v 245.567139 228.652161 -20.377743 +v 260.500122 216.543427 -18.377745 +v 258.976562 215.242706 -20.377745 +v 245.567139 228.652161 -20.377743 +v 260.570312 216.450989 -18.377745 +v 258.976562 215.242706 -20.377745 +v 260.500122 216.543427 -18.377745 +v 260.500122 216.543427 -3.377745 +v 260.570312 216.450989 -18.377745 +v 260.500122 216.543427 -18.377745 +v 260.500122 216.543427 -3.377745 +v 260.500122 216.543427 -18.377745 +v 246.867798 230.175720 -18.377743 +v 246.867798 230.175720 -18.377743 +v 246.867798 230.175720 -3.377742 +v 260.500122 216.543427 -3.377745 +v 245.567139 228.652161 -1.377743 +v 260.500122 216.543427 -3.377745 +v 246.867798 230.175720 -3.377742 +v 245.567139 228.652161 -1.377743 +v 246.867798 230.175720 -3.377742 +v 246.775391 230.245911 -3.377742 +v 260.570312 216.450989 -3.377745 +v 260.570312 216.450989 -18.377745 +v 260.500122 216.543427 -3.377745 +v 258.976562 215.242706 -1.377745 +v 260.570312 216.450989 -3.377745 +v 260.500122 216.543427 -3.377745 +v 270.000000 199.767456 -3.377748 +v 260.570312 216.450989 -3.377745 +v 258.976562 215.242706 -1.377745 +v 270.000000 199.767456 -3.377748 +v 270.000000 199.767456 -18.377747 +v 260.570312 216.450989 -3.377745 +v 270.000000 199.767456 -3.377748 +v 270.000000 179.175568 -18.377750 +v 270.000000 199.767456 -18.377747 +v 268.000000 179.175568 -20.377750 +v 270.000000 199.767456 -18.377747 +v 270.000000 179.175568 -18.377750 +v 268.000000 179.175568 -20.377750 +v 270.000000 179.175568 -18.377750 +v 269.169678 175.001221 -18.377750 +v 268.000000 179.175568 -20.377750 +v 269.169678 175.001221 -18.377750 +v 267.321899 175.766571 -20.377750 +v 268.000000 179.175568 -20.377750 +v 267.321899 175.766571 -20.377750 +v 265.390869 172.876587 -20.377750 +v 265.390869 172.876587 -20.377750 +v 203.200989 235.066467 -20.377743 +v 268.000000 179.175568 -20.377750 +v 265.390869 172.876587 -20.377750 +v 189.324829 221.190277 -20.377743 +v 203.200989 235.066467 -20.377743 +v 189.324829 221.190277 -20.377743 +v 187.910614 222.604492 -18.377743 +v 203.200989 235.066467 -20.377743 +v 203.200989 235.066467 -20.377743 +v 187.910614 222.604492 -18.377743 +v 201.786774 236.480652 -18.377741 +v 203.200989 235.066467 -20.377743 +v 201.786774 236.480652 -18.377741 +v 205.325623 238.845245 -18.377741 +v 187.910614 222.604492 -18.377743 +v 189.324829 221.190277 -20.377743 +v 184.666382 220.436768 -18.377745 +v 184.666382 220.436768 -18.377745 +v 189.324829 221.190277 -20.377743 +v 185.431763 218.589020 -20.377745 +v 184.666382 220.436768 -18.377745 +v 185.431763 218.589020 -20.377745 +v 180.839569 219.675568 -18.377745 +v 180.839569 219.675568 -3.377744 +v 184.666382 220.436768 -18.377745 +v 180.839569 219.675568 -18.377745 +v 180.839569 219.675568 -3.377744 +v 180.839569 219.675568 -18.377745 +v -180.839584 219.675568 -3.377744 +v -180.839584 217.675568 -1.377745 +v 180.839569 219.675568 -3.377744 +v -180.839584 219.675568 -3.377744 +v -180.839584 219.675568 -3.377744 +v -185.431793 218.589020 -1.377745 +v -180.839584 217.675568 -1.377745 +v -185.431793 218.589020 -1.377745 +v -248.000015 150.515137 -1.377755 +v -180.839584 217.675568 -1.377745 +v -180.839584 217.675568 -1.377745 +v -248.000015 150.515137 -1.377755 +v -196.839920 -219.245987 -1.377815 +v -180.839584 217.675568 -1.377745 +v -196.839920 -219.245987 -1.377815 +v -192.247711 -218.332550 -1.377815 +v 248.000000 -162.580246 -1.377807 +v -180.839584 217.675568 -1.377745 +v -192.247711 -218.332550 -1.377815 +v 248.000000 -162.580246 -1.377807 +v -192.247711 -218.332550 -1.377815 +v 248.913452 -167.172440 -1.377808 +v 250.761169 -166.407074 -3.377807 +v 248.000000 -162.580246 -1.377807 +v 248.913452 -167.172440 -1.377808 +v 250.761169 -166.407074 -3.377807 +v 248.913452 -167.172440 -1.377808 +v 252.928894 -169.651306 -3.377808 +v 252.928894 -169.651306 -3.377808 +v 252.928894 -169.651306 -18.377808 +v 250.761169 -166.407074 -3.377807 +v 250.761169 -166.407074 -3.377807 +v 252.928894 -169.651306 -18.377808 +v 250.761169 -166.407074 -18.377808 +v 250.761169 -166.407074 -3.377807 +v 250.761169 -166.407074 -18.377808 +v 250.000000 -162.580246 -3.377807 +v 250.000000 -162.580246 -3.377807 +v 250.761169 -166.407074 -18.377808 +v 250.000000 -162.580246 -18.377808 +v 250.000000 -162.580246 -3.377807 +v 250.000000 -162.580246 -18.377808 +v 250.000000 150.515137 -3.377756 +v 250.000000 150.515137 -3.377756 +v 248.000000 150.515137 -1.377755 +v 250.000000 -162.580246 -3.377807 +v 250.000000 -162.580246 -3.377807 +v 248.000000 150.515137 -1.377755 +v 248.000000 -162.580246 -1.377807 +v 185.431763 218.589020 -1.377745 +v 248.000000 -162.580246 -1.377807 +v 248.000000 150.515137 -1.377755 +v 185.431763 218.589020 -1.377745 +v 248.000000 150.515137 -1.377755 +v 248.913452 155.107330 -1.377755 +v 251.514709 159.000427 -1.377754 +v 185.431763 218.589020 -1.377745 +v 248.913452 155.107330 -1.377755 +v 250.761169 154.341980 -3.377755 +v 251.514709 159.000427 -1.377754 +v 248.913452 155.107330 -1.377755 +v 250.761169 154.341980 -3.377755 +v 248.913452 155.107330 -1.377755 +v 250.000000 150.515137 -3.377756 +v 250.000000 150.515137 -3.377756 +v 250.000000 150.515137 -18.377756 +v 250.761169 154.341980 -3.377755 +v 250.761169 154.341980 -3.377755 +v 250.000000 150.515137 -18.377756 +v 250.761169 154.341980 -18.377754 +v 250.761169 154.341980 -3.377755 +v 250.761169 154.341980 -18.377754 +v 252.928894 157.586212 -3.377754 +v 252.928894 157.586212 -3.377754 +v 250.761169 154.341980 -18.377754 +v 252.928894 157.586212 -18.377754 +v 252.928894 157.586212 -3.377754 +v 252.928894 157.586212 -18.377754 +v 266.805054 171.462372 -3.377752 +v 266.805054 171.462372 -3.377752 +v 265.390869 172.876587 -1.377751 +v 252.928894 157.586212 -3.377754 +v 252.928894 157.586212 -3.377754 +v 265.390869 172.876587 -1.377751 +v 251.514709 159.000427 -1.377754 +v 265.390869 172.876587 -1.377751 +v 266.805054 171.462372 -3.377752 +v 269.169678 175.001221 -3.377751 +v 266.805054 171.462372 -3.377752 +v 269.169678 175.001221 -18.377750 +v 269.169678 175.001221 -3.377751 +v 266.805054 171.462372 -3.377752 +v 266.805054 171.462372 -18.377752 +v 269.169678 175.001221 -18.377750 +v 266.805054 171.462372 -3.377752 +v 252.928894 157.586212 -18.377754 +v 266.805054 171.462372 -18.377752 +v 251.514709 159.000427 -20.377754 +v 266.805054 171.462372 -18.377752 +v 252.928894 157.586212 -18.377754 +v 252.928894 157.586212 -18.377754 +v 248.913452 155.107330 -20.377754 +v 251.514709 159.000427 -20.377754 +v 248.913452 155.107330 -20.377754 +v 189.324829 221.190277 -20.377743 +v 251.514709 159.000427 -20.377754 +v 265.390869 172.876587 -20.377750 +v 266.805054 171.462372 -18.377752 +v 251.514709 159.000427 -20.377754 +v 250.761169 154.341980 -18.377754 +v 248.913452 155.107330 -20.377754 +v 252.928894 157.586212 -18.377754 +v 250.761169 154.341980 -18.377754 +v 248.000000 150.515137 -20.377754 +v 248.913452 155.107330 -20.377754 +v -180.839584 217.675568 -20.377745 +v 248.913452 155.107330 -20.377754 +v 248.000000 150.515137 -20.377754 +v -180.839584 217.675568 -20.377745 +v 248.000000 150.515137 -20.377754 +v -248.000015 -162.580246 -20.377808 +v -248.000015 -162.580246 -20.377808 +v -185.431793 218.589020 -20.377745 +v -180.839584 217.675568 -20.377745 +v -184.666428 220.436768 -18.377745 +v -180.839584 217.675568 -20.377745 +v -185.431793 218.589020 -20.377745 +v -184.666428 220.436768 -18.377745 +v -185.431793 218.589020 -20.377745 +v -187.910645 222.604492 -18.377743 +v -187.910645 222.604492 -3.377744 +v -184.666428 220.436768 -18.377745 +v -187.910645 222.604492 -18.377743 +v -187.910645 222.604492 -3.377744 +v -187.910645 222.604492 -18.377743 +v -201.786804 236.480652 -3.377741 +v -203.201019 235.066467 -1.377742 +v -187.910645 222.604492 -3.377744 +v -201.786804 236.480652 -3.377741 +v -203.201019 235.066467 -1.377742 +v -201.786804 236.480652 -3.377741 +v -205.325653 238.845245 -3.377741 +v -203.201019 235.066467 -1.377742 +v -205.325653 238.845245 -3.377741 +v -206.091034 236.997498 -1.377742 +v -206.091034 236.997498 -1.377742 +v -209.500000 237.675568 -1.377741 +v -203.201019 235.066467 -1.377742 +v -203.201019 235.066467 -1.377742 +v -209.500000 237.675568 -1.377741 +v -251.514725 159.000427 -1.377754 +v -203.201019 235.066467 -1.377742 +v -251.514725 159.000427 -1.377754 +v -189.324875 221.190277 -1.377744 +v -189.324875 221.190277 -1.377744 +v -251.514725 159.000427 -1.377754 +v -248.913452 155.107330 -1.377755 +v -189.324875 221.190277 -1.377744 +v -248.913452 155.107330 -1.377755 +v -185.431793 218.589020 -1.377745 +v -184.666428 220.436768 -3.377744 +v -189.324875 221.190277 -1.377744 +v -185.431793 218.589020 -1.377745 +v -187.910645 222.604492 -3.377744 +v -189.324875 221.190277 -1.377744 +v -184.666428 220.436768 -3.377744 +v -252.928925 157.586212 -3.377754 +v -248.913452 155.107330 -1.377755 +v -251.514725 159.000427 -1.377754 +v -251.514725 159.000427 -1.377754 +v -266.805115 171.462372 -3.377752 +v -252.928925 157.586212 -3.377754 +v -266.805115 171.462372 -3.377752 +v -266.805115 171.462372 -18.377752 +v -252.928925 157.586212 -3.377754 +v -252.928925 157.586212 -3.377754 +v -266.805115 171.462372 -18.377752 +v -252.928925 157.586212 -18.377754 +v -252.928925 157.586212 -3.377754 +v -252.928925 157.586212 -18.377754 +v -250.761230 154.341980 -3.377755 +v -250.761230 154.341980 -3.377755 +v -252.928925 157.586212 -18.377754 +v -250.761230 154.341980 -18.377754 +v -250.761230 154.341980 -3.377755 +v -250.761230 154.341980 -18.377754 +v -250.000015 150.515137 -3.377756 +v -250.000015 150.515137 -3.377756 +v -248.000015 150.515137 -1.377755 +v -250.761230 154.341980 -3.377755 +v -250.761230 154.341980 -3.377755 +v -248.000015 150.515137 -1.377755 +v -248.913452 155.107330 -1.377755 +v -248.000015 150.515137 -1.377755 +v -250.000015 150.515137 -3.377756 +v -248.000015 -162.580246 -1.377807 +v -248.000015 -162.580246 -1.377807 +v -250.000015 150.515137 -3.377756 +v -250.000015 -162.580246 -3.377807 +v -250.000015 -162.580246 -3.377807 +v -248.913452 -167.172440 -1.377808 +v -248.000015 -162.580246 -1.377807 +v -248.913452 -167.172440 -1.377808 +v -196.839920 -219.245987 -1.377815 +v -248.000015 -162.580246 -1.377807 +v -251.514725 -171.065521 -1.377808 +v -196.839920 -219.245987 -1.377815 +v -248.913452 -167.172440 -1.377808 +v -250.761230 -166.407074 -3.377807 +v -251.514725 -171.065521 -1.377808 +v -248.913452 -167.172440 -1.377808 +v -252.928925 -169.651306 -3.377808 +v -251.514725 -171.065521 -1.377808 +v -250.761230 -166.407074 -3.377807 +v -250.761230 -166.407074 -3.377807 +v -250.761230 -166.407074 -18.377808 +v -252.928925 -169.651306 -3.377808 +v -252.928925 -169.651306 -3.377808 +v -250.761230 -166.407074 -18.377808 +v -252.928925 -169.651306 -18.377808 +v -252.928925 -169.651306 -3.377808 +v -252.928925 -169.651306 -18.377808 +v -266.805115 -183.527466 -3.377810 +v -265.390900 -184.941666 -1.377810 +v -252.928925 -169.651306 -3.377808 +v -266.805115 -183.527466 -3.377810 +v -265.390900 -184.941666 -1.377810 +v -266.805115 -183.527466 -3.377810 +v -269.169678 -187.066315 -3.377810 +v -265.390900 -184.941666 -1.377810 +v -269.169678 -187.066315 -3.377810 +v -267.321930 -187.831680 -1.377810 +v -267.321930 -187.831680 -1.377810 +v -268.000031 -191.240662 -1.377811 +v -265.390900 -184.941666 -1.377810 +v -265.390900 -184.941666 -1.377810 +v -268.000031 -191.240662 -1.377811 +v -200.733002 -221.847275 -1.377816 +v -265.390900 -184.941666 -1.377810 +v -200.733002 -221.847275 -1.377816 +v -251.514725 -171.065521 -1.377808 +v -214.609131 -235.723419 -1.377818 +v -200.733002 -221.847275 -1.377816 +v -268.000031 -191.240662 -1.377811 +v -268.000031 -191.240662 -1.377811 +v -217.499161 -237.654449 -1.377819 +v -214.609131 -235.723419 -1.377818 +v -217.499161 -237.654449 -1.377819 +v -213.194931 -237.137634 -3.377819 +v -214.609131 -235.723419 -1.377818 +v -217.499161 -237.654449 -1.377819 +v -216.733765 -239.502213 -3.377819 +v -213.194931 -237.137634 -3.377819 +v -216.733765 -239.502213 -3.377819 +v -213.194931 -237.137634 -18.377819 +v -213.194931 -237.137634 -3.377819 +v -213.194931 -237.137634 -3.377819 +v -213.194931 -237.137634 -18.377819 +v -199.318787 -223.261475 -3.377816 +v -199.318787 -223.261475 -3.377816 +v -200.733002 -221.847275 -1.377816 +v -213.194931 -237.137634 -3.377819 +v -199.318787 -223.261475 -3.377816 +v -196.839920 -219.245987 -1.377815 +v -200.733002 -221.847275 -1.377816 +v -196.074524 -221.093750 -3.377816 +v -196.839920 -219.245987 -1.377815 +v -199.318787 -223.261475 -3.377816 +v -199.318787 -223.261475 -3.377816 +v -199.318787 -223.261475 -18.377815 +v -196.074524 -221.093750 -3.377816 +v -196.074524 -221.093750 -3.377816 +v -199.318787 -223.261475 -18.377815 +v -196.074524 -221.093750 -18.377815 +v -196.074524 -221.093750 -3.377816 +v -196.074524 -221.093750 -18.377815 +v -192.247711 -220.332550 -3.377816 +v -192.247711 -220.332550 -3.377816 +v -192.247711 -218.332550 -1.377815 +v -196.074524 -221.093750 -3.377816 +v -192.247711 -220.332550 -3.377816 +v 192.247681 -218.332550 -1.377815 +v -192.247711 -218.332550 -1.377815 +v 192.247681 -220.332550 -3.377816 +v 192.247681 -218.332550 -1.377815 +v -192.247711 -220.332550 -3.377816 +v -192.247711 -220.332550 -3.377816 +v -192.247711 -220.332550 -18.377815 +v 192.247681 -220.332550 -3.377816 +v 192.247681 -220.332550 -3.377816 +v -192.247711 -220.332550 -18.377815 +v 192.247681 -220.332550 -18.377815 +v 192.247681 -220.332550 -3.377816 +v 192.247681 -220.332550 -18.377815 +v 196.074524 -221.093750 -3.377816 +v 196.074524 -221.093750 -3.377816 +v 196.839874 -219.245987 -1.377815 +v 192.247681 -220.332550 -3.377816 +v 196.074524 -221.093750 -3.377816 +v 200.732971 -221.847275 -1.377816 +v 196.839874 -219.245987 -1.377815 +v 251.514709 -171.065521 -1.377808 +v 196.839874 -219.245987 -1.377815 +v 200.732971 -221.847275 -1.377816 +v 251.514709 -171.065521 -1.377808 +v 200.732971 -221.847275 -1.377816 +v 265.390869 -184.941666 -1.377810 +v 266.805054 -183.527466 -3.377810 +v 251.514709 -171.065521 -1.377808 +v 265.390869 -184.941666 -1.377810 +v 267.321899 -187.831680 -1.377810 +v 266.805054 -183.527466 -3.377810 +v 265.390869 -184.941666 -1.377810 +v 268.000000 -191.240662 -1.377811 +v 267.321899 -187.831680 -1.377810 +v 265.390869 -184.941666 -1.377810 +v 265.390869 -184.941666 -1.377810 +v 214.609100 -235.723419 -1.377818 +v 268.000000 -191.240662 -1.377811 +v 217.499115 -237.654449 -1.377819 +v 268.000000 -191.240662 -1.377811 +v 214.609100 -235.723419 -1.377818 +v 214.609100 -235.723419 -1.377818 +v 216.733765 -239.502213 -3.377819 +v 217.499115 -237.654449 -1.377819 +v 217.499115 -237.654449 -1.377819 +v 216.733765 -239.502213 -3.377819 +v 220.908112 -240.332550 -3.377819 +v 217.499115 -237.654449 -1.377819 +v 220.908112 -240.332550 -3.377819 +v 220.908112 -238.332550 -1.377819 +v 220.908112 -240.332550 -3.377819 +v 240.490967 -238.332550 -1.377819 +v 220.908112 -238.332550 -1.377819 +v 240.490967 -238.332550 -1.377819 +v 256.207092 -226.539642 -1.377817 +v 220.908112 -238.332550 -1.377819 +v 220.908112 -238.332550 -1.377819 +v 256.207092 -226.539642 -1.377817 +v 268.000000 -191.240662 -1.377811 +v 256.207092 -226.539642 -1.377817 +v 268.000000 -210.823532 -1.377814 +v 268.000000 -191.240662 -1.377811 +v 270.000000 -211.332550 -3.377814 +v 268.000000 -191.240662 -1.377811 +v 268.000000 -210.823532 -1.377814 +v 270.000000 -211.332550 -3.377814 +v 268.000000 -210.823532 -1.377814 +v 257.621338 -227.953873 -3.377817 +v 257.621338 -227.953873 -3.377817 +v 270.000000 -211.332550 -18.377815 +v 270.000000 -211.332550 -3.377814 +v 270.000000 -211.332550 -3.377814 +v 270.000000 -211.332550 -18.377815 +v 270.000000 -191.240662 -3.377811 +v 270.000000 -191.240662 -3.377811 +v 270.000000 -211.332550 -18.377815 +v 270.000000 -191.240662 -18.377811 +v 270.000000 -191.240662 -3.377811 +v 270.000000 -191.240662 -18.377811 +v 269.169678 -187.066315 -18.377811 +v 270.000000 -191.240662 -3.377811 +v 269.169678 -187.066315 -18.377811 +v 269.169678 -187.066315 -3.377810 +v 268.000000 -191.240662 -1.377811 +v 270.000000 -191.240662 -3.377811 +v 269.169678 -187.066315 -3.377810 +v 269.169678 -187.066315 -3.377810 +v 269.169678 -187.066315 -18.377811 +v 266.805054 -183.527466 -18.377810 +v 269.169678 -187.066315 -3.377810 +v 266.805054 -183.527466 -18.377810 +v 266.805054 -183.527466 -3.377810 +v 266.805054 -183.527466 -3.377810 +v 266.805054 -183.527466 -18.377810 +v 252.928894 -169.651306 -3.377808 +v 265.390869 -184.941666 -20.377811 +v 266.805054 -183.527466 -18.377810 +v 269.169678 -187.066315 -18.377811 +v 265.390869 -184.941666 -20.377811 +v 269.169678 -187.066315 -18.377811 +v 267.321899 -187.831680 -20.377811 +v 220.908112 -238.332550 -20.377819 +v 265.390869 -184.941666 -20.377811 +v 267.321899 -187.831680 -20.377811 +v 220.908112 -238.332550 -20.377819 +v 267.321899 -187.831680 -20.377811 +v 268.000000 -191.240662 -20.377811 +v 268.000000 -191.240662 -20.377811 +v 268.000000 -210.823532 -20.377815 +v 220.908112 -238.332550 -20.377819 +v 220.908112 -238.332550 -20.377819 +v 268.000000 -210.823532 -20.377815 +v 256.207092 -226.539642 -20.377817 +v 220.908112 -238.332550 -20.377819 +v 256.207092 -226.539642 -20.377817 +v 240.490967 -238.332550 -20.377819 +v 240.490967 -238.332550 -20.377819 +v 241.000000 -240.332550 -18.377819 +v 220.908112 -238.332550 -20.377819 +v 220.908112 -238.332550 -20.377819 +v 241.000000 -240.332550 -18.377819 +v 220.908112 -240.332550 -18.377819 +v 220.908112 -238.332550 -20.377819 +v 220.908112 -240.332550 -18.377819 +v 216.733765 -239.502213 -18.377819 +v 220.908112 -238.332550 -20.377819 +v 216.733765 -239.502213 -18.377819 +v 217.499115 -237.654449 -20.377819 +v 220.908112 -238.332550 -20.377819 +v 217.499115 -237.654449 -20.377819 +v 214.609100 -235.723419 -20.377819 +v 217.499115 -237.654449 -20.377819 +v 213.194916 -237.137634 -18.377819 +v 214.609100 -235.723419 -20.377819 +v 214.609100 -235.723419 -20.377819 +v 213.194916 -237.137634 -18.377819 +v 200.732971 -221.847275 -20.377815 +v 200.732971 -221.847275 -20.377815 +v 251.514709 -171.065521 -20.377808 +v 214.609100 -235.723419 -20.377819 +v 214.609100 -235.723419 -20.377819 +v 251.514709 -171.065521 -20.377808 +v 265.390869 -184.941666 -20.377811 +v 251.514709 -171.065521 -20.377808 +v 252.928894 -169.651306 -18.377808 +v 265.390869 -184.941666 -20.377811 +v 196.839874 -219.245987 -20.377815 +v 251.514709 -171.065521 -20.377808 +v 200.732971 -221.847275 -20.377815 +v 199.318756 -223.261475 -18.377815 +v 196.839874 -219.245987 -20.377815 +v 200.732971 -221.847275 -20.377815 +v 196.074524 -221.093750 -18.377815 +v 196.839874 -219.245987 -20.377815 +v 199.318756 -223.261475 -18.377815 +v 199.318756 -223.261475 -3.377816 +v 196.074524 -221.093750 -18.377815 +v 199.318756 -223.261475 -18.377815 +v 199.318756 -223.261475 -3.377816 +v 199.318756 -223.261475 -18.377815 +v 213.194916 -237.137634 -3.377819 +v 213.194916 -237.137634 -3.377819 +v 214.609100 -235.723419 -1.377818 +v 199.318756 -223.261475 -3.377816 +v 199.318756 -223.261475 -3.377816 +v 214.609100 -235.723419 -1.377818 +v 200.732971 -221.847275 -1.377816 +v 213.194916 -237.137634 -3.377819 +v 199.318756 -223.261475 -18.377815 +v 213.194916 -237.137634 -18.377819 +v 213.194916 -237.137634 -3.377819 +v 213.194916 -237.137634 -18.377819 +v 216.733765 -239.502213 -18.377819 +v 213.194916 -237.137634 -3.377819 +v 216.733765 -239.502213 -18.377819 +v 216.733765 -239.502213 -3.377819 +v 196.074524 -221.093750 -3.377816 +v 196.074524 -221.093750 -18.377815 +v 199.318756 -223.261475 -3.377816 +v 196.074524 -221.093750 -18.377815 +v 192.247681 -218.332550 -20.377815 +v 196.839874 -219.245987 -20.377815 +v 192.247681 -218.332550 -20.377815 +v 248.913452 -167.172440 -20.377808 +v 196.839874 -219.245987 -20.377815 +v 248.000000 -162.580246 -20.377808 +v 248.913452 -167.172440 -20.377808 +v 192.247681 -218.332550 -20.377815 +v -248.913452 -167.172440 -20.377808 +v 248.000000 -162.580246 -20.377808 +v 192.247681 -218.332550 -20.377815 +v -248.913452 -167.172440 -20.377808 +v 192.247681 -218.332550 -20.377815 +v -192.247711 -218.332550 -20.377815 +v -192.247711 -218.332550 -20.377815 +v -196.839920 -219.245987 -20.377815 +v -248.913452 -167.172440 -20.377808 +v -248.913452 -167.172440 -20.377808 +v -196.839920 -219.245987 -20.377815 +v -251.514725 -171.065521 -20.377808 +v -252.928925 -169.651306 -18.377808 +v -248.913452 -167.172440 -20.377808 +v -251.514725 -171.065521 -20.377808 +v -252.928925 -169.651306 -18.377808 +v -251.514725 -171.065521 -20.377808 +v -266.805115 -183.527466 -18.377810 +v -266.805115 -183.527466 -18.377810 +v -251.514725 -171.065521 -20.377808 +v -265.390900 -184.941666 -20.377811 +v -267.321930 -187.831680 -20.377811 +v -266.805115 -183.527466 -18.377810 +v -265.390900 -184.941666 -20.377811 +v -268.000031 -191.240662 -20.377811 +v -267.321930 -187.831680 -20.377811 +v -265.390900 -184.941666 -20.377811 +v -265.390900 -184.941666 -20.377811 +v -214.609131 -235.723419 -20.377819 +v -268.000031 -191.240662 -20.377811 +v -217.499161 -237.654449 -20.377819 +v -268.000031 -191.240662 -20.377811 +v -214.609131 -235.723419 -20.377819 +v -214.609131 -235.723419 -20.377819 +v -216.733765 -239.502213 -18.377819 +v -217.499161 -237.654449 -20.377819 +v -217.499161 -237.654449 -20.377819 +v -216.733765 -239.502213 -18.377819 +v -220.908127 -240.332550 -18.377819 +v -217.499161 -237.654449 -20.377819 +v -220.908127 -240.332550 -18.377819 +v -220.908127 -238.332550 -20.377819 +v -220.908127 -240.332550 -18.377819 +v -240.490997 -238.332550 -20.377819 +v -220.908127 -238.332550 -20.377819 +v -240.490997 -238.332550 -20.377819 +v -256.207123 -226.539642 -20.377817 +v -220.908127 -238.332550 -20.377819 +v -220.908127 -238.332550 -20.377819 +v -256.207123 -226.539642 -20.377817 +v -268.000031 -191.240662 -20.377811 +v -256.207123 -226.539642 -20.377817 +v -268.000031 -210.823532 -20.377815 +v -268.000031 -191.240662 -20.377811 +v -270.000000 -211.332550 -18.377815 +v -268.000031 -191.240662 -20.377811 +v -268.000031 -210.823532 -20.377815 +v -270.000000 -211.332550 -18.377815 +v -268.000031 -210.823532 -20.377815 +v -257.621338 -227.953873 -18.377817 +v -270.000000 -211.332550 -3.377814 +v -270.000000 -211.332550 -18.377815 +v -257.621338 -227.953873 -18.377817 +v -270.000000 -211.332550 -3.377814 +v -257.621338 -227.953873 -18.377817 +v -257.621338 -227.953873 -3.377817 +v -256.207123 -226.539642 -1.377817 +v -270.000000 -211.332550 -3.377814 +v -257.621338 -227.953873 -3.377817 +v -256.207123 -226.539642 -1.377817 +v -257.621338 -227.953873 -3.377817 +v -240.490997 -238.332550 -1.377819 +v -256.207123 -226.539642 -1.377817 +v -240.490997 -238.332550 -1.377819 +v -220.908127 -238.332550 -1.377819 +v -256.207123 -226.539642 -1.377817 +v -220.908127 -238.332550 -1.377819 +v -268.000031 -191.240662 -1.377811 +v -268.000031 -191.240662 -1.377811 +v -268.000031 -210.823532 -1.377814 +v -256.207123 -226.539642 -1.377817 +v -268.000031 -191.240662 -1.377811 +v -270.000000 -191.240662 -3.377811 +v -268.000031 -210.823532 -1.377814 +v -268.000031 -210.823532 -1.377814 +v -270.000000 -191.240662 -3.377811 +v -270.000000 -211.332550 -3.377814 +v -270.000000 -191.240662 -3.377811 +v -270.000000 -191.240662 -18.377811 +v -270.000000 -211.332550 -3.377814 +v -269.169678 -187.066315 -3.377810 +v -270.000000 -191.240662 -18.377811 +v -270.000000 -191.240662 -3.377811 +v -269.169678 -187.066315 -3.377810 +v -269.169678 -187.066315 -18.377811 +v -270.000000 -191.240662 -18.377811 +v -268.000031 -191.240662 -20.377811 +v -270.000000 -191.240662 -18.377811 +v -269.169678 -187.066315 -18.377811 +v -240.490997 -238.332550 -1.377819 +v -241.000015 -240.332550 -3.377819 +v -220.908127 -238.332550 -1.377819 +v -220.908127 -238.332550 -1.377819 +v -241.000015 -240.332550 -3.377819 +v -220.908127 -240.332550 -3.377819 +v -220.908127 -238.332550 -1.377819 +v -220.908127 -240.332550 -3.377819 +v -216.733765 -239.502213 -3.377819 +v -220.908127 -240.332550 -3.377819 +v -216.733765 -239.502213 -18.377819 +v -216.733765 -239.502213 -3.377819 +v -241.000015 -240.332550 -3.377819 +v -241.000015 -240.332550 -18.377819 +v -220.908127 -240.332550 -3.377819 +v -220.908127 -240.332550 -3.377819 +v -241.000015 -240.332550 -18.377819 +v -220.908127 -240.332550 -18.377819 +v -257.621338 -227.953873 -3.377817 +v -241.000015 -240.332550 -18.377819 +v -241.000015 -240.332550 -3.377819 +v -240.490997 -238.332550 -1.377819 +v -257.621338 -227.953873 -3.377817 +v -241.000015 -240.332550 -3.377819 +v -268.000031 -210.823532 -1.377814 +v -270.000000 -211.332550 -3.377814 +v -256.207123 -226.539642 -1.377817 +v -257.621338 -227.953873 -3.377817 +v -257.621338 -227.953873 -18.377817 +v -241.000015 -240.332550 -18.377819 +v -257.621338 -227.953873 -18.377817 +v -256.207123 -226.539642 -20.377817 +v -241.000015 -240.332550 -18.377819 +v -270.000000 -211.332550 -3.377814 +v -270.000000 -191.240662 -18.377811 +v -270.000000 -211.332550 -18.377815 +v -270.000000 -191.240662 -18.377811 +v -268.000031 -191.240662 -20.377811 +v -270.000000 -211.332550 -18.377815 +v -257.621338 -227.953873 -18.377817 +v -268.000031 -210.823532 -20.377815 +v -256.207123 -226.539642 -20.377817 +v -241.000015 -240.332550 -18.377819 +v -256.207123 -226.539642 -20.377817 +v -240.490997 -238.332550 -20.377819 +v -241.000015 -240.332550 -18.377819 +v -240.490997 -238.332550 -20.377819 +v -220.908127 -240.332550 -18.377819 +v -220.908127 -240.332550 -3.377819 +v -220.908127 -240.332550 -18.377819 +v -216.733765 -239.502213 -18.377819 +v -214.609131 -235.723419 -20.377819 +v -213.194931 -237.137634 -18.377819 +v -216.733765 -239.502213 -18.377819 +v -213.194931 -237.137634 -18.377819 +v -214.609131 -235.723419 -20.377819 +v -199.318787 -223.261475 -18.377815 +v -199.318787 -223.261475 -18.377815 +v -214.609131 -235.723419 -20.377819 +v -200.733002 -221.847275 -20.377815 +v -220.908127 -238.332550 -20.377819 +v -268.000031 -191.240662 -20.377811 +v -217.499161 -237.654449 -20.377819 +v -265.390900 -184.941666 -20.377811 +v -200.733002 -221.847275 -20.377815 +v -214.609131 -235.723419 -20.377819 +v -268.000031 -191.240662 -20.377811 +v -269.169678 -187.066315 -18.377811 +v -267.321930 -187.831680 -20.377811 +v -267.321930 -187.831680 -20.377811 +v -269.169678 -187.066315 -18.377811 +v -266.805115 -183.527466 -18.377810 +v -266.805115 -183.527466 -3.377810 +v -266.805115 -183.527466 -18.377810 +v -269.169678 -187.066315 -18.377811 +v -251.514725 -171.065521 -20.377808 +v -200.733002 -221.847275 -20.377815 +v -265.390900 -184.941666 -20.377811 +v -251.514725 -171.065521 -20.377808 +v -196.839920 -219.245987 -20.377815 +v -200.733002 -221.847275 -20.377815 +v -196.074524 -221.093750 -18.377815 +v -200.733002 -221.847275 -20.377815 +v -196.839920 -219.245987 -20.377815 +v -196.074524 -221.093750 -18.377815 +v -196.839920 -219.245987 -20.377815 +v -192.247711 -220.332550 -18.377815 +v -192.247711 -220.332550 -18.377815 +v -196.839920 -219.245987 -20.377815 +v -192.247711 -218.332550 -20.377815 +v 192.247681 -218.332550 -20.377815 +v 192.247681 -220.332550 -18.377815 +v -192.247711 -218.332550 -20.377815 +v -248.000015 -162.580246 -20.377808 +v 248.000000 -162.580246 -20.377808 +v -248.913452 -167.172440 -20.377808 +v -250.761230 -166.407074 -18.377808 +v -248.000015 -162.580246 -20.377808 +v -248.913452 -167.172440 -20.377808 +v -250.000015 -162.580246 -18.377808 +v -248.000015 -162.580246 -20.377808 +v -250.761230 -166.407074 -18.377808 +v -250.000015 -162.580246 -18.377808 +v -248.000015 150.515137 -20.377754 +v -248.000015 -162.580246 -20.377808 +v -250.000015 150.515137 -18.377756 +v -248.000015 150.515137 -20.377754 +v -250.000015 -162.580246 -18.377808 +v -250.000015 -162.580246 -3.377807 +v -250.000015 150.515137 -18.377756 +v -250.000015 -162.580246 -18.377808 +v -250.000015 -162.580246 -3.377807 +v -250.000015 -162.580246 -18.377808 +v -250.761230 -166.407074 -3.377807 +v -250.000015 150.515137 -18.377756 +v -248.913452 155.107330 -20.377754 +v -248.000015 150.515137 -20.377754 +v -185.431793 218.589020 -20.377745 +v -248.000015 150.515137 -20.377754 +v -248.913452 155.107330 -20.377754 +v -185.431793 218.589020 -20.377745 +v -248.913452 155.107330 -20.377754 +v -189.324875 221.190277 -20.377743 +v -189.324875 221.190277 -20.377743 +v -248.913452 155.107330 -20.377754 +v -251.514725 159.000427 -20.377754 +v -189.324875 221.190277 -20.377743 +v -251.514725 159.000427 -20.377754 +v -203.201019 235.066467 -20.377743 +v -201.786804 236.480652 -18.377741 +v -189.324875 221.190277 -20.377743 +v -203.201019 235.066467 -20.377743 +v -206.091034 236.997498 -20.377743 +v -201.786804 236.480652 -18.377741 +v -203.201019 235.066467 -20.377743 +v -209.500000 237.675568 -20.377741 +v -206.091034 236.997498 -20.377743 +v -203.201019 235.066467 -20.377743 +v -203.201019 235.066467 -20.377743 +v -265.390900 172.876587 -20.377750 +v -209.500000 237.675568 -20.377741 +v -265.390900 172.876587 -20.377750 +v -267.321930 175.766571 -20.377750 +v -209.500000 237.675568 -20.377741 +v -209.500000 237.675568 -20.377741 +v -267.321930 175.766571 -20.377750 +v -268.000031 179.175568 -20.377750 +v -209.500000 237.675568 -20.377741 +v -268.000031 179.175568 -20.377750 +v -268.000031 199.379791 -20.377747 +v -268.000031 199.379791 -20.377747 +v -258.976593 215.242706 -20.377745 +v -209.500000 237.675568 -20.377741 +v -209.500000 237.675568 -20.377741 +v -258.976593 215.242706 -20.377745 +v -245.567139 228.652161 -20.377743 +v -209.500000 237.675568 -20.377741 +v -245.567139 228.652161 -20.377743 +v -229.704254 237.675568 -20.377741 +v -230.091888 239.675568 -18.377741 +v -209.500000 237.675568 -20.377741 +v -229.704254 237.675568 -20.377741 +v -229.704254 237.675568 -20.377741 +v -246.775436 230.245911 -18.377743 +v -230.091888 239.675568 -18.377741 +v -246.775436 230.245911 -3.377742 +v -230.091888 239.675568 -18.377741 +v -246.775436 230.245911 -18.377743 +v -246.775436 230.245911 -3.377742 +v -246.775436 230.245911 -18.377743 +v -246.867859 230.175720 -3.377742 +v -245.567139 228.652161 -1.377743 +v -246.775436 230.245911 -3.377742 +v -246.867859 230.175720 -3.377742 +v -245.567139 228.652161 -1.377743 +v -246.867859 230.175720 -3.377742 +v -258.976593 215.242706 -1.377745 +v -268.000031 179.175568 -1.377750 +v -245.567139 228.652161 -1.377743 +v -258.976593 215.242706 -1.377745 +v -268.000031 179.175568 -1.377750 +v -258.976593 215.242706 -1.377745 +v -268.000031 199.379791 -1.377748 +v -268.000031 199.379791 -1.377748 +v -270.000000 199.767456 -3.377748 +v -268.000031 179.175568 -1.377750 +v -268.000031 179.175568 -1.377750 +v -270.000000 199.767456 -3.377748 +v -270.000000 179.175568 -3.377751 +v -268.000031 179.175568 -1.377750 +v -270.000000 179.175568 -3.377751 +v -269.169678 175.001221 -3.377751 +v -268.000031 179.175568 -1.377750 +v -269.169678 175.001221 -3.377751 +v -267.321930 175.766571 -1.377751 +v -209.500000 237.675568 -1.377741 +v -268.000031 179.175568 -1.377750 +v -267.321930 175.766571 -1.377751 +v -209.500000 237.675568 -1.377741 +v -267.321930 175.766571 -1.377751 +v -265.390900 172.876587 -1.377751 +v -267.321930 175.766571 -1.377751 +v -266.805115 171.462372 -3.377752 +v -265.390900 172.876587 -1.377751 +v -229.704254 237.675568 -1.377741 +v -268.000031 179.175568 -1.377750 +v -209.500000 237.675568 -1.377741 +v -209.500000 237.675568 -1.377741 +v -209.500000 239.675568 -3.377741 +v -229.704254 237.675568 -1.377741 +v -229.704254 237.675568 -1.377741 +v -209.500000 239.675568 -3.377741 +v -230.091888 239.675568 -3.377741 +v -245.567139 228.652161 -1.377743 +v -229.704254 237.675568 -1.377741 +v -230.091888 239.675568 -3.377741 +v -209.500000 239.675568 -3.377741 +v -209.500000 239.675568 -18.377741 +v -230.091888 239.675568 -3.377741 +v -230.091888 239.675568 -3.377741 +v -209.500000 239.675568 -18.377741 +v -230.091888 239.675568 -18.377741 +v -205.325653 238.845245 -3.377741 +v -209.500000 239.675568 -18.377741 +v -209.500000 239.675568 -3.377741 +v -205.325653 238.845245 -3.377741 +v -205.325653 238.845245 -18.377741 +v -209.500000 239.675568 -18.377741 +v -209.500000 237.675568 -20.377741 +v -209.500000 239.675568 -18.377741 +v -205.325653 238.845245 -18.377741 +v -267.321930 175.766571 -1.377751 +v -269.169678 175.001221 -3.377751 +v -266.805115 171.462372 -3.377752 +v -270.000000 179.175568 -3.377751 +v -269.169678 175.001221 -18.377750 +v -269.169678 175.001221 -3.377751 +v -269.169678 175.001221 -3.377751 +v -269.169678 175.001221 -18.377750 +v -266.805115 171.462372 -18.377752 +v -265.390900 172.876587 -20.377750 +v -266.805115 171.462372 -18.377752 +v -269.169678 175.001221 -18.377750 +v -270.000000 179.175568 -3.377751 +v -270.000000 179.175568 -18.377750 +v -269.169678 175.001221 -18.377750 +v -267.321930 175.766571 -20.377750 +v -269.169678 175.001221 -18.377750 +v -270.000000 179.175568 -18.377750 +v -270.000000 179.175568 -3.377751 +v -270.000000 199.767456 -18.377747 +v -270.000000 179.175568 -18.377750 +v -270.000000 199.767456 -18.377747 +v -268.000031 199.379791 -20.377747 +v -270.000000 179.175568 -18.377750 +v -270.000000 199.767456 -3.377748 +v -270.000000 199.767456 -18.377747 +v -270.000000 179.175568 -3.377751 +v -270.000000 199.767456 -18.377747 +v -270.000000 199.767456 -3.377748 +v -260.570343 216.450989 -18.377745 +v -270.000000 199.767456 -18.377747 +v -260.570343 216.450989 -18.377745 +v -258.976593 215.242706 -20.377745 +v -258.976593 215.242706 -20.377745 +v -260.570343 216.450989 -18.377745 +v -260.500153 216.543427 -18.377745 +v -260.570343 216.450989 -18.377745 +v -260.570343 216.450989 -3.377745 +v -260.500153 216.543427 -18.377745 +v -260.500153 216.543427 -18.377745 +v -260.570343 216.450989 -3.377745 +v -260.500153 216.543427 -3.377745 +v -260.500153 216.543427 -18.377745 +v -260.500153 216.543427 -3.377745 +v -246.867859 230.175720 -3.377742 +v -246.867859 230.175720 -3.377742 +v -246.867859 230.175720 -18.377743 +v -260.500153 216.543427 -18.377745 +v -245.567139 228.652161 -20.377743 +v -260.500153 216.543427 -18.377745 +v -246.867859 230.175720 -18.377743 +v -245.567139 228.652161 -20.377743 +v -246.867859 230.175720 -18.377743 +v -246.775436 230.245911 -18.377743 +v -258.976593 215.242706 -1.377745 +v -260.500153 216.543427 -3.377745 +v -260.570343 216.450989 -3.377745 +v -260.570343 216.450989 -18.377745 +v -270.000000 199.767456 -3.377748 +v -260.570343 216.450989 -3.377745 +v -268.000031 199.379791 -1.377748 +v -260.570343 216.450989 -3.377745 +v -270.000000 199.767456 -3.377748 +v -258.976593 215.242706 -1.377745 +v -260.570343 216.450989 -3.377745 +v -268.000031 199.379791 -1.377748 +v -229.704254 237.675568 -1.377741 +v -245.567139 228.652161 -1.377743 +v -268.000031 179.175568 -1.377750 +v -258.976593 215.242706 -1.377745 +v -246.867859 230.175720 -3.377742 +v -260.500153 216.543427 -3.377745 +v -230.091888 239.675568 -3.377741 +v -246.775436 230.245911 -3.377742 +v -245.567139 228.652161 -1.377743 +v -246.867859 230.175720 -3.377742 +v -246.775436 230.245911 -18.377743 +v -246.867859 230.175720 -18.377743 +v -230.091888 239.675568 -3.377741 +v -230.091888 239.675568 -18.377741 +v -246.775436 230.245911 -3.377742 +v -209.500000 239.675568 -18.377741 +v -209.500000 237.675568 -20.377741 +v -230.091888 239.675568 -18.377741 +v -245.567139 228.652161 -20.377743 +v -246.775436 230.245911 -18.377743 +v -229.704254 237.675568 -20.377741 +v -258.976593 215.242706 -20.377745 +v -260.500153 216.543427 -18.377745 +v -245.567139 228.652161 -20.377743 +v -258.976593 215.242706 -20.377745 +v -268.000031 199.379791 -20.377747 +v -270.000000 199.767456 -18.377747 +v -270.000000 179.175568 -18.377750 +v -268.000031 199.379791 -20.377747 +v -268.000031 179.175568 -20.377750 +v -267.321930 175.766571 -20.377750 +v -270.000000 179.175568 -18.377750 +v -268.000031 179.175568 -20.377750 +v -265.390900 172.876587 -20.377750 +v -269.169678 175.001221 -18.377750 +v -267.321930 175.766571 -20.377750 +v -209.500000 237.675568 -20.377741 +v -205.325653 238.845245 -18.377741 +v -206.091034 236.997498 -20.377743 +v -206.091034 236.997498 -20.377743 +v -205.325653 238.845245 -18.377741 +v -201.786804 236.480652 -18.377741 +v -201.786804 236.480652 -3.377741 +v -201.786804 236.480652 -18.377741 +v -205.325653 238.845245 -18.377741 +v -187.910645 222.604492 -18.377743 +v -189.324875 221.190277 -20.377743 +v -201.786804 236.480652 -18.377741 +v -203.201019 235.066467 -20.377743 +v -251.514725 159.000427 -20.377754 +v -265.390900 172.876587 -20.377750 +v -252.928925 157.586212 -18.377754 +v -265.390900 172.876587 -20.377750 +v -251.514725 159.000427 -20.377754 +v -250.761230 154.341980 -18.377754 +v -251.514725 159.000427 -20.377754 +v -248.913452 155.107330 -20.377754 +v -250.761230 154.341980 -18.377754 +v -248.913452 155.107330 -20.377754 +v -250.000015 150.515137 -18.377756 +v 250.000000 -162.580246 -18.377808 +v 248.913452 -167.172440 -20.377808 +v 248.000000 -162.580246 -20.377808 +v 248.000000 -162.580246 -20.377808 +v 250.000000 150.515137 -18.377756 +v 250.000000 -162.580246 -18.377808 +v 248.000000 150.515137 -20.377754 +v 250.000000 150.515137 -18.377756 +v 248.000000 -162.580246 -20.377808 +v 192.247681 -220.332550 -18.377815 +v 192.247681 -218.332550 -20.377815 +v 196.074524 -221.093750 -18.377815 +v 196.839874 -219.245987 -20.377815 +v 248.913452 -167.172440 -20.377808 +v 251.514709 -171.065521 -20.377808 +v 250.761169 -166.407074 -18.377808 +v 251.514709 -171.065521 -20.377808 +v 248.913452 -167.172440 -20.377808 +v 200.732971 -221.847275 -20.377815 +v 213.194916 -237.137634 -18.377819 +v 199.318756 -223.261475 -18.377815 +v 217.499115 -237.654449 -20.377819 +v 216.733765 -239.502213 -18.377819 +v 213.194916 -237.137634 -18.377819 +v 216.733765 -239.502213 -3.377819 +v 216.733765 -239.502213 -18.377819 +v 220.908112 -240.332550 -18.377819 +v 241.000000 -240.332550 -3.377819 +v 220.908112 -240.332550 -18.377819 +v 241.000000 -240.332550 -18.377819 +v 241.000000 -240.332550 -3.377819 +v 241.000000 -240.332550 -18.377819 +v 257.621338 -227.953873 -18.377817 +v 241.000000 -240.332550 -3.377819 +v 257.621338 -227.953873 -18.377817 +v 257.621338 -227.953873 -3.377817 +v 257.621338 -227.953873 -3.377817 +v 256.207092 -226.539642 -1.377817 +v 241.000000 -240.332550 -3.377819 +v 220.908112 -240.332550 -3.377819 +v 220.908112 -240.332550 -18.377819 +v 241.000000 -240.332550 -3.377819 +v 240.490967 -238.332550 -20.377819 +v 257.621338 -227.953873 -18.377817 +v 241.000000 -240.332550 -18.377819 +v 256.207092 -226.539642 -20.377817 +v 257.621338 -227.953873 -18.377817 +v 240.490967 -238.332550 -20.377819 +v 256.207092 -226.539642 -20.377817 +v 270.000000 -211.332550 -18.377815 +v 257.621338 -227.953873 -18.377817 +v 268.000000 -210.823532 -20.377815 +v 270.000000 -211.332550 -18.377815 +v 256.207092 -226.539642 -20.377817 +v 268.000000 -191.240662 -20.377811 +v 270.000000 -191.240662 -18.377811 +v 268.000000 -210.823532 -20.377815 +v 267.321899 -187.831680 -20.377811 +v 270.000000 -191.240662 -18.377811 +v 268.000000 -191.240662 -20.377811 +v 214.609100 -235.723419 -20.377819 +v 265.390869 -184.941666 -20.377811 +v 220.908112 -238.332550 -20.377819 +v 265.390869 -184.941666 -20.377811 +v 252.928894 -169.651306 -18.377808 +v 266.805054 -183.527466 -18.377810 +v 267.321899 -187.831680 -20.377811 +v 269.169678 -187.066315 -18.377811 +v 270.000000 -191.240662 -18.377811 +v 268.000000 -210.823532 -20.377815 +v 270.000000 -191.240662 -18.377811 +v 270.000000 -211.332550 -18.377815 +v 257.621338 -227.953873 -3.377817 +v 257.621338 -227.953873 -18.377817 +v 270.000000 -211.332550 -18.377815 +v 270.000000 -191.240662 -3.377811 +v 268.000000 -191.240662 -1.377811 +v 270.000000 -211.332550 -3.377814 +v 257.621338 -227.953873 -3.377817 +v 268.000000 -210.823532 -1.377814 +v 256.207092 -226.539642 -1.377817 +v 241.000000 -240.332550 -3.377819 +v 256.207092 -226.539642 -1.377817 +v 240.490967 -238.332550 -1.377819 +v 241.000000 -240.332550 -3.377819 +v 240.490967 -238.332550 -1.377819 +v 220.908112 -240.332550 -3.377819 +v 216.733765 -239.502213 -3.377819 +v 220.908112 -240.332550 -18.377819 +v 220.908112 -240.332550 -3.377819 +v 214.609100 -235.723419 -1.377818 +v 213.194916 -237.137634 -3.377819 +v 216.733765 -239.502213 -3.377819 +v 220.908112 -238.332550 -1.377819 +v 268.000000 -191.240662 -1.377811 +v 217.499115 -237.654449 -1.377819 +v 268.000000 -191.240662 -1.377811 +v 269.169678 -187.066315 -3.377810 +v 267.321899 -187.831680 -1.377810 +v 267.321899 -187.831680 -1.377810 +v 269.169678 -187.066315 -3.377810 +v 266.805054 -183.527466 -3.377810 +v 252.928894 -169.651306 -3.377808 +v 251.514709 -171.065521 -1.377808 +v 266.805054 -183.527466 -3.377810 +v 265.390869 -184.941666 -1.377810 +v 200.732971 -221.847275 -1.377816 +v 214.609100 -235.723419 -1.377818 +v 248.913452 -167.172440 -1.377808 +v 196.839874 -219.245987 -1.377815 +v 251.514709 -171.065521 -1.377808 +v 248.913452 -167.172440 -1.377808 +v 192.247681 -218.332550 -1.377815 +v 196.839874 -219.245987 -1.377815 +v 199.318756 -223.261475 -3.377816 +v 200.732971 -221.847275 -1.377816 +v 196.074524 -221.093750 -3.377816 +v 196.074524 -221.093750 -3.377816 +v 192.247681 -220.332550 -18.377815 +v 196.074524 -221.093750 -18.377815 +v -192.247711 -218.332550 -20.377815 +v 192.247681 -220.332550 -18.377815 +v -192.247711 -220.332550 -18.377815 +v 192.247681 -220.332550 -3.377816 +v 196.839874 -219.245987 -1.377815 +v 192.247681 -218.332550 -1.377815 +v -192.247711 -220.332550 -3.377816 +v -196.074524 -221.093750 -18.377815 +v -192.247711 -220.332550 -18.377815 +v -199.318787 -223.261475 -18.377815 +v -200.733002 -221.847275 -20.377815 +v -196.074524 -221.093750 -18.377815 +v -199.318787 -223.261475 -3.377816 +v -213.194931 -237.137634 -18.377819 +v -199.318787 -223.261475 -18.377815 +v -216.733765 -239.502213 -3.377819 +v -216.733765 -239.502213 -18.377819 +v -213.194931 -237.137634 -18.377819 +v -220.908127 -238.332550 -1.377819 +v -216.733765 -239.502213 -3.377819 +v -217.499161 -237.654449 -1.377819 +v -268.000031 -191.240662 -1.377811 +v -220.908127 -238.332550 -1.377819 +v -217.499161 -237.654449 -1.377819 +v -213.194931 -237.137634 -3.377819 +v -200.733002 -221.847275 -1.377816 +v -214.609131 -235.723419 -1.377818 +v -267.321930 -187.831680 -1.377810 +v -270.000000 -191.240662 -3.377811 +v -268.000031 -191.240662 -1.377811 +v -267.321930 -187.831680 -1.377810 +v -269.169678 -187.066315 -3.377810 +v -270.000000 -191.240662 -3.377811 +v -266.805115 -183.527466 -3.377810 +v -269.169678 -187.066315 -18.377811 +v -269.169678 -187.066315 -3.377810 +v -266.805115 -183.527466 -3.377810 +v -252.928925 -169.651306 -18.377808 +v -266.805115 -183.527466 -18.377810 +v -250.761230 -166.407074 -18.377808 +v -248.913452 -167.172440 -20.377808 +v -252.928925 -169.651306 -18.377808 +v -250.761230 -166.407074 -3.377807 +v -250.000015 -162.580246 -18.377808 +v -250.761230 -166.407074 -18.377808 +v -251.514725 -171.065521 -1.377808 +v -252.928925 -169.651306 -3.377808 +v -265.390900 -184.941666 -1.377810 +v -251.514725 -171.065521 -1.377808 +v -200.733002 -221.847275 -1.377816 +v -196.839920 -219.245987 -1.377815 +v -250.761230 -166.407074 -3.377807 +v -248.913452 -167.172440 -1.377808 +v -250.000015 -162.580246 -3.377807 +v -250.000015 150.515137 -3.377756 +v -250.000015 150.515137 -18.377756 +v -250.000015 -162.580246 -3.377807 +v -250.000015 150.515137 -3.377756 +v -250.761230 154.341980 -18.377754 +v -250.000015 150.515137 -18.377756 +v -252.928925 157.586212 -18.377754 +v -251.514725 159.000427 -20.377754 +v -250.761230 154.341980 -18.377754 +v -266.805115 171.462372 -18.377752 +v -265.390900 172.876587 -20.377750 +v -252.928925 157.586212 -18.377754 +v -269.169678 175.001221 -3.377751 +v -266.805115 171.462372 -18.377752 +v -266.805115 171.462372 -3.377752 +v -265.390900 172.876587 -1.377751 +v -266.805115 171.462372 -3.377752 +v -251.514725 159.000427 -1.377754 +v -250.761230 154.341980 -3.377755 +v -248.913452 155.107330 -1.377755 +v -252.928925 157.586212 -3.377754 +v -265.390900 172.876587 -1.377751 +v -251.514725 159.000427 -1.377754 +v -209.500000 237.675568 -1.377741 +v -206.091034 236.997498 -1.377742 +v -209.500000 239.675568 -3.377741 +v -209.500000 237.675568 -1.377741 +v -206.091034 236.997498 -1.377742 +v -205.325653 238.845245 -3.377741 +v -209.500000 239.675568 -3.377741 +v -201.786804 236.480652 -3.377741 +v -205.325653 238.845245 -18.377741 +v -205.325653 238.845245 -3.377741 +v -189.324875 221.190277 -1.377744 +v -187.910645 222.604492 -3.377744 +v -203.201019 235.066467 -1.377742 +v -201.786804 236.480652 -3.377741 +v -187.910645 222.604492 -18.377743 +v -201.786804 236.480652 -18.377741 +v -184.666428 220.436768 -3.377744 +v -184.666428 220.436768 -18.377745 +v -187.910645 222.604492 -3.377744 +v -184.666428 220.436768 -3.377744 +v -180.839584 219.675568 -18.377745 +v -184.666428 220.436768 -18.377745 +v -180.839584 219.675568 -3.377744 +v -180.839584 219.675568 -18.377745 +v -184.666428 220.436768 -3.377744 +v -187.910645 222.604492 -18.377743 +v -185.431793 218.589020 -20.377745 +v -189.324875 221.190277 -20.377743 +v -180.839584 219.675568 -18.377745 +v -180.839584 217.675568 -20.377745 +v -184.666428 220.436768 -18.377745 +v -180.839584 217.675568 -20.377745 +v -180.839584 219.675568 -18.377745 +v 180.839569 217.675568 -20.377745 +v 180.839569 217.675568 -20.377745 +v -180.839584 219.675568 -18.377745 +v 180.839569 219.675568 -18.377745 +v -248.000015 -162.580246 -20.377808 +v -248.000015 150.515137 -20.377754 +v -185.431793 218.589020 -20.377745 +v -248.000015 -162.580246 -20.377808 +v 248.000000 150.515137 -20.377754 +v 248.000000 -162.580246 -20.377808 +v 180.839569 217.675568 -20.377745 +v 248.913452 155.107330 -20.377754 +v -180.839584 217.675568 -20.377745 +v 180.839569 217.675568 -20.377745 +v 185.431763 218.589020 -20.377745 +v 248.913452 155.107330 -20.377754 +v 250.000000 150.515137 -18.377756 +v 248.000000 150.515137 -20.377754 +v 250.761169 154.341980 -18.377754 +v 252.928894 157.586212 -3.377754 +v 251.514709 159.000427 -1.377754 +v 250.761169 154.341980 -3.377755 +v 180.839569 217.675568 -1.377745 +v 248.000000 -162.580246 -1.377807 +v 185.431763 218.589020 -1.377745 +v 250.000000 150.515137 -3.377756 +v 248.913452 155.107330 -1.377755 +v 248.000000 150.515137 -1.377755 +v 250.000000 150.515137 -3.377756 +v 250.000000 -162.580246 -18.377808 +v 250.000000 150.515137 -18.377756 +v 250.761169 -166.407074 -18.377808 +v 248.913452 -167.172440 -20.377808 +v 250.000000 -162.580246 -18.377808 +v 252.928894 -169.651306 -18.377808 +v 251.514709 -171.065521 -20.377808 +v 250.761169 -166.407074 -18.377808 +v 252.928894 -169.651306 -3.377808 +v 266.805054 -183.527466 -18.377810 +v 252.928894 -169.651306 -18.377808 +v 252.928894 -169.651306 -3.377808 +v 248.913452 -167.172440 -1.377808 +v 251.514709 -171.065521 -1.377808 +v 250.000000 -162.580246 -3.377807 +v 248.000000 -162.580246 -1.377807 +v 250.761169 -166.407074 -3.377807 +v 248.913452 -167.172440 -1.377808 +v -192.247711 -218.332550 -1.377815 +v 192.247681 -218.332550 -1.377815 +v 180.839569 217.675568 -1.377745 +v -180.839584 217.675568 -1.377745 +v 248.000000 -162.580246 -1.377807 +v -196.074524 -221.093750 -3.377816 +v -192.247711 -218.332550 -1.377815 +v -196.839920 -219.245987 -1.377815 +v -196.839920 -219.245987 -1.377815 +v -248.000015 150.515137 -1.377755 +v -248.000015 -162.580246 -1.377807 +v -185.431793 218.589020 -1.377745 +v -248.913452 155.107330 -1.377755 +v -248.000015 150.515137 -1.377755 +v -184.666428 220.436768 -3.377744 +v -185.431793 218.589020 -1.377745 +v -180.839584 219.675568 -3.377744 +v 180.839569 217.675568 -1.377745 +v 180.839569 219.675568 -3.377744 +v -180.839584 217.675568 -1.377745 +v 180.839569 219.675568 -3.377744 +v 180.839569 217.675568 -1.377745 +v 184.666382 220.436768 -3.377744 +v -180.839584 219.675568 -3.377744 +v 180.839569 219.675568 -18.377745 +v -180.839584 219.675568 -18.377745 +v 184.666382 220.436768 -3.377744 +v 184.666382 220.436768 -18.377745 +v 180.839569 219.675568 -3.377744 +v 180.839569 219.675568 -18.377745 +v 185.431763 218.589020 -20.377745 +v 180.839569 217.675568 -20.377745 +v 248.913452 155.107330 -20.377754 +v 185.431763 218.589020 -20.377745 +v 189.324829 221.190277 -20.377743 +v 251.514709 159.000427 -20.377754 +v 189.324829 221.190277 -20.377743 +v 265.390869 172.876587 -20.377750 +v 267.321899 175.766571 -20.377750 +v 266.805054 171.462372 -18.377752 +v 265.390869 172.876587 -20.377750 +v 267.321899 175.766571 -20.377750 +v 269.169678 175.001221 -18.377750 +v 266.805054 171.462372 -18.377752 +v 269.169678 175.001221 -3.377751 +v 269.169678 175.001221 -18.377750 +v 270.000000 179.175568 -18.377750 +v 269.169678 175.001221 -3.377751 +v 270.000000 179.175568 -18.377750 +v 270.000000 179.175568 -3.377751 +v 267.321899 175.766571 -1.377751 +v 269.169678 175.001221 -3.377751 +v 270.000000 179.175568 -3.377751 +v 268.000000 199.379791 -20.377747 +v 270.000000 199.767456 -18.377747 +v 268.000000 179.175568 -20.377750 +v 270.000000 199.767456 -18.377747 +v 268.000000 199.379791 -20.377747 +v 260.570312 216.450989 -18.377745 +v 270.000000 179.175568 -3.377751 +v 270.000000 179.175568 -18.377750 +v 270.000000 199.767456 -3.377748 +v 270.000000 199.767456 -3.377748 +v 268.000000 199.379791 -1.377748 +v 270.000000 179.175568 -3.377751 +v 260.570312 216.450989 -3.377745 +v 270.000000 199.767456 -18.377747 +v 260.570312 216.450989 -18.377745 +v 260.570312 216.450989 -18.377745 +v 268.000000 199.379791 -20.377747 +v 258.976562 215.242706 -20.377745 +v 268.000000 199.379791 -20.377747 +v 268.000000 179.175568 -20.377750 +v 258.976562 215.242706 -20.377745 +v 268.000000 179.175568 -20.377750 +v 203.200989 235.066467 -20.377743 +v 206.091003 236.997498 -20.377743 +v 203.200989 235.066467 -20.377743 +v 205.325623 238.845245 -18.377741 +v 206.091003 236.997498 -20.377743 +v 230.091858 239.675568 -3.377741 +v 230.091858 239.675568 -18.377741 +v 209.499969 239.675568 -3.377741 +v 209.499969 237.675568 -20.377741 +v 209.499969 239.675568 -18.377741 +v 229.704224 237.675568 -20.377741 +v 245.567139 228.652161 -20.377743 +v 209.499969 237.675568 -20.377741 +v 229.704224 237.675568 -20.377741 +v 260.500122 216.543427 -18.377745 +v 245.567139 228.652161 -20.377743 +v 246.867798 230.175720 -18.377743 +v 246.867798 230.175720 -18.377743 +v 246.775391 230.245911 -3.377742 +v 246.867798 230.175720 -3.377742 +v 230.091858 239.675568 -18.377741 +v 230.091858 239.675568 -3.377741 +v 246.775391 230.245911 -18.377743 +v 209.499969 239.675568 -3.377741 +v 209.499969 237.675568 -1.377741 +v 230.091858 239.675568 -3.377741 +v 245.567139 228.652161 -1.377743 +v 246.775391 230.245911 -3.377742 +v 229.704224 237.675568 -1.377741 +v 258.976562 215.242706 -1.377745 +v 260.500122 216.543427 -3.377745 +v 245.567139 228.652161 -1.377743 +v 258.976562 215.242706 -1.377745 +v 268.000000 199.379791 -1.377748 +v 270.000000 199.767456 -3.377748 +v 270.000000 179.175568 -3.377751 +v 268.000000 199.379791 -1.377748 +v 268.000000 179.175568 -1.377750 +v 267.321899 175.766571 -1.377751 +v 270.000000 179.175568 -3.377751 +v 268.000000 179.175568 -1.377750 +v 265.390869 172.876587 -1.377751 +v 269.169678 175.001221 -3.377751 +v 267.321899 175.766571 -1.377751 +v 203.200989 235.066467 -1.377742 +v 251.514709 159.000427 -1.377754 +v 265.390869 172.876587 -1.377751 +v 189.324829 221.190277 -1.377744 +v 251.514709 159.000427 -1.377754 +v 203.200989 235.066467 -1.377742 +v 209.499969 237.675568 -1.377741 +v 205.325623 238.845245 -3.377741 +v 206.091003 236.997498 -1.377742 +v 205.325623 238.845245 -3.377741 +v 205.325623 238.845245 -18.377741 +v 201.786774 236.480652 -18.377741 +v 201.786774 236.480652 -3.377741 +v 189.324829 221.190277 -1.377744 +v 203.200989 235.066467 -1.377742 +v 189.324829 221.190277 -1.377744 +v 185.431763 218.589020 -1.377745 +v 251.514709 159.000427 -1.377754 +v 184.666382 220.436768 -3.377744 +v 180.839569 217.675568 -1.377745 +v 185.431763 218.589020 -1.377745 +v 184.666382 220.436768 -3.377744 +v 187.910614 222.604492 -18.377743 +v 184.666382 220.436768 -18.377745 +v 187.910614 222.604492 -3.377744 +v 201.786774 236.480652 -18.377741 +v 187.910614 222.604492 -18.377743 +vn -0.5556 0.8315 0.0000 +vn -0.3966 0.5936 0.7002 +vn -0.5000 0.5000 0.7071 +vn -0.7071 0.7071 0.0000 +vn -0.0000 0.0000 1.0000 +vn 0.0000 0.7071 0.7071 +vn 0.3539 0.6262 0.6947 +vn 0.4921 0.8706 0.0000 +vn 0.6048 0.7964 0.0000 +vn 0.4277 0.5631 -0.7071 +vn 0.3495 0.6184 -0.7039 +vn 0.3558 0.6255 -0.6944 +vn 0.0000 0.7071 -0.7071 +vn 0.0000 1.0000 0.0000 +vn -0.1951 0.9808 0.0000 +vn -0.1393 0.7002 0.7002 +vn -0.1393 0.7002 -0.7002 +vn 0.0000 0.0000 -1.0000 +vn 0.5004 0.5004 -0.7066 +vn 0.5632 0.4276 -0.7071 +vn 0.7965 0.6047 0.0000 +vn 0.7071 0.7071 0.0000 +vn 0.5004 0.5004 0.7066 +vn 0.4277 0.5631 0.7071 +vn 0.5632 0.4277 0.7070 +vn 0.6184 0.3495 0.7039 +vn 0.8706 0.4921 0.0000 +vn 1.0000 -0.0000 0.0000 +vn 0.7071 -0.0000 -0.7071 +vn 0.7002 -0.1393 -0.7002 +vn -0.5000 0.5000 -0.7071 +vn -0.3966 0.5936 -0.7002 +vn 0.1393 0.7002 0.7002 +vn 0.7002 0.1393 0.7002 +vn 0.5936 0.3966 0.7002 +vn 0.8315 0.5556 0.0000 +vn 0.9808 0.1951 0.0000 +vn 0.7071 -0.0000 0.7071 +vn 0.5936 -0.3966 0.7002 +vn 0.7002 -0.1393 0.7002 +vn 0.9808 -0.1951 0.0000 +vn 0.8315 -0.5556 0.0000 +vn 0.7071 -0.7071 0.0000 +vn 0.5000 -0.5000 0.7071 +vn 0.5000 -0.5000 -0.7071 +vn 0.5936 -0.3966 -0.7002 +vn 0.1393 0.7002 -0.7002 +vn 0.3966 0.5936 -0.7002 +vn 0.5556 0.8315 0.0000 +vn 0.5000 0.5000 0.7071 +vn 0.3966 0.5936 0.7002 +vn -0.5936 -0.3966 0.7002 +vn -0.5000 -0.5000 0.7071 +vn -0.7071 -0.7071 0.0000 +vn -0.8315 -0.5556 0.0000 +vn -0.9808 -0.1951 0.0000 +vn -0.7002 -0.1393 0.7002 +vn -0.7071 -0.0000 0.7071 +vn -0.7002 0.1393 0.7002 +vn -0.5936 0.3966 0.7002 +vn -0.8315 0.5556 0.0000 +vn 0.3966 -0.5936 0.7002 +vn 0.5556 -0.8315 0.0000 +vn 0.1951 -0.9808 0.0000 +vn 0.1393 -0.7002 0.7002 +vn 0.0000 -0.7071 0.7071 +vn 0.0000 -1.0000 0.0000 +vn -0.1951 -0.9808 0.0000 +vn -0.1393 -0.7002 0.7002 +vn -0.3966 -0.5936 0.7002 +vn 0.5803 -0.4322 0.6903 +vn 0.8020 -0.5973 0.0000 +vn 0.5936 0.3966 -0.7002 +vn 0.0000 -0.7071 -0.7071 +vn -0.1393 -0.7002 -0.7002 +vn -0.3966 -0.5936 -0.7002 +vn -0.5000 -0.5000 -0.7071 +vn 0.5000 0.5000 -0.7071 +vn -0.5556 -0.8315 0.0000 +vn -0.5936 0.3966 -0.7002 +vn 0.3966 -0.5936 -0.7002 +vn 0.1393 -0.7002 -0.7002 +vn -0.7071 0.0000 -0.7071 +vn -0.5803 -0.4322 -0.6903 +vn -0.8020 -0.5973 0.0000 +vn -0.5701 -0.4246 0.7034 +vn -0.4265 -0.5684 0.7035 +vn -1.0000 0.0000 0.0000 +vn -0.9808 0.1951 0.0000 +vn -0.7002 0.1393 -0.7002 +vn -0.5973 -0.8020 0.0000 +vn -0.4322 -0.5803 0.6903 +vn -0.5791 -0.4346 0.6897 +vn -0.4246 -0.5701 -0.7034 +vn -0.5684 -0.4265 -0.7035 +vn -0.4346 -0.5791 -0.6897 +vn -0.7002 -0.1393 -0.7002 +vn -0.3539 0.6262 -0.6948 +vn -0.4921 0.8706 0.0000 +vn -0.6048 0.7963 0.0000 +vn -0.4277 0.5631 0.7071 +vn -0.5004 0.5004 0.7066 +vn -0.3558 0.6255 0.6944 +vn 0.1951 0.9808 0.0000 +vn -0.5936 -0.3966 -0.7002 +vn -0.8706 0.4921 0.0000 +vn -0.6184 0.3495 -0.7039 +vn -0.5632 0.4277 -0.7070 +vn -0.7965 0.6047 0.0000 +vn -0.7963 0.6049 0.0000 +vn -0.5004 0.5004 -0.7066 +vn -0.4277 0.5631 -0.7071 +vn -0.5632 0.4277 0.7070 +vn -0.8706 0.4920 0.0000 +vn -0.6262 0.3539 0.6947 +vn -0.6173 0.3511 0.7040 +vn -0.3495 0.6184 0.7039 +vn -0.6048 0.7964 0.0000 +vn -0.3511 0.6173 -0.7040 +vn -0.6255 0.3558 -0.6944 +vn 0.7002 0.1393 -0.7002 +vn 0.5973 -0.8020 0.0000 +vn 0.4246 -0.5701 0.7034 +vn 0.4322 -0.5803 -0.6903 +vn 0.4265 -0.5684 -0.7035 +vn 0.5701 -0.4246 -0.7034 +vn 0.5791 -0.4346 -0.6897 +vn 0.5684 -0.4265 0.7035 +vn 0.4346 -0.5791 0.6897 +vn 0.6262 0.3539 -0.6948 +vn 0.6173 0.3511 -0.7040 +vn 0.6048 0.7963 0.0000 +vn 0.3511 0.6173 0.7040 +vn 0.6255 0.3558 0.6944 +usemtl Default_OBJ +s off +f 1//1 2//1 3//1 +f 4//2 5//2 6//2 +f 7//2 8//2 9//2 +f 10//3 11//3 12//3 +f 13//4 14//4 15//4 +f 16//1 17//1 18//1 +f 19//2 20//2 21//2 +f 22//2 23//2 24//2 +f 25//5 26//5 27//5 +f 28//5 29//5 30//5 +f 31//5 32//5 33//5 +f 34//5 35//5 36//5 +f 37//5 38//5 39//5 +f 40//5 41//5 42//5 +f 43//5 44//5 45//5 +f 46//5 47//5 48//5 +f 49//6 50//6 51//6 +f 52//7 53//7 54//7 +f 55//8 56//8 57//8 +f 58//9 59//9 60//9 +f 61//10 62//10 63//10 +f 64//11 65//11 66//11 +f 67//12 68//12 69//12 +f 70//13 71//13 72//13 +f 73//14 74//14 75//14 +f 76//15 77//15 78//15 +f 79//15 80//15 81//15 +f 82//16 83//16 84//16 +f 85//17 86//17 87//17 +f 88//17 89//17 90//17 +f 91//18 92//18 93//18 +f 94//18 95//18 96//18 +f 97//18 98//18 99//18 +f 100//19 101//19 102//19 +f 103//20 104//20 105//20 +f 106//21 107//21 108//21 +f 109//22 110//22 111//22 +f 112//22 113//22 114//22 +f 115//23 116//23 117//23 +f 118//24 119//24 120//24 +f 121//21 122//21 123//21 +f 124//25 125//25 126//25 +f 127//26 128//26 129//26 +f 130//27 131//27 132//27 +f 133//28 134//28 135//28 +f 136//29 137//29 138//29 +f 139//30 140//30 141//30 +f 142//30 143//30 144//30 +f 145//18 146//18 147//18 +f 148//18 149//18 150//18 +f 151//18 152//18 153//18 +f 154//31 155//31 156//31 +f 157//31 158//31 159//31 +f 160//32 161//32 162//32 +f 163//32 164//32 165//32 +f 166//32 167//32 168//32 +f 169//17 170//17 171//17 +f 172//15 173//15 174//15 +f 175//14 176//14 177//14 +f 178//6 179//6 180//6 +f 181//33 182//33 183//33 +f 184//5 185//5 186//5 +f 187//5 188//5 189//5 +f 190//5 191//5 192//5 +f 193//5 194//5 195//5 +f 196//5 197//5 198//5 +f 199//34 200//34 201//34 +f 202//35 203//35 204//35 +f 205//36 206//36 207//36 +f 208//36 209//36 210//36 +f 211//37 212//37 213//37 +f 214//37 215//37 216//37 +f 217//28 218//28 219//28 +f 220//38 221//38 222//38 +f 223//38 224//38 225//38 +f 226//5 227//5 228//5 +f 229//5 230//5 231//5 +f 232//5 233//5 234//5 +f 235//39 236//39 237//39 +f 238//40 239//40 240//40 +f 241//41 242//41 243//41 +f 244//41 245//41 246//41 +f 247//42 248//42 249//42 +f 250//42 251//42 252//42 +f 253//43 254//43 255//43 +f 256//44 257//44 258//44 +f 259//44 260//44 261//44 +f 262//39 263//39 264//39 +f 265//42 266//42 267//42 +f 268//42 269//42 270//42 +f 271//43 272//43 273//43 +f 274//45 275//45 276//45 +f 277//46 278//46 279//46 +f 280//18 281//18 282//18 +f 283//45 284//45 285//45 +f 286//46 287//46 288//46 +f 289//30 290//30 291//30 +f 292//18 293//18 294//18 +f 295//18 296//18 297//18 +f 298//18 299//18 300//18 +f 301//47 302//47 303//47 +f 304//48 305//48 306//48 +f 307//49 308//49 309//49 +f 310//22 311//22 312//22 +f 313//50 314//50 315//50 +f 316//51 317//51 318//51 +f 319//51 320//51 321//51 +f 322//5 323//5 324//5 +f 325//5 326//5 327//5 +f 328//5 329//5 330//5 +f 331//5 332//5 333//5 +f 334//5 335//5 336//5 +f 337//51 338//51 339//51 +f 340//51 341//51 342//51 +f 343//52 344//52 345//52 +f 346//53 347//53 348//53 +f 349//54 350//54 351//54 +f 352//54 353//54 354//54 +f 355//55 356//55 357//55 +f 358//55 359//55 360//55 +f 361//56 362//56 363//56 +f 364//57 365//57 366//57 +f 367//57 368//57 369//57 +f 370//58 371//58 372//58 +f 373//58 374//58 375//58 +f 376//59 377//59 378//59 +f 379//5 380//5 381//5 +f 382//5 383//5 384//5 +f 385//60 386//60 387//60 +f 388//60 389//60 390//60 +f 391//61 392//61 393//61 +f 394//61 395//61 396//61 +f 397//4 398//4 399//4 +f 400//3 401//3 402//3 +f 403//60 404//60 405//60 +f 406//60 407//60 408//60 +f 409//5 410//5 411//5 +f 412//5 413//5 414//5 +f 415//5 416//5 417//5 +f 418//5 419//5 420//5 +f 421//5 422//5 423//5 +f 424//62 425//62 426//62 +f 427//62 428//62 429//62 +f 430//63 431//63 432//63 +f 433//43 434//43 435//43 +f 436//44 437//44 438//44 +f 439//62 440//62 441//62 +f 442//62 443//62 444//62 +f 445//63 446//63 447//63 +f 448//63 449//63 450//63 +f 451//64 452//64 453//64 +f 454//65 455//65 456//65 +f 457//66 458//66 459//66 +f 460//66 461//66 462//66 +f 463//67 464//67 465//67 +f 466//67 467//67 468//67 +f 469//68 470//68 471//68 +f 472//69 473//69 474//69 +f 475//70 476//70 477//70 +f 478//5 479//5 480//5 +f 481//5 482//5 483//5 +f 484//50 485//50 486//50 +f 487//35 488//35 489//35 +f 490//5 491//5 492//5 +f 493//5 494//5 495//5 +f 496//5 497//5 498//5 +f 499//70 500//70 501//70 +f 502//69 503//69 504//69 +f 505//69 506//69 507//69 +f 508//66 509//66 510//66 +f 511//5 512//5 513//5 +f 514//5 515//5 516//5 +f 517//5 518//5 519//5 +f 520//38 521//38 522//38 +f 523//71 524//71 525//71 +f 526//72 527//72 528//72 +f 529//28 530//28 531//28 +f 532//28 533//28 534//28 +f 535//37 536//37 537//37 +f 538//37 539//37 540//37 +f 541//34 542//34 543//34 +f 544//36 545//36 546//36 +f 547//36 548//36 549//36 +f 550//22 551//22 552//22 +f 553//73 554//73 555//73 +f 556//73 557//73 558//73 +f 559//18 560//18 561//18 +f 562//18 563//18 564//18 +f 565//18 566//18 567//18 +f 568//18 569//18 570//18 +f 571//18 572//18 573//18 +f 574//74 575//74 576//74 +f 577//74 578//74 579//74 +f 580//75 581//75 582//75 +f 583//75 584//75 585//75 +f 586//18 587//18 588//18 +f 589//76 590//76 591//76 +f 592//77 593//77 594//77 +f 595//18 596//18 597//18 +f 598//18 599//18 600//18 +f 601//78 602//78 603//78 +f 604//18 605//18 606//18 +f 607//76 608//76 609//76 +f 610//76 611//76 612//76 +f 613//79 614//79 615//79 +f 616//54 617//54 618//54 +f 619//53 620//53 621//53 +f 622//53 623//53 624//53 +f 625//54 626//54 627//54 +f 628//79 629//79 630//79 +f 631//79 632//79 633//79 +f 634//79 635//79 636//79 +f 637//75 638//75 639//75 +f 640//18 641//18 642//18 +f 643//18 644//18 645//18 +f 646//18 647//18 648//18 +f 649//18 650//18 651//18 +f 652//18 653//18 654//18 +f 655//18 656//18 657//18 +f 658//80 659//80 660//80 +f 661//31 662//31 663//31 +f 664//31 665//31 666//31 +f 667//80 668//80 669//80 +f 670//18 671//18 672//18 +f 673//18 674//18 675//18 +f 676//18 677//18 678//18 +f 679//81 680//81 681//81 +f 682//82 683//82 684//82 +f 685//82 686//82 687//82 +f 688//74 689//74 690//74 +f 691//18 692//18 693//18 +f 694//18 695//18 696//18 +f 697//18 698//18 699//18 +f 700//83 701//83 702//83 +f 703//84 704//84 705//84 +f 706//85 707//85 708//85 +f 709//85 710//85 711//85 +f 712//86 713//86 714//86 +f 715//87 716//87 717//87 +f 718//5 719//5 720//5 +f 721//5 722//5 723//5 +f 724//5 725//5 726//5 +f 727//58 728//58 729//58 +f 730//58 731//58 732//58 +f 733//88 734//88 735//88 +f 736//89 737//89 738//89 +f 739//89 740//89 741//89 +f 742//90 743//90 744//90 +f 745//66 746//66 747//66 +f 748//66 749//66 750//66 +f 751//65 752//65 753//65 +f 754//64 755//64 756//64 +f 757//67 758//67 759//67 +f 760//67 761//67 762//67 +f 763//91 764//91 765//91 +f 766//92 767//92 768//92 +f 769//93 770//93 771//93 +f 772//91 773//91 774//91 +f 775//94 776//94 777//94 +f 778//88 779//88 780//88 +f 781//83 782//83 783//83 +f 784//95 785//95 786//95 +f 787//96 788//96 789//96 +f 790//74 791//74 792//74 +f 793//64 794//64 795//64 +f 796//81 797//81 798//81 +f 799//45 800//45 801//45 +f 802//45 803//45 804//45 +f 805//18 806//18 807//18 +f 808//18 809//18 810//18 +f 811//90 812//90 813//90 +f 814//80 815//80 816//80 +f 817//61 818//61 819//61 +f 820//18 821//18 822//18 +f 823//18 824//18 825//18 +f 826//81 827//81 828//81 +f 829//82 830//82 831//82 +f 832//82 833//82 834//82 +f 835//74 836//74 837//74 +f 838//18 839//18 840//18 +f 841//90 842//90 843//90 +f 844//90 845//90 846//90 +f 847//83 848//83 849//83 +f 850//83 851//83 852//83 +f 853//88 854//88 855//88 +f 856//89 857//89 858//89 +f 859//97 860//97 861//97 +f 862//18 863//18 864//18 +f 865//18 866//18 867//18 +f 868//18 869//18 870//18 +f 871//18 872//18 873//18 +f 874//78 875//78 876//78 +f 877//48 878//48 879//48 +f 880//18 881//18 882//18 +f 883//18 884//18 885//18 +f 886//18 887//18 888//18 +f 889//18 890//18 891//18 +f 892//18 893//18 894//18 +f 895//18 896//18 897//18 +f 898//18 899//18 900//18 +f 901//18 902//18 903//18 +f 904//13 905//13 906//13 +f 907//98 908//98 909//98 +f 910//99 911//99 912//99 +f 913//100 914//100 915//100 +f 916//101 917//101 918//101 +f 919//102 920//102 921//102 +f 922//5 923//5 924//5 +f 925//5 926//5 927//5 +f 928//58 929//58 930//58 +f 931//58 932//58 933//58 +f 934//57 935//57 936//57 +f 937//57 938//57 939//57 +f 940//5 941//5 942//5 +f 943//5 944//5 945//5 +f 946//52 947//52 948//52 +f 949//5 950//5 951//5 +f 952//6 953//6 954//6 +f 955//6 956//6 957//6 +f 958//103 959//103 960//103 +f 961//14 962//14 963//14 +f 964//14 965//14 966//14 +f 967//104 968//104 969//104 +f 970//104 971//104 972//104 +f 973//47 974//47 975//47 +f 976//52 977//52 978//52 +f 979//56 980//56 981//56 +f 982//55 983//55 984//55 +f 985//105 986//105 987//105 +f 988//56 989//56 990//56 +f 991//97 992//97 993//97 +f 994//88 995//88 996//88 +f 997//83 998//83 999//83 +f 1000//88 1001//88 1002//88 +f 1003//106 1004//106 1005//106 +f 1006//107 1007//107 1008//107 +f 1009//108 1010//108 1011//108 +f 1012//109 1013//109 1014//109 +f 1015//110 1016//110 1017//110 +f 1018//4 1019//4 1020//4 +f 1021//4 1022//4 1023//4 +f 1024//111 1025//111 1026//111 +f 1027//112 1028//112 1029//112 +f 1030//113 1031//113 1032//113 +f 1033//114 1034//114 1035//114 +f 1036//115 1037//115 1038//115 +f 1039//116 1040//116 1041//116 +f 1042//5 1043//5 1044//5 +f 1045//102 1046//102 1047//102 +f 1048//117 1049//117 1050//117 +f 1051//118 1052//118 1053//118 +f 1054//99 1055//99 1056//99 +f 1057//13 1058//13 1059//13 +f 1060//119 1061//119 1062//119 +f 1063//111 1064//111 1065//111 +f 1066//120 1067//120 1068//120 +f 1069//83 1070//83 1071//83 +f 1072//97 1073//97 1074//97 +f 1075//105 1076//105 1077//105 +f 1078//47 1079//47 1080//47 +f 1081//48 1082//48 1083//48 +f 1084//49 1085//49 1086//49 +f 1087//78 1088//78 1089//78 +f 1090//18 1091//18 1092//18 +f 1093//77 1094//77 1095//77 +f 1096//105 1097//105 1098//105 +f 1099//97 1100//97 1101//97 +f 1102//121 1103//121 1104//121 +f 1105//29 1106//29 1107//29 +f 1108//29 1109//29 1110//29 +f 1111//75 1112//75 1113//75 +f 1114//18 1115//18 1116//18 +f 1117//73 1118//73 1119//73 +f 1120//77 1121//77 1122//77 +f 1123//76 1124//76 1125//76 +f 1126//68 1127//68 1128//68 +f 1129//67 1130//67 1131//67 +f 1132//122 1133//122 1134//122 +f 1135//122 1136//122 1137//122 +f 1138//123 1139//123 1140//123 +f 1141//67 1142//67 1143//67 +f 1144//124 1145//124 1146//124 +f 1147//125 1148//125 1149//125 +f 1150//126 1151//126 1152//126 +f 1153//127 1154//127 1155//127 +f 1156//29 1157//29 1158//29 +f 1159//121 1160//121 1161//121 +f 1162//18 1163//18 1164//18 +f 1165//78 1166//78 1167//78 +f 1168//121 1169//121 1170//121 +f 1171//29 1172//29 1173//29 +f 1174//72 1175//72 1176//72 +f 1177//38 1178//38 1179//38 +f 1180//128 1181//128 1182//128 +f 1183//129 1184//129 1185//129 +f 1186//66 1187//66 1188//66 +f 1189//68 1190//68 1191//68 +f 1192//70 1193//70 1194//70 +f 1195//5 1196//5 1197//5 +f 1198//34 1199//34 1200//34 +f 1201//35 1202//35 1203//35 +f 1204//50 1205//50 1206//50 +f 1207//5 1208//5 1209//5 +f 1210//5 1211//5 1212//5 +f 1213//5 1214//5 1215//5 +f 1216//70 1217//70 1218//70 +f 1219//68 1220//68 1221//68 +f 1222//74 1223//74 1224//74 +f 1225//69 1226//69 1227//69 +f 1228//64 1229//64 1230//64 +f 1231//81 1232//81 1233//81 +f 1234//43 1235//43 1236//43 +f 1237//63 1238//63 1239//63 +f 1240//65 1241//65 1242//65 +f 1243//5 1244//5 1245//5 +f 1246//44 1247//44 1248//44 +f 1249//59 1250//59 1251//59 +f 1252//59 1253//59 1254//59 +f 1255//61 1256//61 1257//61 +f 1258//4 1259//4 1260//4 +f 1261//80 1262//80 1263//80 +f 1264//89 1265//89 1266//89 +f 1267//3 1268//3 1269//3 +f 1270//5 1271//5 1272//5 +f 1273//59 1274//59 1275//59 +f 1276//88 1277//88 1278//88 +f 1279//56 1280//56 1281//56 +f 1282//105 1283//105 1284//105 +f 1285//77 1286//77 1287//77 +f 1288//55 1289//55 1290//55 +f 1291//53 1292//53 1293//53 +f 1294//52 1295//52 1296//52 +f 1297//5 1298//5 1299//5 +f 1300//33 1301//33 1302//33 +f 1303//33 1304//33 1305//33 +f 1306//49 1307//49 1308//49 +f 1309//50 1310//50 1311//50 +f 1312//22 1313//22 1314//22 +f 1315//49 1316//49 1317//49 +f 1318//104 1319//104 1320//104 +f 1321//104 1322//104 1323//104 +f 1324//48 1325//48 1326//48 +f 1327//47 1328//47 1329//47 +f 1330//13 1331//13 1332//13 +f 1333//13 1334//13 1335//13 +f 1336//18 1337//18 1338//18 +f 1339//18 1340//18 1341//18 +f 1342//18 1343//18 1344//18 +f 1345//18 1346//18 1347//18 +f 1348//30 1349//30 1350//30 +f 1351//39 1352//39 1353//39 +f 1354//5 1355//5 1356//5 +f 1357//40 1358//40 1359//40 +f 1360//28 1361//28 1362//28 +f 1363//121 1364//121 1365//121 +f 1366//73 1367//73 1368//73 +f 1369//22 1370//22 1371//22 +f 1372//35 1373//35 1374//35 +f 1375//34 1376//34 1377//34 +f 1378//5 1379//5 1380//5 +f 1381//5 1382//5 1383//5 +f 1384//65 1385//65 1386//65 +f 1387//5 1388//5 1389//5 +f 1390//5 1391//5 1392//5 +f 1393//33 1394//33 1395//33 +f 1396//6 1397//6 1398//6 +f 1399//16 1400//16 1401//16 +f 1402//14 1403//14 1404//14 +f 1405//15 1406//15 1407//15 +f 1408//17 1409//17 1410//17 +f 1411//18 1412//18 1413//18 +f 1414//18 1415//18 1416//18 +f 1417//46 1418//46 1419//46 +f 1420//46 1421//46 1422//46 +f 1423//41 1424//41 1425//41 +f 1426//41 1427//41 1428//41 +f 1429//40 1430//40 1431//40 +f 1432//29 1433//29 1434//29 +f 1435//130 1436//130 1437//130 +f 1438//28 1439//28 1440//28 +f 1441//38 1442//38 1443//38 +f 1444//27 1445//27 1446//27 +f 1447//131 1448//131 1449//131 +f 1450//18 1451//18 1452//18 +f 1453//18 1454//18 1455//18 +f 1456//32 1457//32 1458//32 +f 1459//14 1460//14 1461//14 +f 1462//13 1463//13 1464//13 +f 1465//18 1466//18 1467//18 +f 1468//19 1469//19 1470//19 +f 1471//132 1472//132 1473//132 +f 1474//8 1475//8 1476//8 +f 1477//6 1478//6 1479//6 +f 1480//133 1481//133 1482//133 +f 1483//23 1484//23 1485//23 +f 1486//134 1487//134 1488//134 +f 1489//38 1490//38 1491//38 +f 1492//40 1493//40 1494//40 +f 1495//39 1496//39 1497//39 +f 1498//5 1499//5 1500//5 +f 1501//5 1502//5 1503//5 +f 1504//16 1505//16 1506//16 +f 1507//1 1508//1 1509//1 +f 1510//3 1511//3 1512//3 +f 1513//5 1514//5 1515//5 +f 1516//16 1517//16 1518//16 +f 1519//1 1520//1 1521//1 +f 1522//4 1523//4 1524//4 diff --git a/resources/meshes/dagoma_pro_430_base.3mf b/resources/meshes/dagoma_pro_430_base.3mf deleted file mode 100644 index 2ada69fa94..0000000000 Binary files a/resources/meshes/dagoma_pro_430_base.3mf and /dev/null differ diff --git a/resources/meshes/dagoma_sigma.stl b/resources/meshes/dagoma_sigma.stl new file mode 100644 index 0000000000..d980da86a2 Binary files /dev/null and b/resources/meshes/dagoma_sigma.stl differ diff --git a/resources/meshes/elegoo_platform.3mf b/resources/meshes/elegoo_platform.3mf new file mode 100644 index 0000000000..90c0677717 Binary files /dev/null and b/resources/meshes/elegoo_platform.3mf differ diff --git a/resources/meshes/elegoo_platform_max.3mf b/resources/meshes/elegoo_platform_max.3mf new file mode 100644 index 0000000000..103b182f68 Binary files /dev/null and b/resources/meshes/elegoo_platform_max.3mf differ diff --git a/resources/meshes/flsun_qq_s.3mf b/resources/meshes/flsun_qq_s.3mf index 7eba390a66..275a34ddaf 100644 Binary files a/resources/meshes/flsun_qq_s.3mf and b/resources/meshes/flsun_qq_s.3mf differ diff --git a/resources/meshes/flsun_v400.stl b/resources/meshes/flsun_v400.stl new file mode 100644 index 0000000000..6169fdada5 Binary files /dev/null and b/resources/meshes/flsun_v400.stl differ diff --git a/resources/meshes/hctech_hc300-m1&m1h.3mf b/resources/meshes/hctech_hc300-m1&m1h.3mf new file mode 100644 index 0000000000..84ae00339f Binary files /dev/null and b/resources/meshes/hctech_hc300-m1&m1h.3mf differ diff --git a/resources/meshes/hctech_hc300-m2h.3mf b/resources/meshes/hctech_hc300-m2h.3mf new file mode 100644 index 0000000000..002dd272bf Binary files /dev/null and b/resources/meshes/hctech_hc300-m2h.3mf differ diff --git a/resources/meshes/hctech_hc300-m3.3mf b/resources/meshes/hctech_hc300-m3.3mf new file mode 100644 index 0000000000..58bf6fc2b0 Binary files /dev/null and b/resources/meshes/hctech_hc300-m3.3mf differ diff --git a/resources/meshes/lnl3d_d3.stl b/resources/meshes/lnl3d_d3.stl new file mode 100644 index 0000000000..c49d91aa20 Binary files /dev/null and b/resources/meshes/lnl3d_d3.stl differ diff --git a/resources/meshes/lnl3d_d5.stl b/resources/meshes/lnl3d_d5.stl new file mode 100644 index 0000000000..6b9c108097 Binary files /dev/null and b/resources/meshes/lnl3d_d5.stl differ diff --git a/resources/meshes/lnl3d_d6.3mf b/resources/meshes/lnl3d_d6.3mf new file mode 100644 index 0000000000..e314699fcf Binary files /dev/null and b/resources/meshes/lnl3d_d6.3mf differ diff --git a/resources/meshes/mingda_magician_max_base.stl b/resources/meshes/mingda_magician_max_base.stl new file mode 100644 index 0000000000..84bdca2349 Binary files /dev/null and b/resources/meshes/mingda_magician_max_base.stl differ diff --git a/resources/meshes/mingda_magician_pro_base.stl b/resources/meshes/mingda_magician_pro_base.stl new file mode 100644 index 0000000000..0fc883bc2b Binary files /dev/null and b/resources/meshes/mingda_magician_pro_base.stl differ diff --git a/resources/meshes/mingda_magician_x_base.stl b/resources/meshes/mingda_magician_x_base.stl new file mode 100644 index 0000000000..b47f0f30fc Binary files /dev/null and b/resources/meshes/mingda_magician_x_base.stl differ diff --git a/resources/meshes/mixware_hyper_k_platform.stl b/resources/meshes/mixware_hyper_k_platform.stl new file mode 100644 index 0000000000..98e865b873 Binary files /dev/null and b/resources/meshes/mixware_hyper_k_platform.stl differ diff --git a/resources/meshes/mixware_hyper_s_platform.stl b/resources/meshes/mixware_hyper_s_platform.stl index a1cff2b92e..c969d554ca 100644 Binary files a/resources/meshes/mixware_hyper_s_platform.stl and b/resources/meshes/mixware_hyper_s_platform.stl differ diff --git a/resources/meshes/mixware_vulcan_platform.stl b/resources/meshes/mixware_vulcan_platform.stl new file mode 100644 index 0000000000..f064c797cb Binary files /dev/null and b/resources/meshes/mixware_vulcan_platform.stl differ diff --git a/resources/meshes/mixware_wand_platform.stl b/resources/meshes/mixware_wand_platform.stl new file mode 100644 index 0000000000..ce9991b0f9 Binary files /dev/null and b/resources/meshes/mixware_wand_platform.stl differ diff --git a/resources/meshes/npscura.stl b/resources/meshes/npscura.stl new file mode 100644 index 0000000000..95a6432fd1 Binary files /dev/null and b/resources/meshes/npscura.stl differ diff --git a/resources/meshes/rigid3d_zero3_platform.3mf b/resources/meshes/rigid3d_zero3_platform.3mf new file mode 100644 index 0000000000..56ae35d72c Binary files /dev/null and b/resources/meshes/rigid3d_zero3_platform.3mf differ diff --git a/resources/meshes/tank_m.obj b/resources/meshes/tank_m.obj new file mode 100644 index 0000000000..c84c1e3efa --- /dev/null +++ b/resources/meshes/tank_m.obj @@ -0,0 +1,60 @@ +v 200 200 0 +v 200 -200 0 +v 200 -200 -4 +v 200 200 -4 +v -200 200 0 +v -200 200 -4 +v -200 -200 0 +v -200 -200 -4 +vt 0 1 +vt 0 1 +vt 0 1 +vt 0 1 +vt 0 1 +vt 0 1 +vt 0 1 +vt 0 1 +vt 0 1 +vt 0 1 +vt 0 1 +vt 0 1 +vt 0 1 +vt 0 1 +vt 0 1 +vt 0 1 +vt 0 0 +vt 1 0 +vt 0 1 +vt 1 1 +vt 0 0 +vt 1 0 +vt 0 1 +vt 1 1 +f 1/1 2/2 4/3 +f 4/3 2/2 3/4 +f 5/5 1/6 6/7 +f 6/7 1/6 4/8 +f 7/9 5/10 8/11 +f 8/11 5/10 6/12 +f 2/13 7/14 3/15 +f 3/15 7/14 8/16 +f 6/21 4/22 3/24 8/23 +v -50 270.7 70.7 +v 50 270.7 70.7 +v 50 200 0 +v -50 200 0 +v -50 270.7 66.7 +v 50 270.7 66.7 +v 50 200 -4 +v -50 200 -4 +vt 0 1 +vt 0 0 +vt 1 0 +vt 1 1 +vt 0 1 +f 10/1 11/2 15/3 14/4 +f 9/4 10/8 14/7 13/8 +f 12/9 9/10 13/11 16/12 +f 11/13 12/14 16/15 15/16 +f 12/26 11/27 10/28 9/25 +f 13/13 14/14 15/15 16/16 \ No newline at end of file diff --git a/resources/meshes/ultimaker_s7_platform.obj b/resources/meshes/ultimaker_s7_platform.obj new file mode 100644 index 0000000000..c41d2d48f5 --- /dev/null +++ b/resources/meshes/ultimaker_s7_platform.obj @@ -0,0 +1,13023 @@ +# Blender v2.91.0 OBJ File: 'textured s7- simplified.blend' +# www.blender.org +mtllib textured s7- simplifiedflipped.mtl +o 3MF_Object.024_3MF_Mesh.009 +v 5.860987 205.709488 -25.501549 +v 2.385324 214.590286 -25.293251 +v 0.022585 205.363449 -25.499138 +v -5.911014 205.881241 -25.507286 +v 15.578476 208.296188 -25.445625 +v -13.803374 208.923111 -25.414757 +v -94.749763 209.176697 -25.211662 +v -90.598045 208.853424 -25.286583 +v -33.604111 208.268478 -25.327812 +v -3.935779 203.745865 -25.497627 +v 4.018570 203.123093 -25.497643 +v 137.339615 200.167816 -25.499138 +v 139.783234 208.256363 -25.146339 +v -137.294449 200.167908 -25.499138 +v -139.663101 208.108398 -25.147072 +v 5.956297 194.454300 -25.507500 +v -5.173001 200.167862 -25.499138 +v 4.589656 198.964813 -25.497841 +v -139.040848 193.650528 -25.499138 +v 139.086014 193.650436 -25.499138 +v -5.690777 194.234329 -25.508064 +v -3.555439 196.209503 -25.497871 +v -93.430428 159.381149 -25.478630 +v 1.494420 195.675140 -25.498375 +v 3.921325 158.696243 -25.474327 +v 132.782959 150.065384 -25.445625 +v 143.857056 188.879379 -25.499138 +v -143.811890 188.879471 -25.499138 +v -154.901184 153.535507 -25.478172 +v 151.920288 187.069275 -25.557167 +v -151.757324 187.040710 -25.683769 +v 156.677338 150.286682 -25.356483 +v 106.775673 158.742706 -25.481895 +v 24.071791 158.723831 -25.450462 +v 10.747665 150.004990 -25.499123 +v -131.699966 149.167358 -25.116432 +v 109.781166 149.360596 -25.201164 +v -109.623741 149.238708 -25.205666 +v -131.738983 141.282333 -25.229164 +v 150.047638 146.032303 -25.463173 +v 154.738541 148.265106 -25.420738 +v -154.676041 148.229630 -25.431404 +v -151.393265 149.328781 -25.496071 +v 131.771118 141.097137 -25.230827 +v 109.864250 141.394897 -25.148247 +v 5.061268 135.945602 -25.419319 +v 0.088336 142.239609 -25.404259 +v -110.750694 141.348404 -25.031334 +v -147.033737 147.411346 -25.316048 +v -153.932785 145.755783 -25.476891 +v 159.291321 143.931381 -25.546867 +v -159.179703 143.835358 -25.505241 +v -173.400467 136.831268 -25.041954 +v -164.814285 -134.563034 -25.479134 +v 170.201065 -128.442627 -25.500694 +v -149.940887 142.481628 -25.459618 +v 173.924225 136.501389 -24.817589 +v 3.515829 140.988586 -25.346199 +v -3.754595 140.700699 -25.364388 +v -4.996486 137.286316 -25.404274 +v 164.145660 -134.565323 -25.442146 +v -3.453289 133.438507 -25.370201 +v -173.874710 -123.416550 -25.335686 +v 1.635656 132.326920 -25.396355 +v -169.505035 -129.456436 -25.404305 +v -172.570389 -126.873329 -25.390205 +v 174.229416 -123.342117 -25.319527 +v 174.993652 -126.893379 -25.339104 +v -176.397446 -127.528816 -25.437752 +v 169.022903 -133.479752 -25.382072 +v -168.859009 -133.047516 -25.401970 +v 172.652969 -136.973709 -25.421776 +v -172.438446 -137.232834 -25.478844 +v 173.393311 -137.613342 -25.233894 +v -175.198517 -137.161591 -25.503517 +v -176.922928 -130.831512 -18.192589 +v -174.962158 -128.870667 -15.966057 +v -172.806854 -128.870712 -18.194366 +v -171.574402 -129.821060 -15.977112 +v -170.805542 -133.170776 -18.172684 +v -176.909042 -133.052216 -15.964828 +v -170.921066 -132.865677 -15.976883 +v -175.161560 -134.784622 -18.206093 +v -173.231216 -134.953842 -15.976738 +v 170.890991 -130.831635 -18.192596 +v 172.851776 -128.870819 -15.966530 +v 175.007095 -128.870834 -18.192589 +v 176.239517 -129.821182 -15.976158 +v 177.008362 -133.170975 -18.172676 +v 170.904892 -133.052368 -15.965698 +v 176.892853 -132.865799 -15.976883 +v 172.652206 -134.784821 -18.210098 +v 174.582703 -134.953964 -15.977104 +v 0.994006 140.230148 -15.976128 +v 1.386298 140.432175 -18.174553 +v -2.696982 139.212982 -15.973724 +v -2.411579 139.420792 -18.181259 +v 3.114663 137.884048 -15.976128 +v 3.036331 135.805389 -18.210747 +v -3.099975 136.212662 -18.181259 +v -2.323520 135.099884 -15.976128 +v 1.387322 134.327393 -15.946861 +v -0.665840 134.012421 -18.181259 +v -177.720459 -127.529480 -15.988594 +v -175.035919 -126.004654 -8.462013 +v -172.345596 -126.487106 -15.981163 +v -170.942291 -126.813248 -8.459229 +v -168.429169 -130.180222 -15.974098 +v -175.572037 -125.871033 -6.708855 +v -180.328278 -130.236023 -6.445251 +v -167.975403 -130.650009 -8.475739 +v -179.352753 -133.676636 -15.973999 +v -180.005646 -133.493500 -6.625427 +v -169.075012 -134.725571 -15.972931 +v -170.304016 -136.932373 -8.485153 +v -172.140060 -137.356873 -15.970619 +v -176.700912 -136.718582 -15.972931 +v -175.921600 -138.171494 -6.506210 +v -173.675491 -137.843582 -6.854126 +v 175.132889 -126.109024 -8.457695 +v 177.906586 -127.847252 -15.972664 +v 172.210602 -126.414589 -15.979607 +v 170.987244 -126.813370 -8.459229 +v 175.638657 -125.826591 -6.692383 +v 168.179276 -130.049393 -8.431602 +v 168.340515 -130.679138 -15.974075 +v 179.189178 -128.743271 -6.784256 +v 179.502792 -131.943588 -15.972931 +v 180.225159 -132.056870 -6.496109 +v 178.226135 -135.700073 -15.974846 +v 169.934967 -136.704849 -8.502090 +v 169.911270 -135.885010 -15.976952 +v 178.555298 -136.526535 -6.584206 +v 174.004532 -137.452805 -15.967361 +v 173.263443 -137.930267 -6.608742 +v -151.096802 147.521301 -23.220833 +v -148.816299 146.795044 -23.155602 +v -151.814865 145.317017 -23.186562 +v -149.605072 144.555649 -23.186546 +v 136.819519 151.963394 -21.791519 +v 149.262512 151.196884 -21.002541 +v 146.805069 149.685623 -22.488113 +v 152.599472 150.605453 -21.582954 +v 158.030197 150.812622 -21.423561 +v 155.374359 147.892990 -22.090553 +v 144.220917 152.177475 -20.158760 +v 135.560867 153.660797 -20.721100 +v 159.603821 152.126282 -19.028328 +v 150.383835 146.029648 -23.188408 +v 72.533478 -44.517212 -20.202187 +v 72.937782 -43.349434 -7.361664 +v 69.264336 -43.385269 -7.393120 +v 69.042862 -44.972454 -19.688271 +v -72.563751 -43.139473 -7.403000 +v -72.496475 -44.567028 -20.240814 +v -68.982971 -44.967403 -19.688263 +v -69.168488 -43.371918 -7.297516 +v 1.851158 -131.141724 -20.300171 +v -1.774940 -132.751434 -7.411209 +v -1.593923 -131.149353 -20.466057 +v 1.927811 -132.604141 -7.407585 +v 70.825340 -40.422913 -6.540070 +v -71.178009 -40.119747 -6.472839 +v 0.088357 -135.880478 -6.575195 +v 65.470718 -38.400539 -21.835922 +v 1.214519 6.506308 -21.881134 +v 6.099281 34.430176 -21.197113 +v -4.901570 32.485874 -21.847557 +v -1.211144 6.454718 -21.866783 +v -65.547363 -38.268429 -21.794327 +v 1.232241 -1.147531 -21.850609 +v -1.165418 -1.180292 -21.855385 +v 0.015106 -129.939423 -21.920036 +v 159.954422 152.570602 -11.528969 +v 161.055420 154.624710 -6.616859 +v 162.183365 154.918396 -12.748314 +v 159.635513 153.303711 -6.891357 +v -161.061340 154.581985 -6.798996 +v -159.893265 152.566681 -11.554298 +v -161.931458 154.734436 -11.534363 +v -159.704300 153.458221 -6.530960 +v -160.548996 191.197067 2.651169 +v -161.202499 170.626389 -6.828094 +v -158.123718 170.637863 -6.636147 +v -167.437225 160.932755 -6.630463 +v -169.194656 162.439255 -6.841843 +v -165.494751 151.220505 -11.426704 +v -178.537292 138.697495 -13.305962 +v -160.717468 156.118546 -13.510216 +v -165.620560 150.426590 -6.541855 +v -178.253555 137.955551 -6.644943 +v -167.439651 160.143524 -11.558136 +v -169.422150 161.996246 -11.466301 +v -178.151306 -123.547821 -20.563866 +v -126.543816 -139.344543 -2.755997 +v -137.052704 -141.478470 -6.703285 +v -136.770432 -138.538574 -6.578850 +v -182.264313 -129.397751 -7.072647 +v -181.514664 -129.224731 -20.514732 +v -182.303391 -134.879288 -7.039963 +v -181.614044 -135.003372 -20.203903 +v -176.943420 -140.308197 -7.104393 +v -176.851151 -139.554306 -20.239571 +v -143.261353 -140.758316 -21.276733 +v -164.144379 148.896713 -6.712646 +v -175.324677 136.648224 -6.736641 +v -178.822922 -123.033577 -6.772324 +v -160.964249 169.538864 -17.123825 +v -178.095093 152.132385 -16.862183 +v -173.015579 158.518005 -10.332787 +v -177.802292 153.584488 -9.332634 +v -178.197662 138.700546 -16.949608 +v -178.710876 149.349289 -9.305649 +v -178.533478 148.526672 -13.375534 +v 125.187515 -141.446335 -2.838600 +v 121.193810 -138.763718 -2.730759 +v 137.016083 -141.658264 -6.861809 +v 136.762405 -140.859253 -21.123222 +v -124.781265 -141.820648 -3.221420 +v 161.162170 170.709061 -6.769806 +v 160.602646 191.217224 2.667336 +v 167.504974 160.977478 -6.583878 +v 169.290573 162.443161 -6.947716 +v 158.223175 170.411819 -6.683296 +v 165.560715 151.237549 -11.442207 +v 178.579865 138.733170 -13.344040 +v 178.348114 137.910095 -6.667839 +v 164.949875 149.696793 -6.536827 +v 167.475998 160.149811 -11.540215 +v 169.467285 161.996140 -11.466301 +v 178.053101 -123.388802 -20.951309 +v 178.973404 -123.392303 -6.890442 +v 137.137177 -138.594040 -6.522949 +v 181.606140 -129.163162 -20.146194 +v 182.398392 -130.263382 -6.786545 +v 181.788712 -134.739609 -20.011169 +v 182.089767 -135.727020 -7.042419 +v 176.790833 -139.743256 -19.942543 +v 177.145203 -140.112915 -6.944420 +v 175.328293 137.037521 -6.690842 +v 172.830521 158.645020 -11.391129 +v 160.985580 169.562668 -17.128799 +v 178.184799 151.912323 -16.857933 +v 178.373352 152.749329 -9.344032 +v 173.143539 158.292053 -9.306511 +v 178.233490 138.459885 -17.217819 +v 178.580658 148.556946 -13.334953 +v 178.549072 149.483505 -9.213463 +v 4.292582 215.197006 -21.158554 +v -2.779376 215.475754 -20.286385 +v 35.124550 212.944061 -20.740456 +v 1.656116 216.223953 -5.248520 +v -35.485786 213.626465 -5.199699 +v -34.611435 212.522491 -21.489769 +v -90.716835 212.250015 -22.710617 +v -92.717674 213.797531 -6.823242 +v -94.702232 212.161911 -22.601624 +v -163.742676 200.139297 4.310905 +v -163.977417 204.531723 -7.322243 +v -164.122086 196.448227 -7.510689 +v -138.363327 -120.907356 -8.576401 +v -138.388107 -120.474228 -6.660919 +v -161.130203 156.601730 -17.318184 +v -159.879456 166.946869 -13.883270 +v -157.490906 157.239029 -16.292175 +v -157.533340 169.734772 -16.714340 +v -171.558731 156.564560 -9.246140 +v -157.791687 155.881027 -6.654831 +v -155.370209 148.051254 -22.038857 +v -159.164459 144.846451 -22.016647 +v -165.075989 151.418777 -18.916351 +v -159.627975 152.144211 -18.971344 +v -162.376770 154.277710 -18.859512 +v -162.071487 148.313980 -19.788956 +v -164.261230 149.420715 -23.612434 +v -157.904648 150.866043 -21.412254 +v -160.050095 153.363174 -23.320900 +v -163.391144 149.097687 -11.436684 +v -170.960999 156.641678 -11.439194 +v -2.245835 215.150818 -24.497337 +v -8.468756 212.949921 -23.868935 +v -145.333633 211.887909 -29.336601 +v -151.215073 212.930237 -29.325066 +v -156.515579 211.275787 -29.096184 +v -160.758804 207.575623 -29.288231 +v -138.849289 206.129944 -29.294472 +v -162.878113 201.869553 -29.380501 +v -137.755722 198.244675 -29.342140 +v -162.326065 195.539566 -29.231178 +v -140.144363 192.506439 -29.299492 +v -156.475113 188.882812 -29.348824 +v -147.549255 187.608185 -29.277229 +v -134.745560 154.937546 -6.632454 +v -131.114044 44.460217 -6.633171 +v -134.129669 -111.515366 -6.641815 +v -148.036026 152.773178 -6.691193 +v -68.499062 -38.227455 -6.743797 +v -6.313785 36.295158 -6.627113 +v 0.022429 -138.401993 -6.422340 +v -131.325882 -104.388931 -6.790306 +v -8.545619 38.256367 -6.604256 +v -129.417343 -105.602371 -6.661530 +v -11.687520 44.691334 -6.682350 +v -146.500534 186.751373 2.634109 +v -143.801437 187.840866 2.824577 +v -138.558121 168.308853 -6.655876 +v -103.432625 192.967636 -6.665916 +v -103.410339 210.042908 -6.661377 +v -106.211830 182.716354 -6.619385 +v -6.087251 56.321293 -6.565613 +v -144.746368 213.295197 -5.082672 +v -138.173813 207.603790 -5.462387 +v -136.742142 210.196106 -5.092682 +v -37.431084 210.414246 -5.221313 +v -8.953523 139.050766 -13.650070 +v -70.611809 138.944122 -13.375092 +v -66.263649 135.259094 -13.744614 +v -8.960551 135.410995 -13.623070 +v -113.083496 143.951523 -13.764191 +v -130.769028 143.837982 -13.272629 +v -107.018066 209.625519 -6.617348 +v -105.681175 197.910370 -6.660545 +v -107.936119 186.243805 -6.608582 +v -110.065834 185.324554 -6.827385 +v -135.768173 194.948639 3.307732 +v -137.110245 196.904953 3.847084 +v -116.455574 170.765427 -6.640526 +v -110.939171 179.281250 -6.778351 +v -123.467606 164.419785 -6.707214 +v -132.446106 160.954086 -6.599930 +v -130.502518 160.515274 -6.784340 +v -138.160309 193.468445 3.677650 +v -111.268661 182.184021 -6.731468 +v -136.216614 169.230789 -6.677757 +v -5.307908 -133.450836 -6.655022 +v -6.953038 -138.081635 -6.669586 +v -7.405159 -138.418106 -6.521301 +v -166.519653 -95.717827 -8.664833 +v -175.118881 -94.684158 -8.603493 +v -147.153503 -106.010246 -8.635620 +v -157.159988 -98.802414 -8.941696 +v -139.511841 -117.047668 -8.591309 +v -141.545883 -123.154305 -8.594070 +v -164.687256 -130.434006 -8.604431 +v -165.609360 -137.303589 -8.725487 +v -137.020508 -130.135269 -8.703712 +v -8.403294 54.466404 -6.683388 +v -11.712500 47.620602 -6.609306 +v -107.005226 178.705048 -6.637146 +v -131.079498 47.837345 -6.735466 +v -146.819077 184.867371 -18.919006 +v -135.470978 159.719925 -6.660057 +v -138.200363 158.258194 -18.716606 +v -136.839447 160.655319 -19.236084 +v -137.295456 157.482819 -6.739059 +v -131.342804 161.742432 -20.052299 +v -141.792557 187.097275 -19.415276 +v -137.125870 191.624435 -19.411766 +v -111.832253 180.766891 -20.074463 +v -135.434845 196.951248 -19.287659 +v -108.312241 187.742203 -18.070656 +v -109.800789 186.497055 -19.992874 +v -108.230881 208.890884 -19.911133 +v -136.239685 208.103989 -20.795570 +v -134.998672 209.278259 -19.678520 +v -157.837845 186.108566 0.096344 +v -156.261658 185.345474 -20.116676 +v -155.453445 187.396957 0.842529 +v -151.983795 185.380432 -18.970566 +v -7.331655 -135.019058 -21.576698 +v -134.846161 -135.101700 -21.558380 +v -8.966310 -137.401230 -19.395996 +v -136.661850 -137.406418 -19.213875 +v -174.350266 135.320114 -19.160851 +v -171.970551 139.467026 -19.101089 +v -171.655273 135.656662 -21.539978 +v -171.348679 -92.293518 -21.679703 +v -174.125443 -93.709190 -20.062416 +v -154.182602 159.099289 -21.710800 +v -153.442474 182.415680 -21.932869 +v -157.008392 157.018066 -18.849205 +v -174.139114 -121.897011 -19.931396 +v -173.550125 -98.818779 -20.690895 +v -170.589523 -120.793434 -21.842896 +v -140.750336 -134.616776 -21.695602 +v -164.668610 -136.196945 -20.353630 +v -163.119629 -131.540863 -21.314667 +v -141.025421 -137.343216 -19.105476 +v -172.631439 -138.492294 -23.379356 +v -167.491882 -136.482147 -24.977760 +v -179.066513 -129.941437 -25.480324 +v -179.061020 -134.076767 -25.473671 +v -101.340927 187.713318 -22.059891 +v -100.815598 207.178680 -21.701698 +v -104.704979 182.956482 -20.904892 +v -102.353851 192.947708 -20.256477 +v -102.301811 208.977249 -20.307297 +v -70.387566 140.182632 -21.377914 +v -9.835221 139.999786 -20.829033 +v -5.748727 58.253963 -21.377113 +v -64.050415 133.084198 -21.645638 +v -65.618126 134.188843 -20.308731 +v -9.563220 134.630051 -20.535896 +v -10.181370 132.203934 -21.849350 +v -164.728958 -124.309105 -21.883553 +v -165.240051 -126.268570 -20.583885 +v -169.071762 -123.246063 -19.968849 +v -143.917770 -119.000458 -20.827805 +v -161.789978 -102.611801 -21.838760 +v -150.326431 -110.578407 -21.761230 +v -163.296921 -100.522995 -20.296623 +v -154.329514 -105.088196 -20.201454 +v -147.633102 -111.579117 -20.130669 +v -141.598618 -124.671471 -21.348961 +v -148.933105 151.174805 -21.069923 +v -135.636810 153.043472 -21.357422 +v -146.138428 148.896606 -22.030190 +v -153.463043 150.215393 -21.841667 +v -144.588852 152.112000 -20.179390 +v -135.217224 -111.210915 -20.270538 +v -138.857193 -112.989227 -21.989510 +v -139.318710 -115.228424 -20.341400 +v -158.158157 -95.034927 -21.898949 +v -145.426895 -104.498726 -21.713188 +v -144.338348 -108.100342 -20.290253 +v -161.106018 -96.198456 -20.244781 +v -151.716278 -101.131233 -20.248199 +v -80.776810 143.346191 -20.360863 +v -82.813034 144.310577 -21.810455 +v -106.724258 174.828979 -21.787155 +v -107.275032 176.984634 -20.441803 +v -110.992912 142.459000 -20.078598 +v -110.699646 144.432556 -21.882080 +v -116.272240 163.193665 -21.840759 +v -113.534187 168.702240 -20.285461 +v -121.299850 161.481247 -20.272766 +v -129.806549 155.777100 -21.191994 +v -130.271408 148.145035 -20.935043 +v -129.950867 43.407894 -21.176712 +v -12.025169 43.267239 -20.982658 +v -128.674347 -101.459709 -21.578522 +v -129.562119 -103.291534 -20.254791 +v -9.760796 38.915634 -21.228149 +v -12.957077 49.107662 -21.231682 +v -10.032494 54.389465 -20.843307 +v -75.691383 136.846283 -21.310738 +v -130.124680 48.949783 -20.253258 +v -128.826004 50.202030 -21.733658 +v -129.836929 136.750854 -20.812698 +v -136.962387 -121.453659 -21.113983 +v -71.303207 -45.873814 -21.711525 +v -136.036957 -130.038193 -20.269424 +v -67.168602 -38.445755 -20.201584 +v -6.021089 35.041809 -20.337669 +v -176.820801 137.434341 -22.193024 +v -37.292976 209.325104 -19.716324 +v -0.234127 211.921402 -19.857712 +v -38.803570 206.908234 -21.861176 +v -109.977554 207.366348 -21.613998 +v -132.841125 205.188507 -21.850853 +v -6.959792 -132.678146 -19.567520 +v -165.527679 -127.548019 -8.628059 +v -175.188126 -122.417038 -8.682922 +v -142.498856 -119.495834 -8.675682 +v -6.473370 130.011612 -20.250168 +v -130.533142 137.738190 -13.470398 +v -79.733627 143.875488 -12.713425 +v -75.252892 137.907669 -13.300110 +v -80.165985 142.209076 -13.718025 +v -66.686569 133.574875 -12.731956 +v -156.870163 188.838776 -24.602272 +v -160.367386 191.406265 -20.912674 +v -160.094406 156.575729 -21.607002 +v -139.978729 -138.150421 -8.706970 +v -137.587540 -138.304214 -8.701851 +v -130.838165 142.175537 -16.979195 +v -112.773109 142.194595 -16.959251 +v -112.761124 144.140961 -16.844063 +v -130.808472 144.199356 -16.756821 +v -110.680687 148.300232 -21.990921 +v -167.292694 -98.539597 -8.718567 +v -175.274307 -97.818741 -8.677689 +v -155.663361 -102.901573 -8.713165 +v -147.054581 -110.937515 -8.705833 +v -169.656845 -124.058090 -8.719093 +v -139.438538 -117.961868 -6.760674 +v -113.046028 141.930740 -13.723366 +v -117.426361 171.552856 -19.240387 +v -124.390076 165.137268 -18.927185 +v -117.492210 165.723022 -6.678856 +v -131.308289 156.607529 -6.633759 +v -107.221962 198.502258 -19.882698 +v -155.584244 209.503677 -29.360420 +v -155.776123 209.382950 4.310905 +v -150.205383 210.895187 -29.389015 +v -150.438858 210.871811 4.310913 +v -144.901566 209.372910 -29.311287 +v -145.072235 209.492554 4.310905 +v -140.997803 205.427109 -29.358833 +v -159.548325 205.622681 -29.359138 +v -159.653946 205.424927 4.310905 +v -141.114182 205.614777 4.310905 +v -139.600525 200.046967 -29.390862 +v -161.041656 200.281158 -29.360527 +v -161.033142 200.058334 4.310905 +v -139.625366 200.277512 4.310905 +v -141.110199 194.713120 -29.359123 +v -159.683090 194.913620 -29.389397 +v -159.544327 194.721039 4.310905 +v -141.004578 194.910889 4.310905 +v -145.074280 190.832138 -29.360420 +v -155.756943 190.962906 -29.311272 +v -155.586288 190.843277 4.310905 +v -144.882385 190.952881 4.310905 +v -150.453125 189.440628 -29.389000 +v -150.219650 189.464035 4.310905 +v -110.927368 189.524429 -21.715942 +v -133.356125 198.127167 -21.451050 +v -115.087784 179.054550 -21.795609 +v -129.924332 164.100250 -21.547409 +v -137.414490 187.971405 -21.978989 +v -139.563583 160.206238 -21.429840 +v -145.353699 212.522629 -21.409119 +v -150.329254 214.200745 -6.454567 +v -157.345673 212.320709 -6.454567 +v -161.470016 191.502243 -6.286118 +v -135.539734 202.112305 -19.076508 +v -147.513138 155.625198 -6.753746 +v -147.811935 156.772507 -19.167503 +v -106.727242 159.071732 -21.987465 +v -5.911671 194.453323 -22.182114 +v -5.691106 206.101791 -22.185738 +v -145.416840 144.489761 -21.983658 +v -154.147537 142.589752 -21.990929 +v -149.249359 141.008759 -21.990929 +v -150.195114 213.017365 4.310913 +v -156.642761 211.331131 4.310913 +v -161.502182 206.590210 4.310905 +v -137.436981 200.235168 4.310905 +v -161.543854 193.775314 4.310905 +v -150.333771 187.254196 4.310905 +v -139.283524 206.681213 4.310905 +v -143.958878 211.304337 4.310913 +v -156.787643 189.086227 4.310905 +v -139.204697 193.667694 4.310905 +v -143.883957 189.073608 4.310905 +v -163.128525 200.177658 4.310905 +v 163.776978 200.461960 4.310905 +v 164.147766 203.875793 -7.477638 +v 163.911407 196.227371 -7.367752 +v 161.351288 156.917053 -17.231216 +v 157.630356 169.658737 -16.647331 +v 157.802109 157.288513 -15.551605 +v 156.984711 157.084961 -19.054047 +v 159.946167 166.934326 -13.769234 +v 171.621078 156.557327 -9.224022 +v 157.837631 155.951248 -6.703140 +v 159.523575 145.139450 -22.075165 +v 162.469757 148.845413 -19.069099 +v 162.421783 154.305008 -18.838562 +v 165.150177 151.424210 -18.883682 +v 164.155380 149.275009 -23.611534 +v 160.762909 153.695114 -23.013489 +v 163.429047 149.079147 -11.423531 +v 171.014587 156.663544 -11.446541 +v 9.674154 208.876724 -21.861069 +v 0.022587 211.694839 -22.191391 +v -6.394768 209.739807 -21.921707 +v -10.347285 205.519913 -22.142242 +v 5.862553 206.152130 -22.178185 +v -1.059555 205.210861 -22.190346 +v 3.848861 203.626495 -22.189873 +v -4.885955 201.752090 -22.191231 +v 4.929917 198.581970 -22.182350 +v 7.571854 194.868347 -22.193092 +v -3.803720 196.709229 -22.190231 +v 1.104703 195.124878 -22.190224 +v 5.503792 192.661942 -22.170013 +v 131.330109 148.727509 -24.294884 +v 9.161175 212.634048 -24.015251 +v 158.572891 209.895599 -29.315483 +v 150.635269 213.089615 -29.255821 +v 143.150314 210.636078 -29.316856 +v 162.424271 204.382797 -29.270302 +v 138.050430 204.001007 -29.301262 +v 162.759415 196.384079 -29.282249 +v 138.403610 195.821976 -29.319023 +v 157.464355 189.572266 -29.298409 +v 142.160950 190.423584 -29.272194 +v 150.218872 187.311615 -29.317436 +v -3.964236 54.180027 -6.835030 +v 0.963475 55.017479 -6.597519 +v 5.292083 53.270729 -6.701561 +v 8.053016 49.920444 -6.635902 +v -7.876510 50.383583 -6.587997 +v 8.841575 44.333378 -6.702499 +v -8.789863 46.197147 -6.604973 +v -7.924628 42.190102 -6.610580 +v 5.313136 39.159691 -6.677528 +v -4.145678 38.245773 -6.714729 +v 1.246693 37.451061 -6.660019 +v 134.188431 -111.515060 -6.648651 +v 131.271683 44.508575 -6.635986 +v 134.905289 154.778473 -6.632812 +v 150.608185 152.795792 -6.665970 +v 6.365237 36.285835 -6.635536 +v 68.520401 -38.139568 -6.707047 +v -0.497014 34.744537 -6.670921 +v 128.742432 -105.259445 -6.628502 +v 8.604385 38.249012 -6.586662 +v 11.708475 44.720119 -6.619606 +v 145.112076 185.381149 2.051086 +v 147.193481 186.889252 2.891350 +v 138.556610 168.283676 -6.677299 +v 103.646851 209.967850 -6.686440 +v 102.991211 198.599442 -6.625725 +v 106.067642 182.552383 -6.600357 +v 6.215384 56.269577 -6.610374 +v 0.100162 57.497532 -6.706436 +v 39.776573 213.408478 -5.144119 +v 145.318588 213.394318 -5.115936 +v 136.616760 210.243408 -5.066475 +v 138.242310 207.537415 -5.591957 +v 37.307308 210.394165 -5.301765 +v 0.681795 213.189774 -5.169701 +v -4.169261 145.116623 -13.690987 +v 66.160744 135.193420 -13.759041 +v 66.717758 133.576477 -12.748726 +v 9.013790 135.359024 -13.661545 +v -4.448413 129.428177 -13.668404 +v 130.820847 143.851318 -13.281700 +v 113.063492 143.915863 -13.778397 +v 107.270195 209.667908 -6.941322 +v 137.074097 196.195282 3.674377 +v 138.061966 193.697128 3.834724 +v 110.119781 185.178101 -6.755440 +v 115.981972 171.214188 -6.578094 +v 111.004967 179.227020 -6.776718 +v 121.166237 166.222122 -6.714737 +v 132.519836 160.997925 -6.566330 +v 130.761108 160.600647 -6.784752 +v 136.247269 169.282440 -6.654945 +v 143.592621 188.005997 2.674347 +v 7.119488 -138.180847 -6.864021 +v 5.265780 -133.534348 -6.613327 +v 138.373688 -120.388748 -6.599388 +v 165.527710 -127.538223 -8.667831 +v 142.656509 -119.732552 -8.655533 +v 175.188034 -94.595039 -8.641533 +v 163.127243 -96.249886 -8.823257 +v 152.035202 -102.083313 -8.614868 +v 144.732971 -109.288467 -8.628487 +v 139.575836 -116.926231 -8.566360 +v 141.544373 -123.175293 -8.628883 +v 164.617599 -130.468796 -8.601265 +v 165.667984 -137.265930 -8.755608 +v 11.658736 47.602062 -6.588333 +v 8.473352 54.484299 -6.622986 +v 107.103966 178.736145 -6.702545 +v 131.243683 47.882088 -6.739136 +v 131.346420 156.623795 -6.610062 +v 117.910904 165.339447 -6.667320 +v 147.049133 185.014984 -18.865822 +v 135.793213 158.694504 -6.722626 +v 136.498520 160.381317 -17.775612 +v 138.206589 158.575699 -19.536224 +v 129.471207 161.712769 -18.179031 +v 131.479309 161.915451 -20.044724 +v 141.860550 186.938675 -19.422592 +v 137.297073 191.631409 -19.410431 +v 111.234497 181.993881 -6.677956 +v 111.991226 181.008362 -20.046074 +v 135.549622 196.896423 -19.353706 +v 109.522430 186.577133 -20.010109 +v 107.719139 187.041672 -6.744041 +v 108.129768 209.006363 -19.853180 +v 135.779373 208.720764 -20.767891 +v 136.820923 206.896011 -19.336014 +v 157.892273 186.161591 0.164352 +v 156.287003 185.326309 -20.182487 +v 155.507401 187.395462 0.903572 +v 152.212173 185.387955 -18.984032 +v 134.535309 -134.682419 -21.757393 +v 7.349079 -135.027695 -21.531502 +v 8.801372 -137.263870 -19.583405 +v 136.682556 -137.401749 -19.471397 +v 173.905853 136.899261 -19.236992 +v 171.677643 135.835510 -21.543739 +v 174.136032 -93.770981 -20.065468 +v 170.962418 -92.333443 -21.822792 +v 153.880859 182.498520 -21.903931 +v 154.004745 159.088928 -21.714745 +v 171.667450 -100.194130 -21.691376 +v 173.697556 -121.574272 -20.533577 +v 167.956421 -121.805908 -21.949585 +v 174.389526 -98.576515 -19.450218 +v 164.686920 -136.183319 -20.357185 +v 140.799698 -134.493454 -21.711487 +v 162.013611 -132.506607 -21.908752 +v 141.072067 -137.305008 -19.242119 +v 168.473434 -137.152969 -24.581749 +v 179.291824 -132.727066 -25.463295 +v 178.834885 -129.510925 -25.495323 +v 177.457031 -136.123123 -25.492073 +v 101.901169 198.605179 -20.229187 +v 100.336609 206.858154 -21.806580 +v 103.191338 183.040268 -21.825333 +v 104.721794 182.778702 -20.551651 +v 102.597069 209.001358 -20.199417 +v 70.544029 140.298660 -21.361679 +v 9.529513 139.738678 -20.328453 +v 10.666842 141.576202 -21.877815 +v 6.595777 146.975464 -21.897682 +v 0.240258 148.471924 -21.764893 +v -0.073387 146.954208 -20.281822 +v 6.485283 144.525299 -20.320900 +v -6.451054 146.401382 -21.820602 +v -5.810882 144.927414 -20.325790 +v 1.564306 52.325787 -21.730461 +v 5.995152 47.888664 -21.828041 +v -7.174526 46.245335 -21.177559 +v -4.729176 50.064999 -21.848450 +v 3.684542 40.874756 -21.832649 +v -4.346519 41.711464 -21.780731 +v -1.954695 53.820606 -20.261002 +v 5.567412 51.759987 -20.271179 +v -6.586926 50.034092 -20.226860 +v 7.668138 46.167225 -20.226791 +v -6.610544 42.388493 -20.226845 +v 5.308502 40.421764 -20.324127 +v -2.145041 38.702789 -20.332909 +v 0.486515 59.214108 -21.371986 +v 5.638361 58.018211 -21.291145 +v 65.691246 134.121918 -20.301651 +v 63.744923 133.483551 -21.674477 +v 10.144151 134.410278 -20.970619 +v -5.576184 127.394180 -21.808090 +v 3.581550 126.297829 -21.740662 +v 5.591251 129.124161 -20.236107 +v -1.259079 127.676979 -20.349670 +v 165.103683 -125.940002 -21.177567 +v 168.572632 -123.576584 -20.117851 +v 144.382309 -119.085472 -21.068153 +v 143.690125 -118.021210 -20.167358 +v 150.073090 -111.083870 -21.802071 +v 160.251541 -103.253273 -21.792419 +v 167.214111 -99.393028 -20.158661 +v 158.827438 -102.352325 -20.265266 +v 150.585800 -108.438423 -20.347023 +v 163.803116 -131.312073 -20.337509 +v 141.741028 -124.591103 -21.306541 +v 135.289047 -111.153938 -20.324257 +v 138.591949 -112.941772 -21.933968 +v 139.163879 -115.238411 -20.349152 +v 161.176941 -94.752571 -21.615341 +v 151.375595 -97.472633 -21.990913 +v 148.105240 -101.933144 -21.633972 +v 160.889328 -96.212296 -20.254082 +v 151.654175 -101.156929 -20.228409 +v 144.284012 -108.179527 -20.259781 +v 80.757660 143.379898 -20.325470 +v 82.900925 144.233078 -21.798576 +v 107.085548 173.978012 -21.956505 +v 107.161362 176.848862 -20.678329 +v 110.746651 144.387909 -21.881660 +v 111.096939 142.420044 -19.898735 +v 118.237526 161.655304 -21.837692 +v 117.191254 164.671539 -20.128876 +v 130.025467 155.855026 -20.894005 +v 130.658768 147.945282 -19.963684 +v 128.601074 148.288361 -21.918381 +v 129.996094 43.457169 -21.079597 +v 12.126481 43.090393 -21.270790 +v 130.212753 -102.592026 -20.477074 +v 128.247650 -100.841614 -21.717056 +v 9.753262 38.985340 -21.081909 +v 128.358368 -103.077766 -20.014992 +v 12.728791 49.100163 -21.178001 +v 10.039973 54.378143 -20.886436 +v 75.670387 136.712296 -21.332863 +v 129.742310 49.175961 -21.029976 +v 129.981323 136.830368 -20.736351 +v 137.148361 -121.405403 -20.815125 +v 71.340210 -45.928299 -21.770782 +v 136.097275 -129.992508 -20.257462 +v 67.183220 -38.290020 -20.315948 +v 0.144105 33.641582 -20.208618 +v 176.759949 137.737869 -22.255150 +v 38.668621 209.289780 -19.747826 +v 109.965714 207.429367 -21.585030 +v 133.042191 204.788727 -21.863312 +v 7.010648 -132.660904 -19.550392 +v 175.221085 -122.397202 -8.732147 +v 130.838455 -105.306984 -6.707581 +v 9.024637 139.063339 -13.744987 +v 130.568115 137.655457 -13.389244 +v 79.793350 143.892563 -12.714653 +v 80.295410 142.209747 -13.760292 +v 75.379494 137.977936 -13.327591 +v 70.678337 138.927704 -13.346230 +v 34.215714 209.976013 -24.350395 +v 145.000046 212.321960 -21.530785 +v 156.915329 188.838669 -24.602272 +v 159.595428 156.243668 -22.727386 +v 160.345154 191.385422 -21.108635 +v 140.081223 -138.163528 -8.713135 +v 137.688324 -138.306229 -8.613075 +v 112.815361 144.184341 -16.769897 +v 112.803619 142.198654 -16.965546 +v 130.867615 144.098785 -16.872955 +v 130.883301 142.175446 -16.979195 +v 110.725822 148.300156 -21.990921 +v 175.319443 -97.778183 -8.611496 +v 167.085098 -98.557785 -8.701279 +v 155.941360 -102.755760 -8.737816 +v 146.992966 -111.133377 -8.727089 +v 138.410919 -120.966415 -8.668976 +v 137.063980 -130.138809 -8.700378 +v 169.828064 -124.008560 -8.666565 +v 139.505783 -117.962143 -6.811073 +v 113.175972 141.911102 -13.696899 +v 115.408173 174.141922 -18.927223 +v 121.801582 167.236511 -19.250145 +v 106.911491 197.961563 -19.137573 +v 105.730415 197.819962 -6.667847 +v 4.300131 141.090210 -13.459641 +v 0.021214 142.836945 -13.471100 +v 4.308707 145.063171 -13.648087 +v 5.638952 137.221909 -13.471031 +v -3.845173 141.499725 -13.471031 +v -5.593826 137.219208 -13.471039 +v 3.890235 132.941757 -13.477333 +v -4.254326 133.350403 -13.475052 +v 3.950388 129.235764 -13.732201 +v 0.023912 131.604172 -13.471100 +v 145.122955 209.524612 -29.390465 +v 144.927551 209.382858 4.310905 +v 150.491211 210.878998 -29.358879 +v 150.264816 210.871704 4.310913 +v 155.802109 209.372803 -29.311287 +v 155.631454 209.492447 4.310905 +v 159.728271 205.422089 -29.389397 +v 141.155350 205.622589 -29.359138 +v 141.049744 205.424835 4.310905 +v 159.589508 205.614685 4.310905 +v 161.086823 200.054550 -29.360527 +v 139.662033 200.281082 -29.360527 +v 139.670532 200.058228 4.310905 +v 161.078308 200.277405 4.310905 +v 159.593491 194.713013 -29.359138 +v 141.037369 194.915558 -29.359886 +v 141.159348 194.720947 4.310905 +v 159.699112 194.910797 4.310905 +v 155.629410 190.832031 -29.360420 +v 144.903076 190.939774 -29.389107 +v 145.117401 190.843185 4.310905 +v 155.821289 190.952774 4.310905 +v 150.264008 189.456589 -29.359337 +v 150.484024 189.463928 4.310905 +v 110.630531 190.177567 -21.797333 +v 133.445404 198.176941 -21.451454 +v 129.348663 164.873917 -21.795540 +v 114.357361 179.673523 -21.547394 +v 138.164124 187.241943 -21.992943 +v 138.716232 160.837570 -21.219070 +v 150.374420 214.200653 -6.454567 +v 157.390839 212.320602 -6.454567 +v 162.527161 207.184235 -6.454575 +v 161.491089 191.462936 -5.970657 +v 23.998932 159.121658 -21.993187 +v 5.425064 160.354660 -21.988777 +v 2.858457 160.369919 -21.990929 +v 2.638996 157.789032 -21.979301 +v 5.205447 157.773453 -21.990929 +v 135.565552 202.339172 -19.037224 +v 147.574188 155.611877 -6.695641 +v 147.855225 156.766907 -19.151581 +v 106.772377 159.071671 -21.987610 +v 145.333298 144.987106 -21.979103 +v 153.825775 142.222748 -21.991631 +v 148.793320 141.142944 -21.990738 +v 150.300507 213.057449 4.310913 +v 156.885254 211.217102 4.310913 +v 161.582489 206.475555 4.310905 +v 161.566040 193.747559 4.310905 +v 137.478989 200.150909 4.310905 +v 150.433685 187.267319 4.310905 +v 139.251785 206.567230 4.310905 +v 143.872208 211.222794 4.310913 +v 156.840302 189.089951 4.310905 +v 139.300720 193.627426 4.310905 +v 144.004471 189.035065 4.310905 +v 163.174622 200.156128 4.310905 +v 0.286651 5.984797 -15.078590 +v -0.241313 -0.671797 -15.079079 +v -148.567001 183.217865 -21.316322 +v 148.114471 183.267090 -21.182137 +v 1.576821 142.015381 -18.181870 +v -3.355484 140.963226 -18.181625 +v 4.276042 139.676300 -18.182007 +v 4.827993 135.657761 -18.181976 +v -4.888930 137.220566 -18.182007 +v -3.720098 133.842514 -18.181664 +v 1.189475 132.299637 -18.181740 +v -172.315140 -127.103737 -18.182022 +v -176.340225 -127.655678 -18.181984 +v -169.631027 -129.453415 -18.181984 +v -178.689163 -130.349426 -18.182671 +v -169.089188 -133.466599 -18.181747 +v -177.627411 -135.287033 -18.181480 +v -172.836411 -136.842178 -18.181274 +v 177.692886 -128.537369 -18.182640 +v 173.929428 -126.997780 -18.181984 +v 170.553925 -128.162674 -18.182083 +v 178.722702 -133.467819 -18.181656 +v 169.004333 -133.069305 -18.181686 +v 176.385178 -136.162735 -18.181976 +v 172.356201 -136.714005 -18.182083 +v 151.730820 150.979553 -22.989319 +v 155.235397 147.773865 -23.018501 +v 145.331955 147.107742 -23.011848 +v 154.192642 142.589615 -22.993195 +v 146.923035 142.222763 -22.993202 +v 150.374405 141.029419 -22.993271 +v -146.806229 149.681122 -23.008011 +v -151.847397 150.977554 -22.997025 +v -155.360229 147.229263 -23.015709 +v -145.291382 144.977448 -22.990540 +v -153.780655 142.222870 -22.993202 +v -148.748199 141.143051 -22.992989 +v -4.254067 141.086029 -15.977013 +v 1.231829 142.856964 -15.976852 +v 5.508458 138.991516 -15.976845 +v -5.463331 135.449600 -15.976883 +v 4.299209 133.355133 -15.976776 +v -1.186682 131.584167 -15.976807 +v 174.389526 -98.576515 -19.450218 +v 175.319443 -97.778183 -8.611496 +v 175.319443 -97.778183 -8.611496 +v 143.150314 210.636078 -29.316856 +v 138.050430 204.001007 -29.301262 +v 139.086014 193.650436 -25.499138 +v 143.857056 188.879379 -25.499138 +v 151.920288 187.069275 -25.557167 +v -7.924628 42.190102 -6.610580 +v -4.145678 38.245773 -6.714729 +v 135.560867 153.660797 -20.721100 +v 135.560867 153.660797 -20.721100 +v 135.560867 153.660797 -20.721100 +v 134.905289 154.778473 -6.632812 +v 134.905289 154.778473 -6.632812 +v 150.608185 152.795792 -6.665970 +v 159.635513 153.303711 -6.891357 +v 159.635513 153.303711 -6.891357 +v 63.744923 133.483551 -21.674477 +v 63.744923 133.483551 -21.674477 +v 10.144151 134.410278 -20.970619 +v 10.144151 134.410278 -20.970619 +v 39.776573 213.408478 -5.144119 +v 145.318588 213.394318 -5.115936 +v -172.438446 -137.232834 -25.478844 +v -175.198517 -137.161591 -25.503517 +v -175.161560 -134.784622 -18.206093 +v -175.161560 -134.784622 -18.206093 +v -175.161560 -134.784622 -18.206093 +v -176.909042 -133.052216 -15.964828 +v -176.909042 -133.052216 -15.964828 +v -176.909042 -133.052216 -15.964828 +v -173.231216 -134.953842 -15.976738 +v -173.231216 -134.953842 -15.976738 +v 170.904892 -133.052368 -15.965698 +v 170.904892 -133.052368 -15.965698 +v 170.904892 -133.052368 -15.965698 +v 174.582703 -134.953964 -15.977104 +v 174.582703 -134.953964 -15.977104 +v 164.617599 -130.468796 -8.601265 +v 164.617599 -130.468796 -8.601265 +v 165.667984 -137.265930 -8.755608 +v 165.667984 -137.265930 -8.755608 +v 143.592621 188.005997 2.674347 +v 143.592621 188.005997 2.674347 +v 138.061966 193.697128 3.834724 +v 138.061966 193.697128 3.834724 +v -169.075012 -134.725571 -15.972931 +v -172.140060 -137.356873 -15.970619 +v 175.638657 -125.826591 -6.692383 +v 175.638657 -125.826591 -6.692383 +v 179.189178 -128.743271 -6.784256 +v 178.555298 -136.526535 -6.584206 +v 178.555298 -136.526535 -6.584206 +v 173.263443 -137.930267 -6.608742 +v 173.263443 -137.930267 -6.608742 +v 152.599472 150.605453 -21.582954 +v 155.374359 147.892990 -22.090553 +v 155.374359 147.892990 -22.090553 +v 72.533478 -44.517212 -20.202187 +v 72.937782 -43.349434 -7.361664 +v 72.937782 -43.349434 -7.361664 +v 1.232241 -1.147531 -21.850609 +v 1.232241 -1.147531 -21.850609 +v -1.165418 -1.180292 -21.855385 +v -1.165418 -1.180292 -21.855385 +v -169.194656 162.439255 -6.841843 +v -169.194656 162.439255 -6.841843 +v -169.422150 161.996246 -11.466301 +v -169.422150 161.996246 -11.466301 +v 9.013790 135.359024 -13.661545 +v 9.013790 135.359024 -13.661545 +v -6.473370 130.011612 -20.250168 +v -1.259079 127.676979 -20.349670 +v 142.656509 -119.732552 -8.655533 +v 142.656509 -119.732552 -8.655533 +v 143.690125 -118.021210 -20.167358 +v -126.543816 -139.344543 -2.755997 +v -126.543816 -139.344543 -2.755997 +v -126.543816 -139.344543 -2.755997 +v 121.193810 -138.763718 -2.730759 +v 170.962418 -92.333443 -21.822792 +v 161.176941 -94.752571 -21.615341 +v 151.375595 -97.472633 -21.990913 +v 151.375595 -97.472633 -21.990913 +v 129.996094 43.457169 -21.079597 +v 129.996094 43.457169 -21.079597 +v 12.126481 43.090393 -21.270790 +v 12.126481 43.090393 -21.270790 +v 130.212753 -102.592026 -20.477074 +v 130.212753 -102.592026 -20.477074 +v 75.670387 136.712296 -21.332863 +v 75.670387 136.712296 -21.332863 +v 129.981323 136.830368 -20.736351 +v 129.981323 136.830368 -20.736351 +v 136.762405 -140.859253 -21.123222 +v 112.815361 144.184341 -16.769897 +v 112.815361 144.184341 -16.769897 +v 112.803619 142.198654 -16.965546 +v 112.803619 142.198654 -16.965546 +v 130.867615 144.098785 -16.872955 +v 130.867615 144.098785 -16.872955 +v 3.950388 129.235764 -13.732201 +v 159.589508 205.614685 4.310905 +v 161.078308 200.277405 4.310905 +v -103.432625 192.967636 -6.665916 +v -103.410339 210.042908 -6.661377 +v -103.410339 210.042908 -6.661377 +v -106.211830 182.716354 -6.619385 +v -106.211830 182.716354 -6.619385 +v 144.004471 189.035065 4.310905 +v -7.405159 -138.418106 -6.521301 +v -6.953038 -138.081635 -6.669586 +v -6.953038 -138.081635 -6.669586 +v -110.065834 185.324554 -6.827385 +v -110.065834 185.324554 -6.827385 +v -109.800789 186.497055 -19.992874 +v -136.239685 208.103989 -20.795570 +v -136.239685 208.103989 -20.795570 +v -136.239685 208.103989 -20.795570 +v -134.998672 209.278259 -19.678520 +v -172.570389 -126.873329 -25.390205 +v -172.570389 -126.873329 -25.390205 +v -172.315140 -127.103737 -18.182022 +v -172.315140 -127.103737 -18.182022 +v -176.340225 -127.655678 -18.181984 +v -178.689163 -130.349426 -18.182671 +v -178.689163 -130.349426 -18.182671 +v 144.927551 209.382858 4.310905 +v 141.049744 205.424835 4.310905 +v -164.668610 -136.196945 -20.353630 +v -163.119629 -131.540863 -21.314667 +v -163.119629 -131.540863 -21.314667 +v -146.806229 149.681122 -23.008011 +v -151.847397 150.977554 -22.997025 +v -151.847397 150.977554 -22.997025 +v -151.847397 150.977554 -22.997025 +v -159.627975 152.144211 -18.971344 +v -135.636810 153.043472 -21.357422 +v -135.636810 153.043472 -21.357422 +v -139.511841 -117.047668 -8.591309 +v -139.511841 -117.047668 -8.591309 +v -139.511841 -117.047668 -8.591309 +v -139.438538 -117.961868 -6.760674 +v -139.438538 -117.961868 -6.760674 +v -145.072235 209.492554 4.310905 +v -141.114182 205.614777 4.310905 +v -139.283524 206.681213 4.310905 +v -143.958878 211.304337 4.310913 +v 157.802109 157.288513 -15.551605 +v 157.802109 157.288513 -15.551605 +v 156.984711 157.084961 -19.054047 +v 157.837631 155.951248 -6.703140 +v 157.837631 155.951248 -6.703140 +v 5.508458 138.991516 -15.976845 +v 4.299209 133.355133 -15.976776 +v 4.299209 133.355133 -15.976776 +v -1.059555 205.210861 -22.190346 +v -1.059555 205.210861 -22.190346 +v 3.848861 203.626495 -22.189873 +v 3.848861 203.626495 -22.189873 +v 137.339615 200.167816 -25.499138 +v 139.783234 208.256363 -25.146339 +v 158.572891 209.895599 -29.315483 +v 150.635269 213.089615 -29.255821 +v 162.424271 204.382797 -29.270302 +v 142.160950 190.423584 -29.272194 +v 150.218872 187.311615 -29.317436 +v -179.061020 -134.076767 -25.473671 +v -179.061020 -134.076767 -25.473671 +v -177.627411 -135.287033 -18.181480 +v -177.627411 -135.287033 -18.181480 +v -6.313785 36.295158 -6.627113 +v -6.313785 36.295158 -6.627113 +v -0.497014 34.744537 -6.670921 +v 8.604385 38.249012 -6.586662 +v 8.604385 38.249012 -6.586662 +v 11.708475 44.720119 -6.619606 +v 11.708475 44.720119 -6.619606 +v -109.623741 149.238708 -25.205666 +v -109.623741 149.238708 -25.205666 +v -110.750694 141.348404 -25.031334 +v -110.750694 141.348404 -25.031334 +v 5.061268 135.945602 -25.419319 +v 5.061268 135.945602 -25.419319 +v 3.515829 140.988586 -25.346199 +v 170.890991 -130.831635 -18.192596 +v 170.890991 -130.831635 -18.192596 +v 170.890991 -130.831635 -18.192596 +v 172.851776 -128.870819 -15.966530 +v 172.851776 -128.870819 -15.966530 +v 172.851776 -128.870819 -15.966530 +v 175.007095 -128.870834 -18.192589 +v 175.007095 -128.870834 -18.192589 +v 175.007095 -128.870834 -18.192589 +v 1.386298 140.432175 -18.174553 +v 1.386298 140.432175 -18.174553 +v 3.036331 135.805389 -18.210747 +v 3.036331 135.805389 -18.210747 +v 3.036331 135.805389 -18.210747 +v -172.345596 -126.487106 -15.981163 +v -168.429169 -130.180222 -15.974098 +v -168.429169 -130.180222 -15.974098 +v 131.330109 148.727509 -24.294884 +v 130.658768 147.945282 -19.963684 +v 137.297073 191.631409 -19.410431 +v 111.991226 181.008362 -20.046074 +v 111.991226 181.008362 -20.046074 +v 180.225159 -132.056870 -6.496109 +v 131.771118 141.097137 -25.230827 +v 109.864250 141.394897 -25.148247 +v 109.864250 141.394897 -25.148247 +v 69.264336 -43.385269 -7.393120 +v 69.264336 -43.385269 -7.393120 +v 70.825340 -40.422913 -6.540070 +v 70.825340 -40.422913 -6.540070 +v 70.825340 -40.422913 -6.540070 +v 161.055420 154.624710 -6.616859 +v 161.055420 154.624710 -6.616859 +v 162.183365 154.918396 -12.748314 +v 162.183365 154.918396 -12.748314 +v 162.183365 154.918396 -12.748314 +v 162.183365 154.918396 -12.748314 +v -178.095093 152.132385 -16.862183 +v -178.197662 138.700546 -16.949608 +v 80.757660 143.379898 -20.325470 +v 80.757660 143.379898 -20.325470 +v 175.328293 137.037521 -6.690842 +v 161.162170 170.709061 -6.769806 +v 161.162170 170.709061 -6.769806 +v 160.985580 169.562668 -17.128799 +v 160.985580 169.562668 -17.128799 +v 12.728791 49.100163 -21.178001 +v 12.728791 49.100163 -21.178001 +v 10.039973 54.378143 -20.886436 +v 10.039973 54.378143 -20.886436 +v 129.742310 49.175961 -21.029976 +v 129.742310 49.175961 -21.029976 +v 131.271683 44.508575 -6.635986 +v 131.271683 44.508575 -6.635986 +v 79.793350 143.892563 -12.714653 +v 79.793350 143.892563 -12.714653 +v 80.295410 142.209747 -13.760292 +v 80.295410 142.209747 -13.760292 +v -138.849289 206.129944 -29.294472 +v -137.755722 198.244675 -29.342140 +v 155.631454 209.492447 4.310905 +v 155.821289 190.952774 4.310905 +v 150.484024 189.463928 4.310905 +v -66.263649 135.259094 -13.744614 +v -66.263649 135.259094 -13.744614 +v -8.960551 135.410995 -13.623070 +v -8.960551 135.410995 -13.623070 +v 137.074097 196.195282 3.674377 +v 137.074097 196.195282 3.674377 +v 137.478989 200.150909 4.310905 +v 150.433685 187.267319 4.310905 +v 156.840302 189.089951 4.310905 +v -0.241313 -0.671797 -15.079079 +v -0.241313 -0.671797 -15.079079 +v -111.268661 182.184021 -6.731468 +v -111.268661 182.184021 -6.731468 +v -111.832253 180.766891 -20.074463 +v -111.832253 180.766891 -20.074463 +v -3.453289 133.438507 -25.370201 +v -3.453289 133.438507 -25.370201 +v 1.635656 132.326920 -25.396355 +v 1.635656 132.326920 -25.396355 +v -3.845173 141.499725 -13.471031 +v -3.845173 141.499725 -13.471031 +v -4.254067 141.086029 -15.977013 +v -4.254067 141.086029 -15.977013 +v 138.591949 -112.941772 -21.933968 +v -174.125443 -93.709190 -20.062416 +v -174.125443 -93.709190 -20.062416 +v -161.106018 -96.198456 -20.244781 +v -131.325882 -104.388931 -6.790306 +v -131.325882 -104.388931 -6.790306 +v -129.562119 -103.291534 -20.254791 +v -129.562119 -103.291534 -20.254791 +v -129.417343 -105.602371 -6.661530 +v -129.417343 -105.602371 -6.661530 +v -9.563220 134.630051 -20.535896 +v -139.978729 -138.150421 -8.706970 +v -139.978729 -138.150421 -8.706970 +v -137.587540 -138.304214 -8.701851 +v -137.587540 -138.304214 -8.701851 +v -141.545883 -123.154305 -8.594070 +v -141.545883 -123.154305 -8.594070 +v -139.625366 200.277512 4.310905 +v -137.110245 196.904953 3.847084 +v -137.436981 200.235168 4.310905 +v 4.929917 198.581970 -22.182350 +v 4.929917 198.581970 -22.182350 +v 1.104703 195.124878 -22.190224 +v 1.104703 195.124878 -22.190224 +v 138.403610 195.821976 -29.319023 +v 156.677338 150.286682 -25.356483 +v 150.047638 146.032303 -25.463173 +v 150.047638 146.032303 -25.463173 +v -174.962158 -128.870667 -15.966057 +v -174.962158 -128.870667 -15.966057 +v -174.962158 -128.870667 -15.966057 +v -171.574402 -129.821060 -15.977112 +v -171.574402 -129.821060 -15.977112 +v 176.239517 -129.821182 -15.976158 +v 176.239517 -129.821182 -15.976158 +v 177.008362 -133.170975 -18.172676 +v 177.008362 -133.170975 -18.172676 +v -2.696982 139.212982 -15.973724 +v -2.696982 139.212982 -15.973724 +v -2.323520 135.099884 -15.976128 +v -2.323520 135.099884 -15.976128 +v -177.720459 -127.529480 -15.988594 +v -177.720459 -127.529480 -15.988594 +v -179.352753 -133.676636 -15.973999 +v -179.352753 -133.676636 -15.973999 +v 102.597069 209.001358 -20.199417 +v 102.597069 209.001358 -20.199417 +v 102.597069 209.001358 -20.199417 +v -159.893265 152.566681 -11.554298 +v -159.893265 152.566681 -11.554298 +v -161.931458 154.734436 -11.534363 +v -161.931458 154.734436 -11.534363 +v -159.704300 153.458221 -6.530960 +v -159.704300 153.458221 -6.530960 +v -159.704300 153.458221 -6.530960 +v -173.015579 158.518005 -10.332787 +v -173.015579 158.518005 -10.332787 +v -173.015579 158.518005 -10.332787 +v 178.373352 152.749329 -9.344032 +v 173.143539 158.292053 -9.306511 +v 173.143539 158.292053 -9.306511 +v 131.243683 47.882088 -6.739136 +v 131.243683 47.882088 -6.739136 +v 134.535309 -134.682419 -21.757393 +v 137.148361 -121.405403 -20.815125 +v -4.901570 32.485874 -21.847557 +v 0.144105 33.641582 -20.208618 +v 130.568115 137.655457 -13.389244 +v 130.568115 137.655457 -13.389244 +v -157.490906 157.239029 -16.292175 +v -157.791687 155.881027 -6.654831 +v -157.791687 155.881027 -6.654831 +v -157.791687 155.881027 -6.654831 +v -163.391144 149.097687 -11.436684 +v -163.391144 149.097687 -11.436684 +v 155.941360 -102.755760 -8.737816 +v 146.992966 -111.133377 -8.727089 +v 107.719139 187.041672 -6.744041 +v 105.730415 197.819962 -6.667847 +v 138.716232 160.837570 -21.219070 +v 148.114471 183.267090 -21.182137 +v -140.144363 192.506439 -29.299492 +v 150.264816 210.871704 4.310913 +v 0.088357 -135.880478 -6.575195 +v 0.088357 -135.880478 -6.575195 +v 0.088357 -135.880478 -6.575195 +v -68.499062 -38.227455 -6.743797 +v -68.499062 -38.227455 -6.743797 +v -131.114044 44.460217 -6.633171 +v -131.114044 44.460217 -6.633171 +v 159.699112 194.910797 4.310905 +v 156.885254 211.217102 4.310913 +v 161.582489 206.475555 4.310905 +v 125.187515 -141.446335 -2.838600 +v -124.781265 -141.820648 -3.221420 +v -166.519653 -95.717827 -8.664833 +v -175.118881 -94.684158 -8.603493 +v -175.118881 -94.684158 -8.603493 +v -3.355484 140.963226 -18.181625 +v -3.355484 140.963226 -18.181625 +v -4.888930 137.220566 -18.182007 +v -168.859009 -133.047516 -25.401970 +v -168.859009 -133.047516 -25.401970 +v -169.089188 -133.466599 -18.181747 +v -169.089188 -133.466599 -18.181747 +v -172.836411 -136.842178 -18.181274 +v -165.609360 -137.303589 -8.725487 +v -165.609360 -137.303589 -8.725487 +v -70.387566 140.182632 -21.377914 +v -70.387566 140.182632 -21.377914 +v -9.835221 139.999786 -20.829033 +v -151.716278 -101.131233 -20.248199 +v -131.699966 149.167358 -25.116432 +v -131.699966 149.167358 -25.116432 +v -130.271408 148.145035 -20.935043 +v -130.271408 148.145035 -20.935043 +v -8.545619 38.256367 -6.604256 +v -8.545619 38.256367 -6.604256 +v -9.760796 38.915634 -21.228149 +v -9.760796 38.915634 -21.228149 +v -12.957077 49.107662 -21.231682 +v -12.957077 49.107662 -21.231682 +v -10.032494 54.389465 -20.843307 +v -10.032494 54.389465 -20.843307 +v -72.496475 -44.567028 -20.240814 +v -72.496475 -44.567028 -20.240814 +v -130.769028 143.837982 -13.272629 +v -130.769028 143.837982 -13.272629 +v -130.533142 137.738190 -13.470398 +v -130.533142 137.738190 -13.470398 +v -112.773109 142.194595 -16.959251 +v -112.773109 142.194595 -16.959251 +v -112.761124 144.140961 -16.844063 +v -112.761124 144.140961 -16.844063 +v -175.188126 -122.417038 -8.682922 +v -175.188126 -122.417038 -8.682922 +v -169.656845 -124.058090 -8.719093 +v -113.046028 141.930740 -13.723366 +v -113.046028 141.930740 -13.723366 +v -117.492210 165.723022 -6.678856 +v -131.308289 156.607529 -6.633759 +v -131.308289 156.607529 -6.633759 +v -141.004578 194.910889 4.310905 +v -154.147537 142.589752 -21.990929 +v -154.147537 142.589752 -21.990929 +v -149.249359 141.008759 -21.990929 +v -149.249359 141.008759 -21.990929 +v 9.674154 208.876724 -21.861069 +v 9.674154 208.876724 -21.861069 +v 0.022587 211.694839 -22.191391 +v 4.018570 203.123093 -25.497643 +v 4.018570 203.123093 -25.497643 +v 4.589656 198.964813 -25.497841 +v 4.589656 198.964813 -25.497841 +v -3.964236 54.180027 -6.835030 +v 0.963475 55.017479 -6.597519 +v 6.365237 36.285835 -6.635536 +v 6.365237 36.285835 -6.635536 +v 68.520401 -38.139568 -6.707047 +v 68.520401 -38.139568 -6.707047 +v 130.820847 143.851318 -13.281700 +v 130.820847 143.851318 -13.281700 +v 113.063492 143.915863 -13.778397 +v 113.063492 143.915863 -13.778397 +v -176.922928 -130.831512 -18.192589 +v -176.922928 -130.831512 -18.192589 +v -176.922928 -130.831512 -18.192589 +v 8.473352 54.484299 -6.622986 +v 8.473352 54.484299 -6.622986 +v 107.103966 178.736145 -6.702545 +v 107.103966 178.736145 -6.702545 +v 1.387322 134.327393 -15.946861 +v 1.387322 134.327393 -15.946861 +v 1.387322 134.327393 -15.946861 +v -0.665840 134.012421 -18.181259 +v -0.665840 134.012421 -18.181259 +v 138.556610 168.283676 -6.677299 +v 135.793213 158.694504 -6.722626 +v 135.793213 158.694504 -6.722626 +v 132.519836 160.997925 -6.566330 +v 132.519836 160.997925 -6.566330 +v 131.479309 161.915451 -20.044724 +v 131.479309 161.915451 -20.044724 +v 110.119781 185.178101 -6.755440 +v 110.119781 185.178101 -6.755440 +v 109.522430 186.577133 -20.010109 +v 177.906586 -127.847252 -15.972664 +v 172.210602 -126.414589 -15.979607 +v 158.223175 170.411819 -6.683296 +v 157.892273 186.161591 0.164352 +v 157.892273 186.161591 0.164352 +v 175.188034 -94.595039 -8.641533 +v 175.188034 -94.595039 -8.641533 +v 3.581550 126.297829 -21.740662 +v 3.581550 126.297829 -21.740662 +v -69.168488 -43.371918 -7.297516 +v -69.168488 -43.371918 -7.297516 +v -71.178009 -40.119747 -6.472839 +v -71.178009 -40.119747 -6.472839 +v -161.202499 170.626389 -6.828094 +v -136.770432 -138.538574 -6.578850 +v 165.103683 -125.940002 -21.177567 +v 165.103683 -125.940002 -21.177567 +v 144.382309 -119.085472 -21.068153 +v 102.991211 198.599442 -6.625725 +v 106.067642 182.552383 -6.600357 +v 106.067642 182.552383 -6.600357 +v 178.348114 137.910095 -6.667839 +v 178.348114 137.910095 -6.667839 +v 164.949875 149.696793 -6.536827 +v 164.949875 149.696793 -6.536827 +v 164.949875 149.696793 -6.536827 +v 178.973404 -123.392303 -6.890442 +v 110.746651 144.387909 -21.881660 +v 111.096939 142.420044 -19.898735 +v 128.247650 -100.841614 -21.717056 +v 178.580658 148.556946 -13.334953 +v 178.580658 148.556946 -13.334953 +v 178.549072 149.483505 -9.213463 +v 178.549072 149.483505 -9.213463 +v -138.363327 -120.907356 -8.576401 +v -138.363327 -120.907356 -8.576401 +v -138.363327 -120.907356 -8.576401 +v -138.388107 -120.474228 -6.660919 +v -138.388107 -120.474228 -6.660919 +v 130.838455 -105.306984 -6.707581 +v 130.838455 -105.306984 -6.707581 +v 110.725822 148.300156 -21.990921 +v 110.725822 148.300156 -21.990921 +v -147.549255 187.608185 -29.277229 +v -136.742142 210.196106 -5.092682 +v -136.742142 210.196106 -5.092682 +v -136.742142 210.196106 -5.092682 +v -136.742142 210.196106 -5.092682 +v -37.431084 210.414246 -5.221313 +v 147.574188 155.611877 -6.695641 +v -137.020508 -130.135269 -8.703712 +v -8.403294 54.466404 -6.683388 +v -8.403294 54.466404 -6.683388 +v -11.712500 47.620602 -6.609306 +v -11.712500 47.620602 -6.609306 +v -107.005226 178.705048 -6.637146 +v -107.005226 178.705048 -6.637146 +v -146.500534 186.751373 2.634109 +v -146.500534 186.751373 2.634109 +v -146.819077 184.867371 -18.919006 +v -144.882385 190.952881 4.310905 +v -150.219650 189.464035 4.310905 +v -131.342804 161.742432 -20.052299 +v -131.342804 161.742432 -20.052299 +v -141.792557 187.097275 -19.415276 +v 138.206589 158.575699 -19.536224 +v -3.754595 140.700699 -25.364388 +v -3.754595 140.700699 -25.364388 +v 1.576821 142.015381 -18.181870 +v 4.276042 139.676300 -18.182007 +v 148.793320 141.142944 -21.990738 +v 148.793320 141.142944 -21.990738 +v 148.793320 141.142944 -21.990738 +v 146.923035 142.222763 -22.993202 +v 146.923035 142.222763 -22.993202 +v 146.923035 142.222763 -22.993202 +v 0.023912 131.604172 -13.471100 +v 0.023912 131.604172 -13.471100 +v -1.186682 131.584167 -15.976807 +v -1.186682 131.584167 -15.976807 +v -138.857193 -112.989227 -21.989510 +v -139.318710 -115.228424 -20.341400 +v -82.813034 144.310577 -21.810455 +v -106.724258 174.828979 -21.787155 +v -75.691383 136.846283 -21.310738 +v -75.691383 136.846283 -21.310738 +v -129.836929 136.750854 -20.812698 +v -129.836929 136.750854 -20.812698 +v -165.240051 -126.268570 -20.583885 +v -165.240051 -126.268570 -20.583885 +v -165.527679 -127.548019 -8.628059 +v -165.527679 -127.548019 -8.628059 +v 1.656116 216.223953 -5.248520 +v -75.252892 137.907669 -13.300110 +v -75.252892 137.907669 -13.300110 +v -110.680687 148.300232 -21.990921 +v -110.680687 148.300232 -21.990921 +v -167.292694 -98.539597 -8.718567 +v -175.274307 -97.818741 -8.677689 +v -175.274307 -97.818741 -8.677689 +v -155.663361 -102.901573 -8.713165 +v -155.776123 209.382950 4.310905 +v -150.438858 210.871811 4.310913 +v -159.653946 205.424927 4.310905 +v -163.742676 200.139297 4.310905 +v -161.502182 206.590210 4.310905 +v -150.333771 187.254196 4.310905 +v -150.333771 187.254196 4.310905 +v 4.827993 135.657761 -18.181976 +v 4.827993 135.657761 -18.181976 +v 159.946167 166.934326 -13.769234 +v 159.603821 152.126282 -19.028328 +v 8.053016 49.920444 -6.635902 +v 8.841575 44.333378 -6.702499 +v -155.370209 148.051254 -22.038857 +v -155.370209 148.051254 -22.038857 +v -155.360229 147.229263 -23.015709 +v -155.360229 147.229263 -23.015709 +v -5.576184 127.394180 -21.808090 +v -182.264313 -129.397751 -7.072647 +v -182.303391 -134.879288 -7.039963 +v -182.303391 -134.879288 -7.039963 +v 163.803116 -131.312073 -20.337509 +v 182.398392 -130.263382 -6.786545 +v 107.085548 173.978012 -21.956505 +v -153.780655 142.222870 -22.993202 +v -153.780655 142.222870 -22.993202 +v -148.748199 141.143051 -22.992989 +v -148.748199 141.143051 -22.992989 +v 156.915329 188.838669 -24.602272 +v 173.393311 -137.613342 -25.233894 +v -151.215073 212.930237 -29.325066 +v -156.515579 211.275787 -29.096184 +v 162.759415 196.384079 -29.282249 +v -143.811890 188.879471 -25.499138 +v -151.757324 187.040710 -25.683769 +v -131.738983 141.282333 -25.229164 +v -131.738983 141.282333 -25.229164 +v 145.112076 185.381149 2.051086 +v -6.087251 56.321293 -6.565613 +v -6.087251 56.321293 -6.565613 +v 0.100162 57.497532 -6.706436 +v 170.201065 -128.442627 -25.500694 +v 170.201065 -128.442627 -25.500694 +v 170.553925 -128.162674 -18.182083 +v 170.553925 -128.162674 -18.182083 +v 138.242310 207.537415 -5.591957 +v 174.993652 -126.893379 -25.339104 +v 121.166237 166.222122 -6.714737 +v 130.761108 160.600647 -6.784752 +v -180.328278 -130.236023 -6.445251 +v -180.328278 -130.236023 -6.445251 +v -176.700912 -136.718582 -15.972931 +v -176.700912 -136.718582 -15.972931 +v 179.502792 -131.943588 -15.972931 +v 156.287003 185.326309 -20.182487 +v 156.287003 185.326309 -20.182487 +v -107.275032 176.984634 -20.441803 +v -110.992912 142.459000 -20.078598 +v -110.699646 144.432556 -21.882080 +v -1.211144 6.454718 -21.866783 +v -1.211144 6.454718 -21.866783 +v 0.286651 5.984797 -15.078590 +v 0.286651 5.984797 -15.078590 +v -128.674347 -101.459709 -21.578522 +v -128.674347 -101.459709 -21.578522 +v -6.021089 35.041809 -20.337669 +v -65.618126 134.188843 -20.308731 +v -65.618126 134.188843 -20.308731 +v -66.686569 133.574875 -12.731956 +v -140.997803 205.427109 -29.358833 +v -139.600525 200.046967 -29.390862 +v -146.138428 148.896606 -22.030190 +v -145.416840 144.489761 -21.983658 +v -145.416840 144.489761 -21.983658 +v 161.086823 200.054550 -29.360527 +v 159.593491 194.713013 -29.359138 +v -8.953523 139.050766 -13.650070 +v -8.953523 139.050766 -13.650070 +v -70.611809 138.944122 -13.375092 +v -135.768173 194.948639 3.307732 +v 153.825775 142.222748 -21.991631 +v 153.825775 142.222748 -21.991631 +v -138.160309 193.468445 3.677650 +v -138.160309 193.468445 3.677650 +v -143.801437 187.840866 2.824577 +v -143.801437 187.840866 2.824577 +v -137.125870 191.624435 -19.411766 +v 130.883301 142.175446 -16.979195 +v 130.883301 142.175446 -16.979195 +v -169.631027 -129.453415 -18.181984 +v -158.123718 170.637863 -6.636147 +v -157.837845 186.108566 0.096344 +v -157.837845 186.108566 0.096344 +v 178.722702 -133.467819 -18.181656 +v 176.385178 -136.162735 -18.181976 +v -100.815598 207.178680 -21.701698 +v -102.301811 208.977249 -20.307297 +v -102.301811 208.977249 -20.307297 +v 113.175972 141.911102 -13.696899 +v 113.175972 141.911102 -13.696899 +v -141.598618 -124.671471 -21.348961 +v -141.598618 -124.671471 -21.348961 +v 178.834885 -129.510925 -25.495323 +v 178.834885 -129.510925 -25.495323 +v 178.834885 -129.510925 -25.495323 +v 5.638361 58.018211 -21.291145 +v 5.638361 58.018211 -21.291145 +v -165.620560 150.426590 -6.541855 +v -165.620560 150.426590 -6.541855 +v -178.253555 137.955551 -6.644943 +v -178.253555 137.955551 -6.644943 +v -176.943420 -140.308197 -7.104393 +v -164.144379 148.896713 -6.712646 +v -164.144379 148.896713 -6.712646 +v -177.802292 153.584488 -9.332634 +v 167.504974 160.977478 -6.583878 +v 167.504974 160.977478 -6.583878 +v 169.290573 162.443161 -6.947716 +v 169.290573 162.443161 -6.947716 +v 165.560715 151.237549 -11.442207 +v 165.560715 151.237549 -11.442207 +v 167.475998 160.149811 -11.540215 +v 167.475998 160.149811 -11.540215 +v 172.830521 158.645020 -11.391129 +v 172.830521 158.645020 -11.391129 +v 9.753262 38.985340 -21.081909 +v 9.753262 38.985340 -21.081909 +v 141.072067 -137.305008 -19.242119 +v 140.081223 -138.163528 -8.713135 +v 140.081223 -138.163528 -8.713135 +v 137.688324 -138.306229 -8.613075 +v 137.688324 -138.306229 -8.613075 +v -170.960999 156.641678 -11.439194 +v -170.960999 156.641678 -11.439194 +v 138.373688 -120.388748 -6.599388 +v 138.373688 -120.388748 -6.599388 +v 139.505783 -117.962143 -6.811073 +v 139.505783 -117.962143 -6.811073 +v 6.215384 56.269577 -6.610374 +v 6.215384 56.269577 -6.610374 +v 0.088336 142.239609 -25.404259 +v -4.169261 145.116623 -13.690987 +v 66.160744 135.193420 -13.759041 +v 66.160744 135.193420 -13.759041 +v 66.717758 133.576477 -12.748726 +v 115.981972 171.214188 -6.578094 +v 111.004967 179.227020 -6.776718 +v -172.806854 -128.870712 -18.194366 +v -172.806854 -128.870712 -18.194366 +v -172.806854 -128.870712 -18.194366 +v 141.544373 -123.175293 -8.628883 +v 141.544373 -123.175293 -8.628883 +v -2.411579 139.420792 -18.181259 +v -2.411579 139.420792 -18.181259 +v -170.942291 -126.813248 -8.459229 +v -167.975403 -130.650009 -8.475739 +v -167.975403 -130.650009 -8.475739 +v 111.234497 181.993881 -6.677956 +v 111.234497 181.993881 -6.677956 +v -175.921600 -138.171494 -6.506210 +v -175.921600 -138.171494 -6.506210 +v 135.779373 208.720764 -20.767891 +v 135.779373 208.720764 -20.767891 +v -130.808472 144.199356 -16.756821 +v -130.808472 144.199356 -16.756821 +v 178.226135 -135.700073 -15.974846 +v 178.226135 -135.700073 -15.974846 +v -129.950867 43.407894 -21.176712 +v -129.950867 43.407894 -21.176712 +v 138.410919 -120.966415 -8.668976 +v 138.410919 -120.966415 -8.668976 +v 138.410919 -120.966415 -8.668976 +v 7.119488 -138.180847 -6.864021 +v 7.119488 -138.180847 -6.864021 +v 8.801372 -137.263870 -19.583405 +v 8.801372 -137.263870 -19.583405 +v -141.110199 194.713120 -29.359123 +v 171.014587 156.663544 -11.446541 +v 171.014587 156.663544 -11.446541 +v -5.593826 137.219208 -13.471039 +v 159.728271 205.422089 -29.389397 +v -116.455574 170.765427 -6.640526 +v -110.939171 179.281250 -6.778351 +v -123.467606 164.419785 -6.707214 +v 139.251785 206.567230 4.310905 +v 143.872208 211.222794 4.310913 +v -3.720098 133.842514 -18.181664 +v -3.720098 133.842514 -18.181664 +v 1.189475 132.299637 -18.181740 +v 1.189475 132.299637 -18.181740 +v -8.966310 -137.401230 -19.395996 +v 177.692886 -128.537369 -18.182640 +v 177.692886 -128.537369 -18.182640 +v -157.008392 157.018066 -18.849205 +v 154.192642 142.589615 -22.993195 +v 154.192642 142.589615 -22.993195 +v 150.374405 141.029419 -22.993271 +v 150.374405 141.029419 -22.993271 +v 1.231829 142.856964 -15.976852 +v 1.231829 142.856964 -15.976852 +v -5.748727 58.253963 -21.377113 +v -5.748727 58.253963 -21.377113 +v 100.336609 206.858154 -21.806580 +v 100.336609 206.858154 -21.806580 +v 65.470718 -38.400539 -21.835922 +v 6.099281 34.430176 -21.197113 +v 6.099281 34.430176 -21.197113 +v 0.486515 59.214108 -21.371986 +v -165.494751 151.220505 -11.426704 +v -165.494751 151.220505 -11.426704 +v -178.822922 -123.033577 -6.772324 +v 175.221085 -122.397202 -8.732147 +v 175.221085 -122.397202 -8.732147 +v -161.130203 156.601730 -17.318184 +v -4.448413 129.428177 -13.668404 +v 157.464355 189.572266 -29.298409 +v -4.996486 137.286316 -25.404274 +v -170.805542 -133.170776 -18.172684 +v -170.805542 -133.170776 -18.172684 +v 5.265780 -133.534348 -6.613327 +v 176.892853 -132.865799 -15.976883 +v 176.892853 -132.865799 -15.976883 +v 3.114663 137.884048 -15.976128 +v 3.114663 137.884048 -15.976128 +v 131.346420 156.623795 -6.610062 +v 131.346420 156.623795 -6.610062 +v 117.910904 165.339447 -6.667320 +v -175.572037 -125.871033 -6.708855 +v -175.572037 -125.871033 -6.708855 +v -180.005646 -133.493500 -6.625427 +v -180.005646 -133.493500 -6.625427 +v 135.549622 196.896423 -19.353706 +v 136.682556 -137.401749 -19.471397 +v 136.682556 -137.401749 -19.471397 +v -129.806549 155.777100 -21.191994 +v -129.806549 155.777100 -21.191994 +v -128.826004 50.202030 -21.733658 +v -128.826004 50.202030 -21.733658 +v -136.962387 -121.453659 -21.113983 +v -136.962387 -121.453659 -21.113983 +v -7.331655 -135.019058 -21.576698 +v -174.139114 -121.897011 -19.931396 +v 75.379494 137.977936 -13.327591 +v 75.379494 137.977936 -13.327591 +v -145.074280 190.832138 -29.360420 +v -147.513138 155.625198 -6.753746 +v 171.621078 156.557327 -9.224022 +v 171.621078 156.557327 -9.224022 +v 163.429047 149.079147 -11.423531 +v 163.429047 149.079147 -11.423531 +v -134.745560 154.937546 -6.632454 +v -134.745560 154.937546 -6.632454 +v -134.129669 -111.515366 -6.641815 +v 150.491211 210.878998 -29.358879 +v 155.802109 209.372803 -29.311287 +v -11.687520 44.691334 -6.682350 +v -11.687520 44.691334 -6.682350 +v 155.629410 190.832031 -29.360420 +v 150.264008 189.456589 -29.359337 +v -130.502518 160.515274 -6.784340 +v -173.550125 -98.818779 -20.690895 +v 155.235397 147.773865 -23.018501 +v 155.235397 147.773865 -23.018501 +v -143.917770 -119.000458 -20.827805 +v 103.646851 209.967850 -6.686440 +v 103.646851 209.967850 -6.686440 +v -137.052704 -141.478470 -6.703285 +v -175.324677 136.648224 -6.736641 +v 137.137177 -138.594040 -6.522949 +v 67.183220 -38.290020 -20.315948 +v 167.085098 -98.557785 -8.701279 +v 4.300131 141.090210 -13.459641 +v 0.021214 142.836945 -13.471100 +v 0.021214 142.836945 -13.471100 +v -5.173001 200.167862 -25.499138 +v -3.555439 196.209503 -25.497871 +v -3.555439 196.209503 -25.497871 +v 5.292083 53.270729 -6.701561 +v -136.216614 169.230789 -6.677757 +v 169.022903 -133.479752 -25.382072 +v 169.022903 -133.479752 -25.382072 +v 172.652969 -136.973709 -25.421776 +v 172.652969 -136.973709 -25.421776 +v 136.616760 210.243408 -5.066475 +v 136.616760 210.243408 -5.066475 +v 174.004532 -137.452805 -15.967361 +v -12.025169 43.267239 -20.982658 +v -12.025169 43.267239 -20.982658 +v -108.230881 208.890884 -19.911133 +v -80.776810 143.346191 -20.360863 +v -80.776810 143.346191 -20.360863 +v -79.733627 143.875488 -12.713425 +v -79.733627 143.875488 -12.713425 +v -156.870163 188.838776 -24.602272 +v -156.870163 188.838776 -24.602272 +v -160.050095 153.363174 -23.320900 +v -136.661850 -137.406418 -19.213875 +v -150.205383 210.895187 -29.389015 +v -144.901566 209.372910 -29.311287 +v -150.453125 189.440628 -29.389000 +v 107.161362 176.848862 -20.678329 +v 107.161362 176.848862 -20.678329 +v -161.543854 193.775314 4.310905 +v -105.681175 197.910370 -6.660545 +v -107.936119 186.243805 -6.608582 +v -107.936119 186.243805 -6.608582 +v -157.159988 -98.802414 -8.941696 +v -131.079498 47.837345 -6.735466 +v -131.079498 47.837345 -6.735466 +v -132.446106 160.954086 -6.599930 +v -132.446106 160.954086 -6.599930 +v 146.805069 149.685623 -22.488113 +v 146.805069 149.685623 -22.488113 +v 151.730820 150.979553 -22.989319 +v -64.050415 133.084198 -21.645638 +v 3.890235 132.941757 -13.477333 +v 3.890235 132.941757 -13.477333 +v 139.662033 200.281082 -29.360527 +v 141.037369 194.915558 -29.359886 +v -5.307908 -133.450836 -6.655022 +v -156.261658 185.345474 -20.116676 +v -155.453445 187.396957 0.842529 +v 169.004333 -133.069305 -18.181686 +v 169.004333 -133.069305 -18.181686 +v 172.356201 -136.714005 -18.182083 +v 172.356201 -136.714005 -18.182083 +v -145.291382 144.977448 -22.990540 +v -145.291382 144.977448 -22.990540 +v -104.704979 182.956482 -20.904892 +v -104.704979 182.956482 -20.904892 +v 139.575836 -116.926231 -8.566360 +v 139.575836 -116.926231 -8.566360 +v 139.575836 -116.926231 -8.566360 +v -175.035919 -126.004654 -8.462013 +v -175.035919 -126.004654 -8.462013 +v -80.165985 142.209076 -13.718025 +v -80.165985 142.209076 -13.718025 +v -159.548325 205.622681 -29.359138 +v -161.041656 200.281158 -29.360527 +v 108.129768 209.006363 -19.853180 +v 2.385324 214.590286 -25.293251 +v -4.885955 201.752090 -22.191231 +v 5.313136 39.159691 -6.677528 +v 1.246693 37.451061 -6.660019 +v 109.781166 149.360596 -25.201164 +v 136.247269 169.282440 -6.654945 +v 163.127243 -96.249886 -8.823257 +v 168.179276 -130.049393 -8.431602 +v 168.179276 -130.049393 -8.431602 +v 168.340515 -130.679138 -15.974075 +v 168.340515 -130.679138 -15.974075 +v 164.686920 -136.183319 -20.357185 +v 164.686920 -136.183319 -20.357185 +v 179.291824 -132.727066 -25.463295 +v 177.457031 -136.123123 -25.492073 +v 177.457031 -136.123123 -25.492073 +v 1.927811 -132.604141 -7.407585 +v 1.927811 -132.604141 -7.407585 +v 160.602646 191.217224 2.667336 +v -160.717468 156.118546 -13.510216 +v 169.828064 -124.008560 -8.666565 +v -160.758804 207.575623 -29.288231 +v 141.155350 205.622589 -29.359138 +v -35.485786 213.626465 -5.199699 +v -144.746368 213.295197 -5.082672 +v -4.254326 133.350403 -13.475052 +v -164.687256 -130.434006 -8.604431 +v -164.687256 -130.434006 -8.604431 +v -135.470978 159.719925 -6.660057 +v -135.470978 159.719925 -6.660057 +v -137.295456 157.482819 -6.739059 +v 169.934967 -136.704849 -8.502090 +v 169.934967 -136.704849 -8.502090 +v 169.934967 -136.704849 -8.502090 +v -159.683090 194.913620 -29.389397 +v 134.188431 -111.515060 -6.648651 +v 161.351288 156.917053 -17.231216 +v -3.803720 196.709229 -22.190231 +v -3.803720 196.709229 -22.190231 +v -137.294449 200.167908 -25.499138 +v -139.663101 208.108398 -25.147072 +v -139.040848 193.650528 -25.499138 +v 1.494420 195.675140 -25.498375 +v 1.494420 195.675140 -25.498375 +v 165.527710 -127.538223 -8.667831 +v 165.527710 -127.538223 -8.667831 +v -178.710876 149.349289 -9.305649 +v -178.710876 149.349289 -9.305649 +v 141.741028 -124.591103 -21.306541 +v 139.163879 -115.238411 -20.349152 +v 169.467285 161.996140 -11.466301 +v 169.467285 161.996140 -11.466301 +v 128.601074 148.288361 -21.918381 +v 178.184799 151.912323 -16.857933 +v 160.762909 153.695114 -23.013489 +v 144.903076 190.939774 -29.389107 +v -138.173813 207.603790 -5.462387 +v -138.173813 207.603790 -5.462387 +v 161.566040 193.747559 4.310905 +v 65.691246 134.121918 -20.301651 +v 65.691246 134.121918 -20.301651 +v -107.018066 209.625519 -6.617348 +v -107.018066 209.625519 -6.617348 +v -179.066513 -129.941437 -25.480324 +v -179.066513 -129.941437 -25.480324 +v -179.066513 -129.941437 -25.480324 +v -134.846161 -135.101700 -21.558380 +v 145.331955 147.107742 -23.011848 +v 145.331955 147.107742 -23.011848 +v -153.463043 150.215393 -21.841667 +v -153.463043 150.215393 -21.841667 +v -155.756943 190.962906 -29.311272 +v -150.195114 213.017365 4.310913 +v -156.642761 211.331131 4.310913 +v -3.935779 203.745865 -25.497627 +v -170.921066 -132.865677 -15.976883 +v -170.921066 -132.865677 -15.976883 +v 169.911270 -135.885010 -15.976952 +v 169.911270 -135.885010 -15.976952 +v 1.214519 6.506308 -21.881134 +v 1.214519 6.506308 -21.881134 +v 107.270195 209.667908 -6.941322 +v 107.270195 209.667908 -6.941322 +v -178.533478 148.526672 -13.375534 +v -178.533478 148.526672 -13.375534 +v 178.579865 138.733170 -13.344040 +v 178.579865 138.733170 -13.344040 +v 130.025467 155.855026 -20.894005 +v -171.558731 156.564560 -9.246140 +v -171.558731 156.564560 -9.246140 +v 137.063980 -130.138809 -8.700378 +v 70.678337 138.927704 -13.346230 +v 5.638952 137.221909 -13.471031 +v -138.558121 168.308853 -6.655876 +v 163.776978 200.461960 4.310905 +v -147.153503 -106.010246 -8.635620 +v -130.124680 48.949783 -20.253258 +v -67.168602 -38.445755 -20.201584 +v -142.498856 -119.495834 -8.675682 +v -142.498856 -119.495834 -8.675682 +v 9.024637 139.063339 -13.744987 +v 9.024637 139.063339 -13.744987 +v -156.787643 189.086227 4.310905 +v 172.652206 -134.784821 -18.210098 +v 172.652206 -134.784821 -18.210098 +v 172.652206 -134.784821 -18.210098 +v 170.987244 -126.813370 -8.459229 +v -167.437225 160.932755 -6.630463 +v -167.437225 160.932755 -6.630463 +v 117.191254 164.671539 -20.128876 +v 173.929428 -126.997780 -18.181984 +v -176.397446 -127.528816 -25.437752 +v 4.308707 145.063171 -13.648087 +v -141.025421 -137.343216 -19.105476 +v -161.033142 200.058334 4.310905 +v -143.883957 189.073608 4.310905 +v 139.670532 200.058228 4.310905 +v 141.159348 194.720947 4.310905 +v 0.022429 -138.401993 -6.422340 +v -170.304016 -136.932373 -8.485153 +v 145.122955 209.524612 -29.390465 +v -5.463331 135.449600 -15.976883 +v 159.954422 152.570602 -11.528969 +v 159.954422 152.570602 -11.528969 +v -178.537292 138.697495 -13.305962 +v -178.537292 138.697495 -13.305962 +v -160.964249 169.538864 -17.123825 +v 137.016083 -141.658264 -6.861809 +v 11.658736 47.602062 -6.588333 +v 11.658736 47.602062 -6.588333 +v 177.145203 -140.112915 -6.944420 +v -159.879456 166.946869 -13.883270 +v -162.878113 201.869553 -29.380501 +v 0.022585 205.363449 -25.499138 +v 0.022585 205.363449 -25.499138 +v 155.507401 187.395462 0.903572 +v -169.505035 -129.456436 -25.404305 +v 152.035202 -102.083313 -8.614868 +v 0.994006 140.230148 -15.976128 +v 0.994006 140.230148 -15.976128 +v 144.732971 -109.288467 -8.628487 +v 173.905853 136.899261 -19.236992 +v -130.838165 142.175537 -16.979195 +v -130.838165 142.175537 -16.979195 +v -113.083496 143.951523 -13.764191 +v -113.083496 143.951523 -13.764191 +v -159.544327 194.721039 4.310905 +v 150.300507 213.057449 4.310913 +v 37.307308 210.394165 -5.301765 +v -148.036026 152.773178 -6.691193 +v 145.333298 144.987106 -21.979103 +v 145.333298 144.987106 -21.979103 +v 145.333298 144.987106 -21.979103 +v -72.563751 -43.139473 -7.403000 +v -161.061340 154.581985 -6.798996 +v -161.061340 154.581985 -6.798996 +v -167.439651 160.143524 -11.558136 +v -167.439651 160.143524 -11.558136 +v 5.591251 129.124161 -20.236107 +v 182.089767 -135.727020 -7.042419 +v 178.233490 138.459885 -17.217819 +v -162.326065 195.539566 -29.231178 +v -8.789863 46.197147 -6.604973 +v -3.099975 136.212662 -18.181259 +v -3.099975 136.212662 -18.181259 +v -145.426895 -104.498726 -21.713188 +v -147.054581 -110.937515 -8.705833 +v -155.584244 209.503677 -29.360420 +v -155.586288 190.843277 4.310905 +v 128.742432 -105.259445 -6.628502 +v 128.742432 -105.259445 -6.628502 +v 145.117401 190.843185 4.310905 +v -160.548996 191.197067 2.651169 +v -148.933105 151.174805 -21.069923 +v -148.933105 151.174805 -21.069923 +v -148.933105 151.174805 -21.069923 +v 140.799698 -134.493454 -21.711487 +v -156.475113 188.882812 -29.348824 +v -7.876510 50.383583 -6.587997 +v 159.291321 143.931381 -25.546867 +v 0.681795 213.189774 -5.169701 +v 175.132889 -126.109024 -8.457695 +v 175.132889 -126.109024 -8.457695 +v -140.750336 -134.616776 -21.695602 +v -1.774940 -132.751434 -7.411209 +v -1.774940 -132.751434 -7.411209 +v 7.349079 -135.027695 -21.531502 +v -145.333633 211.887909 -29.336601 +v 141.860550 186.938675 -19.422592 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vn 0.0010 0.0002 1.0000 +vn -0.0006 0.0053 1.0000 +vn -0.0076 0.0045 1.0000 +vn 0.0007 0.0007 1.0000 +vn 0.0245 -0.0016 -0.9997 +vn -0.0025 0.0289 -0.9996 +vn -0.1028 0.0846 -0.9911 +vn 0.0013 0.0174 -0.9998 +vn -0.0366 0.0682 -0.9970 +vn 0.0001 0.0098 -1.0000 +vn -0.0027 0.0096 -1.0000 +vn 0.1286 0.2834 -0.9503 +vn -0.0425 0.1824 -0.9823 +vn 0.0140 0.6144 -0.7889 +vn 0.0025 -0.0022 -1.0000 +vn -0.0022 -0.0007 -1.0000 +vn 0.0373 0.4849 -0.8737 +vn 0.0011 0.0174 -0.9998 +vn 0.0001 0.0106 -0.9999 +vn -0.0090 0.3954 -0.9185 +vn -0.0224 0.5478 -0.8363 +vn -0.1389 0.4981 -0.8559 +vn -0.0054 0.0004 -1.0000 +vn 0.0000 0.0000 -1.0000 +vn -0.0056 -0.0062 -1.0000 +vn 0.0011 0.0002 -1.0000 +vn -0.0007 -0.0008 -1.0000 +vn -0.0005 -0.0049 -1.0000 +vn 0.0024 -0.0009 -1.0000 +vn -0.0041 -0.0004 -1.0000 +vn -0.0008 -0.0006 -1.0000 +vn -0.0059 -0.0007 -1.0000 +vn 0.0034 -0.0105 -0.9999 +vn -0.0031 -0.0009 -1.0000 +vn 0.0051 -0.0132 -0.9999 +vn -0.3440 0.1095 -0.9326 +vn 0.1459 0.0065 -0.9893 +vn -0.0285 -0.0067 -0.9996 +vn 0.2327 -0.0229 -0.9723 +vn 0.0054 -0.0064 -1.0000 +vn -0.0008 0.0020 -1.0000 +vn -0.0066 -0.0039 -1.0000 +vn 0.0121 -0.0234 -0.9997 +vn 0.1059 -0.2990 -0.9484 +vn -0.0037 -0.0211 -0.9998 +vn 0.0087 0.0021 -1.0000 +vn -0.0130 0.0100 -0.9999 +vn -0.0044 0.0289 -0.9996 +vn -0.0112 0.0425 -0.9990 +vn -0.0047 0.0432 -0.9991 +vn 0.0280 0.0477 -0.9985 +vn -0.0139 0.0120 -0.9998 +vn -0.0303 -0.1086 -0.9936 +vn 0.0082 -0.0066 -0.9999 +vn -0.0003 -0.0091 -1.0000 +vn 0.0114 -0.0059 -0.9999 +vn -0.0195 -0.0071 -0.9998 +vn 0.0162 0.0030 -0.9999 +vn 0.0010 0.0006 -1.0000 +vn -0.0032 0.0257 -0.9997 +vn -0.1296 0.1707 -0.9768 +vn -0.1240 0.0171 -0.9921 +vn 0.0070 -0.0008 -1.0000 +vn 0.0068 -0.0029 -1.0000 +vn 0.1748 0.1754 -0.9688 +vn 0.0087 0.0044 -1.0000 +vn 0.1648 0.0052 -0.9863 +vn -0.0405 0.0233 -0.9989 +vn -0.0079 -0.0103 -0.9999 +vn 0.0010 0.0066 -1.0000 +vn 0.0841 -0.0318 -0.9959 +vn 0.0043 -0.0030 -1.0000 +vn -0.3977 -0.0109 -0.9174 +vn -0.0058 -0.0015 -1.0000 +vn -0.0105 0.0025 -0.9999 +vn 0.0123 0.0192 -0.9997 +vn 0.3577 -0.1327 -0.9243 +vn -0.0260 0.0097 -0.9996 +vn -0.0108 0.0163 -0.9998 +vn 0.0123 -0.0014 -0.9999 +vn -0.0161 0.0055 -0.9999 +vn 0.0176 -0.0816 -0.9965 +vn -0.1432 -0.4972 -0.8557 +vn 0.0037 -0.0859 -0.9963 +vn 0.3972 -0.8334 0.3842 +vn -0.2621 -0.9312 -0.2534 +vn -0.8919 -0.3939 0.2222 +vn -0.8631 -0.4001 0.3082 +vn -0.9694 -0.2375 0.0615 +vn 0.8338 -0.3883 -0.3923 +vn -0.9775 -0.2098 -0.0223 +vn 0.8489 0.3770 0.3705 +vn -0.6642 0.7348 -0.1371 +vn -0.6373 0.7705 -0.0097 +vn -0.3926 0.8944 0.2142 +vn -0.3277 0.8774 0.3504 +vn 0.4354 0.8441 -0.3130 +vn 0.3970 -0.8334 0.3844 +vn -0.2619 -0.9312 -0.2536 +vn -0.8918 -0.3940 0.2222 +vn -0.8630 -0.4002 0.3083 +vn 0.8338 -0.3883 -0.3924 +vn 0.8491 0.3767 0.3703 +vn -0.6642 0.7349 -0.1371 +vn -0.6372 0.7706 -0.0097 +vn -0.3930 0.8943 0.2140 +vn -0.3281 0.8774 0.3501 +vn 0.4355 0.8442 -0.3126 +vn 0.2575 -0.9648 -0.0538 +vn 0.2647 -0.9633 -0.0451 +vn 0.2654 -0.9633 -0.0412 +vn 0.2570 -0.9647 -0.0576 +vn -0.9078 -0.3770 0.1837 +vn -0.7629 -0.6434 -0.0630 +vn -0.8888 -0.3196 0.3284 +vn -0.7283 -0.6583 -0.1904 +vn 0.9822 0.0531 -0.1801 +vn 0.9722 -0.2086 0.1061 +vn 0.9843 -0.1764 -0.0019 +vn 0.9526 0.0867 -0.2917 +vn -0.8441 0.4071 -0.3491 +vn 0.3528 0.9227 -0.1552 +vn 0.6642 0.7349 0.1369 +vn 0.5707 0.8209 -0.0219 +vn -0.4189 0.8693 0.2624 +vn 0.1960 0.9299 -0.3112 +vn 0.2921 -0.9389 0.1820 +vn -0.3234 -0.9423 0.0870 +vn 0.0786 -0.9955 0.0520 +vn -0.4537 -0.8903 0.0389 +vn -0.7155 -0.6938 0.0823 +vn 0.5184 -0.8492 0.1005 +vn 0.6752 -0.7372 -0.0246 +vn -0.7910 -0.6117 0.0095 +vn 0.9640 -0.2558 0.0723 +vn 0.9777 -0.1970 0.0732 +vn 0.9499 0.0172 0.3122 +vn 0.9557 0.0790 0.2836 +vn -0.9583 0.2848 -0.0225 +vn -0.9877 0.1404 0.0686 +vn -0.8540 0.5194 0.0301 +vn -0.5647 0.5716 0.5952 +vn -0.3120 0.9473 0.0732 +vn 0.7532 0.6566 0.0388 +vn 0.7530 0.6568 0.0387 +vn 0.7525 0.6574 0.0394 +vn 0.7522 0.6577 0.0396 +vn 0.1090 0.9931 0.0423 +vn -0.1199 0.9528 0.2788 +vn -0.3188 0.9254 0.2048 +vn -0.0109 -0.9910 0.1332 +vn 0.2302 -0.9696 0.0827 +vn -0.7236 -0.6836 0.0950 +vn 0.5486 -0.8354 0.0338 +vn -0.4642 -0.8762 0.1295 +vn 0.7486 -0.6576 0.0847 +vn 0.7387 -0.6702 0.0718 +vn -0.8252 -0.5615 0.0616 +vn -0.9929 0.0831 0.0847 +vn -0.9923 -0.0938 0.0810 +vn -0.9423 0.3252 0.0792 +vn 0.9635 0.2676 0.0096 +vn 0.9611 0.2757 0.0178 +vn 0.9669 0.2551 -0.0006 +vn 0.9570 0.2887 0.0286 +vn -0.9353 0.3482 0.0634 +vn -0.2831 0.9587 0.0257 +vn -0.3816 0.9195 0.0943 +vn 0.0146 0.9971 0.0744 +vn 0.3557 0.9292 0.1008 +vn 0.3199 0.9451 0.0663 +vn 0.0054 0.9983 0.0583 +vn -0.0076 -0.1747 0.9846 +vn -0.1817 -0.4495 0.8746 +vn 0.0211 -0.9134 0.4066 +vn 0.2441 -0.4474 0.8604 +vn -0.2480 -0.1909 0.9498 +vn -0.1161 -0.5696 0.8137 +vn -0.1500 -0.8742 0.4619 +vn -0.1545 -0.6065 0.7800 +vn -0.2215 -0.9603 0.1694 +vn 0.0207 -0.9984 0.0533 +vn 0.1966 -0.8472 0.4935 +vn 0.0089 -0.9959 0.0903 +vn 0.2403 -0.9103 0.3370 +vn -0.0765 -0.9867 0.1433 +vn -0.2219 -0.8743 0.4316 +vn -0.2403 -0.9119 0.3326 +vn -0.0717 -0.9894 0.1263 +vn -0.1118 0.9468 0.3018 +vn 0.0524 0.9505 0.3062 +vn -0.0371 0.9939 0.1043 +vn -0.0396 0.9928 0.1129 +vn -0.0056 -0.2740 0.9617 +vn 0.8979 -0.3764 0.2282 +vn -0.0486 -0.2736 0.9606 +vn -0.3167 -0.4101 0.8553 +vn -0.0110 0.2520 0.9677 +vn -0.6701 0.3571 0.6507 +vn -0.0560 -0.0078 0.9984 +vn -0.0157 -0.0169 0.9997 +vn 0.1510 -0.4792 0.8646 +vn 0.0030 0.0016 1.0000 +vn 0.0502 -0.1575 0.9862 +vn 0.0019 0.0021 1.0000 +vn -0.0011 0.0017 1.0000 +vn 0.2516 0.0920 0.9634 +vn 0.7326 -0.6734 0.0993 +vn 0.7481 -0.6550 0.1062 +vn 0.6671 -0.7246 0.1729 +vn 0.6553 -0.7379 0.1617 +vn -0.6594 -0.7319 0.1716 +vn -0.7235 -0.6813 0.1110 +vn -0.7120 -0.6941 0.1059 +vn -0.6481 -0.7453 0.1567 +vn -0.1256 -0.3088 0.9428 +vn -0.0642 0.0645 0.9959 +vn -0.0654 0.0634 0.9958 +vn 0.1376 -0.0173 0.9903 +vn -0.6934 0.7155 0.0853 +vn -0.3454 0.9375 0.0433 +vn -0.7023 0.7040 0.1061 +vn -0.6695 0.7355 0.1040 +vn -0.6942 0.7129 0.0990 +vn -0.6988 0.7070 0.1085 +vn -0.6589 -0.7425 0.1209 +vn -0.6766 -0.7291 0.1031 +vn -0.6722 -0.7331 0.1031 +vn -0.6544 -0.7466 0.1199 +vn -0.3648 -0.1008 0.9256 +vn -0.2902 -0.0256 0.9566 +vn -0.2491 -0.1470 0.9572 +vn -0.9887 0.1378 -0.0584 +vn -0.9785 0.0663 -0.1954 +vn -0.8983 0.3331 -0.2865 +vn -0.9984 0.0079 -0.0567 +vn -0.9464 -0.2776 -0.1650 +vn -0.7115 -0.7021 -0.0306 +vn -0.6196 -0.7834 -0.0481 +vn -0.4153 -0.7853 -0.4593 +vn -0.8892 0.4570 -0.0209 +vn -0.0474 -0.8480 -0.5278 +vn -0.0153 -0.9992 -0.0367 +vn 0.0352 -0.0756 0.9965 +vn 0.0240 -0.0221 0.9995 +vn 0.0038 -0.0038 1.0000 +vn 0.0521 -0.0610 0.9968 +vn 0.0073 0.0222 0.9997 +vn 0.0072 0.0594 0.9982 +vn -0.1574 -0.0271 0.9872 +vn -0.0788 -0.1159 0.9901 +vn 0.0003 0.9799 0.1997 +vn -0.8695 0.4895 0.0655 +vn -0.9109 0.4064 -0.0712 +vn -0.6855 0.7263 -0.0509 +vn -0.6851 0.7228 -0.0905 +vn -0.9741 0.1963 -0.1118 +vn -0.7094 0.6953 -0.1152 +vn -0.8972 0.4375 -0.0600 +vn -0.9615 0.0114 -0.2745 +vn -0.9980 0.0439 -0.0451 +vn -0.9857 0.1679 -0.0149 +vn -0.9963 0.0502 -0.0693 +vn -0.9991 0.0022 0.0428 +vn 0.3524 -0.1029 0.9302 +vn 0.0745 -0.0184 0.9971 +vn -0.0135 -0.9995 -0.0297 +vn -0.0769 -0.7633 -0.6414 +vn -0.0312 -0.9989 -0.0359 +vn -0.0087 -0.9989 -0.0467 +vn 0.1458 0.0606 0.9875 +vn 0.1210 0.0978 0.9878 +vn -0.0532 -0.0849 0.9950 +vn 0.0540 -0.2424 0.9687 +vn 0.6898 0.7149 0.1143 +vn 0.6954 0.6983 0.1696 +vn 0.6852 0.6971 0.2113 +vn 0.7225 0.6791 0.1297 +vn 0.6312 0.7141 0.3029 +vn 0.6685 -0.7370 0.0991 +vn 0.6746 -0.7315 0.0988 +vn 0.6508 -0.7492 0.1236 +vn 0.6445 -0.7548 0.1223 +vn 0.2524 -0.1108 0.9613 +vn 0.2256 -0.0552 0.9727 +vn 0.8997 0.3719 -0.2285 +vn 0.9751 0.1680 -0.1449 +vn 0.8866 0.4604 -0.0446 +vn 0.9751 0.2196 -0.0318 +vn 0.9265 -0.2798 -0.2515 +vn 0.9552 -0.2925 -0.0449 +vn 0.2880 -0.8241 -0.4878 +vn 0.5929 -0.8045 -0.0362 +vn 0.0243 0.0065 0.9997 +vn -0.0026 -0.0117 0.9999 +vn -0.0033 -0.0149 0.9999 +vn 0.0246 0.0142 0.9996 +vn 0.0419 0.0349 0.9985 +vn 0.0597 0.0303 0.9978 +vn 0.7358 0.6691 -0.1046 +vn 0.6943 0.7133 -0.0956 +vn 0.7069 0.7014 -0.0918 +vn 0.9610 0.2468 -0.1249 +vn 0.6870 0.7245 -0.0568 +vn 0.7092 0.6993 -0.0895 +vn 0.9466 0.3176 -0.0552 +vn 0.7273 0.6862 0.0070 +vn 0.9663 0.0072 -0.2572 +vn 0.9980 0.0407 -0.0483 +vn 0.9969 0.0286 -0.0731 +vn 0.9986 0.0535 -0.0044 +vn 0.9994 0.0024 0.0350 +vn -0.0073 0.9990 -0.0452 +vn -0.0511 0.8710 -0.4885 +vn 0.1579 0.9638 -0.2150 +vn -0.0778 0.9893 -0.1238 +vn 0.0711 0.9080 -0.4130 +vn -0.0558 0.9970 -0.0538 +vn 0.2979 0.1552 0.9419 +vn 0.7004 0.3919 0.5966 +vn 0.5540 0.4087 0.7253 +vn 0.9671 -0.0567 0.2480 +vn 0.7917 -0.5985 0.1227 +vn 0.8957 -0.4424 0.0438 +vn -0.0655 0.4158 0.9071 +vn -0.1877 0.3668 0.9111 +vn -0.1590 0.0455 0.9862 +vn -0.0188 0.0104 0.9998 +vn -0.3485 0.9122 0.2153 +vn -0.2241 0.9660 0.1291 +vn -0.4062 0.8874 0.2181 +vn -0.4365 0.4510 -0.7785 +vn -0.2433 0.1201 -0.9625 +vn -0.7342 0.5713 -0.3667 +vn -0.7666 0.5569 -0.3196 +vn -0.6471 0.6621 -0.3779 +vn -0.0334 -0.1513 0.9879 +vn 0.2835 -0.4703 0.8358 +vn 0.3652 -0.3922 0.8443 +vn 0.2963 -0.0228 0.9548 +vn 0.3382 -0.6521 0.6785 +vn 0.7079 0.6940 0.1311 +vn 0.7045 0.6975 0.1315 +vn 0.7168 0.6822 0.1445 +vn 0.7201 0.6788 0.1437 +vn 0.3442 -0.0549 0.9373 +vn 0.0915 -0.0612 0.9939 +vn 0.3929 -0.1083 0.9132 +vn 0.0402 -0.0065 0.9992 +vn -0.0312 0.0075 -0.9995 +vn -0.0309 0.0154 -0.9994 +vn -0.0283 0.0147 -0.9995 +vn -0.0286 0.0067 -0.9996 +vn -0.0074 0.0076 0.9999 +vn 0.0045 0.0071 1.0000 +vn -0.1761 0.7724 -0.6102 +vn -0.1997 0.6717 -0.7134 +vn -0.0910 0.1554 -0.9837 +vn 0.0033 0.0723 -0.9974 +vn -0.0626 0.0389 -0.9973 +vn 0.0141 -0.0003 0.9999 +vn -0.0152 0.0197 0.9997 +vn 0.0120 -0.0089 0.9999 +vn 0.0355 -0.2110 0.9768 +vn 0.0133 -0.0556 0.9984 +vn -0.0103 0.0145 0.9998 +vn 0.7770 0.5463 0.3128 +vn 0.8678 0.4263 0.2555 +vn 0.8069 0.5863 0.0714 +vn 0.0149 -0.0052 0.9999 +vn -0.0085 0.0605 0.9981 +vn 0.3365 -0.6001 0.7257 +vn 0.0282 -0.1276 0.9914 +vn 0.1093 -0.7015 0.7043 +vn 0.4366 -0.1905 0.8793 +vn 0.0634 0.1078 0.9921 +vn 0.2664 -0.1134 0.9572 +vn -0.7854 -0.5549 0.2743 +vn -0.8659 -0.4507 0.2171 +vn -0.9507 0.2976 0.0876 +vn 0.5769 -0.7947 0.1887 +vn 0.0110 0.0044 0.9999 +vn 0.0791 0.1517 0.9853 +vn 0.0059 0.0284 0.9996 +vn -0.7803 0.6230 0.0545 +vn -0.8221 0.4556 0.3415 +vn -0.4361 0.6484 0.6240 +vn -0.6875 0.7220 0.0783 +vn 0.1409 0.9872 0.0748 +vn -0.4434 0.7746 0.4509 +vn 0.2264 0.9711 0.0755 +vn -0.9921 -0.1135 0.0540 +vn -0.7395 0.5530 0.3837 +vn -0.9916 0.0728 0.1070 +vn 0.8409 0.5329 -0.0948 +vn 0.9720 0.1809 0.1503 +vn 0.9029 0.4105 0.1276 +vn -0.7992 0.5779 0.1653 +vn -0.8068 0.3977 0.4369 +vn -0.4174 0.8726 0.2537 +vn -0.4042 0.9052 0.1316 +vn 0.8302 -0.5065 0.2330 +vn 0.6578 -0.7509 0.0585 +vn 0.7247 -0.6826 -0.0941 +vn 0.8593 -0.4937 0.1338 +vn 0.4574 -0.8866 0.0691 +vn -0.1200 -0.7344 0.6680 +vn -0.0067 -0.9753 0.2209 +vn 0.1473 -0.8646 0.4804 +vn -0.0813 0.7501 0.6564 +vn -0.0058 0.0441 0.9990 +vn 0.0717 0.5710 0.8178 +vn -0.0640 0.9028 0.4252 +vn 0.8636 -0.0092 0.5041 +vn 0.2080 0.0042 0.9781 +vn 0.5705 -0.4994 0.6519 +vn 0.3475 0.0072 0.9377 +vn 0.1622 0.4310 0.8876 +vn 0.0337 0.3101 0.9501 +vn -0.0503 -0.1276 0.9905 +vn 0.8837 0.0444 0.4658 +vn 0.9474 0.0843 0.3088 +vn 0.4619 0.8030 0.3768 +vn 0.3895 0.4646 0.7953 +vn 0.1118 -0.8933 0.4353 +vn 0.0153 0.5053 0.8628 +vn 0.1399 0.1552 0.9779 +vn -0.1014 0.6216 0.7767 +vn 0.0376 0.8338 0.5508 +vn 0.7650 -0.6372 0.0934 +vn 0.0868 -0.8648 -0.4946 +vn 0.0378 -0.6161 -0.7867 +vn -0.2632 -0.8324 -0.4878 +vn -0.8266 0.3314 -0.4549 +vn -0.8595 -0.2085 -0.4667 +vn 0.8632 -0.0831 0.4979 +vn 0.7337 0.0896 0.6736 +vn 0.8868 0.1498 0.4373 +vn 0.5283 -0.0015 0.8491 +vn 0.2174 0.0086 0.9761 +vn 0.0135 0.0321 0.9994 +vn 0.7591 0.6425 0.1048 +vn 0.7278 0.5684 0.3838 +vn 0.7474 0.6183 0.2431 +vn -0.2718 -0.4586 0.8461 +vn 0.5734 -0.5103 0.6409 +vn -0.4329 -0.4283 0.7932 +vn -0.0434 -0.9263 0.3742 +vn 0.3913 0.7031 0.5937 +vn 0.1490 0.6129 0.7759 +vn 0.4024 0.4807 0.7791 +vn -0.8103 -0.2287 0.5395 +vn -0.4520 -0.5454 0.7059 +vn -0.4345 -0.8799 0.1923 +vn -0.5177 -0.5898 0.6198 +vn -0.5677 -0.4770 0.6710 +vn -0.7156 -0.3602 0.5985 +vn 0.0652 -0.3186 0.9456 +vn 0.0267 -0.2010 0.9792 +vn 0.0245 -0.1709 0.9850 +vn 0.0987 -0.9770 0.1892 +vn -0.1191 -0.4451 0.8875 +vn 0.1153 -0.9844 0.1331 +vn 0.1640 -0.9804 0.1092 +vn -0.2555 0.7269 0.6375 +vn -0.6928 0.0307 0.7205 +vn -0.7146 0.6123 0.3383 +vn 0.6220 0.5155 0.5893 +vn 0.6002 0.3914 0.6975 +vn 0.5344 0.5110 0.6733 +vn 0.1717 0.6035 0.7786 +vn 0.3137 0.4199 0.8516 +vn 0.4083 0.5414 0.7349 +vn 0.7932 0.3828 0.4736 +vn -0.7476 -0.5973 0.2902 +vn -0.6473 -0.5158 0.5612 +vn -0.6462 -0.5068 0.5706 +vn -0.7969 -0.5332 0.2841 +vn -0.4679 0.8666 0.1736 +vn -0.5783 0.4877 0.6540 +vn 0.0286 0.6142 0.7886 +vn 0.0099 0.9460 0.3241 +vn 0.2589 -0.3726 0.8911 +vn 0.2881 -0.5703 0.7693 +vn 0.7549 -0.4113 0.5109 +vn 0.8206 -0.5385 0.1913 +vn 0.5820 -0.6442 0.4962 +vn 0.5276 -0.8360 0.1508 +vn 0.9464 -0.0708 0.3150 +vn 0.8268 0.0057 0.5624 +vn 0.9953 -0.0445 0.0865 +vn -0.7759 0.6238 0.0940 +vn -0.7133 0.6034 0.3566 +vn -0.7723 0.6024 0.2015 +vn -0.0217 0.9939 0.1079 +vn 0.0044 0.7616 0.6481 +vn -0.0987 0.9052 0.4134 +vn 0.8930 -0.1162 0.4348 +vn 0.7510 0.0017 0.6603 +vn 0.9859 -0.1212 0.1153 +vn 0.0050 -0.0347 0.9994 +vn -0.4429 -0.2593 0.8583 +vn 0.4877 -0.4176 0.7667 +vn 0.9778 0.1332 0.1616 +vn 0.8289 -0.0770 0.5541 +vn 0.9854 0.1287 0.1110 +vn 0.9393 -0.1380 0.3142 +vn 0.6337 0.5681 0.5251 +vn 0.0931 -0.4676 0.8790 +vn 0.6525 -0.6476 0.3936 +vn 0.0240 -0.8078 0.5890 +vn 0.1770 -0.6155 0.7680 +vn -0.2660 -0.1961 0.9438 +vn -0.0039 -0.6147 0.7887 +vn 0.0321 -0.6226 0.7819 +vn 0.1713 0.1343 0.9760 +vn -0.0792 -0.1639 0.9833 +vn 0.1648 -0.6979 0.6970 +vn 0.0910 -0.9166 0.3892 +vn -0.8655 -0.4985 0.0490 +vn -0.9317 0.3629 0.0187 +vn -0.9202 0.3725 0.1203 +vn -0.7442 0.6503 0.1525 +vn 0.6395 0.7639 0.0864 +vn 0.6260 0.7737 0.0979 +vn 0.5248 0.8401 0.1372 +vn -0.8038 -0.5718 0.1641 +vn -0.8275 -0.5453 0.1337 +vn -0.6222 -0.7710 0.1354 +vn 0.8066 -0.5607 0.1871 +vn 0.7149 -0.6957 0.0702 +vn 0.8526 -0.5191 0.0601 +vn -0.4114 -0.3899 0.8238 +vn -0.4103 -0.2114 0.8871 +vn -0.1348 -0.1702 0.9761 +vn -0.9761 0.1805 0.1207 +vn 0.7152 0.6844 0.1417 +vn 0.4218 0.2117 0.8816 +vn 0.7016 0.5909 0.3983 +vn 0.9775 -0.1709 0.1240 +vn -0.3194 0.8202 -0.4747 +vn -0.2124 -0.0163 -0.9771 +vn -0.9056 -0.4156 0.0845 +vn -0.7666 -0.1187 -0.6311 +vn -0.9920 0.0583 -0.1123 +vn -0.8294 0.5024 -0.2443 +vn -0.6261 0.2463 -0.7398 +vn 0.0583 0.9923 0.1090 +vn -0.0963 0.9577 0.2712 +vn 0.0088 0.9980 0.0622 +vn -0.0252 0.1084 -0.9938 +vn 0.0227 0.0600 -0.9979 +vn 0.0010 0.0591 -0.9983 +vn -0.0045 0.1093 -0.9940 +vn -0.9683 0.1294 -0.2138 +vn -0.9525 0.1300 -0.2752 +vn -0.9950 0.0391 -0.0924 +vn -0.9994 0.0274 -0.0205 +vn -0.9940 0.0857 -0.0678 +vn 0.0161 -0.9696 -0.2443 +vn -0.0238 -0.9583 -0.2848 +vn -0.0076 -0.9592 -0.2825 +vn 0.0022 -0.9712 -0.2382 +vn 0.0205 -0.9868 0.1605 +vn 0.0468 -0.9956 0.0807 +vn -0.0019 -0.0197 0.9998 +vn 0.0023 -0.0233 0.9997 +vn 0.0030 -0.0238 0.9997 +vn -0.0120 -0.0253 0.9996 +vn -0.0276 -0.0065 0.9996 +vn -0.0167 0.0042 0.9999 +vn -0.0216 -0.0021 0.9998 +vn -0.0040 0.0084 1.0000 +vn 0.0052 0.0075 1.0000 +vn 0.0362 0.0145 0.9992 +vn 0.0167 -0.0120 0.9998 +vn -0.0028 0.0040 1.0000 +vn 0.0293 0.0093 0.9995 +vn 0.0279 0.0598 0.9978 +vn 0.0165 0.0677 0.9976 +vn 0.0116 0.0619 0.9980 +vn 0.0355 0.0774 0.9964 +vn 0.0381 0.0006 0.9993 +vn -0.0021 0.0004 1.0000 +vn 0.0470 -0.0232 0.9986 +vn 0.0492 -0.0242 0.9985 +vn -0.9586 -0.2847 0.0045 +vn -0.9251 -0.3666 -0.0994 +vn -0.9572 -0.2846 0.0520 +vn -0.9090 -0.3863 -0.1565 +vn -0.2024 -0.1048 0.9737 +vn 0.3278 -0.0935 0.9401 +vn 0.0422 -0.1024 0.9938 +vn 0.0012 -0.4262 0.9046 +vn -0.0050 -0.4498 0.8931 +vn -0.0287 -0.4607 0.8871 +vn 0.0030 -0.9910 0.1335 +vn 0.0018 -0.9913 0.1313 +vn 0.0040 -0.9910 0.1336 +vn 0.0026 -0.9914 0.1312 +vn 0.0738 -0.0257 0.9969 +vn -0.0147 0.0187 0.9997 +vn 0.0280 -0.0313 0.9991 +vn 0.0246 0.0517 0.9984 +vn 0.0200 0.9977 0.0649 +vn 0.0035 0.9981 0.0618 +vn -0.0178 0.9947 0.1014 +vn -0.0035 0.9947 0.1032 +vn 0.0102 0.9882 0.1526 +vn -0.0108 0.9911 0.1328 +vn 0.0016 0.9882 0.1530 +vn -0.0011 0.9914 0.1312 +vn 0.0293 -0.9863 0.1623 +vn 0.0024 -0.9937 0.1120 +vn -0.0059 -0.0593 0.9982 +vn -0.0017 -0.0572 0.9984 +vn 0.0006 -0.0040 1.0000 +vn 0.0003 -0.0028 1.0000 +vn 0.7688 -0.6337 0.0859 +vn 0.7656 -0.6390 0.0748 +vn -0.7464 0.6614 0.0739 +vn -0.7188 0.6245 0.3055 +vn -0.7323 0.5970 0.3275 +vn 0.7477 -0.6547 0.1111 +vn 0.7637 -0.6412 0.0753 +vn 0.7554 -0.6386 0.1467 +vn -0.7517 0.6489 0.1179 +vn -0.7624 0.6405 0.0922 +vn 0.4533 0.7209 0.5242 +vn 0.3801 0.9206 0.0896 +vn -0.3672 -0.9283 0.0577 +vn -0.3690 -0.9267 0.0711 +vn -0.3898 -0.9153 0.1010 +vn -0.3894 -0.9140 0.1135 +vn 0.7752 0.6206 0.1178 +vn 0.7833 0.6144 0.0942 +vn 0.7819 0.6165 0.0926 +vn 0.7741 0.6253 0.0989 +vn -0.7178 0.5066 0.4775 +vn -0.7542 0.6486 0.1027 +vn -0.6162 0.5527 0.5611 +vn -0.5768 0.8118 0.0917 +vn 0.6803 -0.7282 0.0833 +vn 0.5480 -0.8300 0.1039 +vn 0.7763 -0.6273 0.0630 +vn 0.0728 -0.9921 0.1018 +vn 0.1454 -0.9844 0.0986 +vn -0.0569 -0.9929 0.1045 +vn -0.7906 -0.2637 0.5526 +vn -0.9280 -0.3635 0.0816 +vn -0.9080 -0.4161 0.0498 +vn -0.9383 -0.3373 0.0770 +vn 0.9372 0.3183 0.1425 +vn 0.9247 0.3688 0.0941 +vn 0.9272 0.3625 0.0938 +vn 0.9229 0.3786 0.0707 +vn 0.9052 0.4133 0.0985 +vn -0.9980 -0.0107 0.0619 +vn -0.9982 -0.0023 0.0607 +vn 0.9911 0.0259 0.1309 +vn 0.9968 -0.0015 0.0798 +vn -0.0088 0.9966 0.0819 +vn 0.0017 0.9949 0.1010 +vn 0.0020 -0.9974 0.0723 +vn 0.0131 -0.9972 0.0738 +vn -0.0126 -0.9950 0.0987 +vn -0.0013 -0.9951 0.0991 +vn -0.8953 0.4339 0.1007 +vn -0.8753 0.4663 0.1277 +vn -0.8920 0.4413 0.0973 +vn -0.8720 0.4739 0.1224 +vn -0.8958 -0.4415 0.0516 +vn -0.8835 -0.4635 0.0670 +vn -0.8850 -0.4600 0.0719 +vn -0.8975 -0.4376 0.0549 +vn 0.9842 -0.1563 0.0838 +vn 0.9967 -0.0013 0.0811 +vn 0.9666 -0.2424 0.0830 +vn 0.9607 -0.2600 0.0970 +vn -0.9888 -0.1065 0.1048 +vn -0.8578 0.0169 0.5138 +vn -0.7325 -0.1775 0.6573 +vn -0.9952 -0.0077 0.0976 +vn -0.9802 0.1897 0.0570 +vn 0.9963 -0.0038 0.0860 +vn 0.9947 0.0077 0.1026 +vn 0.9894 -0.0205 0.1437 +vn 0.9110 -0.3570 -0.2066 +vn 0.9845 -0.0513 0.1679 +vn 0.9852 -0.0604 0.1602 +vn 0.9522 0.0924 0.2911 +vn 0.9559 0.0583 0.2879 +vn 0.4055 -0.9141 -0.0003 +vn -0.1094 -0.9940 -0.0021 +vn 0.5890 -0.8081 0.0003 +vn 0.1076 -0.9942 0.0003 +vn -0.5886 -0.8084 -0.0011 +vn -0.4063 -0.9137 0.0009 +vn -0.9132 -0.4075 0.0009 +vn 0.8078 -0.5895 -0.0008 +vn 0.9143 -0.4051 0.0004 +vn -0.8083 -0.5888 0.0003 +vn -0.9942 0.1074 -0.0012 +vn 0.9942 -0.1075 -0.0016 +vn 0.9943 0.1063 0.0004 +vn -0.9943 -0.1070 0.0000 +vn -0.8073 0.5902 -0.0016 +vn 0.9144 0.4048 0.0000 +vn 0.8076 0.5898 0.0001 +vn -0.9143 0.4051 0.0004 +vn -0.4055 0.9141 -0.0003 +vn 0.5878 0.8090 -0.0005 +vn 0.4065 0.9136 0.0008 +vn -0.5890 0.8081 0.0002 +vn 0.1094 0.9940 -0.0021 +vn -0.1076 0.9942 0.0003 +vn -0.0034 0.0161 -0.9999 +vn 0.0125 0.0074 -0.9999 +vn -0.0218 0.0320 -0.9993 +vn -0.0189 -0.0011 -0.9998 +vn -0.0094 0.0171 -0.9998 +vn 0.0134 0.0097 -0.9999 +vn 0.0270 0.0175 -0.9995 +vn -0.0207 0.0083 -0.9998 +vn 0.0133 0.0105 -0.9999 +vn 0.0265 0.0057 -0.9996 +vn 0.0252 -0.0077 -0.9997 +vn -0.0320 -0.0204 -0.9993 +vn -0.0703 -0.0313 -0.9970 +vn 0.0187 -0.0160 -0.9997 +vn 0.0205 -0.0344 -0.9992 +vn 0.0282 -0.0221 -0.9994 +vn -0.0133 -0.0226 -0.9997 +vn 0.0142 0.0119 -0.9998 +vn 0.0019 -0.0272 -0.9996 +vn 0.0166 -0.0481 -0.9987 +vn 0.7095 -0.7004 0.0783 +vn 0.7142 -0.6959 0.0758 +vn 0.0124 -0.0338 0.9994 +vn -0.2042 0.0056 0.9789 +vn 0.3551 0.1083 0.9286 +vn -0.1775 0.1872 0.9661 +vn 0.0609 -0.0935 0.9938 +vn -0.2255 0.2800 0.9331 +vn -0.0507 0.2441 0.9684 +vn 0.9965 -0.0111 0.0831 +vn 0.9963 -0.0025 0.0861 +vn 0.9947 0.0120 0.1020 +vn 0.9942 0.0206 0.1053 +vn -0.9231 -0.3458 -0.1685 +vn -0.7763 -0.6245 0.0852 +vn -0.7766 -0.6177 0.1243 +vn -0.7865 -0.6103 0.0945 +vn -0.7850 -0.6124 0.0933 +vn -0.7685 -0.6330 0.0936 +vn -0.0585 -0.0409 0.9974 +vn 0.0029 -0.0087 1.0000 +vn -0.0635 -0.0370 0.9973 +vn 0.0008 -0.0057 1.0000 +vn 0.0092 -0.0105 0.9999 +vn 0.1789 0.9838 0.0061 +vn -0.1087 0.9925 -0.0551 +vn 0.0082 0.9999 0.0100 +vn 0.3368 0.9348 -0.1128 +vn -0.5609 0.8263 -0.0521 +vn 0.7794 0.6181 -0.1022 +vn 0.8836 0.4510 -0.1259 +vn -0.5003 0.8571 0.1229 +vn -0.8394 0.5410 -0.0525 +vn -0.9277 0.3729 -0.0168 +vn -0.9819 0.1752 -0.0726 +vn 0.9987 -0.0277 -0.0436 +vn 0.9821 -0.1498 -0.1145 +vn -0.9540 -0.2989 -0.0216 +vn -0.9352 -0.3443 -0.0827 +vn 0.8537 -0.5191 -0.0416 +vn 0.8153 -0.5588 -0.1515 +vn -0.9508 -0.3093 -0.0187 +vn -0.4312 -0.8876 -0.1619 +vn 0.5250 -0.8488 -0.0622 +vn 0.2286 -0.9582 -0.1721 +vn -0.1337 -0.9870 -0.0886 +vn -0.5669 -0.8237 0.0066 +vn 0.0957 0.9921 0.0809 +vn -0.2035 -0.9764 0.0718 +vn -0.5185 -0.8521 0.0714 +vn -0.7674 -0.6364 0.0781 +vn -0.0894 -0.9935 0.0699 +vn -0.8798 -0.4680 0.0836 +vn 0.2979 -0.9471 0.1192 +vn 0.2978 -0.9474 0.1175 +vn 0.3023 -0.9465 0.1131 +vn 0.3023 -0.9467 0.1114 +vn -0.3296 0.9407 0.0802 +vn -0.3203 0.9427 0.0932 +vn -0.3199 0.9432 0.0899 +vn -0.3289 0.9412 0.0768 +vn 0.3432 0.9371 0.0635 +vn 0.1598 0.9849 0.0673 +vn 0.2155 0.9733 0.0790 +vn 0.1195 0.9883 0.0944 +vn 0.4369 0.8951 0.0890 +vn 0.5783 0.8131 0.0665 +vn 0.6944 0.7142 0.0881 +vn 0.8178 0.5666 0.1012 +vn 0.9957 0.0205 0.0902 +vn 0.9943 -0.0690 0.0817 +vn 0.9844 0.1418 0.1038 +vn 0.9528 -0.2559 0.1634 +vn 0.9477 -0.2860 0.1418 +vn 0.9851 -0.1621 0.0581 +vn 0.9887 -0.1339 0.0672 +vn 0.4773 0.8743 0.0879 +vn 0.2788 0.9566 0.0851 +vn 0.0018 -0.0004 1.0000 +vn -0.0026 0.0152 0.9999 +vn 0.0018 -0.0045 1.0000 +vn -0.0494 -0.0370 0.9981 +vn -0.0381 -0.1054 0.9937 +vn -0.0441 -0.1171 0.9921 +vn 0.0028 -0.9970 0.0779 +vn -0.0137 -0.9983 0.0573 +vn -0.0160 -0.9980 0.0609 +vn -0.0334 -0.9918 0.1237 +vn 0.0024 -0.9892 0.1468 +vn 0.1449 -0.1863 0.9717 +vn -0.0072 -0.0243 0.9997 +vn 0.0439 -0.2781 0.9596 +vn -0.0010 0.9979 -0.0640 +vn 0.7716 0.2254 0.5948 +vn 0.9801 0.1514 0.1286 +vn 0.8930 0.4009 0.2044 +vn -0.0937 -0.9921 0.0836 +vn -0.0123 -0.8992 0.4374 +vn -0.7699 -0.2565 0.5844 +vn -0.9944 -0.1040 0.0165 +vn -0.9951 -0.0949 0.0260 +vn -0.9971 -0.0545 0.0523 +vn -0.9993 -0.0061 0.0379 +vn -0.9719 0.2062 0.1138 +vn -0.0725 0.9933 0.0897 +vn 0.0721 0.9006 0.4285 +vn -0.0591 0.9273 0.3695 +vn 0.0257 0.9952 0.0944 +vn -0.0579 0.9840 0.1683 +vn -0.0082 0.9967 0.0802 +vn 0.0617 0.9979 -0.0220 +vn 0.9952 0.0128 0.0973 +vn 0.9974 -0.0127 0.0704 +vn 0.9959 0.0017 0.0906 +vn 0.7876 -0.4786 -0.3881 +vn 0.9928 -0.0569 0.1057 +vn 0.9982 -0.0476 -0.0371 +vn 0.9992 0.0394 0.0022 +vn -0.0010 -0.0099 1.0000 +vn -0.0408 0.0881 0.9953 +vn 0.0534 0.0245 0.9983 +vn 0.0536 0.0303 0.9981 +vn -0.0849 0.9819 -0.1696 +vn -0.0006 0.9942 -0.1071 +vn -0.0009 0.9942 -0.1075 +vn 0.9941 -0.0033 -0.1081 +vn 0.9616 -0.1545 -0.2270 +vn 0.9941 -0.0027 -0.1083 +vn -0.0465 -0.0035 0.9989 +vn 0.0298 -0.0217 0.9993 +vn -0.0336 0.0271 0.9991 +vn -0.0010 -0.0000 1.0000 +vn 0.0184 0.0122 0.9998 +vn 0.0213 0.0122 0.9997 +vn 0.0176 0.0128 0.9998 +vn 0.0221 0.0116 0.9997 +vn 0.9954 -0.0530 0.0796 +vn 0.7283 -0.6561 0.1977 +vn 0.6830 -0.7191 0.1280 +vn 0.7097 -0.6835 0.1707 +vn 0.6908 -0.6964 0.1945 +vn 0.7004 -0.6932 0.1703 +vn 0.6996 -0.6949 0.1663 +vn 0.7197 0.6587 0.2193 +vn 0.8174 0.5663 0.1053 +vn -0.9950 -0.0110 0.0991 +vn -0.0619 0.9891 0.1336 +vn -0.5625 0.8193 0.1113 +vn -0.8559 0.5084 0.0948 +vn 0.9848 0.1427 0.0986 +vn -0.8710 -0.4692 0.1460 +vn -0.1635 -0.9784 0.1262 +vn 0.6848 -0.2998 0.6642 +vn 0.3419 -0.7558 0.5584 +vn 0.6968 -0.7121 0.0857 +vn 0.6970 -0.7118 0.0868 +vn 0.9003 0.4153 0.1302 +vn 0.5427 0.8282 0.1396 +vn -0.4622 -0.8125 0.3552 +vn 0.2912 -0.2578 0.9213 +vn 0.4759 -0.6470 0.5958 +vn 0.2172 -0.7022 0.6780 +vn 0.0605 -0.0014 0.9982 +vn 0.0000 0.0000 1.0000 +vn -0.9675 -0.0588 0.2458 +vn -0.9360 0.0653 0.3458 +vn -0.8188 0.0161 0.5739 +vn -0.5134 0.5401 0.6669 +vn -0.0479 0.0867 0.9951 +vn -0.9003 -0.4314 0.0582 +vn -0.7780 -0.6124 0.1401 +vn 0.0325 0.0415 0.9986 +vn 0.0298 0.0214 0.9993 +vn 0.0367 0.0173 0.9992 +vn 0.0415 0.0421 0.9982 +vn 0.4124 0.9032 0.1191 +vn 0.4026 0.9072 0.1223 +vn 0.3828 0.9135 0.1377 +vn 0.3744 0.9171 0.1371 +vn -0.7048 0.6972 0.1312 +vn -0.0292 -0.0028 0.9996 +vn -0.0300 -0.0077 0.9995 +vn -0.0292 -0.0069 0.9996 +vn -0.0284 -0.0019 0.9996 +vn 0.0308 0.0101 -0.9995 +vn 0.0248 0.0088 -0.9997 +vn 0.0246 0.0254 -0.9994 +vn 0.0301 0.0268 -0.9992 +vn -0.0242 -0.0009 0.9997 +vn -0.0203 0.0201 0.9996 +vn 0.0252 -0.9956 0.0905 +vn -0.2817 -0.9575 0.0620 +vn 0.0388 -0.4312 0.9014 +vn -0.0238 -0.1012 0.9946 +vn 0.0063 -0.0240 0.9997 +vn -0.0248 -0.0027 0.9997 +vn 0.0002 -0.0004 1.0000 +vn 0.0164 -0.0234 0.9996 +vn 0.0194 -0.0361 0.9992 +vn -0.0042 -0.0011 1.0000 +vn 0.0065 -0.0001 1.0000 +vn 0.0018 -0.0031 1.0000 +vn -0.0082 -0.0040 1.0000 +vn 0.0020 0.0018 1.0000 +vn 0.0103 0.0120 0.9999 +vn -0.0025 0.0054 1.0000 +vn 0.1483 -0.7392 -0.6569 +vn -0.6821 0.1950 -0.7047 +vn 0.2399 0.6498 -0.7213 +vn 0.0606 0.9269 -0.3704 +vn -0.0040 -0.0018 1.0000 +vn 0.0167 0.0202 0.9997 +vn -0.0116 0.0067 0.9999 +vn -0.0014 -0.0115 0.9999 +vn 0.0378 -0.2421 0.9695 +vn 0.0220 -0.1462 0.9890 +vn 0.0761 -0.0280 0.9967 +vn 0.1319 0.0010 0.9913 +vn -0.8036 0.5906 0.0741 +vn -0.8780 0.3532 0.3232 +vn -0.7469 0.5235 0.4099 +vn -0.0092 -0.2885 0.9574 +vn -0.3870 -0.1408 0.9113 +vn 0.0364 -0.1152 0.9927 +vn -0.3453 -0.0981 0.9333 +vn -0.2160 -0.7009 0.6797 +vn -0.0807 -0.1498 0.9854 +vn -0.1729 -0.3367 0.9256 +vn 0.9421 0.3109 0.1257 +vn 0.8788 -0.3217 0.3526 +vn 0.7299 -0.5143 0.4503 +vn -0.7242 -0.6120 0.3178 +vn -0.8168 -0.5145 0.2611 +vn -0.7211 -0.6705 0.1745 +vn 0.5556 -0.8221 -0.1248 +vn 0.2119 -0.9496 0.2312 +vn -0.2379 -0.7152 0.6572 +vn 0.8139 0.3177 0.4865 +vn 0.8154 0.5153 0.2639 +vn 0.3250 0.9451 0.0331 +vn -0.1136 0.9934 0.0179 +vn 0.2397 0.8088 0.5371 +vn 0.3563 0.8119 0.4625 +vn -0.2294 0.9697 0.0837 +vn 0.9940 0.0486 0.0984 +vn 0.7607 0.4428 0.4746 +vn 0.9944 -0.0847 0.0625 +vn 0.6124 0.7886 0.0556 +vn 0.9210 0.1258 0.3686 +vn 0.7517 0.6486 0.1193 +vn -0.9403 0.3036 0.1540 +vn -0.9005 -0.4102 0.1442 +vn -0.9502 0.1138 0.2901 +vn -0.8449 -0.5262 0.0961 +vn 0.0064 -0.9742 0.2255 +vn 0.0268 -0.9740 0.2251 +vn -0.4408 -0.8948 0.0715 +vn 0.1894 -0.8005 0.5686 +vn -0.1178 0.6313 0.7666 +vn 0.0078 0.0603 0.9982 +vn -0.0089 0.6536 0.7568 +vn 0.0000 0.6435 0.7655 +vn -0.5897 -0.0173 0.8074 +vn -0.2073 0.5401 0.8156 +vn -0.2372 0.9325 0.2723 +vn -0.8886 -0.0016 0.4587 +vn 0.0094 -0.1531 0.9882 +vn -0.0200 0.2298 0.9730 +vn -0.8691 0.0936 0.4856 +vn 0.1326 -0.4406 0.8878 +vn -0.4198 0.2741 0.8652 +vn -0.5551 0.6715 0.4908 +vn -0.8366 0.1140 0.5358 +vn 0.1020 0.8051 0.5844 +vn -0.3754 -0.3141 0.8720 +vn 0.0049 0.4462 0.8949 +vn -0.0379 0.8136 0.5802 +vn 0.8655 -0.1847 -0.4656 +vn 0.8502 0.2902 -0.4392 +vn 0.5728 -0.6846 -0.4509 +vn 0.2025 -0.8841 -0.4212 +vn -0.9505 -0.0855 0.2988 +vn -0.7163 0.2860 0.6365 +vn -0.6973 -0.0641 0.7139 +vn -0.9874 0.0163 0.1573 +vn -0.6028 0.0381 0.7970 +vn -0.1979 0.1892 0.9618 +vn 0.4626 0.3101 0.8306 +vn 0.7874 0.5569 0.2644 +vn 0.3049 0.1936 0.9325 +vn 0.5021 0.5655 0.6543 +vn 0.0934 0.2304 0.9686 +vn 0.1973 0.8276 0.5255 +vn -0.0757 0.4788 0.8746 +vn -0.3395 0.7451 0.5741 +vn -0.7568 0.3900 0.5245 +vn 0.5012 -0.5494 0.6686 +vn -0.1413 -0.7557 0.6395 +vn 0.3013 -0.9302 0.2094 +vn -0.6134 -0.4624 0.6402 +vn -0.7115 -0.2393 0.6607 +vn 0.7923 -0.2823 0.5410 +vn 0.4748 0.1568 0.8660 +vn -0.8042 0.2120 0.5553 +vn -0.5813 0.4415 0.6835 +vn 0.3651 0.5988 0.7129 +vn 0.8652 0.4858 0.1240 +vn -0.5189 0.8267 0.2176 +vn -0.0607 0.8373 0.5433 +vn -0.6930 0.6172 0.3726 +vn -0.6065 0.4702 0.6412 +vn -0.7484 0.6534 0.1139 +vn 0.0341 -0.9898 0.1384 +vn -0.0099 -0.9013 0.4331 +vn 0.0158 -0.9667 0.2555 +vn 0.7582 -0.6295 0.1697 +vn 0.7580 -0.6224 0.1953 +vn 0.6361 -0.7579 0.1450 +vn -0.4590 -0.4758 0.7503 +vn -0.3760 -0.6594 0.6511 +vn -0.1046 -0.6557 0.7478 +vn 0.2155 -0.6069 0.7650 +vn 0.0958 -0.5200 0.8488 +vn -0.2473 0.8625 0.4416 +vn -0.6399 0.7001 0.3169 +vn 0.2935 -0.6316 0.7176 +vn 0.1260 -0.9744 0.1862 +vn 0.5919 -0.6676 0.4517 +vn 0.6690 -0.2824 0.6876 +vn 0.7521 -0.6225 0.2164 +vn 0.6166 -0.3105 0.7235 +vn 0.5264 -0.2849 0.8011 +vn 0.1646 -0.9537 0.2517 +vn -0.4297 -0.3827 0.8179 +vn -0.6114 -0.1141 0.7831 +vn -0.2463 -0.4895 0.8365 +vn 0.7315 0.0133 0.6817 +vn 0.2470 0.7434 0.6216 +vn 0.6482 0.0005 0.7615 +vn 0.7605 0.5658 0.3185 +vn -0.2241 0.8685 -0.4422 +vn -0.1847 0.5254 0.8306 +vn -0.1135 0.2573 0.9596 +vn -0.4423 0.5435 0.7134 +vn -0.6074 0.3409 0.7175 +vn -0.1134 0.8784 0.4643 +vn -0.4431 0.8786 0.1781 +vn -0.5873 0.5606 0.5838 +vn -0.7654 0.4252 0.4831 +vn 0.7838 -0.4747 0.4005 +vn 0.0372 0.1673 0.9852 +vn 0.2457 -0.5306 0.8112 +vn 0.7074 -0.6193 0.3406 +vn 0.5934 0.8015 0.0738 +vn -0.0355 0.6474 0.7613 +vn -0.0020 0.9525 0.3045 +vn -0.4938 -0.4662 0.7341 +vn -0.5948 -0.3116 0.7410 +vn -0.3717 -0.3525 0.8589 +vn -0.4682 -0.3490 0.8117 +vn -0.6203 -0.2080 0.7563 +vn -0.6400 0.0140 0.7682 +vn -0.9869 -0.1384 0.0825 +vn -0.0070 -0.0093 0.9999 +vn -0.3839 0.4057 0.8295 +vn -0.5319 0.0027 0.8468 +vn 0.0192 0.7352 0.6776 +vn 0.4756 0.6448 0.5983 +vn -0.1805 0.9613 0.2079 +vn 0.8056 0.5845 0.0969 +vn -0.6194 -0.4603 0.6360 +vn 0.4266 -0.2405 0.8719 +vn -0.3985 0.0168 0.9170 +vn -0.9825 0.1390 0.1237 +vn -0.7689 -0.0580 0.6367 +vn -0.9676 0.1626 0.1931 +vn -0.9283 -0.1540 0.3384 +vn -0.6414 0.5960 0.4831 +vn -0.7450 -0.6588 0.1046 +vn -0.5689 -0.4697 0.6751 +vn -0.6098 -0.6327 0.4774 +vn 0.1599 -0.9685 0.1907 +vn 0.1507 -0.9798 0.1314 +vn 0.0503 -0.9835 0.1736 +vn -0.1419 -0.5488 0.8238 +vn -0.1424 -0.7998 0.5831 +vn -0.0363 -0.9339 0.3557 +vn 0.1938 -0.7088 0.6783 +vn 0.0029 -0.6019 0.7986 +vn 0.0615 -0.1730 0.9830 +vn -0.3499 0.1923 0.9168 +vn 0.2140 -0.7297 0.6495 +vn -0.0998 -0.9240 0.3692 +vn 0.8536 -0.5169 0.0652 +vn 0.7665 0.6254 0.1464 +vn 0.9318 0.3432 0.1183 +vn 0.9201 0.3901 0.0358 +vn -0.6254 0.7751 0.0904 +vn 0.0174 0.9973 0.0714 +vn 0.0284 0.9867 0.1600 +vn 0.3593 0.9239 0.1316 +vn 0.6875 0.7252 -0.0373 +vn 0.8812 0.4496 0.1460 +vn 0.7550 -0.6247 0.1994 +vn 0.8038 0.5718 0.1639 +vn 0.0194 -0.9945 0.1030 +vn -0.6656 -0.7456 0.0327 +vn 0.4088 -0.3906 0.8248 +vn 0.1397 -0.1776 0.9741 +vn 0.4056 -0.1944 0.8931 +vn 0.9690 0.2221 0.1078 +vn -0.7167 0.6835 0.1382 +vn -0.6916 0.6050 0.3946 +vn -0.4092 0.1713 0.8962 +vn -0.9590 -0.2607 0.1115 +vn 0.0267 0.6768 -0.7357 +vn -0.2142 0.9762 0.0334 +vn 0.5463 0.0351 -0.8369 +vn 0.7912 0.0215 -0.6112 +vn 0.8959 -0.4415 0.0497 +vn 0.8479 0.4282 -0.3126 +vn 0.6240 0.2395 -0.7438 +vn -0.1114 0.1833 -0.9767 +vn -0.1205 0.1101 -0.9866 +vn -0.0697 0.9900 0.1227 +vn 0.0987 0.9539 0.2835 +vn -0.0336 0.9925 0.1177 +vn -0.1336 0.7249 0.6758 +vn -0.1343 0.7075 0.6939 +vn -0.0013 0.9960 0.0888 +vn -0.0052 0.0981 -0.9952 +vn 0.0179 0.0562 -0.9983 +vn -0.0231 0.0972 -0.9950 +vn -0.0007 0.0551 -0.9985 +vn 0.9677 -0.0307 -0.2504 +vn 0.9604 0.0001 -0.2788 +vn 0.9591 -0.0028 -0.2831 +vn 0.9694 -0.0159 -0.2451 +vn 0.9744 -0.0477 -0.2195 +vn -0.0551 -0.9539 -0.2951 +vn 0.0029 -0.9837 -0.1800 +vn 0.0041 -0.9842 -0.1771 +vn -0.0000 -0.0146 0.9999 +vn -0.0032 0.0002 1.0000 +vn 0.0406 0.9985 -0.0356 +vn -0.0205 0.0103 0.9997 +vn -0.0163 0.0088 0.9998 +vn 0.0017 0.0329 0.9995 +vn -0.0126 0.0111 0.9999 +vn 0.0034 -0.0081 1.0000 +vn 0.0049 -0.0478 0.9988 +vn 0.0316 -0.0175 0.9993 +vn 0.0234 -0.0180 0.9996 +vn 0.0177 -0.0113 0.9998 +vn 0.0190 -0.0096 0.9998 +vn -0.0063 -0.0014 1.0000 +vn -0.0200 -0.0181 0.9996 +vn -0.0385 0.0256 0.9989 +vn -0.0218 0.0290 0.9993 +vn -0.0012 -0.0048 1.0000 +vn -0.0102 0.0726 0.9973 +vn -0.0100 0.0740 0.9972 +vn -0.0319 0.0612 0.9976 +vn 0.0377 0.0323 0.9988 +vn -0.0231 0.0631 0.9977 +vn -0.0412 0.0314 0.9987 +vn 0.0410 0.0138 0.9991 +vn -0.0534 -0.0251 0.9983 +vn -0.0560 -0.0253 0.9981 +vn 0.9157 -0.3959 0.0693 +vn 0.9544 -0.2721 -0.1225 +vn 0.9608 -0.2715 -0.0553 +vn 0.9028 -0.4098 0.1306 +vn -0.1153 0.0883 0.9894 +vn -0.0554 -0.1118 0.9922 +vn 0.0085 -0.4246 0.9053 +vn 0.0138 -0.4485 0.8937 +vn 0.0374 -0.4594 0.8874 +vn 0.0173 -0.9877 0.1552 +vn -0.0244 -0.9931 0.1146 +vn -0.0057 -0.9937 0.1120 +vn 0.0004 -0.9877 0.1562 +vn -0.0689 -0.0110 0.9976 +vn -0.0280 -0.0162 0.9995 +vn 0.0173 0.0399 0.9991 +vn -0.0217 0.0611 0.9979 +vn 0.0118 0.9975 0.0699 +vn 0.0051 0.9976 0.0688 +vn -0.0068 0.9960 0.0890 +vn 0.0011 0.9960 0.0893 +vn -0.0313 0.9854 0.1672 +vn 0.0015 0.9948 0.1022 +vn -0.0217 -0.9865 0.1622 +vn -0.0027 -0.9917 0.1283 +vn 0.0430 0.0218 0.9988 +vn 0.0354 0.0255 0.9990 +vn -0.7602 -0.6445 0.0823 +vn -0.7640 -0.6381 0.0953 +vn 0.7449 0.6636 0.0692 +vn 0.7244 0.6043 0.3317 +vn 0.7202 0.5845 0.3737 +vn -0.7570 -0.6358 0.1506 +vn 0.7642 0.6397 0.0823 +vn 0.7669 0.6350 0.0929 +vn -0.3957 0.9168 0.0541 +vn -0.2279 0.8355 0.5000 +vn -0.3688 0.9240 0.1009 +vn -0.3806 0.7738 0.5063 +vn 0.3717 -0.9246 0.0836 +vn 0.3847 -0.9205 0.0691 +vn 0.3818 -0.9212 0.0742 +vn 0.3687 -0.9253 0.0891 +vn -0.7800 0.6199 0.0853 +vn -0.7736 0.6251 0.1044 +vn 0.7580 0.3486 0.5512 +vn 0.6455 0.5862 0.4895 +vn 0.6289 0.7729 0.0840 +vn 0.7420 0.6616 0.1086 +vn -0.6676 -0.7401 0.0813 +vn -0.7742 -0.6282 0.0778 +vn -0.6727 -0.7364 0.0725 +vn -0.5502 -0.8307 0.0850 +vn -0.5420 -0.8350 0.0951 +vn -0.7759 -0.6257 0.0813 +vn -0.1728 -0.9825 0.0699 +vn -0.1423 -0.9856 0.0915 +vn -0.0207 -0.9942 0.1056 +vn 0.9175 -0.3921 0.0668 +vn 0.9607 -0.2769 0.0190 +vn -0.9336 0.3499 0.0775 +vn -0.9134 0.3928 0.1070 +vn -0.9162 0.3898 0.0930 +vn -0.9388 0.3398 0.0572 +vn -0.9072 0.4092 0.0979 +vn 0.9987 -0.0181 0.0482 +vn 0.9989 -0.0027 0.0467 +vn -0.9959 -0.0189 0.0884 +vn -0.9961 -0.0011 0.0881 +vn -0.9985 0.0217 0.0501 +vn -0.9989 0.0029 0.0460 +vn 0.0041 0.9959 0.0901 +vn -0.0008 0.9959 0.0902 +vn -0.0070 0.9948 0.1014 +vn -0.0022 0.9948 0.1020 +vn 0.0184 -0.9938 0.1100 +vn -0.0177 -0.9970 0.0750 +vn -0.0018 -0.9973 0.0728 +vn 0.0029 -0.9939 0.1106 +vn 0.2064 -0.9749 0.0837 +vn 0.0310 -0.9961 0.0825 +vn -0.2278 -0.9716 0.0646 +vn -0.2561 -0.9631 0.0826 +vn -0.0733 -0.9916 0.1068 +vn 0.3885 -0.9172 0.0881 +vn -0.5749 -0.8145 0.0783 +vn -0.8969 -0.4337 0.0867 +vn 0.8441 -0.5264 0.1023 +vn -0.9852 0.1478 0.0870 +vn 0.8555 0.5083 0.0989 +vn 0.9939 0.0036 0.1102 +vn -0.5728 0.8169 0.0680 +vn 0.4045 0.9102 0.0894 +vn -0.1168 0.9877 0.1038 +vn -0.1784 0.9783 0.1056 +vn 0.1207 0.9853 0.1211 +vn -0.1511 0.9806 0.1245 +vn -0.0602 0.9916 0.1145 +vn 0.2189 0.9677 0.1249 +vn 0.1941 0.9750 0.1085 +vn 0.8918 0.4432 0.0911 +vn 0.8892 0.4478 0.0943 +vn 0.8993 0.4229 0.1116 +vn 0.9019 0.4180 0.1091 +vn 0.8684 -0.4869 0.0945 +vn 0.8646 -0.4961 0.0799 +vn 0.8964 -0.4414 0.0409 +vn 0.9006 -0.4318 0.0495 +vn -0.9950 0.0632 0.0775 +vn -0.9960 -0.0368 0.0820 +vn -0.9780 -0.1874 0.0913 +vn -0.9956 0.0578 0.0732 +vn 0.8232 -0.1073 0.5575 +vn 0.8487 0.0259 0.5282 +vn 0.9897 -0.1169 0.0832 +vn 0.9942 -0.0150 0.1065 +vn 0.1025 -0.0116 0.9947 +vn 0.0270 0.0587 0.9979 +vn -0.0048 0.0660 0.9978 +vn -0.0346 0.0656 0.9972 +vn 0.0090 0.0020 1.0000 +vn 0.0385 0.1183 0.9922 +vn -0.0384 0.0485 0.9981 +vn -0.0247 0.0813 0.9964 +vn -0.0038 -0.0015 1.0000 +vn 0.0441 -0.0838 0.9955 +vn -0.0421 -0.0709 0.9966 +vn 0.0427 -0.0563 0.9975 +vn -0.0361 -0.0385 0.9986 +vn 0.0376 -0.0779 0.9962 +vn -0.0320 -0.0611 0.9976 +vn 0.0065 -0.0740 0.9972 +vn 0.4907 -0.8499 0.1922 +vn -0.5082 -0.8406 0.1875 +vn -0.1358 -0.9810 0.1386 +vn -0.7603 -0.6403 0.1096 +vn -0.8817 -0.3943 -0.2592 +vn -0.9815 -0.0537 0.1839 +vn -0.9856 -0.0541 0.1599 +vn -0.9600 0.0798 0.2683 +vn -0.9622 0.0427 0.2688 +vn 0.4031 -0.9152 -0.0012 +vn -0.1095 -0.9940 -0.0025 +vn 0.5899 -0.8074 0.0000 +vn 0.1068 -0.9943 0.0006 +vn -0.5871 -0.8095 0.0002 +vn -0.4065 -0.9136 0.0008 +vn -0.9144 -0.4048 0.0000 +vn 0.8084 -0.5886 -0.0003 +vn 0.9141 -0.4054 0.0003 +vn -0.8076 -0.5898 0.0001 +vn -0.9942 0.1075 -0.0016 +vn 0.9943 -0.1067 -0.0009 +vn -0.9943 -0.1063 0.0004 +vn -0.8078 0.5895 -0.0008 +vn 0.9149 0.4036 -0.0016 +vn 0.8080 0.5892 0.0004 +vn -0.4046 0.9145 -0.0009 +vn 0.5904 0.8071 -0.0011 +vn 0.4044 0.9146 0.0001 +vn -0.5892 0.8080 0.0004 +vn 0.1054 0.9944 -0.0003 +vn -0.1059 0.9944 0.0003 +vn -0.0151 0.0384 -0.9991 +vn 0.0046 0.0476 -0.9989 +vn -0.0005 0.0334 -0.9994 +vn 0.0127 0.0271 -0.9996 +vn -0.0218 0.0300 -0.9993 +vn 0.0148 -0.0075 -0.9999 +vn -0.0246 0.0166 -0.9996 +vn 0.0341 0.0192 -0.9992 +vn 0.0506 0.0081 -0.9987 +vn -0.0245 0.0087 -0.9997 +vn -0.0360 -0.0369 -0.9987 +vn 0.0398 0.0243 -0.9989 +vn 0.0388 -0.0159 -0.9991 +vn -0.0184 -0.0148 -0.9997 +vn 0.0282 -0.0202 -0.9994 +vn -0.0281 -0.0004 -0.9996 +vn 0.0193 -0.0296 -0.9994 +vn 0.0139 -0.0232 -0.9996 +vn -0.0170 -0.0391 -0.9991 +vn -0.0416 -0.0408 -0.9983 +vn 0.0037 -0.0346 -0.9994 +vn 0.0025 -0.0196 -0.9998 +vn -0.7165 -0.6832 0.1407 +vn -0.7346 -0.6060 0.3052 +vn -0.1808 0.9513 0.2496 +vn 0.0072 0.9966 0.0822 +vn 0.0010 0.9974 0.0720 +vn 0.0327 0.9982 0.0511 +vn 0.0265 0.9897 0.1410 +vn -0.0033 0.9767 0.2147 +vn 0.0118 0.3760 0.9266 +vn 0.0503 0.2609 0.9641 +vn 0.0264 0.3732 0.9274 +vn -0.0017 0.9417 0.3364 +vn -0.0023 0.9853 0.1708 +vn -0.0023 0.9856 0.1689 +vn 0.1024 0.1080 0.9889 +vn -0.0157 0.0019 0.9999 +vn 0.0039 -0.0135 0.9999 +vn -0.0094 -0.0053 0.9999 +vn 0.0113 -0.1035 0.9946 +vn -0.0022 0.0086 1.0000 +vn -0.0039 0.0061 1.0000 +vn -0.0093 0.0061 0.9999 +vn 0.3120 -0.0252 0.9497 +vn -0.3452 0.0647 0.9363 +vn 0.2971 0.2609 0.9185 +vn -0.0872 -0.0671 0.9939 +vn 0.2661 0.2079 0.9413 +vn 0.2359 0.5667 0.7894 +vn -0.9936 -0.0385 0.1062 +vn -0.9966 -0.0022 0.0825 +vn -0.9962 -0.0153 0.0857 +vn -0.9928 -0.0513 0.1086 +vn 0.9334 -0.2797 -0.2249 +vn 0.7874 -0.6096 0.0919 +vn 0.7761 -0.6179 0.1259 +vn 0.7768 -0.6240 0.0852 +vn 0.7844 -0.6136 0.0904 +vn 0.7711 -0.6306 0.0880 +vn -0.0049 0.0003 1.0000 +vn -0.0110 -0.0033 0.9999 +vn -0.0062 -0.0022 1.0000 +vn 0.0495 -0.0286 0.9984 +vn 0.0464 -0.0315 0.9984 +vn 0.0418 0.9972 0.0624 +vn 0.0025 0.9976 -0.0694 +vn -0.0316 0.9929 0.1146 +vn 0.6131 0.7872 -0.0663 +vn 0.5452 0.8382 -0.0160 +vn -0.5545 0.8196 -0.1443 +vn -0.7707 0.6342 -0.0615 +vn 0.9484 0.3080 -0.0752 +vn 0.8495 0.5274 -0.0095 +vn -0.9532 0.2665 -0.1425 +vn 0.9727 0.2099 0.0984 +vn 0.9391 -0.3356 -0.0739 +vn 0.9656 -0.2586 -0.0289 +vn -0.9989 -0.0310 -0.0338 +vn -0.9237 -0.3581 -0.1362 +vn -0.8694 -0.4924 -0.0416 +vn 0.9763 -0.2025 -0.0763 +vn 0.5310 -0.8365 -0.1352 +vn -0.6400 -0.7566 -0.1344 +vn 0.5359 -0.8426 -0.0528 +vn -0.5060 -0.8604 -0.0608 +vn 0.1309 -0.9876 -0.0866 +vn 0.0058 -0.9914 -0.1306 +vn 0.2387 -0.9685 0.0712 +vn 0.5372 -0.8404 0.0715 +vn 0.7963 -0.6019 0.0603 +vn 0.0934 -0.9935 0.0652 +vn 0.8929 -0.4501 0.0132 +vn -0.2934 -0.9516 0.0913 +vn -0.3000 -0.9486 0.1013 +vn 0.3211 0.9407 0.1093 +vn 0.3215 0.9410 0.1057 +vn -0.2909 0.9538 0.0753 +vn -0.5605 0.8236 0.0870 +vn -0.7735 0.6273 0.0905 +vn -0.8185 0.5668 0.0933 +vn -0.1367 0.9871 0.0838 +vn -0.9959 0.0206 0.0885 +vn -0.9935 -0.0750 0.0858 +vn -0.9848 0.1443 0.0971 +vn -0.9841 -0.1587 0.0802 +vn -0.9826 -0.1738 0.0648 +vn -0.9817 -0.1784 0.0664 +vn -0.9849 -0.1540 0.0794 +vn -0.5078 0.8563 0.0940 +vn -0.2836 0.9534 0.1031 +vn 0.0000 -0.0508 0.9987 +vn 0.0465 -0.0468 0.9978 +vn 0.0568 -0.1412 0.9884 +vn 0.0616 -0.1545 0.9861 +vn -0.3700 -0.8222 0.4325 +vn 0.0449 -0.9940 0.1001 +vn -0.0648 -0.9946 0.0811 +vn -0.0064 -0.9974 0.0720 +vn 0.0727 -0.9835 0.1656 +vn -0.0036 -0.0027 1.0000 +vn -0.0025 0.0079 1.0000 +vn -0.0004 -0.0025 1.0000 +vn -0.0042 -0.0055 1.0000 +vn 0.0023 0.0058 1.0000 +vn 0.0039 0.0025 1.0000 +vn 0.0036 0.0033 1.0000 +vn -0.8459 -0.1491 0.5121 +vn -0.8780 -0.0701 0.4735 +vn -0.9890 0.0777 0.1257 +vn -0.2955 -0.6886 0.6622 +vn -0.7543 -0.3483 0.5566 +vn -0.7070 -0.7024 0.0830 +vn 0.9989 -0.0466 -0.0024 +vn 0.7726 -0.2575 0.5803 +vn 0.9994 -0.0145 0.0313 +vn 0.9950 -0.0966 0.0271 +vn 0.9970 -0.0563 0.0528 +vn 0.9949 -0.0973 0.0263 +vn 0.9761 0.1888 0.1073 +vn 0.0889 0.9930 0.0776 +vn 0.0234 0.7917 0.6105 +vn 0.0327 0.9490 0.3137 +vn -0.0678 0.9940 0.0853 +vn 0.0621 0.9828 0.1739 +vn 0.0028 0.9964 0.0850 +vn -0.0834 0.9963 0.0214 +vn -0.9944 0.0052 0.1051 +vn -0.9966 -0.0153 0.0815 +vn -0.9945 0.0024 0.1047 +vn -0.9954 0.0023 0.0953 +vn -0.9968 0.0143 0.0789 +vn -0.9993 0.0372 0.0077 +vn -0.9981 -0.0272 -0.0556 +vn 0.0000 -0.0013 1.0000 +vn 0.0598 0.0585 0.9965 +vn 0.0175 0.9922 -0.1234 +vn 0.0130 0.9917 -0.1282 +vn 0.0683 0.9815 -0.1788 +vn -0.9943 -0.0022 -0.1067 +vn 0.0205 -0.9965 0.0805 +vn 0.4997 0.8446 0.1922 +vn -0.5115 0.8372 0.1935 +vn -0.7720 0.6112 0.1747 +vn -0.4393 -0.8936 -0.0924 +vn -0.4795 -0.8553 -0.1963 +vn -0.3476 -0.9371 0.0300 +vn 0.7483 -0.6611 -0.0547 +vn 0.3771 -0.9227 0.0808 +vn 0.4669 -0.8836 -0.0351 +vn -0.3047 -0.9438 0.1280 +vn 0.9512 -0.2672 -0.1542 +vn -0.9876 -0.1570 0.0052 +vn -0.9903 -0.1360 -0.0301 +vn -0.9803 -0.1929 0.0432 +vn 0.9988 -0.0027 -0.0492 +vn 0.9407 0.3352 -0.0524 +vn 0.9256 0.3783 0.0123 +vn -0.9750 -0.2088 0.0759 +vn -0.7103 0.6938 0.1189 +vn -0.7198 0.6773 0.1521 +vn -0.6803 0.7289 0.0774 +vn -0.6699 0.7411 0.0444 +vn 0.1375 0.9862 0.0919 +vn 0.2768 0.9603 -0.0361 +vn 0.3050 0.9448 -0.1198 +vn 0.1036 0.9791 0.1751 +vn 0.6972 0.5601 -0.4473 +vn 0.9987 0.0506 -0.0070 +vn 0.0421 0.0395 0.9983 +vn 0.0162 -0.2989 0.9541 +vn -0.4194 -0.2584 0.8703 +vn 0.0194 0.0045 0.9998 +vn 0.2596 0.2163 -0.9412 +vn 0.7666 0.5145 -0.3842 +vn 0.5039 0.4706 -0.7243 +vn 0.6934 0.6338 -0.3429 +vn 0.0103 0.0343 0.9994 +vn 0.0115 0.0035 0.9999 +vn 0.0002 0.0008 1.0000 +vn 0.0011 0.0007 1.0000 +vn 0.0353 0.1042 0.9939 +vn 0.0805 0.3981 0.9138 +vn 0.0352 0.3199 0.9468 +vn -0.0109 0.0194 0.9998 +vn -0.9952 -0.0560 0.0808 +vn 0.0649 -0.0109 0.9978 +vn 0.0703 0.0013 0.9975 +vn 0.0428 0.0144 0.9990 +vn 0.0078 -0.0001 1.0000 +vn 0.0067 0.0033 1.0000 +vn 0.0181 0.0025 0.9998 +vn 0.0331 0.0120 0.9994 +vn -0.0109 -0.0014 0.9999 +vn 0.0216 0.0104 0.9997 +vn -0.0055 -0.0025 1.0000 +vn 0.0155 -0.0177 0.9997 +vn -0.0156 -0.0118 0.9998 +vn 0.0246 -0.0153 0.9996 +vn -0.0389 -0.0042 0.9992 +vn 0.0260 -0.0300 0.9992 +vn -0.0367 0.0274 0.9989 +vn -0.0029 -0.0047 1.0000 +vn -0.0116 0.0041 0.9999 +vn 0.0236 -0.0075 0.9997 +vn -0.0162 0.0019 0.9999 +vn 0.0139 -0.0098 0.9999 +vn -0.0105 -0.0077 0.9999 +vn 0.0244 0.0010 0.9997 +vn -0.0087 -0.0241 0.9997 +vn 0.0197 -0.0134 0.9997 +vn -0.0225 -0.0003 0.9997 +vn 0.0113 0.0030 0.9999 +vn -0.0063 -0.0135 0.9999 +vn -0.0862 0.0478 0.9951 +vn 0.0580 0.0373 0.9976 +vn -0.0023 0.0186 0.9998 +vn 0.0063 0.0157 0.9999 +vn -0.0352 0.0111 0.9993 +vn 0.0039 0.0168 0.9999 +vn 0.0049 0.0289 0.9996 +vn -0.0003 0.0213 0.9998 +vn -0.3687 -0.3777 0.8494 +vn 0.3585 -0.3591 0.8617 +vn -0.0190 0.0242 0.9995 +vn -0.0093 0.0350 0.9993 +vn -0.1144 0.0962 0.9888 +vn -0.0059 -0.0158 0.9999 +vn 0.0074 0.0452 0.9990 +vn -0.0068 -0.0207 0.9998 +vn 0.0013 -0.1033 0.9947 +vn 0.0095 0.0003 1.0000 +vn -0.0210 -0.0047 0.9998 +vn -0.0007 0.0105 0.9999 +vn -0.0202 0.0093 0.9998 +vn -0.0255 0.0062 0.9997 +vn -0.0008 0.0033 1.0000 +vn -0.0201 -0.0208 0.9996 +vn -0.0200 -0.0340 0.9992 +vn -0.0028 0.0097 0.9999 +vn -0.0321 -0.0159 0.9994 +vn -0.0116 0.0181 0.9998 +vn 0.0166 0.0321 0.9993 +vn 0.0289 0.0425 0.9987 +vn -0.0157 0.0156 0.9998 +vn -0.0197 -0.0064 0.9998 +vn 0.0195 0.0087 0.9998 +vn -0.0066 0.0045 1.0000 +vn -0.0069 0.0095 0.9999 +vn -0.0104 0.0316 0.9994 +vn 0.0201 0.0133 0.9997 +vn -0.0089 0.0097 0.9999 +vn -0.0020 -0.0787 0.9969 +vn 0.1266 0.0277 0.9916 +vn -0.0622 0.0139 0.9980 +vn 0.0159 -0.0754 0.9970 +vn 0.0866 0.0464 0.9952 +vn -0.0468 0.0201 0.9987 +vn 0.0630 -0.0287 0.9976 +vn -0.7053 -0.6835 0.1879 +vn -0.7246 -0.6730 0.1484 +vn -0.6690 -0.7171 0.1953 +vn -0.7037 -0.6941 0.1514 +vn -0.7083 -0.6956 0.1203 +vn -0.7054 -0.6906 0.1595 +vn -0.7239 0.6527 0.2235 +vn -0.7223 0.6558 0.2195 +vn -0.7245 0.6515 0.2249 +vn -0.7262 0.6482 0.2291 +vn -0.6696 0.7340 0.1136 +vn -0.0241 0.9916 0.1267 +vn 0.4275 0.8971 0.1111 +vn 0.9950 0.0390 0.0917 +vn 0.8126 0.5708 0.1179 +vn 0.8725 -0.4672 0.1435 +vn -0.9846 0.1446 0.0983 +vn -0.7057 -0.7033 0.0857 +vn 0.0532 -0.9875 0.1481 +vn -0.8615 0.4892 0.1360 +vn -0.4691 0.8737 0.1290 +vn 0.4640 -0.8100 0.3587 +vn -0.2476 -0.2362 0.9396 +vn -0.4784 -0.6468 0.5940 +vn -0.0928 0.0163 0.9956 +vn 0.2132 0.8703 -0.4441 +vn 0.1642 -0.0879 0.9825 +vn 0.1126 -0.1028 0.9883 +vn 0.0691 -0.1028 0.9923 +vn 0.0111 -0.1372 0.9905 +vn -0.1580 -0.1946 0.9681 +vn -0.2850 0.0556 0.9569 +vn -0.1914 -0.0763 0.9785 +vn -0.1334 -0.0722 0.9884 +vn -0.1572 -0.2005 0.9670 +vn -0.0927 0.1237 0.9880 +vn -0.9725 0.0771 0.2199 +vn -0.9831 0.0368 0.1792 +vn -0.9839 0.0333 0.1755 +vn -0.9908 -0.0057 0.1355 +vn -0.0208 0.9971 0.0736 +vn 0.9833 -0.0383 0.1777 +vn 0.9908 0.0028 0.1354 +vn 0.9841 -0.0347 0.1740 +vn 0.9731 -0.0772 0.2172 +vn 0.0135 -0.9972 0.0730 +vn -0.0145 0.0337 -0.9993 +vn -0.0432 -0.0038 -0.9991 +vn 0.0300 -0.2496 -0.9679 +vn -0.0772 -0.5384 0.8391 +vn 0.5342 0.1995 0.8215 +vn -0.2175 -0.4613 0.8602 +vn 0.5032 0.2921 0.8133 +vn -0.6259 0.2280 0.7458 +vn 0.2082 -0.5446 0.8124 +vn -0.4316 0.2152 0.8760 +vn 0.2097 -0.6324 0.7457 +vn 0.0872 -0.6863 0.7221 +vn 0.8912 -0.0539 0.4503 +vn 0.7494 -0.3150 0.5824 +vn 0.1078 0.5816 0.8063 +vn 0.0017 -0.0011 -1.0000 +vn -0.0002 -0.0027 -1.0000 +vn 0.0029 0.0024 -1.0000 +vn 0.0001 -0.0002 -1.0000 +vn -0.0033 -0.0009 -1.0000 +vn 0.0083 0.0012 -1.0000 +vn 0.0003 0.0000 -1.0000 +vn 0.0004 -0.0000 -1.0000 +vn 0.0094 0.0025 -1.0000 +vn 0.0002 0.0002 -1.0000 +vn -0.0031 -0.0083 -1.0000 +vn -0.0009 -0.0024 -1.0000 +vn 0.2508 -0.9658 -0.0654 +vn -0.0558 -0.9983 -0.0139 +vn -0.2794 -0.9593 -0.0409 +vn 0.3718 -0.9282 0.0133 +vn -0.6989 -0.7151 0.0138 +vn -0.8407 -0.5414 -0.0119 +vn -0.9668 -0.2527 0.0375 +vn 0.9936 0.1107 -0.0237 +vn 0.9368 -0.3494 -0.0156 +vn 0.9247 -0.3789 -0.0375 +vn 0.9926 -0.1216 -0.0046 +vn -0.9900 -0.1360 -0.0373 +vn 0.9416 0.3365 -0.0128 +vn 0.9280 0.3723 0.0135 +vn -0.6926 0.7207 -0.0305 +vn -0.7262 0.6875 0.0039 +vn -0.7122 0.7020 -0.0047 +vn -0.6777 0.7343 -0.0391 +vn 0.2724 0.9618 -0.0282 +vn 0.2411 0.9705 0.0026 +vn 0.2995 0.9531 -0.0424 +vn 0.2135 0.9768 0.0169 +vn -0.0042 0.0009 -1.0000 +vn 0.0019 0.0045 -1.0000 +vn -0.0034 0.0024 -1.0000 +vn -0.0012 0.0039 -1.0000 +vn 0.0047 0.0014 -1.0000 +vn -0.0062 0.0043 -1.0000 +vn -0.0015 -0.0019 -1.0000 +vn -0.0003 -0.0056 -1.0000 +vn -0.0004 -0.0053 -1.0000 +vn -0.0100 -0.0060 -0.9999 +vn 0.0055 -0.0036 -1.0000 +vn 0.5932 -0.8047 -0.0258 +vn 0.1618 -0.9867 -0.0181 +vn 0.1358 -0.9901 -0.0365 +vn 0.3574 -0.9330 -0.0416 +vn -0.6557 -0.7549 -0.0119 +vn -0.6444 -0.7647 -0.0016 +vn -0.9230 -0.3848 -0.0098 +vn 0.7389 -0.6737 -0.0098 +vn 0.6693 -0.7391 -0.0759 +vn -0.8067 -0.5905 -0.0244 +vn -0.9857 -0.1681 -0.0156 +vn -0.9902 -0.1337 -0.0393 +vn 0.9858 0.1557 -0.0626 +vn 0.9836 0.0578 -0.1710 +vn 0.9769 0.2101 -0.0388 +vn 0.9812 0.0010 -0.1927 +vn -0.6992 0.7129 -0.0534 +vn -0.7600 0.6498 0.0135 +vn -0.1574 0.9871 -0.0298 +vn 0.2710 0.9603 -0.0664 +vn 0.6241 0.7813 0.0070 +vn 0.3932 0.9096 -0.1344 +vn -0.3009 0.9476 -0.1073 +vn -0.0003 0.0012 -1.0000 +vn -0.0004 0.0048 -1.0000 +vn 0.0040 0.0020 -1.0000 +vn -0.0053 0.0013 -1.0000 +vn -0.0027 0.0051 -1.0000 +vn -0.0009 -0.0015 -1.0000 +vn -0.0102 0.0000 -0.9999 +vn 0.0008 -0.0053 -1.0000 +vn 0.0050 -0.0111 -0.9999 +vn -0.0012 0.0037 -1.0000 +vn 0.0010 -0.0072 -1.0000 +vn 0.3214 -0.9464 0.0336 +vn -0.1972 -0.9804 0.0036 +vn 0.0628 -0.9978 -0.0223 +vn 0.3069 -0.9515 0.0216 +vn -0.4211 -0.9040 -0.0736 +vn -0.5624 -0.8266 0.0222 +vn -0.9768 -0.1899 -0.0989 +vn -0.9809 -0.1407 -0.1344 +vn -0.9642 0.2502 -0.0881 +vn 0.9603 -0.2782 -0.0230 +vn 0.9680 -0.2507 0.0038 +vn 0.9530 -0.3010 -0.0344 +vn 0.9737 -0.2274 0.0155 +vn -0.9711 0.2239 -0.0827 +vn -0.5614 0.8261 -0.0496 +vn 0.7232 0.6901 -0.0286 +vn 0.7066 0.7076 -0.0055 +vn 0.7356 0.6765 -0.0367 +vn 0.6935 0.7205 0.0026 +vn -0.5605 0.8263 -0.0549 +vn -0.1649 0.9861 -0.0218 +vn -0.1354 0.9899 -0.0411 +vn -0.3643 -0.8919 0.2680 +vn -0.4948 -0.8644 0.0893 +vn -0.6733 -0.7135 0.1940 +vn -0.6678 -0.7191 0.1923 +vn 0.7353 -0.2964 -0.6095 +vn -0.9908 0.0543 0.1236 +vn -0.9731 0.1963 0.1205 +vn -0.9078 0.3767 -0.1846 +vn 0.8005 0.2628 0.5386 +vn -0.9350 0.2510 -0.2505 +vn 0.6186 0.5585 -0.5526 +vn -0.5944 0.8020 0.0586 +vn -0.3709 0.9076 0.1966 +vn -0.0715 0.9743 -0.2137 +vn 0.3025 0.8750 0.3781 +vn -0.1920 0.8944 -0.4040 +vn 0.0159 -0.0222 0.9996 +vn 0.0440 -0.0523 0.9977 +vn 0.0264 -0.1544 0.9877 +vn -0.0305 -0.0128 0.9995 +vn 0.0139 -0.1340 0.9909 +vn -0.0258 0.0284 0.9993 +vn 0.0232 0.0307 0.9993 +vn 0.0002 0.0391 0.9992 +vn -0.0375 -0.0127 0.9992 +vn -0.0138 -0.0460 0.9988 +vn 0.0317 0.0191 0.9993 +vn -0.0037 0.0392 0.9992 +vn -0.2517 -0.9215 0.2958 +vn -0.2242 -0.8753 0.4286 +vn -0.7477 -0.5802 0.3229 +vn 0.2436 -0.9306 -0.2732 +vn 0.6221 -0.5971 0.5065 +vn 0.6337 -0.5963 0.4928 +vn 0.6336 -0.5935 0.4963 +vn -0.8935 -0.4484 0.0249 +vn -0.9953 0.0604 -0.0762 +vn 0.6231 -0.5953 0.5073 +vn -0.9669 -0.1604 -0.1982 +vn 0.9273 0.2936 0.2320 +vn 0.9953 0.0799 -0.0554 +vn 0.8841 0.4418 0.1521 +vn 0.9619 0.2139 -0.1701 +vn -0.8386 0.5272 0.1373 +vn -0.7236 0.6522 0.2257 +vn -0.5301 0.8363 -0.1399 +vn -0.6540 0.7205 -0.2305 +vn 0.2042 0.9516 0.2296 +vn 0.4620 0.8760 -0.1383 +vn 0.0379 0.9897 0.1383 +vn 0.2990 0.9262 -0.2296 +vn 0.0139 -0.0515 0.9986 +vn -0.0280 -0.0319 0.9991 +vn 0.0548 -0.0096 0.9985 +vn -0.0510 0.0094 0.9987 +vn 0.0309 0.0436 0.9986 +vn -0.0200 0.0488 0.9986 +vn 0.0005 0.0012 1.0000 +vn 0.0001 0.0032 1.0000 +vn 0.0026 0.0052 1.0000 +vn -0.0014 -0.0006 1.0000 +vn -0.0035 0.0008 1.0000 +vn -0.0010 0.0003 1.0000 +vn -0.0014 -0.0004 1.0000 +vn -0.0016 -0.0006 1.0000 +vn -0.0007 0.0012 1.0000 +vn -0.0038 -0.0029 1.0000 +vn 0.0024 0.0025 1.0000 +vn 0.0016 0.0010 1.0000 +vn 0.0005 0.0008 1.0000 +vn 0.0000 0.0003 1.0000 +vn -0.0004 0.0007 1.0000 +vn -0.0019 0.0096 1.0000 +vn 0.0029 0.0036 1.0000 +vn -0.0003 0.0010 1.0000 +vn -0.0006 -0.0003 1.0000 +vn -0.0002 -0.0046 1.0000 +vn 0.0092 -0.0057 0.9999 +vn -0.0026 -0.0018 1.0000 +vn -0.0050 -0.0054 1.0000 +vn 0.3030 -0.9460 0.1153 +vn 0.3215 -0.9366 0.1390 +vn 0.3232 -0.9346 0.1487 +vn 0.3055 -0.9462 0.1064 +vn -0.7382 -0.6746 0.0071 +vn -0.3490 -0.9349 -0.0650 +vn -0.9525 -0.2658 0.1486 +vn -0.3709 -0.9098 -0.1865 +vn 0.9995 -0.0331 -0.0003 +vn 0.9163 -0.3995 -0.0272 +vn 0.9221 -0.3767 -0.0883 +vn 0.9523 0.2664 0.1490 +vn -0.9995 0.0328 -0.0005 +vn -0.9162 0.3998 -0.0275 +vn 0.7380 0.6748 0.0071 +vn -0.9220 0.3768 -0.0885 +vn 0.3484 0.9351 -0.0650 +vn -0.3030 0.9460 0.1153 +vn -0.3055 0.9462 0.1065 +vn -0.3215 0.9366 0.1391 +vn 0.3714 0.9095 -0.1867 +vn -0.3231 0.9346 0.1486 +vn -0.0012 0.0054 1.0000 +vn 0.0019 0.0038 1.0000 +vn -0.0056 0.0058 1.0000 +vn 0.0003 0.0010 1.0000 +vn -0.0011 0.0004 1.0000 +vn -0.0012 0.0006 1.0000 +vn -0.0041 -0.0016 1.0000 +vn -0.0016 0.0018 1.0000 +vn -0.0015 0.0009 1.0000 +vn 0.0053 0.0032 1.0000 +vn -0.0015 -0.0023 1.0000 +vn 0.0006 0.0006 1.0000 +usemtl material +s off +f 1231/1/1 578/2/2 575/3/3 1229/4/4 +f 51/5/5 40/6/6 1234/7/7 +s 1 +f 1969/8/8 1836/9/9 1/10/10 +f 4/11/11 1836/9/9 1969/8/8 +f 1/10/10 1836/9/9 5/12/12 +f 6/13/13 1836/9/9 4/11/11 +f 9/14/14 6/13/13 4/11/11 +f 4/11/11 1969/8/8 1910/15/15 +f 1969/8/8 1/10/10 1359/16/16 +f 5/12/12 1099/17/17 12/18/18 +f 1875/19/19 7/20/20 8/21/21 +f 1876/22/22 7/20/20 1875/19/19 +f 9/14/14 4/11/11 1770/23/23 +f 1359/16/16 1/10/10 16/24/24 +f 1770/23/23 4/11/11 1910/15/15 +f 1361/25/25 1359/16/16 16/24/24 +f 1877/26/26 1875/19/19 8/21/21 +f 942/27/27 5/12/12 12/18/18 +f 16/24/24 1/10/10 5/12/12 +f 21/28/28 1770/23/23 1771/29/29 +f 9/14/14 1770/23/23 21/28/28 +f 1877/26/26 8/21/21 23/30/30 +f 23/30/30 8/21/21 9/14/14 +f 1878/31/31 1361/25/25 16/24/24 +f 21/28/28 1771/29/29 25/32/32 +f 25/32/32 1771/29/29 1878/31/31 +f 25/32/32 1878/31/31 16/24/24 +f 26/33/33 942/27/27 943/34/34 +f 5/12/12 942/27/27 26/33/33 +f 28/35/35 1877/26/26 29/36/36 +f 29/36/36 1877/26/26 23/30/30 +f 9/14/14 21/28/28 25/32/32 +f 26/33/33 943/34/34 944/37/37 +f 1530/38/38 28/35/35 29/36/36 +f 26/33/33 944/37/37 1234/39/39 +f 5/12/12 26/33/33 33/40/40 +f 34/41/41 5/12/12 33/40/40 +f 16/24/24 5/12/12 34/41/41 +f 35/42/42 16/24/24 34/41/41 +f 25/32/32 16/24/24 35/42/42 +f 9/14/14 25/32/32 23/30/30 +f 29/36/36 23/30/30 36/43/43 +f 1840/44/44 33/40/40 26/33/33 +f 36/43/43 23/30/30 1116/45/45 +f 35/42/42 34/41/41 33/40/40 +f 29/36/36 36/43/43 1531/46/46 +f 26/33/33 1234/39/39 1236/47/47 +f 1235/48/48 32/49/49 41/50/50 +f 43/51/51 42/52/52 29/36/36 +f 1146/53/53 26/33/33 1236/47/47 +f 33/40/40 1840/44/44 1147/54/54 +f 35/42/42 33/40/40 1147/54/54 +f 1120/55/55 35/42/42 1147/54/54 +f 25/32/32 35/42/42 1120/55/55 +f 1636/56/56 23/30/30 25/32/32 +f 1118/57/57 1116/45/45 23/30/30 +f 49/58/58 29/36/36 1531/46/46 +f 43/51/51 29/36/36 49/58/58 +f 42/52/52 43/51/51 50/59/59 +f 1235/48/48 41/50/50 2015/60/60 +f 52/61/61 42/52/52 50/59/59 +f 53/62/62 52/61/61 54/63/63 +f 1537/64/64 1236/47/47 51/65/65 +f 56/66/66 49/58/58 1531/46/46 +f 54/63/63 50/59/59 56/66/66 +f 52/61/61 50/59/59 54/63/63 +f 1146/53/53 1236/47/47 1537/64/64 +f 54/63/63 56/66/66 1531/46/46 +f 1537/64/64 51/65/65 57/67/67 +f 1636/56/56 25/32/32 1122/68/68 +f 1122/68/68 25/32/32 1120/55/55 +f 23/30/30 1636/56/56 59/69/69 +f 1712/70/70 23/30/30 59/69/69 +f 1146/53/53 1537/64/64 61/71/71 +f 1147/54/54 1146/53/53 61/71/71 +f 1120/55/55 1147/54/54 61/71/71 +f 54/63/63 1712/70/70 1201/72/72 +f 23/30/30 1712/70/70 54/63/63 +f 1118/57/57 23/30/30 54/63/63 +f 1531/46/46 1118/57/57 54/63/63 +f 63/73/73 53/62/62 54/63/63 +f 1203/74/74 1120/55/55 61/71/71 +f 54/63/63 1203/74/74 61/71/71 +f 54/63/63 1201/72/72 1203/74/74 +f 1972/75/75 63/73/73 54/63/63 +f 1059/76/76 63/73/73 1972/75/75 +f 1537/64/64 67/77/77 68/78/78 +f 69/79/79 63/73/73 1059/76/76 +f 61/71/71 1537/64/64 1775/80/80 +f 1310/81/81 1972/75/75 54/63/63 +f 61/71/71 1775/80/80 1777/82/82 +f 961/83/83 1310/81/81 54/63/63 +f 74/84/84 61/71/71 1777/82/82 +f 1375/85/85 1643/86/85 1239/87/85 +f 1237/88/86 1644/89/86 1240/90/86 +f 1241/91/87 1645/92/88 1713/93/89 +f 81/94/90 76/95/90 77/96/90 +f 1241/91/87 1713/93/89 1911/97/91 +f 963/98/92 1373/99/92 966/100/92 +f 1912/101/93 80/102/94 969/103/95 +f 969/103/95 80/102/94 964/104/96 +f 970/105/97 83/106/97 967/107/97 +f 1124/108/98 1129/109/98 1126/110/98 +f 86/111/99 1130/112/99 1242/113/99 +f 1243/114/100 1131/115/101 1244/116/89 +f 972/117/102 1125/118/102 1127/119/102 +f 1243/114/100 1244/116/89 1716/120/91 +f 1941/121/103 85/122/103 90/123/103 +f 1717/124/104 89/125/105 93/126/106 +f 93/126/106 89/125/105 1939/127/107 +f 974/128/108 92/129/108 971/130/108 +f 96/131/109 95/132/110 1974/133/111 +f 1648/134/112 95/132/110 96/131/109 +f 1718/135/113 1133/136/114 1134/137/115 +f 1975/138/116 1133/136/114 1718/135/113 +f 1999/139/117 97/140/118 1246/141/119 +f 1248/142/120 1999/139/117 1246/141/119 +f 1719/143/121 1136/144/121 1381/145/121 +f 1384/146/122 100/147/123 101/148/124 +f 102/149/125 99/150/125 1383/151/125 +f 1382/152/126 1384/146/122 101/148/124 +f 1251/153/127 1137/154/128 1829/155/129 +f 1829/155/129 1137/154/128 1650/156/130 +f 1650/156/130 1137/154/128 1138/157/131 +f 1723/158/132 1251/153/127 1829/155/129 +f 1546/159/133 1251/153/127 1723/158/132 +f 1650/156/130 1138/157/131 1651/160/134 +f 1252/161/135 1250/162/136 1725/163/137 +f 1725/163/137 1250/162/136 110/164/138 +f 111/165/139 1139/166/140 984/167/141 +f 111/165/139 984/167/141 1955/168/142 +f 1955/168/142 984/167/141 985/169/143 +f 1547/170/144 1253/171/145 1655/172/146 +f 1655/172/146 1253/171/145 1726/173/147 +f 985/169/143 1548/174/148 119/175/149 +f 119/175/149 1548/174/148 118/176/150 +f 1955/168/142 985/169/143 119/175/149 +f 2018/177/151 1396/178/152 1395/179/153 +f 1942/180/154 1396/178/152 2018/177/151 +f 2018/177/151 1395/179/153 987/181/155 +f 1844/182/156 1396/178/152 1942/180/154 +f 1846/183/157 1396/178/152 1844/182/156 +f 987/181/155 1395/179/153 988/184/158 +f 988/184/158 1395/179/153 1549/185/159 +f 988/184/158 1549/185/159 1145/186/160 +f 1145/186/160 1549/185/159 1661/187/161 +f 1868/188/162 126/189/163 125/190/164 +f 1914/191/165 126/189/163 1868/188/162 +f 1145/186/160 1661/187/161 990/192/166 +f 989/193/167 130/194/168 1781/195/169 +f 1781/195/169 132/196/170 1869/197/171 +f 991/198/172 1781/195/169 1869/197/171 +f 989/193/167 1781/195/169 991/198/172 +f 140/199/173 1808/200/174 141/201/175 +f 993/202/176 994/203/177 144/204/178 +f 146/205/179 140/199/173 141/201/175 +f 949/206/180 140/199/173 146/205/179 +f 141/201/175 993/202/176 144/204/178 +f 141/201/175 144/204/178 1506/207/181 +f 1149/208/182 996/209/183 997/210/184 +f 153/211/185 996/209/183 1149/208/182 +f 154/212/186 1333/213/187 156/214/188 +f 154/212/186 156/214/188 157/215/189 +f 158/216/190 160/217/191 2021/218/192 +f 161/219/193 158/216/190 2021/218/192 +f 1150/220/194 998/221/194 1152/222/194 +f 1989/223/195 1404/224/196 1406/225/197 +f 1853/226/198 159/227/198 164/228/198 +f 1700/229/199 1701/230/200 1915/231/201 +f 1915/231/201 1701/230/200 168/232/202 +f 1555/233/203 168/232/202 170/234/204 +f 1915/231/201 168/232/202 1555/233/203 +f 1700/229/199 1915/231/201 999/235/205 +f 1001/236/206 1555/233/203 170/234/204 +f 173/237/207 1001/236/206 170/234/204 +f 1700/229/199 999/235/205 173/237/207 +f 173/237/207 999/235/205 1001/236/206 +f 1958/238/208 1156/239/209 1154/240/210 +f 954/241/211 1958/238/208 1154/240/210 +f 1990/242/212 1259/243/213 1257/244/214 +f 1990/242/212 1257/244/214 1261/245/215 +f 1586/246/216 186/247/217 1943/248/218 +f 1408/249/219 186/247/217 1586/246/216 +f 1704/250/220 189/251/221 1960/252/222 +f 1260/253/223 189/251/221 1704/250/220 +f 1704/250/220 1960/252/222 1603/254/224 +f 1603/254/224 1960/252/222 1605/255/225 +f 1003/256/226 1005/257/227 1992/258/228 +f 1003/256/226 1992/258/228 1944/259/229 +f 1014/260/230 197/261/231 1762/262/232 +f 1514/263/233 194/264/234 199/265/235 +f 1514/263/233 199/265/235 1515/266/236 +f 1515/266/236 199/265/235 201/267/237 +f 1516/268/238 201/267/237 1607/269/239 +f 1607/269/239 201/267/237 203/270/240 +f 207/271/241 194/264/234 1514/263/233 +f 1607/269/239 203/270/240 204/272/242 +f 1607/269/239 204/272/242 196/273/243 +f 1608/274/244 1606/275/245 1763/276/246 +f 1604/277/247 1606/275/245 1608/274/244 +f 1763/276/246 1606/275/245 1706/278/248 +f 1763/276/246 1706/278/248 1724/279/249 +f 1724/279/249 1706/278/248 1545/280/250 +f 1656/281/251 1762/262/232 197/261/231 +f 1409/282/252 119/175/149 118/176/150 +f 183/283/253 1962/284/254 1004/285/255 +f 1004/285/255 1962/284/254 1006/286/256 +f 1006/286/256 1962/284/254 1160/287/257 +f 1006/286/256 1160/287/257 1264/288/258 +f 1264/288/258 1160/287/257 1610/289/259 +f 207/271/241 1161/290/260 194/264/234 +f 1961/291/261 1161/290/260 207/271/241 +f 1882/292/262 1160/287/257 1920/293/263 +f 1920/293/263 1160/287/257 1161/290/260 +f 1920/293/263 1161/290/260 1961/291/261 +f 191/294/264 1961/291/261 207/271/241 +f 1302/295/265 1017/296/266 1014/260/230 +f 215/297/267 1032/298/268 1963/299/269 +f 204/272/242 1032/298/268 1303/300/270 +f 1303/300/270 1032/298/268 215/297/267 +f 196/273/243 204/272/242 1303/300/270 +f 1611/301/271 1613/302/272 220/303/273 +f 1611/301/271 220/303/273 224/304/274 +f 1921/305/275 1157/306/276 1615/307/277 +f 1416/308/278 1921/305/275 1615/307/277 +f 1416/308/278 1615/307/277 1418/309/279 +f 1617/310/280 1886/311/281 1614/312/282 +f 1612/313/283 1617/310/280 1614/312/282 +f 217/314/284 1764/315/285 1302/295/265 +f 1302/295/265 1764/315/285 1017/296/266 +f 234/316/286 231/317/287 1421/318/288 +f 235/319/289 234/316/286 1421/318/288 +f 236/320/290 234/316/286 235/319/289 +f 1995/321/291 236/320/290 235/319/289 +f 238/322/292 236/320/290 1995/321/291 +f 239/323/293 238/322/292 1995/321/291 +f 1963/299/269 238/322/292 239/323/293 +f 1032/298/268 238/322/292 1963/299/269 +f 1164/324/294 1417/325/295 1419/326/296 +f 232/327/297 1417/325/295 1164/324/294 +f 124/328/298 232/327/297 1164/324/294 +f 1518/329/299 232/327/297 124/328/298 +f 1619/330/300 1167/331/301 1887/332/302 +f 1889/333/303 1167/331/301 1619/330/300 +f 223/334/304 1167/331/301 1166/335/305 +f 1887/332/302 1167/331/301 223/334/304 +f 1267/336/306 1889/333/303 1619/330/300 +f 1267/336/306 1619/330/300 1268/337/307 +f 1421/318/288 231/317/287 1996/338/308 +f 1421/318/288 1996/338/308 226/339/309 +f 226/339/309 1889/333/303 1425/340/310 +f 1996/338/308 1889/333/303 226/339/309 +f 1425/340/310 1889/333/303 1267/336/306 +f 1427/341/311 1425/340/310 1267/336/306 +f 1421/318/288 226/339/309 227/342/312 +f 1487/343/313 251/344/314 249/345/315 +f 250/346/316 254/347/317 253/348/318 +f 1487/343/313 249/345/315 250/346/316 +f 1487/343/313 250/346/316 253/348/318 +f 1610/289/259 1160/287/257 1882/292/262 +f 1855/349/319 1278/350/320 1967/351/321 +f 1967/351/321 1278/350/320 266/352/322 +f 264/353/323 266/352/322 184/354/324 +f 1924/355/325 1266/356/326 211/357/327 +f 1883/358/328 1924/355/325 211/357/327 +f 1279/359/329 265/360/330 189/251/221 +f 1279/359/329 189/251/221 1991/361/331 +f 1991/361/331 189/251/221 1260/253/223 +f 42/52/52 52/61/61 275/362/332 277/363/333 +f 273/364/334 1791/365/335 275/362/332 271/366/336 +f 1510/367/337 276/368/338 274/369/339 270/370/340 +f 274/369/339 276/368/338 272/371/341 +f 1283/372/342 1705/373/343 190/374/344 +f 1609/375/345 1283/372/342 190/374/344 +f 1628/376/346 193/377/347 1265/378/348 +f 192/379/349 193/377/347 1628/376/346 +f 209/380/350 208/381/351 1709/382/352 +f 209/380/350 1709/382/352 212/383/353 +f 1855/349/319 1967/351/321 1919/384/354 +f 188/385/355 1855/349/319 1919/384/354 +f 1836/9/9 6/13/13 280/386/356 +f 280/386/356 6/13/13 281/387/357 +f 1527/388/358 1526/389/359 1857/390/360 +f 1297/391/361 1746/392/362 1748/393/363 +f 1296/394/364 1109/395/365 1407/396/366 +f 1292/397/367 2020/398/368 1295/399/369 +f 1954/400/370 1293/401/371 1296/394/364 +f 1452/402/372 1929/403/373 1580/404/374 +f 1578/405/375 1198/406/376 1575/407/377 +f 163/408/378 1405/409/379 1815/410/380 +f 262/411/381 1989/223/195 1406/225/197 +f 1931/412/382 341/413/383 1304/414/384 +f 1864/415/385 354/416/386 353/417/387 +f 1864/415/385 353/417/387 355/418/388 +f 1755/419/389 1458/420/390 1805/421/391 +f 1197/422/392 1199/423/393 1678/424/394 +f 325/425/395 360/426/396 326/427/397 +f 361/428/398 1053/429/399 1051/430/400 +f 323/431/401 361/428/398 1051/430/400 +f 1892/432/402 1054/433/403 1057/434/404 +f 1892/432/402 1057/434/404 1441/435/405 +f 1588/436/406 367/437/407 1817/438/408 +f 1817/438/408 367/437/407 369/439/409 +f 1686/440/410 370/441/411 1902/442/412 +f 1686/440/410 1902/442/412 1792/443/413 +f 374/444/414 376/445/415 375/446/416 +f 374/444/414 377/447/417 376/445/415 +f 1210/448/418 377/447/417 374/444/414 +f 379/449/419 380/450/420 1816/451/421 +f 1689/452/422 379/449/419 1816/451/421 +f 1278/350/320 1689/452/422 266/352/322 +f 266/352/322 1689/452/422 1816/451/421 +f 382/453/423 384/454/424 1756/455/425 +f 385/456/426 1068/457/427 1067/458/428 +f 1949/459/429 385/456/426 1067/458/428 +f 206/460/430 374/444/414 375/446/416 +f 389/461/431 961/83/83 390/462/432 +f 962/463/433 961/83/83 389/461/431 +f 199/265/235 1899/464/434 201/267/237 +f 201/267/237 1899/464/434 1106/465/435 +f 203/270/240 1106/465/435 962/463/433 +f 201/267/237 1106/465/435 203/270/240 +f 203/270/240 962/463/433 389/461/431 +f 63/73/73 1899/464/434 199/265/235 +f 194/264/234 63/73/73 199/265/235 +f 396/466/436 394/467/437 1593/468/438 +f 393/469/439 394/467/437 396/466/436 +f 1824/470/440 393/469/439 396/466/436 +f 1318/471/441 393/469/439 1824/470/440 +f 1696/472/442 1810/473/443 1562/474/444 +f 1219/475/445 401/476/446 404/477/447 +f 402/478/448 401/476/446 1219/475/445 +f 407/479/449 384/454/424 382/453/423 +f 405/480/450 384/454/424 407/479/449 +f 1484/481/451 405/480/450 407/479/449 +f 1759/482/452 405/480/450 1484/481/451 +f 1756/455/425 409/483/453 411/484/454 +f 411/484/454 409/483/453 412/485/455 +f 412/485/455 409/483/453 410/486/456 +f 412/485/455 410/486/456 413/487/457 +f 413/487/457 410/486/456 1759/482/452 +f 2011/488/458 1567/489/459 1075/490/460 +f 2009/491/461 276/368/338 1906/492/462 +f 2009/491/461 1076/493/463 419/494/464 +f 272/371/341 276/368/338 2009/491/461 +f 1075/490/460 1475/495/465 420/496/466 +f 420/496/466 1475/495/465 1476/497/467 +f 425/498/468 421/499/469 2001/500/470 +f 1212/501/471 377/447/417 1210/448/418 +f 423/502/472 377/447/417 1212/501/471 +f 1320/503/473 423/502/472 1212/501/471 +f 2001/500/470 423/502/472 1320/503/473 +f 425/498/468 2001/500/470 1320/503/473 +f 422/504/474 421/499/469 425/498/468 +f 1785/505/475 1478/506/476 1477/507/477 +f 1552/508/478 1478/506/476 1785/505/475 +f 1553/509/479 429/510/480 1554/511/481 +f 428/512/482 429/510/480 1553/509/479 +f 434/513/483 430/514/484 431/515/485 +f 435/516/486 434/513/483 431/515/485 +f 436/517/487 434/513/483 435/516/486 +f 1730/518/488 434/513/483 436/517/487 +f 1216/519/489 1559/520/490 1663/521/491 +f 1327/522/492 1560/523/493 442/524/494 +f 1330/525/495 1732/526/496 447/527/497 +f 1932/528/498 448/529/499 1481/530/500 +f 1734/531/501 451/532/502 1334/533/503 +f 452/534/504 371/535/505 1735/536/506 +f 373/537/507 371/535/505 452/534/504 +f 160/217/191 173/237/207 170/234/204 +f 160/217/191 170/234/204 1933/538/508 +f 170/234/204 168/232/202 454/539/509 +f 453/540/510 170/234/204 454/539/509 +f 456/541/511 1591/542/512 458/543/513 +f 397/544/514 1591/542/512 456/541/511 +f 1055/545/515 460/546/516 459/547/517 +f 1055/545/515 459/547/517 365/548/518 +f 365/548/518 459/547/517 1784/549/519 +f 156/214/188 451/532/502 370/441/411 +f 156/214/188 370/441/411 461/550/520 +f 336/551/521 1736/552/522 372/553/523 +f 1815/410/380 1736/552/522 336/551/521 +f 461/550/520 1736/552/522 1815/410/380 +f 1485/554/524 1483/555/525 407/479/449 +f 1217/556/526 1215/557/526 1214/558/526 +f 318/559/527 403/560/528 465/561/529 +f 1258/562/530 1074/563/531 1262/564/532 +f 467/565/533 1832/566/534 468/567/535 +f 1788/568/536 1786/569/536 469/570/536 +f 1564/571/537 317/572/538 316/573/539 +f 470/574/540 1563/575/540 1187/576/540 +f 281/387/357 9/14/14 254/347/317 +f 9/14/14 8/21/21 254/347/317 +f 254/347/317 8/21/21 255/577/541 +f 1789/578/542 1530/38/38 277/363/333 +f 277/363/333 1530/38/38 29/36/36 +f 472/579/543 1790/580/544 473/581/545 +f 473/581/545 1790/580/544 1791/365/335 +f 472/579/543 473/581/545 263/582/546 +f 455/583/547 53/62/62 63/73/73 +f 455/583/547 63/73/73 194/264/234 +f 1161/290/260 455/583/547 194/264/234 +f 389/461/431 390/462/432 204/272/242 +f 203/270/240 389/461/431 204/272/242 +f 1220/584/548 1949/459/429 1067/458/428 +f 1220/584/548 1067/458/428 1315/585/549 +f 1220/584/548 1315/585/549 1409/282/252 +f 1315/585/549 1955/168/142 119/175/149 +f 1409/282/252 1315/585/549 119/175/149 +f 1222/586/550 1220/584/548 1409/282/252 +f 1978/587/551 1341/588/552 1339/589/553 +f 479/590/554 1341/588/552 1978/587/551 +f 1491/591/555 38/592/556 1119/593/557 +f 1491/591/555 1119/593/557 433/594/558 +f 433/594/558 1119/593/557 432/595/559 +f 1323/596/560 1117/597/561 1490/598/562 +f 1321/599/563 1117/597/561 1323/596/560 +f 456/541/511 457/600/564 1443/601/565 +f 481/602/566 1305/603/567 1494/604/568 +f 1304/414/384 1305/603/567 481/602/566 +f 1495/605/569 1304/414/384 481/602/566 +f 1931/412/382 1304/414/384 1495/605/569 +f 484/606/570 1931/412/382 1495/605/569 +f 1931/412/382 484/606/570 1934/607/571 +f 1077/608/572 1931/412/382 1934/607/571 +f 1224/609/573 1077/608/572 1934/607/571 +f 1430/610/574 1077/608/572 1224/609/573 +f 1224/609/573 1934/607/571 1486/611/575 +f 1445/612/576 1430/610/574 1221/613/577 +f 1221/613/577 1430/610/574 1224/609/573 +f 1862/614/578 1224/609/573 1486/611/575 +f 107/615/579 1344/616/580 1830/617/581 +f 1345/618/582 1344/616/580 107/615/579 +f 1486/611/575 1345/618/582 107/615/579 +f 1486/611/575 107/615/579 1652/619/583 +f 1862/614/578 1486/611/575 1652/619/583 +f 475/620/584 1445/612/576 1221/613/577 +f 115/621/585 1862/614/578 1652/619/583 +f 1316/622/586 1862/614/578 115/621/585 +f 1432/623/587 1078/624/588 1429/625/589 +f 1080/626/590 1078/624/588 1432/623/587 +f 1198/406/376 1052/627/591 1575/407/377 +f 1578/405/375 1575/407/377 1227/628/592 +f 1929/403/373 334/629/593 1580/404/374 +f 1408/249/219 1586/246/216 1587/630/594 +f 182/631/595 1408/249/219 1587/630/594 +f 182/631/595 1587/630/594 368/632/596 +f 1482/633/597 1479/634/598 466/635/599 +f 466/635/599 1479/634/598 1488/636/600 +f 1338/637/601 1980/638/602 1336/639/603 +f 1347/640/604 1980/638/602 1338/637/601 +f 468/567/535 1832/566/534 1347/640/604 +f 468/567/535 1347/640/604 1338/637/601 +f 1981/641/605 478/642/606 1660/643/607 +f 1981/641/605 1660/643/607 320/644/608 +f 1574/645/609 1319/646/610 1317/647/611 +f 1572/648/612 1319/646/610 1574/645/609 +f 1186/649/613 402/478/448 1219/475/445 +f 1186/649/613 1219/475/445 1188/650/614 +f 1328/651/615 1782/652/616 1664/653/617 +f 1328/651/615 1664/653/617 441/654/618 +f 2020/398/368 1933/538/508 1295/399/369 +f 160/217/191 1933/538/508 2020/398/368 +f 297/655/619 453/540/510 454/539/509 +f 297/655/619 454/539/509 298/656/620 +f 295/657/621 420/496/466 1079/658/622 +f 1079/658/622 420/496/466 1476/497/467 +f 295/657/621 1079/658/622 1081/659/623 +f 450/660/624 155/661/625 1989/223/195 +f 1431/662/626 450/660/624 1989/223/195 +f 262/411/381 1431/662/626 1989/223/195 +f 1327/522/492 442/524/494 302/663/627 +f 1326/664/628 1327/522/492 302/663/627 +f 362/665/629 360/426/396 325/425/395 +f 324/666/630 362/665/629 325/425/395 +f 332/667/631 358/668/632 333/669/633 +f 333/669/633 358/668/632 359/670/634 +f 316/573/539 398/671/635 395/672/636 +f 1696/472/442 1562/474/444 1564/571/537 +f 316/573/539 395/672/636 1046/673/637 +f 1535/674/638 1696/472/442 1564/571/537 +f 1564/571/537 316/573/539 1046/673/637 +f 1535/674/638 1564/571/537 1046/673/637 +f 1199/423/393 488/675/639 1677/676/640 +f 1677/676/640 488/675/639 489/677/641 +f 1755/419/389 489/677/641 1458/420/390 +f 1677/676/640 489/677/641 1679/678/642 +f 1679/678/642 489/677/641 1755/419/389 +f 1678/424/394 1199/423/393 1677/676/640 +f 436/517/487 435/516/486 1348/679/643 +f 1348/679/643 435/516/486 431/515/485 +f 1730/518/488 436/517/487 1348/679/643 +f 1350/680/644 1730/518/488 1348/679/643 +f 1348/679/643 431/515/485 1451/681/645 +f 1985/682/646 419/494/464 1747/683/647 +f 1747/683/647 419/494/464 1076/493/463 +f 2009/491/461 419/494/464 1985/682/646 +f 272/371/341 2009/491/461 1985/682/646 +f 1263/684/648 272/371/341 1985/682/646 +f 1454/685/649 354/416/386 306/686/650 +f 1453/687/651 1454/685/649 306/686/650 +f 306/686/650 354/416/386 352/688/652 +f 1774/689/653 1457/690/654 305/691/655 +f 305/691/655 1457/690/654 1459/692/656 +f 1806/693/657 1457/690/654 1774/689/653 +f 295/657/621 416/694/658 420/496/466 +f 293/695/659 416/694/658 295/657/621 +f 1216/519/489 1663/521/491 1213/696/660 +f 1213/696/660 1663/521/491 1298/697/661 +f 350/698/662 1330/525/495 447/527/497 +f 348/699/663 1330/525/495 350/698/662 +f 294/700/664 439/701/665 1751/702/666 +f 1751/702/666 439/701/665 1783/703/667 +f 1447/704/668 1331/705/669 1448/706/670 +f 1448/706/670 1331/705/669 1329/707/671 +f 1752/708/672 440/709/673 443/710/674 +f 1752/708/672 443/710/674 301/711/675 +f 1405/409/379 156/214/188 461/550/520 +f 1405/409/379 461/550/520 1815/410/380 +f 396/466/436 1593/468/438 1042/712/676 +f 1042/712/676 1593/468/438 1043/713/677 +f 1825/714/678 396/466/436 1042/712/676 +f 1045/715/679 1825/714/678 1042/712/676 +f 1897/716/680 363/717/681 492/718/682 +f 322/719/683 492/718/682 361/428/398 +f 1897/716/680 492/718/682 322/719/683 +f 322/719/683 361/428/398 1801/720/684 +f 378/721/685 374/444/414 206/460/430 +f 1737/722/686 383/723/687 1493/724/688 +f 1343/725/689 1737/722/686 1493/724/688 +f 1306/726/690 378/721/685 206/460/430 +f 109/727/691 1343/725/689 1493/724/688 +f 109/727/691 1306/726/690 206/460/430 +f 1493/724/688 1306/726/690 109/727/691 +f 105/728/692 1343/725/689 109/727/691 +f 493/729/693 1793/730/694 494/731/695 +f 494/731/695 1793/730/694 1497/732/696 +f 1497/732/696 1793/730/694 1794/733/697 +f 1497/732/696 1794/733/697 1082/734/698 +f 1082/734/698 1794/733/697 1565/735/699 +f 1833/736/700 493/729/693 1498/737/701 +f 1498/737/701 493/729/693 494/731/695 +f 1082/734/698 1565/735/699 1083/738/702 +f 1083/738/702 1565/735/699 1566/739/703 +f 1834/740/704 1833/736/700 1950/741/705 +f 1950/741/705 1833/736/700 1498/737/701 +f 1083/738/702 1566/739/703 1226/742/706 +f 1226/742/706 1566/739/703 507/743/707 +f 1870/744/708 1834/740/704 1982/745/709 +f 1982/745/709 1834/740/704 1950/741/705 +f 1226/742/706 507/743/707 1351/746/710 +f 1351/746/710 507/743/707 511/747/711 +f 1907/748/712 1870/744/708 2004/749/713 +f 2004/749/713 1870/744/708 1982/745/709 +f 1351/746/710 511/747/711 1455/750/714 +f 1455/750/714 511/747/711 515/751/715 +f 515/751/715 1907/748/712 1456/752/716 +f 1456/752/716 1907/748/712 2004/749/713 +f 1455/750/714 515/751/715 1456/752/716 +f 495/753/717 1526/389/359 2023/754/718 +f 2003/755/719 1526/389/359 495/753/717 +f 1857/390/360 1526/389/359 2003/755/719 +f 497/756/720 495/753/717 2023/754/718 +f 500/757/721 1857/390/360 2003/755/719 +f 499/758/722 497/756/720 2023/754/718 +f 499/758/722 2023/754/718 1181/759/723 +f 1968/760/724 1857/390/360 500/757/721 +f 504/761/725 1968/760/724 500/757/721 +f 503/762/726 499/758/722 1181/759/723 +f 503/762/726 1181/759/723 1182/763/727 +f 1968/760/724 504/761/725 508/764/728 +f 289/765/729 1968/760/724 508/764/728 +f 1672/766/730 503/762/726 1182/763/727 +f 1740/767/731 1672/766/730 1290/768/732 +f 1290/768/732 1672/766/730 1182/763/727 +f 291/769/733 508/764/728 512/770/734 +f 289/765/729 508/764/728 291/769/733 +f 1795/771/735 1740/767/731 1438/772/736 +f 1438/772/736 1740/767/731 1290/768/732 +f 291/769/733 512/770/734 1795/771/735 +f 1438/772/736 291/769/733 1795/771/735 +f 375/446/416 1074/563/531 1282/773/737 +f 1282/773/737 1074/563/531 1258/562/530 +f 206/460/430 375/446/416 205/774/738 +f 205/774/738 375/446/416 1282/773/737 +f 385/456/426 1596/775/739 1068/457/427 +f 370/441/411 451/532/502 1734/531/501 +f 370/441/411 1734/531/501 1902/442/412 +f 409/483/453 1756/455/425 384/454/424 +f 405/480/450 409/483/453 384/454/424 +f 410/486/456 409/483/453 405/480/450 +f 1759/482/452 410/486/456 405/480/450 +f 517/776/740 459/547/517 460/546/516 +f 517/776/740 460/546/516 518/777/741 +f 519/778/742 521/779/743 520/780/744 +f 522/781/745 380/450/420 379/449/419 +f 1340/782/746 1342/783/747 1346/784/748 +f 1346/784/748 1342/783/747 319/785/749 +f 1787/786/750 1552/508/478 1785/505/475 +f 1489/787/751 446/788/752 1332/789/753 +f 1489/787/751 1332/789/753 347/790/754 +f 1450/791/755 1552/508/478 1787/786/750 +f 1450/791/755 1787/786/750 1489/787/751 +f 1450/791/755 1489/787/751 347/790/754 +f 445/792/756 1480/793/757 444/794/758 +f 444/794/758 1480/793/757 1733/795/759 +f 1733/795/759 1480/793/757 449/796/760 +f 523/797/761 283/798/762 524/799/763 +f 282/800/764 283/798/762 523/797/761 +f 524/799/763 283/798/762 284/801/765 +f 15/802/766 282/800/764 523/797/761 +f 286/803/767 282/800/764 15/802/766 +f 524/799/763 284/801/765 525/804/768 +f 525/804/768 284/801/765 285/805/769 +f 525/804/768 285/805/769 259/806/770 +f 259/806/770 285/805/769 287/807/771 +f 14/808/772 286/803/767 15/802/766 +f 288/809/773 286/803/767 14/808/772 +f 260/810/774 287/807/771 1997/811/775 +f 259/806/770 287/807/771 260/810/774 +f 19/812/776 288/809/773 14/808/772 +f 290/813/777 288/809/773 19/812/776 +f 526/814/778 1997/811/775 472/579/543 +f 472/579/543 1997/811/775 2013/815/779 +f 260/810/774 1997/811/775 526/814/778 +f 1529/816/780 290/813/777 19/812/776 +f 292/817/781 290/813/777 1529/816/780 +f 31/818/782 292/817/781 1529/816/780 +f 472/579/543 2013/815/779 471/819/783 +f 31/818/782 2013/815/779 292/817/781 +f 471/819/783 2013/815/779 31/818/782 +f 1860/820/784 523/797/761 524/799/763 +f 1492/821/785 1756/455/425 411/484/454 +f 1492/821/785 411/484/454 483/822/786 +f 483/822/786 411/484/454 412/485/455 +f 483/822/786 412/485/455 413/487/457 +f 483/822/786 413/487/457 2002/823/787 +f 2002/823/787 413/487/457 1759/482/452 +f 482/824/788 1756/455/425 1492/821/785 +f 2002/823/787 1759/482/452 1935/825/789 +f 344/826/790 1069/827/791 1225/828/792 +f 1225/828/792 1069/827/791 1597/829/793 +f 408/830/794 406/831/795 462/832/796 +f 464/833/797 408/830/794 462/832/796 +f 426/834/798 1211/835/799 338/836/800 +f 338/836/800 1211/835/799 339/837/801 +f 1802/838/802 426/834/798 338/836/800 +f 427/839/803 426/834/798 1802/838/802 +f 340/840/804 427/839/803 1802/838/802 +f 425/498/468 427/839/803 340/840/804 +f 422/504/474 425/498/468 340/840/804 +f 342/841/805 422/504/474 340/840/804 +f 346/842/806 452/534/504 1735/536/506 +f 373/537/507 452/534/504 346/842/806 +f 1223/843/807 373/537/507 346/842/806 +f 346/842/806 1735/536/506 261/844/808 +f 386/845/809 387/846/810 1863/847/811 +f 345/848/812 386/845/809 1863/847/811 +f 485/849/813 407/479/449 463/850/814 +f 463/850/814 407/479/449 382/453/423 +f 1485/554/524 407/479/449 485/849/813 +f 314/851/815 252/852/816 1859/853/817 +f 314/851/815 1859/853/817 1439/854/818 +f 1439/854/818 1859/853/817 311/855/819 +f 1439/854/818 311/855/819 1893/856/820 +f 1592/857/821 456/541/511 1443/601/565 +f 365/548/518 1784/549/519 1898/858/822 +f 1440/859/823 365/548/518 1898/858/822 +f 1044/860/824 1592/857/821 1443/601/565 +f 1442/861/825 1044/860/824 1443/601/565 +f 321/862/826 308/863/827 313/864/828 +f 253/348/318 256/865/829 1860/820/784 +f 326/427/397 360/426/396 527/866/830 +f 527/866/830 1056/867/831 312/868/832 +f 304/869/833 369/439/409 351/870/834 +f 2008/871/835 526/814/778 183/283/253 +f 343/872/836 414/873/837 474/874/838 +f 474/874/838 414/873/837 2019/875/839 +f 474/874/838 2019/875/839 388/876/840 +f 1741/877/841 529/878/842 381/879/843 +f 353/417/387 529/878/842 1741/877/841 +f 1741/877/841 381/879/843 1280/880/844 +f 355/418/388 353/417/387 1741/877/841 +f 1831/881/845 428/512/482 1553/509/479 +f 487/882/846 1553/509/479 477/883/847 +f 1831/881/845 1553/509/479 487/882/846 +f 1932/528/498 1481/530/500 1337/884/848 +f 1804/885/849 1932/528/498 1337/884/848 +f 1349/886/850 1324/887/851 1731/888/852 +f 1659/889/853 1324/887/851 1349/886/850 +f 1335/890/854 1659/889/853 1349/886/850 +f 1337/884/848 1335/890/854 1349/886/850 +f 1804/885/849 1337/884/848 1349/886/850 +f 429/510/480 430/514/484 530/891/855 +f 530/891/855 430/514/484 434/513/483 +f 480/892/856 434/513/483 437/893/857 +f 530/891/855 434/513/483 480/892/856 +f 1554/511/481 530/891/855 480/892/856 +f 429/510/480 530/891/855 1554/511/481 +f 480/892/856 437/893/857 438/894/858 +f 477/883/847 48/895/859 1532/896/860 +f 1553/509/479 48/895/859 477/883/847 +f 477/883/847 1532/896/860 1979/897/861 +f 39/898/862 1322/899/863 1659/889/853 +f 1659/889/853 1322/899/863 1324/887/851 +f 476/900/864 39/898/862 1659/889/853 +f 253/348/318 254/347/317 255/577/541 +f 253/348/318 255/577/541 256/865/829 +f 281/387/357 6/13/13 9/14/14 +f 250/346/316 281/387/357 254/347/317 +f 263/582/546 273/364/334 1161/290/260 +f 1962/284/254 472/579/543 263/582/546 +f 183/283/253 472/579/543 1962/284/254 +f 526/814/778 472/579/543 183/283/253 +f 276/368/338 1510/367/337 1906/492/462 +f 376/445/415 270/370/340 274/369/339 +f 376/445/415 274/369/339 375/446/416 +f 375/446/416 274/369/339 272/371/341 +f 473/581/545 1791/365/335 273/364/334 +f 263/582/546 473/581/545 273/364/334 +f 275/362/332 52/61/61 53/62/62 +f 275/362/332 53/62/62 455/583/547 +f 275/362/332 455/583/547 1161/290/260 +f 271/366/336 275/362/332 1161/290/260 +f 273/364/334 271/366/336 1161/290/260 +f 29/36/36 42/52/52 277/363/333 +f 1475/495/465 1075/490/460 1568/901/865 +f 1568/901/865 1075/490/460 1567/489/459 +f 424/902/866 1510/367/337 423/502/472 +f 423/502/472 1510/367/337 270/370/340 +f 1475/495/465 1510/367/337 424/902/866 +f 1352/903/867 1510/367/337 1475/495/465 +f 423/502/472 270/370/340 377/447/417 +f 377/447/417 270/370/340 376/445/415 +f 1475/495/465 1568/901/865 1354/904/868 +f 1354/904/868 1352/903/867 1475/495/465 +f 278/905/869 180/906/870 187/907/871 +f 179/908/872 180/906/870 278/905/869 +f 184/354/324 266/352/322 1816/451/421 +f 184/354/324 1816/451/421 366/909/873 +f 1993/910/874 264/353/323 185/911/875 +f 185/911/875 264/353/323 184/354/324 +f 214/912/876 264/353/323 1629/913/877 +f 1629/913/877 264/353/323 1993/910/874 +f 213/914/878 214/912/876 1629/913/877 +f 213/914/878 1629/913/877 1925/915/879 +f 267/916/880 279/917/880 210/918/880 +f 268/919/881 1689/452/422 1278/350/320 +f 259/806/770 260/810/774 258/920/882 +f 1860/820/784 524/799/763 536/921/883 +f 536/921/883 524/799/763 537/922/884 +f 537/922/884 524/799/763 525/804/768 +f 537/922/884 525/804/768 538/923/885 +f 538/923/885 525/804/768 259/806/770 +f 326/427/397 527/866/830 1228/924/886 +f 1228/924/886 527/866/830 312/868/832 +f 260/810/774 526/814/778 1798/925/887 +f 1798/925/887 526/814/778 2008/871/835 +f 1502/926/888 369/439/409 304/869/833 +f 357/927/889 1582/928/890 1579/929/891 +f 1581/930/892 357/927/889 1579/929/891 +f 1817/438/408 369/439/409 1502/926/888 +f 1228/924/886 312/868/832 1084/931/893 +f 1085/932/894 1860/820/784 536/921/883 +f 1084/931/893 1860/820/784 1085/932/894 +f 312/868/832 1860/820/784 1084/931/893 +f 538/923/885 259/806/770 258/920/882 +f 1938/933/895 1817/438/408 1502/926/888 +f 2008/871/835 1817/438/408 1938/933/895 +f 1798/925/887 2008/871/835 1938/933/895 +f 545/934/896 1580/404/374 1578/405/375 +f 1951/935/897 1580/404/374 545/934/896 +f 1501/936/898 1580/404/374 1951/935/897 +f 1452/402/372 1580/404/374 1501/936/898 +f 258/920/882 260/810/774 1798/925/887 +f 545/934/896 1227/628/592 539/937/899 +f 1578/405/375 1227/628/592 545/934/896 +f 547/938/900 1499/939/900 540/940/900 +f 1500/941/900 1499/939/900 547/938/900 +f 552/942/901 1088/943/902 1086/944/903 +f 552/942/901 1086/944/903 1505/945/904 +f 1505/945/904 1086/944/903 1158/946/905 +f 1397/947/906 552/942/901 555/948/907 +f 244/949/908 1269/950/909 1742/951/910 +f 244/949/908 1742/951/910 248/952/911 +f 1159/953/912 1087/954/913 1155/955/914 +f 1155/955/914 1087/954/913 1089/956/915 +f 1420/957/916 1616/958/916 1745/959/916 +f 1620/960/917 230/961/918 229/962/919 +f 1620/960/917 229/962/919 1674/963/920 +f 551/964/921 242/965/922 243/966/923 +f 246/967/924 551/964/921 243/966/923 +f 1426/968/925 1505/945/904 1922/969/926 +f 1922/969/926 1505/945/904 1158/946/905 +f 457/600/564 1358/970/927 1356/971/928 +f 568/972/929 1358/970/927 457/600/564 +f 1357/973/930 567/974/931 570/975/932 +f 570/975/932 567/974/931 1094/976/933 +f 532/977/934 567/974/931 568/972/929 +f 1094/976/933 567/974/931 532/977/934 +f 532/977/934 568/972/929 569/978/935 +f 1096/979/936 570/975/932 1094/976/933 +f 1837/980/937 1094/976/933 532/977/934 +f 1229/981/938 570/975/932 1096/979/936 +f 1837/980/937 532/977/934 569/978/935 +f 575/982/939 570/975/932 1229/981/938 +f 1874/983/940 1837/980/937 531/984/941 +f 531/984/941 1837/980/937 569/978/935 +f 1231/985/942 1874/983/940 531/984/941 +f 1840/44/44 26/33/33 579/986/943 +f 1140/987/944 26/33/33 1146/53/53 +f 580/988/945 5/12/12 2/989/946 +f 580/988/945 2/989/946 249/345/315 +f 1871/990/947 951/991/948 1175/992/949 +f 952/993/950 953/994/951 175/995/952 +f 1518/329/299 124/328/298 127/996/953 +f 1518/329/299 127/996/953 129/997/954 +f 1367/998/955 1852/999/956 1294/1000/957 +f 607/1001/958 1293/401/371 1954/400/370 +f 1191/1002/959 1393/1003/960 983/1004/961 +f 981/1005/962 1841/1006/963 612/1007/964 +f 1715/1008/965 152/1009/966 162/1010/967 +f 1153/1011/968 151/1012/969 646/1013/970 +f 1533/1014/971 663/1015/972 613/1016/973 +f 1460/1017/974 665/1018/975 1387/1019/976 +f 1544/1020/977 1390/1021/978 667/1022/979 +f 1389/1023/980 1390/1021/978 1544/1020/977 +f 1642/1024/981 1144/1025/982 1654/1026/983 +f 1392/1027/984 1394/1028/985 675/1029/986 +f 1541/1030/987 1657/1031/988 678/1032/989 +f 1657/1031/988 1541/1030/987 622/1033/990 +f 1971/1034/991 1551/1035/992 1399/1036/993 +f 682/1037/994 1551/1035/992 1971/1034/991 +f 683/1038/995 2022/1039/996 1671/1040/997 +f 1728/1041/998 683/1038/995 1671/1040/997 +f 688/1042/999 690/1043/1000 689/1044/1001 +f 1977/1045/1002 688/1042/999 689/1044/1001 +f 1088/943/902 691/1046/1003 692/1047/1004 +f 1550/1048/1005 691/1046/1003 1088/943/902 +f 1550/1048/1005 1088/943/902 552/942/901 +f 693/1049/1006 695/1050/1007 694/1051/1008 +f 937/1052/1009 693/1049/1006 694/1051/1008 +f 1847/1053/1010 699/1054/1011 2012/1055/1012 +f 1623/1056/1013 1847/1053/1010 2012/1055/1012 +f 1849/1057/1014 1598/1058/1015 234/316/286 +f 234/316/286 1598/1058/1015 67/77/77 +f 1851/1059/1016 1849/1057/1014 236/320/290 +f 238/322/292 1851/1059/1016 236/320/290 +f 1525/1060/1017 1851/1059/1016 238/322/292 +f 705/1061/1018 1698/1062/1019 707/1063/1020 +f 705/1061/1018 707/1063/1020 708/1064/1021 +f 1254/1065/1022 1698/1062/1019 705/1061/1018 +f 707/1063/1020 710/1066/1023 708/1064/1021 +f 710/1066/1023 712/1067/1024 711/1068/1025 +f 711/1068/1025 712/1067/1024 713/1069/1026 +f 716/1070/1027 714/1071/1028 715/1072/1029 +f 713/1069/1026 714/1071/1028 716/1070/1027 +f 715/1072/1029 714/1071/1028 717/1073/1030 +f 715/1072/1029 717/1073/1030 718/1074/1031 +f 718/1074/1031 717/1073/1030 399/1075/1032 +f 711/1068/1025 713/1069/1026 716/1070/1027 +f 722/1076/1033 719/1077/1034 725/1078/1035 +f 725/1078/1035 719/1077/1034 726/1079/1036 +f 726/1079/1036 719/1077/1034 720/1080/1037 +f 727/1081/1038 722/1076/1033 725/1078/1035 +f 721/1082/1039 722/1076/1033 727/1081/1038 +f 726/1079/1036 720/1080/1037 728/1083/1040 +f 728/1083/1040 720/1080/1037 723/1084/1041 +f 724/1085/1042 721/1082/1039 729/1086/1043 +f 728/1083/1040 723/1084/1041 730/1087/1044 +f 731/1088/1045 724/1085/1042 729/1086/1043 +f 723/1084/1041 724/1085/1042 731/1088/1045 +f 730/1087/1044 723/1084/1041 731/1088/1045 +f 1895/1089/1046 735/1090/1047 1601/1091/1048 +f 957/1092/1049 955/1093/1050 734/1094/1051 +f 1403/1095/1052 958/1096/1053 1994/1097/1054 +f 1219/475/445 404/477/447 1009/1098/1055 +f 1009/1098/1055 404/477/447 737/1099/1056 +f 1010/1100/1057 738/1101/1058 739/1102/1059 +f 1010/1100/1057 737/1099/1056 738/1101/1058 +f 1009/1098/1055 737/1099/1056 1010/1100/1057 +f 694/1051/1008 695/1050/1007 742/1103/1060 +f 742/1103/1060 695/1050/1007 741/1104/1061 +f 746/1105/1062 693/1049/1006 747/1106/1063 +f 748/1107/1064 746/1105/1062 747/1106/1063 +f 745/1108/1065 746/1105/1062 749/1109/1066 +f 749/1109/1066 746/1105/1062 748/1107/1064 +f 744/1110/1067 745/1108/1065 749/1109/1066 +f 743/1111/1068 745/1108/1065 744/1110/1067 +f 747/1106/1063 693/1049/1006 696/1112/1069 +f 1517/1113/1070 699/1054/1011 1848/1114/1071 +f 1884/1115/1072 699/1054/1011 1517/1113/1070 +f 752/1116/1073 753/1117/1074 140/199/173 +f 752/1116/1073 140/199/173 948/1118/1075 +f 754/1119/1076 753/1117/1074 752/1116/1073 +f 1019/1120/1077 1018/1121/1077 1020/1122/1077 +f 755/1123/1078 1021/1124/1079 757/1125/1080 +f 757/1125/1080 1021/1124/1079 1209/1126/1081 +f 689/1044/1001 690/1043/1000 755/1123/1078 +f 689/1044/1001 755/1123/1078 758/1127/1082 +f 758/1127/1082 755/1123/1078 757/1125/1080 +f 758/1127/1082 757/1125/1080 759/1128/1083 +f 759/1128/1083 757/1125/1080 760/1129/1084 +f 760/1129/1084 757/1125/1080 1209/1126/1081 +f 760/1129/1084 1209/1126/1081 1885/1130/1085 +f 1796/1131/1086 762/1132/1087 763/1133/1088 +f 762/1132/1087 1796/1131/1086 1162/1134/1089 +f 1423/1135/1090 1422/1136/1091 762/1132/1087 +f 1423/1135/1090 762/1132/1087 761/1137/1092 +f 1945/1138/1093 1519/1139/1094 767/1140/1095 +f 1797/1141/1096 1519/1139/1094 1945/1138/1093 +f 1945/1138/1093 767/1140/1095 1923/1142/1097 +f 1923/1142/1097 1888/1143/1098 770/1144/1099 +f 1022/1145/1100 1424/1146/1101 1026/1147/1102 +f 1027/1148/1103 775/1149/1104 777/1150/1105 +f 775/1149/1104 1621/1151/1106 777/1150/1105 +f 150/1152/1107 784/1153/1108 783/1154/1109 +f 1273/1155/1110 1272/1156/1111 785/1157/1112 +f 785/1157/1112 1272/1156/1111 686/1158/1113 +f 158/216/190 1700/229/199 173/237/207 +f 1765/1159/1114 1700/229/199 158/216/190 +f 1702/1160/1115 165/1161/1116 786/1162/1117 +f 1274/1163/1118 167/1164/1119 1275/1165/1120 +f 454/539/509 168/232/202 787/1166/1121 +f 456/541/511 568/972/929 457/600/564 +f 458/543/513 568/972/929 456/541/511 +f 457/600/564 566/1167/1122 789/1168/1123 +f 789/1168/1123 566/1167/1122 1699/1169/1124 +f 789/1168/1123 1699/1169/1124 1256/1170/1125 +f 790/1171/1126 791/1172/1127 1658/1173/1128 +f 1835/1174/1129 790/1171/1126 1658/1173/1128 +f 2022/1039/996 784/1153/1108 153/211/185 +f 792/1175/1130 2022/1039/996 153/211/185 +f 1670/1176/1131 684/1177/1132 1669/1178/1133 +f 1669/1178/1133 684/1177/1132 1715/1008/965 +f 1715/1008/965 684/1177/1132 792/1175/1130 +f 742/1103/1060 741/1104/1061 1881/1179/1134 +f 794/1180/1135 1027/1148/1103 777/1150/1105 +f 794/1180/1135 777/1150/1105 2005/1181/1136 +f 1011/1182/1137 1412/1183/1138 1013/1184/1139 +f 1994/1097/1054 958/1096/1053 1007/1185/1140 +f 1936/1186/1141 711/1068/1025 716/1070/1027 +f 177/1187/1142 1506/207/181 174/1188/1143 +f 1178/1189/1144 1738/1190/1145 798/1191/1146 +f 1179/1192/1147 1163/1193/1147 1177/1194/1147 +f 1640/1195/1148 1927/1196/1149 1638/1197/1150 +f 627/1198/1151 1896/1199/1151 628/1200/1151 +f 2/989/946 280/386/356 249/345/315 +f 249/345/315 280/386/356 250/346/316 +f 250/346/316 280/386/356 281/387/357 +f 801/1201/1152 1099/17/17 5/12/12 +f 1099/17/17 801/1201/1152 251/344/314 +f 802/1202/1153 1099/17/17 251/344/314 +f 1234/39/39 944/37/37 1524/1203/1154 +f 804/1204/1155 1234/39/39 1524/1203/1154 +f 804/1204/1155 1524/1203/1154 805/1205/1156 +f 1872/1206/1157 804/1204/1155 805/1205/1156 +f 67/77/77 1537/64/64 57/67/67 +f 67/77/77 57/67/67 788/1207/1158 +f 231/317/287 67/77/77 788/1207/1158 +f 231/317/287 788/1207/1158 1996/338/308 +f 390/462/432 61/71/71 701/1208/1159 +f 54/63/63 61/71/71 390/462/432 +f 204/272/242 701/1208/1159 1032/298/268 +f 390/462/432 701/1208/1159 204/272/242 +f 218/1209/1160 701/1208/1159 74/84/84 +f 1032/298/268 1525/1060/1017 238/322/292 +f 231/317/287 234/316/286 67/77/77 +f 1849/1057/1014 234/316/286 236/320/290 +f 1624/1210/1161 1847/1053/1010 1623/1056/1013 +f 979/1211/1162 1847/1053/1010 1624/1210/1161 +f 233/1212/1163 979/1211/1162 1624/1210/1161 +f 992/1213/1164 1867/1214/1165 979/1211/1162 +f 992/1213/1164 979/1211/1162 233/1212/1163 +f 233/1212/1163 1624/1210/1161 1626/1215/1166 +f 1033/1216/1167 1037/1217/1168 1035/1218/1169 +f 1035/1218/1169 1037/1217/1168 1583/1219/1170 +f 765/1220/1171 37/1221/1172 1437/1222/1173 +f 45/1223/1174 37/1221/1172 765/1220/1171 +f 766/1224/1175 45/1223/1174 765/1220/1171 +f 1840/44/44 579/986/943 1436/1225/1176 +f 1436/1225/1176 579/986/943 771/1226/1177 +f 771/1226/1177 579/986/943 1141/1227/1178 +f 959/1228/1179 252/852/816 2016/1229/1180 +f 2016/1229/1180 252/852/816 314/851/815 +f 620/1230/1181 251/344/314 1487/343/313 +f 939/1231/1182 1401/1232/1183 1842/1233/1184 +f 939/1231/1182 1842/1233/1184 814/1234/1185 +f 814/1234/1185 1842/1233/1184 1973/1235/1186 +f 1284/1236/1187 814/1234/1185 1973/1235/1186 +f 1284/1236/1187 1973/1235/1186 652/1237/1188 +f 816/1238/1189 1284/1236/1187 652/1237/1188 +f 1012/1239/1190 816/1238/1189 1828/1240/1191 +f 1828/1240/1191 816/1238/1189 652/1237/1188 +f 1012/1239/1190 1828/1240/1191 1646/1241/1192 +f 1646/1241/1192 1828/1240/1191 1665/1242/1193 +f 1880/1243/1194 1012/1239/1190 976/1244/1195 +f 976/1244/1195 1012/1239/1190 1646/1241/1192 +f 1646/1241/1192 1665/1242/1193 818/1245/1196 +f 2017/1246/1197 1708/1247/1198 819/1248/1199 +f 806/1249/1200 1646/1241/1192 818/1245/1196 +f 2017/1246/1197 819/1248/1199 123/1250/1201 +f 123/1250/1201 819/1248/1199 1880/1243/1194 +f 1843/1251/1202 123/1250/1201 1880/1243/1194 +f 1843/1251/1202 1880/1243/1194 976/1244/1195 +f 806/1249/1200 818/1245/1196 1627/1252/1203 +f 1843/1251/1202 976/1244/1195 978/1253/1204 +f 131/1254/1205 1843/1251/1202 978/1253/1204 +f 1666/1255/1206 1826/1256/1207 1632/1257/1208 +f 1631/1258/1209 1666/1255/1206 1632/1257/1208 +f 983/1004/961 1393/1003/960 1653/1259/1210 +f 612/1007/964 1841/1006/963 1385/1260/1211 +f 981/1005/962 612/1007/964 613/1016/973 +f 1398/1261/1212 220/303/273 1854/1262/1213 +f 224/304/274 220/303/273 1398/1261/1212 +f 681/1263/1214 1398/1261/1212 1854/1262/1213 +f 799/1264/1215 1030/1265/1216 1277/1266/1217 +f 1028/1267/1218 1030/1265/1216 799/1264/1215 +f 796/1268/1219 1370/1269/1220 1371/1270/1221 +f 796/1268/1219 1371/1270/1221 1594/1271/1222 +f 1738/1190/1145 1594/1271/1222 798/1191/1146 +f 796/1268/1219 1594/1271/1222 1738/1190/1145 +f 631/1272/1223 810/1273/1224 1034/1274/1225 +f 631/1272/1223 1034/1274/1225 1372/1275/1226 +f 800/1276/1227 710/1066/1023 711/1068/1025 +f 800/1276/1227 711/1068/1025 1937/1277/1228 +f 957/1092/1049 734/1094/1051 1639/1278/1229 +f 629/1279/1230 957/1092/1049 1639/1278/1229 +f 1424/1146/1101 1022/1145/1100 1024/1280/1231 +f 1424/1146/1101 1024/1280/1231 1622/1281/1232 +f 1367/998/955 1765/1159/1114 1852/999/956 +f 1852/999/956 1765/1159/1114 158/216/190 +f 1368/1282/1233 1702/1160/1115 786/1162/1117 +f 1366/1283/1234 1702/1160/1115 1368/1282/1233 +f 754/1119/1076 752/1116/1073 602/1284/1235 +f 1827/1285/1236 754/1119/1076 602/1284/1235 +f 1633/1286/1237 1827/1285/1236 602/1284/1235 +f 151/1012/969 150/1152/1107 783/1154/1109 +f 151/1012/969 783/1154/1109 1667/1287/1238 +f 151/1012/969 1667/1287/1238 646/1013/970 +f 2006/1288/1239 777/1150/1105 610/1289/1240 +f 610/1289/1240 777/1150/1105 1621/1151/1106 +f 634/1290/1241 1727/1291/1242 636/1292/1243 +f 636/1292/1243 1727/1291/1242 674/1293/1244 +f 1143/1294/1245 1142/1295/1246 635/1296/1247 +f 671/1297/1248 1143/1294/1245 635/1296/1247 +f 1927/1196/1149 708/1064/1021 710/1066/1023 +f 1640/1195/1148 1895/1089/1046 1601/1091/1048 +f 1414/1298/1249 708/1064/1021 1927/1196/1149 +f 1640/1195/1148 1601/1091/1048 618/1299/1250 +f 1414/1298/1249 1927/1196/1149 1640/1195/1148 +f 1414/1298/1249 1640/1195/1148 618/1299/1250 +f 1642/1024/981 822/1300/1251 1144/1025/982 +f 823/1301/1252 822/1300/1251 1543/1302/1253 +f 1543/1302/1253 822/1300/1251 1641/1303/1254 +f 1641/1303/1254 822/1300/1251 1642/1024/981 +f 667/1022/979 823/1301/1252 1543/1302/1253 +f 1544/1020/977 667/1022/979 1543/1302/1253 +f 662/1304/1255 764/1305/1256 768/1306/1257 +f 662/1304/1255 768/1306/1257 769/1307/1258 +f 662/1304/1255 769/1307/1258 1721/1308/1259 +f 659/1309/1260 764/1305/1256 662/1304/1255 +f 947/1310/1261 146/205/179 950/1311/1262 +f 605/1312/1263 146/205/179 141/201/175 +f 950/1311/1262 146/205/179 605/1312/1263 +f 605/1312/1263 141/201/175 1506/207/181 +f 605/1312/1263 1506/207/181 177/1187/1142 +f 614/1313/1264 665/1018/975 1533/1014/971 +f 1533/1014/971 665/1018/975 663/1015/972 +f 1386/1314/1265 665/1018/975 614/1313/1264 +f 669/1315/1266 1391/1316/1267 642/1317/1268 +f 643/1318/1269 669/1315/1266 642/1317/1268 +f 642/1317/1268 1391/1316/1267 640/1319/1270 +f 602/1284/1235 752/1116/1073 147/1320/1271 +f 602/1284/1235 147/1320/1271 604/1321/1272 +f 1176/1322/1273 1023/1323/1274 774/1324/1275 +f 1176/1322/1273 774/1324/1275 1434/1325/1276 +f 660/1326/1277 1173/1327/1278 778/1328/1279 +f 660/1326/1277 778/1328/1279 1965/1329/1280 +f 1115/1330/1281 772/1331/1282 603/1332/1283 +f 1025/1333/1284 772/1331/1282 1115/1330/1281 +f 606/1334/1285 1275/1165/1120 167/1164/1119 +f 1111/1335/1286 1275/1165/1120 606/1334/1285 +f 1561/1336/1287 1275/1165/1120 1111/1335/1286 +f 1110/1337/1288 1561/1336/1287 1111/1335/1286 +f 1364/1338/1289 725/1078/1035 726/1079/1036 +f 1363/1339/1290 725/1078/1035 1364/1338/1289 +f 1364/1338/1289 726/1079/1036 1773/1340/1291 +f 727/1081/1038 725/1078/1035 1363/1339/1290 +f 1507/1341/1292 726/1079/1036 728/1083/1040 +f 1773/1340/1291 726/1079/1036 1507/1341/1292 +f 721/1082/1039 727/1081/1038 595/1342/1293 +f 595/1342/1293 727/1081/1038 1363/1339/1290 +f 596/1343/1294 728/1083/1040 730/1087/1044 +f 1507/1341/1292 728/1083/1040 596/1343/1294 +f 729/1086/1043 721/1082/1039 945/1344/1295 +f 945/1344/1295 721/1082/1039 597/1345/1296 +f 597/1345/1296 721/1082/1039 595/1342/1293 +f 596/1343/1294 730/1087/1044 1838/1346/1297 +f 731/1088/1045 729/1086/1043 946/1347/1298 +f 946/1347/1298 729/1086/1043 945/1344/1295 +f 1839/1348/1299 730/1087/1044 731/1088/1045 +f 1838/1346/1297 730/1087/1044 1839/1348/1299 +f 1839/1348/1299 731/1088/1045 946/1347/1298 +f 1534/1349/1300 732/1350/1301 1697/1351/1302 +f 1536/1352/1303 732/1350/1301 1534/1349/1300 +f 733/1353/1304 732/1350/1301 1536/1352/1303 +f 1635/1354/1305 733/1353/1304 1536/1352/1303 +f 1169/1355/1306 1171/1356/1307 658/1357/1308 +f 657/1358/1309 1169/1355/1306 658/1357/1308 +f 776/1359/1310 773/1360/1311 1114/1361/1312 +f 1113/1362/1313 776/1359/1310 1114/1361/1312 +f 792/1175/1130 153/211/185 152/1009/966 +f 1715/1008/965 792/1175/1130 152/1009/966 +f 1255/1363/1314 705/1061/1018 616/1364/1315 +f 616/1364/1315 705/1061/1018 708/1064/1021 +f 616/1364/1315 708/1064/1021 1415/1365/1316 +f 1761/1366/1317 1255/1363/1314 616/1364/1315 +f 824/1367/1318 676/1368/1319 633/1369/1320 +f 1394/1028/985 824/1367/1318 1287/1370/1321 +f 1287/1370/1321 824/1367/1318 633/1369/1320 +f 675/1029/986 1394/1028/985 1287/1370/1321 +f 1767/1371/1322 828/1372/1323 1768/1373/1324 +f 1768/1373/1324 828/1372/1323 626/1374/1325 +f 1928/1375/1326 828/1372/1323 1767/1371/1322 +f 795/1376/1327 828/1372/1323 1928/1375/1326 +f 1206/1377/1328 626/1374/1325 1573/1378/1329 +f 1768/1373/1324 626/1374/1325 1206/1377/1328 +f 1675/1379/1330 1206/1377/1328 1573/1378/1329 +f 1928/1375/1326 1927/1196/1149 795/1376/1327 +f 1638/1197/1150 1927/1196/1149 1008/1380/1331 +f 1008/1380/1331 1927/1196/1149 1928/1375/1326 +f 1675/1379/1330 1573/1378/1329 316/573/539 +f 1675/1379/1330 316/573/539 1189/1381/1332 +f 1189/1381/1332 316/573/539 317/572/538 +f 1008/1380/1331 1928/1375/1326 1811/1382/1333 +f 833/1383/1334 1675/1379/1330 1189/1381/1332 +f 1039/1384/1335 1008/1380/1331 1811/1382/1333 +f 833/1383/1334 1189/1381/1332 1710/1385/1336 +f 1039/1384/1335 1811/1382/1333 1471/1386/1337 +f 1471/1386/1337 833/1383/1334 1710/1385/1336 +f 1039/1384/1335 1471/1386/1337 1710/1385/1336 +f 834/1387/1338 1994/1097/1054 1007/1185/1140 +f 630/1388/1339 465/561/529 740/1389/1340 +f 740/1389/1340 1994/1097/1054 834/1387/1338 +f 630/1388/1339 740/1389/1340 834/1387/1338 +f 318/559/527 465/561/529 630/1388/1339 +f 240/1390/1341 1977/1045/1002 689/1044/1001 +f 938/1391/1342 937/1052/1009 1707/1392/1343 +f 1707/1392/1343 937/1052/1009 694/1051/1008 +f 240/1390/1341 689/1044/1001 1400/1393/1344 +f 986/1394/1345 1400/1393/1344 938/1391/1342 +f 240/1390/1341 1400/1393/1344 986/1394/1345 +f 986/1394/1345 938/1391/1342 1707/1392/1343 +f 986/1394/1345 1707/1392/1343 120/1395/1346 +f 836/1396/1347 838/1397/1348 1065/1398/1349 +f 1065/1398/1349 838/1397/1348 1291/1399/1350 +f 1291/1399/1350 838/1397/1348 840/1400/1351 +f 1291/1399/1350 840/1400/1351 1183/1401/1352 +f 1183/1401/1352 840/1400/1351 1676/1402/1353 +f 843/1403/1354 836/1396/1347 1066/1404/1355 +f 1066/1404/1355 836/1396/1347 1065/1398/1349 +f 1183/1401/1352 1676/1402/1353 1040/1405/1356 +f 1040/1405/1356 1676/1402/1353 1570/1406/1357 +f 847/1407/1358 843/1403/1354 1952/1408/705 +f 1952/1408/705 843/1403/1354 1066/1404/1355 +f 1040/1405/1356 1570/1406/1357 1041/1409/1359 +f 1041/1409/1359 1570/1406/1357 1571/1410/1360 +f 851/1411/1361 847/1407/1358 1953/1412/1362 +f 1953/1412/1362 847/1407/1358 1952/1408/705 +f 1041/1409/1359 1571/1410/1360 1299/1413/710 +f 1299/1413/710 1571/1410/1360 1753/1414/1363 +f 855/1415/1364 851/1411/1361 2007/1416/1365 +f 2007/1416/1365 851/1411/1361 1953/1412/1362 +f 1299/1413/710 1753/1414/1363 857/1417/1366 +f 857/1417/1366 1753/1414/1363 1754/1418/1367 +f 1754/1418/1367 855/1415/1364 1185/1419/1368 +f 1185/1419/1368 855/1415/1364 2007/1416/1365 +f 857/1417/1366 1754/1418/1367 1185/1419/1368 +f 1956/1420/1369 582/1421/1370 1749/1422/1371 +f 1749/1422/1371 582/1421/1370 1100/1423/1372 +f 940/1424/1373 582/1421/1370 1956/1420/1369 +f 1750/1425/1374 1749/1422/1371 1100/1423/1372 +f 1858/1426/1375 940/1424/1373 1956/1420/1369 +f 842/1427/1376 1750/1425/1374 1100/1423/1372 +f 842/1427/1376 1100/1423/1372 1102/1428/1377 +f 941/1429/1378 940/1424/1373 1858/1426/1375 +f 1813/1430/1379 941/1429/1378 1858/1426/1375 +f 846/1431/1380 842/1427/1376 1528/1432/1381 +f 1528/1432/1381 842/1427/1376 1102/1428/1377 +f 941/1429/1378 1813/1430/1379 1814/1433/1382 +f 850/1434/1383 846/1431/1380 1528/1432/1381 +f 587/1435/1384 941/1429/1378 1814/1433/1382 +f 588/1436/1385 850/1434/1383 1528/1432/1381 +f 854/1437/1386 850/1434/1383 588/1436/1385 +f 587/1435/1384 1814/1433/1382 1891/1438/1387 +f 589/1439/1388 587/1435/1384 1891/1438/1387 +f 1104/1440/1389 854/1437/1386 588/1436/1385 +f 858/1441/1390 854/1437/1386 1104/1440/1389 +f 1104/1440/1389 1891/1438/1387 858/1441/1390 +f 589/1439/1388 1891/1438/1387 1104/1440/1389 +f 1744/1442/1391 1506/207/181 1977/1045/1002 +f 174/1188/1143 1506/207/181 1744/1442/1391 +f 1744/1442/1391 1977/1045/1002 240/1390/1341 +f 228/1443/1392 1744/1442/1391 240/1390/1341 +f 1668/1444/1393 1729/1445/1394 685/1446/1395 +f 1626/1215/1166 1729/1445/1394 1668/1444/1393 +f 1222/586/550 1686/440/410 1792/443/413 +f 1049/1447/1396 1686/440/410 1222/586/550 +f 233/1212/1163 1626/1215/1166 1668/1444/1393 +f 1049/1447/1396 1222/586/550 1409/282/252 +f 216/1448/1397 233/1212/1163 1668/1444/1393 +f 1016/1449/1398 1049/1447/1396 1409/282/252 +f 1048/1450/1399 1050/1451/1400 1015/1452/1401 +f 216/1448/1397 1668/1444/1393 299/1453/1402 +f 216/1448/1397 337/1454/1403 195/1455/1404 +f 299/1453/1402 337/1454/1403 216/1448/1397 +f 699/1054/1011 1884/1115/1072 2012/1055/1012 +f 783/1154/1109 784/1153/1108 683/1038/995 +f 683/1038/995 784/1153/1108 2022/1039/996 +f 695/1050/1007 693/1049/1006 746/1105/1062 +f 695/1050/1007 746/1105/1062 745/1108/1065 +f 695/1050/1007 745/1108/1065 1411/1456/1405 +f 1411/1456/1405 745/1108/1065 743/1111/1068 +f 1602/1457/1406 956/1458/1407 1402/1459/1408 +f 1402/1459/1408 956/1458/1407 736/1460/1409 +f 404/477/447 401/476/446 400/1461/1410 +f 1513/1462/1411 404/477/447 400/1461/1410 +f 1402/1459/1408 1513/1462/1411 1703/1463/1412 +f 1703/1463/1412 1513/1462/1411 400/1461/1410 +f 1602/1457/1406 1402/1459/1408 1703/1463/1412 +f 791/1172/1127 790/1171/1126 860/1464/1413 +f 861/1465/1414 791/1172/1127 860/1464/1413 +f 862/1466/1415 864/1467/1416 863/1468/1417 +f 692/1047/1004 691/1046/1003 865/1469/1418 +f 720/1080/1037 719/1077/1034 722/1076/1033 +f 723/1084/1041 720/1080/1037 722/1076/1033 +f 723/1084/1041 722/1076/1033 724/1085/1042 +f 724/1085/1042 722/1076/1033 721/1082/1039 +f 632/1470/1419 808/1471/1420 809/1472/1421 +f 632/1470/1419 809/1472/1421 1595/1473/1422 +f 797/1474/1423 1162/1134/1089 1796/1131/1086 +f 1172/1475/1424 780/1476/1425 1739/1477/1426 +f 1376/1478/1427 1172/1475/1424 1739/1477/1426 +f 797/1474/1423 1796/1131/1086 1378/1479/1428 +f 1739/1477/1426 797/1474/1423 1378/1479/1428 +f 1376/1478/1427 1739/1477/1426 1378/1479/1428 +f 1174/1480/1429 782/1481/1430 1029/1482/1431 +f 1174/1480/1429 1029/1482/1431 1170/1483/1432 +f 1170/1483/1432 1029/1482/1431 779/1484/1433 +f 866/1485/1434 1101/1486/1435 621/1487/1436 +f 621/1487/1436 1101/1486/1435 802/1202/1153 +f 581/1488/1437 1101/1486/1435 867/1489/1438 +f 867/1489/1438 1101/1486/1435 866/1485/1434 +f 802/1202/1153 1101/1486/1435 583/1490/1439 +f 802/1202/1153 583/1490/1439 13/1491/1440 +f 584/1492/1441 581/1488/1437 868/1493/1442 +f 868/1493/1442 581/1488/1437 867/1489/1438 +f 13/1491/1440 583/1490/1439 585/1494/1443 +f 549/1495/1444 584/1492/1441 868/1493/1442 +f 586/1496/1445 584/1492/1441 549/1495/1444 +f 550/1497/1446 586/1496/1445 549/1495/1444 +f 1098/1498/1447 585/1494/1443 1233/1499/1448 +f 13/1491/1440 585/1494/1443 1098/1498/1447 +f 1098/1498/1447 1233/1499/1448 20/1500/1449 +f 869/1501/1450 586/1496/1445 550/1497/1446 +f 805/1205/1156 586/1496/1445 869/1501/1450 +f 1711/1502/1451 586/1496/1445 805/1205/1156 +f 20/1500/1449 1233/1499/1448 1103/1503/1452 +f 803/1504/1453 1711/1502/1451 805/1205/1156 +f 20/1500/1449 1103/1503/1452 27/1505/1454 +f 30/1506/1455 1711/1502/1451 803/1504/1453 +f 590/1507/1456 1711/1502/1451 30/1506/1455 +f 27/1505/1454 1103/1503/1452 590/1507/1456 +f 27/1505/1454 590/1507/1456 30/1506/1455 +f 1766/1508/1457 747/1106/1063 696/1112/1069 +f 748/1107/1064 747/1106/1063 815/1509/1458 +f 815/1509/1458 747/1106/1063 1766/1508/1457 +f 749/1109/1066 748/1107/1064 815/1509/1458 +f 1285/1510/1459 749/1109/1066 815/1509/1458 +f 744/1110/1067 749/1109/1066 1285/1510/1459 +f 1766/1508/1457 696/1112/1069 813/1511/1460 +f 648/1512/1461 744/1110/1067 1285/1510/1459 +f 1884/1115/1072 1517/1113/1070 977/1513/1462 +f 1647/1514/1463 1884/1115/1072 977/1513/1462 +f 647/1515/1464 1410/1516/1465 1011/1182/1137 +f 1011/1182/1137 1410/1516/1465 1412/1183/1138 +f 650/1517/1466 689/1044/1001 758/1127/1082 +f 650/1517/1466 758/1127/1082 759/1128/1083 +f 650/1517/1466 759/1128/1083 651/1518/1467 +f 651/1518/1467 759/1128/1083 760/1129/1084 +f 651/1518/1467 760/1129/1084 1976/1519/1468 +f 653/1520/1469 760/1129/1084 1885/1130/1085 +f 1976/1519/1468 760/1129/1084 653/1520/1469 +f 649/1521/1470 689/1044/1001 650/1517/1466 +f 1926/1522/1471 785/1157/1112 686/1158/1113 +f 1273/1155/1110 785/1157/1112 1926/1522/1471 +f 1926/1522/1471 686/1158/1113 807/1523/1472 +f 817/1524/1473 1273/1155/1110 1926/1522/1471 +f 656/1525/1474 750/1526/1475 697/1527/1476 +f 655/1528/1477 750/1526/1475 656/1525/1474 +f 1856/1529/1478 742/1103/1060 1881/1179/1134 +f 694/1051/1008 742/1103/1060 1856/1529/1478 +f 793/1530/1479 694/1051/1008 1856/1529/1478 +f 1984/1531/1480 959/1228/1179 2016/1229/1180 +f 1779/1532/1481 960/1533/1482 959/1228/1179 +f 1779/1532/1481 959/1228/1179 1984/1531/1480 +f 623/1534/1483 960/1533/1482 1779/1532/1481 +f 1835/1174/1129 1658/1173/1128 1918/1535/1484 +f 1918/1535/1484 1658/1173/1128 1780/1536/1485 +f 624/1537/1486 789/1168/1123 709/1538/1487 +f 624/1537/1486 709/1538/1487 1760/1539/1488 +f 1760/1539/1488 1918/1535/1484 1780/1536/1485 +f 624/1537/1486 1760/1539/1488 1780/1536/1485 +f 569/978/935 568/972/929 458/543/513 +f 706/1540/1489 1357/973/930 570/975/932 +f 870/1541/1490 458/543/513 871/1542/1491 +f 871/1542/1491 458/543/513 872/1543/1492 +f 872/1543/1492 458/543/513 1591/542/512 +f 569/978/935 458/543/513 531/984/941 +f 531/984/941 458/543/513 870/1541/1490 +f 870/1541/1490 706/1540/1489 570/975/932 +f 872/1543/1492 1591/542/512 393/469/439 +f 870/1541/1490 570/975/932 575/982/939 +f 870/1541/1490 575/982/939 578/1544/1493 +f 870/1541/1490 578/1544/1493 531/984/941 +f 707/1063/1020 706/1540/1489 870/1541/1490 +f 710/1066/1023 707/1063/1020 870/1541/1490 +f 873/1545/1494 393/469/439 1318/471/441 +f 872/1543/1492 393/469/439 873/1545/1494 +f 874/1546/1495 870/1541/1490 871/1542/1491 +f 712/1067/1024 870/1541/1490 713/1069/1026 +f 713/1069/1026 870/1541/1490 874/1546/1495 +f 714/1071/1028 873/1545/1494 717/1073/1030 +f 717/1073/1030 873/1545/1494 1318/471/441 +f 713/1069/1026 874/1546/1495 873/1545/1494 +f 713/1069/1026 873/1545/1494 714/1071/1028 +f 710/1066/1023 870/1541/1490 712/1067/1024 +f 399/1075/1032 717/1073/1030 1318/471/441 +f 1541/1030/987 678/1032/989 875/1547/1496 +f 875/1547/1496 673/1548/1497 1190/1549/1498 +f 670/1550/1499 2024/1551/1500 980/1552/1501 +f 613/1016/973 663/1015/972 682/1037/994 +f 1165/1553/1502 869/1501/1450 221/1554/1503 +f 698/1555/1504 751/1556/1505 1625/1557/1506 +f 1625/1557/1506 751/1556/1505 654/1558/1507 +f 700/1559/1508 698/1555/1504 1625/1557/1506 +f 876/1560/1509 877/1561/1510 1460/1017/974 +f 554/1562/1511 877/1561/1510 876/1560/1509 +f 1090/1563/1512 554/1562/1511 876/1560/1509 +f 876/1560/1509 1460/1017/974 1387/1019/976 +f 1180/1564/1513 1423/1135/1090 761/1137/1092 +f 821/1565/1514 1036/1566/1515 1423/1135/1090 +f 821/1565/1514 1423/1135/1090 1180/1564/1513 +f 1271/1567/1516 1031/1568/1517 781/1569/1518 +f 1276/1570/1519 1031/1568/1517 1271/1567/1516 +f 1923/1142/1097 770/1144/1099 661/1571/1520 +f 1369/1572/1521 770/1144/1099 1038/1573/1522 +f 661/1571/1520 770/1144/1099 1369/1572/1521 +f 661/1571/1520 1369/1572/1521 1276/1570/1519 +f 661/1571/1520 1276/1570/1519 1271/1567/1516 +f 878/1574/1523 763/1133/1088 762/1132/1087 +f 767/1140/1095 763/1133/1088 878/1574/1523 +f 1923/1142/1097 767/1140/1095 1888/1143/1098 +f 1888/1143/1098 767/1140/1095 878/1574/1523 +f 1888/1143/1098 878/1574/1523 812/1575/1524 +f 1422/1136/1091 878/1574/1523 762/1132/1087 +f 812/1575/1524 878/1574/1523 1422/1136/1091 +f 1584/1576/1525 44/1577/1526 1148/1578/1527 +f 1036/1566/1515 1148/1578/1527 1423/1135/1090 +f 1584/1576/1525 1148/1578/1527 1036/1566/1515 +f 1038/1573/1522 1140/987/944 1146/53/53 +f 770/1144/1099 1140/987/944 1038/1573/1522 +f 1038/1573/1522 1146/53/53 811/1579/1528 +f 621/1487/1436 802/1202/1153 251/344/314 +f 621/1487/1436 251/344/314 620/1230/1181 +f 801/1201/1152 5/12/12 580/988/945 +f 801/1201/1152 580/988/945 251/344/314 +f 251/344/314 580/988/945 249/345/315 +f 625/1580/1529 457/600/564 789/1168/1123 +f 1443/601/565 457/600/564 625/1580/1529 +f 625/1580/1529 789/1168/1123 624/1537/1486 +f 1948/1581/1530 715/1072/1029 1637/1582/1531 +f 716/1070/1027 715/1072/1029 1948/1581/1530 +f 1637/1582/1531 715/1072/1029 718/1074/1031 +f 315/1583/1532 718/1074/1031 399/1075/1032 +f 1637/1582/1531 718/1074/1031 315/1583/1532 +f 1936/1186/1141 716/1070/1027 1948/1581/1530 +f 578/1544/1493 1231/985/942 531/984/941 +f 571/1584/1533 1970/1585/1534 1360/1586/1535 +f 10/1587/1536 3/1588/1537 1095/1589/1538 +f 571/1584/1533 1360/1586/1535 1097/1590/1539 +f 573/1591/1540 10/1587/1536 1095/1589/1538 +f 572/1592/1541 11/1593/1542 1362/1594/1543 +f 17/1595/1544 10/1587/1536 573/1591/1540 +f 1873/1596/1545 17/1595/1544 573/1591/1540 +f 22/1597/1546 17/1595/1544 1873/1596/1545 +f 572/1592/1541 1362/1594/1543 1230/1598/1547 +f 574/1599/1548 18/1600/1549 1879/1601/1550 +f 574/1599/1548 1879/1601/1550 577/1602/1551 +f 1232/1603/1552 1772/1604/1553 576/1605/1554 +f 24/1606/1555 1772/1604/1553 1232/1603/1552 +f 1996/338/308 560/1607/1556 1872/1206/1157 +f 1168/1608/1557 805/1205/1156 869/1501/1450 +f 1872/1206/1157 805/1205/1156 1168/1608/1557 +f 1165/1553/1502 1168/1608/1557 869/1501/1450 +f 559/1609/1558 558/1610/1559 688/1042/999 +f 559/1609/1558 688/1042/999 1977/1045/1002 +f 148/1611/1560 559/1609/1558 687/1612/1561 +f 1890/1613/1562 1234/39/39 804/1204/1155 +f 1872/1206/1157 563/1614/1563 804/1204/1155 +f 560/1607/1556 563/1614/1563 1872/1206/1157 +f 57/67/67 51/65/65 562/1615/1564 +f 788/1207/1158 57/67/67 562/1615/1564 +f 561/1616/1565 788/1207/1158 562/1615/1564 +f 1996/338/308 788/1207/1158 561/1616/1565 +f 1996/338/308 561/1616/1565 560/1607/1556 +f 1986/1617/1566 140/199/173 753/1117/1074 +f 1808/200/174 140/199/173 1986/1617/1566 +f 558/1610/1559 994/203/177 1576/1618/1567 +f 690/1043/1000 558/1610/1559 756/1619/1568 +f 688/1042/999 558/1610/1559 690/1043/1000 +f 756/1619/1568 558/1610/1559 1576/1618/1567 +f 1465/1620/1569 1986/1617/1566 753/1117/1074 +f 756/1619/1568 1576/1618/1567 1465/1620/1569 +f 756/1619/1568 1465/1620/1569 753/1117/1074 +f 225/1621/1570 176/1622/1571 1959/1623/1572 +f 225/1621/1570 1959/1623/1572 564/1624/1573 +f 1397/947/906 1550/1048/1005 552/942/901 +f 679/1625/1574 1550/1048/1005 1397/947/906 +f 1917/1626/1575 615/1627/1576 1413/1628/1577 +f 1799/1629/1578 308/863/827 321/862/826 +f 307/1630/1579 308/863/827 1799/1629/1578 +f 825/1631/1580 1917/1626/1575 1413/1628/1577 +f 1286/1632/1581 825/1631/1580 1413/1628/1577 +f 307/1630/1579 1799/1629/1578 1800/1633/1582 +f 1286/1632/1581 1413/1628/1577 617/1634/1583 +f 309/1635/1584 307/1630/1579 1800/1633/1582 +f 1393/1003/960 1286/1632/1581 617/1634/1583 +f 1653/1259/1210 1393/1003/960 617/1634/1583 +f 309/1635/1584 1800/1633/1582 1198/406/376 +f 1198/406/376 1800/1633/1582 1052/627/591 +f 1653/1259/1210 617/1634/1583 1379/1636/1585 +f 349/1637/1586 309/1635/1584 1198/406/376 +f 638/1638/1587 1653/1259/1210 1379/1636/1585 +f 349/1637/1586 1198/406/376 328/1639/1588 +f 309/1635/1584 349/1637/1586 310/1640/1589 +f 310/1640/1589 349/1637/1586 1446/1641/1590 +f 637/1642/1591 638/1638/1587 1379/1636/1585 +f 349/1637/1586 328/1639/1588 327/1643/1592 +f 637/1642/1591 1379/1636/1585 1722/1644/1593 +f 490/1645/1594 349/1637/1586 327/1643/1592 +f 1379/1636/1585 617/1634/1583 1377/1646/1595 +f 1377/1646/1595 617/1634/1583 1634/1647/1596 +f 664/1648/1597 1841/1006/963 1388/1649/1598 +f 1385/1260/1211 1841/1006/963 664/1648/1597 +f 330/1650/1599 334/629/593 1929/403/373 +f 330/1650/1599 1929/403/373 1865/1651/1600 +f 639/1652/1601 637/1642/1591 1722/1644/1593 +f 490/1645/1594 327/1643/1592 329/1653/1602 +f 641/1654/1603 639/1652/1601 1722/1644/1593 +f 490/1645/1594 329/1653/1602 331/1655/1604 +f 641/1654/1603 1722/1644/1593 1720/1656/1605 +f 491/1657/1606 490/1645/1594 331/1655/1604 +f 664/1648/1597 1388/1649/1598 951/991/948 +f 1746/392/362 330/1650/1599 1865/1651/1600 +f 1388/1649/1598 641/1654/1603 1720/1656/1605 +f 491/1657/1606 331/1655/1604 330/1650/1599 +f 951/991/948 1388/1649/1598 1720/1656/1605 +f 491/1657/1606 330/1650/1599 1746/392/362 +f 1746/392/362 1865/1651/1600 1866/1658/1607 +f 1444/1659/1608 664/1648/1597 951/991/948 +f 1746/392/362 1866/1658/1607 296/1660/1609 +f 296/1660/1609 1866/1658/1607 528/1661/1610 +f 951/991/948 1720/1656/1605 1270/1662/1611 +f 1803/1663/1612 491/1657/1606 1746/392/362 +f 175/995/952 557/1664/1613 952/993/950 +f 952/993/950 557/1664/1613 1444/1659/1608 +f 528/1661/1610 1281/1665/1614 296/1660/1609 +f 296/1660/1609 1281/1665/1614 181/1666/1615 +f 952/993/950 1444/1659/1608 951/991/948 +f 1175/992/949 951/991/948 1270/1662/1611 +f 1803/1663/1612 1746/392/362 1297/391/361 +f 592/1667/1616 619/1668/1617 310/1640/1589 +f 1634/1647/1596 619/1668/1617 592/1667/1616 +f 593/1669/1618 1634/1647/1596 592/1667/1616 +f 592/1667/1616 310/1640/1589 591/1670/1619 +f 1377/1646/1595 1634/1647/1596 593/1669/1618 +f 2014/1671/1620 310/1640/1589 1446/1641/1590 +f 591/1670/1619 310/1640/1589 2014/1671/1620 +f 594/1672/1621 1377/1646/1595 593/1669/1618 +f 1964/1673/1622 1377/1646/1595 594/1672/1621 +f 2014/1671/1620 1446/1641/1590 1449/1674/1623 +f 1508/1675/1624 1964/1673/1622 594/1672/1621 +f 1998/1676/1625 2014/1671/1620 1449/1674/1623 +f 1175/992/949 1270/1662/1611 1964/1673/1622 +f 1297/391/361 1449/1674/1623 1803/1663/1612 +f 1998/1676/1625 1449/1674/1623 1297/391/361 +f 611/1677/1626 1175/992/949 1964/1673/1622 +f 611/1677/1626 1964/1673/1622 1508/1675/1624 +f 303/1678/1627 1998/1676/1625 1297/391/361 +f 598/1679/1628 1998/1676/1625 303/1678/1627 +f 1325/1680/1629 598/1679/1628 303/1678/1627 +f 1112/1681/1630 611/1677/1626 1508/1675/1624 +f 1871/990/947 1175/992/949 1435/1682/1631 +f 300/1683/1632 1297/391/361 1748/393/363 +f 1112/1681/1630 1508/1675/1624 599/1684/1633 +f 1109/395/365 598/1679/1628 1325/1680/1629 +f 1112/1681/1630 599/1684/1633 1365/1685/1634 +f 600/1686/1635 598/1679/1628 1109/395/365 +f 1365/1685/1634 599/1684/1633 601/1687/1636 +f 608/1688/1637 600/1686/1635 1109/395/365 +f 1365/1685/1634 601/1687/1636 608/1688/1637 +f 601/1687/1636 600/1686/1635 608/1688/1637 +f 1407/396/366 1325/1680/1629 1218/1689/1638 +f 1109/395/365 1325/1680/1629 1407/396/366 +f 1112/1681/1630 1365/1685/1634 607/1001/958 +f 609/1690/1639 1112/1681/1630 1151/1691/1640 +f 1151/1691/1640 1112/1681/1630 607/1001/958 +f 645/1692/1641 1151/1691/1640 607/1001/958 +f 609/1690/1639 1151/1691/1640 1630/1693/1642 +f 1433/1694/1643 1407/396/366 1218/1689/1638 +f 1296/394/364 1407/396/366 335/1695/1644 +f 645/1692/1641 607/1001/958 1954/400/370 +f 1954/400/370 1296/394/364 335/1695/1644 +f 1218/1689/1638 300/1683/1632 1748/393/363 +f 1435/1682/1631 609/1690/1639 1630/1693/1642 +f 1871/990/947 1435/1682/1631 1630/1693/1642 +f 1433/1694/1643 1218/1689/1638 1748/393/363 +f 820/1696/1645 1871/990/947 1630/1693/1642 +f 1433/1694/1643 1748/393/363 486/1697/1646 +f 644/1698/1647 645/1692/1641 1954/400/370 +f 1954/400/370 335/1695/1644 1050/1451/1400 +f 1954/400/370 1050/1451/1400 1048/1450/1399 +f 1397/947/906 555/948/907 1618/1699/1648 +f 1618/1699/1648 555/948/907 247/1700/1649 +f 1673/1701/1650 247/1700/1649 1428/1702/1651 +f 1618/1699/1648 247/1700/1649 1673/1701/1650 +f 1397/947/906 1618/1699/1648 222/1703/1652 +f 1743/1704/1653 1673/1701/1650 1428/1702/1651 +f 245/1705/1654 241/1706/1655 565/1707/1656 +f 245/1705/1654 565/1707/1656 556/1708/1657 +f 553/1709/1658 554/1562/1511 1090/1563/1512 +f 867/1489/1438 866/1485/1434 882/1710/1659 +f 882/1710/1659 866/1485/1434 621/1487/1436 +f 868/1493/1442 867/1489/1438 883/1711/1660 +f 883/1711/1660 867/1489/1438 882/1710/1659 +f 550/1497/1446 549/1495/1444 1930/1712/1661 +f 549/1495/1444 868/1493/1442 884/1713/1662 +f 884/1713/1662 868/1493/1442 883/1711/1660 +f 885/1714/1663 869/1501/1450 550/1497/1446 +f 221/1554/1503 869/1501/1450 885/1714/1663 +f 1192/1715/1664 875/1547/1496 1190/1549/1498 +f 1541/1030/987 875/1547/1496 1192/1715/1664 +f 982/1716/1665 670/1550/1499 980/1552/1501 +f 613/1016/973 682/1037/994 1193/1717/1666 +f 1193/1717/1666 682/1037/994 1971/1034/991 +f 888/1718/1667 1541/1030/987 1192/1715/1664 +f 882/1710/1659 621/1487/1436 889/1719/1668 +f 889/1719/1668 621/1487/1436 1541/1030/987 +f 889/1719/1668 1541/1030/987 888/1718/1667 +f 1930/1712/1661 549/1495/1444 884/1713/1662 +f 1193/1717/1666 1971/1034/991 890/1720/1669 +f 890/1720/1669 1971/1034/991 221/1554/1503 +f 890/1720/1669 221/1554/1503 885/1714/1663 +f 983/1004/961 981/1005/962 891/1721/1670 +f 891/1721/1670 981/1005/962 1047/1722/1671 +f 1047/1722/1671 981/1005/962 613/1016/973 +f 1047/1722/1671 613/1016/973 1193/1717/1666 +f 885/1714/1663 550/1497/1446 1930/1712/1661 +f 886/1723/1672 1191/1002/959 983/1004/961 +f 886/1723/1672 983/1004/961 891/1721/1670 +f 893/1724/900 548/1725/900 1301/1726/900 +f 1894/1727/900 548/1725/900 893/1724/900 +f 257/1728/1673 7/20/20 523/797/761 +f 523/797/761 7/20/20 1876/22/22 +f 256/865/829 257/1728/1673 523/797/761 +f 256/865/829 523/797/761 1860/820/784 +f 129/997/954 237/1729/1674 1518/329/299 +f 133/1730/1675 237/1729/1674 129/997/954 +f 1966/1731/1676 237/1729/1674 133/1730/1675 +f 135/1732/1677 1966/1731/1676 133/1730/1675 +f 1764/315/285 1966/1731/1676 135/1732/1677 +f 217/314/284 1966/1731/1676 1764/315/285 +f 219/1733/1678 1302/295/265 1014/260/230 +f 1014/260/230 1762/262/232 219/1733/1678 +f 1545/280/250 1706/278/248 198/1734/1679 +f 1545/280/250 198/1734/1679 200/1735/1680 +f 1545/280/250 200/1735/1680 113/1736/1681 +f 113/1736/1681 200/1735/1680 1656/281/251 +f 1656/281/251 200/1735/1680 202/1737/1682 +f 1656/281/251 202/1737/1682 1762/262/232 +f 181/1666/1615 1281/1665/1614 178/1738/1683 +f 1558/1739/1684 1556/1740/1685 1196/1741/1686 +f 1196/1741/1686 1556/1740/1685 1002/1742/1687 +f 894/1743/1688 1916/1744/1688 169/1745/1688 +f 1000/1746/1689 166/1747/1690 1557/1748/1691 +f 1195/1749/1692 1000/1746/1689 1557/1748/1691 +f 172/1750/1693 171/1751/1693 895/1752/1693 +f 1901/1753/1694 63/73/73 69/79/79 +f 961/83/83 54/63/63 390/462/432 +f 1599/1754/1695 68/78/78 67/77/77 +f 74/84/84 1777/82/82 704/1755/1696 +f 701/1208/1159 61/71/71 74/84/84 +f 367/437/407 380/450/420 369/439/409 +f 369/439/409 380/450/420 896/1756/1697 +f 369/439/409 896/1756/1697 351/870/834 +f 896/1756/1697 380/450/420 522/781/745 +f 354/416/386 896/1756/1697 522/781/745 +f 1454/685/649 896/1756/1697 354/416/386 +f 354/416/386 522/781/745 353/417/387 +f 522/781/745 379/449/419 529/878/842 +f 529/878/842 379/449/419 381/879/843 +f 353/417/387 522/781/745 529/878/842 +f 357/927/889 521/779/743 1582/928/890 +f 520/780/744 521/779/743 357/927/889 +f 356/1757/1698 520/780/744 357/927/889 +f 488/675/639 519/778/742 520/780/744 +f 488/675/639 520/780/744 489/677/641 +f 489/677/641 520/780/744 1458/420/390 +f 1199/423/393 519/778/742 488/675/639 +f 1200/1758/1699 521/779/743 519/778/742 +f 1582/928/890 521/779/743 1200/1758/1699 +f 460/546/516 364/1759/1700 527/866/830 +f 518/777/741 460/546/516 527/866/830 +f 360/426/396 518/777/741 527/866/830 +f 362/665/629 517/776/740 518/777/741 +f 362/665/629 518/777/741 360/426/396 +f 492/718/682 459/547/517 517/776/740 +f 363/717/681 459/547/517 492/718/682 +f 492/718/682 517/776/740 1053/429/399 +f 361/428/398 492/718/682 1053/429/399 +f 678/1032/989 677/1760/1701 791/1172/1127 +f 673/1548/1497 791/1172/1127 861/1465/1414 +f 678/1032/989 791/1172/1127 875/1547/1496 +f 875/1547/1496 791/1172/1127 673/1548/1497 +f 860/1464/1413 790/1171/1126 824/1367/1318 +f 824/1367/1318 790/1171/1126 676/1368/1319 +f 1394/1028/985 860/1464/1413 824/1367/1318 +f 674/1293/1244 861/1465/1414 860/1464/1413 +f 1727/1291/1242 861/1465/1414 674/1293/1244 +f 863/1468/1417 864/1467/1416 670/1550/1499 +f 672/1761/1702 863/1468/1417 670/1550/1499 +f 670/1550/1499 864/1467/1416 2024/1551/1500 +f 823/1301/1252 863/1468/1417 822/1300/1251 +f 822/1300/1251 863/1468/1417 1144/1025/982 +f 862/1466/1415 863/1468/1417 823/1301/1252 +f 1390/1021/978 862/1466/1415 823/1301/1252 +f 1390/1021/978 823/1301/1252 667/1022/979 +f 2024/1551/1500 864/1467/1416 668/1762/1703 +f 668/1762/1703 864/1467/1416 862/1466/1415 +f 682/1037/994 691/1046/1003 680/1763/1704 +f 1289/1764/1705 691/1046/1003 682/1037/994 +f 663/1015/972 1289/1764/1705 682/1037/994 +f 865/1469/1418 691/1046/1003 1289/1764/1705 +f 1288/1765/1706 897/1766/1707 663/1015/972 +f 665/1018/975 1288/1765/1706 663/1015/972 +f 665/1018/975 1460/1017/974 1288/1765/1706 +f 877/1561/1510 692/1047/1004 666/1767/1708 +f 666/1767/1708 692/1047/1004 865/1469/1418 +f 554/1562/1511 692/1047/1004 877/1561/1510 +f 158/216/190 173/237/207 160/217/191 +f 1333/213/187 451/532/502 156/214/188 +f 153/211/185 784/1153/1108 996/209/183 +f 839/1768/900 1983/1769/900 1681/1770/900 +f 841/1771/900 1983/1769/900 839/1768/900 +f 1300/1772/900 1983/1769/900 841/1771/900 +f 837/1773/900 839/1768/900 1681/1770/900 +f 845/1774/900 1300/1772/900 841/1771/900 +f 1301/1726/900 1300/1772/900 845/1774/900 +f 837/1773/900 1681/1770/900 1680/1775/900 +f 844/1776/900 837/1773/900 1680/1775/900 +f 849/1777/900 1301/1726/900 845/1774/900 +f 893/1724/900 1301/1726/900 849/1777/900 +f 844/1776/900 1680/1775/900 886/1723/1672 +f 848/1778/900 844/1776/900 886/1723/1672 +f 893/1724/900 849/1777/900 853/1779/900 +f 848/1778/900 886/1723/1672 891/1721/1670 +f 852/1780/900 848/1778/900 891/1721/1670 +f 1894/1727/900 893/1724/900 853/1779/900 +f 1894/1727/900 853/1779/900 1184/1781/900 +f 856/1782/900 852/1780/900 892/1783/900 +f 892/1783/900 852/1780/900 891/1721/1670 +f 1194/1784/900 1894/1727/900 1184/1781/900 +f 1194/1784/900 1184/1781/900 859/1785/900 +f 859/1785/900 856/1782/900 887/1786/900 +f 887/1786/900 856/1782/900 892/1783/900 +f 887/1786/900 1194/1784/900 859/1785/900 +f 496/1787/900 1908/1788/900 1909/1789/900 +f 498/1790/900 1908/1788/900 496/1787/900 +f 543/1791/900 1908/1788/900 498/1790/900 +f 1496/1792/900 496/1787/900 1909/1789/900 +f 502/1793/900 543/1791/900 498/1790/900 +f 542/1794/900 543/1791/900 502/1793/900 +f 1496/1792/900 1909/1789/900 1500/941/900 +f 501/1795/900 1496/1792/900 1500/941/900 +f 506/1796/900 542/1794/900 502/1793/900 +f 539/937/899 542/1794/900 506/1796/900 +f 501/1795/900 1500/941/900 547/938/900 +f 505/1797/900 501/1795/900 547/938/900 +f 539/937/899 506/1796/900 510/1798/900 +f 505/1797/900 547/938/900 540/940/900 +f 509/1799/900 505/1797/900 540/940/900 +f 545/934/896 539/937/899 510/1798/900 +f 545/934/896 510/1798/900 514/1800/900 +f 513/1801/900 509/1799/900 544/1802/900 +f 544/1802/900 509/1799/900 540/940/900 +f 546/1803/900 545/934/896 514/1800/900 +f 546/1803/900 514/1800/900 516/1804/900 +f 516/1804/900 513/1801/900 541/1805/900 +f 541/1805/900 513/1801/900 544/1802/900 +f 541/1805/900 546/1803/900 516/1804/900 +f 1649/1806/1709 1463/1807/1710 1132/1808/1711 +f 1307/1809/1712 1463/1807/1710 1649/1806/1709 +f 1132/1808/1711 1463/1807/1710 1464/1810/1713 +f 1132/1808/1711 1464/1810/1713 1503/1811/1714 +f 2000/1812/1715 1307/1809/1712 1649/1806/1709 +f 1309/1813/1716 1307/1809/1712 2000/1812/1715 +f 1135/1814/1717 1132/1808/1711 1503/1811/1714 +f 1682/1815/1718 1309/1813/1716 2000/1812/1715 +f 1685/1816/1719 1135/1814/1717 1503/1811/1714 +f 1682/1815/1718 2000/1812/1715 103/1817/1720 +f 103/1817/1720 1135/1814/1717 1685/1816/1719 +f 1682/1815/1718 103/1817/1720 1685/1816/1719 +f 1308/1818/1721 47/1819/1722 898/1820/1723 +f 1461/1821/1724 47/1819/1722 1308/1818/1721 +f 898/1820/1723 47/1819/1722 58/1822/1725 +f 900/1823/1726 58/1822/1725 1121/1824/1727 +f 898/1820/1723 58/1822/1725 900/1823/1726 +f 902/1825/1728 1462/1826/1729 899/1827/1730 +f 60/1828/1731 1462/1826/1729 902/1825/1728 +f 900/1823/1726 1121/1824/1727 1504/1829/1732 +f 1683/1830/1733 60/1828/1731 902/1825/1728 +f 62/1831/1734 60/1828/1731 1683/1830/1733 +f 901/1832/1735 46/1833/1736 1204/1834/1737 +f 901/1832/1735 1204/1834/1737 904/1835/1738 +f 1684/1836/1739 1202/1837/1740 903/1838/1741 +f 64/1839/1742 1202/1837/1740 1684/1836/1739 +f 1374/1840/1743 1061/1841/1744 78/1842/1745 +f 1062/1843/1746 1061/1841/1744 1374/1840/1743 +f 78/1842/1745 1061/1841/1744 907/1844/1747 +f 1063/1845/1748 1062/1843/1746 1374/1840/1743 +f 78/1842/1745 907/1844/1747 909/1846/1749 +f 1714/1847/1750 78/1842/1745 909/1846/1749 +f 1063/1845/1748 1374/1840/1743 965/1848/1751 +f 1108/1849/1752 1063/1845/1748 965/1848/1751 +f 911/1850/1753 1714/1847/1750 909/1846/1749 +f 965/1848/1751 1714/1847/1750 911/1850/1753 +f 1108/1849/1752 965/1848/1751 911/1850/1753 +f 906/1851/1754 1058/1852/1755 1060/1853/1756 +f 1947/1854/1757 1058/1852/1755 906/1851/1754 +f 905/1855/1758 66/1856/1759 65/1857/1760 +f 1064/1858/1761 1947/1854/1757 906/1851/1754 +f 1900/1859/1762 1947/1854/1757 1064/1858/1761 +f 1585/1860/1763 65/1857/1760 1311/1861/1764 +f 905/1855/1758 65/1857/1760 1585/1860/1763 +f 1585/1860/1763 1311/1861/1764 1313/1862/1765 +f 1107/1863/1766 391/1864/1767 908/1865/1768 +f 1105/1866/1769 391/1864/1767 1107/1863/1766 +f 1312/1867/1770 71/1868/1771 73/1869/1772 +f 75/1870/1773 392/1871/1774 910/1872/1775 +f 1314/1873/1776 73/1869/1772 75/1870/1773 +f 1312/1867/1770 73/1869/1772 1314/1873/1776 +f 1314/1873/1776 75/1870/1773 910/1872/1775 +f 87/1874/1777 1946/1875/1778 1688/1876/1779 +f 1123/1877/1780 1946/1875/1778 87/1874/1777 +f 1539/1878/1781 1946/1875/1778 1123/1877/1780 +f 87/1874/1777 1688/1876/1779 915/1879/1782 +f 1818/1880/1783 1539/1878/1781 1123/1877/1780 +f 1245/1881/1784 87/1874/1777 915/1879/1782 +f 1818/1880/1783 1123/1877/1780 1940/1882/1785 +f 1590/1883/1786 1245/1881/1784 915/1879/1782 +f 1821/1884/1787 1818/1880/1783 1940/1882/1785 +f 1940/1882/1785 1245/1881/1784 1821/1884/1787 +f 1821/1884/1787 1245/1881/1784 1590/1883/1786 +f 1540/1885/1788 1542/1886/1789 913/1887/1790 +f 1538/1888/1791 1542/1886/1789 1540/1885/1788 +f 1687/1889/1792 1542/1886/1789 1600/1890/1793 +f 913/1887/1790 1542/1886/1789 1687/1889/1792 +f 912/1891/1794 703/1892/1795 702/1893/1796 +f 1819/1894/1797 55/1895/1798 914/1896/1799 +f 70/1897/1800 55/1895/1798 1819/1894/1797 +f 1589/1898/1801 702/1893/1796 1850/1899/1802 +f 912/1891/1794 702/1893/1796 1589/1898/1801 +f 1820/1900/1803 1776/1901/1804 916/1902/1805 +f 72/1903/1806 1776/1901/1804 1820/1900/1803 +f 917/1904/1807 1850/1899/1802 1778/1905/1808 +f 1589/1898/1801 1850/1899/1802 917/1904/1807 +f 917/1904/1807 1778/1905/1808 918/1906/1809 +f 1808/200/174 1809/1907/1810 141/201/175 +f 141/201/175 1809/1907/1810 143/1908/1811 +f 143/1908/1811 1809/1907/1810 1757/1909/1812 +f 143/1908/1811 1757/1909/1812 145/1910/1813 +f 1987/1911/1814 921/1912/1814 142/1913/1814 +f 995/1914/1815 1758/1915/1816 1690/1916/1817 +f 1470/1917/1818 1904/1918/1818 1988/1919/1818 +f 995/1914/1815 1690/1916/1817 1577/1920/1819 +f 1466/1921/1820 1468/1922/1820 879/1923/1820 +f 880/1924/1821 1691/1925/1822 1692/1926/1823 +f 1693/1927/1824 1469/1928/1824 1467/1929/1824 +f 880/1924/1821 1692/1926/1823 881/1930/1825 +f 149/1931/1826 919/1932/1827 1807/1933/1828 +f 920/1934/1829 919/1932/1827 149/1931/1826 +f 149/1931/1826 1807/1933/1828 1903/1935/1830 +f 922/1936/1831 920/1934/1829 149/1931/1826 +f 923/1937/1832 149/1931/1826 1903/1935/1830 +f 924/1938/1833 149/1931/1826 923/1937/1832 +f 922/1936/1831 149/1931/1826 924/1938/1833 +f 56/66/66 50/59/59 43/51/51 49/58/58 +f 137/1939/1834 136/1940/1835 138/1941/1836 139/1942/1837 +f 2010/1943/1838 1071/1944/1839 925/1945/1840 +f 418/1946/1841 926/1947/1841 415/1948/1841 +f 1511/1949/1842 1073/1950/1843 1905/1951/1844 +f 2010/1943/1838 925/1945/1840 417/1952/1845 +f 417/1952/1845 925/1945/1840 1823/1953/1846 +f 1509/1954/1847 1511/1949/1842 1905/1951/1844 +f 417/1952/1845 1823/1953/1846 1569/1955/1848 +f 929/1956/1849 927/1957/1850 1353/1958/1851 +f 1353/1958/1851 927/1957/1850 269/1959/1852 +f 533/1960/1853 928/1961/1854 930/1962/1855 +f 533/1960/1853 930/1962/1855 535/1963/1856 +f 1523/1964/1857 1520/1965/1858 1355/1966/1859 +f 1355/1966/1859 1520/1965/1858 534/1967/1860 +f 137/1939/1834 1072/1968/1861 136/1940/1835 +f 1070/1969/1862 1072/1968/1861 137/1939/1834 +f 136/1940/1835 1072/1968/1861 1512/1970/1863 +f 1822/1971/1864 1070/1969/1862 137/1939/1834 +f 138/1941/1836 136/1940/1835 1512/1970/1863 +f 139/1942/1837 1822/1971/1864 137/1939/1834 +f 1521/1972/1865 138/1941/1836 1512/1970/1863 +f 1822/1971/1864 139/1942/1837 1522/1973/1866 +f 139/1942/1837 138/1941/1836 1522/1973/1866 +f 1522/1973/1866 138/1941/1836 1521/1972/1865 +f 88/1974/1867 122/1975/1868 1128/1976/1869 +f 121/1977/1870 122/1975/1868 88/1974/1867 +f 1128/1976/1869 122/1975/1868 1845/1978/1871 +f 91/1979/1872 121/1977/1870 88/1974/1867 +f 128/1980/1873 121/1977/1870 91/1979/1872 +f 973/1981/1874 1128/1976/1869 1845/1978/1871 +f 1662/1982/1875 128/1980/1873 91/1979/1872 +f 1913/1983/1876 973/1981/1874 1845/1978/1871 +f 1662/1982/1875 91/1979/1872 975/1984/1877 +f 975/1984/1877 973/1981/1874 134/1985/1878 +f 134/1985/1878 973/1981/1874 1913/1983/1876 +f 1662/1982/1875 975/1984/1877 134/1985/1878 +f 94/1986/1879 1695/1987/1880 1208/1988/1881 +f 98/1989/1882 1695/1987/1880 94/1986/1879 +f 1091/1990/1883 1695/1987/1880 98/1989/1882 +f 94/1986/1879 1208/1988/1881 1247/1991/1884 +f 1247/1991/1884 1208/1988/1881 934/1992/1885 +f 1380/1993/1886 1091/1990/1883 98/1989/1882 +f 1092/1994/1887 1091/1990/1883 1380/1993/1886 +f 1249/1995/1888 1247/1991/1884 934/1992/1885 +f 1473/1996/1889 1249/1995/1888 934/1992/1885 +f 1380/1993/1886 1249/1995/1888 1473/1996/1889 +f 1092/1994/1887 1380/1993/1886 1473/1996/1889 +f 1205/1997/1890 1694/1998/1891 1769/1999/1892 +f 1207/2000/1893 1694/1998/1891 1205/1997/1890 +f 826/2001/1894 932/2002/1895 933/2003/1896 +f 827/2004/1897 932/2002/1895 826/2001/1894 +f 831/2005/1898 931/2006/1899 830/2007/1900 +f 1957/2008/1901 931/2006/1899 831/2005/1898 +f 829/2009/1902 933/2003/1896 1093/2010/1903 +f 826/2001/1894 933/2003/1896 829/2009/1902 +f 1861/2011/1904 1957/2008/1901 831/2005/1898 +f 829/2009/1902 1093/2010/1903 832/2012/1905 +f 1474/2013/1906 1957/2008/1901 1861/2011/1904 +f 1812/2014/1907 935/2015/1908 936/2016/1909 +f 1472/2017/1910 1474/2013/1906 1861/2011/1904 +f 1812/2014/1907 936/2016/1909 835/2018/1911 +f 1238/2019/1912 106/2020/1913 104/2021/1914 +f 79/2022/1915 106/2020/1913 1238/2019/1912 +f 108/2023/1916 106/2020/1913 79/2022/1915 +f 82/2024/1917 108/2023/1916 79/2022/1915 +f 1238/2019/1912 104/2021/1914 112/2025/1918 +f 968/2026/1919 1238/2019/1912 112/2025/1918 +f 114/2027/1920 108/2023/1916 82/2024/1917 +f 114/2027/1920 82/2024/1917 84/2028/1921 +f 117/2029/1922 968/2026/1919 112/2025/1918 +f 114/2027/1920 84/2028/1921 116/2030/1923 +f 84/2028/1921 968/2026/1919 116/2030/1923 +f 116/2030/1923 968/2026/1919 117/2029/1922 +f 874/1546/1495 871/1542/1491 872/1543/1492 873/1545/1494 +f 255/577/541 8/21/21 7/20/20 +f 255/577/541 7/20/20 257/1728/1673 +f 256/865/829 255/577/541 257/1728/1673 +f 558/1610/1559 559/1609/1558 148/1611/1560 144/204/178 994/203/177 +f 561/1616/1565 562/1615/1564 563/1614/1563 560/1607/1556 +f 1890/1613/1562 562/1615/1564 51/65/65 1234/39/39 +o 3MF_Object.027_3MF_Mesh.010 +v 173.977295 179.030975 3.995728 +v 173.520111 183.555679 13.764374 +v -174.077728 178.894882 3.753052 +v -173.395020 184.668640 15.465744 +v -118.014900 144.459946 -5.108414 +v -118.257484 144.459946 -2.409943 +v -119.585121 144.459946 -6.284103 +v -18.284420 144.459946 -2.830231 +v -18.705963 144.459946 -5.203094 +v 117.627113 144.459946 -5.210495 +v -9.733801 144.459946 -2.858612 +v -9.292040 144.459946 -5.203094 +v 120.079247 144.459946 -7.111435 +v 119.245186 144.459946 -2.178329 +v -118.360031 145.926041 -2.580841 +v -18.178642 145.974640 -2.749908 +v -18.691750 145.639877 -5.084946 +v 106.486168 146.021103 -2.860535 +v 106.508469 145.713699 -5.160950 +v -9.308865 145.674362 -5.064743 +v -9.738590 146.008835 -2.771347 +v 117.585579 145.816574 -5.004456 +v -172.446472 187.311295 15.086029 +v -150.484009 185.762360 13.872757 +v -173.209595 186.349380 13.984024 +v -150.519409 188.929443 15.477966 +v -35.000824 187.470215 14.991348 +v -34.661091 200.020218 15.109726 +v -35.013702 185.621933 13.476898 +v -34.999229 179.607529 1.087402 +v -35.240158 171.467316 -2.757599 +v -35.000019 176.621445 -1.496338 +v -111.520752 159.007217 -2.786743 +v -106.117172 159.050140 -2.213501 +v -118.462585 152.596878 -2.751740 +v -122.148407 156.129959 -2.858810 +v -125.285797 158.217148 -2.852997 +v 0.000999 200.003876 16.191193 +v -123.258537 199.202057 15.107620 +v -126.711288 195.240372 15.100647 +v -126.916916 188.137039 15.163101 +v -101.476074 158.997787 -2.786530 +v 0.031748 186.019775 13.967545 +v 0.006447 180.260971 2.257843 +v -126.790733 186.022690 14.068268 +v 34.977959 173.263016 -2.690857 +v -0.775110 151.139297 -2.827667 +v 35.303604 162.879852 -2.837433 +v 38.622917 159.306870 -2.847534 +v -38.902843 159.292130 -2.851105 +v 125.591980 158.444092 -2.870087 +v 35.000198 176.619705 -1.497131 +v 34.991821 179.566208 1.060242 +v -104.428879 162.288376 -2.173080 +v -173.672668 180.579041 2.637024 +v -149.999023 184.411423 11.244202 +v -126.805412 179.665726 1.168411 +v -149.510925 186.201385 14.368011 +v -8.143902 200.247284 15.419098 +v -6.718032 193.202896 15.262070 +v -0.086586 188.566742 15.113098 +v -0.009981 192.508591 15.419098 +v -149.467865 189.076813 15.504990 +v -118.679520 149.579788 -7.474060 +v -120.219978 147.880753 -8.993530 +v -123.667480 152.393219 -8.968094 +v -120.681183 152.341980 -7.642319 +v -126.095383 155.287704 -6.774414 +v -123.087051 154.266769 -7.320343 +v -117.890717 146.047058 -5.280258 +v -174.034637 152.418900 -9.186539 +v -148.858551 151.176605 -9.147415 +v -173.670532 154.722610 -7.693344 +v -126.830139 173.301193 -2.713104 +v -173.773956 157.296127 -2.819168 +v -173.930145 172.612366 -2.791016 +v -126.838318 176.660461 -1.441132 +v -173.812897 177.315918 -1.054779 +v -108.412453 163.794296 -2.658142 +v -0.233046 208.158768 15.313629 +v -6.578559 207.070786 15.258499 +v -4.037556 206.218307 15.419098 +v -6.315241 203.868973 15.419098 +v -0.000978 215.914856 15.083740 +v -142.792267 216.030273 15.113022 +v -139.684143 204.435822 15.322266 +v -142.771820 208.577454 15.396622 +v -138.822449 199.083344 15.426971 +v -140.538269 193.958191 15.321976 +v -144.454803 190.260071 15.426743 +v -0.020703 216.723831 2.294220 +v -142.723755 216.830902 2.366608 +v -6.249663 195.995941 15.419098 +v -3.864022 193.687744 15.419098 +v 3.860786 206.324600 15.419098 +v 6.251190 204.011932 15.419098 +v 6.322022 196.144501 15.419098 +v 4.009516 193.753784 15.419098 +v 8.482998 199.641525 15.419098 +v 142.352600 218.011551 15.449219 +v 142.695160 218.585983 2.245193 +v -142.675568 218.616913 2.244598 +v -142.329285 217.916931 15.666168 +v -142.341217 216.134949 17.272064 +v 142.335541 216.329941 17.272064 +v 142.724060 216.797073 2.385696 +v -145.362518 148.379562 -9.142426 +v -118.888245 144.459946 -8.572861 +v -145.633545 144.459946 -8.852020 +v -120.388817 144.459946 -7.144775 +v -145.595612 144.459946 -7.284210 +v -120.836670 150.039352 -6.510559 +v -124.266541 152.832642 -6.429428 +v -122.534203 150.460831 -7.149307 +v -175.620880 152.271408 -7.140213 +v -175.235413 153.347824 -6.251282 +v -123.911606 155.336411 -1.520996 +v -174.458344 155.330917 -2.047272 +v -119.536064 149.029495 -2.168655 +v -121.149811 153.368973 -1.501999 +v -119.249878 150.222702 -1.354568 +v -118.865295 152.533890 -0.770828 +v -123.672081 156.610626 -0.788422 +v -118.356247 144.459946 -0.895615 +v -174.081512 156.726913 -0.878235 +v -174.025421 144.459946 -9.287239 +v -175.955597 144.459946 -7.533951 +v -176.249756 144.459946 -9.563721 +v -154.978851 144.459946 -9.139084 +v -154.163757 144.459946 -7.560364 +v -174.173645 172.569931 -0.748535 +v 123.808983 156.544662 -0.795166 +v 174.372070 172.884964 -0.812927 +v 174.141022 156.009827 -1.095566 +v 120.388931 154.015366 -0.836075 +v 118.707565 150.534195 -0.917953 +v 118.306694 144.459946 -1.041550 +v 174.150330 176.452667 0.851746 +v -174.242035 176.366135 0.703720 +v 173.429321 185.297073 15.932526 +v -173.077454 187.787796 17.178680 +v 172.887054 187.865601 17.173477 +v -157.649017 216.237274 17.053711 +v -169.684937 216.191666 17.021454 +v -173.124725 212.686996 16.998138 +v -157.306519 197.293716 17.181305 +v -0.000479 200.002350 17.272095 +v -142.643341 197.512436 17.272064 +v 142.700470 197.275055 17.272064 +v 157.282928 197.328690 17.195099 +v 169.373718 216.171600 17.070343 +v 157.617554 216.368942 16.969574 +v 173.253235 212.719879 16.972473 +v 145.390442 193.885254 17.272064 +v 148.374634 192.542099 17.272064 +v -154.364716 193.767578 17.050995 +v -145.358246 193.964874 17.272064 +v 154.624084 193.959076 17.099304 +v -151.514374 192.531754 17.112579 +v -148.293304 192.601654 17.272064 +v 151.702087 192.598511 17.117905 +v -157.660767 217.992325 15.535995 +v -157.313080 218.590958 2.245407 +v -170.211426 218.439713 2.245361 +v -167.465454 218.063629 15.411453 +v -175.309814 177.607437 -21.979881 +v -177.231720 158.420349 -21.957092 +v -177.187347 177.826599 -21.986816 +v -175.360016 158.651260 -21.912933 +v -176.656189 156.862915 -11.856300 +v -176.349304 153.983902 -7.560089 +v -175.760986 156.304718 -2.100845 +v -176.137909 177.649948 -2.090668 +v -177.108856 179.923157 -20.402573 +v -177.068451 194.296707 -19.624390 +v -176.688843 195.155533 -12.418839 +v -177.061707 205.731659 -19.581070 +v -176.680695 205.009094 -12.267998 +v -176.963226 207.917953 -17.675369 +v -176.962555 192.132187 -17.687881 +v -175.945618 186.287140 1.772705 +v -175.980804 211.188492 1.935394 +v -176.212799 194.984619 -3.345749 +v -175.931610 189.074341 1.993851 +v -176.204407 204.862579 -3.184753 +v -176.539001 153.458115 -9.659920 +v -175.166656 210.113556 15.427551 +v -175.074249 186.275681 14.946030 +v -174.547668 215.394348 2.246674 +v -171.163116 217.030396 15.521103 +v -173.979553 214.224670 15.534378 +v -154.093170 147.391678 -7.343475 +v -150.988068 150.259476 -7.379379 +v -152.622284 149.202271 -7.635880 +v -148.914978 150.221237 -7.423187 +v -147.107544 149.252563 -7.370621 +v -146.075134 147.206375 -7.651352 +v -175.567291 178.079102 0.508423 +v -175.681915 172.865875 -1.889816 +v -157.192322 216.106903 14.937363 +v -157.224243 208.591492 15.397400 +v -169.350220 215.398499 15.190399 +v -160.327637 204.417084 15.289795 +v -172.306976 213.103363 15.043869 +v -161.168030 199.079773 15.486954 +v -159.457031 193.959412 15.346954 +v -155.523621 190.236481 15.397354 +v -157.272736 216.829895 2.366959 +v -170.294708 216.459335 2.338470 +v -169.564240 215.806366 14.680832 +v -174.388947 155.203949 -8.151993 +v -174.914520 156.497894 -13.309059 +v -175.435608 157.259903 -20.643036 +v -175.204254 179.692398 -20.460358 +v -174.685181 204.834808 -12.401749 +v -175.145599 194.193405 -19.412857 +v -175.192078 205.671265 -19.540054 +v -174.677094 195.015488 -12.250000 +v -174.097748 185.947128 1.502045 +v -175.060059 207.694244 -17.748993 +v -175.094299 192.173981 -17.630180 +v -174.212585 205.005234 -3.362442 +v -174.093628 210.453476 1.139862 +v -174.063049 189.531281 1.434067 +v -174.821259 154.777222 -11.144905 +v -174.202423 195.162933 -3.202499 +v -175.045441 153.133102 -10.651009 +v -173.238464 210.232422 14.639053 +v -174.045868 187.622543 2.411682 +v -173.934875 212.002640 2.284058 +v -173.236725 213.802444 2.328262 +v -152.766083 150.461945 -9.146469 +v -154.837219 147.591446 -9.152130 +v -175.092438 144.459946 -10.503510 +v -150.863312 150.226547 -8.170181 +v -147.644989 149.626770 -8.194336 +v -153.928284 147.294556 -8.178833 +v -175.805756 156.314407 -12.498764 +v -153.626312 193.721268 15.546921 +v -156.764832 197.195343 15.556076 +v -143.234131 197.114777 15.556122 +v -146.371704 193.721268 15.546921 +v -149.999023 192.749344 15.546921 +v 150.491547 186.442978 14.594742 +v 172.620544 186.756577 14.663040 +v 173.146606 185.732468 13.340561 +v 172.989044 188.928879 15.141449 +v 150.533295 189.073288 15.500885 +v 34.997696 187.516159 14.983063 +v 35.311394 199.712296 15.111938 +v 34.983612 185.637238 13.505585 +v 114.866173 152.224930 -2.821106 +v 122.139359 156.107422 -2.877136 +v 118.464104 152.592285 -2.743347 +v 117.390862 146.005783 -2.772141 +v 122.911453 199.618958 15.114624 +v 125.803253 196.108185 15.125366 +v 126.068375 187.846329 15.082184 +v 126.121948 185.786224 13.735489 +v 150.001007 184.411652 11.244202 +v 173.645721 180.646545 2.801605 +v 126.082581 179.596939 1.061218 +v 149.513336 186.331085 14.508011 +v 6.812261 193.293274 15.419098 +v 149.469086 188.973907 15.482697 +v 119.020340 149.442719 -7.848373 +v 121.818047 151.021439 -8.994293 +v 120.156929 147.668015 -9.016281 +v 117.891380 146.098419 -7.176178 +v 123.827187 154.554398 -7.457870 +v 124.162277 152.927567 -8.725113 +v 120.424362 152.638138 -7.014603 +v 118.518776 150.344101 -6.113403 +v 149.202393 151.227203 -9.137405 +v 173.995819 152.388901 -9.172226 +v 173.675720 154.707214 -7.689087 +v 126.090576 155.318314 -6.696075 +v 173.944946 172.462662 -2.818466 +v 126.076294 173.290924 -2.703918 +v 173.853302 157.295944 -2.863037 +v 173.788055 177.255005 -1.108170 +v 126.084869 176.653137 -1.452148 +v 6.725748 206.806091 15.260559 +v 142.804291 215.935440 15.112244 +v 142.776154 208.592987 15.397247 +v 139.673035 204.419052 15.289780 +v 138.829102 199.083664 15.465149 +v 140.540344 193.958069 15.321976 +v 144.475616 190.237335 15.397430 +v 145.561859 148.857635 -9.154190 +v 145.486145 144.459946 -8.848633 +v 118.870903 144.459946 -8.556946 +v 145.626892 144.459946 -7.373077 +v 120.388962 148.532410 -6.715652 +v 123.169685 150.771835 -7.147339 +v 121.626457 151.128830 -6.329727 +v 124.274048 152.863998 -6.439560 +v 175.578735 152.257721 -7.133148 +v 174.810028 153.321060 -6.147827 +v 119.740341 144.809174 -6.374786 +v 124.137482 155.227829 -1.722504 +v 119.632652 150.117599 -2.032700 +v 121.268021 153.131607 -1.910461 +v 176.300079 144.459946 -9.751503 +v 175.873932 144.459946 -7.493057 +v 174.131653 144.459946 -9.385422 +v 154.358063 144.459946 -7.401794 +v 154.357452 144.459946 -8.847992 +v 167.156708 218.100800 15.479828 +v 170.567352 218.275436 2.249207 +v 157.324951 218.618484 2.244598 +v 157.670990 217.930847 15.651047 +v 177.190826 177.798950 -22.002823 +v 175.371552 158.708633 -21.955879 +v 175.278656 177.437820 -21.952667 +v 177.125885 157.994247 -21.760284 +v 176.273346 153.807678 -7.289139 +v 176.668091 157.043427 -12.206001 +v 176.029785 173.022873 -2.392929 +v 177.109436 179.897034 -20.379852 +v 175.863129 178.490952 0.192566 +v 176.690826 204.852249 -12.418839 +v 177.066650 194.288849 -19.572609 +v 177.066650 205.692581 -19.625946 +v 176.682709 194.998703 -12.268005 +v 176.966827 207.873230 -17.666344 +v 176.961700 192.082809 -17.653992 +v 175.931763 186.459213 2.035370 +v 176.214874 205.023163 -3.345749 +v 175.999481 210.490646 0.848312 +v 175.953278 189.231445 1.663193 +v 176.206757 195.145203 -3.184769 +v 176.214264 153.516586 -10.142799 +v 175.753326 156.328964 -2.099060 +v 175.098999 186.618729 15.121338 +v 175.143005 210.134766 15.371490 +v 175.879333 211.922104 2.117722 +v 171.171387 217.055786 15.484314 +v 174.327576 215.632416 2.247635 +v 174.045410 214.167542 15.498886 +v 147.413483 149.252258 -7.639404 +v 148.935364 150.265732 -7.381851 +v 151.177551 150.247971 -7.348282 +v 145.945801 147.519165 -7.304092 +v 152.946777 149.261505 -7.331924 +v 154.095398 147.374847 -7.349731 +v 160.317230 204.427307 15.333069 +v 157.228210 208.577454 15.396622 +v 157.195892 215.972794 15.071732 +v 169.959106 215.366776 15.087402 +v 172.333801 213.192993 14.877594 +v 173.155518 209.883148 15.016251 +v 161.174774 199.078888 15.446976 +v 159.459015 193.959442 15.346954 +v 155.533203 190.248886 15.426926 +v 167.279968 216.244080 14.619492 +v 157.277893 216.799225 2.384262 +v 170.358643 216.385590 2.367462 +v 174.395630 155.171066 -8.216202 +v 174.930084 156.454391 -13.241699 +v 175.309082 157.371964 -20.630287 +v 175.251007 179.735657 -20.495117 +v 175.183594 194.253540 -19.492767 +v 174.687073 195.173004 -12.401756 +v 175.171448 205.507797 -19.536667 +v 174.679779 204.992325 -12.250000 +v 174.095123 185.945847 1.525391 +v 175.097778 207.778473 -17.707932 +v 175.066162 192.154953 -17.463051 +v 174.104889 210.506195 1.174774 +v 174.214813 195.002548 -3.362427 +v 174.056976 189.519165 1.458801 +v 174.820190 154.823105 -11.182785 +v 174.205078 204.844727 -3.202393 +v 174.746338 152.903854 -10.451073 +v 174.016541 187.572418 2.445312 +v 173.944183 211.986542 2.279114 +v 173.278442 213.699600 2.338348 +v 153.122345 150.250961 -9.149078 +v 154.896057 147.383682 -9.151627 +v 174.782166 144.459946 -10.411438 +v 150.056244 150.391861 -8.187256 +v 153.542816 148.350113 -8.149872 +v 146.061737 147.283386 -8.188660 +v 175.838684 156.354935 -12.534431 +v 146.373718 193.721268 15.546921 +v 143.235260 197.195312 15.556091 +v 156.752258 197.105469 15.554199 +v 153.628326 193.721268 15.546921 +v 150.001007 192.749344 15.546921 +v -118.360031 145.926041 -2.580841 +v -118.360031 145.926041 -2.580841 +v -118.360031 145.926041 -2.580841 +v -18.178642 145.974640 -2.749908 +v -18.178642 145.974640 -2.749908 +v -173.209595 186.349380 13.984024 +v -157.660767 217.992325 15.535995 +v -157.313080 218.590958 2.245407 +v -142.675568 218.616913 2.244598 +v -142.723755 216.830902 2.366608 +v -157.272736 216.829895 2.366959 +v -148.858551 151.176605 -9.147415 +v -145.362518 148.379562 -9.142426 +v -119.585121 144.459946 -6.284103 +v -120.388817 144.459946 -7.144775 +v -154.978851 144.459946 -9.139084 +v -154.978851 144.459946 -9.139084 +v -154.163757 144.459946 -7.560364 +v -154.163757 144.459946 -7.560364 +v -175.309814 177.607437 -21.979881 +v -175.360016 158.651260 -21.912933 +v -177.108856 179.923157 -20.402573 +v -175.945618 186.287140 1.772705 +v -175.945618 186.287140 1.772705 +v -175.980804 211.188492 1.935394 +v -175.980804 211.188492 1.935394 +v -174.547668 215.394348 2.246674 +v -175.204254 179.692398 -20.460358 +v -175.192078 205.671265 -19.540054 +v -175.060059 207.694244 -17.748993 +v -174.093628 210.453476 1.139862 +v -174.093628 210.453476 1.139862 +v -174.821259 154.777222 -11.144905 +v -174.821259 154.777222 -11.144905 +v -175.045441 153.133102 -10.651009 +v -175.045441 153.133102 -10.651009 +v -170.294708 216.459335 2.338470 +v -173.236725 213.802444 2.328262 +v -152.766083 150.461945 -9.146469 +v -154.837219 147.591446 -9.152130 +v -175.805756 156.314407 -12.498764 +v 176.682709 194.998703 -12.268005 +v 176.682709 194.998703 -12.268005 +v 174.687073 195.173004 -12.401756 +v 174.687073 195.173004 -12.401756 +v 118.870903 144.459946 -8.556946 +v 118.870903 144.459946 -8.556946 +v 176.206757 195.145203 -3.184769 +v 176.206757 195.145203 -3.184769 +v 176.273346 153.807678 -7.289139 +v 175.753326 156.328964 -2.099060 +v 147.413483 149.252258 -7.639404 +v 147.413483 149.252258 -7.639404 +v 147.413483 149.252258 -7.639404 +v 148.935364 150.265732 -7.381851 +v 148.935364 150.265732 -7.381851 +v 145.945801 147.519165 -7.304092 +v 157.324951 218.618484 2.244598 +v 142.695160 218.585983 2.245193 +v 174.930084 156.454391 -13.241699 +v 175.309082 157.371964 -20.630287 +v 175.309082 157.371964 -20.630287 +v 175.873932 144.459946 -7.493057 +v 175.873932 144.459946 -7.493057 +v 175.097778 207.778473 -17.707932 +v 174.104889 210.506195 1.174774 +v 174.820190 154.823105 -11.182785 +v -9.733801 144.459946 -2.858612 +v -9.733801 144.459946 -2.858612 +v -9.292040 144.459946 -5.203094 +v -9.292040 144.459946 -5.203094 +v 106.486168 146.021103 -2.860535 +v -9.738590 146.008835 -2.771347 +v -9.738590 146.008835 -2.771347 +v -173.773956 157.296127 -2.819168 +v -173.773956 157.296127 -2.819168 +v -173.930145 172.612366 -2.791016 +v -145.633545 144.459946 -8.852020 +v -145.633545 144.459946 -8.852020 +v -145.595612 144.459946 -7.284210 +v -145.595612 144.459946 -7.284210 +v -176.680695 205.009094 -12.267998 +v -176.680695 205.009094 -12.267998 +v -176.204407 204.862579 -3.184753 +v -176.204407 204.862579 -3.184753 +v -176.656189 156.862915 -11.856300 +v -176.539001 153.458115 -9.659920 +v -174.685181 204.834808 -12.401749 +v -174.685181 204.834808 -12.401749 +v -175.094299 192.173981 -17.630180 +v -174.063049 189.531281 1.434067 +v -174.063049 189.531281 1.434067 +v -152.622284 149.202271 -7.635880 +v -152.622284 149.202271 -7.635880 +v -152.622284 149.202271 -7.635880 +v -150.863312 150.226547 -8.170181 +v -142.792267 216.030273 15.113022 +v -157.192322 216.106903 14.937363 +v 154.358063 144.459946 -7.401794 +v 154.358063 144.459946 -7.401794 +v 177.190826 177.798950 -22.002823 +v 177.125885 157.994247 -21.760284 +v 177.125885 157.994247 -21.760284 +v 177.125885 157.994247 -21.760284 +v 177.109436 179.897034 -20.379852 +v 176.214874 205.023163 -3.345749 +v 176.214874 205.023163 -3.345749 +v 175.879333 211.922104 2.117722 +v 174.327576 215.632416 2.247635 +v 152.946777 149.261505 -7.331924 +v 154.095398 147.374847 -7.349731 +v 174.679779 204.992325 -12.250000 +v 174.679779 204.992325 -12.250000 +v 174.214813 195.002548 -3.362427 +v 174.214813 195.002548 -3.362427 +v 174.205078 204.844727 -3.202393 +v 174.205078 204.844727 -3.202393 +v 174.056976 189.519165 1.458801 +v 174.056976 189.519165 1.458801 +v 174.016541 187.572418 2.445312 +v 145.626892 144.459946 -7.373077 +v 145.626892 144.459946 -7.373077 +v -118.356247 144.459946 -0.895615 +v -118.356247 144.459946 -0.895615 +v -177.231720 158.420349 -21.957092 +v -177.231720 158.420349 -21.957092 +v -177.187347 177.826599 -21.986816 +v -177.068451 194.296707 -19.624390 +v -177.061707 205.731659 -19.581070 +v -176.962555 192.132187 -17.687881 +v -176.212799 194.984619 -3.345749 +v -176.212799 194.984619 -3.345749 +v -154.093170 147.391678 -7.343475 +v -148.914978 150.221237 -7.423187 +v -169.350220 215.398499 15.190399 +v -172.306976 213.103363 15.043869 +v -175.435608 157.259903 -20.643036 +v -175.435608 157.259903 -20.643036 +v -174.677094 195.015488 -12.250000 +v -174.677094 195.015488 -12.250000 +v -174.202423 195.162933 -3.202499 +v -174.202423 195.162933 -3.202499 +v -18.284420 144.459946 -2.830231 +v -18.284420 144.459946 -2.830231 +v -18.705963 144.459946 -5.203094 +v -18.705963 144.459946 -5.203094 +v 176.690826 204.852249 -12.418839 +v 176.690826 204.852249 -12.418839 +v -18.691750 145.639877 -5.084946 +v -18.691750 145.639877 -5.084946 +v -118.888245 144.459946 -8.572861 +v -118.888245 144.459946 -8.572861 +v 125.591980 158.444092 -2.870087 +v 125.591980 158.444092 -2.870087 +v 125.591980 158.444092 -2.870087 +v 125.591980 158.444092 -2.870087 +v 173.853302 157.295944 -2.863037 +v 173.853302 157.295944 -2.863037 +v 170.567352 218.275436 2.249207 +v 176.966827 207.873230 -17.666344 +v 175.999481 210.490646 0.848312 +v 176.668091 157.043427 -12.206001 +v 176.214264 153.516586 -10.142799 +v -9.308865 145.674362 -5.064743 +v -9.308865 145.674362 -5.064743 +v 175.066162 192.154953 -17.463051 +v 173.944183 211.986542 2.279114 +v 173.278442 213.699600 2.338348 +v 150.056244 150.391861 -8.187256 +v 150.056244 150.391861 -8.187256 +v -174.025421 144.459946 -9.287239 +v -174.025421 144.459946 -9.287239 +v -170.211426 218.439713 2.245361 +v -176.963226 207.917953 -17.675369 +v -147.107544 149.252563 -7.370621 +v -174.097748 185.947128 1.502045 +v -174.097748 185.947128 1.502045 +v -174.212585 205.005234 -3.362442 +v -174.212585 205.005234 -3.362442 +v -173.934875 212.002640 2.284058 +v -175.092438 144.459946 -10.503510 +v -175.092438 144.459946 -10.503510 +v 172.620544 186.756577 14.663040 +v 173.146606 185.732468 13.340561 +v 172.989044 188.928879 15.141449 +v 106.508469 145.713699 -5.160950 +v -173.812897 177.315918 -1.054779 +v -0.020703 216.723831 2.294220 +v 145.561859 148.857635 -9.154190 +v 145.486145 144.459946 -8.848633 +v 145.486145 144.459946 -8.848633 +v 174.131653 144.459946 -9.385422 +v 174.131653 144.459946 -9.385422 +v 154.357452 144.459946 -8.847992 +v 154.357452 144.459946 -8.847992 +v 175.371552 158.708633 -21.955879 +v 175.371552 158.708633 -21.955879 +v 175.278656 177.437820 -21.952667 +v 157.195892 215.972794 15.071732 +v 167.279968 216.244080 14.619492 +v 157.277893 216.799225 2.384262 +v 170.358643 216.385590 2.367462 +v 175.171448 205.507797 -19.536667 +v 174.746338 152.903854 -10.451073 +v 174.782166 144.459946 -10.411438 +v 174.782166 144.459946 -10.411438 +v 114.866173 152.224930 -2.821106 +v 114.866173 152.224930 -2.821106 +v 117.390862 146.005783 -2.772141 +v 117.390862 146.005783 -2.772141 +v 117.390862 146.005783 -2.772141 +v 117.390862 146.005783 -2.772141 +v 173.645721 180.646545 2.801605 +v 173.788055 177.255005 -1.108170 +v 176.961700 192.082809 -17.653992 +v 175.953278 189.231445 1.663193 +v 175.953278 189.231445 1.663193 +v 123.169685 150.771835 -7.147339 +v 151.177551 150.247971 -7.348282 +v 151.177551 150.247971 -7.348282 +v 142.724060 216.797073 2.385696 +v 142.804291 215.935440 15.112244 +v 175.251007 179.735657 -20.495117 +v 174.095123 185.945847 1.525391 +v 174.095123 185.945847 1.525391 +v 120.079247 144.459946 -7.111435 +v 120.079247 144.459946 -7.111435 +v 118.464104 152.592285 -2.743347 +v 118.464104 152.592285 -2.743347 +v -173.672668 180.579041 2.637024 +v 122.139359 156.107422 -2.877136 +v -125.285797 158.217148 -2.852997 +v -176.688843 195.155533 -12.418839 +v -176.688843 195.155533 -12.418839 +v -174.045868 187.622543 2.411682 +v -147.644989 149.626770 -8.194336 +v -175.931610 189.074341 1.993851 +v -175.931610 189.074341 1.993851 +v 177.066650 194.288849 -19.572609 +v 177.066650 205.692581 -19.625946 +v -146.075134 147.206375 -7.651352 +v -146.075134 147.206375 -7.651352 +v 169.959106 215.366776 15.087402 +v 172.333801 213.192993 14.877594 +v 153.122345 150.250961 -9.149078 +v 153.542816 148.350113 -8.149872 +v -118.014900 144.459946 -5.108414 +v -118.014900 144.459946 -5.108414 +v -118.014900 144.459946 -5.108414 +v -118.014900 144.459946 -5.108414 +v -118.257484 144.459946 -2.409943 +v -118.257484 144.459946 -2.409943 +v -118.257484 144.459946 -2.409943 +v 119.245186 144.459946 -2.178329 +v -117.890717 146.047058 -5.280258 +v -117.890717 146.047058 -5.280258 +v -117.890717 146.047058 -5.280258 +v -0.000978 215.914856 15.083740 +v -175.955597 144.459946 -7.533951 +v -175.955597 144.459946 -7.533951 +v -176.249756 144.459946 -9.563721 +v -176.249756 144.459946 -9.563721 +v -176.137909 177.649948 -2.090668 +v 117.585579 145.816574 -5.004456 +v 117.585579 145.816574 -5.004456 +v 173.944946 172.462662 -2.818466 +v 117.627113 144.459946 -5.210495 +v 117.627113 144.459946 -5.210495 +v 176.300079 144.459946 -9.751503 +v 176.300079 144.459946 -9.751503 +v 175.931763 186.459213 2.035370 +v 175.931763 186.459213 2.035370 +v 175.183594 194.253540 -19.492767 +v 118.306694 144.459946 -1.041550 +v 118.306694 144.459946 -1.041550 +v -174.914520 156.497894 -13.309059 +v 173.155518 209.883148 15.016251 +v -122.148407 156.129959 -2.858810 +v -118.462585 152.596878 -2.751740 +v -175.145599 194.193405 -19.412857 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.126827 0.470570 +vt 0.128811 0.475789 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.999503 0.313531 +vt 0.998191 0.734951 +vt 0.000472 0.303064 +vt 0.002431 0.808348 +vt 0.015700 0.176639 +vt 0.018476 0.173792 +vt 0.013398 0.173224 +vt 0.002393 0.444563 +vt 0.015700 0.176639 +vt 0.000073 0.446664 +vt 0.021220 0.823760 +vt 0.006028 0.474404 +vt 0.003694 0.472541 +vt 0.025840 0.826348 +vt 0.019801 0.826486 +vt 0.013398 0.173224 +vt 0.016519 0.787219 +vt 0.018527 0.790671 +vt 0.006408 0.473628 +vt 0.006057 0.470868 +vt 0.018527 0.790671 +vt 0.006408 0.473628 +vt 0.006028 0.474404 +vt 0.021220 0.823760 +vt 0.023502 0.820249 +vt 0.019418 0.795574 +vt 0.096741 0.067790 +vt 0.095623 0.066533 +vt 0.103540 0.108419 +vt 0.112449 0.108053 +vt 0.034102 0.198487 +vt 0.028228 0.202090 +vt 0.031997 0.201293 +vt 0.038303 0.177416 +vt 0.036186 0.180114 +vt 0.029627 0.183328 +vt 0.021007 0.177308 +vt 0.024744 0.183706 +vt 0.019861 0.184083 +vt 0.113213 0.404453 +vt 0.111126 0.195287 +vt 0.106849 0.189325 +vt 0.096713 0.405897 +vt 0.096159 0.184347 +vt 0.030439 0.220942 +vt 0.026615 0.217971 +vt 0.030294 0.225021 +vt 0.096953 0.482397 +vt 0.073659 0.414773 +vt 0.078487 0.494356 +vt 0.093534 0.419438 +vt 0.096028 0.182741 +vt 0.096308 0.404802 +vt 0.058923 0.580457 +vt 0.062607 0.411755 +vt 0.018586 0.490065 +vt 0.036615 0.585790 +vt 0.015986 0.496086 +vt 0.037017 0.403085 +vt 0.002972 0.447899 +vt 0.028815 0.594002 +vt 0.011531 0.498402 +vt 0.031173 0.393151 +vt 0.029763 0.774726 +vt 0.025974 0.602381 +vt 0.012998 0.213512 +vt 0.016519 0.787219 +vt 0.029552 0.783852 +vt 0.009124 0.496418 +vt 0.006057 0.470868 +vt 0.015986 0.486115 +vt 0.008631 0.492528 +vt 0.000073 0.446664 +vt 0.003694 0.472541 +vt 0.065094 0.579391 +vt 0.067982 0.412872 +vt 0.071280 0.577609 +vt 0.074680 0.061419 +vt 0.099113 0.113620 +vt 0.079354 0.165347 +vt 0.101152 0.168546 +vt 0.106551 0.117223 +vt 0.102175 0.473799 +vt 0.108145 0.471632 +vt 0.109585 0.423431 +vt 0.098076 0.482243 +vt 0.108781 0.421269 +vt 0.095194 0.420267 +vt 0.100705 0.481815 +vt 0.102823 0.170081 +vt 0.113884 0.114853 +vt 0.025355 0.176904 +vt 0.031038 0.170877 +vt 0.023801 0.174089 +vt 0.029242 0.175420 +vt 0.036776 0.171320 +vt 0.033082 0.173412 +vt 0.021007 0.177308 +vt 0.038218 0.050573 +vt 0.033775 0.111196 +vt 0.039566 0.052977 +vt 0.036186 0.180114 +vt 0.038623 0.177166 +vt 0.029627 0.183328 +vt 0.024744 0.183706 +vt 0.068222 0.163340 +vt 0.058708 0.060152 +vt 0.038504 0.061165 +vt 0.040825 0.164103 +vt 0.073468 0.164205 +vt 0.065265 0.060338 +vt 0.047533 0.222688 +vt 0.051239 0.214410 +vt 0.046973 0.211719 +vt 0.047384 0.204812 +vt 0.045093 0.225853 +vt 0.044911 0.227657 +vt 0.132467 0.512784 +vt 0.134899 0.509084 +vt 0.129303 0.497130 +vt 0.134221 0.484571 +vt 0.133174 0.476146 +vt 0.132004 0.480740 +vt 0.141350 0.487937 +vt 0.141248 0.151053 +vt 0.123373 0.410466 +vt 0.131510 0.154689 +vt 0.136802 0.152683 +vt 0.121889 0.405551 +vt 0.135651 0.485552 +vt 0.124538 0.416733 +vt 0.119948 0.181082 +vt 0.128137 0.152304 +vt 0.124107 0.191732 +vt 0.114480 0.175886 +vt 0.118704 0.143810 +vt 0.113001 0.130111 +vt 0.148445 0.493948 +vt 0.152534 0.152518 +vt 0.141248 0.151053 +vt 0.141350 0.487937 +vt 0.077546 0.177773 +vt 0.076148 0.402034 +vt 0.105833 0.474500 +vt 0.102691 0.478908 +vt 0.142286 0.848665 +vt 0.139854 0.843697 +vt 0.141714 0.151178 +vt 0.141187 0.146297 +vt 0.130806 0.147618 +vt 0.132170 0.848966 +vt 0.139854 0.843697 +vt 0.141714 0.151178 +vt 0.148445 0.493948 +vt 0.147558 0.151397 +vt 0.152534 0.152518 +vt 0.151978 0.842835 +vt 0.144859 0.843956 +vt 0.149915 0.499757 +vt 0.030425 0.121491 +vt 0.020049 0.174228 +vt 0.026304 0.123328 +vt 0.020049 0.174228 +vt 0.026304 0.123328 +vt 0.020111 0.173194 +vt 0.027189 0.122429 +vt 0.020500 0.168528 +vt 0.022891 0.164058 +vt 0.021850 0.167311 +vt 0.020111 0.173194 +vt 0.018476 0.173792 +vt 0.030489 0.042627 +vt 0.032696 0.040362 +vt 0.019971 0.161637 +vt 0.031453 0.039459 +vt 0.013398 0.173224 +vt 0.016597 0.169945 +vt 0.017432 0.165813 +vt 0.016461 0.169108 +vt 0.015827 0.168154 +vt 0.019640 0.160615 +vt 0.013762 0.171926 +vt 0.032456 0.037990 +vt 0.029178 0.052062 +vt 0.030988 0.051017 +vt 0.031716 0.049736 +vt 0.027327 0.088499 +vt 0.028086 0.089765 +vt 0.019486 0.020858 +vt 0.024408 0.838339 +vt 0.022053 0.976186 +vt 0.036738 0.959724 +vt 0.021448 0.833089 +vt 0.021386 0.829961 +vt 0.013762 0.171926 +vt 0.019257 0.827448 +vt 0.994666 0.148671 +vt 0.994463 0.193908 +vt 0.009728 0.126314 +vt 0.010033 0.193908 +vt 1.000000 0.177902 +vt 0.000000 0.171516 +vt 0.997930 0.828484 +vt 0.002668 1.000000 +vt 0.002590 0.940754 +vt 0.997517 0.937512 +vt 0.140333 0.950271 +vt 0.135894 0.046907 +vt 0.140926 0.961736 +vt 0.113294 0.069824 +vt 0.114330 0.063786 +vt 0.115717 0.061946 +vt 0.124436 0.079955 +vt 0.140295 0.142012 +vt 0.138508 0.487839 +vt 0.136902 0.498119 +vt 0.144074 0.856942 +vt 0.129531 0.918981 +vt 0.119242 0.934813 +vt 0.119268 0.930847 +vt 0.120870 0.936539 +vt 0.140908 0.870428 +vt 0.139421 0.883007 +vt 0.137738 0.506180 +vt 0.127493 0.092538 +vt 0.136592 0.128467 +vt 0.140156 0.497859 +vt 0.132562 0.907404 +vt 0.131541 0.103725 +vt 0.134086 0.116057 +vt 0.136278 0.896072 +vt 0.113398 0.068166 +vt 0.111386 0.065822 +vt 0.111021 0.063374 +vt 0.113632 0.064465 +vt 0.045038 0.039643 +vt 0.044455 0.039431 +vt 0.041482 0.018939 +vt 0.043473 0.021622 +vt 0.039049 0.034238 +vt 0.033374 0.040947 +vt 0.044455 0.039431 +vt 0.041482 0.018939 +vt 0.032399 0.038979 +vt 0.054750 0.026896 +vt 0.044409 0.042753 +vt 0.101100 0.054338 +vt 0.100932 0.053932 +vt 0.101639 0.054838 +vt 0.102431 0.055377 +vt 0.101625 0.055012 +vt 0.100859 0.054287 +vt 0.078466 0.037630 +vt 0.108312 0.059841 +vt 0.100323 0.052421 +vt 0.096601 0.044684 +vt 0.104320 0.056859 +vt 0.035535 0.042844 +vt 0.030988 0.051017 +vt 0.031716 0.049736 +vt 0.115751 0.061024 +vt 0.123954 0.035364 +vt 0.110208 0.061696 +vt 0.114139 0.063394 +vt 0.114854 0.062215 +vt 0.031716 0.049736 +vt 0.028227 0.091434 +vt 0.026425 0.103041 +vt 0.027988 0.096202 +vt 0.026173 0.110739 +vt 0.026173 0.110739 +vt 0.026403 0.117189 +vt 0.027725 0.121391 +vt 0.027189 0.122429 +vt 0.028086 0.089765 +vt 0.113398 0.068166 +vt 0.133558 0.029073 +vt 0.058555 0.019027 +vt 0.075267 0.006670 +vt 0.033578 0.027544 +vt 0.049197 0.009256 +vt 0.054750 0.026896 +vt 0.020049 0.174228 +vt 0.015700 0.176639 +vt 0.040825 0.164103 +vt 0.037146 0.167685 +vt 0.038504 0.061165 +vt 0.018494 0.180118 +vt 0.066658 0.397715 +vt 0.068753 0.176466 +vt 0.046879 0.180215 +vt 0.045391 0.387045 +vt 0.049818 0.392522 +vt 0.071389 0.400294 +vt 0.072927 0.176599 +vt 0.113195 0.068333 +vt 0.111132 0.066248 +vt 0.115436 0.071313 +vt 0.113579 0.073541 +vt 0.110507 0.065461 +vt 0.114655 0.076484 +vt 0.110359 0.084548 +vt 0.108846 0.095624 +vt 0.112449 0.065350 +vt 0.110637 0.063367 +vt 0.113195 0.068333 +vt 0.110966 0.066062 +vt 0.058708 0.060152 +vt 0.045038 0.039643 +vt 0.041012 0.051556 +vt 0.043140 0.036159 +vt 0.042713 0.023659 +vt 0.043473 0.021622 +vt 0.044763 0.041352 +vt 0.065265 0.060338 +vt 0.102425 0.055059 +vt 0.101694 0.054750 +vt 0.101170 0.054277 +vt 0.100937 0.053758 +vt 0.074680 0.061419 +vt 0.076768 0.048286 +vt 0.101747 0.054767 +vt 0.101013 0.054231 +vt 0.104331 0.057212 +vt 0.107286 0.059743 +vt 0.095380 0.052095 +vt 0.040427 0.042967 +vt 0.099561 0.053127 +vt 0.037363 0.045914 +vt 0.038504 0.061165 +vt 0.109787 0.065451 +vt 0.095623 0.066533 +vt 0.087224 0.050615 +vt 0.108402 0.061059 +vt 0.110507 0.065461 +vt 0.109502 0.062140 +vt 0.033775 0.098520 +vt 0.031188 0.090492 +vt 0.029178 0.052062 +vt 0.027327 0.088499 +vt 0.111132 0.066248 +vt 0.030807 0.051677 +vt 0.029178 0.052062 +vt 0.019257 0.827448 +vt 0.013762 0.171926 +vt 0.029591 0.103942 +vt 0.029115 0.115552 +vt 0.027988 0.096202 +vt 0.026403 0.117189 +vt 0.027725 0.121391 +vt 0.027988 0.096202 +vt 0.028227 0.091434 +vt 0.029366 0.091490 +vt 0.027189 0.122429 +vt 0.026304 0.123328 +vt 0.027725 0.121391 +vt 0.028086 0.089765 +vt 0.030425 0.121491 +vt 0.029115 0.115552 +vt 0.033775 0.111196 +vt 0.029591 0.103942 +vt 0.033775 0.098520 +vt 0.027988 0.096202 +vt 0.031188 0.090492 +vt 0.027327 0.088499 +vt 0.104331 0.057212 +vt 0.102431 0.055377 +vt 0.104320 0.056859 +vt 0.102425 0.055059 +vt 0.100932 0.053932 +vt 0.102425 0.055059 +vt 0.102431 0.055377 +vt 0.100937 0.053758 +vt 0.100323 0.052421 +vt 0.100937 0.053758 +vt 0.100932 0.053932 +vt 0.099561 0.053127 +vt 0.099561 0.053127 +vt 0.104331 0.057212 +vt 0.104320 0.056859 +vt 0.100323 0.052421 +vt 0.076768 0.048286 +vt 0.044763 0.041352 +vt 0.044409 0.042753 +vt 0.078466 0.037630 +vt 0.078466 0.037630 +vt 0.076768 0.048286 +vt 0.087224 0.050615 +vt 0.095380 0.052095 +vt 0.096601 0.044684 +vt 0.101013 0.054231 +vt 0.100859 0.054287 +vt 0.096601 0.044684 +vt 0.095380 0.052095 +vt 0.101100 0.054338 +vt 0.101170 0.054277 +vt 0.101694 0.054750 +vt 0.101639 0.054838 +vt 0.101625 0.055012 +vt 0.101747 0.054767 +vt 0.107286 0.059743 +vt 0.108312 0.059841 +vt 0.108312 0.059841 +vt 0.107286 0.059743 +vt 0.108402 0.061059 +vt 0.111386 0.065822 +vt 0.111021 0.063374 +vt 0.110637 0.063367 +vt 0.112449 0.065350 +vt 0.110208 0.061696 +vt 0.109502 0.062140 +vt 0.042713 0.023659 +vt 0.041482 0.018939 +vt 0.041113 0.035670 +vt 0.039049 0.034238 +vt 0.037363 0.045914 +vt 0.035535 0.042844 +vt 0.030807 0.051677 +vt 0.030988 0.051017 +vt 0.030807 0.051677 +vt 0.043140 0.036159 +vt 0.040427 0.042967 +vt 0.040427 0.042967 +vt 0.041113 0.035670 +vt 0.037363 0.045914 +vt 0.120278 0.082568 +vt 0.132823 0.141133 +vt 0.127918 0.126141 +vt 0.121543 0.096046 +vt 0.125544 0.110753 +vt 0.042713 0.023659 +vt 0.110542 0.890604 +vt 0.100396 0.931078 +vt 0.101511 0.930220 +vt 0.102045 0.929816 +vt 0.117593 0.890046 +vt 0.024626 0.816140 +vt 0.031834 0.797374 +vt 0.028230 0.806757 +vt 0.040236 0.819184 +vt 0.033893 0.816167 +vt 0.037195 0.800949 +vt 0.033893 0.816167 +vt 0.031834 0.797374 +vt 0.028230 0.806757 +vt 0.024626 0.816140 +vt 0.024626 0.816140 +vt 0.028230 0.806757 +vt 0.031834 0.797374 +vt 0.022155 0.797644 +vt 0.024626 0.816140 +vt 0.023502 0.820249 +vt 0.019418 0.795574 +vt 0.022155 0.797644 +vt 0.115330 0.802186 +vt 0.112438 0.588646 +vt 0.111472 0.808305 +vt 0.111506 0.588286 +vt 0.100258 0.813387 +vt 0.110724 0.586951 +vt 0.095676 0.587794 +vt 0.092240 0.573405 +vt 0.078044 0.499667 +vt 0.097506 0.511576 +vt 0.095021 0.588448 +vt 0.100303 0.815104 +vt 0.103315 0.885257 +vt 0.082896 0.833048 +vt 0.080556 0.936569 +vt 0.105016 0.830301 +vt 0.111348 0.881181 +vt 0.109535 0.570331 +vt 0.108725 0.523847 +vt 0.102355 0.520295 +vt 0.094272 0.572932 +vt 0.099023 0.512143 +vt 0.106701 0.828560 +vt 0.118523 0.883316 +vt 0.030293 0.823097 +vt 0.029038 0.825320 +vt 0.033250 0.826293 +vt 0.026202 0.822453 +vt 0.036032 0.828732 +vt 0.038134 0.826544 +vt 0.034066 0.822786 +vt 0.030538 0.820823 +vt 0.038194 0.889000 +vt 0.042310 0.948525 +vt 0.043822 0.947193 +vt 0.041241 0.831279 +vt 0.040236 0.819184 +vt 0.041312 0.827111 +vt 0.033893 0.816167 +vt 0.024626 0.816140 +vt 0.042702 0.821584 +vt 0.063047 0.938535 +vt 0.072302 0.835379 +vt 0.044689 0.834809 +vt 0.043452 0.938203 +vt 0.070077 0.938531 +vt 0.077729 0.834304 +vt 0.133383 0.517971 +vt 0.129241 0.517942 +vt 0.127284 0.521306 +vt 0.140681 0.845221 +vt 0.142048 0.505852 +vt 0.123355 0.582552 +vt 0.124299 0.576579 +vt 0.138099 0.846763 +vt 0.121586 0.587973 +vt 0.136103 0.844165 +vt 0.133615 0.846117 +vt 0.120860 0.821070 +vt 0.127055 0.812301 +vt 0.128951 0.803023 +vt 0.123765 0.854107 +vt 0.118011 0.867342 +vt 0.151978 0.842835 +vt 0.149915 0.499757 +vt 0.142048 0.505852 +vt 0.140681 0.845221 +vt 0.073787 0.591134 +vt 0.080915 0.820767 +vt 0.105934 0.519273 +vt 0.102711 0.515204 +vt 0.100755 0.512243 +vt 0.035412 0.878296 +vt 0.030824 0.875590 +vt 0.025617 0.825443 +vt 0.030824 0.875590 +vt 0.025617 0.825443 +vt 0.031584 0.876558 +vt 0.026263 0.829820 +vt 0.025840 0.826348 +vt 0.027060 0.833528 +vt 0.026095 0.832614 +vt 0.027577 0.835714 +vt 0.034655 0.955650 +vt 0.036884 0.957915 +vt 0.024922 0.826630 +vt 0.025840 0.826348 +vt 0.025285 0.837740 +vt 0.022377 0.830335 +vt 0.019801 0.826486 +vt 0.022956 0.833598 +vt 0.019257 0.827448 +vt 0.035467 0.947664 +vt 0.033869 0.946843 +vt 0.036254 0.949129 +vt 0.032379 0.910186 +vt 0.032445 0.909012 +vt 0.118772 0.934468 +vt 0.116772 0.935644 +vt 0.117419 0.933663 +vt 0.119177 0.931777 +vt 0.047897 0.962359 +vt 0.048930 0.962080 +vt 0.047458 0.977946 +vt 0.045526 0.979843 +vt 0.037208 0.956982 +vt 0.043210 0.965530 +vt 0.047897 0.962359 +vt 0.036070 0.969263 +vt 0.045526 0.979843 +vt 0.047854 0.959051 +vt 0.060093 0.978132 +vt 0.107047 0.943161 +vt 0.105618 0.943765 +vt 0.106318 0.943455 +vt 0.105144 0.944224 +vt 0.106350 0.943280 +vt 0.105379 0.943749 +vt 0.086130 0.957569 +vt 0.110260 0.942539 +vt 0.112963 0.939691 +vt 0.101934 0.950838 +vt 0.104252 0.946698 +vt 0.040254 0.955125 +vt 0.035467 0.947664 +vt 0.036254 0.949129 +vt 0.037012 0.958959 +vt 0.129948 0.959417 +vt 0.121125 0.937499 +vt 0.114547 0.938949 +vt 0.119310 0.935347 +vt 0.115981 0.937079 +vt 0.120102 0.936359 +vt 0.031698 0.881847 +vt 0.030271 0.888292 +vt 0.030271 0.888292 +vt 0.030650 0.895970 +vt 0.027060 0.833528 +vt 0.030650 0.895970 +vt 0.031806 0.877622 +vt 0.031219 0.902701 +vt 0.032607 0.907475 +vt 0.036254 0.949129 +vt 0.031584 0.876558 +vt 0.032445 0.909012 +vt 0.132947 0.977009 +vt 0.076069 0.993360 +vt 0.048978 0.989828 +vt 0.037012 0.958959 +vt 0.037208 0.956982 +vt 0.025617 0.825443 +vt 0.021220 0.823760 +vt 0.043452 0.938203 +vt 0.044689 0.834809 +vt 0.023502 0.820249 +vt 0.072147 0.822445 +vt 0.063388 0.595335 +vt 0.052930 0.785223 +vt 0.045796 0.770706 +vt 0.045327 0.600927 +vt 0.041216 0.606913 +vt 0.068410 0.592822 +vt 0.076478 0.822053 +vt 0.120389 0.926621 +vt 0.119632 0.931499 +vt 0.121795 0.928740 +vt 0.117305 0.933093 +vt 0.116722 0.933346 +vt 0.116300 0.933227 +vt 0.118892 0.922598 +vt 0.115089 0.913833 +vt 0.113800 0.901970 +vt 0.117410 0.932716 +vt 0.118319 0.934119 +vt 0.119632 0.931499 +vt 0.116451 0.935574 +vt 0.044628 0.948678 +vt 0.048930 0.962080 +vt 0.043452 0.938203 +vt 0.046446 0.961560 +vt 0.063047 0.938535 +vt 0.047458 0.977946 +vt 0.046609 0.975489 +vt 0.048805 0.960345 +vt 0.105661 0.943841 +vt 0.106354 0.943586 +vt 0.105354 0.944208 +vt 0.107379 0.943314 +vt 0.070077 0.938531 +vt 0.082888 0.948941 +vt 0.106414 0.943578 +vt 0.105485 0.943877 +vt 0.112951 0.939261 +vt 0.104360 0.945597 +vt 0.099989 0.945548 +vt 0.043827 0.955471 +vt 0.109811 0.942440 +vt 0.041490 0.951698 +vt 0.116300 0.933227 +vt 0.080556 0.936569 +vt 0.091720 0.946680 +vt 0.102045 0.929816 +vt 0.100396 0.931078 +vt 0.114088 0.937890 +vt 0.115261 0.936728 +vt 0.116722 0.933346 +vt 0.117305 0.933093 +vt 0.038030 0.901527 +vt 0.035483 0.908464 +vt 0.033869 0.946843 +vt 0.032379 0.910186 +vt 0.117410 0.932716 +vt 0.101511 0.930220 +vt 0.035386 0.947032 +vt 0.033869 0.946843 +vt 0.033850 0.891968 +vt 0.030271 0.888292 +vt 0.031698 0.881847 +vt 0.033850 0.891968 +vt 0.033889 0.904884 +vt 0.031219 0.902701 +vt 0.033850 0.891968 +vt 0.030650 0.895970 +vt 0.032607 0.907475 +vt 0.031698 0.881847 +vt 0.031806 0.877622 +vt 0.032659 0.877463 +vt 0.031584 0.876558 +vt 0.030824 0.875590 +vt 0.032379 0.910186 +vt 0.032445 0.909012 +vt 0.035412 0.878296 +vt 0.031698 0.881847 +vt 0.038030 0.901527 +vt 0.033889 0.904884 +vt 0.110260 0.942539 +vt 0.107047 0.943161 +vt 0.107379 0.943314 +vt 0.109811 0.942440 +vt 0.105354 0.944208 +vt 0.105144 0.944224 +vt 0.107047 0.943161 +vt 0.107379 0.943314 +vt 0.105354 0.944208 +vt 0.104360 0.945597 +vt 0.105144 0.944224 +vt 0.104252 0.946698 +vt 0.110260 0.942539 +vt 0.109811 0.942440 +vt 0.104252 0.946698 +vt 0.104360 0.945597 +vt 0.086130 0.957569 +vt 0.047854 0.959051 +vt 0.048805 0.960345 +vt 0.082888 0.948941 +vt 0.082888 0.948941 +vt 0.086130 0.957569 +vt 0.091720 0.946680 +vt 0.101934 0.950838 +vt 0.099989 0.945548 +vt 0.105379 0.943749 +vt 0.105485 0.943877 +vt 0.099989 0.945548 +vt 0.101934 0.950838 +vt 0.105618 0.943765 +vt 0.105661 0.943841 +vt 0.106318 0.943455 +vt 0.106354 0.943586 +vt 0.106414 0.943578 +vt 0.106350 0.943280 +vt 0.112963 0.939691 +vt 0.112951 0.939261 +vt 0.114547 0.938949 +vt 0.114088 0.937890 +vt 0.116772 0.935644 +vt 0.117419 0.933663 +vt 0.116451 0.935574 +vt 0.118319 0.934119 +vt 0.115261 0.936728 +vt 0.115981 0.937079 +vt 0.043210 0.965530 +vt 0.045526 0.979843 +vt 0.044821 0.963189 +vt 0.040254 0.955125 +vt 0.046609 0.975489 +vt 0.046446 0.961560 +vt 0.043827 0.955471 +vt 0.041490 0.951698 +vt 0.035386 0.947032 +vt 0.035467 0.947664 +vt 0.035386 0.947032 +vt 0.125327 0.916186 +vt 0.137432 0.857089 +vt 0.126714 0.902767 +vt 0.132330 0.872255 +vt 0.130188 0.888579 +vt 0.045526 0.979843 +vt 0.047458 0.977946 +vt 0.046609 0.975489 +vt 0.002890 0.445254 +vt 0.002393 0.444563 +vt 0.000073 0.446664 +vt 0.002972 0.447899 +vt 0.003694 0.472541 +vt 0.006028 0.474404 +vt 0.006057 0.470868 +vt 0.006408 0.473628 +vt 0.129351 0.497315 +vt 0.129472 0.497470 +vt 0.129642 0.497533 +vt 0.108151 0.522106 +vt 0.129816 0.497480 +vt 0.129335 0.496941 +vn -0.0105 0.2965 0.9550 +vn -0.0103 0.2908 0.9567 +vn -0.0016 0.2913 0.9566 +vn -0.0017 0.2953 0.9554 +vn -0.0000 0.3434 0.9392 +vn -0.0000 0.3334 0.9428 +vn 0.0003 0.3354 0.9421 +vn -0.0003 0.3353 0.9421 +vn -0.0000 0.3335 0.9428 +vn -0.0004 0.3388 0.9409 +vn -0.0006 0.3453 0.9385 +vn -0.0005 0.3388 0.9408 +vn -0.0005 0.3508 0.9365 +vn -0.0017 0.2934 0.9560 +vn -0.0016 0.2953 0.9554 +vn -0.0105 0.2932 0.9560 +vn 0.0143 0.3350 0.9421 +vn 0.0133 0.3226 0.9464 +vn -0.0143 0.3353 0.9420 +vn -0.0132 0.3212 0.9469 +vn -0.0107 0.2956 0.9553 +vn -0.0104 0.2878 0.9576 +vn -0.0016 0.2866 0.9581 +vn 0.0104 0.2934 0.9559 +vn -0.0008 0.2934 0.9560 +vn -0.0008 0.2887 0.9574 +vn 0.0108 0.2973 0.9547 +vn 0.0103 0.2874 0.9578 +vn 0.0094 0.2915 0.9565 +vn 0.0094 0.2956 0.9553 +vn -0.0008 0.2954 0.9554 +vn -0.0008 0.2914 0.9566 +vn 0.0095 0.2956 0.9553 +vn -0.0008 0.2953 0.9554 +vn 0.0104 0.2955 0.9553 +vn -0.0131 0.3260 0.9453 +vn -0.0133 0.3267 0.9450 +vn -0.0124 0.3260 0.9453 +vn -0.0114 0.3278 0.9447 +vn -0.0097 0.3148 0.9491 +vn -0.0103 0.3033 0.9529 +vn -0.0091 0.3137 0.9495 +vn -0.0109 0.3136 0.9495 +vn -0.0106 0.3098 0.9507 +vn -0.0104 0.2965 0.9550 +vn -0.0103 0.2878 0.9576 +vn -0.0026 0.3456 0.9384 +vn -0.0093 0.3443 0.9388 +vn -0.0096 0.3383 0.9410 +vn -0.0026 0.3265 0.9452 +vn -0.0097 0.3272 0.9449 +vn -0.0088 0.3148 0.9491 +vn -0.0000 0.3262 0.9453 +vn -0.0030 0.3422 0.9396 +vn 0.0019 0.3408 0.9402 +vn -0.0028 0.3265 0.9452 +vn -0.0097 0.3260 0.9453 +vn 0.0030 0.3397 0.9405 +vn -0.0031 0.3368 0.9416 +vn -0.0001 0.3008 0.9537 +vn 0.0030 0.3218 0.9468 +vn -0.0016 0.2912 0.9567 +vn 0.0034 0.3155 0.9489 +vn -0.0033 0.3155 0.9489 +vn 0.0109 0.3140 0.9494 +vn 0.0093 0.2915 0.9565 +vn -0.0009 0.2913 0.9566 +vn -0.0016 0.2886 0.9574 +vn 0.0021 0.2887 0.9574 +vn 0.0030 0.3428 0.9394 +vn -0.0030 0.3428 0.9394 +vn 0.0029 0.3422 0.9396 +vn -0.0144 0.3404 0.9402 +vn -0.0117 0.3290 0.9443 +vn -0.0105 0.3421 0.9396 +vn -0.0114 0.3257 0.9454 +vn -0.0005 0.3348 0.9423 +vn 0.0000 0.3279 0.9447 +vn -0.0114 0.3280 0.9446 +vn -0.0107 0.3076 0.9515 +vn -0.0112 0.3161 0.9486 +vn -0.0110 0.3077 0.9514 +vn -0.0108 0.3131 0.9497 +vn -0.0113 0.3166 0.9485 +vn -0.0110 0.3160 0.9487 +vn -0.0158 0.3166 0.9484 +vn -0.0135 0.3142 0.9493 +vn -0.0156 0.3176 0.9481 +vn -0.0103 0.3032 0.9529 +vn -0.0109 0.3398 0.9404 +vn -0.0150 0.3388 0.9408 +vn -0.0151 0.3118 0.9500 +vn -0.0108 0.3427 0.9394 +vn -0.0148 0.3430 0.9392 +vn -0.0090 0.3194 0.9476 +vn -0.0093 0.3230 0.9463 +vn 0.0003 0.3545 0.9351 +vn -0.0000 0.3574 0.9339 +vn -0.0005 0.3559 0.9345 +vn -0.0003 0.3543 0.9351 +vn 0.0000 0.3695 0.9292 +vn -0.0107 0.3696 0.9291 +vn -0.0105 0.3518 0.9360 +vn -0.0108 0.3579 0.9337 +vn -0.0105 0.3435 0.9391 +vn -0.0106 0.3359 0.9418 +vn -0.0110 0.3299 0.9439 +vn -0.0000 0.3994 0.9168 +vn -0.0115 0.3994 0.9167 +vn -0.0107 0.3695 0.9291 +vn -0.0005 0.3388 0.9409 +vn 0.0106 0.3718 0.9283 +vn 0.0115 0.4024 0.9154 +vn -0.0115 0.4024 0.9154 +vn -0.0106 0.3712 0.9285 +vn -0.0105 0.3652 0.9309 +vn 0.0105 0.3655 0.9307 +vn 0.0115 0.3993 0.9168 +vn -0.0133 0.3090 0.9510 +vn -0.0108 0.3004 0.9538 +vn -0.0133 0.3009 0.9535 +vn -0.0133 0.3010 0.9535 +vn -0.0108 0.2973 0.9547 +vn -0.0131 0.2976 0.9546 +vn -0.0108 0.3064 0.9519 +vn -0.0111 0.3114 0.9502 +vn -0.0110 0.3086 0.9511 +vn -0.0108 0.2974 0.9547 +vn -0.0158 0.3119 0.9500 +vn -0.0156 0.3119 0.9500 +vn -0.0106 0.3056 0.9521 +vn -0.0151 0.3067 0.9517 +vn -0.0104 0.2956 0.9553 +vn -0.0105 0.3021 0.9532 +vn -0.0103 0.2962 0.9551 +vn -0.0102 0.2992 0.9541 +vn -0.0106 0.3064 0.9518 +vn -0.0102 0.2848 0.9585 +vn -0.0150 0.3068 0.9516 +vn -0.0104 0.2957 0.9552 +vn -0.0159 0.3019 0.9532 +vn -0.0162 0.3025 0.9530 +vn -0.0160 0.2981 0.9544 +vn -0.0142 0.3015 0.9533 +vn -0.0139 0.2982 0.9544 +vn -0.0148 0.3342 0.9424 +vn 0.0106 0.3063 0.9519 +vn 0.0148 0.3348 0.9422 +vn 0.0149 0.3060 0.9519 +vn 0.0103 0.3019 0.9533 +vn 0.0102 0.2958 0.9552 +vn -0.0102 0.2849 0.9585 +vn 0.0102 0.2851 0.9584 +vn 0.0145 0.3373 0.9413 +vn -0.0145 0.3375 0.9412 +vn 0.0132 0.3213 0.9469 +vn -0.0130 0.3228 0.9464 +vn 0.0130 0.3229 0.9463 +vn -0.0117 0.3658 0.9306 +vn -0.0126 0.3658 0.9306 +vn -0.0129 0.3607 0.9326 +vn -0.0083 0.3374 0.9413 +vn -0.0107 0.3375 0.9413 +vn 0.0000 0.3413 0.9400 +vn 0.0107 0.3371 0.9414 +vn 0.0118 0.3374 0.9413 +vn 0.0126 0.3657 0.9306 +vn 0.0117 0.3662 0.9305 +vn 0.0129 0.3609 0.9325 +vn 0.0109 0.3320 0.9432 +vn 0.0111 0.3299 0.9439 +vn -0.0116 0.3322 0.9431 +vn -0.0109 0.3321 0.9432 +vn 0.0116 0.3324 0.9431 +vn -0.0114 0.3302 0.9438 +vn -0.0112 0.3300 0.9439 +vn 0.0114 0.3303 0.9438 +vn -0.0118 0.3716 0.9283 +vn -0.0127 0.4024 0.9154 +vn -0.0137 0.4022 0.9155 +vn -0.0125 0.3719 0.9282 +vn -0.0172 0.3967 0.9178 +vn -0.0173 0.3971 0.9176 +vn -0.0176 0.3596 0.9329 +vn -0.0174 0.3599 0.9328 +vn -0.0163 0.3311 0.9435 +vn -0.0159 0.3160 0.9486 +vn -0.0152 0.3086 0.9511 +vn -0.0150 0.3459 0.9381 +vn -0.0171 0.3965 0.9179 +vn -0.0168 0.4204 0.9072 +vn -0.0159 0.4016 0.9157 +vn -0.0166 0.4403 0.8977 +vn -0.0158 0.4180 0.9083 +vn -0.0163 0.4384 0.8987 +vn -0.0166 0.4109 0.9115 +vn -0.0146 0.3519 0.9359 +vn -0.0143 0.3916 0.9200 +vn -0.0150 0.3781 0.9257 +vn -0.0145 0.3559 0.9344 +vn -0.0148 0.3939 0.9190 +vn -0.0161 0.3196 0.9474 +vn -0.0162 0.3024 0.9530 +vn -0.0159 0.2982 0.9544 +vn -0.0132 0.3601 0.9328 +vn -0.0133 0.3246 0.9457 +vn -0.0141 0.3974 0.9175 +vn -0.0127 0.3702 0.9289 +vn -0.0130 0.3660 0.9305 +vn -0.0139 0.3033 0.9528 +vn -0.0136 0.3087 0.9511 +vn -0.0137 0.3073 0.9515 +vn -0.0134 0.3088 0.9510 +vn -0.0134 0.3087 0.9511 +vn -0.0132 0.3068 0.9517 +vn -0.0132 0.3035 0.9527 +vn -0.0118 0.3715 0.9283 +vn -0.0148 0.3409 0.9400 +vn -0.0150 0.3372 0.9413 +vn -0.0118 0.3700 0.9290 +vn -0.0127 0.3684 0.9296 +vn -0.0118 0.3579 0.9337 +vn -0.0121 0.3518 0.9360 +vn -0.0129 0.3653 0.9308 +vn -0.0122 0.3434 0.9391 +vn -0.0121 0.3358 0.9419 +vn -0.0118 0.3300 0.9439 +vn -0.0127 0.3994 0.9167 +vn -0.0137 0.3989 0.9169 +vn -0.0127 0.3701 0.9289 +vn -0.0149 0.3388 0.9408 +vn -0.0183 0.3272 0.9448 +vn -0.0163 0.3338 0.9425 +vn -0.0173 0.3538 0.9352 +vn -0.0173 0.3539 0.9351 +vn -0.0174 0.3600 0.9328 +vn -0.0169 0.3962 0.9180 +vn -0.0147 0.3430 0.9392 +vn -0.0156 0.4181 0.9083 +vn -0.0164 0.4400 0.8978 +vn -0.0166 0.4196 0.9076 +vn -0.0157 0.4009 0.9160 +vn -0.0143 0.3405 0.9402 +vn -0.0144 0.3519 0.9359 +vn -0.0162 0.4382 0.8987 +vn -0.0164 0.4108 0.9116 +vn -0.0147 0.3946 0.9187 +vn -0.0142 0.3923 0.9197 +vn -0.0144 0.3579 0.9336 +vn -0.0161 0.3255 0.9454 +vn -0.0147 0.3781 0.9256 +vn -0.0161 0.3213 0.9468 +vn -0.0130 0.3619 0.9321 +vn -0.0133 0.3266 0.9451 +vn -0.0143 0.3526 0.9357 +vn -0.0141 0.3920 0.9199 +vn -0.0140 0.3947 0.9187 +vn -0.0139 0.3129 0.9497 +vn -0.0141 0.3075 0.9514 +vn -0.0127 0.3685 0.9296 +vn -0.0162 0.3045 0.9524 +vn 0.0102 0.2852 0.9584 +vn -0.0136 0.3103 0.9505 +vn -0.0136 0.3086 0.9511 +vn -0.0134 0.3092 0.9509 +vn -0.0137 0.3104 0.9505 +vn -0.0137 0.3072 0.9516 +vn -0.0133 0.3093 0.9509 +vn -0.0134 0.3093 0.9509 +vn -0.0139 0.3032 0.9528 +vn -0.0139 0.3048 0.9523 +vn -0.0132 0.3036 0.9527 +vn -0.0132 0.3090 0.9510 +vn -0.0135 0.3143 0.9492 +vn -0.0137 0.3103 0.9505 +vn -0.0138 0.3073 0.9515 +vn -0.0140 0.3049 0.9523 +vn -0.0142 0.3016 0.9533 +vn -0.0156 0.4180 0.9083 +vn -0.0158 0.4179 0.9083 +vn -0.0148 0.3781 0.9257 +vn -0.0146 0.3518 0.9360 +vn -0.0164 0.4401 0.8978 +vn -0.0163 0.4383 0.8987 +vn -0.0162 0.4381 0.8988 +vn -0.0162 0.4382 0.8988 +vn -0.0164 0.4383 0.8987 +vn -0.0142 0.3924 0.9197 +vn -0.0141 0.3921 0.9198 +vn -0.0137 0.4021 0.9155 +vn -0.0127 0.3993 0.9167 +vn -0.0163 0.3315 0.9433 +vn -0.0163 0.3316 0.9433 +vn -0.0171 0.3964 0.9179 +vn -0.0118 0.3403 0.9402 +vn -0.0108 0.3402 0.9403 +vn -0.0111 0.3350 0.9421 +vn -0.0116 0.3351 0.9421 +vn -0.0113 0.3336 0.9427 +vn -0.0172 0.3538 0.9352 +vn 0.0115 0.3256 0.9454 +vn 0.0134 0.3269 0.9450 +vn 0.0132 0.3260 0.9453 +vn 0.0152 0.3284 0.9444 +vn 0.0115 0.3280 0.9446 +vn 0.0103 0.2913 0.9566 +vn 0.0100 0.3027 0.9530 +vn 0.0106 0.3098 0.9507 +vn 0.0103 0.3032 0.9529 +vn 0.0102 0.2913 0.9566 +vn 0.0102 0.2914 0.9566 +vn 0.0093 0.3449 0.9386 +vn 0.0027 0.3451 0.9386 +vn 0.0096 0.3395 0.9405 +vn 0.0096 0.3269 0.9450 +vn 0.0027 0.3266 0.9452 +vn 0.0027 0.3265 0.9452 +vn 0.0097 0.3263 0.9452 +vn 0.0117 0.3289 0.9443 +vn 0.0104 0.3422 0.9396 +vn 0.0143 0.3402 0.9402 +vn 0.0114 0.3256 0.9454 +vn 0.0006 0.3444 0.9388 +vn 0.0005 0.3347 0.9423 +vn 0.0114 0.3279 0.9447 +vn 0.0107 0.3081 0.9513 +vn 0.0109 0.3074 0.9515 +vn 0.0111 0.3136 0.9495 +vn 0.0106 0.3004 0.9537 +vn 0.0112 0.3166 0.9485 +vn 0.0110 0.3168 0.9484 +vn 0.0107 0.3123 0.9499 +vn 0.0106 0.3061 0.9519 +vn 0.0136 0.3143 0.9492 +vn 0.0158 0.3166 0.9484 +vn 0.0155 0.3176 0.9481 +vn 0.0102 0.2914 0.9565 +vn 0.0150 0.3386 0.9408 +vn 0.0108 0.3398 0.9405 +vn 0.0151 0.3119 0.9500 +vn 0.0147 0.3430 0.9392 +vn 0.0107 0.3428 0.9394 +vn 0.0005 0.3555 0.9347 +vn 0.0005 0.3510 0.9364 +vn 0.0107 0.3694 0.9292 +vn 0.0107 0.3579 0.9337 +vn 0.0105 0.3519 0.9360 +vn 0.0105 0.3434 0.9391 +vn 0.0107 0.3359 0.9419 +vn 0.0110 0.3300 0.9439 +vn 0.0005 0.3390 0.9408 +vn 0.0133 0.3099 0.9507 +vn 0.0133 0.3009 0.9536 +vn 0.0108 0.3003 0.9538 +vn 0.0131 0.2978 0.9545 +vn 0.0108 0.3041 0.9526 +vn 0.0110 0.3091 0.9510 +vn 0.0108 0.3080 0.9513 +vn 0.0111 0.3115 0.9502 +vn 0.0157 0.3118 0.9500 +vn 0.0156 0.3117 0.9501 +vn 0.0107 0.2963 0.9550 +vn 0.0108 0.3059 0.9520 +vn 0.0104 0.2974 0.9547 +vn 0.0104 0.2874 0.9578 +vn 0.0104 0.3025 0.9531 +vn 0.0161 0.3029 0.9529 +vn 0.0159 0.3021 0.9532 +vn 0.0159 0.2981 0.9544 +vn 0.0141 0.3009 0.9535 +vn 0.0139 0.2979 0.9545 +vn 0.0125 0.3718 0.9282 +vn 0.0138 0.4019 0.9156 +vn 0.0127 0.4024 0.9154 +vn 0.0117 0.3712 0.9285 +vn 0.0174 0.3971 0.9176 +vn 0.0171 0.3963 0.9180 +vn 0.0174 0.3602 0.9327 +vn 0.0176 0.3582 0.9335 +vn 0.0158 0.3150 0.9490 +vn 0.0164 0.3323 0.9430 +vn 0.0151 0.3386 0.9408 +vn 0.0148 0.3422 0.9395 +vn 0.0158 0.4181 0.9083 +vn 0.0168 0.4202 0.9073 +vn 0.0166 0.4404 0.8977 +vn 0.0159 0.4009 0.9160 +vn 0.0163 0.4382 0.8987 +vn 0.0166 0.4107 0.9116 +vn 0.0145 0.3515 0.9361 +vn 0.0148 0.3946 0.9187 +vn 0.0144 0.3931 0.9194 +vn 0.0145 0.3569 0.9340 +vn 0.0149 0.3780 0.9257 +vn 0.0158 0.3150 0.9489 +vn 0.0164 0.3322 0.9431 +vn 0.0161 0.3209 0.9470 +vn 0.0162 0.3029 0.9529 +vn 0.0159 0.2980 0.9544 +vn 0.0152 0.3086 0.9511 +vn 0.0133 0.3249 0.9457 +vn 0.0131 0.3602 0.9328 +vn 0.0143 0.3923 0.9197 +vn 0.0128 0.3703 0.9288 +vn 0.0141 0.3978 0.9174 +vn 0.0130 0.3659 0.9306 +vn 0.0133 0.3074 0.9515 +vn 0.0134 0.3087 0.9511 +vn 0.0134 0.3085 0.9511 +vn 0.0135 0.3084 0.9512 +vn 0.0111 0.3089 0.9510 +vn 0.0136 0.3086 0.9511 +vn 0.0132 0.3034 0.9528 +vn 0.0138 0.3067 0.9517 +vn 0.0139 0.3032 0.9528 +vn 0.0233 0.3215 0.9466 +vn 0.0105 0.2934 0.9559 +vn 0.0104 0.2954 0.9553 +vn 0.0121 0.3517 0.9360 +vn 0.0118 0.3696 0.9291 +vn 0.0118 0.3579 0.9337 +vn 0.0127 0.3686 0.9295 +vn 0.0130 0.3658 0.9306 +vn 0.0130 0.3606 0.9326 +vn 0.0122 0.3435 0.9391 +vn 0.0121 0.3358 0.9418 +vn 0.0118 0.3300 0.9439 +vn 0.0126 0.3709 0.9286 +vn 0.0127 0.3993 0.9167 +vn 0.0118 0.3695 0.9291 +vn 0.0138 0.3987 0.9170 +vn 0.0157 0.3196 0.9474 +vn 0.0163 0.3336 0.9426 +vn 0.0172 0.3540 0.9351 +vn 0.0169 0.3964 0.9179 +vn 0.0166 0.4199 0.9074 +vn 0.0164 0.4398 0.8980 +vn 0.0157 0.4016 0.9157 +vn 0.0156 0.4178 0.9084 +vn 0.0144 0.3518 0.9360 +vn 0.0162 0.4382 0.8988 +vn 0.0164 0.4103 0.9118 +vn 0.0142 0.3923 0.9197 +vn 0.0148 0.3781 0.9256 +vn 0.0144 0.3578 0.9337 +vn 0.0161 0.3257 0.9454 +vn 0.0147 0.3940 0.9190 +vn 0.0160 0.3204 0.9471 +vn 0.0143 0.3524 0.9357 +vn 0.0132 0.3284 0.9444 +vn 0.0133 0.3269 0.9450 +vn 0.0141 0.3920 0.9199 +vn 0.0140 0.3946 0.9188 +vn 0.0129 0.3658 0.9306 +vn 0.0128 0.3686 0.9295 +vn 0.0139 0.3125 0.9498 +vn 0.0141 0.3071 0.9516 +vn 0.0201 0.3022 0.9530 +vn 0.0131 0.3259 0.9453 +vn 0.0161 0.3043 0.9524 +vn 0.0137 0.3086 0.9511 +vn 0.0135 0.3107 0.9504 +vn 0.0132 0.3074 0.9515 +vn 0.0136 0.3107 0.9504 +vn 0.0139 0.3067 0.9517 +vn 0.0137 0.3068 0.9517 +vn 0.0135 0.3086 0.9511 +vn 0.0137 0.3067 0.9517 +vn 0.0131 0.3035 0.9528 +vn 0.0132 0.3049 0.9523 +vn 0.0132 0.2978 0.9545 +vn 0.0133 0.3048 0.9523 +vn 0.0141 0.3009 0.9536 +vn 0.0139 0.3033 0.9528 +vn 0.0139 0.3068 0.9517 +vn 0.0139 0.2978 0.9545 +vn 0.0133 0.3073 0.9515 +vn 0.0156 0.4179 0.9084 +vn 0.0147 0.3939 0.9190 +vn 0.0148 0.3782 0.9256 +vn 0.0150 0.3780 0.9257 +vn 0.0149 0.3946 0.9187 +vn 0.0146 0.3515 0.9361 +vn 0.0171 0.3964 0.9179 +vn 0.0144 0.3579 0.9337 +vn 0.0165 0.4107 0.9116 +vn 0.0080 0.4112 0.9115 +vn 0.0162 0.4382 0.8987 +vn 0.0143 0.3931 0.9194 +vn 0.0141 0.3920 0.9198 +vn 0.0137 0.3986 0.9170 +vn 0.0176 0.3583 0.9335 +vn 0.0163 0.3317 0.9432 +vn 0.0161 0.3208 0.9470 +vn 0.0173 0.3540 0.9351 +vn 0.0161 0.3257 0.9453 +vn 0.0160 0.3204 0.9472 +vn 0.0119 0.3402 0.9403 +vn 0.0108 0.3404 0.9402 +vn 0.0116 0.3351 0.9421 +vn 0.0111 0.3351 0.9421 +vn 0.0114 0.3335 0.9427 +vn -0.0016 0.2886 0.9575 +vn -0.0008 0.2886 0.9574 +usemtl material +s off +f 2671/2031/1924 2415/2032/1925 2418/2033/1926 2563/2034/1927 +f 2062/2035/1928 2086/2036/1929 2122/2037/1930 +f 2118/2038/1931 2086/2036/1932 2062/2035/1928 +f 2117/2039/1933 2118/2038/1931 2062/2035/1928 +f 2083/2040/1934 2117/2039/1935 2062/2035/1928 +f 2083/2041/1934 2062/2035/1928 2107/2042/1936 +f 2033/2043/1937 2041/2044/1938 2094/2045/1924 2664/2046/1939 +s 1 +f 2025/2047/1940 2026/2048/1941 2027/2049/1942 +f 2026/2048/1941 2028/2050/1943 2027/2049/1942 +f 2662/2051/1939 2428/2052/1944 2030/2053/1945 +f 2559/2054/1937 2663/2055/1939 2557/2056/1946 +f 2681/2057/1947 2484/2058/1948 2482/2059/1949 +f 2640/2060/1950 2681/2057/1947 2668/2061/1951 +f 2668/2061/1951 2681/2057/1947 2482/2059/1949 +f 2482/2059/1949 2557/2056/1946 2666/2062/1945 +f 2668/2061/1951 2482/2059/1949 2666/2062/1945 +f 2486/2063/1952 2600/2064/1953 2578/2065/1954 +f 2488/2066/1955 2486/2063/1952 2578/2065/1954 +f 2043/2067/1956 2579/2068/1957 2485/2069/1948 +f 2682/2070/1947 2043/2067/1956 2485/2069/1948 +f 2678/2071/1958 2043/2072/1956 2682/2070/1947 +f 2047/2073/1959 2420/2074/1960 2048/2075/1961 +f 2047/2073/1959 2048/2075/1961 2050/2076/1962 +f 2057/2077/1963 2693/2078/1964 2058/2079/1965 +f 2057/2077/1963 2061/2080/1966 2692/2081/1967 +f 2693/2082/1964 2057/2077/1963 2692/2081/1967 +f 2670/2083/1968 2417/2084/1925 2665/2085/1969 +f 2052/2086/1970 2063/2087/1971 2064/2088/1972 +f 2051/2089/1973 2052/2086/1970 2065/2090/1974 +f 2065/2090/1974 2052/2086/1970 2064/2088/1972 +f 2058/2091/1965 2693/2092/1964 2066/2093/1975 +f 2067/2094/1976 2054/2095/1977 2068/2096/1978 +f 2053/2097/1979 2054/2095/1977 2067/2094/1976 +f 2065/2090/1974 2069/2098/1980 2051/2089/1973 +f 2051/2089/1973 2069/2098/1980 2053/2099/1979 +f 2070/2100/1981 2055/2101/1982 2071/2102/1983 +f 2072/2103/1984 2070/2100/1981 2071/2104/1983 +f 2071/2102/1983 2055/2105/1982 2419/2106/1985 +f 2073/2107/1986 2072/2103/1984 2071/2108/1983 +f 2419/2106/1985 2055/2105/1982 2074/2109/1987 +f 2074/2109/1987 2066/2093/1975 2419/2106/1985 +f 2567/2110/1988 2073/2111/1986 2071/2108/1983 +f 2419/2106/1985 2066/2093/1975 2693/2092/1964 +f 2419/2106/1985 2693/2092/1964 2416/2112/1925 +f 2042/2113/1989 2567/2114/1988 2071/2115/1983 +f 2487/2116/1990 2071/2117/1983 2419/2106/1985 +f 2042/2113/1989 2071/2118/1983 2487/2116/1990 +f 2487/2116/1990 2419/2106/1985 2558/2119/1991 +f 2483/2120/1992 2487/2116/1990 2558/2119/1991 +f 2076/2121/1993 2055/2101/1982 2070/2100/1981 +f 2056/2122/1994 2055/2101/1982 2076/2121/1993 +f 2077/2123/1995 2056/2122/1994 2076/2121/1993 +f 2054/2095/1977 2056/2122/1994 2077/2123/1995 +f 2068/2096/1978 2054/2095/1977 2077/2123/1995 +f 2420/2074/1960 2644/2124/1996 2048/2075/1961 +f 2048/2075/1961 2644/2124/1996 2080/2125/1997 +f 2080/2125/1997 2644/2124/1996 2081/2126/1998 +f 2080/2125/1997 2081/2126/1998 2069/2127/1980 +f 2082/2128/1999 2080/2125/1997 2069/2127/1980 +f 2084/2129/2000 2083/2130/1934 2052/2131/1970 +f 2084/2129/2000 2052/2131/1970 2085/2132/2001 +f 2085/2132/2001 2052/2133/1970 2051/2134/1973 +f 2086/2135/1932 2084/2129/2000 2085/2132/2001 +f 2065/2136/1974 2082/2128/1999 2069/2127/1980 +f 2087/2137/2002 2082/2128/1999 2065/2136/1974 +f 2088/2138/2003 2090/2139/2004 2089/2140/2005 +f 2091/2141/2006 2090/2139/2004 2088/2138/2003 +f 2092/2142/2007 2090/2139/2004 2093/2143/2008 +f 2088/2138/2003 2089/2140/2005 2669/2144/1924 +f 2093/2143/2008 2090/2139/2004 2091/2141/2006 +f 2095/2145/2009 2426/2146/2010 2090/2139/2004 +f 2097/2147/2011 2095/2145/2009 2090/2139/2004 +f 2097/2147/2011 2090/2139/2004 2092/2142/2007 +f 2060/2148/1967 2092/2142/2007 2093/2143/2008 +f 2646/2149/1966 2092/2142/2007 2060/2148/1967 +f 2060/2148/1967 2093/2143/2008 2091/2141/2006 +f 2060/2148/1967 2091/2141/2006 2059/2150/1964 +f 2059/2150/1964 2091/2141/2006 2088/2138/2003 +f 2059/2150/1964 2088/2138/2003 2669/2144/1924 +f 2669/2144/1924 2059/2150/2012 2039/2151/1925 +f 2098/2152/2013 2491/2153/2014 2489/2154/2015 +f 2061/2155/1966 2098/2152/2013 2489/2154/2015 +f 2101/2156/2016 2491/2153/2014 2098/2152/2013 +f 2601/2157/2017 2491/2153/2014 2101/2156/2016 +f 2601/2157/2017 2101/2156/2016 2081/2126/1998 +f 2644/2124/1996 2601/2157/2017 2081/2126/1998 +f 2078/2158/2018 2103/2159/2019 2058/2160/1965 +f 2058/2160/1965 2103/2159/2019 2057/2161/1963 +f 2058/2162/1965 2066/2163/1975 2078/2158/2018 +f 2119/2164/2020 2104/2165/2021 2062/2166/1928 +f 2104/2167/2021 2105/2168/2022 2106/2169/2023 +f 2107/2042/1936 2105/2168/2022 2083/2041/1934 +f 2106/2169/2023 2105/2168/2022 2107/2042/1936 +f 2672/2170/2024 2511/2171/2025 2052/2172/1970 +f 2110/2173/2026 2511/2171/2025 2111/2174/2027 +f 2052/2175/1970 2511/2171/2025 2110/2173/2026 +f 2104/2176/2021 2672/2170/2024 2105/2168/2022 +f 2105/2168/2022 2672/2170/2024 2052/2177/1970 +f 2083/2041/1934 2105/2168/2022 2052/2177/1970 +f 2063/2178/1971 2110/2173/2026 2112/2179/2028 +f 2052/2175/1970 2110/2173/2026 2063/2180/1971 +f 2064/2181/1972 2112/2179/2028 2113/2182/2029 +f 2063/2178/1971 2112/2179/2028 2064/2181/1972 +f 2065/2136/1974 2064/2181/1972 2113/2182/2029 +f 2065/2136/1974 2113/2182/2029 2114/2183/2030 +f 2065/2136/1974 2114/2183/2030 2087/2137/2002 +f 2602/2184/2031 2424/2185/2032 2109/2186/2033 +f 2108/2187/2024 2602/2184/2031 2109/2186/2033 +f 2053/2099/1979 2081/2188/1998 2054/2189/1977 +f 2069/2098/1980 2081/2188/1998 2053/2099/1979 +f 2053/2097/1979 2067/2094/1976 2085/2132/2001 +f 2051/2134/1973 2053/2097/1979 2085/2132/2001 +f 2083/2130/1934 2084/2129/2000 2117/2190/2034 +f 2118/2191/1931 2084/2129/2000 2086/2135/1932 +f 2117/2190/2034 2084/2129/2000 2118/2191/1931 +f 2124/2192/2035 2473/2193/2036 2423/2194/2037 +f 2127/2195/2038 2124/2192/2035 2423/2194/2037 +f 2128/2196/2039 2129/2197/2040 2127/2195/2038 +f 2129/2197/2040 2124/2192/2035 2127/2195/2038 +f 2125/2198/2036 2126/2199/2037 2115/2200/2031 +f 2115/2200/2031 2126/2201/2037 2116/2202/2032 +f 2130/2203/2041 2125/2204/2036 2115/2205/2031 +f 2427/2206/2042 2090/2139/2004 2426/2146/2010 +f 2089/2140/2005 2090/2139/2004 2427/2206/2042 +f 2566/2207/2043 2089/2140/2005 2133/2208/2044 +f 2133/2208/2044 2089/2140/2005 2427/2206/2042 +f 2565/2209/2043 2492/2210/2045 2429/2211/2046 +f 2429/2211/2046 2492/2210/2045 2494/2212/2047 +f 2428/2052/1944 2565/2209/2043 2429/2211/2046 +f 2662/2051/1939 2565/2209/2043 2428/2052/1944 +f 2136/2213/2048 2137/2214/2049 2138/2215/2050 +f 2134/2216/2051 2136/2213/2048 2138/2215/2050 +f 2031/2217/1944 2136/2213/2048 2134/2216/2051 +f 2137/2214/2049 2139/2218/2052 2138/2215/2050 +f 2137/2214/2049 2140/2219/2053 2139/2218/2052 +f 2137/2214/2049 2141/2220/2054 2140/2219/2053 +f 2141/2220/2054 2142/2221/2055 2140/2219/2053 +f 2667/2222/1969 2143/2223/2056 2031/2217/1944 +f 2144/2224/2057 2141/2220/2054 2137/2214/2049 +f 2136/2213/2048 2144/2224/2057 2137/2214/2049 +f 2145/2225/2058 2144/2224/2057 2136/2213/2048 +f 2143/2223/2056 2145/2225/2058 2136/2213/2048 +f 2031/2217/1944 2143/2223/2056 2136/2213/2048 +f 2146/2226/2059 2144/2224/2057 2145/2225/2058 +f 2146/2226/2059 2147/2227/2060 2144/2224/2057 +f 2147/2227/2060 2141/2220/2054 2144/2224/2057 +f 2145/2225/2058 2537/2228/2061 2146/2226/2059 +f 2141/2220/2054 2149/2229/2062 2142/2221/2055 +f 2147/2227/2060 2149/2229/2062 2141/2220/2054 +f 2537/2228/2061 2145/2225/2058 2143/2223/2056 +f 2667/2222/1969 2143/2223/2063 2537/2228/2061 +f 2585/2230/2064 2675/2231/2065 2673/2232/2066 +f 2430/2233/2067 2585/2230/2064 2432/2234/2068 +f 2432/2234/2068 2585/2230/2064 2673/2232/2066 +f 2149/2229/2062 2147/2227/2060 2155/2235/2069 +f 2156/2236/2070 2157/2237/2071 2155/2235/2069 +f 2147/2227/2060 2156/2236/2070 2155/2235/2069 +f 2156/2236/2070 2158/2238/2072 2157/2237/2071 +f 2147/2227/2060 2146/2226/2059 2156/2236/2070 +f 2146/2226/2059 2159/2239/2073 2156/2236/2070 +f 2146/2226/2059 2160/2240/2074 2159/2239/2073 +f 2538/2241/2075 2160/2240/2074 2146/2226/2059 +f 2538/2241/2075 2688/2242/2076 2160/2240/2074 +f 2157/2243/2071 2162/2244/2077 2155/2245/2069 +f 2162/2244/2077 2163/2246/2078 2155/2245/2069 +f 2162/2247/2077 2025/2047/1940 2163/2248/2078 +f 2025/2047/1940 2027/2049/1942 2163/2248/2078 +f 2164/2249/2079 2028/2050/1943 2026/2048/1941 +f 2165/2250/2080 2028/2251/1943 2164/2252/2079 +f 2166/2253/2081 2165/2254/2080 2164/2255/2079 +f 2165/2254/2080 2167/2256/2082 2168/2257/2083 +f 2169/2258/2084 2165/2254/2080 2168/2257/2083 +f 2165/2254/2080 2170/2259/2085 2167/2256/2082 +f 2172/2260/2086 2171/2261/2087 2128/2196/2039 +f 2171/2262/2087 2129/2197/2040 2128/2196/2039 +f 2171/2262/2087 2173/2263/2088 2129/2197/2040 +f 2174/2264/2089 2175/2265/2090 2176/2266/2091 +f 2166/2253/2081 2177/2267/2092 2175/2265/2090 +f 2174/2264/2089 2166/2253/2081 2175/2265/2090 +f 2178/2268/2093 2173/2263/2088 2171/2262/2087 +f 2179/2269/2094 2178/2268/2093 2171/2270/2087 +f 2165/2254/2080 2180/2271/2095 2170/2259/2085 +f 2181/2272/2096 2171/2273/2087 2172/2260/2086 +f 2182/2274/2097 2166/2253/2081 2174/2264/2089 +f 2165/2254/2080 2183/2275/2098 2180/2271/2095 +f 2184/2276/2099 2171/2273/2087 2181/2272/2096 +f 2185/2277/2100 2166/2253/2081 2182/2274/2097 +f 2165/2254/2080 2179/2269/2094 2171/2273/2087 +f 2184/2276/2099 2165/2254/2080 2171/2273/2087 +f 2165/2254/2080 2184/2276/2099 2183/2275/2098 +f 2166/2253/2081 2185/2277/2100 2179/2269/2094 +f 2165/2254/2080 2166/2253/2081 2179/2269/2094 +f 2421/2278/2101 2422/2279/2102 2587/2280/2103 +f 2189/2281/2104 2421/2278/2101 2587/2280/2103 +f 2434/2282/2105 2541/2283/2106 2539/2284/2107 +f 2435/2285/2108 2434/2282/2105 2539/2284/2107 +f 2500/2286/2109 2195/2287/2110 2192/2288/2106 +f 2540/2289/2107 2500/2286/2109 2192/2288/2106 +f 2195/2287/2110 2196/2290/2111 2192/2288/2106 +f 2196/2290/2111 2677/2291/2112 2192/2288/2106 +f 2677/2291/2112 2198/2292/2113 2192/2288/2106 +f 2542/2293/2114 2647/2294/2115 2543/2295/2116 +f 2647/2294/2115 2496/2296/2117 2543/2295/2116 +f 2496/2296/2117 2588/2297/2118 2543/2295/2116 +f 2544/2298/2119 2647/2294/2115 2542/2293/2114 +f 2677/2291/2112 2437/2299/2120 2198/2292/2113 +f 2496/2296/2117 2439/2300/2121 2588/2297/2118 +f 2545/2301/2122 2647/2294/2115 2544/2298/2119 +f 2651/2302/2123 2545/2301/2122 2544/2298/2119 +f 2498/2303/2124 2439/2300/2121 2496/2296/2117 +f 2501/2304/2125 2195/2287/2110 2500/2286/2109 +f 2152/2305/2126 2151/2306/2127 2501/2304/2125 +f 2151/2306/2127 2195/2287/2110 2501/2304/2125 +f 2211/2307/2128 2439/2300/2121 2498/2303/2124 +f 2545/2301/2122 2211/2307/2128 2498/2303/2124 +f 2651/2302/2123 2211/2307/2128 2545/2301/2122 +f 2212/2308/2129 2211/2307/2128 2651/2302/2123 +f 2212/2308/2129 2651/2302/2123 2437/2299/2120 +f 2677/2291/2112 2212/2308/2129 2437/2299/2120 +f 2441/2309/2130 2214/2310/2131 2587/2280/2103 +f 2214/2310/2131 2189/2281/2104 2587/2280/2103 +f 2215/2311/2132 2214/2310/2131 2441/2309/2130 +f 2439/2300/2121 2211/2307/2128 2441/2309/2130 +f 2211/2307/2128 2215/2311/2132 2441/2309/2130 +f 2674/2312/2127 2547/2313/2133 2139/2218/2052 +f 2217/2314/2134 2138/2215/2050 2139/2218/2052 +f 2218/2315/2135 2217/2314/2134 2139/2218/2052 +f 2547/2313/2133 2218/2315/2135 2139/2218/2052 +f 2217/2314/2134 2548/2316/2136 2138/2215/2050 +f 2219/2317/2137 2589/2318/2138 2138/2215/2050 +f 2589/2318/2138 2656/2319/2139 2138/2215/2050 +f 2656/2319/2139 2495/2320/2047 2138/2215/2050 +f 2495/2320/2047 2134/2216/2051 2138/2215/2050 +f 2674/2312/2127 2433/2321/2068 2547/2313/2133 +f 2168/2257/2083 2186/2322/2140 2189/2281/2104 +f 2168/2257/2083 2167/2256/2082 2186/2322/2140 +f 2214/2310/2131 2168/2257/2083 2189/2281/2104 +f 2169/2258/2084 2215/2311/2132 2211/2307/2128 +f 2215/2311/2132 2168/2257/2083 2214/2310/2131 +f 2169/2258/2084 2168/2257/2083 2215/2311/2132 +f 2212/2308/2129 2165/2254/2080 2211/2307/2128 +f 2165/2254/2080 2169/2258/2084 2211/2307/2128 +f 2028/2323/1943 2165/2254/2080 2212/2308/2129 +f 2222/2324/2141 2212/2308/2129 2677/2291/2112 +f 2027/2325/1942 2212/2308/2129 2222/2324/2141 +f 2028/2323/1943 2212/2308/2129 2027/2325/1942 +f 2223/2326/2142 2222/2324/2141 2677/2291/2112 +f 2163/2327/2078 2222/2324/2141 2223/2326/2142 +f 2155/2235/2069 2163/2327/2078 2223/2326/2142 +f 2163/2327/2078 2027/2325/1942 2222/2324/2141 +f 2196/2290/2111 2223/2326/2142 2197/2328/2112 +f 2149/2229/2062 2223/2326/2142 2196/2290/2111 +f 2149/2229/2062 2155/2235/2069 2223/2326/2142 +f 2149/2229/2062 2196/2290/2111 2142/2221/2055 +f 2140/2219/2053 2196/2290/2111 2195/2287/2110 +f 2142/2221/2055 2196/2290/2111 2140/2219/2053 +f 2140/2219/2053 2195/2287/2110 2139/2218/2052 +f 2674/2312/2127 2139/2218/2052 2195/2287/2110 +f 2669/2144/1924 2089/2140/2005 2132/2329/2043 +f 2669/2144/1924 2132/2329/2043 2029/2330/1939 +f 2646/2331/1966 2097/2147/2011 2092/2332/2007 +f 2099/2333/2015 2097/2147/2011 2646/2331/1966 +f 2665/2085/1969 2661/2334/1939 2670/2083/1968 +f 2055/2335/1982 2098/2336/2013 2103/2159/2019 +f 2103/2159/2019 2098/2336/2013 2061/2337/1966 +f 2078/2158/2018 2055/2335/1982 2103/2159/2019 +f 2066/2163/1975 2055/2335/1982 2078/2158/2018 +f 2074/2338/1987 2055/2339/1982 2066/2163/1975 +f 2057/2161/1963 2103/2159/2019 2061/2337/1966 +f 2056/2340/1994 2098/2336/2013 2055/2335/1982 +f 2101/2341/2016 2098/2336/2013 2056/2340/1994 +f 2054/2189/1977 2101/2341/2016 2056/2340/1994 +f 2081/2188/1998 2101/2341/2016 2054/2189/1977 +f 2224/2342/2143 2549/2343/2144 2225/2344/2145 +f 2225/2344/2145 2549/2343/2144 2227/2345/2146 +f 2227/2345/2146 2549/2343/2144 2550/2346/2147 +f 2227/2345/2146 2550/2346/2147 2047/2073/1959 +f 2229/2347/2148 2227/2345/2146 2047/2073/1959 +f 2230/2348/2149 2229/2347/2148 2047/2073/1959 +f 2231/2349/2150 2230/2348/2149 2047/2073/1959 +f 2050/2076/1962 2231/2349/2150 2047/2073/1959 +f 2232/2350/2151 2451/2351/2152 2512/2352/2143 +f 2512/2352/2143 2451/2351/2152 2234/2353/2153 +f 2100/2354/2154 2190/2355/2105 2235/2356/2155 +f 2235/2356/2155 2190/2355/2105 2690/2357/2156 +f 2690/2357/2156 2190/2355/2105 2551/2358/2157 +f 2551/2358/2158 2193/2359/2159 2190/2355/2105 +f 2238/2360/2160 2190/2355/2105 2100/2354/2154 +f 2102/2361/2161 2238/2360/2160 2100/2354/2154 +f 2503/2362/2162 2443/2363/2163 2240/2364/2164 +f 2503/2362/2162 2240/2364/2164 2554/2365/2165 +f 2079/2366/2166 2238/2360/2160 2102/2361/2161 +f 2591/2367/2167 2238/2360/2160 2079/2366/2166 +f 2444/2368/2168 2443/2363/2163 2503/2362/2162 +f 2554/2365/2165 2240/2364/2164 2504/2369/2169 +f 2593/2370/2170 2444/2368/2168 2503/2362/2162 +f 2446/2371/2171 2444/2368/2168 2593/2370/2170 +f 2554/2365/2165 2504/2369/2169 2505/2372/2172 +f 2235/2356/2155 2690/2357/2156 2447/2373/2173 +f 2555/2374/2174 2554/2365/2165 2505/2372/2172 +f 2235/2356/2155 2447/2373/2173 2449/2375/2175 +f 2100/2354/2154 2235/2356/2155 2490/2376/2015 +f 2446/2371/2171 2593/2370/2170 2252/2377/2176 +f 2049/2378/2177 2555/2374/2174 2505/2372/2172 +f 2252/2377/2176 2593/2370/2170 2555/2374/2174 +f 2252/2377/2176 2555/2374/2174 2049/2378/2177 +f 2049/2378/2177 2591/2367/2167 2079/2366/2166 +f 2649/2379/2178 2591/2367/2167 2049/2378/2177 +f 2049/2378/2177 2505/2372/2172 2649/2379/2178 +f 2254/2380/2179 2446/2371/2171 2252/2377/2176 +f 2228/2381/2147 2254/2380/2179 2252/2377/2176 +f 2451/2351/2152 2452/2382/2180 2228/2381/2147 +f 2228/2381/2147 2452/2382/2180 2254/2380/2179 +f 2234/2353/2153 2451/2351/2152 2228/2381/2147 +f 2426/2146/2010 2095/2145/2009 2453/2383/2181 +f 2454/2384/2182 2095/2145/2009 2586/2385/2064 +f 2453/2383/2181 2095/2145/2009 2454/2384/2182 +f 2431/2386/2067 2454/2384/2182 2586/2385/2064 +f 2512/2352/2143 2234/2353/2153 2226/2387/2183 +f 2226/2387/2183 2234/2353/2153 2228/2381/2147 +f 2550/2346/2147 2252/2377/2176 2047/2073/1959 +f 2047/2073/1959 2252/2377/2176 2049/2378/2177 +f 2095/2145/2009 2449/2375/2175 2596/2388/2184 +f 2095/2145/2009 2596/2388/2184 2150/2389/2064 +f 2099/2333/2015 2235/2356/2155 2097/2147/2011 +f 2235/2356/2155 2449/2375/2175 2095/2145/2009 +f 2235/2356/2155 2095/2145/2009 2097/2147/2011 +f 2668/2061/1951 2666/2062/1945 2689/2390/2185 +f 2689/2390/2185 2666/2062/1945 2148/2391/2075 +f 2548/2316/2137 2259/2392/2186 2217/2314/2187 +f 2260/2393/2188 2548/2316/2137 2259/2392/2189 +f 2217/2314/2187 2259/2392/2186 2508/2394/2190 +f 2220/2395/2138 2260/2393/2191 2548/2316/2137 +f 2221/2396/2139 2220/2395/2138 2260/2393/2192 +f 2509/2397/2135 2216/2398/2193 2261/2399/2194 +f 2135/2400/2047 2493/2401/2045 2655/2402/2195 +f 2216/2398/2193 2154/2403/2068 2261/2399/2194 +f 2493/2401/2045 2131/2404/2196 2655/2402/2195 +f 2650/2405/2188 2096/2406/2197 2510/2407/2198 +f 2131/2404/2196 2096/2406/2197 2650/2405/2188 +f 2655/2402/2195 2131/2404/2196 2650/2405/2188 +f 2510/2407/2198 2096/2406/2197 2256/2408/2181 +f 2507/2409/2199 2256/2408/2181 2257/2410/2182 +f 2510/2407/2198 2256/2408/2181 2507/2409/2199 +f 2507/2409/2199 2257/2410/2182 2261/2399/2200 +f 2261/2399/2200 2257/2410/2182 2153/2411/2201 +f 2261/2399/2200 2153/2411/2201 2154/2403/2068 +f 2592/2412/2170 2497/2413/2117 2209/2414/2124 +f 2502/2415/2162 2497/2413/2117 2592/2412/2170 +f 2648/2416/2115 2239/2417/2202 2202/2418/2203 +f 2242/2419/2165 2239/2417/2202 2648/2416/2115 +f 2546/2420/2122 2553/2421/2165 2200/2422/2115 +f 2546/2420/2122 2556/2423/2204 2553/2421/2165 +f 2250/2424/2204 2246/2425/2170 2499/2426/2124 +f 2207/2427/2122 2250/2424/2204 2499/2426/2124 +f 2590/2428/2167 2442/2429/2160 2436/2430/2113 +f 2205/2431/2205 2590/2428/2167 2436/2430/2113 +f 2438/2432/2205 2243/2433/2167 2253/2434/2178 +f 2253/2434/2178 2506/2435/2172 2208/2436/2123 +f 2208/2436/2123 2438/2432/2205 2253/2434/2178 +f 2245/2437/2169 2204/2438/2119 2652/2439/2123 +f 2248/2440/2172 2245/2437/2169 2652/2439/2123 +f 2245/2437/2169 2199/2441/2114 2204/2438/2119 +f 2694/2442/2164 2199/2441/2114 2245/2437/2169 +f 2241/2443/2206 2201/2444/2116 2199/2441/2114 +f 2694/2442/2164 2241/2443/2206 2199/2441/2114 +f 2203/2445/2207 2201/2444/2116 2241/2443/2206 +f 2203/2445/2207 2241/2443/2206 2244/2446/2208 +f 2445/2447/2171 2244/2446/2209 2203/2445/2210 +f 2440/2448/2121 2445/2447/2171 2203/2445/2210 +f 2206/2449/2121 2247/2450/2211 2594/2451/2212 +f 2187/2452/2102 2188/2453/2213 2233/2454/2152 +f 2425/2455/2214 2187/2452/2102 2233/2454/2152 +f 2233/2454/2152 2188/2453/2213 2213/2456/2130 +f 2233/2454/2152 2213/2456/2130 2255/2457/2180 +f 2255/2457/2180 2213/2456/2130 2206/2449/2121 +f 2594/2451/2212 2255/2457/2180 2206/2449/2121 +f 2552/2458/2157 2191/2459/2107 2455/2460/2215 +f 2455/2460/2215 2191/2459/2107 2194/2461/2109 +f 2450/2462/2175 2455/2460/2215 2194/2461/2109 +f 2450/2462/2175 2194/2461/2109 2210/2463/2125 +f 2595/2464/2184 2210/2463/2125 2676/2465/2065 +f 2585/2230/2064 2258/2466/2184 2675/2231/2065 +f 2236/2467/2156 2552/2458/2157 2455/2460/2215 +f 2448/2468/2173 2236/2467/2156 2455/2460/2215 +f 2249/2469/2173 2262/2470/2216 2251/2471/2175 +f 2595/2464/2184 2450/2462/2175 2210/2463/2125 +f 2436/2430/2217 2541/2283/2106 2434/2282/2105 +f 2436/2430/2217 2434/2282/2105 2442/2429/2160 +f 2127/2195/2038 2423/2194/2037 2422/2279/2102 2421/2278/2101 +f 2187/2452/2102 2425/2455/2214 2116/2202/2032 2126/2201/2037 +f 2424/2185/2032 2232/2350/2151 2512/2352/2143 2109/2186/2033 +f 2111/2174/2027 2511/2171/2025 2224/2342/2143 2225/2344/2145 +f 2183/2275/2098 2184/2276/2099 2181/2272/2096 2172/2260/2086 2170/2259/2085 2180/2271/2095 +f 2170/2259/2085 2172/2260/2086 2128/2196/2039 2167/2256/2082 +f 2186/2322/2140 2167/2256/2082 2128/2196/2039 2127/2195/2038 +f 2264/2472/2218 2265/2473/2219 2111/2174/2027 2225/2344/2145 +f 2266/2474/2220 2265/2473/2219 2264/2472/2218 2263/2475/2221 2267/2476/2222 +f 2229/2347/2148 2225/2344/2145 2227/2345/2146 +f 2264/2472/2218 2225/2344/2145 2229/2347/2148 +f 2110/2173/2026 2111/2174/2027 2265/2473/2219 +f 2112/2179/2028 2110/2173/2026 2265/2473/2219 +f 2231/2349/2150 2229/2347/2148 2230/2348/2149 +f 2264/2472/2218 2229/2347/2148 2263/2475/2221 +f 2263/2475/2221 2229/2347/2148 2050/2076/1962 +f 2050/2076/1962 2229/2347/2148 2231/2349/2150 +f 2087/2137/2002 2112/2179/2028 2266/2474/2220 +f 2114/2183/2030 2112/2179/2028 2087/2137/2002 +f 2113/2182/2029 2112/2179/2028 2114/2183/2030 +f 2266/2474/2220 2112/2179/2028 2265/2473/2219 +f 2267/2476/2222 2263/2475/2221 2087/2137/2002 +f 2087/2137/2002 2263/2475/2221 2050/2076/1962 +f 2087/2137/2002 2266/2474/2220 2267/2476/2222 +f 2435/2285/2108 2539/2284/2107 2237/2477/2223 +f 2268/2478/2224 2598/2479/2225 2597/2480/2226 +f 2268/2478/2224 2597/2480/2226 2599/2481/2227 +f 2272/2482/2228 2268/2478/2224 2599/2481/2227 +f 2279/2483/2229 2570/2484/1988 2276/2485/2230 +f 2277/2486/2231 2642/2487/2232 2569/2488/1988 +f 2278/2489/2232 2075/2490/1988 2621/2491/2230 2625/2492/2229 +f 2626/2493/2233 2622/2494/2230 2567/2495/1988 2042/2496/1989 +f 2624/2497/2234 2046/2498/1958 2600/2499/1953 +f 2486/2500/1952 2624/2497/2234 2600/2499/1953 +f 2280/2501/2235 2274/2502/2236 2281/2503/2237 +f 2281/2503/2237 2274/2504/2236 2282/2505/2238 +f 2282/2505/2238 2274/2506/2236 2273/2507/2239 +f 2275/2508/2240 2068/2509/1978 2077/2123/1995 +f 2067/2510/1976 2068/2509/1978 2275/2508/2240 +f 2273/2507/2239 2275/2511/2240 2283/2512/2241 +f 2282/2505/2238 2273/2507/2239 2283/2512/2241 +f 2284/2513/2242 2286/2514/2243 2627/2515/2244 +f 2283/2516/2241 2286/2514/2243 2284/2513/2242 +f 2284/2513/2242 2627/2515/2244 2598/2479/2225 +f 2283/2516/2241 2284/2513/2242 2287/2517/2245 +f 2268/2478/2224 2284/2513/2242 2598/2479/2225 +f 2274/2518/2236 2123/2519/2246 2288/2520/2247 +f 2273/2521/2239 2274/2518/2236 2085/2522/2001 +f 2085/2522/2001 2274/2518/2236 2288/2520/2247 +f 2282/2523/2238 2283/2516/2241 2287/2517/2245 +f 2282/2523/2238 2287/2517/2245 2289/2524/2248 +f 2290/2525/2249 2292/2526/2250 2291/2527/2251 +f 2293/2528/2252 2292/2526/2250 2290/2525/2249 +f 2291/2527/2251 2295/2529/2253 2294/2530/2254 +f 2290/2525/2249 2291/2527/2251 2296/2531/2255 +f 2296/2531/2255 2291/2527/2251 2294/2530/2254 +f 2293/2528/2252 2290/2525/2249 2297/2532/2256 +f 2297/2532/2256 2290/2525/2249 2296/2531/2255 +f 2295/2529/2253 2291/2527/2251 2298/2533/2257 +f 2295/2529/2253 2298/2533/2257 2299/2534/2258 +f 2294/2530/2254 2299/2534/2258 2300/2535/2259 +f 2295/2529/2253 2299/2534/2258 2294/2530/2254 +f 2294/2530/2254 2300/2535/2259 2301/2536/2253 +f 2645/2537/2231 2294/2530/2254 2301/2538/2253 +f 2296/2531/2255 2294/2530/2254 2645/2537/2231 +f 2643/2539/2232 2296/2531/2255 2645/2537/2231 +f 2297/2532/2256 2296/2531/2255 2643/2539/2232 +f 2293/2528/2252 2297/2532/2256 2643/2539/2232 +f 2623/2540/2260 2293/2528/2252 2643/2539/2232 +f 2645/2537/2231 2301/2538/2253 2568/2541/1988 +f 2680/2542/2261 2303/2543/2262 2567/2544/1988 +f 2572/2545/2263 2680/2542/2261 2567/2544/1988 +f 2303/2543/2262 2680/2542/2261 2628/2546/2264 +f 2306/2547/2265 2303/2543/2262 2628/2546/2264 +f 2286/2514/2243 2306/2547/2265 2628/2546/2264 +f 2286/2514/2243 2628/2546/2264 2627/2515/2244 +f 2119/2164/2020 2307/2548/2266 2104/2165/2021 +f 2120/2549/2267 2307/2548/2266 2119/2164/2020 +f 2123/2550/2246 2307/2548/2266 2120/2549/2267 +f 2636/2551/2268 2672/2552/2024 2274/2553/2236 +f 2274/2554/2236 2672/2552/2024 2307/2548/2266 +f 2307/2548/2266 2672/2552/2024 2104/2165/2021 +f 2309/2555/2269 2636/2551/2268 2274/2556/2236 +f 2310/2557/2270 2309/2555/2269 2274/2556/2236 +f 2274/2554/2236 2307/2548/2266 2123/2550/2246 +f 2311/2558/2271 2310/2557/2270 2281/2559/2237 +f 2281/2559/2237 2310/2557/2270 2280/2560/2235 +f 2280/2561/2235 2310/2557/2270 2274/2556/2236 +f 2312/2562/2272 2311/2558/2271 2281/2559/2237 +f 2312/2562/2272 2281/2559/2237 2282/2523/2238 +f 2313/2563/2273 2312/2562/2272 2282/2523/2238 +f 2289/2524/2248 2313/2563/2273 2282/2523/2238 +f 2635/2564/2041 2602/2565/2031 2108/2566/2024 +f 2308/2567/2268 2635/2564/2041 2108/2566/2024 +f 2275/2511/2240 2077/2568/1995 2283/2512/2241 +f 2283/2512/2241 2077/2568/1995 2286/2569/2243 +f 2067/2510/1976 2275/2508/2240 2273/2521/2239 +f 2085/2522/2001 2067/2510/1976 2273/2521/2239 +f 2121/2570/2274 2288/2520/2247 2123/2519/2246 +f 2122/2571/1930 2288/2520/2247 2121/2570/2274 +f 2085/2522/2001 2288/2520/2247 2122/2571/1930 +f 2086/2572/1932 2085/2522/2001 2122/2571/1930 +f 2298/2533/2257 2291/2527/2251 2603/2573/2275 +f 2603/2573/2275 2291/2527/2251 2292/2526/2250 +f 2603/2573/2275 2292/2526/2250 2604/2574/2276 +f 2604/2574/2276 2292/2526/2250 2460/2575/2277 +f 2605/2576/2276 2316/2577/2277 2640/2060/1950 +f 2317/2578/2278 2605/2576/2276 2640/2060/1950 +f 2640/2060/1950 2316/2577/2277 2681/2057/1947 +f 2318/2579/2279 2641/2580/1950 2632/2581/2280 +f 2320/2582/2281 2318/2579/2279 2632/2581/2280 +f 2321/2583/2282 2320/2582/2281 2632/2581/2280 +f 2322/2584/2283 2321/2583/2282 2632/2581/2280 +f 2323/2585/2284 2321/2583/2282 2322/2584/2283 +f 2324/2586/2285 2037/2587/1950 2318/2579/2279 +f 2158/2238/2072 2325/2588/2286 2321/2583/2282 +f 2323/2585/2284 2158/2238/2072 2321/2583/2282 +f 2326/2589/2287 2038/2590/2288 2324/2586/2285 +f 2327/2591/2289 2320/2582/2281 2321/2583/2282 +f 2325/2588/2286 2327/2591/2289 2321/2583/2282 +f 2326/2589/2287 2318/2579/2279 2320/2582/2281 +f 2327/2591/2289 2326/2589/2287 2320/2582/2281 +f 2326/2589/2287 2324/2586/2285 2318/2579/2279 +f 2327/2591/2289 2160/2240/2074 2326/2589/2287 +f 2325/2588/2286 2156/2236/2070 2327/2591/2289 +f 2159/2239/2073 2160/2240/2074 2327/2591/2289 +f 2156/2236/2070 2159/2239/2073 2327/2591/2289 +f 2158/2238/2072 2156/2236/2070 2325/2588/2286 +f 2160/2240/2074 2038/2590/2288 2326/2589/2287 +f 2160/2240/2074 2161/2592/2076 2038/2590/2288 +f 2683/2593/2290 2606/2594/2291 2329/2595/2292 +f 2606/2594/2291 2608/2596/2293 2513/2597/2294 +f 2329/2595/2292 2606/2594/2291 2513/2597/2294 +f 2333/2598/2295 2573/2599/2296 2472/2600/2297 +f 2336/2601/2298 2333/2598/2295 2472/2600/2297 +f 2515/2602/2299 2612/2603/2300 2610/2604/2301 +f 2516/2605/2302 2515/2602/2299 2610/2604/2301 +f 2464/2606/2303 2576/2607/2304 2337/2608/2299 +f 2343/2609/2305 2464/2606/2303 2337/2608/2299 +f 2576/2607/2304 2517/2610/2302 2337/2608/2299 +f 2519/2611/2300 2343/2609/2305 2337/2608/2299 +f 2345/2612/2306 2343/2609/2305 2519/2611/2300 +f 2562/2613/2307 2653/2614/2308 2654/2615/2309 +f 2562/2613/2307 2349/2616/2310 2653/2614/2308 +f 2574/2617/2311 2562/2613/2307 2654/2615/2309 +f 2349/2616/2310 2629/2618/2312 2653/2614/2308 +f 2685/2619/2313 2345/2612/2306 2519/2611/2300 +f 2520/2620/2314 2562/2613/2307 2574/2617/2311 +f 2575/2621/2315 2520/2620/2314 2574/2617/2311 +f 2349/2616/2310 2630/2622/2316 2629/2618/2312 +f 2462/2623/2317 2630/2622/2316 2349/2616/2310 +f 2464/2606/2318 2576/2607/2319 2357/2624/2320 +f 2464/2606/2318 2357/2624/2320 2684/2625/2321 +f 2464/2606/2303 2477/2626/2322 2684/2625/2321 +f 2343/2609/2305 2465/2627/2323 2464/2606/2303 +f 2359/2628/2324 2630/2622/2316 2462/2623/2317 +f 2575/2621/2315 2360/2629/2325 2520/2620/2314 +f 2360/2629/2325 2462/2623/2317 2520/2620/2314 +f 2360/2629/2325 2359/2628/2324 2462/2623/2317 +f 2359/2628/2324 2345/2612/2306 2685/2619/2313 +f 2359/2628/2324 2685/2619/2313 2630/2622/2316 +f 2522/2630/2326 2360/2629/2325 2575/2621/2315 +f 2333/2598/2295 2362/2631/2327 2573/2599/2296 +f 2362/2631/2327 2523/2632/2328 2573/2599/2296 +f 2362/2631/2327 2364/2633/2329 2523/2632/2328 +f 2364/2633/2329 2522/2630/2326 2523/2632/2328 +f 2364/2633/2329 2360/2629/2325 2522/2630/2326 +f 2466/2634/2330 2469/2635/2331 2632/2581/2280 +f 2470/2636/2332 2633/2637/2333 2319/2638/2334 +f 2634/2639/2335 2322/2584/2283 2632/2581/2280 +f 2471/2640/2336 2466/2634/2330 2632/2581/2280 +f 2634/2639/2335 2524/2641/2337 2322/2584/2283 +f 2524/2641/2337 2525/2642/2338 2322/2584/2283 +f 2525/2642/2338 2478/2643/2292 2322/2584/2283 +f 2641/2580/1950 2471/2640/2336 2632/2581/2280 +f 2535/2644/2278 2471/2640/2336 2641/2580/1950 +f 2514/2645/2294 2478/2643/2292 2525/2642/2338 +f 2336/2601/2298 2175/2265/2090 2333/2598/2295 +f 2176/2266/2091 2175/2265/2090 2336/2601/2298 +f 2175/2265/2090 2362/2631/2327 2333/2598/2295 +f 2364/2633/2329 2177/2267/2092 2360/2629/2325 +f 2175/2265/2090 2177/2267/2092 2362/2631/2327 +f 2177/2267/2092 2364/2633/2329 2362/2631/2327 +f 2177/2267/2092 2359/2628/2324 2360/2629/2325 +f 2177/2267/2092 2166/2253/2081 2359/2628/2324 +f 2359/2628/2324 2164/2255/2079 2026/2646/1941 +f 2166/2253/2081 2164/2255/2079 2359/2628/2324 +f 2026/2646/1941 2025/2647/1940 2345/2612/2306 +f 2359/2628/2324 2026/2646/1941 2345/2612/2306 +f 2345/2612/2306 2157/2237/2071 2343/2609/2305 +f 2345/2612/2306 2162/2648/2077 2157/2237/2071 +f 2345/2612/2306 2025/2647/1940 2162/2648/2077 +f 2157/2237/2071 2158/2238/2072 2465/2627/2323 +f 2343/2609/2305 2157/2237/2071 2465/2627/2323 +f 2358/2649/2323 2323/2585/2284 2341/2650/2339 +f 2358/2649/2323 2158/2238/2072 2323/2585/2284 +f 2341/2650/2339 2323/2585/2284 2322/2584/2283 +f 2322/2584/2283 2478/2643/2292 2341/2650/2339 +f 2461/2651/2277 2292/2526/2250 2293/2528/2252 +f 2034/2652/2340 2461/2651/2277 2293/2528/2252 +f 2571/2653/2263 2301/2536/2253 2300/2535/2259 +f 2568/2654/1988 2301/2536/2253 2571/2653/2263 +f 2034/2652/2340 2293/2528/2252 2679/2655/2341 +f 2679/2655/2341 2293/2528/2252 2623/2540/2260 +f 2303/2656/2262 2070/2657/1981 2567/2658/1988 +f 2567/2659/1988 2070/2657/1981 2072/2660/1984 +f 2567/2659/1988 2072/2660/1984 2073/2661/1986 +f 2076/2662/1993 2070/2657/1981 2306/2663/2265 +f 2306/2663/2265 2070/2657/1981 2303/2656/2262 +f 2077/2568/1995 2076/2662/1993 2286/2569/2243 +f 2286/2569/2243 2076/2662/1993 2306/2663/2265 +f 2371/2664/2342 2613/2665/2343 2372/2666/2344 +f 2657/2667/2345 2613/2665/2343 2371/2664/2342 +f 2658/2668/2346 2657/2667/2345 2691/2669/2347 +f 2691/2669/2347 2657/2667/2345 2371/2664/2342 +f 2377/2670/2348 2691/2669/2347 2371/2664/2342 +f 2599/2481/2227 2691/2669/2347 2377/2670/2348 +f 2599/2481/2227 2377/2670/2348 2378/2671/2349 +f 2599/2481/2227 2378/2671/2349 2379/2672/2350 +f 2599/2481/2227 2379/2672/2350 2272/2482/2228 +f 2614/2673/2351 2615/2674/2352 2373/2675/2353 +f 2616/2676/2354 2615/2674/2352 2614/2673/2351 +f 2383/2677/2355 2339/2678/2300 2304/2679/2263 +f 2384/2680/2356 2339/2678/2300 2383/2677/2355 +f 2304/2679/2263 2339/2678/2300 2302/2681/2261 +f 2611/2682/2301 2339/2678/2300 2475/2683/2357 +f 2475/2683/2357 2339/2678/2300 2384/2680/2356 +f 2302/2681/2261 2339/2678/2300 2386/2684/2358 +f 2387/2685/2359 2617/2686/2360 2459/2687/2361 +f 2459/2687/2361 2617/2686/2360 2527/2688/2362 +f 2305/2689/2264 2386/2684/2358 2638/2690/2363 +f 2302/2681/2261 2386/2684/2358 2305/2689/2264 +f 2527/2688/2362 2617/2686/2360 2479/2691/2364 +f 2580/2692/2365 2387/2685/2359 2459/2687/2361 +f 2527/2688/2362 2479/2691/2364 2480/2693/2366 +f 2529/2694/2367 2580/2692/2365 2459/2687/2361 +f 2532/2695/2368 2580/2692/2365 2529/2694/2367 +f 2397/2696/2369 2384/2680/2356 2383/2677/2355 +f 2530/2697/2370 2527/2688/2362 2480/2693/2366 +f 2399/2698/2371 2397/2696/2369 2383/2677/2355 +f 2376/2699/2347 2530/2697/2370 2480/2693/2366 +f 2529/2694/2367 2530/2697/2370 2376/2699/2347 +f 2532/2695/2368 2529/2694/2367 2376/2699/2347 +f 2285/2700/2244 2305/2689/2264 2638/2690/2363 +f 2285/2700/2244 2638/2690/2363 2534/2701/2372 +f 2271/2702/2373 2532/2695/2368 2376/2699/2347 +f 2534/2701/2372 2532/2695/2368 2271/2702/2373 +f 2285/2700/2244 2534/2701/2372 2270/2703/2374 +f 2270/2703/2374 2534/2701/2372 2271/2702/2373 +f 2376/2699/2347 2480/2693/2366 2581/2704/2375 +f 2581/2704/2375 2582/2705/2376 2375/2706/2377 +f 2375/2706/2377 2582/2705/2376 2374/2707/2378 +f 2374/2707/2378 2582/2705/2376 2616/2676/2354 +f 2376/2699/2347 2581/2704/2375 2375/2706/2377 +f 2374/2707/2378 2616/2676/2354 2614/2673/2351 +f 2299/2534/2258 2298/2533/2257 2659/2708/2379 +f 2404/2709/2380 2299/2534/2258 2659/2708/2379 +f 2330/2710/2381 2299/2534/2258 2609/2711/2293 +f 2609/2711/2293 2299/2534/2258 2404/2709/2380 +f 2657/2667/2345 2380/2712/2351 2613/2665/2343 +f 2269/2713/2382 2270/2703/2374 2271/2702/2373 +f 2620/2714/2383 2399/2698/2371 2299/2534/2258 +f 2607/2715/2291 2620/2714/2383 2299/2534/2258 +f 2300/2535/2259 2383/2677/2355 2571/2653/2263 +f 2299/2534/2258 2399/2698/2371 2383/2677/2355 +f 2300/2535/2259 2299/2534/2258 2383/2677/2355 +f 2324/2586/2285 2038/2590/2288 2037/2587/1950 +f 2633/2637/2384 2406/2716/2385 2470/2636/2331 +f 2366/2717/2331 2467/2718/2386 2583/2719/2387 +f 2407/2720/2388 2369/2721/2389 2584/2722/2387 +f 2369/2721/2389 2367/2723/2390 2584/2722/2387 +f 2370/2724/2338 2407/2720/2388 2369/2721/2391 +f 2468/2725/2330 2368/2726/2392 2408/2727/2393 +f 2368/2726/2392 2536/2728/2394 2408/2727/2393 +f 2536/2728/2278 2408/2727/2395 2315/2729/2276 +f 2332/2730/2396 2370/2724/2397 2407/2720/2398 +f 2331/2731/2399 2332/2730/2293 2370/2724/2338 +f 2408/2727/2395 2314/2732/2275 2315/2729/2276 +f 2583/2719/2387 2298/2533/2257 2603/2573/2275 +f 2583/2719/2387 2603/2573/2275 2467/2718/2400 +f 2365/2733/2330 2314/2732/2275 2408/2727/2395 +f 2403/2734/2379 2298/2533/2257 2583/2719/2387 +f 2660/2735/2398 2403/2734/2379 2583/2719/2387 +f 2404/2709/2380 2403/2734/2379 2660/2735/2398 +f 2609/2711/2293 2404/2709/2380 2660/2735/2398 +f 2521/2736/2314 2561/2737/2307 2526/2738/2401 +f 2521/2736/2314 2526/2738/2401 2531/2739/2402 +f 2458/2740/2361 2457/2741/2310 2346/2742/2307 +f 2390/2743/2401 2458/2740/2361 2346/2742/2307 +f 2388/2744/2361 2528/2745/2403 2456/2746/2310 +f 2528/2745/2403 2463/2747/2404 2456/2746/2310 +f 2353/2748/2405 2398/2749/2370 2356/2750/2317 +f 2356/2750/2317 2398/2749/2370 2395/2751/2403 +f 2686/2752/2406 2344/2753/2407 2637/2754/2358 +f 2639/2755/2363 2686/2752/2406 2637/2754/2358 +f 2391/2756/2363 2352/2757/2313 2400/2758/2372 +f 2631/2759/2316 2396/2760/2408 2400/2758/2372 +f 2352/2757/2313 2631/2759/2316 2400/2758/2372 +f 2351/2761/2409 2393/2762/2410 2533/2763/2368 +f 2355/2764/2316 2351/2761/2409 2533/2763/2368 +f 2351/2761/2409 2347/2765/2308 2687/2766/2359 +f 2351/2761/2409 2687/2766/2359 2393/2762/2410 +f 2348/2767/2309 2389/2768/2360 2687/2766/2359 +f 2347/2765/2308 2348/2767/2309 2687/2766/2359 +f 2392/2769/2411 2348/2767/2309 2350/2770/2311 +f 2389/2768/2360 2348/2767/2309 2392/2769/2411 +f 2354/2771/2412 2350/2770/2311 2392/2769/2411 +f 2394/2772/2366 2354/2771/2412 2392/2769/2411 +f 2394/2772/2366 2354/2771/2315 2361/2773/2366 +f 2401/2774/2413 2394/2772/2366 2361/2773/2366 +f 2334/2775/2296 2335/2776/2297 2382/2777/2414 +f 2382/2777/2414 2335/2776/2297 2381/2778/2352 +f 2402/2779/2376 2334/2775/2296 2382/2777/2414 +f 2363/2780/2328 2334/2775/2296 2402/2779/2376 +f 2361/2773/2366 2363/2780/2328 2401/2774/2413 +f 2401/2774/2413 2363/2780/2328 2402/2779/2376 +f 2342/2781/2304 2518/2782/2415 2409/2783/2416 +f 2342/2781/2304 2409/2783/2416 2577/2784/2417 +f 2409/2783/2416 2518/2782/2415 2476/2785/2418 +f 2409/2783/2416 2476/2785/2418 2474/2786/2356 +f 2409/2783/2416 2474/2786/2356 2481/2787/2419 +f 2409/2783/2416 2481/2787/2419 2577/2784/2417 +f 2577/2784/2417 2481/2787/2419 2618/2788/2420 +f 2577/2784/2417 2618/2788/2420 2619/2789/2383 +f 2577/2784/2417 2619/2789/2383 2328/2790/2321 +f 2683/2593/2290 2405/2791/2383 2606/2594/2291 +f 2637/2754/2358 2515/2602/2299 2344/2753/2407 +f 2612/2603/2300 2515/2602/2299 2637/2754/2358 +f 2124/2192/2035 2336/2601/2298 2472/2600/2297 2473/2193/2036 +f 2182/2274/2097 2174/2264/2089 2173/2263/2088 2178/2268/2093 2179/2269/2094 2185/2277/2100 +f 2174/2264/2089 2176/2266/2091 2129/2197/2040 2173/2263/2088 +f 2336/2601/2298 2124/2192/2035 2129/2197/2040 2176/2266/2091 +f 2335/2776/2297 2125/2204/2036 2130/2203/2041 2381/2778/2352 +f 2635/2564/2041 2308/2567/2268 2373/2675/2353 2615/2674/2352 +f 2636/2551/2268 2309/2555/2269 2372/2666/2344 2613/2665/2343 +f 2412/2792/2421 2372/2666/2344 2309/2555/2269 2411/2793/2422 +f 2413/2794/2423 2412/2792/2421 2411/2793/2422 2410/2795/2424 2414/2796/2425 +f 2311/2558/2271 2309/2555/2269 2310/2557/2270 +f 2411/2793/2422 2309/2555/2269 2311/2558/2271 +f 2371/2664/2342 2372/2666/2344 2412/2792/2421 +f 2377/2670/2348 2371/2664/2342 2412/2792/2421 +f 2313/2563/2273 2311/2558/2271 2312/2562/2272 +f 2411/2793/2422 2311/2558/2271 2410/2795/2424 +f 2410/2795/2424 2311/2558/2271 2289/2524/2248 +f 2289/2524/2248 2311/2558/2271 2313/2563/2273 +f 2272/2482/2228 2377/2670/2348 2413/2794/2423 +f 2379/2672/2350 2377/2670/2348 2272/2482/2228 +f 2378/2671/2349 2377/2670/2348 2379/2672/2350 +f 2413/2794/2423 2377/2670/2348 2412/2792/2421 +f 2414/2796/2425 2410/2795/2424 2272/2482/2228 +f 2272/2482/2228 2410/2795/2424 2289/2524/2248 +f 2272/2482/2228 2413/2794/2423 2414/2796/2425 +f 2340/2797/2302 2338/2798/2301 2385/2799/2418 +f 2564/2800/1938 2560/2801/1937 2032/2802/2426 +f 2040/2803/1926 2564/2800/1938 2032/2802/2426 +f 2035/2804/2427 2036/2805/1948 2045/2806/1955 +f 2045/2806/1955 2036/2805/1948 2044/2807/1957 +f 2062/2808/1928 2120/2549/2267 2119/2164/2020 +f 2062/2809/1928 2123/2550/2246 2120/2549/2267 +f 2062/2810/1928 2121/2570/2274 2123/2811/2246 +f 2121/2570/2274 2062/2812/1928 2122/2571/1930 +f 2107/2042/1936 2062/2035/1928 2106/2169/2023 +f 2062/2813/1928 2104/2167/2021 2106/2169/2023 +f 2663/2055/1939 2666/2062/1945 2557/2056/1946 +l 2171 2062 +o 3MF_Object.005_3MF_Mesh.003 +v -175.999954 151.530212 -0.043945 +v -173.499954 152.200119 -0.043945 +v -173.499954 152.200119 -1.043945 +v -175.999954 151.530212 -1.043945 +v -120.160301 -142.299866 -0.044113 +v -122.839859 -154.299911 -0.044113 +v -122.839813 -154.299866 -1.044113 +v -146.775070 144.508667 -0.043961 +v -146.392258 148.759476 -0.043945 +v -146.392258 148.759476 -1.043945 +v -146.775070 144.508667 -1.043961 +v -154.069855 149.700089 -0.043945 +v -152.922165 144.080460 -0.043945 +v -152.930435 144.086899 -1.043945 +v -154.069855 149.700089 -1.043945 +v 124.000053 151.530106 -0.043945 +v 126.500046 152.200012 -0.043945 +v 126.500046 152.200012 -1.043945 +v 124.000053 151.530106 -1.043945 +v 122.169937 149.699997 -0.043945 +v 122.169937 149.699997 -1.043945 +v 148.300049 142.855515 -0.043961 +v 150.000046 142.399994 -0.043961 +v 150.000046 142.399994 -1.043961 +v 148.300049 142.855515 -1.043961 +v 173.500046 152.199982 -0.043945 +v 175.565979 151.827972 -0.043945 +v 175.565979 151.827972 -1.043945 +v 173.500046 152.199982 -1.043945 +v 116.499977 -138.639709 -0.044098 +v 111.499954 -137.299988 -0.044098 +v 111.499954 -137.299988 -1.044098 +v 116.499977 -138.639709 -1.044098 +v -111.500015 -137.299927 -0.044098 +v -111.500015 -137.299927 -1.044098 +v -151.699951 142.855606 -0.043961 +v -151.699951 142.855606 -1.043961 +v 143.159424 151.992310 -0.043945 +v 145.135559 150.735519 -0.043945 +v 145.135559 150.735519 -1.043945 +v 143.159424 151.992310 -1.043945 +v 120.160255 -142.300003 -0.044113 +v 120.160217 -142.299957 -1.044113 +v 152.930527 144.086807 -0.043945 +v 154.069946 149.699997 -0.043945 +v 154.069946 149.699997 -1.043945 +v 152.922256 144.080368 -1.043945 +v 146.219452 149.113419 -0.043945 +v 146.219452 149.113419 -1.043945 +v 122.839699 -154.299957 -0.044113 +v -173.500046 -157.960190 -0.044113 +v -177.160248 -154.299896 -0.044113 +v -177.160248 -154.299896 -1.044113 +v -173.500046 -157.960190 -1.044113 +v -168.500046 -159.299896 -0.044113 +v -168.500046 -159.299896 -1.044113 +v 121.500046 147.200012 -0.043945 +v 121.500046 147.200012 -1.043945 +v 168.499954 -159.300018 -0.044113 +v 131.499954 -159.300003 -0.044113 +v 131.499954 -159.300003 -1.044113 +v 168.499954 -159.300018 -1.044113 +v -178.500046 -149.299896 -0.044113 +v -178.500046 -149.299896 -1.044113 +v 151.700043 142.855515 -0.043961 +v 151.700043 142.855515 -1.043961 +v -149.999954 142.400101 -0.043961 +v -148.299957 142.855606 -0.043961 +v -148.299957 142.855606 -1.043961 +v -149.999954 142.400101 -1.043961 +v -142.899719 152.069977 -0.043945 +v -126.499962 152.200104 -0.043945 +v -126.499962 152.200104 -1.043945 +v -142.899719 152.069977 -1.043945 +v -116.500046 -138.639633 -0.044098 +v -120.160347 -142.299911 -1.044113 +v -116.500046 -138.639633 -1.044098 +v -122.169853 149.700089 -0.043945 +v -122.169853 149.700089 -1.043945 +v 178.499954 -149.300018 -0.044113 +v 177.160156 -154.300018 -0.044113 +v 177.160156 -154.300018 -1.044113 +v 178.499954 -149.300018 -1.044113 +v 155.900040 151.530106 -0.043945 +v 158.400040 152.200012 -0.043945 +v 158.400040 152.200012 -1.043945 +v 155.900040 151.530106 -1.043945 +v 146.769791 144.699051 -0.043945 +v 146.769791 144.699051 -1.043945 +v 173.499954 -157.960312 -0.044113 +v 173.499954 -157.960312 -1.044113 +v 119.653809 141.907761 -0.043961 +v 121.345543 143.560516 -0.043961 +v 121.345543 143.560516 -1.043961 +v 119.653809 141.907761 -1.043961 +v 126.499947 -157.960297 -0.044113 +v 122.839745 -154.300003 -1.044113 +v 126.499947 -157.960297 -1.044113 +v -119.639458 141.854614 -0.043961 +v -119.639458 141.854614 -1.043961 +v -131.500046 -159.299911 -0.044113 +v -131.500046 -159.299911 -1.044113 +v 178.500046 147.199997 -0.043945 +v 178.500046 147.199997 -1.043945 +v -178.127930 149.266052 -0.043945 +v -178.127930 149.266052 -1.043945 +v 177.830139 149.699997 -0.043945 +v 177.830139 149.699997 -1.043945 +v -121.292206 143.546326 -0.043961 +v -121.292206 143.546326 -1.043961 +v -121.499954 147.200104 -0.043945 +v -121.499954 147.200104 -1.043945 +v -156.334015 151.828079 -0.043945 +v -156.334015 151.828079 -1.043945 +v -126.500061 -157.960205 -0.044113 +v -126.500061 -157.960205 -1.044113 +v 175.687531 -140.020432 -1.044098 +v 175.695587 -140.022873 -0.044098 +v 175.789291 -139.286743 -0.044083 +v 175.789291 -139.286743 -1.044113 +v 175.222610 -140.890244 -0.044098 +v 174.464264 -141.523285 -0.044113 +v 173.516510 -141.802185 -0.044113 +v 172.576523 -141.721710 -0.044113 +v 171.659927 -141.247116 -0.044113 +v 171.173004 -140.687088 -0.044113 +v 170.849991 -140.020447 -0.044067 +v 170.748215 -139.286743 -0.044098 +v 174.872208 -141.240646 -1.044098 +v 175.364502 -140.687088 -1.044098 +v 170.753326 -139.039001 -1.044098 +v 170.841949 -138.550598 -0.044067 +v 175.695587 -138.550613 -1.044083 +v 175.687531 -138.553055 -0.044083 +v 175.222626 -137.683273 -1.044098 +v 175.364502 -137.886398 -0.044098 +v 174.840088 -137.302017 -0.044083 +v 173.268753 -136.766205 -1.044113 +v 173.268753 -136.766205 -0.044083 +v 172.491516 -136.877579 -0.044083 +v 172.576492 -136.851791 -1.044113 +v 172.976501 -141.801270 -1.044098 +v 171.032211 -138.091232 -1.044067 +v 171.314865 -137.683289 -0.044083 +v 174.004913 -141.713562 -1.044113 +v 174.669098 -137.190994 -1.044113 +v 172.304184 -141.615417 -1.044098 +v 173.960999 -136.851791 -0.044083 +v 174.045975 -136.877579 -1.044113 +v 171.697418 -137.302048 -1.044098 +v 171.868423 -137.190994 -0.044098 +v 170.841949 -140.022903 -1.044067 +v 171.469711 -141.085831 -1.044128 +v -173.468811 -136.766144 -0.044098 +v -173.468811 -136.766144 -1.044098 +v -172.691589 -136.877518 -1.044098 +v -172.776550 -136.851730 -0.044098 +v -172.068466 -137.190933 -1.044098 +v -172.068466 -137.190933 -0.044098 +v -171.484070 -137.715363 -1.044098 +v -171.540390 -137.646744 -0.044098 +v -171.140137 -138.322113 -1.044098 +v -171.059647 -138.509460 -0.044098 +v -170.945602 -139.082809 -1.044098 +v -170.945602 -139.490570 -0.044098 +v -171.059631 -140.063904 -1.044098 +v -171.215714 -140.440720 -0.044098 +v -171.514908 -140.890137 -1.044113 +v -171.859985 -141.247055 -0.044113 +v -172.236496 -141.497925 -1.044113 +v -172.776581 -141.721649 -0.044113 +v -173.176559 -141.801208 -1.044113 +v -173.761063 -141.801208 -0.044113 +v -173.960541 -141.758789 -1.044113 +v -174.701111 -141.497940 -0.044113 +v -174.622803 -141.539795 -1.044113 +v -175.429184 -140.895493 -1.044113 +v -175.422684 -140.890167 -0.044113 +v -175.903778 -139.978928 -1.044098 +v -175.797485 -140.251251 -0.044098 +v -175.983337 -139.578964 -0.044098 +v -175.983337 -138.994415 -1.044098 +v -175.903778 -138.594452 -0.044098 +v -175.797485 -138.322113 -1.044098 +v -175.397217 -137.646729 -1.044083 +v -175.453537 -137.715347 -0.044083 +v -174.869141 -137.190918 -1.044098 +v -174.869141 -137.190918 -0.044098 +v -174.161072 -136.851730 -1.044083 +v -174.246048 -136.877518 -0.044083 +v 173.602341 149.253555 -0.043945 +v 173.602341 149.253555 -1.043945 +v 174.379547 149.142197 -1.043945 +v 174.294586 149.167969 -0.043945 +v 175.242279 148.661438 -1.043945 +v 175.173691 148.717743 -0.043945 +v 175.855469 147.886993 -1.043945 +v 175.813599 147.965302 -0.043945 +v 176.118973 146.922897 -1.043945 +v 176.074463 147.224701 -0.043945 +v 176.125565 146.529114 -0.043945 +v 176.074448 146.241287 -1.043945 +v 175.813583 145.500717 -1.043945 +v 175.855453 145.579025 -0.043945 +v 175.205795 144.779114 -1.043945 +v 175.384628 144.950729 -0.043945 +v 174.756348 144.479919 -0.043945 +v 174.379562 144.323837 -1.043930 +v 173.806229 144.209808 -0.043945 +v 173.398468 144.209808 -1.043930 +v 173.110611 144.260910 -0.043945 +v 172.637772 144.404343 -1.043945 +v 172.370010 144.521790 -0.043945 +v 172.030991 144.748306 -1.043930 +v 171.648499 145.129501 -0.043945 +v 171.506592 145.332687 -1.043945 +v 171.167389 146.040756 -1.043945 +v 171.193176 145.955795 -0.043945 +v 171.081802 146.733017 -1.043945 +v 171.081802 146.733017 -0.043945 +v 171.193176 147.510254 -1.043945 +v 171.167389 147.425278 -0.043945 +v 171.673965 148.373016 -1.043945 +v 171.617661 148.304398 -0.043945 +v 172.202011 148.828781 -1.043945 +v 172.202011 148.828781 -0.043945 +v 172.910110 149.167969 -1.043945 +v 172.825150 149.142212 -0.043945 +v -173.088669 149.407181 -0.043945 +v -173.000290 149.398468 -1.043945 +v -172.060303 149.095230 -1.043945 +v -172.138580 149.137070 -0.043945 +v -171.510284 148.666245 -1.043945 +v -171.510284 148.666245 -0.043945 +v -171.039474 148.037964 -1.043945 +v -171.081329 148.116257 -0.043945 +v -170.820465 147.375687 -1.043945 +v -170.778061 147.176178 -0.043945 +v -170.778061 146.591751 -1.043945 +v -170.820465 146.392227 -0.043945 +v -171.177094 145.470444 -1.043945 +v -171.039474 145.729950 -0.043945 +v -171.510284 145.101669 -0.043945 +v -172.060287 144.672684 -1.043945 +v -172.138565 144.630859 -0.043945 +v -172.800842 144.411850 -1.043945 +v -173.088699 144.360748 -0.043945 +v -173.496460 144.360748 -1.043930 +v -174.069778 144.474777 -0.043945 +v -174.446609 144.630859 -1.043945 +v -174.692917 144.788208 -0.043945 +v -175.252930 145.275116 -1.043945 +v -175.246429 145.280441 -0.043945 +v -175.727524 146.191650 -1.043945 +v -175.701752 146.106705 -0.043945 +v -175.813110 146.883957 -1.043945 +v -175.813110 146.883957 -0.043945 +v -175.701752 147.661209 -1.043945 +v -175.727524 147.576263 -0.043945 +v -175.220963 148.523956 -1.043945 +v -175.277283 148.455338 -0.043945 +v -174.692902 148.979721 -1.043945 +v -174.692902 148.979721 -0.043945 +v -173.984802 149.318909 -1.043945 +v -174.069763 149.293152 -0.043945 +v -175.999954 151.530212 -0.043945 +v -175.999954 151.530212 -0.043945 +v -173.499954 152.200119 -0.043945 +v -173.499954 152.200119 -0.043945 +v -175.999954 151.530212 -1.043945 +v -175.999954 151.530212 -1.043945 +v -146.775070 144.508667 -0.043961 +v -146.775070 144.508667 -0.043961 +v -146.392258 148.759476 -0.043945 +v -146.392258 148.759476 -0.043945 +v -146.775070 144.508667 -1.043961 +v -146.775070 144.508667 -1.043961 +v 174.294586 149.167969 -0.043945 +v 175.173691 148.717743 -0.043945 +v 124.000053 151.530106 -0.043945 +v 124.000053 151.530106 -0.043945 +v 126.500046 152.200012 -0.043945 +v 126.500046 152.200012 -0.043945 +v 124.000053 151.530106 -1.043945 +v 124.000053 151.530106 -1.043945 +v 122.169937 149.699997 -0.043945 +v 122.169937 149.699997 -0.043945 +v 148.300049 142.855515 -0.043961 +v 148.300049 142.855515 -0.043961 +v 150.000046 142.399994 -0.043961 +v 150.000046 142.399994 -0.043961 +v 148.300049 142.855515 -1.043961 +v 148.300049 142.855515 -1.043961 +v 116.499977 -138.639709 -0.044098 +v 116.499977 -138.639709 -0.044098 +v 111.499954 -137.299988 -0.044098 +v 111.499954 -137.299988 -0.044098 +v 171.314865 -137.683289 -0.044083 +v 171.314865 -137.683289 -0.044083 +v 171.697418 -137.302048 -1.044098 +v 171.697418 -137.302048 -1.044098 +v 116.499977 -138.639709 -1.044098 +v 116.499977 -138.639709 -1.044098 +v 143.159424 151.992310 -0.043945 +v 143.159424 151.992310 -0.043945 +v 145.135559 150.735519 -0.043945 +v 145.135559 150.735519 -0.043945 +v 171.506592 145.332687 -1.043945 +v 171.167389 146.040756 -1.043945 +v 143.159424 151.992310 -1.043945 +v 143.159424 151.992310 -1.043945 +v 120.160255 -142.300003 -0.044113 +v 120.160255 -142.300003 -0.044113 +v 154.069946 149.699997 -1.043945 +v 154.069946 149.699997 -1.043945 +v 152.922256 144.080368 -1.043945 +v 152.922256 144.080368 -1.043945 +v -177.160248 -154.299896 -1.044113 +v -177.160248 -154.299896 -1.044113 +v -173.500046 -157.960190 -1.044113 +v -173.500046 -157.960190 -1.044113 +v 172.202011 148.828781 -0.043945 +v 172.202011 148.828781 -0.043945 +v 172.825150 149.142212 -0.043945 +v 131.499954 -159.300003 -1.044113 +v 131.499954 -159.300003 -1.044113 +v 168.499954 -159.300018 -1.044113 +v 168.499954 -159.300018 -1.044113 +v -178.500046 -149.299896 -1.044113 +v -178.500046 -149.299896 -1.044113 +v -149.999954 142.400101 -0.043961 +v -149.999954 142.400101 -0.043961 +v -148.299957 142.855606 -0.043961 +v -148.299957 142.855606 -0.043961 +v -149.999954 142.400101 -1.043961 +v -149.999954 142.400101 -1.043961 +v -116.500046 -138.639633 -0.044098 +v -116.500046 -138.639633 -0.044098 +v -120.160301 -142.299866 -0.044113 +v -120.160301 -142.299866 -0.044113 +v -116.500046 -138.639633 -1.044098 +v -116.500046 -138.639633 -1.044098 +v -152.930435 144.086899 -1.043945 +v -152.930435 144.086899 -1.043945 +v -151.699951 142.855606 -1.043961 +v -151.699951 142.855606 -1.043961 +v 177.160156 -154.300018 -1.044113 +v 177.160156 -154.300018 -1.044113 +v 178.499954 -149.300018 -1.044113 +v 178.499954 -149.300018 -1.044113 +v 155.900040 151.530106 -1.043945 +v 155.900040 151.530106 -1.043945 +v 146.769791 144.699051 -0.043945 +v 146.769791 144.699051 -0.043945 +v 173.499954 -157.960312 -0.044113 +v 173.499954 -157.960312 -0.044113 +v 173.499954 -157.960312 -1.044113 +v 173.499954 -157.960312 -1.044113 +v 171.081802 146.733017 -0.043945 +v 171.081802 146.733017 -0.043945 +v 171.167389 147.425278 -0.043945 +v 126.499947 -157.960297 -1.044113 +v 126.499947 -157.960297 -1.044113 +v -175.246429 145.280441 -0.043945 +v -175.701752 146.106705 -0.043945 +v -178.127930 149.266052 -0.043945 +v -178.127930 149.266052 -0.043945 +v -178.127930 149.266052 -1.043945 +v -178.127930 149.266052 -1.043945 +v 175.813599 147.965302 -0.043945 +v 176.074463 147.224701 -0.043945 +v -156.334015 151.828079 -0.043945 +v -156.334015 151.828079 -0.043945 +v -156.334015 151.828079 -1.043945 +v -156.334015 151.828079 -1.043945 +v -174.692902 148.979721 -0.043945 +v -174.692902 148.979721 -0.043945 +v -174.069763 149.293152 -0.043945 +v 175.695587 -140.022873 -0.044098 +v 175.222610 -140.890244 -0.044098 +v 175.222610 -140.890244 -0.044098 +v 172.576523 -141.721710 -0.044113 +v 172.576523 -141.721710 -0.044113 +v 171.659927 -141.247116 -0.044113 +v 175.364502 -140.687088 -1.044098 +v 175.687531 -140.020432 -1.044098 +v 175.695587 -138.550613 -1.044083 +v 175.222626 -137.683273 -1.044098 +v 175.222626 -137.683273 -1.044098 +v 172.304184 -141.615417 -1.044098 +v 172.304184 -141.615417 -1.044098 +v 172.491516 -136.877579 -0.044083 +v 171.868423 -137.190994 -0.044098 +v 174.872208 -141.240646 -1.044098 +v 174.872208 -141.240646 -1.044098 +v 174.004913 -141.713562 -1.044113 +v -148.299957 142.855606 -1.043961 +v -148.299957 142.855606 -1.043961 +v -172.691589 -136.877518 -1.044098 +v -172.068466 -137.190933 -1.044098 +v -172.068466 -137.190933 -1.044098 +v -171.140137 -138.322113 -1.044098 +v -170.945602 -139.082809 -1.044098 +v -170.945602 -139.082809 -1.044098 +v -173.500046 -157.960190 -0.044113 +v -173.500046 -157.960190 -0.044113 +v -171.059631 -140.063904 -1.044098 +v -171.059631 -140.063904 -1.044098 +v -171.514908 -140.890137 -1.044113 +v -171.514908 -140.890137 -1.044113 +v -172.236496 -141.497925 -1.044113 +v -172.236496 -141.497925 -1.044113 +v -172.776581 -141.721649 -0.044113 +v -172.776581 -141.721649 -0.044113 +v -173.176559 -141.801208 -1.044113 +v -173.176559 -141.801208 -1.044113 +v 176.125565 146.529114 -0.043945 +v 176.125565 146.529114 -0.043945 +v 175.855453 145.579025 -0.043945 +v -175.903778 -139.978928 -1.044098 +v -175.903778 -139.978928 -1.044098 +v -175.797485 -140.251251 -0.044098 +v -175.797485 -140.251251 -0.044098 +v -175.797485 -138.322113 -1.044098 +v -175.797485 -138.322113 -1.044098 +v -175.903778 -138.594452 -0.044098 +v -175.903778 -138.594452 -0.044098 +v -175.397217 -137.646729 -1.044083 +v -173.499954 152.200119 -1.043945 +v -173.499954 152.200119 -1.043945 +v -146.392258 148.759476 -1.043945 +v -146.392258 148.759476 -1.043945 +v 176.074448 146.241287 -1.043945 +v 176.074448 146.241287 -1.043945 +v 126.500046 152.200012 -1.043945 +v 126.500046 152.200012 -1.043945 +v 175.205795 144.779114 -1.043945 +v 175.205795 144.779114 -1.043945 +v 174.756348 144.479919 -0.043945 +v 174.756348 144.479919 -0.043945 +v 150.000046 142.399994 -1.043961 +v 150.000046 142.399994 -1.043961 +v 173.398468 144.209808 -1.043930 +v 173.398468 144.209808 -1.043930 +v 173.110611 144.260910 -0.043945 +v 173.110611 144.260910 -0.043945 +v 111.499954 -137.299988 -1.044098 +v 111.499954 -137.299988 -1.044098 +v -111.500015 -137.299927 -0.044098 +v -111.500015 -137.299927 -0.044098 +v -170.778061 146.591751 -1.043945 +v -170.778061 146.591751 -1.043945 +v -171.177094 145.470444 -1.043945 +v -174.692917 144.788208 -0.043945 +v -174.692917 144.788208 -0.043945 +v 145.135559 150.735519 -1.043945 +v 145.135559 150.735519 -1.043945 +v 171.648499 145.129501 -0.043945 +v 171.648499 145.129501 -0.043945 +v 171.193176 145.955795 -0.043945 +v 146.219452 149.113419 -0.043945 +v 146.219452 149.113419 -0.043945 +v 172.202011 148.828781 -1.043945 +v 172.202011 148.828781 -1.043945 +v 172.910110 149.167969 -1.043945 +v -168.500046 -159.299896 -1.044113 +v -168.500046 -159.299896 -1.044113 +v -173.000290 149.398468 -1.043945 +v -172.060303 149.095230 -1.043945 +v 151.700043 142.855515 -0.043961 +v 151.700043 142.855515 -0.043961 +v 175.242279 148.661438 -1.043945 +v 175.855469 147.886993 -1.043945 +v -142.899719 152.069977 -0.043945 +v -142.899719 152.069977 -0.043945 +v -173.496460 144.360748 -1.043930 +v -173.496460 144.360748 -1.043930 +v -174.446609 144.630859 -1.043945 +v -174.446609 144.630859 -1.043945 +v -175.252930 145.275116 -1.043945 +v -175.727524 146.191650 -1.043945 +v 178.500046 147.199997 -1.043945 +v 178.500046 147.199997 -1.043945 +v -174.692902 148.979721 -1.043945 +v -174.692902 148.979721 -1.043945 +v -173.984802 149.318909 -1.043945 +v 173.602341 149.253555 -1.043945 +v 173.602341 149.253555 -1.043945 +v 172.976501 -141.801270 -1.044098 +v 172.976501 -141.801270 -1.044098 +v 172.370010 144.521790 -0.043945 +v 172.370010 144.521790 -0.043945 +v -172.776550 -136.851730 -0.044098 +v -172.068466 -137.190933 -0.044098 +v -172.068466 -137.190933 -0.044098 +v -175.983337 -139.578964 -0.044098 +v -175.983337 -139.578964 -0.044098 +v -174.069778 144.474777 -0.043945 +v -174.069778 144.474777 -0.043945 +v -175.453537 -137.715347 -0.044083 +v 175.813583 145.500717 -1.043945 +v 173.602341 149.253555 -0.043945 +v 173.602341 149.253555 -0.043945 +v 173.806229 144.209808 -0.043945 +v 173.806229 144.209808 -0.043945 +v -111.500015 -137.299927 -1.044098 +v -111.500015 -137.299927 -1.044098 +v 146.219452 149.113419 -1.043945 +v 146.219452 149.113419 -1.043945 +v 171.617661 148.304398 -0.043945 +v -168.500046 -159.299896 -0.044113 +v -168.500046 -159.299896 -0.044113 +v -178.500046 -149.299896 -0.044113 +v -178.500046 -149.299896 -0.044113 +v 151.700043 142.855515 -1.043961 +v 151.700043 142.855515 -1.043961 +v -171.081329 148.116257 -0.043945 +v -170.778061 147.176178 -0.043945 +v -170.778061 147.176178 -0.043945 +v -142.899719 152.069977 -1.043945 +v -142.899719 152.069977 -1.043945 +v -120.160347 -142.299911 -1.044113 +v -120.160347 -142.299911 -1.044113 +v 155.900040 151.530106 -0.043945 +v 155.900040 151.530106 -0.043945 +v 158.400040 152.200012 -0.043945 +v 158.400040 152.200012 -0.043945 +v 119.653809 141.907761 -0.043961 +v 119.653809 141.907761 -0.043961 +v 121.345543 143.560516 -0.043961 +v 121.345543 143.560516 -0.043961 +v 119.653809 141.907761 -1.043961 +v 119.653809 141.907761 -1.043961 +v -119.639458 141.854614 -0.043961 +v -119.639458 141.854614 -0.043961 +v -119.639458 141.854614 -1.043961 +v -119.639458 141.854614 -1.043961 +v -131.500046 -159.299911 -0.044113 +v -131.500046 -159.299911 -0.044113 +v 177.830139 149.699997 -0.043945 +v 177.830139 149.699997 -0.043945 +v 177.830139 149.699997 -1.043945 +v 177.830139 149.699997 -1.043945 +v -121.292206 143.546326 -0.043961 +v -121.292206 143.546326 -0.043961 +v -175.727524 147.576263 -0.043945 +v -175.277283 148.455338 -0.043945 +v 146.769791 144.699051 -1.043945 +v 146.769791 144.699051 -1.043945 +v -126.500061 -157.960205 -0.044113 +v -126.500061 -157.960205 -0.044113 +v -126.500061 -157.960205 -1.044113 +v -126.500061 -157.960205 -1.044113 +v 175.565979 151.827972 -0.043945 +v 175.565979 151.827972 -0.043945 +v 175.565979 151.827972 -1.043945 +v 175.565979 151.827972 -1.043945 +v 174.464264 -141.523285 -0.044113 +v 171.173004 -140.687088 -0.044113 +v 171.173004 -140.687088 -0.044113 +v 175.364502 -137.886398 -0.044098 +v 174.840088 -137.302017 -0.044083 +v 174.840088 -137.302017 -0.044083 +v 170.753326 -139.039001 -1.044098 +v 170.753326 -139.039001 -1.044098 +v 171.032211 -138.091232 -1.044067 +v 173.960999 -136.851791 -0.044083 +v -171.484070 -137.715363 -1.044098 +v -171.059647 -138.509460 -0.044098 +v -171.059647 -138.509460 -0.044098 +v -171.215714 -140.440720 -0.044098 +v -171.215714 -140.440720 -0.044098 +v 122.169937 149.699997 -1.043945 +v 122.169937 149.699997 -1.043945 +v 121.500046 147.200012 -1.043945 +v 121.500046 147.200012 -1.043945 +v -174.622803 -141.539795 -1.044113 +v -175.429184 -140.895493 -1.044113 +v -175.983337 -138.994415 -1.044098 +v -175.983337 -138.994415 -1.044098 +v 172.637772 144.404343 -1.043945 +v 172.637772 144.404343 -1.043945 +v 172.030991 144.748306 -1.043930 +v 172.030991 144.748306 -1.043930 +v 120.160217 -142.299957 -1.044113 +v 120.160217 -142.299957 -1.044113 +v 171.193176 147.510254 -1.043945 +v 171.673965 148.373016 -1.043945 +v -171.039474 148.037964 -1.043945 +v -170.820465 147.375687 -1.043945 +v -173.088669 149.407181 -0.043945 +v -172.138580 149.137070 -0.043945 +v 158.400040 152.200012 -1.043945 +v 158.400040 152.200012 -1.043945 +v 121.345543 143.560516 -1.043961 +v 121.345543 143.560516 -1.043961 +v -131.500046 -159.299911 -1.044113 +v -131.500046 -159.299911 -1.044113 +v -175.701752 147.661209 -1.043945 +v -175.220963 148.523956 -1.043945 +v -121.292206 143.546326 -1.043961 +v -121.292206 143.546326 -1.043961 +v 170.849991 -140.020447 -0.044067 +v -172.060287 144.672684 -1.043945 +v -172.800842 144.411850 -1.043945 +v -172.800842 144.411850 -1.043945 +v 176.118973 146.922897 -1.043945 +v 174.669098 -137.190994 -1.044113 +v 174.045975 -136.877579 -1.044113 +v 171.469711 -141.085831 -1.044128 +v 171.469711 -141.085831 -1.044128 +v -171.540390 -137.646744 -0.044098 +v -170.945602 -139.490570 -0.044098 +v -170.945602 -139.490570 -0.044098 +v -171.859985 -141.247055 -0.044113 +v -173.761063 -141.801208 -0.044113 +v -173.761063 -141.801208 -0.044113 +v -174.701111 -141.497940 -0.044113 +v -175.422684 -140.890167 -0.044113 +v -122.839859 -154.299911 -0.044113 +v -122.839859 -154.299911 -0.044113 +v -154.069855 149.700089 -0.043945 +v -154.069855 149.700089 -0.043945 +v -152.922165 144.080460 -0.043945 +v -152.922165 144.080460 -0.043945 +v -154.069855 149.700089 -1.043945 +v -154.069855 149.700089 -1.043945 +v 175.384628 144.950729 -0.043945 +v 173.500046 152.199982 -0.043945 +v 173.500046 152.199982 -0.043945 +v 173.500046 152.199982 -1.043945 +v 173.500046 152.199982 -1.043945 +v -170.820465 146.392227 -0.043945 +v -171.039474 145.729950 -0.043945 +v 122.839699 -154.299957 -0.044113 +v 122.839699 -154.299957 -0.044113 +v 121.500046 147.200012 -0.043945 +v 121.500046 147.200012 -0.043945 +v 152.930527 144.086807 -0.043945 +v 152.930527 144.086807 -0.043945 +v -126.499962 152.200104 -0.043945 +v -126.499962 152.200104 -0.043945 +v -122.169853 149.700089 -0.043945 +v -122.169853 149.700089 -0.043945 +v -122.169853 149.700089 -1.043945 +v -122.169853 149.700089 -1.043945 +v -171.510284 145.101669 -0.043945 +v -175.813110 146.883957 -0.043945 +v -175.813110 146.883957 -0.043945 +v -121.499954 147.200104 -0.043945 +v -121.499954 147.200104 -0.043945 +v 175.789291 -139.286743 -1.044113 +v 175.789291 -139.286743 -1.044113 +v 173.516510 -141.802185 -0.044113 +v 173.516510 -141.802185 -0.044113 +v -172.138565 144.630859 -0.043945 +v -171.510284 148.666245 -1.043945 +v -171.510284 148.666245 -1.043945 +v 170.841949 -138.550598 -0.044067 +v 170.841949 -140.022903 -1.044067 +v -173.468811 -136.766144 -0.044098 +v -173.468811 -136.766144 -0.044098 +v -173.468811 -136.766144 -1.044098 +v -173.468811 -136.766144 -1.044098 +v -173.960541 -141.758789 -1.044113 +v -126.499962 152.200104 -1.043945 +v -126.499962 152.200104 -1.043945 +v -174.869141 -137.190918 -1.044098 +v -174.869141 -137.190918 -1.044098 +v -174.246048 -136.877518 -0.044083 +v -122.839813 -154.299866 -1.044113 +v -122.839813 -154.299866 -1.044113 +v 174.379547 149.142197 -1.043945 +v 174.379562 144.323837 -1.043930 +v 174.379562 144.323837 -1.043930 +v 171.081802 146.733017 -1.043945 +v 171.081802 146.733017 -1.043945 +v 122.839745 -154.300003 -1.044113 +v 122.839745 -154.300003 -1.044113 +v -173.088699 144.360748 -0.043945 +v -173.088699 144.360748 -0.043945 +v 154.069946 149.699997 -0.043945 +v 154.069946 149.699997 -0.043945 +v -175.813110 146.883957 -1.043945 +v -175.813110 146.883957 -1.043945 +v -121.499954 147.200104 -1.043945 +v -121.499954 147.200104 -1.043945 +v 175.789291 -139.286743 -0.044083 +v 175.789291 -139.286743 -0.044083 +v 170.748215 -139.286743 -0.044098 +v 170.748215 -139.286743 -0.044098 +v 173.268753 -136.766205 -1.044113 +v 173.268753 -136.766205 -1.044113 +v 173.268753 -136.766205 -0.044083 +v 173.268753 -136.766205 -0.044083 +v 172.576492 -136.851791 -1.044113 +v -177.160248 -154.299896 -0.044113 +v -177.160248 -154.299896 -0.044113 +v -174.869141 -137.190918 -0.044098 +v -174.869141 -137.190918 -0.044098 +v -174.161072 -136.851730 -1.044083 +v -151.699951 142.855606 -0.043961 +v -151.699951 142.855606 -0.043961 +v 168.499954 -159.300018 -0.044113 +v 168.499954 -159.300018 -0.044113 +v 131.499954 -159.300003 -0.044113 +v 131.499954 -159.300003 -0.044113 +v -171.510284 148.666245 -0.043945 +v -171.510284 148.666245 -0.043945 +v 178.499954 -149.300018 -0.044113 +v 178.499954 -149.300018 -0.044113 +v 177.160156 -154.300018 -0.044113 +v 177.160156 -154.300018 -0.044113 +v 126.499947 -157.960297 -0.044113 +v 126.499947 -157.960297 -0.044113 +v 178.500046 147.199997 -0.043945 +v 178.500046 147.199997 -0.043945 +v 175.687531 -138.553055 -0.044083 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.640625 0.784724 +vt 0.656250 0.685539 +vt 0.609371 0.685538 +vt 0.515626 0.784723 +vt 0.546875 0.685538 +vt 0.481568 0.685539 +vt 0.893436 0.784724 +vt 0.906250 0.685536 +vt 0.859373 0.685537 +vt 0.171872 0.685539 +vt 0.203126 0.784724 +vt 0.234375 0.685537 +vt 0.578128 0.784723 +vt 0.609371 0.685538 +vt 0.455934 0.784723 +vt 0.481568 0.685539 +vt 0.437500 0.685539 +vt 0.140628 0.784724 +vt 0.106566 0.685538 +vt 0.799684 0.784723 +vt 0.812500 0.685538 +vt 0.762815 0.685538 +vt 0.737184 0.784723 +vt 0.762815 0.685538 +vt 0.700316 0.685538 +vt 0.674679 0.784723 +vt 0.700316 0.685538 +vt 0.640629 0.685538 +vt 0.580935 0.685538 +vt 0.609374 0.784723 +vt 0.640629 0.685538 +vt 0.518432 0.685538 +vt 0.544066 0.784723 +vt 0.580935 0.685538 +vt 0.468750 0.685538 +vt 0.481568 0.784723 +vt 0.518432 0.685538 +vt 0.268434 0.784723 +vt 0.294067 0.685538 +vt 0.231567 0.685538 +vt 0.205934 0.784723 +vt 0.231567 0.685538 +vt 0.187500 0.685538 +vt 0.737183 0.784734 +vt 0.761975 0.685548 +vt 0.718750 0.685548 +vt 0.549684 0.685548 +vt 0.575319 0.784734 +vt 0.609371 0.685548 +vt 0.487185 0.685548 +vt 0.512816 0.784734 +vt 0.549684 0.685548 +vt 0.393434 0.685548 +vt 0.419064 0.784734 +vt 0.437500 0.685548 +vt 0.768430 0.784734 +vt 0.781250 0.685548 +vt 0.731571 0.685548 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.656170 0.685548 +vt 0.625000 0.784734 +vt 0.674681 0.784734 +vt 0.487184 0.685548 +vt 0.512815 0.784734 +vt 0.531250 0.685548 +vt 0.424679 0.685548 +vt 0.450317 0.784734 +vt 0.487184 0.685548 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.703127 0.685537 +vt 0.750000 0.784724 +vt 0.750000 0.685536 +vt 0.703128 0.784723 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.750000 0.685536 +vt 0.796873 0.784724 +vt 0.796872 0.685539 +vt 0.250000 0.784723 +vt 0.044068 0.685536 +vt 0.000000 0.784724 +vt 0.049685 0.784724 +vt 0.843750 0.784723 +vt 0.893436 0.784724 +vt 0.859373 0.685537 +vt 0.437500 0.685539 +vt 0.390626 0.784723 +vt 0.455934 0.784723 +vt 0.515626 0.784723 +vt 0.955932 0.784724 +vt 0.950316 0.685536 +vt 0.640625 0.784724 +vt 0.093750 0.784723 +vt 0.140628 0.784724 +vt 0.106566 0.685538 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.343750 0.784723 +vt 0.296875 0.685539 +vt 0.296874 0.784724 +vt 1.000000 0.685536 +vt 1.000000 0.784724 +vt 0.250000 0.784723 +vt 0.955931 0.784723 +vt 1.000000 0.685538 +vt 0.950316 0.685538 +vt 0.375083 0.685537 +vt 0.343750 0.784723 +vt 0.906250 0.784723 +vt 0.906250 0.685538 +vt 0.862177 0.784723 +vt 0.906250 0.685538 +vt 0.856563 0.685538 +vt 0.419067 0.784723 +vt 0.424682 0.685538 +vt 0.799684 0.784723 +vt 0.737184 0.784723 +vt 0.674679 0.784723 +vt 0.544066 0.784723 +vt 0.481568 0.784723 +vt 0.359374 0.685538 +vt 0.359374 0.784723 +vt 0.312500 0.784723 +vt 0.187500 0.685538 +vt 0.143436 0.784723 +vt 0.205934 0.784723 +vt 0.312500 0.784723 +vt 0.268434 0.784723 +vt 0.093750 0.784723 +vt 0.137821 0.685538 +vt 0.093750 0.685538 +vt 0.049685 0.784723 +vt 0.093750 0.685538 +vt 0.044068 0.685538 +vt 0.000000 0.784723 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.955932 0.784734 +vt 1.000000 0.685548 +vt 0.950317 0.685548 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.893435 0.784734 +vt 0.887823 0.685548 +vt 0.830933 0.784734 +vt 0.825317 0.685548 +vt 0.781247 0.784734 +vt 0.718750 0.685548 +vt 0.674682 0.784734 +vt 0.737183 0.784734 +vt 0.669066 0.685548 +vt 0.625000 0.784734 +vt 0.468750 0.784734 +vt 0.437500 0.685548 +vt 0.419064 0.784734 +vt 0.609371 0.685548 +vt 0.575319 0.784734 +vt 0.512816 0.784734 +vt 0.468750 0.784734 +vt 0.343750 0.685548 +vt 0.299684 0.784734 +vt 0.359377 0.784734 +vt 0.359377 0.784734 +vt 0.393434 0.685548 +vt 0.294068 0.685548 +vt 0.250000 0.784734 +vt 0.250000 0.685548 +vt 0.205932 0.784734 +vt 0.250000 0.784734 +vt 0.200315 0.685548 +vt 0.143432 0.784734 +vt 0.093750 0.784734 +vt 0.137818 0.685548 +vt 0.093750 0.685548 +vt 0.049681 0.784734 +vt 0.093750 0.685548 +vt 0.044067 0.685548 +vt 0.000000 0.784734 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.924682 0.784734 +vt 0.981566 0.685548 +vt 0.919069 0.685548 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.875000 0.784734 +vt 0.875000 0.685548 +vt 0.875000 0.685548 +vt 0.830934 0.784734 +vt 0.875000 0.784734 +vt 0.825319 0.685548 +vt 0.731571 0.685548 +vt 0.718750 0.784734 +vt 0.768430 0.784734 +vt 0.580932 0.685548 +vt 0.575319 0.784734 +vt 0.531250 0.685548 +vt 0.512815 0.784734 +vt 0.406250 0.784734 +vt 0.359376 0.685548 +vt 0.359376 0.784734 +vt 0.450317 0.784734 +vt 0.406250 0.784734 +vt 0.299685 0.784734 +vt 0.294071 0.685548 +vt 0.250000 0.784734 +vt 0.250000 0.685548 +vt 0.205929 0.784734 +vt 0.250000 0.784734 +vt 0.200315 0.685548 +vt 0.143433 0.784734 +vt 0.093750 0.784734 +vt 0.137819 0.685548 +vt 0.093750 0.685548 +vt 0.049681 0.784734 +vt 0.093750 0.685548 +vt 0.044067 0.685548 +vt 0.000000 0.784734 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.750000 0.784724 +vt 0.000000 0.685536 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.375083 0.685537 +vt 0.234375 0.685537 +vt 1.000000 0.784723 +vt 0.906250 0.784723 +vt 0.294067 0.685538 +vt 0.093750 0.784723 +vt 0.000000 0.685538 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 1.000000 0.784734 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.487185 0.685548 +vt 0.250000 0.685548 +vt 0.093750 0.784734 +vt 0.000000 0.685548 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.987183 0.784734 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.424679 0.685548 +vt 0.250000 0.685548 +vt 0.093750 0.784734 +vt 0.000000 0.685548 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vn 0.9760 -0.2179 0.0000 +vn -0.9760 -0.2179 0.0000 +vn -0.8451 0.5347 0.0021 +vn -0.8345 0.5510 0.0054 +vn -0.7469 0.6643 0.0290 +vn -0.1923 0.9813 -0.0069 +vn -0.2862 0.9579 0.0202 +vn -0.0849 0.9953 0.0468 +vn -0.5280 -0.8492 -0.0020 +vn -0.5498 -0.8353 0.0031 +vn -0.6643 -0.7469 0.0307 +vn 0.8798 -0.4750 0.0202 +vn 0.9538 -0.3003 -0.0127 +vn 0.9747 -0.2226 0.0223 +vn -0.4735 0.8806 -0.0193 +vn -0.5546 0.8321 0.0089 +vn 0.1512 0.9883 -0.0182 +vn 0.1902 0.9818 -0.0021 +vn 0.2663 0.9634 0.0299 +vn 0.8299 -0.5579 -0.0070 +vn 0.7638 -0.6438 0.0467 +vn -0.9126 -0.4088 -0.0012 +vn -0.9220 -0.3873 0.0035 +vn -0.9683 -0.2476 0.0315 +vn -0.9999 -0.0152 -0.0062 +vn -0.9999 0.0152 0.0062 +vn -0.9922 0.1153 0.0470 +vn -0.9311 0.3647 -0.0079 +vn -0.9190 0.3942 0.0051 +vn -0.8749 0.4821 0.0451 +vn -0.5642 0.8256 0.0053 +vn -0.6352 0.7721 -0.0209 +vn -0.7108 0.7034 0.0058 +vn -0.2100 0.9777 0.0062 +vn -0.1801 0.9836 -0.0062 +vn -0.3067 0.9506 0.0470 +vn 0.2003 0.9797 0.0037 +vn 0.2229 0.9748 -0.0012 +vn 0.0540 0.9980 0.0316 +vn 0.9825 0.1865 0.0036 +vn 0.9888 0.1482 0.0194 +vn 0.9956 0.0805 0.0470 +vn 0.9888 -0.1482 -0.0194 +vn 0.9825 -0.1865 -0.0036 +vn 0.9634 -0.2663 0.0299 +vn -0.9997 -0.0243 -0.0030 +vn -0.9937 -0.1117 0.0137 +vn -0.9974 0.0652 0.0322 +vn -0.3942 0.9190 0.0051 +vn -0.3647 0.9311 -0.0079 +vn -0.4821 0.8749 0.0451 +vn -0.0476 0.9987 0.0194 +vn -0.0088 1.0000 0.0036 +vn -0.1153 0.9922 0.0470 +vn 0.5597 0.8287 -0.0021 +vn 0.5919 0.8058 -0.0182 +vn 0.4929 0.8696 0.0299 +vn -0.9748 -0.2230 -0.0012 +vn -0.9797 -0.2003 0.0037 +vn -0.9980 -0.0540 0.0316 +vn -0.2588 0.9659 0.0000 +vn -0.8267 0.5625 0.0129 +vn -0.7029 0.7113 0.0000 +vn -0.8959 0.4442 0.0021 +vn 0.0088 1.0000 -0.0036 +vn 0.0476 0.9987 -0.0194 +vn -0.0732 0.9969 0.0299 +vn 0.3382 0.9409 0.0194 +vn 0.3745 0.9272 0.0036 +vn 0.2731 0.9608 0.0470 +vn -0.0000 0.0000 -1.0000 +vn -0.9960 0.0897 0.0000 +vn 0.9799 0.1995 -0.0033 +vn 0.9795 0.2012 -0.0045 +vn 0.9799 0.1995 -0.0034 +vn -0.7071 0.7071 0.0000 +vn 0.2588 0.9659 0.0000 +vn 0.1772 0.9842 0.0000 +vn -0.2588 -0.9659 0.0000 +vn -0.0000 -1.0000 0.0000 +vn 0.7068 0.7074 0.0010 +vn 0.7077 0.7065 -0.0004 +vn 0.7085 0.7057 -0.0001 +vn 0.5366 0.8438 0.0000 +vn -0.7071 -0.7071 0.0000 +vn -0.9795 0.2012 0.0045 +vn -0.9799 0.1995 0.0033 +vn -0.9801 0.1982 0.0058 +vn 0.8315 0.5556 0.0000 +vn -0.9659 0.2588 0.0000 +vn -0.9659 -0.2588 0.0000 +vn -0.7077 0.7065 0.0004 +vn -0.7068 0.7074 -0.0011 +vn -0.7076 0.7066 0.0006 +vn -0.0079 1.0000 0.0000 +vn 0.7071 -0.7071 -0.0000 +vn 0.5000 0.8660 0.0000 +vn 0.9659 -0.2588 0.0000 +vn 0.9923 0.1237 0.0000 +vn 0.2588 -0.9659 0.0000 +vn -0.6988 0.7153 0.0000 +vn -0.9991 0.0424 0.0000 +vn -0.0002 1.0000 0.0000 +vn 0.7695 0.6387 0.0000 +vn 1.0000 -0.0000 0.0000 +vn -0.7287 0.6849 0.0000 +vn -0.6879 0.7258 0.0000 +vn -1.0000 0.0012 0.0000 +vn 0.6849 0.7287 0.0000 +vn 0.7153 0.6988 0.0000 +vn 0.0125 0.9999 0.0000 +vn 0.9984 0.0568 0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.9659 0.2588 0.0000 +vn 0.0217 0.9998 0.0000 +vn -0.7350 0.6780 0.0000 +vn -0.9537 0.3007 -0.0040 +vn -0.9913 0.1317 0.0042 +vn -0.9913 0.1319 0.0041 +vn -0.0000 -0.0000 1.0000 +vn -0.9913 -0.1318 -0.0042 +vn -0.9537 -0.3007 0.0040 +vn -0.9537 -0.3006 0.0040 +vn 0.9916 -0.1263 -0.0262 +vn 0.2881 -0.9576 0.0051 +vn 0.1329 -0.9911 -0.0072 +vn 0.3062 -0.9519 0.0065 +vn -0.8334 -0.5526 -0.0058 +vn -0.7439 -0.6676 -0.0300 +vn -0.8427 -0.5383 -0.0030 +vn 0.4975 0.8674 0.0011 +vn 0.6144 0.7888 -0.0158 +vn 0.4975 0.8675 0.0010 +vn 0.0852 0.9953 -0.0451 +vn -0.2881 -0.9576 -0.0051 +vn -0.3062 -0.9519 -0.0065 +vn -0.6402 0.7669 -0.0444 +vn 0.5499 -0.8352 -0.0030 +vn 0.6642 -0.7469 -0.0306 +vn 0.5280 -0.8492 0.0021 +vn 0.8759 0.4815 0.0298 +vn 0.9532 0.3016 0.0213 +vn 0.9532 0.3017 0.0214 +vn -0.1328 -0.9911 0.0072 +vn -0.1328 -0.9911 0.0071 +vn 0.9938 0.1102 0.0121 +vn -0.2816 -0.9595 0.0004 +vn -0.1329 -0.9911 0.0072 +vn -0.2989 -0.9543 -0.0004 +vn 0.5937 0.8046 -0.0125 +vn 0.7541 0.6557 -0.0377 +vn -0.4402 -0.8979 -0.0071 +vn -0.7716 -0.6361 -0.0051 +vn -0.6611 -0.7502 0.0072 +vn -0.7835 -0.6214 -0.0065 +vn 0.4893 0.8721 -0.0067 +vn 0.4709 0.8821 -0.0078 +vn -0.9922 -0.1153 -0.0470 +vn -0.9608 0.2731 -0.0470 +vn -0.7804 0.6235 -0.0467 +vn -0.4592 0.8869 -0.0496 +vn -0.0805 0.9956 -0.0470 +vn 0.7701 0.6378 0.0099 +vn 0.7699 0.6381 0.0097 +vn 0.8776 0.4792 0.0145 +vn 0.8772 -0.4800 -0.0105 +vn 0.7870 -0.6169 -0.0090 +vn 0.8772 -0.4799 -0.0105 +vn 0.9634 0.2663 -0.0299 +vn 0.9956 -0.0805 -0.0470 +vn 0.6611 -0.7502 -0.0072 +vn 0.7748 -0.6322 -0.0088 +vn 0.6611 -0.7503 -0.0071 +vn 0.2989 -0.9543 0.0004 +vn 0.4401 -0.8979 0.0072 +vn 0.2816 -0.9595 -0.0004 +vn 0.1328 -0.9911 -0.0071 +vn -0.2974 -0.9547 0.0038 +vn -0.1329 -0.9911 0.0071 +vn -0.3165 -0.9486 0.0034 +vn -0.6259 -0.7799 0.0000 +vn -0.6428 -0.7660 0.0000 +vn -0.8758 -0.4827 0.0070 +vn -0.8861 -0.4635 0.0078 +vn -0.9787 -0.2055 -0.0004 +vn -0.9540 0.2996 -0.0105 +vn -0.8875 0.4608 -0.0017 +vn -0.8778 0.4791 -0.0006 +vn -0.7099 0.7042 -0.0081 +vn 0.2903 0.9569 -0.0000 +vn -0.7219 0.6920 -0.0055 +vn -0.5994 0.7999 -0.0301 +vn -0.2732 0.9608 -0.0471 +vn 0.0732 0.9969 -0.0298 +vn 0.8337 0.5522 0.0081 +vn 0.9507 0.3100 -0.0078 +vn 0.8430 0.5379 0.0055 +vn 0.6436 0.7641 -0.0451 +vn 0.7439 0.6676 0.0301 +vn 0.9565 0.2915 -0.0078 +vn 0.9911 0.1329 -0.0072 +vn 0.9911 -0.1329 0.0072 +vn 0.9547 -0.2975 0.0038 +vn 0.9911 -0.1329 0.0071 +vn 0.9486 -0.3165 0.0034 +vn 0.7902 -0.6129 -0.0034 +vn 0.7777 -0.6286 -0.0038 +vn 0.2990 -0.9543 0.0004 +vn 0.1329 -0.9911 -0.0071 +vn -0.4469 -0.8946 -0.0034 +vn -0.1090 -0.9940 -0.0000 +vn -0.4648 -0.8854 -0.0038 +vn -0.6069 -0.7947 -0.0071 +vn -0.7947 -0.6069 0.0071 +vn -0.8808 -0.4734 -0.0051 +vn -0.7948 -0.6069 0.0071 +vn -0.8897 -0.4566 -0.0065 +vn -0.9720 0.2347 0.0121 +vn -0.9777 0.2101 0.0061 +vn -0.9980 0.0540 -0.0316 +vn -0.4902 0.8716 0.0084 +vn -0.4708 0.8822 0.0064 +vn -0.2996 0.9540 -0.0105 +vn 0.6412 0.7672 0.0145 +vn 0.7758 0.6309 0.0099 +vn 0.7760 0.6306 0.0097 +vn 0.1153 0.9922 -0.0470 +vn 0.4491 0.8930 -0.0299 +vn 0.9487 0.3162 -0.0010 +vn 0.9548 0.2971 -0.0017 +vn 0.9547 -0.2974 0.0038 +vn 0.9911 -0.1328 0.0071 +vn 0.7902 -0.6128 -0.0034 +vn 0.2831 -0.9591 0.0038 +vn 0.2638 -0.9646 0.0034 +vn -0.0871 -0.9962 0.0000 +vn 0.9801 0.1982 -0.0058 +vn 0.7076 0.7066 -0.0006 +vn -0.9799 0.1995 0.0034 +vn -0.7085 0.7057 0.0001 +vn 0.0001 -0.0000 1.0000 +vn -0.9913 -0.1319 -0.0041 +vn 0.0002 0.0001 -1.0000 +vn -0.6611 -0.7503 0.0071 +vn 0.4402 -0.8979 0.0071 +vn 0.9911 0.1329 -0.0071 +vn 0.9911 0.1328 -0.0071 +vn -0.0000 -0.0001 -1.0000 +usemtl material +s 1 +f 3314/2814/2428 3365/2815/2428 3034/2816/2428 +f 3007/2817/2429 3280/2818/2429 3329/2819/2429 +f 3074/2820/2430 3079/2821/2431 3089/2822/2432 +f 3348/2823/2433 3090/2824/2434 3184/2825/2435 +f 3257/2826/2436 3302/2827/2437 3083/2828/2438 +f 3260/2829/2439 3353/2830/2440 3258/2831/2441 +f 3090/2824/2434 3252/2832/2442 3088/2833/2443 +f 3077/2834/2444 3183/2835/2445 3084/2836/2446 +f 2992/2837/2447 3260/2829/2439 2994/2838/2448 +f 3263/2839/2449 3096/2840/2450 3097/2841/2451 +f 3308/2842/2452 3098/2843/2453 3102/2844/2454 +f 3265/2845/2455 3101/2846/2456 3103/2847/2457 +f 3106/2848/2458 3309/2849/2459 3104/2850/2460 +f 3109/2851/2461 3107/2852/2462 3105/2853/2463 +f 3359/2854/2464 3311/2855/2465 3110/2856/2466 +f 3190/2857/2467 3114/2858/2468 3273/2859/2469 +f 3120/2860/2470 3274/2861/2471 3118/2862/2472 +f 3112/2863/2473 3301/2864/2474 3127/2865/2475 +f 3369/2866/2476 3133/2867/2477 3131/2868/2478 +f 3137/2869/2479 3199/2870/2480 3368/2871/2481 +f 3277/2872/2482 3186/2873/2483 3275/2874/2484 +f 3212/2875/2485 3284/2876/2486 3146/2877/2487 +f 2960/2878/2488 3124/2879/2488 2964/2880/2488 +f 3147/2881/2489 3341/2882/2490 3328/2883/2491 +f 3171/2884/2492 3374/2885/2493 3300/2886/2494 +f 3172/2887/2495 3192/2888/2496 3170/2889/2497 +f 2956/2890/2498 3294/2891/2498 2698/2892/2498 +f 3125/2893/2499 2966/2894/2499 2968/2895/2499 +f 3316/2896/2500 3038/2897/2501 3320/2898/2502 +f 2974/2899/2488 3130/2900/2488 2978/2901/2488 +f 2980/2902/2503 2979/2903/2503 3268/2904/2503 +f 2982/2905/2504 3136/2906/2504 2986/2907/2504 +f 3323/2908/2505 3251/2909/2505 3325/2910/2505 +f 2988/2911/2506 3142/2912/2506 2996/2913/2506 +f 2991/2914/2507 3200/2915/2507 3141/2916/2507 +f 3319/2917/2508 3039/2918/2509 3037/2919/2510 +f 2998/2920/2511 3151/2921/2511 3004/2922/2511 +f 3279/2923/2512 2989/2924/2512 2997/2925/2512 +f 3334/2926/2513 3008/2927/2514 3010/2928/2515 +f 3001/2929/2516 3202/2930/2516 3150/2931/2516 +f 3099/2932/2512 3012/2933/2512 3014/2934/2512 +f 3205/2935/2506 3015/2936/2506 3160/2937/2506 +f 3331/2938/2517 3267/2939/2517 3269/2940/2517 +f 3398/2941/2507 3019/2942/2507 3021/2943/2507 +f 3391/2944/2518 3023/2945/2518 3013/2946/2518 +f 3165/2947/2519 3011/2948/2520 3210/2949/2521 +f 3025/2950/2488 3092/2951/2488 3029/2952/2488 +f 3169/2953/2522 3361/2954/2522 3215/2955/2522 +f 3035/2956/2523 3033/2957/2523 3216/2958/2523 +f 3336/2959/2524 3340/2960/2524 3360/2961/2524 +f 3404/2962/2525 3041/2963/2525 3043/2964/2525 +f 3218/2965/2488 3288/2966/2488 3046/2967/2488 +f 3034/2816/2428 3365/2815/2428 3217/2968/2428 +f 3156/2969/2526 3242/2970/2526 3203/2971/2526 +f 3049/2972/2527 3022/2973/2527 3051/2974/2527 +f 3222/2975/2528 3289/2976/2528 3226/2977/2528 +f 3408/2978/2512 3372/2979/2512 3057/2980/2512 +f 3270/2981/2529 3225/2982/2529 3332/2983/2529 +f 3228/2984/2530 3227/2985/2530 3230/2986/2530 +f 3397/2987/2504 3030/2988/2504 3040/2989/2504 +f 3243/2990/2531 2983/2991/2531 2987/2992/2531 +f 3232/2993/2507 3161/2994/2507 3291/2995/2507 +f 3410/2996/2532 3044/2997/2532 3176/2998/2532 +f 3060/2999/2533 2965/3000/2533 3062/3001/2533 +f 3401/3002/2506 3056/3003/2506 3020/3004/2506 +f 3407/3005/2523 3052/3006/2523 3042/3007/2523 +f 3144/3008/2527 3036/3009/2527 3201/3010/2527 +f 2969/3011/2534 3214/3012/2534 3126/3013/2534 +f 3207/3014/2535 3063/3015/2535 3024/3016/2535 +f 3329/2819/2429 3280/2818/2429 3373/3017/2429 +f 3248/3018/2536 3237/3019/2536 3250/3020/2536 +f 3238/3021/2537 3231/3022/2537 3295/3023/2537 +f 2977/3024/2538 3005/3025/2538 3129/3026/2538 +f 3380/3027/2539 3239/3028/2539 3296/3029/2539 +f 3221/3030/2540 3326/3031/2540 3287/3032/2540 +f 3234/3033/2541 3177/3034/2541 3236/3035/2541 +f 2985/3036/2488 3209/3037/2488 3135/3038/2488 +f 2696/3039/2542 3069/3040/2542 3123/3041/2542 +f 3337/3042/2541 3381/3043/2541 3339/3044/2541 +f 3315/3045/2523 3247/3046/2523 3366/3047/2523 +f 3028/3048/2543 2971/3049/2543 3091/3050/2543 +f 3244/3051/2527 3292/3052/2527 3246/3053/2527 +f 3376/3054/2503 3045/3055/2503 3009/3056/2503 +f 3066/3057/2536 3321/3058/2536 3068/3059/2536 +f 3080/3060/2544 3382/3061/2545 3347/3062/2546 +f 3073/3063/2544 3079/2821/2431 3074/2820/2430 +f 2774/3064/2547 3349/3065/2547 2818/3066/2547 +f 2814/3067/2548 3412/3068/2549 3081/3069/2550 +f 3353/2830/2440 2822/3070/2551 3258/2831/2441 +f 3390/3071/2552 3389/3072/2553 3086/3073/2554 +f 3255/3074/2555 3256/3075/2556 3082/3076/2557 +f 3085/3077/2558 3078/3078/2559 3076/3079/2560 +f 3077/2834/2444 2817/3080/2561 3183/2835/2445 +f 3260/2829/2439 2992/2837/2447 3353/2830/2440 +f 3302/2827/2437 3261/3081/2562 3303/3082/2563 +f 3252/2832/2442 3075/3083/2564 3088/2833/2443 +f 3087/3084/2565 2993/3085/2566 2995/3086/2567 +f 2839/3087/2498 2777/3088/2498 2836/3089/2498 +f 3254/3090/2568 2846/3091/2569 3297/3092/2570 +f 3386/3093/2571 3261/3081/2562 3388/3094/2572 +f 3255/3074/2555 3081/3069/2550 3412/3068/2549 +f 2846/3091/2569 3385/3095/2573 3297/3092/2570 +f 3390/3071/2552 3087/3084/2565 2995/3086/2567 +f 3187/3096/2574 3357/3097/2575 3093/3098/2576 +f 3090/2824/2434 3348/2823/2433 3252/2832/2442 +f 3304/3099/2577 3253/3100/2578 3078/3078/2559 +f 3188/3101/2579 3093/3098/2576 3094/3102/2579 +f 3306/3103/2580 3095/3104/2581 3262/3105/2582 +f 3096/2840/2450 3306/3103/2580 3262/3105/2582 +f 3312/3106/2583 3359/2854/2464 3271/3107/2584 +f 3308/2842/2452 3264/3108/2585 3098/2843/2453 +f 3265/2845/2455 2859/3109/2586 3101/2846/2456 +f 3309/2849/2459 3266/3110/2587 3104/2850/2460 +f 3106/2848/2458 3108/3111/2588 3309/2849/2459 +f 3109/2851/2461 3310/3112/2589 3107/2852/2462 +f 3312/3106/2583 3272/3113/2590 3313/3114/2591 +f 3272/3113/2590 3117/3115/2592 3313/3114/2591 +f 3119/3116/2593 3194/3117/2594 3121/3118/2595 +f 3190/2857/2467 3116/3119/2596 3114/2858/2468 +f 3120/2860/2470 3191/3120/2597 3274/2861/2471 +f 3393/3121/2598 3122/3122/2599 3362/3123/2600 +f 3364/3124/2601 3363/3125/2602 3395/3126/2603 +f 3395/3126/2603 3356/3127/2604 3364/3124/2601 +f 3307/3128/2547 2861/3129/2547 2795/3130/2547 +f 2888/3131/2605 3182/3132/2606 3367/3133/2607 +f 2862/3134/2498 2860/3135/2498 2750/3136/2498 +f 2890/3137/2608 3367/3133/2607 3166/3138/2609 +f 3166/3138/2609 3064/3139/2610 2890/3137/2608 +f 3167/3140/2611 3065/3141/2612 3064/3139/2610 +f 3128/3142/2613 3113/3143/2614 3111/3144/2613 +f 3301/2864/2474 3112/2863/2473 3065/3141/2612 +f 3195/3145/2615 3322/3146/2616 3113/3143/2614 +f 3140/3147/2617 3276/3148/2617 3185/3149/2617 +f 3132/3150/2618 3134/3151/2619 3322/3146/2616 +f 3369/2866/2476 3198/3152/2620 3133/2867/2477 +f 3137/2869/2479 3139/3153/2621 3199/2870/2480 +f 3002/3154/2622 3154/3155/2623 3152/3156/2624 +f 3277/2872/2482 3153/3157/2625 3186/2873/2483 +f 3152/3156/2624 3278/3158/2626 3002/3154/2622 +f 3003/3159/2627 3054/3160/2628 3154/3155/2623 +f 3371/3161/2629 3055/3162/2630 3053/3163/2631 +f 3281/3164/2632 3204/3165/2633 3055/3162/2630 +f 3017/3166/2600 3282/3167/2634 3157/3168/2600 +f 3018/3169/2635 3158/3170/2602 3159/3171/2603 +f 3159/3171/2603 3196/3172/2636 3018/3169/2635 +f 2721/3173/2547 2972/3174/2547 2973/3175/2547 +f 3286/3176/2637 3162/3177/2638 3163/3178/2639 +f 2889/3179/2498 2887/3180/2498 2722/3181/2498 +f 3403/3182/2640 3163/3178/2639 3351/3183/2640 +f 3352/3184/2641 3211/3185/2642 3402/3186/2643 +f 3284/2876/2486 3211/3185/2642 3283/3187/2644 +f 3145/3188/2645 3328/2883/2491 3327/3189/2646 +f 3327/3189/2646 3213/3190/2647 3145/3188/2645 +f 3341/2882/2490 3298/3191/2648 3350/3192/2649 +f 3350/3192/2649 3299/3193/2650 3375/3194/2650 +f 3148/3195/2651 3174/3196/2652 3058/3197/2653 +f 3171/2884/2492 3193/3198/2654 3374/2885/2493 +f 3172/2887/2495 3149/3199/2655 3192/2888/2496 +f 3174/3196/2652 3059/3200/2656 3058/3197/2653 +f 3175/3201/2657 3342/3202/2628 3059/3200/2656 +f 3379/3203/2629 3240/3204/2658 3343/3205/2659 +f 3293/3206/2632 3241/3207/2660 3240/3204/2658 +f 3071/3208/2600 2954/3209/2634 3178/3210/2600 +f 2959/3211/2661 3179/3212/2602 3180/3213/2662 +f 3180/3213/2662 2923/3214/2663 2959/3211/2661 +f 3072/3215/2547 2695/3216/2547 3070/3217/2547 +f 2799/3218/2547 2877/3219/2547 2880/3220/2547 +f 2904/3221/2498 2902/3222/2498 2840/3223/2498 +f 2960/2878/2488 2962/3224/2488 3124/2879/2488 +f 2698/2892/2498 2697/3225/2498 2958/3226/2498 +f 2697/3225/2498 2924/3227/2498 2958/3226/2498 +f 2952/3228/2498 2800/3229/2498 3294/2891/2498 +f 2800/3229/2498 2698/2892/2498 3294/2891/2498 +f 2698/2892/2498 2958/3226/2498 2956/2890/2498 +f 3125/2893/2499 2970/3230/2499 2966/2894/2499 +f 3316/2896/2500 3318/3231/2664 3038/2897/2501 +f 2974/2899/2488 2976/3232/2488 3130/2900/2488 +f 2980/2902/2503 2975/3233/2503 2979/2903/2503 +f 2982/2905/2504 2984/3234/2504 3136/2906/2504 +f 3323/2908/2505 3249/3235/2505 3251/2909/2505 +f 2988/2911/2506 2990/3236/2506 3142/2912/2506 +f 2991/2914/2507 3143/3237/2507 3200/2915/2507 +f 3319/2917/2508 3396/3238/2665 3039/2918/2509 +f 2998/2920/2511 3000/3239/2511 3151/2921/2511 +f 3279/2923/2512 3006/3240/2512 2989/2924/2512 +f 3334/2926/2513 3377/3241/2666 3008/2927/2514 +f 3001/2929/2516 3155/3242/2516 3202/2930/2516 +f 3099/2932/2512 3392/3243/2512 3012/2933/2512 +f 3205/2935/2506 3100/3244/2506 3015/2936/2506 +f 3331/2938/2517 2981/3245/2517 3267/2939/2517 +f 3398/2941/2507 3400/3246/2507 3019/2942/2507 +f 3391/2944/2518 2757/3247/2518 3023/2945/2518 +f 3165/2947/2519 3333/3248/2667 3011/2948/2520 +f 3025/2950/2488 3027/3249/2488 3092/2951/2488 +f 3169/2953/2522 3335/3250/2522 3361/2954/2522 +f 3035/2956/2523 3031/3251/2523 3033/2957/2523 +f 3336/2959/2524 3338/3252/2524 3340/2960/2524 +f 3404/2962/2525 3406/3253/2525 3041/2963/2525 +f 3218/2965/2488 3220/3254/2488 3288/2966/2488 +f 3156/2969/2526 3048/3255/2526 3242/2970/2526 +f 3049/2972/2527 3399/3256/2527 3022/2973/2527 +f 3222/2975/2528 3224/3257/2528 3289/2976/2528 +f 3408/2978/2512 3330/3258/2512 3372/2979/2512 +f 3270/2981/2529 3290/3259/2529 3225/2982/2529 +f 3228/2984/2530 3223/3260/2530 3227/2985/2530 +f 3397/2987/2504 3026/3261/2504 3030/2988/2504 +f 3243/2990/2531 3047/3262/2531 2983/2991/2531 +f 3232/2993/2507 3206/3263/2507 3161/2994/2507 +f 3410/2996/2532 3405/3264/2532 3044/2997/2532 +f 3060/2999/2533 2961/3265/2533 2965/3000/2533 +f 3401/3002/2506 3409/3266/2506 3056/3003/2506 +f 3407/3005/2523 3050/3267/2523 3052/3006/2523 +f 3144/3008/2527 2769/3268/2527 3036/3009/2527 +f 2969/3011/2534 3168/3269/2534 3214/3012/2534 +f 3207/3014/2535 3061/3270/2535 3063/3015/2535 +f 3248/3018/2536 3235/3271/2536 3237/3019/2536 +f 3238/3021/2537 3229/3272/2537 3231/3022/2537 +f 2977/3024/2538 2999/3273/2538 3005/3025/2538 +f 3380/3027/2539 3344/3274/2539 3239/3028/2539 +f 3221/3030/2540 3324/3275/2540 3326/3031/2540 +f 3234/3033/2541 3411/3276/2541 3177/3034/2541 +f 2985/3036/2488 3164/3277/2488 3209/3037/2488 +f 2696/3039/2542 3067/3278/2542 3069/3040/2542 +f 3337/3042/2541 3345/3279/2541 3381/3043/2541 +f 3315/3045/2523 3245/3280/2523 3247/3046/2523 +f 3028/3048/2543 2967/3281/2543 2971/3049/2543 +f 3244/3051/2527 3233/3282/2527 3292/3052/2527 +f 3376/3054/2503 3219/3283/2503 3045/3055/2503 +f 3066/3057/2536 3317/3284/2536 3321/3058/2536 +f 3080/3060/2544 3073/3063/2544 3382/3061/2545 +f 3073/3063/2544 3080/3060/2544 3079/2821/2431 +f 2821/3285/2547 3384/3286/2547 2754/3287/2547 +f 3384/3286/2547 2736/3288/2547 2754/3287/2547 +f 2736/3288/2547 2744/3289/2547 2754/3287/2547 +f 2744/3289/2547 2790/3290/2547 2754/3287/2547 +f 2754/3287/2547 2753/3291/2547 2821/3285/2547 +f 2821/3285/2547 2753/3291/2547 2820/3292/2668 +f 2753/3291/2547 2784/3293/2547 2818/3066/2547 +f 2784/3293/2547 2775/3294/2547 2818/3066/2547 +f 2753/3291/2547 2818/3066/2547 2819/3295/2547 +f 2775/3294/2547 2774/3064/2547 2818/3066/2547 +f 2774/3064/2547 3383/3296/2547 2812/3297/2547 +f 2774/3064/2547 2812/3297/2547 2815/3298/2547 +f 2820/3292/2668 2753/3291/2547 2819/3295/2547 +f 2774/3064/2547 2815/3298/2547 2816/3299/2547 +f 2774/3064/2547 2816/3299/2547 3349/3065/2547 +f 2814/3067/2548 2813/3300/2669 3412/3068/2549 +f 3390/3071/2552 3387/3301/2604 3389/3072/2553 +f 3085/3077/2558 3304/3099/2577 3078/3078/2559 +f 3302/2827/2437 3257/2826/2436 3261/3081/2562 +f 3346/3302/2670 2777/3088/2498 2811/3303/2498 +f 2777/3088/2498 2776/3304/2498 2841/3305/2498 +f 2811/3303/2498 2777/3088/2498 2824/3306/2498 +f 2776/3304/2498 2785/3307/2498 2841/3305/2498 +f 2785/3307/2498 2756/3308/2498 2841/3305/2498 +f 2756/3308/2498 2755/3309/2498 3354/3310/2498 +f 2755/3309/2498 2792/3311/2498 2791/3312/2498 +f 2737/3313/2498 2755/3309/2498 2791/3312/2498 +f 2737/3313/2498 3259/3314/2498 2755/3309/2498 +f 3259/3314/2498 3354/3310/2498 2755/3309/2498 +f 3354/3310/2498 3305/3315/2498 2756/3308/2498 +f 2824/3306/2498 2777/3088/2498 2823/3316/2498 +f 2823/3316/2498 2777/3088/2498 2839/3087/2498 +f 2841/3305/2498 2756/3308/2498 3305/3315/2498 +f 2841/3305/2498 2836/3089/2498 2777/3088/2498 +f 3254/3090/2568 2847/3317/2568 2846/3091/2569 +f 3386/3093/2571 3303/3082/2563 3261/3081/2562 +f 3255/3074/2555 3082/3076/2557 3081/3069/2550 +f 2846/3091/2569 2825/3318/2573 3385/3095/2573 +f 3390/3071/2552 3086/3073/2554 3087/3084/2565 +f 3187/3096/2574 3355/3319/2572 3357/3097/2575 +f 3188/3101/2579 3187/3096/2574 3093/3098/2576 +f 3306/3103/2580 3189/3320/2671 3095/3104/2581 +f 3096/2840/2450 3263/2839/2449 3306/3103/2580 +f 3312/3106/2583 3311/2855/2465 3359/2854/2464 +f 3312/3106/2583 3271/3107/2584 3272/3113/2590 +f 3272/3113/2590 3115/3321/2592 3117/3115/2592 +f 3119/3116/2593 3122/3122/2599 3194/3117/2594 +f 3393/3121/2598 3194/3117/2594 3122/3122/2599 +f 3364/3124/2601 3394/3322/2672 3363/3125/2602 +f 3395/3126/2603 3358/3323/2604 3356/3127/2604 +f 2867/3324/2547 2869/3325/2547 3208/3326/2547 +f 3208/3326/2547 2746/3327/2547 2865/3328/2547 +f 2746/3327/2547 2745/3329/2547 2865/3328/2547 +f 2865/3328/2547 2745/3329/2547 2749/3330/2547 +f 2749/3330/2547 2795/3130/2547 2861/3129/2547 +f 2863/3331/2547 2749/3330/2547 2861/3129/2547 +f 2795/3130/2547 2809/3332/2547 2700/3333/2547 +f 2699/3334/2547 3032/3335/2547 3307/3128/2547 +f 2795/3130/2547 2700/3333/2547 2699/3334/2547 +f 2749/3330/2547 2863/3331/2547 2865/3328/2547 +f 2865/3328/2547 2867/3324/2547 3208/3326/2547 +f 2795/3130/2547 2699/3334/2547 3307/3128/2547 +f 2888/3131/2605 2885/3336/2572 3182/3132/2606 +f 2750/3136/2498 2748/3337/2498 2864/3338/2498 +f 2748/3337/2498 2747/3339/2498 2864/3338/2498 +f 2864/3338/2498 2747/3339/2498 2758/3340/2498 +f 2758/3340/2498 2870/3341/2498 2868/3342/2498 +f 2758/3340/2498 2868/3342/2498 2866/3343/2498 +f 2796/3344/2498 2750/3136/2498 2860/3135/2498 +f 2864/3338/2498 2758/3340/2498 2866/3343/2498 +f 2701/3345/2498 2810/3346/2498 2796/3344/2498 +f 2858/3347/2498 2771/3348/2498 2770/3349/2498 +f 2770/3349/2498 2701/3345/2498 2796/3344/2498 +f 2858/3347/2498 2770/3349/2498 2796/3344/2498 +f 2860/3135/2498 2858/3347/2498 2796/3344/2498 +f 2750/3136/2498 2864/3338/2498 2862/3134/2498 +f 2890/3137/2608 2888/3131/2605 3367/3133/2607 +f 3166/3138/2609 3167/3140/2611 3064/3139/2610 +f 3167/3140/2611 3301/2864/2474 3065/3141/2612 +f 3128/3142/2613 3195/3145/2615 3113/3143/2614 +f 3195/3145/2615 3132/3150/2618 3322/3146/2616 +f 3140/3147/2617 3138/3350/2617 3276/3148/2617 +f 3002/3154/2622 3003/3159/2627 3154/3155/2623 +f 3003/3159/2627 3370/3351/2673 3054/3160/2628 +f 3371/3161/2629 3281/3164/2632 3055/3162/2630 +f 3281/3164/2632 3282/3167/2634 3204/3165/2633 +f 3017/3166/2600 3204/3165/2633 3282/3167/2634 +f 3018/3169/2635 3016/3352/2672 3158/3170/2602 +f 3159/3171/2603 3181/3353/2604 3196/3172/2636 +f 2797/3354/2547 2801/3355/2547 2892/3356/2547 +f 2801/3355/2547 2721/3173/2547 2973/3175/2547 +f 2797/3354/2547 2892/3356/2547 2894/3357/2547 +f 2721/3173/2547 2720/3358/2547 2972/3174/2547 +f 2720/3358/2547 3197/3359/2547 2972/3174/2547 +f 2892/3356/2547 2801/3355/2547 2973/3175/2547 +f 3286/3176/2637 2923/3360/2663 3162/3177/2638 +f 2802/3361/2498 2798/3362/2498 2891/3363/2498 +f 2798/3362/2498 2893/3364/2498 2891/3363/2498 +f 2723/3365/2498 2722/3181/2498 2887/3180/2498 +f 2722/3181/2498 2802/3361/2498 2889/3179/2498 +f 2887/3180/2498 2886/3366/2498 2723/3365/2498 +f 2802/3361/2498 2891/3363/2498 2889/3179/2498 +f 3403/3182/2640 3286/3176/2637 3163/3178/2639 +f 3352/3184/2641 3283/3187/2644 3211/3185/2642 +f 3284/2876/2486 3212/2875/2485 3211/3185/2642 +f 3145/3188/2645 3147/2881/2489 3328/2883/2491 +f 3341/2882/2490 3147/2881/2489 3298/3191/2648 +f 3350/3192/2649 3298/3191/2648 3299/3193/2650 +f 3148/3195/2651 3173/3367/2651 3174/3196/2652 +f 3174/3196/2652 3175/3201/2657 3059/3200/2656 +f 3175/3201/2657 3378/3368/2674 3342/3202/2628 +f 3379/3203/2629 3293/3206/2632 3240/3204/2658 +f 3293/3206/2632 2954/3209/2634 3241/3207/2660 +f 3071/3208/2600 3241/3207/2660 2954/3209/2634 +f 2959/3211/2661 2957/3369/2672 3179/3212/2602 +f 3180/3213/2662 3162/3370/2638 2923/3214/2663 +f 2963/3371/2547 2695/3216/2547 3072/3215/2547 +f 2695/3216/2547 2799/3218/2547 2955/3372/2547 +f 2963/3371/2547 3072/3215/2547 3285/3373/2547 +f 2799/3218/2547 2953/3374/2547 2955/3372/2547 +f 2955/3372/2547 3070/3217/2547 2695/3216/2547 +f 2922/3375/2547 3197/3359/2547 2720/3358/2547 +f 2720/3358/2547 2779/3376/2547 2918/3377/2547 +f 2779/3376/2547 2778/3378/2547 2739/3379/2547 +f 2738/3380/2547 2779/3376/2547 2739/3379/2547 +f 2779/3376/2547 2738/3380/2547 2912/3381/2547 +f 2918/3377/2547 2779/3376/2547 2916/3382/2547 +f 2920/3383/2547 2922/3375/2547 2720/3358/2547 +f 2918/3377/2547 2920/3383/2547 2720/3358/2547 +f 2738/3380/2547 2759/3384/2547 2907/3385/2547 +f 2916/3382/2547 2779/3376/2547 2914/3386/2547 +f 2914/3386/2547 2779/3376/2547 2912/3381/2547 +f 2759/3384/2547 2717/3387/2547 2905/3388/2547 +f 2912/3381/2547 2738/3380/2547 2909/3389/2547 +f 2909/3389/2547 2738/3380/2547 2907/3385/2547 +f 2907/3385/2547 2759/3384/2547 2905/3388/2547 +f 2903/3390/2547 2905/3388/2547 2717/3387/2547 +f 2782/3391/2547 2742/3392/2547 2732/3393/2547 +f 2742/3392/2547 2733/3394/2547 2732/3393/2547 +f 2732/3393/2547 2711/3395/2547 2782/3391/2547 +f 2711/3395/2547 2710/3396/2547 2714/3397/2547 +f 2714/3397/2547 2751/3398/2547 2711/3395/2547 +f 2751/3398/2547 2787/3399/2547 2711/3395/2547 +f 2716/3400/2547 2782/3391/2547 2787/3399/2547 +f 2782/3391/2547 2711/3395/2547 2787/3399/2547 +f 2717/3387/2547 2716/3400/2547 2786/3401/2547 +f 2716/3400/2547 2787/3399/2547 2786/3401/2547 +f 2803/3402/2547 2805/3403/2547 2766/3404/2547 +f 2805/3403/2547 2772/3405/2547 2766/3404/2547 +f 2766/3404/2547 2765/3406/2547 2702/3407/2547 +f 2765/3406/2547 2703/3408/2547 2702/3407/2547 +f 2766/3404/2547 2702/3407/2547 2803/3402/2547 +f 2803/3402/2547 2702/3407/2547 2762/3409/2547 +f 2793/3410/2547 2803/3402/2547 2762/3409/2547 +f 2793/3410/2547 2762/3409/2547 2761/3411/2547 +f 2707/3412/2547 2706/3413/2547 2807/3414/2547 +f 2807/3414/2547 2963/3371/2547 2928/3415/2547 +f 2963/3371/2547 3285/3373/2547 2926/3416/2547 +f 2963/3371/2547 2926/3416/2547 2928/3415/2547 +f 2707/3412/2547 2807/3414/2547 2934/3417/2547 +f 2807/3414/2547 2928/3415/2547 2930/3418/2547 +f 2730/3419/2547 2707/3412/2547 2937/3420/2547 +f 2807/3414/2547 2930/3418/2547 2932/3421/2547 +f 2807/3414/2547 2932/3421/2547 2934/3417/2547 +f 2707/3412/2547 2934/3417/2547 2936/3422/2547 +f 2761/3411/2547 2730/3419/2547 2941/3423/2547 +f 2707/3412/2547 2936/3422/2547 2937/3420/2547 +f 2730/3419/2547 2937/3420/2547 2939/3424/2547 +f 2730/3419/2547 2939/3424/2547 2941/3423/2547 +f 2797/3354/2547 2894/3357/2547 2895/3425/2547 +f 3383/3296/2547 2774/3064/2547 2828/3426/2547 +f 2774/3064/2547 2797/3354/2547 2828/3426/2547 +f 2797/3354/2547 2895/3425/2547 2898/3427/2547 +f 2797/3354/2547 2898/3427/2547 2900/3428/2547 +f 2830/3429/2547 2828/3426/2547 2797/3354/2547 +f 2831/3430/2547 2830/3429/2547 2797/3354/2547 +f 2797/3354/2547 2900/3428/2547 2901/3431/2547 +f 2831/3430/2547 2797/3354/2547 2901/3431/2547 +f 2842/3432/2547 2831/3430/2547 2901/3431/2547 +f 2842/3432/2547 2901/3431/2547 2903/3390/2547 +f 2833/3433/2547 2842/3432/2547 2903/3390/2547 +f 2833/3433/2547 2903/3390/2547 2717/3387/2547 +f 2834/3434/2547 2833/3433/2547 2717/3387/2547 +f 2834/3434/2547 2717/3387/2547 2725/3435/2547 +f 2717/3387/2547 2786/3401/2547 2725/3435/2547 +f 2845/3436/2547 2834/3434/2547 2724/3437/2547 +f 2834/3434/2547 2725/3435/2547 2724/3437/2547 +f 2786/3401/2547 2793/3410/2547 2725/3435/2547 +f 2838/3438/2547 2845/3436/2547 2724/3437/2547 +f 2793/3410/2547 2761/3411/2547 2728/3439/2547 +f 2725/3435/2547 2793/3410/2547 2728/3439/2547 +f 2736/3288/2547 3384/3286/2547 2826/3440/2547 +f 2826/3440/2547 2838/3438/2547 2736/3288/2547 +f 2761/3411/2547 2941/3423/2547 2728/3439/2547 +f 2724/3437/2547 2736/3288/2547 2838/3438/2547 +f 2941/3423/2547 2943/3441/2547 2728/3439/2547 +f 2943/3441/2547 2945/3442/2547 2851/3443/2547 +f 2728/3439/2547 2943/3441/2547 2851/3443/2547 +f 2945/3442/2547 2947/3444/2547 2884/3445/2547 +f 3307/3128/2547 3032/3335/2547 2857/3446/2547 +f 3032/3335/2547 2728/3439/2547 2851/3443/2547 +f 2857/3446/2547 3032/3335/2547 2855/3447/2547 +f 2947/3444/2547 2949/3448/2547 2882/3449/2547 +f 2855/3447/2547 3032/3335/2547 2853/3450/2547 +f 2853/3450/2547 3032/3335/2547 2851/3443/2547 +f 2851/3443/2547 2945/3442/2547 2848/3451/2547 +f 2951/3452/2547 2953/3374/2547 2799/3218/2547 +f 2848/3451/2547 2945/3442/2547 2884/3445/2547 +f 2949/3448/2547 2951/3452/2547 2799/3218/2547 +f 2799/3218/2547 3208/3326/2547 2877/3219/2547 +f 3208/3326/2547 2869/3325/2547 2872/3453/2547 +f 3208/3326/2547 2872/3453/2547 2874/3454/2547 +f 2884/3445/2547 2947/3444/2547 2882/3449/2547 +f 2882/3449/2547 2949/3448/2547 2880/3220/2547 +f 3208/3326/2547 2874/3454/2547 2875/3455/2547 +f 3208/3326/2547 2875/3455/2547 2877/3219/2547 +f 2880/3220/2547 2949/3448/2547 2799/3218/2547 +f 2924/3227/2498 2697/3225/2498 2925/3456/2498 +f 2697/3225/2498 2808/3457/2498 2927/3458/2498 +f 2925/3456/2498 2697/3225/2498 2927/3458/2498 +f 2808/3457/2498 2709/3459/2498 2708/3460/2498 +f 2808/3457/2498 2708/3460/2498 2933/3461/2498 +f 2927/3458/2498 2808/3457/2498 2929/3462/2498 +f 2708/3460/2498 2731/3463/2498 2938/3464/2498 +f 2929/3462/2498 2808/3457/2498 2931/3465/2498 +f 2931/3465/2498 2808/3457/2498 2933/3461/2498 +f 2933/3461/2498 2708/3460/2498 2935/3466/2498 +f 2731/3463/2498 2764/3467/2498 2940/3468/2675 +f 2935/3466/2498 2708/3460/2498 2938/3464/2498 +f 2938/3464/2498 2731/3463/2498 2940/3468/2675 +f 2942/3469/2498 2940/3468/2675 2764/3467/2498 +f 2800/3229/2498 2952/3228/2498 2950/3470/2498 +f 2871/3471/2498 2870/3341/2498 2758/3340/2498 +f 2873/3472/2498 2871/3471/2498 2758/3340/2498 +f 2758/3340/2498 2800/3229/2498 2876/3473/2498 +f 2800/3229/2498 2950/3470/2498 2948/3474/2498 +f 2800/3229/2498 2948/3474/2498 2946/3475/2498 +f 2876/3473/2498 2800/3229/2498 2878/3476/2498 +f 2876/3473/2498 2873/3472/2498 2758/3340/2498 +f 2800/3229/2498 2946/3475/2498 2878/3476/2498 +f 2878/3476/2498 2946/3475/2498 2879/3477/2498 +f 2946/3475/2498 2944/3478/2498 2879/3477/2498 +f 2879/3477/2498 2944/3478/2498 2881/3479/2498 +f 2944/3478/2498 2942/3469/2498 2881/3479/2498 +f 2881/3479/2498 2942/3469/2498 2883/3480/2498 +f 2942/3469/2498 2764/3467/2498 2883/3480/2498 +f 2883/3480/2498 2764/3467/2498 2849/3481/2498 +f 2764/3467/2498 2763/3482/2498 2849/3481/2498 +f 2705/3483/2498 2704/3484/2498 2768/3485/2498 +f 2849/3481/2498 2763/3482/2498 2850/3486/2498 +f 2763/3482/2498 2705/3483/2498 2804/3487/2498 +f 2850/3486/2498 2763/3482/2498 2794/3488/2498 +f 2705/3483/2498 2768/3485/2498 2767/3489/2498 +f 2767/3489/2498 2773/3490/2498 2806/3491/2498 +f 2767/3489/2498 2806/3491/2498 2804/3487/2498 +f 2763/3482/2498 2804/3487/2498 2794/3488/2498 +f 2705/3483/2498 2767/3489/2498 2804/3487/2498 +f 2852/3492/2498 2850/3486/2498 2771/3348/2498 +f 2854/3493/2498 2852/3492/2498 2771/3348/2498 +f 2850/3486/2498 2794/3488/2498 2729/3494/2498 +f 2850/3486/2498 2729/3494/2498 2771/3348/2498 +f 2771/3348/2498 2858/3347/2498 2856/3495/2498 +f 2856/3495/2498 2854/3493/2498 2771/3348/2498 +f 2794/3488/2498 2789/3496/2498 2729/3494/2498 +f 2788/3497/2498 2752/3498/2498 2712/3499/2498 +f 2752/3498/2498 2715/3500/2498 2713/3501/2498 +f 2729/3494/2498 2789/3496/2498 2726/3502/2498 +f 2789/3496/2498 2788/3497/2498 2719/3503/2498 +f 2726/3502/2498 2789/3496/2498 2718/3504/2498 +f 2718/3504/2498 2789/3496/2498 2719/3503/2498 +f 2752/3498/2498 2713/3501/2498 2712/3499/2498 +f 2712/3499/2498 2735/3505/2498 2783/3506/2498 +f 2788/3497/2498 2712/3499/2498 2783/3506/2498 +f 2735/3505/2498 2734/3507/2498 2743/3508/2498 +f 2735/3505/2498 2743/3508/2498 2783/3506/2498 +f 2727/3509/2498 2726/3502/2498 2835/3510/2498 +f 3259/3314/2498 2737/3313/2498 2837/3511/2498 +f 2737/3313/2498 2727/3509/2498 2837/3511/2498 +f 2726/3502/2498 2718/3504/2498 2832/3512/2498 +f 2788/3497/2498 2783/3506/2498 2719/3503/2498 +f 2844/3513/2498 2837/3511/2498 2727/3509/2498 +f 2835/3510/2498 2844/3513/2498 2727/3509/2498 +f 2832/3512/2498 2835/3510/2498 2726/3502/2498 +f 2832/3512/2498 2718/3504/2498 2760/3514/2498 +f 2843/3515/2498 2832/3512/2498 2760/3514/2498 +f 2741/3516/2498 2740/3517/2498 2780/3518/2498 +f 2740/3517/2498 2781/3519/2498 2780/3518/2498 +f 2843/3515/2498 2760/3514/2498 2904/3221/2498 +f 2760/3514/2498 2741/3516/2498 2908/3520/2498 +f 2910/3521/2498 2741/3516/2498 2911/3522/2498 +f 2840/3223/2498 2843/3515/2498 2904/3221/2498 +f 2741/3516/2498 2910/3521/2498 2908/3520/2498 +f 2780/3518/2498 2723/3365/2498 2917/3523/2498 +f 2723/3365/2498 2886/3366/2498 2921/3524/2498 +f 2723/3365/2498 2921/3524/2498 2919/3525/2498 +f 2741/3516/2498 2780/3518/2498 2911/3522/2498 +f 2829/3526/2498 2840/3223/2498 2902/3222/2498 +f 2723/3365/2498 2919/3525/2498 2917/3523/2498 +f 2827/3527/2498 2829/3526/2498 2798/3362/2498 +f 2760/3514/2498 2908/3520/2498 2906/3528/2498 +f 2777/3088/2498 3346/3302/2670 2827/3527/2498 +f 2893/3364/2498 2798/3362/2498 2896/3529/2498 +f 2798/3362/2498 2777/3088/2498 2827/3527/2498 +f 2896/3529/2498 2798/3362/2498 2897/3530/2498 +f 2897/3530/2498 2798/3362/2498 2899/3531/2498 +f 2760/3514/2498 2906/3528/2498 2904/3221/2498 +f 2780/3518/2498 2917/3523/2498 2915/3532/2498 +f 2780/3518/2498 2915/3532/2498 2913/3533/2498 +f 2899/3531/2498 2798/3362/2498 2829/3526/2498 +f 2780/3518/2498 2913/3533/2498 2911/3522/2498 +f 2902/3222/2498 2899/3531/2498 2829/3526/2498 +o Cube_Cube.001 +v -0.686449 -135.955338 -6.241868 +v -0.686449 142.884888 -6.241868 +v -0.686449 -135.955338 -2.061676 +v -0.686449 142.884888 -2.061676 +v 133.885986 -141.511993 -6.241868 +v 133.885986 142.884888 -2.061676 +v 133.885986 142.884888 -6.241868 +v 133.885986 -141.511993 -2.061676 +v -133.325394 142.262604 -6.241868 +v -133.325394 -142.134277 -2.061676 +v -133.325394 -142.134277 -6.241868 +v -133.325394 142.262604 -2.061676 +v 119.878510 142.884888 -6.241868 +v 119.878510 -135.955338 -2.061676 +v 119.878510 -135.955338 -6.241868 +v 119.878510 142.884888 -2.061676 +v -120.695747 -135.955338 -6.241868 +v -120.695747 142.884888 -2.061676 +v -120.695747 142.884888 -6.241868 +v -120.695747 -135.955338 -2.061676 +v -175.333893 -141.554871 -2.061676 +v -178.441818 -139.025375 -2.061676 +v -178.441818 -139.025375 -6.241868 +v -175.333893 -141.554871 -6.241868 +v -178.441818 140.535446 -2.061676 +v -175.505325 142.844376 -2.061676 +v -175.505325 142.844376 -6.241868 +v -178.441818 140.535446 -6.241868 +v 174.136795 142.884888 -2.061676 +v 177.068924 140.539276 -2.061676 +v 177.068924 140.539276 -6.241868 +v 174.136795 142.884888 -6.241868 +v 177.068924 -139.106430 -2.061676 +v 174.061844 -141.511993 -2.061676 +v 174.061844 -141.511993 -6.241868 +v 177.068924 -139.106430 -6.241868 +v -120.695747 -135.955338 -6.241868 +v -0.686449 -135.955338 -6.241868 +v 119.878510 142.884888 -6.241868 +v -0.686449 142.884888 -6.241868 +v 119.878510 -135.955338 -2.061676 +v -0.686449 -135.955338 -2.061676 +v -120.695747 142.884888 -2.061676 +v -0.686449 142.884888 -2.061676 +v 119.878510 -135.955338 -6.241868 +v 133.885986 -141.511993 -6.241868 +v 119.878510 142.884888 -2.061676 +v 133.885986 142.884888 -2.061676 +v -120.695747 142.884888 -6.241868 +v -133.325394 142.262604 -6.241868 +v -120.695747 -135.955338 -2.061676 +v -133.325394 -142.134277 -2.061676 +v 133.885986 142.884888 -6.241868 +v 133.885986 -141.511993 -2.061676 +v -133.325394 -142.134277 -6.241868 +v -133.325394 142.262604 -2.061676 +v -178.441818 -139.025375 -2.061676 +v -175.333893 -141.554871 -2.061676 +v -175.333893 -141.554871 -6.241868 +v -178.441818 -139.025375 -6.241868 +v -178.441818 140.535446 -6.241868 +v -178.441818 140.535446 -6.241868 +v -175.505325 142.844376 -6.241868 +v -175.505325 142.844376 -6.241868 +v -175.505325 142.844376 -2.061676 +v -175.505325 142.844376 -2.061676 +v -178.441818 140.535446 -2.061676 +v -178.441818 140.535446 -2.061676 +v 177.068924 140.539276 -2.061676 +v 174.136795 142.884888 -2.061676 +v 174.136795 142.884888 -6.241868 +v 177.068924 140.539276 -6.241868 +v 177.068924 -139.106430 -6.241868 +v 174.061844 -141.511993 -6.241868 +v 174.061844 -141.511993 -2.061676 +v 177.068924 -139.106430 -2.061676 +vt 0.812500 0.165334 +vt 0.812500 0.165334 +vt 0.870756 0.165334 +vt 0.870756 0.165334 +vt 0.377186 0.165334 +vt 0.377186 0.165334 +vt 0.622935 0.165334 +vt 0.622935 0.165334 +vt 0.375000 0.165334 +vt 0.375000 0.165334 +vt 0.625000 0.165334 +vt 0.625000 0.165334 +vt 0.622938 0.165334 +vt 0.377115 0.165334 +vt 0.375000 0.165334 +vt 0.375000 0.165334 +vt 0.377186 0.165334 +vt 0.622935 0.165334 +vt 0.625000 0.165334 +vt 0.625000 0.165334 +vt 0.718750 0.165334 +vt 0.718750 0.165334 +vt 0.750000 0.165334 +vt 0.750000 0.165334 +vt 0.218750 0.165334 +vt 0.218750 0.165334 +vt 0.250000 0.165334 +vt 0.250000 0.165334 +vt 0.375000 0.165334 +vt 0.375000 0.165334 +vt 0.625000 0.165334 +vt 0.625000 0.165334 +vt 0.375000 0.165334 +vt 0.375000 0.165334 +vt 0.625000 0.165334 +vt 0.625000 0.165334 +vt 0.375000 0.165334 +vt 0.375000 0.165334 +vt 0.377115 0.165334 +vt 0.622938 0.165334 +vt 0.625000 0.165334 +vt 0.625000 0.165334 +vt 0.781250 0.165334 +vt 0.781250 0.165334 +vt 0.375000 0.165334 +vt 0.625000 0.165334 +vt 0.375000 0.165334 +vt 0.375000 0.165334 +vt 0.625000 0.165334 +vt 0.625000 0.165334 +vt 0.622935 0.165334 +vt 0.377186 0.165334 +vt 0.281250 0.165334 +vt 0.281250 0.165334 +vt 0.312500 0.165334 +vt 0.312500 0.165334 +vt 0.375000 0.165334 +vt 0.625000 0.165334 +vt 0.187500 0.165334 +vt 0.187500 0.165334 +vt 0.687500 0.165334 +vt 0.687500 0.165334 +vt 0.370695 0.165334 +vt 0.370695 0.165334 +vt 0.629068 0.165334 +vt 0.622935 0.165334 +vt 0.622935 0.165334 +vt 0.629068 0.165334 +vt 0.629068 0.165334 +vt 0.629068 0.165334 +vt 0.625000 0.165334 +vt 0.622938 0.165334 +vt 0.622938 0.165334 +vt 0.625000 0.165334 +vt 0.377115 0.165334 +vt 0.377115 0.165334 +vt 0.129352 0.165334 +vt 0.125000 0.165334 +vt 0.125000 0.165334 +vt 0.129352 0.165334 +vn 0.0000 1.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 -1.0000 0.0000 +vn 0.0000 0.0000 1.0000 +vn 0.4395 -0.8983 0.0000 +vn -0.3687 -0.9295 0.0000 +vn -0.0492 0.9988 0.0000 +vn -0.6312 -0.7756 0.0000 +vn -0.0138 -0.9999 0.0000 +vn -0.6181 0.7861 0.0000 +vn 0.0138 0.9999 0.0000 +vn 0.6247 0.7809 0.0000 +vn 1.0000 0.0000 0.0000 +vn 0.6247 -0.7809 0.0000 +usemtl material +s off +f 3419/3534/2676 3460/3535/2676 3441/3536/2676 3483/3537/2676 +f 3435/3538/2677 3434/3539/2677 3480/3540/2677 3474/3541/2677 +f 3486/3542/2678 3458/3543/2678 3465/3544/2678 3444/3545/2678 3484/3546/2678 3485/3547/2678 +f 3423/3548/2678 3436/3549/2678 3472/3550/2678 3473/3551/2678 3475/3552/2678 3462/3553/2678 +f 3431/3554/2676 3455/3555/2676 3456/3556/2676 3414/3557/2676 +f 3427/3558/2679 3453/3559/2679 3454/3560/2679 3413/3561/2679 +f 3432/3562/2680 3415/3563/2680 3416/3564/2680 3430/3565/2680 +f 3457/3566/2678 3450/3567/2678 3452/3568/2678 3451/3569/2678 +f 3420/3570/2680 3446/3571/2680 3488/3572/2680 3481/3573/2680 3482/3574/2680 3418/3575/2680 +f 3425/3576/2676 3459/3577/2676 3460/3535/2676 3419/3534/2676 +f 3426/3578/2680 3420/3570/2680 3418/3575/2680 3428/3579/2680 +f 3470/3580/2680 3422/3581/2680 3468/3582/2680 3478/3583/2680 3479/3584/2680 3469/3585/2680 +f 3429/3586/2681 3463/3587/2681 3464/3588/2681 3467/3589/2681 +f 3449/3590/2678 3423/3548/2678 3462/3553/2678 3461/3591/2678 +f 3415/3563/2680 3426/3578/2680 3428/3579/2680 3416/3564/2680 +f 3414/3557/2676 3456/3556/2676 3459/3577/2676 3425/3576/2676 +f 3458/3543/2678 3457/3566/2678 3451/3569/2678 3465/3544/2678 +f 3417/3592/2682 3466/3593/2682 3453/3559/2682 3427/3558/2682 +f 3450/3567/2678 3449/3590/2678 3461/3591/2678 3452/3568/2678 +f 3413/3561/2679 3454/3560/2679 3463/3587/2679 3429/3586/2679 +f 3422/3581/2680 3432/3562/2680 3430/3565/2680 3468/3582/2680 +f 3421/3594/2683 3424/3595/2683 3455/3555/2683 3431/3554/2683 +f 3433/3596/2684 3434/3539/2684 3435/3538/2684 3471/3597/2684 +f 3467/3589/2685 3464/3588/2685 3433/3596/2685 3471/3597/2685 +f 3476/3598/2686 3440/3599/2686 3437/3600/2686 3477/3601/2686 +f 3439/3602/2687 3438/3603/2687 3424/3595/2687 3421/3594/2687 +f 3441/3604/2688 3442/3605/2688 3443/3606/2688 3483/3607/2688 +f 3445/3608/2689 3448/3609/2689 3443/3606/2689 3442/3605/2689 +f 3447/3610/2690 3448/3611/2690 3445/3612/2690 3487/3613/2690 +f 3447/3610/2679 3487/3613/2679 3466/3593/2679 3417/3592/2679 diff --git a/resources/meshes/vivedino_trex.stl b/resources/meshes/vivedino_trex.stl new file mode 100644 index 0000000000..d3948fb741 Binary files /dev/null and b/resources/meshes/vivedino_trex.stl differ diff --git a/resources/meshes/voron_trident_250mm_bed_model.stl b/resources/meshes/voron_trident_250mm_bed_model.stl new file mode 100644 index 0000000000..11795a984f Binary files /dev/null and b/resources/meshes/voron_trident_250mm_bed_model.stl differ diff --git a/resources/meshes/voron_trident_300mm_bed_model.stl b/resources/meshes/voron_trident_300mm_bed_model.stl new file mode 100644 index 0000000000..216825c940 Binary files /dev/null and b/resources/meshes/voron_trident_300mm_bed_model.stl differ diff --git a/resources/meshes/voron_trident_350mm_bed_model.stl b/resources/meshes/voron_trident_350mm_bed_model.stl new file mode 100644 index 0000000000..92025ba370 Binary files /dev/null and b/resources/meshes/voron_trident_350mm_bed_model.stl differ diff --git a/resources/meshes/vzbot_235_bed.stl b/resources/meshes/vzbot_235_bed.stl new file mode 100644 index 0000000000..e1c67491d0 Binary files /dev/null and b/resources/meshes/vzbot_235_bed.stl differ diff --git a/resources/meshes/vzbot_330_bed.stl b/resources/meshes/vzbot_330_bed.stl new file mode 100644 index 0000000000..bc92a35751 Binary files /dev/null and b/resources/meshes/vzbot_330_bed.stl differ diff --git a/resources/qml/Account/GeneralOperations.qml b/resources/qml/Account/GeneralOperations.qml index da62124f3f..3ebb197142 100644 --- a/resources/qml/Account/GeneralOperations.qml +++ b/resources/qml/Account/GeneralOperations.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 @@ -16,7 +16,7 @@ Column { id: title anchors.horizontalCenter: parent.horizontalCenter - text: catalog.i18nc("@label", "Sign in to the Ultimaker platform") + text: catalog.i18nc("@label", "Sign in to the UltiMaker platform") font: UM.Theme.getFont("large_bold") } @@ -36,7 +36,7 @@ Column id: generalInformationPoints anchors.horizontalCenter: parent.horizontalCenter horizontalAlignment: Text.AlignLeft - text: catalog.i18nc("@text", "- 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") + text: catalog.i18nc("@text", "- 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") lineHeight: 1.4 wrapMode: Text.NoWrap } @@ -55,7 +55,7 @@ Column { anchors.horizontalCenter: parent.horizontalCenter height: UM.Theme.getSize("account_button").height - text: catalog.i18nc("@button", "Create a free Ultimaker account") + text: catalog.i18nc("@button", "Create a free UltiMaker account") onClicked: Qt.openUrlExternally("https://ultimaker.com/app/ultimaker-cura-account-sign-up?utm_source=cura&utm_medium=software&utm_campaign=menu-signup") } } diff --git a/resources/qml/Account/UserOperations.qml b/resources/qml/Account/UserOperations.qml index 9e5d082738..52d9cfc344 100644 --- a/resources/qml/Account/UserOperations.qml +++ b/resources/qml/Account/UserOperations.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2020 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 @@ -104,7 +104,7 @@ Column width: parent.width height: UM.Theme.getSize("account_button").height - text: catalog.i18nc("@button", "Ultimaker Account") + text: catalog.i18nc("@button", "UltiMaker Account") onClicked: Qt.openUrlExternally(CuraApplication.ultimakerCloudAccountRootUrl + "?utm_source=cura&utm_medium=software&utm_campaign=menu-visit-account") fixedWidthMode: false } diff --git a/resources/qml/Actions.qml b/resources/qml/Actions.qml index d50fb8e825..6cd75b51ac 100644 --- a/resources/qml/Actions.qml +++ b/resources/qml/Actions.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. pragma Singleton @@ -187,6 +187,8 @@ Item //- https://doc.qt.io/qt-5/qmenubar.html#qmenubar-as-a-global-menu-bar text: (Qt.platform.os == "osx") ? "Configure Cura..." : catalog.i18nc("@action:inmenu", "Configure Cura...") icon.name: "configure" + // on MacOS it us customary to assign the ctrl+, hotkey to open a general settings menu + shortcut: (Qt.platform.os == "osx") ? "Ctrl+," : "" } Action @@ -213,7 +215,7 @@ Item Action { id: marketplaceMaterialsAction - text: catalog.i18nc("@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate.", "Add more materials from Marketplace") + text: catalog.i18nc("@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate.", "Add more materials from Marketplace") } Action diff --git a/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml b/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml index ede42fcd5f..f13ca28447 100644 --- a/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml +++ b/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml @@ -33,63 +33,63 @@ Popup thumbnail: UM.Theme.getIcon("PrinterTriple", "high"), description: catalog.i18nc("@tooltip:button", "Monitor printers in Ultimaker Digital Factory."), link: "https://digitalfactory.ultimaker.com/app/printers?utm_source=cura&utm_medium=software&utm_campaign=switcher-digital-factory-printers", - DFAccessRequired: true + permissionsRequired: ["digital-factory.printer.read"] }, { displayName: "Digital Library", //Not translated, since it's a brand name. thumbnail: UM.Theme.getIcon("Library", "high"), description: catalog.i18nc("@tooltip:button", "Create print projects in Digital Library."), link: "https://digitalfactory.ultimaker.com/app/library?utm_source=cura&utm_medium=software&utm_campaign=switcher-library", - DFAccessRequired: true + permissionsRequired: ["digital-factory.project.read.shared"] }, { displayName: catalog.i18nc("@label:button", "Print jobs"), thumbnail: UM.Theme.getIcon("FoodBeverages"), description: catalog.i18nc("@tooltip:button", "Monitor print jobs and reprint from your print history."), link: "https://digitalfactory.ultimaker.com/app/print-jobs?utm_source=cura&utm_medium=software&utm_campaign=switcher-digital-factory-printjobs", - DFAccessRequired: true + permissionsRequired: ["digital-factory.print-job.read"] }, { - displayName: "Ultimaker Marketplace", //Not translated, since it's a brand name. + displayName: "UltiMaker Marketplace", //Not translated, since it's a brand name. thumbnail: UM.Theme.getIcon("Shop", "high"), - description: catalog.i18nc("@tooltip:button", "Extend Ultimaker Cura with plugins and material profiles."), + description: catalog.i18nc("@tooltip:button", "Extend UltiMaker Cura with plugins and material profiles."), link: "https://marketplace.ultimaker.com/?utm_source=cura&utm_medium=software&utm_campaign=switcher-marketplace-materials", - DFAccessRequired: false + permissionsRequired: [] }, { - displayName: "Ultimaker Academy", //Not translated, since it's a brand name. + displayName: "UltiMaker Academy", //Not translated, since it's a brand name. thumbnail: UM.Theme.getIcon("Knowledge"), - description: catalog.i18nc("@tooltip:button", "Become a 3D printing expert with Ultimaker e-learning."), + description: catalog.i18nc("@tooltip:button", "Become a 3D printing expert with UltiMaker e-learning."), link: "https://academy.ultimaker.com/?utm_source=cura&utm_medium=software&utm_campaign=switcher-academy", - DFAccessRequired: false + permissionsRequired: [] }, { - displayName: catalog.i18nc("@label:button", "Ultimaker support"), + displayName: catalog.i18nc("@label:button", "UltiMaker support"), thumbnail: UM.Theme.getIcon("Help", "high"), - description: catalog.i18nc("@tooltip:button", "Learn how to get started with Ultimaker Cura."), + description: catalog.i18nc("@tooltip:button", "Learn how to get started with UltiMaker Cura."), link: "https://support.ultimaker.com/?utm_source=cura&utm_medium=software&utm_campaign=switcher-support", - DFAccessRequired: false + permissionsRequired: [] }, { displayName: catalog.i18nc("@label:button", "Ask a question"), thumbnail: UM.Theme.getIcon("Speak", "high"), - description: catalog.i18nc("@tooltip:button", "Consult the Ultimaker Community."), + description: catalog.i18nc("@tooltip:button", "Consult the UltiMaker Community."), link: "https://community.ultimaker.com/?utm_source=cura&utm_medium=software&utm_campaign=switcher-community", - DFAccessRequired: false + permissionsRequired: [] }, { displayName: catalog.i18nc("@label:button", "Report a bug"), thumbnail: UM.Theme.getIcon("Bug", "high"), description: catalog.i18nc("@tooltip:button", "Let developers know that something is going wrong."), link: "https://github.com/Ultimaker/Cura/issues/new/choose", - DFAccessRequired: false + permissionsRequired: [] }, { displayName: "Ultimaker.com", //Not translated, since it's a URL. thumbnail: UM.Theme.getIcon("Browser"), - description: catalog.i18nc("@tooltip:button", "Visit the Ultimaker website."), + description: catalog.i18nc("@tooltip:button", "Visit the UltiMaker website."), link: "https://ultimaker.com/?utm_source=cura&utm_medium=software&utm_campaign=switcher-umwebsite", - DFAccessRequired: false + permissionsRequired: [] } ] @@ -99,7 +99,24 @@ Popup iconSource: modelData.thumbnail tooltipText: modelData.description isExternalLink: true - visible: modelData.DFAccessRequired ? Cura.API.account.isLoggedIn & Cura.API.account.additionalRights["df_access"] : true + visible: + { + try + { + modelData.permissionsRequired.forEach(function(permission) + { + if(!Cura.API.account.isLoggedIn || !Cura.API.account.permissions.includes(permission)) //This required permission is not in the account. + { + throw "No permission to use this application."; //Can't return from within this lambda. Throw instead. + } + }); + } + catch(e) + { + return false; + } + return true; + } onClicked: Qt.openUrlExternally(modelData.link) } diff --git a/resources/qml/ColorDialog.qml b/resources/qml/ColorDialog.qml index e5216a3404..99d46ed327 100644 --- a/resources/qml/ColorDialog.qml +++ b/resources/qml/ColorDialog.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.15 @@ -6,8 +6,8 @@ import QtQuick.Controls 2.2 import QtQuick.Window 2.1 import QtQuick.Layouts 1.1 -import UM 1.5 as UM -import Cura 1.1 as Cura +import UM 1.7 as UM +import Cura 1.7 as Cura /* @@ -28,8 +28,11 @@ UM.Dialog // however with the current implementation of the dialog this is not possible, so instead we calculate // the size of the dialog ourselves. // Ugly workaround for windows having overlapping elements due to incorrect dialog width - minimumWidth: content.width + (Qt.platform.os == "windows" ? 4 * margin : 2 * margin) - minimumHeight: content.height + footer.height + (Qt.platform.os == "windows" ? 5 * margin : 3 * margin) + minimumWidth: content.width + (Qt.platform.os === "windows" ? 4 * margin : 2 * margin) + minimumHeight: { + const footerHeight = Math.max(okButton.height, cancelButton.height); + return content.height + footerHeight + (Qt.platform.os === "windows" ? 5 * margin : 3 * margin); + } property alias color: colorInput.text property var swatchColors: [ @@ -119,7 +122,7 @@ UM.Dialog text = `#${text}`; } } - validator: RegularExpressionValidator { regularExpression: /^#([a-fA-F0-9]{0,6})$/ } + validator: UM.HexColorValidator {} } Rectangle @@ -136,10 +139,12 @@ UM.Dialog rightButtons: [ Cura.TertiaryButton { + id: cancelButton text: catalog.i18nc("@action:button", "Cancel") onClicked: base.close() }, Cura.PrimaryButton { + id: okButton text: catalog.i18nc("@action:button", "OK") onClicked: base.accept() } diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml index d22e5a1526..cb3202bc00 100644 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -17,6 +17,12 @@ UM.MainWindow { id: base + Item + { + id: mainWindow + anchors.fill: parent + } + // Cura application window title title: { @@ -311,8 +317,6 @@ UM.MainWindow property int mouseY: base.mouseY property bool tallerThanParent: height > parent.height - z: 1 // Ensure toolbar and toolpanels are drawn on top - anchors { verticalCenter: tallerThanParent ? undefined : parent.verticalCenter @@ -498,10 +502,7 @@ UM.MainWindow target: Cura.Actions.addProfile function onTriggered() { - preferences.show(); - preferences.setPage(4); - // Create a new profile after a very short delay so the preference page has time to initiate - createProfileTimer.start(); + createNewQualityDialog.visible = true; } } @@ -549,15 +550,6 @@ UM.MainWindow } } - Timer - { - id: createProfileTimer - repeat: false - interval: 1 - - onTriggered: preferences.getCurrentItem().createProfile() - } - // BlurSettings is a way to force the focus away from any of the setting items. // We need to do this in order to keep the bindings intact. Connections @@ -636,7 +628,7 @@ UM.MainWindow //: File open dialog title title: catalog.i18nc("@title:window","Open file(s)") modality: Qt.WindowModal - fileMode: FileDialog.OpenFiles + fileMode: FileDialog.FileMode.ExistingFile nameFilters: UM.MeshFileHandler.supportedReadFileTypes; currentFolder: CuraApplication.getDefaultPath("dialog_load_path") onAccepted: @@ -818,11 +810,16 @@ UM.MainWindow Connections { target: CuraApplication - function onShowDiscardOrKeepProfileChanges() + function onShowCompareAndSaveProfileChanges(profileState) { discardOrKeepProfileChangesDialogLoader.sourceComponent = discardOrKeepProfileChangesDialogComponent + discardOrKeepProfileChangesDialogLoader.item.buttonState = profileState discardOrKeepProfileChangesDialogLoader.item.show() } + function onShowDiscardOrKeepProfileChanges() + { + onShowCompareAndSaveProfileChanges(DiscardOrKeepProfileChangesDialog.ButtonsType.DiscardOrKeep) + } } Cura.WizardDialog @@ -887,6 +884,49 @@ UM.MainWindow } } + Cura.RenameDialog + { + id: createNewQualityDialog + title: catalog.i18nc("@title:window", "Save Custom Profile") + objectPlaceholder: catalog.i18nc("@textfield:placeholder", "New Custom Profile") + explanation: catalog.i18nc("@info", "Custom profile name:") + extraInfo: + [ + UM.ColorImage + { + width: UM.Theme.getSize("message_type_icon").width + height: UM.Theme.getSize("message_type_icon").height + source: UM.Theme.getIcon("Information") + color: UM.Theme.getColor("text") + }, + Column + { + UM.Label + { + text: catalog.i18nc + ( + "@label %i will be replaced with a profile name", + "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." + ).arg(Cura.MachineManager.activeQualityOrQualityChangesName) + wrapMode: Text.WordWrap + width: parent.parent.width - 2 * UM.Theme.getSize("message_type_icon").width + } + Cura.TertiaryButton + { + text: catalog.i18nc("@action:button", "Learn more about Cura print profiles") + iconSource: UM.Theme.getIcon("LinkExternal") + isIconOnRightSide: true + leftPadding: 0 + rightPadding: 0 + onClicked: Qt.openUrlExternally("https://support.ultimaker.com/s/article/1667337576882") + } + } + ] + okButtonText: catalog.i18nc("@button", "Save new profile") + onAccepted: CuraApplication.getQualityManagementModel().createQualityChanges(newName, true); + } + /** * Function to check whether a QML object has a certain type. * Taken from StackOverflow: https://stackoverflow.com/a/28384228 and diff --git a/resources/qml/Dialogs/AboutDialog.qml b/resources/qml/Dialogs/AboutDialog.qml index 614d9ddf60..4ccf58d0b4 100644 --- a/resources/qml/Dialogs/AboutDialog.qml +++ b/resources/qml/Dialogs/AboutDialog.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 @@ -19,6 +19,8 @@ UM.Dialog width: minimumWidth height: minimumHeight + backgroundColor: UM.Theme.getColor("main_background") + Rectangle { id: header @@ -82,7 +84,7 @@ UM.Dialog width: parent.width //: About dialog application author note - text: catalog.i18nc("@info:credit","Cura is developed by Ultimaker B.V. in cooperation with the community.\nCura proudly uses the following open source projects:") + text: catalog.i18nc("@info:credit","Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:") font: UM.Theme.getFont("system") wrapMode: Text.WordWrap anchors.top: description.bottom @@ -132,7 +134,7 @@ UM.Dialog Component.onCompleted: { //Do NOT add dependencies of our dependencies here, nor CI-dependencies! - //Ultimaker's own projects and forks. + //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" }); diff --git a/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml b/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml index 65d62a5fab..cac23d34c1 100644 --- a/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml +++ b/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml @@ -17,6 +17,7 @@ UM.Dialog title: catalog.i18nc("@title:window", "Open project file") width: UM.Theme.getSize("small_popup_dialog").width height: UM.Theme.getSize("small_popup_dialog").height + backgroundColor: UM.Theme.getColor("main_background") maximumHeight: height maximumWidth: width diff --git a/resources/qml/Dialogs/ChoosePrinterDialog.qml b/resources/qml/Dialogs/ChoosePrinterDialog.qml new file mode 100644 index 0000000000..fad5e1c61b --- /dev/null +++ b/resources/qml/Dialogs/ChoosePrinterDialog.qml @@ -0,0 +1,114 @@ +// Copyright (c) 2022 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.2 +import QtQuick.Controls 2.9 +import QtQuick.Layouts 2.10 + +import UM 1.5 as UM +import Cura 1.0 as Cura + +UM.Dialog +{ + property var manager + property var compatible_machine_model: Cura.CompatibleMachineModel {} + id: base + + title: catalog.i18nc("@title:window", "Select Printer") + + backgroundColor: UM.Theme.getColor("background_2") + + width: minimumWidth + minimumWidth: 550 * screenScaleFactor + height: minimumHeight + minimumHeight: 550 * screenScaleFactor + + modality: Qt.ApplicationModal + + ScrollView + { + // Workaround for Windowing bugs in Qt: + width: 550 * screenScaleFactor - 3 * UM.Theme.getSize("default_margin").width + height: 550 * screenScaleFactor - 3 * UM.Theme.getSize("default_margin").height + + UM.I18nCatalog + { + id: catalog + name: "cura" + } + + anchors.fill: parent + Column + { + anchors.fill: parent + spacing: UM.Theme.getSize("default_margin").height + + Item + { + width: parent.width + height: childrenRect.height + + UM.Label + { + anchors.left: parent.left + text: catalog.i18nc("@title:label", "Compatible Printers") + font: UM.Theme.getFont("large") + anchors.horizontalCenter: parent.horizontalCenter + } + TabButton + { + id: refreshButton + anchors.right: parent.right + width: UM.Theme.getSize("button_icon").width + height: UM.Theme.getSize("button_icon").height + hoverEnabled: true + + onClicked: + { + manager.refresh() + base.compatible_machine_model.forceUpdate() + } + + background: Rectangle + { + width: UM.Theme.getSize("button_icon").width + height: UM.Theme.getSize("button_icon").height + color: refreshButton.hovered ? UM.Theme.getColor("toolbar_button_hover") : UM.Theme.getColor("toolbar_background") + radius: Math.round(refreshButton.width * 0.5) + } + + UM.ColorImage + { + width: UM.Theme.getSize("section_icon").width + height: UM.Theme.getSize("section_icon").height + color: UM.Theme.getColor("text_link") + source: UM.Theme.getIcon("ArrowDoubleCircleRight") + anchors.horizontalCenter: parent.horizontalCenter + anchors.verticalCenter: parent.verticalCenter + } + } + } + + Repeater + { + id: contents + + model: base.compatible_machine_model + + delegate: Cura.PrintSelectorCard + { + name: model.name + unique_id: model.unique_id + extruders: model.extruders + manager: base.manager + } + } + + UM.Label + { + visible: contents.count < 1 + text: catalog.i18nc("@description", "No compatible printers, that are currently online, were found.") + } + } + } +} diff --git a/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml b/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml index 0579cb3c30..c2ec1ed308 100644 --- a/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml +++ b/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml @@ -12,8 +12,13 @@ UM.Dialog id: base title: catalog.i18nc("@title:window", "Discard or Keep changes") - onAccepted: CuraApplication.discardOrKeepProfileChangesClosed("discard") - onRejected: CuraApplication.discardOrKeepProfileChangesClosed("keep") + enum ButtonsType { DiscardOrKeep, SaveFromBuiltIn, SaveFromCustom} + property int buttonState: DiscardOrKeepProfileChangesDialog.ButtonsType.DiscardOrKeep + + onAccepted: buttonState == DiscardOrKeepProfileChangesDialog.ButtonsType.DiscardOrKeep ? + CuraApplication.discardOrKeepProfileChangesClosed("discard") : Cura.Actions.addProfile.trigger() + onRejected: buttonState == DiscardOrKeepProfileChangesDialog.ButtonsType.DiscardOrKeep ? + CuraApplication.discardOrKeepProfileChangesClosed("keep") : Cura.Actions.updateProfile.trigger() minimumWidth: UM.Theme.getSize("popup_dialog").width minimumHeight: UM.Theme.getSize("popup_dialog").height @@ -24,6 +29,16 @@ UM.Dialog property var changesModel: Cura.UserChangesModel { id: userChangesModel } + // Hack to make sure that when the data of our model changes the tablemodel is also updated + // If we directly set the rows (So without the clear being called) it doesn't seem to + // get updated correctly. + property var modelRows: userChangesModel.items + onModelRowsChanged: + { + tableModel.clear() + tableModel.rows = modelRows + } + onVisibilityChanged: { if(visible) @@ -46,7 +61,7 @@ UM.Dialog UM.Label { id: infoText - text: catalog.i18nc("@text:window, %1 is a profile name", "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'.").arg(Cura.MachineManager.activeQualityDisplayNameMap["main"]) + text: catalog.i18nc("@text:window, %1 is a profile name", "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'.").arg(Cura.MachineManager.activeQualityDisplayNameMainStringParts.join(" - ")) anchors.left: parent.left anchors.right: parent.right wrapMode: Text.WordWrap @@ -73,13 +88,14 @@ UM.Dialog columnHeaders: [ catalog.i18nc("@title:column", "Profile settings"), - Cura.MachineManager.activeQualityDisplayNameMap["main"], + Cura.MachineManager.activeQualityDisplayNameMainStringParts.join(" - "), catalog.i18nc("@title:column", "Current changes") ] model: UM.TableModel { + id: tableModel headers: ["label", "original_value", "user_value"] - rows: userChangesModel.items + rows: modelRows } sectionRole: "category" } @@ -87,9 +103,12 @@ UM.Dialog buttonSpacing: UM.Theme.getSize("thin_margin").width - leftButtons: [ + leftButtons: + [ Cura.ComboBox { + visible: buttonState === DiscardOrKeepProfileChangesDialog.ButtonsType.DiscardOrKeep + implicitHeight: UM.Theme.getSize("combobox").height implicitWidth: UM.Theme.getSize("combobox").width @@ -109,20 +128,22 @@ UM.Dialog onActivated: { - var code = model.get(index).code; + const code = model.get(index).code; UM.Preferences.setValue("cura/choice_on_profile_override", code); - if (code == "always_keep") { - keepButton.enabled = true; - discardButton.enabled = false; - } - else if (code == "always_discard") { - keepButton.enabled = false; - discardButton.enabled = true; - } - else { - keepButton.enabled = true; - discardButton.enabled = true; + switch (code) { + case "always_keep": + keepButton.enabled = true; + discardButton.enabled = false; + break; + case "always_discard": + keepButton.enabled = false; + discardButton.enabled = true; + break; + default: + keepButton.enabled = true; + discardButton.enabled = true; + break; } } } @@ -135,12 +156,28 @@ UM.Dialog id: discardButton text: catalog.i18nc("@action:button", "Discard changes") onClicked: base.accept() + visible: buttonState == DiscardOrKeepProfileChangesDialog.ButtonsType.DiscardOrKeep }, Cura.SecondaryButton { id: keepButton text: catalog.i18nc("@action:button", "Keep changes") onClicked: base.reject() + visible: buttonState == DiscardOrKeepProfileChangesDialog.ButtonsType.DiscardOrKeep + }, + Cura.SecondaryButton + { + id: overwriteButton + text: catalog.i18nc("@action:button", "Save as new custom profile") + visible: buttonState != DiscardOrKeepProfileChangesDialog.ButtonsType.DiscardOrKeep + onClicked: base.accept() + }, + Cura.PrimaryButton + { + id: saveButton + text: catalog.i18nc("@action:button", "Save changes") + visible: buttonState == DiscardOrKeepProfileChangesDialog.ButtonsType.SaveFromCustom + onClicked: base.reject() } ] } diff --git a/resources/qml/Preferences/RenameDialog.qml b/resources/qml/Dialogs/RenameDialog.qml similarity index 62% rename from resources/qml/Preferences/RenameDialog.qml rename to resources/qml/Dialogs/RenameDialog.qml index 6e4c628114..52cfe3a26e 100644 --- a/resources/qml/Preferences/RenameDialog.qml +++ b/resources/qml/Dialogs/RenameDialog.qml @@ -15,17 +15,23 @@ UM.Dialog buttonSpacing: UM.Theme.getSize("default_margin").width property string object: "" + property string objectPlaceholder: "" property alias newName: nameField.text property bool validName: true property string validationError property string dialogTitle: catalog.i18nc("@title:window", "Rename") property string explanation: catalog.i18nc("@info", "Please provide a new name.") + property string okButtonText: catalog.i18nc("@action:button", "OK") + + // Extra Information for the user about the current rename can go here, can be left alone if not needed. + // For example; An icon and a text-field and a tertiary button providing a link. + property list extraInfo title: dialogTitle - + backgroundColor: UM.Theme.getColor("main_background") minimumWidth: UM.Theme.getSize("small_popup_dialog").width - minimumHeight: UM.Theme.getSize("small_popup_dialog").height + minimumHeight: UM.Theme.getSize("small_popup_dialog").height + extraInfoHolder.height width: minimumWidth height: minimumHeight @@ -55,11 +61,33 @@ UM.Dialog id: nameField width: parent.width text: base.object + placeholderText: base.objectPlaceholder + placeholderTextColor: UM.Theme.getColor("text_field_text_disabled") maximumLength: 40 selectByMouse: true onTextChanged: base.textChanged(text) } + // spacer + Item + { + height: UM.Theme.getSize("wide_margin").height + width: height + } + + Row + { + id: extraInfoHolder + anchors + { + left: parent.left + right: parent.right + margins: UM.Theme.getSize("default_margin").height + } + spacing: UM.Theme.getSize("default_margin").height + children: extraInfo + } + UM.Label { visible: !base.validName @@ -67,20 +95,23 @@ UM.Dialog } } - rightButtons: [ - Cura.SecondaryButton + leftButtons: + [ + Cura.TertiaryButton { id: cancelButton text: catalog.i18nc("@action:button","Cancel") onClicked: base.reject() - }, + } + ] + rightButtons: + [ Cura.PrimaryButton { id: okButton - text: catalog.i18nc("@action:button", "OK") + text: base.okButtonText onClicked: base.accept() enabled: base.validName } ] } - diff --git a/resources/qml/Dialogs/WorkspaceSummaryDialog.qml b/resources/qml/Dialogs/WorkspaceSummaryDialog.qml index ee189ab73c..a174959807 100644 --- a/resources/qml/Dialogs/WorkspaceSummaryDialog.qml +++ b/resources/qml/Dialogs/WorkspaceSummaryDialog.qml @@ -18,6 +18,8 @@ UM.Dialog width: minimumWidth height: minimumHeight + backgroundColor: UM.Theme.getColor("main_background") + property bool dontShowAgain: true function storeDontShowAgain() diff --git a/resources/qml/ExtruderButton.qml b/resources/qml/ExtruderButton.qml index 204e9a5469..5d1767b56c 100644 --- a/resources/qml/ExtruderButton.qml +++ b/resources/qml/ExtruderButton.qml @@ -12,23 +12,14 @@ UM.ToolbarButton id: base property var extruder - - text: catalog.i18ncp("@label %1 is filled in with the name of an extruder", "Print Selected Model with %1", "Print Selected Models with %1", UM.Selection.selectionCount).arg(extruder.name) - - checked: Cura.ExtruderManager.selectedObjectExtruders.indexOf(extruder.id) != -1 - enabled: UM.Selection.hasSelection && extruder.stack.isEnabled + property var extruderNumberFont: UM.Theme.getFont("small_emphasis") toolItem: ExtruderIcon { materialColor: extruder.color extruderEnabled: extruder.stack.isEnabled iconVariant: "default" + font: extruderNumberFont property int index: extruder.index } - - onClicked: - { - forceActiveFocus() //First grab focus, so all the text fields are updated - CuraActions.setExtruderForSelection(extruder.id) - } } diff --git a/resources/qml/ExtruderIcon.qml b/resources/qml/ExtruderIcon.qml index fb3269ca78..3231d924ee 100644 --- a/resources/qml/ExtruderIcon.qml +++ b/resources/qml/ExtruderIcon.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2021 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.11 @@ -8,15 +8,16 @@ Item { id: extruderIconItem - implicitWidth: UM.Theme.getSize("extruder_icon").width - implicitHeight: UM.Theme.getSize("extruder_icon").height - property bool checked: true property color materialColor property alias textColor: extruderNumberText.color property bool extruderEnabled: true - property var iconSize + property int iconSize: UM.Theme.getSize("extruder_icon").width property string iconVariant: "medium" + property alias font: extruderNumberText.font + + implicitWidth: iconSize + implicitHeight: iconSize Item { @@ -27,18 +28,17 @@ Item UM.ColorImage { anchors.fill: parent - width: mainIcon.width - height: mainIcon.height + width: iconSize + height: iconSize source: UM.Theme.getIcon("ExtruderColor", iconVariant) color: materialColor } UM.ColorImage { - id: mainIcon anchors.fill: parent - width: UM.Theme.getSize("extruder_icon").width - height: UM.Theme.getSize("extruder_icon").height + width: iconSize + height: iconSize source: UM.Theme.getIcon("Extruder", iconVariant) color: extruderNumberText.color @@ -47,12 +47,14 @@ Item UM.Label { id: extruderNumberText - anchors.centerIn: parent - text: index + 1 - font: UM.Theme.getFont("small_emphasis") width: contentWidth height: contentHeight + anchors.verticalCenter: parent.verticalCenter + anchors.left: parent.left + anchors.right: parent.right horizontalAlignment: Text.AlignHCenter + text: (index + 1).toString() + font: UM.Theme.getFont("small_emphasis") } } } diff --git a/resources/qml/IconWithText.qml b/resources/qml/IconWithText.qml index 24f211ae17..df72286943 100644 --- a/resources/qml/IconWithText.qml +++ b/resources/qml/IconWithText.qml @@ -24,6 +24,8 @@ Item property alias wrapMode: label.wrapMode property real spacing: UM.Theme.getSize("narrow_margin").width + property string tooltipText: "" + // These properties can be used in combination with layouts. readonly property real contentWidth: icon.width + margin + label.contentWidth readonly property real minContentWidth: Math.round(icon.width + margin + 0.5 * label.contentWidth) @@ -66,4 +68,13 @@ Item margins: margin } } + + MouseArea + { + enabled: tooltipText != "" + anchors.fill: parent + hoverEnabled: true + onEntered: base.showTooltip(parent, Qt.point(-UM.Theme.getSize("thick_margin").width, 0), tooltipText) + onExited: base.hideTooltip() + } } \ No newline at end of file diff --git a/resources/qml/MachineSettings/ComboBoxWithOptions.qml b/resources/qml/MachineSettings/ComboBoxWithOptions.qml index 4ff7cf7092..5046859d14 100644 --- a/resources/qml/MachineSettings/ComboBoxWithOptions.qml +++ b/resources/qml/MachineSettings/ComboBoxWithOptions.qml @@ -65,22 +65,22 @@ UM.TooltipArea { id: defaultOptionsModel - function updateModel() - { - clear() - // Options come in as a string-representation of an OrderedDict - if(propertyProvider.properties.options) - { - var options = propertyProvider.properties.options.match(/^OrderedDict\(\[\((.*)\)\]\)$/); - if(options) - { - options = options[1].split("), ("); - for(var i = 0; i < options.length; i++) - { - var option = options[i].substring(1, options[i].length - 1).split("', '"); - append({ text: option[1], value: option[0] }); - } - } + function updateModel() { + clear(); + + if (!propertyProvider.properties.options) { + return; + } + + if (typeof(propertyProvider.properties["options"]) === "string") { + return; + } + + const keys = propertyProvider.properties["options"].keys(); + for (let index = 0; index < propertyProvider.properties["options"].keys().length; index ++) { + const key = propertyProvider.properties["options"].keys()[index]; + const value = propertyProvider.properties["options"][key]; + defaultOptionsModel.append({ text: value, value: key }); } } @@ -105,36 +105,27 @@ UM.TooltipArea model: defaultOptionsModel textRole: "text" - currentIndex: - { - var currentValue = propertyProvider.properties.value - var index = 0 - for (var i = 0; i < model.count; i++) - { - if (model.get(i).value == currentValue) - { - index = i - break + currentIndex: { + const currentValue = propertyProvider.properties.value + for (let i = 0; i < model.count; i ++) { + if (model.get(i).value === currentValue) { + return i; } } - return index + return -1; } - onActivated: - { - var newValue = model.get(index).value - if (propertyProvider.properties.value != newValue) - { - if (setValueFunction !== null) - { - setValueFunction(newValue) + onActivated: function (index) { + const newValue = model.get(index).value; + + if (propertyProvider.properties.value !== newValue && newValue !== undefined) { + if (setValueFunction !== null) { + setValueFunction(newValue); + } else { + propertyProvider.setPropertyValue("value", newValue); } - else - { - propertyProvider.setPropertyValue("value", newValue) - } - forceUpdateOnChangeFunction() - afterOnEditingFinishedFunction() + forceUpdateOnChangeFunction(); + afterOnEditingFinishedFunction(); } } } diff --git a/resources/qml/MachineSettings/NumericTextFieldWithUnit.qml b/resources/qml/MachineSettings/NumericTextFieldWithUnit.qml index 2484adb912..64beeb9834 100644 --- a/resources/qml/MachineSettings/NumericTextFieldWithUnit.qml +++ b/resources/qml/MachineSettings/NumericTextFieldWithUnit.qml @@ -59,7 +59,7 @@ UM.TooltipArea UM.SettingPropertyProvider { id: propertyProvider - watchedProperties: [ "value", "description" ] + watchedProperties: [ "value", "description", "validationState" ] } UM.Label diff --git a/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml b/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml index e8917517dd..bcbb6d7679 100644 --- a/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml +++ b/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml @@ -221,10 +221,7 @@ Button } } - Component.onCompleted: - { - configurationItem.checked = Cura.MachineManager.matchesConfiguration(configuration) - } + Component.onCompleted: configurationItem.checked = Cura.MachineManager.matchesConfiguration(configuration) onClicked: { diff --git a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml b/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml index c24c031e83..d1bf323e7d 100644 --- a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml +++ b/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml @@ -37,54 +37,10 @@ Item } } - // Printer type selector. - Item - { - id: printerTypeSelectorRow - visible: - { - return Cura.MachineManager.printerOutputDevices.length >= 1 //If connected... - && Cura.MachineManager.printerOutputDevices[0].connectedPrintersTypeCount != null //...and we have configuration information... - && Cura.MachineManager.printerOutputDevices[0].connectedPrintersTypeCount.length > 1; //...and there is more than one type of printer in the configuration list. - } - height: visible ? childrenRect.height : 0 - - anchors - { - left: parent.left - right: parent.right - top: header.bottom - topMargin: visible ? UM.Theme.getSize("default_margin").height : 0 - } - - UM.Label - { - text: catalog.i18nc("@label", "Printer") - width: Math.round(parent.width * 0.3) - UM.Theme.getSize("default_margin").width - height: contentHeight - anchors.verticalCenter: printerTypeSelector.verticalCenter - anchors.left: parent.left - } - - Button - { - id: printerTypeSelector - text: Cura.MachineManager.activeMachine !== null ? Cura.MachineManager.activeMachine.definition.name: "" - - height: UM.Theme.getSize("print_setup_big_item").height - width: Math.round(parent.width * 0.7) + UM.Theme.getSize("default_margin").width - anchors.right: parent.right - onClicked: menu.open() - //style: UM.Theme.styles.print_setup_header_button - - Cura.PrinterTypeMenu { id: menu} - } - } - UM.TabRow { id: tabBar - anchors.top: printerTypeSelectorRow.bottom + anchors.top: header.bottom anchors.topMargin: UM.Theme.getSize("default_margin").height visible: extrudersModel.count > 1 diff --git a/resources/qml/Menus/MaterialBrandMenu.qml b/resources/qml/Menus/MaterialBrandMenu.qml index e256e75904..deb1021cf5 100644 --- a/resources/qml/Menus/MaterialBrandMenu.qml +++ b/resources/qml/Menus/MaterialBrandMenu.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 @@ -14,6 +14,7 @@ Instead we'll use a pop-up which doesn't seem to have that problem. */ Cura.MenuItem { id: materialBrandMenu + height: UM.Theme.getSize("menu").height + UM.Theme.getSize("narrow_margin").height overrideShowArrow: true property var materialTypesModel @@ -36,6 +37,7 @@ Cura.MenuItem UM.Label { + id: brandLabelText text: replaceText(materialBrandMenu.text) Layout.fillWidth: true Layout.fillHeight:true @@ -84,33 +86,15 @@ Cura.MenuItem onTriggered: menuPopup.close() } - Popup + MaterialBrandSubMenu { id: menuPopup - width: materialTypesList.width + padding * 2 - height: materialTypesList.height + padding * 2 - property var flipped: false - - x: parent.width - UM.Theme.getSize("default_lining").width - y: { - // Checks if popup is more than halfway down the screen AND further than 400 down (this avoids popup going off the top of screen) - // If it is then the popup will push up instead of down - // This fixes the popups appearing bellow the bottom of the screen. - - if (materialBrandMenu.parent.height / 2 < parent.y && parent.y > 400) { - flipped = true - return -UM.Theme.getSize("default_lining").width - height + UM.Theme.getSize("menu").height - } - flipped = false - return -UM.Theme.getSize("default_lining").width - } - - padding: background.border.width // Nasty hack to ensure that we can keep track if the popup contains the mouse. // Since we also want a hover for the sub items (and these events are sent async) // We have to keep a count of itemHovered (instead of just a bool) property int itemHovered: 0 + MouseArea { id: submenuArea @@ -120,16 +104,11 @@ Cura.MenuItem onEntered: hideTimer.restartTimer() } - background: Rectangle - { - color: UM.Theme.getColor("main_background") - border.color: UM.Theme.getColor("lining") - border.width: UM.Theme.getSize("default_lining").width - } - Column { id: materialTypesList + width: UM.Theme.getSize("menu").width + height: childrenRect.height spacing: 0 property var brandMaterials: materialTypesModel.material_types @@ -146,9 +125,7 @@ Cura.MenuItem height: UM.Theme.getSize("menu").height width: UM.Theme.getSize("menu").width - color: materialTypeButton.containsMouse ? UM.Theme.getColor("background_2") : UM.Theme.getColor("background_1") - - property var isFlipped: menuPopup.flipped + color: materialTypeButton.containsMouse ? UM.Theme.getColor("background_2") : "transparent" RowLayout { @@ -185,7 +162,7 @@ Cura.MenuItem source: UM.Theme.getIcon("ChevronSingleRight") } - Item + Item { // Right side margin width: UM.Theme.getSize("default_margin").width @@ -236,34 +213,19 @@ Cura.MenuItem onTriggered: colorPopup.close() } - Popup + MaterialBrandSubMenu { id: colorPopup - width: materialColorsList.width + padding * 2 - height: materialColorsList.height + padding * 2 - x: parent.width - y: { - // If flipped the popup should push up rather than down from the parent - if (brandMaterialBase.isFlipped) { - return -height + UM.Theme.getSize("menu").height + UM.Theme.getSize("default_lining").width - } - return -UM.Theme.getSize("default_lining").width - } + implicitX: parent.width property int itemHovered: 0 - padding: background.border.width - - background: Rectangle - { - color: UM.Theme.getColor("main_background") - border.color: UM.Theme.getColor("lining") - border.width: UM.Theme.getSize("default_lining").width - } Column { id: materialColorsList property var brandColors: model.colors + width: UM.Theme.getSize("menu").width + height: childrenRect.height spacing: 0 Repeater @@ -273,12 +235,38 @@ Cura.MenuItem delegate: Rectangle { height: UM.Theme.getSize("menu").height - width: UM.Theme.getSize("menu").width + width: parent.width - color: materialColorButton.containsMouse ? UM.Theme.getColor("background_2") : UM.Theme.getColor("background_1") + color: materialColorButton.containsMouse ? UM.Theme.getColor("background_2") : UM.Theme.getColor("main_background") + + MouseArea + { + id: materialColorButton + anchors.fill: parent + hoverEnabled: true + onClicked: + { + Cura.MachineManager.setMaterial(extruderIndex, model.container_node); + menuPopup.close(); + colorPopup.close(); + materialMenu.close(); + } + onEntered: + { + menuPopup.itemHovered += 1; + colorPopup.itemHovered += 1; + } + onExited: + { + menuPopup.itemHovered -= 1; + colorPopup.itemHovered -= 1; + } + } Item { + height: parent.height + width: parent.width opacity: materialBrandMenu.enabled ? 1 : 0.5 anchors.fill: parent @@ -309,31 +297,6 @@ Cura.MenuItem wrapMode: Text.NoWrap } } - - MouseArea - { - id: materialColorButton - anchors.fill: parent - - hoverEnabled: true - onClicked: - { - Cura.MachineManager.setMaterial(extruderIndex, model.container_node); - menuPopup.close(); - colorPopup.close(); - materialMenu.close(); - } - onEntered: - { - menuPopup.itemHovered += 1; - colorPopup.itemHovered += 1; - } - onExited: - { - menuPopup.itemHovered -= 1; - colorPopup.itemHovered -= 1; - } - } } } } diff --git a/resources/qml/Menus/MaterialBrandSubMenu.qml b/resources/qml/Menus/MaterialBrandSubMenu.qml new file mode 100644 index 0000000000..318afd9c60 --- /dev/null +++ b/resources/qml/Menus/MaterialBrandSubMenu.qml @@ -0,0 +1,124 @@ +// Copyright (c) 2022 UltiMaker +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.7 +import QtQuick.Controls 2.4 +import QtQuick.Layouts 2.7 + +import UM 1.5 as UM +import Cura 1.7 as Cura + +Popup +{ + id: materialBrandSubMenu + + // There is a bug where hovering the bottom half of the last element causes the popup to close. + // Undo this commit if you find a fix. + bottomPadding: -UM.Theme.getSize("thin_margin").height + topPadding: UM.Theme.getSize("thin_margin").height + + implicitWidth: scrollViewContent.width + scrollbar.width + leftPadding + rightPadding + implicitHeight: scrollViewContent.height + bottomPadding + topPadding + (2 * UM.Theme.getSize("thin_margin").height) + + // offset position relative to the parent + property int implicitX: parent.width - UM.Theme.getSize("default_lining").width + property int implicitY: -UM.Theme.getSize("thin_margin").height + + default property alias contents: scrollViewContent.children + + x: implicitX + y: implicitY + + // needed for the `mapToItem` function to work; apparently a Popup is not an Item + Item + { + id: materialBrandSubMenuItem + anchors.fill: parent + } + + onOpened: + { + // we want to make sure here that the popup never goes out side the window so we adjust the x and y position + // based on the width/height of the mainWindow/popup. QML is a bit weird here though, as the globalPosition + // is in absolute coordinates relative to the origin of the mainWindow while setting the x and y coordinates + // of the popup only changes the position relative to the parent. + + // reset position, the remainder of the function asumes this position and size + materialBrandSubMenu.x = implicitX; + materialBrandSubMenu.y = implicitY; + materialBrandSubMenu.width = implicitWidth; + materialBrandSubMenu.height = implicitHeight; + + const globalPosition = materialBrandSubMenuItem.mapToItem(null, 0, 0); + + if (globalPosition.y > mainWindow.height - materialBrandSubMenu.height) + { + if (mainWindow.height > materialBrandSubMenu.height) + { + const targetY = mainWindow.height - materialBrandSubMenu.height; + const deltaY = globalPosition.y - targetY; + materialBrandSubMenu.y = implicitY - deltaY; + } + else + { + // if popup is taller then the the component, limit + // the components height and set the position to + // y = 0 (in absolute coordinates) + materialBrandSubMenu.y = implicitY - globalPosition.y; + materialBrandSubMenu.height = mainWindow.height; + } + } + + // Changing the height causes implicitWidth to change because of the scrollbar appearing/disappearing + // Reassign it here to update the value + materialBrandSubMenu.width = implicitWidth; + + if (globalPosition.x > mainWindow.width - materialBrandSubMenu.width) + { + if (mainWindow.width > materialBrandSubMenu.width) + { + const targetX = mainWindow.width - materialBrandSubMenu.width; + const deltaX = globalPosition.x - targetX; + materialBrandSubMenu.x = implicitX - deltaX; + } + else + { + materialBrandSubMenu.x = implicitX - globalPosition.x; + materialBrandSubMenu.width = mainWindow.width; + } + } + } + + padding: background.border.width + + background: Rectangle + { + color: UM.Theme.getColor("main_background") + border.color: UM.Theme.getColor("lining") + border.width: UM.Theme.getSize("default_lining").width + } + + ScrollView + { + id: scrollView + anchors.fill: parent + contentHeight: scrollViewContent.height + clip: true + + ScrollBar.vertical: UM.ScrollBar + { + id: scrollbar + anchors.right: parent.right + anchors.top: parent.top + anchors.bottom: parent.bottom + } + + Rectangle + { + id: scrollViewContent + width: childrenRect.width + height: childrenRect.height + color: UM.Theme.getColor("main_background") + } + } +} \ No newline at end of file diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index 2934edf508..32bbcd5053 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -73,6 +73,9 @@ UM.PreferencesPage var defaultTheme = UM.Preferences.getValue("general/theme") setDefaultTheme(defaultTheme) + UM.Preferences.resetPreference("general/use_tray_icon") + trayIconCheckbox.checked = boolCheck(UM.Preferences.getValue("cura/use_tray_icon")) + UM.Preferences.resetPreference("cura/single_instance") singleInstanceCheckbox.checked = boolCheck(UM.Preferences.getValue("cura/single_instance")) UM.Preferences.resetPreference("cura/single_instance_clear_before_load") @@ -329,6 +332,23 @@ UM.PreferencesPage } } + UM.TooltipArea + { + width: childrenRect.width; + height: childrenRect.height; + + text: catalog.i18nc("@info:tooltip", "Show an icon and notifications in the system notification area.") + + UM.CheckBox + { + id: trayIconCheckbox + checked: boolCheck(UM.Preferences.getValue("general/use_tray_icon")) + onClicked: UM.Preferences.setValue("general/use_tray_icon", checked) + + text: catalog.i18nc("@option:check", "Add icon to system tray *"); + } + } + UM.Label { id: languageCaption @@ -337,6 +357,7 @@ UM.PreferencesPage text: catalog.i18nc("@label", "*You will need to restart the application for these changes to have effect.") wrapMode: Text.WordWrap font.italic: true + } Item @@ -838,7 +859,7 @@ UM.PreferencesPage { width: childrenRect.width height: visible ? childrenRect.height : 0 - text: catalog.i18nc("@info:tooltip", "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored.") + text: catalog.i18nc("@info:tooltip", "Should anonymous data about your print be sent to UltiMaker? Note, no models, IP addresses or other personally identifiable information is sent or stored.") UM.CheckBox { diff --git a/resources/qml/Preferences/MachinesPage.qml b/resources/qml/Preferences/MachinesPage.qml index 9b6f5bf609..fb98cb59c5 100644 --- a/resources/qml/Preferences/MachinesPage.qml +++ b/resources/qml/Preferences/MachinesPage.qml @@ -17,7 +17,7 @@ UM.ManagementPage title: catalog.i18nc("@title:tab", "Printers") detailsPlaneCaption: base.currentItem && base.currentItem.name ? base.currentItem.name : "" - model: Cura.GlobalStacksModel { } + model: Cura.GlobalStacksModel { filterAbstractMachines: false } sectionRole: "discoverySource" @@ -67,16 +67,21 @@ UM.ManagementPage { width: Math.round(childrenRect.width + 2 * screenScaleFactor) height: childrenRect.height + visible: machineActionRepeater.model[index].visible Cura.SecondaryButton { text: machineActionRepeater.model[index].label onClicked: { var currentItem = machineActionRepeater.model[index] - actionDialog.loader.manager = currentItem - actionDialog.loader.source = currentItem.qmlPath - actionDialog.title = currentItem.label - actionDialog.show() + if (currentItem.shouldOpenAsDialog) { + actionDialog.loader.manager = currentItem + actionDialog.loader.source = currentItem.qmlPath + actionDialog.title = currentItem.label + actionDialog.show() + } else { + currentItem.execute() + } } } } @@ -92,6 +97,14 @@ UM.ManagementPage minimumHeight: UM.Theme.getSize("modal_window_minimum").height maximumWidth: minimumWidth * 3 maximumHeight: minimumHeight * 3 + backgroundColor: UM.Theme.getColor("main_background") + onVisibleChanged: + { + if(!visible) + { + actionDialog.loader.item.focus = true + } + } } UM.ConfirmRemoveDialog diff --git a/resources/qml/Preferences/Materials/MaterialsSlot.qml b/resources/qml/Preferences/Materials/MaterialsSlot.qml index 8292fbe6da..287b4080fc 100644 --- a/resources/qml/Preferences/Materials/MaterialsSlot.qml +++ b/resources/qml/Preferences/Materials/MaterialsSlot.qml @@ -47,7 +47,7 @@ Rectangle radius: width / 2 anchors.verticalCenter: materialSlot.verticalCenter anchors.left: materialSlot.left - anchors.leftMargin: 2 * UM.Theme.getSize("default_margin").width + anchors.leftMargin: UM.Theme.getSize("default_margin").width } UM.Label { @@ -58,7 +58,7 @@ Rectangle wrapMode: Text.NoWrap verticalAlignment: Text.AlignVCenter anchors.left: swatch.right - anchors.right: favoriteButton.left + anchors.right: favoriteButton.visible ? favoriteButton.left : parent.right anchors.leftMargin: UM.Theme.getSize("default_margin").width anchors.rightMargin: UM.Theme.getSize("narrow_margin").width anchors.verticalCenter: materialSlot.verticalCenter @@ -102,7 +102,7 @@ Rectangle ] implicitHeight: parent.height - implicitWidth: height + implicitWidth: favoriteIndicator.width anchors.right: materialSlot.right visible: false diff --git a/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml b/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml index eb8b46dbad..87a8d00ec4 100644 --- a/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml +++ b/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml @@ -8,9 +8,9 @@ import QtQuick.Layouts 1.15 import QtQuick.Window 2.1 import Cura 1.1 as Cura -import UM 1.5 as UM +import UM 1.6 as UM -Window +UM.Window { id: materialsSyncDialog property variant catalog: UM.I18nCatalog { name: "cura" } @@ -88,7 +88,15 @@ Window { if(Cura.API.account.isLoggedIn) { - swipeView.currentIndex += 2; //Skip sign in page. + if(Cura.API.account.permissions.includes("digital-factory.printer.write")) + { + swipeView.currentIndex += 2; //Skip sign in page. Continue to sync via cloud. + } + else + { + //Logged in, but no permissions to start syncing. Direct them to USB. + swipeView.currentIndex = removableDriveSyncPage.SwipeView.index; + } } else { @@ -112,7 +120,15 @@ Window { if(is_logged_in && signinPage.SwipeView.isCurrentItem) { - swipeView.currentIndex += 1; + if(Cura.API.account.permissions.includes("digital-factory.printer.write")) + { + swipeView.currentIndex += 1; + } + else + { + //Logged in, but no permissions to start syncing. Direct them to USB. + swipeView.currentIndex = removableDriveSyncPage.SwipeView.index; + } } } } @@ -698,7 +714,7 @@ Window { if(!materialsSyncDialog.hasExportedUsb) { - exportUsbDialog.currentFolder = syncModel.getPreferredExportAllPath(); + exportUsbDialog.currentFolder = `${syncModel.getPreferredExportAllPath()}/materials.umm`; exportUsbDialog.open(); } else diff --git a/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml b/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml index 554b663a9b..41ab40eb31 100644 --- a/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml +++ b/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml @@ -52,8 +52,13 @@ Item id: intentSelection onClicked: menu.opened ? menu.close() : menu.open() - anchors.right: parent.right - width: UM.Theme.getSize("print_setup_big_item").width + // Anchoring to the right makes much more sense here, but for some reason this component compresses from the right + // and then expands from the left afterwards. This pushes it left by profileWarningReset.width + // The solution is to anchor from the other direction so this does not happen. + anchors.left: parent.left + // This leftMargin gives us the same spacing as anchoring to the right on profileWarningReset + anchors.leftMargin: parent.width - UM.Theme.getSize("print_setup_big_item").width + width: profileWarningReset.visible ? UM.Theme.getSize("print_setup_big_item").width - profileWarningReset.width - UM.Theme.getSize("default_margin").width : UM.Theme.getSize("print_setup_big_item").width height: textLabel.contentHeight + 2 * UM.Theme.getSize("narrow_margin").height hoverEnabled: true @@ -67,7 +72,7 @@ Item UM.Label { id: textLabel - text: Cura.MachineManager.activeQualityDisplayNameMap["main"] + text: Cura.MachineManager.activeQualityDisplayNameMainStringParts.join(" - ") Layout.margins: 0 Layout.maximumWidth: Math.floor(parent.width * 0.7) // Always leave >= 30% for the rest of the row. height: contentHeight @@ -77,7 +82,19 @@ Item UM.Label { - text: activeQualityDetailText() + text: + { + const string_parts = Cura.MachineManager.activeQualityDisplayNameTailStringParts; + if (string_parts.length === 0) + { + return ""; + } + else + { + ` - ${string_parts.join(" - ")}` + } + } + color: UM.Theme.getColor("text_detail") Layout.margins: 0 Layout.fillWidth: true @@ -85,32 +102,6 @@ Item height: contentHeight elide: Text.ElideRight wrapMode: Text.NoWrap - function activeQualityDetailText() - { - var resultMap = Cura.MachineManager.activeQualityDisplayNameMap - var resultSuffix = resultMap["suffix"] - var result = "" - - if (Cura.MachineManager.isActiveQualityExperimental) - { - resultSuffix += " (Experimental)" - } - - if (Cura.MachineManager.isActiveQualitySupported) - { - if (Cura.MachineManager.activeQualityLayerHeight > 0) - { - if (resultSuffix) - { - result += " - " + resultSuffix - } - result += " - " - result += Cura.MachineManager.activeQualityLayerHeight + "mm" - } - } - - return result - } } } @@ -166,6 +157,15 @@ Item } } + ProfileWarningReset + { + id: profileWarningReset + width: childrenRect.width + anchors.right: parent.right + anchors.verticalCenter: parent.verticalCenter + fullWarning: false + } + QualitiesWithIntentMenu { id: menu diff --git a/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml b/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml index a2624dbf14..646e835cb2 100644 --- a/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml +++ b/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml @@ -223,58 +223,6 @@ Popup color: borderColor } - MenuButton - { - labelText: Cura.Actions.addProfile.text - - anchors.left: parent.left - anchors.right: parent.right - - enabled: Cura.Actions.addProfile.enabled - onClicked: - { - Cura.Actions.addProfile.trigger() - popup.visible = false - } - } - MenuButton - { - labelText: Cura.Actions.updateProfile.text - anchors.left: parent.left - anchors.right: parent.right - - enabled: Cura.Actions.updateProfile.enabled - - onClicked: - { - popup.visible = false - Cura.Actions.updateProfile.trigger() - } - } - MenuButton - { - text: catalog.i18nc("@action:button", "Discard current changes") - - anchors.left: parent.left - anchors.right: parent.right - - enabled: Cura.MachineManager.hasUserSettings - - onClicked: - { - popup.visible = false - Cura.ContainerManager.clearUserContainers() - } - } - - Rectangle - { - height: UM.Theme.getSize("default_lining").width - anchors.left: parent.left - anchors.right: parent.right - color: borderColor - } - MenuButton { id: manageProfilesButton @@ -285,18 +233,19 @@ Popup right: parent.right } - height: textLabel.contentHeight + 2 * UM.Theme.getSize("narrow_margin").height + height: textLabel.contentHeight + UM.Theme.getSize("default_margin").height contentItem: Item { width: parent.width - height: childrenRect.height + height: parent.height UM.Label { id: textLabel text: manageProfilesButton.text height: contentHeight + anchors.verticalCenter: parent.verticalCenter } UM.Label { @@ -304,6 +253,7 @@ Popup text: Cura.Actions.manageProfiles.shortcut color: UM.Theme.getColor("text_lighter") height: contentHeight + anchors.verticalCenter: parent.verticalCenter anchors.right: parent.right anchors.rightMargin: UM.Theme.getSize("default_margin").width } @@ -318,7 +268,7 @@ Popup Item { width: 2 - height: UM.Theme.getSize("default_radius").width + height: UM.Theme.getSize("default_radius").width } } } diff --git a/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml b/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml index e53aa693e1..8621a8088c 100644 --- a/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml +++ b/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml @@ -67,6 +67,35 @@ Item top: parent.top } visible: currentModeIndex == PrintSetupSelectorContents.Mode.Recommended + height: { + const height = base.height - (recommendedPrintSetup.mapToItem(null, 0, 0).y + buttonRow.height + UM.Theme.getSize("default_margin").height); + const maxHeight = UM.Preferences.getValue("view/settings_list_height"); + return Math.min(height, maxHeight); + } + + Connections + { + target: UM.Preferences + function onPreferenceChanged(preference) + { + if (preference !== "view/settings_list_height" && preference !== "general/window_height" && preference !== "general/window_state") + { + return; + } + + const height = base.height - (recommendedPrintSetup.mapToItem(null, 0, 0).y + buttonRow.height + UM.Theme.getSize("default_margin").height); + const maxHeight = UM.Preferences.getValue("view/settings_list_height"); + + recommendedPrintSetup.height = Math.min(maxHeight, height); + + updateDragPosition(); + } + } + + function onModeChanged() + { + currentModeIndex = PrintSetupSelectorContents.Mode.Custom; + } } CustomPrintSetup @@ -122,7 +151,15 @@ Item { id: buttonRow property real padding: UM.Theme.getSize("default_margin").width - height: recommendedButton.height + 2 * padding + (draggableArea.visible ? draggableArea.height : 0) + height: + { + const draggable_area_height = draggableArea.visible ? draggableArea.height : 0; + if (currentModeIndex == PrintSetupSelectorContents.Mode.Custom) + { + return recommendedButton.height + 2 * padding + draggable_area_height; + } + return draggable_area_height; + } anchors { @@ -145,25 +182,6 @@ Item onClicked: currentModeIndex = PrintSetupSelectorContents.Mode.Recommended } - Cura.SecondaryButton - { - id: customSettingsButton - anchors.top: parent.top - anchors.right: parent.right - anchors.margins: UM.Theme.getSize("default_margin").width - leftPadding: UM.Theme.getSize("default_margin").width - rightPadding: UM.Theme.getSize("default_margin").width - text: catalog.i18nc("@button", "Custom") - iconSource: UM.Theme.getIcon("ChevronSingleRight") - isIconOnRightSide: true - visible: currentModeIndex == PrintSetupSelectorContents.Mode.Recommended - onClicked: - { - currentModeIndex = PrintSetupSelectorContents.Mode.Custom - updateDragPosition(); - } - } - //Invisible area at the bottom with which you can resize the panel. MouseArea { @@ -176,7 +194,6 @@ Item } height: childrenRect.height cursorShape: Qt.SplitVCursor - visible: currentModeIndex == PrintSetupSelectorContents.Mode.Custom drag { target: parent diff --git a/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml b/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml index 41e913a2c1..8804e51bb2 100644 --- a/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml +++ b/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml @@ -17,26 +17,8 @@ RowLayout { source: UM.Theme.getIcon("Sliders", "medium") iconSize: UM.Theme.getSize("button_icon").width - text: - { - if (Cura.MachineManager.activeStack) - { - var resultMap = Cura.MachineManager.activeQualityDisplayNameMap - var text = resultMap["main"] - if (resultMap["suffix"]) - { - text += " - " + resultMap["suffix"] - } - if (!Cura.MachineManager.hasNotSupportedQuality) - { - text += " - " + layerHeight.properties.value + "mm" - text += Cura.MachineManager.isActiveQualityExperimental ? " - " + catalog.i18nc("@label", "Experimental") : "" - } - return text - } - return "" - } + text: Cura.MachineManager.activeQualityDisplayNameStringParts.join(" - ") font: UM.Theme.getFont("medium") elide: Text.ElideMiddle wrapMode: Text.NoWrap diff --git a/resources/qml/PrintSetupSelector/ProfileWarningReset.qml b/resources/qml/PrintSetupSelector/ProfileWarningReset.qml new file mode 100644 index 0000000000..c44fcc8cc2 --- /dev/null +++ b/resources/qml/PrintSetupSelector/ProfileWarningReset.qml @@ -0,0 +1,181 @@ +// Copyright (C) 2022 UltiMaker +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 + +import UM 1.6 as UM +import Cura 1.6 as Cura + +import "../Dialogs" + +Item +{ + property bool fullWarning: true // <- Can you see the warning icon and the text, or is it just the buttons? + + height: visible ? UM.Theme.getSize("action_button_icon").height : 0 + width: visible ? childrenRect.width: 0 + visible: Cura.MachineManager.hasUserSettings || (fullWarning && Cura.MachineManager.hasCustomQuality) + + Rectangle + { + id: warningIcon + visible: fullWarning + color: UM.Theme.getColor("warning") + height: UM.Theme.getSize("action_button_icon").height + width: visible ? height : 0 + radius: width + anchors + { + left: parent.left + verticalCenter: parent.verticalCenter + } + UM.ColorImage + { + id: warningIconImage + height: UM.Theme.getSize("action_button_icon").height + width: height + source: UM.Theme.getIcon("Warning", "low") + } + } + + UM.Label + { + id: warning + visible: fullWarning + width: visible ? parent.width - warningIcon.width - (compareAndSaveButton.width + resetToDefaultQualityButton.width) : 0 + anchors + { + left: warningIcon.right + verticalCenter: parent.verticalCenter + leftMargin: visible ? UM.Theme.getSize("thin_margin").width : 0 + } + + wrapMode: Text.WordWrap + + states: [ + State + { + name: "settings changed and custom quality" + when: Cura.MachineManager.hasUserSettings && Cura.MachineManager.hasCustomQuality + PropertyChanges + { + target: warning + text: { + var profile_name = Cura.MachineManager.activeQualityChangesGroup.name + return catalog.i18nc("@info, %1 is the name of the custom profile", "%1 custom profile is active and you overwrote some settings.").arg(profile_name) + } + } + }, + State + { + name: "custom quality" + when: Cura.MachineManager.hasCustomQuality + PropertyChanges + { + target: warning + text: { + var profile_name = Cura.MachineManager.activeQualityChangesGroup.name + return catalog.i18nc("@info, %1 is the name of the custom profile", "%1 custom profile is overriding some settings.").arg(profile_name) + } + } + }, + State + { + name: "recommended settings changed" + when: Cura.MachineManager.hasUserSettings + PropertyChanges + { + target: warning + text: + { + var profile_name = Cura.MachineManager.activeQualityOrQualityChangesName; + return catalog.i18nc("@info %1 is the name of a profile", "Recommended settings (for %1) were altered.").arg(profile_name); + } + } + }, + State + { + name: "custom settings changed" + when: Cura.SimpleModeSettingsManager.isProfileCustomized + PropertyChanges + { + target: warning + text: + { + var profile_name = Cura.MachineManager.activeQualityOrQualityChangesName; + return catalog.i18nc("@info %1 is the name of a profile", "Some setting-values defined in %1 were overridden.").arg(profile_name); + } + } + } + ] + } + + UM.SimpleButton + { + id: resetToDefaultQualityButton + height: UM.Theme.getSize("action_button_icon").height + width: visible ? height : 0 + iconSource: UM.Theme.getIcon("ArrowReset") + anchors + { + right: buttonsSpacer.left + verticalCenter: parent.verticalCenter + } + + visible: enabled + color: enabled ? UM.Theme.getColor("accent_1") : UM.Theme.getColor("disabled") + hoverColor: UM.Theme.getColor("primary_hover") + + enabled: (fullWarning && Cura.MachineManager.hasCustomQuality) || Cura.MachineManager.hasUserSettings + onClicked: Cura.MachineManager.resetToUseDefaultQuality() + + UM.ToolTip + { + visible: parent.hovered + y: parent.y + parent.height + UM.Theme.getSize("default_margin").height + targetPoint: Qt.point(parent.x, Math.round(parent.y + parent.height / 2)) + tooltipText: catalog.i18nc("@info", "Reset to defaults.") + } + } + + // Spacer + Item + { + id: buttonsSpacer + width: compareAndSaveButton.visible ? UM.Theme.getSize("default_margin").width : 0 + anchors.right: compareAndSaveButton.left + } + + UM.SimpleButton + { + id: compareAndSaveButton + height: UM.Theme.getSize("action_button_icon").height + width: visible ? height : 0 + iconSource: UM.Theme.getIcon("Save") + anchors + { + right: parent.right + verticalCenter: parent.verticalCenter + } + + visible: enabled + color: enabled ? UM.Theme.getColor("accent_1") : UM.Theme.getColor("disabled") + hoverColor: UM.Theme.getColor("primary_hover") + + enabled: Cura.MachineManager.hasUserSettings + onClicked: CuraApplication.showCompareAndSaveProfileChanges + ( + Cura.MachineManager.hasCustomQuality ? + DiscardOrKeepProfileChangesDialog.ButtonsType.SaveFromCustom : + DiscardOrKeepProfileChangesDialog.ButtonsType.SaveFromBuiltIn + ) + + UM.ToolTip + { + visible: parent.hovered + y: parent.y + parent.height + UM.Theme.getSize("default_margin").height + targetPoint: Qt.point(parent.x, Math.round(parent.y + parent.height / 2)) + tooltipText: catalog.i18nc("@info", "Compare and save.") + } + } +} diff --git a/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml b/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml deleted file mode 100644 index 1a54dc27db..0000000000 --- a/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml +++ /dev/null @@ -1,106 +0,0 @@ -import QtQuick 2.10 - -import UM 1.6 as UM -import Cura 1.6 as Cura - -Item -{ - height: visible ? UM.Theme.getSize("action_button_icon").height : 0 - visible: Cura.SimpleModeSettingsManager.isProfileCustomized || Cura.MachineManager.hasCustomQuality - - Rectangle - { - id: warningIcon - color: UM.Theme.getColor("um_yellow_5") - height: UM.Theme.getSize("action_button_icon").height - width: height - radius: width - anchors - { - left: parent.left - verticalCenter: parent.verticalCenter - } - UM.ColorImage - { - height: UM.Theme.getSize("action_button_icon").height - width: height - source: UM.Theme.getIcon("Warning", "low") - } - } - - UM.Label - { - id: warning - width: parent.width - warningIcon.width - resetToDefaultQualityButton.width - anchors - { - left: warningIcon.right - verticalCenter: parent.verticalCenter - leftMargin: UM.Theme.getSize("thin_margin").width - } - - wrapMode: Text.WordWrap - - states: [ - State - { - name: "settings changed and custom quality" - when: Cura.SimpleModeSettingsManager.isProfileCustomized && Cura.MachineManager.hasCustomQuality - PropertyChanges - { - target: warning - text: { - var profile_name = Cura.MachineManager.activeQualityChangesGroup.name - return "%1 %2".arg(profile_name).arg(catalog.i18nc("@info", "custom profile is active and you overwrote some settings.")) - } - } - - }, - State - { - name: "custom quality" - when: Cura.MachineManager.hasCustomQuality - PropertyChanges - { - target: warning - text: { - var profile_name = Cura.MachineManager.activeQualityChangesGroup.name - return "%1 %2".arg(profile_name).arg(catalog.i18nc("@info", "custom profile is overriding some settings.")) - } - } - }, - State - { - name: "settings changed" - when: Cura.SimpleModeSettingsManager.isProfileCustomized - PropertyChanges - { - target: warning - text: catalog.i18nc("@info", "Some settings were changed.") - } - } - ] - - } - - UM.SimpleButton - { - id: resetToDefaultQualityButton - height: UM.Theme.getSize("action_button_icon").height - width: height - iconSource: UM.Theme.getIcon("ArrowReset") - anchors - { - right: parent.right - verticalCenter: parent.verticalCenter - } - - color: UM.Theme.getColor("accent_1") - - onClicked: - { - Cura.MachineManager.resetToUseDefaultQuality() - } - } - -} \ No newline at end of file diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml index 74c496f824..2183ef7d5e 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml @@ -1,88 +1,37 @@ -// Copyright (c) 2018 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 +import QtQuick.Layouts 1.3 import UM 1.5 as UM -import Cura 1.0 as Cura +import Cura 1.7 as Cura -// -// Adhesion -// -Item +RecommendedSettingSection { id: enableAdhesionRow - height: childrenRect.height - property real labelColumnWidth: Math.round(width / 3) + title: catalog.i18nc("@label", "Adhesion") + icon: UM.Theme.getIcon("Adhesion") + enableSectionSwitchVisible: platformAdhesionType.properties.enabled === "True" + enableSectionSwitchChecked: platformAdhesionType.properties.value !== "skirt" && platformAdhesionType.properties.value !== "none" + enableSectionSwitchEnabled: recommendedPrintSetup.settingsEnabled + tooltipText: catalog.i18nc("@label", "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards.") + property var curaRecommendedMode: Cura.RecommendedMode {} - Cura.IconWithText + property UM.SettingPropertyProvider platformAdhesionType: UM.SettingPropertyProvider { - id: enableAdhesionRowTitle - anchors.top: parent.top - anchors.left: parent.left - source: UM.Theme.getIcon("Adhesion") - text: catalog.i18nc("@label", "Adhesion") - font: UM.Theme.getFont("medium") - width: labelColumnWidth - iconSize: UM.Theme.getSize("medium_button_icon").width - } - - Item - { - id: enableAdhesionContainer - height: enableAdhesionCheckBox.height - - anchors - { - left: enableAdhesionRowTitle.right - right: parent.right - verticalCenter: enableAdhesionRowTitle.verticalCenter - } - - UM.CheckBox - { - id: enableAdhesionCheckBox - anchors.verticalCenter: parent.verticalCenter - - property alias _hovered: adhesionMouseArea.containsMouse - - //: Setting enable printing build-plate adhesion helper checkbox - enabled: recommendedPrintSetup.settingsEnabled - - visible: platformAdhesionType.properties.enabled == "True" - checked: platformAdhesionType.properties.value != "skirt" && platformAdhesionType.properties.value != "none" - - MouseArea - { - id: adhesionMouseArea - anchors.fill: parent - hoverEnabled: true - - onClicked: - { - curaRecommendedMode.setAdhesion(!parent.checked) - } - - onEntered: - { - base.showTooltip(enableAdhesionCheckBox, Qt.point(-enableAdhesionContainer.x - UM.Theme.getSize("thick_margin").width, 0), - catalog.i18nc("@label", "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards.")); - } - onExited: base.hideTooltip() - } - } - } - - UM.SettingPropertyProvider - { - id: platformAdhesionType containerStack: Cura.MachineManager.activeMachine removeUnusedValue: false //Doesn't work with settings that are resolved. key: "adhesion_type" watchedProperties: [ "value", "resolve", "enabled" ] storeIndex: 0 } + + function onEnableSectionChanged(state) + { + curaRecommendedMode.setAdhesion(state) + } } diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml deleted file mode 100644 index 9e2d73609c..0000000000 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml +++ /dev/null @@ -1,259 +0,0 @@ -// Copyright (c) 2022 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. - -import QtQuick 2.7 -import QtQuick.Controls 2.15 - -import UM 1.5 as UM -import Cura 1.0 as Cura - - -// -// Infill -// -Item -{ - id: infillRow - height: childrenRect.height - - property real labelColumnWidth: Math.round(width / 3) - - // Create a binding to update the icon when the infill density changes - Binding - { - target: infillRowTitle - property: "source" - value: - { - var density = parseInt(infillDensity.properties.value) - if (parseInt(infillSteps.properties.value) != 0) - { - return UM.Theme.getIcon("InfillGradual") - } - if (density <= 0) - { - return UM.Theme.getIcon("Infill0") - } - if (density < 40) - { - return UM.Theme.getIcon("Infill3") - } - if (density < 90) - { - return UM.Theme.getIcon("Infill2") - } - return UM.Theme.getIcon("Infill100") - } - } - - // We use a binding to make sure that after manually setting infillSlider.value it is still bound to the property provider - Binding - { - target: infillSlider - property: "value" - value: parseInt(infillDensity.properties.value) - } - - // Here are the elements that are shown in the left column - Cura.IconWithText - { - id: infillRowTitle - anchors.top: parent.top - anchors.left: parent.left - source: UM.Theme.getIcon("Infill1") - text: catalog.i18nc("@label", "Infill") + " (%)" - font: UM.Theme.getFont("medium") - width: labelColumnWidth - iconSize: UM.Theme.getSize("medium_button_icon").width - } - - Item - { - id: infillSliderContainer - height: childrenRect.height - - anchors - { - left: infillRowTitle.right - right: parent.right - verticalCenter: infillRowTitle.verticalCenter - } - - Slider - { - id: infillSlider - - width: parent.width - height: UM.Theme.getSize("print_setup_slider_handle").height // The handle is the widest element of the slider - - from: 0 - to: 100 - stepSize: 1 - - // disable slider when gradual support is enabled - enabled: parseInt(infillSteps.properties.value) == 0 - - // set initial value from stack - value: parseInt(infillDensity.properties.value) - - //Draw line - background: Rectangle - { - id: backgroundLine - height: UM.Theme.getSize("print_setup_slider_groove").height - width: parent.width - UM.Theme.getSize("print_setup_slider_handle").width - implicitWidth: width - anchors.horizontalCenter: parent.horizontalCenter - anchors.verticalCenter: parent.verticalCenter - color: infillSlider.enabled ? UM.Theme.getColor("quality_slider_available") : UM.Theme.getColor("quality_slider_unavailable") - - Repeater - { - id: repeater - anchors.fill: parent - model: infillSlider.to / infillSlider.stepSize + 1 - - Rectangle - { - color: infillSlider.enabled ? UM.Theme.getColor("quality_slider_available") : UM.Theme.getColor("quality_slider_unavailable") - implicitWidth: UM.Theme.getSize("print_setup_slider_tickmarks").width - implicitHeight: UM.Theme.getSize("print_setup_slider_tickmarks").height - anchors.verticalCenter: parent.verticalCenter - - // Do not use Math.round otherwise the tickmarks won't be aligned - // (space between steps) * index of step - x: (backgroundLine.width / (repeater.count - 1)) * index - - radius: Math.round(implicitWidth / 2) - visible: (index % 10) == 0 // Only show steps of 10% - - UM.Label - { - text: index - visible: (index % 20) == 0 // Only show steps of 20% - anchors.horizontalCenter: parent.horizontalCenter - y: UM.Theme.getSize("thin_margin").height - color: UM.Theme.getColor("quality_slider_available") - } - } - } - } - - handle: Rectangle - { - id: handleButton - x: infillSlider.leftPadding + infillSlider.visualPosition * (infillSlider.availableWidth - width) - y: infillSlider.topPadding + infillSlider.availableHeight / 2 - height / 2 - color: infillSlider.enabled ? UM.Theme.getColor("primary") : UM.Theme.getColor("quality_slider_unavailable") - implicitWidth: UM.Theme.getSize("print_setup_slider_handle").width - implicitHeight: implicitWidth - radius: Math.round(implicitWidth / 2) - border.color: UM.Theme.getColor("slider_groove_fill") - border.width: UM.Theme.getSize("default_lining").height - } - - Connections - { - target: infillSlider - function onValueChanged() - { - // Don't round the value if it's already the same - if (parseInt(infillDensity.properties.value) == infillSlider.value) - { - return - } - - // Round the slider value to the nearest multiple of 10 (simulate step size of 10) - var roundedSliderValue = Math.round(infillSlider.value / 10) * 10 - - // Update the slider value to represent the rounded value - infillSlider.value = roundedSliderValue - - // Update value only if the Recommended mode is Active, - // Otherwise if I change the value in the Custom mode the Recommended view will try to repeat - // same operation - const active_mode = UM.Preferences.getValue("cura/active_mode") - - if (visible // Workaround: 'visible' is checked because on startup in Windows it spuriously gets an 'onValueChanged' with value '0' if this isn't checked. - && (active_mode == 0 || active_mode == "simple")) - { - Cura.MachineManager.setSettingForAllExtruders("infill_sparse_density", "value", roundedSliderValue) - Cura.MachineManager.resetSettingForAllExtruders("infill_line_distance") - } - } - } - } - } - - // Gradual Support Infill Checkbox - UM.CheckBox - { - id: enableGradualInfillCheckBox - property alias _hovered: enableGradualInfillMouseArea.containsMouse - - anchors.top: infillSliderContainer.bottom - anchors.topMargin: UM.Theme.getSize("wide_margin").height - anchors.left: infillSliderContainer.left - - text: catalog.i18nc("@label", "Gradual infill") - enabled: recommendedPrintSetup.settingsEnabled - visible: infillSteps.properties.enabled == "True" - checked: parseInt(infillSteps.properties.value) > 0 - - MouseArea - { - id: enableGradualInfillMouseArea - - anchors.fill: parent - hoverEnabled: true - enabled: true - - property var previousInfillDensity: parseInt(infillDensity.properties.value) - - onClicked: - { - // Set to 90% only when enabling gradual infill - var newInfillDensity; - if (parseInt(infillSteps.properties.value) == 0) - { - previousInfillDensity = parseInt(infillDensity.properties.value) - newInfillDensity = 90 - } else { - newInfillDensity = previousInfillDensity - } - Cura.MachineManager.setSettingForAllExtruders("infill_sparse_density", "value", String(newInfillDensity)) - - var infill_steps_value = 0 - if (parseInt(infillSteps.properties.value) == 0) - { - infill_steps_value = 5 - } - - Cura.MachineManager.setSettingForAllExtruders("gradual_infill_steps", "value", infill_steps_value) - } - - onEntered: base.showTooltip(enableGradualInfillCheckBox, Qt.point(-infillSliderContainer.x - UM.Theme.getSize("thick_margin").width, 0), - catalog.i18nc("@label", "Gradual infill will gradually increase the amount of infill towards the top.")) - - onExited: base.hideTooltip() - } - } - - UM.SettingPropertyProvider - { - id: infillDensity - containerStackId: Cura.MachineManager.activeStackId - key: "infill_sparse_density" - watchedProperties: [ "value" ] - storeIndex: 0 - } - - UM.SettingPropertyProvider - { - id: infillSteps - containerStackId: Cura.MachineManager.activeStackId - key: "gradual_infill_steps" - watchedProperties: ["value", "enabled"] - storeIndex: 0 - } -} diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml index 086e27d41b..80e171bed4 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml @@ -1,32 +1,42 @@ -//Copyright (c) 2022 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker //Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 +import QtQuick.Controls 2.15 import QtQuick.Layouts 1.1 import UM 1.6 as UM import Cura 1.6 as Cura +import ".." -Item +ScrollView { id: recommendedPrintSetup - height: childrenRect.height + 2 * padding + implicitHeight: settingsColumn.height + 2 * padding property bool settingsEnabled: Cura.ExtruderManager.activeExtruderStackId || extrudersEnabledCount.properties.value == 1 - property real padding: UM.Theme.getSize("default_margin").width - ColumnLayout - { - spacing: UM.Theme.getSize("default_margin").height + padding: UM.Theme.getSize("default_margin").width + function onModeChanged() {} + + ScrollBar.vertical: UM.ScrollBar { + id: scroll anchors { - left: parent.left - right: parent.right top: parent.top - margins: parent.padding + right: parent.right + bottom: parent.bottom } + } + + Column + { + id: settingsColumn + spacing: UM.Theme.getSize("default_margin").height + + width: recommendedPrintSetup.width - 2 * recommendedPrintSetup.padding - (scroll.visible ? scroll.width : 0) // TODO property real firstColumnWidth: Math.round(width / 3) @@ -46,7 +56,6 @@ Item RecommendedResolutionSelector { id: recommendedResolutionSelector - Layout.fillWidth: true width: parent.width } @@ -54,55 +63,72 @@ Item { width: parent.width visible: !recommendedResolutionSelector.visible - Layout.fillWidth: true } + Item { height: UM.Theme.getSize("default_margin").height } // Spacer ProfileWarningReset { width: parent.width - Layout.fillWidth: true - Layout.topMargin: UM.Theme.getSize("thin_margin").height - Layout.bottomMargin: UM.Theme.getSize("thin_margin").height } + Item { height: UM.Theme.getSize("thin_margin").height + UM.Theme.getSize("narrow_margin").height} // Spacer + //Line between the sections. Rectangle { width: parent.width height: UM.Theme.getSize("default_lining").height - Layout.topMargin: UM.Theme.getSize("narrow_margin").height - Layout.bottomMargin: UM.Theme.getSize("narrow_margin").height - Layout.fillWidth: true color: UM.Theme.getColor("lining") } - UM.Label - { - text: catalog.i18nc("@label", "Print settings") - font: UM.Theme.getFont("medium") - } + Item { height: UM.Theme.getSize("narrow_margin").height } //Spacer - RecommendedInfillDensitySelector + Column { + id: settingColumn width: parent.width - labelColumnWidth: parent.firstColumnWidth - Layout.fillWidth: true - Layout.rightMargin: UM.Theme.getSize("default_margin").width - } + spacing: UM.Theme.getSize("thin_margin").height - RecommendedSupportSelector - { - width: parent.width - labelColumnWidth: parent.firstColumnWidth - Layout.fillWidth: true - } + Item + { + id: recommendedPrintSettingsHeader + height: childrenRect.height + width: parent.width + UM.Label + { + anchors.verticalCenter: parent.verticalCenter + anchors.left: parent.left + text: catalog.i18nc("@label", "Recommended print settings") + font: UM.Theme.getFont("medium") + } - RecommendedAdhesionSelector - { - width: parent.width - labelColumnWidth: parent.firstColumnWidth - Layout.fillWidth: true + Cura.SecondaryButton + { + id: customSettingsButton + anchors.verticalCenter: parent.verticalCenter + anchors.right: parent.right + text: catalog.i18nc("@button", "Show Custom") + textFont: UM.Theme.getFont("medium_bold") + outlineColor: "transparent" + onClicked: onModeChanged() + } + } + + RecommendedStrengthSelector + { + width: parent.width + } + + RecommendedSupportSelector + { + width: parent.width + } + + RecommendedAdhesionSelector + { + width: parent.width + } } } diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml index 87cb271ed4..b9fbf04f9c 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml @@ -32,7 +32,7 @@ Item { profileName: model.name icon: model.icon - + tooltipText: model.description ? model.description : "" selected: Cura.MachineManager.activeIntentCategory == model.intent_category @@ -43,7 +43,6 @@ Item qualityType = Cura.MachineManager.activeQualityType } else { qualityType = Cura.MachineManager.getDefaultQualityTypeForIntent(model.intent_category) - print(Cura.MachineManager.getDefaultQualityTypeForIntent(model.intent_category)) } Cura.IntentManager.selectIntent(model.intent_category, qualityType) } diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelectorButton.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelectorButton.qml index 6804e7e5ba..4e912edfe0 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelectorButton.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelectorButton.qml @@ -19,6 +19,7 @@ Rectangle property bool selected: false property string profileName: "" property string icon: "" + property alias tooltipText: tooltip.text signal clicked() @@ -30,6 +31,14 @@ Rectangle onClicked: base.clicked() } + UM.ToolTip + { + id: tooltip + visible: mouseArea.containsMouse + targetPoint: Qt.point(base.x + (base.width / 2), base.y + (base.height / 2)) + width: UM.Theme.getSize("tooltip").width + } + Item { width: intentIcon.width diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml index bbad686514..4f1b49e931 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml @@ -22,6 +22,7 @@ Item id: resolutionTitle anchors.top: parent.top anchors.left: parent.left + anchors.leftMargin: - UM.Theme.getSize("thick_lining").width source: UM.Theme.getIcon("PrintQuality") text: catalog.i18nc("@label", "Resolution") width: labelColumnWidth diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedSettingItem.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedSettingItem.qml new file mode 100644 index 0000000000..ceebc3808e --- /dev/null +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedSettingItem.qml @@ -0,0 +1,90 @@ +// Copyright (c) 2022 UltiMaker +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 +import QtQuick.Controls 2.3 +import QtQuick.Layouts 2.10 + +import UM 1.5 as UM +import Cura 1.7 as Cura + + +Item +{ + id: settingItem + width: parent.width + Layout.minimumHeight: UM.Theme.getSize("section_header").height + Layout.fillWidth: true + + property alias settingControl: settingContainer.children + property alias settingName: settingLabel.text + property string tooltipText: "" + property bool isCompressed: false + + UM.Label + { + id: settingLabel + width: leftColumnWidth + anchors.left: parent.left + anchors.verticalCenter: parent.verticalCenter + // These numbers come from the IconWithText in RecommendedSettingSection + anchors.leftMargin: UM.Theme.getSize("medium_button_icon").width + UM.Theme.getSize("default_margin").width + } + + MouseArea + { + id: tooltipArea + anchors.fill: settingLabel + propagateComposedEvents: true + hoverEnabled: true + onEntered: base.showTooltip(parent, Qt.point(-UM.Theme.getSize("thick_margin").width, 0), tooltipText) + onExited: base.hideTooltip() + } + + Item + { + id: settingContainer + height: childrenRect.height + anchors.left: settingLabel.right + anchors.right: parent.right + anchors.verticalCenter: parent.verticalCenter + } + + states: + [ + State + { + name: "sectionClosed" // Section is hidden when the switch in parent is off + when: isCompressed + PropertyChanges + { + target: settingItem; + opacity: 0 + height: 0 + implicitHeight: 0 + Layout.preferredHeight: 0 + Layout.minimumHeight: 0 + enabled: false // Components can still be clickable with height 0 so they need to be disabled as well. + } + }, + State + { + // All values are default. This state is only here for the animation. + name: "sectionOpened" + when: !isCompressed + } + ] + + transitions: Transition + { + from: "sectionOpened"; to: "sectionClosed" + reversible: true + ParallelAnimation + { + // Animate section compressing as it closes + NumberAnimation { property: "Layout.minimumHeight"; duration: 100; } + // Animate section dissapearring as it closes + NumberAnimation { property: "opacity"; duration: 100; } + } + } +} \ No newline at end of file diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedSettingSection.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedSettingSection.qml new file mode 100644 index 0000000000..a8cfaee79f --- /dev/null +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedSettingSection.qml @@ -0,0 +1,129 @@ +// Copyright (c) 2022 UltiMaker +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 +import QtQuick.Controls 2.3 +import QtQuick.Layouts 2.10 + +import UM 1.7 as UM +import Cura 1.7 as Cura + +Item +{ + id: settingSection + property alias title: sectionTitle.text + property alias icon: sectionTitle.source + + property alias enableSectionSwitchVisible: enableSectionSwitch.visible + property alias enableSectionSwitchChecked: enableSectionSwitch.checked + property alias enableSectionSwitchEnabled: enableSectionSwitch.enabled + property string tooltipText: "" + property var enableSectionClicked: { return } + property int leftColumnWidth: Math.floor(width * 0.35) + property bool isCompressed: false + + property alias contents: settingColumn.children + + function onEnableSectionChanged(state) {} + + height: childrenRect.height + + Item + { + id: sectionHeader + anchors.top: parent.top + anchors.right: parent.right + anchors.left: parent.left + height: UM.Theme.getSize("section_header").height + + Cura.IconWithText + { + id: sectionTitle + width: leftColumnWidth + anchors.left: parent.left + anchors.verticalCenter: parent.verticalCenter + source: UM.Theme.getIcon("PrintQuality") + spacing: UM.Theme.getSize("default_margin").width + iconSize: UM.Theme.getSize("medium_button_icon").width + iconColor: UM.Theme.getColor("text") + font: UM.Theme.getFont("medium_bold") + } + + MouseArea + { + id: tooltipArea + anchors.fill: sectionTitle + propagateComposedEvents: true + hoverEnabled: true + onEntered: base.showTooltip(parent, Qt.point(-UM.Theme.getSize("thick_margin").width, 0), tooltipText) + onExited: base.hideTooltip() + } + + } + + UM.Switch + { + id: enableSectionSwitch + anchors.left: parent.left + // These numbers come from the IconWithText in RecommendedSettingSection. + anchors.leftMargin: leftColumnWidth + UM.Theme.getSize("medium_button_icon").width + UM.Theme.getSize("default_margin").width + anchors.verticalCenter: sectionHeader.verticalCenter + visible: false + + // This delay forces the setting change to happen after the setting section open/close animation. This is so the animation is smooth. + Timer + { + id: updateTimer + interval: 500 // This interval is set long enough so you can spam click the button on/off without lag. + repeat: false + onTriggered: onEnableSectionChanged(enableSectionSwitch.checked) + } + onClicked: updateTimer.restart() + } + + ColumnLayout + { + id: settingColumn + width: parent.width + spacing: UM.Theme.getSize("thin_margin").height + anchors.left: parent.left + anchors.right: parent.right + anchors.top: sectionHeader.bottom + anchors.topMargin: UM.Theme.getSize("narrow_margin").height + } + + states: + [ + State + { + name: "settingListClosed" + when: !enableSectionSwitchChecked && enableSectionSwitchEnabled + PropertyChanges + { + target: settingSection + isCompressed: true + implicitHeight: 0 + } + PropertyChanges + { + target: settingColumn + spacing: 0 + } + }, + State + { + // Use default properties. This is only here for the animation. + name: "settingListOpened" + when: enableSectionSwitchChecked && enableSectionSwitchEnabled + } + ] + + // Animate section closing + transitions: Transition + { + from: "settingListOpened"; to: "settingListClosed" + reversible: true + // Animate section compressing as it closes + NumberAnimation { property: "implicitHeight"; duration: 100; } + } +} \ No newline at end of file diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml new file mode 100644 index 0000000000..e9dba5c62f --- /dev/null +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml @@ -0,0 +1,105 @@ +// Copyright (c) 2022 UltiMaker +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.7 +import QtQuick.Controls 2.15 +import QtQuick.Layouts 2.10 + +import UM 1.7 as UM +import Cura 1.7 as Cura + + +RecommendedSettingSection +{ + id: strengthSection + + title: catalog.i18nc("@label", "Strength") + icon: UM.Theme.getIcon("Hammer") + enableSectionSwitchVisible: false + enableSectionSwitchEnabled: false + tooltipText: catalog.i18nc("@label", "The following settings define the strength of your part.") + + UM.SettingPropertyProvider + { + id: infillSteps + containerStackId: Cura.MachineManager.activeStackId + key: "gradual_infill_steps" + watchedProperties: ["value", "enabled"] + storeIndex: 0 + } + + contents: [ + RecommendedSettingItem + { + settingName: catalog.i18nc("infill_sparse_density description", "Infill Density") + tooltipText: catalog.i18nc("@label", "Adjusts the density of infill of the print.") + settingControl: Cura.SingleSettingSlider + { + height: UM.Theme.getSize("combobox").height + width: parent.width + settingName: "infill_sparse_density" + updateAllExtruders: true + // disable slider when gradual support is enabled + enabled: parseInt(infillSteps.properties.value) === 0 + + function updateSetting(value) + { + Cura.MachineManager.setSettingForAllExtruders("infill_sparse_density", "value", value) + Cura.MachineManager.resetSettingForAllExtruders("infill_line_distance") + } + } + }, + RecommendedSettingItem + { + settingName: catalog.i18nc("@action:label", "Infill Pattern") + tooltipText: catalog.i18nc("@label", + "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.") + + settingControl: Cura.SingleSettingComboBox + { + width: parent.width + settingName: "infill_pattern" + updateAllExtruders: true + } + }, + RecommendedSettingItem + { + settingName: catalog.i18nc("@action:label", "Shell Thickness") + tooltipText: catalog.i18nc("@label", "Defines the thickness of your part side walls, roof and floor.") + + settingControl: RowLayout + { + anchors.fill: parent + spacing: UM.Theme.getSize("default_margin").width + UM.ComponentWithIcon + { + Layout.fillWidth: true + source: UM.Theme.getIcon("PrintWalls") + + Cura.SingleSettingTextField + { + width: parent.width + settingName: "wall_thickness" + updateAllExtruders: true + validator: UM.FloatValidator {} + unitText: catalog.i18nc("@label", "mm") + } + } + UM.ComponentWithIcon + { + Layout.fillWidth: true + source: UM.Theme.getIcon("PrintTopBottom") + + Cura.SingleSettingTextField + { + width: parent.width + settingName: "top_bottom_thickness" + updateAllExtruders: true + validator: UM.FloatValidator {} + unitText: catalog.i18nc("@label", "mm") + } + } + } + } + ] +} diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml index 0b683f0ddf..44b3d28e24 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml @@ -1,300 +1,31 @@ -// Copyright (c) 2022 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 import QtQuick.Controls 2.3 +import QtQuick.Layouts 1.3 import UM 1.5 as UM -import Cura 1.0 as Cura +import Cura 1.7 as Cura -// -// Enable support -// -Item +RecommendedSettingSection { id: enableSupportRow - height: childrenRect.height - property real labelColumnWidth: Math.round(width / 3) + title: catalog.i18nc("@label", "Support") + icon: UM.Theme.getIcon("Support") + enableSectionSwitchVisible: supportEnabled.properties.enabled == "True" + enableSectionSwitchChecked: supportEnabled.properties.value == "True" + enableSectionSwitchEnabled: recommendedPrintSetup.settingsEnabled + tooltipText: catalog.i18nc("@label", "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing.") - Cura.IconWithText + function onEnableSectionChanged(state) { - id: enableSupportRowTitle - anchors.top: parent.top - anchors.left: parent.left - visible: enableSupportCheckBox.visible - source: UM.Theme.getIcon("Support") - text: catalog.i18nc("@label", "Support") - font: UM.Theme.getFont("medium") - width: labelColumnWidth - iconSize: UM.Theme.getSize("medium_button_icon").width + supportEnabled.setPropertyValue("value", state) } - Item - { - id: enableSupportContainer - height: enableSupportCheckBox.height - - anchors - { - left: enableSupportRowTitle.right - right: parent.right - verticalCenter: enableSupportRowTitle.verticalCenter - } - - UM.CheckBox - { - id: enableSupportCheckBox - anchors.verticalCenter: parent.verticalCenter - - property alias _hovered: enableSupportMouseArea.containsMouse - - enabled: recommendedPrintSetup.settingsEnabled - - visible: supportEnabled.properties.enabled == "True" - checked: supportEnabled.properties.value == "True" - - MouseArea - { - id: enableSupportMouseArea - anchors.fill: parent - hoverEnabled: true - - onClicked: supportEnabled.setPropertyValue("value", supportEnabled.properties.value != "True") - - onEntered: - { - base.showTooltip(enableSupportCheckBox, Qt.point(-enableSupportContainer.x - UM.Theme.getSize("thick_margin").width, 0), - catalog.i18nc("@label", "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing.")) - } - onExited: base.hideTooltip() - } - } - - ComboBox - { - id: supportExtruderCombobox - - height: UM.Theme.getSize("print_setup_big_item").height - anchors - { - left: enableSupportCheckBox.right - right: parent.right - leftMargin: UM.Theme.getSize("thick_margin").width - rightMargin: UM.Theme.getSize("thick_margin").width - verticalCenter: parent.verticalCenter - } - - enabled: recommendedPrintSetup.settingsEnabled - visible: enableSupportCheckBox.visible && (supportEnabled.properties.value == "True") && (extrudersEnabledCount.properties.value > 1) - textRole: "name" // this solves that the combobox isn't populated in the first time Cura is started - - model: extruderModel - - // knowing the extruder position, try to find the item index in the model - function getIndexByPosition(position) - { - var itemIndex = -1 // if position is not found, return -1 - for (var item_index in model.items) - { - var item = model.getItem(item_index) - if (item.index == position) - { - itemIndex = item_index - break - } - } - return itemIndex - } - - onActivated: - { - if (model.getItem(index).enabled) - { - forceActiveFocus(); - supportExtruderNr.setPropertyValue("value", model.getItem(index).index); - } else - { - currentIndex = supportExtruderNr.properties.value; // keep the old value - } - } - - currentIndex: (supportExtruderNr.properties.value !== undefined) ? supportExtruderNr.properties.value : 0 - - property string color: "#fff" - Connections - { - target: extruderModel - function onModelChanged() - { - var maybeColor = supportExtruderCombobox.model.getItem(supportExtruderCombobox.currentIndex).color - if (maybeColor) - { - supportExtruderCombobox.color = maybeColor - } - } - } - onCurrentIndexChanged: - { - var maybeColor = supportExtruderCombobox.model.getItem(supportExtruderCombobox.currentIndex).color - if(maybeColor) - { - supportExtruderCombobox.color = maybeColor - } - } - - Binding - { - target: supportExtruderCombobox - property: "currentIndex" - value: supportExtruderCombobox.getIndexByPosition(supportExtruderNr.properties.value) - // Sometimes when the value is already changed, the model is still being built. - // The when clause ensures that the current index is not updated when this happens. - when: supportExtruderCombobox.model.count > 0 - } - - indicator: UM.ColorImage - { - id: downArrow - x: supportExtruderCombobox.width - width - supportExtruderCombobox.rightPadding - y: supportExtruderCombobox.topPadding + Math.round((supportExtruderCombobox.availableHeight - height) / 2) - - source: UM.Theme.getIcon("ChevronSingleDown") - width: UM.Theme.getSize("standard_arrow").width - height: UM.Theme.getSize("standard_arrow").height - - color: UM.Theme.getColor("setting_control_button") - } - - background: Rectangle - { - color: - { - if (!enabled) - { - return UM.Theme.getColor("setting_control_disabled") - } - if (supportExtruderCombobox.hovered || base.activeFocus) - { - return UM.Theme.getColor("setting_control_highlight") - } - return UM.Theme.getColor("setting_control") - } - radius: UM.Theme.getSize("setting_control_radius").width - border.width: UM.Theme.getSize("default_lining").width - border.color: - { - if (!enabled) - { - return UM.Theme.getColor("setting_control_disabled_border") - } - if (supportExtruderCombobox.hovered || supportExtruderCombobox.activeFocus) - { - return UM.Theme.getColor("setting_control_border_highlight") - } - return UM.Theme.getColor("setting_control_border") - } - } - - contentItem: UM.Label - { - anchors.verticalCenter: parent.verticalCenter - anchors.left: parent.left - anchors.leftMargin: UM.Theme.getSize("setting_unit_margin").width - anchors.right: downArrow.left - rightPadding: swatch.width + UM.Theme.getSize("setting_unit_margin").width - - text: supportExtruderCombobox.currentText - textFormat: Text.PlainText - color: enabled ? UM.Theme.getColor("setting_control_text") : UM.Theme.getColor("setting_control_disabled_text") - - elide: Text.ElideLeft - - - background: Rectangle - { - id: swatch - height: Math.round(parent.height / 2) - width: height - radius: Math.round(width / 2) - anchors.right: parent.right - anchors.verticalCenter: parent.verticalCenter - anchors.rightMargin: UM.Theme.getSize("thin_margin").width - - color: supportExtruderCombobox.color - } - } - - popup: Popup - { - y: supportExtruderCombobox.height - UM.Theme.getSize("default_lining").height - width: supportExtruderCombobox.width - implicitHeight: contentItem.implicitHeight + 2 * UM.Theme.getSize("default_lining").width - padding: UM.Theme.getSize("default_lining").width - - contentItem: ListView - { - implicitHeight: contentHeight - - ScrollBar.vertical: UM.ScrollBar {} - clip: true - model: supportExtruderCombobox.popup.visible ? supportExtruderCombobox.delegateModel : null - currentIndex: supportExtruderCombobox.highlightedIndex - } - - background: Rectangle - { - color: UM.Theme.getColor("setting_control") - border.color: UM.Theme.getColor("setting_control_border") - } - } - - delegate: ItemDelegate - { - width: supportExtruderCombobox.width - 2 * UM.Theme.getSize("default_lining").width - height: supportExtruderCombobox.height - highlighted: supportExtruderCombobox.highlightedIndex == index - - contentItem: UM.Label - { - anchors.fill: parent - anchors.leftMargin: UM.Theme.getSize("setting_unit_margin").width - anchors.rightMargin: UM.Theme.getSize("setting_unit_margin").width - - text: model.name - color: model.enabled ? UM.Theme.getColor("setting_control_text"): UM.Theme.getColor("action_button_disabled_text") - - elide: Text.ElideRight - rightPadding: swatch.width + UM.Theme.getSize("setting_unit_margin").width - - background: Rectangle - { - id: swatch - height: Math.round(parent.height / 2) - width: height - radius: Math.round(width / 2) - anchors.right: parent.right - anchors.verticalCenter: parent.verticalCenter - anchors.rightMargin: UM.Theme.getSize("thin_margin").width - - color: supportExtruderCombobox.model.getItem(index).color - } - } - - background: Rectangle - { - color: parent.highlighted ? UM.Theme.getColor("setting_control_highlight") : "transparent" - border.color: parent.highlighted ? UM.Theme.getColor("setting_control_border_highlight") : "transparent" - } - } - } - } - - property var extruderModel: CuraApplication.getExtrudersModel() - - - UM.SettingPropertyProvider + property UM.SettingPropertyProvider supportEnabled: UM.SettingPropertyProvider { id: supportEnabled containerStack: Cura.MachineManager.activeMachine @@ -303,21 +34,45 @@ Item storeIndex: 0 } - UM.SettingPropertyProvider - { - id: supportExtruderNr - containerStack: Cura.MachineManager.activeMachine - key: "support_extruder_nr" - watchedProperties: [ "value" ] - storeIndex: 0 - } + contents: [ + RecommendedSettingItem + { + settingName: catalog.i18nc("@action:label", "Support Type") + 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 - UM.SettingPropertyProvider - { - id: machineExtruderCount - containerStack: Cura.MachineManager.activeMachine - key: "machine_extruder_count" - watchedProperties: ["value"] - storeIndex: 0 - } + settingControl: Cura.SingleSettingComboBox + { + width: parent.width + settingName: "support_structure" + } + }, + RecommendedSettingItem + { + Layout.preferredHeight: childrenRect.height + settingName: catalog.i18nc("@action:label", "Print with") + tooltipText: catalog.i18nc("@label", "The extruder train to use for printing the support. This is used in multi-extrusion.") + // Hide this component when there is only one extruder + enabled: Cura.ExtruderManager.enabledExtruderCount > 1 + visible: Cura.ExtruderManager.enabledExtruderCount > 1 + isCompressed: enableSupportRow.isCompressed || Cura.ExtruderManager.enabledExtruderCount <= 1 + + settingControl: Cura.SingleSettingExtruderSelectorBar + { + extruderSettingName: "support_extruder_nr" + } + }, + RecommendedSettingItem + { + settingName: catalog.i18nc("@action:label", "Placement") + tooltipText: catalog.i18nc("support_type description", "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.") + isCompressed: enableSupportRow.isCompressed + + settingControl: Cura.SingleSettingComboBox + { + width: parent.width + settingName: "support_type" + } + } + ] } diff --git a/resources/qml/PrintSetupTooltip.qml b/resources/qml/PrintSetupTooltip.qml index af4280342c..195f7fb204 100644 --- a/resources/qml/PrintSetupTooltip.qml +++ b/resources/qml/PrintSetupTooltip.qml @@ -11,7 +11,7 @@ UM.PointingRectangle id: base property real sourceWidth: 0 width: UM.Theme.getSize("tooltip").width - height: textScroll.height + UM.Theme.getSize("tooltip_margins").height * 2 + height: textScroll.height + UM.Theme.getSize("tooltip_margins").height color: UM.Theme.getColor("tooltip") arrowSize: UM.Theme.getSize("default_arrow").width diff --git a/resources/qml/PrinterOutput/HeatedBedBox.qml b/resources/qml/PrinterOutput/HeatedBedBox.qml index 8a1d13524f..172606c56d 100644 --- a/resources/qml/PrinterOutput/HeatedBedBox.qml +++ b/resources/qml/PrinterOutput/HeatedBedBox.qml @@ -32,7 +32,7 @@ Item UM.Label { id: bedTargetTemperature - text: printerModel != null ? printerModel.targetBedTemperature + "°C" : "" + text: printerModel != null ? Math.round(printerModel.targetBedTemperature) + "°C" : "" font: UM.Theme.getFont("default_bold") color: UM.Theme.getColor("text_inactive") anchors.right: parent.right @@ -66,7 +66,7 @@ Item UM.Label { id: bedCurrentTemperature - text: printerModel != null ? printerModel.bedTemperature + "°C" : "" + text: printerModel != null ? Math.round(printerModel.bedTemperature) + "°C" : "" font: UM.Theme.getFont("large_bold") anchors.right: bedTargetTemperature.left anchors.top: parent.top @@ -293,4 +293,4 @@ Item } } } -} \ No newline at end of file +} diff --git a/resources/qml/PrinterSelector/MachineListButton.qml b/resources/qml/PrinterSelector/MachineListButton.qml new file mode 100644 index 0000000000..70e7564aa9 --- /dev/null +++ b/resources/qml/PrinterSelector/MachineListButton.qml @@ -0,0 +1,139 @@ +// Copyright (c) 2022 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 +import QtQuick.Controls 2.3 + +import UM 1.5 as UM +import Cura 1.0 as Cura + +Loader { + id: loader + width: parent.width + sourceComponent: { + switch (model.componentType) { + case "HIDE_BUTTON": + hideButtonComponent + break; + case "SHOW_BUTTON": + showButtonComponent + break; + case "MACHINE": + machineListButtonComponent + break; + default: + } + } + property var onClicked + + Component + { + id: hideButtonComponent + Cura.TertiaryButton + { + text: catalog.i18nc("@label", "Hide all connected printers") + height: UM.Theme.getSize("large_button").height + onClicked: if (loader.onClicked) loader.onClicked() + iconSource: UM.Theme.getIcon("ChevronSingleUp") + width: parent.width + } + } + + Component + { + id: showButtonComponent + Cura.TertiaryButton + { + text: catalog.i18nc("@label", "Show all connected printers") + height: UM.Theme.getSize("large_button").height + onClicked: if (loader.onClicked) loader.onClicked() + iconSource: UM.Theme.getIcon("ChevronSingleDown") + width: parent.width + } + } + + Component + { + id: machineListButtonComponent + + Button + { + id: machineListButton + + onClicked: if (loader.onClicked) loader.onClicked() + + width: parent.width + height: UM.Theme.getSize("large_button").height + leftPadding: UM.Theme.getSize("default_margin").width + rightPadding: UM.Theme.getSize("default_margin").width + checkable: true + hoverEnabled: true + + contentItem: Item + { + width: machineListButton.width - machineListButton.leftPadding - machineListButton.rightPadding + height: UM.Theme.getSize("action_button").height + + UM.ColorImage + { + id: printerIcon + height: UM.Theme.getSize("medium_button").height + width: UM.Theme.getSize("medium_button").width + color: UM.Theme.getColor("machine_selector_printer_icon") + visible: model.isAbstractMachine || !model.isOnline + source: model.isAbstractMachine ? UM.Theme.getIcon("PrinterTriple", "medium") : UM.Theme.getIcon("Printer", "medium") + + anchors + { + left: parent.left + verticalCenter: parent.verticalCenter + } + } + + UM.Label + { + id: buttonText + anchors + { + left: printerIcon.right + right: printerCount.left + verticalCenter: parent.verticalCenter + leftMargin: UM.Theme.getSize("default_margin").width + } + text: model.name ? model.name : "" + font: model.isAbstractMachine ? UM.Theme.getFont("medium_bold") : UM.Theme.getFont("medium") + visible: text != "" + elide: Text.ElideRight + } + + Rectangle + { + id: printerCount + color: UM.Theme.getColor("background_2") + radius: height + width: height + anchors + { + right: parent.right + top: buttonText.top + bottom: buttonText.bottom + } + visible: model.isAbstractMachine ? model.isAbstractMachine : false + + UM.Label + { + text: model.machineCount ? model.machineCount : "" + anchors.centerIn: parent + font: UM.Theme.getFont("default_bold") + } + } + } + + background: Rectangle + { + id: backgroundRect + color: machineListButton.hovered ? UM.Theme.getColor("action_button_hovered") : "transparent" + } + } + } +} diff --git a/resources/qml/PrinterSelector/MachineSelector.qml b/resources/qml/PrinterSelector/MachineSelector.qml index 77cd2be409..b8b27049f6 100644 --- a/resources/qml/PrinterSelector/MachineSelector.qml +++ b/resources/qml/PrinterSelector/MachineSelector.qml @@ -11,12 +11,29 @@ Cura.ExpandablePopup { id: machineSelector - property bool isNetworkPrinter: Cura.MachineManager.activeMachineHasNetworkConnection - property bool isConnectedCloudPrinter: Cura.MachineManager.activeMachineHasCloudConnection - property bool isCloudRegistered: Cura.MachineManager.activeMachineHasCloudRegistration - property bool isGroup: Cura.MachineManager.activeMachineIsGroup + property Cura.MachineManager machineManager + property bool isNetworkPrinter: machineManager.activeMachineHasNetworkConnection + property bool isConnectedCloudPrinter: machineManager.activeMachineHasCloudConnection + property bool isCloudRegistered: machineManager.activeMachineHasCloudRegistration + property bool isGroup: machineManager.activeMachineIsGroup + property string machineName: { + if (isNetworkPrinter && machineManager.activeMachineNetworkGroupName != "") + { + return machineManager.activeMachineNetworkGroupName + } + if (machineManager.activeMachine != null) + { + return machineManager.activeMachine.name + } + return "" + } - readonly property string connectionStatus: { + property alias machineListModel: machineSelectorList.model + property alias onSelectPrinter: machineSelectorList.onSelectPrinter + + property list buttons + + property string connectionStatus: { if (isNetworkPrinter) { return "printer_connected" @@ -42,7 +59,7 @@ Cura.ExpandablePopup { if (Cura.API.account.isLoggedIn) { - if (Cura.MachineManager.activeMachineIsLinkedToCurrentAccount) + if (machineManager.activeMachineIsLinkedToCurrentAccount) { return catalog.i18nc("@status", "The cloud printer is offline. Please check if the printer is turned on and connected to the internet.") } @@ -55,7 +72,8 @@ Cura.ExpandablePopup { return catalog.i18nc("@status", "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer.") } - } else + } + else { return catalog.i18nc("@status", "The cloud connection is currently unavailable. Please check your internet connection.") } @@ -77,18 +95,8 @@ Cura.ExpandablePopup headerItem: Cura.IconWithText { - text: - { - if (isNetworkPrinter && Cura.MachineManager.activeMachineNetworkGroupName != "") - { - return Cura.MachineManager.activeMachineNetworkGroupName - } - if(Cura.MachineManager.activeMachine != null) - { - return Cura.MachineManager.activeMachine.name - } - return "" - } + text: machineName + source: { if (isGroup) @@ -140,7 +148,7 @@ Cura.ExpandablePopup color: connectionStatus == "printer_cloud_not_available" ? UM.Theme.getColor("cloud_unavailable") : UM.Theme.getColor("primary") - visible: isNetworkPrinter || isCloudRegistered + visible: (isNetworkPrinter || isCloudRegistered) && source != "" // Make a themable circle in the background so we can change it in other themes Rectangle @@ -156,7 +164,8 @@ Cura.ExpandablePopup } - MouseArea // Connection status tooltip hover area + // Connection status tooltip hover area + MouseArea { id: connectionStatusTooltipHoverArea anchors.fill: parent @@ -189,11 +198,14 @@ Cura.ExpandablePopup } } + property int minDropDownWidth: UM.Theme.getSize("machine_selector_widget_content").width + property int maxDropDownHeight: UM.Theme.getSize("machine_selector_widget_content").height + contentItem: Item { id: popup - implicitWidth: UM.Theme.getSize("machine_selector_widget_content").width - implicitHeight: Math.min(machineSelectorList.contentHeight + separator.height + buttonRow.height, UM.Theme.getSize("machine_selector_widget_content").height) //Maximum height is the theme entry. + implicitWidth: Math.max(machineSelector.width, minDropDownWidth) + implicitHeight: Math.min(machineSelectorList.contentHeight + separator.height + buttonRow.height, maxDropDownHeight) //Maximum height is the theme entry. MachineSelectorList { id: machineSelectorList @@ -223,43 +235,31 @@ Cura.ExpandablePopup id: buttonRow anchors.bottom: parent.bottom - anchors.horizontalCenter: parent.horizontalCenter + anchors.left: parent.left + anchors.right: parent.right + padding: UM.Theme.getSize("default_margin").width spacing: UM.Theme.getSize("default_margin").width - Cura.SecondaryButton - { - id: addPrinterButton - leftPadding: UM.Theme.getSize("default_margin").width - rightPadding: UM.Theme.getSize("default_margin").width - text: catalog.i18nc("@button", "Add printer") - // The maximum width of the button is half of the total space, minus the padding of the parent, the left - // padding of the component and half the spacing because of the space between buttons. - fixedWidthMode: true - width: UM.Theme.getSize("machine_selector_widget_content").width / 2 - leftPadding - onClicked: - { - toggleContent() - Cura.Actions.addMachine.trigger() - } - } - - Cura.SecondaryButton - { - id: managePrinterButton - leftPadding: UM.Theme.getSize("default_margin").width - rightPadding: UM.Theme.getSize("default_margin").width - text: catalog.i18nc("@button", "Manage printers") - fixedWidthMode: true - // The maximum width of the button is half of the total space, minus the padding of the parent, the right - // padding of the component and half the spacing because of the space between buttons. - width: UM.Theme.getSize("machine_selector_widget_content").width / 2 - leftPadding - onClicked: - { - toggleContent() - Cura.Actions.configureMachines.trigger() - } - } + children: buttons } + + states: [ + State { + name: "noButtons" + when: !buttons || buttons.length == 0 + PropertyChanges + { + target: buttonRow + height: 0 + padding: 0 + } + PropertyChanges + { + target: separator + height: 0 + } + } + ] } } diff --git a/resources/qml/PrinterSelector/MachineSelectorList.qml b/resources/qml/PrinterSelector/MachineSelectorList.qml index ae2706f9ab..ddf9586065 100644 --- a/resources/qml/PrinterSelector/MachineSelectorList.qml +++ b/resources/qml/PrinterSelector/MachineSelectorList.qml @@ -10,9 +10,9 @@ import Cura 1.0 as Cura ListView { id: listView - model: Cura.GlobalStacksModel {} - section.property: "hasRemoteConnection" + section.property: "category" property real contentHeight: childrenRect.height + property var onSelectPrinter ScrollBar.vertical: UM.ScrollBar { @@ -21,26 +21,42 @@ ListView section.delegate: UM.Label { - text: section == "true" ? catalog.i18nc("@label", "Connected printers") : catalog.i18nc("@label", "Preset printers") - width: parent.width - scrollBar.width + text: { + switch (section) + { + case "connected": + return catalog.i18nc("@label", "Connected printers"); + case "other": + return catalog.i18nc("@label", "Other printers"); + default: + return catalog.i18nc("@label", "Other printers"); + } + } height: UM.Theme.getSize("action_button").height + width: parent.width - scrollBar.width leftPadding: UM.Theme.getSize("default_margin").width font: UM.Theme.getFont("medium") color: UM.Theme.getColor("text_medium") } - delegate: MachineSelectorButton + delegate: MachineListButton { - text: model.name ? model.name : "" width: listView.width - scrollBar.width - outputDevice: Cura.MachineManager.printerOutputDevices.length >= 1 ? Cura.MachineManager.printerOutputDevices[0] : null - checked: Cura.MachineManager.activeMachine ? Cura.MachineManager.activeMachine.id == model.id : false - - onClicked: + onClicked: function() { - toggleContent() - Cura.MachineManager.setActiveMachine(model.id) + switch (model.componentType) { + case "HIDE_BUTTON": + listView.model.setShowCloudPrinters(false); + break; + case "SHOW_BUTTON": + listView.model.setShowCloudPrinters(true); + break; + case "MACHINE": + if (typeof onSelectPrinter === "function") onSelectPrinter(model); + break; + default: + } } } } diff --git a/resources/qml/PrinterSelector/PrintSelectorCard.qml b/resources/qml/PrinterSelector/PrintSelectorCard.qml new file mode 100644 index 0000000000..a4cf423466 --- /dev/null +++ b/resources/qml/PrinterSelector/PrintSelectorCard.qml @@ -0,0 +1,145 @@ +// Copyright (c) 2022 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.2 +import QtQuick.Controls 2.9 +import QtQuick.Layouts 2.10 + +import UM 1.5 as UM +import Cura 1.0 as Cura + +Rectangle +{ + property alias name: printerTitle.text + property string unique_id + property var extruders + property var manager + + + width: parent.width + height: childrenRect.height + 2 * UM.Theme.getSize("default_margin").height + + color: UM.Theme.getColor("background_1") + border.color: UM.Theme.getColor("border_main") + border.width: UM.Theme.getSize("default_lining").width + + RowLayout + { + anchors.left: parent.left + anchors.right: parent.right + anchors.top: parent.top + anchors.margins: UM.Theme.getSize("default_margin").width + + Cura.IconWithText + { + id: printerTitle + + Layout.preferredWidth: parent.width / 3 + Layout.fillWidth: true + Layout.alignment: extruders[0].materials.length > 1 ? Qt.AlignTop: Qt.AlignCenter + Layout.fillHeight: false + + source: UM.Theme.getIcon("Printer") + spacing: UM.Theme.getSize("thin_margin").width + iconSize: UM.Theme.getSize("medium_button_icon").width + font: UM.Theme.getFont("medium_bold") + } + + ColumnLayout + { + id: extruderInformation + Layout.fillWidth: true + Layout.preferredWidth: parent.width / 2 + Layout.alignment: Qt.AlignTop + spacing: UM.Theme.getSize("narrow_margin").width + + Repeater + { + model: extruders + + Item + { + Layout.preferredWidth: extruderInformation.width + height: childrenRect.height + + Cura.ExtruderIcon + { + id: extruderIcon + anchors.top: parent.top + anchors.left: parent.left + materialColor: modelData.materials.length == 1 ? modelData.materials[0].hexcolor : "white" + iconSize: UM.Theme.getSize("medium_button_icon").width + } + + UM.Label + { + id: extruderCore + anchors.verticalCenter: extruderIcon.verticalCenter + anchors.left: extruderIcon.right + anchors.leftMargin: UM.Theme.getSize("default_margin").width + text: modelData.core + font: UM.Theme.getFont("default_bold") + } + + UM.Label + { + id: singleMaterialText + anchors.left: extruderCore.right + anchors.right: parent.right + anchors.verticalCenter: extruderCore.verticalCenter + anchors.leftMargin: UM.Theme.getSize("default_margin").width + text: modelData.materials.length == 1 ? `${modelData.materials[0].brand} ${modelData.materials[0].name}` : "" + visible: modelData.materials.length == 1 + } + ColumnLayout + { + id: multiMaterialText + anchors.top: extruderCore.bottom + anchors.left: extruderCore.left + anchors.topMargin: UM.Theme.getSize("narrow_margin").height + visible: modelData.materials.length > 1 + Repeater + { + model: modelData.materials.length > 1 ? modelData.materials: null + UM.Label + { + text: `${modelData.brand} ${modelData.name}` + } + } + } + } + } + } + + Button + { + id: printButton + + implicitWidth: UM.Theme.getSize("large_button").width + implicitHeight: implicitWidth + Layout.alignment: extruders[0].materials.length > 1 ? Qt.AlignTop: Qt.AlignCenter + padding: 0 + + background: Rectangle + { + border.width: UM.Theme.getSize("default_lining").width + border.color: UM.Theme.getColor("border_accent_1") + color: printButton.hovered ? UM.Theme.getColor("toolbar_button_hover"): UM.Theme.getColor("background_1") + } + + contentItem: Item + { + UM.ColorImage + { + anchors.centerIn: parent + source: UM.Theme.getIcon("Printer") + color: UM.Theme.getColor("border_accent_1") + width: UM.Theme.getSize("medium_button_icon").width + height: width + } + } + + onClicked: manager.printerSelected(unique_id) + } + } +} diff --git a/resources/qml/Settings/SettingCheckBox.qml b/resources/qml/Settings/SettingCheckBox.qml index 215d2be1be..3aba5b7ecf 100644 --- a/resources/qml/Settings/SettingCheckBox.qml +++ b/resources/qml/Settings/SettingCheckBox.qml @@ -15,7 +15,13 @@ SettingItem contents: MouseArea { id: control - anchors.fill: parent + anchors + { + top: parent.top + bottom: parent.bottom + left: parent.left + } + width: UM.Theme.getSize("checkbox").width hoverEnabled: true property bool checked: diff --git a/resources/qml/Settings/SettingComboBox.qml b/resources/qml/Settings/SettingComboBox.qml index cbabb3ffd4..c57c0a1548 100644 --- a/resources/qml/Settings/SettingComboBox.qml +++ b/resources/qml/Settings/SettingComboBox.qml @@ -18,6 +18,7 @@ SettingItem model: definition.options textRole: "value" + forceHighlight: base.hovered anchors.fill: parent diff --git a/resources/qml/Settings/SettingExtruder.qml b/resources/qml/Settings/SettingExtruder.qml index 567161b8f6..63413aa9bd 100644 --- a/resources/qml/Settings/SettingExtruder.qml +++ b/resources/qml/Settings/SettingExtruder.qml @@ -17,6 +17,8 @@ SettingItem id: control anchors.fill: parent + forceHighlight: base.hovered + property var extrudersModel: CuraApplication.getExtrudersModel() model: extrudersModel diff --git a/resources/qml/Settings/SettingItem.qml b/resources/qml/Settings/SettingItem.qml index 228de4a9d6..1d8ad654e3 100644 --- a/resources/qml/Settings/SettingItem.qml +++ b/resources/qml/Settings/SettingItem.qml @@ -115,7 +115,16 @@ Item onExited: { - if (controlContainer.item && controlContainer.item.hovered) + if (controlContainer.children[0] && controlContainer.children[0].hovered) + { + return + } + + // Don't trigger the hide if either of the nested buttons is hidden. This is caused by a bug in QT + // Documentation claims that nested mouse events don't trigger the onExit, but this is only true if they + // have a *direct* parent child relationship. In this case there are rows and other visual layouts in + // between which messes this up. + if(linkedSettingIcon.hovered || revertButton.hovered || inheritButton.hovered) { return } @@ -129,10 +138,7 @@ Item interval: 500 repeat: false - onTriggered: - { - base.showTooltip(base.createTooltipText()) - } + onTriggered: base.showTooltip(base.createTooltipText()) } UM.Label @@ -150,7 +156,7 @@ Item color: UM.Theme.getColor("setting_control_text") opacity: (definition.visible) ? 1 : 0.5 - // emphasize the setting if it has a value in the user or quality profile + // Emphasize the setting if it has a value in the user or quality profile font: base.doQualityUserSettingEmphasis && base.stackLevel !== undefined && base.stackLevel <= 1 ? UM.Theme.getFont("default_italic") : UM.Theme.getFont("default") } @@ -209,7 +215,7 @@ Item height: UM.Theme.getSize("small_button_icon").height width: height - color: UM.Theme.getColor("setting_control_button") + color: UM.Theme.getColor("accent_1") hoverColor: UM.Theme.getColor("setting_control_button_hover") iconSource: UM.Theme.getIcon("ArrowReset") diff --git a/resources/qml/Settings/SettingOptionalExtruder.qml b/resources/qml/Settings/SettingOptionalExtruder.qml index 22f03d44a2..a9fdc626b9 100644 --- a/resources/qml/Settings/SettingOptionalExtruder.qml +++ b/resources/qml/Settings/SettingOptionalExtruder.qml @@ -23,6 +23,7 @@ SettingItem { id: control anchors.fill: parent + forceHighlight: base.hovered model: base.extrudersWithOptionalModel diff --git a/resources/qml/Settings/SettingTextField.qml b/resources/qml/Settings/SettingTextField.qml index f0e3b2cacb..d8e90e4951 100644 --- a/resources/qml/Settings/SettingTextField.qml +++ b/resources/qml/Settings/SettingTextField.qml @@ -4,7 +4,7 @@ import QtQuick 2.15 import QtQuick.Controls 2.15 -import UM 1.5 as UM +import UM 1.7 as UM SettingItem { @@ -14,6 +14,11 @@ SettingItem property string textBeforeEdit property bool textHasChanged property bool focusGainedByClick: false + + readonly property UM.IntValidator intValidator: UM.IntValidator {} + readonly property UM.FloatValidator floatValidator: UM.FloatValidator {} + readonly property UM.IntListValidator intListValidator: UM.IntListValidator {} + onFocusReceived: { textHasChanged = false; @@ -153,13 +158,29 @@ SettingItem selectionColor: UM.Theme.getColor("text_selection") selectByMouse: true - maximumLength: (definition.type == "str" || definition.type == "[int]") ? -1 : 10 + maximumLength: (definition.type == "str" || definition.type == "[int]") ? -1 : 12 // Since [int] & str don't have a max length, they need to be clipped (since clipping is expensive, this // should be done as little as possible) clip: definition.type == "str" || definition.type == "[int]" - validator: RegularExpressionValidator { regularExpression: (definition.type == "[int]") ? /^\[?(\s*-?[0-9]{0,9}\s*,)*(\s*-?[0-9]{0,9})\s*\]?$/ : (definition.type == "int") ? /^-?[0-9]{0,10}$/ : (definition.type == "float") ? /^-?[0-9]{0,9}[.,]?[0-9]{0,3}$/ : /^.*$/ } // definition.type property from parent loader used to disallow fractional number entry + validator: RegularExpressionValidator + { + regularExpression: + { + switch (definition.type) + { + case "[int]": + return new RegExp(intListValidator.regexString) + case "int": + return new RegExp(intValidator.regexString) + case "float": + return new RegExp(floatValidator.regexString) + default: + return new RegExp("^.*$") + } + } + } Binding { diff --git a/resources/qml/Toolbar.qml b/resources/qml/Toolbar.qml index 6ecdc9dce0..fd48ef7448 100644 --- a/resources/qml/Toolbar.qml +++ b/resources/qml/Toolbar.qml @@ -5,7 +5,7 @@ import QtQuick 2.2 import QtQuick.Controls 2.3 import UM 1.5 as UM -import Cura 1.0 as Cura +import Cura 1.7 as Cura Item { @@ -29,13 +29,13 @@ Item anchors { fill: toolButtons - leftMargin: -radius - border.width - rightMargin: -border.width - topMargin: -border.width - bottomMargin: -border.width + leftMargin: -radius - border.width // Removes border on left side } radius: UM.Theme.getSize("default_radius").width - color: UM.Theme.getColor("lining") + color: UM.Theme.getColor("toolbar_background") + border.color: UM.Theme.getColor("lining") + border.width: UM.Theme.getSize("default_lining").width + } Column @@ -111,13 +111,12 @@ Item anchors { fill: extruderButtons - leftMargin: -radius - border.width - rightMargin: -border.width - topMargin: -border.width - bottomMargin: -border.width + leftMargin: -radius - border.width // Removes border on left side } radius: UM.Theme.getSize("default_radius").width - color: UM.Theme.getColor("lining") + color: UM.Theme.getColor("toolbar_background") + border.color: UM.Theme.getColor("lining") + border.width: UM.Theme.getSize("default_lining").width visible: extrudersModel.items.length > 1 } @@ -135,11 +134,21 @@ Item height: childrenRect.height model: extrudersModel.items.length > 1 ? extrudersModel : 0 - delegate: ExtruderButton + delegate: Cura.ExtruderButton { extruder: model - isTopElement: extrudersModel.getItem(0).id == model.id - isBottomElement: extrudersModel.getItem(extrudersModel.rowCount() - 1).id == model.id + isTopElement: extrudersModel.getItem(0).id === model.id + isBottomElement: extrudersModel.getItem(extrudersModel.rowCount() - 1).id === model.id + text: catalog.i18ncp("@label %1 is filled in with the name of an extruder", "Print Selected Model with %1", "Print Selected Models with %1", UM.Selection.selectionCount).arg(extruder.name) + checked: Cura.ExtruderManager.selectedObjectExtruders.indexOf(extruder.id) !== -1 + enabled: UM.Selection.hasSelection && extruder.stack.isEnabled + font: UM.Theme.getFont("small_emphasis") + + onClicked: + { + forceActiveFocus() //First grab focus, so all the text fields are updated + CuraActions.setExtruderForSelection(extruder.id) + } } } } diff --git a/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml b/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml index 1d868d72ef..b2bdf43915 100644 --- a/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml +++ b/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml @@ -17,11 +17,9 @@ Item id: base // The currently selected machine item in the local machine list. - property var currentItem: (machineList.currentIndex >= 0) - ? machineList.model.getItem(machineList.currentIndex) - : null + property var currentItem: machineList.currentIndex >= 0 ? machineList.model.getItem(machineList.currentIndex) : null // The currently active (expanded) section/category, where section/category is the grouping of local machine items. - property string currentSection: "Ultimaker B.V." + property var currentSections: new Set() // By default (when this list shows up) we always expand the "Ultimaker" section. property var preferredCategories: { "Ultimaker B.V.": -2, @@ -37,16 +35,16 @@ Item printerName = currentItem == null ? "" : currentItem.name } - function updateCurrentItemUponSectionChange() + function updateCurrentItemUponSectionChange(section) { // Find the first machine from this section - for (var i = 0; i < machineList.count; i++) + for (var i = 0; i < machineList.count; i ++) { - var item = machineList.model.getItem(i) - if (item.section == base.currentSection) + const item = machineList.model.getItem(i); + if (item.section == section) { - machineList.currentIndex = i - break + machineList.currentIndex = i; + break; } } } @@ -68,7 +66,9 @@ Item Component.onCompleted: { - updateCurrentItemUponSectionChange() + const initialSection = "Ultimaker B.V."; + base.currentSections.add(initialSection); + updateCurrentItemUponSectionChange(initialSection); } Row @@ -102,7 +102,7 @@ Item height: UM.Theme.getSize("action_button").height text: section - property bool isActive: base.currentSection == section + property bool isActive: base.currentSections.has(section) background: Rectangle { @@ -122,7 +122,7 @@ Item width: UM.Theme.getSize("standard_arrow").width height: UM.Theme.getSize("standard_arrow").height color: UM.Theme.getColor("text") - source: base.currentSection == section ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleRight") + source: isActive ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleRight") } UM.Label @@ -137,8 +137,17 @@ Item onClicked: { - base.currentSection = section - base.updateCurrentItemUponSectionChange() + if (base.currentSections.has(section)) + { + base.currentSections.delete(section); + } + else + { + base.currentSections.add(section); + base.updateCurrentItemUponSectionChange(section); + } + // Trigger update on base.currentSections + base.currentSections = base.currentSections; } } @@ -157,7 +166,7 @@ Item checked: machineList.currentIndex == index text: name - visible: base.currentSection.toLowerCase() === section.toLowerCase() + visible: base.currentSections.has(section) onClicked: machineList.currentIndex = index } } diff --git a/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml b/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml index 36c670f462..3d138e3d2e 100644 --- a/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml +++ b/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml @@ -175,21 +175,6 @@ Item onClicked: base.addByIpButtonClicked() } - Cura.SecondaryButton - { - id: addCloudPrinterButton - anchors.left: addPrinterByIpButton.right - anchors.leftMargin: UM.Theme.getSize("default_margin").width - anchors.verticalCenter: parent.verticalCenter - text: catalog.i18nc("@label", "Add cloud printer") - height: UM.Theme.getSize("message_action_button").height - onClicked: { - CuraApplication.getDiscoveredCloudPrintersModel().clear() - Cura.API.account.sync(true) - base.addCloudPrinterButtonClicked() - } - } - Item { id: troubleshootingButton diff --git a/resources/qml/WelcomePages/AddPrinterByIpContent.qml b/resources/qml/WelcomePages/AddPrinterByIpContent.qml index 90fdd2be91..9cc5b85f04 100644 --- a/resources/qml/WelcomePages/AddPrinterByIpContent.qml +++ b/resources/qml/WelcomePages/AddPrinterByIpContent.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.15 @@ -193,12 +193,12 @@ Item if (addPrinterByIpScreen.hasRequestFinished) { return catalog.i18nc("@label", "Could not connect to device.") + "

    " - + catalog.i18nc("@label", "Can't connect to your Ultimaker printer?") + ""; + + catalog.i18nc("@label", "Can't connect to your UltiMaker printer?") + ""; } else { return catalog.i18nc("@label", "The printer at this address has not responded yet.") + "

    " - + catalog.i18nc("@label", "Can't connect to your Ultimaker printer?") + ""; + + catalog.i18nc("@label", "Can't connect to your UltiMaker printer?") + ""; } } onLinkActivated: Qt.openUrlExternally(link) diff --git a/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml b/resources/qml/WelcomePages/AddThirdPartyPrinter.qml similarity index 85% rename from resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml rename to resources/qml/WelcomePages/AddThirdPartyPrinter.qml index 83a38eab7a..2c6c3a19bf 100644 --- a/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml +++ b/resources/qml/WelcomePages/AddThirdPartyPrinter.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 @@ -15,22 +15,13 @@ Item { UM.I18nCatalog { id: catalog; name: "cura" } - UM.Label - { - id: titleLabel - anchors.top: parent.top - anchors.horizontalCenter: parent.horizontalCenter - horizontalAlignment: Text.AlignHCenter - text: catalog.i18nc("@label", "Add a printer") - color: UM.Theme.getColor("primary_button") - font: UM.Theme.getFont("huge") - } + property var goToUltimakerPrinter DropDownWidget { id: addNetworkPrinterDropDown - anchors.top: titleLabel.bottom + anchors.top: parent.top anchors.left: parent.left anchors.right: parent.right anchors.topMargin: UM.Theme.getSize("wide_margin").height @@ -103,18 +94,13 @@ Item } } - // This "Back" button only shows in the "Add Machine" dialog, which has "previous_page_button_text" set to "Cancel" Cura.SecondaryButton { id: backButton anchors.left: parent.left anchors.bottom: parent.bottom - visible: base.currentItem.previous_page_button_text ? true : false - text: base.currentItem.previous_page_button_text ? base.currentItem.previous_page_button_text : "" - onClicked: - { - base.endWizard() - } + text: catalog.i18nc("@button", "Add UltiMaker printer via Digital Factory") + onClicked: goToUltimakerPrinter() } Cura.PrimaryButton diff --git a/resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml b/resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml new file mode 100644 index 0000000000..2e02e35c46 --- /dev/null +++ b/resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml @@ -0,0 +1,80 @@ +// Copyright (c) 2022 UltiMaker +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 +import QtQuick.Controls 2.3 +import QtQuick.Layouts 1.3 + +import UM 1.5 as UM +import Cura 1.1 as Cura + + +// +// This component contains the content for the "Add a printer" (network) page of the welcome on-boarding process. +// +Control +{ + UM.I18nCatalog { id: catalog; name: "cura" } + + property var goToUltimakerPrinter + property var goToThirdPartyPrinter + + contentItem: ColumnLayout + { + Layout.fillWidth: true + Layout.fillHeight: true + + UM.Label + { + text: catalog.i18nc("@label", "In order to start using Cura you will need to configure a printer.") + font: UM.Theme.getFont("default") + Layout.alignment: Qt.AlignTop + } + + UM.Label + { + text: catalog.i18nc("@label", "What printer would you like to setup?") + font: UM.Theme.getFont("default_bold") + Layout.alignment: Qt.AlignTop + } + + RowLayout + { + spacing: UM.Theme.getSize("wide_margin").width + Layout.preferredWidth: childrenRect.width + Layout.preferredHeight: childrenRect.height + Layout.topMargin: UM.Theme.getSize("wide_margin").height + Layout.bottomMargin: UM.Theme.getSize("wide_margin").height + Layout.alignment: Qt.AlignTop | Qt.AlignHCenter + + PrinterCard + { + id: ultimakerPrinterCard + Layout.alignment: Qt.AlignBottom + onClicked: goToUltimakerPrinter + text: catalog.i18nc("@button", "UltiMaker printer") + imageSource: UM.Theme.getImage("ultimaker_printer") + } + + PrinterCard + { + id: thrirdPartyPrinterCard + Layout.alignment: Qt.AlignBottom + onClicked: goToThirdPartyPrinter + text: catalog.i18nc("@button", "Non UltiMaker printer") + imageSource: UM.Theme.getImage("third_party_printer") + } + } + + Cura.TertiaryButton + { + id: learnMoreButton + Layout.alignment: Qt.AlignBottom + text: catalog.i18nc("@button", "Learn more about adding printers to Cura") + iconSource: UM.Theme.getIcon("LinkExternal") + isIconOnRightSide: true + textFont: UM.Theme.getFont("small") + onClicked: Qt.openUrlExternally("https://support.ultimaker.com/hc/en-us/articles/360012019239?utm_source=cura&utm_medium=software&utm_campaign=onboarding-add-printer") + } + } +} \ No newline at end of file diff --git a/resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml b/resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml new file mode 100644 index 0000000000..104a0cc96b --- /dev/null +++ b/resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml @@ -0,0 +1,55 @@ +// Copyright (c) 2022 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 +import QtQuick.Controls 2.3 +import QtQuick.Layouts 1.3 + +import UM 1.5 as UM +import Cura 1.1 as Cura + +ColumnLayout +{ + id: root + + UM.I18nCatalog { id: catalog; name: "cura" } + + Layout.fillWidth: true + Layout.fillHeight: true + + property var goToUltimakerPrinter: () => layout.currentIndex = 1 + property var goToThirdPartyPrinter: () => layout.currentIndex = 2 + + UM.Label + { + id: title_label + Layout.fillWidth: true + Layout.bottomMargin: UM.Theme.getSize("thick_margin").height + horizontalAlignment: Text.AlignHCenter + text: catalog.i18nc("@label", "Add printer") + color: UM.Theme.getColor("primary_button") + font: UM.Theme.getFont("huge") + } + + StackLayout + { + id: layout + Layout.fillWidth: true + Layout.fillHeight: true + currentIndex: 0 + AddUltimakerOrThirdPartyPrinter + { + goToUltimakerPrinter: root.goToUltimakerPrinter + goToThirdPartyPrinter: root.goToThirdPartyPrinter + } + AddUltimakerPrinter + { + goToThirdPartyPrinter: root.goToThirdPartyPrinter + } + AddThirdPartyPrinter + { + goToUltimakerPrinter: root.goToUltimakerPrinter + + } + } +} \ No newline at end of file diff --git a/resources/qml/WelcomePages/AddUltimakerPrinter.qml b/resources/qml/WelcomePages/AddUltimakerPrinter.qml new file mode 100644 index 0000000000..ff87a72330 --- /dev/null +++ b/resources/qml/WelcomePages/AddUltimakerPrinter.qml @@ -0,0 +1,142 @@ +// Copyright (c) 2022 UltiMaker +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 +import QtQuick.Controls 2.3 +import QtQuick.Layouts 1.3 + +import UM 1.5 as UM +import Cura 1.1 as Cura + +Control +{ + UM.I18nCatalog { id: catalog; name: "cura" } + + property var goToThirdPartyPrinter + + signal cloudPrintersDetected(bool newCloudPrintersDetected) + Component.onCompleted: CuraApplication.getDiscoveredCloudPrintersModel().cloudPrintersDetectedChanged.connect(cloudPrintersDetected) + onCloudPrintersDetected: function(newCloudPrintersDetected) + { + if(newCloudPrintersDetected) + { + base.goToPage("add_cloud_printers") + } + } + + contentItem: ColumnLayout + { + Layout.fillWidth: true + UM.Label + { + Layout.fillWidth: true + text: catalog.i18nc("@label", "New UltiMaker printers can be connected to Digital Factory and monitored remotely.") + wrapMode: Text.WordWrap + } + + RowLayout + { + Layout.alignment: Qt.AlignHCenter + Layout.fillWidth: true + + Item + { + Layout.fillWidth: true + Layout.minimumWidth: childrenRect.width + Layout.preferredHeight: childrenRect.height + + Image + { + anchors.right: parent.right + source: UM.Theme.getImage("add_printer") + Layout.preferredWidth: 200 * screenScaleFactor + Layout.preferredHeight: 200 * screenScaleFactor + } + } + + ColumnLayout + { + Layout.fillHeight: true + Layout.fillWidth: true + Layout.alignment: Qt.AlignVCenter + spacing: UM.Theme.getSize("default_margin").height + + UM.Label + { + Layout.fillWidth: true + Layout.alignment: Qt.AlignTop + wrapMode: Text.WordWrap + font: UM.Theme.getFont("default_bold") + text: catalog.i18nc("@label", "If you are trying to add a new UltiMaker printer to Cura") + } + + ColumnLayout + { + spacing: 0 + Layout.fillWidth: true + + Repeater { + model: [ + catalog.i18nc("@info", "Sign in into UltiMaker Digital Factory"), + catalog.i18nc("@info", "Follow the procedure to add a new printer"), + catalog.i18nc("@info", "Your new printer will automatically appear in Cura"), + ] + UM.Label + { + Layout.alignment: Qt.AlignTop + Layout.fillWidth: true + wrapMode: Text.WordWrap + text: `${index + 1}. ${modelData}` + } + } + } + + Cura.TertiaryButton + { + id: learnMoreButton + Layout.fillWidth: true + Layout.alignment: Qt.AlignTop + leftPadding: 0 + text: catalog.i18nc("@button", "Learn more") + iconSource: UM.Theme.getIcon("LinkExternal") + isIconOnRightSide: true + textFont: UM.Theme.getFont("small") + onClicked: Qt.openUrlExternally("https://support.ultimaker.com/hc/en-us/articles/360012019239?utm_source=cura&utm_medium=software&utm_campaign=onboarding-add-printer") + } + } + } + + Control + { + Layout.alignment: Qt.AlignBottom + Layout.fillWidth: true + + contentItem: RowLayout + { + + Cura.SecondaryButton + { + id: addLocalPrinterButton + Layout.alignment: Qt.AlignLeft + text: catalog.i18nc("@button", "Add local printer") + onClicked: goToThirdPartyPrinter() + } + + Cura.PrimaryButton + { + id: signInButton + Layout.alignment: Qt.AlignRight + text: catalog.i18nc("@button", "Sign in to Digital Factory") + onClicked: function() + { + Qt.openUrlExternally("https://digitalfactory.ultimaker.com/app/printers?add_printer=true&utm_source=cura&utm_medium=software&utm_campaign=onboarding-add-printer") + text = catalog.i18nc("@button", "Waiting for new printers") + busy = true; + enabled = false; + Cura.API.account.login(); + } + } + } + } + } +} diff --git a/resources/qml/WelcomePages/CloudContent.qml b/resources/qml/WelcomePages/CloudContent.qml index cf830a9b36..54e95462e0 100644 --- a/resources/qml/WelcomePages/CloudContent.qml +++ b/resources/qml/WelcomePages/CloudContent.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 @@ -61,7 +61,7 @@ Item id: titleLabel anchors.horizontalCenter: parent.horizontalCenter horizontalAlignment: Text.AlignHCenter - text: catalog.i18nc("@label", "Sign in to the Ultimaker platform") + text: catalog.i18nc("@label", "Sign in to the UltiMaker platform") color: UM.Theme.getColor("primary_button") font: UM.Theme.getFont("huge") } @@ -172,7 +172,7 @@ Item id: communityTextLabel anchors.horizontalCenter: communityColumn.horizontalCenter width: parent.width - text: catalog.i18nc("@text", "Share ideas and get help from 48,000+ users in the Ultimaker Community") + text: catalog.i18nc("@text", "Share ideas and get help from 48,000+ users in the UltiMaker Community") horizontalAlignment: Text.AlignHCenter } } @@ -198,7 +198,7 @@ Item anchors.rightMargin: UM.Theme.getSize("default_margin").width anchors.bottom: parent.bottom - text: catalog.i18nc("@text", "Create a free Ultimaker Account") + text: catalog.i18nc("@text", "Create a free UltiMaker Account") onClicked: Qt.openUrlExternally("https://ultimaker.com/app/ultimaker-cura-account-sign-up?utm_source=cura&utm_medium=software&utm_campaign=onboarding-signup") } diff --git a/resources/qml/WelcomePages/DataCollectionsContent.qml b/resources/qml/WelcomePages/DataCollectionsContent.qml index ece437890e..3857f31bc6 100644 --- a/resources/qml/WelcomePages/DataCollectionsContent.qml +++ b/resources/qml/WelcomePages/DataCollectionsContent.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 @@ -10,18 +10,17 @@ import Cura 1.1 as Cura // // This component contains the content for the "Help us to improve Ultimaker Cura" page of the welcome on-boarding process. +// This dialog is currently only shown during on-boarding and therefore only shown in English // Item { - UM.I18nCatalog { id: catalog; name: "cura" } - UM.Label { id: titleLabel anchors.top: parent.top anchors.horizontalCenter: parent.horizontalCenter horizontalAlignment: Text.AlignHCenter - text: catalog.i18nc("@label", "Help us to improve Ultimaker Cura") + text: "Help us to improve UltiMaker Cura" color: UM.Theme.getColor("primary_button") font: UM.Theme.getFont("huge") } @@ -53,7 +52,7 @@ Item width: parent.width anchors.horizontalCenter: parent.horizontalCenter horizontalAlignment: Text.AlignHCenter - text: catalog.i18nc("@text", "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:") + text: "UltiMaker Cura collects anonymous data to improve print quality and user experience, including:" wrapMode: Text.WordWrap font: UM.Theme.getFont("medium") } @@ -65,25 +64,25 @@ Item ImageTile { - text: catalog.i18nc("@text", "Machine types") + text: "Machine types" imageSource: UM.Theme.getImage("first_run_machine_types") } ImageTile { - text: catalog.i18nc("@text", "Material usage") + text: "Material usage" imageSource: UM.Theme.getImage("first_run_material_usage") } ImageTile { - text: catalog.i18nc("@text", "Number of slices") + text: "Number of slices" imageSource: UM.Theme.getImage("first_run_number_slices") } ImageTile { - text: catalog.i18nc("@text", "Print settings") + text: "Print settings" imageSource: UM.Theme.getImage("first_run_print_settings") } } @@ -96,8 +95,8 @@ Item horizontalAlignment: Text.AlignHCenter text: { - var t = catalog.i18nc("@text", "Data collected by Ultimaker Cura will not contain any personal information.") - var t2 = catalog.i18nc("@text", "More information") + var t = "Data collected by UltiMaker Cura will not contain any personal information." + var t2 = "More information" t += " " + t2 + "" return t } @@ -115,7 +114,7 @@ Item id: getStartedButton anchors.right: parent.right anchors.bottom: parent.bottom - text: catalog.i18nc("@button", "Next") + text: "Next" onClicked: base.showNextPage() } } diff --git a/resources/qml/WelcomePages/PrinterCard.qml b/resources/qml/WelcomePages/PrinterCard.qml new file mode 100644 index 0000000000..8d0cc0dd06 --- /dev/null +++ b/resources/qml/WelcomePages/PrinterCard.qml @@ -0,0 +1,84 @@ +// Copyright (c) 2022 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 +import QtQuick.Controls 2.3 +import QtQuick.Layouts 1.3 + +import UM 1.5 as UM +import Cura 1.1 as Cura + +Control +{ + id: root + property alias text: link_text.text + property alias imageSource: image.source + property var onClicked + + states: + [ + State + { + name: "hovered"; + when: mouse_area.containsMouse + PropertyChanges + { + target: background + color: UM.Theme.getColor("monitor_card_hover") + } + PropertyChanges + { + target: link_text + font.underline: true + } + } + ] + + MouseArea + { + id: mouse_area + anchors.fill: parent + hoverEnabled: true + onClicked: root.onClicked && root.onClicked() + } + + rightPadding: UM.Theme.getSize("wide_margin").width + bottomPadding: UM.Theme.getSize("wide_margin").height + leftPadding: UM.Theme.getSize("wide_margin").width + + background: Rectangle + { + id: background + height: parent.height + border.color: UM.Theme.getColor("primary_button") + color: "transparent" + border.width: 1 + radius: 3 + } + + contentItem: ColumnLayout + { + id: column + spacing: UM.Theme.getSize("wide_margin").height + height: childrenRect.height + width: childrenRect.width + + Image + { + id: image + source: imageSource + width: 180 * screenScaleFactor + sourceSize.width: width + sourceSize.height: height + } + + UM.Label + { + id: link_text + Layout.fillWidth: true + font: UM.Theme.getFont("medium") + color: UM.Theme.getColor("text_link") + horizontalAlignment: Text.AlignHCenter + } + } +} diff --git a/resources/qml/WelcomePages/UserAgreementContent.qml b/resources/qml/WelcomePages/UserAgreementContent.qml index dcff613efb..4a98a98e57 100644 --- a/resources/qml/WelcomePages/UserAgreementContent.qml +++ b/resources/qml/WelcomePages/UserAgreementContent.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 @@ -36,10 +36,10 @@ Item right: parent.right } - text: "

    Disclaimer by Ultimaker

    " + text: "

    Disclaimer by UltiMaker

    " + "

    Please read this disclaimer carefully.

    " - + "

    Except when otherwise stated in writing, Ultimaker provides any Ultimaker software or third party software \"As is\" without warranty of any kind. The entire risk as to the quality and performance of Ultimaker software is with you.

    " - + "

    Unless required by applicable law or agreed to in writing, in no event will Ultimaker be liable to you for damages, including any general, special, incidental, or consequential damages arising out of the use or inability to use any Ultimaker software or third party software.

    " + + "

    Except when otherwise stated in writing, UltiMaker provides any UltiMaker software or third party software \"As is\" without warranty of any kind. The entire risk as to the quality and performance of UltiMaker software is with you.

    " + + "

    Unless required by applicable law or agreed to in writing, in no event will UltiMaker be liable to you for damages, including any general, special, incidental, or consequential damages arising out of the use or inability to use any UltiMaker software or third party software.

    " textFormat: Text.RichText wrapMode: Text.WordWrap font: UM.Theme.getFont("medium") diff --git a/resources/qml/WelcomePages/WelcomeContent.qml b/resources/qml/WelcomePages/WelcomeContent.qml index 4123535cc9..f1bb1f1467 100644 --- a/resources/qml/WelcomePages/WelcomeContent.qml +++ b/resources/qml/WelcomePages/WelcomeContent.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2022 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 @@ -9,11 +9,10 @@ import Cura 1.1 as Cura // // This component contains the content for the "Welcome" page of the welcome on-boarding process. +// This dialog is currently only shown during on-boarding and therefore only shown in English // Item { - UM.I18nCatalog { id: catalog; name: "cura" } - // Arrange the items vertically and put everything in the center Column { @@ -53,7 +52,7 @@ Item id: titleLabel anchors.horizontalCenter: parent.horizontalCenter horizontalAlignment: Text.AlignHCenter - text: catalog.i18nc("@label", "Welcome to Ultimaker Cura") + text: "Welcome to UltiMaker Cura" color: UM.Theme.getColor("primary_button") font: UM.Theme.getFont("huge_bold") } @@ -64,7 +63,7 @@ Item anchors.horizontalCenter: parent.horizontalCenter horizontalAlignment: Text.AlignHCenter width: titleLabel.width + 2 * UM.Theme.getSize("thick_margin").width - text: catalog.i18nc("@text", "Please follow these steps to set up Ultimaker Cura. This will only take a few moments.") + text: "Please follow these steps to set up UltiMaker Cura. This will only take a few moments." font: UM.Theme.getFont("medium") } @@ -79,7 +78,7 @@ Item { id: getStartedButton anchors.horizontalCenter: parent.horizontalCenter - text: catalog.i18nc("@button", "Get started") + text: "Get started" onClicked: base.showNextPage() } diff --git a/resources/qml/Widgets/ComboBox.qml b/resources/qml/Widgets/ComboBox.qml index 77e6c489e9..912403a33e 100644 --- a/resources/qml/Widgets/ComboBox.qml +++ b/resources/qml/Widgets/ComboBox.qml @@ -18,9 +18,15 @@ ComboBox property var defaultTextOnEmptyModel: catalog.i18nc("@label", "No items to select from") // Text displayed in the combobox when the model is empty property var defaultTextOnEmptyIndex: "" // Text displayed in the combobox when the model has items but no item is selected property alias textFormat: contentLabel.textFormat + property alias backgroundColor: background.color + property bool forceHighlight: false + property int contentLeftPadding: UM.Theme.getSize("setting_unit_margin").width + property var textFont: UM.Theme.getFont("default") enabled: delegateModel.count > 0 + height: UM.Theme.getSize("combobox").height + onVisibleChanged: { popup.close() } states: [ @@ -45,7 +51,7 @@ ComboBox State { name: "highlighted" - when: (base.hovered || control.hovered) && !control.activeFocus + when: (control.hovered && !control.activeFocus) || forceHighlight PropertyChanges { target: background @@ -56,28 +62,31 @@ ComboBox background: UM.UnderlineBackground { - //Rectangle for highlighting when this combobox needs to pulse. + id: background + // Rectangle for highlighting when this combobox needs to pulse. Rectangle { anchors.fill: parent opacity: 0 - color: UM.Theme.getColor("warning") + color: "transparent" + + border.color: UM.Theme.getColor("text_field_border_active") + border.width: UM.Theme.getSize("default_lining").width SequentialAnimation on opacity { id: pulseAnimation running: false - loops: 1 - alwaysRunToEnd: true + loops: 2 PropertyAnimation { to: 1 - duration: 300 + duration: 150 } PropertyAnimation { to: 0 - duration : 2000 + duration : 150 } } } @@ -99,9 +108,10 @@ ComboBox contentItem: UM.Label { id: contentLabel - leftPadding: UM.Theme.getSize("setting_unit_margin").width + UM.Theme.getSize("default_margin").width + leftPadding: contentLeftPadding + UM.Theme.getSize("default_margin").width anchors.right: downArrow.left wrapMode: Text.NoWrap + font: textFont text: { if (control.delegateModel.count == 0) @@ -171,11 +181,12 @@ ComboBox id: delegateLabel // FIXME: Somehow the top/bottom anchoring is not correct on Linux and it results in invisible texts. anchors.fill: parent - anchors.leftMargin: UM.Theme.getSize("setting_unit_margin").width + anchors.leftMargin: contentLeftPadding anchors.rightMargin: UM.Theme.getSize("setting_unit_margin").width text: delegateItem.text textFormat: control.textFormat + font: textFont color: UM.Theme.getColor("setting_control_text") elide: Text.ElideRight wrapMode: Text.NoWrap diff --git a/resources/qml/Widgets/SingleSettingComboBox.qml b/resources/qml/Widgets/SingleSettingComboBox.qml new file mode 100644 index 0000000000..1b7101e9e7 --- /dev/null +++ b/resources/qml/Widgets/SingleSettingComboBox.qml @@ -0,0 +1,102 @@ +// Copyright (c) 2022 UltiMaker +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 +import QtQuick.Controls 2.3 +import QtQuick.Layouts 1.3 + +import UM 1.5 as UM +import Cura 1.7 as Cura + +// This ComboBox allows changing of a single setting. Only the setting name has to be passed in to "settingName". +// 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 { + textRole: "text" + property alias settingName: propertyProvider.key + + // If true, all extruders will have "settingName" property updated. + // The displayed value will be read from the extruder with index "defaultExtruderIndex" instead of the machine. + property bool updateAllExtruders: false + // This is only used if updateAllExtruders == true + property int defaultExtruderIndex: Cura.ExtruderManager.activeExtruderIndex + + model: ListModel + { + id: comboboxModel + + // The propertyProvider has not loaded the setting when this components onComplete triggers. Populating the model + // is defered until propertyProvider signals "onIsValueUsedChanged". The defered upate is triggered with this function. + function updateModel() + { + clear() + + if(!propertyProvider.properties.options) // No options have been loaded yet to populate combobox + { + return + } + + for (var i = 0; i < propertyProvider.properties["options"].keys().length; i++) + { + var key = propertyProvider.properties["options"].keys()[i] + var value = propertyProvider.properties["options"][key] + comboboxModel.append({ text: value, code: key}) + + if (propertyProvider.properties.value === key) + { + // The combobox is cleared after each value change so the currentIndex must be set each time. + currentIndex = i + } + } + } + } + + // Updates to the setting are delayed by interval. The signal onIsValueUsedChanged() is emitted early for some reason. + // This causes the selected value in the combobox to be updated to the previous value. (This issue is present with infill_pattern setting) + // This is a hack. If you see this in the future, try removing it and see if the combobox still works. + Timer + { + id: updateTimer + interval: 100 + repeat: false + onTriggered: comboboxModel.updateModel(false) + } + + property UM.SettingPropertyProvider propertyProvider: UM.SettingPropertyProvider + { + id: propertyProvider + containerStackId: updateAllExtruders ? Cura.ExtruderManager.extruderIds[defaultExtruderIndex] : Cura.MachineManager.activeMachine.id + watchedProperties: ["value" , "options"] + } + + Connections + { + target: propertyProvider + function onContainerStackChanged() { updateTimer.restart() } + function onIsValueUsedChanged() { updateTimer.restart() } + } + + onCurrentIndexChanged: parseValueAndUpdateSetting() + + function parseValueAndUpdateSetting() + { + if (comboboxModel.get(currentIndex) && comboboxModel.get(currentIndex).code !== propertyProvider.properties.value) + { + updateSetting(comboboxModel.get(currentIndex).code) + } + + } + + function updateSetting(value) + { + if (updateAllExtruders) + { + Cura.MachineManager.setSettingForAllExtruders(propertyProvider.key, "value", value) + } + else + { + propertyProvider.setPropertyValue("value", value) + } + } +} diff --git a/resources/qml/Widgets/SingleSettingExtruderSelectorBar.qml b/resources/qml/Widgets/SingleSettingExtruderSelectorBar.qml new file mode 100644 index 0000000000..d753bb9167 --- /dev/null +++ b/resources/qml/Widgets/SingleSettingExtruderSelectorBar.qml @@ -0,0 +1,70 @@ +// Copyright (c) 2022 UltiMaker +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.12 +import QtQuick.Controls 2.12 +import QtQuick.Layouts 1.3 + +import UM 1.5 as UM +import Cura 1.5 as Cura + +// This component displays a row of extruder icons, clicking on the extruder will update the setting passed to "settingName" +// with the index of that extruder. +// This will only work for settings that take an extruder index. +Row +{ + id: extruderSelectionBar + + width: parent.width + height: childrenRect.height + spacing: 0 + + property int selectedIndex: extruderSettingProvider.properties.value !== undefined ? extruderSettingProvider.properties.value : 0 + property alias model: extruderButtonRepeater.model + property alias extruderSettingName: extruderSettingProvider.key + property alias containerStack: extruderSettingProvider.containerStack + + property UM.SettingPropertyProvider extruderSettingProvider: UM.SettingPropertyProvider + { + id: extruderSettingProvider + containerStack: Cura.MachineManager.activeMachine + watchedProperties: [ "value" ] + storeIndex: 0 + } + + function onClickExtruder(index) + { + forceActiveFocus(); + extruderSettingProvider.setPropertyValue("value", index); + } + + + Repeater + { + id: extruderButtonRepeater + + model: CuraApplication.getExtrudersModel() + + delegate: Item + { + width: { + // This will "squish" the extruder buttons together when the fill up the horizontal space + const maximum_width = Math.floor(extruderSelectionBar.width / extruderButtonRepeater.count); + return Math.min(UM.Theme.getSize("large_button").width, maximum_width); + } + height: childrenRect.height + + Cura.ExtruderButton + { + anchors.margins: 0 + padding: 0 + extruder: model + checked: extruder.index === selectedIndex + iconScale: 0.8 + font: UM.Theme.getFont("tiny_emphasis") + buttonSize: UM.Theme.getSize("small_button").width + onClicked: extruder.enabled && onClickExtruder(extruder.index) + } + } + } +} diff --git a/resources/qml/Widgets/SingleSettingSlider.qml b/resources/qml/Widgets/SingleSettingSlider.qml new file mode 100644 index 0000000000..aac204970e --- /dev/null +++ b/resources/qml/Widgets/SingleSettingSlider.qml @@ -0,0 +1,105 @@ +// Copyright (c) 2022 UltiMaker +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.7 +import QtQuick.Controls 2.15 + +import UM 1.7 as UM +import Cura 1.7 as Cura + +// This silder allows changing of a single setting. Only the setting name has to be passed in to "settingName". +// All of the setting updating logic is handled by this component. +// This component allows you to choose values between minValue -> maxValue and rounds them to the nearest 10. +// If the setting is limited to a single extruder or is settable with different values per extruder use "updateAllExtruders: true" +UM.Slider +{ + id: settingSlider + + property alias settingName: propertyProvider.key + + // If true, all extruders will have "settingName" property updated. + // The displayed value will be read from the extruder with index "defaultExtruderIndex" instead of the machine. + property bool updateAllExtruders: false + // This is only used if updateAllExtruders == true + property int defaultExtruderIndex: Cura.ExtruderManager.activeExtruderIndex + property int previousValue: -1 + + // set range from 0 to 100 + from: 0; to: 100 + // set stepSize to 10 and set snapMode to snap on release snapMode is needed + // otherwise the used percentage and slider handle show different values + stepSize: 10; snapMode: Slider.SnapOnRelease + + UM.SettingPropertyProvider + { + id: propertyProvider + containerStackId: updateAllExtruders ? Cura.ExtruderManager.extruderIds[defaultExtruderIndex] : Cura.MachineManager.activeMachine.id + watchedProperties: ["value"] + storeIndex: 0 + } + + // set initial value from stack + value: parseInt(propertyProvider.properties.value) + + // When the slider is released trigger an update immediately. This forces the slider to snap to the rounded value. + onPressedChanged: function(pressed) + { + if(!pressed) + { + updateSetting(settingSlider.value); + } + } + + Connections + { + target: propertyProvider + function onContainerStackChanged() + { + updateTimer.restart() + } + function onIsValueUsedChanged() + { + updateTimer.restart() + } + } + + // Updates to the setting are delayed by interval. This reduces lag by waiting a bit after a setting change to update the slider contents. + Timer + { + id: updateTimer + interval: 100 + repeat: false + onTriggered: parseValueUpdateSetting(false) + } + + function updateSlider(value) + { + settingSlider.value = value + } + + function parseValueUpdateSetting(triggerUpdate) + { + // Only run when the setting value is updated by something other than the slider. + // This sets the slider value based on the setting value, it does not update the setting value. + + if (parseInt(propertyProvider.properties.value) == settingSlider.value) + { + return + } + + settingSlider.value = propertyProvider.properties.value + } + + // Override this function to update a setting differently + function updateSetting(value) + { + if (updateAllExtruders) + { + Cura.MachineManager.setSettingForAllExtruders(propertyProvider.key, "value", value) + } + else + { + propertyProvider.setPropertyValue("value", value) + } + } +} diff --git a/resources/qml/Widgets/SingleSettingTextField.qml b/resources/qml/Widgets/SingleSettingTextField.qml new file mode 100644 index 0000000000..22c080ebf4 --- /dev/null +++ b/resources/qml/Widgets/SingleSettingTextField.qml @@ -0,0 +1,190 @@ +// Copyright (c) 2022 UltiMaker +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 +import QtQuick.Controls 2.3 +import QtQuick.Layouts 1.3 + +import UM 1.7 as UM +import Cura 1.7 as Cura + +// This text field allows you to edit a single setting. The setting can be passed by "settingName". +// You must specify a validator with Validator. We store our default setting validators in qml/Validators +// If the setting is limited to a single extruder or is settable with different values per extruder use "updateAllExtruders: true" +UM.TextField +{ + id: control + property alias settingName: propertyProvider.key + + // If true, all extruders will have "settingName" property updated. + // The displayed value will be read from the extruder with index "defaultExtruderIndex" instead of the machine. + property bool updateAllExtruders: false + // This is only used if updateAllExtruders == true + property int defaultExtruderIndex: Cura.ExtruderManager.activeExtruderIndex + + // Resolving the value in the textField. + Binding + { + target: control + property: "text" + + value: + { + if (control.activeFocus) + { + // This stops the text being reformatted as you edit. For example "10.1" -Edit-> "10." -Auto Format-> "10.0". + return control.text + } + + if (( propertyProvider.properties.resolve != "None" && propertyProvider.properties.resolve) && ( propertyProvider.properties.stackLevels[0] != 0) && ( propertyProvider.properties.stackLevels[0] != 1)) + { + // We have a resolve function. Indicates that the setting is not settable per extruder and that + // we have to choose between the resolved value (default) and the global value + // (if user has explicitly set this). + return base.resolve + } + + return propertyProvider.properties.value + } + + } + + property UM.SettingPropertyProvider propertyProvider: UM.SettingPropertyProvider + { + id: propertyProvider + watchedProperties: ["value", "validationState", "resolve"] + containerStackId: updateAllExtruders ? Cura.ExtruderManager.extruderIds[defaultExtruderIndex] : Cura.MachineManager.activeMachine.id + } + + Connections + { + target: propertyProvider + function onContainerStackChanged() + { + updateTimer.restart() + } + function onIsValueUsedChanged() + { + updateTimer.restart() + } + } + + // Restart update timer right after releasing a key. This stops lag while typing, but you still get warning and error + // textfield styling while typing. + Keys.onReleased: updateTimer.restart() + // Forces formatting when you finish editing "10.1" -Edit-> "10." -Focus Change-> "10" + onActiveFocusChanged: updateTimer.restart() + + // Updates to the setting are delayed by interval. This stops lag caused by calling the + // parseValueUpdateSetting() function being called repeatedly while changing the text value. + Timer + { + id: updateTimer + interval: 50 + repeat: false + onTriggered: parseValueUpdateSetting() + } + + function parseValueUpdateSetting() + { + // User convenience. We use dots for decimal values + const modified_text = text.replace(",", "."); + if (propertyProvider.properties.value === modified_text || (parseFloat(propertyProvider.properties.value) === parseFloat(modified_text))) + { + // Don't set the property value from the control. It already has the same value + return + } + + if (propertyProvider && modified_text !== propertyProvider.properties.value) + { + updateSetting(modified_text); + } + } + + function updateSetting(value) + { + if (updateAllExtruders) + { + Cura.MachineManager.setSettingForAllExtruders(propertyProvider.key, "value", value) + } + else + { + propertyProvider.setPropertyValue("value", text) + } + } + + // Forced to override parent states using overrideState. Otherwise hover in TextField.qml would override the validation states. + // The first state to evaluate true applies styling. States in inheriting components get appended to the state list of their parent. + overrideState: true + states: + [ + State + { + name: "validationError" + when: propertyProvider.properties.validationState === "ValidatorState.Exception" || propertyProvider.properties.validationState === "ValidatorState.MinimumError" || propertyProvider.properties.validationState === "ValidatorState.MaximumError" + PropertyChanges + { + target: background + liningColor: UM.Theme.getColor("setting_validation_error") + color: UM.Theme.getColor("setting_validation_error_background") + } + }, + State + { + name: "validationWarning" + when: propertyProvider.properties.validationState === "ValidatorState.MinimumWarning" || propertyProvider.properties.validationState === "ValidatorState.MaximumWarning" + PropertyChanges + { + target: background + liningColor: UM.Theme.getColor("setting_validation_warning") + color: UM.Theme.getColor("setting_validation_warning_background") + } + }, + State + { + name: "disabled" + when: !control.enabled + PropertyChanges + { + target: control + color: UM.Theme.getColor("text_field_text_disabled") + } + PropertyChanges + { + target: background + liningColor: UM.Theme.getColor("text_field_border_disabled") + } + }, + State + { + name: "invalid" + when: !control.acceptableInput + PropertyChanges + { + target: background + color: UM.Theme.getColor("setting_validation_error_background") + } + }, + State + { + name: "active" + when: control.activeFocus + PropertyChanges + { + target: background + liningColor: UM.Theme.getColor("text_field_border_active") + borderColor: UM.Theme.getColor("text_field_border_active") + } + }, + State + { + name: "hovered" + when: control.hovered && !control.activeFocus + PropertyChanges + { + target: background + liningColor: UM.Theme.getColor("text_field_border_hovered") + } + } + ] +} diff --git a/resources/qml/Widgets/TextField.qml b/resources/qml/Widgets/TextField.qml index 085c7b7742..f16d4abb11 100644 --- a/resources/qml/Widgets/TextField.qml +++ b/resources/qml/Widgets/TextField.qml @@ -4,87 +4,12 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.5 as UM +import UM 1.7 as UM import Cura 1.1 as Cura - -// -// Cura-style TextField -// -TextField +UM.TextField { id: control - - property alias leftIcon: iconLeft.source - height: UM.Theme.getSize("setting_control").height - - hoverEnabled: true - selectByMouse: true - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text_field_text") - selectedTextColor: UM.Theme.getColor("text_field_text") - placeholderTextColor: UM.Theme.getColor("text_field_text_disabled") - renderType: Text.NativeRendering - selectionColor: UM.Theme.getColor("text_selection") - leftPadding: iconLeft.visible ? iconLeft.width + UM.Theme.getSize("default_margin").width * 2 : UM.Theme.getSize("thin_margin").width - - states: [ - State - { - name: "disabled" - when: !control.enabled - PropertyChanges { target: control; color: UM.Theme.getColor("text_field_text_disabled")} - PropertyChanges { target: backgroundRectangle; liningColor: UM.Theme.getColor("text_field_border_disabled")} - }, - State - { - name: "invalid" - when: !control.acceptableInput - PropertyChanges { target: backgroundRectangle; color: UM.Theme.getColor("setting_validation_error_background")} - }, - State - { - name: "active" - when: control.activeFocus - PropertyChanges - { - target: backgroundRectangle - liningColor: UM.Theme.getColor("text_field_border_active") - borderColor: UM.Theme.getColor("text_field_border_active") - } - }, - State - { - name: "hovered" - when: control.hovered && !control.activeFocus - PropertyChanges - { - target: backgroundRectangle - liningColor: UM.Theme.getColor("text_field_border_hovered") - } - } - ] - - background: UM.UnderlineBackground - { - id: backgroundRectangle - //Optional icon added on the left hand side. - UM.ColorImage - { - id: iconLeft - - anchors - { - verticalCenter: parent.verticalCenter - left: parent.left - leftMargin: UM.Theme.getSize("default_margin").width - } - - visible: source != "" - height: UM.Theme.getSize("small_button_icon").height - width: visible ? height : 0 - color: control.color - } - } + leftPadding: UM.Theme.getSize("thin_margin").width } diff --git a/resources/qml/qmldir b/resources/qml/qmldir index a47d85545b..8fce82c858 100644 --- a/resources/qml/qmldir +++ b/resources/qml/qmldir @@ -2,6 +2,7 @@ module Cura MachineSelector 1.0 MachineSelector.qml MachineSelectorButton 1.0 MachineSelectorButton.qml +MachineListButton 1.0 MachineListButton.qml CustomConfigurationSelector 1.0 CustomConfigurationSelector.qml PrintSetupSelector 1.0 PrintSetupSelector.qml ProfileOverview 1.6 ProfileOverview.qml @@ -16,7 +17,7 @@ PrinterTypeLabel 1.0 PrinterTypeLabel.qml ViewsSelector 1.0 ViewsSelector.qml SettingView 1.0 SettingView.qml ProfileMenu 1.0 ProfileMenu.qml - +PrintSelectorCard 1.0 PrintSelectorCard.qml # Cura/WelcomePages @@ -36,6 +37,11 @@ ScrollView 1.0 ScrollView.qml Menu 1.0 Menu.qml MenuItem 1.0 MenuItem.qml MenuSeparator 1.0 MenuSeparator.qml +SingleSettingExtruderSelectorBar 1.7 SingleSettingExtruderSelectorBar.qml +ExtruderButton 1.7 ExtruderButton.qml +SingleSettingComboBox 1.7 SingleSettingComboBox.qml +SingleSettingSlider 1.7 SingleSettingSlider.qml +SingleSettingTextField 1.7 SingleSettingTextField.qml # Cura/MachineSettings 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 16768fab87..0f079c315f 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard definition = leapfrog_bolt_pro +name = Standard +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard -weight = 0 global_quality = True +quality_type = standard +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.15 + 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 6b700280b8..3b5437d0d4 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 @@ -1,100 +1,92 @@ [general] -version = 4 -name = Standard definition = leapfrog_bolt_pro +name = Standard +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard -weight = 0 material = leapfrog_abs_natural +quality_type = standard +setting_version = 22 +type = quality variant = Brass 0.4 +weight = 0 [values] -layer_height_0 = 0.3 -line_width = 0.4 -initial_layer_line_width_factor = 120 - -wall_thickness = 0.8 -wall_0_wipe_dist = 0.2 -top_bottom_thickness = 0.8 -top_bottom_pattern = lines -optimize_wall_printing_order = True -z_seam_type = sharpest_corner -z_seam_corner = hide_seam -skin_outline_count = 1 - -infill_sparse_density = 20 -infill_pattern = grid -connect_infill_polygons = True -infill_overlap = 0 -infill_wipe_dist = 0 -infill_before_walls = True -min_infill_area = 0 - -retraction_enable = True -retract_at_layer_change = False -retraction_amount = 2 -retraction_speed = 25 -switch_extruder_retraction_amount = 15 -switch_extruder_retraction_speeds = 20 - -speed_print = 35 -speed_wall = 25 -speed_wall_0 = 25 -speed_wall_x = 35 -speed_topbottom = 25 -speed_travel = 200 -speed_layer_0 = 25 -speed_support = 40 -speed_travel_layer_0 = 45 -speed_slowdown_layers = 1 - -retraction_combing = all -travel_avoid_other_parts = True -travel_avoid_supports = True -retraction_hop_enabled = True -retraction_hop_only_when_collides = True -retraction_hop = 2 -retraction_hop_after_extruder_switch = True -retraction_hop_after_extruder_switch_height = 2 - -cool_fan_enabled = True -cool_fan_speed = 30 -cool_fan_speed_min = 0 -cool_fan_speed_max = 30 -cool_min_layer_time_fan_speed_max = 5 -cool_fan_speed_0 = 0 -cool_fan_full_at_height = 0.5 -cool_fan_full_layer = 3 -cool_min_layer_time = 5 -cool_min_speed = 10 - -support_interface_enable = False -support_angle = 50 -support_pattern = zigzag -support_connect_zigzags = False -support_infill_rate = 20 -support_z_distance = 0.3 -support_xy_distance = 0.7 -support_xy_distance_overhang = 0.4 -support_bottom_stair_step_height = 0.3 -support_bottom_stair_step_width = 5 -support_join_distance = 2 -support_tower_diameter = 3 -support_tower_roof_angle = 65 - adhesion_type = brim -brim_width = 8 brim_line_count = 14 brim_outside_only = True -skirt_brim_minimal_length = 250 - +brim_width = 8 +connect_infill_polygons = True +cool_fan_enabled = True +cool_fan_full_at_height = 0.5 +cool_fan_full_layer = 3 +cool_fan_speed = 30 +cool_fan_speed_0 = 0 +cool_fan_speed_max = 30 +cool_fan_speed_min = 0 +cool_min_layer_time = 5 +cool_min_layer_time_fan_speed_max = 5 +cool_min_speed = 10 +infill_before_walls = True +infill_overlap = 0 +infill_pattern = grid +infill_sparse_density = 20 +infill_wipe_dist = 0 +initial_layer_line_width_factor = 120 +layer_height_0 = 0.3 +line_width = 0.4 +min_infill_area = 0 +optimize_wall_printing_order = True +prime_tower_brim_enable = True prime_tower_enable = True -prime_tower_size = 20 prime_tower_min_volume = 6 prime_tower_position_x = 169 prime_tower_position_y = 25 +prime_tower_size = 20 prime_tower_wipe_enabled = True -prime_tower_brim_enable = True +retract_at_layer_change = False +retraction_amount = 2 +retraction_combing = all +retraction_enable = True +retraction_hop = 2 +retraction_hop_after_extruder_switch = True +retraction_hop_after_extruder_switch_height = 2 +retraction_hop_enabled = True +retraction_hop_only_when_collides = True +retraction_speed = 25 +skin_outline_count = 1 +skirt_brim_minimal_length = 250 +speed_layer_0 = 25 +speed_print = 35 +speed_slowdown_layers = 1 +speed_support = 40 +speed_topbottom = 25 +speed_travel = 200 +speed_travel_layer_0 = 45 +speed_wall = 25 +speed_wall_0 = 25 +speed_wall_x = 35 +support_angle = 50 +support_bottom_stair_step_height = 0.3 +support_bottom_stair_step_width = 5 +support_connect_zigzags = False +support_infill_rate = 20 +support_interface_enable = False +support_join_distance = 2 +support_pattern = zigzag +support_tower_diameter = 3 +support_tower_roof_angle = 65 +support_xy_distance = 0.7 +support_xy_distance_overhang = 0.4 +support_z_distance = 0.3 +switch_extruder_retraction_amount = 15 +switch_extruder_retraction_speeds = 20 +top_bottom_pattern = lines +top_bottom_thickness = 0.8 +travel_avoid_other_parts = True +travel_avoid_supports = True +wall_0_wipe_dist = 0.2 +wall_thickness = 0.8 +z_seam_corner = hide_seam +z_seam_type = sharpest_corner + 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 472bfee50e..3a6467bdc2 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 @@ -1,100 +1,92 @@ [general] -version = 4 -name = Standard definition = leapfrog_bolt_pro +name = Standard +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard -weight = 0 material = leapfrog_abs_natural +quality_type = standard +setting_version = 22 +type = quality variant = NozzleX 0.4 +weight = 0 [values] -layer_height_0 = 0.3 -line_width = 0.4 -initial_layer_line_width_factor = 120 - -wall_thickness = 0.8 -wall_0_wipe_dist = 0.2 -top_bottom_thickness = 0.8 -top_bottom_pattern = lines -optimize_wall_printing_order = True -z_seam_type = sharpest_corner -z_seam_corner = hide_seam -skin_outline_count = 1 - -infill_sparse_density = 20 -infill_pattern = grid -connect_infill_polygons = True -infill_overlap = 0 -infill_wipe_dist = 0 -infill_before_walls = True -min_infill_area = 0 - -retraction_enable = True -retract_at_layer_change = False -retraction_amount = 2 -retraction_speed = 25 -switch_extruder_retraction_amount = 15 -switch_extruder_retraction_speeds = 20 - -speed_print = 35 -speed_wall = 25 -speed_wall_0 = 25 -speed_wall_x = 35 -speed_topbottom = 25 -speed_travel = 200 -speed_layer_0 = 25 -speed_support = 40 -speed_travel_layer_0 = 45 -speed_slowdown_layers = 1 - -retraction_combing = all -travel_avoid_other_parts = True -travel_avoid_supports = True -retraction_hop_enabled = True -retraction_hop_only_when_collides = True -retraction_hop = 2 -retraction_hop_after_extruder_switch = True -retraction_hop_after_extruder_switch_height = 2 - -cool_fan_enabled = True -cool_fan_speed = 30 -cool_fan_speed_min = 0 -cool_fan_speed_max = 30 -cool_min_layer_time_fan_speed_max = 5 -cool_fan_speed_0 = 0 -cool_fan_full_at_height = 0.5 -cool_fan_full_layer = 3 -cool_min_layer_time = 5 -cool_min_speed = 10 - -support_interface_enable = False -support_angle = 50 -support_pattern = zigzag -support_connect_zigzags = False -support_infill_rate = 20 -support_z_distance = 0.3 -support_xy_distance = 0.7 -support_xy_distance_overhang = 0.4 -support_bottom_stair_step_height = 0.3 -support_bottom_stair_step_width = 5 -support_join_distance = 2 -support_tower_diameter = 3 -support_tower_roof_angle = 65 - adhesion_type = brim -brim_width = 8 brim_line_count = 14 brim_outside_only = True -skirt_brim_minimal_length = 250 - +brim_width = 8 +connect_infill_polygons = True +cool_fan_enabled = True +cool_fan_full_at_height = 0.5 +cool_fan_full_layer = 3 +cool_fan_speed = 30 +cool_fan_speed_0 = 0 +cool_fan_speed_max = 30 +cool_fan_speed_min = 0 +cool_min_layer_time = 5 +cool_min_layer_time_fan_speed_max = 5 +cool_min_speed = 10 +infill_before_walls = True +infill_overlap = 0 +infill_pattern = grid +infill_sparse_density = 20 +infill_wipe_dist = 0 +initial_layer_line_width_factor = 120 +layer_height_0 = 0.3 +line_width = 0.4 +min_infill_area = 0 +optimize_wall_printing_order = True +prime_tower_brim_enable = True prime_tower_enable = True -prime_tower_size = 20 prime_tower_min_volume = 6 prime_tower_position_x = 169 prime_tower_position_y = 25 +prime_tower_size = 20 prime_tower_wipe_enabled = True -prime_tower_brim_enable = True +retract_at_layer_change = False +retraction_amount = 2 +retraction_combing = all +retraction_enable = True +retraction_hop = 2 +retraction_hop_after_extruder_switch = True +retraction_hop_after_extruder_switch_height = 2 +retraction_hop_enabled = True +retraction_hop_only_when_collides = True +retraction_speed = 25 +skin_outline_count = 1 +skirt_brim_minimal_length = 250 +speed_layer_0 = 25 +speed_print = 35 +speed_slowdown_layers = 1 +speed_support = 40 +speed_topbottom = 25 +speed_travel = 200 +speed_travel_layer_0 = 45 +speed_wall = 25 +speed_wall_0 = 25 +speed_wall_x = 35 +support_angle = 50 +support_bottom_stair_step_height = 0.3 +support_bottom_stair_step_width = 5 +support_connect_zigzags = False +support_infill_rate = 20 +support_interface_enable = False +support_join_distance = 2 +support_pattern = zigzag +support_tower_diameter = 3 +support_tower_roof_angle = 65 +support_xy_distance = 0.7 +support_xy_distance_overhang = 0.4 +support_z_distance = 0.3 +switch_extruder_retraction_amount = 15 +switch_extruder_retraction_speeds = 20 +top_bottom_pattern = lines +top_bottom_thickness = 0.8 +travel_avoid_other_parts = True +travel_avoid_supports = True +wall_0_wipe_dist = 0.2 +wall_thickness = 0.8 +z_seam_corner = hide_seam +z_seam_type = sharpest_corner + 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 f766a3e4eb..1a763f07ec 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 @@ -1,100 +1,92 @@ [general] -version = 4 -name = Standard definition = leapfrog_bolt_pro +name = Standard +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard -weight = 0 material = leapfrog_epla_natural +quality_type = standard +setting_version = 22 +type = quality variant = Brass 0.4 +weight = 0 [values] -layer_height_0 = 0.3 -line_width = 0.4 -initial_layer_line_width_factor = 120 - -wall_thickness = 0.8 -wall_0_wipe_dist = 0.2 -top_bottom_thickness = 0.8 -top_bottom_pattern = lines -optimize_wall_printing_order = True -z_seam_type = sharpest_corner -z_seam_corner = hide_seam -skin_outline_count = 1 - -infill_sparse_density = 20 -infill_pattern = grid -connect_infill_polygons = True -infill_overlap = 0 -infill_wipe_dist = 0 -infill_before_walls = True -min_infill_area = 0 - -retraction_enable = True -retract_at_layer_change = False -retraction_amount = 2 -retraction_speed = 25 -switch_extruder_retraction_amount = 15 -switch_extruder_retraction_speeds = 20 - -speed_print = 50 -speed_wall = 25 -speed_wall_0 = 25 -speed_wall_x = 40 -speed_topbottom = 25 -speed_travel = 200 -speed_layer_0 = 25 -speed_support = 50 -speed_travel_layer_0 = 45 -speed_slowdown_layers = 1 acceleration_enabled = False - -retraction_combing = all -travel_avoid_other_parts = True -travel_avoid_supports = True -retraction_hop_enabled = False -retraction_hop_only_when_collides = True -retraction_hop = 2 -retraction_hop_after_extruder_switch = True -retraction_hop_after_extruder_switch_height = 2 - +adhesion_type = skirt +connect_infill_polygons = True cool_fan_enabled = True -cool_fan_speed = 100 -cool_fan_speed_min = 100 -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 5 -cool_fan_speed_0 = 0 cool_fan_full_at_height = 0.5 cool_fan_full_layer = 4 +cool_fan_speed = 100 +cool_fan_speed_0 = 0 +cool_fan_speed_max = 100 +cool_fan_speed_min = 100 cool_min_layer_time = 5 +cool_min_layer_time_fan_speed_max = 5 cool_min_speed = 5 - -support_interface_enable = False -support_angle = 50 -support_pattern = zigzag -support_connect_zigzags = False -support_infill_rate = 20 -support_z_distance = 0.3 -support_xy_distance = 0.7 -support_xy_distance_overhang = 0.4 -support_bottom_stair_step_height = 0.3 -support_bottom_stair_step_width = 5 -support_join_distance = 2 -support_tower_diameter = 3 -support_tower_roof_angle = 65 - -adhesion_type = skirt -skirt_line_count = 3 -skirt_gap = 1 -skirt_brim_minimal_length = 250 - +infill_before_walls = True +infill_overlap = 0 +infill_pattern = grid +infill_sparse_density = 20 +infill_wipe_dist = 0 +initial_layer_line_width_factor = 120 +layer_height_0 = 0.3 +line_width = 0.4 +min_infill_area = 0 +optimize_wall_printing_order = True +prime_tower_brim_enable = True prime_tower_enable = True -prime_tower_size = 20 prime_tower_min_volume = 6 prime_tower_position_x = 169 prime_tower_position_y = 25 +prime_tower_size = 20 prime_tower_wipe_enabled = True -prime_tower_brim_enable = True +retract_at_layer_change = False +retraction_amount = 2 +retraction_combing = all +retraction_enable = True +retraction_hop = 2 +retraction_hop_after_extruder_switch = True +retraction_hop_after_extruder_switch_height = 2 +retraction_hop_enabled = False +retraction_hop_only_when_collides = True +retraction_speed = 25 +skin_outline_count = 1 +skirt_brim_minimal_length = 250 +skirt_gap = 1 +skirt_line_count = 3 +speed_layer_0 = 25 +speed_print = 50 +speed_slowdown_layers = 1 +speed_support = 50 +speed_topbottom = 25 +speed_travel = 200 +speed_travel_layer_0 = 45 +speed_wall = 25 +speed_wall_0 = 25 +speed_wall_x = 40 +support_angle = 50 +support_bottom_stair_step_height = 0.3 +support_bottom_stair_step_width = 5 +support_connect_zigzags = False +support_infill_rate = 20 +support_interface_enable = False +support_join_distance = 2 +support_pattern = zigzag +support_tower_diameter = 3 +support_tower_roof_angle = 65 +support_xy_distance = 0.7 +support_xy_distance_overhang = 0.4 +support_z_distance = 0.3 +switch_extruder_retraction_amount = 15 +switch_extruder_retraction_speeds = 20 +top_bottom_pattern = lines +top_bottom_thickness = 0.8 +travel_avoid_other_parts = True +travel_avoid_supports = True +wall_0_wipe_dist = 0.2 +wall_thickness = 0.8 +z_seam_corner = hide_seam +z_seam_type = sharpest_corner + 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 59c67e7ed7..69698b555b 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 @@ -1,100 +1,92 @@ [general] -version = 4 -name = Standard definition = leapfrog_bolt_pro +name = Standard +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard -weight = 0 material = leapfrog_epla_natural +quality_type = standard +setting_version = 22 +type = quality variant = NozzleX 0.4 +weight = 0 [values] -layer_height_0 = 0.3 -line_width = 0.4 -initial_layer_line_width_factor = 120 - -wall_thickness = 0.8 -wall_0_wipe_dist = 0.2 -top_bottom_thickness = 0.8 -top_bottom_pattern = lines -optimize_wall_printing_order = True -z_seam_type = sharpest_corner -z_seam_corner = hide_seam -skin_outline_count = 1 - -infill_sparse_density = 20 -infill_pattern = grid -connect_infill_polygons = True -infill_overlap = 0 -infill_wipe_dist = 0 -infill_before_walls = True -min_infill_area = 0 - -retraction_enable = True -retract_at_layer_change = False -retraction_amount = 2 -retraction_speed = 25 -switch_extruder_retraction_amount = 15 -switch_extruder_retraction_speeds = 20 - -speed_print = 50 -speed_wall = 25 -speed_wall_0 = 25 -speed_wall_x = 40 -speed_topbottom = 25 -speed_travel = 200 -speed_layer_0 = 25 -speed_support = 50 -speed_travel_layer_0 = 45 -speed_slowdown_layers = 1 acceleration_enabled = False - -retraction_combing = all -travel_avoid_other_parts = True -travel_avoid_supports = True -retraction_hop_enabled = False -retraction_hop_only_when_collides = True -retraction_hop = 2 -retraction_hop_after_extruder_switch = True -retraction_hop_after_extruder_switch_height = 2 - +adhesion_type = skirt +connect_infill_polygons = True cool_fan_enabled = True -cool_fan_speed = 100 -cool_fan_speed_min = 100 -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 5 -cool_fan_speed_0 = 0 cool_fan_full_at_height = 0.5 cool_fan_full_layer = 4 +cool_fan_speed = 100 +cool_fan_speed_0 = 0 +cool_fan_speed_max = 100 +cool_fan_speed_min = 100 cool_min_layer_time = 5 +cool_min_layer_time_fan_speed_max = 5 cool_min_speed = 5 - -support_interface_enable = False -support_angle = 50 -support_pattern = zigzag -support_connect_zigzags = False -support_infill_rate = 20 -support_z_distance = 0.3 -support_xy_distance = 0.7 -support_xy_distance_overhang = 0.4 -support_bottom_stair_step_height = 0.3 -support_bottom_stair_step_width = 5 -support_join_distance = 2 -support_tower_diameter = 3 -support_tower_roof_angle = 65 - -adhesion_type = skirt -skirt_line_count = 3 -skirt_gap = 1 -skirt_brim_minimal_length = 250 - +infill_before_walls = True +infill_overlap = 0 +infill_pattern = grid +infill_sparse_density = 20 +infill_wipe_dist = 0 +initial_layer_line_width_factor = 120 +layer_height_0 = 0.3 +line_width = 0.4 +min_infill_area = 0 +optimize_wall_printing_order = True +prime_tower_brim_enable = True prime_tower_enable = True -prime_tower_size = 20 prime_tower_min_volume = 6 prime_tower_position_x = 169 prime_tower_position_y = 25 +prime_tower_size = 20 prime_tower_wipe_enabled = True -prime_tower_brim_enable = True +retract_at_layer_change = False +retraction_amount = 2 +retraction_combing = all +retraction_enable = True +retraction_hop = 2 +retraction_hop_after_extruder_switch = True +retraction_hop_after_extruder_switch_height = 2 +retraction_hop_enabled = False +retraction_hop_only_when_collides = True +retraction_speed = 25 +skin_outline_count = 1 +skirt_brim_minimal_length = 250 +skirt_gap = 1 +skirt_line_count = 3 +speed_layer_0 = 25 +speed_print = 50 +speed_slowdown_layers = 1 +speed_support = 50 +speed_topbottom = 25 +speed_travel = 200 +speed_travel_layer_0 = 45 +speed_wall = 25 +speed_wall_0 = 25 +speed_wall_x = 40 +support_angle = 50 +support_bottom_stair_step_height = 0.3 +support_bottom_stair_step_width = 5 +support_connect_zigzags = False +support_infill_rate = 20 +support_interface_enable = False +support_join_distance = 2 +support_pattern = zigzag +support_tower_diameter = 3 +support_tower_roof_angle = 65 +support_xy_distance = 0.7 +support_xy_distance_overhang = 0.4 +support_z_distance = 0.3 +switch_extruder_retraction_amount = 15 +switch_extruder_retraction_speeds = 20 +top_bottom_pattern = lines +top_bottom_thickness = 0.8 +travel_avoid_other_parts = True +travel_avoid_supports = True +wall_0_wipe_dist = 0.2 +wall_thickness = 0.8 +z_seam_corner = hide_seam +z_seam_type = sharpest_corner + 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 d9c83b9991..404eb48a2e 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 @@ -1,97 +1,88 @@ [general] -version = 4 -name = Standard definition = leapfrog_bolt_pro +name = Standard +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard -weight = 0 material = leapfrog_pva_natural +quality_type = standard +setting_version = 22 +type = quality variant = Brass 0.4 +weight = 0 [values] -layer_height_0 = 0.3 -line_width = 0.4 -initial_layer_line_width_factor = 120 - -wall_thickness = 0.8 -wall_0_wipe_dist = 0.2 -top_bottom_thickness = 0.8 -top_bottom_pattern = lines -optimize_wall_printing_order = True -z_seam_type = sharpest_corner -z_seam_corner = hide_seam -skin_outline_count = 1 - -infill_sparse_density = 20 -infill_pattern = grid +adhesion_type = skirt connect_infill_polygons = True -infill_overlap = 0 -infill_wipe_dist = 0 -infill_before_walls = True -min_infill_area = 0 - -retraction_enable = True -retract_at_layer_change = False -retraction_amount = 2 -retraction_speed = 25 -switch_extruder_retraction_amount = 15 -switch_extruder_retraction_speeds = 20 - -speed_print = 50 -speed_wall = 20 -speed_wall_0 = 20 -speed_wall_x = 20 -speed_topbottom = 25 -speed_travel = 200 -speed_layer_0 = 25 -speed_support = 40 -speed_travel_layer_0 = 45 -speed_slowdown_layers = 1 - -retraction_combing = all -travel_avoid_other_parts = True -travel_avoid_supports = True -retraction_hop_enabled = False - -retraction_hop_after_extruder_switch_height = 2 - cool_fan_enabled = True -cool_fan_speed = 100 -cool_fan_speed_min = 100 -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 5 -cool_fan_speed_0 = 0 cool_fan_full_at_height = 0.5 cool_fan_full_layer = 4 +cool_fan_speed = 100 +cool_fan_speed_0 = 0 +cool_fan_speed_max = 100 +cool_fan_speed_min = 100 cool_min_layer_time = 5 +cool_min_layer_time_fan_speed_max = 5 cool_min_speed = 5 - -support_interface_enable = False -support_angle = 50 -support_pattern = zigzag -support_connect_zigzags = False -support_infill_rate = 20 -support_z_distance = 0.3 -support_xy_distance = 0.7 -support_xy_distance_overhang = 0.4 -support_bottom_stair_step_height = 0.3 -support_bottom_stair_step_width = 5 -support_join_distance = 2 -support_tower_diameter = 3 -support_tower_roof_angle = 65 - -adhesion_type = skirt -skirt_line_count = 3 -skirt_gap = 1 -skirt_brim_minimal_length = 250 - +infill_before_walls = True +infill_overlap = 0 +infill_pattern = grid +infill_sparse_density = 20 +infill_wipe_dist = 0 +initial_layer_line_width_factor = 120 +layer_height_0 = 0.3 +line_width = 0.4 +min_infill_area = 0 +optimize_wall_printing_order = True +prime_tower_brim_enable = True prime_tower_enable = True -prime_tower_size = 20 prime_tower_min_volume = 6 prime_tower_position_x = 169 prime_tower_position_y = 25 +prime_tower_size = 20 prime_tower_wipe_enabled = True -prime_tower_brim_enable = True +retract_at_layer_change = False +retraction_amount = 2 +retraction_combing = all +retraction_enable = True +retraction_hop_after_extruder_switch_height = 2 +retraction_hop_enabled = False +retraction_speed = 25 +skin_outline_count = 1 +skirt_brim_minimal_length = 250 +skirt_gap = 1 +skirt_line_count = 3 +speed_layer_0 = 25 +speed_print = 50 +speed_slowdown_layers = 1 +speed_support = 40 +speed_topbottom = 25 +speed_travel = 200 +speed_travel_layer_0 = 45 +speed_wall = 20 +speed_wall_0 = 20 +speed_wall_x = 20 +support_angle = 50 +support_bottom_stair_step_height = 0.3 +support_bottom_stair_step_width = 5 +support_connect_zigzags = False +support_infill_rate = 20 +support_interface_enable = False +support_join_distance = 2 +support_pattern = zigzag +support_tower_diameter = 3 +support_tower_roof_angle = 65 +support_xy_distance = 0.7 +support_xy_distance_overhang = 0.4 +support_z_distance = 0.3 +switch_extruder_retraction_amount = 15 +switch_extruder_retraction_speeds = 20 +top_bottom_pattern = lines +top_bottom_thickness = 0.8 +travel_avoid_other_parts = True +travel_avoid_supports = True +wall_0_wipe_dist = 0.2 +wall_thickness = 0.8 +z_seam_corner = hide_seam +z_seam_type = sharpest_corner + 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 0cb2c77719..c85a86507a 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 @@ -1,97 +1,88 @@ [general] -version = 4 -name = Standard definition = leapfrog_bolt_pro +name = Standard +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard -weight = 0 material = leapfrog_pva_natural +quality_type = standard +setting_version = 22 +type = quality variant = NozzleX 0.4 +weight = 0 [values] -layer_height_0 = 0.3 -line_width = 0.4 -initial_layer_line_width_factor = 120 - -wall_thickness = 0.8 -wall_0_wipe_dist = 0.2 -top_bottom_thickness = 0.8 -top_bottom_pattern = lines -optimize_wall_printing_order = True -z_seam_type = sharpest_corner -z_seam_corner = hide_seam -skin_outline_count = 1 - -infill_sparse_density = 20 -infill_pattern = grid +adhesion_type = skirt connect_infill_polygons = True -infill_overlap = 0 -infill_wipe_dist = 0 -infill_before_walls = True -min_infill_area = 0 - -retraction_enable = True -retract_at_layer_change = False -retraction_amount = 2 -retraction_speed = 25 -switch_extruder_retraction_amount = 15 -switch_extruder_retraction_speeds = 20 - -speed_print = 50 -speed_wall = 20 -speed_wall_0 = 20 -speed_wall_x = 20 -speed_topbottom = 25 -speed_travel = 200 -speed_layer_0 = 25 -speed_support = 40 -speed_travel_layer_0 = 45 -speed_slowdown_layers = 1 - -retraction_combing = all -travel_avoid_other_parts = True -travel_avoid_supports = True -retraction_hop_enabled = False - -retraction_hop_after_extruder_switch_height = 2 - cool_fan_enabled = True -cool_fan_speed = 100 -cool_fan_speed_min = 100 -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 5 -cool_fan_speed_0 = 0 cool_fan_full_at_height = 0.5 cool_fan_full_layer = 4 +cool_fan_speed = 100 +cool_fan_speed_0 = 0 +cool_fan_speed_max = 100 +cool_fan_speed_min = 100 cool_min_layer_time = 5 +cool_min_layer_time_fan_speed_max = 5 cool_min_speed = 5 - -support_interface_enable = False -support_angle = 50 -support_pattern = zigzag -support_connect_zigzags = False -support_infill_rate = 20 -support_z_distance = 0.3 -support_xy_distance = 0.7 -support_xy_distance_overhang = 0.4 -support_bottom_stair_step_height = 0.3 -support_bottom_stair_step_width = 5 -support_join_distance = 2 -support_tower_diameter = 3 -support_tower_roof_angle = 65 - -adhesion_type = skirt -skirt_line_count = 3 -skirt_gap = 1 -skirt_brim_minimal_length = 250 - +infill_before_walls = True +infill_overlap = 0 +infill_pattern = grid +infill_sparse_density = 20 +infill_wipe_dist = 0 +initial_layer_line_width_factor = 120 +layer_height_0 = 0.3 +line_width = 0.4 +min_infill_area = 0 +optimize_wall_printing_order = True +prime_tower_brim_enable = True prime_tower_enable = True -prime_tower_size = 20 prime_tower_min_volume = 6 prime_tower_position_x = 169 prime_tower_position_y = 25 +prime_tower_size = 20 prime_tower_wipe_enabled = True -prime_tower_brim_enable = True +retract_at_layer_change = False +retraction_amount = 2 +retraction_combing = all +retraction_enable = True +retraction_hop_after_extruder_switch_height = 2 +retraction_hop_enabled = False +retraction_speed = 25 +skin_outline_count = 1 +skirt_brim_minimal_length = 250 +skirt_gap = 1 +skirt_line_count = 3 +speed_layer_0 = 25 +speed_print = 50 +speed_slowdown_layers = 1 +speed_support = 40 +speed_topbottom = 25 +speed_travel = 200 +speed_travel_layer_0 = 45 +speed_wall = 20 +speed_wall_0 = 20 +speed_wall_x = 20 +support_angle = 50 +support_bottom_stair_step_height = 0.3 +support_bottom_stair_step_width = 5 +support_connect_zigzags = False +support_infill_rate = 20 +support_interface_enable = False +support_join_distance = 2 +support_pattern = zigzag +support_tower_diameter = 3 +support_tower_roof_angle = 65 +support_xy_distance = 0.7 +support_xy_distance_overhang = 0.4 +support_z_distance = 0.3 +switch_extruder_retraction_amount = 15 +switch_extruder_retraction_speeds = 20 +top_bottom_pattern = lines +top_bottom_thickness = 0.8 +travel_avoid_other_parts = True +travel_avoid_supports = True +wall_0_wipe_dist = 0.2 +wall_thickness = 0.8 +z_seam_corner = hide_seam +z_seam_type = sharpest_corner + diff --git a/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg b/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg index 58141d7ac9..910acc73e5 100644 --- a/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg @@ -1,22 +1,22 @@ [general] -version = 4 -name = Fine definition = abax_pri3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.2 -wall_thickness = 1.05 -top_bottom_thickness = 0.8 -infill_sparse_density = 20 -speed_print = 80 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 80) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 20 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 80 +speed_topbottom = =math.ceil(speed_print * 20 / 80) +top_bottom_thickness = 0.8 +wall_thickness = 1.05 + diff --git a/resources/quality/abax_pri3/apri3_pla_high.inst.cfg b/resources/quality/abax_pri3/apri3_pla_high.inst.cfg index 4051885819..aea37fb13f 100644 --- a/resources/quality/abax_pri3/apri3_pla_high.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_high.inst.cfg @@ -1,22 +1,22 @@ [general] -version = 4 -name = Extra Fine definition = abax_pri3 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] -layer_height = 0.1 -wall_thickness = 1.05 -top_bottom_thickness = 0.8 -infill_sparse_density = 20 -speed_print = 50 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 50) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 20 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 20 / 50) +top_bottom_thickness = 0.8 +wall_thickness = 1.05 + diff --git a/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg b/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg index d76eac4014..8f5ac4aa33 100644 --- a/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg @@ -1,22 +1,22 @@ [general] -version = 4 -name = Fine definition = abax_pri3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.2 -wall_thickness = 1.05 -top_bottom_thickness = 0.8 -infill_sparse_density = 20 -speed_print = 50 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 50) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 20 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 20 / 50) +top_bottom_thickness = 0.8 +wall_thickness = 1.05 + diff --git a/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg b/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg index ef6ec00ede..032d1b817e 100644 --- a/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg @@ -1,22 +1,22 @@ [general] -version = 4 -name = Fine definition = abax_pri5 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.2 -wall_thickness = 1.05 -top_bottom_thickness = 0.8 -infill_sparse_density = 20 -speed_print = 80 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 80) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 20 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 80 +speed_topbottom = =math.ceil(speed_print * 20 / 80) +top_bottom_thickness = 0.8 +wall_thickness = 1.05 + diff --git a/resources/quality/abax_pri5/apri5_pla_high.inst.cfg b/resources/quality/abax_pri5/apri5_pla_high.inst.cfg index 00c5a67cf9..6380dc18ef 100644 --- a/resources/quality/abax_pri5/apri5_pla_high.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_high.inst.cfg @@ -1,22 +1,22 @@ [general] -version = 4 -name = Extra Fine definition = abax_pri5 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] -layer_height = 0.1 -wall_thickness = 1.05 -top_bottom_thickness = 0.8 -infill_sparse_density = 20 -speed_print = 50 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 50) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 20 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 20 / 50) +top_bottom_thickness = 0.8 +wall_thickness = 1.05 + diff --git a/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg b/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg index 1934b4af25..c357652157 100644 --- a/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg @@ -1,22 +1,22 @@ [general] -version = 4 -name = Fine definition = abax_pri5 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.2 -wall_thickness = 1.05 -top_bottom_thickness = 0.8 -infill_sparse_density = 20 -speed_print = 50 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 50) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 20 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 20 / 50) +top_bottom_thickness = 0.8 +wall_thickness = 1.05 + diff --git a/resources/quality/abax_titan/atitan_pla_fast.inst.cfg b/resources/quality/abax_titan/atitan_pla_fast.inst.cfg index 901aeef930..c235e36996 100644 --- a/resources/quality/abax_titan/atitan_pla_fast.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_fast.inst.cfg @@ -1,22 +1,23 @@ [general] -version = 4 -name = Fine definition = abax_titan +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.2 -wall_thickness = 1.05 -top_bottom_thickness = 0.8 -infill_sparse_density = 20 -speed_print = 80 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 80) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 20 +layer_height = 0.2 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 80 +speed_topbottom = =math.ceil(speed_print * 20 / 80) +top_bottom_thickness = 0.8 +wall_thickness = 1.05 + diff --git a/resources/quality/abax_titan/atitan_pla_high.inst.cfg b/resources/quality/abax_titan/atitan_pla_high.inst.cfg index da6af89d27..b3b5295366 100644 --- a/resources/quality/abax_titan/atitan_pla_high.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_high.inst.cfg @@ -1,22 +1,23 @@ [general] -version = 4 -name = Extra Fine definition = abax_titan +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] -layer_height = 0.1 -wall_thickness = 1.05 -top_bottom_thickness = 0.8 -infill_sparse_density = 20 -speed_print = 50 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 50) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 20 +layer_height = 0.1 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 20 / 50) +top_bottom_thickness = 0.8 +wall_thickness = 1.05 + diff --git a/resources/quality/abax_titan/atitan_pla_normal.inst.cfg b/resources/quality/abax_titan/atitan_pla_normal.inst.cfg index 294610484e..aab42f4f4c 100644 --- a/resources/quality/abax_titan/atitan_pla_normal.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_normal.inst.cfg @@ -1,22 +1,23 @@ [general] -version = 4 -name = Fine definition = abax_titan +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.2 -wall_thickness = 1.05 -top_bottom_thickness = 0.8 -infill_sparse_density = 20 -speed_print = 50 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 50) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 20 +layer_height = 0.2 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 20 / 50) +top_bottom_thickness = 0.8 +wall_thickness = 1.05 + diff --git a/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg b/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg new file mode 100644 index 0000000000..0570c1cd40 --- /dev/null +++ b/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ankermake_m5 +name = Draft +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 + +[values] +layer_height = 0.28 +layer_height_0 = 0.28 + diff --git a/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg b/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg new file mode 100644 index 0000000000..2aac68b60c --- /dev/null +++ b/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ankermake_m5 +name = Fine +version = 4 + +[metadata] +global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = 1 + +[values] +layer_height = 0.12 +layer_height_0 = 0.2 + diff --git a/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg b/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg new file mode 100644 index 0000000000..5c2193dacf --- /dev/null +++ b/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ankermake_m5 +name = Normal +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + 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 fb24a6665b..7100f73522 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft definition = anycubic_4max +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_abs +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] -cool_fan_enabled = False adhesion_type = brim +cool_fan_enabled = False + 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 8492a10f5b..07acba4e3d 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = High definition = anycubic_4max +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] -cool_fan_enabled = False adhesion_type = brim +cool_fan_enabled = False + 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 411924ceb5..53f1785709 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Normal definition = anycubic_4max +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -cool_fan_enabled = False adhesion_type = brim +cool_fan_enabled = False diff --git a/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg index 482493039e..42b5ce116d 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Draft definition = anycubic_4max +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] layer_height = 0.3 diff --git a/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg index 68b16cdc51..0565f91e05 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = High definition = anycubic_4max +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] layer_height = 0.15 diff --git a/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg index 04240b4f44..003f787aac 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Normal definition = anycubic_4max +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.2 + 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 c756d8df6b..c1e54314ba 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 @@ -1,14 +1,14 @@ [general] -version = 4 -name = Draft definition = anycubic_4max +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_hips +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] 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 8e9697099c..0f0fa7e70d 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 @@ -1,14 +1,14 @@ [general] -version = 4 -name = High definition = anycubic_4max +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_hips +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] 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 46e76a79bc..8ae13498b4 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 @@ -1,14 +1,14 @@ [general] -version = 4 -name = Normal definition = anycubic_4max +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_hips +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] 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 ffb2a7a579..06ff5899b6 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 @@ -1,17 +1,17 @@ [general] -version = 4 -name = Draft definition = anycubic_4max +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_petg +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] -material_print_temperature = =default_material_print_temperature + 35 cool_fan_enabled = False - +material_print_temperature = =default_material_print_temperature + 35 speed_print = 30 + 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 a2efa29188..20890528ae 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 @@ -1,17 +1,17 @@ [general] -version = 4 -name = High definition = anycubic_4max +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_petg +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] -material_print_temperature = =default_material_print_temperature + 35 cool_fan_enabled = False - +material_print_temperature = =default_material_print_temperature + 35 speed_print = 30 + 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 6909ac0585..f09dd654b8 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 @@ -1,17 +1,17 @@ [general] -version = 4 -name = Normal definition = anycubic_4max +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -material_print_temperature = =default_material_print_temperature + 35 cool_fan_enabled = False - +material_print_temperature = =default_material_print_temperature + 35 speed_print = 30 + 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 2ed986ce47..44c435f79a 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 @@ -1,15 +1,14 @@ [general] -version = 4 -name = Draft definition = anycubic_4max +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] - 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 eaee019ab2..3e35582b03 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 @@ -1,14 +1,14 @@ [general] -version = 4 -name = High definition = anycubic_4max +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] 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 a244983ebc..df146144ca 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 @@ -1,14 +1,14 @@ [general] -version = 4 -name = Normal definition = anycubic_4max +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg index 9c3a44ccf7..662e3cc7c4 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Draft definition = anycubic_chiron +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] acceleration_enabled = True @@ -58,3 +58,4 @@ support_use_towers = False support_xy_distance = 0.7 top_bottom_thickness = 1.2 wall_thickness = 1.2 + diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg index c5711ade6b..bcf355d7f4 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = High definition = anycubic_chiron +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] acceleration_enabled = True @@ -58,3 +58,4 @@ support_use_towers = False support_xy_distance = 0.7 top_bottom_thickness = 1.2 wall_thickness = 1.2 + diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg index 0fd03b32d8..bd8a9bae43 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Normal definition = anycubic_chiron +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] acceleration_enabled = True @@ -58,3 +58,4 @@ support_use_towers = False support_xy_distance = 0.7 top_bottom_thickness = 1.2 wall_thickness = 1.2 + 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 599c26ab25..2902ef4f53 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 @@ -1,14 +1,14 @@ [general] -version = 4 -name = Draft definition = anycubic_i3_mega +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] acceleration_enabled = True @@ -54,3 +54,4 @@ support_use_towers = False support_xy_distance = 0.7 top_bottom_thickness = 1.2 wall_thickness = 1.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 a1ef55deb9..32ea52665a 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 @@ -1,14 +1,14 @@ [general] -version = 4 -name = High definition = anycubic_i3_mega +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] acceleration_enabled = True @@ -54,3 +54,4 @@ support_use_towers = False support_xy_distance = 0.7 top_bottom_thickness = 1.2 wall_thickness = 1.2 + 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 6546d07927..320e39eaa2 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 @@ -1,14 +1,14 @@ [general] -version = 4 -name = Normal definition = anycubic_i3_mega +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] acceleration_enabled = True @@ -54,3 +54,4 @@ support_use_towers = False support_xy_distance = 0.7 top_bottom_thickness = 1.2 wall_thickness = 1.2 + 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 4cbc6462dc..1045f06adc 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft definition = anycubic_i3_mega_s +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] -layer_height = 0.3 \ No newline at end of file +layer_height = 0.3 + 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 6c92a036fc..f400daeb35 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = High definition = anycubic_i3_mega_s +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] -layer_height = 0.1 \ No newline at end of file +layer_height = 0.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 91fc63f365..2ac1ab0dc7 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Normal definition = anycubic_i3_mega_s +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.2 \ No newline at end of file +layer_height = 0.2 + diff --git a/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg b/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg new file mode 100644 index 0000000000..52a0365291 --- /dev/null +++ b/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg @@ -0,0 +1,47 @@ +[general] +definition = anycubic_kobra +name = Suggested parameters for ABS_V1.0 +version = 4 + +[metadata] +global_quality = True +quality_type = abs +setting_version = 22 +type = quality +weight = 0 + +[values] +acceleration_enabled = True +acceleration_print = 800 +acceleration_travel = 3000 +acceleration_travel_layer_0 = 3000.0 +bottom_layers = 6 +brim_width = 7.0 +default_material_bed_temperature = 80 +default_material_print_temperature = 230 +infill_overlap = 15 +infill_sparse_density = 20 +initial_layer_line_width_factor = 140 +inset_direction = outside_in +jerk_enabled = True +jerk_print = 8 +jerk_travel = 10 +layer_height = 0.2 +layer_height_0 = 0.2 +material_final_print_temperature = 230 +material_flow = 100 +material_flow_layer_0 = 120 +material_initial_print_temperature = 230 +optimize_wall_printing_order = True +retraction_amount = 6 +retraction_min_travel = =line_width * 2 +retraction_speed = 40 +skirt_brim_speed = 40 +speed_print = 50 +speed_travel = 100 +top_bottom_thickness = 1.2 +wall_thickness = 1.2 +z_seam_type = sharpest_corner +z_seam_x = 110 +z_seam_y = 220 + diff --git a/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg b/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg new file mode 100644 index 0000000000..a0222dcf7f --- /dev/null +++ b/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = anycubic_kobra +name = Suggested parameters for PLA_V1.0 +version = 4 + +[metadata] +global_quality = True +quality_type = pla +setting_version = 22 +type = quality +weight = -2 + +[values] +acceleration_enabled = True +acceleration_print = 1000 +acceleration_travel_layer_0 = 2000.0 +bottom_layers = 6 +brim_width = 4.0 +infill_overlap = 15 +infill_sparse_density = 15 +initial_layer_line_width_factor = 100 +inset_direction = outside_in +jerk_enabled = True +jerk_print = 8 +jerk_travel = 10 +layer_height = 0.2 +layer_height_0 = 0.2 +material_final_print_temperature = 200 +material_initial_print_temperature = 200 +optimize_wall_printing_order = True +retraction_amount = 6 +retraction_min_travel = 1.5 +retraction_speed = 40 +skirt_brim_speed = 40 +speed_print = 50 +speed_travel = 100 +top_bottom_thickness = 1.2 +wall_thickness = 1.2 +z_seam_type = sharpest_corner +z_seam_x = 110 +z_seam_y = 220 + diff --git a/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg b/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg new file mode 100644 index 0000000000..e6a92a2f57 --- /dev/null +++ b/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg @@ -0,0 +1,46 @@ +[general] +definition = anycubic_kobra +name = Suggested parameters for TPU_V1.0 +version = 4 + +[metadata] +global_quality = True +quality_type = tpu +setting_version = 22 +type = quality +weight = 1 + +[values] +acceleration_enabled = True +acceleration_print = 800 +acceleration_travel = 3000 +acceleration_travel_layer_0 = 3000.0 +bottom_layers = 6 +brim_width = 7.0 +default_material_print_temperature = 190 +infill_overlap = 15 +infill_sparse_density = 25 +initial_layer_line_width_factor = 140 +inset_direction = outside_in +jerk_enabled = True +jerk_print = 8 +jerk_travel = 10 +layer_height = 0.2 +layer_height_0 = 0.2 +material_final_print_temperature = 190 +material_flow = 90 +material_flow_layer_0 = 120 +material_initial_print_temperature = 190 +optimize_wall_printing_order = True +retraction_amount = 8 +retraction_min_travel = =line_width * 2 +retraction_speed = 60 +skirt_brim_speed = 40 +speed_print = 50 +speed_travel = 100 +top_bottom_thickness = 1.2 +wall_thickness = 1.2 +z_seam_type = sharpest_corner +z_seam_x = 110 +z_seam_y = 220 + 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 new file mode 100644 index 0000000000..da09c0d2c2 --- /dev/null +++ b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg @@ -0,0 +1,33 @@ +[general] +definition = anycubic_kobra_go +name = Normal +version = 4 + +[metadata] +global_quality = True +material = generic_abs +quality_type = abs +setting_version = 22 +type = quality +weight = 0 + +[values] +acceleration_print = 1000.0 +acceleration_travel = 3000.0 +bottom_layers = 6 +brim_width = 4.0 +infill_pattern = lines +infill_sparse_density = 25 +inset_direction = ='outside_in' if (True) else 'inside_out' +layer_height = 0.2 +material_final_print_temperature = 230 +material_initial_print_temperature = 230 +material_print_temperature = 235.0 +material_print_temperature_layer_0 = 235.0 +optimize_wall_printing_order = True +speed_print = 50.0 +top_layers = 6 +z_seam_corner = z_seam_corner_inner +z_seam_type = sharpest_corner +z_seam_x = 111 + 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 new file mode 100644 index 0000000000..01869b9db5 --- /dev/null +++ b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg @@ -0,0 +1,30 @@ +[general] +definition = anycubic_kobra_go +name = Normal +version = 4 + +[metadata] +global_quality = True +material = generic_pla +quality_type = pla +setting_version = 22 +type = quality +weight = -2 + +[values] +bottom_layers = 6 +brim_width = 7.0 +infill_pattern = lines +infill_sparse_density = 15 +inset_direction = ='outside_in' if (True) else 'inside_out' +layer_height = 0.2 +material_final_print_temperature = 185 +material_initial_print_temperature = 185 +material_print_temperature = 190 +optimize_wall_printing_order = True +speed_print = 50.0 +top_layers = 6 +z_seam_corner = z_seam_corner_any +z_seam_type = sharpest_corner +z_seam_x = 111 + 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 new file mode 100644 index 0000000000..971664b123 --- /dev/null +++ b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg @@ -0,0 +1,35 @@ +[general] +definition = anycubic_kobra_go +name = Normal +version = 4 + +[metadata] +global_quality = True +material = generic_tpu +quality_type = tpu +setting_version = 22 +type = quality +weight = 1 + +[values] +acceleration_print = 1000.0 +acceleration_travel = 3000.0 +bottom_layers = 6 +brim_width = 7.0 +infill_pattern = lines +infill_sparse_density = 15 +inset_direction = ='outside_in' if (False) else 'inside_out' +layer_height = 0.2 +material_final_print_temperature = 190 +material_initial_print_temperature = 190 +material_print_temperature = 190 +material_print_temperature_layer_0 = 190 +optimize_wall_printing_order = True +retraction_amount = 8 +retraction_speed = 40 +speed_print = 50.0 +top_layers = 6 +z_seam_corner = z_seam_corner_inner +z_seam_type = sharpest_corner +z_seam_x = 111 + 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 new file mode 100644 index 0000000000..34f0ef1268 --- /dev/null +++ b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg @@ -0,0 +1,54 @@ +[general] +definition = anycubic_kobra_max +name = Suggested parameters for PLA_V1.0 +version = 4 + +[metadata] +global_quality = True +quality_type = pla +setting_version = 22 +type = quality +weight = -2 + +[values] +acceleration_enabled = True +acceleration_print = 1000 +acceleration_travel = 3000 +brim_width = 7 +default_material_print_temperature = 195 +infill_sparse_density = 15 +initial_layer_line_width_factor = 140 +jerk_enabled = True +jerk_print = 8 +jerk_travel = 10 +layer_height = 0.2 +layer_height_0 = 0.2 +material_final_print_temperature = 195 +material_flow = 95 +material_flow_layer_0 = 120 +material_initial_print_temperature = 195 +material_print_temperature_layer_0 = 0 +optimize_wall_printing_order = True +retraction_amount = 6 +retraction_hop = 0.075 +retraction_hop_enabled = True +retraction_hop_only_when_collides = True +retraction_min_travel = 1.5 +retraction_speed = 40 +skirt_brim_speed = 40 +speed_layer_0 = 45 +speed_print = 80 +speed_topbottom = 45 +speed_travel = 100 +speed_travel_layer_0 = 100 +speed_wall = 80 +speed_wall_0 = 45 +speed_wall_x = 80 +speed_z_hop = 20 +top_bottom_thickness = 1.2 +top_thickness = 1.2 +wall_thickness = 1.2 +z_seam_type = sharpest_corner +z_seam_x = 110 +z_seam_y = 220 + 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 new file mode 100644 index 0000000000..36788383bb --- /dev/null +++ b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg @@ -0,0 +1,55 @@ +[general] +definition = anycubic_kobra_max +name = Suggested parameters for TPU_V1.0 +version = 4 + +[metadata] +global_quality = True +quality_type = tpu +setting_version = 22 +type = quality +weight = 1 + +[values] +acceleration_enabled = True +acceleration_print = 1000 +acceleration_travel = 3000 +brim_width = 5 +cool_fan_speed_0 = 10 +default_material_print_temperature = 210 +infill_overlap = 15 +infill_sparse_density = 15 +initial_layer_line_width_factor = 130 +jerk_enabled = False +jerk_print = 8 +jerk_travel = 10 +layer_height = 0.2 +layer_height_0 = 0.3 +material_final_print_temperature = 210 +material_flow = 90 +material_flow_layer_0 = 100 +material_initial_print_temperature = 210 +material_print_temperature_layer_0 = 210 +optimize_wall_printing_order = False +retraction_amount = 8 +retraction_hop = 0.075 +retraction_hop_enabled = True +retraction_hop_only_when_collides = True +retraction_min_travel = 1.5 +retraction_speed = 60 +skirt_brim_speed = 40 +speed_layer_0 = 40 +speed_print = 80 +speed_topbottom = 32 +speed_travel = 100 +speed_travel_layer_0 = 50 +speed_wall = 80 +speed_wall_0 = 45 +speed_wall_x = 80 +speed_z_hop = 10 +top_bottom_thickness = 1.2 +wall_thickness = 1.2 +z_seam_type = sharpest_corner +z_seam_x = 110 +z_seam_y = 220 + 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 7cc6d25c4d..6579e5f77b 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Draft definition = anycubic_mega_zero +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] layer_height = 0.3 layer_height_0 = 0.3 speed_print = 60 speed_travel = 100 + 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 c539a9ac18..01b6fa8039 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = High definition = anycubic_mega_zero +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] layer_height = 0.1 layer_height_0 = 0.1 speed_print = 30 speed_travel = 50 + 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 b1a5917e8f..16ec95bd61 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Normal definition = anycubic_mega_zero +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.2 layer_height_0 = 0.2 speed_print = 40 speed_travel = 100 + diff --git a/resources/quality/anycubic_predator/predator_coarse.inst.cfg b/resources/quality/anycubic_predator/predator_coarse.inst.cfg index fbc5e7cd6a..d0b25f3d86 100644 --- a/resources/quality/anycubic_predator/predator_coarse.inst.cfg +++ b/resources/quality/anycubic_predator/predator_coarse.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Coarse definition = predator +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.4 -layer_height_0 = 0.45 \ No newline at end of file +layer_height_0 = 0.45 + diff --git a/resources/quality/anycubic_predator/predator_draft.inst.cfg b/resources/quality/anycubic_predator/predator_draft.inst.cfg index e97411ecac..6817b49bf9 100644 --- a/resources/quality/anycubic_predator/predator_draft.inst.cfg +++ b/resources/quality/anycubic_predator/predator_draft.inst.cfg @@ -1,15 +1,16 @@ -[general] -version = 4 -name = Draft -definition = predator - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 -global_quality = True - -[values] -layer_height = 0.30 -layer_height_0 = 0.35 \ No newline at end of file +[general] +definition = predator +name = Draft +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 + +[values] +layer_height = 0.30 +layer_height_0 = 0.35 + diff --git a/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg b/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg index 73e897e981..48c388b845 100644 --- a/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg +++ b/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Extra Coarse definition = predator +name = Extra Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Xcoarse -weight = -4 global_quality = True +quality_type = Xcoarse +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.5 layer_height_0 = 0.55 + diff --git a/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg b/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg index 3801f5f95a..3d16285083 100644 --- a/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg +++ b/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg @@ -1,15 +1,16 @@ -[general] -version = 4 -name = Extra Fine -definition = predator - -[metadata] -setting_version = 20 -type = quality -quality_type = Xfine -weight = 1 -global_quality = True - -[values] -layer_height = 0.05 -layer_height_0 = 0.10 +[general] +definition = predator +name = Extra Fine +version = 4 + +[metadata] +global_quality = True +quality_type = Xfine +setting_version = 22 +type = quality +weight = 1 + +[values] +layer_height = 0.05 +layer_height_0 = 0.10 + diff --git a/resources/quality/anycubic_predator/predator_fine.inst.cfg b/resources/quality/anycubic_predator/predator_fine.inst.cfg index e3dd6bf539..704ddbecc5 100644 --- a/resources/quality/anycubic_predator/predator_fine.inst.cfg +++ b/resources/quality/anycubic_predator/predator_fine.inst.cfg @@ -1,15 +1,16 @@ -[general] -version = 4 -name = Fine -definition = predator - -[metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 1 -global_quality = True - -[values] -layer_height = 0.1 -layer_height_0 = 0.15 +[general] +definition = predator +name = Fine +version = 4 + +[metadata] +global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = 1 + +[values] +layer_height = 0.1 +layer_height_0 = 0.15 + diff --git a/resources/quality/anycubic_predator/predator_normal.inst.cfg b/resources/quality/anycubic_predator/predator_normal.inst.cfg index 115f1677d8..d2f46d49fb 100644 --- a/resources/quality/anycubic_predator/predator_normal.inst.cfg +++ b/resources/quality/anycubic_predator/predator_normal.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Normal definition = predator +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.2 -layer_height_0 = 0.25 \ No newline at end of file +layer_height_0 = 0.25 + 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 8e6102859a..2494ab41c8 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = artillery_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] wall_thickness = =line_width*8 + 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 4dfd839916..18471cfe93 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Ultra Quality definition = artillery_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_abs +quality_type = ultra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] wall_thickness = =line_width*8 + 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 45831ce958..b72fd9065d 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = artillery_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*4 + 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 658244f086..467cc928c8 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Low Quality definition = artillery_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*4 + 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 b3fa935293..ef8c7f8be9 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = artillery_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*4 + 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 9961933aac..81b2e8dce0 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = artillery_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*4 + 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 ccaecb1ff6..58cb101bd1 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = artillery_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 b7f2d54030..8ac08cff99 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Low Quality definition = artillery_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 ef83cf14db..79131e8e27 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = artillery_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 fe98a1ca49..ff27e50cae 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = artillery_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 535b12a8ef..30baac9a32 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = artillery_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 4e82055aa4..1a96e7a128 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Low Quality definition = artillery_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 28467ddc41..7a83721c7a 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = artillery_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 a23dfe7a46..18323af856 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = artillery_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 0f1b2258cc..a83f31e6ea 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = artillery_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] wall_thickness = =line_width*3 + 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 542903fa78..04b5256bd0 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft Quality definition = artillery_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] wall_thickness = =line_width*3 + 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 8458f9ebc8..c1ff99aa05 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft Quality definition = artillery_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] wall_thickness = =line_width*3 + 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 ea6176cf16..2c9681732d 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = artillery_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*8 + 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 9283500697..0d2b8f11eb 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Ultra Quality definition = artillery_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_petg +quality_type = ultra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*8 + 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 9d26ff64de..e97603e971 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = artillery_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 c6cd6113bf..af3c4ee040 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = artillery_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 b5435f5fc9..c30f59b5eb 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = artillery_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 3ecfea70c4..7a5eff86ff 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Super Quality definition = artillery_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 81e0ecab5e..d654b8faad 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = artillery_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 85757b3316..0baa04e044 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Low Quality definition = artillery_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 5c06f98af7..3d9c96953e 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = artillery_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 4ee1a34a76..81fa019be8 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Super Quality definition = artillery_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 d57899dee6..447b328688 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = artillery_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 28da7ee1c6..70a4decabf 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Low Quality definition = artillery_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 35f3ef677f..f738879eda 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = artillery_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 9629b377fc..0fa123d7b3 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Super Quality definition = artillery_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 7c407becc3..2ea0e2d35d 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = artillery_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*3 -#retraction_extra_prime_amount = 0.5 + 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 78a2ac9457..fcd245f96d 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = artillery_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*3 -#retraction_extra_prime_amount = 0.5 + 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 c84206bf0f..6cdd2dd435 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = artillery_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*3 -#retraction_extra_prime_amount = 0.5 + 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 4f95eb4b16..c63856afd5 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = artillery_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] + 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 f882647e9e..91fb63af22 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Ultra Quality definition = artillery_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_pla +quality_type = ultra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] + 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 26d685cb4f..a7f8e38f12 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = artillery_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 62e7056187..6bf0e70f96 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = artillery_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 a71f011577..217987265d 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = artillery_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 a310cea80e..312f20eb77 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = artillery_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 8d715ad216..7f50db4936 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = artillery_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 e9a29012bd..e2fc24f53b 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = artillery_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 2793ce688b..b2f5fefdfe 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = artillery_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 2a3626ebdb..842a8833e6 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = artillery_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 79db39723b..946344995b 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = artillery_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 b5badd6ad3..0c1f57dced 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = artillery_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 9db33ac6ec..19c810fad0 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = artillery_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 483a4b476a..b04f766a55 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = artillery_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 569aa8bf6c..7bae27f143 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = artillery_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 0afc0f1e3f..b03d45d3ad 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = artillery_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 5fba73d305..32e11e0e66 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = artillery_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 63f4b04f71..504ce9c63a 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = artillery_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] + 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 7bc3f64a45..35bbb0a3b5 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = artillery_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] + 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 e26b9381b6..889d97872a 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = artillery_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 19e18ea27c..41b43ad93a 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = artillery_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 ce229418a6..32ae52bd35 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = artillery_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_tpu +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 b4e211ce64..188f053506 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = artillery_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 c466d0e03b..e9f095caa4 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = artillery_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 1dcacb3155..0d88514cc8 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = artillery_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_tpu +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 a6e383b655..a9ea17fa94 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = artillery_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 6eade56ffa..e831ef8c1c 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = artillery_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 d20cdf1f8d..fcacad6c24 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = artillery_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_tpu +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 50a4ea4083..ae01f298f0 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = artillery_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 5b3086475b..2ce5883f07 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = artillery_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] + 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 849f845dd2..98be4f1776 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = artillery_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] + diff --git a/resources/quality/artillery/artillery_global_adaptive.inst.cfg b/resources/quality/artillery/artillery_global_adaptive.inst.cfg index accde6de2d..4b9222e74e 100644 --- a/resources/quality/artillery/artillery_global_adaptive.inst.cfg +++ b/resources/quality/artillery/artillery_global_adaptive.inst.cfg @@ -1,19 +1,20 @@ [general] -version = 4 -name = Dynamic Quality definition = artillery_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive -weight = -2 global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +weight = -2 [values] +adaptive_layer_height_enabled = true layer_height = 0.16 layer_height_0 = 0.20 +support_interface_height = =layer_height*6 top_bottom_thickness = =layer_height_0+layer_height*4 wall_thickness = =line_width*3 -support_interface_height = =layer_height*6 -adaptive_layer_height_enabled = true + diff --git a/resources/quality/artillery/artillery_global_draft.inst.cfg b/resources/quality/artillery/artillery_global_draft.inst.cfg index d339675de1..0a615d65a8 100644 --- a/resources/quality/artillery/artillery_global_draft.inst.cfg +++ b/resources/quality/artillery/artillery_global_draft.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Draft Quality definition = artillery_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -5 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -5 [values] layer_height = 0.32 layer_height_0 = 0.32 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 + diff --git a/resources/quality/artillery/artillery_global_low.inst.cfg b/resources/quality/artillery/artillery_global_low.inst.cfg index 1b694a7a12..da9ca07ad0 100644 --- a/resources/quality/artillery/artillery_global_low.inst.cfg +++ b/resources/quality/artillery/artillery_global_low.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Low Quality definition = artillery_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low -weight = -4 global_quality = True +quality_type = low +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.28 layer_height_0 = 0.28 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 + diff --git a/resources/quality/artillery/artillery_global_standard.inst.cfg b/resources/quality/artillery/artillery_global_standard.inst.cfg index 753004c302..a30f5a3596 100644 --- a/resources/quality/artillery/artillery_global_standard.inst.cfg +++ b/resources/quality/artillery/artillery_global_standard.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Standard Quality definition = artillery_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard -weight = -3 global_quality = True +quality_type = standard +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.2 layer_height_0 = 0.2 +support_interface_height = =layer_height*5 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*3 -support_interface_height = =layer_height*5 + diff --git a/resources/quality/artillery/artillery_global_super.inst.cfg b/resources/quality/artillery/artillery_global_super.inst.cfg index 51973f48d9..87ca064f92 100644 --- a/resources/quality/artillery/artillery_global_super.inst.cfg +++ b/resources/quality/artillery/artillery_global_super.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Super Quality definition = artillery_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super -weight = -1 global_quality = True +quality_type = super +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.12 layer_height_0 = 0.12 +support_interface_height = =layer_height*8 top_bottom_thickness = =layer_height_0+layer_height*6 wall_thickness = =line_width*3 -support_interface_height = =layer_height*8 + diff --git a/resources/quality/artillery/artillery_global_ultra.inst.cfg b/resources/quality/artillery/artillery_global_ultra.inst.cfg index 561e10b2df..00f75e3681 100644 --- a/resources/quality/artillery/artillery_global_ultra.inst.cfg +++ b/resources/quality/artillery/artillery_global_ultra.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Ultra Quality definition = artillery_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra -weight = 0 global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.08 layer_height_0 = 0.12 +support_interface_height = =layer_height*12 top_bottom_thickness = =layer_height_0+layer_height*10 wall_thickness = =line_width*3 -support_interface_height = =layer_height*12 + 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 b42785269d..df48b1e465 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 @@ -1,14 +1,15 @@ -[general] -version = 4 -name = Super Quality -definition = artillery_base - -[metadata] -setting_version = 20 -type = quality -quality_type = super -material = generic_nylon -variant = 0.2mm Nozzle - -[values] -wall_thickness = =line_width*8 +[general] +definition = artillery_base +name = Super Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +wall_thickness = =line_width*8 + 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 7c81c04978..442680d4d5 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Ultra Quality definition = artillery_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_nylon +quality_type = ultra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] wall_thickness = =line_width*8 + 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 9015d6a029..e23792a6fc 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = artillery_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_nylon +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*4 + 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 d0330f37ca..4a27e7e3b2 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Low Quality definition = artillery_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_nylon +quality_type = low +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*4 + 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 34467e4402..d8c593629f 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = artillery_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_nylon +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*4 + 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 f616c4445d..c5b1f43676 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = artillery_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_nylon +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*4 + 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 7aba6d1056..ec9fbc5d51 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = artillery_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_nylon +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 8108a72100..1865da0454 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Low Quality definition = artillery_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_nylon +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 3e42cdd8c6..beddca58ae 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 @@ -1,14 +1,15 @@ -[general] -version = 4 -name = Standard Quality -definition = artillery_base - -[metadata] -setting_version = 20 -type = quality -quality_type = standard -material = generic_nylon -variant = 0.4mm Nozzle - -[values] -wall_thickness = =line_width*4 +[general] +definition = artillery_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 8ba9bc408d..9806fe1110 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = artillery_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_nylon +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 63d34a3220..608f1288a7 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = artillery_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_nylon +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 fbff8330d9..0667e04e5b 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Low Quality definition = artillery_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_nylon +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 da3cf828bc..212526e52c 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = artillery_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_nylon +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 6a1f6e285c..7c9931026c 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = artillery_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_nylon +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 16c25272f4..67fab7e129 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = artillery_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_nylon +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] wall_thickness = =line_width*3 + 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 23c4a9dd59..477864dd2f 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft Quality definition = artillery_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_nylon +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] wall_thickness = =line_width*3 + 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 84eb99c35b..3247349db6 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft Quality definition = artillery_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_nylon +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] wall_thickness = =line_width*3 + 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 44224b2bb6..4a20a7b9c8 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = atmat_signal_pro_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast global_quality = True +quality_type = extrafast +setting_version = 22 +type = quality [values] layer_height = 0.3 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 3044e414a0..805bd9ac2e 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fine definition = atmat_signal_pro_base +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafine global_quality = True +quality_type = extrafine +setting_version = 22 +type = quality [values] layer_height = 0.06 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 2ab4597ce2..a0bad4bd6f 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = atmat_signal_pro_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast global_quality = True +quality_type = fast +setting_version = 22 +type = quality [values] layer_height = 0.2 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 59a32d1bd3..454d4bd066 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine definition = atmat_signal_pro_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine global_quality = True +quality_type = fine +setting_version = 22 +type = quality [values] layer_height = 0.1 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 f93a063828..a51bb0e40a 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = atmat_signal_pro_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal global_quality = True +quality_type = normal +setting_version = 22 +type = quality [values] layer_height = 0.15 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 2f5f624d96..3285ac2f7f 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = atmat_signal_pro_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint global_quality = True +quality_type = sprint +setting_version = 22 +type = quality [values] layer_height = 0.4 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 e9fb443fec..7c6bbd8717 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Sprint definition = atmat_signal_pro_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint global_quality = True +quality_type = supersprint +setting_version = 22 +type = quality [values] layer_height = 0.5 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 d67ec9abf5..8fc83c12f1 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Ultra Sprint definition = atmat_signal_pro_base +name = Ultra Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultrasprint global_quality = True +quality_type = ultrasprint +setting_version = 22 +type = quality [values] layer_height = 0.6 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 0c4760e559..8aece3d5e6 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Extra Fast definition = atmat_signal_pro_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_abs_175 +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.40mm [values] +build_volume_temperature = 40 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 20 material_print_temperature = =default_material_print_temperature + 25 -build_volume_temperature = 40 -speed_print = 50 retraction_amount = 1.2 -cool_fan_enabled = False \ No newline at end of file +speed_print = 50 + 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 c8944878d6..e1faf41888 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Fast definition = atmat_signal_pro_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_abs_175 +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.40mm [values] +build_volume_temperature = 40 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 20 material_print_temperature = =default_material_print_temperature + 25 -build_volume_temperature = 40 -speed_print = 50 retraction_amount = 1.2 -cool_fan_enabled = False \ No newline at end of file +speed_print = 50 + 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 68a257e64d..02ff6d5e63 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Fine definition = atmat_signal_pro_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_abs_175 +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.40mm [values] +build_volume_temperature = 40 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 20 material_print_temperature = =default_material_print_temperature + 25 -build_volume_temperature = 40 -speed_print = 50 retraction_amount = 1.2 -cool_fan_enabled = False \ No newline at end of file +speed_print = 50 + 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 fa0420560b..0d0a89e4cf 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Normal definition = atmat_signal_pro_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_abs_175 +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.40mm [values] +build_volume_temperature = 40 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 20 material_print_temperature = =default_material_print_temperature + 25 -build_volume_temperature = 40 -speed_print = 50 retraction_amount = 1.2 -cool_fan_enabled = False \ No newline at end of file +speed_print = 50 + 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 79052dbb28..3e79486620 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Extra Fast definition = atmat_signal_pro_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_hips_175 +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.40mm [values] +build_volume_temperature = 40 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 25 material_print_temperature = =default_material_print_temperature + 50 -build_volume_temperature = 40 -speed_print = 40 retraction_amount = 1 -cool_fan_enabled = False \ No newline at end of file +speed_print = 40 + 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 01ec8c4c88..9aaadf6456 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Fast definition = atmat_signal_pro_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_hips_175 +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.40mm [values] +build_volume_temperature = 40 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 25 material_print_temperature = =default_material_print_temperature + 50 -build_volume_temperature = 40 -speed_print = 40 retraction_amount = 1 -cool_fan_enabled = False \ No newline at end of file +speed_print = 40 + 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 f379582627..1d9e208e7e 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Fine definition = atmat_signal_pro_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_hips_175 +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.40mm [values] +build_volume_temperature = 40 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 25 material_print_temperature = =default_material_print_temperature + 50 -build_volume_temperature = 40 -speed_print = 40 retraction_amount = 1 -cool_fan_enabled = False \ No newline at end of file +speed_print = 40 + 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 b0e35d59f7..72e8ad4951 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Normal definition = atmat_signal_pro_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_hips_175 +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.40mm [values] +build_volume_temperature = 40 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 25 material_print_temperature = =default_material_print_temperature + 50 -build_volume_temperature = 40 -speed_print = 40 retraction_amount = 1 -cool_fan_enabled = False +speed_print = 40 + 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 a4d67992fd..0e1f420c0a 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Extra Fast definition = atmat_signal_pro_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_nylon_175 +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.40mm [values] +build_volume_temperature = 40 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 10 material_print_temperature = =default_material_print_temperature + 20 -build_volume_temperature = 40 -speed_print = 30 retraction_amount = 1 -cool_fan_enabled = False \ No newline at end of file +speed_print = 30 + 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 94628518c8..badfe12fee 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Fast definition = atmat_signal_pro_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_nylon_175 +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.40mm [values] +build_volume_temperature = 40 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 10 material_print_temperature = =default_material_print_temperature + 20 -build_volume_temperature = 40 -speed_print = 30 retraction_amount = 1 -cool_fan_enabled = False \ No newline at end of file +speed_print = 30 + 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 025e3eff12..1940b724b4 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Fine definition = atmat_signal_pro_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_nylon_175 +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.40mm [values] +build_volume_temperature = 40 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 10 material_print_temperature = =default_material_print_temperature + 20 -build_volume_temperature = 40 -speed_print = 30 retraction_amount = 1 -cool_fan_enabled = False \ No newline at end of file +speed_print = 30 + 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 7a66890003..d62cced041 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Normal definition = atmat_signal_pro_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_nylon_175 +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.40mm [values] +build_volume_temperature = 40 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 10 material_print_temperature = =default_material_print_temperature + 20 -build_volume_temperature = 40 -speed_print = 30 retraction_amount = 1 -cool_fan_enabled = False +speed_print = 30 + 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 88b29987b7..95e4eda1cc 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Extra Fast definition = atmat_signal_pro_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_pc_175 +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.40mm [values] +build_volume_temperature = 45 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 20 material_print_temperature = =default_material_print_temperature + 13 -build_volume_temperature = 45 -speed_print = 25 retraction_amount = 1 -cool_fan_enabled = False \ No newline at end of file +speed_print = 25 + 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 91d1a06fef..4cab5ed392 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Fast definition = atmat_signal_pro_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_pc_175 +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.40mm [values] +build_volume_temperature = 45 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 20 material_print_temperature = =default_material_print_temperature + 13 -build_volume_temperature = 45 -speed_print = 25 retraction_amount = 1 -cool_fan_enabled = False \ No newline at end of file +speed_print = 25 + 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 1bd97ba58f..9cc4a1c86f 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Fine definition = atmat_signal_pro_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_pc_175 +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.40mm [values] +build_volume_temperature = 45 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 20 material_print_temperature = =default_material_print_temperature + 13 -build_volume_temperature = 45 -speed_print = 25 retraction_amount = 1 -cool_fan_enabled = False \ No newline at end of file +speed_print = 25 + 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 8b2ef9d8bb..ab3be954b3 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Normal definition = atmat_signal_pro_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pc_175 +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.40mm [values] +build_volume_temperature = 45 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 20 material_print_temperature = =default_material_print_temperature + 13 -build_volume_temperature = 45 -speed_print = 25 retraction_amount = 1 -cool_fan_enabled = False +speed_print = 25 + 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 2b50eaea1a..a3c927e449 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Extra Fast definition = atmat_signal_pro_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_petg_175 +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.40mm [values] -material_bed_temperature = =default_material_bed_temperature - 5 -material_print_temperature = =default_material_print_temperature + 30 -speed_print = 60 -retraction_amount = 1 cool_fan_speed = 30 cool_fan_speed_max = 50 +material_bed_temperature = =default_material_bed_temperature - 5 +material_print_temperature = =default_material_print_temperature + 30 +retraction_amount = 1 +speed_print = 60 support_fan_enable = True support_supported_skin_fan_speed = 100 + 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 cabc3b7465..01df85d5e5 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Fast definition = atmat_signal_pro_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_petg_175 +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.40mm [values] -material_bed_temperature = =default_material_bed_temperature - 5 -material_print_temperature = =default_material_print_temperature + 30 -speed_print = 60 -retraction_amount = 1 cool_fan_speed = 30 cool_fan_speed_max = 50 +material_bed_temperature = =default_material_bed_temperature - 5 +material_print_temperature = =default_material_print_temperature + 30 +retraction_amount = 1 +speed_print = 60 support_fan_enable = True support_supported_skin_fan_speed = 100 + 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 e082d86d6e..6bf277081a 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Fine definition = atmat_signal_pro_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_petg_175 +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.40mm [values] -material_bed_temperature = =default_material_bed_temperature - 5 -material_print_temperature = =default_material_print_temperature + 30 -speed_print = 60 -retraction_amount = 1 cool_fan_speed = 30 cool_fan_speed_max = 50 +material_bed_temperature = =default_material_bed_temperature - 5 +material_print_temperature = =default_material_print_temperature + 30 +retraction_amount = 1 +speed_print = 60 support_fan_enable = True support_supported_skin_fan_speed = 100 + 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 83648b751b..674ff8d746 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Normal definition = atmat_signal_pro_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_petg_175 +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.40mm [values] -material_bed_temperature = =default_material_bed_temperature - 5 -material_print_temperature = =default_material_print_temperature + 30 -speed_print = 60 -retraction_amount = 1 cool_fan_speed = 30 cool_fan_speed_max = 50 +material_bed_temperature = =default_material_bed_temperature - 5 +material_print_temperature = =default_material_print_temperature + 30 +retraction_amount = 1 +speed_print = 60 support_fan_enable = True support_supported_skin_fan_speed = 100 + 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 fc4859fdd9..c60aecae73 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Extra Fast definition = atmat_signal_pro_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_pla_175 +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.40mm [values] -material_print_temperature = =default_material_print_temperature + 20 -speed_print = 70 -retraction_amount = 0.75 cool_fan_speed = 75 cool_fan_speed_max = 100 +material_print_temperature = =default_material_print_temperature + 20 +retraction_amount = 0.75 +speed_print = 70 support_fan_enable = True -support_supported_skin_fan_speed = 100 \ No newline at end of file +support_supported_skin_fan_speed = 100 + 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 663077a320..1bd6efc998 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Fast definition = atmat_signal_pro_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_pla_175 +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.40mm [values] -material_print_temperature = =default_material_print_temperature + 15 -speed_print = 70 -retraction_amount = 0.75 cool_fan_speed = 75 cool_fan_speed_max = 100 +material_print_temperature = =default_material_print_temperature + 15 +retraction_amount = 0.75 +speed_print = 70 support_fan_enable = True -support_supported_skin_fan_speed = 100 \ No newline at end of file +support_supported_skin_fan_speed = 100 + 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 fe603bf350..799d777087 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Fine definition = atmat_signal_pro_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_pla_175 +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.40mm [values] -material_print_temperature = =default_material_print_temperature + 5 -speed_print = 70 -retraction_amount = 0.75 cool_fan_speed = 75 cool_fan_speed_max = 100 +material_print_temperature = =default_material_print_temperature + 5 +retraction_amount = 0.75 +speed_print = 70 support_fan_enable = True -support_supported_skin_fan_speed = 100 \ No newline at end of file +support_supported_skin_fan_speed = 100 + 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 a8fe76ff25..1d609a9b5b 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Normal definition = atmat_signal_pro_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pla_175 +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.40mm [values] -material_print_temperature = =default_material_print_temperature + 10 -speed_print = 70 -retraction_amount = 0.75 cool_fan_speed = 75 cool_fan_speed_max = 100 +material_print_temperature = =default_material_print_temperature + 10 +retraction_amount = 0.75 +speed_print = 70 support_fan_enable = True -support_supported_skin_fan_speed = 100 \ No newline at end of file +support_supported_skin_fan_speed = 100 + 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 fb75df154a..99a80a7f04 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 @@ -1,24 +1,25 @@ [general] -version = 4 -name = Extra Fast definition = atmat_signal_pro_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_pva_175 +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.40mm [values] -material_print_temperature = =default_material_print_temperature -speed_print = 30 -retraction_amount = 1 -cool_fan_enabled = False brim_replaces_support = False +cool_fan_enabled = False +material_print_temperature = =default_material_print_temperature +retraction_amount = 1 +speed_print = 30 +support_bottom_distance = =support_z_distance support_brim_enable = True support_pattern = triangles -support_xy_distance_overhang = 0 -support_bottom_distance = =support_z_distance support_use_towers = False -support_z_distance = 0 \ No newline at end of file +support_xy_distance_overhang = 0 +support_z_distance = 0 + 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 2c39163f24..9d5e84588c 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 @@ -1,24 +1,25 @@ [general] -version = 4 -name = Fast definition = atmat_signal_pro_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_pva_175 +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.40mm [values] -material_print_temperature = =default_material_print_temperature -speed_print = 30 -retraction_amount = 1 -cool_fan_enabled = False brim_replaces_support = False +cool_fan_enabled = False +material_print_temperature = =default_material_print_temperature +retraction_amount = 1 +speed_print = 30 +support_bottom_distance = =support_z_distance support_brim_enable = True support_pattern = triangles -support_xy_distance_overhang = 0 -support_bottom_distance = =support_z_distance support_use_towers = False -support_z_distance = 0 \ No newline at end of file +support_xy_distance_overhang = 0 +support_z_distance = 0 + 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 c516cd2fb6..f418bb75ac 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 @@ -1,24 +1,25 @@ [general] -version = 4 -name = Fine definition = atmat_signal_pro_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_pva_175 +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.40mm [values] -material_print_temperature = =default_material_print_temperature -speed_print = 30 -retraction_amount = 1 -cool_fan_enabled = False brim_replaces_support = False +cool_fan_enabled = False +material_print_temperature = =default_material_print_temperature +retraction_amount = 1 +speed_print = 30 +support_bottom_distance = =support_z_distance support_brim_enable = True support_pattern = triangles -support_xy_distance_overhang = 0 -support_bottom_distance = =support_z_distance support_use_towers = False -support_z_distance = 0 \ No newline at end of file +support_xy_distance_overhang = 0 +support_z_distance = 0 + 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 606e9c8a97..5b2d7d8244 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 @@ -1,24 +1,25 @@ [general] -version = 4 -name = Normal definition = atmat_signal_pro_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pva_175 +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.40mm [values] -material_print_temperature = =default_material_print_temperature -speed_print = 30 -retraction_amount = 1 -cool_fan_enabled = False brim_replaces_support = False +cool_fan_enabled = False +material_print_temperature = =default_material_print_temperature +retraction_amount = 1 +speed_print = 30 +support_bottom_distance = =support_z_distance support_brim_enable = True support_pattern = triangles -support_xy_distance_overhang = 0 -support_bottom_distance = =support_z_distance support_use_towers = False -support_z_distance = 0 \ No newline at end of file +support_xy_distance_overhang = 0 +support_z_distance = 0 + 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 ab2447cea4..a7f1d0b0e5 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Extra Fast definition = atmat_signal_pro_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_tpu_175 +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.40mm [values] +build_volume_temperature = 30 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 60 material_print_temperature = =default_material_print_temperature + 20 -build_volume_temperature = 30 -speed_print = 30 retraction_amount = 1 -cool_fan_enabled = False \ No newline at end of file +speed_print = 30 + 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 1e458711a1..4ff61c22b5 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Fast definition = atmat_signal_pro_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_tpu_175 +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.40mm [values] +build_volume_temperature = 30 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 60 material_print_temperature = =default_material_print_temperature + 20 -build_volume_temperature = 30 -speed_print = 30 retraction_amount = 1 -cool_fan_enabled = False \ No newline at end of file +speed_print = 30 + 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 1241210061..620225e814 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Fine definition = atmat_signal_pro_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_tpu_175 +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.40mm [values] +build_volume_temperature = 30 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 60 material_print_temperature = =default_material_print_temperature + 20 -build_volume_temperature = 30 -speed_print = 30 retraction_amount = 1 -cool_fan_enabled = False \ No newline at end of file +speed_print = 30 + 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 ea7d673557..d581f86800 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Normal definition = atmat_signal_pro_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_tpu_175 +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.40mm [values] +build_volume_temperature = 30 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 60 material_print_temperature = =default_material_print_temperature + 20 -build_volume_temperature = 30 -speed_print = 30 retraction_amount = 1 -cool_fan_enabled = False +speed_print = 30 + 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 997def5b71..d0a7f429b6 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Extra Fast definition = atmat_signal_pro_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_abs_175 +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.80mm [values] +build_volume_temperature = 40 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 20 material_print_temperature = =default_material_print_temperature + 25 -build_volume_temperature = 40 -speed_print = 50 retraction_amount = 1.2 -cool_fan_enabled = False \ No newline at end of file +speed_print = 50 + 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 9c87913270..1269e55fc0 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Sprint definition = atmat_signal_pro_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_abs_175 +quality_type = sprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] +build_volume_temperature = 40 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 20 material_print_temperature = =default_material_print_temperature + 25 -build_volume_temperature = 40 -speed_print = 50 retraction_amount = 1.2 -cool_fan_enabled = False \ No newline at end of file +speed_print = 50 + 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 73f6b96141..9d9b88f342 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Super Sprint definition = atmat_signal_pro_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_abs_175 +quality_type = supersprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] +build_volume_temperature = 40 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 20 material_print_temperature = =default_material_print_temperature + 25 -build_volume_temperature = 40 -speed_print = 50 retraction_amount = 1.2 -cool_fan_enabled = False \ No newline at end of file +speed_print = 50 + 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 7c41f52e26..227c8b174b 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Extra Fast definition = atmat_signal_pro_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_hips_175 +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.80mm [values] +build_volume_temperature = 40 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 35 material_print_temperature = =default_material_print_temperature + 50 -build_volume_temperature = 40 -speed_print = 40 retraction_amount = 1.2 -cool_fan_enabled = False \ No newline at end of file +speed_print = 40 + 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 376b4cace3..ad6061154d 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Sprint definition = atmat_signal_pro_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_hips_175 +quality_type = sprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] +build_volume_temperature = 40 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 35 material_print_temperature = =default_material_print_temperature + 50 -build_volume_temperature = 40 -speed_print = 40 retraction_amount = 1.2 -cool_fan_enabled = False \ No newline at end of file +speed_print = 40 + 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 ab2de5ac5b..a5fb56480a 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Super Sprint definition = atmat_signal_pro_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_hips_175 +quality_type = supersprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] +build_volume_temperature = 40 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 35 material_print_temperature = =default_material_print_temperature + 50 -build_volume_temperature = 40 -speed_print = 40 retraction_amount = 1.2 -cool_fan_enabled = False \ No newline at end of file +speed_print = 40 + 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 fd5e55f93c..c4be47cafd 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Extra Fast definition = atmat_signal_pro_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_nylon_175 +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.80mm [values] +build_volume_temperature = 40 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 20 material_print_temperature = =default_material_print_temperature + 20 -build_volume_temperature = 40 -speed_print = 30 retraction_amount = 1.2 -cool_fan_enabled = False \ No newline at end of file +speed_print = 30 + 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 115ad1d75f..e6afaf235b 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Sprint definition = atmat_signal_pro_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_nylon_175 +quality_type = sprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] +build_volume_temperature = 40 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 20 material_print_temperature = =default_material_print_temperature + 20 -build_volume_temperature = 40 -speed_print = 30 retraction_amount = 1.2 -cool_fan_enabled = False \ No newline at end of file +speed_print = 30 + 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 81f204cb4c..2edad0b477 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Super Sprint definition = atmat_signal_pro_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_nylon_175 +quality_type = supersprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] +build_volume_temperature = 40 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 20 material_print_temperature = =default_material_print_temperature + 20 -build_volume_temperature = 40 -speed_print = 30 retraction_amount = 1.2 -cool_fan_enabled = False \ No newline at end of file +speed_print = 30 + 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 0c9351a2b5..9074add48c 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Extra Fast definition = atmat_signal_pro_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_pc_175 +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.80mm [values] +build_volume_temperature = 45 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 20 material_print_temperature = =default_material_print_temperature + 13 -build_volume_temperature = 45 -speed_print = 25 retraction_amount = 1.2 -cool_fan_enabled = False \ No newline at end of file +speed_print = 25 + 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 36e42c60a5..43db60ad35 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Sprint definition = atmat_signal_pro_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_pc_175 +quality_type = sprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] +build_volume_temperature = 45 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 20 material_print_temperature = =default_material_print_temperature + 13 -build_volume_temperature = 45 -speed_print = 25 retraction_amount = 1.2 -cool_fan_enabled = False \ No newline at end of file +speed_print = 25 + 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 62eb141b74..ae91df6c8f 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Super Sprint definition = atmat_signal_pro_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_pc_175 +quality_type = supersprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] +build_volume_temperature = 45 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 20 material_print_temperature = =default_material_print_temperature + 13 -build_volume_temperature = 45 -speed_print = 25 retraction_amount = 1.2 -cool_fan_enabled = False \ No newline at end of file +speed_print = 25 + 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 e566f98433..cb2d7d8adc 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Extra Fast definition = atmat_signal_pro_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_petg_175 +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.80mm [values] -material_bed_temperature = =default_material_bed_temperature - 5 -material_print_temperature = =default_material_print_temperature + 40 -speed_print = 40 -retraction_amount = 1.2 cool_fan_speed = 30 cool_fan_speed_max = 50 +material_bed_temperature = =default_material_bed_temperature - 5 +material_print_temperature = =default_material_print_temperature + 40 +retraction_amount = 1.2 +speed_print = 40 support_fan_enable = True support_supported_skin_fan_speed = 100 + 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 a101e61906..94a2cb199f 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Sprint definition = atmat_signal_pro_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_petg_175 +quality_type = sprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] -material_bed_temperature = =default_material_bed_temperature - 5 -material_print_temperature = =default_material_print_temperature + 40 -speed_print = 30 -retraction_amount = 1.2 cool_fan_speed = 30 cool_fan_speed_max = 50 +material_bed_temperature = =default_material_bed_temperature - 5 +material_print_temperature = =default_material_print_temperature + 40 +retraction_amount = 1.2 +speed_print = 30 support_fan_enable = True support_supported_skin_fan_speed = 100 + 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 273420de1d..a1e9de0c4b 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Super Sprint definition = atmat_signal_pro_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_petg_175 +quality_type = supersprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] -material_bed_temperature = =default_material_bed_temperature - 5 -material_print_temperature = =default_material_print_temperature + 40 -speed_print = 24 -retraction_amount = 1.2 cool_fan_speed = 30 cool_fan_speed_max = 50 +material_bed_temperature = =default_material_bed_temperature - 5 +material_print_temperature = =default_material_print_temperature + 40 +retraction_amount = 1.2 +speed_print = 24 support_fan_enable = True support_supported_skin_fan_speed = 100 + 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 abe0defbc4..070706df53 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Extra Fast definition = atmat_signal_pro_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_pla_175 +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.80mm [values] -material_print_temperature = =default_material_print_temperature + 25 -speed_print = 40 -retraction_amount = 1 cool_fan_speed = 75 cool_fan_speed_max = 100 +material_print_temperature = =default_material_print_temperature + 25 +retraction_amount = 1 +speed_print = 40 support_fan_enable = True -support_supported_skin_fan_speed = 100 \ No newline at end of file +support_supported_skin_fan_speed = 100 + 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 28901100c6..2161bbfe5e 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Sprint definition = atmat_signal_pro_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_pla_175 +quality_type = sprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] -material_print_temperature = =default_material_print_temperature + 30 -speed_print = 30 -retraction_amount = 1 cool_fan_speed = 75 cool_fan_speed_max = 100 +material_print_temperature = =default_material_print_temperature + 30 +retraction_amount = 1 +speed_print = 30 support_fan_enable = True -support_supported_skin_fan_speed = 100 \ No newline at end of file +support_supported_skin_fan_speed = 100 + 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 116b399abc..d9a8ddcaed 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Super Sprint definition = atmat_signal_pro_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_pla_175 +quality_type = supersprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] -material_print_temperature = =default_material_print_temperature + 30 -speed_print = 24 -retraction_amount = 1 cool_fan_speed = 75 cool_fan_speed_max = 100 +material_print_temperature = =default_material_print_temperature + 30 +retraction_amount = 1 +speed_print = 24 support_fan_enable = True -support_supported_skin_fan_speed = 100 \ No newline at end of file +support_supported_skin_fan_speed = 100 + 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 5e26677f4b..aae1778e7b 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 @@ -1,24 +1,25 @@ [general] -version = 4 -name = Extra Fast definition = atmat_signal_pro_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_pva_175 +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.80mm [values] -material_print_temperature = =default_material_print_temperature -speed_print = 30 -retraction_amount = 1.2 -cool_fan_enabled = False brim_replaces_support = False +cool_fan_enabled = False +material_print_temperature = =default_material_print_temperature +retraction_amount = 1.2 +speed_print = 30 +support_bottom_distance = =support_z_distance support_brim_enable = True support_pattern = triangles -support_xy_distance_overhang = 0 -support_bottom_distance = =support_z_distance support_use_towers = False -support_z_distance = 0 \ No newline at end of file +support_xy_distance_overhang = 0 +support_z_distance = 0 + 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 19961cc8e9..5fae9d17f4 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 @@ -1,24 +1,25 @@ [general] -version = 4 -name = Sprint definition = atmat_signal_pro_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_pva_175 +quality_type = sprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] -material_print_temperature = =default_material_print_temperature -speed_print = 30 -retraction_amount = 1.2 -cool_fan_enabled = False brim_replaces_support = False +cool_fan_enabled = False +material_print_temperature = =default_material_print_temperature +retraction_amount = 1.2 +speed_print = 30 +support_bottom_distance = =support_z_distance support_brim_enable = True support_pattern = triangles -support_xy_distance_overhang = 0 -support_bottom_distance = =support_z_distance support_use_towers = False -support_z_distance = 0 \ No newline at end of file +support_xy_distance_overhang = 0 +support_z_distance = 0 + 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 cb48da4f12..a33aa63546 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 @@ -1,24 +1,25 @@ [general] -version = 4 -name = Super Sprint definition = atmat_signal_pro_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_pva_175 +quality_type = supersprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] -material_print_temperature = =default_material_print_temperature -speed_print = 30 -retraction_amount = 1.2 -cool_fan_enabled = False brim_replaces_support = False +cool_fan_enabled = False +material_print_temperature = =default_material_print_temperature +retraction_amount = 1.2 +speed_print = 30 +support_bottom_distance = =support_z_distance support_brim_enable = True support_pattern = triangles -support_xy_distance_overhang = 0 -support_bottom_distance = =support_z_distance support_use_towers = False -support_z_distance = 0 \ No newline at end of file +support_xy_distance_overhang = 0 +support_z_distance = 0 + 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 7db0650783..88f895a788 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Extra Fast definition = atmat_signal_pro_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_tpu_175 +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.80mm [values] +build_volume_temperature = 30 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 60 material_print_temperature = =default_material_print_temperature + 25 -build_volume_temperature = 30 -speed_print = 30 retraction_amount = 1.2 -cool_fan_enabled = False \ No newline at end of file +speed_print = 30 + 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 d0c45f0c38..cb43069309 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Sprint definition = atmat_signal_pro_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_tpu_175 +quality_type = sprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] +build_volume_temperature = 30 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 60 material_print_temperature = =default_material_print_temperature + 25 -build_volume_temperature = 30 -speed_print = 30 retraction_amount = 1.2 -cool_fan_enabled = False \ No newline at end of file +speed_print = 30 + 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 22a14d1444..dd81906dd0 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 @@ -1,19 +1,20 @@ [general] -version = 4 -name = Super Sprint definition = atmat_signal_pro_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_tpu_175 +quality_type = supersprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] +build_volume_temperature = 30 +cool_fan_enabled = False material_bed_temperature = =default_material_bed_temperature + 60 material_print_temperature = =default_material_print_temperature + 25 -build_volume_temperature = 30 -speed_print = 30 retraction_amount = 1.2 -cool_fan_enabled = False \ No newline at end of file +speed_print = 30 + diff --git a/resources/quality/beamup_l/beamup_l_coarse.inst.cfg b/resources/quality/beamup_l/beamup_l_coarse.inst.cfg index 2bbd56060f..e298d659f7 100644 --- a/resources/quality/beamup_l/beamup_l_coarse.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_coarse.inst.cfg @@ -1,40 +1,41 @@ -[general] -version = 4 -name = BeamUp L Coarse -definition = beamup_l - -[metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 -material = generic_pla - -[values] -layer_height = 0.30 -adhesion_type = brim -brim_line_count = 8 -infill_before_walls = False -initial_layer_line_width_factor = 120.0 -material_print_temperature = 215 -material_print_temperature_layer_0 = 235 -retraction_amount = 2 -retraction_speed = 30 -speed_infill = 55 -speed_layer_0 = 25 -speed_print = 55 -speed_support_interface = 55 -speed_topbottom = 55 -speed_wall_0 = 45 -speed_wall_x = 55 -support_enable = True -support_angle = 60 -support_infill_rate = 20 -support_interface_enable = True -support_interface_height = 0.60 -support_interface_pattern = zigzag -support_interface_skip_height = 0.30 -support_offset = 0.8 -support_z_distance = 0.4 -wall_thickness = 1.6 -zig_zaggify_infill = True +[general] +definition = beamup_l +name = BeamUp L Coarse +version = 4 + +[metadata] +material = generic_pla +quality_type = coarse +setting_version = 22 +type = quality +weight = -3 + +[values] +adhesion_type = brim +brim_line_count = 8 +infill_before_walls = False +initial_layer_line_width_factor = 120.0 +layer_height = 0.30 +material_print_temperature = 215 +material_print_temperature_layer_0 = 235 +retraction_amount = 2 +retraction_speed = 30 +speed_infill = 55 +speed_layer_0 = 25 +speed_print = 55 +speed_support_interface = 55 +speed_topbottom = 55 +speed_wall_0 = 45 +speed_wall_x = 55 +support_angle = 60 +support_enable = True +support_infill_rate = 20 +support_interface_enable = True +support_interface_height = 0.60 +support_interface_pattern = zigzag +support_interface_skip_height = 0.30 +support_offset = 0.8 +support_z_distance = 0.4 +wall_thickness = 1.6 +zig_zaggify_infill = True + diff --git a/resources/quality/beamup_l/beamup_l_draft.inst.cfg b/resources/quality/beamup_l/beamup_l_draft.inst.cfg index f3207ce0cc..16f8536a02 100644 --- a/resources/quality/beamup_l/beamup_l_draft.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_draft.inst.cfg @@ -1,40 +1,41 @@ -[general] -version = 4 -name = BeamUp L Draft -definition = beamup_l - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 -material = generic_pla - -[values] -layer_height = 0.2 -adhesion_type = brim -brim_line_count = 8 -infill_before_walls = False -initial_layer_line_width_factor = 120.0 -material_print_temperature = 210 -material_print_temperature_layer_0 = 235 -retraction_amount = 2 -retraction_speed = 30 -speed_infill = 55 -speed_layer_0 = 25 -speed_print = 55 -speed_support_interface = 55 -speed_topbottom = 55 -speed_wall_0 = 45 -speed_wall_x = 55 -support_enable = True -support_angle = 60 -support_infill_rate = 20 -support_interface_enable = True -support_interface_height = 0.60 -support_interface_pattern = zigzag -support_interface_skip_height = 0.20 -support_offset = 0.8 -support_z_distance = 0.3 -wall_thickness = 1.6 -zig_zaggify_infill = True +[general] +definition = beamup_l +name = BeamUp L Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +weight = -2 + +[values] +adhesion_type = brim +brim_line_count = 8 +infill_before_walls = False +initial_layer_line_width_factor = 120.0 +layer_height = 0.2 +material_print_temperature = 210 +material_print_temperature_layer_0 = 235 +retraction_amount = 2 +retraction_speed = 30 +speed_infill = 55 +speed_layer_0 = 25 +speed_print = 55 +speed_support_interface = 55 +speed_topbottom = 55 +speed_wall_0 = 45 +speed_wall_x = 55 +support_angle = 60 +support_enable = True +support_infill_rate = 20 +support_interface_enable = True +support_interface_height = 0.60 +support_interface_pattern = zigzag +support_interface_skip_height = 0.20 +support_offset = 0.8 +support_z_distance = 0.3 +wall_thickness = 1.6 +zig_zaggify_infill = True + 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 679d7d6e34..cacf5289e7 100644 --- a/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg @@ -1,40 +1,41 @@ -[general] -version = 4 -name = BeamUp L Extra Fine -definition = beamup_l - -[metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 -material = generic_pla - -[values] -layer_height = 0.06 -adhesion_type = brim -brim_line_count = 8 -infill_before_walls = False -initial_layer_line_width_factor = 120.0 -material_print_temperature = 195 -material_print_temperature_layer_0 = 235 -retraction_amount = 2 -retraction_speed = 30 -speed_infill = 45 -speed_layer_0 = 25 -speed_print = 45 -speed_support_interface = 45 -speed_topbottom = 45 -speed_wall_0 = 35 -speed_wall_x = 45 -support_enable = True -support_angle = 60 -support_infill_rate = 20 -support_interface_enable = True -support_interface_height = 0.30 -support_interface_pattern = zigzag -support_interface_skip_height = 0.06 -support_offset = 0.8 -support_z_distance = 0.12 -wall_thickness = 1.6 -zig_zaggify_infill = True +[general] +definition = beamup_l +name = BeamUp L Extra Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = high +setting_version = 22 +type = quality +weight = 1 + +[values] +adhesion_type = brim +brim_line_count = 8 +infill_before_walls = False +initial_layer_line_width_factor = 120.0 +layer_height = 0.06 +material_print_temperature = 195 +material_print_temperature_layer_0 = 235 +retraction_amount = 2 +retraction_speed = 30 +speed_infill = 45 +speed_layer_0 = 25 +speed_print = 45 +speed_support_interface = 45 +speed_topbottom = 45 +speed_wall_0 = 35 +speed_wall_x = 45 +support_angle = 60 +support_enable = True +support_infill_rate = 20 +support_interface_enable = True +support_interface_height = 0.30 +support_interface_pattern = zigzag +support_interface_skip_height = 0.06 +support_offset = 0.8 +support_z_distance = 0.12 +wall_thickness = 1.6 +zig_zaggify_infill = True + diff --git a/resources/quality/beamup_l/beamup_l_fine.inst.cfg b/resources/quality/beamup_l/beamup_l_fine.inst.cfg index 55e584feb4..f977de059b 100644 --- a/resources/quality/beamup_l/beamup_l_fine.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_fine.inst.cfg @@ -1,40 +1,41 @@ -[general] -version = 4 -name = BeamUp L Fine -definition = beamup_l - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_pla - -[values] -layer_height = 0.1 -adhesion_type = brim -brim_line_count = 8 -infill_before_walls = False -initial_layer_line_width_factor = 120.0 -material_print_temperature = 200 -material_print_temperature_layer_0 = 235 -retraction_amount = 2 -retraction_speed = 30 -speed_infill = 50 -speed_layer_0 = 25 -speed_print = 50 -speed_support_interface = 50 -speed_topbottom = 50 -speed_wall_0 = 40 -speed_wall_x = 50 -support_enable = True -support_angle = 60 -support_infill_rate = 20 -support_interface_enable = True -support_interface_height = 0.30 -support_interface_pattern = zigzag -support_interface_skip_height = 0.10 -support_offset = 0.8 -support_z_distance = 0.2 -wall_thickness = 1.6 -zig_zaggify_infill = True +[general] +definition = beamup_l +name = BeamUp L Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = normal +setting_version = 22 +type = quality +weight = 0 + +[values] +adhesion_type = brim +brim_line_count = 8 +infill_before_walls = False +initial_layer_line_width_factor = 120.0 +layer_height = 0.1 +material_print_temperature = 200 +material_print_temperature_layer_0 = 235 +retraction_amount = 2 +retraction_speed = 30 +speed_infill = 50 +speed_layer_0 = 25 +speed_print = 50 +speed_support_interface = 50 +speed_topbottom = 50 +speed_wall_0 = 40 +speed_wall_x = 50 +support_angle = 60 +support_enable = True +support_infill_rate = 20 +support_interface_enable = True +support_interface_height = 0.30 +support_interface_pattern = zigzag +support_interface_skip_height = 0.10 +support_offset = 0.8 +support_z_distance = 0.2 +wall_thickness = 1.6 +zig_zaggify_infill = True + diff --git a/resources/quality/beamup_l/beamup_l_normal.inst.cfg b/resources/quality/beamup_l/beamup_l_normal.inst.cfg index 8fe422893a..cc78f01198 100644 --- a/resources/quality/beamup_l/beamup_l_normal.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_normal.inst.cfg @@ -1,40 +1,41 @@ -[general] -version = 4 -name = BeamUp L Normal -definition = beamup_l - -[metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 -material = generic_pla - -[values] -layer_height = 0.15 -adhesion_type = brim -brim_line_count = 8 -infill_before_walls = False -initial_layer_line_width_factor = 120.0 -material_print_temperature = 205 -material_print_temperature_layer_0 = 235 -retraction_amount = 2 -retraction_speed = 30 -speed_infill = 50 -speed_layer_0 = 25 -speed_print = 50 -speed_support_interface = 50 -speed_topbottom = 50 -speed_wall_0 = 40 -speed_wall_x = 50 -support_enable = True -support_angle = 60 -support_infill_rate = 20 -support_interface_enable = True -support_interface_height = 0.45 -support_interface_pattern = zigzag -support_interface_skip_height = 0.15 -support_offset = 0.8 -support_z_distance = 0.25 -wall_thickness = 1.6 -zig_zaggify_infill = True +[general] +definition = beamup_l +name = BeamUp L Normal +version = 4 + +[metadata] +material = generic_pla +quality_type = fast +setting_version = 22 +type = quality +weight = -1 + +[values] +adhesion_type = brim +brim_line_count = 8 +infill_before_walls = False +initial_layer_line_width_factor = 120.0 +layer_height = 0.15 +material_print_temperature = 205 +material_print_temperature_layer_0 = 235 +retraction_amount = 2 +retraction_speed = 30 +speed_infill = 50 +speed_layer_0 = 25 +speed_print = 50 +speed_support_interface = 50 +speed_topbottom = 50 +speed_wall_0 = 40 +speed_wall_x = 50 +support_angle = 60 +support_enable = True +support_infill_rate = 20 +support_interface_enable = True +support_interface_height = 0.45 +support_interface_pattern = zigzag +support_interface_skip_height = 0.15 +support_offset = 0.8 +support_z_distance = 0.25 +wall_thickness = 1.6 +zig_zaggify_infill = True + diff --git a/resources/quality/beamup_s/beamup_s_coarse.inst.cfg b/resources/quality/beamup_s/beamup_s_coarse.inst.cfg index bb23893f75..d4d8b3551b 100644 --- a/resources/quality/beamup_s/beamup_s_coarse.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_coarse.inst.cfg @@ -1,40 +1,41 @@ -[general] -version = 4 -name = BeamUp S Coarse -definition = beamup_s - -[metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 -material = generic_pla - -[values] -layer_height = 0.30 -adhesion_type = brim -brim_line_count = 5 -infill_before_walls = False -initial_layer_line_width_factor = 120.0 -material_print_temperature = 215 -material_print_temperature_layer_0 = 230 -retraction_amount = 1.5 -retraction_speed = 30 -speed_infill = 50 -speed_layer_0 = 25 -speed_print = 50 -speed_support_interface = 50 -speed_topbottom = 50 -speed_wall_0 = 35 -speed_wall_x = 50 -support_enable = True -support_angle = 60 -support_infill_rate = 20 -support_interface_enable = True -support_interface_height = 0.60 -support_interface_pattern = zigzag -support_interface_skip_height = 0.30 -support_offset = 0.8 -support_z_distance = 0.2 -wall_thickness = 0.8 -zig_zaggify_infill = True +[general] +definition = beamup_s +name = BeamUp S Coarse +version = 4 + +[metadata] +material = generic_pla +quality_type = coarse +setting_version = 22 +type = quality +weight = -3 + +[values] +adhesion_type = brim +brim_line_count = 5 +infill_before_walls = False +initial_layer_line_width_factor = 120.0 +layer_height = 0.30 +material_print_temperature = 215 +material_print_temperature_layer_0 = 230 +retraction_amount = 1.5 +retraction_speed = 30 +speed_infill = 50 +speed_layer_0 = 25 +speed_print = 50 +speed_support_interface = 50 +speed_topbottom = 50 +speed_wall_0 = 35 +speed_wall_x = 50 +support_angle = 60 +support_enable = True +support_infill_rate = 20 +support_interface_enable = True +support_interface_height = 0.60 +support_interface_pattern = zigzag +support_interface_skip_height = 0.30 +support_offset = 0.8 +support_z_distance = 0.2 +wall_thickness = 0.8 +zig_zaggify_infill = True + diff --git a/resources/quality/beamup_s/beamup_s_draft.inst.cfg b/resources/quality/beamup_s/beamup_s_draft.inst.cfg index 68c146d47c..14dc4ad964 100644 --- a/resources/quality/beamup_s/beamup_s_draft.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_draft.inst.cfg @@ -1,40 +1,41 @@ -[general] -version = 4 -name = BeamUp S Draft -definition = beamup_s - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 -material = generic_pla - -[values] -layer_height = 0.2 -adhesion_type = brim -brim_line_count = 5 -infill_before_walls = False -initial_layer_line_width_factor = 120.0 -material_print_temperature = 210 -material_print_temperature_layer_0 = 230 -retraction_amount = 1.5 -retraction_speed = 30 -speed_infill = 45 -speed_layer_0 = 25 -speed_print = 45 -speed_support_interface = 45 -speed_topbottom = 45 -speed_wall_0 = 35 -speed_wall_x = 45 -support_enable = True -support_angle = 60 -support_infill_rate = 20 -support_interface_enable = True -support_interface_height = 0.40 -support_interface_pattern = zigzag -support_interface_skip_height = 0.20 -support_offset = 0.8 -support_z_distance = 0.2 -wall_thickness = 0.8 -zig_zaggify_infill = True +[general] +definition = beamup_s +name = BeamUp S Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +weight = -2 + +[values] +adhesion_type = brim +brim_line_count = 5 +infill_before_walls = False +initial_layer_line_width_factor = 120.0 +layer_height = 0.2 +material_print_temperature = 210 +material_print_temperature_layer_0 = 230 +retraction_amount = 1.5 +retraction_speed = 30 +speed_infill = 45 +speed_layer_0 = 25 +speed_print = 45 +speed_support_interface = 45 +speed_topbottom = 45 +speed_wall_0 = 35 +speed_wall_x = 45 +support_angle = 60 +support_enable = True +support_infill_rate = 20 +support_interface_enable = True +support_interface_height = 0.40 +support_interface_pattern = zigzag +support_interface_skip_height = 0.20 +support_offset = 0.8 +support_z_distance = 0.2 +wall_thickness = 0.8 +zig_zaggify_infill = True + 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 975c19fe8e..fe490f5dd4 100644 --- a/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg @@ -1,40 +1,41 @@ -[general] -version = 4 -name = BeamUp S Extra Fine -definition = beamup_s - -[metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 -material = generic_pla - -[values] -layer_height = 0.06 -adhesion_type = brim -brim_line_count = 5 -infill_before_walls = False -initial_layer_line_width_factor = 120.0 -material_print_temperature = 195 -material_print_temperature_layer_0 = 230 -retraction_amount = 1.5 -retraction_speed = 30 -speed_infill = 40 -speed_layer_0 = 25 -speed_print = 40 -speed_support_interface = 40 -speed_topbottom = 40 -speed_wall_0 = 30 -speed_wall_x = 40 -support_enable = True -support_angle = 60 -support_infill_rate = 20 -support_interface_enable = True -support_interface_height = 0.30 -support_interface_pattern = zigzag -support_interface_skip_height = 0.06 -support_offset = 0.8 -support_z_distance = 0.2 -wall_thickness = 0.8 -zig_zaggify_infill = True +[general] +definition = beamup_s +name = BeamUp S Extra Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = high +setting_version = 22 +type = quality +weight = 1 + +[values] +adhesion_type = brim +brim_line_count = 5 +infill_before_walls = False +initial_layer_line_width_factor = 120.0 +layer_height = 0.06 +material_print_temperature = 195 +material_print_temperature_layer_0 = 230 +retraction_amount = 1.5 +retraction_speed = 30 +speed_infill = 40 +speed_layer_0 = 25 +speed_print = 40 +speed_support_interface = 40 +speed_topbottom = 40 +speed_wall_0 = 30 +speed_wall_x = 40 +support_angle = 60 +support_enable = True +support_infill_rate = 20 +support_interface_enable = True +support_interface_height = 0.30 +support_interface_pattern = zigzag +support_interface_skip_height = 0.06 +support_offset = 0.8 +support_z_distance = 0.2 +wall_thickness = 0.8 +zig_zaggify_infill = True + diff --git a/resources/quality/beamup_s/beamup_s_fine.inst.cfg b/resources/quality/beamup_s/beamup_s_fine.inst.cfg index 9024298285..ea86894268 100644 --- a/resources/quality/beamup_s/beamup_s_fine.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_fine.inst.cfg @@ -1,40 +1,41 @@ -[general] -version = 4 -name = BeamUp S Fine -definition = beamup_s - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_pla - -[values] -layer_height = 0.1 -adhesion_type = brim -brim_line_count = 5 -infill_before_walls = False -initial_layer_line_width_factor = 120.0 -material_print_temperature = 200 -material_print_temperature_layer_0 = 230 -retraction_amount = 1.5 -retraction_speed = 30 -speed_infill = 40 -speed_layer_0 = 25 -speed_print = 40 -speed_support_interface = 40 -speed_topbottom = 40 -speed_wall_0 = 30 -speed_wall_x = 40 -support_enable = True -support_angle = 60 -support_infill_rate = 20 -support_interface_enable = True -support_interface_height = 0.30 -support_interface_pattern = zigzag -support_interface_skip_height = 0.10 -support_offset = 0.8 -support_z_distance = 0.2 -wall_thickness = 0.8 -zig_zaggify_infill = True +[general] +definition = beamup_s +name = BeamUp S Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = normal +setting_version = 22 +type = quality +weight = 0 + +[values] +adhesion_type = brim +brim_line_count = 5 +infill_before_walls = False +initial_layer_line_width_factor = 120.0 +layer_height = 0.1 +material_print_temperature = 200 +material_print_temperature_layer_0 = 230 +retraction_amount = 1.5 +retraction_speed = 30 +speed_infill = 40 +speed_layer_0 = 25 +speed_print = 40 +speed_support_interface = 40 +speed_topbottom = 40 +speed_wall_0 = 30 +speed_wall_x = 40 +support_angle = 60 +support_enable = True +support_infill_rate = 20 +support_interface_enable = True +support_interface_height = 0.30 +support_interface_pattern = zigzag +support_interface_skip_height = 0.10 +support_offset = 0.8 +support_z_distance = 0.2 +wall_thickness = 0.8 +zig_zaggify_infill = True + diff --git a/resources/quality/beamup_s/beamup_s_normal.inst.cfg b/resources/quality/beamup_s/beamup_s_normal.inst.cfg index f476ab0eac..c034f9bfd4 100644 --- a/resources/quality/beamup_s/beamup_s_normal.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_normal.inst.cfg @@ -1,40 +1,41 @@ -[general] -version = 4 -name = BeamUp S Normal -definition = beamup_s - -[metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 -material = generic_pla - -[values] -layer_height = 0.15 -adhesion_type = brim -brim_line_count = 5 -infill_before_walls = False -initial_layer_line_width_factor = 120.0 -material_print_temperature = 205 -material_print_temperature_layer_0 = 230 -retraction_amount = 1.5 -retraction_speed = 30 -speed_infill = 45 -speed_layer_0 = 25 -speed_print = 45 -speed_support_interface = 45 -speed_topbottom = 45 -speed_wall_0 = 35 -speed_wall_x = 45 -support_enable = True -support_angle = 60 -support_infill_rate = 20 -support_interface_enable = True -support_interface_height = 0.45 -support_interface_pattern = zigzag -support_interface_skip_height = 0.15 -support_offset = 0.8 -support_z_distance = 0.2 -wall_thickness = 0.8 -zig_zaggify_infill = True +[general] +definition = beamup_s +name = BeamUp S Normal +version = 4 + +[metadata] +material = generic_pla +quality_type = fast +setting_version = 22 +type = quality +weight = -1 + +[values] +adhesion_type = brim +brim_line_count = 5 +infill_before_walls = False +initial_layer_line_width_factor = 120.0 +layer_height = 0.15 +material_print_temperature = 205 +material_print_temperature_layer_0 = 230 +retraction_amount = 1.5 +retraction_speed = 30 +speed_infill = 45 +speed_layer_0 = 25 +speed_print = 45 +speed_support_interface = 45 +speed_topbottom = 45 +speed_wall_0 = 35 +speed_wall_x = 45 +support_angle = 60 +support_enable = True +support_infill_rate = 20 +support_interface_enable = True +support_interface_height = 0.45 +support_interface_pattern = zigzag +support_interface_skip_height = 0.15 +support_offset = 0.8 +support_z_distance = 0.2 +wall_thickness = 0.8 +zig_zaggify_infill = True + 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 cbe0e54f0c..036be998b8 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = biqu_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs_175 +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] wall_thickness = =line_width*8 + 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 d809fb1d48..38dd0a39e9 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Ultra Quality definition = biqu_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_abs_175 +quality_type = ultra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] wall_thickness = =line_width*8 + 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 29b2f1bedf..9de7b59deb 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = biqu_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg_175 +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*8 + 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 795257e1cb..16b26530ee 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Ultra Quality definition = biqu_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_petg_175 +quality_type = ultra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*8 + 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 d5d598885f..d1f35d9b95 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = biqu_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla_175 +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] + 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 da21ce6836..a8469a4ea9 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Ultra Quality definition = biqu_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_pla_175 +quality_type = ultra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] + 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 732e3b1cf0..1e19464243 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = biqu_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs_175 +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*4 + 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 dca85994d1..9fdab1172d 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Low Quality definition = biqu_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs_175 +quality_type = low +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*4 + 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 70fd01d6be..1d8769491d 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = biqu_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs_175 +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*4 + 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 c5830de118..41ad0484b6 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = biqu_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs_175 +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*4 + 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 9d21249ef9..58785c33ae 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = biqu_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg_175 +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 f8767e1eb0..119ca0f89e 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = biqu_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg_175 +quality_type = low +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 0b97230f28..2d5d033fd0 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = biqu_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg_175 +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 3958775b98..a8b77b9c42 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = biqu_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg_175 +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 53ce3a9d9d..9fb5cb6d1b 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = biqu_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla_175 +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 6572df292f..1ee6fb803c 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = biqu_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla_175 +quality_type = low +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 da8ce636a6..822a0635a7 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = biqu_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla_175 +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 1d752cbd56..5b52d5a0d9 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = biqu_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla_175 +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 38919c4d49..b4c9741aa3 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 @@ -1,13 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = biqu_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu_175 +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] +speed_print = 30 + 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 1cd0135f45..b890ee3ed6 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 @@ -1,13 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = biqu_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu_175 +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] +speed_print = 30 + 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 d3f1456741..0dd669dd91 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 @@ -1,13 +1,15 @@ [general] -version = 4 -name = Super Quality definition = biqu_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_tpu_175 +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] +speed_print = 30 + 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 484bc56d55..b5ab386c53 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = biqu_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs_175 +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 9cf4298150..daff0575d4 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Low Quality definition = biqu_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs_175 +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 c48a9071b4..fa099cce34 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = biqu_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs_175 +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 fd1d8ae1e7..b84a7f8182 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = biqu_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs_175 +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 3b0633ef5e..7c050006bf 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = biqu_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg_175 +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 5153a084df..6649f1541d 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = biqu_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg_175 +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 fea8ea0344..28134387ec 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = biqu_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg_175 +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 561dc2089e..8b0cbd7a9e 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = biqu_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg_175 +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 1f6e612a27..5f20bf45a5 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = biqu_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla_175 +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 b9055cef20..23cbf503dc 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = biqu_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla_175 +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 c886bc50b3..cbf5114492 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = biqu_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla_175 +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 e5d64e640e..e81de9145f 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = biqu_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla_175 +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 0361164d96..d12bd473f1 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 @@ -1,13 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = biqu_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu_175 +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] +speed_print = 30 + 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 cae3c83682..4ca89c2c0e 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 @@ -1,13 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = biqu_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu_175 +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] +speed_print = 30 + 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 6c2cdff05e..a95fc1f16f 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 @@ -1,13 +1,15 @@ [general] -version = 4 -name = Super Quality definition = biqu_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_tpu_175 +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] +speed_print = 30 + 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 844780cdc7..7ebed839a9 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = biqu_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs_175 +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 c589304fde..e7265c5663 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Low Quality definition = biqu_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs_175 +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 7f5b904f77..0ed78dd5fb 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = biqu_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs_175 +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 17e02b70ac..f761120b8a 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = biqu_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs_175 +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 95850a4b2e..f691230889 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = biqu_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg_175 +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 546edb9107..f510370d29 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = biqu_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg_175 +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 5171730526..cf99fbf92d 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = biqu_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg_175 +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 8b45e6d0a4..9a3b7c79f1 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = biqu_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg_175 +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 bd6bfa719a..c451ac2372 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = biqu_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla_175 +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 bbdf5161e5..609304cd6b 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = biqu_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla_175 +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 fd0635f872..f08b2636fb 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = biqu_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla_175 +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 da005cee5e..96284914bb 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = biqu_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla_175 +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 c570cb7038..34e8acaab7 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 @@ -1,13 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = biqu_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu_175 +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] +speed_print = 30 + 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 bcee3f2f4f..76214d104e 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 @@ -1,13 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = biqu_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu_175 +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] +speed_print = 30 + 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 18266e8180..ccf43bf03a 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 @@ -1,13 +1,15 @@ [general] -version = 4 -name = Super Quality definition = biqu_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_tpu_175 +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] +speed_print = 30 + 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 8078c2596e..e77a774aab 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = biqu_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs_175 +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] wall_thickness = =line_width*3 + 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 c506022cf9..0965a5a726 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = biqu_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg_175 +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*3 + 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 972ab33265..0d3444cebe 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = biqu_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla_175 +quality_type = draft +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 f17e185de6..a47f650cab 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = biqu_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla_175 +quality_type = low +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 19c7320b97..c1d9122246 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = biqu_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla_175 +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 ceb6793fef..5aac2b8121 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 @@ -1,13 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = biqu_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu_175 +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] +speed_print = 30 + 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 ae30edb9ec..160372ef04 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft Quality definition = biqu_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_abs_175 +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] wall_thickness = =line_width*3 + 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 8a57d332bd..063dfef2c2 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = biqu_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_petg_175 +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*3 + 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 37630b91e4..89706e6c0b 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = biqu_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla_175 +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] + 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 c82406f529..c4b20eaa9e 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 @@ -1,13 +1,15 @@ [general] -version = 4 -name = Draft Quality definition = biqu_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_tpu_175 +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] +speed_print = 30 + 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 613211eef7..0892112dc7 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft Quality definition = biqu_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_abs_175 +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] wall_thickness = =line_width*3 + 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 0ef2632dfe..491307ecd4 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = biqu_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_petg_175 +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*3 + 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 0ed1eca26e..f37a42f08f 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = biqu_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla_175 +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] + 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 36f74794d9..cdd5ee3b7e 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 @@ -1,13 +1,15 @@ [general] -version = 4 -name = Draft Quality definition = biqu_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_tpu_175 +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] +speed_print = 30 + 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 a2e31de3ff..5d3ab9951c 100644 --- a/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg @@ -1,19 +1,20 @@ [general] -version = 4 -name = Dynamic Quality definition = biqu_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive -weight = -2 global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +weight = -2 [values] +adaptive_layer_height_enabled = true layer_height = 0.16 layer_height_0 = 0.20 +support_interface_height = =layer_height*6 top_bottom_thickness = =layer_height_0+layer_height*4 wall_thickness = =line_width*3 -support_interface_height = =layer_height*6 -adaptive_layer_height_enabled = true + 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 ea750db3ff..c8be622c9b 100644 --- a/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Draft Quality definition = biqu_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -5 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -5 [values] layer_height = 0.32 layer_height_0 = 0.32 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 + 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 9431e9493e..32c8498457 100644 --- a/resources/quality/biqu/base/biqu_base_global_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_low.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Low Quality definition = biqu_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low -weight = -4 global_quality = True +quality_type = low +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.28 layer_height_0 = 0.28 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*3 -support_interface_height = =layer_height*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 a88777bc9a..15a6c39158 100644 --- a/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Standard Quality definition = biqu_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard -weight = -3 global_quality = True +quality_type = standard +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.2 layer_height_0 = 0.2 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*3 -support_interface_height = =layer_height*4 + 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 6d67ab894f..9180d9e17f 100644 --- a/resources/quality/biqu/base/biqu_base_global_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_super.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Super Quality definition = biqu_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super -weight = -1 global_quality = True +quality_type = super +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.12 layer_height_0 = 0.12 +support_interface_height = =layer_height*8 top_bottom_thickness = =layer_height_0+layer_height*6 wall_thickness = =line_width*3 -support_interface_height = =layer_height*8 + 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 20621df056..4c100e7665 100644 --- a/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Ultra Quality definition = biqu_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra -weight = 0 global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.08 layer_height_0 = 0.12 +support_interface_height = =layer_height*12 top_bottom_thickness = =layer_height_0+layer_height*10 wall_thickness = =line_width*4 -support_interface_height = =layer_height*12 + 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 new file mode 100644 index 0000000000..b232427d3c --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low 0.2 +setting_version = 22 +type = quality +variant = 0.2mm Nozzle +weight = -5 + +[values] +layer_height = 0.15 +layer_height_0 = 0.15 + 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 new file mode 100644 index 0000000000..a022de74e8 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal 0.2 +setting_version = 22 +type = quality +variant = 0.2mm Nozzle +weight = -3 + +[values] +layer_height = 0.1 +layer_height_0 = 0.15 + 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 new file mode 100644 index 0000000000..11c59d44c2 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +variant = 0.3mm Nozzle +weight = -5 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..4a058d050a --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal 0.3 +setting_version = 22 +type = quality +variant = 0.3mm Nozzle +weight = -3 + +[values] +layer_height = 0.16 +layer_height_0 = 0.16 + 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 new file mode 100644 index 0000000000..50176898a6 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.3mm Nozzle +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + 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 new file mode 100644 index 0000000000..9efd41ac62 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.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 new file mode 100644 index 0000000000..dd86c5d2cd --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + 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 new file mode 100644 index 0000000000..eafdafdda9 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..99272b1686 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + 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 new file mode 100644 index 0000000000..5e7b27e25c --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.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 new file mode 100644 index 0000000000..06b62ea74a --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +variant = 0.5mm Nozzle +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + 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 new file mode 100644 index 0000000000..496773ae3c --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +variant = 0.5mm Nozzle +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..f8bcbd83c5 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.5mm Nozzle +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + 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 new file mode 100644 index 0000000000..6f5560e103 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.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 new file mode 100644 index 0000000000..e0ec3a106b --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + 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 new file mode 100644 index 0000000000..39139e2f53 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -5 + +[values] +layer_height = 0.40 +layer_height_0 = 0.20 + 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 new file mode 100644 index 0000000000..6050a15f3a --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..ffff45ea6c --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + 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 new file mode 100644 index 0000000000..d8512d6427 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.8mm Nozzle +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.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 new file mode 100644 index 0000000000..2d59bcae6f --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + 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 new file mode 100644 index 0000000000..112e469f3e --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Super low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 22 +type = quality +variant = 0.8mm Nozzle +weight = -5 + +[values] +layer_height = 0.50 +layer_height_0 = 0.20 + 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 new file mode 100644 index 0000000000..0d7228ac5a --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +variant = 0.8mm Nozzle +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..79cd34d805 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Super low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = superlow +setting_version = 22 +type = quality +variant = 0.8mm Nozzle +weight = -5 + +[values] +layer_height = 0.50 +layer_height_0 = 0.20 + 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 new file mode 100644 index 0000000000..d68fea886d --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.8mm Nozzle +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + 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 new file mode 100644 index 0000000000..c8432e4720 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +variant = 1.0mm Nozzle +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.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 new file mode 100644 index 0000000000..33bb04910c --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 +speed_infill = =speed_print + 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 new file mode 100644 index 0000000000..e3c16ff674 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 22 +type = quality +variant = 1.0mm Nozzle +weight = -5 + +[values] +layer_height = 0.40 +layer_height_0 = 0.20 + 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 new file mode 100644 index 0000000000..179b68a480 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +variant = 1.0mm Nozzle +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..b077c5e302 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Super low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = superlow +setting_version = 22 +type = quality +variant = 1.0mm Nozzle +weight = -5 + +[values] +layer_height = 0.50 +layer_height_0 = 0.20 + 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 new file mode 100644 index 0000000000..5984ebc0a7 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +variant = 1.0mm Nozzle +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + 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 new file mode 100644 index 0000000000..c0ab994e6f --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +variant = 1.2mm Nozzle +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.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 new file mode 100644 index 0000000000..6f8cc1cb79 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +variant = 1.2mm Nozzle +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + 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 new file mode 100644 index 0000000000..fa51646a96 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 22 +type = quality +variant = 1.2mm Nozzle +weight = -5 + +[values] +layer_height = 0.40 +layer_height_0 = 0.20 + 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 new file mode 100644 index 0000000000..d06ca68878 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +variant = 1.2mm Nozzle +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..06bd9a5e2c --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Super low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = superlow +setting_version = 22 +type = quality +variant = 1.2mm Nozzle +weight = -5 + +[values] +layer_height = 0.50 +layer_height_0 = 0.20 + 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 new file mode 100644 index 0000000000..ddc1f73edc --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +variant = 1.2mm Nozzle +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + 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 new file mode 100644 index 0000000000..b9e01c054d --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +variant = HT - 0.4mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.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 new file mode 100644 index 0000000000..120840adac --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +variant = HT - 0.4mm +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + 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 new file mode 100644 index 0000000000..655fe020a1 --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +variant = HT - 0.4mm +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..dfe3464190 --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +variant = HT - 0.4mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + 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 new file mode 100644 index 0000000000..b4dfc2cc14 --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +variant = HT - 0.5mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.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 new file mode 100644 index 0000000000..a8c9f6712e --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +variant = HT - 0.5mm +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + 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 new file mode 100644 index 0000000000..28f7b8bf6f --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +variant = HT - 0.5mm +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..930057a7d6 --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +variant = HT - 0.5mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + 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 new file mode 100644 index 0000000000..5ad66257e0 --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +variant = HT - 0.6mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.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 new file mode 100644 index 0000000000..a24adbeaec --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +variant = HT - 0.6mm +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + 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 new file mode 100644 index 0000000000..62c319c029 --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 22 +type = quality +variant = HT - 0.6mm +weight = 0 + +[values] +layer_height = 0.4 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..f1a804636b --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +variant = HT - 0.6mm +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..057e2ba26e --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +variant = HT - 0.6mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + 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 new file mode 100644 index 0000000000..9ca72154a3 --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +variant = HT - 0.8mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.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 new file mode 100644 index 0000000000..aacf1e2491 --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +variant = HT - 0.8mm +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + 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 new file mode 100644 index 0000000000..ed3f6ceb52 --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 22 +type = quality +variant = HT - 0.8mm +weight = 0 + +[values] +layer_height = 0.4 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..cd67b1b5e8 --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +variant = HT - 0.8mm +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..0e44809ac0 --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Super Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = superlow +setting_version = 22 +type = quality +variant = HT - 0.8mm +weight = 0 + +[values] +layer_height = 0.5 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..c7128bef55 --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +variant = HT - 0.8mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + 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 new file mode 100644 index 0000000000..d2c122fb0c --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +variant = ST - 0.2mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.15 +layer_height_0 = 0.15 + 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 new file mode 100644 index 0000000000..a08caaa26c --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +variant = ST - 0.2mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.15 + 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 new file mode 100644 index 0000000000..f8c7e9d447 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +variant = ST - 0.3mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.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 new file mode 100644 index 0000000000..fdf046454c --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +variant = ST - 0.3mm +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..fc8d16ea0d --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +variant = ST - 0.3mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + 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 new file mode 100644 index 0000000000..2012d231ef --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +variant = ST - 0.4mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.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 new file mode 100644 index 0000000000..73f4028d6f --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +variant = ST - 0.4mm +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + 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 new file mode 100644 index 0000000000..9e92c83170 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +variant = ST - 0.4mm +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..3711657b55 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +variant = ST - 0.4mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + 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 new file mode 100644 index 0000000000..a8675b9374 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +variant = ST - 0.5mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.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 new file mode 100644 index 0000000000..772d62c38b --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +variant = ST - 0.5mm +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + 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 new file mode 100644 index 0000000000..0535ee955d --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +variant = ST - 0.5mm +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..4261f7f5d5 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +variant = ST - 0.5mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + 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 new file mode 100644 index 0000000000..592df1449b --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +variant = ST - 0.6mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.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 new file mode 100644 index 0000000000..9ff016accf --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +variant = ST - 0.6mm +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + 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 new file mode 100644 index 0000000000..9b99f66808 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 22 +type = quality +variant = ST - 0.6mm +weight = 0 + +[values] +layer_height = 0.4 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..e39eea4e85 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +variant = ST - 0.6mm +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..67c4bea2af --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +variant = ST - 0.6mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + 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 new file mode 100644 index 0000000000..b6169d0713 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +variant = ST - 0.8mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.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 new file mode 100644 index 0000000000..52c7644d5a --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +variant = ST - 0.8mm +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + 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 new file mode 100644 index 0000000000..e3dec5014a --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 22 +type = quality +variant = ST - 0.8mm +weight = 0 + +[values] +layer_height = 0.4 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..81e8d45a47 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +variant = ST - 0.8mm +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..67ea92825c --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Super Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = superlow +setting_version = 22 +type = quality +variant = ST - 0.8mm +weight = 0 + +[values] +layer_height = 0.5 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..9ab6e32378 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +variant = ST - 0.8mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + 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 new file mode 100644 index 0000000000..4abe78cce6 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +variant = ST - 1.0mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.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 new file mode 100644 index 0000000000..c5ce3a5968 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +variant = ST - 1.0mm +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + 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 new file mode 100644 index 0000000000..2dfac120d3 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 22 +type = quality +variant = ST - 1.0mm +weight = 0 + +[values] +layer_height = 0.4 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..414d9199f1 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +variant = ST - 1.0mm +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..a8fdd08b26 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Super Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = superlow +setting_version = 22 +type = quality +variant = ST - 1.0mm +weight = 0 + +[values] +layer_height = 0.5 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..a11570f62e --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +variant = ST - 1.0mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + 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 new file mode 100644 index 0000000000..d2eb89bc5b --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +variant = ST - 1.2mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.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 new file mode 100644 index 0000000000..19fac2508f --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +variant = ST - 1.2mm +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + 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 new file mode 100644 index 0000000000..f97ac6ac09 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 22 +type = quality +variant = ST - 1.2mm +weight = 0 + +[values] +layer_height = 0.4 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..c72b9b5f05 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +variant = ST - 1.2mm +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..6488766287 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Super Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = superlow +setting_version = 22 +type = quality +variant = ST - 1.2mm +weight = 0 + +[values] +layer_height = 0.5 +layer_height_0 = 0.2 + 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 new file mode 100644 index 0000000000..c52b1f7791 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +variant = ST - 1.2mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + 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 44b051ef44..6e50139749 100644 --- a/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg @@ -1,23 +1,24 @@ [general] -version = 4 -name = Coarse definition = builder_premium_small +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -1 material = verbatim_bvoh_175 +quality_type = coarse +setting_version = 22 +type = quality +weight = -1 [values] +bottom_thickness = =layer_height * 3 +layer_height = 0.3 +material_bed_temperature = 45 +material_bed_temperature_layer_0 = =material_bed_temperature +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature + 5 material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature -material_bed_temperature = 45 -material_bed_temperature_layer_0= =material_bed_temperature -layer_height = 0.3 -top_thickness = =layer_height * 5 -bottom_thickness = =layer_height * 3 speed_print = 40 +top_thickness = =layer_height * 5 + 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 c41ba95997..0d47c689d4 100644 --- a/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg @@ -1,25 +1,26 @@ [general] -version = 4 -name = High Quality definition = builder_premium_small +name = High Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = verbatim_bvoh_175 +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] acceleration_print = 2000 +bottom_thickness = =layer_height * 5 +layer_height = 0.1 +layer_height_0 = 0.2 +material_bed_temperature = 45 +material_bed_temperature_layer_0 = =material_bed_temperature +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature + 5 material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature -material_bed_temperature = 45 -material_bed_temperature_layer_0= =material_bed_temperature -layer_height = 0.1 -top_thickness = =layer_height * 7 -bottom_thickness = =layer_height * 5 speed_print = 40 -layer_height_0 = 0.2 +top_thickness = =layer_height * 7 + 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 3611121da2..582c7f8d4d 100644 --- a/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg @@ -1,23 +1,24 @@ [general] -version = 4 -name = Normal definition = builder_premium_small +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = verbatim_bvoh_175 +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] +bottom_thickness = =layer_height * 3 +layer_height = 0.2 +material_bed_temperature = 45 +material_bed_temperature_layer_0 = =material_bed_temperature +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature + 5 material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature -material_bed_temperature = 45 -material_bed_temperature_layer_0= =material_bed_temperature -layer_height = 0.2 -top_thickness = =layer_height * 5 -bottom_thickness = =layer_height * 3 speed_print = 40 +top_thickness = =layer_height * 5 + 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 abebb020e1..16ba696586 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg @@ -1,23 +1,24 @@ [general] -version = 4 -name = Coarse definition = builder_premium_small +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -1 material = innofill_innoflex60_175 +quality_type = coarse +setting_version = 22 +type = quality +weight = -1 [values] +bottom_thickness = =layer_height * 3 +layer_height = 0.3 +material_bed_temperature = 45 +material_bed_temperature_layer_0 = =material_bed_temperature +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature -material_bed_temperature = 45 -material_bed_temperature_layer_0= =material_bed_temperature -layer_height = 0.3 -top_thickness = =layer_height * 5 -bottom_thickness = =layer_height * 3 speed_print = 30 +top_thickness = =layer_height * 5 + 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 b0ae18808c..a9684cd507 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg @@ -1,25 +1,26 @@ [general] -version = 4 -name = High Quality definition = builder_premium_small +name = High Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = innofill_innoflex60_175 +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] acceleration_print = 2000 +bottom_thickness = =layer_height * 5 +layer_height = 0.1 +layer_height_0 = 0.2 +material_bed_temperature = 45 +material_bed_temperature_layer_0 = =material_bed_temperature +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature -material_bed_temperature = 45 -material_bed_temperature_layer_0= =material_bed_temperature -layer_height = 0.1 -top_thickness = =layer_height * 7 -bottom_thickness = =layer_height * 5 speed_print = 30 -layer_height_0 = 0.2 +top_thickness = =layer_height * 7 + 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 c8f666953d..ba1c10d19b 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg @@ -1,23 +1,24 @@ [general] -version = 4 -name = Normal definition = builder_premium_small +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = innofill_innoflex60_175 +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] +bottom_thickness = =layer_height * 3 +layer_height = 0.2 +material_bed_temperature = 45 +material_bed_temperature_layer_0 = =material_bed_temperature +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature -material_bed_temperature = 45 -material_bed_temperature_layer_0= =material_bed_temperature -layer_height = 0.2 -top_thickness = =layer_height * 5 -bottom_thickness = =layer_height * 3 speed_print = 30 +top_thickness = =layer_height * 5 + 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 c772b10f6e..6bc4ae64da 100644 --- a/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg @@ -1,23 +1,24 @@ [general] -version = 4 -name = Coarse definition = builder_premium_small +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -1 material = generic_petg +quality_type = coarse +setting_version = 22 +type = quality +weight = -1 [values] +bottom_thickness = =layer_height * 3 +layer_height = 0.3 +material_bed_temperature = 45 +material_bed_temperature_layer_0 = =material_bed_temperature +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature - 5 material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature -material_bed_temperature = 45 -material_bed_temperature_layer_0= =material_bed_temperature -layer_height = 0.3 -top_thickness = =layer_height * 5 -bottom_thickness = =layer_height * 3 speed_print = 60 +top_thickness = =layer_height * 5 + 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 7c1b544277..4eb383fa3e 100644 --- a/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg @@ -1,25 +1,26 @@ [general] -version = 4 -name = High Quality definition = builder_premium_small +name = High Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_petg +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] acceleration_print = 2000 +bottom_thickness = =layer_height * 5 +layer_height = 0.1 +layer_height_0 = 0.2 +material_bed_temperature = 45 +material_bed_temperature_layer_0 = =material_bed_temperature +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature - 5 material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature -material_bed_temperature = 45 -material_bed_temperature_layer_0= =material_bed_temperature -layer_height = 0.1 -top_thickness = =layer_height * 7 -bottom_thickness = =layer_height * 5 speed_print = 40 -layer_height_0 = 0.2 +top_thickness = =layer_height * 7 + 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 80ce5c34af..2d93838574 100644 --- a/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg @@ -1,23 +1,24 @@ [general] -version = 4 -name = Normal definition = builder_premium_small +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] +bottom_thickness = =layer_height * 3 +layer_height = 0.2 +material_bed_temperature = 45 +material_bed_temperature_layer_0 = =material_bed_temperature +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature - 5 material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature -material_bed_temperature = 45 -material_bed_temperature_layer_0= =material_bed_temperature -layer_height = 0.2 -top_thickness = =layer_height * 5 -bottom_thickness = =layer_height * 3 speed_print = 50 +top_thickness = =layer_height * 5 + 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 56ac081a34..04b51ffdc3 100644 --- a/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg @@ -1,23 +1,24 @@ [general] -version = 4 -name = Coarse definition = builder_premium_small +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -1 material = generic_pla +quality_type = coarse +setting_version = 22 +type = quality +weight = -1 [values] +bottom_thickness = =layer_height * 3 +layer_height = 0.3 +material_bed_temperature = 45 +material_bed_temperature_layer_0 = =material_bed_temperature +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature + 15 material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature -material_bed_temperature = 45 -material_bed_temperature_layer_0= =material_bed_temperature -layer_height = 0.3 -top_thickness = =layer_height * 5 -bottom_thickness = =layer_height * 3 speed_print = 60 +top_thickness = =layer_height * 5 + 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 495327bcc6..a24d877812 100644 --- a/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg @@ -1,25 +1,26 @@ [general] -version = 4 -name = High Quality definition = builder_premium_small +name = High Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] acceleration_print = 2000 +bottom_thickness = =layer_height * 5 +layer_height = 0.1 +layer_height_0 = 0.2 +material_bed_temperature = 45 +material_bed_temperature_layer_0 = =material_bed_temperature +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature + 15 material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature -material_bed_temperature = 45 -material_bed_temperature_layer_0= =material_bed_temperature -layer_height = 0.1 -top_thickness = =layer_height * 7 -bottom_thickness = =layer_height * 5 speed_print = 40 -layer_height_0 = 0.2 +top_thickness = =layer_height * 7 + 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 0546c1bc7f..1c80bd5a74 100644 --- a/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg @@ -1,23 +1,24 @@ [general] -version = 4 -name = Normal definition = builder_premium_small +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] +bottom_thickness = =layer_height * 3 +layer_height = 0.2 +material_bed_temperature = 45 +material_bed_temperature_layer_0 = =material_bed_temperature +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature + 15 material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature -material_bed_temperature = 45 -material_bed_temperature_layer_0= =material_bed_temperature -layer_height = 0.2 -top_thickness = =layer_height * 5 -bottom_thickness = =layer_height * 3 speed_print = 50 +top_thickness = =layer_height * 5 + 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 1c0620e8b9..a491cd2633 100644 --- a/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg @@ -1,23 +1,24 @@ [general] -version = 4 -name = Coarse definition = builder_premium_small +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -1 material = generic_pva +quality_type = coarse +setting_version = 22 +type = quality +weight = -1 [values] +bottom_thickness = =layer_height * 3 +layer_height = 0.3 +material_bed_temperature = 45 +material_bed_temperature_layer_0 = =material_bed_temperature +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature + 10 material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature -material_bed_temperature = 45 -material_bed_temperature_layer_0= =material_bed_temperature -layer_height = 0.3 -top_thickness = =layer_height * 5 -bottom_thickness = =layer_height * 3 speed_print = 40 +top_thickness = =layer_height * 5 + 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 2d7c54d80a..396e082ec2 100644 --- a/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg @@ -1,25 +1,26 @@ [general] -version = 4 -name = High Quality definition = builder_premium_small +name = High Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pva +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] acceleration_print = 2000 +bottom_thickness = =layer_height * 5 +layer_height = 0.1 +layer_height_0 = 0.2 +material_bed_temperature = 45 +material_bed_temperature_layer_0 = =material_bed_temperature +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature + 10 material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature -material_bed_temperature = 45 -material_bed_temperature_layer_0= =material_bed_temperature -layer_height = 0.1 -top_thickness = =layer_height * 7 -bottom_thickness = =layer_height * 5 speed_print = 40 -layer_height_0 = 0.2 +top_thickness = =layer_height * 7 + 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 9388a930bf..f9fd78beb5 100644 --- a/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg @@ -1,23 +1,24 @@ [general] -version = 4 -name = Normal definition = builder_premium_small +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pva +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] +bottom_thickness = =layer_height * 3 +layer_height = 0.2 +material_bed_temperature = 45 +material_bed_temperature_layer_0 = =material_bed_temperature +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature material_print_temperature = =default_material_print_temperature + 10 material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature -material_bed_temperature = 45 -material_bed_temperature_layer_0= =material_bed_temperature -layer_height = 0.2 -top_thickness = =layer_height * 5 -bottom_thickness = =layer_height * 3 speed_print = 40 +top_thickness = =layer_height * 5 + 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 90bd08ba86..f5f235c0b0 100644 --- a/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Coarse definition = builder_premium_small +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -1 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.3 + 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 c41665f0f1..cad3d0f17f 100644 --- a/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = High Quality definition = builder_premium_small +name = High Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] layer_height = 0.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 3548b1e505..c3826e1b23 100644 --- a/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Normal definition = builder_premium_small +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.2 + 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 748f6239e8..ceb247023e 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = High definition = cartesio +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality variant = 0.25mm thermoplastic extruder +weight = 1 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.3 - -wall_thickness = 1 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else 15 +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else 15 +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 2afddc1905..0cc705b9c8 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Normal definition = cartesio +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.25mm thermoplastic extruder +weight = 0 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.3 - -wall_thickness = 1 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 6596695add..442c341254 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = High definition = cartesio +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality variant = 0.4mm thermoplastic extruder +weight = 1 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.5 - -wall_thickness = 1.2 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else 15 +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else 15 +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1.2 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 82e8c9a3c0..e58a5440b3 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Normal definition = cartesio +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm thermoplastic extruder +weight = 0 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.5 - -wall_thickness = 1.2 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1.2 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 92d92027bb..d028044fdf 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Coarse definition = cartesio +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 3 material = generic_abs +quality_type = coarse +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 3 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = =layer_height * 3 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 30 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 30 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = =layer_height * 3 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 30d7ddfccf..c39bb7ea21 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Extra Coarse definition = cartesio +name = Extra Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 4 material = generic_abs +quality_type = extra coarse +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 4 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = =layer_height * 3 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 25 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 25 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = =layer_height * 3 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 6e13ff8ce9..73d7207c72 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = High definition = cartesio +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 1 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else 15 +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else 15 +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 721730fab8..9df4675747 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Normal definition = cartesio +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 0 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 bf570690cc..921fdd7ae5 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 @@ -1,59 +1,51 @@ [general] -version = 4 -name = High definition = cartesio +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = dsm_arnitel2045_175 +quality_type = high +setting_version = 22 +type = quality variant = 0.4mm thermoplastic extruder +weight = 1 [values] +acceleration_enabled = True +acceleration_print = 100 +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.5 - -wall_thickness = 1.2 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 +jerk_enabled = True +jerk_print = 5 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 2 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 25 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else 15 +speed_print = 25 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else 15 +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1.2 -acceleration_enabled = True -acceleration_print = 100 -jerk_enabled = True -jerk_print = 5 - -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 5c0092404f..5b2edc11bd 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 @@ -1,59 +1,51 @@ [general] -version = 4 -name = Normal definition = cartesio +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = dsm_arnitel2045_175 +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm thermoplastic extruder +weight = 0 [values] +acceleration_enabled = True +acceleration_print = 100 +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.5 - -wall_thickness = 1.2 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 +jerk_enabled = True +jerk_print = 5 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 2 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 25 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 25 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1.2 -acceleration_enabled = True -acceleration_print = 100 -jerk_enabled = True -jerk_print = 5 - -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 diff --git a/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg index d0be3665ae..e0cbb77608 100644 --- a/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg @@ -1,37 +1,32 @@ [general] -version = 4 -name = Coarse definition = cartesio +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -3 [values] -layer_height = 0.4 -layer_height_0 = =layer_height - -skin_angles = [0,90] - -infill_before_walls = False -infill_angles = [0,90] - -speed_slowdown_layers = 1 acceleration_print = 300 acceleration_travel = 300 +adhesion_type = skirt +infill_angles = [0,90] +infill_before_walls = False jerk_print = 10 jerk_travel = 10 - +layer_height = 0.4 +layer_height_0 = =layer_height retraction_combing = off - -support_z_distance = 0 -support_xy_distance = 1 -support_join_distance = 10 +skin_angles = [0,90] +skirt_gap = 1 +speed_slowdown_layers = 1 support_interface_enable = True support_interface_pattern = lines +support_join_distance = 10 +support_xy_distance = 1 +support_z_distance = 0 -adhesion_type = skirt -skirt_gap = 1 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 9003408f10..e1c754d30a 100644 --- a/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg @@ -1,37 +1,32 @@ [general] -version = 4 -name = Extra Coarse definition = cartesio +name = Extra Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = -4 global_quality = True +quality_type = extra coarse +setting_version = 22 +type = quality +weight = -4 [values] -layer_height = 0.6 -layer_height_0 = =layer_height - -skin_angles = [0,90] - -infill_before_walls = False -infill_angles = [0,90] - -speed_slowdown_layers = 1 acceleration_print = 300 acceleration_travel = 300 +adhesion_type = skirt +infill_angles = [0,90] +infill_before_walls = False jerk_print = 10 jerk_travel = 10 - +layer_height = 0.6 +layer_height_0 = =layer_height retraction_combing = off - -support_z_distance = 0 -support_xy_distance = 1 -support_join_distance = 10 +skin_angles = [0,90] +skirt_gap = 1 +speed_slowdown_layers = 1 support_interface_enable = True support_interface_pattern = lines +support_join_distance = 10 +support_xy_distance = 1 +support_z_distance = 0 -adhesion_type = skirt -skirt_gap = 1 diff --git a/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg index ff565e440e..0bf8080ea3 100644 --- a/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg @@ -1,38 +1,33 @@ [general] -version = 4 -name = High definition = cartesio +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] -layer_height = 0.1 -layer_height_0 = =0.2 if min(extruderValues('machine_nozzle_size')) < 0.3 else 0.3 - -skin_angles = [0,90] - -infill_before_walls = False -infill_angles = [0,90] - -speed_slowdown_layers = 1 acceleration_print = 300 acceleration_travel = 300 +adhesion_type = skirt +infill_angles = [0,90] +infill_before_walls = False jerk_print = 10 jerk_travel = 10 - +layer_height = 0.1 +layer_height_0 = =0.2 if min(extruderValues('machine_nozzle_size')) < 0.3 else 0.3 retraction_combing = off - -support_z_distance = 0 -support_xy_distance = 1 -support_join_distance = 10 +skin_angles = [0,90] +skirt_gap = 1 +speed_slowdown_layers = 1 support_interface_enable = True support_interface_height = 0.5 support_interface_pattern = lines +support_join_distance = 10 +support_xy_distance = 1 +support_z_distance = 0 -adhesion_type = skirt -skirt_gap = 1 diff --git a/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg index 68a1cca4ab..d455551b3b 100644 --- a/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg @@ -1,37 +1,32 @@ [general] -version = 4 -name = Normal definition = cartesio +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.2 -layer_height_0 = =0.2 if min(extruderValues('machine_nozzle_size')) < 0.3 else 0.3 - -skin_angles = [0,90] - -infill_before_walls = False -infill_angles = [0,90] - -speed_slowdown_layers = 1 acceleration_print = 300 acceleration_travel = 300 +adhesion_type = skirt +infill_angles = [0,90] +infill_before_walls = False jerk_print = 10 jerk_travel = 10 - +layer_height = 0.2 +layer_height_0 = =0.2 if min(extruderValues('machine_nozzle_size')) < 0.3 else 0.3 retraction_combing = off - -support_z_distance = 0 -support_xy_distance = 1 -support_join_distance = 10 +skin_angles = [0,90] +skirt_gap = 1 +speed_slowdown_layers = 1 support_interface_enable = True support_interface_pattern = lines +support_join_distance = 10 +support_xy_distance = 1 +support_z_distance = 0 -adhesion_type = skirt -skirt_gap = 1 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 289e5d4017..2899281b33 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = High definition = cartesio +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_hips +quality_type = high +setting_version = 22 +type = quality variant = 0.25mm thermoplastic extruder +weight = 1 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.3 - -wall_thickness = 1 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else 15 +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else 15 +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 3321a0995c..cdf0b5a69c 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Normal definition = cartesio +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_hips +quality_type = normal +setting_version = 22 +type = quality variant = 0.25mm thermoplastic extruder +weight = 0 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.3 - -wall_thickness = 1 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 6bbddc9bfd..4f4b84c527 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = High definition = cartesio +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_hips +quality_type = high +setting_version = 22 +type = quality variant = 0.4mm thermoplastic extruder +weight = 1 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.5 - -wall_thickness = 1.2 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else 15 +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else 15 +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1.2 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 ebd825933c..3f3be29dac 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Normal definition = cartesio +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_hips +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm thermoplastic extruder +weight = 0 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.5 - -wall_thickness = 1.2 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1.2 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 cf86269407..61e422cd01 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Coarse definition = cartesio +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 3 material = generic_hips +quality_type = coarse +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 3 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = =layer_height * 3 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 30 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 30 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = =layer_height * 3 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 b1942c6f06..2f7616d3c0 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Extra Coarse definition = cartesio +name = Extra Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 4 material = generic_hips +quality_type = extra coarse +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 4 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = =layer_height * 3 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 25 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 25 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = =layer_height * 3 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 3825154978..7ae39664db 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = High definition = cartesio +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_hips +quality_type = high +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 1 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else 15 +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else 15 +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 37c52c3bd1..74cc5e1a8c 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Normal definition = cartesio +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_hips +quality_type = normal +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 0 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 1848df0d50..a0fcba66c9 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = High definition = cartesio +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_nylon +quality_type = high +setting_version = 22 +type = quality variant = 0.25mm thermoplastic extruder +weight = 1 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.3 - -wall_thickness = 1 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else 15 +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else 15 +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 9ac8807824..91c26bb39f 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Normal definition = cartesio +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_nylon +quality_type = normal +setting_version = 22 +type = quality variant = 0.25mm thermoplastic extruder +weight = 0 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.3 - -wall_thickness = 1 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 5bb9b39c9c..5458875049 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = High definition = cartesio +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_nylon +quality_type = high +setting_version = 22 +type = quality variant = 0.4mm thermoplastic extruder +weight = 1 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.5 - -wall_thickness = 1.2 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else 15 +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else 15 +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1.2 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 ed82be22ba..a5a99f8ba3 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Normal definition = cartesio +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_nylon +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm thermoplastic extruder +weight = 0 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.5 - -wall_thickness = 1.2 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1.2 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 d37daaf206..40a394d020 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Coarse definition = cartesio +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 3 material = generic_nylon +quality_type = coarse +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 3 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = =layer_height * 3 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 30 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 30 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = =layer_height * 3 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 6f4ff50143..560388f549 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Extra Coarse definition = cartesio +name = Extra Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 4 material = generic_nylon +quality_type = extra coarse +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 4 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = =layer_height * 3 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 25 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 25 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = =layer_height * 3 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 fa070ed327..c57a810e96 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = High definition = cartesio +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_nylon +quality_type = high +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 1 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else 15 +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else 15 +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 63e7f9ca83..038ee37b2a 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Normal definition = cartesio +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_nylon +quality_type = normal +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 0 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 1ec56c4fa2..c9d10a366a 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = High definition = cartesio +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pc +quality_type = high +setting_version = 22 +type = quality variant = 0.25mm thermoplastic extruder +weight = 1 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.3 - -wall_thickness = 1 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 20 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else 15 +speed_print = 20 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else 15 +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 098bc488cb..ea78515888 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Normal definition = cartesio +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pc +quality_type = normal +setting_version = 22 +type = quality variant = 0.25mm thermoplastic extruder +weight = 0 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.3 - -wall_thickness = 1 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 20 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 20 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 58104a23c3..8d66f49534 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = High definition = cartesio +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pc +quality_type = high +setting_version = 22 +type = quality variant = 0.4mm thermoplastic extruder +weight = 1 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.5 - -wall_thickness = 1.2 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 20 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else 15 +speed_print = 20 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else 15 +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1.2 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 fd44d72b0e..7b5a3560df 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Normal definition = cartesio +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pc +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm thermoplastic extruder +weight = 0 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.5 - -wall_thickness = 1.2 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 20 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 20 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1.2 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 9cbd53cc00..da79a1e7d7 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Coarse definition = cartesio +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 3 material = generic_pc +quality_type = coarse +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 3 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = =layer_height * 3 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 15 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 15 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = =layer_height * 3 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 1fcb9f76a1..511da60d54 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Extra Coarse definition = cartesio +name = Extra Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 4 material = generic_pc +quality_type = extra coarse +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 4 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = =layer_height * 3 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 15 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 15 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = =layer_height * 3 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 7d2c1fd1f2..9967dc12c4 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = High definition = cartesio +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pc +quality_type = high +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 1 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 20 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else 15 +speed_print = 20 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else 15 +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 d4fa7c937c..5810601f77 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Normal definition = cartesio +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pc +quality_type = normal +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 0 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 20 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 20 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 9f55db9a25..fb7ceb891a 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = High definition = cartesio +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_petg +quality_type = high +setting_version = 22 +type = quality variant = 0.25mm thermoplastic extruder +weight = 1 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.3 - -wall_thickness = 1 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 8 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else 15 +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else 15 +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 0af37462cc..13a7b1d413 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Normal definition = cartesio +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.25mm thermoplastic extruder +weight = 0 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.3 - -wall_thickness = 1 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 8 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 89c2e18737..81f56b432c 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = High definition = cartesio +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_petg +quality_type = high +setting_version = 22 +type = quality variant = 0.4mm thermoplastic extruder +weight = 1 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.5 - -wall_thickness = 1.2 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 8 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else 15 +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else 15 +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1.2 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 8da62dc2d4..ef092ab09f 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Normal definition = cartesio +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm thermoplastic extruder +weight = 0 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.5 - -wall_thickness = 1.2 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 8 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1.2 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 2544846b63..594c277948 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Coarse definition = cartesio +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 3 material = generic_petg +quality_type = coarse +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 3 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = =layer_height * 3 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 8 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 30 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 30 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = =layer_height * 3 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 e40f01d2bf..12c049c4ca 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Extra Coarse definition = cartesio +name = Extra Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 4 material = generic_petg +quality_type = extra coarse +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 4 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = =layer_height * 3 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 8 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 25 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 25 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = =layer_height * 3 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 4cc2356e85..e8a2a46be8 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = High definition = cartesio +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_petg +quality_type = high +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 1 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 50 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 50 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 8 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else 15 +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else 15 +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 cdb7e67a46..14e9cbec6b 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Normal definition = cartesio +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 0 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 8 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 bdce5098bb..75f0784656 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = High definition = cartesio +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality variant = 0.25mm thermoplastic extruder +weight = 1 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.3 - -wall_thickness = 1 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else 15 +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else 15 +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 8ac474090e..ae4139bca9 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Normal definition = cartesio +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.25mm thermoplastic extruder +weight = 0 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.3 - -wall_thickness = 1 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 1edaf3c7df..504e8292b2 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = High definition = cartesio +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality variant = 0.4mm thermoplastic extruder +weight = 1 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.5 - -wall_thickness = 1.2 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else 15 +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else 15 +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1.2 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 75df3728ce..3869918c08 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Normal definition = cartesio +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm thermoplastic extruder +weight = 0 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.5 - -wall_thickness = 1.2 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1.2 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 d215697257..b91c8e1f2e 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Coarse definition = cartesio +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = generic_pla +quality_type = coarse +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = -3 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = =layer_height * 3 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 30 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 30 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = =layer_height * 3 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 fecca6671f..7ea8197b87 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Extra Coarse definition = cartesio +name = Extra Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = -4 material = generic_pla +quality_type = extra coarse +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = -4 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = =layer_height * 3 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 25 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 25 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = =layer_height * 3 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 e720117ec0..e3f5e40fee 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = High definition = cartesio +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 1 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else 15 +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else 15 +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 532942fcd6..7929c6d9f4 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Normal definition = cartesio +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 0 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 10 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 e9f15c5437..63c487a4b9 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = High definition = cartesio +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pva +quality_type = high +setting_version = 22 +type = quality variant = 0.25mm thermoplastic extruder +weight = 1 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.3 - -wall_thickness = 1 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 8 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else 15 +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else 15 +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 09668de1e8..8c36a3f9db 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Normal definition = cartesio +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pva +quality_type = normal +setting_version = 22 +type = quality variant = 0.25mm thermoplastic extruder +weight = 0 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.3 - -wall_thickness = 1 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 8 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 c815cbe1ca..fa9118e5b3 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = High definition = cartesio +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pva +quality_type = high +setting_version = 22 +type = quality variant = 0.4mm thermoplastic extruder +weight = 1 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.5 - -wall_thickness = 1.2 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 8 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else 15 +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else 15 +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1.2 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 7b4f61a853..e8c8c53c45 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Normal definition = cartesio +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pva +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm thermoplastic extruder +weight = 0 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.5 - -wall_thickness = 1.2 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 8 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 1.2 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 6aeec98f71..212c3cc2d1 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Coarse definition = cartesio +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 3 material = generic_pva +quality_type = coarse +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 3 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = =layer_height * 3 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 8 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 30 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 30 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = =layer_height * 3 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 e89f175e05..67ab181dc4 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Extra Coarse definition = cartesio +name = Extra Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 4 material = generic_pva +quality_type = extra coarse +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 4 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = =layer_height * 3 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 8 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 25 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 25 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = =layer_height * 3 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 0e8181d83c..861401346e 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = High definition = cartesio +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pva +quality_type = high +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 1 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 8 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else 15 +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else 15 +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 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 eeff640f0f..fd062c8a10 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 @@ -1,54 +1,47 @@ [general] -version = 4 -name = Normal definition = cartesio +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pva +quality_type = normal +setting_version = 22 +type = quality variant = 0.8mm thermoplastic extruder +weight = 0 [values] +coasting_enable = True +coasting_min_volume = 0.17 +coasting_speed = 90 +coasting_volume = 0.1 +cool_min_layer_time = 20 +cool_min_layer_time_fan_speed_max = =cool_min_layer_time infill_line_width = 0.9 - -wall_thickness = 2.4 -top_bottom_thickness = 0.8 -wall_0_inset = -0.05 - -infill_sparse_density = 40 infill_pattern = grid - -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +infill_sparse_density = 40 material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature_layer_0 + 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 1 +retraction_hop_enabled = True retraction_min_travel = =round(line_width * 10) retraction_prime_speed = 8 -switch_extruder_retraction_amount = 2 -switch_extruder_retraction_speeds = =retraction_speed -switch_extruder_prime_speed = =retraction_prime_speed - -speed_print = 50 +skirt_brim_minimal_length = 50 speed_infill = =speed_print speed_layer_0 = =round(speed_print / 5 * 4) -speed_wall = =round(speed_print / 2) -speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +speed_print = 50 +speed_support_interface = =speed_topbottom speed_topbottom = =round(speed_print / 5 * 4) speed_travel = =round(speed_print if magic_spiralize else 150) speed_travel_layer_0 = =speed_travel -speed_support_interface = =speed_topbottom +speed_wall = =round(speed_print / 2) +speed_wall_0 = =10 if speed_wall < 11 else (speed_print / 5 *3) +switch_extruder_prime_speed = =retraction_prime_speed +switch_extruder_retraction_amount = 2 +switch_extruder_retraction_speeds = =retraction_speed +top_bottom_thickness = 0.8 +wall_0_inset = -0.05 +wall_thickness = 2.4 -retraction_hop_enabled = True -retraction_hop = 1 - -cool_min_layer_time_fan_speed_max = =cool_min_layer_time -cool_min_layer_time = 20 - -skirt_brim_minimal_length = 50 - -coasting_enable = True -coasting_volume = 0.1 -coasting_min_volume = 0.17 -coasting_speed = 90 diff --git a/resources/quality/coarse.inst.cfg b/resources/quality/coarse.inst.cfg index d28e52ace1..85af3b88d2 100644 --- a/resources/quality/coarse.inst.cfg +++ b/resources/quality/coarse.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Coarse definition = fdmprinter +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.4 + 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 13f177a9e9..8e659e9aa0 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Coarse Quality definition = crazy3dprint_base +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse material = generic_abs +quality_type = coarse +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -20,4 +20,5 @@ material_print_temperature_layer_0 = 245 speed_infill = =speed_print speed_print = 24 speed_support = 24 -speed_travel = 100 \ No newline at end of file +speed_travel = 100 + 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 17bd18fc9d..f55649264c 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Draft Quality definition = crazy3dprint_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 24 speed_support = 24 speed_travel = 100 + 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 4fbce7d02d..2c708faa07 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine Quality definition = crazy3dprint_base +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_abs +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 24 speed_support = 24 speed_travel = 100 + 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 a55b4d87c9..6a2535f8e6 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal Quality definition = crazy3dprint_base +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 24 speed_support = 24 speed_travel = 100 + 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 3818d517dd..22c0be933a 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Fine Quality definition = crazy3dprint_base +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = 0 [values] adhesion_type = brim @@ -24,3 +24,4 @@ speed_infill = =speed_print speed_print = 24 speed_support = 24 speed_travel = 70 + 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 83e2d52b87..a83db8a5b8 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Normal Quality definition = crazy3dprint_base +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -1 [values] adhesion_type = brim @@ -24,3 +24,4 @@ speed_infill = =speed_print speed_print = 24 speed_support = 24 speed_travel = 70 + 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 ea97a71051..f676d805f5 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = crazy3dprint_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] adhesion_type = brim @@ -24,3 +24,4 @@ speed_infill = =speed_print speed_print = 24 speed_support = 24 speed_travel = 70 + 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 4f2c9f0074..ca4c6e02bf 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Coarse Quality definition = crazy3dprint_base +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -3 [values] adhesion_type = brim @@ -24,3 +24,4 @@ speed_infill = =speed_print speed_print = 24 speed_support = 24 speed_travel = 70 + 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 ac5aeadfbe..2e4a9e541e 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Coarse Quality definition = crazy3dprint_base +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse material = generic_pla +quality_type = coarse +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 24 speed_support = 24 speed_travel = 70 + 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 c973ff04c2..7ffbfc983b 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Draft Quality definition = crazy3dprint_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 24 speed_support = 24 speed_travel = 70 + 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 f4fc51e31b..1f2536dd6b 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine Quality definition = crazy3dprint_base +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_pla +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 24 speed_support = 24 speed_travel = 70 + 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 6290daa51d..1d2323c230 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal Quality definition = crazy3dprint_base +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 24 speed_support = 24 speed_travel = 70 + 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 79d230e8f4..2e80729b96 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = creality_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] wall_thickness = =line_width*8 + 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 fda63a4ac6..1921452cd4 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Ultra Quality definition = creality_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_abs +quality_type = ultra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] wall_thickness = =line_width*8 + 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 cf8fa595ee..3462ba60b1 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 @@ -1,17 +1,16 @@ [general] -version = 4 -name = Super Quality definition = creality_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*8 -#retraction_extra_prime_amount = 0.5 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 4daaba88d0..5732177e41 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Ultra Quality definition = creality_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_petg +quality_type = ultra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*8 -#retraction_extra_prime_amount = 0.5 + 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 4f9b865902..eb69f993c2 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = creality_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] + 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 e8ad2fd9a9..101b4b4f93 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Ultra Quality definition = creality_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_pla +quality_type = ultra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] + 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 ed9a81330f..44b2371f2b 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = creality_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*4 + 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 2f279a1b2d..ed9bb131c8 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Low Quality definition = creality_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*4 + 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 4881d78d5d..8b034ebbac 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = creality_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*4 + 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 2c498f0111..b0b7a71b2d 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = creality_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*4 + 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 3e461150e5..876d8bec26 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = creality_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 ca163341bb..45bc46ce57 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Low Quality definition = creality_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 ea032a5d29..0eba756cec 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = creality_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 df502fea89..44c78d9841 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Super Quality definition = creality_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 55894a79f4..672be97d5e 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = creality_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 58a01b030d..bce81ed8aa 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = creality_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 afa44e2f44..b203c49a5d 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = creality_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 03d09baa70..205cb74fcf 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = creality_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 adae7da4c5..aef986f74a 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = creality_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 b40598b31c..2509d7888e 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = creality_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 822b64e03f..b0f60d3498 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = creality_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_tpu +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 0fae9343bf..5f3d8c911f 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = creality_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 a3e34f79fb..3c9690fafe 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Low Quality definition = creality_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 a12bd480d7..998c4ef915 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = creality_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 6a95104804..29faf9d49d 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = creality_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 02eeb19777..e0f46c3564 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = creality_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 ed53dce4f0..38a5829e60 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Low Quality definition = creality_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 1e308bf074..ac606c3431 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = creality_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 6d35fadbcb..a7c88bc67f 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Super Quality definition = creality_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 a57b065340..d048641758 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = creality_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 29927d4aa0..91e96c6714 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = creality_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 831b20131c..5e92b31a7c 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = creality_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 c5a6ea2486..378ebe4d8a 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = creality_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 71b054871b..33b0725bad 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = creality_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 f33585c844..4b5d9e4aec 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = creality_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 5b35b8c097..2086bc635a 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = creality_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_tpu +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 835526bd5b..792af41ee9 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = creality_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 88e8189b35..ce4fd9f356 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Low Quality definition = creality_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 31a123ec42..1cb9e49703 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = creality_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 55e9aa3f28..8ebedcf006 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = creality_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 3965f79706..e9074441d3 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = creality_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 ac6bbdc24d..36b727d11c 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Low Quality definition = creality_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 60a3414378..ae04d305a6 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = creality_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 4e342ed553..5b59905ac7 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Super Quality definition = creality_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 456af89b33..d03f8d5d1c 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = creality_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 55cd763bc3..61ebda8660 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = creality_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 1553d03f47..969f350199 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = creality_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 f85609116e..c1b2571eae 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = creality_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 51e070183d..a01fd327bd 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = creality_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 b30a73348d..aaeba0c6f6 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = creality_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 49912b0468..4fc70ac0bd 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = creality_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_tpu +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 ff60d28867..216efb7feb 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = creality_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] wall_thickness = =line_width*3 + 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 2a861b45b6..7d6238e018 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = creality_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*3 -#retraction_extra_prime_amount = 0.5 + 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 df95c12c92..0bdd756125 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = creality_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 2adc14c1be..99ca1726a8 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = creality_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 67eced1a49..3cd403610f 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = creality_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 1d4ed5b13f..9441027751 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = creality_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 83c1324f1b..75faf8511d 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft Quality definition = creality_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] wall_thickness = =line_width*3 + 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 6083755607..9c715fcec5 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = creality_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*3 -#retraction_extra_prime_amount = 0.5 + 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 37312d95e5..5f57198c49 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = creality_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] + 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 20fd82a670..4861a38b1d 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = creality_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] + 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 6678d46039..1431ab8530 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft Quality definition = creality_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] wall_thickness = =line_width*3 + 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 668663affe..07ccf302ec 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = creality_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*3 -#retraction_extra_prime_amount = 0.5 + 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 0a560fc243..b00db63324 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = creality_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] + 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 095a832b81..bc81bc0371 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = creality_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] + diff --git a/resources/quality/creality/base/base_global_adaptive.inst.cfg b/resources/quality/creality/base/base_global_adaptive.inst.cfg index fea0b82e0c..b6b8b52349 100644 --- a/resources/quality/creality/base/base_global_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_global_adaptive.inst.cfg @@ -1,19 +1,20 @@ [general] -version = 4 -name = Dynamic Quality definition = creality_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive -weight = -2 global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +weight = -2 [values] +adaptive_layer_height_enabled = true layer_height = 0.16 layer_height_0 = 0.20 +support_interface_height = =layer_height*6 top_bottom_thickness = =layer_height_0+layer_height*4 wall_thickness = =line_width*3 -support_interface_height = =layer_height*6 -adaptive_layer_height_enabled = true + diff --git a/resources/quality/creality/base/base_global_draft.inst.cfg b/resources/quality/creality/base/base_global_draft.inst.cfg index 8c2e65d4fa..de99319e53 100644 --- a/resources/quality/creality/base/base_global_draft.inst.cfg +++ b/resources/quality/creality/base/base_global_draft.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Draft Quality definition = creality_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -5 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -5 [values] layer_height = 0.32 layer_height_0 = 0.32 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 + diff --git a/resources/quality/creality/base/base_global_low.inst.cfg b/resources/quality/creality/base/base_global_low.inst.cfg index 5ff36a4431..bddb8ae653 100644 --- a/resources/quality/creality/base/base_global_low.inst.cfg +++ b/resources/quality/creality/base/base_global_low.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Low Quality definition = creality_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low -weight = -4 global_quality = True +quality_type = low +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.28 layer_height_0 = 0.28 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 + diff --git a/resources/quality/creality/base/base_global_standard.inst.cfg b/resources/quality/creality/base/base_global_standard.inst.cfg index c5ad432dd5..91140677bf 100644 --- a/resources/quality/creality/base/base_global_standard.inst.cfg +++ b/resources/quality/creality/base/base_global_standard.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Standard Quality definition = creality_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard -weight = -3 global_quality = True +quality_type = standard +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.2 layer_height_0 = 0.2 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 + diff --git a/resources/quality/creality/base/base_global_super.inst.cfg b/resources/quality/creality/base/base_global_super.inst.cfg index ddae2cca9d..6f21593188 100644 --- a/resources/quality/creality/base/base_global_super.inst.cfg +++ b/resources/quality/creality/base/base_global_super.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Super Quality definition = creality_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super -weight = -1 global_quality = True +quality_type = super +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.12 layer_height_0 = 0.12 +support_interface_height = =layer_height*8 top_bottom_thickness = =layer_height_0+layer_height*6 wall_thickness = =line_width*3 -support_interface_height = =layer_height*8 + diff --git a/resources/quality/creality/base/base_global_ultra.inst.cfg b/resources/quality/creality/base/base_global_ultra.inst.cfg index b63d135bdf..383024037f 100644 --- a/resources/quality/creality/base/base_global_ultra.inst.cfg +++ b/resources/quality/creality/base/base_global_ultra.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Ultra Quality definition = creality_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra -weight = 0 global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.08 layer_height_0 = 0.12 +support_interface_height = =layer_height*12 top_bottom_thickness = =layer_height_0+layer_height*10 wall_thickness = =line_width*3 -support_interface_height = =layer_height*12 + 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 63f9920bf3..a5a9879d72 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg @@ -1,26 +1,24 @@ [general] -version = 4 -name = Fast definition = dagoma_discoeasy200_bicolor +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = chromatik_pla +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] -layer_height = 0.2 line_width = =machine_nozzle_size * 0.875 - -material_print_temperature = =default_material_print_temperature + 10 material_bed_temperature_layer_0 = =default_material_bed_temperature + 10 - -speed_print = 60 -speed_travel = 75 -speed_layer_0 = 17 +material_print_temperature = =default_material_print_temperature + 10 speed_infill = 60 +speed_layer_0 = 17 +speed_print = 60 +speed_topbottom = 60 +speed_travel = 75 speed_wall_0 = 50 speed_wall_x = 60 -speed_topbottom = 60 + 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 c9828cca5a..3d5ec38d35 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg @@ -1,23 +1,22 @@ [general] -version = 4 -name = Fine definition = dagoma_discoeasy200_bicolor +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = chromatik_pla +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.1 line_width = =machine_nozzle_size * 0.875 - -speed_print = 35 -speed_travel = 50 -speed_layer_0 = 15 speed_infill = 40 +speed_layer_0 = 15 +speed_print = 35 +speed_topbottom = 35 +speed_travel = 50 speed_wall_0 = 25 speed_wall_x = 35 -speed_topbottom = 35 + 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 1ac89bfcb6..f698da2d69 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg @@ -1,26 +1,24 @@ [general] -version = 4 -name = Standard definition = dagoma_discoeasy200_bicolor +name = Standard +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = chromatik_pla +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] -layer_height = 0.15 line_width = =machine_nozzle_size * 0.875 - -material_print_temperature = =default_material_print_temperature + 5 material_bed_temperature_layer_0 = =default_material_bed_temperature + 5 - -speed_print = 50 -speed_travel = 60 -speed_layer_0 = 17 +material_print_temperature = =default_material_print_temperature + 5 speed_infill = 50 +speed_layer_0 = 17 +speed_print = 50 +speed_topbottom = 50 +speed_travel = 60 speed_wall_0 = 40 speed_wall_x = 45 -speed_topbottom = 50 + diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg index f739b02303..622a93a087 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg @@ -1,26 +1,24 @@ [general] -version = 4 -name = Fast definition = dagoma_discoeasy200 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = chromatik_pla +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] -layer_height = 0.2 line_width = =machine_nozzle_size * 0.875 - -material_print_temperature = =default_material_print_temperature + 10 material_bed_temperature_layer_0 = =default_material_bed_temperature + 10 - -speed_print = 60 -speed_travel = 75 -speed_layer_0 = 17 +material_print_temperature = =default_material_print_temperature + 10 speed_infill = 60 +speed_layer_0 = 17 +speed_print = 60 +speed_topbottom = 60 +speed_travel = 75 speed_wall_0 = 50 speed_wall_x = 60 -speed_topbottom = 60 + diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg index 3b25824cbc..98eb36c144 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg @@ -1,23 +1,22 @@ [general] -version = 4 -name = Fine definition = dagoma_discoeasy200 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = chromatik_pla +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.1 line_width = =machine_nozzle_size * 0.875 - -speed_print = 35 -speed_travel = 50 -speed_layer_0 = 15 speed_infill = 40 +speed_layer_0 = 15 +speed_print = 35 +speed_topbottom = 35 +speed_travel = 50 speed_wall_0 = 25 speed_wall_x = 35 -speed_topbottom = 35 + diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg index 913af36eb3..5de5ad8dca 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg @@ -1,26 +1,24 @@ [general] -version = 4 -name = Standard definition = dagoma_discoeasy200 +name = Standard +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = chromatik_pla +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] -layer_height = 0.15 line_width = =machine_nozzle_size * 0.875 - -material_print_temperature = =default_material_print_temperature + 5 material_bed_temperature_layer_0 = =default_material_bed_temperature + 5 - -speed_print = 50 -speed_travel = 60 -speed_layer_0 = 17 +material_print_temperature = =default_material_print_temperature + 5 speed_infill = 50 +speed_layer_0 = 17 +speed_print = 50 +speed_topbottom = 50 +speed_travel = 60 speed_wall_0 = 40 speed_wall_x = 45 -speed_topbottom = 50 + 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 87c089438f..c35fe262b4 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg @@ -1,26 +1,24 @@ [general] -version = 4 -name = Fast definition = dagoma_discoultimate_bicolor +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = chromatik_pla +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] -layer_height = 0.2 line_width = =machine_nozzle_size * 0.875 - -material_print_temperature = =default_material_print_temperature + 10 material_bed_temperature_layer_0 = =default_material_bed_temperature + 10 - -speed_print = 60 -speed_travel = 75 -speed_layer_0 = 17 +material_print_temperature = =default_material_print_temperature + 10 speed_infill = 60 +speed_layer_0 = 17 +speed_print = 60 +speed_topbottom = 60 +speed_travel = 75 speed_wall_0 = 50 speed_wall_x = 60 -speed_topbottom = 60 + 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 e927d2addf..cfdff1319f 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg @@ -1,23 +1,22 @@ [general] -version = 4 -name = Fine definition = dagoma_discoultimate_bicolor +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = chromatik_pla +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.1 line_width = =machine_nozzle_size * 0.875 - -speed_print = 35 -speed_travel = 50 -speed_layer_0 = 15 speed_infill = 40 +speed_layer_0 = 15 +speed_print = 35 +speed_topbottom = 35 +speed_travel = 50 speed_wall_0 = 25 speed_wall_x = 35 -speed_topbottom = 35 + 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 ccbaa8f506..0030e89bbb 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg @@ -1,26 +1,24 @@ [general] -version = 4 -name = Standard definition = dagoma_discoultimate_bicolor +name = Standard +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = chromatik_pla +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] -layer_height = 0.15 line_width = =machine_nozzle_size * 0.875 - -material_print_temperature = =default_material_print_temperature + 5 material_bed_temperature_layer_0 = =default_material_bed_temperature + 5 - -speed_print = 50 -speed_travel = 60 -speed_layer_0 = 17 +material_print_temperature = =default_material_print_temperature + 5 speed_infill = 50 +speed_layer_0 = 17 +speed_print = 50 +speed_topbottom = 50 +speed_travel = 60 speed_wall_0 = 40 speed_wall_x = 45 -speed_topbottom = 50 + diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg index 290d4be38d..4a08d33616 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg @@ -1,26 +1,24 @@ [general] -version = 4 -name = Fast definition = dagoma_discoultimate +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = chromatik_pla +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] -layer_height = 0.2 line_width = =machine_nozzle_size * 0.875 - -material_print_temperature = =default_material_print_temperature + 10 material_bed_temperature_layer_0 = =default_material_bed_temperature + 10 - -speed_print = 60 -speed_travel = 75 -speed_layer_0 = 17 +material_print_temperature = =default_material_print_temperature + 10 speed_infill = 60 +speed_layer_0 = 17 +speed_print = 60 +speed_topbottom = 60 +speed_travel = 75 speed_wall_0 = 50 speed_wall_x = 60 -speed_topbottom = 60 + diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg index 3c0d4a70ca..bc27028922 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg @@ -1,23 +1,22 @@ [general] -version = 4 -name = Fine definition = dagoma_discoultimate +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = chromatik_pla +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.1 line_width = =machine_nozzle_size * 0.875 - -speed_print = 35 -speed_travel = 50 -speed_layer_0 = 15 speed_infill = 40 +speed_layer_0 = 15 +speed_print = 35 +speed_topbottom = 35 +speed_travel = 50 speed_wall_0 = 25 speed_wall_x = 35 -speed_topbottom = 35 + diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg index d7c8fa3360..734edc3920 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg @@ -1,26 +1,24 @@ [general] -version = 4 -name = Standard definition = dagoma_discoultimate +name = Standard +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = chromatik_pla +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] -layer_height = 0.15 line_width = =machine_nozzle_size * 0.875 - -material_print_temperature = =default_material_print_temperature + 5 material_bed_temperature_layer_0 = =default_material_bed_temperature + 5 - -speed_print = 50 -speed_travel = 60 -speed_layer_0 = 17 +material_print_temperature = =default_material_print_temperature + 5 speed_infill = 50 +speed_layer_0 = 17 +speed_print = 50 +speed_topbottom = 50 +speed_travel = 60 speed_wall_0 = 40 speed_wall_x = 45 -speed_topbottom = 50 + diff --git a/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg index be852a2446..5c7ccc5b9f 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg @@ -1,26 +1,24 @@ [general] -version = 4 -name = Fast definition = dagoma_magis +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = chromatik_pla +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] -layer_height = 0.2 line_width = =machine_nozzle_size * 0.875 - -material_print_temperature = =default_material_print_temperature + 10 material_bed_temperature_layer_0 = =default_material_bed_temperature + 10 - -speed_print = 40 -speed_travel = 80 -speed_layer_0 = 17 +material_print_temperature = =default_material_print_temperature + 10 speed_infill = 40 +speed_layer_0 = 17 +speed_print = 40 +speed_topbottom = 40 +speed_travel = 80 speed_wall_0 = 30 speed_wall_x = 40 -speed_topbottom = 40 + diff --git a/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg index cf7f6f6545..1778c34160 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg @@ -1,23 +1,22 @@ [general] -version = 4 -name = Fine definition = dagoma_magis +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = chromatik_pla +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.1 line_width = =machine_nozzle_size * 0.875 - -speed_print = 30 -speed_travel = 80 -speed_layer_0 = 17 speed_infill = 30 +speed_layer_0 = 17 +speed_print = 30 +speed_topbottom = 30 +speed_travel = 80 speed_wall_0 = 20 speed_wall_x = 30 -speed_topbottom = 30 + diff --git a/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg index 0ad63679ec..d6f86947c4 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg @@ -1,26 +1,24 @@ [general] -version = 4 -name = Standard definition = dagoma_magis +name = Standard +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = chromatik_pla +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] -layer_height = 0.15 line_width = =machine_nozzle_size * 0.875 - -material_print_temperature = =default_material_print_temperature + 5 material_bed_temperature_layer_0 = =default_material_bed_temperature + 5 - -speed_print = 35 -speed_travel = 80 -speed_layer_0 = 17 +material_print_temperature = =default_material_print_temperature + 5 speed_infill = 35 +speed_layer_0 = 17 +speed_print = 35 +speed_topbottom = 35 +speed_travel = 80 speed_wall_0 = 25 speed_wall_x = 35 -speed_topbottom = 35 + diff --git a/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg index 6d08b2a27e..bcc4603584 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg @@ -1,26 +1,24 @@ [general] -version = 4 -name = Fast definition = dagoma_neva +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = chromatik_pla +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] -layer_height = 0.2 line_width = =machine_nozzle_size * 0.875 - -material_print_temperature = =default_material_print_temperature + 10 material_bed_temperature_layer_0 = =default_material_bed_temperature + 10 - -speed_print = 40 -speed_travel = 80 -speed_layer_0 = 17 +material_print_temperature = =default_material_print_temperature + 10 speed_infill = 40 +speed_layer_0 = 17 +speed_print = 40 +speed_topbottom = 40 +speed_travel = 80 speed_wall_0 = 30 speed_wall_x = 40 -speed_topbottom = 40 + diff --git a/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg index 96d0a51d95..dd428dc3cc 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg @@ -1,23 +1,22 @@ [general] -version = 4 -name = Fine definition = dagoma_neva +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = chromatik_pla +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.1 line_width = =machine_nozzle_size * 0.875 - -speed_print = 30 -speed_travel = 80 -speed_layer_0 = 17 speed_infill = 30 +speed_layer_0 = 17 +speed_print = 30 +speed_topbottom = 30 +speed_travel = 80 speed_wall_0 = 20 speed_wall_x = 30 -speed_topbottom = 30 + diff --git a/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg index f24ae61f71..52c7d86ae0 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg @@ -1,26 +1,24 @@ [general] -version = 4 -name = Standard definition = dagoma_neva +name = Standard +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = chromatik_pla +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] -layer_height = 0.15 line_width = =machine_nozzle_size * 0.875 - -material_print_temperature = =default_material_print_temperature + 5 material_bed_temperature_layer_0 = =default_material_bed_temperature + 5 - -speed_print = 35 -speed_travel = 80 -speed_layer_0 = 17 +material_print_temperature = =default_material_print_temperature + 5 speed_infill = 35 +speed_layer_0 = 17 +speed_print = 35 +speed_topbottom = 35 +speed_travel = 80 speed_wall_0 = 25 speed_wall_x = 35 -speed_topbottom = 35 + 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 new file mode 100644 index 0000000000..96ea38ade9 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg @@ -0,0 +1,27 @@ +[general] +definition = dagoma_pro_430_bowden +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.1 +setting_version = 22 +type = quality +variant = Brass 0.4mm +weight = -1 + +[values] +acceleration_infill = 2500 +acceleration_roofing = 1200 +acceleration_topbottom = 1200 +acceleration_wall_0 = 650.0 +acceleration_wall_x = 1200 +small_feature_speed_factor = 75 +speed_print = 50.0 +speed_roofing = 45.0 +speed_topbottom = 45.0 +speed_wall_0 = 35.0 +speed_wall_x = 45.0 +support_z_distance = 0.2 + 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 new file mode 100644 index 0000000000..1e6d59df5b --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = dagoma_pro_430_bowden +name = Normal +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.2 +setting_version = 22 +type = quality +variant = Brass 0.4mm +weight = 1 + +[values] +acceleration_infill = 3000 +acceleration_roofing = 1600 +acceleration_topbottom = 1500 +acceleration_wall_0 = 850 +acceleration_wall_x = 1600 +small_feature_speed_factor = 60 +speed_print = 70 +speed_wall_0 = 50 +speed_wall_x = 60 +support_z_distance = 0.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 new file mode 100644 index 0000000000..96af2f714c --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_pro_430_bowden +name = Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.3 +setting_version = 22 +type = quality +variant = Brass 0.4mm +weight = 0 + +[values] + 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 new file mode 100644 index 0000000000..c3cdc7d9af --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = dagoma_pro_430_bowden +name = Very Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.4 +setting_version = 22 +type = quality +variant = Brass 0.8mm +weight = -1 + +[values] +material_flow_layer_0 = 110 +material_print_temperature = =default_material_print_temperature + 35 +material_print_temperature_layer_0 = =default_material_print_temperature + 30 +speed_infill = 35 +speed_print = 45 +speed_wall_0 = =speed_wall + 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 new file mode 100644 index 0000000000..1165fc2ee8 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = dagoma_pro_430_bowden +name = Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.6 +setting_version = 22 +type = quality +variant = Brass 0.8mm +weight = 1 + +[values] +material_print_temperature = =default_material_print_temperature + 60 +material_print_temperature_layer_0 = =default_material_print_temperature + 25 +speed_infill = 35 +speed_print = 50 +speed_wall_0 = 20 + 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 new file mode 100644 index 0000000000..f6200a7fd7 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = dagoma_pro_430_bowden +name = Very Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.4 +setting_version = 22 +type = quality +variant = Brass 1.0mm +weight = -1 + +[values] +material_flow_layer_0 = 110 +material_print_temperature = =default_material_print_temperature + 55 +speed_print = 45 +speed_wall_0 = 30 + 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 new file mode 100644 index 0000000000..abfcfebc28 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = dagoma_pro_430_bowden +name = Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.6 +setting_version = 22 +type = quality +variant = Brass 1.0mm +weight = 1 + +[values] +material_flow_layer_0 = 150 +material_print_temperature = =default_material_print_temperature + 60 +speed_print = 50 +speed_wall_0 = 20.0 + 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 new file mode 100644 index 0000000000..079fe5831c --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = dagoma_pro_430_bowden +name = Coarse +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.8 +setting_version = 22 +type = quality +variant = Brass 1.0mm +weight = 0 + +[values] +bottom_layers = 2 +material_flow_layer_0 = 140 +material_print_temperature = =default_material_print_temperature + 65 +speed_print = 45 +speed_wall_0 = 20 +speed_wall_x = 30 + 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 new file mode 100644 index 0000000000..973fca320e --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = dagoma_pro_430_bowden +name = Fine +version = 4 + +[metadata] +global_quality = True +material = generic_pla +quality_type = h0.1 +setting_version = 22 +type = quality +weight = 1 + +[values] +layer_height = 0.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 new file mode 100644 index 0000000000..2fdbc7549d --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = dagoma_pro_430_bowden +name = Normal +version = 4 + +[metadata] +global_quality = True +material = generic_pla +quality_type = h0.2 +setting_version = 22 +type = quality +weight = 0 + +[values] +layer_height = 0.2 + 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 new file mode 100644 index 0000000000..feb709164f --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = dagoma_pro_430_bowden +name = Fast +version = 4 + +[metadata] +global_quality = True +material = generic_pla +quality_type = h0.3 +setting_version = 22 +type = quality +weight = -1 + +[values] +layer_height = 0.3 + 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 new file mode 100644 index 0000000000..79e2d90b77 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = dagoma_pro_430_bowden +name = Very Fast +version = 4 + +[metadata] +global_quality = True +material = generic_pla +quality_type = h0.4 +setting_version = 22 +type = quality +weight = -2 + +[values] +layer_height = 0.4 + 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 new file mode 100644 index 0000000000..498ff3750c --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = dagoma_pro_430_bowden +name = Draft +version = 4 + +[metadata] +global_quality = True +material = generic_pla +quality_type = h0.6 +setting_version = 22 +type = quality +weight = -3 + +[values] +layer_height = 0.6 + 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 new file mode 100644 index 0000000000..0f9baad3ff --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = dagoma_pro_430_bowden +name = Coarse +version = 4 + +[metadata] +global_quality = True +material = generic_pla +quality_type = h0.8 +setting_version = 22 +type = quality +weight = -4 + +[values] +layer_height = 0.8 + 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 new file mode 100644 index 0000000000..355ef66112 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg @@ -0,0 +1,31 @@ +[general] +definition = dagoma_pro_430_bowden +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.1 +setting_version = 22 +type = quality +variant = Steel 0.4mm +weight = 1 + +[values] +acceleration_infill = 2500 +acceleration_roofing = 1200 +acceleration_topbottom = 1200 +acceleration_wall_0 = 650.0 +acceleration_wall_x = 1200 +material_print_temperature = =default_material_print_temperature + 30 +retraction_amount = 3.0 +retraction_speed = 40 +speed_print = 50.0 +speed_roofing = 45.0 +speed_topbottom = 45.0 +speed_wall_0 = 35.0 +speed_wall_x = 45.0 +support_interface_enable = False +support_top_distance = 0.2 +support_z_distance = 0.2 + 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 new file mode 100644 index 0000000000..c160324f03 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = dagoma_pro_430_bowden +name = Normal +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.2 +setting_version = 22 +type = quality +variant = Steel 0.4mm +weight = 0 + +[values] +acceleration_infill = 3000 +acceleration_roofing = 1600 +acceleration_topbottom = 1500 +acceleration_wall_0 = 850 +acceleration_wall_x = 1600 +material_print_temperature = =default_material_print_temperature + 33 +retraction_amount = 5.0 +retraction_speed = 40.0 +speed_print = 70 +speed_wall_0 = 50 +speed_wall_x = 60 +support_top_distance = 0.1 +support_z_distance = 0.1 + 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 new file mode 100644 index 0000000000..eb642e6e48 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_pro_430_bowden +name = Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.3 +setting_version = 22 +type = quality +variant = Steel 0.4mm +weight = -1 + +[values] + 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 new file mode 100644 index 0000000000..59933f6f69 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = dagoma_pro_430_bowden +name = Very Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.4 +setting_version = 22 +type = quality +variant = Steel 0.8mm +weight = -1 + +[values] +gradual_infill_step_height = 2 +gradual_infill_steps = 2 +infill_sparse_density = 20 +material_print_temperature = =default_material_print_temperature + 10 +retraction_amount = 3.5 +retraction_speed = 45 +top_layers = 4 + 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 new file mode 100644 index 0000000000..ccaa29a0d8 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg @@ -0,0 +1,26 @@ +[general] +definition = dagoma_pro_430_bowden +name = Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.6 +setting_version = 22 +type = quality +variant = Steel 0.8mm +weight = 1 + +[values] +bottom_layers = 2 +infill_overlap = 5 +infill_sparse_density = 7 +material_flow = 100 +material_flow_layer_0 = 120 +material_print_temperature = =default_material_print_temperature + 60 +skin_overlap = 10 +speed_wall_x = 25 +top_layers = 3 +wall_line_count = 2 +z_seam_corner = z_seam_corner_none + 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 new file mode 100644 index 0000000000..7dba894368 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.1 +setting_version = 22 +type = quality +variant = Brass 0.4mm +weight = -1 + +[values] + 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 new file mode 100644 index 0000000000..eecd00f154 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Normal +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.2 +setting_version = 22 +type = quality +variant = Brass 0.4mm +weight = 1 + +[values] +infill_pattern = triangles +infill_sparse_density = 15 +material_bed_temperature = 70 +material_print_temperature = =default_material_print_temperature + 25 +retraction_amount = 1.5 +speed_print = 65 +wall_line_count = 3 + 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 new file mode 100644 index 0000000000..074fcab081 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.3 +setting_version = 22 +type = quality +variant = Brass 0.4mm +weight = 0 + +[values] + 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 new file mode 100644 index 0000000000..40caac85b7 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Normal +version = 4 + +[metadata] +material = generic_tpu +quality_type = h0.2 +setting_version = 22 +type = quality +variant = Brass 0.4mm +weight = 1 + +[values] +infill_pattern = gyroid +infill_sparse_density = 10 +material_bed_temperature = 60 +material_flow = 105 +material_print_temperature = =default_material_print_temperature - 8 +retraction_amount = 3 +speed_print = 30.0 + 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 new file mode 100644 index 0000000000..a54d67164f --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Very Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.4 +setting_version = 22 +type = quality +variant = Brass 0.8mm +weight = -1 + +[values] + 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 new file mode 100644 index 0000000000..877c714bd2 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.6 +setting_version = 22 +type = quality +variant = Brass 0.8mm +weight = 1 + +[values] + 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 new file mode 100644 index 0000000000..d1e846d8ef --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Very Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.4 +setting_version = 22 +type = quality +variant = Brass 1.0mm +weight = -1 + +[values] + 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 new file mode 100644 index 0000000000..587816e51d --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.6 +setting_version = 22 +type = quality +variant = Brass 1.0mm +weight = 1 + +[values] + 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 new file mode 100644 index 0000000000..aaf0443bf3 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Coarse +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.8 +setting_version = 22 +type = quality +variant = Brass 1.0mm +weight = 0 + +[values] + 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 new file mode 100644 index 0000000000..1bc5d20d89 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Fine +version = 4 + +[metadata] +global_quality = True +material = generic_pla +quality_type = h0.1 +setting_version = 22 +type = quality +weight = 1 + +[values] +layer_height = 0.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 new file mode 100644 index 0000000000..cc7fd06726 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Normal +version = 4 + +[metadata] +global_quality = True +material = generic_pla +quality_type = h0.2 +setting_version = 22 +type = quality +weight = 0 + +[values] +layer_height = 0.2 + 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 new file mode 100644 index 0000000000..8a12a51635 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Fast +version = 4 + +[metadata] +global_quality = True +material = generic_pla +quality_type = h0.3 +setting_version = 22 +type = quality +weight = -1 + +[values] +layer_height = 0.3 + 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 new file mode 100644 index 0000000000..a9b846ca8b --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Very Fast +version = 4 + +[metadata] +global_quality = True +material = generic_pla +quality_type = h0.4 +setting_version = 22 +type = quality +weight = -2 + +[values] +layer_height = 0.4 + 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 new file mode 100644 index 0000000000..03e6b0b6c5 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Draft +version = 4 + +[metadata] +global_quality = True +material = generic_pla +quality_type = h0.6 +setting_version = 22 +type = quality +weight = -3 + +[values] +layer_height = 0.6 + 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 new file mode 100644 index 0000000000..faa311ad57 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Coarse +version = 4 + +[metadata] +global_quality = True +material = generic_pla +quality_type = h0.8 +setting_version = 22 +type = quality +weight = -4 + +[values] +layer_height = 0.8 + 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 new file mode 100644 index 0000000000..f219f6e880 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.1 +setting_version = 22 +type = quality +variant = Steel 0.4mm +weight = 1 + +[values] + 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 new file mode 100644 index 0000000000..68455d3453 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Normal +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.2 +setting_version = 22 +type = quality +variant = Steel 0.4mm +weight = 0 + +[values] + 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 new file mode 100644 index 0000000000..e6e3508722 --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.3 +setting_version = 22 +type = quality +variant = Steel 0.4mm +weight = -1 + +[values] + 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 new file mode 100644 index 0000000000..a34676603e --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Very Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.4 +setting_version = 22 +type = quality +variant = Steel 0.8mm +weight = -1 + +[values] + 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 new file mode 100644 index 0000000000..36d3e3351c --- /dev/null +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.6 +setting_version = 22 +type = quality +variant = Steel 0.8mm +weight = 1 + +[values] + 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 new file mode 100644 index 0000000000..5f877759d7 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = dagoma_sigma +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.1 +setting_version = 22 +type = quality +variant = 0.4mm +weight = 1 + +[values] +material_print_temperature = =default_material_print_temperature +retraction_amount = 2.5 +small_feature_speed_factor = 75.0 +small_feature_speed_factor_0 = 35.0 + 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 new file mode 100644 index 0000000000..4457176cee --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = dagoma_sigma +name = Normal +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.2 +setting_version = 22 +type = quality +variant = 0.4mm +weight = 0 + +[values] +material_print_temperature = =default_material_print_temperature + 5 +retraction_amount = 3.5 +small_feature_speed_factor = 25.0 +small_feature_speed_factor_0 = =small_feature_speed_factor + 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 new file mode 100644 index 0000000000..014d2a0a6c --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = dagoma_sigma +name = Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.3 +setting_version = 22 +type = quality +variant = 0.4mm +weight = -1 + +[values] +material_print_temperature = =default_material_print_temperature + 10 +speed_infill = 40 +speed_layer_0 = 17 +speed_print = 40 +speed_topbottom = 40 +speed_wall_0 = 30 +speed_wall_x = 40 + 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 new file mode 100644 index 0000000000..fda7f5bef8 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = dagoma_sigma +name = Very Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.4 +setting_version = 22 +type = quality +variant = 0.8mm +weight = -2 + +[values] +material_print_temperature = =default_material_print_temperature + 10 +speed_infill = 40 +speed_layer_0 = 17 +speed_print = 40 +speed_topbottom = 40 +speed_wall_0 = 30 +speed_wall_x = 40 + 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 new file mode 100644 index 0000000000..b338c04c60 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft +definition = dagoma_sigma + +[metadata] +setting_version = 22 +type = quality +quality_type = h0.6 +weight = -3 +material = generic_pla +variant = 0.8mm + +[values] +material_flow_layer_0 = 80 +material_print_temperature = =default_material_print_temperature + 35 +material_print_temperature_layer_0 = =default_material_print_temperature + 30 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 new file mode 100644 index 0000000000..a0346640b8 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = dagoma_sigma +name = Coarse +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.8 +setting_version = 22 +type = quality +variant = 0.8mm +weight = -4 + +[values] +material_flow_layer_0 = 80 +material_print_temperature = =default_material_print_temperature + 40 +material_print_temperature_layer_0 = =default_material_print_temperature + 35 + diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg new file mode 100644 index 0000000000..f4854e3590 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma +name = Fine +version = 4 + +[metadata] +global_quality = True +quality_type = h0.1 +setting_version = 22 +type = quality +weight = 1 + +[values] +layer_height = 0.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 new file mode 100644 index 0000000000..fe081fea2b --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma +name = Normal +version = 4 + +[metadata] +global_quality = True +quality_type = h0.2 +setting_version = 22 +type = quality +weight = 0 + +[values] +layer_height = 0.2 + diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg new file mode 100644 index 0000000000..5fc3621a60 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = h0.3 +setting_version = 22 +type = quality +weight = -1 + +[values] +layer_height = 0.3 + diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg new file mode 100644 index 0000000000..7fa09620a2 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma +name = Very Fast +version = 4 + +[metadata] +global_quality = True +quality_type = h0.4 +setting_version = 22 +type = quality +weight = -2 + +[values] +layer_height = 0.4 + diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg new file mode 100644 index 0000000000..fe91f95768 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma +name = Draft +version = 4 + +[metadata] +global_quality = True +quality_type = h0.6 +setting_version = 22 +type = quality +weight = -3 + +[values] +layer_height = 0.6 + diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg new file mode 100644 index 0000000000..ee029f1031 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma +name = Coarse +version = 4 + +[metadata] +global_quality = True +quality_type = h0.8 +setting_version = 22 +type = quality +weight = -4 + +[values] +layer_height = 0.8 + diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_abs_high_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_abs_high_quality.inst.cfg deleted file mode 100644 index 9c6024debf..0000000000 --- a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_abs_high_quality.inst.cfg +++ /dev/null @@ -1,54 +0,0 @@ -[general] - -version = 4 -name = High Quality -definition = dagoma_pro_430_bowden - -[metadata] - -setting_version = 20 -type = quality -quality_type = high -weight = -1 -material = generic_abs_175 -variant = 0.4 - -[values] - -wall_thickness = =line_width * 2 -z_seam_type = sharpest_corner -z_seam_corner = z_seam_corner_weighted -skin_outline_count = 0 - -infill_sparse_density = 15 -infill_before_walls = False - -material_print_temperature = =default_material_print_temperature + 20 -material_bed_temperature = =default_material_bed_temperature - -speed_print = 40.0 -speed_infill = =speed_print -speed_wall = =math.ceil(speed_print * 30 / 40) -speed_wall_0 = =math.ceil(speed_print * 25 / 40) -speed_wall_x = =speed_wall -speed_topbottom = =speed_wall_0 -speed_travel = =math.ceil(speed_print * 80 / 40) -speed_layer_0 = =math.ceil(speed_print * 25 / 40) -speed_travel_layer_0 = =math.ceil(speed_print * 80 / 40) -speed_support_interface = =math.ceil(speed_print * 25 / 40) -speed_slowdown_layers = 1 - -retraction_combing = noskin -travel_avoid_distance = 1.2 -retraction_combing_max_distance = 10 - -support_interface_enable = True -support_interface_pattern = zigzag - -cool_fan_enabled = False -cool_fan_speed_min = =cool_fan_speed * 0.25 -cool_fan_speed_max = =cool_fan_speed * 0.35 -cool_fan_full_at_height = =layer_height_0 + 5 * layer_height -cool_min_layer_time = 1 -cool_min_layer_time_fan_speed_max = 10 -cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_asa_high_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_asa_high_quality.inst.cfg deleted file mode 100644 index 75fd66899d..0000000000 --- a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_asa_high_quality.inst.cfg +++ /dev/null @@ -1,54 +0,0 @@ -[general] - -version = 4 -name = High Quality -definition = dagoma_pro_430_bowden - -[metadata] - -setting_version = 20 -type = quality -quality_type = high -weight = -1 -material = generic_asa_175 -variant = 0.4 - -[values] - -wall_thickness = =line_width * 2 -z_seam_type = sharpest_corner -z_seam_corner = z_seam_corner_weighted -skin_outline_count = 0 - -infill_sparse_density = 15 -infill_before_walls = False - -material_print_temperature = =default_material_print_temperature + 20 -material_bed_temperature = =default_material_bed_temperature - -speed_print = 40.0 -speed_infill = =speed_print -speed_wall = =math.ceil(speed_print * 30 / 40) -speed_wall_0 = =math.ceil(speed_print * 25 / 40) -speed_wall_x = =speed_wall -speed_topbottom = =speed_wall_0 -speed_travel = =math.ceil(speed_print * 80 / 40) -speed_layer_0 = =math.ceil(speed_print * 25 / 40) -speed_travel_layer_0 = =math.ceil(speed_print * 80 / 40) -speed_support_interface = =math.ceil(speed_print * 25 / 40) -speed_slowdown_layers = 1 - -retraction_combing = noskin -travel_avoid_distance = 1.2 -retraction_combing_max_distance = 10 - -support_interface_enable = True -support_interface_pattern = zigzag - -cool_fan_enabled = False -cool_fan_speed_min = =cool_fan_speed * 0.25 -cool_fan_speed_max = =cool_fan_speed * 0.35 -cool_fan_full_at_height = =layer_height_0 + 5 * layer_height -cool_min_layer_time = 1 -cool_min_layer_time_fan_speed_max = 10 -cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_nylon_high_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_nylon_high_quality.inst.cfg deleted file mode 100644 index c069d2e618..0000000000 --- a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_nylon_high_quality.inst.cfg +++ /dev/null @@ -1,54 +0,0 @@ -[general] - -version = 4 -name = High Quality -definition = dagoma_pro_430_bowden - -[metadata] - -setting_version = 20 -type = quality -quality_type = high -weight = -1 -material = generic_nylon_175 -variant = 0.4 - -[values] - -wall_thickness = =line_width * 2 -z_seam_type = sharpest_corner -z_seam_corner = z_seam_corner_weighted -skin_outline_count = 0 - -infill_sparse_density = 15 -infill_before_walls = False - -material_print_temperature = =default_material_print_temperature + 20 -material_bed_temperature = =default_material_bed_temperature - -speed_print = 40.0 -speed_infill = =speed_print -speed_wall = =math.ceil(speed_print * 30 / 40) -speed_wall_0 = =math.ceil(speed_print * 25 / 40) -speed_wall_x = =speed_wall -speed_topbottom = =speed_wall_0 -speed_travel = =math.ceil(speed_print * 80 / 40) -speed_layer_0 = =math.ceil(speed_print * 25 / 40) -speed_travel_layer_0 = =math.ceil(speed_print * 80 / 40) -speed_support_interface = =math.ceil(speed_print * 25 / 40) -speed_slowdown_layers = 1 - -retraction_combing = noskin -travel_avoid_distance = 1.2 -retraction_combing_max_distance = 10 - -support_interface_enable = True -support_interface_pattern = zigzag - -cool_fan_enabled = False -cool_fan_speed_min = =cool_fan_speed * 0.25 -cool_fan_speed_max = =cool_fan_speed * 0.50 -cool_fan_full_at_height = =layer_height_0 + 5 * layer_height -cool_min_layer_time = 1 -cool_min_layer_time_fan_speed_max = 10 -cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pc_high_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pc_high_quality.inst.cfg deleted file mode 100644 index 5702205dc8..0000000000 --- a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pc_high_quality.inst.cfg +++ /dev/null @@ -1,54 +0,0 @@ -[general] - -version = 4 -name = High Quality -definition = dagoma_pro_430_bowden - -[metadata] - -setting_version = 20 -type = quality -quality_type = high -weight = -1 -material = generic_pc_175 -variant = 0.4 - -[values] - -wall_thickness = =line_width * 2 -z_seam_type = sharpest_corner -z_seam_corner = z_seam_corner_weighted -skin_outline_count = 0 - -infill_sparse_density = 15 -infill_before_walls = False - -material_print_temperature = =default_material_print_temperature + 10 -material_bed_temperature = =default_material_bed_temperature - -speed_print = 40.0 -speed_infill = =speed_print -speed_wall = =math.ceil(speed_print * 30 / 40) -speed_wall_0 = =math.ceil(speed_print * 25 / 40) -speed_wall_x = =speed_wall -speed_topbottom = =speed_wall_0 -speed_travel = =math.ceil(speed_print * 80 / 40) -speed_layer_0 = =math.ceil(speed_print * 25 / 40) -speed_travel_layer_0 = =math.ceil(speed_print * 80 / 40) -speed_support_interface = =math.ceil(speed_print * 25 / 40) -speed_slowdown_layers = 1 - -retraction_combing = noskin -travel_avoid_distance = 1.2 -retraction_combing_max_distance = 10 - -support_interface_enable = True -support_interface_pattern = zigzag - -cool_fan_enabled = False -cool_fan_speed_min = =cool_fan_speed * 0.25 -cool_fan_speed_max = =cool_fan_speed * 0.35 -cool_fan_full_at_height = =layer_height_0 + 5 * layer_height -cool_min_layer_time = 1 -cool_min_layer_time_fan_speed_max = 10 -cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pe_high_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pe_high_quality.inst.cfg deleted file mode 100644 index 87de07a46b..0000000000 --- a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pe_high_quality.inst.cfg +++ /dev/null @@ -1,54 +0,0 @@ -[general] - -version = 4 -name = High Quality -definition = dagoma_pro_430_bowden - -[metadata] - -setting_version = 20 -type = quality -quality_type = high -weight = -1 -material = generic_cpe_175 -variant = 0.4 - -[values] - -wall_thickness = =line_width * 2 -z_seam_type = sharpest_corner -z_seam_corner = z_seam_corner_weighted -skin_outline_count = 0 - -infill_sparse_density = 15 -infill_before_walls = False - -material_print_temperature = =default_material_print_temperature + 20 -material_bed_temperature = =default_material_bed_temperature - -speed_print = 40.0 -speed_infill = =speed_print -speed_wall = =math.ceil(speed_print * 30 / 40) -speed_wall_0 = =math.ceil(speed_print * 25 / 40) -speed_wall_x = =speed_wall -speed_topbottom = =speed_wall_0 -speed_travel = =math.ceil(speed_print * 80 / 40) -speed_layer_0 = =math.ceil(speed_print * 25 / 40) -speed_travel_layer_0 = =math.ceil(speed_print * 80 / 40) -speed_support_interface = =math.ceil(speed_print * 25 / 40) -speed_slowdown_layers = 1 - -retraction_combing = noskin -travel_avoid_distance = 1.2 -retraction_combing_max_distance = 10 - -support_interface_enable = True -support_interface_pattern = zigzag - -cool_fan_enabled = True -cool_fan_speed_min = =cool_fan_speed * 0.25 -cool_fan_speed_max = =cool_fan_speed * 0.30 -cool_fan_full_at_height = =layer_height_0 + 5 * layer_height -cool_min_layer_time = 1 -cool_min_layer_time_fan_speed_max = 10 -cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_petg_high_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_petg_high_quality.inst.cfg deleted file mode 100755 index 2696461241..0000000000 --- a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_petg_high_quality.inst.cfg +++ /dev/null @@ -1,54 +0,0 @@ -[general] - -version = 4 -name = High Quality -definition = dagoma_pro_430_bowden - -[metadata] - -setting_version = 20 -type = quality -quality_type = high -weight = -1 -material = generic_petg_175 -variant = 0.4 - -[values] - -wall_thickness = =line_width * 2 -z_seam_type = sharpest_corner -z_seam_corner = z_seam_corner_weighted -skin_outline_count = 0 - -infill_sparse_density = 15 -infill_before_walls = False - -material_print_temperature = =default_material_print_temperature + 20 -material_bed_temperature = =default_material_bed_temperature - -speed_print = 40.0 -speed_infill = =speed_print -speed_wall = =math.ceil(speed_print * 30 / 40) -speed_wall_0 = =math.ceil(speed_print * 25 / 40) -speed_wall_x = =speed_wall -speed_topbottom = =speed_wall_0 -speed_travel = =math.ceil(speed_print * 80 / 40) -speed_layer_0 = =math.ceil(speed_print * 25 / 40) -speed_travel_layer_0 = =math.ceil(speed_print * 80 / 40) -speed_support_interface = =math.ceil(speed_print * 25 / 40) -speed_slowdown_layers = 1 - -retraction_combing = noskin -travel_avoid_distance = 1.2 -retraction_combing_max_distance = 10 - -support_interface_enable = True -support_interface_pattern = zigzag - -cool_fan_enabled = False -cool_fan_speed_min = =cool_fan_speed * 0.25 -cool_fan_speed_max = =cool_fan_speed * 0.35 -cool_fan_full_at_height = =layer_height_0 + 5 * layer_height -cool_min_layer_time = 1 -cool_min_layer_time_fan_speed_max = 10 -cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pla_fine_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pla_fine_quality.inst.cfg deleted file mode 100644 index 92e881587b..0000000000 --- a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pla_fine_quality.inst.cfg +++ /dev/null @@ -1,52 +0,0 @@ -[general] - -version = 4 -name = Fine Quality -definition = dagoma_pro_430_bowden - -[metadata] - -setting_version = 20 -type = quality -quality_type = fine -weight = 0 -material = generic_pla_175 -variant = 0.4 - -[values] - -wall_thickness = =line_width * 2 -z_seam_type = sharpest_corner -z_seam_corner = z_seam_corner_weighted -skin_outline_count = 0 - -infill_sparse_density = 15 -infill_before_walls = False - -material_print_temperature = =default_material_print_temperature - -speed_print = 60.0 -speed_infill = =speed_print -speed_wall = =math.ceil(speed_print * 40 / 60) -speed_wall_0 = =math.ceil(speed_print * 30 / 60) -speed_wall_x = =speed_wall -speed_topbottom = =speed_wall_0 -speed_travel = =math.ceil(speed_print * 100 / 60) -speed_layer_0 = =math.ceil(speed_print * 15 / 60) -speed_travel_layer_0 = =math.ceil(speed_print * 75 / 60) -speed_support_interface = =math.ceil(speed_print * 50 / 60) -speed_slowdown_layers = 1 - -retraction_combing = noskin -travel_avoid_distance = 1.2 -retraction_combing_max_distance = 10 - -support_interface_enable = True -support_interface_pattern = zigzag - -cool_fan_speed_min = =cool_fan_speed * 0.8 -cool_fan_speed_max = =cool_fan_speed -cool_fan_full_at_height = =layer_height_0 + 7 * layer_height -cool_min_layer_time = 1 -cool_min_layer_time_fan_speed_max = 10 -cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pla_high_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pla_high_quality.inst.cfg deleted file mode 100644 index 73c26d20d1..0000000000 --- a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pla_high_quality.inst.cfg +++ /dev/null @@ -1,52 +0,0 @@ -[general] - -version = 4 -name = High Quality -definition = dagoma_pro_430_bowden - -[metadata] - -setting_version = 20 -type = quality -quality_type = high -weight = -1 -material = generic_pla_175 -variant = 0.4 - -[values] - -wall_thickness = =line_width * 2 -z_seam_type = sharpest_corner -z_seam_corner = z_seam_corner_weighted -skin_outline_count = 0 - -infill_sparse_density = 15 -infill_before_walls = False - -material_print_temperature = =default_material_print_temperature - -speed_print = 80.0 -speed_infill = =speed_print -speed_wall = =math.ceil(speed_print * 60 / 80) -speed_wall_0 = =math.ceil(speed_print * 50 / 80) -speed_wall_x = =speed_wall -speed_topbottom = =speed_wall_0 -speed_travel = =math.ceil(speed_print * 125 / 80) -speed_layer_0 = =math.ceil(speed_print * 25 / 80) -speed_travel_layer_0 = =math.ceil(speed_print * 100 / 80) -speed_support_interface = =math.ceil(speed_print * 50 / 80) -speed_slowdown_layers = 1 - -retraction_combing = noskin -travel_avoid_distance = 1.2 -retraction_combing_max_distance = 10 - -support_interface_enable = True -support_interface_pattern = zigzag - -cool_fan_speed_min = =cool_fan_speed * 0.8 -cool_fan_speed_max = =cool_fan_speed -cool_fan_full_at_height = =layer_height_0 + 5 * layer_height -cool_min_layer_time = 1 -cool_min_layer_time_fan_speed_max = 10 -cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pla_medium_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pla_medium_quality.inst.cfg deleted file mode 100644 index 8f266f52ad..0000000000 --- a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pla_medium_quality.inst.cfg +++ /dev/null @@ -1,52 +0,0 @@ -[general] - -version = 4 -name = Medium Quality -definition = dagoma_pro_430_bowden - -[metadata] - -setting_version = 20 -type = quality -quality_type = medium -weight = -2 -material = generic_pla_175 -variant = 0.4 - -[values] - -wall_thickness = =line_width * 2 -z_seam_type = sharpest_corner -z_seam_corner = z_seam_corner_weighted -skin_outline_count = 0 - -infill_sparse_density = 15 -infill_before_walls = False - -material_print_temperature = =default_material_print_temperature - -speed_print = 90.0 -speed_infill = =speed_print -speed_wall = =math.ceil(speed_print * 60 / 90) -speed_wall_0 = =math.ceil(speed_print * 50 / 90) -speed_wall_x = =speed_wall -speed_topbottom = =speed_wall_0 -speed_travel = =math.ceil(speed_print * 150 / 90) -speed_layer_0 = =math.ceil(speed_print * 25 / 90) -speed_travel_layer_0 = =math.ceil(speed_print * 125 / 90) -speed_support_interface = =math.ceil(speed_print * 50 / 90) -speed_slowdown_layers = 1 - -retraction_combing = noskin -travel_avoid_distance = 1.2 -retraction_combing_max_distance = 10 - -support_interface_enable = True -support_interface_pattern = zigzag - -cool_fan_speed_min = =cool_fan_speed * 0.8 -cool_fan_speed_max = =cool_fan_speed -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height -cool_min_layer_time = 1 -cool_min_layer_time_fan_speed_max = 10 -cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pp_high_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pp_high_quality.inst.cfg deleted file mode 100644 index 72f96a1fbd..0000000000 --- a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_pp_high_quality.inst.cfg +++ /dev/null @@ -1,54 +0,0 @@ -[general] - -version = 4 -name = High Quality -definition = dagoma_pro_430_bowden - -[metadata] - -setting_version = 20 -type = quality -quality_type = high -weight = -1 -material = dagoma_generic_pp -variant = 0.4 - -[values] - -wall_thickness = =line_width * 2 -z_seam_type = sharpest_corner -z_seam_corner = z_seam_corner_weighted -skin_outline_count = 0 - -infill_sparse_density = 15 -infill_before_walls = False - -material_print_temperature = =default_material_print_temperature -material_bed_temperature = =default_material_bed_temperature - -speed_print = 40.0 -speed_infill = =speed_print -speed_wall = =math.ceil(speed_print * 30 / 40) -speed_wall_0 = =math.ceil(speed_print * 25 / 40) -speed_wall_x = =speed_wall -speed_topbottom = =speed_wall_0 -speed_travel = =math.ceil(speed_print * 80 / 40) -speed_layer_0 = =math.ceil(speed_print * 25 / 40) -speed_travel_layer_0 = =math.ceil(speed_print * 80 / 40) -speed_support_interface = =math.ceil(speed_print * 25 / 40) -speed_slowdown_layers = 1 - -retraction_combing = noskin -travel_avoid_distance = 1.2 -retraction_combing_max_distance = 10 - -support_interface_enable = True -support_interface_pattern = zigzag - -cool_fan_enabled = True -cool_fan_speed_min = =cool_fan_speed * 0.25 -cool_fan_speed_max = =cool_fan_speed * 0.50 -cool_fan_full_at_height = =layer_height_0 + 5 * layer_height -cool_min_layer_time = 1 -cool_min_layer_time_fan_speed_max = 10 -cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_tpe_high_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_tpe_high_quality.inst.cfg deleted file mode 100644 index c886bda117..0000000000 --- a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_tpe_high_quality.inst.cfg +++ /dev/null @@ -1,53 +0,0 @@ -[general] - -version = 4 -name = High Quality -definition = dagoma_pro_430_bowden - -[metadata] - -setting_version = 20 -type = quality -quality_type = high -weight = -1 -material = dagoma_generic_tpe -variant = 0.4 - -[values] - -wall_thickness ==line_width * 2 -z_seam_type = sharpest_corner -z_seam_corner = z_seam_corner_weighted -skin_outline_count = 0 - -infill_sparse_density = 15 -infill_before_walls = False - -material_print_temperature = =default_material_print_temperature -material_bed_temperature = =default_material_bed_temperature - -speed_print = 30.0 -speed_infill = =speed_print -speed_wall = =math.ceil(speed_print * 30 / 30) -speed_wall_0 = =math.ceil(speed_print * 20 / 30) -speed_wall_x = =speed_wall -speed_topbottom = =speed_wall_0 -speed_travel = =math.ceil(speed_print * 100 / 30) -speed_layer_0 = =math.ceil(speed_print * 15 / 30) -speed_travel_layer_0 = =math.ceil(speed_print * 75 / 30) -speed_support_interface = =math.ceil(speed_print * 30 / 30) -speed_slowdown_layers = 1 - -retraction_combing = noskin -travel_avoid_distance = 1.2 -retraction_combing_max_distance = 10 - -support_interface_enable = True -support_interface_pattern = zigzag - -cool_fan_speed_min = =cool_fan_speed * 0.8 -cool_fan_speed_max = =cool_fan_speed -cool_fan_full_at_height = =layer_height_0 + 5 * layer_height -cool_min_layer_time = 1 -cool_min_layer_time_fan_speed_max = 10 -cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_tpu_high_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_tpu_high_quality.inst.cfg deleted file mode 100755 index 758f866826..0000000000 --- a/resources/quality/dagoma_pro_430_bowden/Steel nozzle 0.4/dagoma_pro_430_bowden_0.4_tpu_high_quality.inst.cfg +++ /dev/null @@ -1,53 +0,0 @@ -[general] - -version = 4 -name = High Quality -definition = dagoma_pro_430_bowden - -[metadata] - -setting_version = 20 -type = quality -quality_type = high -weight = -1 -material = generic_tpu_175 -variant = 0.4 - -[values] - -wall_thickness = =line_width * 2 -z_seam_type = sharpest_corner -z_seam_corner = z_seam_corner_weighted -skin_outline_count = 0 - -infill_sparse_density = 15 -infill_before_walls = False - -material_print_temperature = =default_material_print_temperature -material_bed_temperature = =default_material_bed_temperature - -speed_print = 30.0 -speed_infill = =speed_print -speed_wall = =math.ceil(speed_print * 30 / 30) -speed_wall_0 = =math.ceil(speed_print * 20 / 30) -speed_wall_x = =speed_wall -speed_topbottom = =speed_wall_0 -speed_travel = =math.ceil(speed_print * 100 / 30) -speed_layer_0 = =math.ceil(speed_print * 15 / 30) -speed_travel_layer_0 = =math.ceil(speed_print * 75 / 30) -speed_support_interface = =math.ceil(speed_print * 30 / 30) -speed_slowdown_layers = 1 - -retraction_combing = noskin -travel_avoid_distance = 1.2 -retraction_combing_max_distance = 10 - -support_interface_enable = True -support_interface_pattern = zigzag - -cool_fan_speed_min = =cool_fan_speed * 0.8 -cool_fan_speed_max = =cool_fan_speed -cool_fan_full_at_height = =layer_height_0 + 5 * layer_height -cool_min_layer_time = 1 -cool_min_layer_time_fan_speed_max = 10 -cool_min_speed = 20.0 \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_coarse_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_coarse_quality.inst.cfg deleted file mode 100644 index c9d36a5f7b..0000000000 --- a/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_coarse_quality.inst.cfg +++ /dev/null @@ -1,20 +0,0 @@ -[general] - -version = 4 -name = Coarse Quality -definition = dagoma_pro_430_bowden - -[metadata] - -setting_version = 20 -type = quality -quality_type = coarse -weight = -4 -global_quality = True - -[values] - -layer_height = 0.6 -layer_height_0 = =round(0.38 * machine_nozzle_size, 2) - -top_bottom_thickness = =2 * layer_height \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_extra_fine_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_extra_fine_quality.inst.cfg deleted file mode 100644 index baeb89285d..0000000000 --- a/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_extra_fine_quality.inst.cfg +++ /dev/null @@ -1,20 +0,0 @@ -[general] - -version = 4 -name = Extra Fine Quality -definition = dagoma_pro_430_bowden - -[metadata] - -setting_version = 20 -type = quality -quality_type = extra_fine -weight = 1 -global_quality = True - -[values] - -layer_height = 0.05 -layer_height_0 = =round(0.55 * machine_nozzle_size, 2) - -top_bottom_thickness = =16 * layer_height \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_fine_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_fine_quality.inst.cfg deleted file mode 100644 index afd3006b75..0000000000 --- a/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_fine_quality.inst.cfg +++ /dev/null @@ -1,20 +0,0 @@ -[general] - -version = 4 -name = Fine Quality -definition = dagoma_pro_430_bowden - -[metadata] - -setting_version = 20 -type = quality -quality_type = fine -weight = 0 -global_quality = True - -[values] - -layer_height = 0.1 -layer_height_0 = =round(0.38 * machine_nozzle_size, 2) - -top_bottom_thickness = =8 * layer_height \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_high_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_high_quality.inst.cfg deleted file mode 100644 index 8341709424..0000000000 --- a/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_high_quality.inst.cfg +++ /dev/null @@ -1,20 +0,0 @@ -[general] - -version = 4 -name = High Quality -definition = dagoma_pro_430_bowden - -[metadata] - -setting_version = 20 -type = quality -quality_type = high -weight = -1 -global_quality = True - -[values] - -layer_height = 0.2 -layer_height_0 = =round(0.38 * machine_nozzle_size, 2) - -top_bottom_thickness = =6 * layer_height \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_low_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_low_quality.inst.cfg deleted file mode 100644 index 35e5810608..0000000000 --- a/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_low_quality.inst.cfg +++ /dev/null @@ -1,20 +0,0 @@ -[general] - -version = 4 -name = Low Quality -definition = dagoma_pro_430_bowden - -[metadata] - -setting_version = 20 -type = quality -quality_type = low -weight = -3 -global_quality = True - -[values] - -layer_height = 0.4 -layer_height_0 = =round(0.38 * machine_nozzle_size, 2) - -top_bottom_thickness = =3 * layer_height \ No newline at end of file diff --git a/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_medium_quality.inst.cfg b/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_medium_quality.inst.cfg deleted file mode 100644 index 8c97581ef3..0000000000 --- a/resources/quality/dagoma_pro_430_bowden/dagoma_pro_430_bowden_global_medium_quality.inst.cfg +++ /dev/null @@ -1,20 +0,0 @@ -[general] - -version = 4 -name = Medium Quality -definition = dagoma_pro_430_bowden - -[metadata] - -setting_version = 20 -type = quality -quality_type = medium -weight = -2 -global_quality = True - -[values] - -layer_height = 0.3 -layer_height_0 = =round(0.38 * machine_nozzle_size, 2) - -top_bottom_thickness = =4 * layer_height \ No newline at end of file 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 b72db5fb54..11aa6f6507 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = A definition = deltacomb_base +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D005 material = generic_abs +quality_type = D005 +setting_version = 22 +type = quality variant = DBE 0.25mm [values] @@ -19,4 +19,5 @@ cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 material_print_temperature = 240 -speed_print = 80 \ No newline at end of file +speed_print = 80 + 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 f855bb49f0..2f83de4ed0 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = B definition = deltacomb_base +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D010 material = generic_abs +quality_type = D010 +setting_version = 22 +type = quality variant = DBE 0.25mm [values] @@ -19,4 +19,5 @@ cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 material_print_temperature = 240 -speed_print = 55 \ No newline at end of file +speed_print = 55 + 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 bb3a646e86..8317881430 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = C definition = deltacomb_base +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D015 material = generic_abs +quality_type = D015 +setting_version = 22 +type = quality variant = DBE 0.25mm [values] @@ -20,3 +20,4 @@ material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 material_print_temperature = 240 speed_print = 32 + 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 ce74dc9933..31a1896b58 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = A definition = deltacomb_base +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D005 material = generic_abs +quality_type = D005 +setting_version = 22 +type = quality variant = DBE 0.40mm [values] @@ -18,4 +18,5 @@ cool_fan_speed_max = 50 cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 -material_print_temperature = 240 \ No newline at end of file +material_print_temperature = 240 + 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 c50ecc0a7d..5377ed0e30 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = B definition = deltacomb_base +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D010 material = generic_abs +quality_type = D010 +setting_version = 22 +type = quality variant = DBE 0.40mm [values] @@ -18,4 +18,5 @@ cool_fan_speed_max = 50 cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 -material_print_temperature = 240 \ No newline at end of file +material_print_temperature = 240 + 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 7ab1e2382e..acc20d4811 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = C definition = deltacomb_base +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D015 material = generic_abs +quality_type = D015 +setting_version = 22 +type = quality variant = DBE 0.40mm [values] @@ -18,4 +18,5 @@ cool_fan_speed_max = 50 cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 -material_print_temperature = 240 \ No newline at end of file +material_print_temperature = 240 + 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 6c124959c1..a9eb22c049 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_abs +quality_type = D020 +setting_version = 22 +type = quality variant = DBE 0.40mm [values] @@ -19,3 +19,4 @@ cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 material_print_temperature = 240 + 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 e096a43c94..c3eb63c1cd 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = E definition = deltacomb_base +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D030 material = generic_abs +quality_type = D030 +setting_version = 22 +type = quality variant = DBE 0.40mm [values] @@ -18,4 +18,5 @@ cool_fan_speed_max = 50 cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 -material_print_temperature = 240 \ No newline at end of file +material_print_temperature = 240 + 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 e351592e80..1e1104c7d5 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = C definition = deltacomb_base +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D015 material = generic_abs +quality_type = D015 +setting_version = 22 +type = quality variant = DBE 0.60mm [values] @@ -18,4 +18,5 @@ cool_fan_speed_max = 50 cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 -material_print_temperature = 240 \ No newline at end of file +material_print_temperature = 240 + 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 0982ee6a9f..af25db2d41 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_abs +quality_type = D020 +setting_version = 22 +type = quality variant = DBE 0.60mm [values] @@ -19,3 +19,4 @@ cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 material_print_temperature = 240 + 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 1cd0249840..e7af80eea9 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = E definition = deltacomb_base +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D030 material = generic_abs +quality_type = D030 +setting_version = 22 +type = quality variant = DBE 0.60mm [values] @@ -19,4 +19,5 @@ cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 material_print_temperature = 240 -speed_print = 65 \ No newline at end of file +speed_print = 65 + 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 0bf2f96b5b..d75f2de82f 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = F definition = deltacomb_base +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D045 material = generic_abs +quality_type = D045 +setting_version = 22 +type = quality variant = DBE 0.60mm [values] @@ -20,3 +20,4 @@ material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 material_print_temperature = 240 speed_print = 45 + 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 51bbf3b90e..18c60ed91f 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = A definition = deltacomb_base +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D005 material = generic_abs +quality_type = D005 +setting_version = 22 +type = quality variant = FBE 0.25mm [values] @@ -19,4 +19,5 @@ cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 material_print_temperature = 240 -speed_print = 80 \ No newline at end of file +speed_print = 80 + 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 2cb21c5f7b..2d98391804 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = B definition = deltacomb_base +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D010 material = generic_abs +quality_type = D010 +setting_version = 22 +type = quality variant = FBE 0.25mm [values] @@ -19,4 +19,5 @@ cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 material_print_temperature = 240 -speed_print = 55 \ No newline at end of file +speed_print = 55 + 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 7787c83ace..8565f8b755 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = C definition = deltacomb_base +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D015 material = generic_abs +quality_type = D015 +setting_version = 22 +type = quality variant = FBE 0.25mm [values] @@ -19,4 +19,5 @@ cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 material_print_temperature = 240 -speed_print = 32 \ No newline at end of file +speed_print = 32 + 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 1f01a7a6e4..9f0b4b686a 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = A definition = deltacomb_base +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D005 material = generic_abs +quality_type = D005 +setting_version = 22 +type = quality variant = FBE 0.40mm [values] @@ -18,4 +18,5 @@ cool_fan_speed_max = 50 cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 -material_print_temperature = 240 \ No newline at end of file +material_print_temperature = 240 + 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 0cad1ad669..a00fb62edf 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = B definition = deltacomb_base +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D010 material = generic_abs +quality_type = D010 +setting_version = 22 +type = quality variant = FBE 0.40mm [values] @@ -18,4 +18,5 @@ cool_fan_speed_max = 50 cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 -material_print_temperature = 240 \ No newline at end of file +material_print_temperature = 240 + 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 42de9f32b7..de41c51506 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = C definition = deltacomb_base +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D015 material = generic_abs +quality_type = D015 +setting_version = 22 +type = quality variant = FBE 0.40mm [values] @@ -18,4 +18,5 @@ cool_fan_speed_max = 50 cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 -material_print_temperature = 240 \ No newline at end of file +material_print_temperature = 240 + 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 92c036da40..f44d704144 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_abs +quality_type = D020 +setting_version = 22 +type = quality variant = FBE 0.40mm [values] @@ -18,4 +18,5 @@ cool_fan_speed_max = 50 cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 -material_print_temperature = 240 \ No newline at end of file +material_print_temperature = 240 + 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 9de502fdf8..47bec0fb2b 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = E definition = deltacomb_base +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D030 material = generic_abs +quality_type = D030 +setting_version = 22 +type = quality variant = FBE 0.40mm [values] @@ -18,4 +18,5 @@ cool_fan_speed_max = 50 cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 -material_print_temperature = 240 \ No newline at end of file +material_print_temperature = 240 + 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 9e039fe737..52f4cb6d18 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = C definition = deltacomb_base +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D015 material = generic_abs +quality_type = D015 +setting_version = 22 +type = quality variant = FBE 0.60mm [values] @@ -18,4 +18,5 @@ cool_fan_speed_max = 50 cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 -material_print_temperature = 240 \ No newline at end of file +material_print_temperature = 240 + 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 9737af079c..21d53035f9 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_abs +quality_type = D020 +setting_version = 22 +type = quality variant = FBE 0.60mm [values] @@ -18,4 +18,5 @@ cool_fan_speed_max = 50 cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 -material_print_temperature = 240 \ No newline at end of file +material_print_temperature = 240 + 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 8af0d9acb4..916fe406c7 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = E definition = deltacomb_base +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D030 material = generic_abs +quality_type = D030 +setting_version = 22 +type = quality variant = FBE 0.60mm [values] @@ -19,4 +19,5 @@ cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 material_print_temperature = 240 -speed_print = 65 \ No newline at end of file +speed_print = 65 + 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 a337923914..2ba586ef71 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = F definition = deltacomb_base +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D045 material = generic_abs +quality_type = D045 +setting_version = 22 +type = quality variant = FBE 0.60mm [values] @@ -20,3 +20,4 @@ material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 material_print_temperature = 240 speed_print = 45 + 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 c87dd44354..dc5351515b 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_abs +quality_type = D020 +setting_version = 22 +type = quality variant = V-DBE 0.80mm [values] @@ -20,3 +20,4 @@ material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 material_print_temperature = 240 speed_print = 150 + 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 33e4b9fdf1..2d0a92bdce 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = E definition = deltacomb_base +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D030 material = generic_abs +quality_type = D030 +setting_version = 22 +type = quality variant = V-DBE 0.80mm [values] @@ -19,4 +19,5 @@ cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 material_print_temperature = 240 -speed_print = 110 \ No newline at end of file +speed_print = 110 + 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 7c5407be50..fc327140a8 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = F definition = deltacomb_base +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D045 material = generic_abs +quality_type = D045 +setting_version = 22 +type = quality variant = V-DBE 0.80mm [values] @@ -20,3 +20,4 @@ material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 material_print_temperature = 240 speed_print = 75 + 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 cad559387a..f3bc78f2ca 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = G definition = deltacomb_base +name = G +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D060 material = generic_abs +quality_type = D060 +setting_version = 22 +type = quality variant = V-DBE 0.80mm [values] @@ -20,3 +20,4 @@ material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 material_print_temperature = 240 speed_print = 55 + 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 51acbda719..c53bb930fb 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_abs +quality_type = D020 +setting_version = 22 +type = quality variant = V-FBE 0.80mm [values] @@ -19,4 +19,5 @@ cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 material_print_temperature = 240 -speed_print = 150 \ No newline at end of file +speed_print = 150 + 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 4e14b166c5..7753924c31 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = E definition = deltacomb_base +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D030 material = generic_abs +quality_type = D030 +setting_version = 22 +type = quality variant = V-FBE 0.80mm [values] @@ -19,4 +19,5 @@ cool_fan_speed_min = 0 material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 material_print_temperature = 240 -speed_print = 110 \ No newline at end of file +speed_print = 110 + 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 7f140aeca6..78ff239fed 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = F definition = deltacomb_base +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D045 material = generic_abs +quality_type = D045 +setting_version = 22 +type = quality variant = V-FBE 0.80mm [values] @@ -20,3 +20,4 @@ material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 material_print_temperature = 240 speed_print = 75 + 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 b2b97ba49d..124a0663c9 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = G definition = deltacomb_base +name = G +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D060 material = generic_abs +quality_type = D060 +setting_version = 22 +type = quality variant = V-FBE 0.80mm [values] @@ -20,3 +20,4 @@ material_bed_temperature = 100 material_bed_temperature_layer_0 = 80 material_print_temperature = 240 speed_print = 55 + 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 a034c1ad4c..c17e03cca7 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 @@ -1,36 +1,37 @@ [general] -version = 4 -name = A definition = deltacomb_base +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D005 material = generic_petg +quality_type = D005 +setting_version = 22 +type = quality variant = DBE 0.40mm [values] -material_print_temperature = 225 -layer_height_0 = 0.2 +coasting_enable = True +coasting_min_volume = 3 +coasting_speed = 70 +coasting_volume = 0.256 cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 cool_fan_speed_min = 60 -speed_print = 50 -speed_infill = =speed_print -speed_wall_0 = =speed_print * 0.5 -speed_roofing = =speed_print * 0.5 +infill_enable_travel_optimization = True +initial_layer_line_width_factor = 120 +layer_height_0 = 0.2 material_bed_temperature = 60 material_bed_temperature_layer_0 = 45 material_flow = 95 -infill_enable_travel_optimization = True -initial_layer_line_width_factor = 120 +material_print_temperature = 225 retraction_amount = 5 -coasting_enable = True -coasting_volume = 0.256 -coasting_min_volume = 3 -coasting_speed = 70 -travel_avoid_other_parts = False retraction_combing_max_distance = 5 -support_z_distance = =layer_height * 2 \ No newline at end of file +speed_infill = =speed_print +speed_print = 50 +speed_roofing = =speed_print * 0.5 +speed_wall_0 = =speed_print * 0.5 +support_z_distance = =layer_height * 2 +travel_avoid_other_parts = False + 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 a507464dac..351fe10bac 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 @@ -1,36 +1,37 @@ [general] -version = 4 -name = B definition = deltacomb_base +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D010 material = generic_petg +quality_type = D010 +setting_version = 22 +type = quality variant = DBE 0.40mm [values] -material_print_temperature = 225 -layer_height_0 = 0.2 +coasting_enable = True +coasting_min_volume = 3 +coasting_speed = 70 +coasting_volume = 0.256 cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 cool_fan_speed_min = 60 -speed_print = 50 -speed_infill = =speed_print -speed_wall_0 = =speed_print * 0.5 -speed_roofing = =speed_print * 0.5 +infill_enable_travel_optimization = True +initial_layer_line_width_factor = 120 +layer_height_0 = 0.2 material_bed_temperature = 60 material_bed_temperature_layer_0 = 45 material_flow = 95 -infill_enable_travel_optimization = True -initial_layer_line_width_factor = 120 +material_print_temperature = 225 retraction_amount = 5 -coasting_enable = True -coasting_volume = 0.256 -coasting_min_volume = 3 -coasting_speed = 70 -travel_avoid_other_parts = False retraction_combing_max_distance = 5 +speed_infill = =speed_print +speed_print = 50 +speed_roofing = =speed_print * 0.5 +speed_wall_0 = =speed_print * 0.5 support_z_distance = =layer_height * 2 +travel_avoid_other_parts = False + 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 0349671c2b..7142884b51 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 @@ -1,36 +1,37 @@ [general] -version = 4 -name = C definition = deltacomb_base +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D015 material = generic_petg +quality_type = D015 +setting_version = 22 +type = quality variant = DBE 0.40mm [values] -material_print_temperature = 225 -layer_height_0 = 0.2 +coasting_enable = True +coasting_min_volume = 3 +coasting_speed = 70 +coasting_volume = 0.256 cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 cool_fan_speed_min = 60 -speed_print = 50 -speed_infill = =speed_print -speed_wall_0 = =speed_print * 0.5 -speed_roofing = =speed_print * 0.5 +infill_enable_travel_optimization = True +initial_layer_line_width_factor = 120 +layer_height_0 = 0.2 material_bed_temperature = 60 material_bed_temperature_layer_0 = 45 material_flow = 95 -infill_enable_travel_optimization = True -initial_layer_line_width_factor = 120 +material_print_temperature = 225 retraction_amount = 5 -coasting_enable = True -coasting_volume = 0.256 -coasting_min_volume = 3 -coasting_speed = 70 -travel_avoid_other_parts = False retraction_combing_max_distance = 5 -support_z_distance = =layer_height * 2 \ No newline at end of file +speed_infill = =speed_print +speed_print = 50 +speed_roofing = =speed_print * 0.5 +speed_wall_0 = =speed_print * 0.5 +support_z_distance = =layer_height * 2 +travel_avoid_other_parts = False + 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 2b64b5ff93..42b997af7a 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 @@ -1,34 +1,35 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_petg +quality_type = D020 +setting_version = 22 +type = quality variant = DBE 0.40mm [values] -material_print_temperature = 225 +coasting_enable = True +coasting_min_volume = 3 +coasting_speed = 70 +coasting_volume = 0.256 cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 cool_fan_speed_min = 60 -speed_print = 50 -speed_infill = =speed_print -speed_wall_0 = =speed_print * 0.5 -speed_roofing = =speed_print * 0.5 +infill_enable_travel_optimization = True +initial_layer_line_width_factor = 120 material_bed_temperature = 60 material_bed_temperature_layer_0 = 45 material_flow = 95 -infill_enable_travel_optimization = True -initial_layer_line_width_factor = 120 +material_print_temperature = 225 retraction_amount = 5 -coasting_enable = True -coasting_volume = 0.256 -coasting_min_volume = 3 -coasting_speed = 70 +retraction_combing_max_distance = 5 +speed_infill = =speed_print +speed_print = 50 +speed_roofing = =speed_print * 0.5 +speed_wall_0 = =speed_print * 0.5 travel_avoid_other_parts = False -retraction_combing_max_distance = 5 \ No newline at end of file + 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 2f07700a4f..60faed8b77 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 @@ -1,34 +1,35 @@ [general] -version = 4 -name = E definition = deltacomb_base +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D030 material = generic_petg +quality_type = D030 +setting_version = 22 +type = quality variant = DBE 0.40mm [values] -material_print_temperature = 225 +coasting_enable = True +coasting_min_volume = 3 +coasting_speed = 70 +coasting_volume = 0.256 cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 cool_fan_speed_min = 60 -speed_print = 50 -speed_infill = =speed_print -speed_wall_0 = =speed_print * 0.5 -speed_roofing = =speed_print * 0.5 +infill_enable_travel_optimization = True +initial_layer_line_width_factor = 120 material_bed_temperature = 60 material_bed_temperature_layer_0 = 45 material_flow = 95 -infill_enable_travel_optimization = True -initial_layer_line_width_factor = 120 +material_print_temperature = 225 retraction_amount = 5 -coasting_enable = True -coasting_volume = 0.256 -coasting_min_volume = 3 -coasting_speed = 70 +retraction_combing_max_distance = 5 +speed_infill = =speed_print +speed_print = 50 +speed_roofing = =speed_print * 0.5 +speed_wall_0 = =speed_print * 0.5 travel_avoid_other_parts = False -retraction_combing_max_distance = 5 \ No newline at end of file + 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 5b7e3edc50..c0fe8ef102 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 @@ -1,35 +1,36 @@ [general] -version = 4 -name = C definition = deltacomb_base +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D015 material = generic_petg +quality_type = D015 +setting_version = 22 +type = quality variant = DBE 0.60mm [values] -material_print_temperature = 225 +coasting_enable = True +coasting_min_volume = 3 +coasting_speed = 70 +coasting_volume = 0.256 cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 cool_fan_speed_min = 60 -speed_print = 50 -speed_infill = =speed_print -speed_wall_0 = =speed_print * 0.5 -speed_roofing = =speed_print * 0.5 +infill_enable_travel_optimization = True +initial_layer_line_width_factor = 120 material_bed_temperature = 60 material_bed_temperature_layer_0 = 45 material_flow = 95 -infill_enable_travel_optimization = True -initial_layer_line_width_factor = 120 +material_print_temperature = 225 retraction_amount = 5 -coasting_enable = True -coasting_volume = 0.256 -coasting_min_volume = 3 -coasting_speed = 70 -travel_avoid_other_parts = False retraction_combing_max_distance = 5 -support_z_distance = =layer_height * 2 \ No newline at end of file +speed_infill = =speed_print +speed_print = 50 +speed_roofing = =speed_print * 0.5 +speed_wall_0 = =speed_print * 0.5 +support_z_distance = =layer_height * 2 +travel_avoid_other_parts = False + 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 ab6da9ba12..93b85e78f8 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 @@ -1,34 +1,35 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_petg +quality_type = D020 +setting_version = 22 +type = quality variant = DBE 0.60mm [values] -material_print_temperature = 225 +coasting_enable = True +coasting_min_volume = 3 +coasting_speed = 70 +coasting_volume = 0.256 cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 cool_fan_speed_min = 60 -speed_print = 50 -speed_infill = =speed_print -speed_wall_0 = =speed_print * 0.5 -speed_roofing = =speed_print * 0.5 +infill_enable_travel_optimization = True +initial_layer_line_width_factor = 120 material_bed_temperature = 60 material_bed_temperature_layer_0 = 45 material_flow = 95 -infill_enable_travel_optimization = True -initial_layer_line_width_factor = 120 +material_print_temperature = 225 retraction_amount = 5 -coasting_enable = True -coasting_volume = 0.256 -coasting_min_volume = 3 -coasting_speed = 70 +retraction_combing_max_distance = 5 +speed_infill = =speed_print +speed_print = 50 +speed_roofing = =speed_print * 0.5 +speed_wall_0 = =speed_print * 0.5 travel_avoid_other_parts = False -retraction_combing_max_distance = 5 \ No newline at end of file + 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 e014a8d75d..1d930aae1f 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 @@ -1,34 +1,35 @@ [general] -version = 4 -name = E definition = deltacomb_base +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D030 material = generic_petg +quality_type = D030 +setting_version = 22 +type = quality variant = DBE 0.60mm [values] -material_print_temperature = 225 +coasting_enable = True +coasting_min_volume = 3 +coasting_speed = 70 +coasting_volume = 0.256 cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 cool_fan_speed_min = 60 -speed_print = 40 -speed_infill = =speed_print -speed_wall_0 = =speed_print * 0.7 -speed_roofing = =speed_print * 0.7 +infill_enable_travel_optimization = True +initial_layer_line_width_factor = 120 material_bed_temperature = 60 material_bed_temperature_layer_0 = 45 material_flow = 95 -infill_enable_travel_optimization = True -initial_layer_line_width_factor = 120 +material_print_temperature = 225 retraction_amount = 5 -coasting_enable = True -coasting_volume = 0.256 -coasting_min_volume = 3 -coasting_speed = 70 +retraction_combing_max_distance = 5 +speed_infill = =speed_print +speed_print = 40 +speed_roofing = =speed_print * 0.7 +speed_wall_0 = =speed_print * 0.7 travel_avoid_other_parts = False -retraction_combing_max_distance = 5 \ No newline at end of file + 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 0a7131b2f9..c5b90b0687 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 @@ -1,34 +1,35 @@ [general] -version = 4 -name = F definition = deltacomb_base +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D045 material = generic_petg +quality_type = D045 +setting_version = 22 +type = quality variant = DBE 0.60mm [values] -material_print_temperature = 225 +coasting_enable = True +coasting_min_volume = 3 +coasting_speed = 70 +coasting_volume = 0.256 cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 cool_fan_speed_min = 60 -speed_print = 26 -speed_infill = =speed_print -speed_wall_0 = =speed_print -speed_roofing = =speed_print +infill_enable_travel_optimization = True +initial_layer_line_width_factor = 120 material_bed_temperature = 60 material_bed_temperature_layer_0 = 45 material_flow = 95 -infill_enable_travel_optimization = True -initial_layer_line_width_factor = 120 +material_print_temperature = 225 retraction_amount = 5 -coasting_enable = True -coasting_volume = 0.256 -coasting_min_volume = 3 -coasting_speed = 70 +retraction_combing_max_distance = 5 +speed_infill = =speed_print +speed_print = 26 +speed_roofing = =speed_print +speed_wall_0 = =speed_print travel_avoid_other_parts = False -retraction_combing_max_distance = 5 \ No newline at end of file + 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 9fde1c8c98..98f2580400 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 @@ -1,36 +1,37 @@ [general] -version = 4 -name = A definition = deltacomb_base +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D005 material = generic_petg +quality_type = D005 +setting_version = 22 +type = quality variant = FBE 0.40mm [values] -material_print_temperature = 225 -layer_height_0 = 0.2 +coasting_enable = True +coasting_min_volume = 3 +coasting_speed = 70 +coasting_volume = 0.256 cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 cool_fan_speed_min = 60 -speed_print = 50 -speed_infill = =speed_print -speed_wall_0 = =speed_print * 0.5 -speed_roofing = =speed_print * 0.5 +infill_enable_travel_optimization = True +initial_layer_line_width_factor = 120 +layer_height_0 = 0.2 material_bed_temperature = 60 material_bed_temperature_layer_0 = 45 material_flow = 95 -infill_enable_travel_optimization = True -initial_layer_line_width_factor = 120 +material_print_temperature = 225 retraction_amount = 5 -coasting_enable = True -coasting_volume = 0.256 -coasting_min_volume = 3 -coasting_speed = 70 -travel_avoid_other_parts = False retraction_combing_max_distance = 5 -support_z_distance = =layer_height * 2 \ No newline at end of file +speed_infill = =speed_print +speed_print = 50 +speed_roofing = =speed_print * 0.5 +speed_wall_0 = =speed_print * 0.5 +support_z_distance = =layer_height * 2 +travel_avoid_other_parts = False + 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 baa42d8c1f..fbfcb4447f 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 @@ -1,36 +1,37 @@ [general] -version = 4 -name = B definition = deltacomb_base +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D010 material = generic_petg +quality_type = D010 +setting_version = 22 +type = quality variant = FBE 0.40mm [values] -material_print_temperature = 225 -layer_height_0 = 0.2 +coasting_enable = True +coasting_min_volume = 3 +coasting_speed = 70 +coasting_volume = 0.256 cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 cool_fan_speed_min = 60 -speed_print = 50 -speed_infill = =speed_print -speed_wall_0 = =speed_print * 0.5 -speed_roofing = =speed_print * 0.5 +infill_enable_travel_optimization = True +initial_layer_line_width_factor = 120 +layer_height_0 = 0.2 material_bed_temperature = 60 material_bed_temperature_layer_0 = 45 material_flow = 95 -infill_enable_travel_optimization = True -initial_layer_line_width_factor = 120 +material_print_temperature = 225 retraction_amount = 5 -coasting_enable = True -coasting_volume = 0.256 -coasting_min_volume = 3 -coasting_speed = 70 -travel_avoid_other_parts = False retraction_combing_max_distance = 5 -support_z_distance = =layer_height * 2 \ No newline at end of file +speed_infill = =speed_print +speed_print = 50 +speed_roofing = =speed_print * 0.5 +speed_wall_0 = =speed_print * 0.5 +support_z_distance = =layer_height * 2 +travel_avoid_other_parts = False + 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 5f63182ebc..5f8c6766b4 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 @@ -1,36 +1,37 @@ [general] -version = 4 -name = C definition = deltacomb_base +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D015 material = generic_petg +quality_type = D015 +setting_version = 22 +type = quality variant = FBE 0.40mm [values] -material_print_temperature = 225 -layer_height_0 = 0.2 +coasting_enable = True +coasting_min_volume = 3 +coasting_speed = 70 +coasting_volume = 0.256 cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 cool_fan_speed_min = 60 -speed_print = 50 -speed_infill = =speed_print -speed_wall_0 = =speed_print * 0.5 -speed_roofing = =speed_print * 0.5 +infill_enable_travel_optimization = True +initial_layer_line_width_factor = 120 +layer_height_0 = 0.2 material_bed_temperature = 60 material_bed_temperature_layer_0 = 45 material_flow = 95 -infill_enable_travel_optimization = True -initial_layer_line_width_factor = 120 +material_print_temperature = 225 retraction_amount = 5 -coasting_enable = True -coasting_volume = 0.256 -coasting_min_volume = 3 -coasting_speed = 70 -travel_avoid_other_parts = False retraction_combing_max_distance = 5 -support_z_distance = =layer_height * 2 \ No newline at end of file +speed_infill = =speed_print +speed_print = 50 +speed_roofing = =speed_print * 0.5 +speed_wall_0 = =speed_print * 0.5 +support_z_distance = =layer_height * 2 +travel_avoid_other_parts = False + 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 676e214994..4e409923b8 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 @@ -1,34 +1,35 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_petg +quality_type = D020 +setting_version = 22 +type = quality variant = FBE 0.40mm [values] -material_print_temperature = 225 +coasting_enable = True +coasting_min_volume = 3 +coasting_speed = 70 +coasting_volume = 0.256 cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 cool_fan_speed_min = 60 -speed_print = 50 -speed_infill = =speed_print -speed_wall_0 = =speed_print * 0.5 -speed_roofing = =speed_print * 0.5 +infill_enable_travel_optimization = True +initial_layer_line_width_factor = 120 material_bed_temperature = 60 material_bed_temperature_layer_0 = 45 material_flow = 95 -infill_enable_travel_optimization = True -initial_layer_line_width_factor = 120 +material_print_temperature = 225 retraction_amount = 5 -coasting_enable = True -coasting_volume = 0.256 -coasting_min_volume = 3 -coasting_speed = 70 +retraction_combing_max_distance = 5 +speed_infill = =speed_print +speed_print = 50 +speed_roofing = =speed_print * 0.5 +speed_wall_0 = =speed_print * 0.5 travel_avoid_other_parts = False -retraction_combing_max_distance = 5 \ No newline at end of file + 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 384dbd09d0..4c66839fbc 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 @@ -1,34 +1,35 @@ [general] -version = 4 -name = E definition = deltacomb_base +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D030 material = generic_petg +quality_type = D030 +setting_version = 22 +type = quality variant = FBE 0.40mm [values] -material_print_temperature = 225 +coasting_enable = True +coasting_min_volume = 3 +coasting_speed = 70 +coasting_volume = 0.256 cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 cool_fan_speed_min = 60 -speed_print = 50 -speed_infill = =speed_print -speed_wall_0 = =speed_print * 0.5 -speed_roofing = =speed_print * 0.5 +infill_enable_travel_optimization = True +initial_layer_line_width_factor = 120 material_bed_temperature = 60 material_bed_temperature_layer_0 = 45 material_flow = 95 -infill_enable_travel_optimization = True -initial_layer_line_width_factor = 120 +material_print_temperature = 225 retraction_amount = 5 -coasting_enable = True -coasting_volume = 0.256 -coasting_min_volume = 3 -coasting_speed = 70 +retraction_combing_max_distance = 5 +speed_infill = =speed_print +speed_print = 50 +speed_roofing = =speed_print * 0.5 +speed_wall_0 = =speed_print * 0.5 travel_avoid_other_parts = False -retraction_combing_max_distance = 5 \ No newline at end of file + 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 2587b9c581..8063002f95 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 @@ -1,35 +1,36 @@ [general] -version = 4 -name = C definition = deltacomb_base +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D015 material = generic_petg +quality_type = D015 +setting_version = 22 +type = quality variant = FBE 0.60mm [values] -material_print_temperature = 225 +coasting_enable = True +coasting_min_volume = 3 +coasting_speed = 70 +coasting_volume = 0.256 cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 cool_fan_speed_min = 60 -speed_print = 50 -speed_infill = =speed_print -speed_wall_0 = =speed_print * 0.5 -speed_roofing = =speed_print * 0.5 +infill_enable_travel_optimization = True +initial_layer_line_width_factor = 120 material_bed_temperature = 60 material_bed_temperature_layer_0 = 45 material_flow = 95 -infill_enable_travel_optimization = True -initial_layer_line_width_factor = 120 +material_print_temperature = 225 retraction_amount = 5 -coasting_enable = True -coasting_volume = 0.256 -coasting_min_volume = 3 -coasting_speed = 70 -travel_avoid_other_parts = False retraction_combing_max_distance = 5 -support_z_distance = =layer_height * 2 \ No newline at end of file +speed_infill = =speed_print +speed_print = 50 +speed_roofing = =speed_print * 0.5 +speed_wall_0 = =speed_print * 0.5 +support_z_distance = =layer_height * 2 +travel_avoid_other_parts = False + 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 7ef50cc8f4..d1759d62d3 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 @@ -1,34 +1,35 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_petg +quality_type = D020 +setting_version = 22 +type = quality variant = FBE 0.60mm [values] -material_print_temperature = 225 +coasting_enable = True +coasting_min_volume = 3 +coasting_speed = 70 +coasting_volume = 0.256 cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 cool_fan_speed_min = 60 -speed_print = 50 -speed_infill = =speed_print -speed_wall_0 = =speed_print * 0.5 -speed_roofing = =speed_print * 0.5 +infill_enable_travel_optimization = True +initial_layer_line_width_factor = 120 material_bed_temperature = 60 material_bed_temperature_layer_0 = 45 material_flow = 95 -infill_enable_travel_optimization = True -initial_layer_line_width_factor = 120 +material_print_temperature = 225 retraction_amount = 5 -coasting_enable = True -coasting_volume = 0.256 -coasting_min_volume = 3 -coasting_speed = 70 +retraction_combing_max_distance = 5 +speed_infill = =speed_print +speed_print = 50 +speed_roofing = =speed_print * 0.5 +speed_wall_0 = =speed_print * 0.5 travel_avoid_other_parts = False -retraction_combing_max_distance = 5 \ No newline at end of file + 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 6e75353113..8101fbe35f 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 @@ -1,34 +1,35 @@ [general] -version = 4 -name = E definition = deltacomb_base +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D030 material = generic_petg +quality_type = D030 +setting_version = 22 +type = quality variant = FBE 0.60mm [values] -material_print_temperature = 225 +coasting_enable = True +coasting_min_volume = 3 +coasting_speed = 70 +coasting_volume = 0.256 cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 cool_fan_speed_min = 60 -speed_print = 40 -speed_infill = =speed_print -speed_wall_0 = =speed_print * 0.7 -speed_roofing = =speed_print * 0.7 +infill_enable_travel_optimization = True +initial_layer_line_width_factor = 120 material_bed_temperature = 60 material_bed_temperature_layer_0 = 45 material_flow = 95 -infill_enable_travel_optimization = True -initial_layer_line_width_factor = 120 +material_print_temperature = 225 retraction_amount = 5 -coasting_enable = True -coasting_volume = 0.256 -coasting_min_volume = 3 -coasting_speed = 70 +retraction_combing_max_distance = 5 +speed_infill = =speed_print +speed_print = 40 +speed_roofing = =speed_print * 0.7 +speed_wall_0 = =speed_print * 0.7 travel_avoid_other_parts = False -retraction_combing_max_distance = 5 \ No newline at end of file + 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 c69063b5e3..56e1b5d313 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 @@ -1,34 +1,35 @@ [general] -version = 4 -name = F definition = deltacomb_base +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D045 material = generic_petg +quality_type = D045 +setting_version = 22 +type = quality variant = FBE 0.60mm [values] -material_print_temperature = 225 +coasting_enable = True +coasting_min_volume = 3 +coasting_speed = 70 +coasting_volume = 0.256 cool_fan_full_at_height = 1 cool_fan_speed = 60 cool_fan_speed_max = 100 cool_fan_speed_min = 60 -speed_print = 26 -speed_infill = =speed_print -speed_wall_0 = =speed_print -speed_roofing = =speed_print +infill_enable_travel_optimization = True +initial_layer_line_width_factor = 120 material_bed_temperature = 60 material_bed_temperature_layer_0 = 45 material_flow = 95 -infill_enable_travel_optimization = True -initial_layer_line_width_factor = 120 +material_print_temperature = 225 retraction_amount = 5 -coasting_enable = True -coasting_volume = 0.256 -coasting_min_volume = 3 -coasting_speed = 70 -travel_avoid_other_parts = False retraction_combing_max_distance = 5 +speed_infill = =speed_print +speed_print = 26 +speed_roofing = =speed_print +speed_wall_0 = =speed_print +travel_avoid_other_parts = False + 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 f511700035..b50557725d 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = A definition = deltacomb_base +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D005 material = generic_pla +quality_type = D005 +setting_version = 22 +type = quality variant = DBE 0.25mm [values] @@ -15,4 +15,5 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -material_bed_temperature = 45 \ No newline at end of file +material_bed_temperature = 45 + 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 a2405cf489..0e8054dd27 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = B definition = deltacomb_base +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D010 material = generic_pla +quality_type = D010 +setting_version = 22 +type = quality variant = DBE 0.25mm [values] @@ -15,5 +15,6 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 +material_bed_temperature = 45 speed_print = 55 -material_bed_temperature = 45 \ No newline at end of file + 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 dca690724f..bd45965d4b 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = C definition = deltacomb_base +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D015 material = generic_pla +quality_type = D015 +setting_version = 22 +type = quality variant = DBE 0.25mm [values] @@ -15,5 +15,6 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 +material_bed_temperature = 45 speed_print = 32 -material_bed_temperature = 45 \ No newline at end of file + 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 0675684ff1..f020d2f102 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = A definition = deltacomb_base +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D005 material = generic_pla +quality_type = D005 +setting_version = 22 +type = quality variant = DBE 0.40mm [values] @@ -15,4 +15,5 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -material_bed_temperature = 45 \ No newline at end of file +material_bed_temperature = 45 + 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 86151e291b..295e777a2f 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = B definition = deltacomb_base +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D010 material = generic_pla +quality_type = D010 +setting_version = 22 +type = quality variant = DBE 0.40mm [values] @@ -15,4 +15,5 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -material_bed_temperature = 45 \ No newline at end of file +material_bed_temperature = 45 + 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 755790f6e6..7b39f2a7f9 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = C definition = deltacomb_base +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D015 material = generic_pla +quality_type = D015 +setting_version = 22 +type = quality variant = DBE 0.40mm [values] @@ -15,4 +15,5 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -material_bed_temperature = 45 \ No newline at end of file +material_bed_temperature = 45 + 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 560fc90780..d2c3add06d 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_pla +quality_type = D020 +setting_version = 22 +type = quality variant = DBE 0.40mm [values] @@ -15,4 +15,5 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -material_bed_temperature = 45 \ No newline at end of file +material_bed_temperature = 45 + 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 08ec8b65b6..dfbf63f11c 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = E definition = deltacomb_base +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D030 material = generic_pla +quality_type = D030 +setting_version = 22 +type = quality variant = DBE 0.40mm [values] @@ -15,4 +15,5 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -material_bed_temperature = 45 \ No newline at end of file +material_bed_temperature = 45 + 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 d7052bf577..0d8b1dae2a 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = C definition = deltacomb_base +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D015 material = generic_pla +quality_type = D015 +setting_version = 22 +type = quality variant = DBE 0.60mm [values] @@ -15,4 +15,5 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -material_bed_temperature = 45 \ No newline at end of file +material_bed_temperature = 45 + 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 412623cd4f..f6fffd5ba6 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_pla +quality_type = D020 +setting_version = 22 +type = quality variant = DBE 0.60mm [values] @@ -15,4 +15,5 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -material_bed_temperature = 45 \ No newline at end of file +material_bed_temperature = 45 + 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 44eb3227e4..9b1ba58800 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = E definition = deltacomb_base +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D030 material = generic_pla +quality_type = D030 +setting_version = 22 +type = quality variant = DBE 0.60mm [values] @@ -15,5 +15,6 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 +material_bed_temperature = 45 speed_print = 65 -material_bed_temperature = 45 \ No newline at end of file + 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 3fac5f1b3d..16d09699dc 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = F definition = deltacomb_base +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D045 material = generic_pla +quality_type = D045 +setting_version = 22 +type = quality variant = DBE 0.60mm [values] @@ -15,5 +15,6 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 +material_bed_temperature = 45 speed_print = 45 -material_bed_temperature = 45 \ No newline at end of file + 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 26992f049f..5e7be2d1fb 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = A definition = deltacomb_base +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D005 material = generic_pla +quality_type = D005 +setting_version = 22 +type = quality variant = FBE 0.25mm [values] @@ -15,4 +15,5 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -material_bed_temperature = 45 \ No newline at end of file +material_bed_temperature = 45 + 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 d3839a4cbe..bf01db2049 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = B definition = deltacomb_base +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D010 material = generic_pla +quality_type = D010 +setting_version = 22 +type = quality variant = FBE 0.25mm [values] @@ -15,5 +15,6 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 +material_bed_temperature = 45 speed_print = 55 -material_bed_temperature = 45 \ No newline at end of file + 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 e00fca0e46..ecbfacae2b 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = C definition = deltacomb_base +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D015 material = generic_pla +quality_type = D015 +setting_version = 22 +type = quality variant = FBE 0.25mm [values] @@ -15,5 +15,6 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 +material_bed_temperature = 45 speed_print = 32 -material_bed_temperature = 45 \ No newline at end of file + 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 60c111e150..241686cb36 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = A definition = deltacomb_base +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D005 material = generic_pla +quality_type = D005 +setting_version = 22 +type = quality variant = FBE 0.40mm [values] @@ -15,4 +15,5 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -material_bed_temperature = 45 \ No newline at end of file +material_bed_temperature = 45 + 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 32a549fa5b..b9a32b3cb7 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = B definition = deltacomb_base +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D010 material = generic_pla +quality_type = D010 +setting_version = 22 +type = quality variant = FBE 0.40mm [values] @@ -15,4 +15,5 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -material_bed_temperature = 45 \ No newline at end of file +material_bed_temperature = 45 + 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 315bacc81d..448c3e5967 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = C definition = deltacomb_base +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D015 material = generic_pla +quality_type = D015 +setting_version = 22 +type = quality variant = FBE 0.40mm [values] @@ -15,4 +15,5 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -material_bed_temperature = 45 \ No newline at end of file +material_bed_temperature = 45 + 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 ac7dbe969a..6ab71e2295 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_pla +quality_type = D020 +setting_version = 22 +type = quality variant = FBE 0.40mm [values] @@ -15,4 +15,5 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -material_bed_temperature = 45 \ No newline at end of file +material_bed_temperature = 45 + 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 d74a9a1d3a..75844ac2dc 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = E definition = deltacomb_base +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D030 material = generic_pla +quality_type = D030 +setting_version = 22 +type = quality variant = FBE 0.40mm [values] @@ -15,4 +15,5 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -material_bed_temperature = 45 \ No newline at end of file +material_bed_temperature = 45 + 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 4d3b7cc0c2..2c3bfd17ec 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = C definition = deltacomb_base +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D015 material = generic_pla +quality_type = D015 +setting_version = 22 +type = quality variant = FBE 0.60mm [values] @@ -15,4 +15,5 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -material_bed_temperature = 45 \ No newline at end of file +material_bed_temperature = 45 + 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 2b4650e055..64a49a9700 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_pla +quality_type = D020 +setting_version = 22 +type = quality variant = FBE 0.60mm [values] @@ -15,4 +15,5 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 -material_bed_temperature = 45 \ No newline at end of file +material_bed_temperature = 45 + 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 1a448f923b..063dcf8aac 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = E definition = deltacomb_base +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D030 material = generic_pla +quality_type = D030 +setting_version = 22 +type = quality variant = FBE 0.60mm [values] @@ -15,5 +15,6 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 +material_bed_temperature = 45 speed_print = 65 -material_bed_temperature = 45 \ No newline at end of file + 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 1f5d55a206..9b4ef0761b 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = F definition = deltacomb_base +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D045 material = generic_pla +quality_type = D045 +setting_version = 22 +type = quality variant = FBE 0.60mm [values] @@ -15,5 +15,6 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 +material_bed_temperature = 45 speed_print = 45 -material_bed_temperature = 45 \ No newline at end of file + 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 ffa886a8d8..cf8780e0d3 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_pla +quality_type = D020 +setting_version = 22 +type = quality variant = V-DBE 0.80mm [values] @@ -15,5 +15,6 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 +material_bed_temperature = 45 speed_print = 150 -material_bed_temperature = 45 \ No newline at end of file + 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 bb6dc1b1d2..4f9ad94b0e 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = E definition = deltacomb_base +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D030 material = generic_pla +quality_type = D030 +setting_version = 22 +type = quality variant = V-DBE 0.80mm [values] @@ -15,5 +15,6 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 +material_bed_temperature = 45 speed_print = 110 -material_bed_temperature = 45 \ No newline at end of file + 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 2ffd71e191..4a0a27225b 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = F definition = deltacomb_base +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D045 material = generic_pla +quality_type = D045 +setting_version = 22 +type = quality variant = V-DBE 0.80mm [values] @@ -15,5 +15,6 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 +material_bed_temperature = 45 speed_print = 75 -material_bed_temperature = 45 \ No newline at end of file + 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 409e7ac399..80bd1ed96e 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = G definition = deltacomb_base +name = G +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D060 material = generic_pla +quality_type = D060 +setting_version = 22 +type = quality variant = V-DBE 0.80mm [values] @@ -15,5 +15,6 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 +material_bed_temperature = 45 speed_print = 55 -material_bed_temperature = 45 \ No newline at end of file + 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 ac4e098d47..2943296891 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_pla +quality_type = D020 +setting_version = 22 +type = quality variant = V-FBE 0.80mm [values] @@ -15,5 +15,6 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 +material_bed_temperature = 45 speed_print = 150 -material_bed_temperature = 45 \ No newline at end of file + 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 18bc24706c..3b0f9b2892 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = E definition = deltacomb_base +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D030 material = generic_pla +quality_type = D030 +setting_version = 22 +type = quality variant = V-FBE 0.60mm [values] @@ -15,5 +15,6 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 +material_bed_temperature = 45 speed_print = 110 -material_bed_temperature = 45 \ No newline at end of file + 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 012764f64f..1744414d27 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = F definition = deltacomb_base +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D045 material = generic_pla +quality_type = D045 +setting_version = 22 +type = quality variant = V-FBE 0.80mm [values] @@ -15,5 +15,6 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 +material_bed_temperature = 45 speed_print = 75 -material_bed_temperature = 45 \ No newline at end of file + 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 3a6536f03d..e8d01f930d 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = G definition = deltacomb_base +name = G +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D060 material = generic_pla +quality_type = D060 +setting_version = 22 +type = quality variant = V-FBE 0.80mm [values] @@ -15,5 +15,6 @@ cool_fan_full_at_height = =layer_height * 4 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 100 +material_bed_temperature = 45 speed_print = 55 -material_bed_temperature = 45 \ No newline at end of file + 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 59e8fd1414..33b5c2c111 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = A definition = deltacomb_base +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D005 material = generic_pva +quality_type = D005 +setting_version = 22 +type = quality variant = DBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 42b951cccb..5be0dc9527 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = B definition = deltacomb_base +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D010 material = generic_pva +quality_type = D010 +setting_version = 22 +type = quality variant = DBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 b2d5f4d05e..76aa867f8f 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = C definition = deltacomb_base +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D015 material = generic_pva +quality_type = D015 +setting_version = 22 +type = quality variant = DBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 c49ba53f36..20bb125cd9 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_pva +quality_type = D020 +setting_version = 22 +type = quality variant = DBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 fb9e59f910..cc0224cf23 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = E definition = deltacomb_base +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D030 material = generic_pva +quality_type = D030 +setting_version = 22 +type = quality variant = DBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 6c4303807e..ec2ebdc647 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = C definition = deltacomb_base +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D015 material = generic_pva +quality_type = D015 +setting_version = 22 +type = quality variant = DBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 2f4e5ce032..136ec93d16 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_pva +quality_type = D020 +setting_version = 22 +type = quality variant = DBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 b5f8999bb9..3a0a94782c 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = E definition = deltacomb_base +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D030 material = generic_pva +quality_type = D030 +setting_version = 22 +type = quality variant = DBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 150216f26c..719a4bdcbd 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = F definition = deltacomb_base +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D045 material = generic_pva +quality_type = D045 +setting_version = 22 +type = quality variant = DBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 81603f50b1..4486a1d3bc 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = A definition = deltacomb_base +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D005 material = generic_pva +quality_type = D005 +setting_version = 22 +type = quality variant = FBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 876e730533..b938502e85 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = B definition = deltacomb_base +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D010 material = generic_pva +quality_type = D010 +setting_version = 22 +type = quality variant = FBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 6bdda17069..3b88ca6b67 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = C definition = deltacomb_base +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D015 material = generic_pva +quality_type = D015 +setting_version = 22 +type = quality variant = FBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 e7a76a7c94..4134717770 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_pva +quality_type = D020 +setting_version = 22 +type = quality variant = FBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 bf649df21a..e267e7c6eb 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = E definition = deltacomb_base +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D030 material = generic_pva +quality_type = D030 +setting_version = 22 +type = quality variant = FBE 0.40mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 23a95e6b45..35e2e07b41 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = C definition = deltacomb_base +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D015 material = generic_pva +quality_type = D015 +setting_version = 22 +type = quality variant = FBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 be08e711bc..dd944cbfd1 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_pva +quality_type = D020 +setting_version = 22 +type = quality variant = FBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 e085226a2f..8aa462e206 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = E definition = deltacomb_base +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D030 material = generic_pva +quality_type = D030 +setting_version = 22 +type = quality variant = FBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 ec8b9401b2..0691a01deb 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = F definition = deltacomb_base +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D045 material = generic_pva +quality_type = D045 +setting_version = 22 +type = quality variant = FBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 0af34dc7e9..a4d0582c3a 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_pva +quality_type = D020 +setting_version = 22 +type = quality variant = V-DBE 0.80mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 cb85c2b893..831e17c018 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = E definition = deltacomb_base +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D030 material = generic_pva +quality_type = D030 +setting_version = 22 +type = quality variant = V-DBE 0.80mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 58797ff4e6..d9a57d6012 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = F definition = deltacomb_base +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D045 material = generic_pva +quality_type = D045 +setting_version = 22 +type = quality variant = V-DBE 0.80mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 81a1bb3bf4..8408fbc014 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = G definition = deltacomb_base +name = G +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D060 material = generic_pva +quality_type = D060 +setting_version = 22 +type = quality variant = V-DBE 0.80mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 1f3b9fdc1b..18c813a79a 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_pva +quality_type = D020 +setting_version = 22 +type = quality variant = V-FBE 0.80mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 583b715e89..660c536a5e 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = E definition = deltacomb_base +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D030 material = generic_pva +quality_type = D030 +setting_version = 22 +type = quality variant = V-FBE 0.60mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 00f5c73b32..5dbea58c49 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = F definition = deltacomb_base +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D045 material = generic_pva +quality_type = D045 +setting_version = 22 +type = quality variant = V-FBE 0.80mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 a1b3f04205..9bfd649e99 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = G definition = deltacomb_base +name = G +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D060 material = generic_pva +quality_type = D060 +setting_version = 22 +type = quality variant = V-FBE 0.80mm [values] brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False -support_brim_enable = True +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_brim_enable = True +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height + 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 c2532ef788..b0eafd229a 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = B definition = deltacomb_base +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D010 material = generic_tpu +quality_type = D010 +setting_version = 22 +type = quality variant = DBE 0.40mm [values] +acceleration_travel = 10000 cool_fan_full_at_height = =layer_height * 6 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 70 -speed_print = 25 -speed_travel = 300 -acceleration_travel = 10000 -retraction_amount = 5 -retraction_hop_enabled = False ironing_flow = 5 jerk_ironing = 5 +retraction_amount = 5 +retraction_hop_enabled = False speed_ironing = =speed_print -switch_extruder_retraction_amount = 10 \ No newline at end of file +speed_print = 25 +speed_travel = 300 +switch_extruder_retraction_amount = 10 + 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 cc89344995..dae89bcf98 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = C definition = deltacomb_base +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D015 material = generic_tpu +quality_type = D015 +setting_version = 22 +type = quality variant = DBE 0.40mm [values] +acceleration_travel = 10000 cool_fan_full_at_height = =layer_height * 6 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 70 -speed_print = 25 -speed_travel = 300 -acceleration_travel = 10000 -retraction_amount = 5 -retraction_hop_enabled = False ironing_flow = 5 jerk_ironing = 5 +retraction_amount = 5 +retraction_hop_enabled = False speed_ironing = =speed_print -switch_extruder_retraction_amount = 10 \ No newline at end of file +speed_print = 25 +speed_travel = 300 +switch_extruder_retraction_amount = 10 + 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 7994e014a8..1df4e6596a 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_tpu +quality_type = D020 +setting_version = 22 +type = quality variant = DBE 0.40mm [values] +acceleration_travel = 10000 cool_fan_full_at_height = =layer_height * 6 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 70 -speed_print = 25 -speed_travel = 300 -acceleration_travel = 10000 -retraction_amount = 5 -retraction_hop_enabled = False ironing_flow = 5 jerk_ironing = 5 +retraction_amount = 5 +retraction_hop_enabled = False speed_ironing = =speed_print -switch_extruder_retraction_amount = 10 \ No newline at end of file +speed_print = 25 +speed_travel = 300 +switch_extruder_retraction_amount = 10 + 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 6727cb8ed5..710e0f5615 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = B definition = deltacomb_base +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D010 material = generic_tpu +quality_type = D010 +setting_version = 22 +type = quality variant = FBE 0.40mm [values] +acceleration_travel = 10000 cool_fan_full_at_height = =layer_height * 6 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 70 -speed_print = 25 -speed_travel = 300 -acceleration_travel = 10000 -retraction_amount = 5 -retraction_hop_enabled = False ironing_flow = 5 jerk_ironing = 5 +retraction_amount = 5 +retraction_hop_enabled = False speed_ironing = =speed_print -switch_extruder_retraction_amount = 10 \ No newline at end of file +speed_print = 25 +speed_travel = 300 +switch_extruder_retraction_amount = 10 + 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 425504c187..fd47c2736d 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = C definition = deltacomb_base +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D015 material = generic_tpu +quality_type = D015 +setting_version = 22 +type = quality variant = FBE 0.40mm [values] +acceleration_travel = 10000 cool_fan_full_at_height = =layer_height * 6 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 70 -speed_print = 25 -speed_travel = 300 -acceleration_travel = 10000 -retraction_amount = 5 -retraction_hop_enabled = False ironing_flow = 5 jerk_ironing = 5 +retraction_amount = 5 +retraction_hop_enabled = False speed_ironing = =speed_print -switch_extruder_retraction_amount = 10 \ No newline at end of file +speed_print = 25 +speed_travel = 300 +switch_extruder_retraction_amount = 10 + 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 f387d0274e..f55395526e 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = D definition = deltacomb_base +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 material = generic_tpu +quality_type = D020 +setting_version = 22 +type = quality variant = FBE 0.40mm [values] +acceleration_travel = 10000 cool_fan_full_at_height = =layer_height * 6 cool_fan_speed = 100 cool_fan_speed_max = 100 cool_fan_speed_min = 70 -speed_print = 25 -speed_travel = 300 -acceleration_travel = 10000 -retraction_amount = 5 -retraction_hop_enabled = False ironing_flow = 5 jerk_ironing = 5 +retraction_amount = 5 +retraction_hop_enabled = False speed_ironing = =speed_print -switch_extruder_retraction_amount = 10 \ No newline at end of file +speed_print = 25 +speed_travel = 300 +switch_extruder_retraction_amount = 10 + diff --git a/resources/quality/deltacomb/deltacomb_global_A.inst.cfg b/resources/quality/deltacomb/deltacomb_global_A.inst.cfg index e8e41d5936..37253cf6a9 100755 --- a/resources/quality/deltacomb/deltacomb_global_A.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_A.inst.cfg @@ -1,23 +1,24 @@ [general] -version = 4 -name = Extra Fine definition = deltacomb_base +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D005 -weight = 1 global_quality = True +quality_type = D005 +setting_version = 22 +type = quality +weight = 1 [values] adhesion_type = skirt -layer_height = 0.05 -layer_height_0 = 0.1 cool_fan_enabled = True cool_min_layer_time = 10 cool_min_layer_time_fan_speed_max = 10 cool_min_speed = 5 +layer_height = 0.05 +layer_height_0 = 0.1 material_print_temperature_layer_0 = =default_material_print_temperature + 5 +prime_tower_brim_enable = False support_angle = 80 -prime_tower_brim_enable = False \ No newline at end of file + diff --git a/resources/quality/deltacomb/deltacomb_global_B.inst.cfg b/resources/quality/deltacomb/deltacomb_global_B.inst.cfg index 220aac4192..f787587601 100755 --- a/resources/quality/deltacomb/deltacomb_global_B.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_B.inst.cfg @@ -1,22 +1,23 @@ [general] -version = 4 -name = Fine definition = deltacomb_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D010 -weight = 0 global_quality = True +quality_type = D010 +setting_version = 22 +type = quality +weight = 0 [values] adhesion_type = skirt -layer_height = 0.1 cool_fan_enabled = True cool_min_layer_time = 10 cool_min_layer_time_fan_speed_max = 10 cool_min_speed = 5 +layer_height = 0.1 material_print_temperature_layer_0 = =default_material_print_temperature + 5 +prime_tower_brim_enable = False support_angle = 65 -prime_tower_brim_enable = False \ No newline at end of file + diff --git a/resources/quality/deltacomb/deltacomb_global_C.inst.cfg b/resources/quality/deltacomb/deltacomb_global_C.inst.cfg index 554b9de913..de606ef424 100755 --- a/resources/quality/deltacomb/deltacomb_global_C.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_C.inst.cfg @@ -1,22 +1,23 @@ [general] -version = 4 -name = Normal definition = deltacomb_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D015 -weight = -1 global_quality = True +quality_type = D015 +setting_version = 22 +type = quality +weight = -1 [values] adhesion_type = skirt -layer_height = 0.15 cool_fan_enabled = True cool_min_layer_time = 10 cool_min_layer_time_fan_speed_max = 10 cool_min_speed = 5 +layer_height = 0.15 material_print_temperature_layer_0 = =default_material_print_temperature + 5 +prime_tower_brim_enable = False support_angle = 55 -prime_tower_brim_enable = False \ No newline at end of file + diff --git a/resources/quality/deltacomb/deltacomb_global_D.inst.cfg b/resources/quality/deltacomb/deltacomb_global_D.inst.cfg index 4fccf4df50..0f2d7c8b70 100755 --- a/resources/quality/deltacomb/deltacomb_global_D.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_D.inst.cfg @@ -1,21 +1,22 @@ [general] -version = 4 -name = Fast definition = deltacomb_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D020 -weight = -2 global_quality = True +quality_type = D020 +setting_version = 22 +type = quality +weight = -2 [values] adhesion_type = skirt -layer_height = 0.2 cool_fan_enabled = True cool_min_layer_time = 10 cool_min_layer_time_fan_speed_max = 10 cool_min_speed = 5 +layer_height = 0.2 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_brim_enable = False \ No newline at end of file +prime_tower_brim_enable = False + diff --git a/resources/quality/deltacomb/deltacomb_global_E.inst.cfg b/resources/quality/deltacomb/deltacomb_global_E.inst.cfg index 330fc2d42c..cdef82876d 100755 --- a/resources/quality/deltacomb/deltacomb_global_E.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_E.inst.cfg @@ -1,21 +1,22 @@ [general] -version = 4 -name = Extra Fast definition = deltacomb_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D030 -weight = -3 global_quality = True +quality_type = D030 +setting_version = 22 +type = quality +weight = -3 [values] adhesion_type = skirt -layer_height = 0.3 cool_fan_enabled = True cool_min_layer_time = 10 cool_min_layer_time_fan_speed_max = 10 cool_min_speed = 5 +layer_height = 0.3 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_brim_enable = False \ No newline at end of file +prime_tower_brim_enable = False + diff --git a/resources/quality/deltacomb/deltacomb_global_F.inst.cfg b/resources/quality/deltacomb/deltacomb_global_F.inst.cfg index efd87a8296..2f7f2f15ed 100755 --- a/resources/quality/deltacomb/deltacomb_global_F.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_F.inst.cfg @@ -1,21 +1,22 @@ [general] -version = 4 -name = Coarse definition = deltacomb_base +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D045 -weight = -4 global_quality = True +quality_type = D045 +setting_version = 22 +type = quality +weight = -4 [values] adhesion_type = skirt -layer_height = 0.45 cool_fan_enabled = True cool_min_layer_time = 10 cool_min_layer_time_fan_speed_max = 10 cool_min_speed = 5 +layer_height = 0.45 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_brim_enable = False \ No newline at end of file +prime_tower_brim_enable = False + diff --git a/resources/quality/deltacomb/deltacomb_global_G.inst.cfg b/resources/quality/deltacomb/deltacomb_global_G.inst.cfg index c91b2c8e28..412279110b 100755 --- a/resources/quality/deltacomb/deltacomb_global_G.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_G.inst.cfg @@ -1,21 +1,22 @@ [general] -version = 4 -name = Extra Coarse definition = deltacomb_base +name = Extra Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = D060 -weight = -5 global_quality = True +quality_type = D060 +setting_version = 22 +type = quality +weight = -5 [values] adhesion_type = skirt -layer_height = 0.6 cool_fan_enabled = True cool_min_layer_time = 10 cool_min_layer_time_fan_speed_max = 10 cool_min_speed = 5 +layer_height = 0.6 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -prime_tower_brim_enable = False \ No newline at end of file +prime_tower_brim_enable = False + diff --git a/resources/quality/diy220/diy220_draft.inst.cfg b/resources/quality/diy220/diy220_draft.inst.cfg index 8ddc366300..c403531471 100644 --- a/resources/quality/diy220/diy220_draft.inst.cfg +++ b/resources/quality/diy220/diy220_draft.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft definition = diy220 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] layer_height = 0.2 + diff --git a/resources/quality/diy220/diy220_fast.inst.cfg b/resources/quality/diy220/diy220_fast.inst.cfg index 0364b94bd9..48cc3518ab 100644 --- a/resources/quality/diy220/diy220_fast.inst.cfg +++ b/resources/quality/diy220/diy220_fast.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Normal definition = diy220 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.15 + diff --git a/resources/quality/diy220/diy220_high.inst.cfg b/resources/quality/diy220/diy220_high.inst.cfg index a952bc60c0..094879b56e 100644 --- a/resources/quality/diy220/diy220_high.inst.cfg +++ b/resources/quality/diy220/diy220_high.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Extra Fine definition = diy220 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] layer_height = 0.06 + diff --git a/resources/quality/diy220/diy220_normal.inst.cfg b/resources/quality/diy220/diy220_normal.inst.cfg index 9120f89b7f..ee6b0b3ff4 100644 --- a/resources/quality/diy220/diy220_normal.inst.cfg +++ b/resources/quality/diy220/diy220_normal.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Fine definition = diy220 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] + diff --git a/resources/quality/draft.inst.cfg b/resources/quality/draft.inst.cfg index c083eb8178..50a7d5ddc6 100644 --- a/resources/quality/draft.inst.cfg +++ b/resources/quality/draft.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft definition = fdmprinter +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] layer_height = 0.2 + diff --git a/resources/quality/elegoo/base/abs040/abs_040012.inst.cfg b/resources/quality/elegoo/base/abs040/abs_040012.inst.cfg new file mode 100644 index 0000000000..ed4ff399f4 --- /dev/null +++ b/resources/quality/elegoo/base/abs040/abs_040012.inst.cfg @@ -0,0 +1,30 @@ +[general] +definition = elegoo_base +name = abs_040012 +version = 4 + +[metadata] +material = generic_abs_175 +quality_type = high +setting_version = 22 +type = quality + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +default_material_bed_temperature = 80 +default_material_print_temperature = 240 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.15 +raft_margin = 10 +retraction_speed = 25 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.72 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/base/abs040/abs_040016.inst.cfg b/resources/quality/elegoo/base/abs040/abs_040016.inst.cfg new file mode 100644 index 0000000000..b494fc76a1 --- /dev/null +++ b/resources/quality/elegoo/base/abs040/abs_040016.inst.cfg @@ -0,0 +1,30 @@ +[general] +definition = elegoo_base +name = abs_040016 +version = 4 + +[metadata] +material = generic_abs_175 +quality_type = normal +setting_version = 22 +type = quality + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +default_material_bed_temperature = 80 +default_material_print_temperature = 240 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.15 +raft_margin = 10 +retraction_speed = 25 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.64 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/base/abs040/abs_040020.inst.cfg b/resources/quality/elegoo/base/abs040/abs_040020.inst.cfg new file mode 100644 index 0000000000..9cda08aeba --- /dev/null +++ b/resources/quality/elegoo/base/abs040/abs_040020.inst.cfg @@ -0,0 +1,30 @@ +[general] +definition = elegoo_base +name = abs_040020 +version = 4 + +[metadata] +material = generic_abs_175 +quality_type = fine +setting_version = 22 +type = quality + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +default_material_bed_temperature = 80 +default_material_print_temperature = 240 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.15 +raft_margin = 10 +retraction_speed = 25 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.8 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/base/abs040/abs_040024.inst.cfg b/resources/quality/elegoo/base/abs040/abs_040024.inst.cfg new file mode 100644 index 0000000000..540c7a5d50 --- /dev/null +++ b/resources/quality/elegoo/base/abs040/abs_040024.inst.cfg @@ -0,0 +1,30 @@ +[general] +definition = elegoo_base +name = abs_040024 +version = 4 + +[metadata] +material = generic_abs_175 +quality_type = medium +setting_version = 22 +type = quality + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +default_material_bed_temperature = 80 +default_material_print_temperature = 240 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.15 +raft_margin = 10 +retraction_speed = 25 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.75 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/base/abs040/abs_040028.inst.cfg b/resources/quality/elegoo/base/abs040/abs_040028.inst.cfg new file mode 100644 index 0000000000..329de538c0 --- /dev/null +++ b/resources/quality/elegoo/base/abs040/abs_040028.inst.cfg @@ -0,0 +1,30 @@ +[general] +definition = elegoo_base +name = abs_040028 +version = 4 + +[metadata] +material = generic_abs_175 +quality_type = draft +setting_version = 22 +type = quality + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +default_material_bed_temperature = 80 +default_material_print_temperature = 240 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.2 +raft_margin = 10 +retraction_speed = 25 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.84 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/base/asa040/asa_040012.inst.cfg b/resources/quality/elegoo/base/asa040/asa_040012.inst.cfg new file mode 100644 index 0000000000..7dedc2c91e --- /dev/null +++ b/resources/quality/elegoo/base/asa040/asa_040012.inst.cfg @@ -0,0 +1,30 @@ +[general] +definition = elegoo_base +name = asa_040012 +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = high +setting_version = 22 +type = quality + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +default_material_bed_temperature = 80 +default_material_print_temperature = 240 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.15 +raft_margin = 15 +retraction_speed = 25 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.72 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/base/asa040/asa_040016.inst.cfg b/resources/quality/elegoo/base/asa040/asa_040016.inst.cfg new file mode 100644 index 0000000000..7f7ef16fb1 --- /dev/null +++ b/resources/quality/elegoo/base/asa040/asa_040016.inst.cfg @@ -0,0 +1,30 @@ +[general] +definition = elegoo_base +name = asa_040016 +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = normal +setting_version = 22 +type = quality + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +default_material_bed_temperature = 80 +default_material_print_temperature = 240 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.15 +raft_margin = 15 +retraction_speed = 25 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.64 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/base/asa040/asa_040020.inst.cfg b/resources/quality/elegoo/base/asa040/asa_040020.inst.cfg new file mode 100644 index 0000000000..e86d9b8747 --- /dev/null +++ b/resources/quality/elegoo/base/asa040/asa_040020.inst.cfg @@ -0,0 +1,30 @@ +[general] +definition = elegoo_base +name = asa_040020 +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = fine +setting_version = 22 +type = quality + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +default_material_bed_temperature = 80 +default_material_print_temperature = 240 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.15 +raft_margin = 15 +retraction_speed = 25 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.8 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/base/asa040/asa_040024.inst.cfg b/resources/quality/elegoo/base/asa040/asa_040024.inst.cfg new file mode 100644 index 0000000000..8f3c93cad4 --- /dev/null +++ b/resources/quality/elegoo/base/asa040/asa_040024.inst.cfg @@ -0,0 +1,30 @@ +[general] +definition = elegoo_base +name = asa_040024 +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = medium +setting_version = 22 +type = quality + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +default_material_bed_temperature = 80 +default_material_print_temperature = 240 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.15 +raft_margin = 15 +retraction_speed = 25 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.75 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/base/asa040/asa_040028.inst.cfg b/resources/quality/elegoo/base/asa040/asa_040028.inst.cfg new file mode 100644 index 0000000000..462b2d0e61 --- /dev/null +++ b/resources/quality/elegoo/base/asa040/asa_040028.inst.cfg @@ -0,0 +1,30 @@ +[general] +definition = elegoo_base +name = asa_040028 +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = draft +setting_version = 22 +type = quality + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +default_material_bed_temperature = 80 +default_material_print_temperature = 240 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.2 +raft_margin = 15 +retraction_speed = 25 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.84 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/base/elegoo_global_012_high.inst.cfg b/resources/quality/elegoo/base/elegoo_global_012_high.inst.cfg new file mode 100644 index 0000000000..24f2f51a78 --- /dev/null +++ b/resources/quality/elegoo/base/elegoo_global_012_high.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = elegoo_base +name = High Quality +version = 4 + +[metadata] +global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = -1 + +[values] +layer_height = 0.12 +layer_height_0 = 0.2 +material_print_temperature = =default_material_print_temperature +prime_tower_size = 40 +speed_print = 70 +top_bottom_thickness = 0.7 + diff --git a/resources/quality/elegoo/base/elegoo_global_016_normal.inst.cfg b/resources/quality/elegoo/base/elegoo_global_016_normal.inst.cfg new file mode 100644 index 0000000000..81e22f679c --- /dev/null +++ b/resources/quality/elegoo/base/elegoo_global_016_normal.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = elegoo_base +name = Normal Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -2 + +[values] +layer_height = 0.16 +layer_height_0 = 0.25 +material_print_temperature = =default_material_print_temperature +prime_tower_size = 35 +speed_print = 60 +top_bottom_thickness = 0.8 + diff --git a/resources/quality/elegoo/base/elegoo_global_020_fine.inst.cfg b/resources/quality/elegoo/base/elegoo_global_020_fine.inst.cfg new file mode 100644 index 0000000000..87079ab369 --- /dev/null +++ b/resources/quality/elegoo/base/elegoo_global_020_fine.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = elegoo_base +name = Fine Quality +version = 4 + +[metadata] +global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = -3 + +[values] +layer_height = 0.20 +layer_height_0 = 0.25 +material_print_temperature = =default_material_print_temperature +prime_tower_size = 31 +top_bottom_thickness = 0.8 + diff --git a/resources/quality/elegoo/base/elegoo_global_024_medium.inst.cfg b/resources/quality/elegoo/base/elegoo_global_024_medium.inst.cfg new file mode 100644 index 0000000000..08ca3bdd7a --- /dev/null +++ b/resources/quality/elegoo/base/elegoo_global_024_medium.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = elegoo_base +name = Medium Quality +version = 4 + +[metadata] +global_quality = True +quality_type = medium +setting_version = 22 +type = quality +weight = -4 + +[values] +layer_height = 0.24 +layer_height_0 = 0.25 +material_print_temperature = =default_material_print_temperature +prime_tower_size = 28 +top_bottom_thickness = 1.0 + diff --git a/resources/quality/elegoo/base/elegoo_global_028_draft.inst.cfg b/resources/quality/elegoo/base/elegoo_global_028_draft.inst.cfg new file mode 100644 index 0000000000..d98f053254 --- /dev/null +++ b/resources/quality/elegoo/base/elegoo_global_028_draft.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = elegoo_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -5 + +[values] +layer_height = 0.28 +layer_height_0 = 0.30 +material_print_temperature = =default_material_print_temperature + 5 +prime_tower_size = 27 +top_bottom_thickness = 1.0 + diff --git a/resources/quality/elegoo/base/petg040/petg_040012.inst.cfg b/resources/quality/elegoo/base/petg040/petg_040012.inst.cfg new file mode 100644 index 0000000000..df9119b5f3 --- /dev/null +++ b/resources/quality/elegoo/base/petg040/petg_040012.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = elegoo_base +name = petg_040012 +version = 4 + +[metadata] +material = generic_petg_175 +quality_type = high +setting_version = 22 +type = quality + +[values] +brim_width = 6 +cool_fan_speed_min = =cool_fan_speed*0.5 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 30 +default_material_bed_temperature = 70 +default_material_print_temperature = 235 +layer_0_z_overlap = =raft_airgap*0.6 +material_shrinkage_percentage_xy = 100.2 +raft_airgap = =0.35 +raft_margin = 10 +retraction_speed = 25 +speed_support = =speed_wall_x + diff --git a/resources/quality/elegoo/base/petg040/petg_040016.inst.cfg b/resources/quality/elegoo/base/petg040/petg_040016.inst.cfg new file mode 100644 index 0000000000..b1244d99a4 --- /dev/null +++ b/resources/quality/elegoo/base/petg040/petg_040016.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = elegoo_base +name = petg_040016 +version = 4 + +[metadata] +material = generic_petg_175 +quality_type = normal +setting_version = 22 +type = quality + +[values] +brim_width = 6 +cool_fan_speed_min = =cool_fan_speed*0.5 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 30 +default_material_bed_temperature = 70 +default_material_print_temperature = 235 +layer_0_z_overlap = =raft_airgap*0.6 +material_shrinkage_percentage_xy = 100.2 +raft_airgap = =0.35 +raft_margin = 10 +retraction_speed = 25 +speed_support = =speed_wall_x + diff --git a/resources/quality/elegoo/base/petg040/petg_040020.inst.cfg b/resources/quality/elegoo/base/petg040/petg_040020.inst.cfg new file mode 100644 index 0000000000..c244d9f3a9 --- /dev/null +++ b/resources/quality/elegoo/base/petg040/petg_040020.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = elegoo_base +name = petg_040020 +version = 4 + +[metadata] +material = generic_petg_175 +quality_type = fine +setting_version = 22 +type = quality + +[values] +brim_width = 6 +cool_fan_speed_min = =cool_fan_speed*0.5 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 30 +default_material_bed_temperature = 70 +default_material_print_temperature = 235 +layer_0_z_overlap = =raft_airgap*0.6 +material_shrinkage_percentage_xy = 100.2 +raft_airgap = =0.35 +raft_margin = 10 +retraction_speed = 25 +speed_support = =speed_wall_x + diff --git a/resources/quality/elegoo/base/petg040/petg_040024.inst.cfg b/resources/quality/elegoo/base/petg040/petg_040024.inst.cfg new file mode 100644 index 0000000000..963aa9e9be --- /dev/null +++ b/resources/quality/elegoo/base/petg040/petg_040024.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = elegoo_base +name = petg_040024 +version = 4 + +[metadata] +material = generic_petg_175 +quality_type = medium +setting_version = 22 +type = quality + +[values] +brim_width = 6 +cool_fan_speed_min = =cool_fan_speed*0.5 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 30 +default_material_bed_temperature = 70 +default_material_print_temperature = 235 +layer_0_z_overlap = =raft_airgap*0.6 +material_shrinkage_percentage_xy = 100.2 +raft_airgap = =0.35 +raft_margin = 10 +retraction_speed = 25 +speed_support = =speed_wall_x + diff --git a/resources/quality/elegoo/base/petg040/petg_040028.inst.cfg b/resources/quality/elegoo/base/petg040/petg_040028.inst.cfg new file mode 100644 index 0000000000..ef521a3752 --- /dev/null +++ b/resources/quality/elegoo/base/petg040/petg_040028.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = elegoo_base +name = petg_040028 +version = 4 + +[metadata] +material = generic_petg_175 +quality_type = draft +setting_version = 22 +type = quality + +[values] +brim_width = 6 +cool_fan_speed_min = =cool_fan_speed*0.5 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 30 +default_material_bed_temperature = 70 +default_material_print_temperature = 235 +layer_0_z_overlap = =raft_airgap*0.6 +material_shrinkage_percentage_xy = 100.2 +raft_airgap = =0.38 +raft_margin = 10 +retraction_speed = 25 +speed_support = =speed_wall_x + diff --git a/resources/quality/elegoo/base/pla040/pla_040012.inst.cfg b/resources/quality/elegoo/base/pla040/pla_040012.inst.cfg new file mode 100644 index 0000000000..f7b053bdcb --- /dev/null +++ b/resources/quality/elegoo/base/pla040/pla_040012.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = elegoo_base +name = pla_040012 +version = 4 + +[metadata] +material = generic_pla_175 +quality_type = high +setting_version = 22 +type = quality + +[values] +brim_width = 3.5 +default_material_bed_temperature = 50 +layer_0_z_overlap = =raft_airgap*0.7 +raft_airgap = =0.3 +retraction_speed = 45 + diff --git a/resources/quality/elegoo/base/pla040/pla_040016.inst.cfg b/resources/quality/elegoo/base/pla040/pla_040016.inst.cfg new file mode 100644 index 0000000000..edfa7bce40 --- /dev/null +++ b/resources/quality/elegoo/base/pla040/pla_040016.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = elegoo_base +name = pla_040016 +version = 4 + +[metadata] +material = generic_pla_175 +quality_type = normal +setting_version = 22 +type = quality + +[values] +brim_width = 3.5 +default_material_bed_temperature = 50 +layer_0_z_overlap = =raft_airgap*0.7 +raft_airgap = =0.3 +retraction_speed = 45 + diff --git a/resources/quality/elegoo/base/pla040/pla_040020.inst.cfg b/resources/quality/elegoo/base/pla040/pla_040020.inst.cfg new file mode 100644 index 0000000000..1ef410c7d9 --- /dev/null +++ b/resources/quality/elegoo/base/pla040/pla_040020.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = elegoo_base +name = pla_040020 +version = 4 + +[metadata] +material = generic_pla_175 +quality_type = fine +setting_version = 22 +type = quality + +[values] +brim_width = 3.5 +default_material_bed_temperature = 50 +layer_0_z_overlap = =raft_airgap*0.7 +raft_airgap = =0.3 +retraction_speed = 45 + diff --git a/resources/quality/elegoo/base/pla040/pla_040024.inst.cfg b/resources/quality/elegoo/base/pla040/pla_040024.inst.cfg new file mode 100644 index 0000000000..e4d262d072 --- /dev/null +++ b/resources/quality/elegoo/base/pla040/pla_040024.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = elegoo_base +name = pla_040024 +version = 4 + +[metadata] +material = generic_pla_175 +quality_type = medium +setting_version = 22 +type = quality + +[values] +brim_width = 3.5 +default_material_bed_temperature = 50 +layer_0_z_overlap = =raft_airgap*0.6 +raft_airgap = =0.3 +retraction_speed = 45 + diff --git a/resources/quality/elegoo/base/pla040/pla_040028.inst.cfg b/resources/quality/elegoo/base/pla040/pla_040028.inst.cfg new file mode 100644 index 0000000000..fcbaf32f5c --- /dev/null +++ b/resources/quality/elegoo/base/pla040/pla_040028.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = elegoo_base +name = pla_040028 +version = 4 + +[metadata] +material = generic_pla_175 +quality_type = draft +setting_version = 22 +type = quality + +[values] +brim_width = 3.5 +default_material_bed_temperature = 50 +layer_0_z_overlap = =raft_airgap*0.6 +raft_airgap = =0.35 +retraction_speed = 45 + diff --git a/resources/quality/elegoo/base/tpu040/tpu_040012.inst.cfg b/resources/quality/elegoo/base/tpu040/tpu_040012.inst.cfg new file mode 100644 index 0000000000..0c3def3b89 --- /dev/null +++ b/resources/quality/elegoo/base/tpu040/tpu_040012.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = elegoo_base +name = tpu_040012 +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = high +setting_version = 22 +type = quality + +[values] +brim_width = 5 +cool_min_layer_time = 10 +default_material_bed_temperature = 45 +default_material_print_temperature = 230 +retraction_speed = 25 +speed_print = 50 +speed_print_layer_0 = 15 +speed_support = =speed_wall_x +speed_support_interface = =speed_wall_x +speed_topbottom = =speed_wall +speed_wall_x = =speed_wall +support_angle = 35 + diff --git a/resources/quality/elegoo/base/tpu040/tpu_040016.inst.cfg b/resources/quality/elegoo/base/tpu040/tpu_040016.inst.cfg new file mode 100644 index 0000000000..6896a66e58 --- /dev/null +++ b/resources/quality/elegoo/base/tpu040/tpu_040016.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = elegoo_base +name = tpu_040016 +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = normal +setting_version = 22 +type = quality + +[values] +brim_width = 5 +cool_min_layer_time = 10 +default_material_bed_temperature = 45 +default_material_print_temperature = 230 +retraction_speed = 25 +speed_print = 50 +speed_print_layer_0 = 15 +speed_support = =speed_wall_x +speed_support_interface = =speed_wall_x +speed_topbottom = =speed_wall +speed_wall_x = =speed_wall +support_angle = 35 + diff --git a/resources/quality/elegoo/base/tpu040/tpu_040020.inst.cfg b/resources/quality/elegoo/base/tpu040/tpu_040020.inst.cfg new file mode 100644 index 0000000000..5ed6b7eb90 --- /dev/null +++ b/resources/quality/elegoo/base/tpu040/tpu_040020.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = elegoo_base +name = tpu_040020 +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = fine +setting_version = 22 +type = quality + +[values] +brim_width = 5 +cool_min_layer_time = 10 +default_material_bed_temperature = 45 +default_material_print_temperature = 230 +retraction_speed = 25 +speed_print = 50 +speed_print_layer_0 = 15 +speed_support = =speed_wall_x +speed_support_interface = =speed_wall_x +speed_topbottom = =speed_wall +speed_wall_x = =speed_wall +support_angle = 35 + diff --git a/resources/quality/elegoo/base/tpu040/tpu_040024.inst.cfg b/resources/quality/elegoo/base/tpu040/tpu_040024.inst.cfg new file mode 100644 index 0000000000..43ddf35629 --- /dev/null +++ b/resources/quality/elegoo/base/tpu040/tpu_040024.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = elegoo_base +name = tpu_040024 +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = medium +setting_version = 22 +type = quality + +[values] +brim_width = 5 +cool_min_layer_time = 10 +default_material_bed_temperature = 45 +default_material_print_temperature = 230 +retraction_speed = 25 +speed_print = 50 +speed_print_layer_0 = 15 +speed_support = =speed_wall_x +speed_support_interface = =speed_wall_x +speed_topbottom = =speed_wall +speed_wall_x = =speed_wall +support_angle = 35 + 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 92a592c198..4af6b802be 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 @@ -1,26 +1,25 @@ [general] -version = 4 -name = Draft definition = elegoo_neptune_2 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] acceleration_enabled = True -jerk_enabled = True -layer_height = 0.28 -layer_height_0 = 0.28 - bottom_layers = =999999 if infill_sparse_density == 100 else math.ceil(round(bottom_thickness / resolveOrValue('layer_height'), 4)) coasting_enable = False infill_line_distance = =0 if infill_sparse_density == 0 else (infill_line_width * 100) / infill_sparse_density * (2 if infill_pattern == 'grid' else (3 if infill_pattern == 'triangles' or infill_pattern == 'trihexagon' or infill_pattern == 'cubic' or infill_pattern == 'cubicsubdiv' else (2 if infill_pattern == 'tetrahedral' or infill_pattern == 'quarter_cubic' else (1 if infill_pattern == 'cross' or infill_pattern == 'cross_3d' else 1)))) infill_pattern = grid infill_sparse_density = 10.0 +jerk_enabled = True +layer_height = 0.28 +layer_height_0 = 0.28 material_flow_layer_0 = 95 retraction_amount = 6 roofing_layer_count = 1 @@ -36,4 +35,5 @@ wall_0_material_flow = 95 wall_0_wipe_dist = 0.4 wall_thickness = 1.2 z_seam_corner = z_seam_corner_weighted -z_seam_type = sharpest_corner \ No newline at end of file +z_seam_type = sharpest_corner + 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 afaa645b3e..11ee7992d3 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 @@ -1,34 +1,34 @@ [general] -version = 4 -name = Fine definition = elegoo_neptune_2 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 1 global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = 1 [values] acceleration_enabled = True -jerk_enabled = True -layer_height = 0.12 -layer_height_0 = 0.2 -support_enable = False - coasting_enable = False infill_line_distance = =0 if infill_sparse_density == 0 else (infill_line_width * 100) / infill_sparse_density * (2 if infill_pattern == 'grid' else (3 if infill_pattern == 'triangles' or infill_pattern == 'trihexagon' or infill_pattern == 'cubic' or infill_pattern == 'cubicsubdiv' else (2 if infill_pattern == 'tetrahedral' or infill_pattern == 'quarter_cubic' else (1 if infill_pattern == 'cross' or infill_pattern == 'cross_3d' else 1)))) infill_pattern = grid infill_sparse_density = 25 +jerk_enabled = True +layer_height = 0.12 +layer_height_0 = 0.2 material_flow_layer_0 = 95 retraction_amount = 6 skirt_brim_speed = 25.0 speed_layer_0 = 25.0 speed_travel_layer_0 = 125.0 speed_wall_x = 50.0 +support_enable = False top_bottom_thickness = 1 wall_0_material_flow = 95 wall_0_wipe_dist = 0.4 wall_thickness = 1.2 -z_seam_type = sharpest_corner \ No newline at end of file +z_seam_type = sharpest_corner + 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 bf9c8b8445..19742215b6 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 @@ -1,27 +1,25 @@ [general] -version = 4 -name = Normal definition = elegoo_neptune_2 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] acceleration_enabled = True adhesion_type = skirt -jerk_enabled = True -layer_height = 0.2 -layer_height_0 = 0.2 -support_enable = False - coasting_enable = False infill_line_distance = =0 if infill_sparse_density == 0 else (infill_line_width * 100) / infill_sparse_density * (2 if infill_pattern == 'grid' else (3 if infill_pattern == 'triangles' or infill_pattern == 'trihexagon' or infill_pattern == 'cubic' or infill_pattern == 'cubicsubdiv' else (2 if infill_pattern == 'tetrahedral' or infill_pattern == 'quarter_cubic' else (1 if infill_pattern == 'cross' or infill_pattern == 'cross_3d' else 1)))) infill_pattern = grid infill_sparse_density = 25 +jerk_enabled = True +layer_height = 0.2 +layer_height_0 = 0.2 material_flow_layer_0 = 95 retraction_amount = 6 skin_angles = [90 ] @@ -33,6 +31,7 @@ skirt_brim_speed = 25.0 speed_layer_0 = 25.0 speed_travel_layer_0 = 125.0 speed_wall_x = 50.0 +support_enable = False support_xy_distance = 0.2 top_bottom_thickness = 1 wall_0_inset = 0.2 @@ -40,3 +39,4 @@ wall_0_material_flow = 95 wall_0_wipe_dist = 0.4 wall_thickness = 1.2 z_seam_type = sharpest_corner + 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 0a5b076baa..74ecbb5c97 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 @@ -1,26 +1,25 @@ [general] -version = 4 -name = Draft definition = elegoo_neptune_2D +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] acceleration_enabled = True -jerk_enabled = True -layer_height = 0.28 -layer_height_0 = 0.28 - bottom_layers = =999999 if infill_sparse_density == 100 else math.ceil(round(bottom_thickness / resolveOrValue('layer_height'), 4)) coasting_enable = False infill_line_distance = =0 if infill_sparse_density == 0 else (infill_line_width * 100) / infill_sparse_density * (2 if infill_pattern == 'grid' else (3 if infill_pattern == 'triangles' or infill_pattern == 'trihexagon' or infill_pattern == 'cubic' or infill_pattern == 'cubicsubdiv' else (2 if infill_pattern == 'tetrahedral' or infill_pattern == 'quarter_cubic' else (1 if infill_pattern == 'cross' or infill_pattern == 'cross_3d' else 1)))) infill_pattern = grid infill_sparse_density = 10.0 +jerk_enabled = True +layer_height = 0.28 +layer_height_0 = 0.28 material_flow_layer_0 = 95 retraction_amount = 6 roofing_layer_count = 1 @@ -36,4 +35,5 @@ wall_0_material_flow = 95 wall_0_wipe_dist = 0.4 wall_thickness = 1.2 z_seam_corner = z_seam_corner_weighted -z_seam_type = sharpest_corner \ No newline at end of file +z_seam_type = sharpest_corner + 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 7fb24a1a41..4ac4c374a2 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 @@ -1,34 +1,34 @@ [general] -version = 4 -name = Fine definition = elegoo_neptune_2D +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 1 global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = 1 [values] acceleration_enabled = True -jerk_enabled = True -layer_height = 0.12 -layer_height_0 = 0.2 -support_enable = False - coasting_enable = False infill_line_distance = =0 if infill_sparse_density == 0 else (infill_line_width * 100) / infill_sparse_density * (2 if infill_pattern == 'grid' else (3 if infill_pattern == 'triangles' or infill_pattern == 'trihexagon' or infill_pattern == 'cubic' or infill_pattern == 'cubicsubdiv' else (2 if infill_pattern == 'tetrahedral' or infill_pattern == 'quarter_cubic' else (1 if infill_pattern == 'cross' or infill_pattern == 'cross_3d' else 1)))) infill_pattern = grid infill_sparse_density = 25 +jerk_enabled = True +layer_height = 0.12 +layer_height_0 = 0.2 material_flow_layer_0 = 95 retraction_amount = 6 skirt_brim_speed = 25.0 speed_layer_0 = 25.0 speed_travel_layer_0 = 125.0 speed_wall_x = 50.0 +support_enable = False top_bottom_thickness = 1 wall_0_material_flow = 95 wall_0_wipe_dist = 0.4 wall_thickness = 1.2 -z_seam_type = sharpest_corner \ No newline at end of file +z_seam_type = sharpest_corner + 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 2ed5c6ad76..9474f6a4eb 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 @@ -1,27 +1,25 @@ [general] -version = 4 -name = Normal definition = elegoo_neptune_2D +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] acceleration_enabled = True adhesion_type = skirt -jerk_enabled = True -layer_height = 0.2 -layer_height_0 = 0.2 -support_enable = False - coasting_enable = False infill_line_distance = =0 if infill_sparse_density == 0 else (infill_line_width * 100) / infill_sparse_density * (2 if infill_pattern == 'grid' else (3 if infill_pattern == 'triangles' or infill_pattern == 'trihexagon' or infill_pattern == 'cubic' or infill_pattern == 'cubicsubdiv' else (2 if infill_pattern == 'tetrahedral' or infill_pattern == 'quarter_cubic' else (1 if infill_pattern == 'cross' or infill_pattern == 'cross_3d' else 1)))) infill_pattern = grid infill_sparse_density = 25 +jerk_enabled = True +layer_height = 0.2 +layer_height_0 = 0.2 material_flow_layer_0 = 95 retraction_amount = 6 skin_angles = [90 ] @@ -33,6 +31,7 @@ skirt_brim_speed = 25.0 speed_layer_0 = 25.0 speed_travel_layer_0 = 125.0 speed_wall_x = 50.0 +support_enable = False support_xy_distance = 0.2 top_bottom_thickness = 1 wall_0_inset = 0.2 @@ -40,3 +39,4 @@ wall_0_material_flow = 95 wall_0_wipe_dist = 0.4 wall_thickness = 1.2 z_seam_type = sharpest_corner + diff --git a/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg b/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg index 3cf7e3c1f3..6da0c1df02 100644 --- a/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Draft definition = eryone_er20 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] acceleration_print = 1500 @@ -16,3 +16,4 @@ layer_height = 0.3 layer_height_0 = 0.3 speed_print = 80 speed_support = 60 + diff --git a/resources/quality/eryone_er20/eryone_er20_high.inst.cfg b/resources/quality/eryone_er20/eryone_er20_high.inst.cfg index e8b8fb09e0..02018afa92 100644 --- a/resources/quality/eryone_er20/eryone_er20_high.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_high.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = High definition = eryone_er20 +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] acceleration_print = 500 @@ -16,3 +16,4 @@ layer_height = 0.15 layer_height_0 = 0.2 speed_print = 50 speed_support = 30 + diff --git a/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg b/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg index 89a8af5b8c..30387220c0 100644 --- a/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Normal definition = eryone_er20 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] acceleration_print = 1000 @@ -16,3 +16,4 @@ layer_height = 0.2 layer_height_0 = 0.2 speed_print = 50 speed_support = 30 + 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 4b2e7d29fc..cfaa2a9152 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg @@ -1,29 +1,30 @@ [general] -version = 4 -name = Extra Fast definition = eryone_thinker +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 global_quality = True +quality_type = verydraft +setting_version = 22 +type = quality +weight = -3 [values] acceleration_print = 1500 acceleration_travel = 3000 +bottom_layers = 2 infill_sparse_density = 10 initial_layer_line_width_factor = 100.0 layer_height = 0.3 skirt_brim_speed = =math.ceil(speed_print * 40 / 50) -speed_print = 100.0 speed_infill = =math.ceil(speed_print * 60 / 50) +speed_layer_0 = =math.ceil(speed_print * 40 / 50) +speed_print = 100.0 speed_topbottom = =math.ceil(speed_print * 40 / 50) speed_travel = =speed_print if magic_spiralize else 150 -speed_layer_0 = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_print * 40 / 50) speed_wall_x = =math.ceil(speed_print * 60 / 50) top_layers = 4 -bottom_layers = 2 wall_line_count = 2 + diff --git a/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg index b9912cd7a0..aec233fc9f 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Fast definition = eryone_thinker +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] acceleration_print = 1500 acceleration_travel = 3000 +bottom_layers = 3 infill_sparse_density = 15 initial_layer_line_width_factor = 110.0 layer_height = 0.25 @@ -21,5 +22,5 @@ speed_topbottom = =math.ceil(speed_print * 40 / 60) speed_travel = =speed_print if magic_spiralize else 150 speed_wall_x = =math.ceil(speed_print * 80 / 60) top_layers = 5 -bottom_layers = 3 -wall_line_count = 2 \ No newline at end of file +wall_line_count = 2 + diff --git a/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg index 858e107bbb..d4a0e28def 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine definition = eryone_thinker +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 2 global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = 2 [values] alternate_extra_perimeter = true +bottom_layers = 8 infill_sparse_density = 30 initial_layer_line_width_factor = 130.0 layer_height = 0.1 @@ -19,4 +20,4 @@ speed_print = 40.0 speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_travel = =speed_print if magic_spiralize else 100 top_layers = 12 -bottom_layers = 8 + diff --git a/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg index 481bb42eaa..82e16a4d1e 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg @@ -1,17 +1,18 @@ [general] -version = 4 -name = High definition = eryone_thinker +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] alternate_extra_perimeter = true +bottom_layers = 6 infill_sparse_density = 25 initial_layer_line_width_factor = 125.0 layer_height = 0.15 @@ -19,4 +20,4 @@ speed_print = 50.0 speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_travel = =speed_print if magic_spiralize else 100 top_layers = 8 -bottom_layers = 6 + diff --git a/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg index 48c787bc3b..1a27f0b991 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Normal definition = eryone_thinker +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] + diff --git a/resources/quality/extra_coarse.inst.cfg b/resources/quality/extra_coarse.inst.cfg index 0f08ddaaef..2dabe4ae3e 100644 --- a/resources/quality/extra_coarse.inst.cfg +++ b/resources/quality/extra_coarse.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Extra Coarse definition = fdmprinter +name = Extra Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = -4 global_quality = True +quality_type = extra coarse +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.6 + diff --git a/resources/quality/extra_fast.inst.cfg b/resources/quality/extra_fast.inst.cfg index 70571c423f..d4f8d0fbfe 100644 --- a/resources/quality/extra_fast.inst.cfg +++ b/resources/quality/extra_fast.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Extra Fast definition = fdmprinter +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 global_quality = True +quality_type = verydraft +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.3 + diff --git a/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg index aa36a94cbd..9a0a77a2d0 100644 --- a/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 definition = fabtotum name = Fast Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_abs +quality_type = fast +setting_version = 22 +type = quality variant = Lite 0.4 mm +weight = -1 [values] adhesion_type = raft -speed_print = 80 -layer_height = 0.2 -layer_height_0 = 0.2 cool_fan_enabled = False cool_fan_full_at_height = 0.4 cool_fan_speed = 50 @@ -23,3 +20,5 @@ cool_fan_speed_max = 50 cool_fan_speed_min = 50 cool_min_layer_time = 3 cool_min_speed = 20 +speed_print = 80 + diff --git a/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg index 8afdd25424..571f41a226 100644 --- a/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 definition = fabtotum name = High Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality variant = Lite 0.4 mm +weight = 1 [values] adhesion_type = raft -speed_print = 45 -layer_height = 0.1 -layer_height_0 = 0.1 cool_fan_enabled = False cool_fan_full_at_height = 0.2 cool_fan_speed = 50 @@ -23,3 +20,5 @@ cool_fan_speed_max = 50 cool_fan_speed_min = 50 cool_min_layer_time = 3 cool_min_speed = 20 +speed_print = 45 + diff --git a/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg index 5b4501657f..e745ed6a7b 100644 --- a/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 definition = fabtotum name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = Lite 0.4 mm +weight = 0 [values] adhesion_type = raft -speed_print = 60 -layer_height = 0.15 -layer_height_0 = 0.15 cool_fan_enabled = False cool_fan_full_at_height = 0.3 cool_fan_speed = 50 @@ -23,3 +20,5 @@ cool_fan_speed_max = 50 cool_fan_speed_min = 50 cool_min_layer_time = 3 cool_min_speed = 20 +speed_print = 60 + diff --git a/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg index a2f97e6fdc..20ca90e629 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg @@ -1,15 +1,15 @@ [general] -version = 4 -name = Fast Quality definition = fabtotum +name = Fast Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_nylon +quality_type = fast +setting_version = 22 +type = quality variant = Lite 0.4 mm +weight = -1 [values] adhesion_type = raft @@ -23,14 +23,12 @@ cool_min_layer_time = 5 cool_min_speed = 0 infill_overlap = 15 infill_sparse_density = 24 -layer_height = 0.20 -layer_height_0 = 0.15 line_width = =machine_nozzle_size material_flow = 100 raft_airgap = 0.22 -raft_base_line_width= =line_width * 2 +raft_base_line_width = =line_width * 2 raft_base_thickness = =layer_height_0 * 2 -raft_interface_line_width = =line_width +raft_interface_line_width = =line_width raft_interface_thickness = =layer_height raft_margin = 5 raft_surface_layers = 2 @@ -56,3 +54,4 @@ support_z_distance = 0.15 top_bottom_thickness = 0.8 wall_thickness = 0.8 z_seam_type = random + diff --git a/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg index 6d8ebac406..349d84c7f7 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg @@ -1,15 +1,15 @@ [general] -version = 4 -name = High Quality definition = fabtotum +name = High Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_nylon +quality_type = high +setting_version = 22 +type = quality variant = Lite 0.4 mm +weight = 1 [values] adhesion_type = raft @@ -23,14 +23,12 @@ cool_min_layer_time = 5 cool_min_speed = 0 infill_overlap = 15 infill_sparse_density = 24 -layer_height = 0.10 -layer_height_0 = 0.10 line_width = =machine_nozzle_size material_flow = 100 raft_airgap = 0.22 -raft_base_line_width= =line_width * 2 +raft_base_line_width = =line_width * 2 raft_base_thickness = =layer_height_0 * 2 -raft_interface_line_width = =line_width +raft_interface_line_width = =line_width raft_interface_thickness = =layer_height raft_margin = 5 raft_surface_layers = 2 @@ -56,3 +54,4 @@ support_z_distance = 0.15 top_bottom_thickness = 0.8 wall_thickness = 0.8 z_seam_type = random + diff --git a/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg index b29dd370f5..11e69d6a7f 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal Quality definition = fabtotum +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_nylon +quality_type = normal +setting_version = 22 +type = quality variant = Lite 0.4 mm +weight = 0 [values] adhesion_type = raft @@ -23,14 +23,12 @@ cool_min_layer_time = 5 cool_min_speed = 0 infill_overlap = 15 infill_sparse_density = 24 -layer_height = 0.15 -layer_height_0 = 0.10 line_width = =machine_nozzle_size material_flow = 100 raft_airgap = 0.22 -raft_base_line_width= =line_width * 2 +raft_base_line_width = =line_width * 2 raft_base_thickness = =layer_height_0 * 2 -raft_interface_line_width = =line_width +raft_interface_line_width = =line_width raft_interface_thickness = =layer_height raft_margin = 5 raft_surface_layers = 2 @@ -56,3 +54,4 @@ support_z_distance = 0.15 top_bottom_thickness = 0.8 wall_thickness = 0.8 z_seam_type = random + diff --git a/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg index 0df61d9b21..d6e0244941 100644 --- a/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 definition = fabtotum name = Fast Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pla +quality_type = fast +setting_version = 22 +type = quality variant = Lite 0.4 mm +weight = -1 [values] adhesion_type = skirt -speed_print = 80 -layer_height = 0.2 -layer_height_0 = 0.2 cool_fan_enabled = True cool_fan_full_at_height = 0.4 cool_fan_speed = 100 @@ -23,3 +20,5 @@ cool_fan_speed_max = 100 cool_fan_speed_min = 100 cool_min_layer_time = 5 cool_min_speed = 20 +speed_print = 80 + diff --git a/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg index e20a86e503..635704ed98 100644 --- a/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 definition = fabtotum name = High Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality variant = Lite 0.4 mm +weight = 1 [values] adhesion_type = skirt -speed_print = 45 -layer_height = 0.1 -layer_height_0 = 0.1 cool_fan_enabled = True cool_fan_full_at_height = 0.2 cool_fan_speed = 100 @@ -23,3 +20,5 @@ cool_fan_speed_max = 100 cool_fan_speed_min = 100 cool_min_layer_time = 5 cool_min_speed = 20 +speed_print = 45 + diff --git a/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg index 70cb0d7f67..e8bfa117da 100644 --- a/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 definition = fabtotum name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = Lite 0.4 mm +weight = 0 [values] adhesion_type = skirt -speed_print = 60 -layer_height = 0.15 -layer_height_0 = 0.15 cool_fan_enabled = True cool_fan_full_at_height = 0.3 cool_fan_speed = 100 @@ -23,3 +20,5 @@ cool_fan_speed_max = 100 cool_fan_speed_min = 100 cool_min_layer_time = 5 cool_min_speed = 20 +speed_print = 60 + diff --git a/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg index cdd814e02d..413578becb 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 definition = fabtotum name = Fast Quality +version = 4 [metadata] -type = quality -setting_version = 20 material = generic_tpu -variant = Lite 0.4 mm quality_type = fast +setting_version = 22 +type = quality +variant = Lite 0.4 mm weight = -1 [values] adhesion_type = skirt -speed_print = 80 -layer_height = 0.2 -layer_height_0 = 0.2 cool_fan_enabled = True cool_fan_full_at_height = 0.4 cool_fan_speed = 100 @@ -23,4 +20,5 @@ cool_fan_speed_max = 100 cool_fan_speed_min = 100 cool_min_layer_time = 5 cool_min_speed = 20 +speed_print = 80 diff --git a/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg index 1f287605ee..96c9459e2b 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg @@ -1,20 +1,18 @@ [general] -version = 4 definition = fabtotum name = High Quality +version = 4 [metadata] -type = quality -setting_version = 20 material = generic_tpu -variant = Lite 0.4 mm quality_type = high +setting_version = 22 +type = quality +variant = Lite 0.4 mm weight = 1 [values] adhesion_type = skirt -layer_height = 0.1 -layer_height_0 = 0.1 cool_fan_enabled = True cool_fan_full_at_height = 0.2 cool_fan_speed = 100 diff --git a/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg index f146a41ef2..acbc66cd2f 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 definition = fabtotum name = Normal Quality +version = 4 [metadata] -type = quality -setting_version = 20 material = generic_tpu -variant = Lite 0.4 mm quality_type = normal +setting_version = 22 +type = quality +variant = Lite 0.4 mm weight = 0 [values] adhesion_type = skirt -speed_print = 80 -layer_height = 0.15 -layer_height_0 = 0.15 cool_fan_enabled = True cool_fan_full_at_height = 0.3 cool_fan_speed = 100 @@ -23,4 +20,5 @@ cool_fan_speed_max = 100 cool_fan_speed_min = 100 cool_min_layer_time = 5 cool_min_speed = 20 +speed_print = 80 diff --git a/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg index b944d37e6d..53b241e1e7 100644 --- a/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg @@ -1,36 +1,36 @@ [general] -version = 4 -name = Draft definition = fabxpro +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Draft -weight = -2 -material = redd_abs global_quality = True - +material = redd_abs +quality_type = Draft +setting_version = 22 +type = quality +weight = -2 [values] +adhesion_type = raft +cool_fan_enabled = False +infill_before_walls = False +initial_layer_line_width_factor = 150 layer_height = 0.3 layer_height_0 = 0.35 -initial_layer_line_width_factor = 150 -infill_before_walls = False -speed_print = 55 -speed_travel = 70 +raft_airgap = 0.35 +raft_base_thickness = 0.6 +raft_margin = 5 +raft_surface_layers = 1 +raft_surface_line_spacing = 0.6 +raft_surface_thickness = 0.1 retraction_amount = 1 retraction_speed = 40 -adhesion_type = raft -raft_margin = 5 -raft_airgap = 0.35 -raft_surface_layers = 1 -raft_surface_thickness = 0.1 -raft_surface_line_spacing = 0.6 -raft_base_thickness = 0.6 -cool_fan_enabled = False +speed_print = 55 +speed_travel = 70 support_enable = True -support_pattern = lines support_infill_rate = 15 -support_z_distance = 0.15 +support_pattern = lines support_xy_distance = 0.85 +support_z_distance = 0.15 + diff --git a/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg index 230656ba2b..9cb37a009e 100644 --- a/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg @@ -1,35 +1,36 @@ [general] -version = 4 -name = Fine definition = fabxpro +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Fine -weight = -2 -material = redd_abs global_quality = True +material = redd_abs +quality_type = Fine +setting_version = 22 +type = quality +weight = -2 [values] +adhesion_type = raft +cool_fan_enabled = False +infill_before_walls = False +initial_layer_line_width_factor = 150 layer_height = 0.1 layer_height_0 = 0.15 -initial_layer_line_width_factor = 150 -infill_before_walls = False -speed_print = 55 -speed_travel = 70 +raft_airgap = 0.35 +raft_base_thickness = 0.6 +raft_margin = 5 +raft_surface_layers = 1 +raft_surface_line_spacing = 0.6 +raft_surface_thickness = 0.1 retraction_amount = 1 retraction_speed = 40 -adhesion_type = raft -raft_margin = 5 -raft_airgap = 0.35 -raft_surface_layers = 1 -raft_surface_thickness = 0.1 -raft_surface_line_spacing = 0.6 -raft_base_thickness = 0.6 -cool_fan_enabled = False +speed_print = 55 +speed_travel = 70 support_enable = True -support_pattern = lines support_infill_rate = 15 -support_z_distance = 0.15 +support_pattern = lines support_xy_distance = 0.85 +support_z_distance = 0.15 + diff --git a/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg index ecb065f17d..0cbba43d8b 100644 --- a/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg @@ -1,35 +1,36 @@ [general] -version = 4 -name = Normal definition = fabxpro +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Normal -weight = -2 -material = redd_abs global_quality = True +material = redd_abs +quality_type = Normal +setting_version = 22 +type = quality +weight = -2 [values] +adhesion_type = raft +cool_fan_enabled = False +infill_before_walls = False +initial_layer_line_width_factor = 150 layer_height = 0.2 layer_height_0 = 0.3 -initial_layer_line_width_factor = 150 -infill_before_walls = False -speed_print = 55 -speed_travel = 70 +raft_airgap = 0.35 +raft_base_thickness = 0.6 +raft_margin = 5 +raft_surface_layers = 1 +raft_surface_line_spacing = 0.6 +raft_surface_thickness = 0.1 retraction_amount = 1 retraction_speed = 40 -adhesion_type = raft -raft_margin = 5 -raft_airgap = 0.35 -raft_surface_layers = 1 -raft_surface_thickness = 0.1 -raft_surface_line_spacing = 0.6 -raft_base_thickness = 0.6 -cool_fan_enabled = False +speed_print = 55 +speed_travel = 70 support_enable = True -support_pattern = lines support_infill_rate = 15 -support_z_distance = 0.15 +support_pattern = lines support_xy_distance = 0.85 +support_z_distance = 0.15 + diff --git a/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg index 501d0ba59b..16662f6dbb 100644 --- a/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg @@ -1,36 +1,36 @@ [general] -version = 4 -name = Draft definition = fabxpro +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Draft -weight = -2 -material = redd_asa global_quality = True - +material = redd_asa +quality_type = Draft +setting_version = 22 +type = quality +weight = -2 [values] +adhesion_type = raft +cool_fan_enabled = False +infill_before_walls = False +initial_layer_line_width_factor = 150 layer_height = 0.3 layer_height_0 = 0.35 -initial_layer_line_width_factor = 150 -infill_before_walls = False -speed_print = 55 -speed_travel = 70 +raft_airgap = 0.35 +raft_base_thickness = 0.6 +raft_margin = 5 +raft_surface_layers = 1 +raft_surface_line_spacing = 0.6 +raft_surface_thickness = 0.1 retraction_amount = 1 retraction_speed = 40 -adhesion_type = raft -raft_margin = 5 -raft_airgap = 0.35 -raft_surface_layers = 1 -raft_surface_thickness = 0.1 -raft_surface_line_spacing = 0.6 -raft_base_thickness = 0.6 -cool_fan_enabled = False +speed_print = 55 +speed_travel = 70 support_enable = True -support_pattern = lines support_infill_rate = 15 -support_z_distance = 0.15 +support_pattern = lines support_xy_distance = 0.85 +support_z_distance = 0.15 + diff --git a/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg index 446d0c3a92..dff57e30dc 100644 --- a/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg @@ -1,36 +1,36 @@ [general] -version = 4 -name = Fine definition = fabxpro +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Fine -weight = -2 -material = redd_asa global_quality = True +material = redd_asa +quality_type = Fine +setting_version = 22 +type = quality +weight = -2 [values] +adhesion_type = raft +cool_fan_enabled = False +infill_before_walls = False +initial_layer_line_width_factor = 150 layer_height = 0.1 layer_height_0 = 0.15 -initial_layer_line_width_factor = 150 -infill_before_walls = False -speed_print = 55 -speed_travel = 70 +raft_airgap = 0.35 +raft_base_thickness = 0.6 +raft_margin = 5 +raft_surface_layers = 1 +raft_surface_line_spacing = 0.6 +raft_surface_thickness = 0.1 retraction_amount = 1 retraction_speed = 40 -adhesion_type = raft -raft_margin = 5 -raft_airgap = 0.35 -raft_surface_layers = 1 -raft_surface_thickness = 0.1 -raft_surface_line_spacing = 0.6 -raft_base_thickness = 0.6 -cool_fan_enabled = False +speed_print = 55 +speed_travel = 70 support_enable = True -support_pattern = lines support_infill_rate = 15 -support_z_distance = 0.15 +support_pattern = lines support_xy_distance = 0.85 +support_z_distance = 0.15 diff --git a/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg index eab648ad18..439851223f 100644 --- a/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg @@ -1,35 +1,36 @@ [general] -version = 4 -name = Normal definition = fabxpro +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Normal -weight = -2 -material = redd_asa global_quality = True +material = redd_asa +quality_type = Normal +setting_version = 22 +type = quality +weight = -2 [values] +adhesion_type = raft +cool_fan_enabled = False +infill_before_walls = False +initial_layer_line_width_factor = 150 layer_height = 0.2 layer_height_0 = 0.3 -initial_layer_line_width_factor = 150 -infill_before_walls = False -speed_print = 55 -speed_travel = 70 +raft_airgap = 0.35 +raft_base_thickness = 0.6 +raft_margin = 5 +raft_surface_layers = 1 +raft_surface_line_spacing = 0.6 +raft_surface_thickness = 0.1 retraction_amount = 1 retraction_speed = 40 -adhesion_type = raft -raft_margin = 5 -raft_airgap = 0.35 -raft_surface_layers = 1 -raft_surface_thickness = 0.1 -raft_surface_line_spacing = 0.6 -raft_base_thickness = 0.6 -cool_fan_enabled = False +speed_print = 55 +speed_travel = 70 support_enable = True -support_pattern = lines support_infill_rate = 15 +support_pattern = lines +support_xy_distance = 0.85 support_z_distance = 0.15 -support_xy_distance = 0.85 \ No newline at end of file + diff --git a/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg index 1e559075aa..1967e62c5c 100644 --- a/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg @@ -1,36 +1,36 @@ [general] -version = 4 -name = Draft definition = fabxpro +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Draft -weight = -2 -material = redd_hips global_quality = True - +material = redd_hips +quality_type = Draft +setting_version = 22 +type = quality +weight = -2 [values] +adhesion_type = raft +cool_fan_enabled = False +infill_before_walls = False +initial_layer_line_width_factor = 150 layer_height = 0.3 layer_height_0 = 0.35 -initial_layer_line_width_factor = 150 -infill_before_walls = False -speed_print = 55 -speed_travel = 70 +raft_airgap = 0.35 +raft_base_thickness = 0.6 +raft_margin = 5 +raft_surface_layers = 1 +raft_surface_line_spacing = 0.6 +raft_surface_thickness = 0.1 retraction_amount = 1 retraction_speed = 40 -adhesion_type = raft -raft_margin = 5 -raft_airgap = 0.35 -raft_surface_layers = 1 -raft_surface_thickness = 0.1 -raft_surface_line_spacing = 0.6 -raft_base_thickness = 0.6 -cool_fan_enabled = False +speed_print = 55 +speed_travel = 70 support_enable = True -support_pattern = lines support_infill_rate = 15 -support_z_distance = 0.15 +support_pattern = lines support_xy_distance = 0.85 +support_z_distance = 0.15 + diff --git a/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg index 4939b47787..d722ca9b7b 100644 --- a/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg @@ -1,36 +1,36 @@ [general] -version = 4 -name = Fine definition = fabxpro +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Fine -weight = -2 -material = redd_hips global_quality = True +material = redd_hips +quality_type = Fine +setting_version = 22 +type = quality +weight = -2 [values] +adhesion_type = raft +cool_fan_enabled = False +infill_before_walls = False +initial_layer_line_width_factor = 150 layer_height = 0.1 layer_height_0 = 0.15 -initial_layer_line_width_factor = 150 -infill_before_walls = False -speed_print = 55 -speed_travel = 70 +raft_airgap = 0.35 +raft_base_thickness = 0.6 +raft_margin = 5 +raft_surface_layers = 1 +raft_surface_line_spacing = 0.6 +raft_surface_thickness = 0.1 retraction_amount = 1 retraction_speed = 40 -adhesion_type = raft -raft_margin = 5 -raft_airgap = 0.35 -raft_surface_layers = 1 -raft_surface_thickness = 0.1 -raft_surface_line_spacing = 0.6 -raft_base_thickness = 0.6 -cool_fan_enabled = False +speed_print = 55 +speed_travel = 70 support_enable = True -support_pattern = lines support_infill_rate = 15 -support_z_distance = 0.15 +support_pattern = lines support_xy_distance = 0.85 +support_z_distance = 0.15 diff --git a/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg index ecf4b049bf..6c9faff53e 100644 --- a/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg @@ -1,35 +1,36 @@ [general] -version = 4 -name = Normal definition = fabxpro +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Normal -weight = -2 -material = redd_hips global_quality = True +material = redd_hips +quality_type = Normal +setting_version = 22 +type = quality +weight = -2 [values] +adhesion_type = raft +cool_fan_enabled = False +infill_before_walls = False +initial_layer_line_width_factor = 150 layer_height = 0.2 layer_height_0 = 0.3 -initial_layer_line_width_factor = 150 -infill_before_walls = False -speed_print = 55 -speed_travel = 70 +raft_airgap = 0.35 +raft_base_thickness = 0.6 +raft_margin = 5 +raft_surface_layers = 1 +raft_surface_line_spacing = 0.6 +raft_surface_thickness = 0.1 retraction_amount = 1 retraction_speed = 40 -adhesion_type = raft -raft_margin = 5 -raft_airgap = 0.35 -raft_surface_layers = 1 -raft_surface_thickness = 0.1 -raft_surface_line_spacing = 0.6 -raft_base_thickness = 0.6 -cool_fan_enabled = False +speed_print = 55 +speed_travel = 70 support_enable = True -support_pattern = lines support_infill_rate = 15 +support_pattern = lines +support_xy_distance = 0.85 support_z_distance = 0.15 -support_xy_distance = 0.85 \ No newline at end of file + diff --git a/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg index 0d2f425761..d9de619b07 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg @@ -1,36 +1,36 @@ [general] -version = 4 -name = Draft definition = fabxpro +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Draft -weight = -2 -material = redd_nylon global_quality = True - +material = redd_nylon +quality_type = Draft +setting_version = 22 +type = quality +weight = -2 [values] +adhesion_type = raft +cool_fan_enabled = False +infill_before_walls = False +initial_layer_line_width_factor = 150 layer_height = 0.3 layer_height_0 = 0.35 -initial_layer_line_width_factor = 150 -infill_before_walls = False -speed_print = 55 -speed_travel = 70 +raft_airgap = 0.35 +raft_base_thickness = 0.6 +raft_margin = 5 +raft_surface_layers = 1 +raft_surface_line_spacing = 0.6 +raft_surface_thickness = 0.1 retraction_amount = 1 retraction_speed = 40 -adhesion_type = raft -raft_margin = 5 -raft_airgap = 0.35 -raft_surface_layers = 1 -raft_surface_thickness = 0.1 -raft_surface_line_spacing = 0.6 -raft_base_thickness = 0.6 -cool_fan_enabled = False +speed_print = 55 +speed_travel = 70 support_enable = True -support_pattern = lines support_infill_rate = 15 -support_z_distance = 0.15 +support_pattern = lines support_xy_distance = 0.85 +support_z_distance = 0.15 + diff --git a/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg index 2881c04058..ad46a8a0f9 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg @@ -1,36 +1,36 @@ [general] -version = 4 -name = Fine definition = fabxpro +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Fine -weight = -2 -material = redd_nylon global_quality = True +material = redd_nylon +quality_type = Fine +setting_version = 22 +type = quality +weight = -2 [values] +adhesion_type = raft +cool_fan_enabled = False +infill_before_walls = False +initial_layer_line_width_factor = 150 layer_height = 0.1 layer_height_0 = 0.15 -initial_layer_line_width_factor = 150 -infill_before_walls = False -speed_print = 55 -speed_travel = 70 +raft_airgap = 0.35 +raft_base_thickness = 0.6 +raft_margin = 5 +raft_surface_layers = 1 +raft_surface_line_spacing = 0.6 +raft_surface_thickness = 0.1 retraction_amount = 1 retraction_speed = 40 -adhesion_type = raft -raft_margin = 5 -raft_airgap = 0.35 -raft_surface_layers = 1 -raft_surface_thickness = 0.1 -raft_surface_line_spacing = 0.6 -raft_base_thickness = 0.6 -cool_fan_enabled = False +speed_print = 55 +speed_travel = 70 support_enable = True -support_pattern = lines support_infill_rate = 15 -support_z_distance = 0.15 +support_pattern = lines support_xy_distance = 0.85 +support_z_distance = 0.15 diff --git a/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg index 4a1cdda3fb..8bf3d5f172 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg @@ -1,35 +1,36 @@ [general] -version = 4 -name = Normal definition = fabxpro +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Normal -weight = -2 -material = redd_nylon global_quality = True +material = redd_nylon +quality_type = Normal +setting_version = 22 +type = quality +weight = -2 [values] +adhesion_type = raft +cool_fan_enabled = False +infill_before_walls = False +initial_layer_line_width_factor = 150 layer_height = 0.2 layer_height_0 = 0.3 -initial_layer_line_width_factor = 150 -infill_before_walls = False -speed_print = 55 -speed_travel = 70 +raft_airgap = 0.35 +raft_base_thickness = 0.6 +raft_margin = 5 +raft_surface_layers = 1 +raft_surface_line_spacing = 0.6 +raft_surface_thickness = 0.1 retraction_amount = 1 retraction_speed = 40 -adhesion_type = raft -raft_margin = 5 -raft_airgap = 0.35 -raft_surface_layers = 1 -raft_surface_thickness = 0.1 -raft_surface_line_spacing = 0.6 -raft_base_thickness = 0.6 -cool_fan_enabled = False +speed_print = 55 +speed_travel = 70 support_enable = True -support_pattern = lines support_infill_rate = 15 +support_pattern = lines +support_xy_distance = 0.85 support_z_distance = 0.15 -support_xy_distance = 0.85 \ No newline at end of file + diff --git a/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg index ca967aa81b..536bc78817 100644 --- a/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg @@ -1,36 +1,36 @@ [general] -version = 4 -name = Draft definition = fabxpro +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Draft -weight = -2 -material = redd_petg global_quality = True - +material = redd_petg +quality_type = Draft +setting_version = 22 +type = quality +weight = -2 [values] +adhesion_type = raft +cool_fan_enabled = False +infill_before_walls = False +initial_layer_line_width_factor = 150 layer_height = 0.3 layer_height_0 = 0.35 -initial_layer_line_width_factor = 150 -infill_before_walls = False -speed_print = 55 -speed_travel = 70 +raft_airgap = 0.35 +raft_base_thickness = 0.6 +raft_margin = 5 +raft_surface_layers = 1 +raft_surface_line_spacing = 0.6 +raft_surface_thickness = 0.1 retraction_amount = 1 retraction_speed = 40 -adhesion_type = raft -raft_margin = 5 -raft_airgap = 0.35 -raft_surface_layers = 1 -raft_surface_thickness = 0.1 -raft_surface_line_spacing = 0.6 -raft_base_thickness = 0.6 -cool_fan_enabled = False +speed_print = 55 +speed_travel = 70 support_enable = True -support_pattern = lines support_infill_rate = 15 -support_z_distance = 0.15 +support_pattern = lines support_xy_distance = 0.85 +support_z_distance = 0.15 + diff --git a/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg index feb1cad47d..5bdc47aa27 100644 --- a/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg @@ -1,36 +1,36 @@ [general] -version = 4 -name = Fine definition = fabxpro +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Fine -weight = -2 -material = redd_petg global_quality = True +material = redd_petg +quality_type = Fine +setting_version = 22 +type = quality +weight = -2 [values] +adhesion_type = raft +cool_fan_enabled = False +infill_before_walls = False +initial_layer_line_width_factor = 150 layer_height = 0.1 layer_height_0 = 0.15 -initial_layer_line_width_factor = 150 -infill_before_walls = False -speed_print = 55 -speed_travel = 70 +raft_airgap = 0.35 +raft_base_thickness = 0.6 +raft_margin = 5 +raft_surface_layers = 1 +raft_surface_line_spacing = 0.6 +raft_surface_thickness = 0.1 retraction_amount = 1 retraction_speed = 40 -adhesion_type = raft -raft_margin = 5 -raft_airgap = 0.35 -raft_surface_layers = 1 -raft_surface_thickness = 0.1 -raft_surface_line_spacing = 0.6 -raft_base_thickness = 0.6 -cool_fan_enabled = False +speed_print = 55 +speed_travel = 70 support_enable = True -support_pattern = lines support_infill_rate = 15 -support_z_distance = 0.15 +support_pattern = lines support_xy_distance = 0.85 +support_z_distance = 0.15 diff --git a/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg index 211549ed58..507f1919dc 100644 --- a/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg @@ -1,35 +1,36 @@ [general] -version = 4 -name = Normal definition = fabxpro +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Normal -weight = -2 -material = redd_petg global_quality = True +material = redd_petg +quality_type = Normal +setting_version = 22 +type = quality +weight = -2 [values] +adhesion_type = raft +cool_fan_enabled = False +infill_before_walls = False +initial_layer_line_width_factor = 150 layer_height = 0.2 layer_height_0 = 0.3 -initial_layer_line_width_factor = 150 -infill_before_walls = False -speed_print = 55 -speed_travel = 70 +raft_airgap = 0.35 +raft_base_thickness = 0.6 +raft_margin = 5 +raft_surface_layers = 1 +raft_surface_line_spacing = 0.6 +raft_surface_thickness = 0.1 retraction_amount = 1 retraction_speed = 40 -adhesion_type = raft -raft_margin = 5 -raft_airgap = 0.35 -raft_surface_layers = 1 -raft_surface_thickness = 0.1 -raft_surface_line_spacing = 0.6 -raft_base_thickness = 0.6 -cool_fan_enabled = False +speed_print = 55 +speed_travel = 70 support_enable = True -support_pattern = lines support_infill_rate = 15 +support_pattern = lines +support_xy_distance = 0.85 support_z_distance = 0.15 -support_xy_distance = 0.85 \ No newline at end of file + diff --git a/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg index ba168e0fb7..e9f2da3220 100644 --- a/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg @@ -1,31 +1,32 @@ [general] -version = 4 -name = Draft definition = fabxpro +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Draft -weight = -2 -material = redd_pla global_quality = True +material = redd_pla +quality_type = Draft +setting_version = 22 +type = quality +weight = -2 [values] -layer_height = 0.3 -layer_height_0 = 0.35 -initial_layer_line_width_factor = 150 -infill_before_walls = False -speed_print = 55 -speed_travel = 70 -retraction_amount = 1 -retraction_speed = 40 adhesion_type = skirt cool_fan_enabled = true -cool_fan_speed = 100 cool_fan_full_at_height = 0.6 +cool_fan_speed = 100 +infill_before_walls = False +initial_layer_line_width_factor = 150 +layer_height = 0.3 +layer_height_0 = 0.35 +retraction_amount = 1 +retraction_speed = 40 +speed_print = 55 +speed_travel = 70 support_enable = True -support_pattern = lines support_infill_rate = 15 -support_z_distance = 0.15 +support_pattern = lines support_xy_distance = 0.85 +support_z_distance = 0.15 + diff --git a/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg index 6055def2b3..85b3e983e4 100644 --- a/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg @@ -1,31 +1,32 @@ [general] -version = 4 -name = Fine definition = fabxpro +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Fine -weight = -2 -material = redd_pla global_quality = True +material = redd_pla +quality_type = Fine +setting_version = 22 +type = quality +weight = -2 [values] -layer_height = 0.1 -layer_height_0 = 0.15 -initial_layer_line_width_factor = 150 -infill_before_walls = False -speed_print = 55 -speed_travel = 70 -retraction_amount = 1 -retraction_speed = 40 adhesion_type = skirt cool_fan_enabled = true -cool_fan_speed = 100 cool_fan_full_at_height = 0.6 +cool_fan_speed = 100 +infill_before_walls = False +initial_layer_line_width_factor = 150 +layer_height = 0.1 +layer_height_0 = 0.15 +retraction_amount = 1 +retraction_speed = 40 +speed_print = 55 +speed_travel = 70 support_enable = True -support_pattern = lines support_infill_rate = 15 -support_z_distance = 0.15 +support_pattern = lines support_xy_distance = 0.85 +support_z_distance = 0.15 + diff --git a/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg index 7542e0f623..7f3d48bb13 100644 --- a/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg @@ -1,31 +1,32 @@ [general] -version = 4 -name = Normal definition = fabxpro +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Normal -weight = -2 -material = redd_pla global_quality = True +material = redd_pla +quality_type = Normal +setting_version = 22 +type = quality +weight = -2 [values] -layer_height = 0.2 -layer_height_0 = 0.3 -initial_layer_line_width_factor = 150 -infill_before_walls = False -speed_print = 55 -speed_travel = 70 -retraction_amount = 1 -retraction_speed = 40 adhesion_type = skirt cool_fan_enabled = true -cool_fan_speed = 100 cool_fan_full_at_height = 0.6 +cool_fan_speed = 100 +infill_before_walls = False +initial_layer_line_width_factor = 150 +layer_height = 0.2 +layer_height_0 = 0.3 +retraction_amount = 1 +retraction_speed = 40 +speed_print = 55 +speed_travel = 70 support_enable = True -support_pattern = lines support_infill_rate = 15 -support_z_distance = 0.15 +support_pattern = lines support_xy_distance = 0.85 +support_z_distance = 0.15 + diff --git a/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg index 2ee918bfb5..60334ab70a 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg @@ -1,36 +1,36 @@ [general] -version = 4 -name = Draft definition = fabxpro +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Draft -weight = -2 -material = redd_tpe global_quality = True - +material = redd_tpe +quality_type = Draft +setting_version = 22 +type = quality +weight = -2 [values] +adhesion_type = raft +cool_fan_enabled = False +infill_before_walls = False +initial_layer_line_width_factor = 150 layer_height = 0.3 layer_height_0 = 0.35 -initial_layer_line_width_factor = 150 -infill_before_walls = False -speed_print = 35 -speed_travel = 70 +raft_airgap = 0.35 +raft_base_thickness = 0.6 +raft_margin = 5 +raft_surface_layers = 1 +raft_surface_line_spacing = 0.6 +raft_surface_thickness = 0.1 retraction_amount = 1 retraction_speed = 40 -adhesion_type = raft -raft_margin = 5 -raft_airgap = 0.35 -raft_surface_layers = 1 -raft_surface_thickness = 0.1 -raft_surface_line_spacing = 0.6 -raft_base_thickness = 0.6 -cool_fan_enabled = False +speed_print = 35 +speed_travel = 70 support_enable = True -support_pattern = lines support_infill_rate = 15 -support_z_distance = 0.15 +support_pattern = lines support_xy_distance = 0.85 +support_z_distance = 0.15 + diff --git a/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg index 38a62e1a49..6754b148d1 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg @@ -1,36 +1,36 @@ [general] -version = 4 -name = Fine definition = fabxpro +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Fine -weight = -2 -material = redd_tpe global_quality = True +material = redd_tpe +quality_type = Fine +setting_version = 22 +type = quality +weight = -2 [values] +adhesion_type = raft +cool_fan_enabled = False +infill_before_walls = False +initial_layer_line_width_factor = 150 layer_height = 0.1 layer_height_0 = 0.15 -initial_layer_line_width_factor = 150 -infill_before_walls = False -speed_print = 35 -speed_travel = 70 +raft_airgap = 0.35 +raft_base_thickness = 0.6 +raft_margin = 5 +raft_surface_layers = 1 +raft_surface_line_spacing = 0.6 +raft_surface_thickness = 0.1 retraction_amount = 1 retraction_speed = 40 -adhesion_type = raft -raft_margin = 5 -raft_airgap = 0.35 -raft_surface_layers = 1 -raft_surface_thickness = 0.1 -raft_surface_line_spacing = 0.6 -raft_base_thickness = 0.6 -cool_fan_enabled = False +speed_print = 35 +speed_travel = 70 support_enable = True -support_pattern = lines support_infill_rate = 15 -support_z_distance = 0.15 +support_pattern = lines support_xy_distance = 0.85 +support_z_distance = 0.15 diff --git a/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg index 56bd479f90..37b421399a 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg @@ -1,35 +1,36 @@ [general] -version = 4 -name = Normal definition = fabxpro +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Normal -weight = -2 -material = redd_tpe global_quality = True +material = redd_tpe +quality_type = Normal +setting_version = 22 +type = quality +weight = -2 [values] +adhesion_type = raft +cool_fan_enabled = False +infill_before_walls = False +initial_layer_line_width_factor = 150 layer_height = 0.2 layer_height_0 = 0.3 -initial_layer_line_width_factor = 150 -infill_before_walls = False -speed_print = 35 -speed_travel = 70 +raft_airgap = 0.35 +raft_base_thickness = 0.6 +raft_margin = 5 +raft_surface_layers = 1 +raft_surface_line_spacing = 0.6 +raft_surface_thickness = 0.1 retraction_amount = 1 retraction_speed = 40 -adhesion_type = raft -raft_margin = 5 -raft_airgap = 0.35 -raft_surface_layers = 1 -raft_surface_thickness = 0.1 -raft_surface_line_spacing = 0.6 -raft_base_thickness = 0.6 -cool_fan_enabled = False +speed_print = 35 +speed_travel = 70 support_enable = True -support_pattern = lines support_infill_rate = 15 +support_pattern = lines +support_xy_distance = 0.85 support_z_distance = 0.15 -support_xy_distance = 0.85 \ No newline at end of file + diff --git a/resources/quality/fast.inst.cfg b/resources/quality/fast.inst.cfg index 82394ae0ec..7fc6424250 100644 --- a/resources/quality/fast.inst.cfg +++ b/resources/quality/fast.inst.cfg @@ -1,20 +1,21 @@ [general] -version = 4 -name = Normal definition = fdmprinter +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] +cool_min_layer_time = 3 infill_sparse_density = 10 layer_height = 0.15 -cool_min_layer_time = 3 -speed_wall_0 = =math.ceil(speed_print * 40 / 60) -speed_wall_x = =math.ceil(speed_print * 80 / 60) speed_infill = =math.ceil(speed_print * 100 / 60) speed_topbottom = =math.ceil(speed_print * 30 / 60) +speed_wall_0 = =math.ceil(speed_print * 40 / 60) +speed_wall_x = =math.ceil(speed_print * 80 / 60) + 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 9bb426a857..2d8aefe9f9 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Quality definition = flashforge_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 d530aa0e24..d4593e2f2b 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Ultra Quality definition = flashforge_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_abs +quality_type = ultra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] @@ -20,4 +20,5 @@ material_print_temperature_layer_0 = 235 speed_infill = =speed_print speed_print = 30 speed_support = 30 -speed_travel = 100 \ No newline at end of file +speed_travel = 100 + 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 af039899d9..61dbce2980 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Dynamic Quality definition = flashforge_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 7398ceb8c8..792f5d6e28 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Standard Quality definition = flashforge_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 a1c99c8e7c..a37b7f6f13 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Quality definition = flashforge_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 f4807e7544..1222bdcdab 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Dynamic Quality definition = flashforge_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 0e9f51816a..0931880f75 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Draft Quality definition = flashforge_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 64f700962a..cd6705a7eb 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Low Quality definition = flashforge_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -20,4 +20,5 @@ material_print_temperature_layer_0 = 235 speed_infill = =speed_print speed_print = 30 speed_support = 30 -speed_travel = 100 \ No newline at end of file +speed_travel = 100 + 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 04b92d72fd..785d8001da 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Standard Quality definition = flashforge_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 2587735f72..c29879a70f 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Quality definition = flashforge_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 61bb2650c8..7a2a5f1c53 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Dynamic Quality definition = flashforge_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 83b10b2063..8a7f545da3 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Coarse Quality definition = flashforge_base +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse material = generic_abs +quality_type = coarse +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 1e2d501398..cbca7b4f4e 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Draft Quality definition = flashforge_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 ff64f36855..d11945113f 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Low Quality definition = flashforge_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] @@ -20,4 +20,5 @@ material_print_temperature_layer_0 = 235 speed_infill = =speed_print speed_print = 30 speed_support = 30 -speed_travel = 100 \ No newline at end of file +speed_travel = 100 + 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 f85c4c5b1d..8f9a0d1111 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Standard Quality definition = flashforge_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 c48065c478..25ab972517 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Coarse Quality definition = flashforge_base +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse material = generic_abs +quality_type = coarse +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 7f4a96e822..d9bb2bab9b 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Draft Quality definition = flashforge_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 881fb22cd4..b4b744f033 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Coarse Quality definition = flashforge_base +name = Extra Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Xcoarse material = generic_abs +quality_type = Xcoarse +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 251006534b..f3e0e2b70d 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Standard Quality definition = flashforge_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 81ed7a0ba0..e88180b1f3 100644 --- a/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Ultra Quality definition = flashforge_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra -weight = 0 global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +weight = 0 [values] adhesion_type = brim @@ -24,3 +24,4 @@ speed_infill = =speed_print speed_print = 40 speed_support = 30 speed_travel = 70 + 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 3ad72e3715..0da733d6f2 100644 --- a/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Super Quality definition = flashforge_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super -weight = -1 global_quality = True +quality_type = super +setting_version = 22 +type = quality +weight = -1 [values] adhesion_type = brim @@ -24,3 +24,4 @@ speed_infill = =speed_print speed_print = 40 speed_support = 30 speed_travel = 70 + 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 b3cbe28634..bf19c702eb 100644 --- a/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = flashforge_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive -weight = -2 global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +weight = -2 [values] adaptive_layer_height_enabled = true @@ -25,3 +25,4 @@ speed_infill = =speed_print speed_print = 50 speed_support = 30 speed_travel = 70 + 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 208e968b70..7b5c94aa37 100644 --- a/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = flashforge_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -3 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -3 [values] adhesion_type = brim @@ -24,3 +24,4 @@ speed_infill = =speed_print speed_print = 50 speed_support = 30 speed_travel = 70 + 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 d0d1a1d948..ed78aa2e6c 100644 --- a/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Low Quality definition = flashforge_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low -weight = -4 global_quality = True +quality_type = low +setting_version = 22 +type = quality +weight = -4 [values] adhesion_type = brim @@ -24,3 +24,4 @@ speed_infill = =speed_print speed_print = 50 speed_support = 30 speed_travel = 70 + 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 e9ada8ac1d..c6506bf1df 100644 --- a/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = flashforge_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -5 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -5 [values] adhesion_type = brim @@ -24,3 +24,4 @@ speed_infill = =speed_print speed_print = 40 speed_support = 30 speed_travel = 70 + 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 c1d8dc44fc..6e807e4ea7 100644 --- a/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Coarse Quality definition = flashforge_base +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -6 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -6 [values] adhesion_type = brim @@ -24,3 +24,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 70 + 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 e0823eb167..4d25b6eae4 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 @@ -1,14 +1,14 @@ [general] -version = 4 -name = Extra Coarse Quality definition = flashforge_base +name = Extra Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Xcoarse -weight = -7 global_quality = True +quality_type = Xcoarse +setting_version = 22 +type = quality +weight = -7 [values] adhesion_type = brim @@ -24,3 +24,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 70 + 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 5fed3b0b57..485effea9c 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Quality definition = flashforge_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 10547949ba..0c469988fe 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Ultra Quality definition = flashforge_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_petg +quality_type = ultra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 c99190b58f..77a7d13957 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Dynamic Quality definition = flashforge_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 cb9fc3c24c..d9e3355b36 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Standard Quality definition = flashforge_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 eb2b4e056e..6289044cc7 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Quality definition = flashforge_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 dce639472f..5bc3a40758 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Dynamic Quality definition = flashforge_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 7158ace797..8cda9a4e98 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Draft Quality definition = flashforge_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 ae51bdf0c5..4812cc1140 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Low Quality definition = flashforge_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 86dabcaefe..c047e0c165 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Standard Quality definition = flashforge_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 88efa52504..e456f385ce 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Quality definition = flashforge_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 e534296d67..af2991d185 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Dynamic Quality definition = flashforge_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 9e9514a518..6acb269c0f 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Coarse Quality definition = flashforge_base +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse material = generic_petg +quality_type = coarse +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 84f3bfa12c..b7c9b54668 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Draft Quality definition = flashforge_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 b1baee3fd5..26ef92b68f 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Low Quality definition = flashforge_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] @@ -20,4 +20,5 @@ material_print_temperature_layer_0 = 240 speed_infill = =speed_print speed_print = 30 speed_support = 30 -speed_travel = 100 \ No newline at end of file +speed_travel = 100 + 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 a1d106b703..b630f3f7df 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Standard Quality definition = flashforge_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 4e142c8524..71fcd17ff9 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Draft Quality definition = flashforge_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 08eb8c4e9e..df2af8aab7 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Coarse Quality definition = flashforge_base +name = Extra Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Xcoarse material = generic_petg +quality_type = Xcoarse +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 110e457298..d926c4ffe8 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Standard Quality definition = flashforge_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 30 speed_support = 30 speed_travel = 100 + 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 1bbff4b595..25bb5ab67d 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Quality definition = flashforge_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 50 speed_support = 30 speed_travel = 100 + 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 869b51e575..d139d9bade 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Ultra Quality definition = flashforge_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_pla +quality_type = ultra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 50 speed_support = 30 speed_travel = 100 + 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 08269811ff..1360aaf747 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Dynamic Quality definition = flashforge_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 50 speed_support = 30 speed_travel = 100 + 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 42d9447da9..895d454e3f 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 @@ -1,19 +1,19 @@ [general] -version = 4 -name = Standard Quality definition = flashforge_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -layer_height_0 = 0.24 cool_fan_speed = 100 cool_fan_speed_0 = 0 +layer_height_0 = 0.24 material_bed_temperature = 35 material_bed_temperature_layer_0 = 40 material_print_temperature = 200 @@ -22,3 +22,4 @@ speed_infill = =speed_print speed_print = 50 speed_support = 30 speed_travel = 100 + 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 c9526ee2a2..76a588d33c 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Quality definition = flashforge_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 50 speed_support = 30 speed_travel = 100 + 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 bcf42cef4b..b7f7109d9b 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Dynamic Quality definition = flashforge_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 50 speed_support = 30 speed_travel = 100 + 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 f25c72a72b..1d8878cf9f 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Draft Quality definition = flashforge_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 50 speed_support = 30 speed_travel = 100 + 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 f00b5f258b..ee39f73df2 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Low Quality definition = flashforge_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 50 speed_support = 30 speed_travel = 100 + 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 f2b47b98f1..505ef42142 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Standard Quality definition = flashforge_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 50 speed_support = 30 speed_travel = 100 + 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 b59b8d4b75..7da3471196 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Quality definition = flashforge_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 50 speed_support = 30 speed_travel = 100 + 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 d35197ef84..a3b603704d 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Dynamic Quality definition = flashforge_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 50 speed_support = 30 speed_travel = 100 + 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 24782e851c..886c425d25 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Coarse Quality definition = flashforge_base +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse material = generic_pla +quality_type = coarse +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 40 speed_support = 30 speed_travel = 100 + 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 e85ee1073f..4a48cadf09 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Draft Quality definition = flashforge_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 50 speed_support = 30 speed_travel = 100 + 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 beacdae7b5..deee147378 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Low Quality definition = flashforge_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 50 speed_support = 30 speed_travel = 100 + 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 fd3c7dfafe..b7ab32d1ae 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Standard Quality definition = flashforge_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 50 speed_support = 30 speed_travel = 100 + 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 28a231337b..73b814d0e2 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Draft Quality definition = flashforge_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 50 speed_support = 30 speed_travel = 100 + 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 51def4848d..27cd8def7e 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Coarse Quality definition = flashforge_base +name = Extra Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Xcoarse material = generic_pla +quality_type = Xcoarse +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 40 speed_support = 30 speed_travel = 100 + 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 786b3293d4..656e85dad2 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Standard Quality definition = flashforge_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] @@ -21,3 +21,4 @@ speed_infill = =speed_print speed_print = 50 speed_support = 30 speed_travel = 100 + 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 440b5c01c1..be0422e6a8 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Dynamic Quality definition = flashforge_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -18,7 +18,8 @@ material_bed_temperature_layer_0 = 40 material_print_temperature = 230 material_print_temperature_layer_0 = 235 speed_infill = =speed_print -speed_print = 15 speed_layer_0 = 10 +speed_print = 15 speed_support = 15 speed_travel = 100 + 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 3b9633ab26..17ae6fad79 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Draft Quality definition = flashforge_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -18,7 +18,8 @@ material_bed_temperature_layer_0 = 40 material_print_temperature = 230 material_print_temperature_layer_0 = 235 speed_infill = =speed_print -speed_print = 15 speed_layer_0 = 10 +speed_print = 15 speed_support = 15 speed_travel = 100 + 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 299126b01a..f254fd3c0a 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Low Quality definition = flashforge_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_tpu +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -18,7 +18,8 @@ material_bed_temperature_layer_0 = 40 material_print_temperature = 230 material_print_temperature_layer_0 = 235 speed_infill = =speed_print -speed_print = 15 speed_layer_0 = 10 +speed_print = 15 speed_support = 15 speed_travel = 100 + 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 9b48c0e474..9414642a42 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Standard Quality definition = flashforge_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_tpu +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -18,7 +18,8 @@ material_bed_temperature_layer_0 = 40 material_print_temperature = 230 material_print_temperature_layer_0 = 235 speed_infill = =speed_print -speed_print = 15 speed_layer_0 = 10 +speed_print = 15 speed_support = 15 speed_travel = 100 + 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 f2df3a8deb..c550dabdf2 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Quality definition = flashforge_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_tpu +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] @@ -18,7 +18,8 @@ material_bed_temperature_layer_0 = 40 material_print_temperature = 230 material_print_temperature_layer_0 = 235 speed_infill = =speed_print -speed_print = 15 speed_layer_0 = 10 +speed_print = 15 speed_support = 15 speed_travel = 100 + 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 2b89095d29..7be34ff5e0 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Dynamic Quality definition = flashforge_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] @@ -18,7 +18,8 @@ material_bed_temperature_layer_0 = 40 material_print_temperature = 230 material_print_temperature_layer_0 = 235 speed_infill = =speed_print -speed_print = 15 speed_layer_0 = 10 +speed_print = 15 speed_support = 15 speed_travel = 100 + 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 c46593163a..1a6aab076b 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Draft Quality definition = flashforge_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] @@ -18,7 +18,8 @@ material_bed_temperature_layer_0 = 40 material_print_temperature = 230 material_print_temperature_layer_0 = 235 speed_infill = =speed_print -speed_print = 15 speed_layer_0 = 10 +speed_print = 15 speed_support = 15 speed_travel = 100 + 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 00ff19f414..9a2466df8c 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Low Quality definition = flashforge_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_tpu +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] @@ -18,7 +18,8 @@ material_bed_temperature_layer_0 = 40 material_print_temperature = 230 material_print_temperature_layer_0 = 235 speed_infill = =speed_print -speed_print = 15 speed_layer_0 = 10 +speed_print = 15 speed_support = 15 speed_travel = 100 + 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 abd6c1bb59..7f789e0c20 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Standard Quality definition = flashforge_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_tpu +quality_type = normal +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] @@ -18,7 +18,8 @@ material_bed_temperature_layer_0 = 40 material_print_temperature = 230 material_print_temperature_layer_0 = 235 speed_infill = =speed_print -speed_print = 15 speed_layer_0 = 10 +speed_print = 15 speed_support = 15 speed_travel = 100 + 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 02f491c354..2567733c06 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Draft Quality definition = flashforge_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] @@ -18,7 +18,8 @@ material_bed_temperature_layer_0 = 40 material_print_temperature = 230 material_print_temperature_layer_0 = 235 speed_infill = =speed_print -speed_print = 15 speed_layer_0 = 10 +speed_print = 15 speed_support = 15 speed_travel = 100 + 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 70c4b22c92..3c4c0ed5cc 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Low Quality definition = flashforge_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_tpu +quality_type = low +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] @@ -18,7 +18,8 @@ material_bed_temperature_layer_0 = 40 material_print_temperature = 230 material_print_temperature_layer_0 = 235 speed_infill = =speed_print -speed_print = 15 speed_layer_0 = 10 +speed_print = 15 speed_support = 15 speed_travel = 100 + 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 e9f6b61f52..8f50464740 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Standard Quality definition = flashforge_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_tpu +quality_type = normal +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] @@ -18,7 +18,8 @@ material_bed_temperature_layer_0 = 40 material_print_temperature = 230 material_print_temperature_layer_0 = 235 speed_infill = =speed_print -speed_print = 15 speed_layer_0 = 10 +speed_print = 15 speed_support = 15 speed_travel = 100 + diff --git a/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg b/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg index 09973fdbbd..7ba7f82e9a 100644 --- a/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg +++ b/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg @@ -1,81 +1,81 @@ [general] -version = 4 -name = Fine definition = flsun_sr +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 1 global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = 1 [values] -layer_height = 0.12 -layer_height_0 = 0.2 -retraction_combing = noskin -retraction_combing_max_distance = 10 -speed_slowdown_layers = 5 -travel_retract_before_outer_wall = False +acceleration_enabled = False adhesion_type = skirt -skirt_line_count = 2 brim_width = 4.0 cool_fan_speed = 100 cool_lift_head = False cool_min_layer_time = 4 infill_before_walls = False infill_enable_travel_optimization = False +infill_pattern = grid infill_support_angle = 50 ironing_enabled = False +ironing_only_highest_layer = True +jerk_enabled = False +jerk_travel = 25 +jerk_travel_layer_0 = 20 +jerk_wall_0 = 10 +layer_height = 0.12 +layer_height_0 = 0.2 +material_bed_temperature_layer_0 = 60 +material_final_print_temperature = 210 +material_initial_print_temperature = 210 +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +optimize_wall_printing_order = True retract_at_layer_change = False retraction_amount = 6.5 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_hop = 0.3 +retraction_hop_enabled = True retraction_hop_only_when_collides = True +retraction_speed = 40 skin_no_small_gaps_heuristic = True skin_overlap = 10 +skirt_line_count = 2 +small_feature_speed_factor = 60 small_hole_max_size = 5 +speed_infill = 100 +speed_layer_0 = 25 +speed_print = 80 +speed_slowdown_layers = 5 speed_support = 80 -support_enable = True -support_type = everywhere -support_wall_count = 1 +speed_topbottom = 50 +speed_travel = 120 +speed_travel_layer_0 = 40 +speed_z_hop = 50 support_angle = 60 support_brim_enable = True support_brim_width = 4.0 +support_enable = True support_interface_density = 60 support_interface_enable = True support_interface_height = 0.96 support_interface_pattern = grid support_interface_skip_height = 0.12 support_roof_density = 60 +support_type = everywhere +support_wall_count = 1 support_xy_distance = 0.5 support_z_distance = 0.2 top_bottom_thickness = =layer_height*7 -travel_avoid_other_parts = True +travel_avoid_other_parts = True travel_avoid_supports = True -acceleration_enabled = False -jerk_enabled = False -infill_pattern = grid -ironing_only_highest_layer = True -jerk_travel = 25 -jerk_travel_layer_0 = 20 -jerk_wall_0 = 10 -material_flow_dependent_temperature = False -material_initial_print_temperature = 210 -material_final_print_temperature = 210 -material_print_temperature = 210 -material_print_temperature_layer_0 = 210 -material_bed_temperature_layer_0 = 60 -optimize_wall_printing_order = True -retraction_hop = 0.3 -retraction_hop_enabled = True -retraction_speed = 40 -small_feature_speed_factor = 60 -speed_infill = 100 -speed_layer_0 = 25 -speed_print = 80 -speed_topbottom = 50 -speed_travel = 120 -speed_travel_layer_0 = 40 -speed_z_hop = 50 +travel_retract_before_outer_wall = False wall_thickness = =line_width*3 z_seam_corner = z_seam_corner_inner -z_seam_type = sharpest_corner \ No newline at end of file +z_seam_type = sharpest_corner + diff --git a/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg b/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg index 9109a6635a..5091ec6d97 100644 --- a/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg +++ b/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg @@ -1,81 +1,81 @@ [general] -version = 4 -name = Normal definition = flsun_sr +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -2 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -2 [values] -layer_height = 0.2 -layer_height_0 = 0.2 -retraction_combing = noskin -retraction_combing_max_distance = 10 -speed_slowdown_layers = 5 -travel_retract_before_outer_wall = False +acceleration_enabled = False adhesion_type = skirt -skirt_line_count = 2 brim_width = 4.0 cool_fan_speed = 100 cool_lift_head = False cool_min_layer_time = 4 infill_before_walls = False infill_enable_travel_optimization = False +infill_pattern = grid infill_support_angle = 50 ironing_enabled = False +ironing_only_highest_layer = True +jerk_enabled = False +jerk_travel = 25 +jerk_travel_layer_0 = 20 +jerk_wall_0 = 10 +layer_height = 0.2 +layer_height_0 = 0.2 +material_bed_temperature_layer_0 = 60 +material_final_print_temperature = 220 +material_initial_print_temperature = 220 +material_print_temperature = 220 +material_print_temperature_layer_0 = 220 +optimize_wall_printing_order = True retract_at_layer_change = False retraction_amount = 6.5 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_hop = 0.3 +retraction_hop_enabled = True retraction_hop_only_when_collides = True +retraction_speed = 40 skin_no_small_gaps_heuristic = True skin_overlap = 10 +skirt_line_count = 2 +small_feature_speed_factor = 60 small_hole_max_size = 5 +speed_infill = 150 +speed_layer_0 = 25 +speed_print = 150 +speed_slowdown_layers = 5 speed_support = 80 -support_enable = True -support_type = everywhere -support_wall_count = 1 +speed_topbottom = 70 +speed_travel = 180 +speed_travel_layer_0 = 50 +speed_z_hop = 50 support_angle = 60 support_brim_enable = True support_brim_width = 4.0 +support_enable = True support_interface_density = 60 support_interface_enable = True support_interface_height = 0.6 support_interface_pattern = grid support_interface_skip_height = 0.2 support_roof_density = 60 +support_type = everywhere +support_wall_count = 1 support_xy_distance = 0.5 support_z_distance = 0.2 top_bottom_thickness = =layer_height*5 -travel_avoid_other_parts = True +travel_avoid_other_parts = True travel_avoid_supports = True -acceleration_enabled = False -jerk_enabled = False -infill_pattern = grid -ironing_only_highest_layer = True -jerk_travel = 25 -jerk_travel_layer_0 = 20 -jerk_wall_0 = 10 -material_flow_dependent_temperature = False -material_initial_print_temperature = 220 -material_final_print_temperature = 220 -material_print_temperature = 220 -material_print_temperature_layer_0 = 220 -material_bed_temperature_layer_0 = 60 -optimize_wall_printing_order = True -retraction_hop = 0.3 -retraction_hop_enabled = True -retraction_speed = 40 -small_feature_speed_factor = 60 -speed_infill = 150 -speed_layer_0 = 25 -speed_print = 150 -speed_topbottom = 70 -speed_travel = 180 -speed_travel_layer_0 = 50 -speed_z_hop = 50 +travel_retract_before_outer_wall = False wall_thickness = =line_width*3 z_seam_corner = z_seam_corner_inner -z_seam_type = sharpest_corner \ No newline at end of file +z_seam_type = sharpest_corner + diff --git a/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg b/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg new file mode 100644 index 0000000000..321f44a8bd --- /dev/null +++ b/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg @@ -0,0 +1,125 @@ +[general] +definition = flsun_v400 +name = Normal +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -2 + +[values] +acceleration_enabled = True +acceleration_print = 8000.0 +acceleration_topbottom = 6000.0 +acceleration_travel = 8000.0 +acceleration_wall = 5000.0 +adhesion_type = brim +bridge_enable_more_layers = False +bridge_settings_enabled = True +bridge_skin_material_flow = 60 +bridge_skin_speed = 60 +bridge_skin_support_threshold = 50 +bridge_wall_material_flow = 100.0 +bridge_wall_speed = 60 +brim_width = 6.6 +cool_fan_full_at_height = 0.6 +cool_fan_speed = 100 +cool_lift_head = False +cool_min_layer_time = 5 +expand_skins_expand_distance = 0.8 +fill_outline_gaps = False +infill_before_walls = False +infill_enable_travel_optimization = False +infill_pattern = grid +infill_sparse_density = 10.0 +infill_support_angle = 50 +inset_direction = inside_out +ironing_enabled = False +ironing_only_highest_layer = True +jerk_enabled = True +jerk_infill = 100.0 +jerk_layer_0 = 10.0 +jerk_print = 10.0 +jerk_roofing = 10.0 +jerk_support_interface = 10.0 +jerk_topbottom = 10.0 +jerk_travel = 100.0 +jerk_wall = 10.0 +jerk_wall_0 = 5.0 +layer_height = 0.2 +layer_height_0 = 0.3 +line_width = 0.44 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = 60 +material_final_print_temperature = 210 +material_initial_print_temperature = 210 +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +max_skin_angle_for_expansion = 90 +minimum_interface_area = 2.0 +minimum_support_area = 2.0 +optimize_wall_printing_order = True +raft_speed = 75.0 +retract_at_layer_change = False +retraction_amount = 0.6 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_hop = 0.3 +retraction_hop_enabled = True +retraction_hop_only_when_collides = False +retraction_speed = 40 +roofing_layer_count = 1 +skin_monotonic = True +skin_no_small_gaps_heuristic = False +skin_overlap = 10 +skin_preshrink = 0.8 +skirt_line_count = 2 +small_feature_speed_factor = 60.0 +small_hole_max_size = 5.0 +speed_infill = 350.0 +speed_layer_0 = 25 +speed_print = 400.0 +speed_roofing = 120.0 +speed_support = 350 +speed_support_interface = 100 +speed_topbottom = 120.0 +speed_travel = 400.0 +speed_travel_layer_0 = 50.0 +speed_wall = 120.0 +speed_wall_x = 280.0 +speed_z_hop = 50.0 +support_angle = 65 +support_brim_enable = True +support_brim_width = 8.8 +support_enable = False +support_infill_rate = 10 +support_interface_density = 70 +support_interface_enable = True +support_interface_height = 0.6 +support_interface_pattern = lines +support_interface_skip_height = 0.2 +support_pattern = zigzag +support_roof_density = 70 +support_type = everywhere +support_use_towers = False +support_wall_count = 1 +support_xy_distance = 0.5 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.2 +top_bottom_thickness = 0.6 +top_layers = =0 if infill_sparse_density == 100 else math.ceil(round(top_thickness / resolveOrValue('layer_height'), 4)) +top_thickness = 1 +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_thickness = =line_width*2 +z_seam_corner = z_seam_corner_inner +z_seam_position = backright +z_seam_type = sharpest_corner +zig_zaggify_infill = True + 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 9a48f738ae..930466e23c 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = flyingbear_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.25mm Nozzle [values] -wall_thickness = =line_width*6 adhesion_type = brim +wall_thickness = =line_width*6 + 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 b0db8faa9d..3fc33bbaf6 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Ultra Quality definition = flyingbear_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_abs +quality_type = ultra +setting_version = 22 +type = quality variant = 0.25mm Nozzle [values] -wall_thickness = =line_width*6 adhesion_type = brim +wall_thickness = =line_width*6 + 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 24dd9e2d4d..61ba30270c 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = flyingbear_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -wall_thickness = =line_width*5 adhesion_type = brim +wall_thickness = =line_width*5 + 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 35ba378079..9fa0bb768e 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -wall_thickness = =line_width*5 adhesion_type = brim +wall_thickness = =line_width*5 + 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 402a3c3591..79697198c8 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = flyingbear_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -wall_thickness = =line_width*5 adhesion_type = brim +wall_thickness = =line_width*5 + 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 091800ef56..aa49d937ad 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = flyingbear_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim +wall_thickness = =line_width*4 + 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 a5523bd2c2..f66ea96064 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = flyingbear_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim +wall_thickness = =line_width*4 + 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 e6ed5a4d23..8ca14e5f6b 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim +wall_thickness = =line_width*4 + 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 2441ee4a2b..66bdc09d2f 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = flyingbear_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim +wall_thickness = =line_width*4 + 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 bd01b3238e..71a29de5f0 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = flyingbear_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim +wall_thickness = =line_width*4 + 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 50988bc62b..82b314fec0 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = flyingbear_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim +wall_thickness = =line_width*4 + 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 4c0a03880e..648c3f9765 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = flyingbear_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim +wall_thickness = =line_width*4 + 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 58a85dc951..adaa26b406 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim +wall_thickness = =line_width*4 + 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 211af1abae..bef5e104e8 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = flyingbear_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] -wall_thickness = =line_width*3 adhesion_type = brim +wall_thickness = =line_width*3 + 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 3c81c66264..4c613f89f6 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = flyingbear_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] -wall_thickness = =line_width*3 adhesion_type = brim +wall_thickness = =line_width*3 + 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 b634bc798b..6c32265807 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] -wall_thickness = =line_width*3 adhesion_type = brim +wall_thickness = =line_width*3 + 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 e5e0688296..8e0cff9a71 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Coarse Quality definition = flyingbear_base +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse material = generic_abs +quality_type = coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = brim +wall_thickness = =line_width*2 + 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 8d04c6b09f..e37f690bc1 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = flyingbear_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = brim +wall_thickness = =line_width*2 + 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 58435a63c8..65ccdb5215 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Ultra Quality definition = flyingbear_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra -weight = 0 global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.08 layer_height_0 = 0.12 +support_interface_height = =layer_height*12 top_bottom_thickness = =layer_height_0+layer_height*10 wall_thickness = =line_width*6 -support_interface_height = =layer_height*12 + 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 1f77a6f2c9..0a4a714bc6 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Super Quality definition = flyingbear_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super -weight = -1 global_quality = True +quality_type = super +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.12 layer_height_0 = 0.16 +support_interface_height = =layer_height*8 top_bottom_thickness = =layer_height_0+layer_height*6 wall_thickness = =line_width*6 -support_interface_height = =layer_height*8 + 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 53cb7e90c6..d2098fbb4e 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg @@ -1,19 +1,20 @@ [general] -version = 4 -name = Dynamic Quality definition = flyingbear_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive -weight = -2 global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +weight = -2 [values] +adaptive_layer_height_enabled = true layer_height = 0.16 layer_height_0 = 0.20 +support_interface_height = =layer_height*6 top_bottom_thickness = =layer_height_0+layer_height*4 wall_thickness = =line_width*5 -support_interface_height = =layer_height*6 -adaptive_layer_height_enabled = true + 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 a18d440386..505cb0463e 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -3 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.20 layer_height_0 = 0.20 +support_interface_height = =layer_height*5 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*4 -support_interface_height = =layer_height*5 + 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 679392cf7e..3f12e491b5 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Low Quality definition = flyingbear_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low -weight = -4 global_quality = True +quality_type = low +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.28 layer_height_0 = 0.28 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*3 -support_interface_height = =layer_height*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 183cfb2f1e..231f0fd01c 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Draft Quality definition = flyingbear_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -5 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -5 [values] layer_height = 0.32 layer_height_0 = 0.32 +support_interface_height = =layer_height*3 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*3 -support_interface_height = =layer_height*3 + 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 81221eac6b..8b6dd5bddb 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Coarse Quality definition = flyingbear_base +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -6 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -6 [values] layer_height = 0.40 layer_height_0 = 0.40 +support_interface_height = =layer_height*2 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 -support_interface_height = =layer_height*2 + 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 40fe26cc36..df78a0c3f4 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = flyingbear_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_hips +quality_type = super +setting_version = 22 +type = quality variant = 0.25mm Nozzle [values] -wall_thickness = =line_width*6 adhesion_type = brim +wall_thickness = =line_width*6 + 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 282a3ae616..16c455bb06 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Ultra Quality definition = flyingbear_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_hips +quality_type = ultra +setting_version = 22 +type = quality variant = 0.25mm Nozzle [values] -wall_thickness = =line_width*6 adhesion_type = brim +wall_thickness = =line_width*6 + 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 447c8dfc26..24d9ece765 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = flyingbear_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_hips +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -wall_thickness = =line_width*5 adhesion_type = brim +wall_thickness = =line_width*5 + 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 8bb462c5c2..f2a45a4c33 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_hips +quality_type = normal +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -wall_thickness = =line_width*5 adhesion_type = brim +wall_thickness = =line_width*5 + 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 662227c87c..4035a9a59c 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = flyingbear_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_hips +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -wall_thickness = =line_width*5 adhesion_type = brim +wall_thickness = =line_width*5 + 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 fb7c8e298f..5ec95868ed 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = flyingbear_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_hips +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim +wall_thickness = =line_width*4 + 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 1bff97b776..666e72803a 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = flyingbear_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_hips +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim +wall_thickness = =line_width*4 + 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 7830a94a13..de6ad15bb9 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_hips +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim +wall_thickness = =line_width*4 + 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 7e694af8ab..bf247f15c6 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = flyingbear_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_hips +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim +wall_thickness = =line_width*4 + 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 1741cda0b9..7f00389fa0 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = flyingbear_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_hips +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim +wall_thickness = =line_width*4 + 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 3c44beb549..151e412914 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = flyingbear_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_hips +quality_type = draft +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim +wall_thickness = =line_width*4 + 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 06e83427bb..730abc2c95 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = flyingbear_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_hips +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim +wall_thickness = =line_width*4 + 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 f292cf11ea..cdef28723f 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_hips +quality_type = normal +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim +wall_thickness = =line_width*4 + 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 b25514284b..60024c0720 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = flyingbear_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_hips +quality_type = draft +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] -wall_thickness = =line_width*3 adhesion_type = brim +wall_thickness = =line_width*3 + 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 9cb5ea67fa..f6bd94749e 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = flyingbear_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_hips +quality_type = low +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] -wall_thickness = =line_width*3 adhesion_type = brim +wall_thickness = =line_width*3 + 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 3c6cae19af..682b069da8 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_hips +quality_type = normal +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] -wall_thickness = =line_width*3 adhesion_type = brim +wall_thickness = =line_width*3 + 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 45629b0dc9..51459ab888 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Coarse Quality definition = flyingbear_base +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse material = generic_hips +quality_type = coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = brim +wall_thickness = =line_width*2 + 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 665f77ab39..fa4b6f0ea5 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = flyingbear_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_hips +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = brim +wall_thickness = =line_width*2 + 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 3beb72fe59..71acf92c30 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = flyingbear_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.25mm Nozzle [values] -wall_thickness = =line_width*6 speed_layer_0 = 15 +wall_thickness = =line_width*6 + 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 889f587098..1436e850e6 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Ultra Quality definition = flyingbear_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_petg +quality_type = ultra +setting_version = 22 +type = quality variant = 0.25mm Nozzle [values] -wall_thickness = =line_width*6 speed_layer_0 = 15 +wall_thickness = =line_width*6 + 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 24f5b1b1de..83852fdf48 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = flyingbear_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -wall_thickness = =line_width*5 speed_layer_0 = 15 +wall_thickness = =line_width*5 + 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 eb61570b8b..1a089cfebc 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -wall_thickness = =line_width*5 speed_layer_0 = 15 +wall_thickness = =line_width*5 + 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 4d7b2aa069..0554999dce 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = flyingbear_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -wall_thickness = =line_width*5 speed_layer_0 = 15 +wall_thickness = =line_width*5 + 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 263e4bc111..2b2b6e8e67 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = flyingbear_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 e7cc75f763..d4f3706cf2 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = flyingbear_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 7da165d65c..ff3604ad2e 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 0cd1f2a8fd..83b9afde7f 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = flyingbear_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 7d22bbaddd..f7ea5866e0 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = flyingbear_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -wall_thickness = =line_width*4 speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 f98d53391c..28575d7b40 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = flyingbear_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -wall_thickness = =line_width*4 speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 b5f72aab77..4ee5424f67 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = flyingbear_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -wall_thickness = =line_width*4 speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 35c2649094..a0395edf27 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -wall_thickness = =line_width*4 speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 534de34176..80e0f04c76 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = flyingbear_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] -wall_thickness = =line_width*3 speed_layer_0 = 15 +wall_thickness = =line_width*3 + 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 8387538c8e..031efab026 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = flyingbear_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] -wall_thickness = =line_width*3 speed_layer_0 = 15 +wall_thickness = =line_width*3 + 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 55dabe72ca..aa619cfd1e 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] -wall_thickness = =line_width*3 speed_layer_0 = 15 +wall_thickness = =line_width*3 + 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 bdefc9750f..0b60eac171 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Coarse Quality definition = flyingbear_base +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse material = generic_petg +quality_type = coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] -wall_thickness = =line_width*2 speed_layer_0 = 15 +wall_thickness = =line_width*2 + 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 3a59b5c327..1886e60500 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = flyingbear_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] -wall_thickness = =line_width*2 speed_layer_0 = 15 +wall_thickness = =line_width*2 + 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 714bcca5a5..e519b6d142 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = flyingbear_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.25mm Nozzle [values] wall_thickness = =line_width*6 + 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 5d0c476bed..b97aef5a39 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Ultra Quality definition = flyingbear_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_pla +quality_type = ultra +setting_version = 22 +type = quality variant = 0.25mm Nozzle [values] wall_thickness = =line_width*6 + 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 8aaef605e5..20bbf3858f 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = flyingbear_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*5 + 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 55fb575264..49b158e03f 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*5 + 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 609aeb542c..2ad07694fc 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = flyingbear_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*5 + 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 b311b68f23..f34b3b1bb9 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = flyingbear_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 02c954cd4a..6706cbabc6 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Low Quality definition = flyingbear_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 4936321d46..da766f5d1b 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 d425e51db2..8b5001e62c 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = flyingbear_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 b59a49d175..19d31e9c93 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = flyingbear_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 79da2e980b..ef47603395 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft Quality definition = flyingbear_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 9ccdd46534..b3371769d0 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Low Quality definition = flyingbear_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 9168a08656..b2ddb8eabe 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 c14020ac8b..0ec35e6dad 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft Quality definition = flyingbear_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] wall_thickness = =line_width*3 + 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 b61fdece93..55498bde2e 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Low Quality definition = flyingbear_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] wall_thickness = =line_width*3 + 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 49b47f35e4..4c10851db8 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] wall_thickness = =line_width*3 + 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 e8c7156aa1..735cdf2f91 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Coarse Quality definition = flyingbear_base +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse material = generic_pla +quality_type = coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] wall_thickness = =line_width*2 + 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 d28c317730..0964ebcfe6 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft Quality definition = flyingbear_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] wall_thickness = =line_width*2 + 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 03f81a6c6a..1dde8db898 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = flyingbear_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = eSUN_PLA_PRO_Black +quality_type = super +setting_version = 22 +type = quality variant = 0.25mm Nozzle [values] wall_thickness = =line_width*6 + 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 8b98387322..78b295e64e 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Ultra Quality definition = flyingbear_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = eSUN_PLA_PRO_Black +quality_type = ultra +setting_version = 22 +type = quality variant = 0.25mm Nozzle [values] wall_thickness = =line_width*6 + 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 6635ddb642..bf7d7fa7bb 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = flyingbear_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = eSUN_PLA_PRO_Black +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*5 + 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 34b99229df..9e282d5aec 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = eSUN_PLA_PRO_Black +quality_type = normal +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*5 + 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 af62fe0d8f..c2faee28a8 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = flyingbear_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = eSUN_PLA_PRO_Black +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*5 + 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 8ae4a3c278..7200eef8fa 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = flyingbear_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = eSUN_PLA_PRO_Black +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 33bd7adf64..b842231fac 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Low Quality definition = flyingbear_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = eSUN_PLA_PRO_Black +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 533e12135b..a5cb57090e 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = eSUN_PLA_PRO_Black +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 4c69c388e0..28ec247de1 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = flyingbear_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = eSUN_PLA_PRO_Black +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 c0593652f1..2724300ad6 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = flyingbear_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = eSUN_PLA_PRO_Black +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 6ba0d41d7d..c9c66e581c 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft Quality definition = flyingbear_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = eSUN_PLA_PRO_Black +quality_type = draft +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 eb63ee07e7..d2cee4ce30 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Low Quality definition = flyingbear_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = eSUN_PLA_PRO_Black +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 77a38c1f98..69bfa6d6e1 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = eSUN_PLA_PRO_Black +quality_type = normal +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 e041927278..0af138b7fc 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft Quality definition = flyingbear_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = eSUN_PLA_PRO_Black +quality_type = draft +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] wall_thickness = =line_width*3 + 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 56bc3e3743..0dc4f2c24b 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Low Quality definition = flyingbear_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = eSUN_PLA_PRO_Black +quality_type = low +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] wall_thickness = =line_width*3 + 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 39e15492a4..04841b6e40 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = eSUN_PLA_PRO_Black +quality_type = normal +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] wall_thickness = =line_width*3 + 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 af43ec60a9..02628c7d3e 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Coarse Quality definition = flyingbear_base +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse material = eSUN_PLA_PRO_Black +quality_type = coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] wall_thickness = =line_width*2 + 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 01e97fbdbf..0050c4542f 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft Quality definition = flyingbear_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = eSUN_PLA_PRO_Black +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] wall_thickness = =line_width*2 + 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 e794d16e73..8aa43affc1 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Dynamic Quality definition = flyingbear_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 speed_layer_0 = 10 +speed_print = 20 +wall_thickness = =line_width*4 + 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 d2bab94bf6..28ad82bc82 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Low Quality definition = flyingbear_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_tpu +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 speed_layer_0 = 10 +speed_print = 20 +wall_thickness = =line_width*4 + 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 5604fcb2da..8d6924e70a 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_tpu +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 speed_layer_0 = 10 +speed_print = 20 +wall_thickness = =line_width*4 + 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 2b9d3c7392..2a432b6135 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Super Quality definition = flyingbear_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_tpu +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 speed_layer_0 = 10 +speed_print = 20 +wall_thickness = =line_width*4 + 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 31a1e86d1d..18882f74d7 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Dynamic Quality definition = flyingbear_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 speed_layer_0 = 10 +speed_print = 20 +wall_thickness = =line_width*4 + 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 38fa653761..3f751ac6c3 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = flyingbear_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 speed_layer_0 = 10 +speed_print = 20 +wall_thickness = =line_width*4 + 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 78befe7feb..54be001ebd 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Low Quality definition = flyingbear_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_tpu +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 speed_layer_0 = 10 +speed_print = 20 +wall_thickness = =line_width*4 + 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 4757e159ef..d8d4148de1 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_tpu +quality_type = normal +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 speed_layer_0 = 10 +speed_print = 20 +wall_thickness = =line_width*4 + 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 d5b9a73c55..becd616174 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = flyingbear_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] -wall_thickness = =line_width*3 -speed_print = 20 speed_layer_0 = 10 +speed_print = 20 +wall_thickness = =line_width*3 + 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 1edbb27e4e..1925f4d5d2 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Low Quality definition = flyingbear_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_tpu +quality_type = low +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] -wall_thickness = =line_width*3 -speed_print = 20 speed_layer_0 = 10 +speed_print = 20 +wall_thickness = =line_width*3 + 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 9594e31e24..f34a24e1f1 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = flyingbear_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_tpu +quality_type = normal +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] -wall_thickness = =line_width*3 -speed_print = 20 speed_layer_0 = 10 +speed_print = 20 +wall_thickness = =line_width*3 + 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 2fc7527bd2..c5e1663441 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Coarse Quality definition = flyingbear_base +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse material = generic_tpu +quality_type = coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] -wall_thickness = =line_width*2 -speed_print = 20 speed_layer_0 = 10 +speed_print = 20 +wall_thickness = =line_width*2 + 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 1d4e9255d4..4ede40b6f9 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = flyingbear_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] -wall_thickness = =line_width*2 -speed_print = 20 speed_layer_0 = 10 +speed_print = 20 +wall_thickness = =line_width*2 + diff --git a/resources/quality/fusedform/base/base_PVA_draft.inst.cfg b/resources/quality/fusedform/base/base_PVA_draft.inst.cfg index 9201fbd33b..3c1797b40e 100644 --- a/resources/quality/fusedform/base/base_PVA_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_draft.inst.cfg @@ -1,22 +1,23 @@ [general] -version = 4 -name = Draft quality definition = fusedform_base +name = Draft quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pva +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] -material_print_temperature = 190 material_bed_temperature = 60 +material_print_temperature = 190 speed_infill = =speed_print speed_layer_0 = 20 speed_print = 25 speed_topbottom = 20 speed_travel = 70 speed_wall = 20 -speed_wall_x = 25 \ No newline at end of file +speed_wall_x = 25 + diff --git a/resources/quality/fusedform/base/base_PVA_high.inst.cfg b/resources/quality/fusedform/base/base_PVA_high.inst.cfg index a5402a795c..c3bd73bb8f 100644 --- a/resources/quality/fusedform/base/base_PVA_high.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_high.inst.cfg @@ -1,18 +1,18 @@ [general] -version = 4 -name = High Quality definition = fusedform_base +name = High Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = -1 material = generic_pva +quality_type = high +setting_version = 22 +type = quality +weight = -1 [values] -material_print_temperature = 190 material_bed_temperature = 60 +material_print_temperature = 190 speed_infill = =speed_print speed_layer_0 = 20 speed_print = 25 @@ -20,3 +20,4 @@ speed_topbottom = 20 speed_travel = 70 speed_wall = 20 speed_wall_x = 25 + diff --git a/resources/quality/fusedform/base/base_PVA_normal.inst.cfg b/resources/quality/fusedform/base/base_PVA_normal.inst.cfg index 4f17f6cf75..28ae6d3a51 100644 --- a/resources/quality/fusedform/base/base_PVA_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_normal.inst.cfg @@ -1,22 +1,23 @@ [general] -version = 4 -name = Normal quality definition = fusedform_base +name = Normal quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -2 material = generic_pva +quality_type = normal +setting_version = 22 +type = quality +weight = -2 [values] -material_print_temperature = 190 material_bed_temperature = 60 +material_print_temperature = 190 speed_infill = =speed_print speed_layer_0 = 20 speed_print = 25 speed_topbottom = 20 speed_travel = 70 speed_wall = 20 -speed_wall_x = 25 \ No newline at end of file +speed_wall_x = 25 + diff --git a/resources/quality/fusedform/base/base_abs_draft.inst.cfg b/resources/quality/fusedform/base/base_abs_draft.inst.cfg index 48dc85e292..129e0ae301 100644 --- a/resources/quality/fusedform/base/base_abs_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_draft.inst.cfg @@ -1,19 +1,20 @@ [general] -version = 4 -name = Draft Quality definition = fusedform_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_abs +quality_type = draft +setting_version = 22 +type = quality [values] -cool_fan_enabled = False -brim_width = 12 -support_brim_enable = True adhesion_type = brim +brim_width = 12 +cool_fan_enabled = False material_bed_temperature = 100 material_bed_temperature_layer_0 = 90 -material_print_temperature = 240 \ No newline at end of file +material_print_temperature = 240 +support_brim_enable = True + diff --git a/resources/quality/fusedform/base/base_abs_high.inst.cfg b/resources/quality/fusedform/base/base_abs_high.inst.cfg index c2e55b351c..37c9670b98 100644 --- a/resources/quality/fusedform/base/base_abs_high.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_high.inst.cfg @@ -1,21 +1,21 @@ [general] -version = 4 -name = High Quality definition = fusedform_base +name = High Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = -1 material = generic_abs - +quality_type = high +setting_version = 22 +type = quality +weight = -1 [values] -cool_fan_enabled = False -brim_width = 12 -support_brim_enable = True adhesion_type = brim +brim_width = 12 +cool_fan_enabled = False material_bed_temperature = 100 material_bed_temperature_layer_0 = 90 -material_print_temperature = 240 \ No newline at end of file +material_print_temperature = 240 +support_brim_enable = True + diff --git a/resources/quality/fusedform/base/base_abs_normal.inst.cfg b/resources/quality/fusedform/base/base_abs_normal.inst.cfg index d81eb35575..9721d62afb 100644 --- a/resources/quality/fusedform/base/base_abs_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_normal.inst.cfg @@ -1,20 +1,21 @@ [general] -version = 4 -name = Normal Quality definition = fusedform_base +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -2 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality +weight = -2 [values] -cool_fan_enabled = False -brim_width = 12 -support_brim_enable = True adhesion_type = brim +brim_width = 12 +cool_fan_enabled = False material_bed_temperature = 100 material_bed_temperature_layer_0 = 90 -material_print_temperature = 240 \ No newline at end of file +material_print_temperature = 240 +support_brim_enable = True + 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 62691f3f8c..33807b2f08 100644 --- a/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg @@ -1,20 +1,21 @@ [general] -version = 4 -name = Ultra High Quality definition = fusedform_base +name = Ultra High Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type =ultra high -weight = -1 material = generic_abs +quality_type = ultra high +setting_version = 22 +type = quality +weight = -1 [values] -cool_fan_enabled = False -brim_width = 12 -support_brim_enable = True adhesion_type = brim +brim_width = 12 +cool_fan_enabled = False material_bed_temperature = 100 material_bed_temperature_layer_0 = 90 -material_print_temperature = 240 \ No newline at end of file +material_print_temperature = 240 +support_brim_enable = True + diff --git a/resources/quality/fusedform/base/base_draft.inst.cfg b/resources/quality/fusedform/base/base_draft.inst.cfg index 5757381181..e334ba4b67 100644 --- a/resources/quality/fusedform/base/base_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_draft.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft Quality definition = fusedform_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality +global_quality = True quality_type = draft +setting_version = 22 +type = quality weight = -4 -global_quality=True [values] layer_height = 0.25 + diff --git a/resources/quality/fusedform/base/base_flex_high.inst.cfg b/resources/quality/fusedform/base/base_flex_high.inst.cfg index 1c28457d5b..4b97e4ed24 100644 --- a/resources/quality/fusedform/base/base_flex_high.inst.cfg +++ b/resources/quality/fusedform/base/base_flex_high.inst.cfg @@ -1,19 +1,19 @@ [general] -version = 4 -name = High Quality definition = fusedform_base +name = High Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = -1 material = generic_tpu +quality_type = high +setting_version = 22 +type = quality +weight = -1 [values] layer_height_0 = 0.25 -material_print_temperature = 220 material_bed_temperature = 60 +material_print_temperature = 220 speed_infill = =speed_print speed_layer_0 = 20 speed_print = 25 @@ -21,3 +21,4 @@ speed_topbottom = 20 speed_travel = 70 speed_wall = 20 speed_wall_x = 25 + diff --git a/resources/quality/fusedform/base/base_flex_normal.inst.cfg b/resources/quality/fusedform/base/base_flex_normal.inst.cfg index c4f00888f7..cd12341ec8 100644 --- a/resources/quality/fusedform/base/base_flex_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_flex_normal.inst.cfg @@ -1,23 +1,24 @@ [general] -version = 4 -name = Normal quality definition = fusedform_base +name = Normal quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -2 material = generic_tpu +quality_type = normal +setting_version = 22 +type = quality +weight = -2 [values] layer_height_0 = 0.25 -material_print_temperature = 220 material_bed_temperature = 60 +material_print_temperature = 220 speed_infill = =speed_print speed_layer_0 = 20 speed_print = 25 speed_topbottom = 20 speed_travel = 70 speed_wall = 20 -speed_wall_x = 25 \ No newline at end of file +speed_wall_x = 25 + diff --git a/resources/quality/fusedform/base/base_high.inst.cfg b/resources/quality/fusedform/base/base_high.inst.cfg index 2de5753c1e..5b99678522 100644 --- a/resources/quality/fusedform/base/base_high.inst.cfg +++ b/resources/quality/fusedform/base/base_high.inst.cfg @@ -1,15 +1,15 @@ [general] -version = 4 -name = High Quality definition = fusedform_base +name = High Quality +version = 4 [metadata] -setting_version = 20 -type = quality +global_quality = True quality_type = high +setting_version = 22 +type = quality weight = -1 -global_quality=True - [values] layer_height = 0.1 + diff --git a/resources/quality/fusedform/base/base_hips_draft.inst.cfg b/resources/quality/fusedform/base/base_hips_draft.inst.cfg index 37628dac70..da71c1bd1c 100644 --- a/resources/quality/fusedform/base/base_hips_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_draft.inst.cfg @@ -1,19 +1,20 @@ [general] -version = 4 -name = Draft Quality definition = fusedform_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_hips +quality_type = draft +setting_version = 22 +type = quality [values] -cool_fan_enabled = False -brim_width = 12 -support_brim_enable = True adhesion_type = brim +brim_width = 12 +cool_fan_enabled = False material_bed_temperature = 100 material_bed_temperature_layer_0 = 90 -material_print_temperature = 240 \ No newline at end of file +material_print_temperature = 240 +support_brim_enable = True + diff --git a/resources/quality/fusedform/base/base_hips_high.inst.cfg b/resources/quality/fusedform/base/base_hips_high.inst.cfg index 10e6ce3181..d10e9eee55 100644 --- a/resources/quality/fusedform/base/base_hips_high.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_high.inst.cfg @@ -1,21 +1,21 @@ [general] -version = 4 -name = High Quality definition = fusedform_base +name = High Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = -1 material = generic_hips - +quality_type = high +setting_version = 22 +type = quality +weight = -1 [values] -cool_fan_enabled = False -brim_width = 12 -support_brim_enable = True adhesion_type = brim +brim_width = 12 +cool_fan_enabled = False material_bed_temperature = 100 material_bed_temperature_layer_0 = 90 -material_print_temperature = 240 \ No newline at end of file +material_print_temperature = 240 +support_brim_enable = True + diff --git a/resources/quality/fusedform/base/base_hips_normal.inst.cfg b/resources/quality/fusedform/base/base_hips_normal.inst.cfg index 8b88d73813..b2d4401f66 100644 --- a/resources/quality/fusedform/base/base_hips_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_normal.inst.cfg @@ -1,20 +1,21 @@ [general] -version = 4 -name = Normal Quality definition = fusedform_base +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -2 material = generic_hips +quality_type = normal +setting_version = 22 +type = quality +weight = -2 [values] -cool_fan_enabled = False -brim_width = 12 -support_brim_enable = True adhesion_type = brim +brim_width = 12 +cool_fan_enabled = False material_bed_temperature = 100 material_bed_temperature_layer_0 = 90 -material_print_temperature = 240 \ No newline at end of file +material_print_temperature = 240 +support_brim_enable = True + 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 12d9177645..0dabd20ee8 100644 --- a/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg @@ -1,20 +1,21 @@ [general] -version = 4 -name = Ultra High Quality definition = fusedform_base +name = Ultra High Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type =ultra high -weight = -1 material = generic_hips +quality_type = ultra high +setting_version = 22 +type = quality +weight = -1 [values] -cool_fan_enabled = False -brim_width = 12 -support_brim_enable = True adhesion_type = brim +brim_width = 12 +cool_fan_enabled = False material_bed_temperature = 100 material_bed_temperature_layer_0 = 90 -material_print_temperature = 240 \ No newline at end of file +material_print_temperature = 240 +support_brim_enable = True + diff --git a/resources/quality/fusedform/base/base_normal.inst.cfg b/resources/quality/fusedform/base/base_normal.inst.cfg index 22cb56f6c8..03cac40a62 100644 --- a/resources/quality/fusedform/base/base_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_normal.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Normal Quality definition = fusedform_base +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality +global_quality = True quality_type = normal +setting_version = 22 +type = quality weight = -2 -global_quality=True [values] layer_height = 0.15 + diff --git a/resources/quality/fusedform/base/base_nylon_draft.inst.cfg b/resources/quality/fusedform/base/base_nylon_draft.inst.cfg index 84fbd83b51..53bac6523d 100644 --- a/resources/quality/fusedform/base/base_nylon_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_draft.inst.cfg @@ -1,19 +1,20 @@ [general] -version = 4 -name = Draft Quality definition = fusedform_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_nylon +quality_type = draft +setting_version = 22 +type = quality [values] -cool_fan_enabled = False -brim_width = 12 -support_brim_enable = True adhesion_type = brim +brim_width = 12 +cool_fan_enabled = False material_bed_temperature = 40 material_bed_temperature_layer_0 = 40 -material_print_temperature = 265 \ No newline at end of file +material_print_temperature = 265 +support_brim_enable = True + diff --git a/resources/quality/fusedform/base/base_nylon_high.inst.cfg b/resources/quality/fusedform/base/base_nylon_high.inst.cfg index 4e412c3931..9b333eff1f 100644 --- a/resources/quality/fusedform/base/base_nylon_high.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_high.inst.cfg @@ -1,20 +1,21 @@ [general] -version = 4 -name = High Quality definition = fusedform_base +name = High Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = -1 material = generic_nylon +quality_type = high +setting_version = 22 +type = quality +weight = -1 [values] -cool_fan_enabled = False -brim_width = 12 -support_brim_enable = True adhesion_type = brim +brim_width = 12 +cool_fan_enabled = False material_bed_temperature = 40 material_bed_temperature_layer_0 = 40 -material_print_temperature = 265 \ No newline at end of file +material_print_temperature = 265 +support_brim_enable = True + diff --git a/resources/quality/fusedform/base/base_nylon_normal.inst.cfg b/resources/quality/fusedform/base/base_nylon_normal.inst.cfg index ab109a6f16..c20f2ea5a3 100644 --- a/resources/quality/fusedform/base/base_nylon_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_normal.inst.cfg @@ -1,20 +1,21 @@ [general] -version = 4 -name = Normal Quality definition = fusedform_base +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -2 material = generic_nylon +quality_type = normal +setting_version = 22 +type = quality +weight = -2 [values] -cool_fan_enabled = False -brim_width = 12 -support_brim_enable = True adhesion_type = brim +brim_width = 12 +cool_fan_enabled = False material_bed_temperature = 40 material_bed_temperature_layer_0 = 40 -material_print_temperature = 265 \ No newline at end of file +material_print_temperature = 265 +support_brim_enable = True + 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 c68a26587c..754a2023b6 100644 --- a/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg @@ -1,20 +1,21 @@ [general] -version = 4 -name = Ultra High Quality definition = fusedform_base +name = Ultra High Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type =ultra high -weight = -1 material = generic_nylon +quality_type = ultra high +setting_version = 22 +type = quality +weight = -1 [values] -cool_fan_enabled = False -brim_width = 12 -support_brim_enable = True adhesion_type = brim +brim_width = 12 +cool_fan_enabled = False material_bed_temperature = 40 material_bed_temperature_layer_0 = 40 -material_print_temperature = 265 \ No newline at end of file +material_print_temperature = 265 +support_brim_enable = True + diff --git a/resources/quality/fusedform/base/base_petg_high.inst.cfg b/resources/quality/fusedform/base/base_petg_high.inst.cfg index 5e5b928a63..f0ceeaadba 100644 --- a/resources/quality/fusedform/base/base_petg_high.inst.cfg +++ b/resources/quality/fusedform/base/base_petg_high.inst.cfg @@ -1,22 +1,21 @@ [general] -version = 4 -name = High Quality definition = fusedform_base +name = High Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = -1 material = generic_petg +quality_type = high +setting_version = 22 +type = quality +weight = -1 [values] -cool_fan_enabled = True -cool_fan_speed=30 -cool_fan_speed_max=40 -brim_width = 12 -support_brim_enable = True adhesion_type = brim +brim_width = 12 +cool_fan_enabled = True +cool_fan_speed = 30 +cool_fan_speed_max = 40 material_bed_temperature = 70 material_print_temperature = 245 speed_infill = =speed_print @@ -25,4 +24,6 @@ speed_print = 30 speed_topbottom = 30 speed_travel = 70 speed_wall = 28 -speed_wall_x = 30 \ No newline at end of file +speed_wall_x = 30 +support_brim_enable = True + diff --git a/resources/quality/fusedform/base/base_petg_normal.inst.cfg b/resources/quality/fusedform/base/base_petg_normal.inst.cfg index 7c95a7540b..40fe6961d7 100644 --- a/resources/quality/fusedform/base/base_petg_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_petg_normal.inst.cfg @@ -1,22 +1,21 @@ [general] -version = 4 -name = Normal Quality definition = fusedform_base +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -2 material = generic_petg +quality_type = normal +setting_version = 22 +type = quality +weight = -2 [values] -cool_fan_enabled = True -cool_fan_speed=30 -cool_fan_speed_max=40 -brim_width = 12 -support_brim_enable = True adhesion_type = brim +brim_width = 12 +cool_fan_enabled = True +cool_fan_speed = 30 +cool_fan_speed_max = 40 material_bed_temperature = 70 material_print_temperature = 245 speed_infill = =speed_print @@ -25,4 +24,6 @@ speed_print = 30 speed_topbottom = 30 speed_travel = 70 speed_wall = 28 -speed_wall_x = 30 \ No newline at end of file +speed_wall_x = 30 +support_brim_enable = True + diff --git a/resources/quality/fusedform/base/base_pla_draft.inst.cfg b/resources/quality/fusedform/base/base_pla_draft.inst.cfg index 71d1b67d36..d0489b1d97 100644 --- a/resources/quality/fusedform/base/base_pla_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_draft.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = fusedform_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -4 material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +weight = -4 [values] material_bed_temperature = 60 -material_print_temperature = 210 \ No newline at end of file +material_print_temperature = 210 + diff --git a/resources/quality/fusedform/base/base_pla_high.inst.cfg b/resources/quality/fusedform/base/base_pla_high.inst.cfg index c449420a71..d3e2c502bb 100644 --- a/resources/quality/fusedform/base/base_pla_high.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_high.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = High Quality definition = fusedform_base +name = High Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = -1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality +weight = -1 [values] material_bed_temperature = 60 material_print_temperature = 210 + diff --git a/resources/quality/fusedform/base/base_pla_normal.inst.cfg b/resources/quality/fusedform/base/base_pla_normal.inst.cfg index 8af209b4fd..5dd85fbcc7 100644 --- a/resources/quality/fusedform/base/base_pla_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_normal.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Normal Quality definition = fusedform_base +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -2 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality +weight = -2 [values] material_bed_temperature = 60 -material_print_temperature = 210 \ No newline at end of file +material_print_temperature = 210 + 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 3042202a1d..bb376bcbc9 100644 --- a/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name =Ultra High Quality definition = fusedform_base +name = Ultra High Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type =ultra high -weight = -2 material = generic_pla +quality_type = ultra high +setting_version = 22 +type = quality +weight = -2 [values] material_bed_temperature = 60 material_print_temperature = 210 + diff --git a/resources/quality/fusedform/base/base_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_ultra_high.inst.cfg index cb1542bb92..3bca5f50bb 100644 --- a/resources/quality/fusedform/base/base_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_ultra_high.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Ultra High Quality definition = fusedform_base +name = Ultra High Quality +version = 4 [metadata] -setting_version = 20 +global_quality = True +quality_type = ultra high +setting_version = 22 type = quality -quality_type =ultra high weight = -1 -global_quality=True [values] -layer_height = 0.08 \ No newline at end of file +layer_height = 0.08 + diff --git a/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg new file mode 100644 index 0000000000..c9602588fe --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = fusion3 +name = Fine Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +adhesion_type = brim +cool_fan_enabled = True +cool_fan_full_layer = 70 +cool_fan_speed = 65 +cool_fan_speed_min = 15 +cool_min_layer_time = 3 +cool_min_layer_time_fan_speed_max = 60 +infill_sparse_density = 75 +inset_direction = outside_in +layer_height = 0.1 +layer_height_0 = 0.25 +line_width = 0.4 +material_bed_temperature = 110 +material_flow = 98 +material_print_temperature = 255.0 +retract_at_layer_change = False +retraction_amount = 2.25 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 55 +speed_print = 35 +speed_travel_layer_0 = 100 +support_angle = 45 +support_enable = True +support_infill_rate = 25 +top_bottom_thickness = 0.55 +wall_thickness = 0.9 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg new file mode 100644 index 0000000000..b48555902e --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg @@ -0,0 +1,41 @@ +[general] +definition = fusion3 +name = Good Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = good +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +adhesion_type = brim +cool_fan_enabled = True +cool_fan_full_layer = 70 +cool_fan_speed = 65 +cool_fan_speed_min = 15 +cool_min_layer_time = 3 +cool_min_layer_time_fan_speed_max = 60 +infill_sparse_density = 15 +inset_direction = outside_in +layer_height = 0.3 +layer_height_0 = 0.3 +line_width = 0.4 +material_bed_temperature = 110 +material_flow = 98 +material_print_temperature = 275 +retract_at_layer_change = False +retraction_amount = 4.75 +retraction_combing = noskin +retraction_combing_max_distance = 10 +speed_print = 125 +speed_travel_layer_0 = 100 +support_angle = 45 +support_enable = True +support_infill_rate = 25 +top_bottom_thickness = 0.9 +wall_thickness = 0.8 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg new file mode 100644 index 0000000000..70f126a30d --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg @@ -0,0 +1,41 @@ +[general] +definition = fusion3 +name = Normal Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +adhesion_type = brim +cool_fan_enabled = True +cool_fan_full_layer = 70 +cool_fan_speed = 65 +cool_fan_speed_min = 15 +cool_min_layer_time = 3 +cool_min_layer_time_fan_speed_max = 60 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height = 0.2 +layer_height_0 = 0.2 +line_width = 0.45 +material_bed_temperature = 110 +material_flow = 98 +material_print_temperature = 270 +retract_at_layer_change = False +retraction_amount = 4 +retraction_combing = noskin +retraction_combing_max_distance = 10 +speed_print = 100 +speed_travel_layer_0 = 100 +support_angle = 45 +support_enable = True +support_infill_rate = 25 +top_bottom_thickness = 0.6 +wall_thickness = 0.8 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg new file mode 100644 index 0000000000..34e9d8d056 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg @@ -0,0 +1,43 @@ +[general] +definition = fusion3 +name = Fine Quality +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +cool_fan_enabled = True +cool_fan_full_layer = 70 +cool_fan_speed = 15 +cool_fan_speed_min = 15 +cool_min_layer_time = 13 +infill_overlap = 15 +infill_sparse_density = 75 +inset_direction = outside_in +layer_height_0 = 0.2 +line_width = 0.4 +material_bed_temperature = 100 +material_flow = 98 +material_flow_layer_0 = 98 +material_print_temperature = 265 +retract_at_layer_change = False +retraction_amount = 2.25 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 50 +skirt_gap = 5 +skirt_line_count = 2 +speed_print = 35 +support_angle = 45 +support_enable = True +support_infill_rate = 40 +top_bottom_thickness = 0.7 +wall_thickness = 0.8 +xy_offset_layer_0 = -0.15 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg new file mode 100644 index 0000000000..534ce0e782 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg @@ -0,0 +1,43 @@ +[general] +definition = fusion3 +name = Good Quality +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = good +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +cool_fan_enabled = True +cool_fan_full_layer = 70 +cool_fan_speed = 15 +cool_fan_speed_min = 15 +cool_min_layer_time = 13 +infill_overlap = 20 +infill_sparse_density = 15 +inset_direction = outside_in +layer_height_0 = 0.3 +line_width = 0.4 +material_bed_temperature = 100 +material_flow = 98 +material_flow_layer_0 = 98 +material_print_temperature = 295 +retract_at_layer_change = False +retraction_amount = 4.75 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 115 +skirt_gap = 5 +skirt_line_count = 2 +speed_print = 85 +support_angle = 45 +support_enable = True +support_infill_rate = 40 +top_bottom_thickness = 0.9 +wall_thickness = 0.8 +xy_offset_layer_0 = -0.15 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg new file mode 100644 index 0000000000..c7cb7ddb90 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg @@ -0,0 +1,43 @@ +[general] +definition = fusion3 +name = Normal Quality +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +cool_fan_enabled = True +cool_fan_full_layer = 70 +cool_fan_speed = 15 +cool_fan_speed_min = 15 +cool_min_layer_time = 13 +infill_overlap = 15 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.2 +line_width = 0.45 +material_bed_temperature = 100 +material_flow = 98 +material_flow_layer_0 = 98 +material_print_temperature = 295 +retract_at_layer_change = False +retraction_amount = 4 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 115 +skirt_gap = 5 +skirt_line_count = 2 +speed_print = 100 +support_angle = 45 +support_enable = True +support_infill_rate = 30 +top_bottom_thickness = 0.6 +wall_thickness = 0.9 +xy_offset_layer_0 = -0.15 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg new file mode 100644 index 0000000000..09c0a08749 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg @@ -0,0 +1,44 @@ +[general] +definition = fusion3 +name = Normal Quality +version = 4 + +[metadata] +material = generic_cpe_175 +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +adhesion_type = brim +cool_fan_enabled = True +cool_fan_full_layer = 60 +cool_fan_speed = 50 +cool_fan_speed_min = 15 +cool_min_layer_time = 11 +cool_min_layer_time_fan_speed_max = 100 +infill_overlap = 20 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.2 +line_width = 0.45 +material_bed_temperature = 110 +material_flow = 100 +material_flow_layer_0 = 100 +material_print_temperature = 215 +retract_at_layer_change = False +retraction_amount = 4 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 115 +speed_print = 35 +speed_support = 35 +support_angle = 45 +support_enable = True +support_infill_rate = 30 +top_bottom_thickness = 0.6 +wall_thickness = 0.8 +xy_offset_layer_0 = -0.15 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg new file mode 100644 index 0000000000..9f68524bb7 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg @@ -0,0 +1,44 @@ +[general] +definition = fusion3 +name = Normal Quality +version = 4 + +[metadata] +material = generic_nylon_175 +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +adhesion_type = brim +cool_fan_enabled = True +cool_fan_full_layer = 60 +cool_fan_speed = 50 +cool_fan_speed_min = 15 +cool_min_layer_time = 2.5 +cool_min_layer_time_fan_speed_max = 40 +infill_overlap = 15 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.2 +line_width = 0.45 +material_bed_temperature = 75 +material_flow = 100 +material_flow_layer_0 = 100 +material_print_temperature = 275 +retract_at_layer_change = False +retraction_amount = 5 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 115 +speed_print = 65 +speed_support = 65 +support_angle = 45 +support_enable = True +support_infill_rate = 30 +top_bottom_thickness = 0.6 +wall_thickness = 0.8 +xy_offset_layer_0 = -0.15 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg new file mode 100644 index 0000000000..bd453749a6 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg @@ -0,0 +1,40 @@ +[general] +definition = fusion3 +name = Normal Quality +version = 4 + +[metadata] +material = generic_pc_175 +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +adhesion_type = brim +cool_fan_enabled = false +cool_min_layer_time = 3 +infill_overlap = 15 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.2 +line_width = 0.45 +material_bed_temperature = 130 +material_flow = 100 +material_flow_layer_0 = 100 +material_print_temperature = 295 +retract_at_layer_change = False +retraction_amount = 5 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 115 +speed_layer_0 = 45 +speed_print = 85 +support_angle = 45 +support_enable = True +support_infill_rate = 30 +top_bottom_thickness = 0.6 +wall_thickness = 0.9 +xy_offset_layer_0 = -0.15 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg new file mode 100644 index 0000000000..c622ef891d --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg @@ -0,0 +1,43 @@ +[general] +definition = fusion3 +name = Normal Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +cool_fan_enabled = True +cool_fan_full_layer = 60 +cool_fan_speed = 75 +cool_fan_speed_min = 15 +cool_min_layer_time = 4 +cool_min_layer_time_fan_speed_max = 70 +infill_overlap = 20 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.2 +line_width = 0.4 +material_bed_temperature = 65 +material_flow = 97 +material_flow_layer_0 = 97 +material_print_temperature = 260 +retract_at_layer_change = False +retraction_amount = 4.6 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 110 +skirt_gap = 5 +speed_print = 85 +support_angle = 45 +support_enable = True +support_infill_rate = 30 +top_bottom_thickness = 0.6 +wall_thickness = 0.8 +xy_offset_layer_0 = -0.15 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg new file mode 100644 index 0000000000..af74ae635e --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = fusion3 +name = Fine Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +adhesion_type = skirt +cool_fan_enabled = True +cool_fan_full_layer = 70 +cool_fan_speed = 100 +cool_fan_speed_min = 15 +cool_min_layer_time = 3 +cool_min_layer_time_fan_speed_max = 65 +infill_sparse_density = 60 +inset_direction = outside_in +layer_height_0 = 0.2 +line_width = 0.4 +material_bed_temperature = 55 +material_flow = 99 +material_print_temperature = 220 +retract_at_layer_change = False +retraction_amount = 2.5 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 55 +skirt_gap = 5 +speed_print = 40 +speed_travel_layer_0 = 100 +support_angle = 45 +support_enable = True +support_infill_rate = 25 +top_bottom_thickness = 0.6 +wall_thickness = 0.9 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg new file mode 100644 index 0000000000..b4b9de8b88 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg @@ -0,0 +1,44 @@ +[general] +definition = fusion3 +name = Good Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = good +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +adhesion_type = skirt +cool_fan_enabled = True +cool_fan_full_at_height = 0.8 +cool_fan_speed = 100 +cool_fan_speed_min = 15 +cool_min_layer_time = 5 +cool_min_layer_time_fan_speed_max = 65 +infill_overlap = 20 +infill_pattern = zigzag +infill_sparse_density = 15 +inset_direction = outside_in +layer_height_0 = 0.3 +line_width = 0.45 +material_bed_temperature = 55 +material_flow = 96 +material_flow_layer_0 = 96 +material_print_temperature = 240 +retract_at_layer_change = False +retraction_amount = 4.25 +retraction_speed = 100 +skirt_gap = 5 +speed_print = 75 +speed_topbottom = 55 +speed_travel = 150 +speed_travel_layer_0 = 100 +speed_wall_0 = 50 +speed_wall_x = 65 +top_bottom_thickness = 0.9 +wall_thickness = 1.35 +xy_offset_layer_0 = -0.15 + diff --git a/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg new file mode 100644 index 0000000000..ab4f8a1239 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg @@ -0,0 +1,43 @@ +[general] +definition = fusion3 +name = Normal Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +adhesion_type = skirt +cool_fan_enabled = True +cool_fan_full_at_height = 0.8 +cool_fan_speed = 100 +cool_fan_speed_min = 15 +cool_min_layer_time = 5 +cool_min_layer_time_fan_speed_max = 65 +infill_overlap = 20 +infill_pattern = zigzag +infill_sparse_density = 25 +inset_direction = outside_in +layer_height_0 = 0.25 +line_width = 0.45 +material_bed_temperature = 55 +material_flow = 96 +material_flow_layer_0 = 96 +material_print_temperature = 230 +retract_at_layer_change = False +retraction_amount = 4.25 +retraction_speed = 100 +skirt_gap = 5 +speed_topbottom = 55 +speed_travel = 150 +speed_travel_layer_0 = 100 +speed_wall_0 = 65 +speed_wall_x = 85 +top_bottom_thickness = 0.6 +wall_thickness = 1.35 +xy_offset_layer_0 = -0.15 + diff --git a/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg new file mode 100644 index 0000000000..3f68a2cfac --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg @@ -0,0 +1,50 @@ +[general] +definition = fusion3 +name = Normal Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +cool_fan_enabled = True +cool_fan_full_layer = 60 +cool_fan_speed = 50 +cool_fan_speed_min = 15 +cool_min_layer_time = 15 +infill_overlap = 20 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.2 +line_width = 0.4 +material_bed_temperature = 45 +material_flow = 125 +material_flow_layer_0 = 125 +material_print_temperature = 255 +retract_at_layer_change = False +retraction_amount = 10 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 50 +skirt_gap = 5 +skirt_line_count = 3 +speed_infill = 20 +speed_layer_0 = 20 +speed_print = 25 +speed_support = 12 +speed_topbottom = 25 +speed_wall = 20 +speed_wall_0 = 20 +speed_wall_x = 20 +support_angle = 50 +support_enable = True +support_infill_rate = 30 +top_bottom_thickness = 0.6 +wall_thickness = 0.8 +xy_offset_layer_0 = -0.15 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg new file mode 100644 index 0000000000..dc19e88cd1 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg @@ -0,0 +1,43 @@ +[general] +definition = fusion3 +name = Good Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = good +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +adhesion_type = brim +cool_fan_enabled = True +cool_fan_full_layer = 70 +cool_fan_speed = 65 +cool_fan_speed_min = 15 +cool_min_layer_time = 3 +cool_min_layer_time_fan_speed_max = 60 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height = 0.3 +layer_height_0 = 0.3 +line_width = 0.4 +material_bed_temperature = 110 +material_flow = 98 +material_print_temperature = 275.0 +retract_at_layer_change = False +retraction_amount = 2.25 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 55 +speed_print = 35 +speed_travel_layer_0 = 100 +support_angle = 45 +support_enable = True +support_infill_rate = 25 +top_bottom_thickness = 0.9 +wall_thickness = 1.2 +xy_offset_layer_0 = -0.2 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg new file mode 100644 index 0000000000..a85bbac743 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = fusion3 +name = Low Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = low +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +adhesion_type = brim +cool_fan_enabled = True +cool_fan_full_layer = 70 +cool_fan_speed = 65 +cool_fan_speed_min = 15 +cool_min_layer_time = 3 +cool_min_layer_time_fan_speed_max = 60 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.35 +line_width = 0.65 +material_bed_temperature = 110 +material_flow = 98 +material_print_temperature = 275.0 +retract_at_layer_change = False +retraction_amount = 2.25 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 55 +speed_print = 35 +speed_travel_layer_0 = 100 +support_angle = 45 +support_enable = True +support_infill_rate = 25 +top_bottom_thickness = 0.9 +wall_thickness = 1.2 +xy_offset_layer_0 = -0.2 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg new file mode 100644 index 0000000000..4176a6720f --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg @@ -0,0 +1,43 @@ +[general] +definition = fusion3 +name = Good Quality +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = good +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +cool_fan_enabled = True +cool_fan_full_layer = 70 +cool_fan_speed = 25 +cool_fan_speed_min = 15 +cool_min_layer_time = 13 +infill_overlap = 15 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.3 +line_width = 0.6 +material_bed_temperature = 100 +material_flow = 98 +material_flow_layer_0 = 98 +material_print_temperature = 290 +retract_at_layer_change = False +retraction_amount = 4 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 115 +skirt_gap = 5 +skirt_line_count = 1 +speed_print = 85 +support_angle = 45 +support_enable = True +support_infill_rate = 30 +top_bottom_thickness = 0.9 +wall_thickness = 1.2 +xy_offset_layer_0 = -0.2 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg new file mode 100644 index 0000000000..d30ef99770 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg @@ -0,0 +1,43 @@ +[general] +definition = fusion3 +name = Low Quality +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = low +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +cool_fan_enabled = True +cool_fan_full_layer = 70 +cool_fan_speed = 25 +cool_fan_speed_min = 15 +cool_min_layer_time = 13 +infill_overlap = 15 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.35 +line_width = 0.65 +material_bed_temperature = 100 +material_flow = 98 +material_flow_layer_0 = 98 +material_print_temperature = 290 +retract_at_layer_change = False +retraction_amount = 4 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 115 +skirt_gap = 5 +skirt_line_count = 1 +speed_print = 75 +support_angle = 45 +support_enable = True +support_infill_rate = 30 +top_bottom_thickness = 1 +wall_thickness = 1.3 +xy_offset_layer_0 = -0.2 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg new file mode 100644 index 0000000000..f912e562cd --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg @@ -0,0 +1,44 @@ +[general] +definition = fusion3 +name = Good Quality +version = 4 + +[metadata] +material = generic_cpe_175 +quality_type = good +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +adhesion_type = brim +cool_fan_enabled = True +cool_fan_full_layer = 60 +cool_fan_speed = 50 +cool_fan_speed_min = 15 +cool_min_layer_time = 11 +cool_min_layer_time_fan_speed_max = 100 +infill_overlap = 20 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.3 +line_width = 0.6 +material_bed_temperature = 110 +material_flow = 100 +material_flow_layer_0 = 100 +material_print_temperature = 280 +retract_at_layer_change = False +retraction_amount = 4 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 115 +speed_print = 35 +speed_support = 35 +support_angle = 45 +support_enable = True +support_infill_rate = 30 +top_bottom_thickness = 0.9 +wall_thickness = 1.2 +xy_offset_layer_0 = -0.2 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg new file mode 100644 index 0000000000..70549b4b59 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg @@ -0,0 +1,44 @@ +[general] +definition = fusion3 +name = Good Quality +version = 4 + +[metadata] +material = generic_nylon_175 +quality_type = good +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +adhesion_type = brim +cool_fan_enabled = True +cool_fan_full_layer = 60 +cool_fan_speed = 50 +cool_fan_speed_min = 15 +cool_min_layer_time = 2.5 +cool_min_layer_time_fan_speed_max = 40 +infill_overlap = 15 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.3 +line_width = 0.6 +material_bed_temperature = 75 +material_flow = 100 +material_flow_layer_0 = 100 +material_print_temperature = 275 +retract_at_layer_change = False +retraction_amount = 5 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 115 +speed_print = 65 +speed_support = 65 +support_angle = 45 +support_enable = True +support_infill_rate = 30 +top_bottom_thickness = 0.9 +wall_thickness = 1.2 +xy_offset_layer_0 = -0.2 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg new file mode 100644 index 0000000000..928bc4cff9 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg @@ -0,0 +1,40 @@ +[general] +definition = fusion3 +name = Good Quality +version = 4 + +[metadata] +material = generic_pc_175 +quality_type = good +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +adhesion_type = brim +cool_fan_enabled = False +cool_min_layer_time = 5 +infill_overlap = 15 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.3 +line_width = 0.6 +material_bed_temperature = 130 +material_flow = 100 +material_flow_layer_0 = 100 +material_print_temperature = 295 +retract_at_layer_change = False +retraction_amount = 5 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 115 +speed_layer_0 = 25 +speed_print = 50 +support_angle = 45 +support_enable = True +support_infill_rate = 30 +top_bottom_thickness = 0.9 +wall_thickness = 1.2 +xy_offset_layer_0 = -0.2 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg new file mode 100644 index 0000000000..8203979de3 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg @@ -0,0 +1,43 @@ +[general] +definition = fusion3 +name = Good Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = good +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +cool_fan_enabled = True +cool_fan_full_layer = 60 +cool_fan_speed = 100 +cool_fan_speed_min = 15 +cool_min_layer_time = 5 +cool_min_layer_time_fan_speed_max = 20 +infill_overlap = 20 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.3 +line_width = 0.6 +material_bed_temperature = 65 +material_flow = 97 +material_flow_layer_0 = 97 +material_print_temperature = 265 +retract_at_layer_change = False +retraction_amount = 5 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 115 +skirt_gap = 5 +speed_print = 65 +support_angle = 45 +support_enable = True +support_infill_rate = 30 +top_bottom_thickness = 0.9 +wall_thickness = 1.2 +xy_offset_layer_0 = -0.15 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg new file mode 100644 index 0000000000..b464d9fb14 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg @@ -0,0 +1,43 @@ +[general] +definition = fusion3 +name = Good Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = good +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +adhesion_type = skirt +cool_fan_enabled = True +cool_fan_full_at_height = 0.8 +cool_fan_speed = 100 +cool_fan_speed_min = 15 +cool_min_layer_time = 5 +cool_min_layer_time_fan_speed_max = 65 +infill_overlap = 20 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.3 +line_width = 0.6 +material_bed_temperature = 55 +material_flow = 96 +material_flow_layer_0 = 96 +material_print_temperature = 240 +retract_at_layer_change = False +retraction_amount = 4.2 +retraction_speed = 100 +skirt_gap = 5 +speed_infill = 75 +speed_print = 100 +speed_roofing = 50 +speed_topbottom = 55 +speed_travel = 150 +speed_travel_layer_0 = 100 +top_bottom_thickness = 0.9 +wall_line_count = 2 +xy_offset_layer_0 = -0.2 + diff --git a/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg new file mode 100644 index 0000000000..8f2353cb15 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg @@ -0,0 +1,41 @@ +[general] +definition = fusion3 +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +adhesion_type = skirt +cool_fan_enabled = True +cool_fan_full_at_height = 0.8 +cool_fan_speed = 100 +cool_fan_speed_min = 15 +cool_min_layer_time = 5 +cool_min_layer_time_fan_speed_max = 65 +infill_overlap = 20 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.35 +line_width = 0.65 +material_bed_temperature = 55 +material_flow = 96 +material_flow_layer_0 = 96 +material_print_temperature = 240 +retract_at_layer_change = False +retraction_amount = 4.2 +retraction_speed = 100 +skirt_gap = 5 +speed_infill = 75 +speed_print = 125 +speed_travel = 150 +speed_travel_layer_0 = 100 +top_bottom_thickness = 1.0 +wall_thickness = 1.3 +xy_offset_layer_0 = -0.2 + diff --git a/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg new file mode 100644 index 0000000000..a40d1d0687 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg @@ -0,0 +1,50 @@ +[general] +definition = fusion3 +name = Good Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = good +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +cool_fan_enabled = True +cool_fan_full_layer = 60 +cool_fan_speed = 50 +cool_fan_speed_min = 15 +cool_min_layer_time = 15 +infill_overlap = 20 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.3 +line_width = 0.6 +material_bed_temperature = 45 +material_flow = 125 +material_flow_layer_0 = 125 +material_print_temperature = 255 +retract_at_layer_change = False +retraction_amount = 10 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 50 +skirt_gap = 5 +skirt_line_count = 3 +speed_infill = 25 +speed_layer_0 = 20 +speed_print = 25 +speed_support = 20 +speed_topbottom = 25 +speed_wall = 25 +speed_wall_0 = 20 +speed_wall_x = 25 +support_angle = 50 +support_enable = True +support_infill_rate = 30 +top_bottom_thickness = 0.9 +wall_thickness = 1.2 +xy_offset_layer_0 = -0.15 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg new file mode 100644 index 0000000000..9730a818b4 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = fusion3 +name = Rapid Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = rapid +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +adhesion_type = brim +cool_fan_enabled = True +cool_fan_full_layer = 70 +cool_fan_speed = 65 +cool_fan_speed_min = 15 +cool_min_layer_time = 3 +cool_min_layer_time_fan_speed_max = 60 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.4 +line_width = 0.8 +material_bed_temperature = 110 +material_flow = 98 +material_print_temperature = 275.0 +retract_at_layer_change = False +retraction_amount = 4.25 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 55 +speed_print = 83.3 +speed_travel_layer_0 = 100 +support_angle = 45 +support_enable = True +support_infill_rate = 30 +top_bottom_thickness = 1.2 +wall_thickness = 1.6 +xy_offset_layer_0 = -0.2 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg new file mode 100644 index 0000000000..a4a75cc815 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = fusion3 +name = Rough Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = rough +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +adhesion_type = brim +cool_fan_enabled = True +cool_fan_full_layer = 70 +cool_fan_speed = 65 +cool_fan_speed_min = 15 +cool_min_layer_time = 3 +cool_min_layer_time_fan_speed_max = 60 +infill_sparse_density = 15 +inset_direction = outside_in +layer_height_0 = 0.5 +line_width = 0.8 +material_bed_temperature = 110 +material_flow = 98 +material_print_temperature = 275.0 +retract_at_layer_change = False +retraction_amount = 4.25 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 55 +speed_print = 100 +speed_travel_layer_0 = 100 +support_angle = 45 +support_enable = True +support_infill_rate = 25 +top_bottom_thickness = 1.5 +wall_thickness = 1.6 +xy_offset_layer_0 = -0.2 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg new file mode 100644 index 0000000000..cc916177e5 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg @@ -0,0 +1,43 @@ +[general] +definition = fusion3 +name = Rapid Quality +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = rapid +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +cool_fan_enabled = True +cool_fan_full_layer = 70 +cool_fan_speed = 15 +cool_fan_speed_min = 15 +cool_min_layer_time = 13 +infill_overlap = 15 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.4 +line_width = 0.8 +material_bed_temperature = 100 +material_flow = 98 +material_flow_layer_0 = 98 +material_print_temperature = 290 +retract_at_layer_change = False +retraction_amount = 4 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 115 +skirt_gap = 5 +skirt_line_count = 1 +speed_print = 65 +support_angle = 45 +support_enable = True +support_infill_rate = 30 +top_bottom_thickness = 1.2 +wall_thickness = 1.6 +xy_offset_layer_0 = -0.25 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg new file mode 100644 index 0000000000..a71256c3aa --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg @@ -0,0 +1,43 @@ +[general] +definition = fusion3 +name = Rough Quality +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = rough +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +cool_fan_enabled = True +cool_fan_full_layer = 70 +cool_fan_speed = 15 +cool_fan_speed_min = 15 +cool_min_layer_time = 13 +infill_overlap = 15 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.48 +line_width = 0.85 +material_bed_temperature = 100 +material_flow = 98 +material_flow_layer_0 = 98 +material_print_temperature = 290 +retract_at_layer_change = False +retraction_amount = 4 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 115 +skirt_gap = 5 +skirt_line_count = 1 +speed_print = 55 +support_angle = 45 +support_enable = True +support_infill_rate = 30 +top_bottom_thickness = 1.5 +wall_thickness = 1.7 +xy_offset_layer_0 = -0.25 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg new file mode 100644 index 0000000000..d4f4738309 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg @@ -0,0 +1,44 @@ +[general] +definition = fusion3 +name = Rapid Quality +version = 4 + +[metadata] +material = generic_cpe_175 +quality_type = rapid +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +adhesion_type = brim +cool_fan_enabled = True +cool_fan_full_layer = 60 +cool_fan_speed = 50 +cool_fan_speed_min = 15 +cool_min_layer_time = 15 +cool_min_layer_time_fan_speed_max = 100 +infill_overlap = 20 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.4 +line_width = 0.8 +material_bed_temperature = 110 +material_flow = 100 +material_flow_layer_0 = 100 +material_print_temperature = 285 +retract_at_layer_change = False +retraction_amount = 4 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 115 +speed_print = 35 +speed_support = 35 +support_angle = 45 +support_enable = True +support_infill_rate = 30 +top_bottom_thickness = 1.2 +wall_thickness = 1.6 +xy_offset_layer_0 = -0.25 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg new file mode 100644 index 0000000000..058691fa79 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg @@ -0,0 +1,44 @@ +[general] +definition = fusion3 +name = Rapid Quality +version = 4 + +[metadata] +material = generic_nylon_175 +quality_type = rapid +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +adhesion_type = brim +cool_fan_enabled = True +cool_fan_full_layer = 60 +cool_fan_speed = 50 +cool_fan_speed_min = 15 +cool_min_layer_time = 2.5 +cool_min_layer_time_fan_speed_max = 40 +infill_overlap = 15 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.4 +line_width = 0.8 +material_bed_temperature = 75 +material_flow = 100 +material_flow_layer_0 = 100 +material_print_temperature = 275 +retract_at_layer_change = False +retraction_amount = 5 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 115 +speed_print = 65 +speed_support = 65 +support_angle = 45 +support_enable = True +support_infill_rate = 30 +top_bottom_thickness = 1.2 +wall_thickness = 1.6 +xy_offset_layer_0 = -0.25 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg new file mode 100644 index 0000000000..94921dc336 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg @@ -0,0 +1,40 @@ +[general] +definition = fusion3 +name = Rapid Quality +version = 4 + +[metadata] +material = generic_pc_175 +quality_type = rapid +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +adhesion_type = brim +cool_fan_enabled = False +cool_min_layer_time = 5 +infill_overlap = 15 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.4 +line_width = 0.8 +material_bed_temperature = 130 +material_flow = 100 +material_flow_layer_0 = 100 +material_print_temperature = 295 +retract_at_layer_change = False +retraction_amount = 5 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 115 +speed_layer_0 = 25 +speed_print = 50 +support_angle = 45 +support_enable = True +support_infill_rate = 30 +top_bottom_thickness = 1.2 +wall_thickness = 1.6 +xy_offset_layer_0 = -0.25 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg new file mode 100644 index 0000000000..27effc7be8 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg @@ -0,0 +1,43 @@ +[general] +definition = fusion3 +name = Rapid Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = rapid +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +cool_fan_enabled = True +cool_fan_full_layer = 60 +cool_fan_speed = 75 +cool_fan_speed_min = 15 +cool_min_layer_time = 5 +cool_min_layer_time_fan_speed_max = 20 +infill_overlap = 20 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.4 +line_width = 0.8 +material_bed_temperature = 65 +material_flow = 97 +material_flow_layer_0 = 97 +material_print_temperature = 275 +retract_at_layer_change = False +retraction_amount = 5 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 115 +skirt_gap = 5 +speed_print = 65 +support_angle = 45 +support_enable = True +support_infill_rate = 30 +top_bottom_thickness = 1.2 +wall_thickness = 1.6 +xy_offset_layer_0 = -0.15 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg new file mode 100644 index 0000000000..1bc905dea8 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg @@ -0,0 +1,43 @@ +[general] +definition = fusion3 +name = Rapid Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = rapid +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +adhesion_type = skirt +cool_fan_enabled = True +cool_fan_full_at_height = 0.8 +cool_fan_speed = 100 +cool_fan_speed_min = 15 +cool_min_layer_time = 5 +cool_min_layer_time_fan_speed_max = 65 +infill_overlap = 20 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.4 +line_width = 0.8 +material_bed_temperature = 55 +material_flow = 96 +material_flow_layer_0 = 96 +material_print_temperature = 240 +material_print_temperature_layer_0 = 240 +retract_at_layer_change = False +retraction_amount = 4 +retraction_speed = 100 +skirt_gap = 5 +speed_infill = 45 +speed_print = 65 +speed_travel = 150 +speed_travel_layer_0 = 100 +speed_wall_x = 45 +top_bottom_thickness = 1.2 +wall_line_count = 2 +xy_offset_layer_0 = -0.25 + diff --git a/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg new file mode 100644 index 0000000000..59cb70389e --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg @@ -0,0 +1,41 @@ +[general] +definition = fusion3 +name = Rough Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = rough +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +adhesion_type = skirt +cool_fan_full_at_height = 1.0 +cool_fan_speed = 100 +cool_min_layer_time = 16 +cool_min_speed = 30 +infill_overlap = 20 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.44 +line_width = 0.85 +material_bed_temperature = 55 +material_flow = 96 +material_flow_layer_0 = 96 +material_print_temperature = 240 +material_print_temperature_layer_0 = 240 +retract_at_layer_change = False +retraction_amount = 4 +retraction_speed = 100 +skirt_gap = 5 +speed_infill = 40 +speed_print = 60 +speed_travel = 150 +speed_travel_layer_0 = 100 +speed_wall_x = 40 +top_bottom_thickness = 1.4 +wall_line_count = 2 +xy_offset_layer_0 = -0.25 + diff --git a/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg new file mode 100644 index 0000000000..e6f7bf74d6 --- /dev/null +++ b/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg @@ -0,0 +1,50 @@ +[general] +definition = fusion3 +name = Rapid Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = rapid +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +cool_fan_enabled = True +cool_fan_full_layer = 60 +cool_fan_speed = 50 +cool_fan_speed_min = 15 +cool_min_layer_time = 20 +infill_overlap = 20 +infill_sparse_density = 30 +inset_direction = outside_in +layer_height_0 = 0.4 +line_width = 0.8 +material_bed_temperature = 45 +material_flow = 125 +material_flow_layer_0 = 125 +material_print_temperature = 255 +retract_at_layer_change = False +retraction_amount = 10 +retraction_combing = noskin +retraction_combing_max_distance = 10 +retraction_speed = 50 +skirt_gap = 5 +skirt_line_count = 3 +speed_infill = 25 +speed_layer_0 = 20 +speed_print = 25 +speed_support = 20 +speed_topbottom = 25 +speed_wall = 25 +speed_wall_0 = 20 +speed_wall_x = 25 +support_angle = 50 +support_enable = True +support_infill_rate = 30 +top_bottom_thickness = 1.2 +wall_thickness = 1.6 +xy_offset_layer_0 = -0.15 +zig_zaggify_infill = True + diff --git a/resources/quality/fusion3/fusion3_global_fine.inst.cfg b/resources/quality/fusion3/fusion3_global_fine.inst.cfg new file mode 100644 index 0000000000..550269bb72 --- /dev/null +++ b/resources/quality/fusion3/fusion3_global_fine.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = fusion3 +name = Fine Quality +version = 4 + +[metadata] +global_quality = True +quality_type = fine +setting_version = 22 +type = quality + +[values] +layer_height = 0.1 + diff --git a/resources/quality/fusion3/fusion3_global_good.inst.cfg b/resources/quality/fusion3/fusion3_global_good.inst.cfg new file mode 100644 index 0000000000..d1a46528a3 --- /dev/null +++ b/resources/quality/fusion3/fusion3_global_good.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = fusion3 +name = Good Quality +version = 4 + +[metadata] +global_quality = True +quality_type = good +setting_version = 22 +type = quality + +[values] +layer_height = 0.3 + diff --git a/resources/quality/fusion3/fusion3_global_low.inst.cfg b/resources/quality/fusion3/fusion3_global_low.inst.cfg new file mode 100644 index 0000000000..7a0d9903f9 --- /dev/null +++ b/resources/quality/fusion3/fusion3_global_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = fusion3 +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 22 +type = quality + +[values] +layer_height = 0.35 + diff --git a/resources/quality/fusion3/fusion3_global_normal.inst.cfg b/resources/quality/fusion3/fusion3_global_normal.inst.cfg new file mode 100644 index 0000000000..7f96dfd125 --- /dev/null +++ b/resources/quality/fusion3/fusion3_global_normal.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = fusion3 +name = Normal Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality + +[values] +layer_height = 0.2 + diff --git a/resources/quality/fusion3/fusion3_global_rapid.inst.cfg b/resources/quality/fusion3/fusion3_global_rapid.inst.cfg new file mode 100644 index 0000000000..2b008a34bc --- /dev/null +++ b/resources/quality/fusion3/fusion3_global_rapid.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = fusion3 +name = Rapid Quality +version = 4 + +[metadata] +global_quality = True +quality_type = rapid +setting_version = 22 +type = quality + +[values] +layer_height = 0.4 + diff --git a/resources/quality/fusion3/fusion3_global_rough.inst.cfg b/resources/quality/fusion3/fusion3_global_rough.inst.cfg new file mode 100644 index 0000000000..b35f187e4f --- /dev/null +++ b/resources/quality/fusion3/fusion3_global_rough.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = fusion3 +name = Rough Quality +version = 4 + +[metadata] +global_quality = True +quality_type = rough +setting_version = 22 +type = quality + +[values] +layer_height = 0.5 + 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 new file mode 100644 index 0000000000..56949ee359 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..521c02c0d4 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Ultra Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..bbf17e47a8 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..e2e561fcb1 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Ultra Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..02050a3ddf --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..9ce8fc3942 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Ultra Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..4b65a92d95 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..8d23c0dc6b --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Low Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = low +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..50cdedebe0 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..126bd092a5 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..8587dc7962 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..c296921d46 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..0a75d800c7 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..b4bdd0a93b --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..95fe7f7d8a --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..d1ade85d18 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..d08208603c --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..46228e4d7d --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..16373eb8ef --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..fb007f9a89 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..8177d8966c --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Super Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = super +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..4853c2e5e1 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..19647ca550 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Low Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..fff6581a5b --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..4100240278 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..ac8a268c16 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..ed70b58430 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..4bcc9c1d86 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..95ac3b3131 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..6d79a235c5 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..920f577503 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..3ff4c8265b --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..b53467ee0e --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..e332e2dd0a --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..59ab8728fd --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..b5f47c0cab --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Super Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..70a4bdaf53 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..5220a0b9d0 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Low Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = low +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..9d21f11fbb --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..861a42b02b --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..3a24d0434e --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..31f314f746 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..5f0c62b87c --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..f4c58e13f4 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..8099a6d9ab --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..7cb4b4a403 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..c5fca47a05 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..6eef17f39b --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..99d35c0aa1 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..56a835b8b9 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..611d41e945 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Super Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = super +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..9fcc9134b8 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..1387a15850 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..949889dfeb --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..4cacb4446c --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..a59ad5cb2f --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..813e0e23f8 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..a739a21985 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Draft Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..b3a3737105 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Draft Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..a8eeab044a --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..f03daad1c1 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Draft Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..b4e4512748 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Draft Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle + +[values] +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..420564deb5 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Draft Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..8d3780d66e --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..86d18c3ae4 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Draft Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle + +[values] + diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg new file mode 100644 index 0000000000..7099f6599b --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.20 +support_interface_height = =layer_height*6 +top_bottom_thickness = =layer_height_0+layer_height*4 +wall_thickness = =line_width*3 + diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg new file mode 100644 index 0000000000..38e93d5c17 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -5 + +[values] +layer_height = 0.32 +layer_height_0 = 0.32 +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg new file mode 100644 index 0000000000..3d31995b84 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 22 +type = quality +weight = -4 + +[values] +layer_height = 0.28 +layer_height_0 = 0.28 +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg new file mode 100644 index 0000000000..7aac640434 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = standard +setting_version = 22 +type = quality +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg new file mode 100644 index 0000000000..8d12668db0 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Super Quality +version = 4 + +[metadata] +global_quality = True +quality_type = super +setting_version = 22 +type = quality +weight = -1 + +[values] +layer_height = 0.12 +layer_height_0 = 0.12 +support_interface_height = =layer_height*8 +top_bottom_thickness = =layer_height_0+layer_height*6 +wall_thickness = =line_width*3 + diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg new file mode 100644 index 0000000000..0a3b3bb737 --- /dev/null +++ b/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = Geeetech_Base_Single_Extruder +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +weight = 0 + +[values] +layer_height = 0.08 +layer_height_0 = 0.12 +support_interface_height = =layer_height*12 +top_bottom_thickness = =layer_height_0+layer_height*10 +wall_thickness = =line_width*3 + diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg index 91f7f39f67..62b96f2e85 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg @@ -1,70 +1,61 @@ [general] -version = 4 -name = gMax 1.5+ Dual Normal Layers definition = gmax15plus_dual +name = gMax 1.5+ Dual Normal Layers +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.2 -layer_height_0 = 0.28 - -infill_before_walls = False -infill_overlap = 20 -infill_pattern = grid - -speed_slowdown_layers = 1 acceleration_enabled = True acceleration_print = 400 acceleration_travel = 700 - +adhesion_type = skirt +bottom_layers = 2 coasting_enable = False coasting_volume = 0.0625 - -retraction_combing = off -retraction_amount = 0.75 -retraction_speed = 70 -material_flow = 98 - -support_use_towers = False -support_z_distance = 0.2 -support_xy_distance = 1.5 -support_join_distance = 10 -support_interface_enable = True -support_interface_pattern = lines - -adhesion_type = skirt -skirt_gap = 2 - cool_fan_speed = 70 cool_fan_speed_max = 85 -skin_overlap = 10 -speed_print = 50 -speed_infill = =math.ceil(speed_print * 0.85) -speed_layer_0 = =math.ceil(speed_print * 0.45) -speed_topbottom = =math.ceil(speed_print * 0.75) -speed_wall = =math.ceil(speed_print * 0.5) -speed_wall_x = =math.ceil(speed_print * 0.7) - -top_bottom_pattern = lines -top_layers = 4 -top_thickness = 1 -bottom_layers = 2 -wall_line_count = 2 -z_seam_corner = z_seam_corner_none - +infill_before_walls = False +infill_overlap = 20 +infill_pattern = grid +layer_height = 0.2 +layer_height_0 = 0.28 +material_flow = 98 +material_standby_temperature = =material_print_temperature - 10 ooze_shield_angle = 20 ooze_shield_dist = 4 ooze_shield_enabled = True prime_tower_enable = False prime_tower_position_x = 350 prime_tower_position_y = 350 +retraction_amount = 0.75 +retraction_combing = off +retraction_speed = 70 +skin_overlap = 10 +skirt_gap = 2 +speed_infill = =math.ceil(speed_print * 0.85) +speed_layer_0 = =math.ceil(speed_print * 0.45) +speed_print = 50 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 0.75) +speed_wall = =math.ceil(speed_print * 0.5) +speed_wall_x = =math.ceil(speed_print * 0.7) +support_interface_enable = True +support_interface_pattern = lines +support_join_distance = 10 +support_use_towers = False +support_xy_distance = 1.5 +support_z_distance = 0.2 switch_extruder_retraction_amount = 6 switch_extruder_retraction_speeds = 60 +top_bottom_pattern = lines +top_layers = 4 +top_thickness = 1 +wall_line_count = 2 +z_seam_corner = z_seam_corner_none -material_standby_temperature = =material_print_temperature - 10 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg index ab00a33d59..4ce1ac32d9 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg @@ -1,70 +1,61 @@ [general] -version = 4 -name = gMax 1.5+ Dual Thick Layers definition = gmax15plus_dual +name = gMax 1.5+ Dual Thick Layers +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = course -weight = -2 global_quality = True +quality_type = course +setting_version = 22 +type = quality +weight = -2 [values] -layer_height = 0.28 -layer_height_0 = 0.32 - -infill_before_walls = False -infill_overlap = 20 -infill_pattern = grid - -speed_slowdown_layers = 1 acceleration_enabled = True acceleration_print = 400 acceleration_travel = 700 - +adhesion_type = skirt +bottom_layers = 2 coasting_enable = False coasting_volume = 0.0625 - -retraction_combing = off -retraction_amount = 0.75 -retraction_speed = 70 -material_flow = 98 - -support_use_towers = False -support_z_distance = 0.2 -support_xy_distance = 1.5 -support_join_distance = 10 -support_interface_enable = True -support_interface_pattern = lines - -adhesion_type = skirt -skirt_gap = 2 - cool_fan_speed = 70 cool_fan_speed_max = 85 -skin_overlap = 10 -speed_print = 40 -speed_infill = =math.ceil(speed_print * 0.85) -speed_layer_0 = =math.ceil(speed_print * 0.5) -speed_topbottom = =math.ceil(speed_print * 0.75) -speed_wall = =math.ceil(speed_print * 0.5) -speed_wall_x = =math.ceil(speed_print * 0.7) - -top_bottom_pattern = lines -top_layers = 3 -top_thickness = 1 -bottom_layers = 2 -wall_line_count = 2 -z_seam_corner = z_seam_corner_none - +infill_before_walls = False +infill_overlap = 20 +infill_pattern = grid +layer_height = 0.28 +layer_height_0 = 0.32 +material_flow = 98 +material_standby_temperature = =material_print_temperature - 10 ooze_shield_angle = 20 ooze_shield_dist = 4 ooze_shield_enabled = True prime_tower_enable = False prime_tower_position_x = 350 prime_tower_position_y = 350 +retraction_amount = 0.75 +retraction_combing = off +retraction_speed = 70 +skin_overlap = 10 +skirt_gap = 2 +speed_infill = =math.ceil(speed_print * 0.85) +speed_layer_0 = =math.ceil(speed_print * 0.5) +speed_print = 40 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 0.75) +speed_wall = =math.ceil(speed_print * 0.5) +speed_wall_x = =math.ceil(speed_print * 0.7) +support_interface_enable = True +support_interface_pattern = lines +support_join_distance = 10 +support_use_towers = False +support_xy_distance = 1.5 +support_z_distance = 0.2 switch_extruder_retraction_amount = 6 switch_extruder_retraction_speeds = 60 +top_bottom_pattern = lines +top_layers = 3 +top_thickness = 1 +wall_line_count = 2 +z_seam_corner = z_seam_corner_none -material_standby_temperature = =material_print_temperature - 10 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg index ffa7341558..e37ec93ea8 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg @@ -1,70 +1,61 @@ [general] -version = 4 -name = gMax 1.5+ Dual Thin Layers definition = gmax15plus_dual +name = gMax 1.5+ Dual Thin Layers +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] -layer_height = 0.16 -layer_height_0 = 0.2 - -infill_before_walls = False -infill_overlap = 20 -infill_pattern = grid - -speed_slowdown_layers = 1 acceleration_enabled = True acceleration_print = 400 acceleration_travel = 700 - +adhesion_type = skirt +bottom_layers = 2 coasting_enable = False coasting_volume = 0.0625 - -retraction_combing = off -retraction_amount = 0.75 -retraction_speed = 70 -material_flow = 98 - -support_use_towers = False -support_z_distance = 0.2 -support_xy_distance = 1.5 -support_join_distance = 10 -support_interface_enable = True -support_interface_pattern = lines - -adhesion_type = skirt -skirt_gap = 2 - cool_fan_speed = 70 cool_fan_speed_max = 85 -skin_overlap = 10 -speed_print = 40 -speed_infill = =math.ceil(speed_print * 0.85) -speed_layer_0 = =math.ceil(speed_print * 0.4) -speed_topbottom = =math.ceil(speed_print * 0.75) -speed_wall = =math.ceil(speed_print * 0.5) -speed_wall_x = =math.ceil(speed_print * 0.7) - -top_bottom_pattern = lines -top_layers = 4 -top_thickness = 1 -bottom_layers = 2 -wall_line_count = 2 -z_seam_corner = z_seam_corner_none - +infill_before_walls = False +infill_overlap = 20 +infill_pattern = grid +layer_height = 0.16 +layer_height_0 = 0.2 +material_flow = 98 +material_standby_temperature = =material_print_temperature - 10 ooze_shield_angle = 20 ooze_shield_dist = 4 ooze_shield_enabled = True prime_tower_enable = False prime_tower_position_x = 350 prime_tower_position_y = 350 +retraction_amount = 0.75 +retraction_combing = off +retraction_speed = 70 +skin_overlap = 10 +skirt_gap = 2 +speed_infill = =math.ceil(speed_print * 0.85) +speed_layer_0 = =math.ceil(speed_print * 0.4) +speed_print = 40 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 0.75) +speed_wall = =math.ceil(speed_print * 0.5) +speed_wall_x = =math.ceil(speed_print * 0.7) +support_interface_enable = True +support_interface_pattern = lines +support_join_distance = 10 +support_use_towers = False +support_xy_distance = 1.5 +support_z_distance = 0.2 switch_extruder_retraction_amount = 6 switch_extruder_retraction_speeds = 60 +top_bottom_pattern = lines +top_layers = 4 +top_thickness = 1 +wall_line_count = 2 +z_seam_corner = z_seam_corner_none -material_standby_temperature = =material_print_temperature - 10 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 b748cf1e36..dcbfb3d58a 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg @@ -1,69 +1,60 @@ [general] -version = 4 -name = gMax 1.5+ Dual Very Thick Layers definition = gmax15plus_dual +name = gMax 1.5+ Dual Very Thick Layers +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra_course -weight = -3 global_quality = True +quality_type = extra_course +setting_version = 22 +type = quality +weight = -3 [values] -layer_height = 0.32 - -infill_before_walls = False -infill_overlap = 20 -infill_pattern = grid - -speed_slowdown_layers = 1 acceleration_enabled = True acceleration_print = 400 acceleration_travel = 700 - +adhesion_type = skirt +bottom_layers = 2 coasting_enable = False coasting_volume = 0.0625 - -retraction_combing = off -retraction_amount = 0.75 -retraction_speed = 70 -material_flow = 98 - -support_use_towers = False -support_z_distance = 0.2 -support_xy_distance = 1.5 -support_join_distance = 10 -support_interface_enable = True -support_interface_pattern = lines - -adhesion_type = skirt -skirt_gap = 2 - cool_fan_speed = 70 cool_fan_speed_max = 85 -skin_overlap = 10 -speed_print = 40 -speed_infill = =math.ceil(speed_print * 0.85) -speed_layer_0 = =math.ceil(speed_print * 0.45) -speed_topbottom = =math.ceil(speed_print * 0.75) -speed_wall = =math.ceil(speed_print * 0.5) -speed_wall_x = =math.ceil(speed_print * 0.7) - -top_bottom_pattern = lines -top_layers = 3 -top_thickness = 1 -bottom_layers = 2 -wall_line_count = 2 -z_seam_corner = z_seam_corner_none - +infill_before_walls = False +infill_overlap = 20 +infill_pattern = grid +layer_height = 0.32 +material_flow = 98 +material_standby_temperature = =material_print_temperature - 10 ooze_shield_angle = 20 ooze_shield_dist = 4 ooze_shield_enabled = True prime_tower_enable = False prime_tower_position_x = 350 prime_tower_position_y = 350 +retraction_amount = 0.75 +retraction_combing = off +retraction_speed = 70 +skin_overlap = 10 +skirt_gap = 2 +speed_infill = =math.ceil(speed_print * 0.85) +speed_layer_0 = =math.ceil(speed_print * 0.45) +speed_print = 40 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 0.75) +speed_wall = =math.ceil(speed_print * 0.5) +speed_wall_x = =math.ceil(speed_print * 0.7) +support_interface_enable = True +support_interface_pattern = lines +support_join_distance = 10 +support_use_towers = False +support_xy_distance = 1.5 +support_z_distance = 0.2 switch_extruder_retraction_amount = 6 switch_extruder_retraction_speeds = 60 +top_bottom_pattern = lines +top_layers = 3 +top_thickness = 1 +wall_line_count = 2 +z_seam_corner = z_seam_corner_none -material_standby_temperature = =material_print_temperature - 10 diff --git a/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg index 0bbaea9af4..a476f1d287 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg @@ -1,61 +1,52 @@ [general] -version = 4 -name = gMax 1.5+ Normal Layers definition = gmax15plus +name = gMax 1.5+ Normal Layers +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.2 -layer_height_0 = 0.28 - -infill_before_walls = False -infill_overlap = 20 -infill_pattern = grid - -speed_slowdown_layers = 1 acceleration_enabled = True acceleration_print = 400 acceleration_travel = 700 - +adhesion_type = skirt +bottom_layers = 2 coasting_enable = False coasting_volume = 0.0625 - -retraction_combing = off -retraction_amount = 0.75 -retraction_speed = 70 -material_flow = 98 - -support_use_towers = False -support_z_distance = 0.2 -support_xy_distance = 1.5 -support_join_distance = 10 -support_interface_enable = True -support_interface_pattern = lines - -adhesion_type = skirt -skirt_gap = 2 - cool_fan_speed = 70 cool_fan_speed_max = 85 +infill_before_walls = False +infill_overlap = 20 +infill_pattern = grid +layer_height = 0.2 +layer_height_0 = 0.28 +material_flow = 98 +retraction_amount = 0.75 +retraction_combing = off +retraction_speed = 70 skin_overlap = 10 -speed_print = 50 +skirt_gap = 2 speed_infill = =math.ceil(speed_print * 0.85) speed_layer_0 = =math.ceil(speed_print * 0.6) +speed_print = 50 +speed_slowdown_layers = 1 speed_topbottom = =math.ceil(speed_print * 0.75) speed_wall = =math.ceil(speed_print * 0.5) speed_wall_x = =math.ceil(speed_wall * 0.7) - +support_interface_enable = True +support_interface_pattern = lines +support_join_distance = 10 +support_use_towers = False +support_xy_distance = 1.5 +support_z_distance = 0.2 top_bottom_pattern = lines top_layers = 4 top_thickness = 1 -bottom_layers = 2 wall_line_count = 2 z_seam_corner = z_seam_corner_none - diff --git a/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg index 23192818dc..fe59d12cd3 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg @@ -1,59 +1,52 @@ [general] -version = 4 -name = gMax 1.5+ Thick Layers definition = gmax15plus +name = gMax 1.5+ Thick Layers +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = course -weight = -2 global_quality = True +quality_type = course +setting_version = 22 +type = quality +weight = -2 [values] -layer_height = 0.28 -layer_height_0 = 0.32 - -infill_before_walls = False -infill_overlap = 20 -infill_pattern = grid - -speed_slowdown_layers = 1 acceleration_enabled = True acceleration_print = 400 acceleration_travel = 700 - +adhesion_type = skirt +bottom_layers = 2 coasting_enable = False coasting_volume = 0.0625 - -retraction_combing = off -retraction_amount = 0.75 -retraction_speed = 70 -material_flow = 98 - -support_use_towers = False -support_z_distance = 0.2 -support_xy_distance = 1.5 -support_join_distance = 10 -support_interface_enable = True -support_interface_pattern = lines - -adhesion_type = skirt -skirt_gap = 2 - cool_fan_speed = 70 cool_fan_speed_max = 85 +infill_before_walls = False +infill_overlap = 20 +infill_pattern = grid +layer_height = 0.28 +layer_height_0 = 0.32 +material_flow = 98 +retraction_amount = 0.75 +retraction_combing = off +retraction_speed = 70 skin_overlap = 10 -speed_print = 50 +skirt_gap = 2 speed_infill = =math.ceil(speed_print * 0.85) speed_layer_0 = =math.ceil(speed_print * 0.6) +speed_print = 50 +speed_slowdown_layers = 1 speed_topbottom = =math.ceil(speed_print * 0.75) speed_wall = =math.ceil(speed_print * 0.5) speed_wall_x = =math.ceil(speed_wall * 0.7) - +support_interface_enable = True +support_interface_pattern = lines +support_join_distance = 10 +support_use_towers = False +support_xy_distance = 1.5 +support_z_distance = 0.2 top_bottom_pattern = lines top_layers = 3 top_thickness = 1 -bottom_layers = 2 wall_line_count = 2 -z_seam_corner = z_seam_corner_none \ No newline at end of file +z_seam_corner = z_seam_corner_none + diff --git a/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg index f398920b06..7c6c9c5e38 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg @@ -1,59 +1,52 @@ [general] -version = 4 -name = gMax 1.5+ Thin Layers definition = gmax15plus +name = gMax 1.5+ Thin Layers +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] -layer_height = 0.16 -layer_height_0 = 0.2 - -infill_before_walls = False -infill_overlap = 20 -infill_pattern = grid - -speed_slowdown_layers = 1 acceleration_enabled = True acceleration_print = 400 acceleration_travel = 700 - +adhesion_type = skirt +bottom_layers = 3 coasting_enable = False coasting_volume = 0.0625 - -retraction_combing = off -retraction_amount = 0.75 -retraction_speed = 70 -material_flow = 98 - -support_use_towers = False -support_z_distance = 0.2 -support_xy_distance = 1.5 -support_join_distance = 10 -support_interface_enable = True -support_interface_pattern = lines - -adhesion_type = skirt -skirt_gap = 2 - cool_fan_speed = 70 cool_fan_speed_max = 85 +infill_before_walls = False +infill_overlap = 20 +infill_pattern = grid +layer_height = 0.16 +layer_height_0 = 0.2 +material_flow = 98 +retraction_amount = 0.75 +retraction_combing = off +retraction_speed = 70 skin_overlap = 10 -speed_print = 55 +skirt_gap = 2 speed_infill = =math.ceil(speed_print * 0.85) speed_layer_0 = =math.ceil(speed_print * 0.6) +speed_print = 55 +speed_slowdown_layers = 1 speed_topbottom = =math.ceil(speed_print * 0.75) speed_wall = =math.ceil(speed_print * 0.5) speed_wall_x = =math.ceil(speed_wall * 0.7) - +support_interface_enable = True +support_interface_pattern = lines +support_join_distance = 10 +support_use_towers = False +support_xy_distance = 1.5 +support_z_distance = 0.2 top_bottom_pattern = lines top_layers = 5 top_thickness = 1 -bottom_layers = 3 wall_line_count = 2 -z_seam_corner = z_seam_corner_none \ No newline at end of file +z_seam_corner = z_seam_corner_none + diff --git a/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg index a9c33a1e4e..b1cdcc129a 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg @@ -1,58 +1,51 @@ [general] -version = 4 -name = gMax 1.5+ Very Thick Layers definition = gmax15plus +name = gMax 1.5+ Very Thick Layers +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra_course -weight = -3 global_quality = True +quality_type = extra_course +setting_version = 22 +type = quality +weight = -3 [values] -layer_height = 0.32 - -infill_before_walls = False -infill_overlap = 20 -infill_pattern = grid - -speed_slowdown_layers = 1 acceleration_enabled = True acceleration_print = 400 acceleration_travel = 700 - +adhesion_type = skirt +bottom_layers = 2 coasting_enable = False coasting_volume = 0.0625 - -retraction_combing = off -retraction_amount = 0.75 -retraction_speed = 70 -material_flow = 98 - -support_use_towers = False -support_z_distance = 0.2 -support_xy_distance = 1.5 -support_join_distance = 10 -support_interface_enable = True -support_interface_pattern = lines - -adhesion_type = skirt -skirt_gap = 2 - cool_fan_speed = 70 cool_fan_speed_max = 85 +infill_before_walls = False +infill_overlap = 20 +infill_pattern = grid +layer_height = 0.32 +material_flow = 98 +retraction_amount = 0.75 +retraction_combing = off +retraction_speed = 70 skin_overlap = 10 -speed_print = 45 +skirt_gap = 2 speed_infill = =math.ceil(speed_print * 0.85) speed_layer_0 = =math.ceil(speed_print * 0.6) +speed_print = 45 +speed_slowdown_layers = 1 speed_topbottom = =math.ceil(speed_print * 0.75) speed_wall = =math.ceil(speed_print * 0.6) speed_wall_x = =math.ceil(speed_wall * 0.7) - +support_interface_enable = True +support_interface_pattern = lines +support_join_distance = 10 +support_use_towers = False +support_xy_distance = 1.5 +support_z_distance = 0.2 top_bottom_pattern = lines top_layers = 3 top_thickness = 1 -bottom_layers = 2 wall_line_count = 2 -z_seam_corner = z_seam_corner_none \ No newline at end of file +z_seam_corner = z_seam_corner_none + 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 5310152781..9cf290ce73 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_far +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_abs +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim cool_fan_enabled = False -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*4 + 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 f590763021..cfbc840dee 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_far +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim cool_fan_enabled = False -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*4 + 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 9c9ae6a9ec..1cc4b04206 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_near +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_abs +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim cool_fan_enabled = False -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*4 + 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 46198f3c78..23c7207715 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_near +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim cool_fan_enabled = False -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*4 + 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 ffe7c1d027..d19830d7e2 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_far +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_asa +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim cool_fan_enabled = False -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*4 + 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 bde0a20503..ddcfa7cfb0 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_far +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_asa +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim cool_fan_enabled = False -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*4 + 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 9e6edbf539..14874b5610 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_near +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_asa +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim cool_fan_enabled = False -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*4 + 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 7bc73b3eef..f5fc3026dc 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_near +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_asa +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim cool_fan_enabled = False -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*4 + 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 7f87312a42..88bf7603ed 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_far +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = -1 global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = -1 [values] +cool_fan_enabled = True layer_height = 0.15 layer_height_0 = 0.25 +retraction_speed = 60 +support_interface_height = =layer_height*8 top_bottom_thickness = 0.8 wall_thickness = =line_width*6 -support_interface_height = =layer_height*8 -retraction_speed = 60 -cool_fan_enabled = True \ No newline at end of file + 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 841da4bef1..01e80cae13 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_far +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine -weight = 0 global_quality = True +quality_type = efine +setting_version = 22 +type = quality +weight = 0 [values] +cool_fan_enabled = True layer_height = 0.1 layer_height_0 = 0.15 +retraction_speed = 60 +support_interface_height = =layer_height*12 top_bottom_thickness = 0.8 wall_thickness = =line_width*6 -support_interface_height = =layer_height*12 -retraction_speed = 60 -cool_fan_enabled = True \ No newline at end of file + 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 870ef0ab18..de8881ab86 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_far +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -3 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -3 [values] +cool_fan_enabled = True layer_height = 0.20 layer_height_0 = 0.3 +retraction_speed = 60 +support_interface_height = =layer_height*5 top_bottom_thickness = 0.8 wall_thickness = =line_width*4 -support_interface_height = =layer_height*5 -retraction_speed = 60 -cool_fan_enabled = True \ No newline at end of file + 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 6cddac0852..628015037b 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_far +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] +adaptive_layer_height_enabled = true +cool_fan_enabled = True layer_height = 0.3 layer_height_0 = 0.3 +retraction_speed = 60 +support_interface_height = =layer_height*6 top_bottom_thickness = 0.8 wall_thickness = =line_width*5 -support_interface_height = =layer_height*6 -adaptive_layer_height_enabled = true -retraction_speed = 60 -cool_fan_enabled = True \ No newline at end of file + 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 f258efac56..0644d56d7f 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_near +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = -1 global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = -1 [values] +cool_fan_enabled = True layer_height = 0.15 layer_height_0 = 0.25 +retraction_speed = 60 +support_interface_height = =layer_height*8 top_bottom_thickness = 0.8 wall_thickness = =line_width*6 -support_interface_height = =layer_height*8 -retraction_speed = 60 -cool_fan_enabled = True \ No newline at end of file + 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 3ff7c2f4e7..8176f32de7 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_near +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine -weight = 0 global_quality = True +quality_type = efine +setting_version = 22 +type = quality +weight = 0 [values] +cool_fan_enabled = True layer_height = 0.1 layer_height_0 = 0.15 +retraction_speed = 60 +support_interface_height = =layer_height*12 top_bottom_thickness = 0.8 wall_thickness = =line_width*6 -support_interface_height = =layer_height*12 -retraction_speed = 60 -cool_fan_enabled = True \ No newline at end of file + 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 4d9442c8b6..aab544c9ae 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_near +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -3 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -3 [values] +cool_fan_enabled = True layer_height = 0.20 layer_height_0 = 0.3 +retraction_speed = 60 +support_interface_height = =layer_height*5 top_bottom_thickness = 0.8 wall_thickness = =line_width*4 -support_interface_height = =layer_height*5 -retraction_speed = 60 -cool_fan_enabled = True \ No newline at end of file + 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 675cef3560..27733517f3 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_near +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] +adaptive_layer_height_enabled = true +cool_fan_enabled = True layer_height = 0.3 layer_height_0 = 0.3 +retraction_speed = 60 +support_interface_height = =layer_height*6 top_bottom_thickness = 0.8 wall_thickness = =line_width*5 -support_interface_height = =layer_height*6 -adaptive_layer_height_enabled = true -retraction_speed = 60 -cool_fan_enabled = True \ No newline at end of file + 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 611905c280..90fc50a985 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_open +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = -1 global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = -1 [values] +cool_fan_enabled = True layer_height = 0.15 layer_height_0 = 0.25 +retraction_speed = 60 +support_interface_height = =layer_height*8 top_bottom_thickness = 0.8 wall_thickness = =line_width*6 -support_interface_height = =layer_height*8 -retraction_speed = 60 -cool_fan_enabled = True \ No newline at end of file + 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 d54b52e54e..714d26687b 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_open +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine -weight = 0 global_quality = True +quality_type = efine +setting_version = 22 +type = quality +weight = 0 [values] +cool_fan_enabled = True layer_height = 0.1 layer_height_0 = 0.15 +retraction_speed = 60 +support_interface_height = =layer_height*12 top_bottom_thickness = 0.8 wall_thickness = =line_width*6 -support_interface_height = =layer_height*12 -retraction_speed = 60 -cool_fan_enabled = True \ No newline at end of file + 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 31925f365c..6dd2f5f2c9 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_open +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -3 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -3 [values] +cool_fan_enabled = True layer_height = 0.20 layer_height_0 = 0.3 +retraction_speed = 60 +support_interface_height = =layer_height*5 top_bottom_thickness = 0.8 wall_thickness = =line_width*4 -support_interface_height = =layer_height*5 -retraction_speed = 60 -cool_fan_enabled = True \ No newline at end of file + 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 a43f0b8359..31dd2d8d9d 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_open +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] +adaptive_layer_height_enabled = true +cool_fan_enabled = True layer_height = 0.3 layer_height_0 = 0.3 +retraction_speed = 60 +support_interface_height = =layer_height*6 top_bottom_thickness = 0.8 wall_thickness = =line_width*5 -support_interface_height = =layer_height*6 -adaptive_layer_height_enabled = true -retraction_speed = 60 -cool_fan_enabled = True \ No newline at end of file + 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 d176f3e64e..e2e1890e50 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_small +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = -1 global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = -1 [values] +cool_fan_enabled = True layer_height = 0.15 layer_height_0 = 0.25 +retraction_speed = 60 +support_interface_height = =layer_height*8 top_bottom_thickness = 0.8 wall_thickness = =line_width*6 -support_interface_height = =layer_height*8 -retraction_speed = 60 -cool_fan_enabled = True \ No newline at end of file + 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 924adf4fdd..a9a5cb78bf 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_small +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine -weight = 0 global_quality = True +quality_type = efine +setting_version = 22 +type = quality +weight = 0 [values] +cool_fan_enabled = True layer_height = 0.1 layer_height_0 = 0.15 +retraction_speed = 60 +support_interface_height = =layer_height*12 top_bottom_thickness = 0.8 wall_thickness = =line_width*6 -support_interface_height = =layer_height*12 -retraction_speed = 60 -cool_fan_enabled = True \ No newline at end of file + 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 46ea7b288a..af85661375 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_small +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -3 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -3 [values] +cool_fan_enabled = True layer_height = 0.20 layer_height_0 = 0.3 +retraction_speed = 60 +support_interface_height = =layer_height*5 top_bottom_thickness = 0.8 wall_thickness = =line_width*4 -support_interface_height = =layer_height*5 -retraction_speed = 60 -cool_fan_enabled = True \ No newline at end of file + 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 063fb9faa8..75973f7611 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_small +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] +adaptive_layer_height_enabled = true +cool_fan_enabled = True layer_height = 0.3 layer_height_0 = 0.3 +retraction_speed = 60 +support_interface_height = =layer_height*6 top_bottom_thickness = 0.8 wall_thickness = =line_width*5 -support_interface_height = =layer_height*6 -adaptive_layer_height_enabled = true -retraction_speed = 60 -cool_fan_enabled = True \ No newline at end of file + 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 71f89c77e4..8e3853a082 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_far +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_hips +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*4 + 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 b01d68fea3..7af166b6ef 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_far +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_hips +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*4 + 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 540cdbd631..aa3f930961 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_far +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_hips +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*4 + 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 b9648ede31..ea3069b9ed 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_far +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_hips +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*4 + 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 dc9982a4c3..68b74a82c0 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_near +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_hips +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = skirt -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*4 + 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 af6d3c8517..701cd1545d 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_near +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_hips +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = skirt -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*4 + 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 a5b5312217..d3d259258c 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_near +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_hips +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = skirt -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*4 + 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 43fd98bae8..69bdbab195 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_near +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_hips +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = skirt -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*4 + 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 e27eb1fcb4..378b6bd04c 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_open +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_hips +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*4 + 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 0b8e808ab5..bb63251d3e 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_open +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_hips +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*4 + 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 f00e02dfb5..63ba70aae5 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_open +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_hips +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*4 + 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 a57b85233c..e5bbe53eaf 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_open +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_hips +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*4 + 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 c228b80485..bb7ae4327c 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_far +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_pa +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim retraction_amount = 6 +wall_thickness = =line_width*4 + 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 4947ea6aaa..75f3570b98 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_far +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_pa +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*4 + 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 d2de67c419..fdc7cb697c 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_near +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_pa +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim retraction_amount = 4.5 +wall_thickness = =line_width*4 + 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 46f1a8807c..a242253f4d 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_near +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_pa +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*4 + 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 27dbeb658b..9301e400d0 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_far +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_pa_cf +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*4 + 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 4060c34061..33c548ab33 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_far +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_pa_cf +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*4 + 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 36f89305f6..6d9549bd62 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_near +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_pa_cf +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*4 + 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 64a7e52dbe..a2d72c1a69 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_near +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_pa_cf +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 adhesion_type = brim -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*4 + 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 3c78d139b3..d8baf0aabe 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_far +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_pc +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 9190f3c060..2e51112f23 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_far +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_pc +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 a569cbb2f2..cb3ddd7e7a 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_far +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_pc +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 718eed3083..d935d4c1b1 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_far +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_pc +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 c5611599d0..c0d56f38ec 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_near +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_pc +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*2 + 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 e72c2b21f1..61b977a1db 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_near +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_pc +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*2 + 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 3877431669..758f32d008 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_near +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_pc +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*2 + 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 1354b13743..43b128a8a1 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_near +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_pc +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*2 + 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 04bdfbe9b8..2ee07b5ee0 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_far +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_peek +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt cool_fan_enabled = False -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 c0fc826844..84409b8560 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_far +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_peek +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt cool_fan_enabled = False -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 aad19e3e3b..2f6ecf9b3e 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_far +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_peek +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt cool_fan_enabled = False -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 e918865fbc..9997e79ff6 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_far +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_peek +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt cool_fan_enabled = False -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 7968d41021..b10b339231 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_near +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_peek +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt cool_fan_enabled = False -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*2 + 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 8ca078bf55..eccc713d38 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_near +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_peek +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt cool_fan_enabled = False -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*2 + 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 2f76c7564e..30c0d7b028 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_near +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_peek +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt cool_fan_enabled = False -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*2 + 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 1f6ce72596..d4249dd736 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_near +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_peek +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt cool_fan_enabled = False -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*2 + 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 059b769eab..59031fa764 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_far +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_petg +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_layer_0 = 15 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 bf13b05e29..5886287af0 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_far +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_layer_0 = 15 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 7a2efa0472..f51712a0e3 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_near +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_petg +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_layer_0 = 15 adhesion_type = skirt -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 eaa03ff0e3..0aa5380ef0 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_near +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_layer_0 = 15 adhesion_type = skirt -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 55a160b2c0..7bfc28b0fe 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 @@ -1,18 +1,19 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_open +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_petg +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_layer_0 = 15 adhesion_type = skirt +material_bed_temperature = 70 retraction_amount = 6 -material_bed_temperature = 70 \ No newline at end of file +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 0fddb5a354..08f7171220 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 @@ -1,18 +1,19 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_open +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_layer_0 = 15 adhesion_type = skirt +material_bed_temperature = 70 retraction_amount = 6 -material_bed_temperature = 70 \ No newline at end of file +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 66fff53b13..e70c1b67a9 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_small +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_petg +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_layer_0 = 15 adhesion_type = raft -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 63c47f0643..a13ea62fd2 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_small +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_layer_0 = 15 adhesion_type = raft -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 6f99afce0d..a34b591de9 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_far +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 4d3b145927..c0f03fc7d7 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_far +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_pla +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 2609ef1a8a..c6854faaec 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_far +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_pla +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 744013dcb1..91cd4fe42f 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_far +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 c77a95b347..f96fcc751f 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_far +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_bronze_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = raft retraction_amount = 1 retraction_speed = 10 +wall_thickness = =line_width*2 + 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 393500208c..cb908e5089 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_far +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_bronze_pla +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = raft retraction_amount = 1 -retraction_speed = 10 \ No newline at end of file +retraction_speed = 10 +wall_thickness = =line_width*2 + 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 2fe48702fc..46aea18e0c 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_far +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_bronze_pla +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = raft retraction_amount = 1 -retraction_speed = 10 \ No newline at end of file +retraction_speed = 10 +wall_thickness = =line_width*2 + 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 aada43d286..b00456d97a 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_far +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_bronze_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = raft retraction_amount = 1 -retraction_speed = 10 \ No newline at end of file +retraction_speed = 10 +wall_thickness = =line_width*2 + 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 21d00a1aa9..e03114db76 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_far +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_emarble_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 cc01a886d2..8a5094291e 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_far +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_emarble_pla +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 aa62a0fd79..a30cbd0483 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_far +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_emarble_pla +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 dc002b883b..647eb3dae4 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_far +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_emarble_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 9223d75e6c..9213ee4150 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_far +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_esilk_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 eb5a14a58e..8bce4ab525 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_far +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_esilk_pla +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 fff7786d4a..f9521a4014 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_far +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_esilk_pla +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 bb1f4edefa..705153c9ac 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_far +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_esilk_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 cc39f4bc2a..4f51919bad 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_far +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_wood_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 25173342e9..0bd2e821a3 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_far +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_wood_pla +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 2668bef8bf..cb27e45ea9 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_far +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_wood_pla +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 b18b53e6e3..894268c3b7 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_far +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_wood_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 1f0583ccc7..bd016036c4 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_near +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*2 + 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 2c1b73883a..39a950249a 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_near +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_pla +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*2 + 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 ca3dd2b8c6..cdbf92d318 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_near +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_pla +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*2 + 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 0d50224596..f80b9c0f0d 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_near +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*2 + 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 0e8556cff0..c6567c80f0 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_near +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_bronze_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt retraction_amount = 1 retraction_speed = 10 +wall_thickness = =line_width*2 + 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 2b41a1b425..7fa272e40d 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_near +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_bronze_pla +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt retraction_amount = 1 -retraction_speed = 10 \ No newline at end of file +retraction_speed = 10 +wall_thickness = =line_width*2 + 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 e283869fd4..ea04912106 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_near +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_bronze_pla +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt retraction_amount = 1 -retraction_speed = 10 \ No newline at end of file +retraction_speed = 10 +wall_thickness = =line_width*2 + 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 1d0947d1b7..cdf2ec8d71 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_near +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_bronze_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt retraction_amount = 1 -retraction_speed = 10 \ No newline at end of file +retraction_speed = 10 +wall_thickness = =line_width*2 + 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 075623f612..19bbd2fee2 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_near +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_emarble_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*2 + 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 3df1d30d61..1b0ac9a8ad 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_near +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_emarble_pla +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*2 + 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 919d01c93b..35c69885d8 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_near +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_emarble_pla +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*2 + 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 7e84a89f63..60652b1a40 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_near +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_emarble_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*2 + 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 ed68461916..0979c5c314 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_near +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_esilk_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*2 + 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 6fad24ecc0..f92b859fd2 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_near +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_esilk_pla +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*2 + 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 f2296e71dc..7893fa30e9 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_near +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_esilk_pla +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*2 + 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 8410c5b53f..929c20e5b9 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_near +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_esilk_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 4.5 \ No newline at end of file +retraction_amount = 4.5 +wall_thickness = =line_width*2 + 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 31a19502bd..a30c01dd54 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_near +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_wood_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 5 \ No newline at end of file +retraction_amount = 5 +wall_thickness = =line_width*2 + 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 a60634dc51..629a750003 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_near +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_wood_pla +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 5 \ No newline at end of file +retraction_amount = 5 +wall_thickness = =line_width*2 + 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 9b537af455..472c51f9ae 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_near +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_wood_pla +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 5 \ No newline at end of file +retraction_amount = 5 +wall_thickness = =line_width*2 + 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 6037d5bbb8..d745270314 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_near +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_wood_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt -retraction_amount = 5 \ No newline at end of file +retraction_amount = 5 +wall_thickness = =line_width*2 + 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 b83b4b4606..ba8a374e6a 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_open +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt +material_bed_temperature = 60 retraction_amount = 6 -material_bed_temperature = 60 \ No newline at end of file +wall_thickness = =line_width*2 + 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 072f29034e..c526af5f69 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_open +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_pla +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt +material_bed_temperature = 60 retraction_amount = 6 -material_bed_temperature = 60 \ No newline at end of file +wall_thickness = =line_width*2 + 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 fa03b3f912..9ad5e221ee 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_open +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_pla +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt +material_bed_temperature = 60 retraction_amount = 6 -material_bed_temperature = 60 \ No newline at end of file +wall_thickness = =line_width*2 + 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 38d4c19539..aa480a3495 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_open +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt +material_bed_temperature = 60 retraction_amount = 6 -material_bed_temperature = 60 \ No newline at end of file +wall_thickness = =line_width*2 + 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 cebccc7cd6..0fce605922 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_open +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_emarble_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt +material_bed_temperature = 70 retraction_amount = 6 -material_bed_temperature = 70 \ No newline at end of file +wall_thickness = =line_width*2 + 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 5474f72d77..955492c995 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_open +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_emarble_pla +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt +material_bed_temperature = 70 retraction_amount = 6 -material_bed_temperature = 70 \ No newline at end of file +wall_thickness = =line_width*2 + 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 58dd3eb550..bc91dd8771 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_open +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_emarble_pla +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt +material_bed_temperature = 70 retraction_amount = 6 -material_bed_temperature = 70 \ No newline at end of file +wall_thickness = =line_width*2 + 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 4b3f7c0c78..e508f330d2 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_open +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_emarble_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt +material_bed_temperature = 70 retraction_amount = 6 -material_bed_temperature = 70 \ No newline at end of file +wall_thickness = =line_width*2 + 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 bfc7040a94..ea69168c9c 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_open +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_esilk_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt +material_bed_temperature = 70 retraction_amount = 6 -material_bed_temperature = 70 \ No newline at end of file +wall_thickness = =line_width*2 + 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 a498e7140e..acd7670bb4 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_open +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_esilk_pla +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt +material_bed_temperature = 70 retraction_amount = 6 -material_bed_temperature = 70 \ No newline at end of file +wall_thickness = =line_width*2 + 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 2bea6a8c09..098ab00000 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_open +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_esilk_pla +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt +material_bed_temperature = 70 retraction_amount = 6 -material_bed_temperature = 70 \ No newline at end of file +wall_thickness = =line_width*2 + 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 86f3f66ab8..8049d029d8 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_open +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_esilk_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt +material_bed_temperature = 70 retraction_amount = 6 -material_bed_temperature = 70 \ No newline at end of file +wall_thickness = =line_width*2 + 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 9a149d619b..431c8020cc 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_open +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_wood_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt +material_bed_temperature = 60 retraction_amount = 6 -material_bed_temperature = 60 \ No newline at end of file +wall_thickness = =line_width*2 + 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 2dbfdbd6ac..4e204492c7 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_open +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_wood_pla +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt +material_bed_temperature = 60 retraction_amount = 6 -material_bed_temperature = 60 \ No newline at end of file +wall_thickness = =line_width*2 + 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 c4beac9b4c..90852fabc1 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_open +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_wood_pla +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt +material_bed_temperature = 60 retraction_amount = 6 -material_bed_temperature = 60 \ No newline at end of file +wall_thickness = =line_width*2 + 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 28a7eecb47..8a7f848d33 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_open +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_wood_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = skirt +material_bed_temperature = 60 retraction_amount = 6 -material_bed_temperature = 60 \ No newline at end of file +wall_thickness = =line_width*2 + 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 664fc336d4..e9a74178f6 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_small +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = raft -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 805c457f18..7e2019db94 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_small +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_pla +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = raft -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 e8e92fa461..9cdaf34562 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_small +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_pla +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = raft -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 1444b2dd00..155219e40e 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_small +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = raft -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 219d1b2dc4..bf326069be 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 @@ -1,17 +1,18 @@ -[general] -version = 4 -name = Standard Quality -definition = goofoo_small - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -material = goofoo_pla -variant = 0.7mm Nozzle - -[values] -retraction_amount = 6 -infill_pattern = cubic -top_bottom_thickness = 1.6 -wall_thickness = 1.4 \ No newline at end of file +[general] +definition = goofoo_small +name = Standard Quality +version = 4 + +[metadata] +material = goofoo_pla +quality_type = normal +setting_version = 22 +type = quality +variant = 0.7mm Nozzle + +[values] +infill_pattern = cubic +retraction_amount = 6 +top_bottom_thickness = 1.6 +wall_thickness = 1.4 + 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 097a501614..60d0b6687e 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_small +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_emarble_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = raft -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 78a7b62ae6..e626039e59 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_small +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_emarble_pla +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = raft -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 89defc68f3..e9ebc84cf2 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_small +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_emarble_pla +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = raft -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 0dee621106..8ad915955a 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_small +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_emarble_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = raft -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 44109a1be3..8a0c63554d 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_small +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_esilk_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = raft -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 c7e54cb2c1..a163cc0958 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_small +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_esilk_pla +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = raft -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 69d9e6ddb7..dd3074ee47 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_small +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_esilk_pla +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = raft -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 54f7692e8f..a1ac06a465 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_small +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_esilk_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = raft -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 e136aae747..a5c71b0f01 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_small +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_wood_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = raft -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 28f852d5b0..c075dcb892 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_small +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_wood_pla +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = raft -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 4a24e0c1bf..ed6df806f2 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_small +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_wood_pla +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = raft -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 3ec9ff53b5..7acce33904 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_small +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_wood_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = raft -retraction_amount = 6 \ No newline at end of file +retraction_amount = 6 +wall_thickness = =line_width*2 + 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 e21d9901db..53712efd2e 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_far +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_pva +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = none -support_pattern = grid -support_infill_rate = 50 support_brim_enable = True -support_interface_enable = True support_enable = True +support_infill_rate = 50 +support_interface_enable = True +support_pattern = grid +wall_thickness = =line_width*2 + 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 7581f9a274..de5bd5d156 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_far +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_pva +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = none -support_pattern = grid -support_infill_rate = 50 support_brim_enable = True -support_interface_enable = True support_enable = True +support_infill_rate = 50 +support_interface_enable = True +support_pattern = grid +wall_thickness = =line_width*2 + 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 b05fba760f..806c5458b1 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_far +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_pva +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = none -support_pattern = grid -support_infill_rate = 50 support_brim_enable = True -support_interface_enable = True support_enable = True +support_infill_rate = 50 +support_interface_enable = True +support_pattern = grid +wall_thickness = =line_width*2 + 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 550f8742aa..55caeae945 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_far +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_pva +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = none -support_pattern = grid -support_infill_rate = 50 support_brim_enable = True -support_interface_enable = True support_enable = True +support_infill_rate = 50 +support_interface_enable = True +support_pattern = grid +wall_thickness = =line_width*2 + 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 b774b9cfdb..a44a19eb1f 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_near +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_pva +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = none -support_pattern = grid -support_infill_rate = 50 support_brim_enable = True -support_interface_enable = True support_enable = True +support_infill_rate = 50 +support_interface_enable = True +support_pattern = grid +wall_thickness = =line_width*2 + 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 01f57ba2ef..4aab660f0d 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_near +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_pva +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = none -support_pattern = grid -support_infill_rate = 50 support_brim_enable = True -support_interface_enable = True support_enable = True +support_infill_rate = 50 +support_interface_enable = True +support_pattern = grid +wall_thickness = =line_width*2 + 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 3e352dd2ed..9721a8e1d0 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_near +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_pva +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = none -support_pattern = grid -support_infill_rate = 50 support_brim_enable = True -support_interface_enable = True support_enable = True +support_infill_rate = 50 +support_interface_enable = True +support_pattern = grid +wall_thickness = =line_width*2 + 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 4c42f15f93..3402c32cbe 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 @@ -1,20 +1,21 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_near +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_pva +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = none -support_pattern = grid -support_infill_rate = 50 support_brim_enable = True -support_interface_enable = True support_enable = True +support_infill_rate = 50 +support_interface_enable = True +support_pattern = grid +wall_thickness = =line_width*2 + 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 ee71ef40d7..4e23322b49 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_open +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_pva +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = none -support_pattern = grid -support_infill_rate = 50 -support_brim_enable = True -support_interface_enable = True -support_enable = True material_bed_temperature = 70 +support_brim_enable = True +support_enable = True +support_infill_rate = 50 +support_interface_enable = True +support_pattern = grid +wall_thickness = =line_width*2 + 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 3529f69d75..bba461fb89 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_open +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_pva +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = none -support_pattern = grid -support_infill_rate = 50 -support_brim_enable = True -support_interface_enable = True -support_enable = True material_bed_temperature = 70 +support_brim_enable = True +support_enable = True +support_infill_rate = 50 +support_interface_enable = True +support_pattern = grid +wall_thickness = =line_width*2 + 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 418c2eb348..6199be2bd7 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_open +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_pva +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = none -support_pattern = grid -support_infill_rate = 50 -support_brim_enable = True -support_interface_enable = True -support_enable = True material_bed_temperature = 70 +support_brim_enable = True +support_enable = True +support_infill_rate = 50 +support_interface_enable = True +support_pattern = grid +wall_thickness = =line_width*2 + 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 cd71e25506..4827fcec13 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_open +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_pva +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*2 adhesion_type = none -support_pattern = grid -support_infill_rate = 50 -support_brim_enable = True -support_interface_enable = True -support_enable = True material_bed_temperature = 70 +support_brim_enable = True +support_enable = True +support_infill_rate = 50 +support_interface_enable = True +support_pattern = grid +wall_thickness = =line_width*2 + 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 aed77e1aff..e147f68496 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_far +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_tpe_83a +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 +adhesion_type = skirt speed_layer_0 = 10 -adhesion_type = skirt \ No newline at end of file +speed_print = 20 +wall_thickness = =line_width*4 + 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 68cc4f51a3..c031d26445 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_far +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_tpe_83a +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 +adhesion_type = skirt speed_layer_0 = 10 -adhesion_type = skirt \ No newline at end of file +speed_print = 20 +wall_thickness = =line_width*4 + 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 e8bfdbd3cb..9d23c7aeef 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_far +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_tpe_83a +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 +adhesion_type = skirt speed_layer_0 = 10 -adhesion_type = skirt \ No newline at end of file +speed_print = 20 +wall_thickness = =line_width*4 + 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 121a3c7083..fe90f6970c 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_far +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_tpe_83a +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 +adhesion_type = skirt speed_layer_0 = 10 -adhesion_type = skirt \ No newline at end of file +speed_print = 20 +wall_thickness = =line_width*4 + 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 e4b5cac9a6..928eceef5c 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_near +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_tpe_83a +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 +adhesion_type = skirt speed_layer_0 = 10 -adhesion_type = skirt \ No newline at end of file +speed_print = 20 +wall_thickness = =line_width*4 + 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 63f65b83b1..34ab0e6195 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_near +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_tpe_83a +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 +adhesion_type = skirt speed_layer_0 = 10 -adhesion_type = skirt \ No newline at end of file +speed_print = 20 +wall_thickness = =line_width*4 + 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 67403affc6..e84eb91d7f 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_near +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_tpe_83a +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 +adhesion_type = skirt speed_layer_0 = 10 -adhesion_type = skirt \ No newline at end of file +speed_print = 20 +wall_thickness = =line_width*4 + 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 4d594ff4bb..fedb231ee8 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_near +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_tpe_83a +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 +adhesion_type = skirt speed_layer_0 = 10 -adhesion_type = skirt \ No newline at end of file +speed_print = 20 +wall_thickness = =line_width*4 + 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 fb37dc9adb..e307ab96e5 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_far +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_tpu_87a +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 -speed_layer_0 = 10 adhesion_type = skirt +speed_layer_0 = 10 +speed_print = 20 +wall_thickness = =line_width*4 + 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 fbd4dc8db2..9ee8c7d0c9 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_far +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_tpu_87a +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*3 -speed_print = 20 -speed_layer_0 = 10 adhesion_type = skirt +speed_layer_0 = 10 +speed_print = 20 +wall_thickness = =line_width*3 + 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 ed188595b9..37d15f963b 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_far +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_tpu_87a +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 -speed_layer_0 = 10 adhesion_type = skirt +speed_layer_0 = 10 +speed_print = 20 +wall_thickness = =line_width*4 + 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 6d63271509..2a69859868 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_far +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_tpu_95a +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*3 -speed_print = 20 -speed_layer_0 = 10 adhesion_type = skirt +speed_layer_0 = 10 +speed_print = 20 +wall_thickness = =line_width*3 + 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 d743038326..7a6e8dcfa1 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_far +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_tpu_95a +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 +adhesion_type = skirt speed_layer_0 = 10 -adhesion_type = skirt \ No newline at end of file +speed_print = 20 +wall_thickness = =line_width*4 + 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 f0b0dcc7d7..cc8ecb6e56 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_far +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_tpu_95a +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 +adhesion_type = skirt speed_layer_0 = 10 -adhesion_type = skirt \ No newline at end of file +speed_print = 20 +wall_thickness = =line_width*4 + 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 ee90e21960..1611d21ca5 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_far +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_tpu_95a +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 +adhesion_type = skirt speed_layer_0 = 10 -adhesion_type = skirt \ No newline at end of file +speed_print = 20 +wall_thickness = =line_width*4 + 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 d58f1c8b15..4635987508 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_near +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_tpu_87a +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 -speed_layer_0 = 10 adhesion_type = skirt +speed_layer_0 = 10 +speed_print = 20 +wall_thickness = =line_width*4 + 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 93f441b2e7..cf7330481a 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_near +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_tpu_87a +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*3 -speed_print = 20 -speed_layer_0 = 10 adhesion_type = skirt +speed_layer_0 = 10 +speed_print = 20 +wall_thickness = =line_width*3 + 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 b2cea10f58..b70bc4bfd4 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_near +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_tpu_87a +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 -speed_layer_0 = 10 adhesion_type = skirt +speed_layer_0 = 10 +speed_print = 20 +wall_thickness = =line_width*4 + 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 ff681d0b78..1a238231e7 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Draft Quality definition = goofoo_near +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = goofoo_tpu_95a +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*3 -speed_print = 20 -speed_layer_0 = 10 adhesion_type = skirt +speed_layer_0 = 10 +speed_print = 20 +wall_thickness = =line_width*3 + 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 cde2370db4..560cff2f9b 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Extra Fine Quality definition = goofoo_near +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = efine material = goofoo_tpu_95a +quality_type = efine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 +adhesion_type = skirt speed_layer_0 = 10 -adhesion_type = skirt \ No newline at end of file +speed_print = 20 +wall_thickness = =line_width*4 + 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 6b20d5bf96..40c0a74634 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = goofoo_near +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = goofoo_tpu_95a +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 +adhesion_type = skirt speed_layer_0 = 10 -adhesion_type = skirt \ No newline at end of file +speed_print = 20 +wall_thickness = =line_width*4 + 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 d45def63be..e686cbd2f1 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Standard Quality definition = goofoo_near +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = goofoo_tpu_95a +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 -speed_print = 20 +adhesion_type = skirt speed_layer_0 = 10 -adhesion_type = skirt \ No newline at end of file +speed_print = 20 +wall_thickness = =line_width*4 + diff --git a/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg new file mode 100644 index 0000000000..205b709696 --- /dev/null +++ b/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg @@ -0,0 +1,57 @@ +[general] +definition = gutenberg_base +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = fast +setting_version = 22 +type = quality + +[values] +acceleration_enabled = True +acceleration_print = 15000 +acceleration_roofing = 10000 +acceleration_topbottom = 10000 +acceleration_travel = 15000 +acceleration_wall = 15000 +acceleration_wall_0 = 10000 +adhesion_type = skirt +alternate_extra_perimeter = False +infill_line_width = 0.5 +infill_pattern = lines +infill_sparse_density = 10 +layer_height = 0.2 +layer_height_0 = 0.2 +optimize_wall_printing_order = True +retraction_amount = 0.8 +retraction_combing = noskin +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_hop_only_when_collides = True +retraction_speed = 35 +roofing_layer_count = 0 +skin_monotonic = True +skirt_brim_speed = 45 +speed_infill = 200 +speed_layer_0 = 45 +speed_print = 300 +speed_print_layer_0 = 45 +speed_roofing = 100 +speed_support = 200 +speed_topbottom = 150 +speed_travel = 300 +speed_travel_layer_0 = 150 +speed_wall = 100 +speed_wall_0 = 100 +speed_wall_x = 150 +support_angle = 46 +support_enable = False +top_bottom_thickness = 0.6 +travel_avoid_supports = True +wall_line_width = 0.45 +wall_line_width_0 = 0.4 +wall_thickness = 1.25 +zig_zaggify_infill = True + diff --git a/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg new file mode 100644 index 0000000000..b27aa17940 --- /dev/null +++ b/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg @@ -0,0 +1,57 @@ +[general] +definition = gutenberg_base +name = Fine +version = 4 + +[metadata] +global_quality = True +quality_type = fine +setting_version = 22 +type = quality + +[values] +acceleration_enabled = True +acceleration_print = 15000 +acceleration_roofing = 10000 +acceleration_topbottom = 10000 +acceleration_travel = 15000 +acceleration_wall = 7500 +acceleration_wall_0 = 7500 +adhesion_type = skirt +alternate_extra_perimeter = False +cool_min_layer_time = 10 +infill_line_width = 0.5 +infill_pattern = gyroid +infill_sparse_density = 15 +inset_direction = outside_in +layer_height = 0.2 +layer_height_0 = 0.2 +optimize_wall_printing_order = True +retraction_amount = 0.8 +retraction_combing = noskin +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_hop_only_when_collides = True +retraction_speed = 35 +roofing_layer_count = 1 +skin_monotonic = True +skirt_brim_speed = 45 +speed_infill = 150 +speed_layer_0 = 45 +speed_print = 100 +speed_roofing = 100 +speed_topbottom = 100 +speed_travel = 300 +speed_travel_layer_0 = 60 +speed_wall = 100 +speed_wall_0 = 75 +speed_wall_x = 100 +support_angle = 46 +support_enable = False +top_bottom_thickness = 0.8 +travel_avoid_supports = True +wall_line_width = 0.45 +wall_line_width_0 = 0.4 +wall_thickness = 1.65 +zig_zaggify_infill = True + diff --git a/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg new file mode 100644 index 0000000000..f4910f5e06 --- /dev/null +++ b/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg @@ -0,0 +1,57 @@ +[general] +definition = gutenberg_base +name = Normal +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality + +[values] +acceleration_enabled = True +acceleration_print = 15000 +acceleration_roofing = 10000 +acceleration_topbottom = 10000 +acceleration_travel = 15000 +acceleration_wall = 10000 +acceleration_wall_0 = 7500 +adhesion_type = skirt +alternate_extra_perimeter = True +bottom_layers = 3 +infill_line_width = 0.5 +infill_pattern = gyroid +infill_sparse_density = 15 +layer_height = 0.2 +layer_height_0 = 0.2 +optimize_wall_printing_order = True +retraction_amount = 0.8 +retraction_combing = noskin +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_hop_only_when_collides = True +retraction_speed = 35 +roofing_layer_count = 1 +skin_monotonic = True +skirt_brim_speed = 45 +speed_infill = 150 +speed_layer_0 = 45 +speed_print = 150 +speed_roofing = 100 +speed_topbottom = 100 +speed_travel = 300 +speed_travel_layer_0 = 100 +speed_wall = 100 +speed_wall_0 = 100 +speed_wall_x = 150 +support_angle = 46 +support_enable = False +top_bottom_thickness = 0.6 +top_layers = 3 +travel_avoid_supports = True +wall_line_width = 0.45 +wall_line_width_0 = 0.4 +wall_thickness = 1.25 +zig_zaggify_infill = True + diff --git a/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg new file mode 100644 index 0000000000..55c3a69a16 --- /dev/null +++ b/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg @@ -0,0 +1,56 @@ +[general] +definition = gutenberg_base +name = Strong +version = 4 + +[metadata] +global_quality = True +quality_type = strong +setting_version = 22 +type = quality + +[values] +acceleration_enabled = True +acceleration_print = 15000 +acceleration_roofing = 10000 +acceleration_topbottom = 10000 +acceleration_travel = 15000 +acceleration_wall = 10000 +acceleration_wall_0 = 7500 +adhesion_type = skirt +alternate_extra_perimeter = True +infill_line_width = 0.5 +infill_pattern = gyroid +infill_sparse_density = 30 +layer_height = 0.2 +layer_height_0 = 0.2 +optimize_wall_printing_order = True +retraction_amount = 0.8 +retraction_combing = noskin +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_hop_only_when_collides = True +retraction_speed = 35 +roofing_layer_count = 1 +skin_monotonic = True +skirt_brim_speed = 45 +speed_infill = 150 +speed_layer_0 = 45 +speed_print = 100 +speed_print_layer_0 = 60 +speed_roofing = 100 +speed_topbottom = 100 +speed_travel = 300 +speed_travel_layer_0 = 100 +speed_wall = 100 +speed_wall_0 = 75 +speed_wall_x = 100 +support_angle = 46 +support_enable = False +top_bottom_thickness = 1 +travel_avoid_supports = True +wall_line_width = 0.45 +wall_line_width_0 = 0.4 +wall_thickness = 2.05 +zig_zaggify_infill = True + diff --git a/resources/quality/high.inst.cfg b/resources/quality/high.inst.cfg index c3c58808d2..0b8675085f 100644 --- a/resources/quality/high.inst.cfg +++ b/resources/quality/high.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Extra Fine definition = fdmprinter +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] layer_height = 0.06 -speed_topbottom = =math.ceil(speed_print * 15 / 60) speed_infill = =math.ceil(speed_print * 80 / 60) +speed_topbottom = =math.ceil(speed_print * 15 / 60) + diff --git a/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg b/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg index 73efd76062..7826d97ee5 100644 --- a/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Coarse definition = hms434 +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -1 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.4 layer_height_0 = 0.2 + diff --git a/resources/quality/hms434/hms434_global_High_Quality.inst.cfg b/resources/quality/hms434/hms434_global_High_Quality.inst.cfg index 3282c89e43..ef85f8fc94 100644 --- a/resources/quality/hms434/hms434_global_High_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_High_Quality.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = High definition = hms434 +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] layer_height = 0.1 diff --git a/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg b/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg index cea899ffef..3420b89acb 100644 --- a/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Normal definition = hms434 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.2 layer_height_0 = 0.2 + 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 acddac2235..22928aaf4b 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 @@ -1,34 +1,30 @@ [general] -version = 4 -name = High definition = hms434 +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality variant = 0.4mm TP extruder +weight = 1 [values] - -wall_0_wipe_dist = 0.0 -ironing_enabled = true - +coasting_min_volume = 0.17 +coasting_speed = 100 +coasting_volume = 0.05 infill_overlap_mm = -0.1 infill_wipe_dist = 0 - +ironing_enabled = true material_bed_temperature_layer_0 = =material_bed_temperature + 10 material_flow = 100 retraction_amount = 1.5 -retraction_speed = 40 -retraction_prime_speed = 8 retraction_extra_prime_amount = 0 -switch_extruder_retraction_amount = 2 - +retraction_prime_speed = 8 +retraction_speed = 40 speed_print = 50 +switch_extruder_retraction_amount = 2 +wall_0_wipe_dist = 0.0 -coasting_volume = 0.05 -coasting_min_volume = 0.17 -coasting_speed = 100 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 5b8194438a..b38847c3a5 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Coarse definition = imade3d_jellybox +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_petg +quality_type = fast +setting_version = 22 +type = quality variant = 0.4 mm +weight = -1 [values] speed_print = 45 + 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 b94412b68f..d1e45c384c 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fine definition = imade3d_jellybox +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_petg +quality_type = high +setting_version = 22 +type = quality variant = 0.4 mm +weight = 1 [values] -speed_print = 50 \ No newline at end of file +speed_print = 50 + 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 6cccabefe0..4a6bef8a10 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Medium definition = imade3d_jellybox +name = Medium +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.4 mm +weight = 0 [values] -speed_print = 45 \ No newline at end of file +speed_print = 45 + 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 455d846407..58f20365c5 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Coarse definition = imade3d_jellybox +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pla +quality_type = fast +setting_version = 22 +type = quality variant = 0.4 mm +weight = -1 [values] -speed_print = 45 \ No newline at end of file +speed_print = 45 + 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 574ed002e5..a411099609 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fine definition = imade3d_jellybox +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality variant = 0.4 mm +weight = 1 [values] -speed_print = 50 \ No newline at end of file +speed_print = 50 + 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 b9c310189f..40c5abd25d 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Medium definition = imade3d_jellybox +name = Medium +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4 mm +weight = 0 [values] -speed_print = 45 \ No newline at end of file +speed_print = 45 + 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 c9559966c7..49015dd769 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = UltraFine definition = imade3d_jellybox +name = UltraFine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultrahigh -weight = 2 material = generic_pla +quality_type = ultrahigh +setting_version = 22 +type = quality variant = 0.4 mm +weight = 2 [values] -speed_print = 55 \ No newline at end of file +speed_print = 55 + diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg index 060c382336..4363815718 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg @@ -1,29 +1,35 @@ [general] -version = 4 -name = Coarse definition = imade3d_jellybox +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] adhesion_type = skirt -layer_height = 0.3 -layer_height_0 = 0.3 -retraction_hop = 0.2 bottom_thickness = =top_bottom_thickness +bridge_enable_more_layers = False +bridge_settings_enabled = True +bridge_skin_material_flow = 85 +bridge_skin_speed = 20 +bridge_wall_material_flow = 85 +bridge_wall_speed = 20 coasting_enable = True coasting_min_volume = 2 coasting_volume = 0.032 cool_fan_speed_max = =cool_fan_speed infill_before_walls = False +infill_enable_travel_optimization = True infill_line_width = =round(line_width * 1.5, 2) infill_pattern = zigzag infill_sparse_density = 25 +layer_height = 0.3 +layer_height_0 = 0.3 line_width = =machine_nozzle_size material_bed_temperature = =default_material_bed_temperature material_bed_temperature_layer_0 = =material_bed_temperature + 5 @@ -32,6 +38,8 @@ material_print_temperature_layer_0 = =material_print_temperature + 5 print_sequence = all_at_once retract_at_layer_change = True retraction_combing = noskin +retraction_combing_max_distance = 50 +retraction_hop = 0.2 retraction_hop_enabled = True retraction_min_travel = =machine_nozzle_size * 3 retraction_retract_speed = =retraction_speed @@ -65,11 +73,4 @@ support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0.2 travel_retract_before_outer_wall = True wall_0_wipe_dist = =round(line_width * 1.2,1) -bridge_settings_enabled = True -bridge_enable_more_layers = False -bridge_skin_material_flow = 85 -bridge_skin_speed = 20 -bridge_wall_material_flow = 85 -bridge_wall_speed = 20 -infill_enable_travel_optimization = True -retraction_combing_max_distance = 50 \ No newline at end of file + diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg index 80d818bd5b..ad1786e646 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg @@ -1,29 +1,35 @@ [general] -version = 4 -name = Fine definition = imade3d_jellybox +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] adhesion_type = skirt -layer_height = 0.1 -layer_height_0 = 0.3 -retraction_hop = 0.1 bottom_thickness = =top_bottom_thickness +bridge_enable_more_layers = False +bridge_settings_enabled = True +bridge_skin_material_flow = 85 +bridge_skin_speed = 20 +bridge_wall_material_flow = 85 +bridge_wall_speed = 20 coasting_enable = True coasting_min_volume = 2 coasting_volume = 0.032 cool_fan_speed_max = =cool_fan_speed infill_before_walls = False +infill_enable_travel_optimization = True infill_line_width = =round(line_width * 1.5, 2) infill_pattern = zigzag infill_sparse_density = 25 +layer_height = 0.1 +layer_height_0 = 0.3 line_width = =machine_nozzle_size material_bed_temperature = =default_material_bed_temperature material_bed_temperature_layer_0 = =material_bed_temperature + 5 @@ -32,6 +38,8 @@ material_print_temperature_layer_0 = =material_print_temperature + 5 print_sequence = all_at_once retract_at_layer_change = True retraction_combing = noskin +retraction_combing_max_distance = 50 +retraction_hop = 0.1 retraction_hop_enabled = True retraction_min_travel = =machine_nozzle_size * 3 retraction_retract_speed = =retraction_speed @@ -65,11 +73,4 @@ support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0.2 travel_retract_before_outer_wall = True wall_0_wipe_dist = =round(line_width * 1.2,1) -bridge_settings_enabled = True -bridge_enable_more_layers = False -bridge_skin_material_flow = 85 -bridge_skin_speed = 20 -bridge_wall_material_flow = 85 -bridge_wall_speed = 20 -infill_enable_travel_optimization = True -retraction_combing_max_distance = 50 \ No newline at end of file + diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg index cf6a3bde70..9d20162475 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg @@ -1,29 +1,35 @@ [general] -version = 4 -name = Medium definition = imade3d_jellybox +name = Medium +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] adhesion_type = skirt -layer_height = 0.2 -layer_height_0 = 0.3 -retraction_hop = 0.2 bottom_thickness = =top_bottom_thickness +bridge_enable_more_layers = False +bridge_settings_enabled = True +bridge_skin_material_flow = 85 +bridge_skin_speed = 20 +bridge_wall_material_flow = 85 +bridge_wall_speed = 20 coasting_enable = True coasting_min_volume = 2 coasting_volume = 0.032 cool_fan_speed_max = =cool_fan_speed infill_before_walls = False +infill_enable_travel_optimization = True infill_line_width = =round(line_width * 1.5, 2) infill_pattern = zigzag infill_sparse_density = 25 +layer_height = 0.2 +layer_height_0 = 0.3 line_width = =machine_nozzle_size material_bed_temperature = =default_material_bed_temperature material_bed_temperature_layer_0 = =material_bed_temperature + 5 @@ -32,6 +38,8 @@ material_print_temperature_layer_0 = =material_print_temperature + 5 print_sequence = all_at_once retract_at_layer_change = True retraction_combing = noskin +retraction_combing_max_distance = 50 +retraction_hop = 0.2 retraction_hop_enabled = True retraction_min_travel = =machine_nozzle_size * 3 retraction_retract_speed = =retraction_speed @@ -65,11 +73,4 @@ support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0.2 travel_retract_before_outer_wall = True wall_0_wipe_dist = =round(line_width * 1.2,1) -bridge_settings_enabled = True -bridge_enable_more_layers = False -bridge_skin_material_flow = 85 -bridge_skin_speed = 20 -bridge_wall_material_flow = 85 -bridge_wall_speed = 20 -infill_enable_travel_optimization = True -retraction_combing_max_distance = 50 \ No newline at end of file + diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg index f23ab17b4e..9cf8367db5 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg @@ -1,29 +1,35 @@ [general] -version = 4 -name = UltraFine definition = imade3d_jellybox +name = UltraFine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultrahigh -weight = 2 global_quality = True +quality_type = ultrahigh +setting_version = 22 +type = quality +weight = 2 [values] adhesion_type = skirt -layer_height = 0.05 -layer_height_0 = 0.3 -retraction_hop = 0.1 bottom_thickness = =top_bottom_thickness +bridge_enable_more_layers = False +bridge_settings_enabled = True +bridge_skin_material_flow = 85 +bridge_skin_speed = 20 +bridge_wall_material_flow = 85 +bridge_wall_speed = 20 coasting_enable = True coasting_min_volume = 2 coasting_volume = 0.032 cool_fan_speed_max = =cool_fan_speed infill_before_walls = False +infill_enable_travel_optimization = True infill_line_width = =round(line_width * 1.5, 2) infill_pattern = zigzag infill_sparse_density = 25 +layer_height = 0.05 +layer_height_0 = 0.3 line_width = =machine_nozzle_size material_bed_temperature = =default_material_bed_temperature material_bed_temperature_layer_0 = =material_bed_temperature + 5 @@ -32,6 +38,8 @@ material_print_temperature_layer_0 = =material_print_temperature + 5 print_sequence = all_at_once retract_at_layer_change = True retraction_combing = noskin +retraction_combing_max_distance = 50 +retraction_hop = 0.1 retraction_hop_enabled = True retraction_min_travel = =machine_nozzle_size * 3 retraction_retract_speed = =retraction_speed @@ -65,11 +73,4 @@ support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0.2 travel_retract_before_outer_wall = True wall_0_wipe_dist = =round(line_width * 1.2,1) -bridge_settings_enabled = True -bridge_enable_more_layers = False -bridge_skin_material_flow = 85 -bridge_skin_speed = 20 -bridge_wall_material_flow = 85 -bridge_wall_speed = 20 -infill_enable_travel_optimization = True -retraction_combing_max_distance = 50 \ No newline at end of file + 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 2aeb2f804c..58087e1241 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Coarse definition = imade3d_jellybox_2 +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_petg +quality_type = fast +setting_version = 22 +type = quality variant = 0.4 mm +weight = -1 [values] speed_print = 45 + 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 1b08ae372f..fbb1051fdc 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fine definition = imade3d_jellybox_2 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_petg +quality_type = high +setting_version = 22 +type = quality variant = 0.4 mm +weight = 1 [values] -speed_print = 50 \ No newline at end of file +speed_print = 50 + 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 ec8aab201d..838318b6b2 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Medium definition = imade3d_jellybox_2 +name = Medium +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.4 mm +weight = 0 [values] -speed_print = 45 \ No newline at end of file +speed_print = 45 + 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 751177cdc0..7bfac678ae 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Coarse definition = imade3d_jellybox_2 +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pla +quality_type = fast +setting_version = 22 +type = quality variant = 0.4 mm +weight = -1 [values] -speed_print = 45 \ No newline at end of file +speed_print = 45 + 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 0d0c626d7c..a7059f8766 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fine definition = imade3d_jellybox_2 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality variant = 0.4 mm +weight = 1 [values] -speed_print = 50 \ No newline at end of file +speed_print = 50 + 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 9d7d30e7e2..6518e6e410 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Medium definition = imade3d_jellybox_2 +name = Medium +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4 mm +weight = 0 [values] -speed_print = 45 \ No newline at end of file +speed_print = 45 + 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 c99140271a..cba3af5b2b 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = UltraFine definition = imade3d_jellybox_2 +name = UltraFine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultrahigh -weight = 2 material = generic_pla +quality_type = ultrahigh +setting_version = 22 +type = quality variant = 0.4 mm +weight = 2 [values] -speed_print = 55 \ No newline at end of file +speed_print = 55 + 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 c0d7c8f3cf..a445dc28be 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg @@ -1,29 +1,35 @@ [general] -version = 4 -name = Coarse definition = imade3d_jellybox_2 +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] adhesion_type = skirt -layer_height = 0.3 -layer_height_0 = 0.3 -retraction_hop = 0.2 bottom_thickness = =top_bottom_thickness +bridge_enable_more_layers = False +bridge_settings_enabled = True +bridge_skin_material_flow = 85 +bridge_skin_speed = 20 +bridge_wall_material_flow = 85 +bridge_wall_speed = 20 coasting_enable = True coasting_min_volume = 2 coasting_volume = 0.032 cool_fan_speed_max = =cool_fan_speed infill_before_walls = False +infill_enable_travel_optimization = True infill_line_width = =round(line_width * 1.5, 2) infill_pattern = zigzag infill_sparse_density = 25 +layer_height = 0.3 +layer_height_0 = 0.3 line_width = =machine_nozzle_size material_bed_temperature = =default_material_bed_temperature material_bed_temperature_layer_0 = =material_bed_temperature + 5 @@ -32,6 +38,8 @@ material_print_temperature_layer_0 = =material_print_temperature + 5 print_sequence = all_at_once retract_at_layer_change = True retraction_combing = noskin +retraction_combing_max_distance = 50 +retraction_hop = 0.2 retraction_hop_enabled = True retraction_min_travel = =machine_nozzle_size * 3 retraction_retract_speed = =retraction_speed @@ -65,11 +73,4 @@ support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0.2 travel_retract_before_outer_wall = True wall_0_wipe_dist = =round(line_width * 1.2,1) -bridge_settings_enabled = True -bridge_enable_more_layers = False -bridge_skin_material_flow = 85 -bridge_skin_speed = 20 -bridge_wall_material_flow = 85 -bridge_wall_speed = 20 -infill_enable_travel_optimization = True -retraction_combing_max_distance = 50 \ No newline at end of file + 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 2f6e83f7dc..df0a0bf3f0 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg @@ -1,29 +1,35 @@ [general] -version = 4 -name = Fine definition = imade3d_jellybox_2 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] adhesion_type = skirt -layer_height = 0.1 -layer_height_0 = 0.3 -retraction_hop = 0.1 bottom_thickness = =top_bottom_thickness +bridge_enable_more_layers = False +bridge_settings_enabled = True +bridge_skin_material_flow = 85 +bridge_skin_speed = 20 +bridge_wall_material_flow = 85 +bridge_wall_speed = 20 coasting_enable = True coasting_min_volume = 2 coasting_volume = 0.032 cool_fan_speed_max = =cool_fan_speed infill_before_walls = False +infill_enable_travel_optimization = True infill_line_width = =round(line_width * 1.5, 2) infill_pattern = zigzag infill_sparse_density = 25 +layer_height = 0.1 +layer_height_0 = 0.3 line_width = =machine_nozzle_size material_bed_temperature = =default_material_bed_temperature material_bed_temperature_layer_0 = =material_bed_temperature + 5 @@ -32,6 +38,8 @@ material_print_temperature_layer_0 = =material_print_temperature + 5 print_sequence = all_at_once retract_at_layer_change = True retraction_combing = noskin +retraction_combing_max_distance = 50 +retraction_hop = 0.1 retraction_hop_enabled = True retraction_min_travel = =machine_nozzle_size * 3 retraction_retract_speed = =retraction_speed @@ -65,11 +73,4 @@ support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0.2 travel_retract_before_outer_wall = True wall_0_wipe_dist = =round(line_width * 1.2,1) -bridge_settings_enabled = True -bridge_enable_more_layers = False -bridge_skin_material_flow = 85 -bridge_skin_speed = 20 -bridge_wall_material_flow = 85 -bridge_wall_speed = 20 -infill_enable_travel_optimization = True -retraction_combing_max_distance = 50 \ No newline at end of file + 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 e32efa2c0c..be43962f72 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg @@ -1,29 +1,35 @@ [general] -version = 4 -name = Medium definition = imade3d_jellybox_2 +name = Medium +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] adhesion_type = skirt -layer_height = 0.2 -layer_height_0 = 0.3 -retraction_hop = 0.2 bottom_thickness = =top_bottom_thickness +bridge_enable_more_layers = False +bridge_settings_enabled = True +bridge_skin_material_flow = 85 +bridge_skin_speed = 20 +bridge_wall_material_flow = 85 +bridge_wall_speed = 20 coasting_enable = True coasting_min_volume = 2 coasting_volume = 0.032 cool_fan_speed_max = =cool_fan_speed infill_before_walls = False +infill_enable_travel_optimization = True infill_line_width = =round(line_width * 1.5, 2) infill_pattern = zigzag infill_sparse_density = 25 +layer_height = 0.2 +layer_height_0 = 0.3 line_width = =machine_nozzle_size material_bed_temperature = =default_material_bed_temperature material_bed_temperature_layer_0 = =material_bed_temperature + 5 @@ -32,6 +38,8 @@ material_print_temperature_layer_0 = =material_print_temperature + 5 print_sequence = all_at_once retract_at_layer_change = True retraction_combing = noskin +retraction_combing_max_distance = 50 +retraction_hop = 0.2 retraction_hop_enabled = True retraction_min_travel = =machine_nozzle_size * 3 retraction_retract_speed = =retraction_speed @@ -65,11 +73,4 @@ support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0.2 travel_retract_before_outer_wall = True wall_0_wipe_dist = =round(line_width * 1.2,1) -bridge_settings_enabled = True -bridge_enable_more_layers = False -bridge_skin_material_flow = 85 -bridge_skin_speed = 20 -bridge_wall_material_flow = 85 -bridge_wall_speed = 20 -infill_enable_travel_optimization = True -retraction_combing_max_distance = 50 \ No newline at end of file + 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 5f8cfd7fc3..b3b35aca97 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg @@ -1,29 +1,35 @@ [general] -version = 4 -name = UltraFine definition = imade3d_jellybox_2 +name = UltraFine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultrahigh -weight = 2 global_quality = True +quality_type = ultrahigh +setting_version = 22 +type = quality +weight = 2 [values] adhesion_type = skirt -layer_height = 0.05 -layer_height_0 = 0.3 -retraction_hop = 0.1 bottom_thickness = =top_bottom_thickness +bridge_enable_more_layers = False +bridge_settings_enabled = True +bridge_skin_material_flow = 85 +bridge_skin_speed = 20 +bridge_wall_material_flow = 85 +bridge_wall_speed = 20 coasting_enable = True coasting_min_volume = 2 coasting_volume = 0.032 cool_fan_speed_max = =cool_fan_speed infill_before_walls = False +infill_enable_travel_optimization = True infill_line_width = =round(line_width * 1.5, 2) infill_pattern = zigzag infill_sparse_density = 25 +layer_height = 0.05 +layer_height_0 = 0.3 line_width = =machine_nozzle_size material_bed_temperature = =default_material_bed_temperature material_bed_temperature_layer_0 = =material_bed_temperature + 5 @@ -32,6 +38,8 @@ material_print_temperature_layer_0 = =material_print_temperature + 5 print_sequence = all_at_once retract_at_layer_change = True retraction_combing = noskin +retraction_combing_max_distance = 50 +retraction_hop = 0.1 retraction_hop_enabled = True retraction_min_travel = =machine_nozzle_size * 3 retraction_retract_speed = =retraction_speed @@ -65,11 +73,4 @@ support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0.2 travel_retract_before_outer_wall = True wall_0_wipe_dist = =round(line_width * 1.2,1) -bridge_settings_enabled = True -bridge_enable_more_layers = False -bridge_skin_material_flow = 85 -bridge_skin_speed = 20 -bridge_wall_material_flow = 85 -bridge_wall_speed = 20 -infill_enable_travel_optimization = True -retraction_combing_max_distance = 50 \ No newline at end of file + diff --git a/resources/quality/inat/inat_base_advanced_materials.inst.cfg b/resources/quality/inat/inat_base_advanced_materials.inst.cfg index 0aa30f2641..b8db094434 100644 --- a/resources/quality/inat/inat_base_advanced_materials.inst.cfg +++ b/resources/quality/inat/inat_base_advanced_materials.inst.cfg @@ -1,20 +1,21 @@ [general] -version = 4 -name = Advanced materials definition = inat_base +name = Advanced materials +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal_advanced -weight = -1 global_quality = True +quality_type = normal_advanced +setting_version = 22 +type = quality +weight = -1 [values] -layer_height = 0.2 adhesion_type = brim +brim_width = =30*skirt_brim_line_width*initial_layer_line_width_factor/100.0 +layer_height = 0.2 speed_layer_0 = 20 speed_print = 60 speed_travel = 100 xy_offset_layer_0 = 0 -brim_width = =30*skirt_brim_line_width*initial_layer_line_width_factor/100.0 + diff --git a/resources/quality/inat/inat_base_draft.inst.cfg b/resources/quality/inat/inat_base_draft.inst.cfg index f0e4e8496d..b117afb385 100644 --- a/resources/quality/inat/inat_base_draft.inst.cfg +++ b/resources/quality/inat/inat_base_draft.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft definition = inat_base +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.32 infill_sparse_density = 15 +layer_height = 0.32 speed_print = 80 + diff --git a/resources/quality/inat/inat_base_fine.inst.cfg b/resources/quality/inat/inat_base_fine.inst.cfg index b0a2ce1bb0..b60f936a15 100644 --- a/resources/quality/inat/inat_base_fine.inst.cfg +++ b/resources/quality/inat/inat_base_fine.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Fine definition = inat_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 1 global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = 1 [values] -layer_height = 0.12 \ No newline at end of file +layer_height = 0.12 + diff --git a/resources/quality/inat/inat_base_standard.inst.cfg b/resources/quality/inat/inat_base_standard.inst.cfg index aa472432c0..38b46b98e4 100644 --- a/resources/quality/inat/inat_base_standard.inst.cfg +++ b/resources/quality/inat/inat_base_standard.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard definition = inat_base +name = Standard +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard -weight = 0 global_quality = True +quality_type = standard +setting_version = 22 +type = quality +weight = 0 [values] speed_print = 80 + diff --git a/resources/quality/inat/inat_base_strong.inst.cfg b/resources/quality/inat/inat_base_strong.inst.cfg index 0221059e0e..0a305179df 100644 --- a/resources/quality/inat/inat_base_strong.inst.cfg +++ b/resources/quality/inat/inat_base_strong.inst.cfg @@ -1,21 +1,22 @@ [general] -version = 4 -name = Strong definition = inat_base +name = Strong +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = strong -weight = -3 global_quality = True +quality_type = strong +setting_version = 22 +type = quality +weight = -3 [values] -speed_print = 50 -speed_layer_0 = 20 -wall_thickness = =8*wall_line_width -top_bottom_thickness = 2.0 +adhesion_type = brim alternate_extra_perimeter = True -infill_sparse_density = 80 cool_fan_enabled = False -adhesion_type = brim \ No newline at end of file +infill_sparse_density = 80 +speed_layer_0 = 20 +speed_print = 50 +top_bottom_thickness = 2.0 +wall_thickness = =8*wall_line_width + diff --git a/resources/quality/inat/inat_base_tree_support.inst.cfg b/resources/quality/inat/inat_base_tree_support.inst.cfg index aa811aaa6e..484defc534 100644 --- a/resources/quality/inat/inat_base_tree_support.inst.cfg +++ b/resources/quality/inat/inat_base_tree_support.inst.cfg @@ -1,17 +1,18 @@ [general] -version = 4 -name = Tree supports definition = inat_base +name = Tree supports +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal_tree_supp -weight = -2 global_quality = True +quality_type = normal_tree_supp +setting_version = 22 +type = quality +weight = -2 [values] -support_structure = tree -support_type = buildplate support_enable = True -support_top_distance = 0.4 \ No newline at end of file +support_structure = tree +support_top_distance = 0.4 +support_type = buildplate + 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 a35a405f50..748bbc5b32 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = Detail 0.12 definition = jgaurora_a6 +name = Detail 0.12 +version = 4 [metadata] -setting_version = 20 +global_quality = true quality_type = detail +setting_version = 22 type = quality weight = 0 -global_quality = true [values] -layer_height = 0.12 -layer_height_0 = 0.2 -initial_layer_line_width_factor = 150 -infill_before_walls = true -speed_print = 50 -speed_travel = 80 -retraction_amount = 4 acceleration_enabled = True adhesion_type = skirt +infill_before_walls = true +initial_layer_line_width_factor = 150 jerk_enabled = True +layer_height = 0.12 +layer_height_0 = 0.2 +retraction_amount = 4 retraction_combing = infill +speed_print = 50 +speed_travel = 80 support_enable = False travel_retract_before_outer_wall = True + 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 1dc8582180..30bb6ab0c7 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 @@ -1,26 +1,27 @@ [general] -version = 4 -name = Optimal 0.16 definition = jgaurora_a6 +name = Optimal 0.16 +version = 4 [metadata] +global_quality = true quality_type = optimal -setting_version = 20 +setting_version = 22 type = quality weight = -1 -global_quality = true [values] +acceleration_enabled = True +adhesion_type = skirt +infill_before_walls = true +initial_layer_line_width_factor = 150 +jerk_enabled = True layer_height = 0.16 layer_height_0 = 0.2 -initial_layer_line_width_factor = 150 -infill_before_walls = true +retraction_amount = 4 +retraction_combing = infill speed_print = 55 speed_travel = 80 -retraction_amount = 4 -adhesion_type = skirt -acceleration_enabled = True -jerk_enabled = True -retraction_combing = infill support_enable = False travel_retract_before_outer_wall = True + 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 e39dbf08d2..733ff7624f 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Draft 0.24 definition = jgaurora_a6 +name = Draft 0.24 +version = 4 [metadata] +global_quality = true quality_type = draft -setting_version = 20 +setting_version = 22 type = quality weight = -3 -global_quality = true [values] +adhesion_type = skirt layer_height = 0.24 layer_height_0 = 0.24 -speed_print = 60 retraction_amount = 4 -adhesion_type = skirt retraction_combing = infill +speed_print = 60 support_enable = False travel_retract_before_outer_wall = True + diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg.txt b/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg similarity index 95% rename from resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg.txt rename to resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg index 89209e16f0..f2a7c48e9b 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg.txt +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg @@ -1,24 +1,25 @@ [general] -version = 4 -name = Fast 0.28 definition = jgaurora_a6 +name = Fast 0.28 +version = 4 [metadata] +global_quality = true quality_type = fast -setting_version = 20 +setting_version = 22 type = quality weight = -4 -global_quality = true [values] +adhesion_type = skirt layer_height = 0.28 layer_height_0 = 0.28 +retraction_amount = 4 +retraction_combing = infill +speed_layer_0 = 30 speed_print = 60 speed_travel = 120 -speed_layer_0 = 30 -wall_thickness = =line_width * 4 -retraction_amount = 4 -adhesion_type = skirt -retraction_combing = infill support_enable = False travel_retract_before_outer_wall = True +wall_thickness = =line_width * 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 658fc02936..38978f7b0d 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 @@ -1,21 +1,22 @@ [general] -version = 4 -name = Normal 0.20 definition = jgaurora_a6 +name = Normal 0.20 +version = 4 [metadata] +global_quality = true quality_type = normal -setting_version = 20 +setting_version = 22 type = quality weight = -2 -global_quality = true [values] +adhesion_type = skirt layer_height = 0.2 layer_height_0 = 0.2 +retraction_combing = infill speed_print = 60 speed_travel = 100 -adhesion_type = skirt -retraction_combing = infill support_enable = False travel_retract_before_outer_wall = True + diff --git a/resources/quality/katihal/alya3dp_normal.inst.cfg b/resources/quality/katihal/alya3dp_normal.inst.cfg index bb35bdb895..acde117ae3 100644 --- a/resources/quality/katihal/alya3dp_normal.inst.cfg +++ b/resources/quality/katihal/alya3dp_normal.inst.cfg @@ -1,36 +1,32 @@ [general] -version = 4 -name = Normal definition = alya3dp +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = alya_normal -weight = 0 global_quality = True +quality_type = alya_normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.16 -layer_height_0 = 0.1 adhesion_type = raft -skirt_line_count = 2 -skirt_gap = 2 fill_outline_gaps = True infill_angles = [0,90 ] -infill_sparse_density = 15 -retraction_min_travel = 0.8 -skin_angles = [0,90] -top_layers = 6 -wall_line_count = 2 +infill_line_width = 0.4 infill_pattern = grid -skin_line_width = 0.4 +infill_sparse_density = 15 +layer_height = 0.16 +layer_height_0 = 0.1 +line_width = 0.4 +optimize_wall_printing_order = True raft_base_line_spacing = 2.6 raft_base_line_width = 1.2 raft_base_thickness = 0.3 +raft_interface_line_spacing = 0.8 raft_interface_line_width = 0.4 raft_interface_thickness = 0.3 -raft_interface_line_spacing = 0.8 raft_margin = 5 raft_surface_layers = 3 raft_surface_line_width = 0.4 @@ -38,20 +34,25 @@ raft_surface_thickness = 0.2 retract_at_layer_change = true retraction_hop = 0.5 retraction_hop_enabled = true -support_type = everywhere -support_interface_pattern =lines -support_top_distance = 0.15 -support_z_distance = 0.25 +retraction_min_travel = 0.8 +skin_angles = [0,90] +skin_line_width = 0.4 +skirt_gap = 2 +skirt_line_count = 2 +support_angle = 70 support_bottom_distance = 0.15 support_brim_width = 6 support_infill_rate = =15 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 15 +support_initial_layer_line_distance = 2.7 +support_interface_pattern = lines support_line_distance = 1.7 support_line_width = 0.25 -support_initial_layer_line_distance = 2.7 +support_top_distance = 0.15 +support_type = everywhere support_xy_distance = 0.7 -infill_line_width = 0.4 -line_width = 0.4 -optimize_wall_printing_order = True -support_angle = 70 +support_z_distance = 0.25 +top_layers = 6 +wall_line_count = 2 +wall_line_width_0 = 0.35 wall_line_width_x = 0.4 -wall_line_width_0 = 0.35 \ No newline at end of file + diff --git a/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg b/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg index 8265363e0c..4e1f5b9fe4 100644 --- a/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg @@ -1,31 +1,32 @@ [general] -version = 4 definition = alya3dp name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = alya_normal -weight = 3 material = generic_pla +quality_type = alya_normal +setting_version = 22 +type = quality +weight = 3 [values] -speed_print = 40 -speed_topbottom = 30 -speed_wall_0 = 35 +cool_fan_speed = 100 +cool_fan_speed_0 = 100 +layer_0_z_overlap = 0.04 +raft_airgap = 0.15 +raft_base_fan_speed = 0 +raft_base_speed = 15 +raft_interface_fan_speed = 0 +raft_interface_speed = 20 +raft_surface_fan_speed = 100 +raft_surface_speed = 35 speed_infill = 45 speed_layer_0 = 25 +speed_print = 40 speed_support = 45 speed_support_interface = 35 +speed_topbottom = 30 speed_travel = 60 -raft_airgap = 0.15 -layer_0_z_overlap = 0.04 -raft_base_speed = 15 -raft_interface_speed = 20 -raft_surface_speed = 35 -raft_surface_fan_speed = 100 -raft_base_fan_speed = 0 -raft_interface_fan_speed = 0 -cool_fan_speed = 100 -cool_fan_speed_0 = 100 \ No newline at end of file +speed_wall_0 = 35 + diff --git a/resources/quality/katihal/alyanx3dp_normal.inst.cfg b/resources/quality/katihal/alyanx3dp_normal.inst.cfg index d57573e3b7..8e5946f5b9 100644 --- a/resources/quality/katihal/alyanx3dp_normal.inst.cfg +++ b/resources/quality/katihal/alyanx3dp_normal.inst.cfg @@ -1,36 +1,32 @@ [general] -version = 4 -name = Normal definition = alyanx3dp +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = alyanx_normal -weight = 0 global_quality = True +quality_type = alyanx_normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.16 -layer_height_0 = 0.1 adhesion_type = raft -skirt_line_count = 2 -skirt_gap = 2 fill_outline_gaps = True infill_angles = [0,90 ] -infill_sparse_density = 15 -retraction_min_travel = 0.8 -skin_angles = [0,90] -top_layers = 6 -wall_line_count = 2 +infill_line_width = 0.4 infill_pattern = grid -skin_line_width = 0.4 +infill_sparse_density = 15 +layer_height = 0.16 +layer_height_0 = 0.1 +line_width = 0.4 +optimize_wall_printing_order = True raft_base_line_spacing = 2.6 raft_base_line_width = 1.2 raft_base_thickness = 0.3 +raft_interface_line_spacing = 0.8 raft_interface_line_width = 0.4 raft_interface_thickness = 0.3 -raft_interface_line_spacing = 0.8 raft_margin = 5 raft_surface_layers = 3 raft_surface_line_width = 0.4 @@ -38,20 +34,25 @@ raft_surface_thickness = 0.2 retract_at_layer_change = true retraction_hop = 0.5 retraction_hop_enabled = true -support_type = everywhere -support_interface_pattern =lines -support_top_distance = 0.15 -support_z_distance = 0.25 +retraction_min_travel = 0.8 +skin_angles = [0,90] +skin_line_width = 0.4 +skirt_gap = 2 +skirt_line_count = 2 +support_angle = 70 support_bottom_distance = 0.15 support_brim_width = 6 support_infill_rate = =15 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 15 +support_initial_layer_line_distance = 2.7 +support_interface_pattern = lines support_line_distance = 1.7 support_line_width = 0.25 -support_initial_layer_line_distance = 2.7 +support_top_distance = 0.15 +support_type = everywhere support_xy_distance = 0.7 -infill_line_width = 0.4 -line_width = 0.4 -optimize_wall_printing_order = True -support_angle = 70 +support_z_distance = 0.25 +top_layers = 6 +wall_line_count = 2 +wall_line_width_0 = 0.35 wall_line_width_x = 0.4 -wall_line_width_0 = 0.35 \ No newline at end of file + diff --git a/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg b/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg index 5e1666d0ed..8058cff6c0 100644 --- a/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg @@ -1,31 +1,32 @@ [general] -version = 4 definition = alyanx3dp name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = alyanx_normal -weight = 2 material = generic_pla +quality_type = alyanx_normal +setting_version = 22 +type = quality +weight = 2 [values] -speed_print = 40 -speed_topbottom = 30 -speed_wall_0 = 35 +cool_fan_speed = 100 +cool_fan_speed_0 = 100 +layer_0_z_overlap = 0.04 +raft_airgap = 0.15 +raft_base_fan_speed = 0 +raft_base_speed = 15 +raft_interface_fan_speed = 0 +raft_interface_speed = 20 +raft_surface_fan_speed = 100 +raft_surface_speed = 35 speed_infill = 45 speed_layer_0 = 25 +speed_print = 40 speed_support = 45 speed_support_interface = 35 +speed_topbottom = 30 speed_travel = 60 -raft_airgap = 0.15 -layer_0_z_overlap = 0.04 -raft_base_speed = 15 -raft_interface_speed = 20 -raft_surface_speed = 35 -raft_surface_fan_speed = 100 -raft_base_fan_speed = 0 -raft_interface_fan_speed = 0 -cool_fan_speed = 100 -cool_fan_speed_0 = 100 \ No newline at end of file +speed_wall_0 = 35 + diff --git a/resources/quality/katihal/kupido_normal.inst.cfg b/resources/quality/katihal/kupido_normal.inst.cfg index 77ce2e65ef..2efc4fe1ae 100644 --- a/resources/quality/katihal/kupido_normal.inst.cfg +++ b/resources/quality/katihal/kupido_normal.inst.cfg @@ -1,36 +1,32 @@ [general] -version = 4 -name = Normal definition = kupido +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = kupido_normal -weight = 0 global_quality = True +quality_type = kupido_normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.16 -layer_height_0 = 0.1 adhesion_type = raft -skirt_line_count = 2 -skirt_gap = 2 fill_outline_gaps = True infill_angles = [0,90 ] -infill_sparse_density = 15 -retraction_min_travel = 0.8 -skin_angles = [0,90] -top_layers = 6 -wall_line_count = 2 +infill_line_width = 0.4 infill_pattern = grid -skin_line_width = 0.4 +infill_sparse_density = 15 +layer_height = 0.16 +layer_height_0 = 0.1 +line_width = 0.4 +optimize_wall_printing_order = True raft_base_line_spacing = 2.6 raft_base_line_width = 1.2 raft_base_thickness = 0.3 +raft_interface_line_spacing = 0.8 raft_interface_line_width = 0.4 raft_interface_thickness = 0.3 -raft_interface_line_spacing = 0.8 raft_margin = 5 raft_surface_layers = 3 raft_surface_line_width = 0.4 @@ -38,20 +34,25 @@ raft_surface_thickness = 0.2 retract_at_layer_change = true retraction_hop = 0.5 retraction_hop_enabled = true -support_type = everywhere -support_interface_pattern =lines -support_top_distance = 0.15 -support_z_distance = 0.25 +retraction_min_travel = 0.8 +skin_angles = [0,90] +skin_line_width = 0.4 +skirt_gap = 2 +skirt_line_count = 2 +support_angle = 70 support_bottom_distance = 0.15 support_brim_width = 6 support_infill_rate = =15 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 15 +support_initial_layer_line_distance = 2.7 +support_interface_pattern = lines support_line_distance = 1.7 support_line_width = 0.25 -support_initial_layer_line_distance = 2.7 +support_top_distance = 0.15 +support_type = everywhere support_xy_distance = 0.7 -infill_line_width = 0.4 -line_width = 0.4 -optimize_wall_printing_order = True -support_angle = 70 +support_z_distance = 0.25 +top_layers = 6 +wall_line_count = 2 +wall_line_width_0 = 0.35 wall_line_width_x = 0.4 -wall_line_width_0 = 0.35 \ No newline at end of file + diff --git a/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg b/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg index 42bedfc8d6..fbdfc42b77 100644 --- a/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg +++ b/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg @@ -1,31 +1,32 @@ [general] -version = 4 definition = kupido name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = kupido_normal -weight = 3 material = generic_abs +quality_type = kupido_normal +setting_version = 22 +type = quality +weight = 3 [values] -speed_print = 40 -speed_topbottom = 30 -speed_wall_0 = 35 +cool_fan_speed = 30 +cool_fan_speed_0 = 30 +layer_0_z_overlap = 0.04 +raft_airgap = 0.1 +raft_base_fan_speed = 0 +raft_base_speed = 15 +raft_interface_fan_speed = 0 +raft_interface_speed = 20 +raft_surface_fan_speed = 100 +raft_surface_speed = 35 speed_infill = 45 speed_layer_0 = 25 +speed_print = 40 speed_support = 45 speed_support_interface = 35 +speed_topbottom = 30 speed_travel = 60 -raft_airgap = 0.1 -layer_0_z_overlap = 0.04 -raft_base_speed = 15 -raft_interface_speed = 20 -raft_surface_speed = 35 -raft_surface_fan_speed = 100 -raft_base_fan_speed = 0 -raft_interface_fan_speed = 0 -cool_fan_speed = 30 -cool_fan_speed_0 = 30 \ No newline at end of file +speed_wall_0 = 35 + diff --git a/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg b/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg index 0f25ab269e..ee34e155a2 100644 --- a/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg @@ -1,31 +1,32 @@ [general] -version = 4 definition = kupido name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = kupido_normal -weight = 3 material = generic_pla +quality_type = kupido_normal +setting_version = 22 +type = quality +weight = 3 [values] -speed_print = 40 -speed_topbottom = 30 -speed_wall_0 = 35 +cool_fan_speed = 100 +cool_fan_speed_0 = 100 +layer_0_z_overlap = 0.04 +raft_airgap = 0.15 +raft_base_fan_speed = 0 +raft_base_speed = 15 +raft_interface_fan_speed = 0 +raft_interface_speed = 20 +raft_surface_fan_speed = 100 +raft_surface_speed = 35 speed_infill = 45 speed_layer_0 = 25 +speed_print = 40 speed_support = 45 speed_support_interface = 35 +speed_topbottom = 30 speed_travel = 60 -raft_airgap = 0.15 -layer_0_z_overlap = 0.04 -raft_base_speed = 15 -raft_interface_speed = 20 -raft_surface_speed = 35 -raft_surface_fan_speed = 100 -raft_base_fan_speed = 0 -raft_interface_fan_speed = 0 -cool_fan_speed = 100 -cool_fan_speed_0 = 100 \ No newline at end of file +speed_wall_0 = 35 + 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 34a05fce25..fe12445795 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 @@ -1,41 +1,37 @@ [general] -version = 4 -name = Draft definition = kemiq_q2_beta +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = generic_abs +quality_type = coarse +setting_version = 22 +type = quality +weight = -3 [values] +adhesion_type = raft +cool_fan_enabled = False layer_height = 0.35 layer_height_0 = 0.3 - -speed_print = 70 -speed_infill = =math.ceil(speed_print * 60 / 70) -speed_layer_0 = =math.ceil(speed_print * 20 / 70) -speed_wall_0 = =math.ceil(speed_print * 30 / 70) -speed_wall_x = =math.ceil(speed_print * 50 / 70) -speed_topbottom = =math.ceil(speed_print * 30 / 70) -speed_travel = 120 - -material_print_temperature = 246 material_bed_temperature = 85 - -retraction_speed = 50 -retraction_amount = 1.5 - -adhesion_type = raft +material_print_temperature = 246 raft_airgap = 0.25 -raft_margin = 10 -raft_surface_layers = 3 -raft_interface_line_spacing = 2 -raft_speed = 20 raft_base_line_width = 0.8 raft_base_thickness = 0.36 +raft_interface_line_spacing = 2 +raft_margin = 10 +raft_speed = 20 +raft_surface_layers = 3 raft_surface_line_spacing = 0.4 +retraction_amount = 1.5 +retraction_speed = 50 +speed_infill = =math.ceil(speed_print * 60 / 70) +speed_layer_0 = =math.ceil(speed_print * 20 / 70) +speed_print = 70 +speed_topbottom = =math.ceil(speed_print * 30 / 70) +speed_travel = 120 +speed_wall_0 = =math.ceil(speed_print * 30 / 70) +speed_wall_x = =math.ceil(speed_print * 50 / 70) -cool_fan_enabled = False 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 0cbe13fd52..b9de5eb8af 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 @@ -1,41 +1,37 @@ [general] -version = 4 -name = Extra Fine definition = kemiq_q2_beta +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] +adhesion_type = raft +cool_fan_enabled = False layer_height = 0.06 layer_height_0 = 0.3 - -speed_print = 40 -speed_infill = =math.ceil(speed_print * 50 / 40) -speed_layer_0 = =math.ceil(speed_print * 15 / 40) -speed_wall_0 = =math.ceil(speed_print * 20 / 40) -speed_wall_x = =speed_print -speed_topbottom = =math.ceil(speed_print * 20 / 40) -speed_travel = 120 - -material_print_temperature = 246 material_bed_temperature = 85 - -retraction_speed = 50 -retraction_amount = 1.5 - -adhesion_type = raft +material_print_temperature = 246 raft_airgap = 0.25 -raft_margin = 10 -raft_surface_layers = 3 -raft_interface_line_spacing = 2 -raft_speed = 20 raft_base_line_width = 0.8 raft_base_thickness = 0.36 +raft_interface_line_spacing = 2 +raft_margin = 10 +raft_speed = 20 +raft_surface_layers = 3 raft_surface_line_spacing = 0.4 +retraction_amount = 1.5 +retraction_speed = 50 +speed_infill = =math.ceil(speed_print * 50 / 40) +speed_layer_0 = =math.ceil(speed_print * 15 / 40) +speed_print = 40 +speed_topbottom = =math.ceil(speed_print * 20 / 40) +speed_travel = 120 +speed_wall_0 = =math.ceil(speed_print * 20 / 40) +speed_wall_x = =speed_print -cool_fan_enabled = False 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 fcf821ccee..c2dbd5b30c 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 @@ -1,41 +1,37 @@ [general] -version = 4 -name = Fine definition = kemiq_q2_beta +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] +adhesion_type = raft +cool_fan_enabled = False layer_height = 0.1 layer_height_0 = 0.3 - -speed_print = 50 -speed_infill = =math.ceil(speed_print * 60 / 50) -speed_layer_0 = =math.ceil(speed_print * 20 / 50) -speed_wall_0 = =math.ceil(speed_print * 25 / 50) -speed_wall_x = =math.ceil(speed_print * 45 / 50) -speed_topbottom = =math.ceil(speed_print * 30 / 50) -speed_travel = 120 - -material_print_temperature = 246 material_bed_temperature = 85 - -retraction_speed = 50 -retraction_amount = 1.5 - -adhesion_type = raft +material_print_temperature = 246 raft_airgap = 0.25 -raft_margin = 10 -raft_surface_layers = 3 -raft_interface_line_spacing = 2 -raft_speed = 20 raft_base_line_width = 0.8 raft_base_thickness = 0.36 +raft_interface_line_spacing = 2 +raft_margin = 10 +raft_speed = 20 +raft_surface_layers = 3 raft_surface_line_spacing = 0.4 +retraction_amount = 1.5 +retraction_speed = 50 +speed_infill = =math.ceil(speed_print * 60 / 50) +speed_layer_0 = =math.ceil(speed_print * 20 / 50) +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 30 / 50) +speed_travel = 120 +speed_wall_0 = =math.ceil(speed_print * 25 / 50) +speed_wall_x = =math.ceil(speed_print * 45 / 50) -cool_fan_enabled = False 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 bb9af57335..7a3d2cdf25 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 @@ -1,41 +1,37 @@ [general] -version = 4 -name = Low definition = kemiq_q2_beta +name = Low +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_abs +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] +adhesion_type = raft +cool_fan_enabled = False layer_height = 0.2 layer_height_0 = 0.3 - -speed_print = 70 -speed_infill = =math.ceil(speed_print * 60 / 70) -speed_layer_0 = =math.ceil(speed_print * 20 / 70) -speed_wall_0 = =math.ceil(speed_print * 30 / 70) -speed_wall_x = =math.ceil(speed_print * 50 / 70) -speed_topbottom = =math.ceil(speed_print * 30 / 70) -speed_travel = 120 - -material_print_temperature = 246 material_bed_temperature = 85 - -retraction_speed = 50 -retraction_amount = 1.5 - -adhesion_type = raft +material_print_temperature = 246 raft_airgap = 0.25 -raft_margin = 10 -raft_surface_layers = 3 -raft_interface_line_spacing = 2 -raft_speed = 20 raft_base_line_width = 0.8 raft_base_thickness = 0.36 +raft_interface_line_spacing = 2 +raft_margin = 10 +raft_speed = 20 +raft_surface_layers = 3 raft_surface_line_spacing = 0.4 +retraction_amount = 1.5 +retraction_speed = 50 +speed_infill = =math.ceil(speed_print * 60 / 70) +speed_layer_0 = =math.ceil(speed_print * 20 / 70) +speed_print = 70 +speed_topbottom = =math.ceil(speed_print * 30 / 70) +speed_travel = 120 +speed_wall_0 = =math.ceil(speed_print * 30 / 70) +speed_wall_x = =math.ceil(speed_print * 50 / 70) -cool_fan_enabled = False 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 62c12a0bca..1e20e9f01e 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 @@ -1,41 +1,37 @@ [general] -version = 4 -name = Normal definition = kemiq_q2_beta +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_abs +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] +adhesion_type = raft +cool_fan_enabled = False layer_height = 0.15 layer_height_0 = 0.3 - -speed_print = 60 -speed_infill = =math.ceil(speed_print * 50 / 60) -speed_layer_0 = =math.ceil(speed_print * 15 / 60) -speed_wall_0 = =math.ceil(speed_print * 20 / 60) -speed_wall_x = =math.ceil(speed_print * 40 / 60) -speed_topbottom = =math.ceil(speed_print * 20 / 60) -speed_travel = 120 - -material_print_temperature = 246 material_bed_temperature = 85 - -retraction_speed = 50 -retraction_amount = 1.5 - -adhesion_type = raft +material_print_temperature = 246 raft_airgap = 0.25 -raft_margin = 10 -raft_surface_layers = 3 -raft_interface_line_spacing = 2 -raft_speed = 20 raft_base_line_width = 0.8 raft_base_thickness = 0.36 +raft_interface_line_spacing = 2 +raft_margin = 10 +raft_speed = 20 +raft_surface_layers = 3 raft_surface_line_spacing = 0.4 +retraction_amount = 1.5 +retraction_speed = 50 +speed_infill = =math.ceil(speed_print * 50 / 60) +speed_layer_0 = =math.ceil(speed_print * 15 / 60) +speed_print = 60 +speed_topbottom = =math.ceil(speed_print * 20 / 60) +speed_travel = 120 +speed_wall_0 = =math.ceil(speed_print * 20 / 60) +speed_wall_x = =math.ceil(speed_print * 40 / 60) -cool_fan_enabled = False 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 b4ab881229..b4cc00888b 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 @@ -1,25 +1,22 @@ [general] -version = 4 -name = Draft definition = kemiq_q2_beta +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = generic_pla +quality_type = coarse +setting_version = 22 +type = quality +weight = -3 [values] -layer_height = 0.35 adhesion_type = skirt - +layer_height = 0.35 +material_bed_temperature = 60 +material_print_temperature = 214 +raft_airgap = 0.25 +retraction_amount = 2.15 +retraction_speed = 40 speed_print = 60 -material_print_temperature = 214 -material_bed_temperature = 60 - -retraction_speed = 40 -retraction_amount = 2.15 - -raft_airgap = 0.25 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 430f0bd5a4..9a86174233 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 @@ -1,25 +1,22 @@ [general] -version = 4 -name = Extra Fine definition = kemiq_q2_beta +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] -layer_height = 0.06 adhesion_type = skirt - +layer_height = 0.06 +material_bed_temperature = 60 +material_print_temperature = 214 +raft_airgap = 0.25 +retraction_amount = 2.15 +retraction_speed = 40 speed_print = 30 -material_print_temperature = 214 -material_bed_temperature = 60 - -retraction_speed = 40 -retraction_amount = 2.15 - -raft_airgap = 0.25 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 6632469324..6c0397ec54 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 @@ -1,25 +1,22 @@ [general] -version = 4 -name = Fine definition = kemiq_q2_beta +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.1 adhesion_type = skirt - +layer_height = 0.1 +material_bed_temperature = 60 +material_print_temperature = 214 +raft_airgap = 0.25 +retraction_amount = 2.15 +retraction_speed = 40 speed_print = 40 -material_print_temperature = 214 -material_bed_temperature = 60 - -retraction_speed = 40 -retraction_amount = 2.15 - -raft_airgap = 0.25 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 afb3a001ef..4aad3524b3 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 @@ -1,25 +1,22 @@ [general] -version = 4 -name = Low definition = kemiq_q2_beta +name = Low +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] -layer_height = 0.2 adhesion_type = skirt - +layer_height = 0.2 +material_bed_temperature = 60 +material_print_temperature = 214 +raft_airgap = 0.25 +retraction_amount = 2.15 +retraction_speed = 40 speed_print = 60 -material_print_temperature = 214 -material_bed_temperature = 60 - -retraction_speed = 40 -retraction_amount = 2.15 - -raft_airgap = 0.25 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 deba2117ac..873469a2cd 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 @@ -1,25 +1,22 @@ [general] -version = 4 -name = Normal definition = kemiq_q2_beta +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pla +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] -layer_height = 0.15 adhesion_type = skirt - +layer_height = 0.15 +material_bed_temperature = 60 +material_print_temperature = 214 +raft_airgap = 0.25 +retraction_amount = 2.15 +retraction_speed = 40 speed_print = 50 -material_print_temperature = 214 -material_bed_temperature = 60 - -retraction_speed = 40 -retraction_amount = 2.15 - -raft_airgap = 0.25 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 c9cc625a5f..2650cf98e8 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 @@ -1,24 +1,21 @@ [general] -version = 4 -name = Draft definition = kemiq_q2_gama +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = generic_pla +quality_type = coarse +setting_version = 22 +type = quality +weight = -3 [values] -layer_height = 0.35 adhesion_type = raft - +layer_height = 0.35 +material_print_temperature = 214 +raft_airgap = 0.25 +retraction_amount = 2.15 +retraction_speed = 40 speed_print = 60 -material_print_temperature = 214 - -retraction_speed = 40 -retraction_amount = 2.15 - -raft_airgap = 0.25 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 9aa8b6e2b2..d090bb6c4e 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 @@ -1,30 +1,27 @@ [general] -version = 4 -name = Extra Fine definition = kemiq_q2_gama +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] -layer_height = 0.06 adhesion_type = skirt - -speed_print = 40 +layer_height = 0.06 +material_print_temperature = 214 +raft_airgap = 0.25 +retraction_amount = 2.15 +retraction_speed = 40 speed_infill = =math.ceil(speed_print * 50 / 40) speed_layer_0 = =math.ceil(speed_print * 15 / 40) -speed_wall_0 = =math.ceil(speed_print * 20 / 40) -speed_wall_x = =speed_print +speed_print = 40 speed_topbottom = =math.ceil(speed_print * 20 / 40) speed_travel = 120 +speed_wall_0 = =math.ceil(speed_print * 20 / 40) +speed_wall_x = =speed_print -material_print_temperature = 214 - -retraction_speed = 40 -retraction_amount = 2.15 - -raft_airgap = 0.25 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 46014a9c23..fc52768f4e 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 @@ -1,30 +1,27 @@ [general] -version = 4 -name = Fine definition = kemiq_q2_gama +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.1 adhesion_type = skirt - -speed_print = 50 +layer_height = 0.1 +material_print_temperature = 214 +raft_airgap = 0.25 +retraction_amount = 2.15 +retraction_speed = 40 speed_infill = =math.ceil(speed_print * 60 / 50) speed_layer_0 = =math.ceil(speed_print * 20 / 50) -speed_wall_0 = =math.ceil(speed_print * 25 / 50) -speed_wall_x = =math.ceil(speed_print * 45 / 50) +speed_print = 50 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_travel = 120 +speed_wall_0 = =math.ceil(speed_print * 25 / 50) +speed_wall_x = =math.ceil(speed_print * 45 / 50) -material_print_temperature = 214 - -retraction_speed = 40 -retraction_amount = 2.15 - -raft_airgap = 0.25 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 09d49dac0d..6de5c3e183 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 @@ -1,24 +1,21 @@ [general] -version = 4 -name = Low definition = kemiq_q2_gama +name = Low +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] -layer_height = 0.2 adhesion_type = raft - +layer_height = 0.2 +material_print_temperature = 214 +raft_airgap = 0.25 +retraction_amount = 2.15 +retraction_speed = 40 speed_print = 60 -material_print_temperature = 214 - -retraction_speed = 40 -retraction_amount = 2.15 - -raft_airgap = 0.25 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 9756d4e924..89f8594313 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 @@ -1,30 +1,27 @@ [general] -version = 4 -name = Normal definition = kemiq_q2_gama +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pla +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] -layer_height = 0.15 adhesion_type = skirt - -speed_print = 60 +layer_height = 0.15 +material_print_temperature = 214 +raft_airgap = 0.25 +retraction_amount = 2.15 +retraction_speed = 40 speed_infill = =math.ceil(speed_print * 50 / 60) speed_layer_0 = =math.ceil(speed_print * 15 / 60) -speed_wall_0 = =math.ceil(speed_print * 20 / 60) -speed_wall_x = =math.ceil(speed_print * 40 / 60) +speed_print = 60 speed_topbottom = =math.ceil(speed_print * 20 / 60) speed_travel = 120 +speed_wall_0 = =math.ceil(speed_print * 20 / 60) +speed_wall_x = =math.ceil(speed_print * 40 / 60) -material_print_temperature = 214 - -retraction_speed = 40 -retraction_amount = 2.15 - -raft_airgap = 0.25 diff --git a/resources/quality/key3d/key3d_tyro_best.inst.cfg b/resources/quality/key3d/key3d_tyro_best.inst.cfg index d2c546570a..c7a207387e 100644 --- a/resources/quality/key3d/key3d_tyro_best.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_best.inst.cfg @@ -1,120 +1,119 @@ [general] -version = 4 -name = Best Quality definition = key3d_tyro +name = Best Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = best -weight = 1 global_quality = True +quality_type = best +setting_version = 22 +type = quality +weight = 1 [values] +acceleration_enabled = False +acceleration_roofing = 3000 +adhesion_type = skirt +alternate_extra_perimeter = False +bottom_layers = 3 +bottom_thickness = 0.6 +build_volume_temperature = 0 +carve_multiple_volumes = False +cool_fan_enabled = True +cool_fan_full_at_height = 0.24 +cool_fan_speed = 100 +cool_fan_speed_0 = 0 +cool_lift_head = False +default_material_bed_temperature = 0 +default_material_print_temperature = 220 +fill_outline_gaps = True +gradual_infill_steps = 0 +gradual_support_infill_steps = 0 +infill_before_walls = False +infill_multiplier = 1 +infill_overlap = 10 +infill_sparse_density = 20 +infill_support_enabled = False +infill_wall_line_count = 0 +infill_wipe_dist = 0.1 +initial_layer_line_width_factor = 100 +ironing_enabled = False +jerk_enabled = False layer_height = 0.08 layer_height_0 = 0.24 line_width = 0.4 -wall_line_width_0 = 0.4 -initial_layer_line_width_factor = 100 -wall_thickness = 0.8 -wall_0_wipe_dist = 0.2 -roofing_layer_count = 1 -top_bottom_thickness = 0.6 -top_thickness = 0.8 -top_layers = 5 -bottom_thickness = 0.6 -bottom_layers = 3 -top_bottom_pattern = lines -top_bottom_pattern_0 = lines -wall_0_inset = 0 -optimize_wall_printing_order = False -inset_direction = inside_out -alternate_extra_perimeter = False -fill_outline_gaps = True -xy_offset = 0 -skin_no_small_gaps_heuristic = True -skin_outline_count = 1 -ironing_enabled = False -infill_sparse_density = 20 -zig_zaggify_infill = False -infill_multiplier = 1 -infill_wall_line_count = 0 -infill_overlap = 10 -skin_overlap = 5 -infill_wipe_dist = 0.1 -gradual_infill_steps = 0 -infill_before_walls = False -infill_support_enabled = False -max_skin_angle_for_expansion = 90 -default_material_print_temperature = 220 +material_bed_temperature = 0 +material_final_print_temperature = 220 +material_flow = 100 +material_initial_print_temperature = 220 material_print_temperature = 220 material_print_temperature_layer_0 = 220 -material_initial_print_temperature = 220 -material_final_print_temperature = 220 -default_material_bed_temperature = 0 -material_bed_temperature = 0 -build_volume_temperature = 0 -material_flow = 100 -retraction_enable = True -retract_at_layer_change = False -retraction_amount = 5 -retraction_speed = 45 -retraction_extra_prime_amount = 0 -retraction_min_travel = 0.8 -retraction_count_max = 90 -retraction_extrusion_window = 5 -limit_support_retractions = True -switch_extruder_retraction_amount = 16 -switch_extruder_retraction_speeds = 20 -speed_print = 30 -speed_travel = 150 -speed_layer_0 = 10 -speed_travel_layer_0 = 50 -speed_slowdown_layers = 2 -acceleration_enabled = False -acceleration_roofing = 3000 -jerk_enabled = False -retraction_combing = off -travel_retract_before_outer_wall = False -retraction_hop_enabled = False -cool_fan_enabled = True -cool_fan_speed = 100 -cool_fan_speed_0 = 0 -cool_fan_full_at_height = 0.24 -cool_lift_head = False -support_enable = True -support_type = everywhere -support_angle = 50 -support_pattern = grid -support_wall_count = 0 -zig_zaggify_support = False -support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 -support_infill_angles = [0] -support_brim_enable = True -support_brim_line_count = 5 -support_z_distance = 0.2 -support_xy_distance = 0.7 -support_xy_distance_overhang = 0.2 -support_bottom_stair_step_height = 0.3 -support_bottom_stair_step_width = 5.0 -support_join_distance = 2.0 -support_offset = 0.2 -gradual_support_infill_steps = 0 -support_roof_enable = True -support_bottom_enable = False -support_roof_height = 0.45 -support_roof_density = 45 -support_roof_pattern = lines -support_fan_enable = False -support_use_towers = True -support_tower_diameter = 3 -support_tower_roof_angle = 65 -adhesion_type = skirt -skirt_line_count = 2 -skirt_gap = 3 -meshfix_union_all = True -meshfix_union_all_remove_holes = False +max_skin_angle_for_expansion = 90 meshfix_extensive_stitching = False meshfix_keep_open_polygons = False +meshfix_union_all = True +meshfix_union_all_remove_holes = False multiple_mesh_overlap = 0.16 -carve_multiple_volumes = False +optimize_wall_printing_order = False +retract_at_layer_change = False +retraction_amount = 5 +retraction_combing = off +retraction_count_max = 90 +retraction_enable = True +retraction_extra_prime_amount = 0 +retraction_extrusion_window = 5 +retraction_hop_enabled = False +retraction_min_travel = 0.8 +retraction_speed = 45 +roofing_layer_count = 1 +skin_no_small_gaps_heuristic = True +skin_outline_count = 1 +skin_overlap = 5 +skirt_gap = 3 +skirt_line_count = 2 +speed_layer_0 = 10 +speed_print = 30 +speed_slowdown_layers = 2 +speed_travel = 150 +speed_travel_layer_0 = 50 +support_angle = 50 +support_bottom_enable = False +support_bottom_stair_step_height = 0.3 +support_bottom_stair_step_width = 5.0 +support_brim_enable = True +support_brim_line_count = 5 +support_enable = True +support_fan_enable = False +support_infill_angles = [0] +support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 +support_join_distance = 2.0 +support_offset = 0.2 +support_pattern = grid +support_roof_density = 45 +support_roof_enable = True +support_roof_height = 0.45 +support_roof_pattern = lines +support_tower_diameter = 3 +support_tower_roof_angle = 65 +support_type = everywhere +support_use_towers = True +support_wall_count = 0 +support_xy_distance = 0.7 +support_xy_distance_overhang = 0.2 +support_z_distance = 0.2 +switch_extruder_retraction_amount = 16 +switch_extruder_retraction_speeds = 20 +top_bottom_pattern = lines +top_bottom_pattern_0 = lines +top_bottom_thickness = 0.6 +top_layers = 5 +top_thickness = 0.8 +travel_retract_before_outer_wall = False +wall_0_inset = 0 +wall_0_wipe_dist = 0.2 +wall_line_width_0 = 0.4 +wall_thickness = 0.8 +xy_offset = 0 +zig_zaggify_infill = False +zig_zaggify_support = False + diff --git a/resources/quality/key3d/key3d_tyro_fast.inst.cfg b/resources/quality/key3d/key3d_tyro_fast.inst.cfg index 1e8af3fdde..80c0f84c91 100644 --- a/resources/quality/key3d/key3d_tyro_fast.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_fast.inst.cfg @@ -1,119 +1,118 @@ [general] -version = 4 -name = Fast Quality definition = key3d_tyro +name = Fast Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] +acceleration_enabled = False +acceleration_roofing = 3000 +adhesion_type = skirt +alternate_extra_perimeter = False +bottom_layers = 3 +bottom_thickness = 0.6 +build_volume_temperature = 0 +carve_multiple_volumes = False +cool_fan_enabled = True +cool_fan_full_at_height = 0.48 +cool_fan_speed = 100 +cool_fan_speed_0 = 0 +cool_lift_head = False +default_material_bed_temperature = 0 +default_material_print_temperature = 220 +fill_outline_gaps = True +gradual_infill_steps = 0 +gradual_support_infill_steps = 0 +infill_before_walls = False +infill_multiplier = 1 +infill_overlap = 10 +infill_sparse_density = 15 +infill_support_enabled = False +infill_wall_line_count = 0 +infill_wipe_dist = 0.1 +initial_layer_line_width_factor = 100 +ironing_enabled = False +jerk_enabled = False layer_height = 0.24 layer_height_0 = 0.24 line_width = 0.4 -initial_layer_line_width_factor = 100 -wall_thickness = 0.8 -wall_0_wipe_dist = 0.2 -roofing_layer_count = 1 -top_bottom_thickness = 0.6 -top_thickness = 0.8 -top_layers = 5 -bottom_thickness = 0.6 -bottom_layers = 3 -top_bottom_pattern = lines -top_bottom_pattern_0 = lines -wall_0_inset = 0 -optimize_wall_printing_order = False -inset_direction = inside_out -alternate_extra_perimeter = False -fill_outline_gaps = True -xy_offset = 0 -skin_no_small_gaps_heuristic = True -skin_outline_count = 1 -ironing_enabled = False -infill_sparse_density = 15 -zig_zaggify_infill = False -infill_multiplier = 1 -infill_wall_line_count = 0 -infill_overlap = 10 -skin_overlap = 5 -infill_wipe_dist = 0.1 -gradual_infill_steps = 0 -infill_before_walls = False -infill_support_enabled = False -max_skin_angle_for_expansion = 90 -default_material_print_temperature = 220 +material_bed_temperature = 0 +material_final_print_temperature = 220 +material_flow = 100 +material_initial_print_temperature = 220 material_print_temperature = 220 material_print_temperature_layer_0 = 220 -material_initial_print_temperature = 220 -material_final_print_temperature = 220 -default_material_bed_temperature = 0 -material_bed_temperature = 0 -build_volume_temperature = 0 -material_flow = 100 -retraction_enable = True -retract_at_layer_change = False -retraction_amount = 5 -retraction_speed = 45 -retraction_extra_prime_amount = 0 -retraction_min_travel = 0.8 -retraction_count_max = 90 -retraction_extrusion_window = 5 -limit_support_retractions = True -switch_extruder_retraction_amount = 16 -switch_extruder_retraction_speeds = 20 -speed_print = 60 -speed_travel = 150 -speed_layer_0 = 10 -speed_travel_layer_0 = 50 -speed_slowdown_layers = 2 -acceleration_enabled = False -acceleration_roofing = 3000 -jerk_enabled = False -retraction_combing = off -travel_retract_before_outer_wall = False -retraction_hop_enabled = False -cool_fan_enabled = True -cool_fan_speed = 100 -cool_fan_speed_0 = 0 -cool_fan_full_at_height = 0.48 -cool_lift_head = False -support_enable = True -support_type = everywhere -support_angle = 50 -support_pattern = grid -support_wall_count = 0 -zig_zaggify_support = False -support_infill_rate = =15 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 15 -support_infill_angles = [0] -support_brim_enable = True -support_brim_line_count = 5 -support_z_distance = 0.3 -support_xy_distance = 0.7 -support_xy_distance_overhang = 0.2 -support_bottom_stair_step_height = 0.3 -support_bottom_stair_step_width = 5.0 -support_join_distance = 2.0 -support_offset = 0.2 -gradual_support_infill_steps = 0 -support_roof_enable = True -support_bottom_enable = False -support_roof_height = 0.45 -support_roof_density = 45 -support_roof_pattern = lines -support_fan_enable = False -support_use_towers = True -support_tower_diameter = 3 -support_tower_roof_angle = 65 -adhesion_type = skirt -skirt_line_count = 2 -skirt_gap = 3 -meshfix_union_all = True -meshfix_union_all_remove_holes = False +max_skin_angle_for_expansion = 90 meshfix_extensive_stitching = False meshfix_keep_open_polygons = False +meshfix_union_all = True +meshfix_union_all_remove_holes = False multiple_mesh_overlap = 0.16 -carve_multiple_volumes = False +optimize_wall_printing_order = False +retract_at_layer_change = False +retraction_amount = 5 +retraction_combing = off +retraction_count_max = 90 +retraction_enable = True +retraction_extra_prime_amount = 0 +retraction_extrusion_window = 5 +retraction_hop_enabled = False +retraction_min_travel = 0.8 +retraction_speed = 45 +roofing_layer_count = 1 +skin_no_small_gaps_heuristic = True +skin_outline_count = 1 +skin_overlap = 5 +skirt_gap = 3 +skirt_line_count = 2 +speed_layer_0 = 10 +speed_print = 60 +speed_slowdown_layers = 2 +speed_travel = 150 +speed_travel_layer_0 = 50 +support_angle = 50 +support_bottom_enable = False +support_bottom_stair_step_height = 0.3 +support_bottom_stair_step_width = 5.0 +support_brim_enable = True +support_brim_line_count = 5 +support_enable = True +support_fan_enable = False +support_infill_angles = [0] +support_infill_rate = =15 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 15 +support_join_distance = 2.0 +support_offset = 0.2 +support_pattern = grid +support_roof_density = 45 +support_roof_enable = True +support_roof_height = 0.45 +support_roof_pattern = lines +support_tower_diameter = 3 +support_tower_roof_angle = 65 +support_type = everywhere +support_use_towers = True +support_wall_count = 0 +support_xy_distance = 0.7 +support_xy_distance_overhang = 0.2 +support_z_distance = 0.3 +switch_extruder_retraction_amount = 16 +switch_extruder_retraction_speeds = 20 +top_bottom_pattern = lines +top_bottom_pattern_0 = lines +top_bottom_thickness = 0.6 +top_layers = 5 +top_thickness = 0.8 +travel_retract_before_outer_wall = False +wall_0_inset = 0 +wall_0_wipe_dist = 0.2 +wall_thickness = 0.8 +xy_offset = 0 +zig_zaggify_infill = False +zig_zaggify_support = False + diff --git a/resources/quality/key3d/key3d_tyro_normal.inst.cfg b/resources/quality/key3d/key3d_tyro_normal.inst.cfg index aa9e815df5..3c284849d7 100644 --- a/resources/quality/key3d/key3d_tyro_normal.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_normal.inst.cfg @@ -1,119 +1,118 @@ [general] -version = 4 -name = Normal Quality definition = key3d_tyro +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] +acceleration_enabled = False +acceleration_roofing = 3000 +adhesion_type = skirt +alternate_extra_perimeter = False +bottom_layers = 3 +bottom_thickness = 0.6 +build_volume_temperature = 0 +carve_multiple_volumes = False +cool_fan_enabled = True +cool_fan_full_at_height = 0.32 +cool_fan_speed = 100 +cool_fan_speed_0 = 0 +cool_lift_head = False +default_material_bed_temperature = 0 +default_material_print_temperature = 220 +fill_outline_gaps = True +gradual_infill_steps = 0 +gradual_support_infill_steps = 0 +infill_before_walls = False +infill_multiplier = 1 +infill_overlap = 10 +infill_sparse_density = 20 +infill_support_enabled = False +infill_wall_line_count = 0 +infill_wipe_dist = 0.1 +initial_layer_line_width_factor = 100 +ironing_enabled = False +jerk_enabled = False layer_height = 0.16 layer_height_0 = 0.24 line_width = 0.4 -initial_layer_line_width_factor = 100 -wall_thickness = 0.8 -wall_0_wipe_dist = 0.2 -roofing_layer_count = 1 -top_bottom_thickness = 0.6 -top_thickness = 0.8 -top_layers = 5 -bottom_thickness = 0.6 -bottom_layers = 3 -top_bottom_pattern = lines -top_bottom_pattern_0 = lines -wall_0_inset = 0 -optimize_wall_printing_order = False -inset_direction = inside_out -alternate_extra_perimeter = False -fill_outline_gaps = True -xy_offset = 0 -skin_no_small_gaps_heuristic = True -skin_outline_count = 1 -ironing_enabled = False -infill_sparse_density = 20 -zig_zaggify_infill = False -infill_multiplier = 1 -infill_wall_line_count = 0 -infill_overlap = 10 -skin_overlap = 5 -infill_wipe_dist = 0.1 -gradual_infill_steps = 0 -infill_before_walls = False -infill_support_enabled = False -max_skin_angle_for_expansion = 90 -default_material_print_temperature = 220 +material_bed_temperature = 0 +material_final_print_temperature = 220 +material_flow = 100 +material_initial_print_temperature = 220 material_print_temperature = 220 material_print_temperature_layer_0 = 220 -material_initial_print_temperature = 220 -material_final_print_temperature = 220 -default_material_bed_temperature = 0 -material_bed_temperature = 0 -build_volume_temperature = 0 -material_flow = 100 -retraction_enable = True -retract_at_layer_change = False -retraction_amount = 5 -retraction_speed = 45 -retraction_extra_prime_amount = 0 -retraction_min_travel = 0.8 -retraction_count_max = 90 -retraction_extrusion_window = 5 -limit_support_retractions = True -switch_extruder_retraction_amount = 16 -switch_extruder_retraction_speeds = 20 -speed_print = 50 -speed_travel = 150 -speed_layer_0 = 10 -speed_travel_layer_0 = 50 -speed_slowdown_layers = 2 -acceleration_enabled = False -acceleration_roofing = 3000 -jerk_enabled = False -retraction_combing = off -travel_retract_before_outer_wall = False -retraction_hop_enabled = False -cool_fan_enabled = True -cool_fan_speed = 100 -cool_fan_speed_0 = 0 -cool_fan_full_at_height = 0.32 -cool_lift_head = False -support_enable = True -support_type = everywhere -support_angle = 50 -support_pattern = grid -support_wall_count = 0 -zig_zaggify_support = False -support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 -support_infill_angles = [0] -support_brim_enable = True -support_brim_line_count = 5 -support_z_distance = 0.21 -support_xy_distance = 0.7 -support_xy_distance_overhang = 0.2 -support_bottom_stair_step_height = 0.3 -support_bottom_stair_step_width = 5.0 -support_join_distance = 2.0 -support_offset = 0.2 -gradual_support_infill_steps = 0 -support_roof_enable = True -support_bottom_enable = False -support_roof_height = 0.45 -support_roof_density = 45 -support_roof_pattern = lines -support_fan_enable = False -support_use_towers = True -support_tower_diameter = 3 -support_tower_roof_angle = 65 -adhesion_type = skirt -skirt_line_count = 2 -skirt_gap = 3 -meshfix_union_all = True -meshfix_union_all_remove_holes = False +max_skin_angle_for_expansion = 90 meshfix_extensive_stitching = False meshfix_keep_open_polygons = False +meshfix_union_all = True +meshfix_union_all_remove_holes = False multiple_mesh_overlap = 0.16 -carve_multiple_volumes = False +optimize_wall_printing_order = False +retract_at_layer_change = False +retraction_amount = 5 +retraction_combing = off +retraction_count_max = 90 +retraction_enable = True +retraction_extra_prime_amount = 0 +retraction_extrusion_window = 5 +retraction_hop_enabled = False +retraction_min_travel = 0.8 +retraction_speed = 45 +roofing_layer_count = 1 +skin_no_small_gaps_heuristic = True +skin_outline_count = 1 +skin_overlap = 5 +skirt_gap = 3 +skirt_line_count = 2 +speed_layer_0 = 10 +speed_print = 50 +speed_slowdown_layers = 2 +speed_travel = 150 +speed_travel_layer_0 = 50 +support_angle = 50 +support_bottom_enable = False +support_bottom_stair_step_height = 0.3 +support_bottom_stair_step_width = 5.0 +support_brim_enable = True +support_brim_line_count = 5 +support_enable = True +support_fan_enable = False +support_infill_angles = [0] +support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 +support_join_distance = 2.0 +support_offset = 0.2 +support_pattern = grid +support_roof_density = 45 +support_roof_enable = True +support_roof_height = 0.45 +support_roof_pattern = lines +support_tower_diameter = 3 +support_tower_roof_angle = 65 +support_type = everywhere +support_use_towers = True +support_wall_count = 0 +support_xy_distance = 0.7 +support_xy_distance_overhang = 0.2 +support_z_distance = 0.21 +switch_extruder_retraction_amount = 16 +switch_extruder_retraction_speeds = 20 +top_bottom_pattern = lines +top_bottom_pattern_0 = lines +top_bottom_thickness = 0.6 +top_layers = 5 +top_thickness = 0.8 +travel_retract_before_outer_wall = False +wall_0_inset = 0 +wall_0_wipe_dist = 0.2 +wall_thickness = 0.8 +xy_offset = 0 +zig_zaggify_infill = False +zig_zaggify_support = False + 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 d109cb2227..5aff66437a 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = kingroon_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] wall_thickness = =line_width*8 + 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 ebbefee199..40a5e5b90a 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Ultra Quality definition = kingroon_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_abs +quality_type = ultra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] wall_thickness = =line_width*8 + 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 7e2eb25f0a..421e1aa1fa 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = kingroon_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*4 + 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 22bf30f809..bd1ec6bc53 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Low Quality definition = kingroon_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*4 + 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 dcdc90630f..0477f43fba 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = kingroon_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*4 + 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 91a9d59da2..45fc4b2087 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = kingroon_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] wall_thickness = =line_width*4 + 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 118fb76839..b931a8aad5 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = kingroon_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 72ca7a3c1b..f436ddcaeb 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Low Quality definition = kingroon_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 32fff4e17b..36ae1acc9e 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = kingroon_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 eddcfd9eb3..f0a128e58d 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = kingroon_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 58409d5a6c..65944f8c3b 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = kingroon_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 adde82cc70..31a8c4bc30 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Low Quality definition = kingroon_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 2dba767782..22da321da0 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = kingroon_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 cb321b3199..96c378d280 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = kingroon_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] wall_thickness = =line_width*4 + 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 380d51b97e..9b63dde5a4 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = kingroon_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] wall_thickness = =line_width*3 + 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 234fc69d4d..74b867d5bb 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft Quality definition = kingroon_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] wall_thickness = =line_width*3 + 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 81b14e730b..a542a404db 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft Quality definition = kingroon_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] wall_thickness = =line_width*3 + 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 f30d23ba6a..fda0354918 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = kingroon_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*8 + 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 f09229b892..e65797d2a0 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Ultra Quality definition = kingroon_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_petg +quality_type = ultra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*8 + 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 eec351b01a..3fa5e6acf0 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = kingroon_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 b40a538772..b2f95db0f9 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = kingroon_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 17bc371da8..c6aad09ce3 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = kingroon_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 690398403d..21addedb5e 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = kingroon_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 4eceb853ff..24e2da4f33 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = kingroon_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 b70ec0538f..9615254fd0 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = kingroon_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 852e83add8..20fbcfb72c 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = kingroon_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 428644a62a..a483c928c1 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = kingroon_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 465ceb3070..9256aa219f 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = kingroon_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 2b05d15f74..47073a583d 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = kingroon_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 9ef42acde3..0a07077e0b 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = kingroon_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 477506576f..f9f5a29fb0 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = kingroon_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 cde00aa511..cd11cf1341 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = kingroon_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*3 + 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 aca8cb49d4..54c202b312 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = kingroon_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*3 + 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 5a6ea072d9..a9102ff5bc 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = kingroon_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*3 + 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 e9e906d7a1..a191f9bcff 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = kingroon_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] + 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 636eebd521..23491e7efd 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Ultra Quality definition = kingroon_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_pla +quality_type = ultra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] + 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 c2f418c8ba..24a9e9b6b8 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = kingroon_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 fdc61cda38..e95c9baddb 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = kingroon_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 9ca11a7027..fc4cdaa8e6 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = kingroon_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 f689be5979..add438ea60 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = kingroon_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 8a52537d6c..e790b8ed55 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = kingroon_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 3503e7b784..33aae2c1f7 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = kingroon_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 e39cf7dc98..0189652c32 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = kingroon_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 fe26d8db8a..175135546a 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = kingroon_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 9f3640bfbc..086dfa8ef3 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = kingroon_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 78a52ddf98..711f6224f7 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = kingroon_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 788b09df38..20aa28f47c 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = kingroon_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 ba8bced2cd..62a1033ba7 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = kingroon_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 3991169f5a..332f9c2803 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = kingroon_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 76f5107cdd..748b2515cc 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = kingroon_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 ce66046f90..5cf6bdcc9e 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = kingroon_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 28421a1513..1cc706dd5c 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = kingroon_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] + 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 e7a16b06c7..0403091e22 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = kingroon_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] + 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 f86f6b470d..daa63883b7 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = kingroon_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 1b1565fd7e..6e3240ae1f 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = kingroon_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 5f37ed7749..ffdf3375f7 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = kingroon_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_tpu +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 8ba5abef53..6be460ffcb 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = kingroon_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 69e57121f2..c3cc178ac7 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = kingroon_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 8addcebc1f..6d6bd9b556 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = kingroon_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_tpu +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 d3c697091f..13507c0291 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = kingroon_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 6f20b95722..d4ae296463 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = kingroon_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 00e204ee65..3efa4b1126 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = kingroon_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_tpu +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 1bc445c1ff..29451a74b5 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = kingroon_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 cbea0a8307..99476d6483 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = kingroon_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] + 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 7bb373d68a..f9965beced 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = kingroon_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] + diff --git a/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg b/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg index 9a7c3d1637..770cdbc5d2 100644 --- a/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg @@ -1,19 +1,20 @@ [general] -version = 4 -name = Dynamic Quality definition = kingroon_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive -weight = -2 global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +weight = -2 [values] +adaptive_layer_height_enabled = true layer_height = 0.16 layer_height_0 = 0.20 +support_interface_height = =layer_height*6 top_bottom_thickness = =layer_height_0+layer_height*4 wall_thickness = =line_width*3 -support_interface_height = =layer_height*6 -adaptive_layer_height_enabled = true + diff --git a/resources/quality/kingroon/kingroon_global_draft.inst.cfg b/resources/quality/kingroon/kingroon_global_draft.inst.cfg index 8dbcd492ee..c0ef094bf8 100644 --- a/resources/quality/kingroon/kingroon_global_draft.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_draft.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Draft Quality definition = kingroon_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -5 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -5 [values] layer_height = 0.32 layer_height_0 = 0.32 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 + diff --git a/resources/quality/kingroon/kingroon_global_low.inst.cfg b/resources/quality/kingroon/kingroon_global_low.inst.cfg index 4d80829296..34ee7bfb8e 100644 --- a/resources/quality/kingroon/kingroon_global_low.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_low.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Low Quality definition = kingroon_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low -weight = -4 global_quality = True +quality_type = low +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.28 layer_height_0 = 0.28 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 + diff --git a/resources/quality/kingroon/kingroon_global_standard.inst.cfg b/resources/quality/kingroon/kingroon_global_standard.inst.cfg index 18d10a1a90..b855418b35 100644 --- a/resources/quality/kingroon/kingroon_global_standard.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_standard.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Standard Quality definition = kingroon_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard -weight = -3 global_quality = True +quality_type = standard +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.2 layer_height_0 = 0.2 +support_interface_height = =layer_height*5 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*3 -support_interface_height = =layer_height*5 + diff --git a/resources/quality/kingroon/kingroon_global_super.inst.cfg b/resources/quality/kingroon/kingroon_global_super.inst.cfg index 7b825abe0e..e1ba09843c 100644 --- a/resources/quality/kingroon/kingroon_global_super.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_super.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Super Quality definition = kingroon_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super -weight = -1 global_quality = True +quality_type = super +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.12 layer_height_0 = 0.12 +support_interface_height = =layer_height*8 top_bottom_thickness = =layer_height_0+layer_height*6 wall_thickness = =line_width*3 -support_interface_height = =layer_height*8 + diff --git a/resources/quality/kingroon/kingroon_global_ultra.inst.cfg b/resources/quality/kingroon/kingroon_global_ultra.inst.cfg index add210d87d..8f923b9d4c 100644 --- a/resources/quality/kingroon/kingroon_global_ultra.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_ultra.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Ultra Quality definition = kingroon_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra -weight = 0 global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.08 layer_height_0 = 0.12 +support_interface_height = =layer_height*12 top_bottom_thickness = =layer_height_0+layer_height*10 wall_thickness = =line_width*3 -support_interface_height = =layer_height*12 + diff --git a/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg b/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg index 0fc2a6fb6b..0743bebed8 100644 --- a/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg +++ b/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg @@ -1,17 +1,18 @@ -[general] -version = 4 -name = Draft Quality -definition = koonovo_base - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -global_quality = True - -[values] -layer_height = 0.25 -layer_height_0 = 0.25 -top_bottom_thickness = =layer_height_0+layer_height*3 -wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 +[general] +definition = koonovo_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality + +[values] +layer_height = 0.25 +layer_height_0 = 0.25 +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg b/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg index ac3843c972..fd717fe24d 100644 --- a/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg +++ b/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg @@ -1,18 +1,19 @@ -[general] -version = 4 -name = Standard Quality -definition = koonovo_base - -[metadata] -setting_version = 20 -type = quality -quality_type = standard -weight = -3 -global_quality = True - -[values] -layer_height = 0.2 -layer_height_0 = 0.2 -top_bottom_thickness = =layer_height_0+layer_height*3 -wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 +[general] +definition = koonovo_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = standard +setting_version = 22 +type = quality +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/koonovo/koovono_base_global_high.inst.cfg b/resources/quality/koonovo/koovono_base_global_high.inst.cfg index 05d4dc206a..c14a9e65c9 100644 --- a/resources/quality/koonovo/koovono_base_global_high.inst.cfg +++ b/resources/quality/koonovo/koovono_base_global_high.inst.cfg @@ -1,18 +1,19 @@ -[general] -version = 4 -name = Super Quality -definition = koonovo_base - -[metadata] -setting_version = 20 -type = quality -quality_type = high -weight = -1 -global_quality = True - -[values] -layer_height = 0.12 -layer_height_0 = 0.12 -top_bottom_thickness = =layer_height_0+layer_height*6 -wall_thickness = =line_width*3 -support_interface_height = =layer_height*8 +[general] +definition = koonovo_base +name = Super Quality +version = 4 + +[metadata] +global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = -1 + +[values] +layer_height = 0.12 +layer_height_0 = 0.12 +support_interface_height = =layer_height*8 +top_bottom_thickness = =layer_height_0+layer_height*6 +wall_thickness = =line_width*3 + diff --git a/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg index 88609bcbfa..77717ab2b0 100644 --- a/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Fast definition = liquid +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] layer_height = 0.2 + diff --git a/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg index a9105f6485..c5b9fa0acb 100644 --- a/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Normal definition = liquid +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.15 + diff --git a/resources/quality/liquid/liquid_global_High_Quality.inst.cfg b/resources/quality/liquid/liquid_global_High_Quality.inst.cfg index 3261cd4f44..b8a7c1eb8d 100644 --- a/resources/quality/liquid/liquid_global_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_High_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Extra Fine definition = liquid +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] layer_height = 0.06 + diff --git a/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg index 2a60625f2e..c520885947 100644 --- a/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Fine definition = liquid +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.1 + diff --git a/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg index cfe95c7341..355165ec90 100644 --- a/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Sprint definition = liquid +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 global_quality = True +quality_type = superdraft +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.4 + diff --git a/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg index f06b44fd7b..d47c09e89e 100644 --- a/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Extra Fast definition = liquid +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 global_quality = True +quality_type = verydraft +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.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 348665dc50..038affd56f 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 @@ -1,31 +1,30 @@ [general] -version = 4 -name = Fast definition = liquid +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = VO 0.4 +weight = -2 [values] +infill_line_width = =round(line_width * 0.4 / 0.35, 2) machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_print_temperature = =default_material_print_temperature + 20 -material_initial_print_temperature = =material_print_temperature - 15 material_final_print_temperature = =material_print_temperature - 20 +material_initial_print_temperature = =material_print_temperature - 15 +material_print_temperature = =default_material_print_temperature + 20 prime_tower_enable = False skin_overlap = 20 -speed_print = 60 +speed_infill = =math.ceil(speed_print * 50 / 60) speed_layer_0 = =math.ceil(speed_print * 20 / 60) +speed_print = 60 speed_topbottom = =math.ceil(speed_print * 35 / 60) speed_wall = =math.ceil(speed_print * 45 / 60) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) wall_thickness = 1 -infill_line_width = =round(line_width * 0.4 / 0.35, 2) -speed_infill = =math.ceil(speed_print * 50 / 60) - 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 d1511e7907..5091d36813 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 @@ -1,30 +1,29 @@ [general] -version = 4 -name = Normal definition = liquid +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_abs +quality_type = fast +setting_version = 22 +type = quality variant = VO 0.4 +weight = -1 [values] cool_min_speed = 7 +infill_line_width = =round(line_width * 0.4 / 0.35, 2) machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_print_temperature = =default_material_print_temperature + 15 -material_initial_print_temperature = =material_print_temperature - 15 material_final_print_temperature = =material_print_temperature - 20 +material_initial_print_temperature = =material_print_temperature - 15 +material_print_temperature = =default_material_print_temperature + 15 prime_tower_enable = False -speed_print = 60 +speed_infill = =math.ceil(speed_print * 45 / 60) speed_layer_0 = =math.ceil(speed_print * 20 / 60) +speed_print = 60 speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_wall = =math.ceil(speed_print * 40 / 60) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -infill_line_width = =round(line_width * 0.4 / 0.35, 2) -speed_infill = =math.ceil(speed_print * 45 / 60) - 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 c9395452d5..0420284fa8 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 @@ -1,29 +1,28 @@ [general] -version = 4 -name = Extra Fine definition = liquid +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality variant = VO 0.4 +weight = 1 [values] cool_min_speed = 12 +infill_line_width = =round(line_width * 0.4 / 0.35, 2) machine_nozzle_cool_down_speed = 0.8 machine_nozzle_heat_up_speed = 1.5 -material_print_temperature = =default_material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature - 15 material_final_print_temperature = =material_print_temperature - 20 +material_initial_print_temperature = =material_print_temperature - 15 +material_print_temperature = =default_material_print_temperature + 5 prime_tower_enable = False -speed_print = 50 +speed_infill = =math.ceil(speed_print * 40 / 50) speed_layer_0 = =math.ceil(speed_print * 20 / 50) +speed_print = 50 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 30 / 50) -infill_line_width = =round(line_width * 0.4 / 0.35, 2) -speed_infill = =math.ceil(speed_print * 40 / 50) - 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 7ab043eccf..927bdbe7b9 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 @@ -1,27 +1,27 @@ [general] -version = 4 -name = Fine definition = liquid +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = VO 0.4 +weight = 0 [values] +infill_line_width = =round(line_width * 0.4 / 0.35, 2) machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_print_temperature = =default_material_print_temperature + 10 -material_initial_print_temperature = =material_print_temperature - 15 material_final_print_temperature = =material_print_temperature - 20 +material_initial_print_temperature = =material_print_temperature - 15 +material_print_temperature = =default_material_print_temperature + 10 prime_tower_enable = False -speed_print = 55 +speed_infill = =math.ceil(speed_print * 40 / 55) speed_layer_0 = =math.ceil(speed_print * 20 / 55) +speed_print = 55 speed_topbottom = =math.ceil(speed_print * 30 / 55) speed_wall = =math.ceil(speed_print * 30 / 55) -infill_line_width = =round(line_width * 0.4 / 0.35, 2) -speed_infill = =math.ceil(speed_print * 40 / 55) 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 f62016d6ed..998edaada1 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 @@ -1,28 +1,28 @@ [general] -version = 4 -name = Fast definition = liquid +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_cpe +quality_type = draft +setting_version = 22 +type = quality variant = VO 0.4 +weight = -2 [values] -material_print_temperature = =default_material_print_temperature + 10 -material_initial_print_temperature = =material_print_temperature - 5 +infill_pattern = triangles material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 5 +material_print_temperature = =default_material_print_temperature + 10 retraction_combing_max_distance = 50 skin_overlap = 20 -speed_print = 60 +speed_infill = =math.ceil(speed_print * 50 / 60) speed_layer_0 = =math.ceil(speed_print * 20 / 60) +speed_print = 60 speed_topbottom = =math.ceil(speed_print * 35 / 60) speed_wall = =math.ceil(speed_print * 45 / 60) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) wall_thickness = 1 -infill_pattern = triangles -speed_infill = =math.ceil(speed_print * 50 / 60) 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 0e536f2935..c78ee91b58 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 @@ -1,27 +1,27 @@ [general] -version = 4 -name = Normal definition = liquid +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_cpe +quality_type = fast +setting_version = 22 +type = quality variant = VO 0.4 +weight = -1 [values] cool_min_speed = 7 -material_print_temperature = =default_material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature - 5 +infill_pattern = triangles material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 5 +material_print_temperature = =default_material_print_temperature + 5 retraction_combing_max_distance = 50 -speed_print = 60 +speed_infill = =math.ceil(speed_print * 50 / 60) speed_layer_0 = =math.ceil(speed_print * 20 / 60) +speed_print = 60 speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_wall = =math.ceil(speed_print * 40 / 60) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -infill_pattern = triangles -speed_infill = =math.ceil(speed_print * 50 / 60) \ No newline at end of file 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 e066b88082..33163ca619 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 @@ -1,28 +1,28 @@ [general] -version = 4 -name = Extra Fine definition = liquid +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_cpe +quality_type = high +setting_version = 22 +type = quality variant = VO 0.4 +weight = 1 [values] cool_min_speed = 12 +infill_pattern = triangles machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_print_temperature = =default_material_print_temperature - 5 -material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 5 +material_print_temperature = =default_material_print_temperature - 5 retraction_combing_max_distance = 50 -speed_print = 50 +speed_infill = =math.ceil(speed_print * 40 / 50) speed_layer_0 = =math.ceil(speed_print * 20 / 50) +speed_print = 50 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 30 / 50) -infill_pattern = triangles -speed_infill = =math.ceil(speed_print * 40 / 50) \ No newline at end of file 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 eed9bb563c..b238e6ec0e 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 @@ -1,26 +1,26 @@ [general] -version = 4 -name = Fine definition = liquid +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_cpe +quality_type = normal +setting_version = 22 +type = quality variant = VO 0.4 +weight = 0 [values] +infill_pattern = triangles machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 5 retraction_combing_max_distance = 50 -speed_print = 55 +speed_infill = =math.ceil(speed_print * 45 / 55) speed_layer_0 = =math.ceil(speed_print * 20 / 55) +speed_print = 55 speed_topbottom = =math.ceil(speed_print * 30 / 55) speed_wall = =math.ceil(speed_print * 30 / 55) -infill_pattern = triangles -speed_infill = =math.ceil(speed_print * 45 / 55) \ No newline at end of file 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 945957e1fa..8b18b13ee8 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 @@ -1,25 +1,26 @@ [general] -version = 4 -name = Fast definition = liquid +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_nylon +quality_type = draft +setting_version = 22 +type = quality variant = VO 0.4 +weight = -2 [values] adhesion_type = brim cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 infill_line_width = =round(line_width * 0.5 / 0.4, 2) +jerk_travel = 20 line_width = =machine_nozzle_size -material_print_temperature = =default_material_print_temperature + 10 -material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 5 +material_print_temperature = =default_material_print_temperature + 10 material_standby_temperature = 100 ooze_shield_angle = 40 raft_acceleration = =acceleration_layer_0 @@ -35,4 +36,3 @@ switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 wall_line_width_x = =wall_line_width -jerk_travel = 20 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 c276d703aa..d6142952a3 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 @@ -1,25 +1,26 @@ [general] -version = 4 -name = Normal definition = liquid +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_nylon +quality_type = fast +setting_version = 22 +type = quality variant = VO 0.4 +weight = -1 [values] adhesion_type = brim cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 infill_line_width = =round(line_width * 0.5 / 0.4, 2) +jerk_travel = 20 line_width = =machine_nozzle_size -material_print_temperature = =default_material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 5 +material_print_temperature = =default_material_print_temperature + 5 material_standby_temperature = 100 ooze_shield_angle = 40 raft_acceleration = =acceleration_layer_0 @@ -35,4 +36,3 @@ switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 wall_line_width_x = =wall_line_width -jerk_travel = 20 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 b084a33478..cac80d655d 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 @@ -1,24 +1,25 @@ [general] -version = 4 -name = Extra Fine definition = liquid +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_nylon +quality_type = high +setting_version = 22 +type = quality variant = VO 0.4 +weight = 1 [values] adhesion_type = brim cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 15 infill_line_width = =round(line_width * 0.5 / 0.4, 2) +jerk_travel = 20 line_width = =machine_nozzle_size -material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 5 material_standby_temperature = 100 ooze_shield_angle = 40 raft_acceleration = =acceleration_layer_0 @@ -34,4 +35,3 @@ switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 wall_line_width_x = =wall_line_width -jerk_travel = 20 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 a566abe46e..5385420a8a 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 @@ -1,24 +1,25 @@ [general] -version = 4 -name = Fine definition = liquid +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_nylon +quality_type = normal +setting_version = 22 +type = quality variant = VO 0.4 +weight = 0 [values] adhesion_type = brim cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 12 infill_line_width = =round(line_width * 0.5 / 0.4, 2) +jerk_travel = 20 line_width = =machine_nozzle_size -material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 5 material_standby_temperature = 100 ooze_shield_angle = 40 raft_acceleration = =acceleration_layer_0 @@ -34,4 +35,3 @@ switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 wall_line_width_x = =wall_line_width -jerk_travel = 20 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 af4457e606..02d1292c17 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Fast definition = liquid +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pc +quality_type = draft +setting_version = 22 +type = quality variant = VO 0.4 +weight = -2 [values] acceleration_enabled = True @@ -61,3 +61,4 @@ switch_extruder_retraction_speeds = 35 wall_0_inset = 0 wall_line_width_x = =round(line_width * 0.4 / 0.35, 2) wall_thickness = 1.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 e9ee45eac7..b1c540d01e 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = liquid +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pc +quality_type = fast +setting_version = 22 +type = quality variant = VO 0.4 +weight = -1 [values] acceleration_enabled = True @@ -49,7 +49,6 @@ skin_overlap = 30 speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) - speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 25 / 40) support_bottom_distance = =support_z_distance @@ -61,3 +60,4 @@ switch_extruder_retraction_speeds = 35 wall_0_inset = 0 wall_line_width_x = =round(line_width * 0.4 / 0.35, 2) wall_thickness = 1.2 + 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 ce5ef3353c..6aac1f4972 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Extra Fine definition = liquid +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pc +quality_type = high +setting_version = 22 +type = quality variant = VO 0.4 +weight = 1 [values] acceleration_enabled = True @@ -50,7 +50,6 @@ skin_overlap = 30 speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) - speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 25 / 40) support_bottom_distance = =support_z_distance @@ -62,3 +61,4 @@ switch_extruder_retraction_speeds = 35 wall_0_inset = 0 wall_line_width_x = =round(line_width * 0.4 / 0.35, 2) wall_thickness = 1.2 + 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 bb74a493a1..e831dfb254 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Fine definition = liquid +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pc +quality_type = normal +setting_version = 22 +type = quality variant = VO 0.4 +weight = 0 [values] acceleration_enabled = True @@ -48,7 +48,6 @@ skin_overlap = 30 speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) - speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 25 / 40) support_bottom_distance = =support_z_distance @@ -60,3 +59,4 @@ switch_extruder_retraction_speeds = 35 wall_0_inset = 0 wall_line_width_x = =round(line_width * 0.4 / 0.35, 2) wall_thickness = 1.2 + 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 fa4eca93b2..6e0ac10718 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 @@ -1,36 +1,36 @@ [general] -version = 4 -name = Fast definition = liquid +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = VO 0.4 +weight = -2 [values] +acceleration_wall = 2000 +acceleration_wall_0 = 2000 cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed +infill_line_width = =round(line_width * 0.42 / 0.35, 2) +infill_sparse_density = 15 +jerk_travel = 20 +layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 material_standby_temperature = 100 prime_tower_enable = False skin_overlap = 20 -speed_print = 70 speed_layer_0 = =math.ceil(speed_print * 20 / 70) +speed_print = 70 speed_topbottom = =math.ceil(speed_print * 40 / 70) speed_wall = =math.ceil(speed_print * 55 / 70) speed_wall_0 = =math.ceil(speed_wall * 45 / 50) top_bottom_thickness = 0.8 wall_thickness = 0.8 -jerk_travel = 20 -infill_line_width = =round(line_width * 0.42 / 0.35, 2) -infill_sparse_density = 15 -layer_height_0 = 0.2 -acceleration_wall = 2000 -acceleration_wall_0 = 2000 \ No newline at end of file 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 d7704dbee6..5e84c3e1a1 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 @@ -1,31 +1,31 @@ [general] -version = 4 -name = Normal definition = liquid +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_petg +quality_type = fast +setting_version = 22 +type = quality variant = VO 0.4 +weight = -1 [values] cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed +infill_line_width = =round(line_width * 0.42 / 0.35, 2) +jerk_travel = 20 +layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_standby_temperature = 100 prime_tower_enable = False -speed_print = 60 speed_layer_0 = =math.ceil(speed_print * 20 / 60) +speed_print = 60 speed_topbottom = =math.ceil(speed_print * 35 / 60) speed_wall = =math.ceil(speed_print * 45 / 60) speed_wall_0 = =math.ceil(speed_wall * 35 / 60) top_bottom_thickness = 1 wall_thickness = 1 -jerk_travel = 20 -infill_line_width = =round(line_width * 0.42 / 0.35, 2) -layer_height_0 = 0.2 \ No newline at end of file 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 bf7607dc20..8974dcbb03 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 @@ -1,33 +1,33 @@ [general] -version = 4 -name = Extra Fine definition = liquid +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_petg +quality_type = high +setting_version = 22 +type = quality variant = VO 0.4 +weight = 1 [values] cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed cool_min_speed = 10 +infill_line_width = =round(line_width * 0.42 / 0.35, 2) +jerk_travel = 20 +layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 material_standby_temperature = 100 prime_tower_enable = False skin_overlap = 10 -speed_print = 50 speed_layer_0 = =math.ceil(speed_print * 20 / 50) +speed_print = 50 speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 35 / 50) top_bottom_thickness = 1 wall_thickness = 1 -jerk_travel = 20 -infill_line_width = =round(line_width * 0.42 / 0.35, 2) -layer_height_0 = 0.2 \ No newline at end of file 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 b3bada5dfe..cbada0be18 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 @@ -1,20 +1,23 @@ [general] -version = 4 -name = Fine definition = liquid +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = VO 0.4 +weight = 0 [values] cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed cool_min_speed = 7 +infill_line_width = =round(line_width * 0.42 / 0.35, 2) +jerk_travel = 20 +layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_standby_temperature = 100 @@ -24,6 +27,3 @@ speed_layer_0 = =math.ceil(speed_print * 20 / 70) top_bottom_thickness = 1 wall_thickness = 1 -jerk_travel = 20 -infill_line_width = =round(line_width * 0.42 / 0.35, 2) -layer_height_0 = 0.2 \ No newline at end of file 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 f86d5454b5..70817b06e3 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 @@ -1,36 +1,36 @@ [general] -version = 4 -name = Fast definition = liquid +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = VO 0.4 +weight = -2 [values] +acceleration_wall = 2000 +acceleration_wall_0 = 2000 cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed +infill_line_width = =round(line_width * 0.42 / 0.35, 2) +infill_sparse_density = 15 +jerk_travel = 20 +layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 material_standby_temperature = 100 prime_tower_enable = False skin_overlap = 20 -speed_print = 70 speed_layer_0 = =math.ceil(speed_print * 20 / 70) +speed_print = 70 speed_topbottom = =math.ceil(speed_print * 40 / 70) speed_wall = =math.ceil(speed_print * 55 / 70) speed_wall_0 = =math.ceil(speed_wall * 45 / 50) top_bottom_thickness = 0.8 wall_thickness = 0.8 -jerk_travel = 20 -infill_line_width = =round(line_width * 0.42 / 0.35, 2) -infill_sparse_density = 15 -layer_height_0 = 0.2 -acceleration_wall = 2000 -acceleration_wall_0 = 2000 \ No newline at end of file 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 0145169641..b6991202b2 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 @@ -1,31 +1,31 @@ [general] -version = 4 -name = Normal definition = liquid +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pla +quality_type = fast +setting_version = 22 +type = quality variant = VO 0.4 +weight = -1 [values] cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed +infill_line_width = =round(line_width * 0.42 / 0.35, 2) +jerk_travel = 20 +layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_standby_temperature = 100 prime_tower_enable = False -speed_print = 60 speed_layer_0 = =math.ceil(speed_print * 20 / 60) +speed_print = 60 speed_topbottom = =math.ceil(speed_print * 35 / 60) speed_wall = =math.ceil(speed_print * 45 / 60) speed_wall_0 = =math.ceil(speed_wall * 35 / 60) top_bottom_thickness = 1 wall_thickness = 1 -jerk_travel = 20 -infill_line_width = =round(line_width * 0.42 / 0.35, 2) -layer_height_0 = 0.2 \ No newline at end of file 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 20fe9f0e49..930f5cf3fd 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 @@ -1,33 +1,33 @@ [general] -version = 4 -name = Extra Fine definition = liquid +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality variant = VO 0.4 +weight = 1 [values] cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed cool_min_speed = 10 +infill_line_width = =round(line_width * 0.42 / 0.35, 2) +jerk_travel = 20 +layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 material_standby_temperature = 100 prime_tower_enable = False skin_overlap = 10 -speed_print = 50 speed_layer_0 = =math.ceil(speed_print * 20 / 50) +speed_print = 50 speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 35 / 50) top_bottom_thickness = 1 wall_thickness = 1 -jerk_travel = 20 -infill_line_width = =round(line_width * 0.42 / 0.35, 2) -layer_height_0 = 0.2 \ No newline at end of file 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 57ba006c79..6595446fee 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 @@ -1,20 +1,23 @@ [general] -version = 4 -name = Fine definition = liquid +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = VO 0.4 +weight = 0 [values] cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed cool_min_speed = 7 +infill_line_width = =round(line_width * 0.42 / 0.35, 2) +jerk_travel = 20 +layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_standby_temperature = 100 @@ -24,6 +27,3 @@ speed_layer_0 = =math.ceil(speed_print * 20 / 70) top_bottom_thickness = 1 wall_thickness = 1 -jerk_travel = 20 -infill_line_width = =round(line_width * 0.42 / 0.35, 2) -layer_height_0 = 0.2 \ No newline at end of file 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 3d2d6d8521..1904758532 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Fast definition = liquid +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pp +quality_type = draft +setting_version = 22 +type = quality variant = VO 0.4 +weight = -2 [values] acceleration_enabled = True @@ -59,3 +59,4 @@ switch_extruder_retraction_speeds = 35 wall_0_inset = 0 wall_line_width_x = =line_width wall_thickness = =line_width * 3 + 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 d8afd5b4a6..2a0a5729ec 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = liquid +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pp +quality_type = fast +setting_version = 22 +type = quality variant = VO 0.4 +weight = -1 [values] acceleration_enabled = True @@ -49,7 +49,6 @@ retraction_prime_speed = 18 speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) - speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 25) @@ -61,3 +60,4 @@ top_bottom_thickness = 1.1 wall_0_inset = 0 wall_line_width_x = =line_width wall_thickness = =line_width * 3 + 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 d0f94a4c53..304c4f17f0 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Fine definition = liquid +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pp +quality_type = normal +setting_version = 22 +type = quality variant = VO 0.4 +weight = 0 [values] acceleration_enabled = True @@ -49,7 +49,6 @@ retraction_prime_speed = 18 speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) - speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 25) @@ -61,3 +60,4 @@ top_bottom_thickness = 1 wall_0_inset = 0 wall_line_width_x = =line_width wall_thickness = =line_width * 3 + 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 9b1969266e..74f1ad39f3 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Fast definition = liquid +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = VO 0.4 +weight = -2 [values] acceleration_enabled = True @@ -48,7 +48,6 @@ skin_overlap = 5 speed_layer_0 = =math.ceil(speed_print * 18 / 25) 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 @@ -60,3 +59,4 @@ travel_avoid_distance = 1.5 wall_0_inset = 0 wall_line_width_x = =line_width wall_thickness = 0.76 + 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 cd61d4efc9..33eb2e3043 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = liquid +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_tpu +quality_type = fast +setting_version = 22 +type = quality variant = VO 0.4 +weight = -1 [values] acceleration_enabled = True @@ -48,7 +48,6 @@ skin_overlap = 5 speed_layer_0 = =math.ceil(speed_print * 18 / 25) 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 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 fe233e4222..9390870f89 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Fine definition = liquid +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_tpu +quality_type = normal +setting_version = 22 +type = quality variant = VO 0.4 +weight = 0 [values] acceleration_enabled = True @@ -47,7 +47,6 @@ skin_overlap = 5 speed_layer_0 = =math.ceil(speed_print * 18 / 25) 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 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 2d029aac50..6ebaa7e2b0 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Fast definition = liquid +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_cffcpe +quality_type = draft +setting_version = 22 +type = quality variant = VO 0.6 +weight = -2 [values] adhesion_type = skirt @@ -29,3 +29,4 @@ support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 wall_line_width_x = =line_width + 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 3bb3b3f216..697a61bcc4 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Fast definition = liquid +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_cffpa +quality_type = draft +setting_version = 22 +type = quality variant = VO 0.6 +weight = -2 [values] adhesion_type = skirt @@ -29,3 +29,4 @@ support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 wall_line_width_x = =line_width + 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 48faaa65e1..fc301bb587 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Fast definition = liquid +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_gffcpe +quality_type = draft +setting_version = 22 +type = quality variant = VO 0.6 +weight = -2 [values] adhesion_type = brim @@ -29,3 +29,4 @@ support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 wall_line_width_x = =line_width + 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 a6a52fb04d..9c97b39ab2 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Fast definition = liquid +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_gffpa +quality_type = draft +setting_version = 22 +type = quality variant = VO 0.6 +weight = -2 [values] adhesion_type = brim @@ -29,3 +29,4 @@ support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 wall_line_width_x = =line_width + 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 0b72c825e1..bc712bf999 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Fast definition = liquid +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -3 -material = generic_petg -variant = VO 0.6 is_experimental = True +material = generic_petg +quality_type = draft +setting_version = 22 +type = quality +variant = VO 0.6 +weight = -3 [values] cool_fan_full_at_height = =layer_height_0 + 2 * layer_height @@ -31,8 +31,8 @@ retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) +speed_wall_x = =speed_wall support_angle = 70 support_line_width = =line_width * 0.75 support_pattern = ='triangles' @@ -41,3 +41,4 @@ top_bottom_thickness = =layer_height * 4 wall_line_width = =round(line_width * 0.75 / 0.75, 2) wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x + 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 a404cdc16b..c51c068ae2 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Normal definition = liquid +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -2 -material = generic_petg -variant = VO 0.6 is_experimental = True +material = generic_petg +quality_type = fast +setting_version = 22 +type = quality +variant = VO 0.6 +weight = -2 [values] cool_fan_full_at_height = =layer_height_0 + 2 * layer_height @@ -31,8 +31,8 @@ retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) +speed_wall_x = =speed_wall support_angle = 70 support_line_width = =line_width * 0.75 support_pattern = ='triangles' @@ -41,3 +41,4 @@ top_bottom_thickness = =layer_height * 4 wall_line_width = =round(line_width * 0.75 / 0.75, 2) wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x + 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 8e7e4effdb..3b6749dfb9 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Fast definition = liquid +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -3 -material = generic_pla -variant = VO 0.6 is_experimental = True +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = VO 0.6 +weight = -3 [values] cool_fan_full_at_height = =layer_height_0 + 2 * layer_height @@ -31,8 +31,8 @@ retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) +speed_wall_x = =speed_wall support_angle = 70 support_line_width = =line_width * 0.75 support_pattern = ='triangles' @@ -41,3 +41,4 @@ top_bottom_thickness = =layer_height * 4 wall_line_width = =round(line_width * 0.75 / 0.75, 2) wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x + 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 290d1fe6c9..45418e5994 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Normal definition = liquid +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -2 -material = generic_pla -variant = VO 0.6 is_experimental = True +material = generic_pla +quality_type = fast +setting_version = 22 +type = quality +variant = VO 0.6 +weight = -2 [values] cool_fan_full_at_height = =layer_height_0 + 2 * layer_height @@ -31,8 +31,8 @@ retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) +speed_wall_x = =speed_wall support_angle = 70 support_line_width = =line_width * 0.75 support_pattern = ='triangles' @@ -41,3 +41,4 @@ top_bottom_thickness = =layer_height * 4 wall_line_width = =round(line_width * 0.75 / 0.75, 2) wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x + 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 fe5802a25f..f2065b827f 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Fast definition = liquid +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = VO 0.8 +weight = -2 [values] line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature + 20 material_standby_temperature = 100 +retract_at_layer_change = False speed_print = 50 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -retract_at_layer_change = False + 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 d9c7ac25b1..b821b28fd9 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Sprint definition = liquid +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_abs +quality_type = superdraft +setting_version = 22 +type = quality variant = VO 0.8 +weight = -4 [values] line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature + 25 material_standby_temperature = 100 +retract_at_layer_change = False speed_print = 50 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -retract_at_layer_change = False + 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 79cf8b496d..d7acfa7c16 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Extra Fast definition = liquid +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_abs +quality_type = verydraft +setting_version = 22 +type = quality variant = VO 0.8 +weight = -3 [values] line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature + 22 material_standby_temperature = 100 +retract_at_layer_change = False speed_print = 50 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -retract_at_layer_change = False + 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 f4b258a4ee..90424ee65e 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 @@ -1,18 +1,19 @@ [general] -version = 4 -name = Fast definition = liquid +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_cpe +quality_type = draft +setting_version = 22 +type = quality variant = VO 0.8 +weight = -2 [values] brim_width = 15 +jerk_travel = 20 line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature + 15 material_standby_temperature = 100 @@ -22,4 +23,3 @@ speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) -jerk_travel = 20 \ No newline at end of file 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 70aa171e5b..7857ed00e7 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 @@ -1,18 +1,19 @@ [general] -version = 4 -name = Sprint definition = liquid +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_cpe +quality_type = superdraft +setting_version = 22 +type = quality variant = VO 0.8 +weight = -4 [values] brim_width = 15 +jerk_travel = 20 line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature + 20 material_standby_temperature = 100 @@ -23,4 +24,3 @@ speed_topbottom = =math.ceil(speed_print * 30 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -jerk_travel = 20 \ No newline at end of file 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 4c4950c4a1..4194c6f3b7 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 @@ -1,18 +1,19 @@ [general] -version = 4 -name = Extra Fast definition = liquid +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_cpe +quality_type = verydraft +setting_version = 22 +type = quality variant = VO 0.8 +weight = -3 [values] brim_width = 15 +jerk_travel = 20 line_width = =machine_nozzle_size * 0.875 material_print_temperature = =default_material_print_temperature + 17 material_standby_temperature = 100 @@ -22,4 +23,3 @@ speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) -jerk_travel = 20 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 250f56436e..87dd876588 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Fast definition = liquid +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_nylon +quality_type = draft +setting_version = 22 +type = quality variant = VO 0.8 +weight = -2 [values] brim_width = 5.6 @@ -33,3 +33,4 @@ support_xy_distance = =wall_line_width_0 * 1.5 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 + 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 b5ab20871a..891a20540d 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Sprint definition = liquid +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_nylon +quality_type = superdraft +setting_version = 22 +type = quality variant = VO 0.8 +weight = -4 [values] brim_width = 5.6 @@ -33,3 +33,4 @@ support_xy_distance = =wall_line_width_0 * 1.5 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 + 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 369a81c674..e009094760 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Extra Fast definition = liquid +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_nylon +quality_type = verydraft +setting_version = 22 +type = quality variant = VO 0.8 +weight = -3 [values] brim_width = 5.6 @@ -33,3 +33,4 @@ support_xy_distance = =wall_line_width_0 * 1.5 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 + 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 4add029aa1..a0343c5173 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Fast - Experimental definition = liquid +name = Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 -material = generic_pc -variant = VO 0.8 is_experimental = True +material = generic_pc +quality_type = draft +setting_version = 22 +type = quality +variant = VO 0.8 +weight = -2 [values] brim_width = 14 @@ -30,3 +30,4 @@ speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) support_line_width = =round(line_width * 0.6 / 0.7, 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 d38bad5748..5d1394e463 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Sprint - Experimental definition = liquid +name = Sprint - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 -material = generic_pc -variant = VO 0.8 is_experimental = True +material = generic_pc +quality_type = superdraft +setting_version = 22 +type = quality +variant = VO 0.8 +weight = -4 [values] brim_width = 14 @@ -29,3 +29,4 @@ speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) support_line_width = =round(line_width * 0.6 / 0.7, 2) + 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 d2a2f5833e..e945519391 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Extra Fast - Experimental definition = liquid +name = Extra Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 -material = generic_pc -variant = VO 0.8 is_experimental = True +material = generic_pc +quality_type = verydraft +setting_version = 22 +type = quality +variant = VO 0.8 +weight = -3 [values] brim_width = 14 @@ -30,3 +30,4 @@ speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) support_line_width = =round(line_width * 0.6 / 0.7, 2) + 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 d937f462f3..947c042b8c 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Fast definition = liquid +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = VO 0.8 +weight = -2 [values] cool_fan_full_at_height = =layer_height_0 + 2 * layer_height @@ -17,6 +17,8 @@ cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_line_width = =round(line_width * 0.65 / 0.75, 2) +infill_sparse_density = 15 +layer_height_0 = 0.4 line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 @@ -24,6 +26,12 @@ material_final_print_temperature = =max(-273.15, material_print_temperature - 15 material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 prime_tower_enable = True +retract_at_layer_change = False +speed_print = 45 +speed_topbottom = =math.ceil(speed_print * 35 / 45) +speed_wall = =math.ceil(speed_print * 40 / 45) +speed_wall_0 = =math.ceil(speed_wall * 35 / 40) +speed_wall_x = =speed_wall support_angle = 70 support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 @@ -32,11 +40,3 @@ wall_line_width = =round(line_width * 0.75 / 0.75, 2) wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x -retract_at_layer_change = False -speed_print = 45 -speed_topbottom = =math.ceil(speed_print * 35 / 45) -speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall -speed_wall_0 = =math.ceil(speed_wall * 35 / 40) -infill_sparse_density = 15 -layer_height_0 = 0.4 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 2fc973a474..08cb14cb26 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Sprint definition = liquid +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_petg +quality_type = superdraft +setting_version = 22 +type = quality variant = VO 0.8 +weight = -4 [values] cool_fan_full_at_height = =layer_height_0 + 2 * layer_height @@ -17,6 +17,8 @@ cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_line_width = =round(line_width * 0.65 / 0.75, 2) +infill_sparse_density = 15 +layer_height_0 = 0.4 line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 @@ -25,6 +27,12 @@ material_initial_print_temperature = =max(-273.15, material_print_temperature - material_print_temperature = =default_material_print_temperature + 15 prime_tower_enable = True raft_margin = 10 +retract_at_layer_change = False +speed_print = 45 +speed_topbottom = =math.ceil(speed_print * 35 / 45) +speed_wall = =math.ceil(speed_print * 40 / 45) +speed_wall_0 = =math.ceil(speed_wall * 35 / 40) +speed_wall_x = =speed_wall support_angle = 70 support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 @@ -32,11 +40,4 @@ top_bottom_thickness = =layer_height * 4 wall_line_width = =round(line_width * 0.75 / 0.75, 2) wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x -retract_at_layer_change = False -speed_print = 45 -speed_topbottom = =math.ceil(speed_print * 35 / 45) -speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall -speed_wall_0 = =math.ceil(speed_wall * 35 / 40) -infill_sparse_density = 15 -layer_height_0 = 0.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 72e4629575..187ed1f212 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Extra Fast definition = liquid +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_petg +quality_type = verydraft +setting_version = 22 +type = quality variant = VO 0.8 +weight = -3 [values] cool_fan_full_at_height = =layer_height_0 + 2 * layer_height @@ -17,6 +17,8 @@ cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_line_width = =round(line_width * 0.65 / 0.75, 2) +infill_sparse_density = 15 +layer_height_0 = 0.4 line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 @@ -24,6 +26,12 @@ material_final_print_temperature = =max(-273.15, material_print_temperature - 15 material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 prime_tower_enable = True +retract_at_layer_change = False +speed_print = 45 +speed_topbottom = =math.ceil(speed_print * 35 / 45) +speed_wall = =math.ceil(speed_print * 40 / 45) +speed_wall_0 = =math.ceil(speed_wall * 35 / 40) +speed_wall_x = =speed_wall support_angle = 70 support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 @@ -31,11 +39,4 @@ top_bottom_thickness = =layer_height * 4 wall_line_width = =round(line_width * 0.75 / 0.75, 2) wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x -retract_at_layer_change = False -speed_print = 45 -speed_topbottom = =math.ceil(speed_print * 35 / 45) -speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall -speed_wall_0 = =math.ceil(speed_wall * 35 / 40) -infill_sparse_density = 15 -layer_height_0 = 0.4 + 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 e022304ad9..10b6e8185a 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Fast definition = liquid +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = VO 0.8 +weight = -2 [values] cool_fan_full_at_height = =layer_height_0 + 2 * layer_height @@ -17,6 +17,8 @@ cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_line_width = =round(line_width * 0.65 / 0.75, 2) +infill_sparse_density = 15 +layer_height_0 = 0.4 line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 @@ -24,6 +26,12 @@ material_final_print_temperature = =max(-273.15, material_print_temperature - 15 material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 prime_tower_enable = True +retract_at_layer_change = False +speed_print = 45 +speed_topbottom = =math.ceil(speed_print * 35 / 45) +speed_wall = =math.ceil(speed_print * 40 / 45) +speed_wall_0 = =math.ceil(speed_wall * 35 / 40) +speed_wall_x = =speed_wall support_angle = 70 support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 @@ -32,11 +40,3 @@ wall_line_width = =round(line_width * 0.75 / 0.75, 2) wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x -retract_at_layer_change = False -speed_print = 45 -speed_topbottom = =math.ceil(speed_print * 35 / 45) -speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall -speed_wall_0 = =math.ceil(speed_wall * 35 / 40) -infill_sparse_density = 15 -layer_height_0 = 0.4 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 b480b737fa..ed0fc7fd8a 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Sprint definition = liquid +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_pla +quality_type = superdraft +setting_version = 22 +type = quality variant = VO 0.8 +weight = -4 [values] cool_fan_full_at_height = =layer_height_0 + 2 * layer_height @@ -17,6 +17,8 @@ cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_line_width = =round(line_width * 0.65 / 0.75, 2) +infill_sparse_density = 15 +layer_height_0 = 0.4 line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 @@ -25,6 +27,12 @@ material_initial_print_temperature = =max(-273.15, material_print_temperature - material_print_temperature = =default_material_print_temperature + 15 prime_tower_enable = True raft_margin = 10 +retract_at_layer_change = False +speed_print = 45 +speed_topbottom = =math.ceil(speed_print * 35 / 45) +speed_wall = =math.ceil(speed_print * 40 / 45) +speed_wall_0 = =math.ceil(speed_wall * 35 / 40) +speed_wall_x = =speed_wall support_angle = 70 support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 @@ -32,11 +40,4 @@ top_bottom_thickness = =layer_height * 4 wall_line_width = =round(line_width * 0.75 / 0.75, 2) wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x -retract_at_layer_change = False -speed_print = 45 -speed_topbottom = =math.ceil(speed_print * 35 / 45) -speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall -speed_wall_0 = =math.ceil(speed_wall * 35 / 40) -infill_sparse_density = 15 -layer_height_0 = 0.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 93c718cc0f..9def9ecb97 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Extra Fast definition = liquid +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_pla +quality_type = verydraft +setting_version = 22 +type = quality variant = VO 0.8 +weight = -3 [values] cool_fan_full_at_height = =layer_height_0 + 2 * layer_height @@ -17,6 +17,8 @@ cool_fan_speed_max = =100 cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_line_width = =round(line_width * 0.65 / 0.75, 2) +infill_sparse_density = 15 +layer_height_0 = 0.4 line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 @@ -24,6 +26,12 @@ material_final_print_temperature = =max(-273.15, material_print_temperature - 15 material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 prime_tower_enable = True +retract_at_layer_change = False +speed_print = 45 +speed_topbottom = =math.ceil(speed_print * 35 / 45) +speed_wall = =math.ceil(speed_print * 40 / 45) +speed_wall_0 = =math.ceil(speed_wall * 35 / 40) +speed_wall_x = =speed_wall support_angle = 70 support_line_width = =line_width * 0.75 support_xy_distance = =wall_line_width_0 * 1.5 @@ -31,11 +39,4 @@ top_bottom_thickness = =layer_height * 4 wall_line_width = =round(line_width * 0.75 / 0.75, 2) wall_line_width_x = =round(wall_line_width * 0.625 / 0.75, 2) wall_thickness = =wall_line_width_0 + wall_line_width_x -retract_at_layer_change = False -speed_print = 45 -speed_topbottom = =math.ceil(speed_print * 35 / 45) -speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall -speed_wall_0 = =math.ceil(speed_wall * 35 / 40) -infill_sparse_density = 15 -layer_height_0 = 0.4 + 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 69d2e67de1..4c3f60a240 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 @@ -1,21 +1,20 @@ [general] -version = 4 -name = Fast definition = liquid +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pp +quality_type = draft +setting_version = 22 +type = quality variant = VO 0.8 +weight = -2 [values] brim_width = 25 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 17 -top_skin_expand_distance = =line_width * 2 infill_before_walls = True infill_line_width = =round(line_width * 0.7 / 0.8, 2) infill_pattern = tetrahedral @@ -37,7 +36,6 @@ retraction_hop = 0.5 retraction_min_travel = 1.5 retraction_prime_speed = 15 skin_line_width = =round(line_width * 0.78 / 0.8, 2) - speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_bottom_distance = =support_z_distance support_line_width = =round(line_width * 0.7 / 0.8, 2) @@ -46,6 +44,8 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 +top_skin_expand_distance = =line_width * 2 wall_0_wipe_dist = =line_width * 2 wall_line_width_x = =round(line_width * 0.8 / 0.8, 2) wall_thickness = 1.6 + 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 b2388332fa..1b7c05ac3c 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 @@ -1,21 +1,20 @@ [general] -version = 4 -name = Sprint definition = liquid +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_pp +quality_type = superdraft +setting_version = 22 +type = quality variant = VO 0.8 +weight = -4 [values] brim_width = 25 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 17 -top_skin_expand_distance = =line_width * 2 infill_before_walls = True infill_line_width = =round(line_width * 0.7 / 0.8, 2) infill_pattern = tetrahedral @@ -37,7 +36,6 @@ retraction_hop = 0.5 retraction_min_travel = 1.5 retraction_prime_speed = 15 skin_line_width = =round(line_width * 0.78 / 0.8, 2) - speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_bottom_distance = =support_z_distance support_line_width = =round(line_width * 0.7 / 0.8, 2) @@ -46,6 +44,8 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 +top_skin_expand_distance = =line_width * 2 wall_0_wipe_dist = =line_width * 2 wall_line_width_x = =round(line_width * 0.8 / 0.8, 2) wall_thickness = 1.6 + 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 9e7babac08..7cbb60c3aa 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 @@ -1,21 +1,20 @@ [general] -version = 4 -name = Extra Fast definition = liquid +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_pp +quality_type = verydraft +setting_version = 22 +type = quality variant = VO 0.8 +weight = -3 [values] brim_width = 25 cool_min_layer_time_fan_speed_max = 6 cool_min_speed = 17 -top_skin_expand_distance = =line_width * 2 infill_before_walls = True infill_line_width = =round(line_width * 0.7 / 0.8, 2) infill_pattern = tetrahedral @@ -36,7 +35,6 @@ retraction_hop = 0.5 retraction_min_travel = 1.5 retraction_prime_speed = 15 skin_line_width = =round(line_width * 0.78 / 0.8, 2) - speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_bottom_distance = =support_z_distance support_line_width = =round(line_width * 0.7 / 0.8, 2) @@ -45,6 +43,8 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 +top_skin_expand_distance = =line_width * 2 wall_0_wipe_dist = =line_width * 2 wall_line_width_x = =round(line_width * 0.8 / 0.8, 2) wall_thickness = 1.6 + 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 5182f97446..4994e3f9f4 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 @@ -1,25 +1,25 @@ [general] -version = 4 -name = Fast definition = liquid +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = VO 0.8 +weight = -2 [values] brim_width = 8.75 cool_min_layer_time_fan_speed_max = 6 -top_skin_expand_distance = =line_width * 2 infill_before_walls = True infill_line_width = =round(line_width * 0.7 / 0.8, 2) infill_pattern = cross_3d jerk_prime_tower = =math.ceil(jerk_print * 25 / 15) jerk_support = =math.ceil(jerk_print * 25 / 15) +jerk_travel = 20 jerk_wall_0 = =math.ceil(jerk_wall * 15 / 15) machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 @@ -42,7 +42,6 @@ retraction_prime_speed = 15 skin_line_width = =round(line_width * 0.78 / 0.8, 2) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 25 / 30) - speed_wall = =math.ceil(speed_print * 30 / 30) speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_angle = 50 @@ -53,9 +52,9 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 +top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 2 wall_line_width_x = =round(line_width * 0.6 / 0.8, 2) wall_thickness = 1.3 -jerk_travel = 20 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 430fce9b9a..fd15d041b8 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 @@ -1,26 +1,26 @@ [general] -version = 4 -name = Sprint definition = liquid +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_tpu +quality_type = superdraft +setting_version = 22 +type = quality variant = VO 0.8 +weight = -4 [values] brim_width = 8.75 cool_min_layer_time_fan_speed_max = 6 -top_skin_expand_distance = =line_width * 2 infill_before_walls = True infill_line_width = =round(line_width * 0.7 / 0.8, 2) infill_pattern = cross_3d infill_sparse_density = 10 jerk_prime_tower = =math.ceil(jerk_print * 25 / 15) jerk_support = =math.ceil(jerk_print * 25 / 15) +jerk_travel = 20 jerk_wall_0 = =math.ceil(jerk_wall * 15 / 15) machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 @@ -43,7 +43,6 @@ retraction_prime_speed = 15 skin_line_width = =round(line_width * 0.78 / 0.8, 2) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) - speed_wall = =math.ceil(speed_print * 30 / 30) speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_angle = 50 @@ -54,9 +53,9 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 +top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 2 wall_line_width_x = =round(line_width * 0.6 / 0.8, 2) wall_thickness = 1.3 -jerk_travel = 20 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 d6ec2a09d6..5c88fb165f 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 @@ -1,26 +1,26 @@ [general] -version = 4 -name = Extra Fast definition = liquid +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_tpu +quality_type = verydraft +setting_version = 22 +type = quality variant = VO 0.8 +weight = -3 [values] brim_width = 8.75 cool_min_layer_time_fan_speed_max = 6 -top_skin_expand_distance = =line_width * 2 infill_before_walls = True infill_line_width = =round(line_width * 0.7 / 0.8, 2) infill_pattern = cross_3d infill_sparse_density = 10 jerk_prime_tower = =math.ceil(jerk_print * 25 / 15) jerk_support = =math.ceil(jerk_print * 25 / 15) +jerk_travel = 20 jerk_wall_0 = =math.ceil(jerk_wall * 15 / 15) machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 @@ -42,7 +42,6 @@ retraction_prime_speed = 15 skin_line_width = =round(line_width * 0.78 / 0.8, 2) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 23 / 30) - speed_wall = =math.ceil(speed_print * 30 / 30) speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_angle = 50 @@ -53,9 +52,9 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 +top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 2 wall_line_width_x = =round(line_width * 0.6 / 0.8, 2) wall_thickness = 1.3 -jerk_travel = 20 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 new file mode 100644 index 0000000000..260a3a81c8 --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = lnl3d_base +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..fda970be10 --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = lnl3d_base +name = Ultra Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..ada9e0eb89 --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = lnl3d_base +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..c5440ccafa --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = lnl3d_base +name = Ultra Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..d2916ea2f0 --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = lnl3d_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..290665a0ff --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = lnl3d_base +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..bde91591be --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = lnl3d_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..2678b7e383 --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = lnl3d_base +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..f38b46a764 --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = lnl3d_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..4860f58cf1 --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = lnl3d_base +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..4beedcef6b --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = lnl3d_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..277e3af31a --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = lnl3d_base +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..e130e03c10 --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = lnl3d_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..f1b29175a0 --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = lnl3d_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..e8d45e0c40 --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = lnl3d_base +name = Super Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..4f2bd1f74a --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = lnl3d_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..be6dcc5370 --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = lnl3d_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..38dcfbd232 --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = lnl3d_base +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..a9dfd3aac4 --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = lnl3d_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..438e4b0229 --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = lnl3d_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..fa481c4e8e --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = lnl3d_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..aa497ec243 --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = lnl3d_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..9bec35aae7 --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = lnl3d_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] + diff --git a/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg new file mode 100644 index 0000000000..7a74241eaf --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = lnl3d_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.20 +support_interface_height = =layer_height*6 +top_bottom_thickness = =layer_height_0+layer_height*4 +wall_thickness = =line_width*3 + diff --git a/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg new file mode 100644 index 0000000000..d6d2eb6304 --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = lnl3d_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -5 + +[values] +layer_height = 0.32 +layer_height_0 = 0.32 +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg new file mode 100644 index 0000000000..cb1f19fb95 --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = lnl3d_base +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 22 +type = quality +weight = -4 + +[values] +layer_height = 0.28 +layer_height_0 = 0.28 +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg new file mode 100644 index 0000000000..71f312f4f4 --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = lnl3d_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = standard +setting_version = 22 +type = quality +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg new file mode 100644 index 0000000000..68a37d8f14 --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = lnl3d_base +name = Super Quality +version = 4 + +[metadata] +global_quality = True +quality_type = super +setting_version = 22 +type = quality +weight = -1 + +[values] +layer_height = 0.12 +layer_height_0 = 0.12 +support_interface_height = =layer_height*8 +top_bottom_thickness = =layer_height_0+layer_height*6 +wall_thickness = =line_width*3 + diff --git a/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg new file mode 100644 index 0000000000..7bad9bb211 --- /dev/null +++ b/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = lnl3d_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +weight = 0 + +[values] +layer_height = 0.08 +layer_height_0 = 0.12 +support_interface_height = =layer_height*12 +top_bottom_thickness = =layer_height_0+layer_height*10 +wall_thickness = =line_width*3 + 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 0f5a71dd15..8f1e23ca36 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Dynamic Quality definition = longer_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 e1d1e550ee..3d9ae4b245 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Low Quality definition = longer_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 24c3a99de9..3c409fecda 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = longer_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 d442802860..aa240b5986 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Super Quality definition = longer_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] wall_thickness = =line_width*4 + 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 6907e4ceeb..5043c5df61 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = longer_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 2b54a084c7..3dbda87b8e 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Low Quality definition = longer_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 305f1ed66d..31732494cb 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = longer_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 143898a48c..48418d8b77 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Super Quality definition = longer_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 -#retraction_extra_prime_amount = 0.5 + 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 d46c54fab6..425ac85661 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = longer_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 90ce5c57c5..bccdb2d8f5 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = longer_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 559ba90d4b..619d279154 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = longer_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 c02157c342..d9a9f1e113 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = longer_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 0f70a2255c..c3e16ffe4a 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = longer_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 193b0ea940..e63a15a050 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = longer_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 c91b16a21e..dc0896bfbe 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = longer_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_tpu +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + diff --git a/resources/quality/longer/longer_global_adaptive.inst.cfg b/resources/quality/longer/longer_global_adaptive.inst.cfg index adb36960f7..ee1aca1c40 100644 --- a/resources/quality/longer/longer_global_adaptive.inst.cfg +++ b/resources/quality/longer/longer_global_adaptive.inst.cfg @@ -1,19 +1,20 @@ [general] -version = 4 -name = Dynamic Quality definition = longer_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive -weight = -2 global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +weight = -2 [values] +adaptive_layer_height_enabled = true layer_height = 0.16 layer_height_0 = 0.20 +support_interface_height = =layer_height*6 top_bottom_thickness = =layer_height_0+layer_height*4 wall_thickness = =line_width*3 -support_interface_height = =layer_height*6 -adaptive_layer_height_enabled = true + diff --git a/resources/quality/longer/longer_global_draft.inst.cfg b/resources/quality/longer/longer_global_draft.inst.cfg index e0eebdef16..1605c4efc9 100644 --- a/resources/quality/longer/longer_global_draft.inst.cfg +++ b/resources/quality/longer/longer_global_draft.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Draft Quality definition = longer_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -5 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -5 [values] layer_height = 0.32 layer_height_0 = 0.32 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 + diff --git a/resources/quality/longer/longer_global_low.inst.cfg b/resources/quality/longer/longer_global_low.inst.cfg index 12f79f089e..44e80b2668 100644 --- a/resources/quality/longer/longer_global_low.inst.cfg +++ b/resources/quality/longer/longer_global_low.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Low Quality definition = longer_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low -weight = -4 global_quality = True +quality_type = low +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.28 layer_height_0 = 0.28 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 + diff --git a/resources/quality/longer/longer_global_standard.inst.cfg b/resources/quality/longer/longer_global_standard.inst.cfg index 47e8c3ee00..383249951d 100644 --- a/resources/quality/longer/longer_global_standard.inst.cfg +++ b/resources/quality/longer/longer_global_standard.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Standard Quality definition = longer_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard -weight = -3 global_quality = True +quality_type = standard +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.2 layer_height_0 = 0.2 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 + diff --git a/resources/quality/longer/longer_global_super.inst.cfg b/resources/quality/longer/longer_global_super.inst.cfg index 8d39e4fa0f..1793f5c8a9 100644 --- a/resources/quality/longer/longer_global_super.inst.cfg +++ b/resources/quality/longer/longer_global_super.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Super Quality definition = longer_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super -weight = -1 global_quality = True +quality_type = super +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.12 layer_height_0 = 0.12 +support_interface_height = =layer_height*8 top_bottom_thickness = =layer_height_0+layer_height*6 wall_thickness = =line_width*3 -support_interface_height = =layer_height*8 + diff --git a/resources/quality/longer/longer_global_ultra.inst.cfg b/resources/quality/longer/longer_global_ultra.inst.cfg index ce76293bea..cb99daa490 100644 --- a/resources/quality/longer/longer_global_ultra.inst.cfg +++ b/resources/quality/longer/longer_global_ultra.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Ultra Quality definition = longer_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra -weight = 0 global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.08 layer_height_0 = 0.12 +support_interface_height = =layer_height*12 top_bottom_thickness = =layer_height_0+layer_height*10 wall_thickness = =line_width*3 -support_interface_height = =layer_height*12 + diff --git a/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg b/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg index fd23af15a1..028c044d19 100644 --- a/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg +++ b/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg @@ -1,20 +1,21 @@ [general] -version = 4 -name = Fine definition = makeblock_mcreate +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] +adhesion_type = skirt default_material_print_temperature = 190 -material_initial_print_temperature = 190 material_final_print_temperature = 185 material_flow = 94 +material_initial_print_temperature = 190 retraction_speed = 55 skirt_line_count = 2 -adhesion_type = skirt + 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 c1736a9e3f..9dd8250ed5 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fast definition = malyan_m200 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_abs +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 8a5c3e43a7..ecd8f1f040 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Normal definition = malyan_m200 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_abs +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 b6de1bfcbe..f750b07849 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Finer definition = malyan_m200 +name = Finer +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 7ff2cc5bf5..93167419ba 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fine definition = malyan_m200 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 85ed8e562b..888b08f59c 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Lowest Quality Draft definition = malyan_m200 +name = Lowest Quality Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -5 material = generic_abs +quality_type = superdraft +setting_version = 22 +type = quality +weight = -5 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 d59ba3501b..94cc19edfb 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft definition = malyan_m200 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = thickerdraft -weight = -3 material = generic_abs +quality_type = thickerdraft +setting_version = 22 +type = quality +weight = -3 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 baef7c9df8..bbad204f15 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Ultra Fine definition = malyan_m200 +name = Ultra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra -weight = 2 material = generic_abs +quality_type = ultra +setting_version = 22 +type = quality +weight = 2 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 461b2f5d2e..79c3b21eeb 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Detail Draft definition = malyan_m200 +name = Low Detail Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_abs +quality_type = verydraft +setting_version = 22 +type = quality +weight = -3 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 7048d1ee68..b321907fee 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 @@ -1,23 +1,24 @@ [general] -version = 4 -name = Fast definition = malyan_m200 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] -layer_height = 0.21875 -layer_height_0 = 0.2625 -wall_thickness = 1.05 -top_bottom_thickness = 0.72 -infill_sparse_density = 22 -speed_print = 50 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 50) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 22 +layer_height = 0.21875 +layer_height_0 = 0.2625 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 20 / 50) +top_bottom_thickness = 0.72 +wall_thickness = 1.05 + 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 3058c2aa32..b339b685c1 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 @@ -1,23 +1,24 @@ [general] -version = 4 -name = Normal definition = malyan_m200 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] -layer_height = 0.175 -layer_height_0 = 0.2625 -wall_thickness = 1.05 -top_bottom_thickness = 0.72 -infill_sparse_density = 22 -speed_print = 50 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 50) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 22 +layer_height = 0.175 +layer_height_0 = 0.2625 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 20 / 50) +top_bottom_thickness = 0.72 +wall_thickness = 1.05 + 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 a962f5f791..e22f15952c 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 @@ -1,23 +1,24 @@ [general] -version = 4 -name = Finer definition = malyan_m200 +name = Finer +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] -layer_height = 0.0875 -layer_height_0 = 0.2625 -wall_thickness = 1.05 -top_bottom_thickness = 0.72 -infill_sparse_density = 22 -speed_print = 50 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 50) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 22 +layer_height = 0.0875 +layer_height_0 = 0.2625 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 20 / 50) +top_bottom_thickness = 0.72 +wall_thickness = 1.05 + 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 7ca6519a4e..7d84227e1e 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 @@ -1,23 +1,24 @@ [general] -version = 4 -name = Fine definition = malyan_m200 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.13125 -layer_height_0 = 0.2625 -wall_thickness = 1.05 -top_bottom_thickness = 0.72 -infill_sparse_density = 22 -speed_print = 50 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 50) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 22 +layer_height = 0.13125 +layer_height_0 = 0.2625 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 20 / 50) +top_bottom_thickness = 0.72 +wall_thickness = 1.05 + 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 0a1ab8eafd..74f1224e3c 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 @@ -1,23 +1,24 @@ [general] -version = 4 -name = Lowest Quality Draft definition = malyan_m200 +name = Lowest Quality Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -5 global_quality = True +quality_type = superdraft +setting_version = 22 +type = quality +weight = -5 [values] -layer_height = 0.35 -layer_height_0 = 0.35 -wall_thickness = 1.05 -top_bottom_thickness = 0.72 -infill_sparse_density = 22 -speed_print = 50 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 50) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 22 +layer_height = 0.35 +layer_height_0 = 0.35 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 20 / 50) +top_bottom_thickness = 0.72 +wall_thickness = 1.05 + 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 b6a34e660e..ba07a565e0 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 @@ -1,23 +1,24 @@ [general] -version = 4 -name = Draft definition = malyan_m200 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = thickerdraft -weight = -3 global_quality = True +quality_type = thickerdraft +setting_version = 22 +type = quality +weight = -3 [values] -layer_height = 0.2625 -layer_height_0 = 0.2625 -wall_thickness = 1.05 -top_bottom_thickness = 0.72 -infill_sparse_density = 22 -speed_print = 50 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 50) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 22 +layer_height = 0.2625 +layer_height_0 = 0.2625 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 20 / 50) +top_bottom_thickness = 0.72 +wall_thickness = 1.05 + 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 846bd79a64..35d5f5e992 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 @@ -1,23 +1,24 @@ [general] -version = 4 -name = Ultra Fine definition = malyan_m200 +name = Ultra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra -weight = 2 global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +weight = 2 [values] -layer_height = 0.04375 -layer_height_0 = 0.2625 -wall_thickness = 1.05 -top_bottom_thickness = 0.72 -infill_sparse_density = 22 -speed_print = 50 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 50) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 22 +layer_height = 0.04375 +layer_height_0 = 0.2625 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 20 / 50) +top_bottom_thickness = 0.72 +wall_thickness = 1.05 + 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 2cc1158e3d..263e8fbb8d 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 @@ -1,23 +1,24 @@ [general] -version = 4 -name = Low Detail Draft definition = malyan_m200 +name = Low Detail Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 global_quality = True +quality_type = verydraft +setting_version = 22 +type = quality +weight = -3 [values] -layer_height = 0.30625 -layer_height_0 = 0.30625 -wall_thickness = 1.05 -top_bottom_thickness = 0.72 -infill_sparse_density = 22 -speed_print = 50 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 50) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 22 +layer_height = 0.30625 +layer_height_0 = 0.30625 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 20 / 50) +top_bottom_thickness = 0.72 +wall_thickness = 1.05 + 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 6a4b184b1c..100b52ba68 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Fast definition = malyan_m200 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_petg +quality_type = draft +setting_version = 22 +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 02ddbfb826..e8e26cc6d2 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Normal definition = malyan_m200 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_petg +quality_type = fast +setting_version = 22 +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 bc1ce677b8..9b6e0a5510 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Finer definition = malyan_m200 +name = Finer +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_petg +quality_type = high +setting_version = 22 +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 24f085d156..c73d0f76b3 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Fine definition = malyan_m200 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg +quality_type = normal +setting_version = 22 +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 851c111173..0a8595bc4c 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Lowest Quality Draft definition = malyan_m200 +name = Lowest Quality Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -5 material = generic_petg +quality_type = superdraft +setting_version = 22 +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 d445b465ea..6d08c78df2 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Draft definition = malyan_m200 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = thickerdraft -weight = -3 material = generic_petg +quality_type = thickerdraft +setting_version = 22 +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 d4cd1f2f0a..2396e4025f 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Ultra Fine definition = malyan_m200 +name = Ultra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra -weight = 2 material = generic_petg +quality_type = ultra +setting_version = 22 +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 3f5ff9fd3b..3e0d002d14 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Low Detail Draft definition = malyan_m200 +name = Low Detail Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_petg +quality_type = verydraft +setting_version = 22 +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 54ba134c9e..aaa3d950cc 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fast definition = malyan_m200 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] material_bed_temperature = 60 material_bed_temperature_layer_0 = 60 + 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 5d6e756ff8..cc8738df69 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Normal definition = malyan_m200 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pla +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] material_bed_temperature = 60 material_bed_temperature_layer_0 = 60 + 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 00b7c88ceb..211a735b72 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Finer definition = malyan_m200 +name = Finer +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] material_bed_temperature = 60 material_bed_temperature_layer_0 = 60 + 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 9900785a02..d413ac72f8 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fine definition = malyan_m200 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] material_bed_temperature = 60 material_bed_temperature_layer_0 = 60 + 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 8b0ed84d0b..7ed81987f9 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Lowest Quality Draft definition = malyan_m200 +name = Lowest Quality Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -5 material = generic_pla +quality_type = superdraft +setting_version = 22 +type = quality +weight = -5 [values] material_bed_temperature = 60 material_bed_temperature_layer_0 = 60 + 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 e750a3798c..38797b4912 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft definition = malyan_m200 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = thickerdraft -weight = -3 material = generic_pla +quality_type = thickerdraft +setting_version = 22 +type = quality +weight = -3 [values] material_bed_temperature = 60 material_bed_temperature_layer_0 = 60 + 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 54c97ce6a1..8669fa32aa 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Ultra Fine definition = malyan_m200 +name = Ultra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra -weight = 2 material = generic_pla +quality_type = ultra +setting_version = 22 +type = quality +weight = 2 [values] material_bed_temperature = 60 material_bed_temperature_layer_0 = 60 + 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 d28d87748f..44a16c116b 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Detail Draft definition = malyan_m200 +name = Low Detail Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_pla +quality_type = verydraft +setting_version = 22 +type = quality +weight = -3 [values] material_bed_temperature = 60 material_bed_temperature_layer_0 = 60 + 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 f1f6748183..c6012ac34b 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 @@ -1,14 +1,16 @@ [general] -version = 4 -name = Super Quality definition = mingda_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] +raft_airgap = 0.1 wall_thickness = =line_width*8 + 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 e86ddc6a3c..3de5395463 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 @@ -1,14 +1,16 @@ [general] -version = 4 -name = Ultra Quality definition = mingda_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_abs +quality_type = ultra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] +raft_airgap = 0.1 wall_thickness = =line_width*8 + 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 98d763841f..f18e89e783 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 @@ -1,14 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = mingda_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] +raft_airgap = 0.1 wall_thickness = =line_width*4 + 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 5386760786..d05ca5f136 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 @@ -1,14 +1,18 @@ [general] -version = 4 -name = Low Quality definition = mingda_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] +raft_airgap = 0.1 +raft_interface_thickness = 0.2 +raft_surface_thickness = 0.2 wall_thickness = =line_width*4 + 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 b9d05ce302..0b2f445dfa 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 @@ -1,14 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = mingda_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] +raft_airgap = 0.1 +raft_interface_thickness = =round(layer_height, 2) wall_thickness = =line_width*4 + 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 1473d22be8..2b22e3f745 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 @@ -1,14 +1,16 @@ [general] -version = 4 -name = Super Quality definition = mingda_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] +raft_airgap = 0.1 wall_thickness = =line_width*4 + 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 ace730f1dc..100d5b24b1 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 @@ -1,14 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = mingda_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] +raft_airgap = 0.1 wall_thickness = =line_width*4 + 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 424825d1b4..5727969b79 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 @@ -1,14 +1,17 @@ [general] -version = 4 -name = Low Quality definition = mingda_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] +raft_airgap = 0.1 +raft_interface_thickness = 0.3 wall_thickness = =line_width*4 + 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 69bc7a850e..c37e7dc9c9 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 @@ -1,14 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = mingda_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] +raft_airgap = 0.1 wall_thickness = =line_width*4 + 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 102f30a9a2..380d4a5255 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 @@ -1,14 +1,16 @@ [general] -version = 4 -name = Super Quality definition = mingda_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] +raft_airgap = 0.1 wall_thickness = =line_width*4 + 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 361cc1b51d..e39ac13e6b 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 @@ -1,14 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = mingda_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] +raft_airgap = 0.1 wall_thickness = =line_width*4 + 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 d56abbea8a..75f79402e7 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 @@ -1,14 +1,16 @@ [general] -version = 4 -name = Low Quality definition = mingda_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] +raft_airgap = 0.1 wall_thickness = =line_width*4 + 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 89c414d44f..9a5001c739 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 @@ -1,14 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = mingda_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] +raft_airgap = 0.1 wall_thickness = =line_width*4 + 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 c66b2bda76..f69b432812 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 @@ -1,14 +1,16 @@ [general] -version = 4 -name = Super Quality definition = mingda_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] +raft_airgap = 0.1 wall_thickness = =line_width*4 + 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 74f22e5a69..29e5bec052 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 @@ -1,14 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = mingda_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] +raft_airgap = 0.1 wall_thickness = =line_width*3 + 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 27a89a4b0b..d9652a248d 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 @@ -1,14 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = mingda_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] +raft_airgap = 0.1 wall_thickness = =line_width*3 + 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 cefd94a01d..0f412780b8 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 @@ -1,14 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = mingda_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] +raft_airgap = 0.1 wall_thickness = =line_width*3 + 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 add589b0fa..e5390fa7b4 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = mingda_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*8 + 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 f4a1390a39..a815e91217 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Ultra Quality definition = mingda_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_petg +quality_type = ultra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*8 + 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 c9c045aeee..fd1ea41e01 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = mingda_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 9936912b26..2ccc44a3b7 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 @@ -1,15 +1,18 @@ [general] -version = 4 -name = Low Quality definition = mingda_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] +raft_interface_thickness = 0.2 +raft_surface_thickness = 0.2 speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 e7731f6eb2..e8362fc6db 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 @@ -1,15 +1,17 @@ [general] -version = 4 -name = Standard Quality definition = mingda_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] +raft_interface_thickness = =round(layer_height, 2) speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 a12ec007d5..6d5d14871b 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = mingda_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 dbf9ba1673..b35035a02d 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = mingda_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 b5410324bc..6d80739a00 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 @@ -1,15 +1,17 @@ [general] -version = 4 -name = Low Quality definition = mingda_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] +raft_interface_thickness = 0.3 speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 2945f57d32..bdc2a7daad 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = mingda_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 fedb5ce674..8859cc46f0 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = mingda_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 b0539c81f0..12d387b8dc 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = mingda_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 3138ed5c91..f7b847384e 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = mingda_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 5eeefa8103..25eff32261 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = mingda_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 78b583913b..181c82ae08 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = mingda_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*4 + 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 8df0421d84..e1ddcf5de8 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = mingda_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*3 + 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 1e94e2e887..24d9d323d5 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = mingda_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*3 + 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 4581ee5047..118a90fcc2 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = mingda_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] speed_layer_0 = 15 wall_thickness = =line_width*3 + 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 09bbf768fc..84ca0b0dd4 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = mingda_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] + 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 62b59cf986..1b93c7fbfb 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Ultra Quality definition = mingda_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_pla +quality_type = ultra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] + 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 0ad767091b..d2ac93fb12 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 @@ -1,12 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = mingda_base +name = Dynamic Quality +version = 4 + [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 80d5b97081..bdca299772 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 @@ -1,13 +1,16 @@ [general] -version = 4 -name = Low Quality definition = mingda_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] +raft_interface_thickness = 0.2 +raft_surface_thickness = 0.2 + 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 03fffbabf0..df3e0909c2 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 @@ -1,13 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = mingda_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] +raft_interface_thickness = =round(layer_height, 2) + 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 b282a96ecd..5c709944bb 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = mingda_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 521d667ff6..a8250b8709 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = mingda_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 4405c5ae6c..d8aaa5bb6a 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 @@ -1,13 +1,15 @@ [general] -version = 4 -name = Low Quality definition = mingda_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] +raft_interface_thickness = 0.3 + 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 9623aecf06..5ac644791b 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = mingda_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 bd8f1dd177..ee4ccb14f7 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = mingda_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 84b254bdfa..77fa8b57fa 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = mingda_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 b9d7afacdc..65e90311e3 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = mingda_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 5e3b10ece0..feac2c4212 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = mingda_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 c5526da793..847bb29f3a 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = mingda_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 caba25f84d..f6d396df3a 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = mingda_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 c78f5fa0ea..b6715276ab 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = mingda_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 9d00a1b364..414478c331 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = mingda_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 60c45c2100..de4d732cb4 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = mingda_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] + 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 9dc0023c5c..34582ea39a 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = mingda_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] + 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 8705744072..40d9e2723a 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = mingda_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 64f66a9fca..45bbc23d7c 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 @@ -1,13 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = mingda_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] +raft_interface_thickness = =round(layer_height, 2) + 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 b2be126343..748163782f 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = mingda_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_tpu +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 5dde34a112..6eadcb6d0d 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = mingda_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 397541f1ca..87a1e3290b 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = mingda_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 cacbe479e2..3f9dcd40f6 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = mingda_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_tpu +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 e8550a6ff4..a445644cdf 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = mingda_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 f6c4e9998a..f03044c42c 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = mingda_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 86c10513e0..11cc64f737 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Quality definition = mingda_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_tpu +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 b84ddafd99..247549fd23 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = mingda_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 990475987a..ba5cf6805e 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = mingda_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] + 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 111684bb61..dae977ca80 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 @@ -1,13 +1,14 @@ [general] -version = 4 -name = Draft Quality definition = mingda_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] + diff --git a/resources/quality/mingda/mingda_global_adaptive.inst.cfg b/resources/quality/mingda/mingda_global_adaptive.inst.cfg index a900091816..d67521ba22 100644 --- a/resources/quality/mingda/mingda_global_adaptive.inst.cfg +++ b/resources/quality/mingda/mingda_global_adaptive.inst.cfg @@ -1,19 +1,31 @@ [general] -version = 4 -name = Dynamic Quality definition = mingda_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive -weight = -2 global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +weight = -2 [values] +adaptive_layer_height_enabled = true +infill_line_width = =round(line_width * 0.4 / 0.35, 2) +infill_sparse_density = 20 +jerk_travel = 50 layer_height = 0.16 layer_height_0 = 0.20 +raft_airgap = 0.18 +raft_base_thickness = =round(layer_height*1.5, 2) +raft_interface_thickness = =round(layer_height*1.2, 2) +speed_layer_0 = 10 +speed_print = 60 +speed_topbottom = =math.ceil(speed_print * 30 / 60) +speed_wall = =math.ceil(speed_print * 40 / 60) +speed_wall_0 = =math.ceil(speed_wall * 30 / 40) +support_interface_height = =layer_height*6 top_bottom_thickness = =layer_height_0+layer_height*4 wall_thickness = =line_width*3 -support_interface_height = =layer_height*6 -adaptive_layer_height_enabled = true + diff --git a/resources/quality/mingda/mingda_global_draft.inst.cfg b/resources/quality/mingda/mingda_global_draft.inst.cfg index 4af8021880..1cf7c29a3a 100644 --- a/resources/quality/mingda/mingda_global_draft.inst.cfg +++ b/resources/quality/mingda/mingda_global_draft.inst.cfg @@ -1,18 +1,32 @@ [general] -version = 4 -name = Draft Quality definition = mingda_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -5 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -5 [values] +acceleration_print = 2000 +acceleration_topbottom = 1000 +acceleration_travel = 2000 +acceleration_wall = 1500 +acceleration_wall_0 = 1000 +infill_line_width = =line_width*1 +infill_sparse_density = 10 +jerk_travel = 20 layer_height = 0.32 layer_height_0 = 0.32 +raft_airgap = 0.18 +raft_base_thickness = =round(layer_height*1.5, 2) +raft_interface_thickness = =round(layer_height*1.2, 2) +speed_print = 50 +speed_wall = 50 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 + diff --git a/resources/quality/mingda/mingda_global_low.inst.cfg b/resources/quality/mingda/mingda_global_low.inst.cfg index f6483ef64f..f81f1ae229 100644 --- a/resources/quality/mingda/mingda_global_low.inst.cfg +++ b/resources/quality/mingda/mingda_global_low.inst.cfg @@ -1,18 +1,32 @@ [general] -version = 4 -name = Low Quality definition = mingda_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low -weight = -4 global_quality = True +quality_type = low +setting_version = 22 +type = quality +weight = -4 [values] +acceleration_print = 2000 +acceleration_topbottom = 1000 +acceleration_travel = 2000 +acceleration_wall = 1500 +acceleration_wall_0 = 1000 +infill_line_width = =line_width*1 +infill_sparse_density = 10 +jerk_travel = 20 layer_height = 0.28 layer_height_0 = 0.28 +raft_airgap = 0.18 +raft_base_thickness = =round(layer_height*1.5, 2) +raft_interface_thickness = =round(layer_height*1.2, 2) +speed_print = 50 +speed_wall = 50 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 + diff --git a/resources/quality/mingda/mingda_global_standard.inst.cfg b/resources/quality/mingda/mingda_global_standard.inst.cfg index f80d7f4c37..109eec45a7 100644 --- a/resources/quality/mingda/mingda_global_standard.inst.cfg +++ b/resources/quality/mingda/mingda_global_standard.inst.cfg @@ -1,18 +1,32 @@ [general] -version = 4 -name = Standard Quality definition = mingda_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard -weight = -3 global_quality = True +quality_type = standard +setting_version = 22 +type = quality +weight = -3 [values] +acceleration_wall = 2000 +acceleration_wall_0 = 2000 +infill_line_width = =round(line_width * 0.4 / 0.35, 2) +infill_sparse_density = 20 +jerk_travel = 50 layer_height = 0.2 layer_height_0 = 0.2 +raft_airgap = 0.18 +raft_base_thickness = =round(layer_height*1.5, 2) +raft_interface_thickness = =round(layer_height*1.2, 2) +speed_layer_0 = 10 +speed_print = 60 +speed_topbottom = =math.ceil(speed_print * 30 / 60) +speed_wall = =math.ceil(speed_print * 40 / 60) +speed_wall_0 = =math.ceil(speed_wall * 30 / 40) +support_interface_height = =layer_height*5 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*3 -support_interface_height = =layer_height*5 + diff --git a/resources/quality/mingda/mingda_global_super.inst.cfg b/resources/quality/mingda/mingda_global_super.inst.cfg index 6abe36ffd2..a4d81601b3 100644 --- a/resources/quality/mingda/mingda_global_super.inst.cfg +++ b/resources/quality/mingda/mingda_global_super.inst.cfg @@ -1,18 +1,25 @@ [general] -version = 4 -name = Super Quality definition = mingda_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super -weight = -1 global_quality = True +quality_type = super +setting_version = 22 +type = quality +weight = -1 [values] +infill_line_width = =round(line_width * 0.42 / 0.35, 2) +infill_sparse_density = 20 +jerk_travel = 50 layer_height = 0.12 layer_height_0 = 0.12 +raft_airgap = 0.18 +raft_base_thickness = =round(layer_height*1.5, 2) +raft_interface_thickness = =round(layer_height*1.2, 2) +support_interface_height = =layer_height*8 top_bottom_thickness = =layer_height_0+layer_height*6 wall_thickness = =line_width*3 -support_interface_height = =layer_height*8 + diff --git a/resources/quality/mingda/mingda_global_ultra.inst.cfg b/resources/quality/mingda/mingda_global_ultra.inst.cfg index b383c4c799..5319ad2293 100644 --- a/resources/quality/mingda/mingda_global_ultra.inst.cfg +++ b/resources/quality/mingda/mingda_global_ultra.inst.cfg @@ -1,18 +1,29 @@ [general] -version = 4 -name = Ultra Quality definition = mingda_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra -weight = 0 global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +weight = 0 [values] +infill_line_width = =round(line_width * 0.42 / 0.35, 2) +jerk_travel = 50 layer_height = 0.08 layer_height_0 = 0.12 +raft_airgap = 0.18 +raft_base_thickness = =round(layer_height*1.5, 2) +raft_interface_thickness = =round(layer_height*1.2, 2) +skin_overlap = 10 +speed_layer_0 = 10 +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 35 / 50) +speed_wall = =math.ceil(speed_print * 35 / 50) +support_interface_height = =layer_height*12 top_bottom_thickness = =layer_height_0+layer_height*10 wall_thickness = =line_width*3 -support_interface_height = =layer_height*12 + 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 new file mode 100644 index 0000000000..fa8b7bd4e8 --- /dev/null +++ b/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = mixware_hyper_k +name = Draft +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality + +[values] +layer_height = 0.15 +layer_height_0 = 0.15 +support_interface_height = =layer_height*8 +top_bottom_thickness = =layer_height_0 + layer_height * 6 +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..81fe693113 --- /dev/null +++ b/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = mixware_hyper_k +name = Coarse +version = 4 + +[metadata] +global_quality = True +quality_type = coarse +setting_version = 22 +type = quality + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + 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 new file mode 100644 index 0000000000..2f09b41466 --- /dev/null +++ b/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = mixware_hyper_k +name = Fine +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality + +[values] +layer_height = 0.1 +layer_height_0 = 0.12 +support_interface_height = =layer_height*12 +top_bottom_thickness = =layer_height_0+layer_height*10 +wall_thickness = =line_width*3 + 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 ac188f75cc..0167ad3b68 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 @@ -1,25 +1,27 @@ [general] -version = 4 -name = Draft definition = mixware_hyper_s +name = Draft +version = 4 [metadata] -type = quality -quality_type = draft global_quality = True -setting_version = 20 +quality_type = draft +setting_version = 22 +type = quality [values] +acceleration_enabled = false +infill_before_walls = false +infill_overlap = 30.0 +infill_wipe_dist = 0.0 layer_height = 0.15 +layer_height_0 = 0.15 retraction_combing = all retraction_extrusion_window = 10 retraction_min_travel = 1.5 -infill_wipe_dist = 0.0 skin_overlap = 10.0 -infill_overlap = 30.0 -wall_0_wipe_dist = 0.0 -support_wall_count = 1 support_brim_enable = false -infill_before_walls = false -acceleration_enabled = false support_enable = true +support_wall_count = 1 +wall_0_wipe_dist = 0.0 + 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 d0ae456269..39bc3841ab 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 @@ -1,25 +1,27 @@ [general] -version = 4 -name = Coarse definition = mixware_hyper_s +name = Coarse +version = 4 [metadata] -type = quality -quality_type = coarse -setting_version = 20 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality [values] +acceleration_enabled = false +infill_before_walls = false +infill_overlap = 30.0 +infill_wipe_dist = 0.0 layer_height = 0.2 +layer_height_0 = 0.2 retraction_combing = all retraction_extrusion_window = 10 retraction_min_travel = 1.5 -infill_wipe_dist = 0.0 skin_overlap = 10.0 -infill_overlap = 30.0 -wall_0_wipe_dist = 0.0 -support_wall_count = 1 support_brim_enable = false -infill_before_walls = false -acceleration_enabled = false support_enable = true +support_wall_count = 1 +wall_0_wipe_dist = 0.0 + 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 396f331b3c..1267a29fc2 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 @@ -1,25 +1,27 @@ [general] -version = 4 -name = Fine definition = mixware_hyper_s +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal global_quality = True +quality_type = normal +setting_version = 22 +type = quality [values] +acceleration_enabled = false +infill_before_walls = false +infill_overlap = 30.0 +infill_wipe_dist = 0.0 layer_height = 0.1 +layer_height_0 = 0.12 retraction_combing = all retraction_extrusion_window = 10 retraction_min_travel = 1.5 -infill_wipe_dist = 0.0 skin_overlap = 10.0 -infill_overlap = 30.0 -wall_0_wipe_dist = 0.0 -support_wall_count = 1 support_brim_enable = false -infill_before_walls = false -acceleration_enabled = false support_enable = true +support_wall_count = 1 +wall_0_wipe_dist = 0.0 + diff --git a/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg b/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg new file mode 100644 index 0000000000..1ff0b50fbe --- /dev/null +++ b/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = mixware_vulcan +name = Draft +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality + +[values] +layer_height = 0.15 +layer_height_0 = 0.18 + diff --git a/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg b/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg new file mode 100644 index 0000000000..cbb1a8fddb --- /dev/null +++ b/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = mixware_vulcan +name = Coarse +version = 4 + +[metadata] +global_quality = True +quality_type = coarse +setting_version = 22 +type = quality + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + diff --git a/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg b/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg new file mode 100644 index 0000000000..d371d236c2 --- /dev/null +++ b/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = mixware_vulcan +name = Fine +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality + +[values] +layer_height = 0.1 +layer_height_0 = 0.12 + diff --git a/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg b/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg new file mode 100644 index 0000000000..ba90518306 --- /dev/null +++ b/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = mixware_wand +name = Draft +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality + +[values] +acceleration_travel = 500 +infill_before_walls = False +layer_height = 0.15 +layer_height_0 = 0.18 +support_infill_rate = 20 + diff --git a/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg b/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg new file mode 100644 index 0000000000..6a942a546d --- /dev/null +++ b/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = mixware_wand +name = Coarse +version = 4 + +[metadata] +global_quality = True +quality_type = coarse +setting_version = 22 +type = quality + +[values] +acceleration_travel = 500 +infill_before_walls = False +layer_height = 0.2 +layer_height_0 = 0.2 +support_infill_rate = 20 + diff --git a/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg b/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg new file mode 100644 index 0000000000..8aada67380 --- /dev/null +++ b/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = mixware_wand +name = Fine +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality + +[values] +acceleration_travel = 500 +infill_before_walls = False +layer_height = 0.1 +layer_height_0 = 0.11 +support_infill_rate = 20 + 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 01274a427d..097a959905 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fast definition = monoprice_select_mini_v2 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_abs +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 7f27b83d35..b81a4b8bd4 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Normal definition = monoprice_select_mini_v2 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_abs +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 4d23f0184b..13263426d3 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Finer definition = monoprice_select_mini_v2 +name = Finer +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 28a3fa24e9..886312c2ef 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fine definition = monoprice_select_mini_v2 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 1f87b6954c..700f5ead70 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Lowest Quality Draft definition = monoprice_select_mini_v2 +name = Lowest Quality Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -5 material = generic_abs +quality_type = superdraft +setting_version = 22 +type = quality +weight = -5 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 3e1e0d6fa0..8a689abe03 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft definition = monoprice_select_mini_v2 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = thickerdraft -weight = -3 material = generic_abs +quality_type = thickerdraft +setting_version = 22 +type = quality +weight = -3 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 380e0dd002..daebcd1df6 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Ultra Fine definition = monoprice_select_mini_v2 +name = Ultra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = thickerdraft -weight = 2 material = generic_abs +quality_type = thickerdraft +setting_version = 22 +type = quality +weight = 2 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 f648b02b16..e32d5f1b04 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Detail Draft definition = monoprice_select_mini_v2 +name = Low Detail Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_abs +quality_type = verydraft +setting_version = 22 +type = quality +weight = -3 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 2b303c5d25..a60d8f4208 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 @@ -1,23 +1,24 @@ [general] -version = 4 -name = Fast definition = monoprice_select_mini_v2 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] -layer_height = 0.21875 -layer_height_0 = 0.2625 -wall_thickness = 1.05 -top_bottom_thickness = 0.72 -infill_sparse_density = 22 -speed_print = 50 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 50) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 22 +layer_height = 0.21875 +layer_height_0 = 0.2625 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 20 / 50) +top_bottom_thickness = 0.72 +wall_thickness = 1.05 + 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 8bbb1eb4c1..62dd3d8052 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 @@ -1,23 +1,24 @@ [general] -version = 4 -name = Normal definition = monoprice_select_mini_v2 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] -layer_height = 0.175 -layer_height_0 = 0.2625 -wall_thickness = 1.05 -top_bottom_thickness = 0.72 -infill_sparse_density = 22 -speed_print = 50 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 50) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 22 +layer_height = 0.175 +layer_height_0 = 0.2625 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 20 / 50) +top_bottom_thickness = 0.72 +wall_thickness = 1.05 + 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 3de8da13a6..c47f989190 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 @@ -1,23 +1,24 @@ [general] -version = 4 -name = Finer definition = monoprice_select_mini_v2 +name = Finer +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] -layer_height = 0.0875 -layer_height_0 = 0.2625 -wall_thickness = 1.05 -top_bottom_thickness = 0.72 -infill_sparse_density = 22 -speed_print = 50 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 50) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 22 +layer_height = 0.0875 +layer_height_0 = 0.2625 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 20 / 50) +top_bottom_thickness = 0.72 +wall_thickness = 1.05 + 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 d807aabefe..84d9774ce3 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 @@ -1,23 +1,24 @@ [general] -version = 4 -name = Fine definition = monoprice_select_mini_v2 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.13125 -layer_height_0 = 0.2625 -wall_thickness = 1.05 -top_bottom_thickness = 0.72 -infill_sparse_density = 22 -speed_print = 50 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 50) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 22 +layer_height = 0.13125 +layer_height_0 = 0.2625 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 20 / 50) +top_bottom_thickness = 0.72 +wall_thickness = 1.05 + 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 2e349bd617..afa18c866f 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 @@ -1,23 +1,24 @@ [general] -version = 4 -name = Lowest Quality Draft definition = monoprice_select_mini_v2 +name = Lowest Quality Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -5 global_quality = True +quality_type = superdraft +setting_version = 22 +type = quality +weight = -5 [values] -layer_height = 0.35 -layer_height_0 = 0.35 -wall_thickness = 1.05 -top_bottom_thickness = 0.72 -infill_sparse_density = 22 -speed_print = 50 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 50) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 22 +layer_height = 0.35 +layer_height_0 = 0.35 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 20 / 50) +top_bottom_thickness = 0.72 +wall_thickness = 1.05 + 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 a9a5d2bf1f..2b30b9fc71 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 @@ -1,23 +1,24 @@ [general] -version = 4 -name = Draft definition = monoprice_select_mini_v2 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = thickerdraft -weight = -3 global_quality = True +quality_type = thickerdraft +setting_version = 22 +type = quality +weight = -3 [values] -layer_height = 0.2625 -layer_height_0 = 0.2625 -wall_thickness = 1.05 -top_bottom_thickness = 0.72 -infill_sparse_density = 22 -speed_print = 50 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 50) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 22 +layer_height = 0.2625 +layer_height_0 = 0.2625 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 20 / 50) +top_bottom_thickness = 0.72 +wall_thickness = 1.05 + 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 38e5ea7037..d7bfcc7d5d 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 @@ -1,23 +1,24 @@ [general] -version = 4 -name = Ultra Fine definition = monoprice_select_mini_v2 +name = Ultra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra -weight = 2 global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +weight = 2 [values] -layer_height = 0.04375 -layer_height_0 = 0.2625 -wall_thickness = 1.05 -top_bottom_thickness = 0.72 -infill_sparse_density = 22 -speed_print = 50 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 50) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 22 +layer_height = 0.04375 +layer_height_0 = 0.2625 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 20 / 50) +top_bottom_thickness = 0.72 +wall_thickness = 1.05 + 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 d6f046ed23..05e381ae5b 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 @@ -1,23 +1,24 @@ [general] -version = 4 -name = Low Detail Draft definition = monoprice_select_mini_v2 +name = Low Detail Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 global_quality = True +quality_type = verydraft +setting_version = 22 +type = quality +weight = -3 [values] -layer_height = 0.30625 -layer_height_0 = 0.30625 -wall_thickness = 1.05 -top_bottom_thickness = 0.72 -infill_sparse_density = 22 -speed_print = 50 -speed_layer_0 = =round(speed_print * 30 / 50) -speed_topbottom = =math.ceil(speed_print * 20 / 50) cool_min_layer_time = 5 cool_min_speed = 10 +infill_sparse_density = 22 +layer_height = 0.30625 +layer_height_0 = 0.30625 +speed_layer_0 = =round(speed_print * 30 / 50) +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 20 / 50) +top_bottom_thickness = 0.72 +wall_thickness = 1.05 + 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 6b4ae9829d..8d57fe8287 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Fast definition = monoprice_select_mini_v2 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_nylon +quality_type = draft +setting_version = 22 +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 d608b051fa..ec808fbe56 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Normal definition = monoprice_select_mini_v2 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_nylon +quality_type = fast +setting_version = 22 +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 32b924e2c6..b86c774fa4 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Finer definition = monoprice_select_mini_v2 +name = Finer +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_nylon +quality_type = high +setting_version = 22 +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 abe9c19631..1f1f8964d4 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Fine definition = monoprice_select_mini_v2 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_nylon +quality_type = normal +setting_version = 22 +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 b183379536..a2d9070cf0 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Lowest Quality Draft definition = monoprice_select_mini_v2 +name = Lowest Quality Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -5 material = generic_nylon +quality_type = superdraft +setting_version = 22 +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 3fa7846a2d..1c14bc2030 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Draft definition = monoprice_select_mini_v2 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = thickerdraft -weight = -3 material = generic_nylon +quality_type = thickerdraft +setting_version = 22 +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 43c37757f8..09713b91c0 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Ultra Fine definition = monoprice_select_mini_v2 +name = Ultra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra -weight = 2 material = generic_nylon +quality_type = ultra +setting_version = 22 +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 ea4214ab35..b34cb9c813 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Low Detail Draft definition = monoprice_select_mini_v2 +name = Low Detail Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_nylon +quality_type = verydraft +setting_version = 22 +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 9909193823..20f0e19467 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fast definition = monoprice_select_mini_v2 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pc +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 3088c2a0bb..dc9ecd5fe6 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Normal definition = monoprice_select_mini_v2 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pc +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 7d654d698c..c5f968e6e1 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Finer definition = monoprice_select_mini_v2 +name = Finer +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pc +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 ded324237c..278d07dea2 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fine definition = monoprice_select_mini_v2 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pc +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 ba1df40803..07a2ac74f6 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Lowest Quality Draft definition = monoprice_select_mini_v2 +name = Lowest Quality Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -5 material = generic_pc +quality_type = superdraft +setting_version = 22 +type = quality +weight = -5 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 b36c9c86c5..592b5e1009 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft definition = monoprice_select_mini_v2 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = thickerdraft -weight = -3 material = generic_pc +quality_type = thickerdraft +setting_version = 22 +type = quality +weight = -3 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 ddc7085fc0..1aa8210751 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Ultra Fine definition = monoprice_select_mini_v2 +name = Ultra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra -weight = 2 material = generic_pc +quality_type = ultra +setting_version = 22 +type = quality +weight = 2 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 cddd7cf1a1..a6ceb71830 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Detail Draft definition = monoprice_select_mini_v2 +name = Low Detail Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_pc +quality_type = verydraft +setting_version = 22 +type = quality +weight = -3 [values] material_bed_temperature = 70 material_bed_temperature_layer_0 = 70 + 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 cfcfd0eda8..753dc626ed 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Fast definition = monoprice_select_mini_v2 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_petg +quality_type = draft +setting_version = 22 +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 7772c13ab9..e633544769 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Normal definition = monoprice_select_mini_v2 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_petg +quality_type = fast +setting_version = 22 +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 c43a58be2c..ec80a8c9e1 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Finer definition = monoprice_select_mini_v2 +name = Finer +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_petg +quality_type = high +setting_version = 22 +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 bef9fdfe82..e8046eb5a0 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Fine definition = monoprice_select_mini_v2 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg +quality_type = normal +setting_version = 22 +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 5a72cc7977..5a5776c7f8 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Lowest Quality Draft definition = monoprice_select_mini_v2 +name = Lowest Quality Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -5 material = generic_petg +quality_type = superdraft +setting_version = 22 +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 e2a4de1c61..168e1c0bb4 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Draft definition = monoprice_select_mini_v2 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = thickerdraft -weight = -3 material = generic_petg +quality_type = thickerdraft +setting_version = 22 +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 fa04dead85..7b92bf37a1 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Ultra Fine definition = monoprice_select_mini_v2 +name = Ultra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra -weight = 2 material = generic_petg +quality_type = ultra +setting_version = 22 +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 81ea798071..f8a3360385 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Low Detail Draft definition = monoprice_select_mini_v2 +name = Low Detail Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_petg +quality_type = verydraft +setting_version = 22 +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 c0aca37d92..f96a971d8c 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Fast definition = monoprice_select_mini_v2 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pla +quality_type = draft +setting_version = 22 +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 8ed542e038..75f6f56c15 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Normal definition = monoprice_select_mini_v2 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = 0 material = generic_pla +quality_type = fast +setting_version = 22 +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 7dad8fc3ce..9b027f0f6c 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Finer definition = monoprice_select_mini_v2 +name = Finer +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +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 8b7becabcc..5e1ba97ead 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Fine definition = monoprice_select_mini_v2 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +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 871da63427..f38367832a 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Lowest Quality Draft definition = monoprice_select_mini_v2 +name = Lowest Quality Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -5 material = generic_pla +quality_type = superdraft +setting_version = 22 +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 0bb365b701..978d45d738 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Draft definition = monoprice_select_mini_v2 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = thickerdraft -weight = -3 material = generic_pla +quality_type = thickerdraft +setting_version = 22 +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 26c9a97cd4..cbdd2c0cba 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Ultra Fine definition = monoprice_select_mini_v2 +name = Ultra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra -weight = 2 material = generic_pla +quality_type = ultra +setting_version = 22 +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 2e3d7ee4b8..6fbe7ce0cd 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 @@ -1,11 +1,12 @@ [general] -version = 4 -name = Low Detail Draft definition = monoprice_select_mini_v2 +name = Low Detail Draft +version = 4 [metadata] -setting_version = 20 -type = quality material = generic_pla -weight = 0 quality_type = verydraft +setting_version = 22 +type = quality +weight = 0 + diff --git a/resources/quality/normal.inst.cfg b/resources/quality/normal.inst.cfg index 5e4fa02320..dc30e0e7e9 100644 --- a/resources/quality/normal.inst.cfg +++ b/resources/quality/normal.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Fine definition = fdmprinter +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] + diff --git a/resources/quality/nps/nps_ABS_A.inst.cfg b/resources/quality/nps/nps_ABS_A.inst.cfg new file mode 100644 index 0000000000..23debbdf17 --- /dev/null +++ b/resources/quality/nps/nps_ABS_A.inst.cfg @@ -0,0 +1,47 @@ +[general] +definition = nps +name = A +version = 4 + +[metadata] +material = generic_abs +quality_type = a +setting_version = 22 +type = quality +weight = 1 + +[values] +cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 19 * layer_height +cool_fan_speed = 35 +cool_fan_speed_max = 100 +cool_min_layer_time = 11 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 10 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_bed_temperature = 100 +material_flow = 100 +material_print_temperature = =default_material_print_temperature + 10 +material_print_temperature_layer_0 = =240 +retraction_extra_prime_amount = 0.1 +retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 35/50) +speed_wall_0 = =math.ceil(speed_wall * 30/35) +support_angle = 65 +support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 +support_xy_distance = =line_width * 1.7 +support_xy_distance_overhang = =wall_line_width_0 +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + diff --git a/resources/quality/nps/nps_ABS_B.inst.cfg b/resources/quality/nps/nps_ABS_B.inst.cfg new file mode 100644 index 0000000000..3f700405bd --- /dev/null +++ b/resources/quality/nps/nps_ABS_B.inst.cfg @@ -0,0 +1,43 @@ +[general] +definition = nps +name = B +version = 4 + +[metadata] +material = generic_abs +quality_type = b +setting_version = 22 +type = quality +weight = 0 + +[values] +cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 14 * layer_height +cool_fan_speed = 35 +cool_fan_speed_max = 100 +cool_min_layer_time = 11 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 10 +material_bed_temperature = 100 +material_flow = 96 +material_print_temperature = =default_material_print_temperature + 13 +material_print_temperature_layer_0 = =243 +prime_tower_enable = True +retraction_extra_prime_amount = 0.1 +retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_overlap = 15 +speed_layer_0 = =math.ceil(speed_print * 25/55) +speed_print = 55 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 37/55) +speed_wall_0 = =math.ceil(speed_wall * 33/37) +support_angle = 60 +support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 +support_xy_distance = =line_width * 1.7 +support_xy_distance_overhang = =wall_line_width_0 +support_z_distance = =layer_height + diff --git a/resources/quality/nps/nps_ABS_C.inst.cfg b/resources/quality/nps/nps_ABS_C.inst.cfg new file mode 100644 index 0000000000..6138e4004c --- /dev/null +++ b/resources/quality/nps/nps_ABS_C.inst.cfg @@ -0,0 +1,43 @@ +[general] +definition = nps +name = C +version = 4 + +[metadata] +material = generic_abs +quality_type = c +setting_version = 22 +type = quality +weight = -1 + +[values] +cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 9 * layer_height +cool_fan_speed = 35 +cool_fan_speed_max = 100 +cool_min_layer_time = 11 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 10 +material_bed_temperature = 100 +material_flow = 91 +material_print_temperature = =default_material_print_temperature + 15 +material_print_temperature_layer_0 = =245 +prime_tower_enable = True +retraction_extra_prime_amount = 0.1 +retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_overlap = 20 +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 60 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 40/60) +speed_wall_0 = =math.ceil(speed_wall * 35/40) +support_angle = 55 +support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 +support_xy_distance = =line_width * 1.7 +support_xy_distance_overhang = =wall_line_width_0 +support_z_distance = =layer_height + diff --git a/resources/quality/nps/nps_PC_A.inst.cfg b/resources/quality/nps/nps_PC_A.inst.cfg new file mode 100644 index 0000000000..8665f8ceae --- /dev/null +++ b/resources/quality/nps/nps_PC_A.inst.cfg @@ -0,0 +1,55 @@ +[general] +definition = nps +name = A +version = 4 + +[metadata] +material = generic_pc +quality_type = a +setting_version = 22 +type = quality +weight = 1 + +[values] +adhesion_type = brim +bridge_fan_speed = 100 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 100 +bridge_skin_speed = 12.5 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 12 +cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_fan_speed = 10 +cool_fan_speed_max = 10 +cool_lift_head = true +cool_min_layer_time = 2 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 12 +material_bed_temperature = 110 +material_flow = 100 +material_print_temperature = =default_material_print_temperature + 10 +material_print_temperature_layer_0 = =280 +prime_tower_enable = True +retraction_extra_prime_amount = 0.1 +retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +retraction_speed = 30 +skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/50) +speed_print = 35 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 35/50) +speed_wall_0 = =math.ceil(speed_wall * 30/35) +support_angle = 60 +support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 +support_xy_distance = =line_width * 1.7 +support_xy_distance_overhang = =wall_line_width_0 +support_z_distance = =layer_height +wall_line_count = 3 + diff --git a/resources/quality/nps/nps_PC_B.inst.cfg b/resources/quality/nps/nps_PC_B.inst.cfg new file mode 100644 index 0000000000..9ccb5cea53 --- /dev/null +++ b/resources/quality/nps/nps_PC_B.inst.cfg @@ -0,0 +1,55 @@ +[general] +definition = nps +name = B +version = 4 + +[metadata] +material = generic_pc +quality_type = b +setting_version = 22 +type = quality +weight = 0 + +[values] +adhesion_type = brim +bridge_fan_speed = 100 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 100 +bridge_skin_speed = 12.5 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 12 +cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_fan_speed = 10 +cool_fan_speed_max = 10 +cool_lift_head = true +cool_min_layer_time = 2 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 12 +material_bed_temperature = 110 +material_flow = 88 +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = 275 +prime_tower_enable = True +retraction_extra_prime_amount = 0.1 +retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +retraction_speed = 30 +skin_overlap = 15 +speed_layer_0 = =math.ceil(speed_print * 25/55) +speed_print = 35 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 37/55) +speed_wall_0 = =math.ceil(speed_wall * 33/37) +support_angle = 60 +support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 +support_xy_distance = =line_width * 1.7 +support_xy_distance_overhang = =wall_line_width_0 +support_z_distance = =layer_height +wall_line_count = 3 + diff --git a/resources/quality/nps/nps_PC_C.inst.cfg b/resources/quality/nps/nps_PC_C.inst.cfg new file mode 100644 index 0000000000..30267d4237 --- /dev/null +++ b/resources/quality/nps/nps_PC_C.inst.cfg @@ -0,0 +1,55 @@ +[general] +definition = nps +name = C +version = 4 + +[metadata] +material = generic_pc +quality_type = c +setting_version = 22 +type = quality +weight = -1 + +[values] +adhesion_type = brim +bridge_fan_speed = 100 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 100 +bridge_skin_speed = 12.5 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 12 +cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_fan_speed = 10 +cool_fan_speed_max = 10 +cool_lift_head = true +cool_min_layer_time = 2 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 12 +material_bed_temperature = 110 +material_flow = 88 +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = 275 +prime_tower_enable = True +retraction_extra_prime_amount = 0.1 +retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +retraction_speed = 30 +skin_overlap = 20 +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 35 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 40/60) +speed_wall_0 = =math.ceil(speed_wall * 35/40) +support_angle = 60 +support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 +support_xy_distance = =line_width * 1.7 +support_xy_distance_overhang = =wall_line_width_0 +support_z_distance = =layer_height +wall_line_count = 3 + diff --git a/resources/quality/nps/nps_PETG_A.inst.cfg b/resources/quality/nps/nps_PETG_A.inst.cfg new file mode 100644 index 0000000000..3cae430f1c --- /dev/null +++ b/resources/quality/nps/nps_PETG_A.inst.cfg @@ -0,0 +1,43 @@ +[general] +definition = nps +name = A +version = 4 + +[metadata] +material = generic_petg +quality_type = a +setting_version = 22 +type = quality +weight = 1 + +[values] +cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_fan_speed = 50 +cool_fan_speed_max = 100 +cool_min_layer_time = 11 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 10 +material_bed_temperature = 80 +material_flow = 98 +material_print_temperature = =default_material_print_temperature + 20 +material_print_temperature_layer_0 = =230 +prime_tower_enable = True +retraction_extra_prime_amount = 0 +retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 35/50) +speed_wall_0 = =math.ceil(speed_wall * 30/35) +support_angle = 65 +support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 +support_xy_distance = =line_width * 1.7 +support_xy_distance_overhang = =wall_line_width_0 +support_z_distance = =layer_height*2 + diff --git a/resources/quality/nps/nps_PETG_B.inst.cfg b/resources/quality/nps/nps_PETG_B.inst.cfg new file mode 100644 index 0000000000..5860f65414 --- /dev/null +++ b/resources/quality/nps/nps_PETG_B.inst.cfg @@ -0,0 +1,43 @@ +[general] +definition = nps +name = B +version = 4 + +[metadata] +material = generic_petg +quality_type = b +setting_version = 22 +type = quality +weight = 0 + +[values] +cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_fan_speed = 50 +cool_fan_speed_max = 100 +cool_min_layer_time = 11 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 10 +material_bed_temperature = 80 +material_flow = 95 +material_print_temperature = =default_material_print_temperature + 20 +material_print_temperature_layer_0 = =230 +prime_tower_enable = True +retraction_extra_prime_amount = 0 +retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_overlap = 15 +speed_layer_0 = =math.ceil(speed_print * 25/55) +speed_print = 55 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 37/55) +speed_wall_0 = =math.ceil(speed_wall * 33/37) +support_angle = 60 +support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 +support_xy_distance = =line_width * 1.7 +support_xy_distance_overhang = =wall_line_width_0 +support_z_distance = =layer_height*2 + diff --git a/resources/quality/nps/nps_PETG_C.inst.cfg b/resources/quality/nps/nps_PETG_C.inst.cfg new file mode 100644 index 0000000000..d35175fbc5 --- /dev/null +++ b/resources/quality/nps/nps_PETG_C.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = nps +name = C +version = 4 + +[metadata] +material = generic_petg +quality_type = c +setting_version = 22 +type = quality +weight = -1 + +[values] +cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_fan_speed = 50 +cool_fan_speed_max = 100 +cool_min_layer_time = 11 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 10 +material_bed_temperature = 80 +material_flow = 91 +material_print_temperature = =default_material_print_temperature + 20 +material_print_temperature_layer_0 = =230 +retraction_extra_prime_amount = 0 +retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_overlap = 20 +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 60 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 40/60) +speed_wall_0 = =math.ceil(speed_wall * 35/40) +support_angle = 55 +support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 +support_xy_distance = =line_width * 1.7 +support_xy_distance_overhang = =wall_line_width_0 +support_z_distance = =layer_height*2 + diff --git a/resources/quality/nps/nps_PLA_A.inst.cfg b/resources/quality/nps/nps_PLA_A.inst.cfg new file mode 100644 index 0000000000..6c557e4477 --- /dev/null +++ b/resources/quality/nps/nps_PLA_A.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = nps +name = A +version = 4 + +[metadata] +material = generic_pla +quality_type = a +setting_version = 22 +type = quality +weight = 1 + +[values] +cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_fan_speed = 100 +cool_fan_speed_max = 100 +cool_min_layer_time = 11 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 10 +material_bed_temperature = 60 +material_flow = 98 +material_print_temperature = =default_material_print_temperature + 15 +material_print_temperature_layer_0 = =210 +retraction_extra_prime_amount = 0.1 +retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 35/50) +speed_wall_0 = =math.ceil(speed_wall * 30/35) +support_angle = 65 +support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 +support_xy_distance = =line_width * 1.7 +support_xy_distance_overhang = =wall_line_width_0 +support_z_distance = =layer_height*2 + diff --git a/resources/quality/nps/nps_PLA_B.inst.cfg b/resources/quality/nps/nps_PLA_B.inst.cfg new file mode 100644 index 0000000000..02571aa0f5 --- /dev/null +++ b/resources/quality/nps/nps_PLA_B.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = nps +name = B +version = 4 + +[metadata] +material = generic_pla +quality_type = b +setting_version = 22 +type = quality +weight = 0 + +[values] +cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_fan_speed = 100 +cool_fan_speed_max = 100 +cool_min_layer_time = 11 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 10 +material_bed_temperature = 60 +material_flow = 100 +material_print_temperature = =default_material_print_temperature + 15 +material_print_temperature_layer_0 = =220 +retraction_extra_prime_amount = 0.0 +retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_overlap = 15 +speed_layer_0 = =math.ceil(speed_print * 25/55) +speed_print = 55 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 37/55) +speed_wall_0 = =math.ceil(speed_wall * 33/37) +support_angle = 60 +support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 +support_xy_distance = =line_width * 1.7 +support_xy_distance_overhang = =wall_line_width_0 +support_z_distance = =layer_height*2 + diff --git a/resources/quality/nps/nps_PLA_C.inst.cfg b/resources/quality/nps/nps_PLA_C.inst.cfg new file mode 100644 index 0000000000..6b12b4b169 --- /dev/null +++ b/resources/quality/nps/nps_PLA_C.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = nps +name = C +version = 4 + +[metadata] +material = generic_pla +quality_type = c +setting_version = 22 +type = quality +weight = -1 + +[values] +cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_fan_speed = 100 +cool_fan_speed_max = 100 +cool_min_layer_time = 11 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 10 +material_bed_temperature = 60 +material_flow = 91 +material_print_temperature = =default_material_print_temperature + 15 +material_print_temperature_layer_0 = =220 +retraction_extra_prime_amount = 0.1 +retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_overlap = 20 +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 60 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 40/60) +speed_wall_0 = =math.ceil(speed_wall * 35/40) +support_angle = 55 +support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 +support_xy_distance = =line_width * 1.7 +support_xy_distance_overhang = =wall_line_width_0 +support_z_distance = =layer_height*2 + diff --git a/resources/quality/nps/nps_TPU_A.inst.cfg b/resources/quality/nps/nps_TPU_A.inst.cfg new file mode 100644 index 0000000000..c706bf08e8 --- /dev/null +++ b/resources/quality/nps/nps_TPU_A.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = nps +name = A +version = 4 + +[metadata] +material = generic_tpu +quality_type = a +setting_version = 22 +type = quality +weight = 1 + +[values] +cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_fan_speed = 50 +cool_fan_speed_max = 100 +cool_min_layer_time = 11 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 10 +material_bed_temperature = 45 +material_flow = 107 +material_print_temperature = =default_material_print_temperature - 13 +material_print_temperature_layer_0 = =215 +retraction_extra_prime_amount = 0.2 +retraction_hop_only_when_collides = False +retraction_min_travel = =3*line_width +skin_overlap = 5 +speed_layer_0 = =math.ceil(speed_print * 20/30) +speed_print = 30 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 25/30) +speed_wall = =math.ceil(speed_print * 30/30) +speed_wall_0 = =math.ceil(speed_print * 25/30) +support_angle = 50 +support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 0.5 +support_xy_distance = =line_width * 2.5 +support_xy_distance_overhang = =wall_line_width_0 +support_z_distance = =layer_height*2 + diff --git a/resources/quality/nps/nps_TPU_B.inst.cfg b/resources/quality/nps/nps_TPU_B.inst.cfg new file mode 100644 index 0000000000..5841b4045c --- /dev/null +++ b/resources/quality/nps/nps_TPU_B.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = nps +name = B +version = 4 + +[metadata] +material = generic_tpu +quality_type = b +setting_version = 22 +type = quality +weight = 0 + +[values] +cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_fan_speed = 50 +cool_fan_speed_max = 100 +cool_min_layer_time = 11 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 10 +material_bed_temperature = 45 +material_flow = 103 +material_print_temperature = =default_material_print_temperature - 13 +material_print_temperature_layer_0 = =210 +retraction_extra_prime_amount = 0.2 +retraction_hop_only_when_collides = False +retraction_min_travel = =3*line_width +skin_overlap = 5 +speed_layer_0 = =math.ceil(speed_print * 20/35) +speed_print = 35 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 25/35) +speed_wall = =math.ceil(speed_print * 35/35) +speed_wall_0 = =math.ceil(speed_print * 27/35) +support_angle = 50 +support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 0.5 +support_xy_distance = =line_width * 2.5 +support_xy_distance_overhang = =wall_line_width_0 +support_z_distance = =layer_height*2 + diff --git a/resources/quality/nps/nps_TPU_C.inst.cfg b/resources/quality/nps/nps_TPU_C.inst.cfg new file mode 100644 index 0000000000..8ac308460c --- /dev/null +++ b/resources/quality/nps/nps_TPU_C.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = nps +name = C +version = 4 + +[metadata] +material = generic_tpu +quality_type = c +setting_version = 22 +type = quality +weight = -1 + +[values] +cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_fan_speed = 50 +cool_fan_speed_max = 100 +cool_min_layer_time = 11 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 10 +material_bed_temperature = 45 +material_flow = 101 +material_print_temperature = =default_material_print_temperature - 13 +material_print_temperature_layer_0 = =215 +retraction_extra_prime_amount = 0.2 +retraction_hop_only_when_collides = False +retraction_min_travel = =3*line_width +skin_overlap = 5 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 27/40) +speed_wall = =math.ceil(speed_print * 40/40) +speed_wall_0 = =math.ceil(speed_print * 30/40) +support_angle = 50 +support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 0.5 +support_xy_distance = =line_width * 2.5 +support_xy_distance_overhang = =wall_line_width_0 +support_z_distance = =layer_height*2 + diff --git a/resources/quality/nps/nps_global_A.inst.cfg b/resources/quality/nps/nps_global_A.inst.cfg new file mode 100644 index 0000000000..1cb73eb1b8 --- /dev/null +++ b/resources/quality/nps/nps_global_A.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = nps +name = Extra Fine Qualité +version = 4 + +[metadata] +global_quality = True +quality_type = a +setting_version = 22 +type = quality +weight = 0 + +[values] +layer_height = 0.1 +top_bottom_thickness = =5*layer_height + diff --git a/resources/quality/nps/nps_global_B.inst.cfg b/resources/quality/nps/nps_global_B.inst.cfg new file mode 100644 index 0000000000..89b4dabeab --- /dev/null +++ b/resources/quality/nps/nps_global_B.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = nps +name = Fine Qualité +version = 4 + +[metadata] +global_quality = True +quality_type = b +setting_version = 22 +type = quality +weight = 0 + +[values] +layer_height = 0.16 +top_bottom_thickness = =3*layer_height + diff --git a/resources/quality/nps/nps_global_C.inst.cfg b/resources/quality/nps/nps_global_C.inst.cfg new file mode 100644 index 0000000000..e8a4d989c3 --- /dev/null +++ b/resources/quality/nps/nps_global_C.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = nps +name = Haute qualité +version = 4 + +[metadata] +global_quality = True +quality_type = c +setting_version = 22 +type = quality +weight = 0 + +[values] +layer_height = 0.25 +top_bottom_thickness = =5*layer_height + diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg index 0a5c803589..fe29dcc017 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg @@ -1,120 +1,118 @@ - [general] -version = 4 -name = Best Quality definition = nwa3d_a31 +name = Best Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = best -weight = 1 global_quality = True +quality_type = best +setting_version = 22 +type = quality +weight = 1 [values] +acceleration_enabled = False +acceleration_roofing = 3000 +adhesion_type = skirt +alternate_extra_perimeter = False +bottom_layers = 3 +bottom_thickness = 0.6 +carve_multiple_volumes = False +cool_fan_enabled = True +cool_fan_full_at_height = 0.24 +cool_fan_speed = 100 +cool_fan_speed_0 = 0 +cool_lift_head = False +default_material_bed_temperature = 50 +default_material_print_temperature = 220 +fill_outline_gaps = True +gradual_infill_steps = 0 +gradual_support_infill_steps = 0 +infill_before_walls = False +infill_multiplier = 1 +infill_overlap = 10 +infill_sparse_density = 20 +infill_support_enabled = False +infill_wall_line_count = 0 +infill_wipe_dist = 0.1 +initial_layer_line_width_factor = 100 +ironing_enabled = False +jerk_enabled = False layer_height = 0.08 layer_height_0 = 0.24 line_width = 0.4 -wall_line_width_0 = 0.4 -initial_layer_line_width_factor = 100 -wall_thickness = 0.8 -wall_0_wipe_dist = 0.2 -roofing_layer_count = 1 -top_bottom_thickness = 0.6 -top_thickness = 0.8 -top_layers = 5 -bottom_thickness = 0.6 -bottom_layers = 3 -top_bottom_pattern = lines -top_bottom_pattern_0 = lines -wall_0_inset = 0 -optimize_wall_printing_order = False -inset_direction = inside_out -alternate_extra_perimeter = False -fill_outline_gaps = True -xy_offset = 0 -skin_no_small_gaps_heuristic = True -skin_outline_count = 1 -ironing_enabled = False -infill_sparse_density = 20 -zig_zaggify_infill = False -infill_multiplier = 1 -infill_wall_line_count = 0 -infill_overlap = 10 -skin_overlap = 5 -infill_wipe_dist = 0.1 -gradual_infill_steps = 0 -infill_before_walls = False -infill_support_enabled = False -max_skin_angle_for_expansion = 90 -default_material_print_temperature = 220 +material_bed_temperature = 50 +material_final_print_temperature = 220 +material_flow = 100 +material_initial_print_temperature = 220 material_print_temperature = 220 material_print_temperature_layer_0 = 220 -material_initial_print_temperature = 220 -material_final_print_temperature = 220 -default_material_bed_temperature = 50 -material_bed_temperature = 50 -material_flow = 100 -retraction_enable = True -retract_at_layer_change = False -retraction_amount = 5 -retraction_speed = 45 -retraction_extra_prime_amount = 0 -retraction_min_travel = 0.8 -retraction_count_max = 90 -retraction_extrusion_window = 5 -limit_support_retractions = True -switch_extruder_retraction_amount = 16 -switch_extruder_retraction_speeds = 20 -speed_print = 30 -speed_travel = 150 -speed_layer_0 = 10 -speed_travel_layer_0 = 50 -speed_slowdown_layers = 2 -acceleration_enabled = False -acceleration_roofing = 3000 -jerk_enabled = False -retraction_combing = off -travel_retract_before_outer_wall = False -retraction_hop_enabled = False -cool_fan_enabled = True -cool_fan_speed = 100 -cool_fan_speed_0 = 0 -cool_fan_full_at_height = 0.24 -cool_lift_head = False -support_enable = True -support_type = everywhere -support_angle = 50 -support_pattern = grid -support_wall_count = 0 -zig_zaggify_support = False -support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 -support_infill_angles = [0] -support_brim_enable = True -support_brim_line_count = 5 -support_z_distance = 0.2 -support_xy_distance = 0.7 -support_xy_distance_overhang = 0.2 -support_bottom_stair_step_height = 0.3 -support_bottom_stair_step_width = 5.0 -support_join_distance = 2.0 -support_offset = 0.2 -gradual_support_infill_steps = 0 -support_roof_enable = True -support_bottom_enable = False -support_roof_height = 0.45 -support_roof_density = 45 -support_roof_pattern = lines -support_fan_enable = False -support_use_towers = True -support_tower_diameter = 3 -support_tower_roof_angle = 65 -adhesion_type = skirt -skirt_line_count = 2 -skirt_gap = 3 -meshfix_union_all = True -meshfix_union_all_remove_holes = False +max_skin_angle_for_expansion = 90 meshfix_extensive_stitching = False meshfix_keep_open_polygons = False +meshfix_union_all = True +meshfix_union_all_remove_holes = False multiple_mesh_overlap = 0.16 -carve_multiple_volumes = False +optimize_wall_printing_order = False +retract_at_layer_change = False +retraction_amount = 5 +retraction_combing = off +retraction_count_max = 90 +retraction_enable = True +retraction_extra_prime_amount = 0 +retraction_extrusion_window = 5 +retraction_hop_enabled = False +retraction_min_travel = 0.8 +retraction_speed = 45 +roofing_layer_count = 1 +skin_no_small_gaps_heuristic = True +skin_outline_count = 1 +skin_overlap = 5 +skirt_gap = 3 +skirt_line_count = 2 +speed_layer_0 = 10 +speed_print = 30 +speed_slowdown_layers = 2 +speed_travel = 150 +speed_travel_layer_0 = 50 +support_angle = 50 +support_bottom_enable = False +support_bottom_stair_step_height = 0.3 +support_bottom_stair_step_width = 5.0 +support_brim_enable = True +support_brim_line_count = 5 +support_enable = True +support_fan_enable = False +support_infill_angles = [0] +support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 +support_join_distance = 2.0 +support_offset = 0.2 +support_pattern = grid +support_roof_density = 45 +support_roof_enable = True +support_roof_height = 0.45 +support_roof_pattern = lines +support_tower_diameter = 3 +support_tower_roof_angle = 65 +support_type = everywhere +support_use_towers = True +support_wall_count = 0 +support_xy_distance = 0.7 +support_xy_distance_overhang = 0.2 +support_z_distance = 0.2 +switch_extruder_retraction_amount = 16 +switch_extruder_retraction_speeds = 20 +top_bottom_pattern = lines +top_bottom_pattern_0 = lines +top_bottom_thickness = 0.6 +top_layers = 5 +top_thickness = 0.8 +travel_retract_before_outer_wall = False +wall_0_inset = 0 +wall_0_wipe_dist = 0.2 +wall_line_width_0 = 0.4 +wall_thickness = 0.8 +xy_offset = 0 +zig_zaggify_infill = False +zig_zaggify_support = False + diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg index 6464c434e6..3c4b16723c 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg @@ -1,116 +1,115 @@ [general] -version = 4 -name = 0.6 Engineering Quality definition = nwa3d_a31 +name = 0.6 Engineering Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = Engineering -weight = -2 global_quality = True +quality_type = Engineering +setting_version = 22 +type = quality +weight = -2 [values] +acceleration_enabled = False +adhesion_type = skirt +alternate_extra_perimeter = False +bottom_layers = 3 +carve_multiple_volumes = False +cool_fan_enabled = True +cool_fan_full_layer = 3 +cool_fan_speed = 100 +cool_fan_speed_0 = 0 +cool_lift_head = False +default_material_bed_temperature = 50 +default_material_print_temperature = 220 +fill_outline_gaps = True +gradual_infill_steps = 0 +gradual_support_infill_steps = 0 +infill_before_walls = False +infill_multiplier = 1 +infill_overlap = 10 +infill_sparse_density = 15 +infill_support_enabled = False +infill_wall_line_count = 0 +infill_wipe_dist = 0.15 +initial_layer_line_width_factor = 100 +ironing_enabled = False +jerk_enabled = False layer_height = 0.28 layer_height_0 = 0.4 line_width = 0.6 -wall_line_width_0 = 0.6 -initial_layer_line_width_factor = 100 -wall_thickness = 1.2 -wall_0_wipe_dist = 0.2 -roofing_layer_count = 1 -top_bottom_thickness = 1.2 -top_layers = 5 -bottom_layers = 3 -top_bottom_pattern = lines -top_bottom_pattern_0 = lines -wall_0_inset = 0 -optimize_wall_printing_order = False -inset_direction = inside_out -alternate_extra_perimeter = False -fill_outline_gaps = True -xy_offset = 0 -skin_no_small_gaps_heuristic = True -skin_outline_count = 1 -ironing_enabled = False -infill_sparse_density = 15 -zig_zaggify_infill = False -infill_multiplier = 1 -infill_wall_line_count = 0 -infill_overlap = 10 -skin_overlap = 5 -infill_wipe_dist = 0.15 -gradual_infill_steps = 0 -infill_before_walls = False -infill_support_enabled = False -max_skin_angle_for_expansion = 90 -default_material_print_temperature = 220 +material_bed_temperature = 50 +material_final_print_temperature = 220 +material_flow = 100 +material_initial_print_temperature = 220 material_print_temperature = 220 material_print_temperature_layer_0 = 220 -material_initial_print_temperature = 220 -material_final_print_temperature = 220 -default_material_bed_temperature = 50 -material_bed_temperature = 50 -material_flow = 100 -retraction_enable = True -retract_at_layer_change = False -retraction_amount = 5 -retraction_speed = 45 -retraction_extra_prime_amount = 0 -retraction_min_travel = 1.2 -retraction_count_max = 90 -retraction_extrusion_window = 5 -limit_support_retractions = True -switch_extruder_retraction_amount = 16 -switch_extruder_retraction_speeds = 20 -speed_print = 40 -speed_travel = 150 -speed_layer_0 = 10 -speed_travel_layer_0 = 40 -speed_slowdown_layers = 2 -acceleration_enabled = False -jerk_enabled = False -retraction_combing = off -travel_retract_before_outer_wall = False -retraction_hop_enabled = False -cool_fan_enabled = True -cool_fan_speed = 100 -cool_fan_speed_0 = 0 -cool_fan_full_layer = 3 -cool_lift_head = False -support_enable = True -support_type = everywhere -support_angle = 50 -support_pattern = grid -support_wall_count = 0 -zig_zaggify_support = False -support_infill_rate = =10 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 10 -support_infill_angles = [0] -support_brim_enable = True -support_brim_line_count = 5 -support_z_distance = 0.34 -support_xy_distance = 0.7 -support_xy_distance_overhang = 0.2 -support_bottom_stair_step_height = 0.3 -support_bottom_stair_step_width = 5.0 -support_join_distance = 2.0 -support_offset = 0.2 -gradual_support_infill_steps = 0 -support_roof_enable = True -support_bottom_enable = False -support_roof_height = .45 -support_roof_density = 45 -support_roof_pattern = grid -support_fan_enable = False -support_use_towers = True -support_tower_diameter = 3 -support_tower_roof_angle = 65 -adhesion_type = skirt -skirt_line_count = 2 -skirt_gap = 3 -meshfix_union_all = True -meshfix_union_all_remove_holes = False +max_skin_angle_for_expansion = 90 meshfix_extensive_stitching = False meshfix_keep_open_polygons = False +meshfix_union_all = True +meshfix_union_all_remove_holes = False multiple_mesh_overlap = 0.16 -carve_multiple_volumes = False +optimize_wall_printing_order = False +retract_at_layer_change = False +retraction_amount = 5 +retraction_combing = off +retraction_count_max = 90 +retraction_enable = True +retraction_extra_prime_amount = 0 +retraction_extrusion_window = 5 +retraction_hop_enabled = False +retraction_min_travel = 1.2 +retraction_speed = 45 +roofing_layer_count = 1 +skin_no_small_gaps_heuristic = True +skin_outline_count = 1 +skin_overlap = 5 +skirt_gap = 3 +skirt_line_count = 2 +speed_layer_0 = 10 +speed_print = 40 +speed_slowdown_layers = 2 +speed_travel = 150 +speed_travel_layer_0 = 40 +support_angle = 50 +support_bottom_enable = False +support_bottom_stair_step_height = 0.3 +support_bottom_stair_step_width = 5.0 +support_brim_enable = True +support_brim_line_count = 5 +support_enable = True +support_fan_enable = False +support_infill_angles = [0] +support_infill_rate = =10 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 10 +support_join_distance = 2.0 +support_offset = 0.2 +support_pattern = grid +support_roof_density = 45 +support_roof_enable = True +support_roof_height = .45 +support_roof_pattern = grid +support_tower_diameter = 3 +support_tower_roof_angle = 65 +support_type = everywhere +support_use_towers = True +support_wall_count = 0 +support_xy_distance = 0.7 +support_xy_distance_overhang = 0.2 +support_z_distance = 0.34 +switch_extruder_retraction_amount = 16 +switch_extruder_retraction_speeds = 20 +top_bottom_pattern = lines +top_bottom_pattern_0 = lines +top_bottom_thickness = 1.2 +top_layers = 5 +travel_retract_before_outer_wall = False +wall_0_inset = 0 +wall_0_wipe_dist = 0.2 +wall_line_width_0 = 0.6 +wall_thickness = 1.2 +xy_offset = 0 +zig_zaggify_infill = False +zig_zaggify_support = False + diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg index 6d7f1e8a94..a8351dd223 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg @@ -1,120 +1,118 @@ - [general] -version = 4 -name = Fast Quality definition = nwa3d_a31 +name = Fast Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] +acceleration_enabled = False +acceleration_roofing = 3000 +adhesion_type = skirt +alternate_extra_perimeter = False +bottom_layers = 3 +bottom_thickness = 0.6 +carve_multiple_volumes = False +cool_fan_enabled = True +cool_fan_full_at_height = 0.48 +cool_fan_speed = 100 +cool_fan_speed_0 = 0 +cool_lift_head = False +default_material_bed_temperature = 50 +default_material_print_temperature = 220 +fill_outline_gaps = True +gradual_infill_steps = 0 +gradual_support_infill_steps = 0 +infill_before_walls = False +infill_multiplier = 1 +infill_overlap = 10 +infill_sparse_density = 15 +infill_support_enabled = False +infill_wall_line_count = 0 +infill_wipe_dist = 0.1 +initial_layer_line_width_factor = 100 +ironing_enabled = False +jerk_enabled = False layer_height = 0.24 layer_height_0 = 0.24 line_width = 0.4 -wall_line_width_0 = 0.4 -initial_layer_line_width_factor = 100 -wall_thickness = 0.8 -wall_0_wipe_dist = 0.2 -roofing_layer_count = 1 -top_bottom_thickness = 0.6 -top_thickness = 0.8 -top_layers = 5 -bottom_thickness = 0.6 -bottom_layers = 3 -top_bottom_pattern = lines -top_bottom_pattern_0 = lines -wall_0_inset = 0 -optimize_wall_printing_order = False -inset_direction = inside_out -alternate_extra_perimeter = False -fill_outline_gaps = True -xy_offset = 0 -skin_no_small_gaps_heuristic = True -skin_outline_count = 1 -ironing_enabled = False -infill_sparse_density = 15 -zig_zaggify_infill = False -infill_multiplier = 1 -infill_wall_line_count = 0 -infill_overlap = 10 -skin_overlap = 5 -infill_wipe_dist = 0.1 -gradual_infill_steps = 0 -infill_before_walls = False -infill_support_enabled = False -max_skin_angle_for_expansion = 90 -default_material_print_temperature = 220 +material_bed_temperature = 50 +material_final_print_temperature = 220 +material_flow = 100 +material_initial_print_temperature = 220 material_print_temperature = 220 material_print_temperature_layer_0 = 220 -material_initial_print_temperature = 220 -material_final_print_temperature = 220 -default_material_bed_temperature = 50 -material_bed_temperature = 50 -material_flow = 100 -retraction_enable = True -retract_at_layer_change = False -retraction_amount = 5 -retraction_speed = 45 -retraction_extra_prime_amount = 0 -retraction_min_travel = 0.8 -retraction_count_max = 90 -retraction_extrusion_window = 5 -limit_support_retractions = True -switch_extruder_retraction_amount = 16 -switch_extruder_retraction_speeds = 20 -speed_print = 60 -speed_travel = 150 -speed_layer_0 = 10 -speed_travel_layer_0 = 50 -speed_slowdown_layers = 2 -acceleration_enabled = False -acceleration_roofing = 3000 -jerk_enabled = False -retraction_combing = off -travel_retract_before_outer_wall = False -retraction_hop_enabled = False -cool_fan_enabled = True -cool_fan_speed = 100 -cool_fan_speed_0 = 0 -cool_fan_full_at_height = 0.48 -cool_lift_head = False -support_enable = True -support_type = everywhere -support_angle = 50 -support_pattern = grid -support_wall_count = 0 -zig_zaggify_support = False -support_infill_rate = =15 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 15 -support_infill_angles = [0] -support_brim_enable = True -support_brim_line_count = 5 -support_z_distance = 0.3 -support_xy_distance = 0.7 -support_xy_distance_overhang = 0.2 -support_bottom_stair_step_height = 0.3 -support_bottom_stair_step_width = 5.0 -support_join_distance = 2.0 -support_offset = 0.2 -gradual_support_infill_steps = 0 -support_roof_enable = True -support_bottom_enable = False -support_roof_height = 0.45 -support_roof_density = 45 -support_roof_pattern = lines -support_fan_enable = False -support_use_towers = True -support_tower_diameter = 3 -support_tower_roof_angle = 65 -adhesion_type = skirt -skirt_line_count = 2 -skirt_gap = 3 -meshfix_union_all = True -meshfix_union_all_remove_holes = False +max_skin_angle_for_expansion = 90 meshfix_extensive_stitching = False meshfix_keep_open_polygons = False +meshfix_union_all = True +meshfix_union_all_remove_holes = False multiple_mesh_overlap = 0.16 -carve_multiple_volumes = False +optimize_wall_printing_order = False +retract_at_layer_change = False +retraction_amount = 5 +retraction_combing = off +retraction_count_max = 90 +retraction_enable = True +retraction_extra_prime_amount = 0 +retraction_extrusion_window = 5 +retraction_hop_enabled = False +retraction_min_travel = 0.8 +retraction_speed = 45 +roofing_layer_count = 1 +skin_no_small_gaps_heuristic = True +skin_outline_count = 1 +skin_overlap = 5 +skirt_gap = 3 +skirt_line_count = 2 +speed_layer_0 = 10 +speed_print = 60 +speed_slowdown_layers = 2 +speed_travel = 150 +speed_travel_layer_0 = 50 +support_angle = 50 +support_bottom_enable = False +support_bottom_stair_step_height = 0.3 +support_bottom_stair_step_width = 5.0 +support_brim_enable = True +support_brim_line_count = 5 +support_enable = True +support_fan_enable = False +support_infill_angles = [0] +support_infill_rate = =15 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 15 +support_join_distance = 2.0 +support_offset = 0.2 +support_pattern = grid +support_roof_density = 45 +support_roof_enable = True +support_roof_height = 0.45 +support_roof_pattern = lines +support_tower_diameter = 3 +support_tower_roof_angle = 65 +support_type = everywhere +support_use_towers = True +support_wall_count = 0 +support_xy_distance = 0.7 +support_xy_distance_overhang = 0.2 +support_z_distance = 0.3 +switch_extruder_retraction_amount = 16 +switch_extruder_retraction_speeds = 20 +top_bottom_pattern = lines +top_bottom_pattern_0 = lines +top_bottom_thickness = 0.6 +top_layers = 5 +top_thickness = 0.8 +travel_retract_before_outer_wall = False +wall_0_inset = 0 +wall_0_wipe_dist = 0.2 +wall_line_width_0 = 0.4 +wall_thickness = 0.8 +xy_offset = 0 +zig_zaggify_infill = False +zig_zaggify_support = False + diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg index 51d9607d02..8c65da3d3a 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg @@ -1,119 +1,118 @@ [general] -version = 4 -name = Normal Quality definition = nwa3d_a31 +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] +acceleration_enabled = False +acceleration_roofing = 3000 +adhesion_type = skirt +alternate_extra_perimeter = False +bottom_layers = 3 +bottom_thickness = 0.6 +carve_multiple_volumes = False +cool_fan_enabled = True +cool_fan_full_at_height = 0.32 +cool_fan_speed = 100 +cool_fan_speed_0 = 0 +cool_lift_head = False +default_material_bed_temperature = 50 +default_material_print_temperature = 220 +fill_outline_gaps = True +gradual_infill_steps = 0 +gradual_support_infill_steps = 0 +infill_before_walls = False +infill_multiplier = 1 +infill_overlap = 10 +infill_sparse_density = 20 +infill_support_enabled = False +infill_wall_line_count = 0 +infill_wipe_dist = 0.1 +initial_layer_line_width_factor = 100 +ironing_enabled = False +jerk_enabled = False layer_height = 0.16 layer_height_0 = 0.24 line_width = 0.4 -wall_line_width_0 = 0.4 -initial_layer_line_width_factor = 100 -wall_thickness = 0.8 -wall_0_wipe_dist = 0.2 -roofing_layer_count = 1 -top_bottom_thickness = 0.6 -top_thickness = 0.8 -top_layers = 5 -bottom_thickness = 0.6 -bottom_layers = 3 -top_bottom_pattern = lines -top_bottom_pattern_0 = lines -wall_0_inset = 0 -optimize_wall_printing_order = False -inset_direction = inside_out -alternate_extra_perimeter = False -fill_outline_gaps = True -xy_offset = 0 -skin_no_small_gaps_heuristic = True -skin_outline_count = 1 -ironing_enabled = False -infill_sparse_density = 20 -zig_zaggify_infill = False -infill_multiplier = 1 -infill_wall_line_count = 0 -infill_overlap = 10 -skin_overlap = 5 -infill_wipe_dist = 0.1 -gradual_infill_steps = 0 -infill_before_walls = False -infill_support_enabled = False -max_skin_angle_for_expansion = 90 -default_material_print_temperature = 220 +material_bed_temperature = 50 +material_final_print_temperature = 220 +material_flow = 100 +material_initial_print_temperature = 220 material_print_temperature = 220 material_print_temperature_layer_0 = 220 -material_initial_print_temperature = 220 -material_final_print_temperature = 220 -default_material_bed_temperature = 50 -material_bed_temperature = 50 -material_flow = 100 -retraction_enable = True -retract_at_layer_change = False -retraction_amount = 5 -retraction_speed = 45 -retraction_extra_prime_amount = 0 -retraction_min_travel = 0.8 -retraction_count_max = 90 -retraction_extrusion_window = 5 -limit_support_retractions = True -switch_extruder_retraction_amount = 16 -switch_extruder_retraction_speeds = 20 -speed_print = 50 -speed_travel = 150 -speed_layer_0 = 10 -speed_travel_layer_0 = 50 -speed_slowdown_layers = 2 -acceleration_enabled = False -acceleration_roofing = 3000 -jerk_enabled = False -retraction_combing = off -travel_retract_before_outer_wall = False -retraction_hop_enabled = False -cool_fan_enabled = True -cool_fan_speed = 100 -cool_fan_speed_0 = 0 -cool_fan_full_at_height = 0.32 -cool_lift_head = False -support_enable = True -support_type = everywhere -support_angle = 50 -support_pattern = grid -support_wall_count = 0 -zig_zaggify_support = False -support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 -support_infill_angles = [0] -support_brim_enable = True -support_brim_line_count = 5 -support_z_distance = 0.21 -support_xy_distance = 0.7 -support_xy_distance_overhang = 0.2 -support_bottom_stair_step_height = 0.3 -support_bottom_stair_step_width = 5.0 -support_join_distance = 2.0 -support_offset = 0.2 -gradual_support_infill_steps = 0 -support_roof_enable = True -support_bottom_enable = False -support_roof_height = 0.45 -support_roof_density = 45 -support_roof_pattern = lines -support_fan_enable = False -support_use_towers = True -support_tower_diameter = 3 -support_tower_roof_angle = 65 -adhesion_type = skirt -skirt_line_count = 2 -skirt_gap = 3 -meshfix_union_all = True -meshfix_union_all_remove_holes = False +max_skin_angle_for_expansion = 90 meshfix_extensive_stitching = False meshfix_keep_open_polygons = False +meshfix_union_all = True +meshfix_union_all_remove_holes = False multiple_mesh_overlap = 0.16 -carve_multiple_volumes = False +optimize_wall_printing_order = False +retract_at_layer_change = False +retraction_amount = 5 +retraction_combing = off +retraction_count_max = 90 +retraction_enable = True +retraction_extra_prime_amount = 0 +retraction_extrusion_window = 5 +retraction_hop_enabled = False +retraction_min_travel = 0.8 +retraction_speed = 45 +roofing_layer_count = 1 +skin_no_small_gaps_heuristic = True +skin_outline_count = 1 +skin_overlap = 5 +skirt_gap = 3 +skirt_line_count = 2 +speed_layer_0 = 10 +speed_print = 50 +speed_slowdown_layers = 2 +speed_travel = 150 +speed_travel_layer_0 = 50 +support_angle = 50 +support_bottom_enable = False +support_bottom_stair_step_height = 0.3 +support_bottom_stair_step_width = 5.0 +support_brim_enable = True +support_brim_line_count = 5 +support_enable = True +support_fan_enable = False +support_infill_angles = [0] +support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 +support_join_distance = 2.0 +support_offset = 0.2 +support_pattern = grid +support_roof_density = 45 +support_roof_enable = True +support_roof_height = 0.45 +support_roof_pattern = lines +support_tower_diameter = 3 +support_tower_roof_angle = 65 +support_type = everywhere +support_use_towers = True +support_wall_count = 0 +support_xy_distance = 0.7 +support_xy_distance_overhang = 0.2 +support_z_distance = 0.21 +switch_extruder_retraction_amount = 16 +switch_extruder_retraction_speeds = 20 +top_bottom_pattern = lines +top_bottom_pattern_0 = lines +top_bottom_thickness = 0.6 +top_layers = 5 +top_thickness = 0.8 +travel_retract_before_outer_wall = False +wall_0_inset = 0 +wall_0_wipe_dist = 0.2 +wall_line_width_0 = 0.4 +wall_thickness = 0.8 +xy_offset = 0 +zig_zaggify_infill = False +zig_zaggify_support = False + diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg index ad80497cf8..d6f6c73c98 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg @@ -1,123 +1,117 @@ [general] -version = 4 -name = Best Quality definition = nwa3d_a5 +name = Best Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = best -weight = 1 global_quality = True +quality_type = best +setting_version = 22 +type = quality +weight = 1 [values] +acceleration_enabled = False +acceleration_roofing = 3000 +adhesion_type = skirt +alternate_extra_perimeter = False +bottom_layers = 3 +bottom_thickness = 0.6 +carve_multiple_volumes = False +cool_fan_enabled = True +cool_fan_full_at_height = 0.24 +cool_fan_speed = 100 +cool_fan_speed_0 = 0 +cool_lift_head = False +default_material_bed_temperature = 0 +default_material_print_temperature = 220 +fill_outline_gaps = True +gradual_infill_steps = 0 +gradual_support_infill_steps = 0 +infill_before_walls = False +infill_multiplier = 1 +infill_overlap = 10 +infill_sparse_density = 20 +infill_support_enabled = False +infill_wall_line_count = 0 +infill_wipe_dist = 0.1 +initial_layer_line_width_factor = 100 +ironing_enabled = False +jerk_enabled = False layer_height = 0.08 layer_height_0 = 0.24 line_width = 0.4 -initial_layer_line_width_factor = 100 -wall_thickness = 0.8 -wall_0_wipe_dist = 0.2 -roofing_layer_count = 1 -top_bottom_thickness = 0.6 -top_thickness = 0.8 -top_layers = 5 -bottom_thickness = 0.6 -bottom_layers = 3 -top_bottom_pattern = lines -top_bottom_pattern_0 = lines -wall_0_inset = 0 -optimize_wall_printing_order = False -inset_direction = inside_out -alternate_extra_perimeter = False -fill_outline_gaps = True -xy_offset = 0 -skin_no_small_gaps_heuristic = True -skin_outline_count = 1 -ironing_enabled = False -infill_sparse_density = 20 -zig_zaggify_infill = False -infill_multiplier = 1 -infill_wall_line_count = 0 -infill_overlap = 10 -skin_overlap = 5 -infill_wipe_dist = 0.1 -gradual_infill_steps = 0 -infill_before_walls = False -infill_support_enabled = False -max_skin_angle_for_expansion = 90 -default_material_print_temperature = 220 +material_bed_temperature = 0 +material_final_print_temperature = 220 +material_flow = 100 +material_initial_print_temperature = 220 material_print_temperature = 220 material_print_temperature_layer_0 = 220 -material_initial_print_temperature = 220 -material_final_print_temperature = 220 -default_material_bed_temperature = 0 -material_bed_temperature = 0 -material_flow = 100 -retraction_enable = True -retract_at_layer_change = False -retraction_amount = 5 -retraction_speed = 45 -retraction_extra_prime_amount = 0 -retraction_min_travel = 0.8 -retraction_count_max = 90 -retraction_extrusion_window = 5 -limit_support_retractions = True -switch_extruder_retraction_amount = 16 -switch_extruder_retraction_speeds = 20 -speed_print = 30 -speed_travel = 150 -speed_layer_0 = 10 -speed_travel_layer_0 = 50 -speed_slowdown_layers = 2 -acceleration_enabled = False -acceleration_roofing = 3000 -jerk_enabled = False -retraction_combing = off -travel_retract_before_outer_wall = False -retraction_hop_enabled = False -cool_fan_enabled = True -cool_fan_speed = 100 -cool_fan_speed_0 = 0 -cool_fan_full_at_height = 0.24 -cool_lift_head = False -support_enable = True -support_type = everywhere -support_angle = 50 -support_pattern = grid -support_wall_count = 0 -zig_zaggify_support = False -support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 -support_infill_angles = [0] -support_brim_enable = True -support_brim_line_count = 5 -support_z_distance = 0.18 -support_xy_distance = 0.7 -support_xy_distance_overhang = 0.2 -support_bottom_stair_step_height = 0.3 -support_bottom_stair_step_width = 5.0 -support_join_distance = 2.0 -support_offset = 0.2 -gradual_support_infill_steps = 0 -support_roof_enable = True -support_bottom_enable = False -support_roof_height = 0.45 -support_roof_density = 45 -support_roof_pattern = lines -support_fan_enable = False -support_use_towers = True -support_tower_diameter = 3 -support_tower_roof_angle = 65 -adhesion_type = skirt -skirt_line_count = 2 -skirt_gap = 3 -meshfix_union_all = True -meshfix_union_all_remove_holes = False +max_skin_angle_for_expansion = 90 meshfix_extensive_stitching = False meshfix_keep_open_polygons = False +meshfix_union_all = True +meshfix_union_all_remove_holes = False multiple_mesh_overlap = 0.16 -carve_multiple_volumes = False - - - - +optimize_wall_printing_order = False +retract_at_layer_change = False +retraction_amount = 5 +retraction_combing = off +retraction_count_max = 90 +retraction_enable = True +retraction_extra_prime_amount = 0 +retraction_extrusion_window = 5 +retraction_hop_enabled = False +retraction_min_travel = 0.8 +retraction_speed = 45 +roofing_layer_count = 1 +skin_no_small_gaps_heuristic = True +skin_outline_count = 1 +skin_overlap = 5 +skirt_gap = 3 +skirt_line_count = 2 +speed_layer_0 = 10 +speed_print = 30 +speed_slowdown_layers = 2 +speed_travel = 150 +speed_travel_layer_0 = 50 +support_angle = 50 +support_bottom_enable = False +support_bottom_stair_step_height = 0.3 +support_bottom_stair_step_width = 5.0 +support_brim_enable = True +support_brim_line_count = 5 +support_enable = True +support_fan_enable = False +support_infill_angles = [0] +support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 +support_join_distance = 2.0 +support_offset = 0.2 +support_pattern = grid +support_roof_density = 45 +support_roof_enable = True +support_roof_height = 0.45 +support_roof_pattern = lines +support_tower_diameter = 3 +support_tower_roof_angle = 65 +support_type = everywhere +support_use_towers = True +support_wall_count = 0 +support_xy_distance = 0.7 +support_xy_distance_overhang = 0.2 +support_z_distance = 0.18 +switch_extruder_retraction_amount = 16 +switch_extruder_retraction_speeds = 20 +top_bottom_pattern = lines +top_bottom_pattern_0 = lines +top_bottom_thickness = 0.6 +top_layers = 5 +top_thickness = 0.8 +travel_retract_before_outer_wall = False +wall_0_inset = 0 +wall_0_wipe_dist = 0.2 +wall_thickness = 0.8 +xy_offset = 0 +zig_zaggify_infill = False +zig_zaggify_support = False diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg index 4001c60204..d92ff21e1a 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg @@ -1,118 +1,117 @@ [general] -version = 4 -name = Fast Quality definition = nwa3d_a5 +name = Fast Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] +acceleration_enabled = False +acceleration_roofing = 3000 +adhesion_type = skirt +alternate_extra_perimeter = False +bottom_layers = 3 +bottom_thickness = 0.6 +carve_multiple_volumes = False +cool_fan_enabled = True +cool_fan_full_at_height = 0.48 +cool_fan_speed = 100 +cool_fan_speed_0 = 0 +cool_lift_head = False +default_material_bed_temperature = 0 +default_material_print_temperature = 220 +fill_outline_gaps = True +gradual_infill_steps = 0 +gradual_support_infill_steps = 0 +infill_before_walls = False +infill_multiplier = 1 +infill_overlap = 10 +infill_sparse_density = 15 +infill_support_enabled = False +infill_wall_line_count = 0 +infill_wipe_dist = 0.1 +initial_layer_line_width_factor = 100 +ironing_enabled = False +jerk_enabled = False layer_height = 0.24 layer_height_0 = 0.24 line_width = 0.4 -initial_layer_line_width_factor = 100 -wall_thickness = 0.8 -wall_0_wipe_dist = 0.2 -roofing_layer_count = 1 -top_bottom_thickness = 0.6 -top_thickness = 0.8 -top_layers = 5 -bottom_thickness = 0.6 -bottom_layers = 3 -top_bottom_pattern = lines -top_bottom_pattern_0 = lines -wall_0_inset = 0 -optimize_wall_printing_order = False -inset_direction = inside_out -alternate_extra_perimeter = False -fill_outline_gaps = True -xy_offset = 0 -skin_no_small_gaps_heuristic = True -skin_outline_count = 1 -ironing_enabled = False -infill_sparse_density = 15 -zig_zaggify_infill = False -infill_multiplier = 1 -infill_wall_line_count = 0 -infill_overlap = 10 -skin_overlap = 5 -infill_wipe_dist = 0.1 -gradual_infill_steps = 0 -infill_before_walls = False -infill_support_enabled = False -max_skin_angle_for_expansion = 90 -default_material_print_temperature = 220 +material_bed_temperature = 0 +material_final_print_temperature = 220 +material_flow = 100 +material_initial_print_temperature = 220 material_print_temperature = 220 material_print_temperature_layer_0 = 220 -material_initial_print_temperature = 220 -material_final_print_temperature = 220 -default_material_bed_temperature = 0 -material_bed_temperature = 0 -material_flow = 100 -retraction_enable = True -retract_at_layer_change = False -retraction_amount = 5 -retraction_speed = 45 -retraction_extra_prime_amount = 0 -retraction_min_travel = 0.8 -retraction_count_max = 90 -retraction_extrusion_window = 5 -limit_support_retractions = True -switch_extruder_retraction_amount = 16 -switch_extruder_retraction_speeds = 20 -speed_print = 60 -speed_travel = 150 -speed_layer_0 = 10 -speed_travel_layer_0 = 50 -speed_slowdown_layers = 2 -acceleration_enabled = False -acceleration_roofing = 3000 -jerk_enabled = False -retraction_combing = off -travel_retract_before_outer_wall = False -retraction_hop_enabled = False -cool_fan_enabled = True -cool_fan_speed = 100 -cool_fan_speed_0 = 0 -cool_fan_full_at_height = 0.48 -cool_lift_head = False -support_enable = True -support_type = everywhere -support_angle = 50 -support_pattern = grid -support_wall_count = 0 -zig_zaggify_support = False -support_infill_rate = =15 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 15 -support_infill_angles = [0] -support_brim_enable = True -support_brim_line_count = 5 -support_z_distance = 0.3 -support_xy_distance = 0.7 -support_xy_distance_overhang = 0.2 -support_bottom_stair_step_height = 0.3 -support_bottom_stair_step_width = 5.0 -support_join_distance = 2.0 -support_offset = 0.2 -gradual_support_infill_steps = 0 -support_roof_enable = True -support_bottom_enable = False -support_roof_height = 0.45 -support_roof_density = 45 -support_roof_pattern = lines -support_fan_enable = False -support_use_towers = True -support_tower_diameter = 3 -support_tower_roof_angle = 65 -adhesion_type = skirt -skirt_line_count = 2 -skirt_gap = 3 -meshfix_union_all = True -meshfix_union_all_remove_holes = False +max_skin_angle_for_expansion = 90 meshfix_extensive_stitching = False meshfix_keep_open_polygons = False +meshfix_union_all = True +meshfix_union_all_remove_holes = False multiple_mesh_overlap = 0.16 -carve_multiple_volumes = False +optimize_wall_printing_order = False +retract_at_layer_change = False +retraction_amount = 5 +retraction_combing = off +retraction_count_max = 90 +retraction_enable = True +retraction_extra_prime_amount = 0 +retraction_extrusion_window = 5 +retraction_hop_enabled = False +retraction_min_travel = 0.8 +retraction_speed = 45 +roofing_layer_count = 1 +skin_no_small_gaps_heuristic = True +skin_outline_count = 1 +skin_overlap = 5 +skirt_gap = 3 +skirt_line_count = 2 +speed_layer_0 = 10 +speed_print = 60 +speed_slowdown_layers = 2 +speed_travel = 150 +speed_travel_layer_0 = 50 +support_angle = 50 +support_bottom_enable = False +support_bottom_stair_step_height = 0.3 +support_bottom_stair_step_width = 5.0 +support_brim_enable = True +support_brim_line_count = 5 +support_enable = True +support_fan_enable = False +support_infill_angles = [0] +support_infill_rate = =15 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 15 +support_join_distance = 2.0 +support_offset = 0.2 +support_pattern = grid +support_roof_density = 45 +support_roof_enable = True +support_roof_height = 0.45 +support_roof_pattern = lines +support_tower_diameter = 3 +support_tower_roof_angle = 65 +support_type = everywhere +support_use_towers = True +support_wall_count = 0 +support_xy_distance = 0.7 +support_xy_distance_overhang = 0.2 +support_z_distance = 0.3 +switch_extruder_retraction_amount = 16 +switch_extruder_retraction_speeds = 20 +top_bottom_pattern = lines +top_bottom_pattern_0 = lines +top_bottom_thickness = 0.6 +top_layers = 5 +top_thickness = 0.8 +travel_retract_before_outer_wall = False +wall_0_inset = 0 +wall_0_wipe_dist = 0.2 +wall_thickness = 0.8 +xy_offset = 0 +zig_zaggify_infill = False +zig_zaggify_support = False + diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg index 05ac62cb57..860c295c18 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg @@ -1,118 +1,117 @@ [general] -version = 4 -name = Normal Quality definition = nwa3d_a5 +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] +acceleration_enabled = False +acceleration_roofing = 3000 +adhesion_type = skirt +alternate_extra_perimeter = False +bottom_layers = 3 +bottom_thickness = 0.6 +carve_multiple_volumes = False +cool_fan_enabled = True +cool_fan_full_at_height = 0.32 +cool_fan_speed = 100 +cool_fan_speed_0 = 0 +cool_lift_head = False +default_material_bed_temperature = 0 +default_material_print_temperature = 220 +fill_outline_gaps = True +gradual_infill_steps = 0 +gradual_support_infill_steps = 0 +infill_before_walls = False +infill_multiplier = 1 +infill_overlap = 10 +infill_sparse_density = 20 +infill_support_enabled = False +infill_wall_line_count = 0 +infill_wipe_dist = 0.1 +initial_layer_line_width_factor = 100 +ironing_enabled = False +jerk_enabled = False layer_height = 0.16 layer_height_0 = 0.24 line_width = 0.4 -initial_layer_line_width_factor = 100 -wall_thickness = 0.8 -wall_0_wipe_dist = 0.2 -roofing_layer_count = 1 -top_bottom_thickness = 0.6 -top_thickness = 0.8 -top_layers = 5 -bottom_thickness = 0.6 -bottom_layers = 3 -top_bottom_pattern = lines -top_bottom_pattern_0 = lines -wall_0_inset = 0 -optimize_wall_printing_order = False -inset_direction = inside_out -alternate_extra_perimeter = False -fill_outline_gaps = True -xy_offset = 0 -skin_no_small_gaps_heuristic = True -skin_outline_count = 1 -ironing_enabled = False -infill_sparse_density = 20 -zig_zaggify_infill = False -infill_multiplier = 1 -infill_wall_line_count = 0 -infill_overlap = 10 -skin_overlap = 5 -infill_wipe_dist = 0.1 -gradual_infill_steps = 0 -infill_before_walls = False -infill_support_enabled = False -max_skin_angle_for_expansion = 90 -default_material_print_temperature = 220 +material_bed_temperature = 0 +material_final_print_temperature = 220 +material_flow = 100 +material_initial_print_temperature = 220 material_print_temperature = 220 material_print_temperature_layer_0 = 220 -material_initial_print_temperature = 220 -material_final_print_temperature = 220 -default_material_bed_temperature = 0 -material_bed_temperature = 0 -material_flow = 100 -retraction_enable = True -retract_at_layer_change = False -retraction_amount = 5 -retraction_speed = 45 -retraction_extra_prime_amount = 0 -retraction_min_travel = 0.8 -retraction_count_max = 90 -retraction_extrusion_window = 5 -limit_support_retractions = True -switch_extruder_retraction_amount = 16 -switch_extruder_retraction_speeds = 20 -speed_print = 50 -speed_travel = 150 -speed_layer_0 = 10 -speed_travel_layer_0 = 50 -speed_slowdown_layers = 2 -acceleration_enabled = False -acceleration_roofing = 3000 -jerk_enabled = False -retraction_combing = off -travel_retract_before_outer_wall = False -retraction_hop_enabled = False -cool_fan_enabled = True -cool_fan_speed = 100 -cool_fan_speed_0 = 0 -cool_fan_full_at_height = 0.32 -cool_lift_head = False -support_enable = True -support_type = everywhere -support_angle = 50 -support_pattern = grid -support_wall_count = 0 -zig_zaggify_support = False -support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 -support_infill_angles = [0] -support_brim_enable = True -support_brim_line_count = 5 -support_z_distance = 0.21 -support_xy_distance = 0.7 -support_xy_distance_overhang = 0.2 -support_bottom_stair_step_height = 0.3 -support_bottom_stair_step_width = 5.0 -support_join_distance = 2.0 -support_offset = 0.2 -gradual_support_infill_steps = 0 -support_roof_enable = True -support_bottom_enable = False -support_roof_height = 0.45 -support_roof_density = 45 -support_roof_pattern = lines -support_fan_enable = False -support_use_towers = True -support_tower_diameter = 3 -support_tower_roof_angle = 65 -adhesion_type = skirt -skirt_line_count = 2 -skirt_gap = 3 -meshfix_union_all = True -meshfix_union_all_remove_holes = False +max_skin_angle_for_expansion = 90 meshfix_extensive_stitching = False meshfix_keep_open_polygons = False +meshfix_union_all = True +meshfix_union_all_remove_holes = False multiple_mesh_overlap = 0.16 -carve_multiple_volumes = False +optimize_wall_printing_order = False +retract_at_layer_change = False +retraction_amount = 5 +retraction_combing = off +retraction_count_max = 90 +retraction_enable = True +retraction_extra_prime_amount = 0 +retraction_extrusion_window = 5 +retraction_hop_enabled = False +retraction_min_travel = 0.8 +retraction_speed = 45 +roofing_layer_count = 1 +skin_no_small_gaps_heuristic = True +skin_outline_count = 1 +skin_overlap = 5 +skirt_gap = 3 +skirt_line_count = 2 +speed_layer_0 = 10 +speed_print = 50 +speed_slowdown_layers = 2 +speed_travel = 150 +speed_travel_layer_0 = 50 +support_angle = 50 +support_bottom_enable = False +support_bottom_stair_step_height = 0.3 +support_bottom_stair_step_width = 5.0 +support_brim_enable = True +support_brim_line_count = 5 +support_enable = True +support_fan_enable = False +support_infill_angles = [0] +support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 +support_join_distance = 2.0 +support_offset = 0.2 +support_pattern = grid +support_roof_density = 45 +support_roof_enable = True +support_roof_height = 0.45 +support_roof_pattern = lines +support_tower_diameter = 3 +support_tower_roof_angle = 65 +support_type = everywhere +support_use_towers = True +support_wall_count = 0 +support_xy_distance = 0.7 +support_xy_distance_overhang = 0.2 +support_z_distance = 0.21 +switch_extruder_retraction_amount = 16 +switch_extruder_retraction_speeds = 20 +top_bottom_pattern = lines +top_bottom_pattern_0 = lines +top_bottom_thickness = 0.6 +top_layers = 5 +top_thickness = 0.8 +travel_retract_before_outer_wall = False +wall_0_inset = 0 +wall_0_wipe_dist = 0.2 +wall_thickness = 0.8 +xy_offset = 0 +zig_zaggify_infill = False +zig_zaggify_support = False + diff --git a/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg index f2dc8c271f..9b83b18c6f 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Coarse definition = peopoly_moai +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 3 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = 3 [values] layer_height = 0.08 @@ -16,3 +16,4 @@ speed_print = 90 speed_travel = 120 speed_travel_layer_0 = 100 speed_wall = 90 + diff --git a/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg index 1297a02efa..ee6b848ec3 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg @@ -1,19 +1,20 @@ [general] -version = 4 -name = Draft definition = peopoly_moai +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] layer_height = 0.1 speed_print = 85 +speed_slowdown_layers = 2 speed_travel = 120 speed_travel_layer_0 = 100 speed_wall = 85 -speed_slowdown_layers = 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 3e3c888bb9..77fa8652b3 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg @@ -1,19 +1,20 @@ [general] -version = 4 -name = Extra High definition = peopoly_moai +name = Extra High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra_high -weight = 0 global_quality = True +quality_type = extra_high +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.02 speed_print = 185 +speed_slowdown_layers = 5 speed_travel = 185 speed_travel_layer_0 = 100 speed_wall = 185 -speed_slowdown_layers = 5 + diff --git a/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg index 8deddf8fa4..9385278952 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg @@ -1,19 +1,20 @@ [general] -version = 4 -name = High definition = peopoly_moai +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] layer_height = 0.04 speed_print = 140 +speed_slowdown_layers = 4 speed_travel = 140 speed_travel_layer_0 = 100 speed_wall = 140 -speed_slowdown_layers = 4 + diff --git a/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg index 902f762c13..a996b30c8a 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Normal definition = peopoly_moai +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.06 @@ -16,3 +16,4 @@ speed_print = 120 speed_travel = 120 speed_travel_layer_0 = 100 speed_wall = 120 + 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 91485b44c7..9436f1214d 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 @@ -1,15 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = rigid3d_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality [values] cool_fan_enabled = False -default_material_print_temperature = 240 -default_material_bed_temperature = 100 +material_bed_temperature = =default_material_bed_temperature + 20 +material_print_temperature = =default_material_print_temperature + 5 + 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 223f2866f9..7075fd5cdb 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Good Quality definition = rigid3d_base +name = Good Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = good material = generic_abs +quality_type = good +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] cool_fan_enabled = False -default_material_print_temperature = 235 -default_material_bed_temperature = 100 \ No newline at end of file +material_bed_temperature = =default_material_bed_temperature + 20 + 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 b194edea3a..11449b3724 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Low Quality definition = rigid3d_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] cool_fan_enabled = False -default_material_print_temperature = 240 -default_material_bed_temperature = 100 +material_bed_temperature = =default_material_bed_temperature + 20 +material_print_temperature = =default_material_print_temperature + 5 + 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 22ac39071c..9d5fe97e90 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = rigid3d_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs +quality_type = standard +setting_version = 22 +type = quality [values] cool_fan_enabled = False -default_material_print_temperature = 235 -default_material_bed_temperature = 100 +material_bed_temperature = =default_material_bed_temperature + 20 + 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 feff17d39a..adc821bb0c 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Super Quality definition = rigid3d_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality [values] cool_fan_enabled = False -default_material_print_temperature = 235 -default_material_bed_temperature = 100 +material_bed_temperature = =default_material_bed_temperature + 20 + 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 929a9fd2e3..972d661286 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Ultra Quality definition = rigid3d_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_abs +quality_type = ultra +setting_version = 22 +type = quality [values] cool_fan_enabled = False -default_material_print_temperature = 235 -default_material_bed_temperature = 100 +material_bed_temperature = =default_material_bed_temperature + 20 + 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 e9f02fa466..f11e0124c6 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 @@ -1,17 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = rigid3d_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_nylon +quality_type = adaptive +setting_version = 22 +type = quality [values] -default_material_print_temperature = 250 -default_material_bed_temperature = 90 -retraction_amount = 3 cool_fan_enabled = False -retraction_speed = 40 \ No newline at end of file +material_bed_temperature = =default_material_bed_temperature + 40 +material_print_temperature = =default_material_print_temperature + 5 + 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 34acb85391..8c3f567f09 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 @@ -1,17 +1,15 @@ [general] -version = 4 -name = Good Quality definition = rigid3d_base +name = Good Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = good material = generic_nylon +quality_type = good +setting_version = 22 +type = quality [values] -default_material_print_temperature = 245 -default_material_bed_temperature = 90 -retraction_amount = 3 cool_fan_enabled = False -retraction_speed = 40 \ No newline at end of file +material_bed_temperature = =default_material_bed_temperature + 40 + 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 456ec74c68..3e00b6f10b 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 @@ -1,17 +1,16 @@ [general] -version = 4 -name = Low Quality definition = rigid3d_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_nylon +quality_type = low +setting_version = 22 +type = quality [values] -default_material_print_temperature = 250 -default_material_bed_temperature = 90 -retraction_amount = 3 cool_fan_enabled = False -retraction_speed = 40 \ No newline at end of file +material_bed_temperature = =default_material_bed_temperature + 40 +material_print_temperature = =default_material_print_temperature + 5 + 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 071e60661f..b4dd761b20 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 @@ -1,17 +1,15 @@ [general] -version = 4 -name = Standard Quality definition = rigid3d_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_nylon +quality_type = standard +setting_version = 22 +type = quality [values] -default_material_print_temperature = 245 -default_material_bed_temperature = 90 -retraction_amount = 3 cool_fan_enabled = False -retraction_speed = 40 \ No newline at end of file +material_bed_temperature = =default_material_bed_temperature + 40 + 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 35a317a26f..99d3d50454 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 @@ -1,17 +1,15 @@ [general] -version = 4 -name = Super Quality definition = rigid3d_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_nylon +quality_type = super +setting_version = 22 +type = quality [values] -default_material_print_temperature = 245 -default_material_bed_temperature = 90 -retraction_amount = 3 cool_fan_enabled = False -retraction_speed = 40 \ No newline at end of file +material_bed_temperature = =default_material_bed_temperature + 40 + 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 8f622b08c4..4a413c2e1c 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 @@ -1,17 +1,15 @@ [general] -version = 4 -name = Ultra Quality definition = rigid3d_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_nylon +quality_type = ultra +setting_version = 22 +type = quality [values] -default_material_print_temperature = 245 -default_material_bed_temperature = 90 -retraction_amount = 3 cool_fan_enabled = False -retraction_speed = 40 +material_bed_temperature = =default_material_bed_temperature + 40 + 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 e45d965bbc..f77c28b5fd 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 @@ -1,15 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = rigid3d_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality [values] -retraction_amount = 2 -default_material_print_temperature = 250 -default_material_bed_temperature = 85 +material_print_temperature = =default_material_print_temperature + 30 + 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 1cb3ddd594..2bc78750ee 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 @@ -1,15 +1,14 @@ [general] -version = 4 -name = Good Quality definition = rigid3d_base +name = Good Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = good material = generic_petg +quality_type = good +setting_version = 22 +type = quality [values] -retraction_amount = 2 -default_material_print_temperature = 245 -default_material_bed_temperature = 85 +material_print_temperature = =default_material_print_temperature + 25 + 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 142dab0fa5..656ece9805 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 @@ -1,15 +1,14 @@ [general] -version = 4 -name = Low Quality definition = rigid3d_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality [values] -retraction_amount = 2 -default_material_print_temperature = 250 -default_material_bed_temperature = 85 +material_print_temperature = =default_material_print_temperature + 30 + 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 9970ea80d5..5cbba2dadf 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 @@ -1,15 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = rigid3d_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg +quality_type = standard +setting_version = 22 +type = quality [values] -retraction_amount = 2 -default_material_print_temperature = 245 -default_material_bed_temperature = 85 +material_print_temperature = =default_material_print_temperature + 25 + 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 d9b88d6f06..2e40788daa 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 @@ -1,15 +1,14 @@ [general] -version = 4 -name = Super Quality definition = rigid3d_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality [values] -retraction_amount = 2 -default_material_print_temperature = 245 -default_material_bed_temperature = 85 +material_print_temperature = =default_material_print_temperature + 25 + 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 a2cd29e814..8d9de515c9 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 @@ -1,15 +1,14 @@ [general] -version = 4 -name = Ultra Quality definition = rigid3d_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_petg +quality_type = ultra +setting_version = 22 +type = quality [values] -retraction_amount = 2 -default_material_print_temperature = 245 -default_material_bed_temperature = 85 +material_print_temperature = =default_material_print_temperature + 25 + 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 b5717639ec..966a6a208e 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 @@ -1,14 +1,14 @@ [general] -version = 4 -name = Dynamic Quality definition = rigid3d_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality [values] -default_material_print_temperature = 210 -default_material_bed_temperature = 55 +material_print_temperature = =default_material_print_temperature + 5 + 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 af26bebec3..56e0589d42 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 @@ -1,14 +1,14 @@ [general] -version = 4 -name = Good Quality definition = rigid3d_base +name = Good Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = good material = generic_pla +quality_type = good +setting_version = 22 +type = quality [values] -default_material_print_temperature = 205 -default_material_bed_temperature = 55 +material_print_temperature = =default_material_print_temperature + 5 + 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 39902dcd0d..67192d4333 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 @@ -1,14 +1,14 @@ [general] -version = 4 -name = Low Quality definition = rigid3d_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality [values] -default_material_print_temperature = 210 -default_material_bed_temperature = 55 +material_print_temperature = =default_material_print_temperature + 10 + 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 f4d2a94bb7..9b78986d8f 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 @@ -1,14 +1,14 @@ [general] -version = 4 -name = Standard Quality definition = rigid3d_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla +quality_type = standard +setting_version = 22 +type = quality [values] -default_material_print_temperature = 205 -default_material_bed_temperature = 55 +material_print_temperature = =default_material_print_temperature + 5 + 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 2c99771ee3..a49f8c71da 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 @@ -1,14 +1,14 @@ [general] -version = 4 -name = Super Quality definition = rigid3d_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality [values] -default_material_print_temperature = 205 -default_material_bed_temperature = 55 +material_print_temperature = =default_material_print_temperature + 5 + 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 55c658b6f7..fc7e593fbc 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 @@ -1,14 +1,14 @@ [general] -version = 4 -name = Ultra Quality definition = rigid3d_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_pla +quality_type = ultra +setting_version = 22 +type = quality [values] -default_material_print_temperature = 205 -default_material_bed_temperature = 55 +material_print_temperature = =default_material_print_temperature + 5 + 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 a066a1d526..7b8576b2de 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Dynamic Quality definition = rigid3d_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive -weight = -6 global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +weight = -6 [values] +adaptive_layer_height_enabled = true layer_height = 0.24 layer_height_0 = 0.20 -adaptive_layer_height_enabled = true + 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 f6fbe8def0..af0bc1382b 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Good Quality definition = rigid3d_base +name = Good Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = good -weight = -2 global_quality = True +quality_type = good +setting_version = 22 +type = quality +weight = -2 [values] layer_height = 0.16 layer_height_0 = 0.20 + 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 52a376ea65..d6c49e5d9a 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = rigid3d_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low -weight = -4 global_quality = True +quality_type = low +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.28 layer_height_0 = 0.2 + 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 28b1e7c974..e053edf5f4 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = rigid3d_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard -weight = -3 global_quality = True +quality_type = standard +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.2 layer_height_0 = 0.2 + 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 1dbebd0301..09976277b5 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = rigid3d_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super -weight = -1 global_quality = True +quality_type = super +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.12 layer_height_0 = 0.20 + 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 35a7a8f91e..e0ffe4421e 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Ultra Quality definition = rigid3d_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra -weight = 0 global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.06 layer_height_0 = 0.20 + 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 fa8319ac06..626025b515 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 @@ -1,17 +1,16 @@ [general] -version = 4 -name = Dynamic Quality definition = rigid3d_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality [values] -default_material_print_temperature = 250 -default_material_bed_temperature = 70 -speed_print = 20 +material_bed_temperature = =default_material_bed_temperature + 60 retraction_speed = 20 -retraction_amount = 3 \ No newline at end of file +speed_print = 20 + 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 62b5a4bfd5..bc0151b230 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 @@ -1,17 +1,16 @@ [general] -version = 4 -name = Good Quality definition = rigid3d_base +name = Good Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = good material = generic_tpu +quality_type = good +setting_version = 22 +type = quality [values] -default_material_print_temperature = 245 -default_material_bed_temperature = 70 -speed_print = 20 +material_bed_temperature = =default_material_bed_temperature + 60 retraction_speed = 20 -retraction_amount = 3 \ No newline at end of file +speed_print = 20 + 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 cd903e1bed..5a0333e1a7 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 @@ -1,17 +1,16 @@ [general] -version = 4 -name = Low Quality definition = rigid3d_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_tpu +quality_type = low +setting_version = 22 +type = quality [values] -default_material_print_temperature = 250 -default_material_bed_temperature = 70 -speed_print = 20 +material_bed_temperature = =default_material_bed_temperature + 60 retraction_speed = 20 -retraction_amount = 3 \ No newline at end of file +speed_print = 20 + 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 cec20319d9..a61f3984e5 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 @@ -1,17 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = rigid3d_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality [values] -default_material_print_temperature = 245 -default_material_bed_temperature = 70 -speed_print = 20 +material_bed_temperature = =default_material_bed_temperature + 60 retraction_speed = 20 -retraction_amount = 3 \ No newline at end of file +speed_print = 20 + 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 4fc51a05a7..183f1a28c6 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 @@ -1,17 +1,16 @@ [general] -version = 4 -name = Super Quality definition = rigid3d_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_tpu +quality_type = super +setting_version = 22 +type = quality [values] -default_material_print_temperature = 245 -default_material_bed_temperature = 70 -speed_print = 20 +material_bed_temperature = =default_material_bed_temperature + 60 retraction_speed = 20 -retraction_amount = 3 \ No newline at end of file +speed_print = 20 + 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 d5cc27b4fd..1f2fcc6d36 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 @@ -1,17 +1,16 @@ [general] -version = 4 -name = Ultra Quality definition = rigid3d_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_tpu +quality_type = ultra +setting_version = 22 +type = quality [values] -default_material_print_temperature = 245 -default_material_bed_temperature = 70 -speed_print = 20 +material_bed_temperature = =default_material_bed_temperature + 60 retraction_speed = 20 -retraction_amount = 3 \ No newline at end of file +speed_print = 20 + diff --git a/resources/quality/skriware_2/sk2_advanced.inst.cfg b/resources/quality/skriware_2/sk2_advanced.inst.cfg index 22d941c394..ac3fa6041d 100644 --- a/resources/quality/skriware_2/sk2_advanced.inst.cfg +++ b/resources/quality/skriware_2/sk2_advanced.inst.cfg @@ -1,35 +1,36 @@ [general] -version = 4 -name = Advanced definition = skriware_2 +name = Advanced +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.2 -layer_height_0 = 0.2 -speed_travel = 80 -acceleration_travel = 400 -jerk_travel = 10 acceleration_layer_0 = 200 acceleration_print_layer_0 = 200 +acceleration_travel = 400 acceleration_travel_layer_0 = 200 jerk_layer_0 = 2 jerk_print_layer_0 = 2 +jerk_travel = 10 jerk_travel_layer_0 = 2 -raft_interface_line_spacing = 0.8 -raft_interface_line_width = 0.6 -raft_interface_speed = 40 -raft_interface_thickness = 0.2 +layer_height = 0.2 +layer_height_0 = 0.2 raft_base_line_spacing = 1.5 raft_base_line_width = 0.8 raft_base_speed = 20 raft_base_thickness = 0.3 +raft_interface_line_spacing = 0.8 +raft_interface_line_width = 0.6 +raft_interface_speed = 40 +raft_interface_thickness = 0.2 raft_surface_layers = 1 raft_surface_line_spacing = 0.6 raft_surface_speed = 60 +speed_travel = 80 + diff --git a/resources/quality/skriware_2/sk2_fast.inst.cfg b/resources/quality/skriware_2/sk2_fast.inst.cfg index 533a7289e6..d0b8208e5a 100644 --- a/resources/quality/skriware_2/sk2_fast.inst.cfg +++ b/resources/quality/skriware_2/sk2_fast.inst.cfg @@ -1,63 +1,64 @@ [general] -version = 4 -name = Fast definition = skriware_2 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] -layer_height = 0.3 -layer_height_0 = 0.3 -support_infill_sparse_thickness = 0.3 -speed_travel = 100 +acceleration_infill = 400 +acceleration_layer_0 = 200 +acceleration_print = 400 +acceleration_print_layer_0 = 200 +acceleration_roofing = 400 +acceleration_support = 400 +acceleration_topbottom = 400 acceleration_travel = 400 -jerk_travel = 10 -speed_wall = 40 -speed_wall_0 = 30 -speed_wall_x = 40 +acceleration_travel_layer_0 = 200 acceleration_wall = 400 acceleration_wall_0 = 400 acceleration_wall_x = 400 +jerk_infill = 10 +jerk_layer_0 = 5 +jerk_print = 10 +jerk_print_layer_0 = 2 +jerk_roofing = 10 +jerk_support = 10 +jerk_topbottom = 10 +jerk_travel = 10 +jerk_travel_layer_0 = 10 jerk_wall = 10 jerk_wall_0 = 10 jerk_wall_x = 10 -speed_infill = 80 -acceleration_infill = 400 -jerk_infill = 10 -speed_roofing = 30 -acceleration_roofing = 400 -jerk_roofing = 10 -speed_topbottom = 30 -acceleration_topbottom = 400 -jerk_topbottom = 10 -speed_support = 50 -acceleration_support = 400 -jerk_support = 10 -speed_travel_layer_0 = 80 -speed_print_layer_0 = 20 -speed_layer_0 = 10 -acceleration_layer_0 = 200 -acceleration_print_layer_0 = 200 -acceleration_travel_layer_0 = 200 -jerk_layer_0 = 5 -jerk_print_layer_0 = 2 -jerk_travel_layer_0 = 10 -speed_print = 40 -acceleration_print = 400 -jerk_print = 10 -raft_interface_line_spacing = 0.8 -raft_interface_line_width = 0.6 -raft_interface_speed = 40 -raft_interface_thickness = 0.2 +layer_height = 0.3 +layer_height_0 = 0.3 raft_base_line_spacing = 1.5 raft_base_line_width = 0.8 raft_base_speed = 20 raft_base_thickness = 0.3 +raft_interface_line_spacing = 0.8 +raft_interface_line_width = 0.6 +raft_interface_speed = 40 +raft_interface_thickness = 0.2 raft_surface_layers = 1 raft_surface_line_spacing = 0.6 raft_surface_speed = 60 +speed_infill = 80 +speed_layer_0 = 10 +speed_print = 40 +speed_print_layer_0 = 20 +speed_roofing = 30 +speed_support = 50 +speed_topbottom = 30 +speed_travel = 100 +speed_travel_layer_0 = 80 +speed_wall = 40 +speed_wall_0 = 30 +speed_wall_x = 40 +support_infill_sparse_thickness = 0.3 + diff --git a/resources/quality/skriware_2/sk2_precise.inst.cfg b/resources/quality/skriware_2/sk2_precise.inst.cfg index 3cc506aa63..752902b731 100644 --- a/resources/quality/skriware_2/sk2_precise.inst.cfg +++ b/resources/quality/skriware_2/sk2_precise.inst.cfg @@ -1,63 +1,63 @@ [general] -version = 4 -name = Precise definition = skriware_2 +name = Precise +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = best -weight = -1 global_quality = True +quality_type = best +setting_version = 22 +type = quality +weight = -1 [values] -layer_height = 0.2 -layer_height_0 = 0.2 -speed_print = 20 -speed_travel = 80 +acceleration_infill = 400 +acceleration_layer_0 = 200 +acceleration_print = 400 +acceleration_print_layer_0 = 200 +acceleration_roofing = 400 +acceleration_support = 400 +acceleration_topbottom = 400 acceleration_travel = 400 -jerk_travel = 10 -speed_wall = 20 -speed_wall_0 = 20 -speed_wall_x = 20 +acceleration_travel_layer_0 = 200 acceleration_wall = 400 acceleration_wall_0 = 200 acceleration_wall_x = 200 +jerk_infill = 10 +jerk_layer_0 = 10 +jerk_print = 10 +jerk_print_layer_0 = 10 +jerk_roofing = 10 +jerk_support = 10 +jerk_topbottom = 10 +jerk_travel = 10 +jerk_travel_layer_0 = 10 jerk_wall = 10 jerk_wall_0 = 5 jerk_wall_x = 10 -speed_infill = 80 -acceleration_infill = 400 -jerk_infill = 10 -speed_roofing = 20 -acceleration_roofing = 400 -jerk_roofing = 10 -speed_topbottom = 20 -acceleration_topbottom = 400 -jerk_topbottom = 10 -speed_support = 50 -acceleration_support = 400 -jerk_support = 10 -speed_travel_layer_0 = 80 -speed_print_layer_0 = 20 -speed_layer_0 = 20 -acceleration_layer_0 = 200 -acceleration_print_layer_0 = 200 -acceleration_travel_layer_0 = 200 -jerk_layer_0 = 10 -jerk_print_layer_0 = 10 -jerk_travel_layer_0 = 10 -speed_print = 20 -acceleration_print = 400 -jerk_print = 10 -raft_interface_line_spacing = 0.8 -raft_interface_line_width = 0.6 -raft_interface_speed = 40 -raft_interface_thickness = 0.2 +layer_height = 0.2 +layer_height_0 = 0.2 raft_base_line_spacing = 1.5 raft_base_line_width = 0.8 raft_base_speed = 20 raft_base_thickness = 0.3 +raft_interface_line_spacing = 0.8 +raft_interface_line_width = 0.6 +raft_interface_speed = 40 +raft_interface_thickness = 0.2 raft_surface_layers = 1 raft_surface_line_spacing = 0.6 raft_surface_speed = 60 +speed_infill = 80 +speed_layer_0 = 20 +speed_print = 20 +speed_print_layer_0 = 20 +speed_roofing = 20 +speed_support = 50 +speed_topbottom = 20 +speed_travel = 80 +speed_travel_layer_0 = 80 +speed_wall = 20 +speed_wall_0 = 20 +speed_wall_x = 20 + diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg new file mode 100644 index 0000000000..07147785e7 --- /dev/null +++ b/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg @@ -0,0 +1,57 @@ +[general] +definition = snakeoil_standard_base +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = fast +setting_version = 22 +type = quality + +[values] +acceleration_enabled = True +acceleration_print = 15000 +acceleration_roofing = 10000 +acceleration_topbottom = 10000 +acceleration_travel = 15000 +acceleration_wall = 15000 +acceleration_wall_0 = 10000 +adhesion_type = skirt +alternate_extra_perimeter = False +infill_line_width = 0.5 +infill_pattern = lines +infill_sparse_density = 10 +layer_height = 0.2 +layer_height_0 = 0.2 +optimize_wall_printing_order = True +retraction_amount = 0.8 +retraction_combing = noskin +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_hop_only_when_collides = True +retraction_speed = 35 +roofing_layer_count = 0 +skin_monotonic = True +skirt_brim_speed = 45 +speed_infill = 200 +speed_layer_0 = 45 +speed_print = 300 +speed_print_layer_0 = 45 +speed_roofing = 100 +speed_support = 200 +speed_topbottom = 150 +speed_travel = 300 +speed_travel_layer_0 = 150 +speed_wall = 100 +speed_wall_0 = 100 +speed_wall_x = 150 +support_angle = 46 +support_enable = False +top_bottom_thickness = 0.6 +travel_avoid_supports = True +wall_line_width = 0.45 +wall_line_width_0 = 0.4 +wall_thickness = 1.25 +zig_zaggify_infill = True + diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg new file mode 100644 index 0000000000..672d907afe --- /dev/null +++ b/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg @@ -0,0 +1,57 @@ +[general] +definition = snakeoil_standard_base +name = Fine +version = 4 + +[metadata] +global_quality = True +quality_type = fine +setting_version = 22 +type = quality + +[values] +acceleration_enabled = True +acceleration_print = 15000 +acceleration_roofing = 10000 +acceleration_topbottom = 10000 +acceleration_travel = 15000 +acceleration_wall = 7500 +acceleration_wall_0 = 7500 +adhesion_type = skirt +alternate_extra_perimeter = False +cool_min_layer_time = 10 +infill_line_width = 0.5 +infill_pattern = gyroid +infill_sparse_density = 15 +inset_direction = outside_in +layer_height = 0.2 +layer_height_0 = 0.2 +optimize_wall_printing_order = True +retraction_amount = 0.8 +retraction_combing = noskin +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_hop_only_when_collides = True +retraction_speed = 35 +roofing_layer_count = 1 +skin_monotonic = True +skirt_brim_speed = 45 +speed_infill = 150 +speed_layer_0 = 45 +speed_print = 100 +speed_roofing = 100 +speed_topbottom = 100 +speed_travel = 300 +speed_travel_layer_0 = 60 +speed_wall = 100 +speed_wall_0 = 75 +speed_wall_x = 100 +support_angle = 46 +support_enable = False +top_bottom_thickness = 0.8 +travel_avoid_supports = True +wall_line_width = 0.45 +wall_line_width_0 = 0.4 +wall_thickness = 1.65 +zig_zaggify_infill = True + diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg new file mode 100644 index 0000000000..3e90b5966f --- /dev/null +++ b/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg @@ -0,0 +1,57 @@ +[general] +definition = snakeoil_standard_base +name = Normal +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality + +[values] +acceleration_enabled = True +acceleration_print = 15000 +acceleration_roofing = 10000 +acceleration_topbottom = 10000 +acceleration_travel = 15000 +acceleration_wall = 10000 +acceleration_wall_0 = 7500 +adhesion_type = skirt +alternate_extra_perimeter = True +bottom_layers = 3 +infill_line_width = 0.5 +infill_pattern = gyroid +infill_sparse_density = 15 +layer_height = 0.2 +layer_height_0 = 0.2 +optimize_wall_printing_order = True +retraction_amount = 0.8 +retraction_combing = noskin +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_hop_only_when_collides = True +retraction_speed = 35 +roofing_layer_count = 1 +skin_monotonic = True +skirt_brim_speed = 45 +speed_infill = 150 +speed_layer_0 = 45 +speed_print = 150 +speed_roofing = 100 +speed_topbottom = 100 +speed_travel = 300 +speed_travel_layer_0 = 100 +speed_wall = 100 +speed_wall_0 = 100 +speed_wall_x = 150 +support_angle = 46 +support_enable = False +top_bottom_thickness = 0.6 +top_layers = 3 +travel_avoid_supports = True +wall_line_width = 0.45 +wall_line_width_0 = 0.4 +wall_thickness = 1.25 +zig_zaggify_infill = True + diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg new file mode 100644 index 0000000000..abbdc4e846 --- /dev/null +++ b/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg @@ -0,0 +1,56 @@ +[general] +definition = snakeoil_standard_base +name = Strong +version = 4 + +[metadata] +global_quality = True +quality_type = strong +setting_version = 22 +type = quality + +[values] +acceleration_enabled = True +acceleration_print = 15000 +acceleration_roofing = 10000 +acceleration_topbottom = 10000 +acceleration_travel = 15000 +acceleration_wall = 10000 +acceleration_wall_0 = 7500 +adhesion_type = skirt +alternate_extra_perimeter = True +infill_line_width = 0.5 +infill_pattern = gyroid +infill_sparse_density = 30 +layer_height = 0.2 +layer_height_0 = 0.2 +optimize_wall_printing_order = True +retraction_amount = 0.8 +retraction_combing = noskin +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_hop_only_when_collides = True +retraction_speed = 35 +roofing_layer_count = 1 +skin_monotonic = True +skirt_brim_speed = 45 +speed_infill = 150 +speed_layer_0 = 45 +speed_print = 100 +speed_print_layer_0 = 60 +speed_roofing = 100 +speed_topbottom = 100 +speed_travel = 300 +speed_travel_layer_0 = 100 +speed_wall = 100 +speed_wall_0 = 75 +speed_wall_x = 100 +support_angle = 46 +support_enable = False +top_bottom_thickness = 1 +travel_avoid_supports = True +wall_line_width = 0.45 +wall_line_width_0 = 0.4 +wall_thickness = 2.05 +zig_zaggify_infill = True + diff --git a/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg b/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg index edd764aea6..ca9845a2fa 100644 --- a/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg @@ -1,66 +1,58 @@ -[general] -version = 4 -name = Fast -definition = snapmaker2 - -[metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -2 -global_quality = True - -[values] -layer_height = 0.24 -layer_height_0 = 0.2 -initial_layer_line_width_factor = 100 - -wall_thickness = 0.8 -wall_line_count = 2 -top_thickness = 0.8 -top_layers = 4 -bottom_thickness = 0.8 -bottom_layers = 4 -inset_direction = inside_out -skin_outline_count = 0 - -; infill_line_distance = 8 -infill_sparse_density = 15 -infill_sparse_thickness = 0.24 -skin_preshrink = 0.8 -top_skin_preshrink = 0.8 -bottom_skin_preshrink = 0.8 -expand_skins_expand_distance = 0.8 -top_skin_expand_distance = 0.8 -bottom_skin_expand_distance = 0.8 - -speed_travel = 80 -speed_topbottom = 30 -speed_wall_x = 25 -speed_wall_0 = 20 -speed_wall = 40 -speed_infill = 60 -speed_print = 60 -speed_print_layer_0 = 18 -speed_travel_layer_0 = 24 -skirt_brim_speed = 18 - -retraction_hop = 1 -retraction_hop_enabled = False - -magic_spiralize = False -magic_mesh_surface_mode = normal - -adhesion_type = skirt -skirt_line_count = 1 -brim_width = 8 -brim_line_count = 20 -raft_margin = 15 - -support_enable = False -support_type = everywhere -support_pattern = zigzag -support_angle = 50 -support_infill_rate = 15 -support_line_distance = 2.66 -support_initial_layer_line_distance = 2.66 +[general] +definition = snapmaker2 +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -2 + +[values] +adhesion_type = skirt +bottom_layers = 4 +bottom_skin_expand_distance = 0.8 +bottom_skin_preshrink = 0.8 +bottom_thickness = 0.8 +brim_line_count = 20 +brim_width = 8 +expand_skins_expand_distance = 0.8 +infill_sparse_density = 15 +infill_sparse_thickness = 0.24 +initial_layer_line_width_factor = 100 +layer_height = 0.24 +layer_height_0 = 0.2 +magic_mesh_surface_mode = normal +magic_spiralize = False +raft_margin = 15 +retraction_hop = 1 +retraction_hop_enabled = False +skin_outline_count = 0 +skin_preshrink = 0.8 +skirt_brim_speed = 18 +skirt_line_count = 1 +speed_infill = 60 +speed_print = 60 +speed_print_layer_0 = 18 +speed_topbottom = 30 +speed_travel = 80 +speed_travel_layer_0 = 24 +speed_wall = 40 +speed_wall_0 = 20 +speed_wall_x = 25 +support_angle = 50 +support_enable = False +support_infill_rate = 15 +support_initial_layer_line_distance = 2.66 +support_line_distance = 2.66 +support_pattern = zigzag +support_type = everywhere +top_layers = 4 +top_skin_expand_distance = 0.8 +top_skin_preshrink = 0.8 +top_thickness = 0.8 +wall_line_count = 2 +wall_thickness = 0.8 + diff --git a/resources/quality/snapmaker2/snapmaker2_high.inst.cfg b/resources/quality/snapmaker2/snapmaker2_high.inst.cfg index bdc140914e..d3c34f1afd 100644 --- a/resources/quality/snapmaker2/snapmaker2_high.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_high.inst.cfg @@ -1,65 +1,57 @@ [general] -version = 4 -name = High definition = snapmaker2 +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] -layer_height = 0.08 -layer_height_0 = 0.15 -initial_layer_line_width_factor = 100 - -wall_thickness = 1.2 -wall_line_count = 3 -top_thickness = 0.8 -top_layers = 10 -bottom_thickness = 0.8 +adhesion_type = skirt bottom_layers = 10 -inset_direction = inside_out -skin_outline_count = 1 - -; infill_line_distance = 8 +bottom_skin_expand_distance = 1.2 +bottom_skin_preshrink = 1.2 +bottom_thickness = 0.8 +brim_line_count = 20 +brim_width = 8 +expand_skins_expand_distance = 1.2 infill_sparse_density = 15 infill_sparse_thickness = 0.08 +initial_layer_line_width_factor = 100 +layer_height = 0.08 +layer_height_0 = 0.15 +magic_mesh_surface_mode = normal +magic_spiralize = False +raft_margin = 15 +retraction_hop = 1 +retraction_hop_enabled = False +skin_outline_count = 1 skin_preshrink = 1.2 -top_skin_preshrink = 1.2 -bottom_skin_preshrink = 1.2 -expand_skins_expand_distance = 1.2 -top_skin_expand_distance = 1.2 -bottom_skin_expand_distance = 1.2 - -speed_travel = 60 -speed_topbottom = 20 -speed_wall_x = 15 -speed_wall_0 = 10 -speed_wall = 30 +skirt_brim_speed = 18 +skirt_line_count = 1 speed_infill = 40 speed_print = 40 speed_print_layer_0 = 18 +speed_topbottom = 20 +speed_travel = 60 speed_travel_layer_0 = 24 -skirt_brim_speed = 18 - -retraction_hop = 1 -retraction_hop_enabled = False - -magic_spiralize = False -magic_mesh_surface_mode = normal - -adhesion_type = skirt -skirt_line_count = 1 -brim_width = 8 -brim_line_count = 20 -raft_margin = 15 - -support_enable = False -support_type = everywhere -support_pattern = zigzag +speed_wall = 30 +speed_wall_0 = 10 +speed_wall_x = 15 support_angle = 50 +support_enable = False support_infill_rate = 15 support_line_distance = 2.66 +support_pattern = zigzag +support_type = everywhere +top_layers = 10 +top_skin_expand_distance = 1.2 +top_skin_preshrink = 1.2 +top_thickness = 0.8 +wall_line_count = 3 +wall_thickness = 1.2 + diff --git a/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg b/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg index cd6c2c85bb..97514c3788 100644 --- a/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg @@ -1,66 +1,58 @@ -[general] -version = 4 -name = Normal -definition = snapmaker2 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -global_quality = True - -[values] -layer_height = 0.16 -layer_height_0 = 0.2 -initial_layer_line_width_factor = 100 - -wall_thickness = 1.2 -wall_line_count = 3 -top_thickness = 0.8 -top_layers = 5 -bottom_thickness = 0.8 -bottom_layers = 5 -inset_direction = inside_out -skin_outline_count = 0 - -; infill_line_distance = 8 -infill_sparse_density = 15 -infill_sparse_thickness = 0.16 -skin_preshrink = 1.2 -top_skin_preshrink = 1.2 -bottom_skin_preshrink = 1.2 -expand_skins_expand_distance = 1.2 -top_skin_expand_distance = 1.2 -bottom_skin_expand_distance = 1.2 - -speed_travel = 70 -speed_topbottom = 25 -speed_wall_x = 20 -speed_wall_0 = 15 -speed_wall = 30 -speed_infill = 50 -speed_print = 50 -speed_print_layer_0 = 18 -speed_travel_layer_0 = 24 -skirt_brim_speed = 18 - -retraction_hop = 1 -retraction_hop_enabled = False - -magic_spiralize = False -magic_mesh_surface_mode = normal - -adhesion_type = skirt -skirt_line_count = 1 -brim_width = 8 -brim_line_count = 20 -raft_margin = 15 - -support_enable = False -support_type = everywhere -support_pattern = zigzag -support_angle = 50 -support_infill_rate = 15 -support_line_distance = 2.66 -support_initial_layer_line_distance = 2.66 +[general] +definition = snapmaker2 +name = Normal +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 + +[values] +adhesion_type = skirt +bottom_layers = 5 +bottom_skin_expand_distance = 1.2 +bottom_skin_preshrink = 1.2 +bottom_thickness = 0.8 +brim_line_count = 20 +brim_width = 8 +expand_skins_expand_distance = 1.2 +infill_sparse_density = 15 +infill_sparse_thickness = 0.16 +initial_layer_line_width_factor = 100 +layer_height = 0.16 +layer_height_0 = 0.2 +magic_mesh_surface_mode = normal +magic_spiralize = False +raft_margin = 15 +retraction_hop = 1 +retraction_hop_enabled = False +skin_outline_count = 0 +skin_preshrink = 1.2 +skirt_brim_speed = 18 +skirt_line_count = 1 +speed_infill = 50 +speed_print = 50 +speed_print_layer_0 = 18 +speed_topbottom = 25 +speed_travel = 70 +speed_travel_layer_0 = 24 +speed_wall = 30 +speed_wall_0 = 15 +speed_wall_x = 20 +support_angle = 50 +support_enable = False +support_infill_rate = 15 +support_initial_layer_line_distance = 2.66 +support_line_distance = 2.66 +support_pattern = zigzag +support_type = everywhere +top_layers = 5 +top_skin_expand_distance = 1.2 +top_skin_preshrink = 1.2 +top_thickness = 0.8 +wall_line_count = 3 +wall_thickness = 1.2 + 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 new file mode 100644 index 0000000000..772967217a --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..0726300d16 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Ultra Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..b856b23909 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..ea89399b04 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Low Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = low +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..c4a73d8829 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..25dd15c61f --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..f8ee0564e4 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..b52d3796bd --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Low Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..db41a18c33 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..8d9f4a8945 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..b7a7967e51 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..3ae2ea97eb --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Low Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = low +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..49674f357b --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..becb6c7813 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..93c936d905 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..3fa8cd175a --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Draft Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..3ae2ea97eb --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Low Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = low +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..d4fa086853 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..bc3804e57a --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Draft Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..fe55f3999f --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Draft Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..33de59ca9e --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..7fcfef1f1f --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Ultra Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..f0f87b35aa --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..f0be8f8aeb --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Low Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = low +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..05b9f7aa93 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..62d0991256 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..38dbb87871 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..3cffc1c720 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Low Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..05c1b926a9 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..ab92d6ca32 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..32ec7fe4ff --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..a2042304b6 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Low Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = low +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..b2e1cfcf9c --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..ff27068372 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..a85f259ebb --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..7200a5749f --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Draft Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..a2042304b6 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Low Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = low +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..84ffaf6c2a --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..bef6859d3c --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Draft Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..1d6669d2bf --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Draft Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..885607c1ee --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..bfa41cf9c6 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Ultra Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..5ed1d35af6 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..28f77adec5 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Low Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = low +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..76f7ebb4a2 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..c8236b87b5 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..1395cd2a14 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..ddb7913146 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Low Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..d0fff1d3a1 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..d9654ee6ff --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..dfda836cd4 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..4c86d9d601 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Low Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = low +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..97dba25e7a --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..d0aa02743b --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..2a49ac86ea --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..97102b65a3 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Draft Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..4c86d9d601 --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Low Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = low +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..27112ff2ef --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..d52dc0324a --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Draft Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..b3abca606c --- /dev/null +++ b/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Draft Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..053367d17f --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_bowden +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +retraction_amount = 7 +retraction_speed = 25 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..b096237bea --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_bowden +name = Ultra Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +retraction_amount = 7 +retraction_speed = 25 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..06beece2a2 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_bowden +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_amount = 7 +retraction_speed = 25 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..a33788ca75 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_bowden +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_amount = 7 +retraction_speed = 25 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..6e23df6ae8 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_bowden +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_amount = 7 +retraction_speed = 25 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..ae20dcb804 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_bowden +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_amount = 7 +retraction_speed = 25 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..af2ee48413 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_bowden +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_amount = 7 +retraction_speed = 25 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..4dfcca8765 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_bowden +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_amount = 7 +retraction_speed = 25 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..7553fd38ce --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_bowden +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_amount = 7 +retraction_speed = 25 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..e4e7cfd9b3 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_bowden +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_amount = 7 +retraction_speed = 25 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..65a1ada04d --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_bowden +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_amount = 7 +retraction_speed = 25 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..9851ac8798 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_bowden +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_amount = 7 +retraction_speed = 25 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..9d69f5a6e4 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_bowden +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_amount = 7 +retraction_speed = 25 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..b8fb2f7118 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_bowden +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_amount = 7 +retraction_speed = 25 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..808bc5d2ce --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_bowden +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +retraction_amount = 7 +retraction_speed = 25 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..759b42945d --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_bowden +name = Draft Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +retraction_amount = 7 +retraction_speed = 25 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..0f7f807aca --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_bowden +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +retraction_amount = 7 +retraction_speed = 25 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..55f3851458 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_bowden +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +retraction_amount = 7 +retraction_speed = 25 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..127cbb7a12 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = sovol_base_bowden +name = Draft Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +retraction_amount = 0.8 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..68994f179e --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = sovol_base_bowden +name = Draft Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle + +[values] +retraction_amount = 0.8 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..4d7207b88f --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_planetary +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..e0e337e823 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_planetary +name = Ultra Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..35122d480a --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_planetary +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..6ecdb7c2aa --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_planetary +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..4312bd0fc9 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_planetary +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..b5ca42bbfa --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_planetary +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..4e8a03c922 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_planetary +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..5936703b73 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_planetary +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..bec8700d9f --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_planetary +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..83c414fbb4 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_planetary +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..c1fbefcb96 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_planetary +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..8b71219eae --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_planetary +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..2203f51213 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_planetary +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..0a05fd5fba --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_planetary +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..d52169b7b7 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_planetary +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..2aead63352 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_planetary +name = Draft Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..6ffabcf3db --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_planetary +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..2dcd0202c8 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_planetary +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..759fb5c6d4 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = sovol_base_planetary +name = Draft Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +retraction_amount = 0.8 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..1003b241ad --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = sovol_base_planetary +name = Draft Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle + +[values] +retraction_amount = 0.8 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..6e961a1f5f --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_titan +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..9056196811 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_titan +name = Ultra Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..0f76fb7040 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_titan +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..d3b9987d29 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_titan +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..4daff5d437 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_titan +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..ded1525f35 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_titan +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..beedee39b1 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_titan +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..29790a874a --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_titan +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..de2429f011 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_titan +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..9a9e6817a6 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_titan +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..c905211dfc --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_titan +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..8c31d3411e --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_titan +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..550a5b8d30 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_titan +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..460c927b23 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_titan +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..07ecb9c628 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_titan +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..72a3df1170 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_titan +name = Draft Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..32f2aae4cd --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_titan +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..46a9c12172 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = sovol_base_titan +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +retraction_amount = 2 +retraction_speed = 40 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..94fa6d1a45 --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = sovol_base_titan +name = Draft Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +retraction_amount = 0.8 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..d24808cc0a --- /dev/null +++ b/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = sovol_base_titan +name = Draft Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle + +[values] +retraction_amount = 0.8 +speed_layer_0 = 15 + 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 new file mode 100644 index 0000000000..60e6b7b56c --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..4ea764635c --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Ultra Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..2a847c6695 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..21bbc433ae --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..4b2b5103e8 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..3a2cb3824b --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..225d97b51b --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..60f61cd0cd --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..6e4a98b120 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..66de7a5d67 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..508fad0d39 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..85995dc2e2 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..9d4c33706f --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..ca4d2f0aa5 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..b669b93ca8 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..8621005003 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..734b00804b --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..3495c72a27 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..502ba9fb28 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..cd7c84e72b --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_bowden +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..75a24e2338 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..8b5a22c7ac --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Ultra Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..75949bd188 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..26536c7f95 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..32cd541764 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..a6b5f82afd --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..99ec25faef --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..b4f42eef9b --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..280e0f6983 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..19d6e248db --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..8d6b86a541 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..2fb09b07d6 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..de0c5d8f18 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..95414079ce --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..1323bcb258 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..7dae15cd82 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..52c75c3956 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..8b3f20d9bb --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..5150e51684 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..b4ec36693a --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_planetary +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..477b4b71c0 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..f84ba4c463 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Ultra Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..4d91754866 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..14898f5182 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..1eea76a062 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..6e037669a3 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..4f92feb333 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..c36495131e --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..bf85135170 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..3d49a00064 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..0325382a41 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..660ff39cba --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..38bbd3d026 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..dd8f42789d --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..fc8bda9ec0 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..63d2a0db08 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..eca3e66c4f --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..59b67afd70 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..dfd7add791 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..b1157e6dc4 --- /dev/null +++ b/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = sovol_base_titan +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..eebdc183e7 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_bowden +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..4cb331a963 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_bowden +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..fb39dfd55c --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_bowden +name = Super Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = super +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..fe24985206 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_bowden +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..5a07770069 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_bowden +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..c903119453 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_bowden +name = Super Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..37c77c084a --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_bowden +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..ae5c9b6e3d --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_bowden +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..e963a88d20 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_bowden +name = Super Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = super +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..020fbd96b9 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_bowden +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..2bf1d94be3 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_bowden +name = Draft Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..af4cdeceaa --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_bowden +name = Draft Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..6248e0f243 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_planetary +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..d01edeed8d --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_planetary +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..d690111514 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_planetary +name = Super Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = super +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..fc3f1d1636 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_planetary +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..4db78e7df7 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_planetary +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..eefd4b3298 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_planetary +name = Super Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..0c8601d49f --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_planetary +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..4c53013ea7 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_planetary +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..19a5aba8c0 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_planetary +name = Super Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = super +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..1ee0566de1 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_planetary +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..ccc2834c40 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_planetary +name = Draft Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..74433477a5 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_planetary +name = Draft Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..8a22f9e7ed --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_titan +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..399a5ad880 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_titan +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..e88db75f3f --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_titan +name = Super Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = super +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..7c464d3d68 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_titan +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..d90798ac59 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_titan +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..e53ad2c481 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_titan +name = Super Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..08465b50aa --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_titan +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..50806b530a --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_titan +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..c5f4a01e99 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_titan +name = Super Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = super +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..19ac4a4512 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_titan +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..3a9c39df03 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_titan +name = Draft Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + 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 new file mode 100644 index 0000000000..68280b99b9 --- /dev/null +++ b/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = sovol_base_titan +name = Draft Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle + +[values] +retraction_amount = 1.2 +retraction_speed = 20 +speed_layer_0 = 10 +speed_print = 20 + diff --git a/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg b/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg new file mode 100644 index 0000000000..8503da623f --- /dev/null +++ b/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = sovol_base_bowden +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.20 +support_interface_height = =layer_height*6 +top_bottom_thickness = =layer_height_0+layer_height*5 + diff --git a/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg b/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg new file mode 100644 index 0000000000..1b78757f55 --- /dev/null +++ b/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = sovol_base_bowden +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -5 + +[values] +adhesion_type = skirt +layer_height = 0.32 +layer_height_0 = 0.32 +speed_print = 60 +speed_topbottom = =math.ceil(speed_print * (60 / 100)) +speed_wall = =math.ceil(speed_print * (60 / 100)) +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/sovol/sovol_bowden_global_low.inst.cfg b/resources/quality/sovol/sovol_bowden_global_low.inst.cfg new file mode 100644 index 0000000000..a678af6506 --- /dev/null +++ b/resources/quality/sovol/sovol_bowden_global_low.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = sovol_base_bowden +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 22 +type = quality +weight = -4 + +[values] +layer_height = 0.28 +layer_height_0 = 0.28 +speed_print = 60 +speed_topbottom = =math.ceil(speed_print * (60 / 100)) +speed_wall = =math.ceil(speed_print * (60 / 100)) +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg b/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg new file mode 100644 index 0000000000..d020c7002c --- /dev/null +++ b/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = sovol_base_bowden +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = standard +setting_version = 22 +type = quality +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 +support_interface_height = =layer_height*5 +top_bottom_thickness = =layer_height_0+layer_height*4 +wall_thickness = =line_width*2 + diff --git a/resources/quality/sovol/sovol_bowden_global_super.inst.cfg b/resources/quality/sovol/sovol_bowden_global_super.inst.cfg new file mode 100644 index 0000000000..9bcd7b6287 --- /dev/null +++ b/resources/quality/sovol/sovol_bowden_global_super.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = sovol_base_bowden +name = Super Quality +version = 4 + +[metadata] +global_quality = True +quality_type = super +setting_version = 22 +type = quality +weight = -1 + +[values] +acceleration_wall = 400 +layer_height = 0.12 +layer_height_0 = 0.12 +support_interface_height = =layer_height*8 +top_bottom_thickness = =layer_height_0+layer_height*6 + diff --git a/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg b/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg new file mode 100644 index 0000000000..5a8cbef3d7 --- /dev/null +++ b/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = sovol_base_bowden +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +weight = 0 + +[values] +acceleration_wall = 400 +layer_height = 0.08 +layer_height_0 = 0.12 +speed_layer_0 = 15 +support_interface_height = =layer_height*12 +top_bottom_thickness = =layer_height_0+layer_height*10 + diff --git a/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg b/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg new file mode 100644 index 0000000000..17e0c268be --- /dev/null +++ b/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = sovol_base_planetary +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.20 +support_interface_height = =layer_height*6 +top_bottom_thickness = =layer_height_0+layer_height*5 + diff --git a/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg b/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg new file mode 100644 index 0000000000..9ff86b6743 --- /dev/null +++ b/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = sovol_base_planetary +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -5 + +[values] +adhesion_type = skirt +layer_height = 0.32 +layer_height_0 = 0.32 +speed_print = 60 +speed_topbottom = =math.ceil(speed_print * (60 / 100)) +speed_wall = =math.ceil(speed_print * (60 / 100)) +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/sovol/sovol_planetary_global_low.inst.cfg b/resources/quality/sovol/sovol_planetary_global_low.inst.cfg new file mode 100644 index 0000000000..2ca057564f --- /dev/null +++ b/resources/quality/sovol/sovol_planetary_global_low.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = sovol_base_planetary +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 22 +type = quality +weight = -4 + +[values] +layer_height = 0.28 +layer_height_0 = 0.28 +speed_print = 60 +speed_topbottom = =math.ceil(speed_print * (60 / 100)) +speed_wall = =math.ceil(speed_print * (60 / 100)) +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg b/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg new file mode 100644 index 0000000000..3ba5e02cdf --- /dev/null +++ b/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = sovol_base_planetary +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = standard +setting_version = 22 +type = quality +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 +support_interface_height = =layer_height*5 +top_bottom_thickness = =layer_height_0+layer_height*4 +wall_thickness = =line_width*2 + diff --git a/resources/quality/sovol/sovol_planetary_global_super.inst.cfg b/resources/quality/sovol/sovol_planetary_global_super.inst.cfg new file mode 100644 index 0000000000..5b47449dc5 --- /dev/null +++ b/resources/quality/sovol/sovol_planetary_global_super.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = sovol_base_planetary +name = Super Quality +version = 4 + +[metadata] +global_quality = True +quality_type = super +setting_version = 22 +type = quality +weight = -1 + +[values] +acceleration_wall = 400 +layer_height = 0.12 +layer_height_0 = 0.12 +support_interface_height = =layer_height*8 +top_bottom_thickness = =layer_height_0+layer_height*6 + diff --git a/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg b/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg new file mode 100644 index 0000000000..1036827a89 --- /dev/null +++ b/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = sovol_base_planetary +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +weight = 0 + +[values] +acceleration_wall = 400 +layer_height = 0.08 +layer_height_0 = 0.12 +speed_layer_0 = 15 +support_interface_height = =layer_height*12 +top_bottom_thickness = =layer_height_0+layer_height*10 + diff --git a/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg b/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg new file mode 100644 index 0000000000..e8dcafbd96 --- /dev/null +++ b/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = sovol_base_titan +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.20 +support_interface_height = =layer_height*6 +top_bottom_thickness = =layer_height_0+layer_height*5 + diff --git a/resources/quality/sovol/sovol_titan_global_draft.inst.cfg b/resources/quality/sovol/sovol_titan_global_draft.inst.cfg new file mode 100644 index 0000000000..20bd095ff9 --- /dev/null +++ b/resources/quality/sovol/sovol_titan_global_draft.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = sovol_base_titan +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -5 + +[values] +adhesion_type = skirt +layer_height = 0.32 +layer_height_0 = 0.32 +speed_print = 60 +speed_topbottom = =math.ceil(speed_print * (60 / 100)) +speed_wall = =math.ceil(speed_print * (60 / 100)) +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/sovol/sovol_titan_global_low.inst.cfg b/resources/quality/sovol/sovol_titan_global_low.inst.cfg new file mode 100644 index 0000000000..d3e37f54b3 --- /dev/null +++ b/resources/quality/sovol/sovol_titan_global_low.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = sovol_base_titan +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 22 +type = quality +weight = -4 + +[values] +layer_height = 0.28 +layer_height_0 = 0.28 +speed_print = 60 +speed_topbottom = =math.ceil(speed_print * (60 / 100)) +speed_wall = =math.ceil(speed_print * (60 / 100)) +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/sovol/sovol_titan_global_standard.inst.cfg b/resources/quality/sovol/sovol_titan_global_standard.inst.cfg new file mode 100644 index 0000000000..dd7dbb3786 --- /dev/null +++ b/resources/quality/sovol/sovol_titan_global_standard.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = sovol_base_titan +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = standard +setting_version = 22 +type = quality +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 +support_interface_height = =layer_height*5 +top_bottom_thickness = =layer_height_0+layer_height*4 +wall_thickness = =line_width*2 + diff --git a/resources/quality/sovol/sovol_titan_global_super.inst.cfg b/resources/quality/sovol/sovol_titan_global_super.inst.cfg new file mode 100644 index 0000000000..31cebe4aba --- /dev/null +++ b/resources/quality/sovol/sovol_titan_global_super.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = sovol_base_titan +name = Super Quality +version = 4 + +[metadata] +global_quality = True +quality_type = super +setting_version = 22 +type = quality +weight = -1 + +[values] +acceleration_wall = 400 +layer_height = 0.12 +layer_height_0 = 0.12 +support_interface_height = =layer_height*8 +top_bottom_thickness = =layer_height_0+layer_height*6 + diff --git a/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg b/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg new file mode 100644 index 0000000000..9040e3d60d --- /dev/null +++ b/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = sovol_base_titan +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +weight = 0 + +[values] +acceleration_wall = 400 +layer_height = 0.08 +layer_height_0 = 0.12 +speed_layer_0 = 15 +support_interface_height = =layer_height*12 +top_bottom_thickness = =layer_height_0+layer_height*10 + 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 0c57098f3d..39ba32a332 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_absx +quality_type = a +setting_version = 22 +type = quality variant = High temp 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 35/50) -speed_wall_0 = =math.ceil(speed_wall * 30/35) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 20/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 19 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 19 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 65 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 100 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 20/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 35/50) +speed_wall_0 = =math.ceil(speed_wall * 30/35) +support_angle = 65 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 c6aa37e242..dd0d167e6b 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_absx +quality_type = b +setting_version = 22 +type = quality variant = High temp 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 55 -speed_wall = =math.ceil(speed_print * 37/55) -speed_wall_0 = =math.ceil(speed_wall * 33/37) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 25/55) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 14 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 14 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 60 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 96 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 96 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 15 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/55) +speed_print = 55 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 37/55) +speed_wall_0 = =math.ceil(speed_wall * 33/37) +support_angle = 60 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 7bbc4ec5ea..f894a7dc13 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_absx +quality_type = c +setting_version = 22 +type = quality variant = High temp 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 60 -speed_wall = =math.ceil(speed_print * 40/60) -speed_wall_0 = =math.ceil(speed_wall * 35/40) -speed_topbottom = =math.ceil(speed_print * 40/60) -speed_layer_0 = =math.ceil(speed_print * 30/60) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 9 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 9 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_flow = 91 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 20 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 60 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 40/60) +speed_wall_0 = =math.ceil(speed_wall * 35/40) +support_angle = 55 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 7285f7b098..7642489c2a 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_abs +quality_type = a +setting_version = 22 +type = quality variant = High temp 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 35/50) -speed_wall_0 = =math.ceil(speed_wall * 30/35) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 20/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 19 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 19 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 65 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 100 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 20/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 35/50) +speed_wall_0 = =math.ceil(speed_wall * 30/35) +support_angle = 65 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 2861e0b3a1..bf5c18405b 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_abs +quality_type = b +setting_version = 22 +type = quality variant = High temp 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 55 -speed_wall = =math.ceil(speed_print * 37/55) -speed_wall_0 = =math.ceil(speed_wall * 33/37) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 25/55) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 14 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 14 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 60 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 96 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 1 -material_flow = 96 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 15 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/55) +speed_print = 55 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 37/55) +speed_wall_0 = =math.ceil(speed_wall * 33/37) +support_angle = 60 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 31c7afc2af..6756384e4a 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_abs +quality_type = c +setting_version = 22 +type = quality variant = High temp 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 60 -speed_wall = =math.ceil(speed_print * 40/60) -speed_wall_0 = =math.ceil(speed_wall * 35/40) -speed_topbottom = =math.ceil(speed_print * 40/60) -speed_layer_0 = =math.ceil(speed_print * 30/60) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 9 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 9 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 91 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature +3 -material_flow = 91 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 20 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 60 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 40/60) +speed_wall_0 = =math.ceil(speed_wall * 35/40) +support_angle = 55 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 37bdacf7c1..978484d813 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_acetate +quality_type = a +setting_version = 22 +type = quality variant = High temp 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 37/50) -speed_wall_0 = =math.ceil(speed_wall * 30/37) -speed_topbottom = =math.ceil(speed_print * 33/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 10 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 10 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 60 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 98 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 98 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 33/50) +speed_wall = =math.ceil(speed_print * 37/50) +speed_wall_0 = =math.ceil(speed_wall * 30/37) +support_angle = 60 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 + 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 b41f0679ea..bcec4fe68f 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_acetate +quality_type = b +setting_version = 22 +type = quality variant = High temp 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 55 -speed_wall = =math.ceil(speed_print * 40/55) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 27/55) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 7 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 7 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 95 material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature + 0 -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 27/55) +speed_print = 55 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 40/55) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 + 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 8badb65f02..85f79ebe7a 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_acetate +quality_type = c +setting_version = 22 +type = quality variant = High temp 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 60 -speed_wall = =math.ceil(speed_print * 45/60) -speed_wall_0 = =math.ceil(speed_wall * 33/45) -speed_topbottom = =math.ceil(speed_print * 40/60) -speed_layer_0 = =math.ceil(speed_print * 30/60) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 5 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 5 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 93 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 93 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 60 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 45/60) +speed_wall_0 = =math.ceil(speed_wall * 33/45) +support_angle = 50 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 + 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 c8c9a7b4df..9b29e49624 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_asax +quality_type = a +setting_version = 22 +type = quality variant = High temp 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 35/50) -speed_wall_0 = =math.ceil(speed_wall * 30/35) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 20/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 19 * layer_height cool_fan_speed = 40 cool_fan_speed_max = 75 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 19 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 65 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 100 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 20/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 35/50) +speed_wall_0 = =math.ceil(speed_wall * 30/35) +support_angle = 65 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 67eaf24f1c..07a46f0d05 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_asax +quality_type = b +setting_version = 22 +type = quality variant = High temp 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 55 -speed_wall = =math.ceil(speed_print * 37/55) -speed_wall_0 = =math.ceil(speed_wall * 33/37) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 25/55) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 14 * layer_height cool_fan_speed = 40 cool_fan_speed_max = 75 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 14 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 60 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 96 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_flow = 96 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 15 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/55) +speed_print = 55 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 37/55) +speed_wall_0 = =math.ceil(speed_wall * 33/37) +support_angle = 60 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 4873838d1a..60410d8d34 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_asax +quality_type = c +setting_version = 22 +type = quality variant = High temp 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 60 -speed_wall = =math.ceil(speed_print * 40/60) -speed_wall_0 = =math.ceil(speed_wall * 35/40) -speed_topbottom = =math.ceil(speed_print * 40/60) -speed_layer_0 = =math.ceil(speed_print * 30/60) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 9 * layer_height cool_fan_speed = 40 cool_fan_speed_max = 75 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 9 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 91 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 7 -material_flow = 91 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 20 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 60 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 40/60) +speed_wall_0 = =math.ceil(speed_wall * 35/40) +support_angle = 55 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 0295f9aa64..9304630630 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 @@ -1,62 +1,63 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_copa +quality_type = a +setting_version = 22 +type = quality variant = High temp 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -wall_line_count = 3 -speed_print = 35 -speed_wall = =math.ceil(speed_print * 35/50) -speed_wall_0 = =math.ceil(speed_wall * 30/35) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 20/50) -speed_slowdown_layers = 2 +bridge_fan_speed = 80 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 60 +bridge_skin_speed = 8 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 8 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 20 cool_fan_speed_max = 80 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 2 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_min_speed = 2 cool_lift_head = True -support_angle = 45 -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_initial_print_temperature = =default_material_print_temperature +cool_min_layer_time = 2 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 2 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_final_print_temperature = =default_material_print_temperature material_flow = 91 -skin_material_flow = 92 +material_initial_print_temperature = =default_material_print_temperature +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = =default_material_print_temperature + 5 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_material_flow = 92 skin_overlap = 10 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 20/50) +speed_print = 35 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 35/50) +speed_wall_0 = =math.ceil(speed_wall * 30/35) +support_angle = 45 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 8 -bridge_wall_material_flow = 50 -bridge_skin_speed = 8 -bridge_skin_material_flow = 60 -bridge_skin_density = 80 -bridge_fan_speed = 80 -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_count = 3 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 d0069461e8..d39d91c91a 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 @@ -1,62 +1,63 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_copa +quality_type = b +setting_version = 22 +type = quality variant = High temp 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -wall_line_count = 3 -speed_print = 35 -speed_wall = =math.ceil(speed_print * 37/55) -speed_wall_0 = =math.ceil(speed_wall * 33/37) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 25/55) -speed_slowdown_layers = 2 +bridge_fan_speed = 80 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 60 +bridge_skin_speed = 8 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 8 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 20 cool_fan_speed_max = 80 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 2 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_min_speed = 2 cool_lift_head = True -support_angle = 60 -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_initial_print_temperature = =default_material_print_temperature +cool_min_layer_time = 2 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 2 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_final_print_temperature = =default_material_print_temperature material_flow = 91 -skin_material_flow = 92 +material_initial_print_temperature = =default_material_print_temperature +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = =default_material_print_temperature + 5 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_material_flow = 92 skin_overlap = 15 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 25/55) +speed_print = 35 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 37/55) +speed_wall_0 = =math.ceil(speed_wall * 33/37) +support_angle = 60 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 8 -bridge_wall_material_flow = 50 -bridge_skin_speed = 8 -bridge_skin_material_flow = 60 -bridge_skin_density = 80 -bridge_fan_speed = 80 -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_count = 3 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 23accc5834..e716824cf0 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 @@ -1,62 +1,63 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_copa +quality_type = c +setting_version = 22 +type = quality variant = High temp 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -wall_line_count = 3 -speed_print = 35 -speed_wall = =math.ceil(speed_print * 40/60) -speed_wall_0 = =math.ceil(speed_wall * 35/40) -speed_topbottom = =math.ceil(speed_print * 40/60) -speed_layer_0 = =math.ceil(speed_print * 30/60) -speed_slowdown_layers = 2 +bridge_fan_speed = 80 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 60 +bridge_skin_speed = 8 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 8 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 20 cool_fan_speed_max = 80 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 2 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_min_speed = 2 cool_lift_head = True -support_angle = 60 -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_initial_print_temperature = =default_material_print_temperature +cool_min_layer_time = 2 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 2 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_final_print_temperature = =default_material_print_temperature material_flow = 91 -skin_material_flow = 92 +material_initial_print_temperature = =default_material_print_temperature +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = =default_material_print_temperature + 5 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_material_flow = 92 skin_overlap = 20 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 35 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 40/60) +speed_wall_0 = =math.ceil(speed_wall * 35/40) +support_angle = 60 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 8 -bridge_wall_material_flow = 50 -bridge_skin_speed = 8 -bridge_skin_material_flow = 60 -bridge_skin_density = 80 -bridge_fan_speed = 80 -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_count = 3 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 950e441276..bd964bed2a 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_hips +quality_type = a +setting_version = 22 +type = quality variant = High temp 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 14 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 14 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 + 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 b00876c6de..cd27f77737 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_hips +quality_type = b +setting_version = 22 +type = quality variant = High temp 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 9 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 9 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 15 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 + 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 2d3d5b5484..78191af7be 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_hips +quality_type = c +setting_version = 22 +type = quality variant = High temp 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 20 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 + 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 d6dc3014dd..f37a3b4d6d 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 @@ -1,61 +1,60 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_pc +quality_type = a +setting_version = 22 +type = quality variant = High temp 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 35 -speed_wall = =math.ceil(speed_print * 35/50) -speed_wall_0 = =math.ceil(speed_wall * 30/35) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 20/50) -speed_slowdown_layers = 2 +adhesion_type = brim +bridge_fan_speed = 100 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 100 +bridge_skin_speed = 12.5 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 12 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 10 cool_fan_speed_max = 10 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 2 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_min_speed = 12 -support_angle = 60 cool_lift_head = true +cool_min_layer_time = 2 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 12 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 88 material_print_temperature = 260 material_print_temperature_layer_0 = 265 -material_flow = 88 -wall_line_count = 3 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_speed = 30 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +retraction_speed = 30 skin_overlap = 10 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 20/50) +speed_print = 35 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 35/50) +speed_wall_0 = =math.ceil(speed_wall * 30/35) +support_angle = 60 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True -adhesion_type = brim - -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 12 -bridge_wall_material_flow = 50 -bridge_skin_speed = 12.5 -bridge_skin_material_flow = 100 -bridge_skin_density = 80 -bridge_fan_speed = 100 +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_count = 3 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 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 0f059e05e9..75fed99b1e 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 @@ -1,61 +1,60 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_pc +quality_type = b +setting_version = 22 +type = quality variant = High temp 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 35 -speed_wall = =math.ceil(speed_print * 37/55) -speed_wall_0 = =math.ceil(speed_wall * 33/37) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 25/55) -speed_slowdown_layers = 2 +adhesion_type = brim +bridge_fan_speed = 100 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 100 +bridge_skin_speed = 12.5 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 12 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 10 cool_fan_speed_max = 10 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 2 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_min_speed = 12 cool_lift_head = true -support_angle = 60 +cool_min_layer_time = 2 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 12 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 88 material_print_temperature = 270 material_print_temperature_layer_0 = 275 -material_flow = 88 -wall_line_count = 3 -retraction_speed = 30 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +retraction_speed = 30 skin_overlap = 15 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/55) +speed_print = 35 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 37/55) +speed_wall_0 = =math.ceil(speed_wall * 33/37) +support_angle = 60 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_count = 3 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -adhesion_type = brim - -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 12 -bridge_wall_material_flow = 50 -bridge_skin_speed = 12.5 -bridge_skin_material_flow = 100 -bridge_skin_density = 80 -bridge_fan_speed = 100 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 4b86632a66..51911c3811 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 @@ -1,61 +1,60 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_pc +quality_type = c +setting_version = 22 +type = quality variant = High temp 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 35 -speed_wall = =math.ceil(speed_print * 40/60) -speed_wall_0 = =math.ceil(speed_wall * 35/40) -speed_topbottom = =math.ceil(speed_print * 40/60) -speed_layer_0 = =math.ceil(speed_print * 30/60) -speed_slowdown_layers = 2 +adhesion_type = brim +bridge_fan_speed = 100 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 100 +bridge_skin_speed = 12.5 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 12 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 10 cool_fan_speed_max = 10 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 2 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_min_speed = 12 -support_angle = 60 cool_lift_head = true +cool_min_layer_time = 2 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 12 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 88 material_print_temperature = 270 material_print_temperature_layer_0 = 275 -material_flow = 88 -wall_line_count = 3 -retraction_speed = 30 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +retraction_speed = 30 skin_overlap = 20 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 35 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 40/60) +speed_wall_0 = =math.ceil(speed_wall * 35/40) +support_angle = 60 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_count = 3 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -adhesion_type = brim - -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 12 -bridge_wall_material_flow = 50 -bridge_skin_speed = 12.5 -bridge_skin_material_flow = 100 -bridge_skin_density = 80 -bridge_fan_speed = 100 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 5ed9308482..27d1c07b21 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 @@ -1,58 +1,59 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_pekk +quality_type = b +setting_version = 22 +type = quality variant = High temp 0.4 +weight = 0 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -initial_layer_line_width_factor = 120 -material_flow_layer_0 = 120 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 37/55) -speed_wall_0 = =math.ceil(speed_wall * 33/37) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = 10 -speed_travel_layer_0 = 100 -skirt_brim_speed = 5 -speed_slowdown_layers = 2 +bridge_enable_more_layers = False +bridge_fan_speed = 100 +bridge_settings_enabled = True +bridge_skin_material_flow = =bridge_wall_material_flow +bridge_skin_speed = =bridge_wall_speed +bridge_wall_material_flow = 185 +bridge_wall_speed = 5 cool_fan_enabled = True +cool_fan_full_layer = 2 cool_fan_speed = 30 cool_fan_speed_max = 30 -cool_min_layer_time_fan_speed_max = 10 cool_min_layer_time = 11 -cool_fan_full_layer = 2 +cool_min_layer_time_fan_speed_max = 10 cool_min_speed = 5 -support_angle = 45 +initial_layer_line_width_factor = 120 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 105 +material_flow_layer_0 = 120 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature + 15 -material_flow = 105 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 15 -support_z_distance = =layer_height +skirt_brim_speed = 5 +speed_layer_0 = 10 +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_travel_layer_0 = 100 +speed_wall = =math.ceil(speed_print * 37/55) +speed_wall_0 = =math.ceil(speed_wall * 33/37) +support_angle = 45 support_bottom_distance = =support_z_distance +support_interface_density = 105 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 105 -prime_tower_enable = True -bridge_settings_enabled = True -bridge_wall_speed = 5 -bridge_wall_material_flow = 185 -bridge_skin_speed = =bridge_wall_speed -bridge_skin_material_flow = =bridge_wall_material_flow -bridge_fan_speed = 100 -bridge_enable_more_layers = False +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 5656a3edb0..d0faf6eb66 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_petg +quality_type = a +setting_version = 22 +type = quality variant = High temp 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 35/50) -speed_wall_0 = =math.ceil(speed_wall * 30/35) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 20/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 65 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 98 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 98 +prime_tower_enable = True retraction_extra_prime_amount = 0 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 20/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 35/50) +speed_wall_0 = =math.ceil(speed_wall * 30/35) +support_angle = 65 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 f5315c9b0b..3a64a52254 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_petg +quality_type = b +setting_version = 22 +type = quality variant = High temp 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 55 -speed_wall = =math.ceil(speed_print * 37/55) -speed_wall_0 = =math.ceil(speed_wall * 33/37) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 25/55) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 60 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 15 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 25/55) +speed_print = 55 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 37/55) +speed_wall_0 = =math.ceil(speed_wall * 33/37) +support_angle = 60 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 d9dc021e53..debf74ed0d 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_petg +quality_type = c +setting_version = 22 +type = quality variant = High temp 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 60 -speed_wall = =math.ceil(speed_print * 40/60) -speed_wall_0 = =math.ceil(speed_wall * 35/40) -speed_topbottom = =math.ceil(speed_print * 40/60) -speed_layer_0 = =math.ceil(speed_print * 30/60) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature +5 -material_flow = 91 +prime_tower_enable = True retraction_extra_prime_amount = 0 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 20 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 60 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 40/60) +speed_wall_0 = =math.ceil(speed_wall * 35/40) +support_angle = 55 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 41b6a05de9..990d5cf645 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_pla +quality_type = a +setting_version = 22 +type = quality variant = High temp 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 35/50) -speed_wall_0 = =math.ceil(speed_wall * 30/35) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 20/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 65 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 98 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -5 -material_flow = 98 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 20/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 35/50) +speed_wall_0 = =math.ceil(speed_wall * 30/35) +support_angle = 65 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 95123fb54d..82f26cd66d 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_pla +quality_type = b +setting_version = 22 +type = quality variant = High temp 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 55 -speed_wall = =math.ceil(speed_print * 37/55) -speed_wall_0 = =math.ceil(speed_wall * 33/37) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 25/55) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 60 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 15 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 25/55) +speed_print = 55 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 37/55) +speed_wall_0 = =math.ceil(speed_wall * 33/37) +support_angle = 60 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 8c9289ebe1..a91b035e38 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_pla +quality_type = c +setting_version = 22 +type = quality variant = High temp 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 60 -speed_wall = =math.ceil(speed_print * 40/60) -speed_wall_0 = =math.ceil(speed_wall * 35/40) -speed_topbottom = =math.ceil(speed_print * 40/60) -speed_layer_0 = =math.ceil(speed_print * 30/60) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_flow = 91 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 20 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 60 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 40/60) +speed_wall_0 = =math.ceil(speed_wall * 35/40) +support_angle = 55 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 fca7a3f152..c7194e18d2 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 @@ -1,55 +1,56 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_pla_hr_870 +quality_type = a +setting_version = 22 +type = quality variant = High temp 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -wall_line_count = 3 -speed_print = 30 -speed_wall = =math.ceil(speed_print * 35/50) -speed_wall_0 = =math.ceil(speed_wall * 30/35) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 20/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 +cool_lift_head = True cool_min_layer_time = 2 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 4 -support_angle = 65 -material_print_temperature = =default_material_print_temperature + 5 -material_print_temperature_layer_0 = =default_material_print_temperature + 10 -material_initial_print_temperature = =default_material_print_temperature + 5 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_final_print_temperature = =default_material_print_temperature + 5 material_flow = 91 -skin_material_flow = 92 +material_initial_print_temperature = =default_material_print_temperature + 5 +material_print_temperature = =default_material_print_temperature + 5 +material_print_temperature_layer_0 = =default_material_print_temperature + 10 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 +prime_tower_enable = True retraction_amount = 2 retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_material_flow = 92 skin_overlap = 10 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 20/50) +speed_print = 30 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 35/50) +speed_wall_0 = =math.ceil(speed_wall * 30/35) +support_angle = 65 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 -cool_lift_head = True +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_count = 3 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 9f659c54a6..078e213a26 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 @@ -1,54 +1,55 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_pla_hr_870 +quality_type = b +setting_version = 22 +type = quality variant = High temp 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 37/55) -speed_wall_0 = =math.ceil(speed_wall * 33/37) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 25/55) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 +cool_lift_head = True cool_min_layer_time = 2 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 4 -support_angle = 60 -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_initial_print_temperature = =default_material_print_temperature +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_final_print_temperature = =default_material_print_temperature material_flow = 91 -skin_material_flow = 92 +material_initial_print_temperature = =default_material_print_temperature +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = =default_material_print_temperature + 5 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 +prime_tower_enable = True retraction_amount = 2 retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_material_flow = 92 skin_overlap = 15 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 25/55) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 37/55) +speed_wall_0 = =math.ceil(speed_wall * 33/37) +support_angle = 60 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 -cool_lift_head = True +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 5507ffa799..bfb4c46c46 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 @@ -1,54 +1,55 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_pla_hr_870 +quality_type = c +setting_version = 22 +type = quality variant = High temp 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 40/60) -speed_wall_0 = =math.ceil(speed_wall * 35/40) -speed_topbottom = =math.ceil(speed_print * 40/60) -speed_layer_0 = =math.ceil(speed_print * 30/60) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 +cool_lift_head = True cool_min_layer_time = 2 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 4 -support_angle = 55 -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_initial_print_temperature = =default_material_print_temperature +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_final_print_temperature = =default_material_print_temperature material_flow = 91 -skin_material_flow = 92 +material_initial_print_temperature = =default_material_print_temperature +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = =default_material_print_temperature + 5 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 +prime_tower_enable = True retraction_amount = 2 retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_material_flow = 92 skin_overlap = 20 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 40/60) +speed_wall_0 = =math.ceil(speed_wall * 35/40) +support_angle = 55 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 -cool_lift_head = True +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 f914fd3527..8dd1c17ea6 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_tpu98a +quality_type = a +setting_version = 22 +type = quality variant = High temp 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.38 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.38 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.38 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 30 -speed_wall = =math.ceil(speed_print * 30/30) -speed_wall_0 = =math.ceil(speed_print * 25/30) -speed_topbottom = =math.ceil(speed_print * 25/30) -speed_layer_0 = =math.ceil(speed_print * 20/30) -speed_slowdown_layers = 1 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.38 +material_flow = 107 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature - 3 -material_flow = 107 +prime_tower_enable = True retraction_extra_prime_amount = 0.2 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = False +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 20/30) +speed_print = 30 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 25/30) +speed_wall = =math.ceil(speed_print * 30/30) +speed_wall_0 = =math.ceil(speed_print * 25/30) +support_angle = 50 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 0.5 support_xy_distance = =line_width * 2.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 0.5 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.38 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.38 + 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 bb9cd6a2b3..cca98aa599 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_tpu98a +quality_type = b +setting_version = 22 +type = quality variant = High temp 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.38 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.38 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.38 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 35 -speed_wall = =math.ceil(speed_print * 35/35) -speed_wall_0 = =math.ceil(speed_print * 27/35) -speed_topbottom = =math.ceil(speed_print * 25/35) -speed_layer_0 = =math.ceil(speed_print * 20/35) -speed_slowdown_layers = 1 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.38 +material_flow = 103 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 103 +prime_tower_enable = True retraction_extra_prime_amount = 0.2 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = False +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 20/35) +speed_print = 35 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 25/35) +speed_wall = =math.ceil(speed_print * 35/35) +speed_wall_0 = =math.ceil(speed_print * 27/35) +support_angle = 50 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 0.5 support_xy_distance = =line_width * 2.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 0.5 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.38 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.38 + 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 46a9f6c63a..5a343d6893 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_tpu98a +quality_type = c +setting_version = 22 +type = quality variant = High temp 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.38 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.38 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.38 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 40/40) -speed_wall_0 = =math.ceil(speed_print * 30/40) -speed_topbottom = =math.ceil(speed_print * 27/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 1 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.38 +material_flow = 101 material_print_temperature = =default_material_print_temperature + 7 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 101 +prime_tower_enable = True retraction_extra_prime_amount = 0.2 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = False +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 27/40) +speed_wall = =math.ceil(speed_print * 40/40) +speed_wall_0 = =math.ceil(speed_print * 30/40) +support_angle = 50 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 0.5 support_xy_distance = =line_width * 2.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 0.5 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.38 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.38 + 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 19dcd3dff8..e6be881341 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_absx +quality_type = a +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 35/50) -speed_wall_0 = =math.ceil(speed_wall * 30/35) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 20/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 19 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 19 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 65 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 100 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 20/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 35/50) +speed_wall_0 = =math.ceil(speed_wall * 30/35) +support_angle = 65 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 d2a8379c93..c4342c149a 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_absx +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 55 -speed_wall = =math.ceil(speed_print * 37/55) -speed_wall_0 = =math.ceil(speed_wall * 33/37) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 25/55) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 14 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 14 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 60 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 96 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 96 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 15 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/55) +speed_print = 55 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 37/55) +speed_wall_0 = =math.ceil(speed_wall * 33/37) +support_angle = 60 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 c953946d10..e3581e0823 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_absx +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 60 -speed_wall = =math.ceil(speed_print * 40/60) -speed_wall_0 = =math.ceil(speed_wall * 35/40) -speed_topbottom = =math.ceil(speed_print * 40/60) -speed_layer_0 = =math.ceil(speed_print * 30/60) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 9 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 9 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_flow = 91 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 20 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 60 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 40/60) +speed_wall_0 = =math.ceil(speed_wall * 35/40) +support_angle = 55 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 64bcba1151..4c451894bd 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_abs +quality_type = a +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 35/50) -speed_wall_0 = =math.ceil(speed_wall * 30/35) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 20/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 19 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 19 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 65 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 100 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 20/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 35/50) +speed_wall_0 = =math.ceil(speed_wall * 30/35) +support_angle = 65 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 e2691fadbe..65c2c9e81f 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_abs +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 55 -speed_wall = =math.ceil(speed_print * 37/55) -speed_wall_0 = =math.ceil(speed_wall * 33/37) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 25/55) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 14 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 14 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 60 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 96 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 1 -material_flow = 96 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 15 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/55) +speed_print = 55 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 37/55) +speed_wall_0 = =math.ceil(speed_wall * 33/37) +support_angle = 60 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 fc6d90e37a..2f5cf9cfa3 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_abs +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 60 -speed_wall = =math.ceil(speed_print * 40/60) -speed_wall_0 = =math.ceil(speed_wall * 35/40) -speed_topbottom = =math.ceil(speed_print * 40/60) -speed_layer_0 = =math.ceil(speed_print * 30/60) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 9 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 9 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 91 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature +3 -material_flow = 91 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 20 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 60 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 40/60) +speed_wall_0 = =math.ceil(speed_wall * 35/40) +support_angle = 55 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 38c217a922..36d6697edb 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_acetate +quality_type = a +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 37/50) -speed_wall_0 = =math.ceil(speed_wall * 30/37) -speed_topbottom = =math.ceil(speed_print * 33/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 10 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 10 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 60 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 98 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 98 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 33/50) +speed_wall = =math.ceil(speed_print * 37/50) +speed_wall_0 = =math.ceil(speed_wall * 30/37) +support_angle = 60 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 + 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 3114babdcf..e92561350a 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_acetate +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 55 -speed_wall = =math.ceil(speed_print * 40/55) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 27/55) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 7 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 7 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 95 material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature + 0 -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 27/55) +speed_print = 55 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 40/55) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 + 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 5245b7abb9..e61775fde0 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_acetate +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 60 -speed_wall = =math.ceil(speed_print * 45/60) -speed_wall_0 = =math.ceil(speed_wall * 33/45) -speed_topbottom = =math.ceil(speed_print * 40/60) -speed_layer_0 = =math.ceil(speed_print * 30/60) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 5 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 5 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 93 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 93 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 60 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 45/60) +speed_wall_0 = =math.ceil(speed_wall * 33/45) +support_angle = 50 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 + 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 3fa1a22a28..020b95dad2 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_asax +quality_type = a +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 35/50) -speed_wall_0 = =math.ceil(speed_wall * 30/35) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 20/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 19 * layer_height cool_fan_speed = 40 cool_fan_speed_max = 75 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 19 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 65 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 100 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 20/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 35/50) +speed_wall_0 = =math.ceil(speed_wall * 30/35) +support_angle = 65 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 5006d0d5ff..6688d82ec8 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_asax +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 55 -speed_wall = =math.ceil(speed_print * 37/55) -speed_wall_0 = =math.ceil(speed_wall * 33/37) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 25/55) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 14 * layer_height cool_fan_speed = 40 cool_fan_speed_max = 75 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 14 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 60 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 96 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_flow = 96 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 15 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/55) +speed_print = 55 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 37/55) +speed_wall_0 = =math.ceil(speed_wall * 33/37) +support_angle = 60 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 1243b4ccc0..2c8d6a82d3 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_asax +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 60 -speed_wall = =math.ceil(speed_print * 40/60) -speed_wall_0 = =math.ceil(speed_wall * 35/40) -speed_topbottom = =math.ceil(speed_print * 40/60) -speed_layer_0 = =math.ceil(speed_print * 30/60) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 9 * layer_height cool_fan_speed = 40 cool_fan_speed_max = 75 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 9 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 91 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 7 -material_flow = 91 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 20 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 60 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 40/60) +speed_wall_0 = =math.ceil(speed_wall * 35/40) +support_angle = 55 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 d96fe75972..fe012ff873 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_bvoh +quality_type = a +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 14 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 14 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 + 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 21f87e0abf..c0adce0f84 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_bvoh +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 9 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 9 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 15 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 + 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 336cf8627b..5b58c2f37b 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_bvoh +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 20 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 + 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 3d579a6f78..f986831fd5 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 @@ -1,62 +1,63 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality +material = emotiontech_copa quality_type = a -weight = 1 -material = emotiontech_copa +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -wall_line_count = 3 -speed_print = 35 -speed_wall = =math.ceil(speed_print * 35/50) -speed_wall_0 = =math.ceil(speed_wall * 30/35) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 20/50) -speed_slowdown_layers = 2 +bridge_fan_speed = 80 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 60 +bridge_skin_speed = 8 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 8 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 20 cool_fan_speed_max = 80 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 2 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_min_speed = 2 cool_lift_head = True -support_angle = 45 -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_initial_print_temperature = =default_material_print_temperature +cool_min_layer_time = 2 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 2 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_final_print_temperature = =default_material_print_temperature material_flow = 91 -skin_material_flow = 92 +material_initial_print_temperature = =default_material_print_temperature +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = =default_material_print_temperature + 5 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_material_flow = 92 skin_overlap = 10 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 20/50) +speed_print = 35 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 35/50) +speed_wall_0 = =math.ceil(speed_wall * 30/35) +support_angle = 45 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 8 -bridge_wall_material_flow = 50 -bridge_skin_speed = 8 -bridge_skin_material_flow = 60 -bridge_skin_density = 80 -bridge_fan_speed = 80 -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_count = 3 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 17a7e20691..5d360b244b 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 @@ -1,62 +1,63 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_copa +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -wall_line_count = 3 -speed_print = 35 -speed_wall = =math.ceil(speed_print * 37/55) -speed_wall_0 = =math.ceil(speed_wall * 33/37) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 25/55) -speed_slowdown_layers = 2 +bridge_fan_speed = 80 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 60 +bridge_skin_speed = 8 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 8 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 20 cool_fan_speed_max = 80 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 2 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_min_speed = 2 cool_lift_head = True -support_angle = 60 -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_initial_print_temperature = =default_material_print_temperature +cool_min_layer_time = 2 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 2 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_final_print_temperature = =default_material_print_temperature material_flow = 91 -skin_material_flow = 92 +material_initial_print_temperature = =default_material_print_temperature +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = =default_material_print_temperature + 5 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_material_flow = 92 skin_overlap = 15 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 25/55) +speed_print = 35 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 37/55) +speed_wall_0 = =math.ceil(speed_wall * 33/37) +support_angle = 60 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 8 -bridge_wall_material_flow = 50 -bridge_skin_speed = 8 -bridge_skin_material_flow = 60 -bridge_skin_density = 80 -bridge_fan_speed = 80 -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_count = 3 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 b52b34c3a5..3875e668f4 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 @@ -1,62 +1,63 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_copa +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -wall_line_count = 3 -speed_print = 35 -speed_wall = =math.ceil(speed_print * 40/60) -speed_wall_0 = =math.ceil(speed_wall * 35/40) -speed_topbottom = =math.ceil(speed_print * 40/60) -speed_layer_0 = =math.ceil(speed_print * 30/60) -speed_slowdown_layers = 2 +bridge_fan_speed = 80 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 60 +bridge_skin_speed = 8 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 8 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 20 cool_fan_speed_max = 80 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 2 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_min_speed = 2 cool_lift_head = True -support_angle = 60 -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_initial_print_temperature = =default_material_print_temperature +cool_min_layer_time = 2 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 2 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_final_print_temperature = =default_material_print_temperature material_flow = 91 -skin_material_flow = 92 +material_initial_print_temperature = =default_material_print_temperature +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = =default_material_print_temperature + 5 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_material_flow = 92 skin_overlap = 20 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 35 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 40/60) +speed_wall_0 = =math.ceil(speed_wall * 35/40) +support_angle = 60 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 8 -bridge_wall_material_flow = 50 -bridge_skin_speed = 8 -bridge_skin_material_flow = 60 -bridge_skin_density = 80 -bridge_fan_speed = 80 -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_count = 3 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 644a55b307..d4d0e1c17e 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_hips +quality_type = a +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 14 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 14 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 + 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 6eeff451a7..f2bb237ea2 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_hips +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 9 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 9 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 15 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 + 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 e1aae2bbff..f6780fbded 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_hips +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 20 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 + 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 7db31bb2fe..9dd3039b65 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 @@ -1,61 +1,60 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_pc +quality_type = a +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 35 -speed_wall = =math.ceil(speed_print * 35/50) -speed_wall_0 = =math.ceil(speed_wall * 30/35) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 20/50) -speed_slowdown_layers = 2 +adhesion_type = brim +bridge_fan_speed = 100 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 100 +bridge_skin_speed = 12.5 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 12 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 10 cool_fan_speed_max = 10 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 2 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_min_speed = 12 -support_angle = 60 cool_lift_head = true +cool_min_layer_time = 2 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 12 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 88 material_print_temperature = 260 material_print_temperature_layer_0 = 265 -material_flow = 88 -wall_line_count = 3 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_speed = 30 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +retraction_speed = 30 skin_overlap = 10 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 20/50) +speed_print = 35 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 35/50) +speed_wall_0 = =math.ceil(speed_wall * 30/35) +support_angle = 60 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True -adhesion_type = brim - -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 12 -bridge_wall_material_flow = 50 -bridge_skin_speed = 12.5 -bridge_skin_material_flow = 100 -bridge_skin_density = 80 -bridge_fan_speed = 100 +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_count = 3 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 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 f0cc4d5918..346f33bafb 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 @@ -1,61 +1,60 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_pc +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 35 -speed_wall = =math.ceil(speed_print * 37/55) -speed_wall_0 = =math.ceil(speed_wall * 33/37) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 25/55) -speed_slowdown_layers = 2 +adhesion_type = brim +bridge_fan_speed = 100 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 100 +bridge_skin_speed = 12.5 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 12 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 10 cool_fan_speed_max = 10 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 2 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_min_speed = 12 cool_lift_head = true -support_angle = 60 +cool_min_layer_time = 2 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 12 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 88 material_print_temperature = 270 material_print_temperature_layer_0 = 275 -material_flow = 88 -wall_line_count = 3 -retraction_speed = 30 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +retraction_speed = 30 skin_overlap = 15 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/55) +speed_print = 35 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 37/55) +speed_wall_0 = =math.ceil(speed_wall * 33/37) +support_angle = 60 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_count = 3 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -adhesion_type = brim - -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 12 -bridge_wall_material_flow = 50 -bridge_skin_speed = 12.5 -bridge_skin_material_flow = 100 -bridge_skin_density = 80 -bridge_fan_speed = 100 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 c7c3e22b9b..8571e8c4b0 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 @@ -1,61 +1,60 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_pc +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 35 -speed_wall = =math.ceil(speed_print * 40/60) -speed_wall_0 = =math.ceil(speed_wall * 35/40) -speed_topbottom = =math.ceil(speed_print * 40/60) -speed_layer_0 = =math.ceil(speed_print * 30/60) -speed_slowdown_layers = 2 +adhesion_type = brim +bridge_fan_speed = 100 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 100 +bridge_skin_speed = 12.5 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 12 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 10 cool_fan_speed_max = 10 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 2 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_min_speed = 12 -support_angle = 60 cool_lift_head = true +cool_min_layer_time = 2 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 12 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 88 material_print_temperature = 270 material_print_temperature_layer_0 = 275 -material_flow = 88 -wall_line_count = 3 -retraction_speed = 30 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +retraction_speed = 30 skin_overlap = 20 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 35 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 40/60) +speed_wall_0 = =math.ceil(speed_wall * 35/40) +support_angle = 60 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_count = 3 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -adhesion_type = brim - -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 12 -bridge_wall_material_flow = 50 -bridge_skin_speed = 12.5 -bridge_skin_material_flow = 100 -bridge_skin_density = 80 -bridge_fan_speed = 100 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 3ee7392285..4231e1b3a1 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_petg +quality_type = a +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 35/50) -speed_wall_0 = =math.ceil(speed_wall * 30/35) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 20/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 65 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 98 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 98 +prime_tower_enable = True retraction_extra_prime_amount = 0 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 20/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 35/50) +speed_wall_0 = =math.ceil(speed_wall * 30/35) +support_angle = 65 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 0912abb272..c141a0ab07 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_petg +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 55 -speed_wall = =math.ceil(speed_print * 37/55) -speed_wall_0 = =math.ceil(speed_wall * 33/37) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 25/55) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 60 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 15 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 25/55) +speed_print = 55 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 37/55) +speed_wall_0 = =math.ceil(speed_wall * 33/37) +support_angle = 60 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 ae0b946069..9cd4262c55 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_petg +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 60 -speed_wall = =math.ceil(speed_print * 40/60) -speed_wall_0 = =math.ceil(speed_wall * 35/40) -speed_topbottom = =math.ceil(speed_print * 40/60) -speed_layer_0 = =math.ceil(speed_print * 30/60) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature +5 -material_flow = 91 +prime_tower_enable = True retraction_extra_prime_amount = 0 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 20 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 60 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 40/60) +speed_wall_0 = =math.ceil(speed_wall * 35/40) +support_angle = 55 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 ce99127268..6f49ec9e3b 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_pla +quality_type = a +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 35/50) -speed_wall_0 = =math.ceil(speed_wall * 30/35) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 20/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 65 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 98 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -5 -material_flow = 98 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 20/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 35/50) +speed_wall_0 = =math.ceil(speed_wall * 30/35) +support_angle = 65 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 b92a6c6196..415379417c 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_pla +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 55 -speed_wall = =math.ceil(speed_print * 37/55) -speed_wall_0 = =math.ceil(speed_wall * 33/37) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 25/55) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 60 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 15 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 25/55) +speed_print = 55 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 37/55) +speed_wall_0 = =math.ceil(speed_wall * 33/37) +support_angle = 60 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 6e3d42528f..c4ce86563f 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_pla +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 60 -speed_wall = =math.ceil(speed_print * 40/60) -speed_wall_0 = =math.ceil(speed_wall * 35/40) -speed_topbottom = =math.ceil(speed_print * 40/60) -speed_layer_0 = =math.ceil(speed_print * 30/60) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_flow = 91 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 20 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 60 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 40/60) +speed_wall_0 = =math.ceil(speed_wall * 35/40) +support_angle = 55 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 0c4b34c748..dc4505591f 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 @@ -1,55 +1,56 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_pla_hr_870 +quality_type = a +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -wall_line_count = 3 -speed_print = 30 -speed_wall = =math.ceil(speed_print * 35/50) -speed_wall_0 = =math.ceil(speed_wall * 30/35) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 20/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 +cool_lift_head = True cool_min_layer_time = 2 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 4 -support_angle = 65 -material_print_temperature = =default_material_print_temperature + 5 -material_print_temperature_layer_0 = =default_material_print_temperature + 10 -material_initial_print_temperature = =default_material_print_temperature + 5 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_final_print_temperature = =default_material_print_temperature + 5 material_flow = 91 -skin_material_flow = 92 +material_initial_print_temperature = =default_material_print_temperature + 5 +material_print_temperature = =default_material_print_temperature + 5 +material_print_temperature_layer_0 = =default_material_print_temperature + 10 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 +prime_tower_enable = True retraction_amount = 2 retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_material_flow = 92 skin_overlap = 10 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 20/50) +speed_print = 30 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 35/50) +speed_wall_0 = =math.ceil(speed_wall * 30/35) +support_angle = 65 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 -cool_lift_head = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_count = 3 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 260f7cde66..224fa18cd6 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 @@ -1,54 +1,55 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_pla_hr_870 +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 37/55) -speed_wall_0 = =math.ceil(speed_wall * 33/37) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 25/55) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 +cool_lift_head = True cool_min_layer_time = 2 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 4 -support_angle = 60 -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_initial_print_temperature = =default_material_print_temperature +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_final_print_temperature = =default_material_print_temperature material_flow = 91 -skin_material_flow = 92 +material_initial_print_temperature = =default_material_print_temperature +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = =default_material_print_temperature + 5 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 +prime_tower_enable = True retraction_amount = 2 retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_material_flow = 92 skin_overlap = 15 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 25/55) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 37/55) +speed_wall_0 = =math.ceil(speed_wall * 33/37) +support_angle = 60 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 -cool_lift_head = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 49cce02b03..44737981b0 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 @@ -1,54 +1,55 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_pla_hr_870 +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 40/60) -speed_wall_0 = =math.ceil(speed_wall * 35/40) -speed_topbottom = =math.ceil(speed_print * 40/60) -speed_layer_0 = =math.ceil(speed_print * 30/60) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 +cool_lift_head = True cool_min_layer_time = 2 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 4 -support_angle = 55 -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_initial_print_temperature = =default_material_print_temperature +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 material_final_print_temperature = =default_material_print_temperature material_flow = 91 -skin_material_flow = 92 +material_initial_print_temperature = =default_material_print_temperature +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = =default_material_print_temperature + 5 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 +prime_tower_enable = True retraction_amount = 2 retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_material_flow = 92 skin_overlap = 20 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 40/60) +speed_wall_0 = =math.ceil(speed_wall * 35/40) +support_angle = 55 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 -cool_lift_head = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.35 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.3 + 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 295013a5b1..8bf71b5cf5 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 @@ -1,50 +1,51 @@ - [general] -version = 4 -name = A +[general] definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_pva-m +quality_type = a +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 14 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 14 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 + 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 8984f88369..3102afdc2c 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_pva-m +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 9 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 9 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 15 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 + 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 15b70f99d6..ad6e361582 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_pva-m +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 20 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 + 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 47d9f1c471..b7445aee86 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_pva-s +quality_type = a +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 14 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 14 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 + 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 3aeb4cd7c3..cc849df9ba 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_pva-s +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 9 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 9 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 15 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 + 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 8c1ec211ec..10cbd3a4cf 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_pva-s +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 20 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.4 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.4 + 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 a5851bb08a..055bbb7623 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = A definition = strateo3d +name = A +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 1 material = emotiontech_tpu98a +quality_type = a +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.38 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.38 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.38 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 30 -speed_wall = =math.ceil(speed_print * 30/30) -speed_wall_0 = =math.ceil(speed_print * 25/30) -speed_topbottom = =math.ceil(speed_print * 25/30) -speed_layer_0 = =math.ceil(speed_print * 20/30) -speed_slowdown_layers = 1 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.38 +material_flow = 107 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature - 3 -material_flow = 107 +prime_tower_enable = True retraction_extra_prime_amount = 0.2 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = False +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 20/30) +speed_print = 30 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 25/30) +speed_wall = =math.ceil(speed_print * 30/30) +speed_wall_0 = =math.ceil(speed_print * 25/30) +support_angle = 50 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 0.5 support_xy_distance = =line_width * 2.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 0.5 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.38 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.38 + 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 7122c0ab00..028586beb4 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 material = emotiontech_tpu98a +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.4 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.38 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.38 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.38 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 35 -speed_wall = =math.ceil(speed_print * 35/35) -speed_wall_0 = =math.ceil(speed_print * 27/35) -speed_topbottom = =math.ceil(speed_print * 25/35) -speed_layer_0 = =math.ceil(speed_print * 20/35) -speed_slowdown_layers = 1 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.38 +material_flow = 103 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 103 +prime_tower_enable = True retraction_extra_prime_amount = 0.2 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = False +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 20/35) +speed_print = 35 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 25/35) +speed_wall = =math.ceil(speed_print * 35/35) +speed_wall_0 = =math.ceil(speed_print * 27/35) +support_angle = 50 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 0.5 support_xy_distance = =line_width * 2.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 0.5 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.38 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.38 + 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 90ca2a2569..8bc0b97bc5 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = -1 material = emotiontech_tpu98a +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.4 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.38 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.38 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.38 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 40/40) -speed_wall_0 = =math.ceil(speed_print * 30/40) -speed_topbottom = =math.ceil(speed_print * 27/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 1 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.38 +material_flow = 101 material_print_temperature = =default_material_print_temperature + 7 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 101 +prime_tower_enable = True retraction_extra_prime_amount = 0.2 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = False +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 27/40) +speed_wall = =math.ceil(speed_print * 40/40) +speed_wall_0 = =math.ceil(speed_print * 30/40) +support_angle = 50 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 0.5 support_xy_distance = =line_width * 2.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 0.5 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.38 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.38 + 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 afabd0c36e..ec355cec15 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 1 material = emotiontech_absx +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 37/50) -speed_wall_0 = =math.ceil(speed_wall * 27/43) -speed_topbottom = =math.ceil(speed_print * 33/50) -speed_layer_0 = =math.ceil(speed_print * 20/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 100 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 20/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 33/50) +speed_wall = =math.ceil(speed_print * 37/50) +speed_wall_0 = =math.ceil(speed_wall * 27/43) +support_angle = 55 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 + 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 19578873a9..3ab4df020c 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 0 material = emotiontech_absx +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 55 -speed_wall = =math.ceil(speed_print * 40/55) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/55) -speed_layer_0 = =math.ceil(speed_print * 23/55) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 98 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 98 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 23/55) +speed_print = 55 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/55) +speed_wall = =math.ceil(speed_print * 40/55) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 50 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 + 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 c9227d4688..455cb44a7b 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = -1 material = emotiontech_absx +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.6 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 60 -speed_wall = =math.ceil(speed_print * 43/60) -speed_wall_0 = =math.ceil(speed_wall * 33/43) -speed_topbottom = =math.ceil(speed_print * 37/60) -speed_layer_0 = =math.ceil(speed_print * 25/60) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 96 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_flow = 96 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/60) +speed_print = 60 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/60) +speed_wall = =math.ceil(speed_print * 43/60) +speed_wall_0 = =math.ceil(speed_wall * 33/43) +support_angle = 45 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 + 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 0834364f06..3475c621c3 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 1 material = emotiontech_abs +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 37/50) -speed_wall_0 = =math.ceil(speed_wall * 27/43) -speed_topbottom = =math.ceil(speed_print * 33/50) -speed_layer_0 = =math.ceil(speed_print * 20/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 100 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 20/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 33/50) +speed_wall = =math.ceil(speed_print * 37/50) +speed_wall_0 = =math.ceil(speed_wall * 27/43) +support_angle = 55 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 + 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 392341e8ac..d7d937fdef 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 0 material = emotiontech_abs +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 55 -speed_wall = =math.ceil(speed_print * 40/55) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/55) -speed_layer_0 = =math.ceil(speed_print * 23/55) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 98 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 1 -material_flow = 98 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 23/55) +speed_print = 55 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/55) +speed_wall = =math.ceil(speed_print * 40/55) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 50 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 + 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 93f3e180af..e83067bdc8 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = -1 material = emotiontech_abs +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.6 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 60 -speed_wall = =math.ceil(speed_print * 43/60) -speed_wall_0 = =math.ceil(speed_wall * 33/43) -speed_topbottom = =math.ceil(speed_print * 37/60) -speed_layer_0 = =math.ceil(speed_print * 25/60) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 96 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 96 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/60) +speed_print = 60 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/60) +speed_wall = =math.ceil(speed_print * 43/60) +speed_wall_0 = =math.ceil(speed_wall * 33/43) +support_angle = 45 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 + 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 557c650a5b..188cddf0d6 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 1 material = emotiontech_acetate +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 37/50) -speed_wall_0 = =math.ceil(speed_wall * 30/37) -speed_topbottom = =math.ceil(speed_print * 33/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 60 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 95 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 33/50) +speed_wall = =math.ceil(speed_print * 37/50) +speed_wall_0 = =math.ceil(speed_wall * 30/37) +support_angle = 60 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 + 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 b179a77935..6127c2ec43 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 0 material = emotiontech_acetate +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 55 -speed_wall = =math.ceil(speed_print * 40/55) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 27/55) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 93 material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature + 0 -material_flow = 93 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 27/55) +speed_print = 55 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 40/55) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 + 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 d0e92c138c..ca38be0476 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = -1 material = emotiontech_acetate +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.6 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 60 -speed_wall = =math.ceil(speed_print * 45/60) -speed_wall_0 = =math.ceil(speed_wall * 33/45) -speed_topbottom = =math.ceil(speed_print * 40/60) -speed_layer_0 = =math.ceil(speed_print * 30/60) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 91 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 91 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 60 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 45/60) +speed_wall_0 = =math.ceil(speed_wall * 33/45) +support_angle = 50 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 + 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 4a38b97d3e..caa9003cb3 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 1 material = emotiontech_asax +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 37/50) -speed_wall_0 = =math.ceil(speed_wall * 30/37) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 40 cool_fan_speed_max = 75 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 60 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 101 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 101 +prime_tower_enable = True retraction_extra_prime_amount = 0.2 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 37/50) +speed_wall_0 = =math.ceil(speed_wall * 30/37) +support_angle = 60 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 + 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 5f111cfdb8..a10cbdac7d 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 0 material = emotiontech_asax +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 55 -speed_wall = =math.ceil(speed_print * 40/55) -speed_wall_0 = =math.ceil(speed_wall * 33/40) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 25/55) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 40 cool_fan_speed_max = 75 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 99 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_flow = 99 +prime_tower_enable = True retraction_extra_prime_amount = 0.2 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/55) +speed_print = 55 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 40/55) +speed_wall_0 = =math.ceil(speed_wall * 33/40) +support_angle = 55 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 + 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 9da0a57200..85fe174e95 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = -1 material = emotiontech_asax +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.6 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 60 -speed_wall = =math.ceil(speed_print * 43/60) -speed_wall_0 = =math.ceil(speed_wall * 35/45) -speed_topbottom = =math.ceil(speed_print * 40/60) -speed_layer_0 = =math.ceil(speed_print * 25/60) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 40 cool_fan_speed_max = 75 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 7 -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.2 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/60) +speed_print = 60 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 43/60) +speed_wall_0 = =math.ceil(speed_wall * 35/45) +support_angle = 50 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 + 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 d56f2386fe..9b48be1b8b 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 1 material = emotiontech_bvoh +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 95 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 + 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 259cb146bd..0440a0a34a 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 0 material = emotiontech_bvoh +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 95 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 + 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 b65acc22ba..7f124ae4ec 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = -1 material = emotiontech_bvoh +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.6 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 + 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 d65b84bb98..f662c41048 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 @@ -1,64 +1,65 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 1 material = emotiontech_copa +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -wall_line_count = 3 -speed_print = 35 -speed_wall = =math.ceil(speed_print * 37/50) -speed_wall_0 = =math.ceil(speed_wall * 30/37) -speed_topbottom = =math.ceil(speed_print * 33/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 +bridge_fan_speed = 80 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 60 +bridge_skin_speed = 10 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 10 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 20 cool_fan_speed_max = 80 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 3 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_min_speed = 4 cool_lift_head = True -support_angle = 45 -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_initial_print_temperature = =default_material_print_temperature +cool_min_layer_time = 3 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 4 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_final_print_temperature = =default_material_print_temperature material_flow = 90 -skin_material_flow = 92 -retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width -retraction_hop_only_when_collides = True -skin_overlap = 5 -support_z_distance = =layer_height*2 -support_bottom_distance = =support_z_distance*0.5 -support_xy_distance = =line_width * 1.7 -support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 +material_initial_print_temperature = =default_material_print_temperature +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = =default_material_print_temperature + 5 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 prime_tower_enable = True retraction_amount = 3 +retraction_extra_prime_amount = 0.1 +retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width retraction_speed = 35 -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 10 -bridge_wall_material_flow = 50 -bridge_skin_speed = 10 -bridge_skin_material_flow = 60 -bridge_skin_density = 80 -bridge_fan_speed = 80 -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 \ No newline at end of file +skin_material_flow = 92 +skin_overlap = 5 +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 35 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 33/50) +speed_wall = =math.ceil(speed_print * 37/50) +speed_wall_0 = =math.ceil(speed_wall * 30/37) +support_angle = 45 +support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 +support_xy_distance = =line_width * 1.7 +support_xy_distance_overhang = =wall_line_width_0 +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_count = 3 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 + 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 94ec3e6142..dae0dda098 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 @@ -1,64 +1,65 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 0 material = emotiontech_copa +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -wall_line_count = 3 -speed_print = 35 -speed_wall = =math.ceil(speed_print * 40/55) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 27/55) -speed_slowdown_layers = 2 +bridge_fan_speed = 80 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 60 +bridge_skin_speed = 10 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 10 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 20 cool_fan_speed_max = 80 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 3 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_min_speed = 4 cool_lift_head = True -support_angle = 45 -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_initial_print_temperature = =default_material_print_temperature +cool_min_layer_time = 3 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 4 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_final_print_temperature = =default_material_print_temperature material_flow = 90 -skin_material_flow = 92 -retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width -retraction_hop_only_when_collides = True -skin_overlap = 5 -support_z_distance = =layer_height*2 -support_bottom_distance = =support_z_distance*0.5 -support_xy_distance = =line_width * 1.7 -support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 +material_initial_print_temperature = =default_material_print_temperature +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = =default_material_print_temperature + 5 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 prime_tower_enable = True retraction_amount = 3 +retraction_extra_prime_amount = 0.1 +retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width retraction_speed = 35 -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 10 -bridge_wall_material_flow = 50 -bridge_skin_speed = 10 -bridge_skin_material_flow = 60 -bridge_skin_density = 80 -bridge_fan_speed = 80 -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 \ No newline at end of file +skin_material_flow = 92 +skin_overlap = 5 +speed_layer_0 = =math.ceil(speed_print * 27/55) +speed_print = 35 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 40/55) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 45 +support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 +support_xy_distance = =line_width * 1.7 +support_xy_distance_overhang = =wall_line_width_0 +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_count = 3 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 + 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 6ace0cb5b6..1079c746ec 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 @@ -1,64 +1,65 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = -1 material = emotiontech_copa +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.6 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -wall_line_count = 3 -speed_print = 35 -speed_wall = =math.ceil(speed_print * 43/60) -speed_wall_0 = =math.ceil(speed_wall * 33/43) -speed_topbottom = =math.ceil(speed_print * 37/60) -speed_layer_0 = =math.ceil(speed_print * 25/60) -speed_slowdown_layers = 2 +bridge_fan_speed = 80 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 60 +bridge_skin_speed = 10 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 10 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 20 cool_fan_speed_max = 80 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 3 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height -cool_min_speed = 4 cool_lift_head = True -support_angle = 45 -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_initial_print_temperature = =default_material_print_temperature +cool_min_layer_time = 3 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 4 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_final_print_temperature = =default_material_print_temperature material_flow = 91 -skin_material_flow = 92 -retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width -retraction_hop_only_when_collides = True -skin_overlap = 5 -support_z_distance = =layer_height*2 -support_bottom_distance = =support_z_distance*0.5 -support_xy_distance = =line_width * 1.7 -support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 +material_initial_print_temperature = =default_material_print_temperature +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = =default_material_print_temperature + 5 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 prime_tower_enable = True retraction_amount = 3 +retraction_extra_prime_amount = 0.1 +retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width retraction_speed = 35 -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 10 -bridge_wall_material_flow = 50 -bridge_skin_speed = 10 -bridge_skin_material_flow = 60 -bridge_skin_density = 80 -bridge_fan_speed = 80 -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 \ No newline at end of file +skin_material_flow = 92 +skin_overlap = 5 +speed_layer_0 = =math.ceil(speed_print * 25/60) +speed_print = 35 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/60) +speed_wall = =math.ceil(speed_print * 43/60) +speed_wall_0 = =math.ceil(speed_wall * 33/43) +support_angle = 45 +support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 +support_xy_distance = =line_width * 1.7 +support_xy_distance_overhang = =wall_line_width_0 +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_count = 3 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 + 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 078ca75737..04991249e9 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 1 material = emotiontech_hips +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 9 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 9 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 95 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 + 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 7549e513b8..685778f3f1 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 0 material = emotiontech_hips +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 9 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 9 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 95 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 + 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 2b97793cec..ab5eca1d47 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = -1 material = emotiontech_hips +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.6 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 9 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 9 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 + 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 8069983655..a5a2addbc6 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 0 material = emotiontech_nylon_1030 +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 55 -speed_wall = =math.ceil(speed_print * 40/55) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/55) -speed_layer_0 = =math.ceil(speed_print * 23/55) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 93 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 93 +prime_tower_enable = True retraction_extra_prime_amount = 0 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 30 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 23/55) +speed_print = 55 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/55) +speed_wall = =math.ceil(speed_print * 40/55) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 + 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 8725b701d4..6997dae536 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 @@ -1,59 +1,59 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 1 material = emotiontech_pc +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 37/50) -speed_wall_0 = =math.ceil(speed_wall * 30/37) -speed_topbottom = =math.ceil(speed_print * 33/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 +bridge_fan_speed = 100 +bridge_settings_enabled = True +bridge_skin_density = 100 +bridge_skin_material_flow = 80 +bridge_skin_speed = 10 +bridge_wall_coast = 50 +bridge_wall_material_flow = 75 +bridge_wall_speed = 10 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 20 cool_fan_speed_max = 20 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 3 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_min_speed = 8 cool_lift_head = true -support_angle = 60 -material_print_temperature = 270 -material_print_temperature_layer_0 = 275 +cool_min_layer_time = 3 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 8 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 87 -retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width -retraction_hop_only_when_collides = True -skin_overlap = 5 -support_z_distance = =layer_height -support_bottom_distance = =support_z_distance*0.5 -support_xy_distance = =line_width * 1.7 -support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 +material_print_temperature = 270 +material_print_temperature_layer_0 = 275 prime_tower_enable = True retraction_amount = 2 +retraction_extra_prime_amount = 0.1 +retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width retraction_speed = 25 +skin_overlap = 5 +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 33/50) +speed_wall = =math.ceil(speed_print * 37/50) +speed_wall_0 = =math.ceil(speed_wall * 30/37) +support_angle = 60 +support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 +support_xy_distance = =line_width * 1.7 +support_xy_distance_overhang = =wall_line_width_0 +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 10 -bridge_wall_material_flow = 75 -bridge_skin_speed = 10 -bridge_skin_material_flow = 80 -bridge_skin_density = 100 -bridge_fan_speed = 100 \ No newline at end of file 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 243f705f11..70bb7206af 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 @@ -1,59 +1,59 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 0 material = emotiontech_pc +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 40/55) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 27/55) -speed_slowdown_layers = 2 +bridge_fan_speed = 100 +bridge_settings_enabled = True +bridge_skin_density = 100 +bridge_skin_material_flow = 80 +bridge_skin_speed = 10 +bridge_wall_coast = 50 +bridge_wall_material_flow = 75 +bridge_wall_speed = 10 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 20 cool_fan_speed_max = 20 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 3 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_min_speed = 8 cool_lift_head = true -support_angle = 60 -material_print_temperature = 270 -material_print_temperature_layer_0 = 275 +cool_min_layer_time = 3 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 8 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 87 -retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width -retraction_hop_only_when_collides = True -skin_overlap = 5 -support_z_distance = =layer_height -support_bottom_distance = =support_z_distance*0.5 -support_xy_distance = =line_width * 1.7 -support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 +material_print_temperature = 270 +material_print_temperature_layer_0 = 275 prime_tower_enable = True retraction_amount = 2 +retraction_extra_prime_amount = 0.1 +retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width retraction_speed = 25 +skin_overlap = 5 +speed_layer_0 = =math.ceil(speed_print * 27/55) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 40/55) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 60 +support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 +support_xy_distance = =line_width * 1.7 +support_xy_distance_overhang = =wall_line_width_0 +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 10 -bridge_wall_material_flow = 75 -bridge_skin_speed = 10 -bridge_skin_material_flow = 80 -bridge_skin_density = 100 -bridge_fan_speed = 100 \ No newline at end of file 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 113e15f27e..eb89937ded 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 @@ -1,59 +1,59 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = -1 material = emotiontech_pc +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.6 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 43/60) -speed_wall_0 = =math.ceil(speed_wall * 33/43) -speed_topbottom = =math.ceil(speed_print * 37/60) -speed_layer_0 = =math.ceil(speed_print * 25/60) -speed_slowdown_layers = 2 +bridge_fan_speed = 100 +bridge_settings_enabled = True +bridge_skin_density = 100 +bridge_skin_material_flow = 80 +bridge_skin_speed = 10 +bridge_wall_coast = 50 +bridge_wall_material_flow = 75 +bridge_wall_speed = 10 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 20 cool_fan_speed_max = 20 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 3 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height -cool_min_speed = 8 cool_lift_head = true -support_angle = 60 -material_print_temperature = 270 -material_print_temperature_layer_0 = 275 +cool_min_layer_time = 3 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 8 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_flow = 87 -retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width -retraction_hop_only_when_collides = True -skin_overlap = 5 -support_z_distance = =layer_height -support_bottom_distance = =support_z_distance*0.5 -support_xy_distance = =line_width * 1.7 -support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 +material_print_temperature = 270 +material_print_temperature_layer_0 = 275 prime_tower_enable = True retraction_amount = 2 +retraction_extra_prime_amount = 0.1 +retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width retraction_speed = 25 +skin_overlap = 5 +speed_layer_0 = =math.ceil(speed_print * 25/60) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/60) +speed_wall = =math.ceil(speed_print * 43/60) +speed_wall_0 = =math.ceil(speed_wall * 33/43) +support_angle = 60 +support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 +support_xy_distance = =line_width * 1.7 +support_xy_distance_overhang = =wall_line_width_0 +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 10 -bridge_wall_material_flow = 75 -bridge_skin_speed = 10 -bridge_skin_material_flow = 80 -bridge_skin_density = 100 -bridge_fan_speed = 100 \ No newline at end of file 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 6849955c59..4bc567a2d9 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 1 material = emotiontech_petg +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 45 -speed_wall = =math.ceil(speed_print * 33/45) -speed_wall_0 = =math.ceil(speed_wall * 23/33) -speed_topbottom = =math.ceil(speed_print * 30/45) -speed_layer_0 = =math.ceil(speed_print * 23/45) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 70 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 60 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 93 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 93 +prime_tower_enable = True retraction_extra_prime_amount = 0 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 23/45) +speed_print = 45 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 30/45) +speed_wall = =math.ceil(speed_print * 33/45) +speed_wall_0 = =math.ceil(speed_wall * 23/33) +support_angle = 60 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 + 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 300997493b..f08c2e68b7 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 0 material = emotiontech_petg +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 37/50) -speed_wall_0 = =math.ceil(speed_wall * 25/37) -speed_topbottom = =math.ceil(speed_print * 33/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 70 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 92 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 92 +prime_tower_enable = True retraction_extra_prime_amount = 0 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 33/50) +speed_wall = =math.ceil(speed_print * 37/50) +speed_wall_0 = =math.ceil(speed_wall * 25/37) +support_angle = 50 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 + 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 6bbb554f17..4a9a1472b8 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = -1 material = emotiontech_petg +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.6 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 55 -speed_wall = =math.ceil(speed_print * 40/55) -speed_wall_0 = =math.ceil(speed_wall * 27/40) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 27/55) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 70 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature +5 -material_flow = 91 +prime_tower_enable = True retraction_extra_prime_amount = 0 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 27/55) +speed_print = 55 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 40/55) +speed_wall_0 = =math.ceil(speed_wall * 27/40) +support_angle = 45 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 + 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 95b70cc1d2..41edbc8e32 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 1 material = emotiontech_pla +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 37/50) -speed_wall_0 = =math.ceil(speed_wall * 30/37) -speed_topbottom = =math.ceil(speed_print * 33/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 60 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 93 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 93 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 33/50) +speed_wall = =math.ceil(speed_print * 37/50) +speed_wall_0 = =math.ceil(speed_wall * 30/37) +support_angle = 60 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 + 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 ef05e13339..10356ad344 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 0 material = emotiontech_pla +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 55 -speed_wall = =math.ceil(speed_print * 40/55) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 27/55) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 92 material_print_temperature = =default_material_print_temperature + 8 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 92 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 27/55) +speed_print = 55 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 40/55) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 + 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 02f327d85b..9f04791ac2 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = -1 material = emotiontech_pla +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.6 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 60 -speed_wall = =math.ceil(speed_print * 45/60) -speed_wall_0 = =math.ceil(speed_wall * 33/45) -speed_topbottom = =math.ceil(speed_print * 40/60) -speed_layer_0 = =math.ceil(speed_print * 30/60) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 91 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_flow = 91 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 60 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 45/60) +speed_wall_0 = =math.ceil(speed_wall * 33/45) +support_angle = 50 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 + 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 c70411d6f2..56e09ac385 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 @@ -1,53 +1,54 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 1 material = emotiontech_pla_hr_870 +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 37/50) -speed_wall_0 = =math.ceil(speed_wall * 30/37) -speed_topbottom = =math.ceil(speed_print * 33/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 +cool_lift_head = True cool_min_layer_time = 3 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 2 -support_angle = 60 -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_initial_print_temperature = =default_material_print_temperature +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_final_print_temperature = =default_material_print_temperature material_flow = 90 -skin_material_flow = 91 +material_initial_print_temperature = =default_material_print_temperature +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = =default_material_print_temperature + 5 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_material_flow = 91 skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 33/50) +speed_wall = =math.ceil(speed_print * 37/50) +speed_wall_0 = =math.ceil(speed_wall * 30/37) +support_angle = 60 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 -cool_lift_head = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 + 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 14854403d9..6c8a5462aa 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 @@ -1,53 +1,54 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 0 material = emotiontech_pla_hr_870 +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 40/55) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 37/55) -speed_layer_0 = =math.ceil(speed_print * 27/55) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 +cool_lift_head = True cool_min_layer_time = 3 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 2 -support_angle = 55 -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_initial_print_temperature = =default_material_print_temperature +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_final_print_temperature = =default_material_print_temperature material_flow = 90 -skin_material_flow = 91 +material_initial_print_temperature = =default_material_print_temperature +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = =default_material_print_temperature + 5 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_material_flow = 91 skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 27/55) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 37/55) +speed_wall = =math.ceil(speed_print * 40/55) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 -cool_lift_head = True +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 + 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 86b318a446..be4a045e0d 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 @@ -1,53 +1,54 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = -1 material = emotiontech_pla_hr_870 +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.6 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 45/60) -speed_wall_0 = =math.ceil(speed_wall * 33/45) -speed_topbottom = =math.ceil(speed_print * 40/60) -speed_layer_0 = =math.ceil(speed_print * 30/60) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 +cool_lift_head = True cool_min_layer_time = 3 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 2 -support_angle = 50 -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_initial_print_temperature = =default_material_print_temperature +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 material_final_print_temperature = =default_material_print_temperature material_flow = 90 -skin_material_flow = 91 +material_initial_print_temperature = =default_material_print_temperature +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = =default_material_print_temperature + 5 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width +skin_material_flow = 91 skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 30/60) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 40/60) +speed_wall = =math.ceil(speed_print * 45/60) +speed_wall_0 = =math.ceil(speed_wall * 33/45) +support_angle = 50 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 -cool_lift_head = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.5 + 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 5bd704010d..6b107e9c9b 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 1 material = emotiontech_pva-m +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 95 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 + 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 6fe95c8ae7..ca169572b9 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 0 material = emotiontech_pva-m +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 95 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 + 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 fade22ca39..7e7a3ed9d1 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = -1 material = emotiontech_pva-m +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.6 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 + 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 9079b5e607..a08e251fe0 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 1 material = emotiontech_pva-s +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 95 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 + 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 b4076bdab9..2bcf4d4b1d 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 0 material = emotiontech_pva-s +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 95 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 + 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 cfa80a2d8a..1352a75a8a 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = -1 material = emotiontech_pva-s +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.6 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.6 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.6 + 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 24baf961d0..ad699959aa 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 @@ -1,48 +1,49 @@ [general] -version = 4 -name = B definition = strateo3d +name = B +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 1 material = emotiontech_tpu98a +quality_type = b +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_0_wipe_dist = =machine_nozzle_size -speed_print = 35 -speed_wall = =math.ceil(speed_print * 35/35) -speed_wall_0 = =math.ceil(speed_wall * 30/35) -speed_topbottom = =math.ceil(speed_print * 25/35) -speed_support = =speed_wall_0 -speed_layer_0 = =math.ceil(speed_print * 20/35) -speed_slowdown_layers = 1 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +material_flow = 105 material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature - 2 -material_flow = 105 +prime_tower_enable = True retraction_extra_prime_amount = 0.2 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = False +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 20/35) +speed_print = 35 +speed_slowdown_layers = 1 +speed_support = =speed_wall_0 +speed_topbottom = =math.ceil(speed_print * 25/35) +speed_wall = =math.ceil(speed_print * 35/35) +speed_wall_0 = =math.ceil(speed_wall * 30/35) +support_angle = 50 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 0.7 support_xy_distance = =line_width * 2.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 0.7 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.55 + 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 aae048a512..6fdabc1a83 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 @@ -1,48 +1,49 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 0 material = emotiontech_tpu98a +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.6 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_0_wipe_dist = =machine_nozzle_size -speed_print = 40 -speed_wall = =math.ceil(speed_print * 40/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 27/40) -speed_support = =speed_wall_0 -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 1 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +material_flow = 103 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 103 +prime_tower_enable = True retraction_extra_prime_amount = 0.2 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = False +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 1 +speed_support = =speed_wall_0 +speed_topbottom = =math.ceil(speed_print * 27/40) +speed_wall = =math.ceil(speed_print * 40/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 50 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 0.7 support_xy_distance = =line_width * 2.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 0.7 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.55 + 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 f4c2a1d03b..1954931cc7 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = -1 material = emotiontech_tpu98a +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.6 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.55 -wall_0_wipe_dist = =machine_nozzle_size -speed_print = 45 -speed_wall = =math.ceil(speed_print * 45/45) -speed_wall_0 = =math.ceil(speed_wall * 33/45) -speed_topbottom = =math.ceil(speed_print * 30/45) -speed_layer_0 = =math.ceil(speed_print * 20/45) -speed_slowdown_layers = 1 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +material_flow = 101 material_print_temperature = =default_material_print_temperature + 7 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 101 +prime_tower_enable = True retraction_extra_prime_amount = 0.2 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = False +retraction_min_travel = =3*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 20/45) +speed_print = 45 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 30/45) +speed_wall = =math.ceil(speed_print * 45/45) +speed_wall_0 = =math.ceil(speed_wall * 33/45) +support_angle = 50 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 0.7 support_xy_distance = =line_width * 2.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 0.7 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.55 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.55 + 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 ad01e7c4a2..913af1994b 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 1 material = emotiontech_absx +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 37/50) -speed_wall_0 = =math.ceil(speed_wall * 30/37) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 1 -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 37/50) +speed_wall_0 = =math.ceil(speed_wall * 30/37) +support_angle = 55 support_bottom_distance = =layer_height +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 2 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 + 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 7926f5e019..573834fc79 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 0 material = emotiontech_absx +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 37/50) -speed_wall_0 = =math.ceil(speed_wall * 30/37) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 96 material_print_temperature = =default_material_print_temperature + 7 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 96 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 37/50) +speed_wall_0 = =math.ceil(speed_wall * 30/37) +support_angle = 50 support_bottom_distance = =layer_height +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 2 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 + 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 7b6319067f..3d5d1781ae 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = E definition = strateo3d +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = -1 material = emotiontech_absx +quality_type = e +setting_version = 22 +type = quality variant = Standard 0.8 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 37/50) -speed_wall_0 = =math.ceil(speed_wall * 30/37) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 95 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 37/50) +speed_wall_0 = =math.ceil(speed_wall * 30/37) +support_angle = 45 support_bottom_distance = =layer_height +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 2 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 + 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 05585acf45..4910a69272 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 1 material = emotiontech_abs +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 37/50) -speed_wall_0 = =math.ceil(speed_wall * 30/37) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 97 material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 37/50) +speed_wall_0 = =math.ceil(speed_wall * 30/37) +support_angle = 55 support_bottom_distance = =layer_height +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 2 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 + 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 c4d5eecee5..28d395019a 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 0 material = emotiontech_abs +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 37/50) -speed_wall_0 = =math.ceil(speed_wall * 30/37) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 96 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 2 -material_flow = 96 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 37/50) +speed_wall_0 = =math.ceil(speed_wall * 30/37) +support_angle = 50 support_bottom_distance = =layer_height +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 2 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 + 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 bcc4e4c899..b91ceb1f85 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = E definition = strateo3d +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = -1 material = emotiontech_abs +quality_type = e +setting_version = 22 +type = quality variant = Standard 0.8 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 37/50) -speed_wall_0 = =math.ceil(speed_wall * 30/37) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 95 material_print_temperature = =default_material_print_temperature + 7 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 37/50) +speed_wall_0 = =math.ceil(speed_wall * 30/37) +support_angle = 45 support_bottom_distance = =layer_height +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 2 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 + 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 a6593d9206..4a32ddceaf 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 1 material = emotiontech_asax +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 40/50) -speed_wall_0 = =math.ceil(speed_wall * 33/40) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 40 cool_fan_speed_max = 75 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 97 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 40/50) +speed_wall_0 = =math.ceil(speed_wall * 33/40) +support_angle = 55 support_bottom_distance = =layer_height +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 + 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 dcf6d1232e..e45a8970f7 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 0 material = emotiontech_asax +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 40/50) -speed_wall_0 = =math.ceil(speed_wall * 33/40) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 40 cool_fan_speed_max = 75 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 96 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_flow = 96 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 40/50) +speed_wall_0 = =math.ceil(speed_wall * 33/40) +support_angle = 50 support_bottom_distance = =layer_height +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 + 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 87cb8ddc6a..c0a9632b95 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = E definition = strateo3d +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = -1 material = emotiontech_asax +quality_type = e +setting_version = 22 +type = quality variant = Standard 0.8 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 40/50) -speed_wall_0 = =math.ceil(speed_wall * 33/40) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 40 cool_fan_speed_max = 75 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 7 -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 40/50) +speed_wall_0 = =math.ceil(speed_wall * 33/40) +support_angle = 45 support_bottom_distance = =layer_height +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 + 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 8ef8c7df18..bce7e2891f 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 1 material = emotiontech_bvoh +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 25/30) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 25/30) +support_angle = 50 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 + 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 da523e962e..0a053f123e 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 0 material = emotiontech_bvoh +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 25/30) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 25/30) +support_angle = 50 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 + 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 928a433551..4f167ecacc 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = E definition = strateo3d +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = -1 material = emotiontech_bvoh +quality_type = e +setting_version = 22 +type = quality variant = Standard 0.8 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 25/30) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 25/30) +support_angle = 50 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 + 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 eb791525c5..8efea7e264 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 @@ -1,65 +1,66 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 1 material = emotiontech_copa +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -wall_line_count = 4 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 40/50) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 +bridge_fan_speed = 80 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 60 +bridge_skin_speed = 10 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 10 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 20 cool_fan_speed_max = 80 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 4 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_min_speed = 8 cool_lift_head = True -support_angle = 45 -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_initial_print_temperature = =default_material_print_temperature +cool_min_layer_time = 4 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 8 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_final_print_temperature = =default_material_print_temperature material_flow = 93 -skin_material_flow = 94 +material_initial_print_temperature = =default_material_print_temperature +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = =default_material_print_temperature + 5 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width -retraction_hop_only_when_collides = True -retraction_hop_enabled = True retraction_hop = 2 +retraction_hop_enabled = True +retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width retraction_speed = 35 +skin_material_flow = 94 skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 40/50) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 45 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 10 -bridge_wall_material_flow = 50 -bridge_skin_speed = 10 -bridge_skin_material_flow = 60 -bridge_skin_density = 80 -bridge_fan_speed = 80 -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_count = 4 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 + 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 5df7d47802..d2f6973da7 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 @@ -1,65 +1,66 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 0 material = emotiontech_copa +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -wall_line_count = 4 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 40/50) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 +bridge_fan_speed = 80 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 60 +bridge_skin_speed = 10 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 10 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 20 cool_fan_speed_max = 80 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 4 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_min_speed = 8 cool_lift_head = True -support_angle = 45 -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_initial_print_temperature = =default_material_print_temperature +cool_min_layer_time = 4 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 8 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_final_print_temperature = =default_material_print_temperature material_flow = 93 -skin_material_flow = 94 +material_initial_print_temperature = =default_material_print_temperature +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = =default_material_print_temperature + 5 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width -retraction_hop_only_when_collides = True -retraction_hop_enabled = True retraction_hop = 2 +retraction_hop_enabled = True +retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width retraction_speed = 35 +skin_material_flow = 94 skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 40/50) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 45 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 10 -bridge_wall_material_flow = 50 -bridge_skin_speed = 10 -bridge_skin_material_flow = 60 -bridge_skin_density = 80 -bridge_fan_speed = 80 -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_count = 4 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 + 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 b9ac1024ec..57e9fc27a4 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 @@ -1,65 +1,66 @@ [general] -version = 4 -name = E definition = strateo3d +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = -1 material = emotiontech_copa +quality_type = e +setting_version = 22 +type = quality variant = Standard 0.8 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -wall_line_count = 4 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 40/50) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 +bridge_fan_speed = 80 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 60 +bridge_skin_speed = 10 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 10 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 20 cool_fan_speed_max = 80 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 4 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_min_speed = 8 cool_lift_head = True -support_angle = 45 -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_initial_print_temperature = =default_material_print_temperature +cool_min_layer_time = 4 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 8 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_final_print_temperature = =default_material_print_temperature material_flow = 93 -skin_material_flow = 94 +material_initial_print_temperature = =default_material_print_temperature +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = =default_material_print_temperature + 5 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width -retraction_hop_only_when_collides = True -retraction_hop_enabled = True retraction_hop = 2 +retraction_hop_enabled = True +retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width retraction_speed = 35 +skin_material_flow = 94 skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 40/50) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 45 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 10 -bridge_wall_material_flow = 50 -bridge_skin_speed = 10 -bridge_skin_material_flow = 60 -bridge_skin_density = 80 -bridge_fan_speed = 80 -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_count = 4 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 + 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 b47193ccab..2ef4a5b479 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 1 material = emotiontech_hips +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 9 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 9 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 50 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 + 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 ec5ae4da52..a7549a851c 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 0 material = emotiontech_hips +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 9 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 9 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 50 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 + 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 5aa458e850..322f31e986 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = E definition = strateo3d +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = -1 material = emotiontech_hips +quality_type = e +setting_version = 22 +type = quality variant = Standard 0.8 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 9 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 9 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 50 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 + 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 14b53258f7..d8b2e660fc 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 @@ -1,60 +1,60 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 1 material = emotiontech_pc +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -wall_line_count = 2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 40/50) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 +bridge_fan_speed = 100 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 60 +bridge_skin_speed = 12 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 12 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 50 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 3 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_min_speed = 12 cool_lift_head = True -support_angle = 60 +cool_min_layer_time = 3 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 12 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 89 material_print_temperature = 280 material_print_temperature_layer_0 = 285 -material_flow = 89 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_min_travel = =2*line_width retraction_speed = 35 skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 40/50) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 60 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_count = 2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 12 -bridge_wall_material_flow = 50 -bridge_skin_speed = 12 -bridge_skin_material_flow = 60 -bridge_skin_density = 80 -bridge_fan_speed = 100 -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 \ No newline at end of file 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 fd782db11b..c39338eeca 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 @@ -1,61 +1,60 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 0 material = emotiontech_pc +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -wall_line_count = 2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 40/50) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 +bridge_fan_speed = 100 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 60 +bridge_skin_speed = 12 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 12 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 50 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 3 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_min_speed = 12 cool_lift_head = True -support_angle = 60 +cool_min_layer_time = 3 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 12 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 89 material_print_temperature = 280 material_print_temperature_layer_0 = 285 -material_flow = 89 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_min_travel = =2*line_width retraction_speed = 35 - skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 40/50) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 60 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_count = 2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 12 -bridge_wall_material_flow = 50 -bridge_skin_speed = 12 -bridge_skin_material_flow = 60 -bridge_skin_density = 80 -bridge_fan_speed = 100 -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 \ No newline at end of file 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 f6be3bd828..f88eff1615 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 @@ -1,60 +1,60 @@ [general] -version = 4 -name = E definition = strateo3d +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = -1 material = emotiontech_pc +quality_type = e +setting_version = 22 +type = quality variant = Standard 0.8 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -wall_line_count = 2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 40/50) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 +bridge_fan_speed = 100 +bridge_settings_enabled = True +bridge_skin_density = 80 +bridge_skin_material_flow = 60 +bridge_skin_speed = 12 +bridge_wall_coast = 50 +bridge_wall_material_flow = 50 +bridge_wall_speed = 12 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 50 -cool_min_layer_time_fan_speed_max = 20 -cool_min_layer_time = 3 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_min_speed = 12 cool_lift_head = True -support_angle = 60 +cool_min_layer_time = 3 +cool_min_layer_time_fan_speed_max = 20 +cool_min_speed = 12 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 89 material_print_temperature = 280 material_print_temperature_layer_0 = 285 -material_flow = 89 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 retraction_min_travel = =2*line_width retraction_speed = 35 skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 40/50) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 60 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_count = 2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -bridge_settings_enabled = True -bridge_wall_coast = 50 -bridge_wall_speed = 12 -bridge_wall_material_flow = 50 -bridge_skin_speed = 12 -bridge_skin_material_flow = 60 -bridge_skin_density = 80 -bridge_fan_speed = 100 -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 \ No newline at end of file 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 a2f71573d7..59a6db473d 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 1 material = emotiontech_petg +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 40/50) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 75 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.4 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 40/50) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 + 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 328469316a..9a94498b12 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 0 material = emotiontech_petg +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 40/50) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 75 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.4 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 40/50) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 50 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 + 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 abb7e6d75f..2611e1deba 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = E definition = strateo3d +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = -1 material = emotiontech_petg +quality_type = e +setting_version = 22 +type = quality variant = Standard 0.8 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 40/50) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 75 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 93 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature +5 -material_flow = 93 +prime_tower_enable = True retraction_extra_prime_amount = 0.4 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 40/50) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 45 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 + 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 a17825c4b8..35644e47a8 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 1 material = emotiontech_pla +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 40/50) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 55 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 99 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 99 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 40/50) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 + 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 3336e377fa..a820dd8467 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 0 material = emotiontech_pla +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 40/50) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 98 material_print_temperature = =default_material_print_temperature + 7 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 98 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 40/50) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 50 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 + 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 8b849dd51b..a4f135a4fa 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = E definition = strateo3d +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = -1 material = emotiontech_pla +quality_type = e +setting_version = 22 +type = quality variant = Standard 0.8 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 40/50) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 97 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 40/50) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 45 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 + 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 838fb43f78..ee58caf9e6 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 @@ -1,51 +1,52 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 1 material = emotiontech_pla_hr_870 +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 40/50) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 +cool_lift_head = True cool_min_layer_time = 4 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 2 -support_angle = 55 -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_initial_print_temperature = =default_material_print_temperature +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_final_print_temperature = =default_material_print_temperature material_flow = 93 -skin_material_flow = 94 +material_initial_print_temperature = =default_material_print_temperature +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = =default_material_print_temperature + 5 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width +skin_material_flow = 94 skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 40/50) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 55 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True -cool_lift_head = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 + 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 133c99571b..6399e7fd1f 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 @@ -1,53 +1,54 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 0 material = emotiontech_pla_hr_870 +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 40/50) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 +cool_lift_head = True cool_min_layer_time = 4 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 2 -support_angle = 50 -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_initial_print_temperature = =default_material_print_temperature +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_final_print_temperature = =default_material_print_temperature material_flow = 93 -skin_material_flow = 94 +material_initial_print_temperature = =default_material_print_temperature +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = =default_material_print_temperature + 5 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width +skin_material_flow = 94 skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 40/50) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 50 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 -cool_lift_head = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 + 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 8607c506b7..e034d49e6e 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 @@ -1,53 +1,54 @@ [general] -version = 4 -name = E definition = strateo3d +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = -1 material = emotiontech_pla_hr_870 +quality_type = e +setting_version = 22 +type = quality variant = Standard 0.8 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 40/50) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 +cool_lift_head = True cool_min_layer_time = 4 -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 2 -support_angle = 45 -material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_initial_print_temperature = =default_material_print_temperature +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 material_final_print_temperature = =default_material_print_temperature material_flow = 93 -skin_material_flow = 94 +material_initial_print_temperature = =default_material_print_temperature +material_print_temperature = =default_material_print_temperature +material_print_temperature_layer_0 = =default_material_print_temperature + 5 +meshfix_maximum_deviation = 0.04 +meshfix_maximum_resolution = 0.5 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width +skin_material_flow = 94 skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 40/50) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 45 support_bottom_distance = =support_z_distance*0.5 +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True -meshfix_maximum_resolution = 0.5 -meshfix_maximum_deviation = 0.04 -cool_lift_head = True +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.75 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.75 + 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 d5ba4b0f17..632c45a51f 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 1 material = emotiontech_pva-m +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 50 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 + 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 543a0635bb..e882d42015 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 0 material = emotiontech_pva-m +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 50 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 + 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 8746a59c69..7b52c7bb2d 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = E definition = strateo3d +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = -1 material = emotiontech_pva-m +quality_type = e +setting_version = 22 +type = quality variant = Standard 0.8 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 50 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 + 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 a5efacc14d..a0fcdc4a52 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 1 material = emotiontech_pva-s +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 50 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 + 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 6ca1c58e59..496e5fe215 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 0 material = emotiontech_pva-s +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 50 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 + 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 abd3ada59b..9c676c934b 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = E definition = strateo3d +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = -1 material = emotiontech_pva-s +quality_type = e +setting_version = 22 +type = quality variant = Standard 0.8 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 50 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.8 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.8 + 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 a621644dde..0b4c3c0281 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 1 material = emotiontech_tpu98a +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.7 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.7 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.7 -wall_0_wipe_dist = =machine_nozzle_size -speed_print = 35 -speed_wall = =math.ceil(speed_print * 35/35) -speed_wall_0 = =math.ceil(speed_wall * 27/35) -speed_topbottom = =math.ceil(speed_print * 23/35) -speed_layer_0 = =math.ceil(speed_print * 20/35) -speed_slowdown_layers = 1 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.7 +material_flow = 105 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 105 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = False +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 20/35) +speed_print = 35 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 23/35) +speed_wall = =math.ceil(speed_print * 35/35) +speed_wall_0 = =math.ceil(speed_wall * 27/35) +support_angle = 50 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 0.7 support_xy_distance = =line_width * 2.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 0.7 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.7 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.7 + 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 a802f1fae1..ffbb925a22 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 0 material = emotiontech_tpu98a +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.7 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.7 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.7 -wall_0_wipe_dist = =machine_nozzle_size -speed_print = 35 -speed_wall = =math.ceil(speed_print * 35/35) -speed_wall_0 = =math.ceil(speed_wall * 27/35) -speed_topbottom = =math.ceil(speed_print * 23/35) -speed_layer_0 = =math.ceil(speed_print * 20/35) -speed_slowdown_layers = 1 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.7 +material_flow = 103 material_print_temperature = =default_material_print_temperature + 6 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 103 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = False +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 20/35) +speed_print = 35 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 23/35) +speed_wall = =math.ceil(speed_print * 35/35) +speed_wall_0 = =math.ceil(speed_wall * 27/35) +support_angle = 50 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 0.7 support_xy_distance = =line_width * 2.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 0.7 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.7 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.7 + 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 8644e67409..60af5617e3 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = E definition = strateo3d +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = -1 material = emotiontech_tpu98a +quality_type = e +setting_version = 22 +type = quality variant = Standard 0.8 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.7 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.7 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.7 -wall_0_wipe_dist = =machine_nozzle_size -speed_print = 35 -speed_wall = =math.ceil(speed_print * 35/35) -speed_wall_0 = =math.ceil(speed_wall * 27/35) -speed_topbottom = =math.ceil(speed_print * 23/35) -speed_layer_0 = =math.ceil(speed_print * 20/35) -speed_slowdown_layers = 1 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.7 +material_flow = 101 material_print_temperature = =default_material_print_temperature + 9 material_print_temperature_layer_0 = =default_material_print_temperature +5 -material_flow = 101 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = False +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 20/35) +speed_print = 35 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 23/35) +speed_wall = =math.ceil(speed_print * 35/35) +speed_wall_0 = =math.ceil(speed_wall * 27/35) +support_angle = 50 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 0.7 support_xy_distance = =line_width * 2.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 0.7 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.7 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.7 + 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 f7190f1f92..71581b46ad 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = C definition = strateo3d +name = C +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 1 material = emotiontech_tpu +quality_type = c +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.7 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.7 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.7 -wall_0_wipe_dist = =machine_nozzle_size -speed_print = 35 -speed_wall = =math.ceil(speed_print * 35/35) -speed_wall_0 = =math.ceil(speed_wall * 27/35) -speed_topbottom = =math.ceil(speed_print * 23/35) -speed_layer_0 = =math.ceil(speed_print * 20/35) -speed_slowdown_layers = 1 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.7 +material_flow = 100 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = False +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 20/35) +speed_print = 35 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 23/35) +speed_wall = =math.ceil(speed_print * 35/35) +speed_wall_0 = =math.ceil(speed_wall * 27/35) +support_angle = 50 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 0.7 support_xy_distance = =line_width * 2.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 0.7 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.7 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.7 + 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 eef2b6a58a..bcbb45062a 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 0 material = emotiontech_tpu +quality_type = d +setting_version = 22 +type = quality variant = Standard 0.8 +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.7 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.7 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.7 -wall_0_wipe_dist = =machine_nozzle_size -speed_print = 35 -speed_wall = =math.ceil(speed_print * 35/35) -speed_wall_0 = =math.ceil(speed_wall * 27/35) -speed_topbottom = =math.ceil(speed_print * 23/35) -speed_layer_0 = =math.ceil(speed_print * 20/35) -speed_slowdown_layers = 1 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.7 +material_flow = 100 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = False +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 20/35) +speed_print = 35 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 23/35) +speed_wall = =math.ceil(speed_print * 35/35) +speed_wall_0 = =math.ceil(speed_wall * 27/35) +support_angle = 50 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 0.7 support_xy_distance = =line_width * 2.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 0.7 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.7 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.7 + 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 f9f8b76a39..827ae4a7ba 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = E definition = strateo3d +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = -1 material = emotiontech_tpu +quality_type = e +setting_version = 22 +type = quality variant = Standard 0.8 +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.7 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.7 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.7 -wall_0_wipe_dist = =machine_nozzle_size -speed_print = 35 -speed_wall = =math.ceil(speed_print * 35/35) -speed_wall_0 = =math.ceil(speed_wall * 27/35) -speed_topbottom = =math.ceil(speed_print * 23/35) -speed_layer_0 = =math.ceil(speed_print * 20/35) -speed_slowdown_layers = 1 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 4 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.7 +material_flow = 100 material_print_temperature = =default_material_print_temperature + 7 material_print_temperature_layer_0 = =default_material_print_temperature +3 -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.1 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = False +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height*2 +speed_layer_0 = =math.ceil(speed_print * 20/35) +speed_print = 35 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 23/35) +speed_wall = =math.ceil(speed_print * 35/35) +speed_wall_0 = =math.ceil(speed_wall * 27/35) +support_angle = 50 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 0.7 support_xy_distance = =line_width * 2.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 0.7 -support_interface_density = 100 -prime_tower_enable = True \ No newline at end of file +support_z_distance = =layer_height*2 +wall_0_wipe_dist = =machine_nozzle_size +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.7 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.7 + 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 6e6dca7892..29f88f6e15 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 1 material = emotiontech_abs +quality_type = d +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 45 -speed_wall = =math.ceil(speed_print * 37/45) -speed_wall_0 = =math.ceil(speed_wall * 30/37) -speed_topbottom = =math.ceil(speed_print * 35/45) -speed_layer_0 = =math.ceil(speed_print * 25/45) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/45) +speed_print = 45 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/45) +speed_wall = =math.ceil(speed_print * 37/45) +speed_wall_0 = =math.ceil(speed_wall * 30/37) +support_angle = 50 support_bottom_distance = =layer_height +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 2 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 + 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 1a83890147..316e5d4447 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = E definition = strateo3d +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = 0 material = emotiontech_abs +quality_type = e +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 45 -speed_wall = =math.ceil(speed_print * 37/45) -speed_wall_0 = =math.ceil(speed_wall * 30/37) -speed_topbottom = =math.ceil(speed_print * 35/45) -speed_layer_0 = =math.ceil(speed_print * 25/45) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/45) +speed_print = 45 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/45) +speed_wall = =math.ceil(speed_print * 37/45) +speed_wall_0 = =math.ceil(speed_wall * 30/37) +support_angle = 45 support_bottom_distance = =layer_height +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 2 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 + 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 26b1603c08..44203ad144 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = F definition = strateo3d +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = f -weight = -1 material = emotiontech_abs +quality_type = f +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 45 -speed_wall = =math.ceil(speed_print * 37/45) -speed_wall_0 = =math.ceil(speed_wall * 30/37) -speed_topbottom = =math.ceil(speed_print * 35/45) -speed_layer_0 = =math.ceil(speed_print * 25/45) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 97 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature +5 -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/45) +speed_print = 45 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/45) +speed_wall = =math.ceil(speed_print * 37/45) +speed_wall_0 = =math.ceil(speed_wall * 30/37) +support_angle = 45 support_bottom_distance = =layer_height +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 2 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 + 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 d69d428563..e322951476 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 1 material = emotiontech_asax +quality_type = d +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 45 -speed_wall = =math.ceil(speed_print * 37/45) -speed_wall_0 = =math.ceil(speed_wall * 30/37) -speed_topbottom = =math.ceil(speed_print * 35/45) -speed_layer_0 = =math.ceil(speed_print * 25/45) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 40 cool_fan_speed_max = 75 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 100 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.4 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/45) +speed_print = 45 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/45) +speed_wall = =math.ceil(speed_print * 37/45) +speed_wall_0 = =math.ceil(speed_wall * 30/37) +support_angle = 50 support_bottom_distance = =layer_height +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 + 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 2fecb18776..b4ee9ea985 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = E definition = strateo3d +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = 0 material = emotiontech_asax +quality_type = e +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 45 -speed_wall = =math.ceil(speed_print * 37/45) -speed_wall_0 = =math.ceil(speed_wall * 30/37) -speed_topbottom = =math.ceil(speed_print * 35/45) -speed_layer_0 = =math.ceil(speed_print * 25/45) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 40 cool_fan_speed_max = 75 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 100 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.4 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/45) +speed_print = 45 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/45) +speed_wall = =math.ceil(speed_print * 37/45) +speed_wall_0 = =math.ceil(speed_wall * 30/37) +support_angle = 45 support_bottom_distance = =layer_height +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 + 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 877e3a8c6c..708896fdb7 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = F definition = strateo3d +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = f -weight = -1 material = emotiontech_asax +quality_type = f +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 45 -speed_wall = =math.ceil(speed_print * 37/45) -speed_wall_0 = =math.ceil(speed_wall * 30/37) -speed_topbottom = =math.ceil(speed_print * 35/45) -speed_layer_0 = =math.ceil(speed_print * 25/45) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 40 cool_fan_speed_max = 75 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 100 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 7 -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.4 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/45) +speed_print = 45 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/45) +speed_wall = =math.ceil(speed_print * 37/45) +speed_wall_0 = =math.ceil(speed_wall * 30/37) +support_angle = 45 support_bottom_distance = =layer_height +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 + 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 91dbe1228b..63ca3d88ff 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 1 material = emotiontech_bvoh +quality_type = d +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 25/30) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 47 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 25/30) +support_angle = 47 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.0 + 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 6388f1d78d..62ed1914db 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = E definition = strateo3d +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = 0 material = emotiontech_bvoh +quality_type = e +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 25/30) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 47 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 25/30) +support_angle = 47 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.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 ab12549af0..ac9ec6324e 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = F definition = strateo3d +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = f -weight = -1 material = emotiontech_bvoh +quality_type = f +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 25/30) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 47 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 25/30) +support_angle = 47 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.0 + 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 061cf8b9df..b225d8a911 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 1 material = emotiontech_hips +quality_type = d +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 47 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 47 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.0 + 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 6807ca0d37..6e859c8dd0 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = E definition = strateo3d +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = 0 material = emotiontech_hips +quality_type = e +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 47 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 97 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 47 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.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 4d13fb530b..6b8ebd9d20 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = F definition = strateo3d +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = f -weight = -1 material = emotiontech_hips +quality_type = f +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 47 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 97 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 47 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.0 + 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 5d1908d6e5..54a6d54cc0 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 1 material = emotiontech_petg +quality_type = d +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 45 -speed_wall = =math.ceil(speed_print * 40/45) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/45) -speed_layer_0 = =math.ceil(speed_print * 25/45) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 70 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 95 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/45) +speed_print = 45 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/45) +speed_wall = =math.ceil(speed_print * 40/45) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 50 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 + 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 d61fbb4893..abdd37d98d 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = E definition = strateo3d +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = 0 material = emotiontech_petg +quality_type = e +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 45 -speed_wall = =math.ceil(speed_print * 40/45) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/45) -speed_layer_0 = =math.ceil(speed_print * 25/45) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 70 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 95 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/45) +speed_print = 45 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/45) +speed_wall = =math.ceil(speed_print * 40/45) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 45 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 + 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 a82b191d0e..50f3b04e16 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = F definition = strateo3d +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = f -weight = -1 material = emotiontech_petg +quality_type = f +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 45 -speed_wall = =math.ceil(speed_print * 40/45) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/45) -speed_layer_0 = =math.ceil(speed_print * 25/45) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 70 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 95 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/45) +speed_print = 45 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/45) +speed_wall = =math.ceil(speed_print * 40/45) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 45 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 + 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 30f8e02537..35e9d19957 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 1 material = emotiontech_pla +quality_type = d +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 40/50) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 40/50) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 50 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 + 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 2f3d2e968d..6e59384a4d 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = E definition = strateo3d +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = 0 material = emotiontech_pla -variant = Standard 1.0 Experimental +quality_type = e +setting_version = 22 +type = quality +variant = Standard 1.0 Experimental +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 40/50) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 100 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 40/50) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 45 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 + 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 f3c9e225c1..9df5f69d75 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = F definition = strateo3d +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = f -weight = -1 material = emotiontech_pla +quality_type = f +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 50 -speed_wall = =math.ceil(speed_print * 40/50) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 35/50) -speed_layer_0 = =math.ceil(speed_print * 25/50) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 100 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature +5 -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/50) +speed_print = 50 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/50) +speed_wall = =math.ceil(speed_print * 40/50) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 45 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.95 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 + 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 1d586b37a0..45b5a9e415 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 1 material = emotiontech_pva-m +quality_type = d +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 47 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 47 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.0 + 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 eded361bc9..70ec1234ff 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = E definition = strateo3d +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = 0 material = emotiontech_pva-m +quality_type = e +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 47 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 47 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.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 8aa787ba9e..6327502027 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = F definition = strateo3d +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = f -weight = -1 material = emotiontech_pva-m +quality_type = f +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 47 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 47 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.0 + 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 0b6504acfe..d7056a3f11 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 1 material = emotiontech_pva-s +quality_type = d +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 47 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 47 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.0 + 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 18090c7765..a5ec67621f 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = E definition = strateo3d +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = 0 material = emotiontech_pva-s +quality_type = e +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 47 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 47 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.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 77c2838306..4ddc98ddd2 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = F definition = strateo3d +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = f -weight = -1 material = emotiontech_pva-s +quality_type = f +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.0 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 47 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +material_flow = 97 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 97 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 47 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.0 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.0 + 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 36932cc955..1b3a77ab8b 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = D definition = strateo3d +name = D +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 1 material = emotiontech_tpu98a +quality_type = d +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.9 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.9 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 -wall_0_wipe_dist = =machine_nozzle_size -speed_print = 35 -speed_wall = =math.ceil(speed_print * 35/35) -speed_wall_0 = =math.ceil(speed_wall * 27/35) -speed_topbottom = =math.ceil(speed_print * 23/35) -speed_layer_0 = =math.ceil(speed_print * 20/35) -speed_slowdown_layers = 1 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.9 +material_flow = 107 material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 107 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = False +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 20/35) +speed_print = 35 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 23/35) +speed_wall = =math.ceil(speed_print * 35/35) +speed_wall_0 = =math.ceil(speed_wall * 27/35) +support_angle = 50 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 0.7 support_xy_distance = =line_width * 2.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 0.7 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.9 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 + 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 1b30e0f37f..be45c084a5 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = E definition = strateo3d +name = E +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = 0 material = emotiontech_tpu98a +quality_type = e +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.9 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.9 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 -wall_0_wipe_dist = =machine_nozzle_size -speed_print = 35 -speed_wall = =math.ceil(speed_print * 35/35) -speed_wall_0 = =math.ceil(speed_wall * 27/35) -speed_topbottom = =math.ceil(speed_print * 23/35) -speed_layer_0 = =math.ceil(speed_print * 20/35) -speed_slowdown_layers = 1 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.9 +material_flow = 107 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 107 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = False +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 20/35) +speed_print = 35 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 23/35) +speed_wall = =math.ceil(speed_print * 35/35) +speed_wall_0 = =math.ceil(speed_wall * 27/35) +support_angle = 50 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 0.7 support_xy_distance = =line_width * 2.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 0.7 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.9 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 + 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 7f0e5a0aa4..c02401c4d5 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = F definition = strateo3d +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = f -weight = -1 material = emotiontech_tpu98a +quality_type = f +setting_version = 22 +type = quality variant = Standard 1.0 Experimental +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*0.9 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.9 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 -wall_0_wipe_dist = =machine_nozzle_size -speed_print = 35 -speed_wall = =math.ceil(speed_print * 35/35) -speed_wall_0 = =math.ceil(speed_wall * 27/35) -speed_topbottom = =math.ceil(speed_print * 23/35) -speed_layer_0 = =math.ceil(speed_print * 20/35) -speed_slowdown_layers = 1 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 50 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*0.9 +material_flow = 107 material_print_temperature = =default_material_print_temperature + 8 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_flow = 107 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = False +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 20/35) +speed_print = 35 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 23/35) +speed_wall = =math.ceil(speed_print * 35/35) +speed_wall_0 = =math.ceil(speed_wall * 27/35) +support_angle = 50 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 0.7 support_xy_distance = =line_width * 2.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 0.7 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size +wall_line_width = =machine_nozzle_size/machine_nozzle_size*0.9 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*0.9 + 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 b05e4bbef4..ba91c749d5 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = F definition = strateo3d +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = f -weight = 1 material = emotiontech_abs +quality_type = f +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.1 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_print * 25/40) -speed_topbottom = =math.ceil(speed_print * 35/40) -speed_layer_0 = =math.ceil(speed_print * 25/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 103 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 103 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_print * 25/40) +support_angle = 45 support_bottom_distance = =layer_height +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 2 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.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 702bd79c19..b1d4c72a34 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = G definition = strateo3d +name = G +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = g -weight = 0 material = emotiontech_abs +quality_type = g +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.1 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 37 -speed_wall = =math.ceil(speed_print * 30/37) -speed_wall_0 = =math.ceil(speed_print * 25/37) -speed_topbottom = =math.ceil(speed_print * 33/37) -speed_layer_0 = =math.ceil(speed_print * 25/37) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 102 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 102 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/37) +speed_print = 37 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 33/37) +speed_wall = =math.ceil(speed_print * 30/37) +speed_wall_0 = =math.ceil(speed_print * 25/37) +support_angle = 45 support_bottom_distance = =layer_height +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 2 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.1 + 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 9af1330256..4fac7e687d 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = H definition = strateo3d +name = H +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = h -weight = -1 material = emotiontech_abs +quality_type = h +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.1 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 35 -speed_wall = =math.ceil(speed_print * 27/35) -speed_wall_0 = =math.ceil(speed_print * 23/35) -speed_topbottom = =math.ceil(speed_print * 30/35) -speed_layer_0 = =math.ceil(speed_print * 25/35) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 35 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 101 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature +5 -material_flow = 101 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/35) +speed_print = 35 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 30/35) +speed_wall = =math.ceil(speed_print * 27/35) +speed_wall_0 = =math.ceil(speed_print * 23/35) +support_angle = 45 support_bottom_distance = =layer_height +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 2 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.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 6c8250a030..91b4699598 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = F definition = strateo3d +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = f -weight = 1 material = emotiontech_asax +quality_type = f +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.1 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_print * 25/40) -speed_topbottom = =math.ceil(speed_print * 35/40) -speed_layer_0 = =math.ceil(speed_print * 25/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 40 cool_fan_speed_max = 75 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 100 material_print_temperature = =default_material_print_temperature + 1 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_print * 25/40) +support_angle = 45 support_bottom_distance = =layer_height +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.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 45af3610a5..8d84bc4fd5 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = G definition = strateo3d +name = G +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = g -weight = 0 material = emotiontech_asax +quality_type = g +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.1 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 37 -speed_wall = =math.ceil(speed_print * 30/37) -speed_wall_0 = =math.ceil(speed_print * 25/37) -speed_topbottom = =math.ceil(speed_print * 33/37) -speed_layer_0 = =math.ceil(speed_print * 25/37) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 40 cool_fan_speed_max = 75 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 100 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/37) +speed_print = 37 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 33/37) +speed_wall = =math.ceil(speed_print * 30/37) +speed_wall_0 = =math.ceil(speed_print * 25/37) +support_angle = 45 support_bottom_distance = =layer_height +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.1 + 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 18b0a02971..eafe3eef80 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = H definition = strateo3d +name = H +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = h -weight = -1 material = emotiontech_asax +quality_type = h +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.1 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 35 -speed_wall = =math.ceil(speed_print * 27/35) -speed_wall_0 = =math.ceil(speed_print * 23/35) -speed_topbottom = =math.ceil(speed_print * 30/35) -speed_layer_0 = =math.ceil(speed_print * 25/35) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 40 cool_fan_speed_max = 75 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 100 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 7 -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/35) +speed_print = 35 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 30/35) +speed_wall = =math.ceil(speed_print * 27/35) +speed_wall_0 = =math.ceil(speed_print * 23/35) +support_angle = 45 support_bottom_distance = =layer_height +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.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 b4389f3b46..3286e7fb08 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = F definition = strateo3d +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = f -weight = 1 material = emotiontech_bvoh +quality_type = f +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 25/30) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 25/30) +support_angle = 45 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 + 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 cd027171ed..bb164bcd99 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = G definition = strateo3d +name = G +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = g -weight = 0 material = emotiontech_bvoh +quality_type = g +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 25/30) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 25/30) +support_angle = 45 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 + 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 d32db692be..82ad174a95 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = H definition = strateo3d +name = H +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = h -weight = -1 material = emotiontech_bvoh +quality_type = h +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 25/30) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 25/30) +support_angle = 45 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 + 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 9e60fa0481..f33abf1ec3 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = F definition = strateo3d +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = f -weight = 1 material = emotiontech_hips +quality_type = f +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 103 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 103 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 45 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 + 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 531a98e7b4..2edb0e32f8 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = G definition = strateo3d +name = G +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = g -weight = 0 material = emotiontech_hips +quality_type = g +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 102 material_print_temperature = =default_material_print_temperature + 3 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 102 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 45 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 + 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 87f77831d9..30d7139eb9 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = H definition = strateo3d +name = H +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = h -weight = -1 material = emotiontech_hips +quality_type = h +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 101 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 101 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 45 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 + 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 354e353f09..a34c3a4d45 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = F definition = strateo3d +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = f -weight = 1 material = emotiontech_petg +quality_type = f +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.1 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_print * 25/40) -speed_topbottom = =math.ceil(speed_print * 35/40) -speed_layer_0 = =math.ceil(speed_print * 25/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 70 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_print * 25/40) +support_angle = 45 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.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 c89807e8ea..bd41a808d0 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = G definition = strateo3d +name = G +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = g -weight = 0 material = emotiontech_petg +quality_type = g +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.1 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 37 -speed_wall = =math.ceil(speed_print * 30/37) -speed_wall_0 = =math.ceil(speed_print * 25/37) -speed_topbottom = =math.ceil(speed_print * 33/37) -speed_layer_0 = =math.ceil(speed_print * 25/37) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 70 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 100 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/37) +speed_print = 37 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 33/37) +speed_wall = =math.ceil(speed_print * 30/37) +speed_wall_0 = =math.ceil(speed_print * 25/37) +support_angle = 45 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.1 + 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 ffac68a7f3..6036150353 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = H definition = strateo3d +name = H +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = h -weight = -1 material = emotiontech_petg +quality_type = h +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.1 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 35 -speed_wall = =math.ceil(speed_print * 27/35) -speed_wall_0 = =math.ceil(speed_print * 23/35) -speed_topbottom = =math.ceil(speed_print * 30/35) -speed_layer_0 = =math.ceil(speed_print * 25/35) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 70 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 95 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_flow = 95 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/35) +speed_print = 35 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 30/35) +speed_wall = =math.ceil(speed_print * 27/35) +speed_wall_0 = =math.ceil(speed_print * 23/35) +support_angle = 45 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.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 153a782aaf..c150380c74 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = F definition = strateo3d +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = f -weight = 1 material = emotiontech_pla +quality_type = f +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.1 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_print * 25/40) -speed_topbottom = =math.ceil(speed_print * 35/40) -speed_layer_0 = =math.ceil(speed_print * 25/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 107 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 107 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 35/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_print * 25/40) +support_angle = 45 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.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 46ce0b58c1..74ce8559d2 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = G definition = strateo3d +name = G +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = g -weight = 0 material = emotiontech_pla +quality_type = g +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.1 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 37 -speed_wall = =math.ceil(speed_print * 30/37) -speed_wall_0 = =math.ceil(speed_print * 25/37) -speed_topbottom = =math.ceil(speed_print * 33/37) -speed_layer_0 = =math.ceil(speed_print * 25/37) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 105 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 105 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =2*line_width skin_overlap = 5 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/37) +speed_print = 37 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 33/37) +speed_wall = =math.ceil(speed_print * 30/37) +speed_wall_0 = =math.ceil(speed_print * 25/37) +support_angle = 45 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.1 + 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 13c7657339..f59b68f675 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = H definition = strateo3d +name = H +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = h -weight = -1 material = emotiontech_pla +quality_type = h +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.1 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 35 -speed_wall = =math.ceil(speed_print * 27/35) -speed_wall_0 = =math.ceil(speed_print * 23/35) -speed_topbottom = =math.ceil(speed_print * 30/35) -speed_layer_0 = =math.ceil(speed_print * 25/35) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 3 * layer_height cool_fan_speed = 100 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 3 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 103 material_print_temperature = =default_material_print_temperature + 10 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_flow = 103 +prime_tower_enable = True retraction_extra_prime_amount = 0.5 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 15 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 25/35) +speed_print = 35 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 30/35) +speed_wall = =math.ceil(speed_print * 27/35) +speed_wall_0 = =math.ceil(speed_print * 23/35) +support_angle = 45 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 1.7 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.15 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.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 0bb86eecd0..689c1fe076 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = F definition = strateo3d +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = f -weight = 1 material = emotiontech_pva-m +quality_type = f +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 37 -speed_wall = =math.ceil(speed_print * 30/37) -speed_wall_0 = =math.ceil(speed_print * 25/37) -speed_topbottom = =math.ceil(speed_print * 33/37) -speed_layer_0 = =math.ceil(speed_print * 25/37) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 25/37) +speed_print = 37 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 33/37) +speed_wall = =math.ceil(speed_print * 30/37) +speed_wall_0 = =math.ceil(speed_print * 25/37) +support_angle = 45 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 + 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 4481bc1fd2..514cdcbfde 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = G definition = strateo3d +name = G +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = g -weight = 0 material = emotiontech_pva-m +quality_type = g +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 45 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 + 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 061681923f..123dc9a953 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = H definition = strateo3d +name = H +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = h -weight = -1 material = emotiontech_pva-m +quality_type = h +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 45 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 + 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 150cb78b28..9c3f620a2d 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = F definition = strateo3d +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = f -weight = 1 material = emotiontech_pva-s +quality_type = f +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 45 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 + 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 1ec15cecb2..0b841dfb09 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = G definition = strateo3d +name = G +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = g -weight = 0 material = emotiontech_pva-s +quality_type = g +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 45 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 + 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 28be984377..adfe816125 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 @@ -1,50 +1,51 @@ [general] -version = 4 -name = H definition = strateo3d +name = H +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = h -weight = -1 material = emotiontech_pva-s +quality_type = h +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 -wall_0_wipe_dist = =machine_nozzle_size/2 -speed_print = 40 -speed_wall = =math.ceil(speed_print * 30/40) -speed_wall_0 = =math.ceil(speed_wall * 30/40) -speed_topbottom = =math.ceil(speed_print * 20/40) -speed_layer_0 = =math.ceil(speed_print * 20/40) -speed_slowdown_layers = 2 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +material_flow = 100 material_print_temperature = =default_material_print_temperature material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 100 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =3*line_width retraction_hop_only_when_collides = True +retraction_min_travel = =3*line_width skin_overlap = 10 +speed_layer_0 = =math.ceil(speed_print * 20/40) +speed_print = 40 +speed_slowdown_layers = 2 +speed_topbottom = =math.ceil(speed_print * 20/40) +speed_wall = =math.ceil(speed_print * 30/40) +speed_wall_0 = =math.ceil(speed_wall * 30/40) +support_angle = 45 +support_bottom_distance = =support_z_distance support_bottom_stair_step_height = 0 support_bottom_stair_step_width = 0 -support_z_distance = =layer_height-layer_height -support_bottom_distance = =support_z_distance -support_xy_distance = =line_width * 0.5 -support_xy_distance_overhang = =line_width*0 +support_interface_density = 100 support_offset = 3 support_pattern = grid -support_interface_density = 100 -prime_tower_enable = True +support_xy_distance = =line_width * 0.5 +support_xy_distance_overhang = =line_width*0 +support_z_distance = =layer_height-layer_height +wall_0_wipe_dist = =machine_nozzle_size/2 +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.2 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.2 + 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 d56727d5fb..4b6108e51d 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = F definition = strateo3d +name = F +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = f -weight = 1 material = emotiontech_tpu98a +quality_type = f +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = 1 [values] -layer_height_0 = =round(0.5*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.1 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.1 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.1 -wall_0_wipe_dist = =machine_nozzle_size -speed_print = 35 -speed_wall = =math.ceil(speed_print * 35/35) -speed_wall_0 = =math.ceil(speed_wall * 27/35) -speed_topbottom = =math.ceil(speed_print * 23/35) -speed_layer_0 = =math.ceil(speed_print * 20/35) -speed_slowdown_layers = 1 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.5*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.1 +material_flow = 111 material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =default_material_print_temperature -material_flow = 111 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = False +retraction_min_travel = =2*line_width skin_overlap = 10 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 20/35) +speed_print = 35 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 23/35) +speed_wall = =math.ceil(speed_print * 35/35) +speed_wall_0 = =math.ceil(speed_wall * 27/35) +support_angle = 45 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 2.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.1 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.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 9dc2029122..99af35534f 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = G definition = strateo3d +name = G +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = g -weight = 0 material = emotiontech_tpu98a +quality_type = g +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = 0 [values] -layer_height_0 = =round(0.67*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.1 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.1 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.1 -wall_0_wipe_dist = =machine_nozzle_size -speed_print = 35 -speed_wall = =math.ceil(speed_print * 35/35) -speed_wall_0 = =math.ceil(speed_wall * 27/35) -speed_topbottom = =math.ceil(speed_print * 23/35) -speed_layer_0 = =math.ceil(speed_print * 20/35) -speed_slowdown_layers = 1 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.67*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.1 +material_flow = 111 material_print_temperature = =default_material_print_temperature + 5 material_print_temperature_layer_0 = =default_material_print_temperature + 3 -material_flow = 111 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = False +retraction_min_travel = =2*line_width skin_overlap = 10 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 20/35) +speed_print = 35 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 23/35) +speed_wall = =math.ceil(speed_print * 35/35) +speed_wall_0 = =math.ceil(speed_wall * 27/35) +support_angle = 45 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 2.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.1 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.1 + 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 11987cb51d..21043cae58 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 @@ -1,47 +1,48 @@ [general] -version = 4 -name = H definition = strateo3d +name = H +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = h -weight = -1 material = emotiontech_tpu98a +quality_type = h +setting_version = 22 +type = quality variant = Standard 1.2 Experimental +weight = -1 [values] -layer_height_0 = =round(0.75*machine_nozzle_size, 2) -line_width = =machine_nozzle_size/machine_nozzle_size*1.1 -wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.1 -wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.1 -wall_0_wipe_dist = =machine_nozzle_size -speed_print = 35 -speed_wall = =math.ceil(speed_print * 35/35) -speed_wall_0 = =math.ceil(speed_wall * 27/35) -speed_topbottom = =math.ceil(speed_print * 23/35) -speed_layer_0 = =math.ceil(speed_print * 20/35) -speed_slowdown_layers = 1 cool_fan_enabled = True +cool_fan_full_at_height = =layer_height_0 + 6 * layer_height cool_fan_speed = 50 cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 20 cool_min_layer_time = 11 -cool_fan_full_at_height = =layer_height_0 + 6 * layer_height +cool_min_layer_time_fan_speed_max = 20 cool_min_speed = 10 -support_angle = 45 +layer_height_0 = =round(0.75*machine_nozzle_size, 2) +line_width = =machine_nozzle_size/machine_nozzle_size*1.1 +material_flow = 111 material_print_temperature = =default_material_print_temperature + 8 material_print_temperature_layer_0 = =default_material_print_temperature + 5 -material_flow = 111 +prime_tower_enable = True retraction_extra_prime_amount = 0.3 -retraction_min_travel = =2*line_width retraction_hop_only_when_collides = False +retraction_min_travel = =2*line_width skin_overlap = 10 -support_z_distance = =layer_height +speed_layer_0 = =math.ceil(speed_print * 20/35) +speed_print = 35 +speed_slowdown_layers = 1 +speed_topbottom = =math.ceil(speed_print * 23/35) +speed_wall = =math.ceil(speed_print * 35/35) +speed_wall_0 = =math.ceil(speed_wall * 27/35) +support_angle = 45 support_bottom_distance = =support_z_distance +support_interface_density = 100 +support_offset = 1 support_xy_distance = =line_width * 2.5 support_xy_distance_overhang = =wall_line_width_0 -support_offset = 1 -support_interface_density = 100 -prime_tower_enable = True +support_z_distance = =layer_height +wall_0_wipe_dist = =machine_nozzle_size +wall_line_width = =machine_nozzle_size/machine_nozzle_size*1.1 +wall_line_width_x = =machine_nozzle_size/machine_nozzle_size*1.1 + diff --git a/resources/quality/strateo3d/s3d_global_A.inst.cfg b/resources/quality/strateo3d/s3d_global_A.inst.cfg index f6e897828b..08f68b9b72 100644 --- a/resources/quality/strateo3d/s3d_global_A.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_A.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Extra Fine Quality definition = strateo3d +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = a -weight = 0 global_quality = True +quality_type = a +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.1 -top_bottom_thickness = =10*layer_height \ No newline at end of file +top_bottom_thickness = =10*layer_height + diff --git a/resources/quality/strateo3d/s3d_global_B.inst.cfg b/resources/quality/strateo3d/s3d_global_B.inst.cfg index 97e115f5d4..0b73e60e39 100644 --- a/resources/quality/strateo3d/s3d_global_B.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_B.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fine Quality definition = strateo3d +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = b -weight = 0 global_quality = True +quality_type = b +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.2 -top_bottom_thickness = =7*layer_height \ No newline at end of file +top_bottom_thickness = =7*layer_height + diff --git a/resources/quality/strateo3d/s3d_global_C.inst.cfg b/resources/quality/strateo3d/s3d_global_C.inst.cfg index efab8b6554..86c88414eb 100644 --- a/resources/quality/strateo3d/s3d_global_C.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_C.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = High Quality definition = strateo3d +name = High Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = c -weight = 0 global_quality = True +quality_type = c +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.3 -top_bottom_thickness = =5*layer_height \ No newline at end of file +top_bottom_thickness = =5*layer_height + diff --git a/resources/quality/strateo3d/s3d_global_D.inst.cfg b/resources/quality/strateo3d/s3d_global_D.inst.cfg index e11e265230..920b1d7be3 100644 --- a/resources/quality/strateo3d/s3d_global_D.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_D.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Medium Quality definition = strateo3d +name = Medium Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = d -weight = 0 global_quality = True +quality_type = d +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.4 -top_bottom_thickness = =5*layer_height \ No newline at end of file +top_bottom_thickness = =5*layer_height + diff --git a/resources/quality/strateo3d/s3d_global_E.inst.cfg b/resources/quality/strateo3d/s3d_global_E.inst.cfg index 49113ac9d4..d1ef4ba4f7 100644 --- a/resources/quality/strateo3d/s3d_global_E.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_E.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = strateo3d +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = e -weight = 0 global_quality = True +quality_type = e +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.5 -top_bottom_thickness = =4*layer_height \ No newline at end of file +top_bottom_thickness = =4*layer_height + diff --git a/resources/quality/strateo3d/s3d_global_F.inst.cfg b/resources/quality/strateo3d/s3d_global_F.inst.cfg index 9251b994a6..db43ee80a0 100644 --- a/resources/quality/strateo3d/s3d_global_F.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_F.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Coarse Quality definition = strateo3d +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = f -weight = 0 global_quality = True +quality_type = f +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.6 top_bottom_thickness = =4*layer_height + diff --git a/resources/quality/strateo3d/s3d_global_G.inst.cfg b/resources/quality/strateo3d/s3d_global_G.inst.cfg index 63af58d5fe..0cdde5f1ed 100644 --- a/resources/quality/strateo3d/s3d_global_G.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_G.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Extra Coarse Quality definition = strateo3d +name = Extra Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = g -weight = 0 global_quality = True +quality_type = g +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.7 top_bottom_thickness = =3*layer_height + diff --git a/resources/quality/strateo3d/s3d_global_H.inst.cfg b/resources/quality/strateo3d/s3d_global_H.inst.cfg index 72fe2471e4..4afd076d21 100644 --- a/resources/quality/strateo3d/s3d_global_H.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_H.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Ultra Coarse Quality definition = strateo3d +name = Ultra Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = h -weight = 0 global_quality = True +quality_type = h +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.8 top_bottom_thickness = =3*layer_height + diff --git a/resources/quality/tank_m_base_global_draft.inst.cfg b/resources/quality/tank_m_base_global_draft.inst.cfg new file mode 100644 index 0000000000..6abdba2900 --- /dev/null +++ b/resources/quality/tank_m_base_global_draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = tank_m_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality + +[values] +layer_height = 0.24 +layer_height_0 = 0.24 +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/tank_m_base_global_high.inst.cfg b/resources/quality/tank_m_base_global_high.inst.cfg new file mode 100644 index 0000000000..e1e4f399f0 --- /dev/null +++ b/resources/quality/tank_m_base_global_high.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = tank_m_base +name = Super Quality +version = 4 + +[metadata] +global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = -1 + +[values] +layer_height = 0.12 +layer_height_0 = 0.12 +support_interface_height = =layer_height*8 +top_bottom_thickness = =layer_height_0+layer_height*6 +wall_thickness = =line_width*3 + diff --git a/resources/quality/tank_m_base_global_standard.inst.cfg b/resources/quality/tank_m_base_global_standard.inst.cfg new file mode 100644 index 0000000000..de2d1f2e88 --- /dev/null +++ b/resources/quality/tank_m_base_global_standard.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = tank_m_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = standard +setting_version = 22 +type = quality +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg index cfa4f9d8b8..a31fbff4ea 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Draft definition = tevo_blackwidow +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] brim_width = 4.0 @@ -30,3 +30,4 @@ support_use_towers = False support_xy_distance = 0.7 top_bottom_thickness = 1.2 wall_thickness = 1.2 + diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg index 26591b50fe..91c465b4d8 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = High definition = tevo_blackwidow +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] brim_width = 4.0 @@ -30,3 +30,4 @@ support_use_towers = False support_xy_distance = 0.7 top_bottom_thickness = 1.2 wall_thickness = 1.2 + diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg index 7e0bd21d85..1088370d87 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Normal definition = tevo_blackwidow +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] brim_width = 4.0 @@ -30,3 +30,4 @@ support_use_towers = False support_xy_distance = 0.7 top_bottom_thickness = 1.2 wall_thickness = 1.2 + diff --git a/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg index 40d417edfd..903b5e3c68 100644 --- a/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Draft definition = tinyboy_e10 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = 0 [values] acceleration_enabled = True @@ -58,3 +58,4 @@ support_use_towers = False support_xy_distance = 0.7 top_bottom_thickness = 1.2 wall_thickness = 1.2 + diff --git a/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg index e25f53364f..83196dbbdc 100644 --- a/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = High definition = tinyboy_e10 +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 2 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 2 [values] acceleration_enabled = True @@ -58,3 +58,4 @@ support_use_towers = False support_xy_distance = 0.7 top_bottom_thickness = 1.2 wall_thickness = 1.2 + diff --git a/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg index 8190c8e93b..0f5974d5b5 100644 --- a/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Normal definition = tinyboy_e10 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 1 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 1 [values] acceleration_enabled = True @@ -58,3 +58,4 @@ support_use_towers = False support_xy_distance = 0.7 top_bottom_thickness = 1.2 wall_thickness = 1.2 + diff --git a/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg index 4c2346e507..2ded3ecece 100644 --- a/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Draft definition = tinyboy_e16 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = 0 [values] acceleration_enabled = True @@ -58,3 +58,4 @@ support_use_towers = False support_xy_distance = 0.7 top_bottom_thickness = 1.2 wall_thickness = 1.2 + diff --git a/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg index a8c2e0d7b4..043b250cb9 100644 --- a/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = High definition = tinyboy_e16 +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 2 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 2 [values] acceleration_enabled = True @@ -58,3 +58,4 @@ support_use_towers = False support_xy_distance = 0.7 top_bottom_thickness = 1.2 wall_thickness = 1.2 + diff --git a/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg index e0de549db8..d129c14f75 100644 --- a/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Normal definition = tinyboy_e16 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 1 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 1 [values] acceleration_enabled = True @@ -58,3 +58,4 @@ support_use_towers = False support_xy_distance = 0.7 top_bottom_thickness = 1.2 wall_thickness = 1.2 + diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg index cf6c5a01fd..96c0d5dd7f 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Draft definition = tinyboy_fabrikator15 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = 0 [values] acceleration_enabled = True @@ -56,3 +56,4 @@ support_use_towers = False support_xy_distance = 0.7 top_bottom_thickness = 1.2 wall_thickness = 1.2 + diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg index f458a2b6fb..61e8ed738c 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = High definition = tinyboy_fabrikator15 +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 2 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 2 [values] acceleration_enabled = True @@ -56,3 +56,4 @@ support_use_towers = False support_xy_distance = 0.7 top_bottom_thickness = 1.2 wall_thickness = 1.2 + diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg index 21f06c3bff..d7675bd700 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Normal definition = tinyboy_fabrikator15 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 1 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 1 [values] acceleration_enabled = True @@ -56,3 +56,4 @@ support_use_towers = False support_xy_distance = 0.7 top_bottom_thickness = 1.2 wall_thickness = 1.2 + diff --git a/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg index 5bca9cd870..ada9873b4c 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Draft definition = tinyboy_ra20 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = 0 [values] acceleration_enabled = True @@ -58,3 +58,4 @@ support_use_towers = False support_xy_distance = 0.7 top_bottom_thickness = 1.2 wall_thickness = 1.2 + diff --git a/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg index bdf1717fe3..1b234761f7 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = High definition = tinyboy_ra20 +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 2 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 2 [values] acceleration_enabled = True @@ -58,3 +58,4 @@ support_use_towers = False support_xy_distance = 0.7 top_bottom_thickness = 1.2 wall_thickness = 1.2 + diff --git a/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg index 03a67f7f8b..4aa5dce88e 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Normal definition = tinyboy_ra20 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 1 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 1 [values] acceleration_enabled = True @@ -58,3 +58,4 @@ support_use_towers = False support_xy_distance = 0.7 top_bottom_thickness = 1.2 wall_thickness = 1.2 + 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 a4a3cc585f..58ded90e05 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 @@ -1,16 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality variant = 0.2mm +weight = 1 [values] - 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 41ef93fa02..c260d1e9f1 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 @@ -1,16 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality variant = 0.3mm +weight = 1 [values] - 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 bf8ae72e3d..8777efd32a 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality variant = 0.4mm +weight = 1 [values] 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 2cabac821f..eb0c65762c 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm +weight = 0 [values] 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 231947c3f0..6365345947 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Coarse definition = tizyx_evy +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = 0.5mm +weight = -2 [values] 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 3ae4c0fd39..e6e9ba3566 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality variant = 0.5mm +weight = 1 [values] 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 78b3c82d16..b3993d9424 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.5mm +weight = 0 [values] 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 e5e1ba63ac..fdcdf800c1 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Coarse definition = tizyx_evy +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -2 material = generic_abs +quality_type = coarse +setting_version = 22 +type = quality variant = 0.6mm +weight = -2 [values] 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 4611feee97..88c57d40d5 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality variant = 0.6mm +weight = 1 [values] 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 47d8295e76..0fe0aa16e6 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.6mm +weight = 0 [values] 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 6bf8fddeb8..7c3a01d73f 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Coarse definition = tizyx_evy +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -2 material = generic_abs +quality_type = coarse +setting_version = 22 +type = quality variant = 0.8mm +weight = -2 [values] 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 2c6fcd4c91..98f44465c7 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality variant = 0.8mm +weight = 1 [values] 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 788977b879..bfa6caefdf 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.8mm +weight = 0 [values] 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 653b295db1..680bb1a0fb 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = tizyx_flex +quality_type = high +setting_version = 22 +type = quality variant = 0.2mm +weight = 1 [values] speed_infill = 25 @@ -18,3 +18,4 @@ speed_print = 30 speed_topbottom = 25 speed_wall_0 = 20 speed_wall_x = 20 + 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 3450aeae89..7c6f8424df 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = tizyx_flex +quality_type = high +setting_version = 22 +type = quality variant = 0.3mm +weight = 1 [values] speed_infill = 25 @@ -18,3 +18,4 @@ speed_print = 30 speed_topbottom = 25 speed_wall_0 = 20 speed_wall_x = 20 + 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 df89a0752f..0350280e03 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = tizyx_flex +quality_type = high +setting_version = 22 +type = quality variant = 0.4mm +weight = 1 [values] speed_infill = 25 @@ -18,3 +18,4 @@ speed_print = 30 speed_topbottom = 25 speed_wall_0 = 20 speed_wall_x = 20 + 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 fcf892ac5a..75e19fcb22 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = tizyx_flex +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm +weight = 0 [values] speed_infill = 25 @@ -18,3 +18,4 @@ speed_print = 30 speed_topbottom = 25 speed_wall_0 = 20 speed_wall_x = 20 + 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 e9a93be3a8..70a5265943 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Draft definition = tizyx_evy +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = tizyx_flex +quality_type = draft +setting_version = 22 +type = quality variant = 0.5mm +weight = -2 [values] speed_infill = 25 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 d86fd060b5..0ae0bca17e 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = tizyx_flex +quality_type = high +setting_version = 22 +type = quality variant = 0.5mm +weight = 1 [values] speed_infill = 25 @@ -18,3 +18,4 @@ speed_print = 30 speed_topbottom = 25 speed_wall_0 = 20 speed_wall_x = 20 + 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 41e6dc80fe..11421a756f 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = tizyx_flex +quality_type = normal +setting_version = 22 +type = quality variant = 0.5mm +weight = 0 [values] speed_infill = 25 @@ -18,3 +18,4 @@ speed_print = 30 speed_topbottom = 25 speed_wall_0 = 20 speed_wall_x = 20 + 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 b96af951d9..a66f43a83c 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Draft definition = tizyx_evy +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -2 material = tizyx_flex +quality_type = coarse +setting_version = 22 +type = quality variant = 0.6mm +weight = -2 [values] speed_infill = 25 @@ -18,3 +18,4 @@ speed_print = 30 speed_topbottom = 25 speed_wall_0 = 20 speed_wall_x = 20 + 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 5aff229a5c..f2fb5acade 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = tizyx_flex +quality_type = high +setting_version = 22 +type = quality variant = 0.6mm +weight = 1 [values] speed_infill = 25 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 b3ffaced4d..692ad776fa 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = tizyx_flex +quality_type = normal +setting_version = 22 +type = quality variant = 0.6mm +weight = 0 [values] speed_infill = 25 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 95f44f8d87..bbcecf09bd 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Draft definition = tizyx_evy +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = -2 material = tizyx_flex +quality_type = extra coarse +setting_version = 22 +type = quality variant = 0.8mm +weight = -2 [values] speed_infill = 25 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 6a9078795d..5800088744 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = tizyx_flex +quality_type = high +setting_version = 22 +type = quality variant = 0.8mm +weight = 1 [values] speed_infill = 25 @@ -18,3 +18,4 @@ speed_print = 30 speed_topbottom = 25 speed_wall_0 = 20 speed_wall_x = 20 + 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 a0940d2614..a083593777 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = tizyx_flex +quality_type = normal +setting_version = 22 +type = quality variant = 0.8mm +weight = 0 [values] speed_infill = 25 @@ -18,3 +18,4 @@ speed_print = 30 speed_topbottom = 25 speed_wall_0 = 20 speed_wall_x = 20 + 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 877bf4702b..d8b71e65fd 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 @@ -1,16 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_petg +quality_type = high +setting_version = 22 +type = quality variant = 0.2mm +weight = 1 [values] - 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 65e464d18a..ad526006c1 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 @@ -1,16 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_petg +quality_type = high +setting_version = 22 +type = quality variant = 0.3mm +weight = 1 [values] - 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 285e9ca6fc..4d1c68c0cb 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_petg +quality_type = high +setting_version = 22 +type = quality variant = 0.4mm +weight = 1 [values] 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 6c4e1ab358..78a7161a0c 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm +weight = 0 [values] 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 c14de315f1..63a5a54442 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Coarse definition = tizyx_evy +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = 0.5mm +weight = -2 [values] 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 d4d315f3e9..aa03c022e4 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_petg +quality_type = high +setting_version = 22 +type = quality variant = 0.5mm +weight = 1 [values] 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 f5cb1d1323..5249770cd5 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.5mm +weight = 0 [values] 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 f0ad843e3f..9dd447e4b9 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Coarse definition = tizyx_evy +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -2 material = generic_petg +quality_type = coarse +setting_version = 22 +type = quality variant = 0.6mm +weight = -2 [values] 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 929f10a186..723810f259 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_petg +quality_type = high +setting_version = 22 +type = quality variant = 0.6mm +weight = 1 [values] 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 a70078f8b8..e330599e95 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.6mm +weight = 0 [values] 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 e9a165b668..f440d62f4e 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Coarse definition = tizyx_evy +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = -2 material = generic_petg +quality_type = extra coarse +setting_version = 22 +type = quality variant = 0.8mm +weight = -2 [values] 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 2c7cde39f8..c879afab1a 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_petg +quality_type = high +setting_version = 22 +type = quality variant = 0.8mm +weight = 1 [values] 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 2e2516f110..6d66a27ba6 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.8mm +weight = 0 [values] 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 2e3cc240ac..74c5225969 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality variant = 0.2mm +weight = 1 [values] + 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 c60cf04161..4de0362205 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality variant = 0.3mm +weight = 1 [values] + 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 36cda26610..5538c370a1 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality variant = 0.4mm +weight = 1 [values] + 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 4f26254a60..a0973bf8da 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm +weight = 0 [values] + 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 c45ba6d574..fd5fffa8d3 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft definition = tizyx_evy +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.5mm +weight = -2 [values] + 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 549f3abf5e..bdf0744d98 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality variant = 0.5mm +weight = 1 [values] + 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 b51b5043ca..ca101ab2d1 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.5mm +weight = 0 [values] + 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 360ad97678..858f365243 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft definition = tizyx_evy +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -2 material = generic_pla +quality_type = coarse +setting_version = 22 +type = quality variant = 0.6mm +weight = -2 [values] + 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 0fb0c69c81..d3bb7b6356 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality variant = 0.6mm +weight = 1 [values] + 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 f1d5d994cc..3211dce29d 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.6mm +weight = 0 [values] + 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 d4bdccc8ad..a714b854f6 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Draft definition = tizyx_evy +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = -2 material = generic_pla +quality_type = extra coarse +setting_version = 22 +type = quality variant = 0.8mm +weight = -2 [values] 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 759b9e5aa7..5898b5e489 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality variant = 0.8mm +weight = 1 [values] + 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 e85c0e6fdb..1fe8498132 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.8mm +weight = 0 [values] + 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 a6bd360e9d..e754ccb09d 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = tizyx_pla_bois +quality_type = high +setting_version = 22 +type = quality variant = 0.2mm +weight = 1 [values] + 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 ed4e92570a..75bb872ce2 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = tizyx_pla_bois +quality_type = high +setting_version = 22 +type = quality variant = 0.3mm +weight = 1 [values] + 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 47b22b926d..e95a76ed32 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = tizyx_pla_bois +quality_type = high +setting_version = 22 +type = quality variant = 0.4mm +weight = 1 [values] + 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 a01f816ea7..7f94a12b2e 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = tizyx_pla_bois +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm +weight = 0 [values] + 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 442e949948..578f8fa05f 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Draft definition = tizyx_evy +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = tizyx_pla_bois +quality_type = draft +setting_version = 22 +type = quality variant = 0.5mm +weight = -2 [values] 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 51c7b2facc..56fce96cd2 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = tizyx_pla_bois +quality_type = high +setting_version = 22 +type = quality variant = 0.5mm +weight = 1 [values] + 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 d95f294ebf..e5e88e8ae4 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = tizyx_pla_bois +quality_type = normal +setting_version = 22 +type = quality variant = 0.5mm +weight = 0 [values] + 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 0b21a7789c..17ad78b0fd 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft definition = tizyx_evy +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -2 material = tizyx_pla_bois +quality_type = coarse +setting_version = 22 +type = quality variant = 0.6mm +weight = -2 [values] + 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 8ba7d2fab0..7ba4b03684 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = tizyx_pla_bois +quality_type = high +setting_version = 22 +type = quality variant = 0.6mm +weight = 1 [values] + 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 c055711c94..f91dbbfe7b 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = tizyx_pla_bois +quality_type = normal +setting_version = 22 +type = quality variant = 0.6mm +weight = 0 [values] + 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 c6a66926e6..c51ec6a0e2 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Draft definition = tizyx_evy +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = -2 material = tizyx_pla_bois +quality_type = extra coarse +setting_version = 22 +type = quality variant = 0.8mm +weight = -2 [values] 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 87ae5777c2..708f9fc4e4 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = tizyx_pla_bois +quality_type = high +setting_version = 22 +type = quality variant = 0.8mm +weight = 1 [values] + 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 9ba555be30..7bae46e440 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = tizyx_pla_bois +quality_type = normal +setting_version = 22 +type = quality variant = 0.8mm +weight = 0 [values] + 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 cf1620cf12..0420015968 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 @@ -1,44 +1,45 @@ [general] -version = 4 -name = Draft definition = tizyx_evy +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -2 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -2 [values] -layer_height = 0.3 -layer_height_0 = =layer_height -initial_layer_line_width_factor = 90 -infill_overlap = 15 -material_flow_layer_0 = 93 -material_flow = 99 -retraction_amount = 5 -retraction_speed = 60 -speed_wall_0 = 45 -speed_wall_x = 50 -speed_topbottom = 45 -support_enable= True -support_angle = 70 adhesion_type = skirt -skirt_line_count = 2 -skirt_gap = 2 -fill_outline_gaps = True -infill_sparse_density = 15 -retraction_min_travel = 2 -speed_print = 60 +coasting_enable = False cool_fan_speed_0 = 10 cool_min_layer_time = 12 +fill_outline_gaps = True +infill_overlap = 15 +infill_sparse_density = 15 +initial_layer_line_width_factor = 90 +layer_height = 0.3 +layer_height_0 = =layer_height layer_start_x = 250 layer_start_y = 250 -coasting_enable = False +material_final_print_temperature = =material_print_temperature +material_flow = 99 +material_flow_layer_0 = 93 +material_initial_print_temperature = =material_print_temperature +material_print_temperature = =default_material_print_temperature +optimize_wall_printing_order = True +retraction_amount = 5 +retraction_min_travel = 2 +retraction_speed = 60 +skirt_gap = 2 +skirt_line_count = 2 +speed_print = 60 +speed_topbottom = 45 +speed_wall_0 = 45 +speed_wall_x = 50 +support_angle = 70 +support_enable = True wall_line_count = 2 -material_print_temperature = =default_material_print_temperature -material_initial_print_temperature = =material_print_temperature -material_final_print_temperature = =material_print_temperature z_seam_corner = z_seam_corner_none -optimize_wall_printing_order = True \ No newline at end of file + 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 dca9945e0e..b053d40c3f 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 @@ -1,44 +1,45 @@ [general] -version = 4 -name = Draft definition = tizyx_evy +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] -layer_height = 0.25 -layer_height_0 = =layer_height -initial_layer_line_width_factor = 90 -infill_overlap = 15 -material_flow_layer_0 = 93 -material_flow = 99 -retraction_amount = 5 -retraction_speed = 60 -speed_wall_0 = 45 -speed_wall_x = 50 -speed_topbottom = 45 -support_enable= True -support_angle = 70 adhesion_type = skirt -skirt_line_count = 2 -skirt_gap = 2 -fill_outline_gaps = True -infill_sparse_density = 15 -retraction_min_travel = 2 -speed_print = 60 +coasting_enable = False cool_fan_speed_0 = 10 cool_min_layer_time = 12 +fill_outline_gaps = True +infill_overlap = 15 +infill_sparse_density = 15 +initial_layer_line_width_factor = 90 +layer_height = 0.25 +layer_height_0 = =layer_height layer_start_x = 250 layer_start_y = 250 -coasting_enable = False +material_final_print_temperature = =material_print_temperature +material_flow = 99 +material_flow_layer_0 = 93 +material_initial_print_temperature = =material_print_temperature +material_print_temperature = =default_material_print_temperature +optimize_wall_printing_order = True +retraction_amount = 5 +retraction_min_travel = 2 +retraction_speed = 60 +skirt_gap = 2 +skirt_line_count = 2 +speed_print = 60 +speed_topbottom = 45 +speed_wall_0 = 45 +speed_wall_x = 50 +support_angle = 70 +support_enable = True wall_line_count = 2 -material_print_temperature = =default_material_print_temperature -material_initial_print_temperature = =material_print_temperature -material_final_print_temperature = =material_print_temperature z_seam_corner = z_seam_corner_none -optimize_wall_printing_order = True \ No newline at end of file + 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 6839760843..2b4f910fbe 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 @@ -1,44 +1,45 @@ [general] -version = 4 -name = Draft definition = tizyx_evy +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = -2 global_quality = True +quality_type = extra coarse +setting_version = 22 +type = quality +weight = -2 [values] -layer_height = 0.4 -layer_height_0 = =layer_height -initial_layer_line_width_factor = 90 -infill_overlap = 15 -material_flow_layer_0 = 93 -material_flow = 99 -retraction_amount = 5 -retraction_speed = 60 -speed_wall_0 = 45 -speed_wall_x = 50 -speed_topbottom = 45 -support_enable= True -support_angle = 70 adhesion_type = skirt -skirt_line_count = 2 -skirt_gap = 2 -fill_outline_gaps = True -infill_sparse_density = 15 -retraction_min_travel = 2 -speed_print = 60 +coasting_enable = False cool_fan_speed_0 = 10 cool_min_layer_time = 12 +fill_outline_gaps = True +infill_overlap = 15 +infill_sparse_density = 15 +initial_layer_line_width_factor = 90 +layer_height = 0.4 +layer_height_0 = =layer_height layer_start_x = 250 layer_start_y = 250 -coasting_enable = False +material_final_print_temperature = =material_print_temperature +material_flow = 99 +material_flow_layer_0 = 93 +material_initial_print_temperature = =material_print_temperature +material_print_temperature = =default_material_print_temperature +optimize_wall_printing_order = True +retraction_amount = 5 +retraction_min_travel = 2 +retraction_speed = 60 +skirt_gap = 2 +skirt_line_count = 2 +speed_print = 60 +speed_topbottom = 45 +speed_wall_0 = 45 +speed_wall_x = 50 +support_angle = 70 +support_enable = True wall_line_count = 2 -material_print_temperature = =default_material_print_temperature -material_initial_print_temperature = =material_print_temperature -material_final_print_temperature = =material_print_temperature z_seam_corner = z_seam_corner_none -optimize_wall_printing_order = True \ No newline at end of file + 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 313fc8e774..da98699167 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 @@ -1,44 +1,45 @@ [general] -version = 4 -name = High definition = tizyx_evy +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] -layer_height = 0.1 -layer_height_0 = 0.1 -initial_layer_line_width_factor = 90 -infill_overlap = 15 -material_flow_layer_0 = 93 -material_flow = 99 -retraction_amount = 5 -retraction_speed = 60 -speed_wall_0 = 45 -speed_wall_x = 50 -speed_topbottom = 45 -support_enable= True -support_angle = 70 adhesion_type = skirt -skirt_line_count = 2 -skirt_gap = 2 -fill_outline_gaps = True -infill_sparse_density = 15 -retraction_min_travel = 2 -speed_print = 60 +coasting_enable = False cool_fan_speed_0 = 10 cool_min_layer_time = 12 +fill_outline_gaps = True +infill_overlap = 15 +infill_sparse_density = 15 +initial_layer_line_width_factor = 90 +layer_height = 0.1 +layer_height_0 = 0.1 layer_start_x = 250 layer_start_y = 250 -coasting_enable = False +material_final_print_temperature = =material_print_temperature +material_flow = 99 +material_flow_layer_0 = 93 +material_initial_print_temperature = =material_print_temperature +material_print_temperature = =default_material_print_temperature +optimize_wall_printing_order = True +retraction_amount = 5 +retraction_min_travel = 2 +retraction_speed = 60 +skirt_gap = 2 +skirt_line_count = 2 +speed_print = 60 +speed_topbottom = 45 +speed_wall_0 = 45 +speed_wall_x = 50 +support_angle = 70 +support_enable = True wall_line_count = 2 -material_print_temperature = =default_material_print_temperature -material_initial_print_temperature = =material_print_temperature -material_final_print_temperature = =material_print_temperature z_seam_corner = z_seam_corner_none -optimize_wall_printing_order = True \ No newline at end of file + 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 22f6e52139..69115bd494 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 @@ -1,44 +1,45 @@ [general] -version = 4 -name = Normal definition = tizyx_evy +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.2 -layer_height_0 = 0.25 -initial_layer_line_width_factor = 90 -infill_overlap = 15 -material_flow_layer_0 = 93 -material_flow = 99 -retraction_amount = 5 -retraction_speed = 60 -speed_wall_0 = 45 -speed_wall_x = 50 -speed_topbottom = 45 -support_enable= True -support_angle = 70 adhesion_type = skirt -skirt_line_count = 2 -skirt_gap = 2 -fill_outline_gaps = True -infill_sparse_density = 15 -retraction_min_travel = 2 -speed_print = 60 +coasting_enable = False cool_fan_speed_0 = 10 cool_min_layer_time = 12 +fill_outline_gaps = True +infill_overlap = 15 +infill_sparse_density = 15 +initial_layer_line_width_factor = 90 +layer_height = 0.2 +layer_height_0 = 0.25 layer_start_x = 250 layer_start_y = 250 -coasting_enable = False +material_final_print_temperature = =material_print_temperature +material_flow = 99 +material_flow_layer_0 = 93 +material_initial_print_temperature = =material_print_temperature +material_print_temperature = =default_material_print_temperature +optimize_wall_printing_order = True +retraction_amount = 5 +retraction_min_travel = 2 +retraction_speed = 60 +skirt_gap = 2 +skirt_line_count = 2 +speed_print = 60 +speed_topbottom = 45 +speed_wall_0 = 45 +speed_wall_x = 50 +support_angle = 70 +support_enable = True wall_line_count = 2 -material_print_temperature = =default_material_print_temperature -material_initial_print_temperature = =material_print_temperature -material_final_print_temperature = =material_print_temperature z_seam_corner = z_seam_corner_none -optimize_wall_printing_order = True \ No newline at end of file + 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 8ac155c871..4e31f68f2e 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy_dual +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality variant = Classic Extruder +weight = 1 [values] cool_fan_speed_0 = 100 @@ -34,7 +34,8 @@ skirt_line_count = 2 speed_print = 60 speed_topbottom = 50 speed_wall_0 = 40 +switch_extruder_retraction_amount = 100 +switch_extruder_retraction_speeds = 70 top_layers = 4 wall_line_count = 2 -switch_extruder_retraction_amount = 100 -switch_extruder_retraction_speeds = 70 \ No newline at end of file + 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 4f07cb96c1..337ab66092 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy_dual +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = Classic Extruder +weight = 0 [values] cool_fan_speed_0 = 100 @@ -34,7 +34,8 @@ skirt_line_count = 2 speed_print = 60 speed_topbottom = 50 speed_wall_0 = 40 +switch_extruder_retraction_amount = 100 +switch_extruder_retraction_speeds = 70 top_layers = 4 wall_line_count = 2 -switch_extruder_retraction_amount = 100 -switch_extruder_retraction_speeds = 70 \ No newline at end of file + 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 3901df9143..dc4b03b001 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy_dual +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality variant = Direct Drive +weight = 1 [values] default_material_print_temperature = 210 @@ -28,3 +28,4 @@ retraction_hop_only_when_collides = False skirt_brim_minimal_length = 100 switch_extruder_retraction_amount = 72 switch_extruder_retraction_speeds = 70 + 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 cc20f3a9d6..b2ac3e6916 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy_dual +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = Direct Drive +weight = 0 [values] default_material_print_temperature = 210 @@ -27,4 +27,5 @@ retraction_hop_enabled = True retraction_hop_only_when_collides = False skirt_brim_minimal_length = 100 switch_extruder_retraction_amount = 72 -switch_extruder_retraction_speeds = 70 \ No newline at end of file +switch_extruder_retraction_speeds = 70 + 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 8748dd4e3a..a98abac5fe 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Flex and PLA definition = tizyx_evy_dual +name = Flex and PLA +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = tizyx_flex +quality_type = draft +setting_version = 22 +type = quality variant = Classic Extruder +weight = -2 [values] cool_fan_speed_0 = 100 @@ -34,7 +34,8 @@ skirt_line_count = 2 speed_print = 60 speed_topbottom = 50 speed_wall_0 = 40 +switch_extruder_retraction_amount = 100 +switch_extruder_retraction_speeds = 70 top_layers = 4 wall_line_count = 2 -switch_extruder_retraction_amount = 100 -switch_extruder_retraction_speeds = 70 \ No newline at end of file + 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 78a37cf084..2e1e59e385 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Flex Only definition = tizyx_evy_dual +name = Flex Only +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = tizyx_flex +quality_type = coarse +setting_version = 22 +type = quality variant = Classic Extruder +weight = -3 [values] switch_extruder_retraction_amount = 100 -switch_extruder_retraction_speeds = 70 \ No newline at end of file +switch_extruder_retraction_speeds = 70 + 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 7be2c19ecf..adc6a856cf 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Flex and PLA definition = tizyx_evy_dual +name = Flex and PLA +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = tizyx_flex +quality_type = draft +setting_version = 22 +type = quality variant = Direct Drive +weight = -2 [values] default_material_print_temperature = 210 @@ -25,7 +25,8 @@ retraction_enable = True retraction_extra_prime_amount = 0 retraction_hop_enabled = True retraction_hop_only_when_collides = False -speed_print = 30 skirt_brim_minimal_length = 100 +speed_print = 30 switch_extruder_retraction_amount = 72 -switch_extruder_retraction_speeds = 70 \ No newline at end of file +switch_extruder_retraction_speeds = 70 + 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 25c57ed31e..98f8c2182b 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Flex Only definition = tizyx_evy_dual +name = Flex Only +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = tizyx_flex +quality_type = coarse +setting_version = 22 +type = quality variant = Direct Drive +weight = -3 [values] switch_extruder_retraction_amount = 72 switch_extruder_retraction_speeds = 70 + 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 5cd19e868c..74d9ab12fc 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy_dual +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_petg +quality_type = high +setting_version = 22 +type = quality variant = Classic Extruder +weight = 1 [values] cool_fan_speed_0 = 100 @@ -34,7 +34,8 @@ skirt_line_count = 2 speed_print = 60 speed_topbottom = 50 speed_wall_0 = 40 +switch_extruder_retraction_amount = 100 +switch_extruder_retraction_speeds = 70 top_layers = 4 wall_line_count = 2 -switch_extruder_retraction_amount = 100 -switch_extruder_retraction_speeds = 70 \ No newline at end of file + 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 af566e7368..1c74e11b16 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy_dual +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = Classic Extruder +weight = 0 [values] cool_fan_speed_0 = 100 @@ -34,7 +34,8 @@ skirt_line_count = 2 speed_print = 60 speed_topbottom = 50 speed_wall_0 = 40 +switch_extruder_retraction_amount = 100 +switch_extruder_retraction_speeds = 70 top_layers = 4 wall_line_count = 2 -switch_extruder_retraction_amount = 100 -switch_extruder_retraction_speeds = 70 \ No newline at end of file + 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 204afef935..4fa73cebf8 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy_dual +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_petg +quality_type = high +setting_version = 22 +type = quality variant = Direct Drive +weight = 1 [values] default_material_print_temperature = 210 @@ -27,4 +27,5 @@ retraction_hop_enabled = True retraction_hop_only_when_collides = False skirt_brim_minimal_length = 100 switch_extruder_retraction_amount = 72 -switch_extruder_retraction_speeds = 70 \ No newline at end of file +switch_extruder_retraction_speeds = 70 + 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 118e35d09a..3bc2c21712 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy_dual +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = Direct Drive +weight = 0 [values] default_material_print_temperature = 210 @@ -27,4 +27,5 @@ retraction_hop_enabled = True retraction_hop_only_when_collides = False skirt_brim_minimal_length = 100 switch_extruder_retraction_amount = 72 -switch_extruder_retraction_speeds = 70 \ No newline at end of file +switch_extruder_retraction_speeds = 70 + 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 9d4e3d8888..cf53d203e2 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Flex and PLA definition = tizyx_evy_dual +name = Flex and PLA +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = Classic Extruder +weight = -2 [values] cool_fan_speed_0 = 100 @@ -34,7 +34,8 @@ skirt_line_count = 2 speed_print = 60 speed_topbottom = 50 speed_wall_0 = 40 +switch_extruder_retraction_amount = 100 +switch_extruder_retraction_speeds = 70 top_layers = 4 wall_line_count = 2 -switch_extruder_retraction_amount = 100 -switch_extruder_retraction_speeds = 70 \ No newline at end of file + 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 55c548ce5c..600e5d6d0f 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Flex Only definition = tizyx_evy_dual +name = Flex Only +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = generic_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Classic Extruder +weight = -3 [values] + 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 bbb665eff3..59bcd138e5 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy_dual +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality variant = Classic Extruder +weight = 1 [values] cool_fan_speed_0 = 100 @@ -34,7 +34,8 @@ skirt_line_count = 2 speed_print = 60 speed_topbottom = 50 speed_wall_0 = 40 +switch_extruder_retraction_amount = 100 +switch_extruder_retraction_speeds = 70 top_layers = 4 wall_line_count = 2 -switch_extruder_retraction_amount = 100 -switch_extruder_retraction_speeds = 70 \ No newline at end of file + 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 9cbc603c3b..455511c62b 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy_dual +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = Classic Extruder +weight = 0 [values] cool_fan_speed_0 = 100 @@ -34,7 +34,8 @@ skirt_line_count = 2 speed_print = 60 speed_topbottom = 50 speed_wall_0 = 40 +switch_extruder_retraction_amount = 100 +switch_extruder_retraction_speeds = 70 top_layers = 4 wall_line_count = 2 -switch_extruder_retraction_amount = 100 -switch_extruder_retraction_speeds = 70 \ No newline at end of file + 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 43067f894b..bd9b25a105 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = PVA and PLA definition = tizyx_evy_dual +name = PVA and PLA +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = Classic Extruder +weight = -2 [values] cool_fan_speed_0 = 100 @@ -34,7 +34,8 @@ skirt_line_count = 2 speed_print = 60 speed_topbottom = 50 speed_wall_0 = 40 +switch_extruder_retraction_amount = 100 +switch_extruder_retraction_speeds = 70 top_layers = 4 wall_line_count = 2 -switch_extruder_retraction_amount = 100 -switch_extruder_retraction_speeds = 70 \ No newline at end of file + 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 eee9b9055e..f7bd6efbfc 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Flex and PLA definition = tizyx_evy_dual +name = Flex and PLA +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = Direct Drive +weight = -2 [values] default_material_print_temperature = 210 @@ -25,7 +25,8 @@ retraction_enable = True retraction_extra_prime_amount = 0 retraction_hop_enabled = True retraction_hop_only_when_collides = False -speed_print = 30 skirt_brim_minimal_length = 100 +speed_print = 30 switch_extruder_retraction_amount = 72 -switch_extruder_retraction_speeds = 70 \ No newline at end of file +switch_extruder_retraction_speeds = 70 + 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 1c63e80837..3c11299e67 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Flex Only definition = tizyx_evy_dual +name = Flex Only +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = generic_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Direct Drive +weight = -3 [values] + 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 9b4968c9af..e401945530 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy_dual +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality variant = Direct Drive +weight = 1 [values] default_material_print_temperature = 210 @@ -28,3 +28,4 @@ retraction_hop_only_when_collides = False skirt_brim_minimal_length = 100 switch_extruder_retraction_amount = 72 switch_extruder_retraction_speeds = 70 + 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 3b699edd27..00dd53f761 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy_dual +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = Direct Drive +weight = 0 [values] default_material_print_temperature = 210 @@ -27,4 +27,5 @@ retraction_hop_enabled = True retraction_hop_only_when_collides = False skirt_brim_minimal_length = 100 switch_extruder_retraction_amount = 72 -switch_extruder_retraction_speeds = 70 \ No newline at end of file +switch_extruder_retraction_speeds = 70 + 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 24e00e4d62..f3f50b5274 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = PVA and PLA definition = tizyx_evy_dual +name = PVA and PLA +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = Direct Drive +weight = -2 [values] default_material_print_temperature = 210 @@ -25,7 +25,8 @@ retraction_enable = True retraction_extra_prime_amount = 0 retraction_hop_enabled = True retraction_hop_only_when_collides = False -speed_print = 30 skirt_brim_minimal_length = 100 +speed_print = 30 switch_extruder_retraction_amount = 72 -switch_extruder_retraction_speeds = 70 \ No newline at end of file +switch_extruder_retraction_speeds = 70 + 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 0a0c5674b5..3ba99d0a17 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Flex and PLA definition = tizyx_evy_dual +name = Flex and PLA +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = tizyx_pla_bois +quality_type = draft +setting_version = 22 +type = quality variant = Classic Extruder +weight = -2 [values] cool_fan_speed_0 = 100 @@ -34,7 +34,8 @@ skirt_line_count = 2 speed_print = 60 speed_topbottom = 50 speed_wall_0 = 40 +switch_extruder_retraction_amount = 100 +switch_extruder_retraction_speeds = 70 top_layers = 4 wall_line_count = 2 -switch_extruder_retraction_amount = 100 -switch_extruder_retraction_speeds = 70 \ No newline at end of file + 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 f2c3ce468a..14915a0d75 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy_dual +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = tizyx_pla_bois +quality_type = high +setting_version = 22 +type = quality variant = Classic Extruder +weight = 1 [values] cool_fan_speed_0 = 100 @@ -34,7 +34,8 @@ skirt_line_count = 2 speed_print = 60 speed_topbottom = 50 speed_wall_0 = 40 +switch_extruder_retraction_amount = 100 +switch_extruder_retraction_speeds = 70 top_layers = 4 wall_line_count = 2 -switch_extruder_retraction_amount = 100 -switch_extruder_retraction_speeds = 70 \ No newline at end of file + 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 e9e906ffdf..d47c3df97d 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy_dual +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = tizyx_pla_bois +quality_type = normal +setting_version = 22 +type = quality variant = Classic Extruder +weight = 0 [values] cool_fan_speed_0 = 100 @@ -34,7 +34,8 @@ skirt_line_count = 2 speed_print = 60 speed_topbottom = 50 speed_wall_0 = 40 +switch_extruder_retraction_amount = 100 +switch_extruder_retraction_speeds = 70 top_layers = 4 wall_line_count = 2 -switch_extruder_retraction_amount = 100 -switch_extruder_retraction_speeds = 70 \ No newline at end of file + 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 809c276c41..c22bbec066 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Flex and PLA definition = tizyx_evy_dual +name = Flex and PLA +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = tizyx_pla_bois +quality_type = draft +setting_version = 22 +type = quality variant = Direct Drive +weight = -2 [values] default_material_print_temperature = 210 @@ -25,7 +25,8 @@ retraction_enable = True retraction_extra_prime_amount = 0 retraction_hop_enabled = True retraction_hop_only_when_collides = False -speed_print = 30 skirt_brim_minimal_length = 100 +speed_print = 30 switch_extruder_retraction_amount = 72 -switch_extruder_retraction_speeds = 70 \ No newline at end of file +switch_extruder_retraction_speeds = 70 + 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 e8dadd1fed..23bb58ea7a 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = High definition = tizyx_evy_dual +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = tizyx_pla_bois +quality_type = high +setting_version = 22 +type = quality variant = Direct Drive +weight = 1 [values] default_material_print_temperature = 210 @@ -28,3 +28,4 @@ retraction_hop_only_when_collides = False skirt_brim_minimal_length = 100 switch_extruder_retraction_amount = 72 switch_extruder_retraction_speeds = 70 + 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 87f079ccf9..562a39da4c 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = tizyx_evy_dual +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = tizyx_pla_bois +quality_type = normal +setting_version = 22 +type = quality variant = Direct Drive +weight = 0 [values] default_material_print_temperature = 210 @@ -27,4 +27,5 @@ retraction_hop_enabled = True retraction_hop_only_when_collides = False skirt_brim_minimal_length = 100 switch_extruder_retraction_amount = 72 -switch_extruder_retraction_speeds = 70 \ No newline at end of file +switch_extruder_retraction_speeds = 70 + 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 2dafcf4cdc..c9b82c8587 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = PVA and PLA definition = tizyx_evy_dual +name = PVA and PLA +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = tizyx_pva +quality_type = draft +setting_version = 22 +type = quality variant = Classic Extruder +weight = -2 [values] cool_fan_speed_0 = 100 @@ -34,7 +34,8 @@ skirt_line_count = 2 speed_print = 60 speed_topbottom = 50 speed_wall_0 = 40 +switch_extruder_retraction_amount = 100 +switch_extruder_retraction_speeds = 70 top_layers = 4 wall_line_count = 2 -switch_extruder_retraction_amount = 100 -switch_extruder_retraction_speeds = 70 \ No newline at end of file + 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 5c6fc24736..b1a96c0321 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = PVA and PLA definition = tizyx_evy_dual +name = PVA and PLA +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = tizyx_pva +quality_type = draft +setting_version = 22 +type = quality variant = Direct Drive +weight = -2 [values] default_material_print_temperature = 210 @@ -25,7 +25,8 @@ retraction_enable = True retraction_extra_prime_amount = 0 retraction_hop_enabled = True retraction_hop_only_when_collides = False -speed_print = 30 skirt_brim_minimal_length = 100 +speed_print = 30 switch_extruder_retraction_amount = 72 -switch_extruder_retraction_speeds = 70 \ No newline at end of file +switch_extruder_retraction_speeds = 70 + 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 3a78a26d7e..35106e960c 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 @@ -1,39 +1,40 @@ [general] -version = 4 -name = Flex Only definition = tizyx_evy_dual +name = Flex Only +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -3 [values] -layer_height = 0.2 -layer_height_0 = 0.25 adhesion_extruder_nr = 1 adhesion_type = skirt -skirt_line_count = 2 -skirt_gap = 2 +cool_min_layer_time = 11 fill_outline_gaps = True infill_sparse_density = 15 -retraction_min_travel = 2 -speed_print = 30 -speed_topbottom = 50 -speed_wall_0 = 40 -top_layers = 4 -wall_line_count = 2 -cool_min_layer_time = 11 -material_print_temperature = =default_material_print_temperature -material_initial_print_temperature = =material_print_temperature -material_final_print_temperature = =material_print_temperature -support_enable = True +layer_height = 0.2 +layer_height_0 = 0.25 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = =default_material_print_temperature +optimize_wall_printing_order = True prime_tower_enable = True +prime_tower_flow = 110 prime_tower_position_x = 127.5 prime_tower_position_y = =math.ceil(250-prime_tower_size) prime_tower_size = 35 -prime_tower_flow = 110 +retraction_min_travel = 2 +skirt_gap = 2 +skirt_line_count = 2 +speed_print = 30 +speed_topbottom = 50 +speed_wall_0 = 40 +support_enable = True +top_layers = 4 +wall_line_count = 2 z_seam_corner = z_seam_corner_none -optimize_wall_printing_order = True + 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 3df1f2f3f9..9b6258a1f4 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Flex and PLA definition = tizyx_evy_dual +name = Flex and PLA +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] adhesion_extruder_nr = 0 adhesion_type = skirt layer_height = 0.2 layer_height_0 = 0.25 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = =default_material_print_temperature +optimize_wall_printing_order = True prime_tower_enable = True +prime_tower_flow = 110 prime_tower_position_x = 127.5 prime_tower_position_y = =math.ceil(250-prime_tower_size) prime_tower_size = 35 -prime_tower_flow = 110 -material_print_temperature = =default_material_print_temperature -material_initial_print_temperature = =material_print_temperature -material_final_print_temperature = =material_print_temperature +retraction_hop_enabled = False support_enable = True z_seam_corner = z_seam_corner_none -optimize_wall_printing_order = True -retraction_hop_enabled = False + 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 ab9ca9c82d..9ad32705aa 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 @@ -1,52 +1,53 @@ [general] -version = 4 -name = High definition = tizyx_evy_dual +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] adhesion_extruder_nr = 0 adhesion_type = skirt +coasting_enable = False +cool_fan_speed_0 = 10 +cool_min_layer_time = 12 +fill_outline_gaps = True +infill_overlap = 15 +infill_sparse_density = 15 +initial_layer_line_width_factor = 90 layer_height = 0.1 layer_height_0 = 0.1 +layer_start_x = 250 +layer_start_y = 250 +material_final_print_temperature = =material_print_temperature +material_flow = 99 +material_flow_layer_0 = 93 +material_initial_print_temperature = =material_print_temperature +material_print_temperature = =default_material_print_temperature +optimize_wall_printing_order = True prime_tower_enable = True +prime_tower_flow = 110 prime_tower_position_x = 127.5 prime_tower_position_y = =math.ceil(250-prime_tower_size) prime_tower_size = 35 -prime_tower_flow = 110 -material_print_temperature = =default_material_print_temperature -material_initial_print_temperature = =material_print_temperature -material_final_print_temperature = =material_print_temperature -support_enable = True -initial_layer_line_width_factor = 90 -infill_overlap = 15 -material_flow_layer_0 = 93 -material_flow = 99 retraction_amount = 5 +retraction_hop_enabled = False +retraction_min_travel = 2 retraction_speed = 60 +skirt_gap = 2 +skirt_line_count = 2 +speed_print = 60 +speed_topbottom = 45 speed_wall_0 = 45 speed_wall_x = 50 -speed_topbottom = 45 support_angle = 70 -skirt_line_count = 2 -skirt_gap = 2 -fill_outline_gaps = True -infill_sparse_density = 15 -retraction_min_travel = 2 -speed_print = 60 -cool_fan_speed_0 = 10 -cool_min_layer_time = 12 -layer_start_x = 250 -layer_start_y = 250 -coasting_enable = False +support_enable = True top_layers = 4 wall_line_count = 2 z_seam_corner = z_seam_corner_none -optimize_wall_printing_order = True -retraction_hop_enabled = False \ No newline at end of file + 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 5ffc19f532..5aa5a445fe 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 @@ -1,52 +1,53 @@ [general] -version = 4 -name = Normal definition = tizyx_evy_dual +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] adhesion_extruder_nr = 0 adhesion_type = skirt +coasting_enable = False +cool_fan_speed_0 = 10 +cool_min_layer_time = 12 +fill_outline_gaps = True +infill_overlap = 15 +infill_sparse_density = 15 +initial_layer_line_width_factor = 90 layer_height = 0.2 layer_height_0 = 0.25 +layer_start_x = 250 +layer_start_y = 250 +material_final_print_temperature = =material_print_temperature +material_flow = 99 +material_flow_layer_0 = 93 +material_initial_print_temperature = =material_print_temperature +material_print_temperature = =default_material_print_temperature +optimize_wall_printing_order = True prime_tower_enable = True +prime_tower_flow = 110 prime_tower_position_x = 127.5 prime_tower_position_y = =math.ceil(250-prime_tower_size) prime_tower_size = 35 -prime_tower_flow = 110 -material_print_temperature = =default_material_print_temperature -material_initial_print_temperature = =material_print_temperature -material_final_print_temperature = =material_print_temperature -support_enable = True -initial_layer_line_width_factor = 90 -infill_overlap = 15 -material_flow_layer_0 = 93 -material_flow = 99 retraction_amount = 5 +retraction_hop_enabled = False +retraction_min_travel = 2 retraction_speed = 60 +skirt_gap = 2 +skirt_line_count = 2 +speed_print = 60 +speed_topbottom = 45 speed_wall_0 = 45 speed_wall_x = 50 -speed_topbottom = 45 support_angle = 70 -skirt_line_count = 2 -skirt_gap = 2 -fill_outline_gaps = True -infill_sparse_density = 15 -retraction_min_travel = 2 -speed_print = 60 -cool_fan_speed_0 = 10 -cool_min_layer_time = 12 -layer_start_x = 250 -layer_start_y = 250 -coasting_enable = False +support_enable = True top_layers = 4 wall_line_count = 2 z_seam_corner = z_seam_corner_none -optimize_wall_printing_order = True -retraction_hop_enabled = False \ No newline at end of file + 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 e98452b57b..262090dce6 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = PVA and PLA definition = tizyx_evy_dual +name = PVA and PLA +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] adhesion_extruder_nr = 0 adhesion_type = skirt layer_height = 0.2 layer_height_0 = 0.25 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = =default_material_print_temperature +optimize_wall_printing_order = True prime_tower_enable = True +prime_tower_flow = 110 prime_tower_position_x = 127.5 prime_tower_position_y = =math.ceil(250-prime_tower_size) prime_tower_size = 35 -prime_tower_flow = 110 -material_print_temperature = =default_material_print_temperature -material_initial_print_temperature = =material_print_temperature -material_final_print_temperature = =material_print_temperature +retraction_hop_enabled = False support_enable = True z_seam_corner = z_seam_corner_none -optimize_wall_printing_order = True -retraction_hop_enabled = False \ No newline at end of file + 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 1368427a4a..50608d4be0 100644 --- a/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg @@ -1,40 +1,41 @@ [general] -version = 4 -name = High definition = tizyx_k25 +name = High +version = 4 [metadata] -quality_type = draft -setting_version = 20 -type = quality global_quality = True +quality_type = draft +setting_version = 22 +type = quality [values] -layer_height = 0.1 -initial_layer_line_width_factor = 90 -infill_overlap = 15 -material_flow_layer_0 = 93 -material_flow = 99 -speed_wall_0 = 45 -speed_wall_x = 50 -speed_topbottom = 45 -support_enable= True -support_angle = 70 adhesion_type = skirt -skirt_line_count = 2 -skirt_gap = 2 -fill_outline_gaps = True -infill_sparse_density = 15 -retraction_min_travel = 2 -speed_print = 60 +coasting_enable = False cool_fan_speed_0 = 10 cool_min_layer_time = 12 +fill_outline_gaps = True +infill_overlap = 15 +infill_sparse_density = 15 +initial_layer_line_width_factor = 90 +layer_height = 0.1 layer_start_x = 250 layer_start_y = 250 -coasting_enable = False -wall_line_count = 2 -material_print_temperature = =default_material_print_temperature -material_initial_print_temperature = =material_print_temperature -material_final_print_temperature = =material_print_temperature -z_seam_corner = z_seam_corner_none +material_final_print_temperature = =material_print_temperature +material_flow = 99 +material_flow_layer_0 = 93 +material_initial_print_temperature = =material_print_temperature +material_print_temperature = =default_material_print_temperature optimize_wall_printing_order = True +retraction_min_travel = 2 +skirt_gap = 2 +skirt_line_count = 2 +speed_print = 60 +speed_topbottom = 45 +speed_wall_0 = 45 +speed_wall_x = 50 +support_angle = 70 +support_enable = True +wall_line_count = 2 +z_seam_corner = z_seam_corner_none + 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 199ebb5393..86dcd154ed 100644 --- a/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg @@ -1,40 +1,41 @@ [general] -version = 4 -name = Normal definition = tizyx_k25 +name = Normal +version = 4 [metadata] -quality_type = normal -setting_version = 20 -type = quality global_quality = True +quality_type = normal +setting_version = 22 +type = quality [values] -layer_height = 0.2 -initial_layer_line_width_factor = 90 -infill_overlap = 15 -material_flow_layer_0 = 93 -material_flow = 99 -speed_wall_0 = 45 -speed_wall_x = 50 -speed_topbottom = 45 -support_enable= True -support_angle = 70 adhesion_type = skirt -skirt_line_count = 2 -skirt_gap = 2 -fill_outline_gaps = True -infill_sparse_density = 15 -retraction_min_travel = 2 -speed_print = 60 +coasting_enable = False cool_fan_speed_0 = 10 cool_min_layer_time = 12 +fill_outline_gaps = True +infill_overlap = 15 +infill_sparse_density = 15 +initial_layer_line_width_factor = 90 +layer_height = 0.2 layer_start_x = 250 layer_start_y = 250 -coasting_enable = False -wall_line_count = 2 -material_print_temperature = =default_material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -z_seam_corner = z_seam_corner_none +material_flow = 99 +material_flow_layer_0 = 93 +material_initial_print_temperature = =material_print_temperature +material_print_temperature = =default_material_print_temperature optimize_wall_printing_order = True +retraction_min_travel = 2 +skirt_gap = 2 +skirt_line_count = 2 +speed_print = 60 +speed_topbottom = 45 +speed_wall_0 = 45 +speed_wall_x = 50 +support_angle = 70 +support_enable = True +wall_line_count = 2 +z_seam_corner = z_seam_corner_none + diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg index 070a95fa80..21edbe2809 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fast definition = trimaker_cosmosII +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = 1 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = 1 [values] layer_height = 0.3 -speed_print = 60 \ No newline at end of file +speed_print = 60 + diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg index dfa1c3afbe..0bd8bb6364 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Normal definition = trimaker_cosmosII +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.2 speed_print = 45 + diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg index 23adf9c3e7..8df81f55f8 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Slow definition = trimaker_cosmosII +name = Slow +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = slow -weight = -1 global_quality = True +quality_type = slow +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.1 -speed_print = 30 \ No newline at end of file +speed_print = 30 + diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg index b5110ffca4..9a5124e4fc 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fast definition = trimaker_nebula +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = 1 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = 1 [values] layer_height = 0.3 -speed_print = 60 \ No newline at end of file +speed_print = 60 + diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg index 8569442703..cd7f01f5ca 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Normal definition = trimaker_nebula +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.2 speed_print = 45 + diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg index 782b876425..b88d621681 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Slow definition = trimaker_nebula +name = Slow +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = slow -weight = -1 global_quality = True +quality_type = slow +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.1 -speed_print = 30 \ No newline at end of file +speed_print = 30 + 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 a006b27907..34f9e3e47c 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Extra Fine Quality definition = tronxy_x +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra material = generic_abs +quality_type = extra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] +cool_fan_enabled = False wall_thickness = =line_width*8 -cool_fan_enabled = False \ No newline at end of file + 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 7095910071..3e3f8912d2 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fine Quality definition = tronxy_x +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_abs +quality_type = fine +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] +cool_fan_enabled = False wall_thickness = =line_width*8 -cool_fan_enabled = False \ No newline at end of file + 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 2559055437..c16174957a 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Fine Quality definition = tronxy_x +name = Super Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] +cool_fan_enabled = False wall_thickness = =line_width*8 -cool_fan_enabled = False \ No newline at end of file + 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 e3a854b92a..06b8c01db1 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg @@ -1,18 +1,18 @@ [general] -version = 4 -name = Extra Fine Quality definition = tronxy_x +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra material = generic_petg +quality_type = extra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] layer_height_0 = 0.14 +retraction_extra_prime_amount = 0.25 speed_layer_0 = 15 wall_thickness = =line_width*4 -retraction_extra_prime_amount = 0.25 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 fcfe0a0252..10397a2b5b 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg @@ -1,18 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = tronxy_x +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_petg +quality_type = fine +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] layer_height_0 = 0.14 +retraction_extra_prime_amount = 0.25 speed_layer_0 = 15 wall_thickness = =line_width*4 -retraction_extra_prime_amount = 0.25 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 c0ad31fbff..d9f6d69c14 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg @@ -1,17 +1,18 @@ [general] -version = 4 -name = Super Fine Quality definition = tronxy_x +name = Super Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] layer_height_0 = 0.14 +retraction_extra_prime_amount = 0.25 speed_layer_0 = 15 wall_thickness = =line_width*4 -retraction_extra_prime_amount = 0.25 + 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 bbec003448..204eca3683 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Extra Fine Quality definition = tronxy_x +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra material = generic_pla +quality_type = extra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] + 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 aaf66e1127..5929c712bd 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Fine Quality definition = tronxy_x +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_pla +quality_type = fine +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] + 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 436135531e..f63750d732 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Super Fine Quality definition = tronxy_x +name = Super Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] + 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 b9f8e634ac..246ad7a8de 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Extra Fine Quality definition = tronxy_x +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra material = generic_abs +quality_type = extra +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] +cool_fan_enabled = False wall_thickness = =line_width*4 -cool_fan_enabled = False \ No newline at end of file + 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 719ee2c12b..2bfaa59e9c 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fine Quality definition = tronxy_x +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_abs +quality_type = fine +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] +cool_fan_enabled = False wall_thickness = =line_width*4 -cool_fan_enabled = False \ No newline at end of file + 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 f0d1101f6e..1a667797bf 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = tronxy_x +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] +cool_fan_enabled = False wall_thickness = =line_width*4 -cool_fan_enabled = False \ No newline at end of file + 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 6ca53f0dda..c1b7c0eeeb 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Normal Quality definition = tronxy_x +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] +cool_fan_enabled = False wall_thickness = =line_width*4 -cool_fan_enabled = False \ No newline at end of file + 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 10b4fedb35..168ee1f9c3 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg @@ -1,17 +1,18 @@ [general] -version = 4 -name = Extra Fine Quality definition = tronxy_x +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra material = generic_petg +quality_type = extra +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] layer_height_0 = 0.18 +retraction_extra_prime_amount = 0.25 speed_layer_0 = 15 wall_thickness = =line_width*4 -retraction_extra_prime_amount = 0.25 + 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 5100bd1ec1..f5a4fff0a2 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = tronxy_x +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_petg +quality_type = fine +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] layer_height_0 = 0.18 +retraction_extra_prime_amount = 0.25 speed_layer_0 = 15 wall_thickness = =line_width*4 -retraction_extra_prime_amount = 0.25 + 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 ce84236a85..848f6d60de 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg @@ -1,17 +1,18 @@ [general] -version = 4 -name = Low Quality definition = tronxy_x +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] layer_height_0 = 0.18 +retraction_extra_prime_amount = 0.25 speed_layer_0 = 15 wall_thickness = =line_width*4 -retraction_extra_prime_amount = 0.25 + 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 acb9f8148e..8a9cb9d96f 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg @@ -1,17 +1,18 @@ [general] -version = 4 -name = Normal Quality definition = tronxy_x +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] layer_height_0 = 0.18 +retraction_extra_prime_amount = 0.25 speed_layer_0 = 15 wall_thickness = =line_width*4 -retraction_extra_prime_amount = 0.25 + 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 e01e547d74..9d8c29d180 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Extra Fine Quality definition = tronxy_x +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra material = generic_pla +quality_type = extra +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 3ef0a39f54..e25434749f 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Fine Quality definition = tronxy_x +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_pla +quality_type = fine +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 a84745f8f5..21afc0841a 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = tronxy_x +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 f1b287540d..2d0dcac309 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Normal Quality definition = tronxy_x +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 d35548a0e8..4f94115634 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Extra Fine Quality definition = tronxy_x +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra material = generic_tpu +quality_type = extra +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 d3534c2a15..16118e491a 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Fine Quality definition = tronxy_x +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_tpu +quality_type = fine +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 4a923641ec..4f685b96a6 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Normal Quality definition = tronxy_x +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_tpu +quality_type = normal +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] + 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 bd223d714a..18781c647f 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Extra Fine Quality definition = tronxy_x +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra material = generic_abs +quality_type = extra +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] +cool_fan_enabled = False wall_thickness = =line_width*4 -cool_fan_enabled = False \ No newline at end of file + 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 e28b5c2918..06de761752 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fine Quality definition = tronxy_x +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_abs +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] +cool_fan_enabled = False wall_thickness = =line_width*4 -cool_fan_enabled = False \ No newline at end of file + 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 446c6e36f5..e945ac01dd 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = tronxy_x +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] +cool_fan_enabled = False wall_thickness = =line_width*4 -cool_fan_enabled = False \ No newline at end of file + 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 19f02a0035..53e16d3f3d 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg @@ -1,17 +1,18 @@ [general] -version = 4 -name = Normal Quality definition = tronxy_x +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 cool_fan_enabled = False cool_fan_speed = 0.0 -cool_fan_speed_min = 0.0 \ No newline at end of file +cool_fan_speed_min = 0.0 +wall_thickness = =line_width*4 + 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 7a520728da..154d97c11d 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Rough Quality definition = tronxy_x +name = Rough Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rough material = generic_abs +quality_type = rough +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -wall_thickness = =line_width*4 cool_fan_enabled = False +wall_thickness = =line_width*4 + 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 76eec53379..6d37eec24b 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg @@ -1,17 +1,18 @@ [general] -version = 4 -name = Extra Fine Quality definition = tronxy_x +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra material = generic_petg +quality_type = extra +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] layer_height_0 = 0.25 +retraction_extra_prime_amount = 0.25 speed_layer_0 = 15 wall_thickness = =line_width*4 -retraction_extra_prime_amount = 0.25 + 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 7c62df111d..197c0784e5 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = tronxy_x +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_petg +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] layer_height_0 = 0.25 +retraction_extra_prime_amount = 0.25 speed_layer_0 = 15 wall_thickness = =line_width*4 -retraction_extra_prime_amount = 0.25 + 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 ac35008aa8..2b74aef0ee 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg @@ -1,17 +1,18 @@ [general] -version = 4 -name = Low Quality definition = tronxy_x +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] layer_height_0 = 0.25 +retraction_extra_prime_amount = 0.25 speed_layer_0 = 15 wall_thickness = =line_width*4 -retraction_extra_prime_amount = 0.25 + 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 a6b7cb8ec5..dc23c9ce86 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg @@ -1,17 +1,18 @@ [general] -version = 4 -name = Normal Quality definition = tronxy_x +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] layer_height_0 = 0.25 +retraction_extra_prime_amount = 0.25 speed_layer_0 = 15 wall_thickness = =line_width*4 -retraction_extra_prime_amount = 0.25 + 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 a64b012484..e66f4dbf3c 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg @@ -1,17 +1,18 @@ [general] -version = 4 -name = Rough Quality definition = tronxy_x +name = Rough Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rough material = generic_petg +quality_type = rough +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] layer_height_0 = 0.25 +retraction_extra_prime_amount = 0.25 speed_layer_0 = 15 wall_thickness = =line_width*4 -retraction_extra_prime_amount = 0.25 + 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 c40af7ac79..1c0e4292fb 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Extra Fine Quality definition = tronxy_x +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra material = generic_pla +quality_type = extra +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 f92f9b5c9b..972760e4af 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Fine Quality definition = tronxy_x +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_pla +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 5a56b8faef..5ba5b1aa7b 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = tronxy_x +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 193b62d23b..e587de7f49 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Normal Quality definition = tronxy_x +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 ee4e3e35dc..bc6e559bee 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Rough Quality definition = tronxy_x +name = Rough Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rough material = generic_pla +quality_type = rough +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 5f9792fd46..9e74cd5116 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Extra Fine Quality definition = tronxy_x +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra material = generic_tpu +quality_type = extra +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 9cb094b7d7..d688dc9c46 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Fine Quality definition = tronxy_x +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_tpu +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 d121d448f5..cea23b76f1 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Normal Quality definition = tronxy_x +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_tpu +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] + 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 cc9d519300..729428a336 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fine Quality definition = tronxy_x +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_abs +quality_type = fine +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] +cool_fan_enabled = False wall_thickness = =line_width*4 -cool_fan_enabled = False \ No newline at end of file + 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 becdfb5ab9..b68e94831e 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low Quality definition = tronxy_x +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] +cool_fan_enabled = False wall_thickness = =line_width*4 -cool_fan_enabled = False \ No newline at end of file + 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 6474914ab0..e359ea1edc 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Normal Quality definition = tronxy_x +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] +cool_fan_enabled = False wall_thickness = =line_width*4 -cool_fan_enabled = False \ No newline at end of file + 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 d98ed92c68..e23722aa77 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Rough/Fast Quality definition = tronxy_x +name = Rough/Fast Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rapid material = generic_abs +quality_type = rapid +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] +cool_fan_enabled = False wall_thickness = =line_width*4 -cool_fan_enabled = False \ No newline at end of file + 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 cdca6d471f..ad66b902ec 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Rough Quality definition = tronxy_x +name = Rough Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rough material = generic_abs +quality_type = rough +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -wall_thickness = =line_width*4 cool_fan_enabled = False +wall_thickness = =line_width*4 + 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 aeb39736ac..9a5899f57d 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine Quality definition = tronxy_x +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_petg +quality_type = fine +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] layer_height_0 = 0.3 +retraction_extra_prime_amount = 0.25 speed_layer_0 = 15 wall_thickness = =line_width*4 -retraction_extra_prime_amount = 0.25 + 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 dfc36aec6a..daa17e9534 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg @@ -1,17 +1,18 @@ [general] -version = 4 -name = Low Quality definition = tronxy_x +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] layer_height_0 = 0.3 +retraction_extra_prime_amount = 0.25 speed_layer_0 = 15 wall_thickness = =line_width*4 -retraction_extra_prime_amount = 0.25 + 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 109e10b206..e87962c3e2 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg @@ -1,17 +1,18 @@ [general] -version = 4 -name = Normal Quality definition = tronxy_x +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] layer_height_0 = 0.3 +retraction_extra_prime_amount = 0.25 speed_layer_0 = 15 wall_thickness = =line_width*4 -retraction_extra_prime_amount = 0.25 + 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 a2d85141a0..d2b4121008 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Rough/Fast Quality definition = tronxy_x +name = Rough/Fast Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rapid material = generic_petg +quality_type = rapid +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] +retraction_extra_prime_amount = 0.25 speed_layer_0 = 15 wall_thickness = =line_width*4 -retraction_extra_prime_amount = 0.25 + 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 35882a4003..387f81555c 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg @@ -1,17 +1,18 @@ [general] -version = 4 -name = Rough Quality definition = tronxy_x +name = Rough Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rough material = generic_petg +quality_type = rough +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] layer_height_0 = 0.25 +retraction_extra_prime_amount = 0.25 speed_layer_0 = 15 wall_thickness = =line_width*4 -retraction_extra_prime_amount = 0.25 + 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 deeed2a841..e2d4b0d54d 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Fine Quality definition = tronxy_x +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_pla +quality_type = fine +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 974d87a753..a9dd9837d2 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = tronxy_x +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 64cd5298bd..023e040537 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Normal Quality definition = tronxy_x +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 92131afa62..2d539dd6b6 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Rough/Fast Quality definition = tronxy_x +name = Rough/Fast Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rapid material = generic_pla +quality_type = rapid +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 b8595e68ad..7c5eaddd0f 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Rough Quality definition = tronxy_x +name = Rough Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rough material = generic_pla +quality_type = rough +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 4014a44bab..9660d1dcf5 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Fine Quality definition = tronxy_x +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_tpu +quality_type = fine +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 0dd03b99dd..5d11d34374 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Normal Quality definition = tronxy_x +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_tpu +quality_type = normal +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 1fc3de5d64..aaf808dd3b 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Rough/Fast Quality definition = tronxy_x +name = Rough/Fast Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rapid material = generic_tpu +quality_type = rapid +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] + 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 c7d0dda244..60586feecc 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Normal Quality definition = tronxy_x +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] +cool_fan_enabled = False wall_thickness = =line_width*3 -cool_fan_enabled = False \ No newline at end of file + 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 9bb5552d36..e27b930641 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Rough/Fast Quality definition = tronxy_x +name = Rough/Fast Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rapid material = generic_abs +quality_type = rapid +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] +cool_fan_enabled = False wall_thickness = =line_width*4 -cool_fan_enabled = False \ No newline at end of file + 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 c08d405097..1e7bb10063 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Rough Quality definition = tronxy_x +name = Rough Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rough material = generic_abs +quality_type = rough +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] -wall_thickness = =line_width*4 cool_fan_enabled = False +wall_thickness = =line_width*4 + 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 be593398b0..607671c47f 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg @@ -1,17 +1,18 @@ [general] -version = 4 -name = Normal Quality definition = tronxy_x +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] layer_height_0 = 0.4 +retraction_extra_prime_amount = 0.25 speed_layer_0 = 15 wall_thickness = =line_width*3 -retraction_extra_prime_amount = 0.25 + 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 ee10d3266d..b905bd3241 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg @@ -1,16 +1,17 @@ [general] -version = 4 -name = Rough/Fast Quality definition = tronxy_x +name = Rough/Fast Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rapid material = generic_petg +quality_type = rapid +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] +retraction_extra_prime_amount = 0.25 speed_layer_0 = 15 wall_thickness = =line_width*4 -retraction_extra_prime_amount = 0.25 + 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 15b9d3a9d7..044a9d2a46 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg @@ -1,17 +1,18 @@ [general] -version = 4 -name = Rough Quality definition = tronxy_x +name = Rough Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rough material = generic_petg +quality_type = rough +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] layer_height_0 = 0.25 +retraction_extra_prime_amount = 0.25 speed_layer_0 = 15 wall_thickness = =line_width*4 -retraction_extra_prime_amount = 0.25 + 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 589e307e1a..51300f1c93 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low Quality definition = tronxy_x +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 b1f143d897..4fa07b2983 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Normal Quality definition = tronxy_x +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 318f67eaba..4189e2f030 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Rough/Fast Quality definition = tronxy_x +name = Rough/Fast Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rapid material = generic_pla +quality_type = rapid +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 aa79f1b367..96c304d9d3 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Rough Quality definition = tronxy_x +name = Rough Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rough material = generic_pla +quality_type = rough +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 3c2ccad01f..b9d8782fa6 100644 --- a/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Normal Quality definition = tronxy_x +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_tpu +quality_type = normal +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 a01cd631a4..50b7ff3fba 100644 --- a/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Rough/Fast Quality definition = tronxy_x +name = Rough/Fast Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rapid material = generic_tpu +quality_type = rapid +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] + 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 0c1ce75772..42290b3be0 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Low definition = tronxy_x +name = Low +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] +cool_fan_enabled = False wall_thickness = =line_width*3 -cool_fan_enabled = False \ No newline at end of file + 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 991b561447..137877259a 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Rough/Fast Quality definition = tronxy_x +name = Rough/Fast Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rapid material = generic_abs +quality_type = rapid +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] +cool_fan_enabled = False wall_thickness = =line_width*3 -cool_fan_enabled = False \ No newline at end of file + 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 a2cf2da8e8..867d9d4bca 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Rough Quality definition = tronxy_x +name = Rough Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rough material = generic_abs +quality_type = rough +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] +cool_fan_enabled = False wall_thickness = =line_width*3 -cool_fan_enabled = False \ No newline at end of file + 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 63c7aa4533..f55d6ea39e 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg @@ -1,17 +1,18 @@ [general] -version = 4 -name = Low definition = tronxy_x +name = Low +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] layer_height_0 = 0.5 +retraction_extra_prime_amount = 0.25 speed_layer_0 = 15 wall_thickness = =line_width*3 -retraction_extra_prime_amount = 0.25 + 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 4ac1aed6b4..87dcd771e5 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg @@ -1,17 +1,18 @@ [general] -version = 4 -name = Rough/Fast Quality definition = tronxy_x +name = Rough/Fast Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rapid material = generic_petg +quality_type = rapid +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] layer_height_0 = 0.5 +retraction_extra_prime_amount = 0.25 speed_layer_0 = 15 wall_thickness = =line_width*3 -retraction_extra_prime_amount = 0.25 + 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 a1a39da8bd..cdce525719 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg @@ -1,17 +1,18 @@ [general] -version = 4 -name = Rough Quality definition = tronxy_x +name = Rough Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rough material = generic_petg +quality_type = rough +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] layer_height_0 = 0.5 +retraction_extra_prime_amount = 0.25 speed_layer_0 = 15 wall_thickness = =line_width*3 -retraction_extra_prime_amount = 0.25 + 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 830d35254d..1696a16092 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low definition = tronxy_x +name = Low +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] + 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 346b83a8ef..064cd8d1e7 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Rough/Fast Quality definition = tronxy_x +name = Rough/Fast Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rapid material = generic_pla +quality_type = rapid +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] + 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 07be90d1ff..2745bc4ddf 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Rough Quality definition = tronxy_x +name = Rough Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rough material = generic_pla +quality_type = rough +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] + 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 6d301f38ba..7705be45c1 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Low definition = tronxy_x +name = Low +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_tpu +quality_type = low +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] + 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 5bfb7673f6..68cc7246f5 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Rough/Fast Quality definition = tronxy_x +name = Rough/Fast Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rapid material = generic_tpu +quality_type = rapid +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] + 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 8482d36170..64290f624e 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Rough Quality definition = tronxy_x +name = Rough Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rough material = generic_tpu +quality_type = rough +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] + diff --git a/resources/quality/tronxy/tronxy_global_extra.inst.cfg b/resources/quality/tronxy/tronxy_global_extra.inst.cfg index 573de7d6d2..986c0383f7 100644 --- a/resources/quality/tronxy/tronxy_global_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_extra.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Extra Fine Quality definition = tronxy_x +name = Extra Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra -weight = -1 global_quality = True +quality_type = extra +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.12 layer_height_0 = 0.12 +support_interface_height = =layer_height*8 top_bottom_thickness = =layer_height_0+layer_height*6 wall_thickness = =line_width*3 -support_interface_height = =layer_height*8 + diff --git a/resources/quality/tronxy/tronxy_global_fine.inst.cfg b/resources/quality/tronxy/tronxy_global_fine.inst.cfg index 93122201d9..d5853d8703 100644 --- a/resources/quality/tronxy/tronxy_global_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_fine.inst.cfg @@ -1,19 +1,20 @@ [general] -version = 4 -name = Fine Quality definition = tronxy_x +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = -2 global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = -2 [values] +adaptive_layer_height_enabled = true layer_height = 0.15 layer_height_0 = 0.20 +support_interface_height = =layer_height*6 top_bottom_thickness = =layer_height_0+layer_height*4 wall_thickness = =line_width*3 -support_interface_height = =layer_height*6 -adaptive_layer_height_enabled = true + diff --git a/resources/quality/tronxy/tronxy_global_low.inst.cfg b/resources/quality/tronxy/tronxy_global_low.inst.cfg index 0404b6c590..e5ab0dc3a4 100644 --- a/resources/quality/tronxy/tronxy_global_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_low.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Low Quality definition = tronxy_x +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low -weight = -4 global_quality = True +quality_type = low +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.25 layer_height_0 = 0.25 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 + diff --git a/resources/quality/tronxy/tronxy_global_normal.inst.cfg b/resources/quality/tronxy/tronxy_global_normal.inst.cfg index 94139c2e64..55ecad6eac 100644 --- a/resources/quality/tronxy/tronxy_global_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_normal.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Normal Quality definition = tronxy_x +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -3 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.2 layer_height_0 = 0.2 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 + diff --git a/resources/quality/tronxy/tronxy_global_rapid.inst.cfg b/resources/quality/tronxy/tronxy_global_rapid.inst.cfg index 928b841356..ed2fc3425e 100644 --- a/resources/quality/tronxy/tronxy_global_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_rapid.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Rough/Fast Quality definition = tronxy_x +name = Rough/Fast Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rapid -weight = -5 global_quality = True +quality_type = rapid +setting_version = 22 +type = quality +weight = -5 [values] layer_height = 0.375 layer_height_0 = 0.3 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 + diff --git a/resources/quality/tronxy/tronxy_global_rough.inst.cfg b/resources/quality/tronxy/tronxy_global_rough.inst.cfg index 61fdeda2ab..97f0ae05c7 100644 --- a/resources/quality/tronxy/tronxy_global_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_rough.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Rough Quality definition = tronxy_x +name = Rough Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = rough -weight = -5 global_quality = True +quality_type = rough +setting_version = 22 +type = quality +weight = -5 [values] layer_height = 0.3 layer_height_0 = 0.3 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 + diff --git a/resources/quality/tronxy/tronxy_global_super.inst.cfg b/resources/quality/tronxy/tronxy_global_super.inst.cfg index 7c67a42717..5f17af54a2 100644 --- a/resources/quality/tronxy/tronxy_global_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_super.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Super Fine Quality definition = tronxy_x +name = Super Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super -weight = 0 global_quality = True +quality_type = super +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.08 layer_height_0 = 0.12 +support_interface_height = =layer_height*12 top_bottom_thickness = =layer_height_0+layer_height*10 wall_thickness = =line_width*3 -support_interface_height = =layer_height*12 + 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 9f3f44f131..6f00503f5a 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Super Quality definition = two_trees_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] -material_bed_temperature = 100 -material_print_temperature_layer_0 = 245 -material_print_temperature = 240 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = False +material_bed_temperature = 100 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 240 +material_print_temperature_layer_0 = 245 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 bfdfde10a8..e5327c74e6 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Ultra Quality definition = two_trees_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_abs +quality_type = ultra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] -material_bed_temperature = 100 -material_print_temperature_layer_0 = 245 -material_print_temperature = 240 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = False +material_bed_temperature = 100 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 240 +material_print_temperature_layer_0 = 245 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 retraction_hop_only_when_collides = True + 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 a2184712d3..be1e007609 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Dynamic Quality definition = two_trees_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -material_bed_temperature = 100 -material_print_temperature_layer_0 = 245 -material_print_temperature = 240 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = False +material_bed_temperature = 100 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 240 +material_print_temperature_layer_0 = 245 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 retraction_hop_only_when_collides = True + 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 e33cbe5ca7..e24d1292ef 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Low Quality definition = two_trees_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -material_bed_temperature = 100 -material_print_temperature_layer_0 = 245 -material_print_temperature = 240 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = False +material_bed_temperature = 100 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 240 +material_print_temperature_layer_0 = 245 +material_standby_temperature = =material_print_temperature retraction_hop = 0.4 retraction_hop_only_when_collides = True + 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 bc94cd25bf..d2688767ff 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Standard Quality definition = two_trees_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -material_bed_temperature = 100 -material_print_temperature_layer_0 = 245 -material_print_temperature = 240 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = False +material_bed_temperature = 100 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 240 +material_print_temperature_layer_0 = 245 +material_standby_temperature = =material_print_temperature retraction_hop = 0.3 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 92337b8515..b857a977da 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Super Quality definition = two_trees_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -material_bed_temperature = 100 -material_print_temperature_layer_0 = 245 -material_print_temperature = 240 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = False +material_bed_temperature = 100 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 240 +material_print_temperature_layer_0 = 245 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 3413006ab5..2c0cf7462c 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Dynamic Quality definition = two_trees_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -material_bed_temperature = 100 -material_print_temperature_layer_0 = 245 -material_print_temperature = 240 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = False +material_bed_temperature = 100 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 240 +material_print_temperature_layer_0 = 245 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 f130baf47a..00fe14ba9c 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Low Quality definition = two_trees_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -material_bed_temperature = 100 -material_print_temperature_layer_0 = 245 -material_print_temperature = 240 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = False +material_bed_temperature = 100 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 240 +material_print_temperature_layer_0 = 245 +material_standby_temperature = =material_print_temperature retraction_hop = 0.4 retraction_hop_only_when_collides = True + 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 56d7a094db..89443e3599 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Standard Quality definition = two_trees_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -material_bed_temperature = 100 -material_print_temperature_layer_0 = 245 -material_print_temperature = 240 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = False +material_bed_temperature = 100 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 240 +material_print_temperature_layer_0 = 245 +material_standby_temperature = =material_print_temperature retraction_hop = 0.3 retraction_hop_only_when_collides = True + 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 c23654fcba..e8b58d0285 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Super Quality definition = two_trees_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -material_bed_temperature = 100 -material_print_temperature_layer_0 = 245 -material_print_temperature = 240 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = False +material_bed_temperature = 100 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 240 +material_print_temperature_layer_0 = 245 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 3f61d53aaf..01176c7cd5 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Dynamic Quality definition = two_trees_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -material_bed_temperature = 100 -material_print_temperature_layer_0 = 245 -material_print_temperature = 240 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = False +material_bed_temperature = 100 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 240 +material_print_temperature_layer_0 = 245 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 68a7f9e6d7..90669a7bae 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Low Quality definition = two_trees_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_abs +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -material_bed_temperature = 100 -material_print_temperature_layer_0 = 245 -material_print_temperature = 240 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = False +material_bed_temperature = 100 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 240 +material_print_temperature_layer_0 = 245 +material_standby_temperature = =material_print_temperature retraction_hop = 0.4 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 7c50c3b1b4..553b764395 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Standard Quality definition = two_trees_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -material_bed_temperature = 100 -material_print_temperature_layer_0 = 245 -material_print_temperature = 240 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = False +material_bed_temperature = 100 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 240 +material_print_temperature_layer_0 = 245 +material_standby_temperature = =material_print_temperature retraction_hop = 0.3 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 41b32d064c..452062d3b8 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Super Quality definition = two_trees_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_abs +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -material_bed_temperature = 100 -material_print_temperature_layer_0 = 245 -material_print_temperature = 240 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = False +material_bed_temperature = 100 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 240 +material_print_temperature_layer_0 = 245 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 470ba364c2..9f4d56bab1 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Standard Quality definition = two_trees_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_abs +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] -material_bed_temperature = 100 -material_print_temperature_layer_0 = 245 -material_print_temperature = 240 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = False +material_bed_temperature = 100 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 240 +material_print_temperature_layer_0 = 245 +material_standby_temperature = =material_print_temperature retraction_hop = 0.3 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 ff5440db3f..989d115cee 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Draft Quality definition = two_trees_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] -material_bed_temperature = 100 -material_print_temperature_layer_0 = 245 -material_print_temperature = 240 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = False +material_bed_temperature = 100 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 240 +material_print_temperature_layer_0 = 245 +material_standby_temperature = =material_print_temperature retraction_hop = 0.4 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 92ce9a5fca..901cb8ddfc 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Draft Quality definition = two_trees_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] -material_bed_temperature = 100 -material_print_temperature_layer_0 = 245 -material_print_temperature = 240 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = False +material_bed_temperature = 100 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 240 +material_print_temperature_layer_0 = 245 +material_standby_temperature = =material_print_temperature retraction_hop = 0.4 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 70051b2c31..bd431e4d8a 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 @@ -1,23 +1,23 @@ [general] -version = 4 -name = Super Quality definition = two_trees_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] -material_bed_temperature = 80 -material_print_temperature_layer_0 = 225 -material_print_temperature = 220 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 80 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 220 +material_print_temperature_layer_0 = 225 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 retraction_hop_only_when_collides = True 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 7405a270df..31e4283783 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Ultra Quality definition = two_trees_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_petg +quality_type = ultra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] -material_bed_temperature = 80 -material_print_temperature_layer_0 = 225 -material_print_temperature = 220 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 80 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 220 +material_print_temperature_layer_0 = 225 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 61e2f82046..b565f26eab 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Dynamic Quality definition = two_trees_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -material_bed_temperature = 80 -material_print_temperature_layer_0 = 225 -material_print_temperature = 220 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 80 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 220 +material_print_temperature_layer_0 = 225 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 retraction_hop_only_when_collides = True + 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 2b8aff662c..f10771f87d 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Low Quality definition = two_trees_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -material_bed_temperature = 80 -material_print_temperature_layer_0 = 225 -material_print_temperature = 220 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 80 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 220 +material_print_temperature_layer_0 = 225 +material_standby_temperature = =material_print_temperature retraction_hop = 0.4 retraction_hop_only_when_collides = True + 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 6ead273e63..e15f473ceb 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Standard Quality definition = two_trees_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -material_bed_temperature = 80 -material_print_temperature_layer_0 = 225 -material_print_temperature = 220 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 80 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 220 +material_print_temperature_layer_0 = 225 +material_standby_temperature = =material_print_temperature retraction_hop = 0.3 retraction_hop_only_when_collides = True + 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 4aafba3846..0d95bba0ed 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Super Quality definition = two_trees_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -material_bed_temperature = 80 -material_print_temperature_layer_0 = 225 -material_print_temperature = 220 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 80 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 220 +material_print_temperature_layer_0 = 225 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 retraction_hop_only_when_collides = True + 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 a66dcc5f86..56607f5f29 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 @@ -1,23 +1,23 @@ [general] -version = 4 -name = Dynamic Quality definition = two_trees_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -material_bed_temperature = 80 -material_print_temperature_layer_0 = 225 -material_print_temperature = 220 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 80 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 220 +material_print_temperature_layer_0 = 225 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 retraction_hop_only_when_collides = True -#retraction_extra_prime_amount = 0.5 + 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 af33a87f32..be195e72ef 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 @@ -1,23 +1,23 @@ [general] -version = 4 -name = Low Quality definition = two_trees_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -material_bed_temperature = 80 -material_print_temperature_layer_0 = 225 -material_print_temperature = 220 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 80 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 220 +material_print_temperature_layer_0 = 225 +material_standby_temperature = =material_print_temperature retraction_hop = 0.4 retraction_hop_only_when_collides = True -#retraction_extra_prime_amount = 0.5 + 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 c3e80864bf..eb0be81313 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 @@ -1,23 +1,23 @@ [general] -version = 4 -name = Standard Quality definition = two_trees_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -material_bed_temperature = 80 -material_print_temperature_layer_0 = 225 -material_print_temperature = 220 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 80 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 220 +material_print_temperature_layer_0 = 225 +material_standby_temperature = =material_print_temperature retraction_hop = 0.3 retraction_hop_only_when_collides = True -#retraction_extra_prime_amount = 0.5 + 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 6c151b5302..f544466fd2 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 @@ -1,23 +1,23 @@ [general] -version = 4 -name = Super Quality definition = two_trees_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -material_bed_temperature = 80 -material_print_temperature_layer_0 = 225 -material_print_temperature = 220 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 80 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 220 +material_print_temperature_layer_0 = 225 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 retraction_hop_only_when_collides = True -#retraction_extra_prime_amount = 0.5 + 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 9ff213bdb6..0a88af6279 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Dynamic Quality definition = two_trees_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -material_bed_temperature = 80 -material_print_temperature_layer_0 = 225 -material_print_temperature = 220 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 80 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 220 +material_print_temperature_layer_0 = 225 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 retraction_hop_only_when_collides = True + 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 16ce1a9cb8..28414c3897 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Low Quality definition = two_trees_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_petg +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -material_bed_temperature = 80 -material_print_temperature_layer_0 = 225 -material_print_temperature = 220 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 80 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 220 +material_print_temperature_layer_0 = 225 +material_standby_temperature = =material_print_temperature retraction_hop = 0.4 retraction_hop_only_when_collides = True + 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 dc6b5df289..ff2cde5e65 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Standard Quality definition = two_trees_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -material_bed_temperature = 80 -material_print_temperature_layer_0 = 225 -material_print_temperature = 220 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 80 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 220 +material_print_temperature_layer_0 = 225 +material_standby_temperature = =material_print_temperature retraction_hop = 0.3 retraction_hop_only_when_collides = True + 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 7ab27818ea..93bc9bf622 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Super Quality definition = two_trees_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_petg +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -material_bed_temperature = 80 -material_print_temperature_layer_0 = 225 -material_print_temperature = 220 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 80 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 220 +material_print_temperature_layer_0 = 225 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 retraction_hop_only_when_collides = True + 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 e1336b8fd6..925270ecfc 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Standard Quality definition = two_trees_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_petg +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] -material_bed_temperature = 80 -material_print_temperature_layer_0 = 225 -material_print_temperature = 220 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 80 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 220 +material_print_temperature_layer_0 = 225 +material_standby_temperature = =material_print_temperature retraction_hop = 0.3 retraction_hop_only_when_collides = True + 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 f4bda8e470..93b52215f0 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Draft Quality definition = two_trees_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] -material_bed_temperature = 80 -material_print_temperature_layer_0 = 225 -material_print_temperature = 220 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 80 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 220 +material_print_temperature_layer_0 = 225 +material_standby_temperature = =material_print_temperature retraction_hop = 0.4 retraction_hop_only_when_collides = True + 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 8668d1fd4f..e2f943a960 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Draft Quality definition = two_trees_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] -material_bed_temperature = 80 -material_print_temperature_layer_0 = 225 -material_print_temperature = 220 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 80 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 220 +material_print_temperature_layer_0 = 225 +material_standby_temperature = =material_print_temperature retraction_hop = 0.4 retraction_hop_only_when_collides = True + 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 5997cd25c2..a7863a4acf 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Super Quality definition = two_trees_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] -material_bed_temperature = 60 -material_print_temperature_layer_0 = 195 -material_print_temperature = 190 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 60 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 190 +material_print_temperature_layer_0 = 195 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 972c1517f4..f943d08962 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Ultra Quality definition = two_trees_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra material = generic_pla +quality_type = ultra +setting_version = 22 +type = quality variant = 0.2mm Nozzle [values] -material_bed_temperature = 60 -material_print_temperature_layer_0 = 195 -material_print_temperature = 190 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 60 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 190 +material_print_temperature_layer_0 = 195 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 9e1247beb2..9afa6cab04 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Dynamic Quality definition = two_trees_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -material_bed_temperature = 60 -material_print_temperature_layer_0 = 195 -material_print_temperature = 190 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 60 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 190 +material_print_temperature_layer_0 = 195 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 0145f0286a..5049cb98cd 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Low Quality definition = two_trees_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -material_bed_temperature = 60 -material_print_temperature_layer_0 = 195 -material_print_temperature = 190 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 60 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 190 +material_print_temperature_layer_0 = 195 +material_standby_temperature = =material_print_temperature retraction_hop = 0.4 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 c042e712cb..9249ab7ce2 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Standard Quality definition = two_trees_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -material_bed_temperature = 60 -material_print_temperature_layer_0 = 195 -material_print_temperature = 190 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 60 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 190 +material_print_temperature_layer_0 = 195 +material_standby_temperature = =material_print_temperature retraction_hop = 0.3 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 d2a116ba08..b41052239b 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Super Quality definition = two_trees_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -material_bed_temperature = 60 -material_print_temperature_layer_0 = 195 -material_print_temperature = 190 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 60 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 190 +material_print_temperature_layer_0 = 195 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 ef212a821a..022a9870dc 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Dynamic Quality definition = two_trees_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -material_bed_temperature = 60 -material_print_temperature_layer_0 = 195 -material_print_temperature = 190 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 60 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 190 +material_print_temperature_layer_0 = 195 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 c63e900988..a250afa8f1 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Low Quality definition = two_trees_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -material_bed_temperature = 60 -material_print_temperature_layer_0 = 195 -material_print_temperature = 190 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 60 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 190 +material_print_temperature_layer_0 = 195 +material_standby_temperature = =material_print_temperature retraction_hop = 0.4 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 ba41f9aa84..7d7deb7cba 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Standard Quality definition = two_trees_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -material_bed_temperature = 60 -material_print_temperature_layer_0 = 195 -material_print_temperature = 190 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 60 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 190 +material_print_temperature_layer_0 = 195 +material_standby_temperature = =material_print_temperature retraction_hop = 0.3 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 cbb507f87d..92f63b1d9d 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Super Quality definition = two_trees_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -material_bed_temperature = 60 -material_print_temperature_layer_0 = 195 -material_print_temperature = 190 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 60 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 190 +material_print_temperature_layer_0 = 195 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 3ff70c24ee..e4157be72d 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Dynamic Quality definition = two_trees_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -material_bed_temperature = 60 -material_print_temperature_layer_0 = 195 -material_print_temperature = 190 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 60 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 190 +material_print_temperature_layer_0 = 195 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 68b8fd6cf3..13d90a8ce8 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Low Quality definition = two_trees_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -material_bed_temperature = 60 -material_print_temperature_layer_0 = 195 -material_print_temperature = 190 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 60 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 190 +material_print_temperature_layer_0 = 195 +material_standby_temperature = =material_print_temperature retraction_hop = 0.4 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 5db1da8667..4e4812aa1f 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Standard Quality definition = two_trees_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -material_bed_temperature = 60 -material_print_temperature_layer_0 = 195 -material_print_temperature = 190 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 60 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 190 +material_print_temperature_layer_0 = 195 +material_standby_temperature = =material_print_temperature retraction_hop = 0.3 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 89c685a149..2c4200b39c 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Super Quality definition = two_trees_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_pla +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -material_bed_temperature = 60 -material_print_temperature_layer_0 = 195 -material_print_temperature = 190 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 60 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 190 +material_print_temperature_layer_0 = 195 +material_standby_temperature = =material_print_temperature retraction_hop = 0.2 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 9f2df02e7c..946e26addb 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Draft Quality definition = two_trees_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] -material_bed_temperature = 60 -material_print_temperature_layer_0 = 195 -material_print_temperature = 190 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 60 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 190 +material_print_temperature_layer_0 = 195 +material_standby_temperature = =material_print_temperature retraction_hop = 0.4 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 00d634cd58..c97a313d2b 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Low Quality definition = two_trees_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low material = generic_pla +quality_type = low +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] -material_bed_temperature = 60 -material_print_temperature_layer_0 = 195 -material_print_temperature = 190 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 60 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 190 +material_print_temperature_layer_0 = 195 +material_standby_temperature = =material_print_temperature retraction_hop = 0.4 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 3cb70a94b7..681c46222a 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Standard Quality definition = two_trees_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_pla +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] -material_bed_temperature = 60 -material_print_temperature_layer_0 = 195 -material_print_temperature = 190 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 60 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 190 +material_print_temperature_layer_0 = 195 +material_standby_temperature = =material_print_temperature retraction_hop = 0.3 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 512efad800..203d30088b 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Draft Quality definition = two_trees_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] -material_bed_temperature = 60 -material_print_temperature_layer_0 = 195 -material_print_temperature = 190 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 60 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 190 +material_print_temperature_layer_0 = 195 +material_standby_temperature = =material_print_temperature retraction_hop = 0.4 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 27c2d7fbcc..30d4eff84f 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 @@ -1,22 +1,23 @@ [general] -version = 4 -name = Draft Quality definition = two_trees_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] -material_bed_temperature = 60 -material_print_temperature_layer_0 = 195 -material_print_temperature = 190 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 60 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 190 +material_print_temperature_layer_0 = 195 +material_standby_temperature = =material_print_temperature retraction_hop = 0.4 -retraction_hop_only_when_collides = True \ No newline at end of file +retraction_hop_only_when_collides = True + 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 5039db8121..e980a58a03 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 @@ -1,25 +1,26 @@ [general] -version = 4 -name = Dynamic Quality definition = two_trees_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -material_bed_temperature = 0 -material_print_temperature_layer_0 = 210 -material_print_temperature = 210 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 0 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +material_standby_temperature = =material_print_temperature +retraction_amount = 7 retraction_hop = 0.2 retraction_hop_only_when_collides = True -speed_print = 20 retraction_speed = 40 -retraction_amount = 7 \ No newline at end of file +speed_print = 20 + 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 650150fc7d..17c1b418e8 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 @@ -1,25 +1,26 @@ [general] -version = 4 -name = Standard Quality definition = two_trees_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -material_bed_temperature = 0 -material_print_temperature_layer_0 = 210 -material_print_temperature = 210 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 0 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +material_standby_temperature = =material_print_temperature +retraction_amount = 7 retraction_hop = 0.4 retraction_hop_only_when_collides = True -speed_print = 20 retraction_speed = 40 -retraction_amount = 7 \ No newline at end of file +speed_print = 20 + 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 6d2c8a17e6..5049ec7701 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 @@ -1,25 +1,26 @@ [general] -version = 4 -name = Super Quality definition = two_trees_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_tpu +quality_type = super +setting_version = 22 +type = quality variant = 0.3mm Nozzle [values] -material_bed_temperature = 0 -material_print_temperature_layer_0 = 210 -material_print_temperature = 210 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 0 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +material_standby_temperature = =material_print_temperature +retraction_amount = 7 retraction_hop = 0.2 retraction_hop_only_when_collides = True -speed_print = 20 retraction_speed = 40 -retraction_amount = 7 \ No newline at end of file +speed_print = 20 + 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 6b7053a97c..c903633627 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 @@ -1,25 +1,26 @@ [general] -version = 4 -name = Dynamic Quality definition = two_trees_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -material_bed_temperature = 0 -material_print_temperature_layer_0 = 210 -material_print_temperature = 210 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 0 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +material_standby_temperature = =material_print_temperature +retraction_amount = 7 retraction_hop = 0.2 retraction_hop_only_when_collides = True -speed_print = 20 retraction_speed = 40 -retraction_amount = 7 \ No newline at end of file +speed_print = 20 + 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 f38faa8f47..1a49419332 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 @@ -1,25 +1,26 @@ [general] -version = 4 -name = Standard Quality definition = two_trees_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -material_bed_temperature = 0 -material_print_temperature_layer_0 = 210 -material_print_temperature = 210 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 0 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +material_standby_temperature = =material_print_temperature +retraction_amount = 7 retraction_hop = 0.3 retraction_hop_only_when_collides = True -speed_print = 20 retraction_speed = 40 -retraction_amount = 7 \ No newline at end of file +speed_print = 20 + 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 7bea507d9c..3c32939c54 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 @@ -1,25 +1,26 @@ [general] -version = 4 -name = Super Quality definition = two_trees_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_tpu +quality_type = super +setting_version = 22 +type = quality variant = 0.4mm Nozzle [values] -material_bed_temperature = 0 -material_print_temperature_layer_0 = 210 -material_print_temperature = 210 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 0 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +material_standby_temperature = =material_print_temperature +retraction_amount = 7 retraction_hop = 0.2 retraction_hop_only_when_collides = True -speed_print = 20 retraction_speed = 40 -retraction_amount = 7 \ No newline at end of file +speed_print = 20 + 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 588ab9d5f2..bd7f9bf0a9 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 @@ -1,25 +1,26 @@ [general] -version = 4 -name = Dynamic Quality definition = two_trees_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -material_bed_temperature = 0 -material_print_temperature_layer_0 = 210 -material_print_temperature = 210 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 0 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +material_standby_temperature = =material_print_temperature +retraction_amount = 7 retraction_hop = 0.2 retraction_hop_only_when_collides = True -speed_print = 20 retraction_speed = 40 -retraction_amount = 7 \ No newline at end of file +speed_print = 20 + 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 50e43883e7..00422a3217 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 @@ -1,25 +1,26 @@ [general] -version = 4 -name = Standard Quality definition = two_trees_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -material_bed_temperature = 0 -material_print_temperature_layer_0 = 210 -material_print_temperature = 210 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 0 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +material_standby_temperature = =material_print_temperature +retraction_amount = 7 retraction_hop = 0.3 retraction_hop_only_when_collides = True -speed_print = 20 retraction_speed = 40 -retraction_amount = 7 \ No newline at end of file +speed_print = 20 + 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 d9f9fd2990..6b671fd76f 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 @@ -1,25 +1,26 @@ [general] -version = 4 -name = Super Quality definition = two_trees_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super material = generic_tpu +quality_type = super +setting_version = 22 +type = quality variant = 0.5mm Nozzle [values] -material_bed_temperature = 0 -material_print_temperature_layer_0 = 210 -material_print_temperature = 210 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 0 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +material_standby_temperature = =material_print_temperature +retraction_amount = 7 retraction_hop = 0.2 retraction_hop_only_when_collides = True -speed_print = 20 retraction_speed = 40 -retraction_amount = 7 \ No newline at end of file +speed_print = 20 + 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 42ec5e7a4c..ae8948a49c 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 @@ -1,25 +1,26 @@ [general] -version = 4 -name = Standard Quality definition = two_trees_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality variant = 0.6mm Nozzle [values] -material_bed_temperature = 0 -material_print_temperature_layer_0 = 210 -material_print_temperature = 210 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 0 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +material_standby_temperature = =material_print_temperature +retraction_amount = 7 retraction_hop = 0.3 retraction_hop_only_when_collides = True -speed_print = 20 retraction_speed = 40 -retraction_amount = 7 \ No newline at end of file +speed_print = 20 + 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 ecd64d1231..34463e5264 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 @@ -1,25 +1,26 @@ [general] -version = 4 -name = Draft Quality definition = two_trees_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle [values] -material_bed_temperature = 0 -material_print_temperature_layer_0 = 210 -material_print_temperature = 210 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 0 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +material_standby_temperature = =material_print_temperature +retraction_amount = 7 retraction_hop = 0.4 retraction_hop_only_when_collides = True -speed_print = 20 retraction_speed = 40 -retraction_amount = 7 \ No newline at end of file +speed_print = 20 + 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 a3e3f2f391..fcff0923c5 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 @@ -1,25 +1,26 @@ [general] -version = 4 -name = Draft Quality definition = two_trees_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = 1.0mm Nozzle [values] -material_bed_temperature = 0 -material_print_temperature_layer_0 = 210 -material_print_temperature = 210 -material_standby_temperature = =material_print_temperature -material_initial_print_temperature= =material_print_temperature -material_final_print_temperature= =material_print_temperature cool_fan_enabled = True +material_bed_temperature = 0 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +material_standby_temperature = =material_print_temperature +retraction_amount = 7 retraction_hop = 0.4 retraction_hop_only_when_collides = True -speed_print = 20 retraction_speed = 40 -retraction_amount = 7 \ No newline at end of file +speed_print = 20 + diff --git a/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg b/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg index 1ed3987563..9f3b28447d 100644 --- a/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg @@ -1,19 +1,20 @@ [general] -version = 4 -name = Dynamic Quality definition = two_trees_base +name = Dynamic Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = adaptive -weight = -2 global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +weight = -2 [values] +adaptive_layer_height_enabled = true layer_height = 0.16 layer_height_0 = 0.2 +support_interface_height = =layer_height*6 top_bottom_thickness = =layer_height_0+layer_height*4 wall_thickness = =line_width*3 -support_interface_height = =layer_height*6 -adaptive_layer_height_enabled = true + diff --git a/resources/quality/twotrees/two_trees_global_draft.inst.cfg b/resources/quality/twotrees/two_trees_global_draft.inst.cfg index dd8122df7b..afaeba67ca 100644 --- a/resources/quality/twotrees/two_trees_global_draft.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_draft.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Draft Quality definition = two_trees_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -5 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -5 [values] layer_height = 0.32 layer_height_0 = 0.32 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 + diff --git a/resources/quality/twotrees/two_trees_global_low.inst.cfg b/resources/quality/twotrees/two_trees_global_low.inst.cfg index e90ad4125a..7f3f524486 100644 --- a/resources/quality/twotrees/two_trees_global_low.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_low.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Low Quality definition = two_trees_base +name = Low Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = low -weight = -4 global_quality = True +quality_type = low +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.28 layer_height_0 = 0.28 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*2 -support_interface_height = =layer_height*4 + diff --git a/resources/quality/twotrees/two_trees_global_standard.inst.cfg b/resources/quality/twotrees/two_trees_global_standard.inst.cfg index 59913e3631..38560b306d 100644 --- a/resources/quality/twotrees/two_trees_global_standard.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_standard.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Standard Quality definition = two_trees_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = standard -weight = -3 global_quality = True +quality_type = standard +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.2 layer_height_0 = 0.2 +support_interface_height = =layer_height*4 top_bottom_thickness = =layer_height_0+layer_height*3 wall_thickness = =line_width*3 -support_interface_height = =layer_height*4 + diff --git a/resources/quality/twotrees/two_trees_global_super.inst.cfg b/resources/quality/twotrees/two_trees_global_super.inst.cfg index 83a10a0fc2..63178d9581 100644 --- a/resources/quality/twotrees/two_trees_global_super.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_super.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Super Quality definition = two_trees_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = super -weight = -1 global_quality = True +quality_type = super +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.12 layer_height_0 = 0.2 +support_interface_height = =layer_height*8 top_bottom_thickness = =layer_height_0+layer_height*6 wall_thickness = =line_width*3 -support_interface_height = =layer_height*8 + diff --git a/resources/quality/twotrees/two_trees_global_ultra.inst.cfg b/resources/quality/twotrees/two_trees_global_ultra.inst.cfg index 4dc7bcec10..99a10435bf 100644 --- a/resources/quality/twotrees/two_trees_global_ultra.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_ultra.inst.cfg @@ -1,18 +1,19 @@ [general] -version = 4 -name = Ultra Quality definition = two_trees_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultra -weight = 0 global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.08 layer_height_0 = 0.12 +support_interface_height = =layer_height*12 top_bottom_thickness = =layer_height_0+layer_height*10 wall_thickness = =line_width*3 -support_interface_height = =layer_height*12 + diff --git a/resources/quality/ultimaker2/um2_draft.inst.cfg b/resources/quality/ultimaker2/um2_draft.inst.cfg index b986603b55..5011c27069 100644 --- a/resources/quality/ultimaker2/um2_draft.inst.cfg +++ b/resources/quality/ultimaker2/um2_draft.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft definition = ultimaker2 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] layer_height = 0.2 + diff --git a/resources/quality/ultimaker2/um2_fast.inst.cfg b/resources/quality/ultimaker2/um2_fast.inst.cfg index 8daf9ed499..794dcf2377 100644 --- a/resources/quality/ultimaker2/um2_fast.inst.cfg +++ b/resources/quality/ultimaker2/um2_fast.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Normal definition = ultimaker2 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.15 + diff --git a/resources/quality/ultimaker2/um2_high.inst.cfg b/resources/quality/ultimaker2/um2_high.inst.cfg index 13c83048bb..d4e0349657 100644 --- a/resources/quality/ultimaker2/um2_high.inst.cfg +++ b/resources/quality/ultimaker2/um2_high.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker2 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] layer_height = 0.06 + diff --git a/resources/quality/ultimaker2/um2_normal.inst.cfg b/resources/quality/ultimaker2/um2_normal.inst.cfg index dc102ed605..ca4a29a1d9 100644 --- a/resources/quality/ultimaker2/um2_normal.inst.cfg +++ b/resources/quality/ultimaker2/um2_normal.inst.cfg @@ -1,13 +1,14 @@ [general] -version = 4 -name = Fine definition = ultimaker2 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] + 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 17368a6f3e..dfb3c868ef 100644 --- a/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg @@ -1,15 +1,15 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker2_plus +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality variant = 0.25 mm +weight = 1 [values] cool_min_layer_time = 5 @@ -18,3 +18,4 @@ infill_sparse_density = 22 speed_layer_0 = =round(speed_print * 30 / 30) speed_print = 30 top_bottom_thickness = 0.72 + 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 9d89812565..6dae7ed201 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pla +quality_type = fast +setting_version = 22 +type = quality variant = 0.4 mm +weight = -1 [values] cool_min_layer_time = 5 @@ -21,3 +21,4 @@ speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_travel = 150 speed_wall = =math.ceil(speed_print * 50 / 60) top_bottom_thickness = 0.75 + 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 a5f788b631..929b1a3216 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg @@ -1,15 +1,15 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker2_plus +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality variant = 0.4 mm +weight = 1 [values] cool_min_layer_time = 5 @@ -19,3 +19,4 @@ speed_layer_0 = =round(speed_print * 30 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 20 / 50) top_bottom_thickness = 0.72 + 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 6f810a8f3a..f6a1561345 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg @@ -1,15 +1,15 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4 mm +weight = 0 [values] cool_min_layer_time = 5 @@ -19,3 +19,4 @@ speed_layer_0 = =round(speed_print * 30 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 20 / 50) top_bottom_thickness = 0.8 + 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 345d524be9..347050c648 100644 --- a/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg @@ -1,15 +1,15 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = 0 material = generic_pla +quality_type = fast +setting_version = 22 +type = quality variant = 0.6 mm +weight = 0 [values] cool_min_layer_time = 5 @@ -21,3 +21,4 @@ speed_topbottom = =math.ceil(speed_print * 20 / 55) speed_wall = =math.ceil(speed_print * 40 / 55) speed_wall_0 = =math.ceil(speed_print * 25 / 55) top_bottom_thickness = 1.2 + 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 252dc2d25f..4dfee6ba54 100644 --- a/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -1 material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.8 mm +weight = -1 [values] cool_min_layer_time = 5 @@ -19,3 +19,4 @@ speed_layer_0 = =round(speed_print * 30 / 40) speed_print = 40 speed_wall_0 = =math.ceil(speed_print * 25 / 40) top_bottom_thickness = 1.2 + 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 398b9d1346..caedbce198 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 @@ -1,22 +1,19 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker2_plus +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality variant = 0.25 mm +weight = 1 [values] cool_fan_speed_min = =cool_fan_speed * 0.2 -cool_min_layer_time = 3 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 10 infill_sparse_density = 22 -speed_layer_0 = =round(speed_print * 30 / 30) speed_print = 30 top_bottom_thickness = 0.72 + 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 73beeb926b..39a81d5f01 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 @@ -1,28 +1,25 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_abs +quality_type = fast +setting_version = 22 +type = quality variant = 0.4 mm +weight = -1 [values] cool_fan_speed_min = =cool_fan_speed * 0.2 -cool_min_layer_time = 3 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 10 infill_sparse_density = 18 -speed_layer_0 = =round(speed_print * 30 / 55) +speed_infill = =math.ceil(speed_print * 100 / 55) speed_print = 55 speed_topbottom = =math.ceil(speed_print * 30 / 55) speed_travel = 150 speed_wall = =math.ceil(speed_print * 40 / 55) -top_bottom_thickness = 0.75 speed_wall_0 = =math.ceil(speed_print * 40 / 55) speed_wall_x = =math.ceil(speed_print * 80 / 55) -speed_infill = =math.ceil(speed_print * 100 / 55) +top_bottom_thickness = 0.75 + 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 c358068633..97fb479fad 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 @@ -1,25 +1,22 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker2_plus +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality variant = 0.4 mm +weight = 1 [values] cool_fan_speed_min = =cool_fan_speed * 0.2 -cool_min_layer_time = 3 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 10 infill_sparse_density = 22 -speed_layer_0 = =round(speed_print * 30 / 45) +speed_infill = =math.ceil(speed_print * 45 / 45) speed_print = 45 +speed_topbottom = =math.ceil(speed_print * 15 / 45) speed_wall = =math.ceil(speed_print * 30 / 45) top_bottom_thickness = 0.72 -speed_topbottom = =math.ceil(speed_print * 15 / 45) -speed_infill = =math.ceil(speed_print * 45 / 45) + 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 131516a328..8d6fefbe1d 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 @@ -1,23 +1,20 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.4 mm +weight = 0 [values] cool_fan_speed_min = =cool_fan_speed * 0.2 -cool_min_layer_time = 3 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 10 infill_sparse_density = 20 -speed_layer_0 = =round(speed_print * 30 / 45) speed_print = 45 speed_wall = =math.ceil(speed_print * 30 / 45) top_bottom_thickness = 0.8 + 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 7af9ea0712..671351c49b 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 @@ -1,23 +1,20 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = 0 material = generic_abs +quality_type = fast +setting_version = 22 +type = quality variant = 0.6 mm +weight = 0 [values] cool_fan_speed_min = =cool_fan_speed * 0.5 -cool_min_layer_time = 3 -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 20 infill_sparse_density = 20 speed_infill = =math.ceil(speed_print * 55 / 40) -speed_layer_0 = =round(speed_print * 30 / 40) speed_print = 40 top_bottom_thickness = 1.2 + 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 4a73cdbf88..0ab8ca241c 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 @@ -1,22 +1,19 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -1 material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = 0.8 mm +weight = -1 [values] cool_fan_speed_min = =cool_fan_speed * 0.5 -cool_min_layer_time = 3 -cool_min_layer_time_fan_speed_max = 25 -cool_min_speed = 15 infill_sparse_density = 20 -speed_layer_0 = =round(speed_print * 30 / 40) speed_print = 40 top_bottom_thickness = 1.2 + 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 80638e4454..696aeed758 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 @@ -1,22 +1,19 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker2_plus +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_cpe +quality_type = high +setting_version = 22 +type = quality variant = 0.25 mm +weight = 1 [values] cool_fan_speed_min = =cool_fan_speed * 0.2 -cool_min_layer_time = 2 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 15 infill_sparse_density = 22 -speed_layer_0 = =round(speed_print * 30 / 30) speed_print = 30 top_bottom_thickness = 0.72 + 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 b8b9a70ba1..80dbf78005 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 @@ -1,28 +1,25 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_cpe +quality_type = fast +setting_version = 22 +type = quality variant = 0.4 mm +weight = -1 [values] cool_fan_speed_min = =cool_fan_speed * 0.8 -cool_min_layer_time = 3 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 10 infill_sparse_density = 18 -speed_layer_0 = =round(speed_print * 30 / 45) +speed_infill = =math.ceil(speed_print * 45 / 45) speed_print = 45 +speed_topbottom = =math.ceil(speed_print * 30 / 45) speed_travel = 150 speed_wall = =math.ceil(speed_print * 40 / 45) -top_bottom_thickness = 0.75 speed_wall_0 = =math.ceil(speed_print * 30 / 45) -speed_topbottom = =math.ceil(speed_print * 30 / 45) speed_wall_x = =math.ceil(speed_print * 40 / 45) -speed_infill = =math.ceil(speed_print * 45 / 45) +top_bottom_thickness = 0.75 + 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 ccbb73fb05..e1d6d1c46a 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 @@ -1,25 +1,22 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker2_plus +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_cpe +quality_type = high +setting_version = 22 +type = quality variant = 0.4 mm +weight = 1 [values] cool_fan_speed_min = =cool_fan_speed * 0.8 -cool_min_layer_time = 2 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 15 infill_sparse_density = 22 -speed_layer_0 = =round(speed_print * 30 / 45) +speed_infill = =math.ceil(speed_print * 45 / 45) speed_print = 45 +speed_topbottom = =math.ceil(speed_print * 15 / 45) speed_wall = =math.ceil(speed_print * 30 / 45) top_bottom_thickness = 0.72 -speed_topbottom = =math.ceil(speed_print * 15 / 45) -speed_infill = =math.ceil(speed_print * 45 / 45) + 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 1b61fbbc6e..885bc9d627 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 @@ -1,23 +1,20 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_cpe +quality_type = normal +setting_version = 22 +type = quality variant = 0.4 mm +weight = 0 [values] cool_fan_speed_min = =cool_fan_speed * 0.8 -cool_min_layer_time = 3 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 10 infill_sparse_density = 20 -speed_layer_0 = =round(speed_print * 30 / 45) speed_print = 45 speed_wall = =math.ceil(speed_print * 30 / 45) top_bottom_thickness = 0.8 + 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 1b576cb257..743c75fd26 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 @@ -1,22 +1,19 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = 0 material = generic_cpe +quality_type = fast +setting_version = 22 +type = quality variant = 0.6 mm +weight = 0 [values] cool_fan_speed_min = =cool_fan_speed * 0.8 -cool_min_layer_time = 5 -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 8 infill_sparse_density = 20 -speed_layer_0 = =round(speed_print * 30 / 40) speed_print = 40 top_bottom_thickness = 1.2 + 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 ff23e83400..e06b5806a1 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 @@ -1,22 +1,19 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -1 material = generic_cpe +quality_type = draft +setting_version = 22 +type = quality variant = 0.8 mm +weight = -1 [values] cool_fan_speed_min = =cool_fan_speed * 0.8 -cool_min_layer_time = 3 -cool_min_layer_time_fan_speed_max = 25 -cool_min_speed = 8 infill_sparse_density = 20 -speed_layer_0 = =round(speed_print * 30 / 40) speed_print = 40 top_bottom_thickness = 1.2 + 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 881571c5a3..5222c4f8c4 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 @@ -1,33 +1,24 @@ [general] -version = 4 -name = Fast definition = ultimaker2_plus +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_cpe_plus +quality_type = draft +setting_version = 22 +type = quality variant = 0.4 mm +weight = -2 [values] adhesion_type = raft cool_fan_speed = 50 cool_fan_speed_min = =cool_fan_speed * 25 / 50 -cool_min_layer_time = 3 -cool_min_speed = 8 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 30 layer_0_z_overlap = 0.22 raft_airgap = 0.37 -raft_base_line_spacing = 1.6 -raft_base_line_width = 0.8 -raft_interface_line_spacing = 1 -raft_interface_line_width = 0.8 -raft_margin = 15 -raft_surface_line_width = 0.38 -speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 20 / 25) speed_wall_0 = =math.ceil(speed_print * 20 / 25) @@ -36,3 +27,4 @@ support_angle = 45 support_enable = True support_z_distance = 0.26 top_bottom_thickness = 1.5 + 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 627eb26587..72aef4be2f 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 @@ -1,33 +1,24 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = 0 material = generic_cpe_plus +quality_type = fast +setting_version = 22 +type = quality variant = 0.4 mm +weight = 0 [values] adhesion_type = raft cool_fan_speed = 50 cool_fan_speed_min = =cool_fan_speed * 25 / 50 -cool_min_layer_time = 3 -cool_min_speed = 8 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 30 layer_0_z_overlap = 0.22 raft_airgap = 0.37 -raft_base_line_spacing = 1.6 -raft_base_line_width = 0.8 -raft_interface_line_spacing = 1 -raft_interface_line_width = 0.8 -raft_margin = 15 -raft_surface_line_width = 0.38 -speed_layer_0 = =math.ceil(speed_print * 15 / 35) speed_print = 35 speed_topbottom = =math.ceil(speed_print * 20 / 35) speed_wall_0 = =math.ceil(speed_print * 20 / 35) @@ -36,3 +27,4 @@ support_angle = 45 support_enable = True support_z_distance = 0.26 top_bottom_thickness = 1.5 + 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 afb26d0ddb..d04e932f56 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 @@ -1,35 +1,24 @@ [general] -version = 4 -name = Fast definition = ultimaker2_plus +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = slightlycoarse -weight = -2 material = generic_cpe_plus +quality_type = slightlycoarse +setting_version = 22 +type = quality variant = 0.6 mm +weight = -2 [values] adhesion_type = raft cool_fan_speed = 45 cool_fan_speed_min = =cool_fan_speed * 25 / 45 -cool_min_layer_time = 3 -cool_min_speed = 8 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 35 layer_0_z_overlap = 0.22 - raft_airgap = 0.37 -raft_base_line_spacing = 2.4 -raft_base_line_width = 1.2 -raft_interface_line_spacing = 1.4 -raft_interface_line_width = 1.2 -raft_margin = 15 -raft_surface_line_width = 0.57 -raft_surface_thickness = 0.2 -speed_layer_0 = =round(speed_print * 30 / 50) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 20 / 25) speed_travel = 150 @@ -39,3 +28,4 @@ support_angle = 45 support_enable = True support_z_distance = 0.22 top_bottom_thickness = 0.75 + 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 cb9ade1813..7a65666930 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 @@ -1,35 +1,24 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 material = generic_cpe_plus +quality_type = draft +setting_version = 22 +type = quality variant = 0.6 mm +weight = 0 [values] adhesion_type = raft cool_fan_speed = 45 cool_fan_speed_min = =cool_fan_speed * 25 / 45 -cool_min_layer_time = 3 -cool_min_speed = 8 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 35 layer_0_z_overlap = 0.22 - raft_airgap = 0.37 -raft_base_line_spacing = 2.4 -raft_base_line_width = 1.2 -raft_interface_line_spacing = 1.4 -raft_interface_line_width = 1.2 -raft_margin = 15 -raft_surface_line_width = 0.57 -raft_surface_thickness = 0.2 -speed_layer_0 = =math.ceil(speed_print * 30 / 35) speed_print = 35 speed_topbottom = =math.ceil(speed_print * 20 / 35) speed_travel = 150 @@ -39,3 +28,4 @@ support_angle = 45 support_enable = True support_z_distance = 0.22 top_bottom_thickness = 0.75 + 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 431e39c85f..c715197c4b 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 @@ -1,33 +1,25 @@ [general] -version = 4 -name = Fast definition = ultimaker2_plus +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = slightlycoarse -weight = -2 material = generic_cpe_plus +quality_type = slightlycoarse +setting_version = 22 +type = quality variant = 0.8 mm +weight = -2 [values] adhesion_type = raft brim_line_count = 10 cool_fan_speed = 50 cool_fan_speed_min = =cool_fan_speed * 25 / 50 -cool_min_layer_time = 3 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 40 layer_0_z_overlap = 0.22 raft_airgap = 0.37 -raft_base_line_width = 1.6 -raft_interface_line_spacing = 1.8 -raft_interface_line_width = 1.6 -raft_margin = 15 -raft_surface_line_width = 0.7 -raft_surface_thickness = 0.2 -speed_layer_0 = =round(speed_print * 30 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 20 / 25) speed_wall_0 = =math.ceil(speed_print * 20 / 25) @@ -36,3 +28,4 @@ support_angle = 45 support_enable = True support_z_distance = 0.26 top_bottom_thickness = 1.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 f0a60e8af3..8d3f5e1e90 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 @@ -1,33 +1,25 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 material = generic_cpe_plus +quality_type = draft +setting_version = 22 +type = quality variant = 0.8 mm +weight = 0 [values] adhesion_type = raft brim_line_count = 10 cool_fan_speed = 50 cool_fan_speed_min = =cool_fan_speed * 25 / 50 -cool_min_layer_time = 3 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 40 layer_0_z_overlap = 0.22 raft_airgap = 0.37 -raft_base_line_width = 1.6 -raft_interface_line_spacing = 1.8 -raft_interface_line_width = 1.6 -raft_margin = 15 -raft_surface_line_width = 0.7 -raft_surface_thickness = 0.2 -speed_layer_0 = =round(speed_print * 30 / 30) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) speed_wall_0 = =math.ceil(speed_print * 20 / 30) @@ -36,3 +28,4 @@ support_angle = 45 support_enable = True support_z_distance = 0.26 top_bottom_thickness = 1.2 + 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 f1ebc4d1dd..e74435cce2 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Coarse Quality definition = ultimaker2_plus +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -4 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.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 f5d13298f5..32409eb11d 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft Quality definition = ultimaker2_plus +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] layer_height = 0.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 3850ec551c..24fd8ad528 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Extra Coarse Quality definition = ultimaker2_plus +name = Extra Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extracoarse -weight = -3 global_quality = True +quality_type = extracoarse +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.6 + 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 94d11dea2b..a969efd90d 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.15 + 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 e30aa178c4..93da7dd17a 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker2_plus +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] layer_height = 0.06 + 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 56867a3212..b8a355c134 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.1 + 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 631fc2bcf3..29435450a4 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Coarse Quality definition = ultimaker2_plus +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = slightlycoarse -weight = -4 global_quality = True +quality_type = slightlycoarse +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.3 + 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 404023db87..65a3845fba 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 @@ -1,33 +1,27 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker2_plus +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_nylon +quality_type = high +setting_version = 22 +type = quality variant = 0.25 mm +weight = 1 [values] adhesion_type = raft brim_line_count = 8 cool_fan_speed = 60 cool_fan_speed_min = =cool_fan_speed * 35 / 60 -cool_min_speed = 15 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 25 layer_0_z_overlap = 0.1 raft_airgap = 0.15 -raft_base_line_width = 0.5 -raft_interface_line_spacing = 0.7 -raft_interface_line_width = 0.5 -raft_margin = 15 -raft_surface_line_width = 0.2 retraction_hop_enabled = 0.2 -speed_layer_0 = =math.ceil(speed_print * 30 / 40) +speed_infill = =math.ceil(speed_print * 40 / 40) speed_print = 40 speed_support = 40 speed_topbottom = =math.ceil(speed_print * 35 / 40) @@ -37,4 +31,4 @@ speed_wall_x = =speed_print support_enable = True support_z_distance = =layer_height * 2 top_bottom_thickness = 1.2 -speed_infill = =math.ceil(speed_print * 40 / 40) + 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 2f77288341..9d6b67f05a 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 @@ -1,33 +1,26 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_nylon +quality_type = normal +setting_version = 22 +type = quality variant = 0.25 mm +weight = 0 [values] adhesion_type = raft brim_line_count = 8 cool_fan_speed = 60 cool_fan_speed_min = =cool_fan_speed * 35 / 60 -cool_min_speed = 15 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 25 layer_0_z_overlap = 0.1 raft_airgap = 0.15 -raft_base_line_width = 0.5 -raft_interface_line_spacing = 0.7 -raft_interface_line_width = 0.5 -raft_margin = 15 -raft_surface_line_width = 0.2 retraction_hop_enabled = 0.2 -speed_layer_0 = =math.ceil(speed_print * 30 / 40) speed_print = 40 speed_support = 40 speed_topbottom = =math.ceil(speed_print * 35 / 40) @@ -37,3 +30,4 @@ speed_wall_x = =speed_print support_enable = True support_z_distance = =layer_height * 2 top_bottom_thickness = 1.2 + 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 71f03adfd9..9c5c4c6f44 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 @@ -1,41 +1,32 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -1 material = generic_nylon +quality_type = draft +setting_version = 22 +type = quality variant = 0.4 mm +weight = -1 [values] adhesion_type = raft cool_fan_speed_min = =cool_fan_speed * 0.35 -cool_min_layer_time = 3 -cool_min_speed = 15 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 30 layer_0_z_overlap = 0.22 raft_airgap = 0.57 -raft_base_line_spacing = 1.6 -raft_base_line_width = 0.8 -raft_interface_line_spacing = 1 -raft_interface_line_width = 0.8 -raft_margin = 15 -raft_surface_line_width = 0.5 -raft_surface_thickness = 0.15 -speed_layer_0 = =math.ceil(speed_print * 30 / 45) +speed_infill = =math.ceil(speed_print * 45 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 20 / 45) speed_travel = 150 speed_wall = =math.ceil(speed_print * 40 / 45) +speed_wall_0 = =math.ceil(speed_print * 30 / 45) +speed_wall_x = =math.ceil(speed_print * 40 / 45) support_angle = 45 support_enable = True support_z_distance = =layer_height * 2 top_bottom_thickness = 0.75 -speed_wall_0 = =math.ceil(speed_print * 30 / 45) -speed_wall_x = =math.ceil(speed_print * 40 / 45) -speed_infill = =math.ceil(speed_print * 45 / 45) + 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 bd2372dc16..5c4a5cae79 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 @@ -1,33 +1,23 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = 0 material = generic_nylon +quality_type = fast +setting_version = 22 +type = quality variant = 0.4 mm +weight = 0 [values] adhesion_type = raft cool_fan_speed_min = =cool_fan_speed * 0.35 -cool_min_layer_time = 3 -cool_min_speed = 15 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 30 layer_0_z_overlap = 0.22 raft_airgap = 0.57 -raft_base_line_spacing = 1.6 -raft_base_line_width = 0.8 -raft_interface_line_spacing = 1 -raft_interface_line_width = 0.8 -raft_margin = 15 -raft_surface_line_width = 0.5 -raft_surface_thickness = 0.15 -speed_layer_0 = =math.ceil(speed_print * 30 / 45) speed_print = 45 speed_travel = 150 speed_wall = =math.ceil(speed_print * 40 / 45) @@ -35,3 +25,4 @@ support_angle = 45 support_enable = True support_z_distance = =layer_height * 2 top_bottom_thickness = 0.75 + 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 cd5a66151d..1d46e2deed 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 @@ -1,34 +1,26 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = slightlycoarse -weight = -1 material = generic_nylon +quality_type = slightlycoarse +setting_version = 22 +type = quality variant = 0.6 mm +weight = -1 [values] adhesion_type = raft brim_line_count = 8 cool_fan_speed_min = =cool_fan_speed * 0.35 -cool_min_speed = 15 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 35 layer_0_z_overlap = 0.22 raft_airgap = 0.44 -raft_base_line_spacing = 2.4 -raft_base_line_width = 1.2 -raft_interface_line_spacing = 1.4 -raft_interface_line_width = 1.2 -raft_margin = 15 -raft_surface_line_width = 0.6 -raft_surface_thickness = 0.15 retraction_hop_enabled = 0.2 -speed_layer_0 = =math.ceil(speed_print * 30 / 55) +speed_infill = =math.ceil(speed_print * 55 / 55) speed_print = 55 speed_support = 40 speed_topbottom = =math.ceil(speed_print * 35 / 55) @@ -39,4 +31,4 @@ support_angle = 45 support_enable = True support_z_distance = 0.55 top_bottom_thickness = 1.2 -speed_infill = =math.ceil(speed_print * 55 / 55) + 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 7c03a0faeb..04a0f9e766 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 @@ -1,34 +1,25 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = 0 material = generic_nylon +quality_type = fast +setting_version = 22 +type = quality variant = 0.6 mm +weight = 0 [values] adhesion_type = raft brim_line_count = 8 cool_fan_speed_min = =cool_fan_speed * 0.35 -cool_min_speed = 15 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 35 layer_0_z_overlap = 0.22 raft_airgap = 0.44 -raft_base_line_spacing = 2.4 -raft_base_line_width = 1.2 -raft_interface_line_spacing = 1.4 -raft_interface_line_width = 1.2 -raft_margin = 15 -raft_surface_line_width = 0.6 -raft_surface_thickness = 0.15 retraction_hop_enabled = 0.2 -speed_layer_0 = =math.ceil(speed_print * 30 / 55) speed_print = 55 speed_support = 40 speed_topbottom = =math.ceil(speed_print * 35 / 55) @@ -39,3 +30,4 @@ support_angle = 45 support_enable = True support_z_distance = =layer_height * 2 top_bottom_thickness = 1.2 + 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 9f4c534c86..6a64213e35 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 @@ -1,33 +1,25 @@ [general] -version = 4 -name = Fast definition = ultimaker2_plus +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = slightlycoarse -weight = -2 material = generic_nylon +quality_type = slightlycoarse +setting_version = 22 +type = quality variant = 0.8 mm +weight = -2 [values] adhesion_type = raft brim_line_count = 8 cool_fan_speed_min = =cool_fan_speed * 0.35 -cool_min_speed = 15 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 40 layer_0_z_overlap = 0.25 raft_airgap = 0.44 -raft_base_line_width = 1.6 -raft_interface_line_spacing = 1.8 -raft_interface_line_width = 1.6 -raft_margin = 15 -raft_surface_line_width = 0.7 -raft_surface_thickness = 0.2 retraction_hop_enabled = 0.2 -speed_layer_0 = =math.ceil(speed_print * 30 / 55) speed_print = 55 speed_support = 40 speed_topbottom = =math.ceil(speed_print * 35 / 55) @@ -35,7 +27,8 @@ speed_travel = 150 speed_wall_0 = =math.ceil(speed_print * 15 / 55) speed_wall_x = =math.ceil(speed_print * 40 / 55) support_angle = 45 +support_bottom_distance = 0.65 support_enable = True support_z_distance = 0.5 -support_bottom_distance = 0.65 top_bottom_thickness = 1.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 1239c43800..cbb77c254f 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 @@ -1,33 +1,25 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 material = generic_nylon +quality_type = draft +setting_version = 22 +type = quality variant = 0.8 mm +weight = 0 [values] adhesion_type = raft brim_line_count = 8 cool_fan_speed_min = =cool_fan_speed * 0.35 -cool_min_speed = 15 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 40 layer_0_z_overlap = 0.25 raft_airgap = 0.44 -raft_base_line_width = 1.6 -raft_interface_line_spacing = 1.8 -raft_interface_line_width = 1.6 -raft_margin = 15 -raft_surface_line_width = 0.7 -raft_surface_thickness = 0.2 retraction_hop_enabled = 0.2 -speed_layer_0 = =round(speed_print * 30 / 55) speed_print = 55 speed_support = 40 speed_topbottom = =math.ceil(speed_print * 35 / 55) @@ -40,3 +32,4 @@ support_enable = True support_top_distance = 0.5 support_z_distance = =layer_height * 2 top_bottom_thickness = 1.2 + 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 a3e95a3a88..ffa19bf6c1 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 @@ -1,36 +1,28 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker2_plus +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pc +quality_type = high +setting_version = 22 +type = quality variant = 0.25 mm +weight = 1 [values] adhesion_type = raft brim_line_count = 32 cool_fan_speed = 50 cool_fan_speed_min = 0 -cool_min_layer_time = 2 -cool_min_speed = 15 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 25 layer_0_z_overlap = 0.2 raft_airgap = 0.25 -raft_base_line_spacing = 1 -raft_base_line_width = 0.5 -raft_interface_line_spacing = 0.7 -raft_interface_line_width = 0.5 -raft_margin = 15 -raft_surface_line_width = 0.2 -speed_layer_0 = =round(speed_print * 30 / 30) +speed_infill = =math.ceil(speed_print * 80 / 30) speed_print = 30 +speed_topbottom = =math.ceil(speed_print * 15 / 30) support_enable = True support_z_distance = 0.19 -speed_topbottom = =math.ceil(speed_print * 15 / 30) -speed_infill = =math.ceil(speed_print * 80 / 30) + 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 e81cece3d1..e6c465d42f 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 @@ -1,34 +1,26 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pc +quality_type = normal +setting_version = 22 +type = quality variant = 0.25 mm +weight = 0 [values] adhesion_type = raft brim_line_count = 32 cool_fan_speed = 50 cool_fan_speed_min = 0 -cool_min_layer_time = 2 -cool_min_speed = 15 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 25 layer_0_z_overlap = 0.2 raft_airgap = 0.25 -raft_base_line_spacing = 1 -raft_base_line_width = 0.5 -raft_interface_line_spacing = 0.7 -raft_interface_line_width = 0.5 -raft_margin = 15 -raft_surface_line_width = 0.2 -speed_layer_0 = =round(speed_print * 30 / 30) speed_print = 30 support_enable = True support_z_distance = 0.19 + 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 bca94eb325..00d99624b5 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 @@ -1,37 +1,30 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -1 material = generic_pc +quality_type = draft +setting_version = 22 +type = quality variant = 0.4 mm +weight = -1 [values] adhesion_type = raft cool_fan_speed = 50 cool_fan_speed_min = 0 -cool_min_layer_time = 3 -cool_min_speed = 8 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 30 layer_0_z_overlap = 0.3 raft_airgap = 0.35 -raft_base_line_spacing = 1.6 -raft_base_line_width = 0.8 -raft_interface_line_spacing = 1 -raft_interface_line_width = 0.8 -raft_margin = 15 -speed_layer_0 = =round(speed_print * 30 / 45) +speed_infill = =math.ceil(speed_print * 45 / 45) speed_print = 45 +speed_topbottom = =math.ceil(speed_print * 30 / 45) speed_wall_0 = =math.ceil(speed_print * 20 / 45) speed_wall_x = =math.ceil(speed_print * 30 / 45) support_angle = 45 support_enable = True support_z_distance = 0.19 -speed_topbottom = =math.ceil(speed_print * 30 / 45) -speed_infill = =math.ceil(speed_print * 45 / 45) + 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 7d8f4f7f74..0b9cb7f968 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 @@ -1,35 +1,28 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pc +quality_type = normal +setting_version = 22 +type = quality variant = 0.4 mm +weight = 0 [values] adhesion_type = raft cool_fan_speed = 50 cool_fan_speed_min = 0 -cool_min_layer_time = 3 -cool_min_speed = 8 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 30 layer_0_z_overlap = 0.3 raft_airgap = 0.35 -raft_base_line_spacing = 1.6 -raft_base_line_width = 0.8 -raft_interface_line_spacing = 1 -raft_interface_line_width = 0.8 -raft_margin = 15 -speed_layer_0 = =round(speed_print * 30 / 45) speed_print = 45 speed_wall_0 = =math.ceil(speed_print * 20 / 45) speed_wall_x = =math.ceil(speed_print * 30 / 45) support_angle = 45 support_enable = True support_z_distance = 0.19 + 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 2c3c3172ac..845543b476 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 @@ -1,34 +1,25 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = slightlycoarse -weight = -1 material = generic_pc +quality_type = slightlycoarse +setting_version = 22 +type = quality variant = 0.6 mm +weight = -1 [values] adhesion_type = raft cool_fan_speed = 50 cool_fan_speed_min = 0 -cool_min_layer_time = 3 -cool_min_speed = 8 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 35 layer_0_z_overlap = 0.22 raft_airgap = 0.52 -raft_base_line_spacing = 2.4 -raft_base_line_width = 1.2 -raft_interface_line_spacing = 1.4 -raft_interface_line_width = 1.2 -raft_margin = 15 -raft_surface_line_width = 0.6 -raft_surface_thickness = 0.15 -speed_layer_0 = =math.ceil(speed_print * 30 / 45) +speed_infill = =math.ceil(speed_print * 45 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 20 / 45) speed_travel = 150 @@ -38,4 +29,4 @@ support_angle = 45 support_enable = True support_z_distance = 0.21 top_bottom_thickness = 0.75 -speed_infill = =math.ceil(speed_print * 45 / 45) + 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 80967c9543..332af0cfbe 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 @@ -1,34 +1,24 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = 0 material = generic_pc +quality_type = fast +setting_version = 22 +type = quality variant = 0.6 mm +weight = 0 [values] adhesion_type = raft cool_fan_speed = 50 cool_fan_speed_min = 0 -cool_min_layer_time = 3 -cool_min_speed = 8 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 35 layer_0_z_overlap = 0.22 raft_airgap = 0.52 -raft_base_line_spacing = 2.4 -raft_base_line_width = 1.2 -raft_interface_line_spacing = 1.4 -raft_interface_line_width = 1.2 -raft_margin = 15 -raft_surface_line_width = 0.6 -raft_surface_thickness = 0.15 -speed_layer_0 = =math.ceil(speed_print * 30 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 20 / 45) speed_travel = 150 @@ -38,3 +28,4 @@ support_angle = 45 support_enable = True support_z_distance = 0.21 top_bottom_thickness = 0.75 + 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 952265384c..c1cc2156df 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 @@ -1,35 +1,28 @@ [general] -version = 4 -name = Fast definition = ultimaker2_plus +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extracoarse -weight = -2 material = generic_pc +quality_type = extracoarse +setting_version = 22 +type = quality variant = 0.8 mm +weight = -2 [values] adhesion_type = raft brim_line_count = 10 cool_fan_speed = 50 cool_fan_speed_min = =cool_fan_speed * 25 / 50 -cool_min_layer_time = 3 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 40 layer_0_z_overlap = 0.22 raft_airgap = 0.47 -raft_base_line_width = 1.6 -raft_interface_line_spacing = 1.8 -raft_interface_line_width = 1.6 -raft_margin = 15 -raft_surface_line_width = 0.7 -raft_surface_thickness = 0.2 -speed_layer_0 = =round(speed_print * 30 / 40) speed_print = 40 support_angle = 45 support_enable = True support_z_distance = 0.26 top_bottom_thickness = 2.0 + 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 c082f75d52..6cc6edb7e4 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 @@ -1,35 +1,28 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 material = generic_pc +quality_type = draft +setting_version = 22 +type = quality variant = 0.8 mm +weight = 0 [values] adhesion_type = raft brim_line_count = 10 cool_fan_speed = 50 cool_fan_speed_min = =cool_fan_speed * 25 / 50 -cool_min_layer_time = 3 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 40 layer_0_z_overlap = 0.22 raft_airgap = 0.47 -raft_base_line_width = 1.6 -raft_interface_line_spacing = 1.8 -raft_interface_line_width = 1.6 -raft_margin = 15 -raft_surface_line_width = 0.7 -raft_surface_thickness = 0.2 -speed_layer_0 = =round(speed_print * 30 / 40) speed_print = 40 support_angle = 45 support_enable = True support_z_distance = 0.26 top_bottom_thickness = 1.2 + 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 f16b0747ab..22c1c509a2 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 @@ -1,19 +1,18 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pp +quality_type = fast +setting_version = 22 +type = quality variant = 0.4 mm +weight = -1 [values] acceleration_enabled = True -acceleration_layer_0 = =acceleration_topbottom acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000) acceleration_print = 4000 acceleration_support = =math.ceil(acceleration_print * 2000 / 4000) @@ -22,22 +21,9 @@ acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000) acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000) acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000) brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 20 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' infill_wipe_dist = 0 -jerk_enabled = True -jerk_layer_0 = =jerk_topbottom -jerk_prime_tower = =math.ceil(jerk_print * 15 / 25) -jerk_print = 25 -jerk_support = =math.ceil(jerk_print * 15 / 25) -jerk_support_interface = =jerk_topbottom -jerk_topbottom = =math.ceil(jerk_print * 5 / 25) -jerk_wall = =math.ceil(jerk_print * 10 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10) multiple_mesh_overlap = 0 retraction_count_max = 15 retraction_hop = 0.15 @@ -46,19 +32,18 @@ retraction_hop_only_when_collides = True retraction_min_travel = 0.5 retraction_prime_speed = 15 skin_overlap = 10 -speed_layer_0 = =speed_print +speed_infill = =math.ceil(speed_print * 25 / 25) speed_prime_tower = =speed_topbottom speed_print = 25 speed_support_interface = =speed_topbottom speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_travel = 250 -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 20 / 25) +speed_wall_x = =math.ceil(speed_print * 25 / 25) support_angle = 60 -support_z_distance = =layer_height * 2 support_bottom_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 travel_avoid_distance = 3 wall_0_inset = 0 -speed_wall_x = =math.ceil(speed_print * 25 / 25) -speed_infill = =math.ceil(speed_print * 25 / 25) + 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 855f5c2288..fc85fc5b80 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 @@ -1,19 +1,18 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pp +quality_type = normal +setting_version = 22 +type = quality variant = 0.4 mm +weight = 0 [values] acceleration_enabled = True -acceleration_layer_0 = =acceleration_topbottom acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000) acceleration_print = 4000 acceleration_support = =math.ceil(acceleration_print * 2000 / 4000) @@ -22,10 +21,6 @@ acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000) acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000) acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000) brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 20 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' infill_wipe_dist = 0 @@ -37,17 +32,16 @@ retraction_hop_only_when_collides = True retraction_min_travel = 0.5 retraction_prime_speed = 15 skin_overlap = 10 -speed_layer_0 = =speed_print speed_prime_tower = =speed_topbottom speed_print = 25 speed_support_interface = =speed_topbottom speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_travel = 250 -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 20 / 25) support_angle = 60 -support_z_distance = =layer_height * 2 support_bottom_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 travel_avoid_distance = 3 wall_0_inset = 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 aa17d74a70..2efd0057e1 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 @@ -1,19 +1,18 @@ [general] -version = 4 -name = Fast definition = ultimaker2_plus +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pp +quality_type = draft +setting_version = 22 +type = quality variant = 0.6 mm +weight = -2 [values] acceleration_enabled = True -acceleration_layer_0 = =acceleration_topbottom acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000) acceleration_print = 4000 acceleration_support = =math.ceil(acceleration_print * 2000 / 4000) @@ -22,10 +21,6 @@ acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000) acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000) acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000) brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 20 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' infill_wipe_dist = 0 @@ -36,18 +31,17 @@ retraction_hop_enabled = True retraction_hop_only_when_collides = True retraction_prime_speed = 15 skin_overlap = 10 -speed_layer_0 = =speed_print speed_prime_tower = =speed_topbottom speed_print = 25 speed_support_interface = =speed_topbottom speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_travel = 250 -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 20 / 25) support_angle = 60 -support_z_distance = =layer_height * 2 support_bottom_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 top_bottom_thickness = 1.1 travel_avoid_distance = 3 wall_0_inset = 0 + 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 f3a1ea0e98..dfccddb68f 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 @@ -1,19 +1,18 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pp +quality_type = fast +setting_version = 22 +type = quality variant = 0.6 mm +weight = -1 [values] acceleration_enabled = True -acceleration_layer_0 = =acceleration_topbottom acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000) acceleration_print = 4000 acceleration_support = =math.ceil(acceleration_print * 2000 / 4000) @@ -22,22 +21,9 @@ acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000) acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000) acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000) brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 20 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' infill_wipe_dist = 0 -jerk_enabled = True -jerk_layer_0 = =jerk_topbottom -jerk_prime_tower = =math.ceil(jerk_print * 15 / 25) -jerk_print = 25 -jerk_support = =math.ceil(jerk_print * 15 / 25) -jerk_support_interface = =jerk_topbottom -jerk_topbottom = =math.ceil(jerk_print * 5 / 25) -jerk_wall = =math.ceil(jerk_print * 10 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10) multiple_mesh_overlap = 0 retraction_count_max = 15 retraction_hop = 0.15 @@ -45,20 +31,19 @@ retraction_hop_enabled = True retraction_hop_only_when_collides = True retraction_prime_speed = 15 skin_overlap = 10 -speed_layer_0 = =speed_print +speed_infill = =math.ceil(speed_print * 25 / 25) speed_prime_tower = =speed_topbottom speed_print = 25 speed_support_interface = =speed_topbottom speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_travel = 250 -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 20 / 25) +speed_wall_x = =math.ceil(speed_print * 25 / 25) support_angle = 60 -support_z_distance = =layer_height * 2 support_bottom_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 top_bottom_thickness = 1.1 travel_avoid_distance = 3 wall_0_inset = 0 -speed_wall_x = =math.ceil(speed_print * 25 / 25) -speed_infill = =math.ceil(speed_print * 25 / 25) + 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 8a1fbc5a07..36d8fe8b65 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 @@ -1,19 +1,18 @@ [general] -version = 4 -name = Fast definition = ultimaker2_plus +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pp +quality_type = draft +setting_version = 22 +type = quality variant = 0.8 mm +weight = -2 [values] acceleration_enabled = True -acceleration_layer_0 = =acceleration_topbottom acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000) acceleration_print = 4000 acceleration_support = =math.ceil(acceleration_print * 2000 / 4000) @@ -22,10 +21,6 @@ acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000) acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000) acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000) brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 20 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' infill_wipe_dist = 0 @@ -36,18 +31,17 @@ retraction_hop_enabled = True retraction_hop_only_when_collides = True retraction_prime_speed = 15 skin_overlap = 10 -speed_layer_0 = =speed_print speed_prime_tower = =speed_topbottom speed_print = 25 speed_support_interface = =speed_topbottom speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_travel = 250 -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 20 / 25) support_angle = 60 -support_z_distance = =layer_height * 2 support_bottom_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 top_bottom_thickness = 1.5 travel_avoid_distance = 3 wall_0_inset = 0 + 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 b902d16032..bb454cc508 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 @@ -1,19 +1,18 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker2_plus +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = slightlycoarse -weight = -3 material = generic_pp +quality_type = slightlycoarse +setting_version = 22 +type = quality variant = 0.8 mm +weight = -3 [values] acceleration_enabled = True -acceleration_layer_0 = =acceleration_topbottom acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000) acceleration_print = 4000 acceleration_support = =math.ceil(acceleration_print * 2000 / 4000) @@ -22,22 +21,9 @@ acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000) acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000) acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000) brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 20 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' infill_wipe_dist = 0 -jerk_enabled = True -jerk_layer_0 = =jerk_topbottom -jerk_prime_tower = =math.ceil(jerk_print * 15 / 25) -jerk_print = 25 -jerk_support = =math.ceil(jerk_print * 15 / 25) -jerk_support_interface = =jerk_topbottom -jerk_topbottom = =math.ceil(jerk_print * 5 / 25) -jerk_wall = =math.ceil(jerk_print * 10 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10) multiple_mesh_overlap = 0 retraction_count_max = 15 retraction_hop = 0.15 @@ -45,18 +31,17 @@ retraction_hop_enabled = True retraction_hop_only_when_collides = True retraction_prime_speed = 15 skin_overlap = 10 -speed_layer_0 = =speed_print speed_prime_tower = =speed_topbottom speed_print = 25 speed_support_interface = =speed_topbottom speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_travel = 250 -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 20 / 25) support_angle = 60 -support_z_distance = =layer_height * 2 support_bottom_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 top_bottom_thickness = 1.5 travel_avoid_distance = 3 wall_0_inset = 0 + 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 e8fcf8b392..716556770c 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 @@ -1,33 +1,27 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker2_plus +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_tpu +quality_type = high +setting_version = 22 +type = quality variant = 0.25 mm +weight = 1 [values] adhesion_type = brim brim_line_count = 8 cool_fan_speed = 60 cool_fan_speed_min = =cool_fan_speed * 35 / 60 -cool_min_layer_time = 7 -cool_min_speed = 15 infill_sparse_density = 10 layer_0_z_overlap = 0.1 raft_airgap = 0.2 -raft_base_line_spacing = 1 -raft_interface_line_spacing = 1 -raft_interface_line_width = 0.2 -raft_surface_line_width = 0.2 retraction_count_max = 15 retraction_hop_enabled = 0.2 -speed_layer_0 = =math.ceil(speed_print * 30 / 40) +speed_infill = =math.ceil(speed_print * 40 / 40) speed_print = 40 speed_support = 40 speed_topbottom = =math.ceil(speed_print * 35 / 40) @@ -38,4 +32,4 @@ support_angle = 45 support_enable = True support_z_distance = =layer_height * 2 top_bottom_thickness = 1.2 -speed_infill = =math.ceil(speed_print * 40 / 40) + 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 3a4c443011..e9577ec1ef 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 @@ -1,31 +1,24 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_tpu +quality_type = normal +setting_version = 22 +type = quality variant = 0.4 mm +weight = 0 [values] adhesion_type = brim brim_line_count = 8 cool_fan_speed = 60 cool_fan_speed_min = =cool_fan_speed * 35 / 60 -cool_min_layer_time = 10 -cool_min_speed = 15 infill_sparse_density = 10 -raft_base_line_spacing = 2 -raft_base_line_width = 0.8 -raft_interface_line_spacing = 1 -raft_margin = 12 retraction_count_max = 15 retraction_hop_enabled = 0.2 -speed_layer_0 = =math.ceil(speed_print * 30 / 40) speed_print = 40 speed_support = 40 speed_topbottom = =math.ceil(speed_print * 35 / 40) @@ -36,3 +29,4 @@ support_angle = 45 support_enable = True support_z_distance = =layer_height * 2 top_bottom_thickness = 1.2 + 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 7381cddcfc..c8c4c793a5 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 @@ -1,34 +1,27 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_tpu +quality_type = fast +setting_version = 22 +type = quality variant = 0.6 mm +weight = -1 [values] adhesion_type = brim brim_line_count = 8 cool_fan_speed = 60 cool_fan_speed_min = =cool_fan_speed * 35 / 60 -cool_min_speed = 15 infill_sparse_density = 10 layer_0_z_overlap = 0.12 raft_airgap = 0.24 -raft_base_line_spacing = 1.2 -raft_base_line_width = 0.6 -raft_interface_line_spacing = 1.2 -raft_interface_line_width = 0.57 -raft_margin = 15 -raft_surface_line_width = 0.5 retraction_count_max = 15 retraction_hop_enabled = 0.2 -speed_layer_0 = =math.ceil(speed_print * 30 / 45) +speed_infill = =math.ceil(speed_print * 45 / 45) speed_print = 45 speed_support = 40 speed_topbottom = =math.ceil(speed_print * 35 / 45) @@ -39,4 +32,4 @@ support_angle = 45 support_enable = True support_z_distance = =layer_height * 2 top_bottom_thickness = 1.2 -speed_infill = =math.ceil(speed_print * 45 / 45) + 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 710e780247..1c5393bf2f 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 @@ -1,22 +1,19 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker2_plus_connect +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality variant = 0.25 mm +weight = 1 [values] cool_fan_speed_min = =cool_fan_speed * 0.2 -cool_min_layer_time = 3 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 10 infill_sparse_density = 20 -speed_layer_0 = =round(speed_print * 30 / 30) speed_print = 30 top_bottom_thickness = 0.72 + 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 104c1894b2..68903f8d2b 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 @@ -1,26 +1,23 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus_connect +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_abs +quality_type = fast +setting_version = 22 +type = quality variant = 0.4 mm +weight = -1 [values] cool_fan_speed_min = =cool_fan_speed * 0.2 -cool_min_layer_time = 3 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 10 infill_sparse_density = 20 -top_bottom_thickness = 0.75 -speed_print = 55 -speed_travel = 150 -speed_layer_0 = =round(speed_print * 30 / 55) -speed_wall = =math.ceil(speed_print * 40 / 55) -speed_topbottom = =math.ceil(speed_print * 30 / 55) speed_infill = =math.ceil(speed_print * 55 / 55) +speed_print = 55 +speed_topbottom = =math.ceil(speed_print * 30 / 55) +speed_travel = 150 +speed_wall = =math.ceil(speed_print * 40 / 55) +top_bottom_thickness = 0.75 + 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 e4a7879323..40dfe13c5d 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 @@ -1,25 +1,22 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker2_plus_connect +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality variant = 0.4 mm +weight = 1 [values] cool_fan_speed_min = =cool_fan_speed * 0.2 -cool_min_layer_time = 3 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 10 infill_sparse_density = 20 -top_bottom_thickness = 0.72 -speed_print = 45 -speed_layer_0 = =round(speed_print * 30 / 45) -speed_wall = =math.ceil(speed_print * 30 / 45) -speed_topbottom = =math.ceil(speed_print * 15 / 45) speed_infill = =math.ceil(speed_print * 45 / 45) +speed_print = 45 +speed_topbottom = =math.ceil(speed_print * 15 / 45) +speed_wall = =math.ceil(speed_print * 30 / 45) +top_bottom_thickness = 0.72 + 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 9fa3d78d87..8dbc445e88 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 @@ -1,25 +1,22 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = 0.4 mm +weight = 0 [values] cool_fan_speed_min = =cool_fan_speed * 0.2 -cool_min_layer_time = 3 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 10 infill_sparse_density = 20 -top_bottom_thickness = 0.8 +speed_infill = =math.ceil(speed_print * 45 / 45) speed_print = 45 -speed_layer_0 = =round(speed_print * 30 / 45) -speed_wall = =math.ceil(speed_print * 30 / 45) speed_topbottom = =math.ceil(speed_print * 20 / 45) -speed_infill = =math.ceil(speed_print * 45 / 45) \ No newline at end of file +speed_wall = =math.ceil(speed_print * 30 / 45) +top_bottom_thickness = 0.8 + 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 da7b682633..65d0cf82a1 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 @@ -1,23 +1,20 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = 0 material = generic_abs +quality_type = fast +setting_version = 22 +type = quality variant = 0.6 mm +weight = 0 [values] cool_fan_speed_min = =cool_fan_speed * 0.5 -cool_min_layer_time = 3 -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 20 infill_sparse_density = 20 speed_infill = =math.ceil(speed_print * 55 / 40) -speed_layer_0 = =round(speed_print * 30 / 40) speed_print = 40 top_bottom_thickness = 1.2 + 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 9e59d29247..cbc3c1d3eb 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 @@ -1,22 +1,19 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus_connect +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -1 material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = 0.8 mm +weight = -1 [values] cool_fan_speed_min = =cool_fan_speed * 0.5 -cool_min_layer_time = 3 -cool_min_layer_time_fan_speed_max = 25 -cool_min_speed = 15 infill_sparse_density = 20 -speed_layer_0 = =round(speed_print * 30 / 40) speed_print = 40 top_bottom_thickness = 1.2 + 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 37f5926bce..9ac9c655d1 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 @@ -1,23 +1,19 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker2_plus_connect +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_cpe +quality_type = high +setting_version = 22 +type = quality variant = 0.25 mm +weight = 1 [values] cool_fan_speed_min = =cool_fan_speed * 0.2 -cool_min_layer_time = 2 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 15 infill_sparse_density = 20 -speed_layer_0 = =round(speed_print * 30 / 30) speed_print = 30 top_bottom_thickness = 0.72 -retraction_combing_max_distance = 50 \ No newline at end of file + 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 44f691bcb7..12406ab608 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 @@ -1,30 +1,26 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus_connect +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_cpe +quality_type = fast +setting_version = 22 +type = quality variant = 0.4 mm +weight = -1 [values] cool_fan_speed_min = =cool_fan_speed * 0.8 -cool_min_layer_time = 3 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 10 infill_sparse_density = 20 -retraction_combing_max_distance = 50 retraction_prime_speed = =retraction_speed -speed_layer_0 = =round(speed_print * 30 / 45) +speed_infill = =math.ceil(speed_print * 45 / 45) speed_print = 45 +speed_topbottom = =math.ceil(speed_print * 30 / 45) speed_travel = 150 speed_wall = =math.ceil(speed_print * 40 / 45) -top_bottom_thickness = 0.75 speed_wall_0 = =math.ceil(speed_print * 30 / 45) -speed_topbottom = =math.ceil(speed_print * 30 / 45) speed_wall_x = =math.ceil(speed_print * 40 / 45) -speed_infill = =math.ceil(speed_print * 45 / 45) \ No newline at end of file +top_bottom_thickness = 0.75 + 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 1f34fc2e16..0923ec23a8 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 @@ -1,27 +1,23 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker2_plus_connect +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_cpe +quality_type = high +setting_version = 22 +type = quality variant = 0.4 mm +weight = 1 [values] cool_fan_speed_min = =cool_fan_speed * 0.8 -cool_min_layer_time = 2 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 15 infill_sparse_density = 20 -retraction_combing_max_distance = 50 retraction_prime_speed = =retraction_speed -speed_layer_0 = =round(speed_print * 30 / 45) +speed_infill = =math.ceil(speed_print * 45 / 45) speed_print = 45 +speed_topbottom = =math.ceil(speed_print * 15 / 45) speed_wall = =math.ceil(speed_print * 30 / 45) top_bottom_thickness = 0.72 -speed_topbottom = =math.ceil(speed_print * 15 / 45) -speed_infill = =math.ceil(speed_print * 45 / 45) \ No newline at end of file + 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 de4552193a..3b5228f9d3 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 @@ -1,25 +1,21 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_cpe +quality_type = normal +setting_version = 22 +type = quality variant = 0.4 mm +weight = 0 [values] cool_fan_speed_min = =cool_fan_speed * 0.8 -cool_min_layer_time = 3 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 10 infill_sparse_density = 20 -retraction_combing_max_distance = 50 retraction_prime_speed = =retraction_speed -speed_layer_0 = =round(speed_print * 30 / 45) speed_print = 45 speed_wall = =math.ceil(speed_print * 30 / 45) top_bottom_thickness = 0.8 + 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 e22acd895b..37f71e1bc0 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 @@ -1,24 +1,20 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = 0 material = generic_cpe +quality_type = fast +setting_version = 22 +type = quality variant = 0.6 mm +weight = 0 [values] cool_fan_speed_min = =cool_fan_speed * 0.8 -cool_min_layer_time = 5 -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 8 infill_sparse_density = 20 -retraction_combing_max_distance = 50 retraction_prime_speed = =retraction_speed -speed_layer_0 = =round(speed_print * 30 / 40) speed_print = 40 top_bottom_thickness = 1.2 + 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 f0fd971697..000be268ec 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 @@ -1,23 +1,19 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus_connect +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -1 material = generic_cpe +quality_type = draft +setting_version = 22 +type = quality variant = 0.8 mm +weight = -1 [values] cool_fan_speed_min = =cool_fan_speed * 0.8 -cool_min_layer_time = 3 -cool_min_layer_time_fan_speed_max = 25 -cool_min_speed = 8 infill_sparse_density = 20 -speed_layer_0 = =round(speed_print * 30 / 40) speed_print = 40 top_bottom_thickness = 1.2 -retraction_combing_max_distance = 50 \ No newline at end of file + 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 076caebf21..dc234ed19d 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 @@ -1,34 +1,24 @@ [general] -version = 4 -name = Fast definition = ultimaker2_plus_connect +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_cpe_plus +quality_type = draft +setting_version = 22 +type = quality variant = 0.4 mm +weight = -2 [values] cool_fan_speed = 50 cool_fan_speed_min = =cool_fan_speed * 25 / 50 -cool_min_layer_time = 3 -cool_min_speed = 8 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 raft_airgap = 0.37 -raft_base_line_spacing = 1.6 -raft_base_line_width = 0.8 -raft_interface_line_spacing = 1 -raft_interface_line_width = 0.8 -raft_margin = 15 -raft_surface_line_width = 0.38 -retraction_combing_max_distance = 50 retraction_prime_speed = =retraction_speed -speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 20 / 25) speed_wall_0 = =math.ceil(speed_print * 20 / 25) @@ -37,3 +27,4 @@ support_angle = 45 support_enable = True support_z_distance = 0.26 top_bottom_thickness = 1.5 + 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 eb2eb45552..0f4d777032 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 @@ -1,34 +1,24 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = 0 material = generic_cpe_plus +quality_type = fast +setting_version = 22 +type = quality variant = 0.4 mm +weight = 0 [values] cool_fan_speed = 50 cool_fan_speed_min = =cool_fan_speed * 25 / 50 -cool_min_layer_time = 3 -cool_min_speed = 8 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 raft_airgap = 0.37 -raft_base_line_spacing = 1.6 -raft_base_line_width = 0.8 -raft_interface_line_spacing = 1 -raft_interface_line_width = 0.8 -raft_margin = 15 -raft_surface_line_width = 0.38 -retraction_combing_max_distance = 50 retraction_prime_speed = =retraction_speed -speed_layer_0 = =math.ceil(speed_print * 15 / 35) speed_print = 35 speed_topbottom = =math.ceil(speed_print * 20 / 35) speed_wall_0 = =math.ceil(speed_print * 20 / 35) @@ -37,3 +27,4 @@ support_angle = 45 support_enable = True support_z_distance = 0.26 top_bottom_thickness = 1.5 + 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 255979e3a6..6b998e8fb2 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 @@ -1,35 +1,24 @@ [general] -version = 4 -name = Fast definition = ultimaker2_plus_connect +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = slightlycoarse -weight = -2 material = generic_cpe_plus +quality_type = slightlycoarse +setting_version = 22 +type = quality variant = 0.6 mm +weight = -2 [values] cool_fan_speed = 45 cool_fan_speed_min = =cool_fan_speed * 25 / 45 -cool_min_layer_time = 3 -cool_min_speed = 8 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 raft_airgap = 0.37 -raft_base_line_spacing = 2.4 -raft_base_line_width = 1.2 -raft_interface_line_spacing = 1.4 -raft_interface_line_width = 1.2 -raft_margin = 15 -raft_surface_line_width = 0.57 -raft_surface_thickness = 0.2 -retraction_combing_max_distance = 50 retraction_prime_speed = =retraction_speed -speed_layer_0 = =round(speed_print * 30 / 50) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 20 / 25) speed_travel = 150 @@ -39,3 +28,4 @@ support_angle = 45 support_enable = True support_z_distance = 0.22 top_bottom_thickness = 0.75 + 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 88eda6c8ec..b1d349c279 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 @@ -1,35 +1,24 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 material = generic_cpe_plus +quality_type = draft +setting_version = 22 +type = quality variant = 0.6 mm +weight = 0 [values] cool_fan_speed = 45 cool_fan_speed_min = =cool_fan_speed * 25 / 45 -cool_min_layer_time = 3 -cool_min_speed = 8 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 raft_airgap = 0.37 -raft_base_line_spacing = 2.4 -raft_base_line_width = 1.2 -raft_interface_line_spacing = 1.4 -raft_interface_line_width = 1.2 -raft_margin = 15 -raft_surface_line_width = 0.57 -raft_surface_thickness = 0.2 -retraction_combing_max_distance = 50 retraction_prime_speed = =retraction_speed -speed_layer_0 = =math.ceil(speed_print * 30 / 35) speed_print = 35 speed_topbottom = =math.ceil(speed_print * 20 / 35) speed_travel = 150 @@ -39,3 +28,4 @@ support_angle = 45 support_enable = True support_z_distance = 0.22 top_bottom_thickness = 0.75 + 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 9d7a3851d8..4373028ddf 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 @@ -1,32 +1,24 @@ [general] -version = 4 -name = Fast definition = ultimaker2_plus_connect +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = slightlycoarse -weight = -2 material = generic_cpe_plus +quality_type = slightlycoarse +setting_version = 22 +type = quality variant = 0.8 mm +weight = -2 [values] brim_line_count = 10 cool_fan_speed = 50 cool_fan_speed_min = =cool_fan_speed * 25 / 50 -cool_min_layer_time = 3 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 raft_airgap = 0.37 -raft_base_line_width = 1.6 -raft_interface_line_spacing = 1.8 -raft_interface_line_width = 1.6 -raft_margin = 15 -raft_surface_line_width = 0.7 -raft_surface_thickness = 0.2 -speed_layer_0 = =round(speed_print * 30 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 20 / 25) speed_wall_0 = =math.ceil(speed_print * 20 / 25) @@ -35,4 +27,4 @@ support_angle = 45 support_enable = True support_z_distance = 0.26 top_bottom_thickness = 1.2 -retraction_combing_max_distance = 50 \ No newline at end of file + 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 4801f03a05..e2f8600292 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 @@ -1,32 +1,24 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 material = generic_cpe_plus +quality_type = draft +setting_version = 22 +type = quality variant = 0.8 mm +weight = 0 [values] brim_line_count = 10 cool_fan_speed = 50 cool_fan_speed_min = =cool_fan_speed * 25 / 50 -cool_min_layer_time = 3 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 raft_airgap = 0.37 -raft_base_line_width = 1.6 -raft_interface_line_spacing = 1.8 -raft_interface_line_width = 1.6 -raft_margin = 15 -raft_surface_line_width = 0.7 -raft_surface_thickness = 0.2 -speed_layer_0 = =round(speed_print * 30 / 30) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) speed_wall_0 = =math.ceil(speed_print * 20 / 30) @@ -35,4 +27,4 @@ support_angle = 45 support_enable = True support_z_distance = 0.26 top_bottom_thickness = 1.2 -retraction_combing_max_distance = 50 + 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 2fa3c80a01..f8d0116b7c 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Coarse Quality definition = ultimaker2_plus_connect +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -4 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.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 59feaf6573..44f42f986c 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft Quality definition = ultimaker2_plus_connect +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] layer_height = 0.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 af664876b1..8d9fff5b70 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Extra Coarse Quality definition = ultimaker2_plus_connect +name = Extra Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extracoarse -weight = -3 global_quality = True +quality_type = extracoarse +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.6 + 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 ad1c0c9c20..a33c8ae3ce 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus_connect +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.15 + 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 c907d4a7ec..58db5e0095 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker2_plus_connect +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] layer_height = 0.06 + 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 45d0adef7d..c2bb284c74 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.1 + 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 4886ab1d02..9b56520d74 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Coarse Quality definition = ultimaker2_plus_connect +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = slightlycoarse -weight = -4 global_quality = True +quality_type = slightlycoarse +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.3 + 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 f08257d7d6..0333f112d2 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 @@ -1,32 +1,26 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker2_plus_connect +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_nylon +quality_type = high +setting_version = 22 +type = quality variant = 0.25 mm +weight = 1 [values] brim_line_count = 8 cool_fan_speed = 60 cool_fan_speed_min = =cool_fan_speed * 35 / 60 -cool_min_speed = 15 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.1 raft_airgap = 0.15 -raft_base_line_width = 0.5 -raft_interface_line_spacing = 0.7 -raft_interface_line_width = 0.5 -raft_margin = 15 -raft_surface_line_width = 0.2 retraction_hop_enabled = 0.2 -speed_layer_0 = =math.ceil(speed_print * 30 / 40) +speed_infill = =math.ceil(speed_print * 40 / 40) speed_print = 40 speed_support = 40 speed_topbottom = =math.ceil(speed_print * 35 / 40) @@ -36,4 +30,4 @@ speed_wall_x = =speed_print support_enable = True support_z_distance = =layer_height * 2 top_bottom_thickness = 1.2 -speed_infill = =math.ceil(speed_print * 40 / 40) + 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 ab17f0589d..240a7011a7 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 @@ -1,32 +1,25 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_nylon +quality_type = normal +setting_version = 22 +type = quality variant = 0.25 mm +weight = 0 [values] brim_line_count = 8 cool_fan_speed = 60 cool_fan_speed_min = =cool_fan_speed * 35 / 60 -cool_min_speed = 15 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.1 raft_airgap = 0.15 -raft_base_line_width = 0.5 -raft_interface_line_spacing = 0.7 -raft_interface_line_width = 0.5 -raft_margin = 15 -raft_surface_line_width = 0.2 retraction_hop_enabled = 0.2 -speed_layer_0 = =math.ceil(speed_print * 30 / 40) speed_print = 40 speed_support = 40 speed_topbottom = =math.ceil(speed_print * 35 / 40) @@ -36,3 +29,4 @@ speed_wall_x = =speed_print support_enable = True support_z_distance = =layer_height * 2 top_bottom_thickness = 1.2 + 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 d23859a47f..9c3ad03ceb 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 @@ -1,41 +1,32 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus_connect +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -1 material = generic_nylon +quality_type = draft +setting_version = 22 +type = quality variant = 0.4 mm +weight = -1 [values] cool_fan_speed_min = =cool_fan_speed * 0.35 -cool_min_layer_time = 3 -cool_min_speed = 15 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 raft_airgap = 0.57 -raft_base_line_spacing = 1.6 -raft_base_line_width = 0.8 -raft_interface_line_spacing = 1 -raft_interface_line_width = 0.8 -raft_margin = 15 -raft_surface_line_width = 0.5 -raft_surface_thickness = 0.15 retraction_prime_speed = =retraction_speed -speed_layer_0 = =math.ceil(speed_print * 30 / 45) +speed_infill = =math.ceil(speed_print * 45 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 20 / 45) speed_travel = 150 speed_wall = =math.ceil(speed_print * 40 / 45) +speed_wall_0 = =math.ceil(speed_print * 30 / 45) +speed_wall_x = =math.ceil(speed_print * 40 / 45) support_angle = 45 support_enable = True support_z_distance = =layer_height * 2 top_bottom_thickness = 0.75 -speed_wall_0 = =math.ceil(speed_print * 30 / 45) -speed_wall_x = =math.ceil(speed_print * 40 / 45) -speed_infill = =math.ceil(speed_print * 45 / 45) + 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 e5d05294f2..6485615ce2 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 @@ -1,33 +1,23 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = 0 material = generic_nylon +quality_type = fast +setting_version = 22 +type = quality variant = 0.4 mm +weight = 0 [values] cool_fan_speed_min = =cool_fan_speed * 0.35 -cool_min_layer_time = 3 -cool_min_speed = 15 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 raft_airgap = 0.57 -raft_base_line_spacing = 1.6 -raft_base_line_width = 0.8 -raft_interface_line_spacing = 1 -raft_interface_line_width = 0.8 -raft_margin = 15 -raft_surface_line_width = 0.5 -raft_surface_thickness = 0.15 retraction_prime_speed = =retraction_speed -speed_layer_0 = =math.ceil(speed_print * 30 / 45) speed_print = 45 speed_travel = 150 speed_wall = =math.ceil(speed_print * 40 / 45) @@ -35,3 +25,4 @@ support_angle = 45 support_enable = True support_z_distance = =layer_height * 2 top_bottom_thickness = 0.75 + 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 59834b551d..2b97c09d63 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 @@ -1,34 +1,26 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus_connect +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = slightlycoarse -weight = -1 material = generic_nylon +quality_type = slightlycoarse +setting_version = 22 +type = quality variant = 0.6 mm +weight = -1 [values] brim_line_count = 8 cool_fan_speed_min = =cool_fan_speed * 0.35 -cool_min_speed = 15 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 raft_airgap = 0.44 -raft_base_line_spacing = 2.4 -raft_base_line_width = 1.2 -raft_interface_line_spacing = 1.4 -raft_interface_line_width = 1.2 -raft_margin = 15 -raft_surface_line_width = 0.6 -raft_surface_thickness = 0.15 retraction_hop_enabled = 0.2 retraction_prime_speed = =retraction_speed -speed_layer_0 = =math.ceil(speed_print * 30 / 55) +speed_infill = =math.ceil(speed_print * 55 / 55) speed_print = 55 speed_support = 40 speed_topbottom = =math.ceil(speed_print * 35 / 55) @@ -39,4 +31,4 @@ support_angle = 45 support_enable = True support_z_distance = 0.55 top_bottom_thickness = 1.2 -speed_infill = =math.ceil(speed_print * 55 / 55) + 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 25480e1e7d..7fbef3d30a 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 @@ -1,34 +1,25 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = 0 material = generic_nylon +quality_type = fast +setting_version = 22 +type = quality variant = 0.6 mm +weight = 0 [values] brim_line_count = 8 cool_fan_speed_min = =cool_fan_speed * 0.35 -cool_min_speed = 15 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 raft_airgap = 0.44 -raft_base_line_spacing = 2.4 -raft_base_line_width = 1.2 -raft_interface_line_spacing = 1.4 -raft_interface_line_width = 1.2 -raft_margin = 15 -raft_surface_line_width = 0.6 -raft_surface_thickness = 0.15 retraction_hop_enabled = 0.2 retraction_prime_speed = =retraction_speed -speed_layer_0 = =math.ceil(speed_print * 30 / 55) speed_print = 55 speed_support = 40 speed_topbottom = =math.ceil(speed_print * 35 / 55) @@ -39,3 +30,4 @@ support_angle = 45 support_enable = True support_z_distance = =layer_height * 2 top_bottom_thickness = 1.2 + 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 ee0a2bd2a5..48f94b5134 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 @@ -1,32 +1,24 @@ [general] -version = 4 -name = Fast definition = ultimaker2_plus_connect +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = slightlycoarse -weight = -2 material = generic_nylon +quality_type = slightlycoarse +setting_version = 22 +type = quality variant = 0.8 mm +weight = -2 [values] brim_line_count = 8 cool_fan_speed_min = =cool_fan_speed * 0.35 -cool_min_speed = 15 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.25 raft_airgap = 0.44 -raft_base_line_width = 1.6 -raft_interface_line_spacing = 1.8 -raft_interface_line_width = 1.6 -raft_margin = 15 -raft_surface_line_width = 0.7 -raft_surface_thickness = 0.2 retraction_hop_enabled = 0.2 -speed_layer_0 = =math.ceil(speed_print * 30 / 55) speed_print = 55 speed_support = 40 speed_topbottom = =math.ceil(speed_print * 35 / 55) @@ -34,7 +26,8 @@ speed_travel = 150 speed_wall_0 = =math.ceil(speed_print * 15 / 55) speed_wall_x = =math.ceil(speed_print * 40 / 55) support_angle = 45 +support_bottom_distance = 0.65 support_enable = True support_z_distance = 0.5 -support_bottom_distance = 0.65 top_bottom_thickness = 1.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 9ac5d56bd7..1641791a2e 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 @@ -1,32 +1,24 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 material = generic_nylon +quality_type = draft +setting_version = 22 +type = quality variant = 0.8 mm +weight = 0 [values] brim_line_count = 8 cool_fan_speed_min = =cool_fan_speed * 0.35 -cool_min_speed = 15 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.25 raft_airgap = 0.44 -raft_base_line_width = 1.6 -raft_interface_line_spacing = 1.8 -raft_interface_line_width = 1.6 -raft_margin = 15 -raft_surface_line_width = 0.7 -raft_surface_thickness = 0.2 retraction_hop_enabled = 0.2 -speed_layer_0 = =round(speed_print * 30 / 55) speed_print = 55 speed_support = 40 speed_topbottom = =math.ceil(speed_print * 35 / 55) @@ -39,3 +31,4 @@ support_enable = True support_top_distance = 0.5 support_z_distance = =layer_height * 2 top_bottom_thickness = 1.2 + 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 4898c72327..0ef8c166c4 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 @@ -1,34 +1,26 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker2_plus_connect +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pc +quality_type = high +setting_version = 22 +type = quality variant = 0.25 mm +weight = 1 [values] brim_line_count = 32 cool_fan_speed = 50 cool_fan_speed_min = 0 -cool_min_layer_time = 2 -cool_min_speed = 15 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.2 raft_airgap = 0.25 -raft_base_line_spacing = 1 -raft_base_line_width = 0.5 -raft_interface_line_spacing = 0.7 -raft_interface_line_width = 0.5 -raft_margin = 15 -raft_surface_line_width = 0.2 -speed_layer_0 = =round(speed_print * 30 / 30) speed_print = 30 +speed_topbottom = =math.ceil(speed_print * 15 / 30) support_enable = True support_z_distance = 0.19 -speed_topbottom = =math.ceil(speed_print * 15 / 30) \ No newline at end of file + 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 2d159792c9..435548e798 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 @@ -1,33 +1,25 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pc +quality_type = normal +setting_version = 22 +type = quality variant = 0.25 mm +weight = 0 [values] brim_line_count = 32 cool_fan_speed = 50 cool_fan_speed_min = 0 -cool_min_layer_time = 2 -cool_min_speed = 15 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.2 raft_airgap = 0.25 -raft_base_line_spacing = 1 -raft_base_line_width = 0.5 -raft_interface_line_spacing = 0.7 -raft_interface_line_width = 0.5 -raft_margin = 15 -raft_surface_line_width = 0.2 -speed_layer_0 = =round(speed_print * 30 / 30) speed_print = 30 support_enable = True support_z_distance = 0.19 + 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 86a965d441..67c33e8847 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 @@ -1,36 +1,29 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus_connect +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -1 material = generic_pc +quality_type = draft +setting_version = 22 +type = quality variant = 0.4 mm +weight = -1 [values] cool_fan_speed = 50 cool_fan_speed_min = 0 -cool_min_layer_time = 3 -cool_min_speed = 8 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.3 raft_airgap = 0.35 -raft_base_line_spacing = 1.6 -raft_base_line_width = 0.8 -raft_interface_line_spacing = 1 -raft_interface_line_width = 0.8 -raft_margin = 15 -speed_layer_0 = =round(speed_print * 30 / 45) +speed_infill = =math.ceil(speed_print * 45 / 45) speed_print = 45 +speed_topbottom = =math.ceil(speed_print * 30 / 45) speed_wall_0 = =math.ceil(speed_print * 20 / 45) speed_wall_x = =math.ceil(speed_print * 30 / 45) support_angle = 45 support_enable = True support_z_distance = 0.19 -speed_topbottom = =math.ceil(speed_print * 30 / 45) -speed_infill = =math.ceil(speed_print * 45 / 45) + 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 b782ea63d4..2e99824362 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 @@ -1,34 +1,27 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pc +quality_type = normal +setting_version = 22 +type = quality variant = 0.4 mm +weight = 0 [values] cool_fan_speed = 50 cool_fan_speed_min = 0 -cool_min_layer_time = 3 -cool_min_speed = 8 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.3 raft_airgap = 0.35 -raft_base_line_spacing = 1.6 -raft_base_line_width = 0.8 -raft_interface_line_spacing = 1 -raft_interface_line_width = 0.8 -raft_margin = 15 -speed_layer_0 = =round(speed_print * 30 / 45) speed_print = 45 speed_wall_0 = =math.ceil(speed_print * 20 / 45) speed_wall_x = =math.ceil(speed_print * 30 / 45) support_angle = 45 support_enable = True support_z_distance = 0.19 + 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 739d72072f..e9ad448271 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 @@ -1,33 +1,24 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus_connect +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = slightlycoarse -weight = -1 material = generic_pc +quality_type = slightlycoarse +setting_version = 22 +type = quality variant = 0.6 mm +weight = -1 [values] cool_fan_speed = 50 cool_fan_speed_min = 0 -cool_min_layer_time = 3 -cool_min_speed = 8 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 raft_airgap = 0.52 -raft_base_line_spacing = 2.4 -raft_base_line_width = 1.2 -raft_interface_line_spacing = 1.4 -raft_interface_line_width = 1.2 -raft_margin = 15 -raft_surface_line_width = 0.6 -raft_surface_thickness = 0.15 -speed_layer_0 = =math.ceil(speed_print * 30 / 45) +speed_infill = =math.ceil(speed_print * 45 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 20 / 45) speed_travel = 150 @@ -37,4 +28,4 @@ support_angle = 45 support_enable = True support_z_distance = 0.21 top_bottom_thickness = 0.75 -speed_infill = =math.ceil(speed_print * 45 / 45) + 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 d95596953e..3cf8b80fb8 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 @@ -1,33 +1,23 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = 0 material = generic_pc +quality_type = fast +setting_version = 22 +type = quality variant = 0.6 mm +weight = 0 [values] cool_fan_speed = 50 cool_fan_speed_min = 0 -cool_min_layer_time = 3 -cool_min_speed = 8 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 raft_airgap = 0.52 -raft_base_line_spacing = 2.4 -raft_base_line_width = 1.2 -raft_interface_line_spacing = 1.4 -raft_interface_line_width = 1.2 -raft_margin = 15 -raft_surface_line_width = 0.6 -raft_surface_thickness = 0.15 -speed_layer_0 = =math.ceil(speed_print * 30 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 20 / 45) speed_travel = 150 @@ -37,3 +27,4 @@ support_angle = 45 support_enable = True support_z_distance = 0.21 top_bottom_thickness = 0.75 + 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 751696ca93..c9219171e7 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 @@ -1,34 +1,27 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 material = generic_pc +quality_type = draft +setting_version = 22 +type = quality variant = 0.8 mm +weight = 0 [values] brim_line_count = 10 cool_fan_speed = 50 cool_fan_speed_min = =cool_fan_speed * 25 / 50 -cool_min_layer_time = 3 infill_overlap = =0 if infill_sparse_density > 80 else 5 infill_sparse_density = 20 layer_0_z_overlap = 0.22 raft_airgap = 0.47 -raft_base_line_width = 1.6 -raft_interface_line_spacing = 1.8 -raft_interface_line_width = 1.6 -raft_margin = 15 -raft_surface_line_width = 0.7 -raft_surface_thickness = 0.2 -speed_layer_0 = =round(speed_print * 30 / 40) speed_print = 40 support_angle = 45 support_enable = True support_z_distance = 0.26 top_bottom_thickness = 1.2 + 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 4b85e1e75b..110fe13e0b 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 @@ -1,23 +1,19 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker2_plus_connect +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_petg +quality_type = high +setting_version = 22 +type = quality variant = 0.25 mm +weight = 1 [values] cool_fan_speed_min = =cool_fan_speed * 0.2 -cool_min_layer_time = 2 -cool_min_layer_time_fan_speed_max = 25 -cool_min_speed = 15 infill_sparse_density = 20 -speed_layer_0 = 30 speed_print = 30 top_bottom_thickness = 0.72 -retraction_combing_max_distance = 8 \ No newline at end of file + 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 993dd399a3..0934eb1eae 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 @@ -1,29 +1,25 @@ [general] -version = 4 -name = Fast definition = ultimaker2_plus_connect +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = 0.4 mm +weight = -2 [values] cool_fan_speed_min = =cool_fan_speed * 0.8 -cool_min_layer_time = 3 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 10 infill_sparse_density = 20 -speed_layer_0 = 30 +speed_infill = =math.ceil(speed_print * 45 / 45) speed_print = 45 +speed_topbottom = =math.ceil(speed_print * 30 / 45) speed_travel = 150 speed_wall = =math.ceil(speed_print * 40 / 45) -top_bottom_thickness = 0.75 speed_wall_0 = =math.ceil(speed_print * 30 / 45) -speed_topbottom = =math.ceil(speed_print * 30 / 45) speed_wall_x = =math.ceil(speed_print * 40 / 45) -speed_infill = =math.ceil(speed_print * 45 / 45) -retraction_combing_max_distance = 8 \ No newline at end of file +top_bottom_thickness = 0.75 + 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 5a81d83d01..cf6c7350c6 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 @@ -1,29 +1,25 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus_connect +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_petg +quality_type = fast +setting_version = 22 +type = quality variant = 0.4 mm +weight = -1 [values] cool_fan_speed_min = =cool_fan_speed * 0.8 -cool_min_layer_time = 3 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 10 infill_sparse_density = 20 -speed_layer_0 = 30 +speed_infill = =math.ceil(speed_print * 45 / 45) speed_print = 45 +speed_topbottom = =math.ceil(speed_print * 30 / 45) speed_travel = 150 speed_wall = =math.ceil(speed_print * 40 / 45) -top_bottom_thickness = 0.75 speed_wall_0 = =math.ceil(speed_print * 30 / 45) -speed_topbottom = =math.ceil(speed_print * 30 / 45) speed_wall_x = =math.ceil(speed_print * 40 / 45) -speed_infill = =math.ceil(speed_print * 45 / 45) -retraction_combing_max_distance = 8 \ No newline at end of file +top_bottom_thickness = 0.75 + 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 efdd2fe9c4..ba1d9bfb53 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 @@ -1,24 +1,20 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = 0.4 mm +weight = 0 [values] cool_fan_speed_min = =cool_fan_speed * 0.8 -cool_min_layer_time = 3 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 10 infill_sparse_density = 20 -speed_layer_0 = 30 speed_print = 45 speed_wall = =math.ceil(speed_print * 30 / 45) top_bottom_thickness = 0.8 -retraction_combing_max_distance = 8 \ No newline at end of file + 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 5950bef661..1945d233cd 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 @@ -1,23 +1,19 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = 0 material = generic_petg +quality_type = fast +setting_version = 22 +type = quality variant = 0.6 mm +weight = 0 [values] cool_fan_speed_min = =cool_fan_speed * 0.8 -cool_min_layer_time = 5 -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 8 infill_sparse_density = 20 -speed_layer_0 = 30 speed_print = 40 top_bottom_thickness = 1.2 -retraction_combing_max_distance = 8 \ No newline at end of file + 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 3ccbd02e7f..8bf08cb773 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 @@ -1,23 +1,19 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus_connect +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -1 material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = 0.8 mm +weight = -1 [values] cool_fan_speed_min = =cool_fan_speed * 0.8 -cool_min_layer_time = 3 -cool_min_layer_time_fan_speed_max = 25 -cool_min_speed = 8 infill_sparse_density = 20 -speed_layer_0 = 30 speed_print = 40 top_bottom_thickness = 1.2 -retraction_combing_max_distance = 8 \ No newline at end of file + 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 3853f5cce0..b3100bdb1c 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 @@ -1,20 +1,18 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker2_plus_connect +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality variant = 0.25 mm +weight = 1 [values] -cool_min_layer_time = 5 -cool_min_speed = 10 infill_sparse_density = 20 -speed_layer_0 = =round(speed_print * 30 / 30) speed_print = 30 top_bottom_thickness = 0.72 + 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 0a1e0638f2..d243ed781a 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 @@ -1,24 +1,22 @@ [general] -version = 4 -name = Fast definition = ultimaker2_plus_connect +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.4 mm +weight = -2 [values] -cool_min_layer_time = 5 -cool_min_speed = 10 infill_sparse_density = 20 retraction_prime_speed = =retraction_speed -speed_layer_0 = =round(speed_print * 30 / 60) speed_print = 60 speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_travel = 150 speed_wall = =math.ceil(speed_print * 50 / 60) top_bottom_thickness = 0.75 + 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 c5d6f2344d..5c66c13b1f 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 @@ -1,24 +1,22 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus_connect +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pla +quality_type = fast +setting_version = 22 +type = quality variant = 0.4 mm +weight = -1 [values] -cool_min_layer_time = 5 -cool_min_speed = 10 infill_sparse_density = 20 retraction_prime_speed = =retraction_speed -speed_layer_0 = =round(speed_print * 30 / 60) speed_print = 60 speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_travel = 150 speed_wall = =math.ceil(speed_print * 50 / 60) top_bottom_thickness = 0.75 + 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 ca2d182df1..6d6ee19834 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 @@ -1,22 +1,20 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker2_plus_connect +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality variant = 0.4 mm +weight = 1 [values] -cool_min_layer_time = 5 -cool_min_speed = 10 infill_sparse_density = 20 retraction_prime_speed = =retraction_speed -speed_layer_0 = =round(speed_print * 30 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 20 / 50) top_bottom_thickness = 0.72 + 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 282aacf303..052353a1cf 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 @@ -1,22 +1,20 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4 mm +weight = 0 [values] -cool_min_layer_time = 5 -cool_min_speed = 10 infill_sparse_density = 20 retraction_prime_speed = =retraction_speed -speed_layer_0 = =round(speed_print * 30 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 20 / 50) top_bottom_thickness = 0.8 + 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 590da7909c..3a41b7dce2 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 @@ -1,24 +1,22 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = 0 material = generic_pla +quality_type = fast +setting_version = 22 +type = quality variant = 0.6 mm +weight = 0 [values] -cool_min_layer_time = 5 -cool_min_speed = 10 infill_sparse_density = 20 retraction_prime_speed = =retraction_speed -speed_layer_0 = =round(speed_print * 30 / 55) speed_print = 55 speed_topbottom = =math.ceil(speed_print * 20 / 55) speed_wall = =math.ceil(speed_print * 40 / 55) speed_wall_0 = =math.ceil(speed_print * 25 / 55) top_bottom_thickness = 1.2 + 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 bd2d1f2fd0..69f1a49660 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 @@ -1,21 +1,19 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus_connect +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -1 material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.8 mm +weight = -1 [values] -cool_min_layer_time = 5 -cool_min_speed = 10 infill_sparse_density = 20 -speed_layer_0 = =round(speed_print * 30 / 40) speed_print = 40 speed_wall_0 = =math.ceil(speed_print * 25 / 40) top_bottom_thickness = 1.2 + 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 fc24da0222..fc7c6ab4c2 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 @@ -1,19 +1,18 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus_connect +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pp +quality_type = fast +setting_version = 22 +type = quality variant = 0.4 mm +weight = -1 [values] acceleration_enabled = True -acceleration_layer_0 = =acceleration_topbottom acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000) acceleration_print = 4000 acceleration_support = =math.ceil(acceleration_print * 2000 / 4000) @@ -22,10 +21,6 @@ acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000) acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000) acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000) brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 20 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0 @@ -36,19 +31,18 @@ retraction_hop_enabled = True retraction_hop_only_when_collides = True retraction_min_travel = 0.5 skin_overlap = 10 -speed_layer_0 = =speed_print +speed_infill = =math.ceil(speed_print * 25 / 25) speed_prime_tower = =speed_topbottom speed_print = 25 speed_support_interface = =speed_topbottom speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_travel = 250 -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 20 / 25) +speed_wall_x = =math.ceil(speed_print * 25 / 25) support_angle = 60 -support_z_distance = =layer_height * 2 support_bottom_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 travel_avoid_distance = 3 wall_0_inset = 0 -speed_wall_x = =math.ceil(speed_print * 25 / 25) -speed_infill = =math.ceil(speed_print * 25 / 25) + 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 dde91c441c..9e88be9084 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 @@ -1,19 +1,18 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pp +quality_type = normal +setting_version = 22 +type = quality variant = 0.4 mm +weight = 0 [values] acceleration_enabled = True -acceleration_layer_0 = =acceleration_topbottom acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000) acceleration_print = 4000 acceleration_support = =math.ceil(acceleration_print * 2000 / 4000) @@ -22,10 +21,6 @@ acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000) acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000) acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000) brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 20 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0 @@ -36,17 +31,16 @@ retraction_hop_enabled = True retraction_hop_only_when_collides = True retraction_min_travel = 0.5 skin_overlap = 10 -speed_layer_0 = =speed_print speed_prime_tower = =speed_topbottom speed_print = 25 speed_support_interface = =speed_topbottom speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_travel = 250 -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 20 / 25) support_angle = 60 -support_z_distance = =layer_height * 2 support_bottom_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 travel_avoid_distance = 3 wall_0_inset = 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 1b3024f709..583cf3cdce 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 @@ -1,19 +1,18 @@ [general] -version = 4 -name = Fast definition = ultimaker2_plus_connect +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pp +quality_type = draft +setting_version = 22 +type = quality variant = 0.6 mm +weight = -2 [values] acceleration_enabled = True -acceleration_layer_0 = =acceleration_topbottom acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000) acceleration_print = 4000 acceleration_support = =math.ceil(acceleration_print * 2000 / 4000) @@ -22,10 +21,6 @@ acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000) acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000) acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000) brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 20 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0 @@ -35,18 +30,17 @@ retraction_hop = 0.15 retraction_hop_enabled = True retraction_hop_only_when_collides = True skin_overlap = 10 -speed_layer_0 = =speed_print speed_prime_tower = =speed_topbottom speed_print = 25 speed_support_interface = =speed_topbottom speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_travel = 250 -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 20 / 25) support_angle = 60 -support_z_distance = =layer_height * 2 support_bottom_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 top_bottom_thickness = 1.1 travel_avoid_distance = 3 wall_0_inset = 0 + 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 6784ae2adb..5b0f5e405c 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 @@ -1,19 +1,18 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus_connect +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pp +quality_type = fast +setting_version = 22 +type = quality variant = 0.6 mm +weight = -1 [values] acceleration_enabled = True -acceleration_layer_0 = =acceleration_topbottom acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000) acceleration_print = 4000 acceleration_support = =math.ceil(acceleration_print * 2000 / 4000) @@ -22,10 +21,6 @@ acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000) acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000) acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000) brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 20 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0 @@ -35,20 +30,19 @@ retraction_hop = 0.15 retraction_hop_enabled = True retraction_hop_only_when_collides = True skin_overlap = 10 -speed_layer_0 = =speed_print +speed_infill = =math.ceil(speed_print * 25 / 25) speed_prime_tower = =speed_topbottom speed_print = 25 speed_support_interface = =speed_topbottom speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_travel = 250 -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 20 / 25) +speed_wall_x = =math.ceil(speed_print * 25 / 25) support_angle = 60 -support_z_distance = =layer_height * 2 support_bottom_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 top_bottom_thickness = 1.1 travel_avoid_distance = 3 wall_0_inset = 0 -speed_wall_x = =math.ceil(speed_print * 25 / 25) -speed_infill = =math.ceil(speed_print * 25 / 25) + 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 bb5876dcd6..d24c6508d1 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 @@ -1,19 +1,18 @@ [general] -version = 4 -name = Fast definition = ultimaker2_plus_connect +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pp +quality_type = draft +setting_version = 22 +type = quality variant = 0.8 mm +weight = -2 [values] acceleration_enabled = True -acceleration_layer_0 = =acceleration_topbottom acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000) acceleration_print = 4000 acceleration_support = =math.ceil(acceleration_print * 2000 / 4000) @@ -22,22 +21,9 @@ acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000) acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000) acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000) brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 20 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0 -jerk_enabled = True -jerk_layer_0 = =jerk_topbottom -jerk_prime_tower = =math.ceil(jerk_print * 15 / 25) -jerk_print = 25 -jerk_support = =math.ceil(jerk_print * 15 / 25) -jerk_support_interface = =jerk_topbottom -jerk_topbottom = =math.ceil(jerk_print * 5 / 25) -jerk_wall = =math.ceil(jerk_print * 10 / 25) -jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10) multiple_mesh_overlap = 0 retraction_count_max = 15 retraction_hop = 0.15 @@ -45,13 +31,11 @@ retraction_hop_enabled = True retraction_hop_only_when_collides = True retraction_prime_speed = 15 skin_overlap = 10 -speed_layer_0 = =speed_print speed_prime_tower = =speed_topbottom speed_print = 25 speed_support_interface = =speed_topbottom speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_travel = 250 -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 20 / 25) support_angle = 60 @@ -61,3 +45,4 @@ support_z_distance = =layer_height * 2 top_bottom_thickness = 1.5 travel_avoid_distance = 3 wall_0_inset = 0 + 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 bb55a80ba8..1bd6b8e3c5 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 @@ -1,19 +1,18 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker2_plus_connect +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = slightlycoarse -weight = -3 material = generic_pp +quality_type = slightlycoarse +setting_version = 22 +type = quality variant = 0.8 mm +weight = -3 [values] acceleration_enabled = True -acceleration_layer_0 = =acceleration_topbottom acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000) acceleration_print = 4000 acceleration_support = =math.ceil(acceleration_print * 2000 / 4000) @@ -22,10 +21,6 @@ acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000) acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000) acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000) brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + 4 * layer_height -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 20 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0 @@ -36,13 +31,11 @@ retraction_hop_enabled = True retraction_hop_only_when_collides = True retraction_prime_speed = 15 skin_overlap = 10 -speed_layer_0 = =speed_print speed_prime_tower = =speed_topbottom speed_print = 25 speed_support_interface = =speed_topbottom speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_travel = 250 -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 20 / 25) support_angle = 60 @@ -52,3 +45,4 @@ support_z_distance = =layer_height * 2 top_bottom_thickness = 1.5 travel_avoid_distance = 3 wall_0_inset = 0 + 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 ea9cf28d95..9a8f87f339 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 @@ -1,20 +1,18 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker2_plus_connect +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_tough_pla +quality_type = high +setting_version = 22 +type = quality variant = 0.25 mm +weight = 1 [values] -cool_min_layer_time = 5 -cool_min_speed = 10 infill_sparse_density = 20 -speed_layer_0 = =round(speed_print * 30 / 30) speed_print = 30 top_bottom_thickness = 0.72 + 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 4015fdbc41..f4c494114d 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 @@ -1,24 +1,22 @@ [general] -version = 4 -name = Fast definition = ultimaker2_plus_connect +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_tough_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.4 mm +weight = -2 [values] -cool_min_layer_time = 5 -cool_min_speed = 10 infill_sparse_density = 20 retraction_prime_speed = =retraction_speed -speed_layer_0 = =round(speed_print * 30 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_travel = 150 speed_wall = =math.ceil(speed_print * 40 / 50) top_bottom_thickness = 0.75 + 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 9aef437056..a382bb2d36 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 @@ -1,24 +1,22 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus_connect +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_tough_pla +quality_type = fast +setting_version = 22 +type = quality variant = 0.4 mm +weight = -1 [values] -cool_min_layer_time = 5 -cool_min_speed = 10 infill_sparse_density = 20 retraction_prime_speed = =retraction_speed -speed_layer_0 = =round(speed_print * 30 / 40) speed_print = 40 speed_topbottom = =math.ceil(speed_print * 30 / 40) speed_travel = 150 speed_wall = =math.ceil(speed_print * 30 / 40) top_bottom_thickness = 0.75 + 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 d594bc5468..f426935b2b 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 @@ -1,23 +1,21 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_tough_pla +quality_type = normal +setting_version = 22 +type = quality variant = 0.4 mm +weight = 0 [values] -cool_min_layer_time = 5 -cool_min_speed = 10 infill_sparse_density = 20 retraction_prime_speed = =retraction_speed -speed_layer_0 = =round(speed_print * 30 / 40) speed_print = 40 speed_topbottom = =math.ceil(speed_print * 20 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) top_bottom_thickness = 0.8 + 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 cea453207f..093332e5b7 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 @@ -1,24 +1,22 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = 0 material = generic_tough_pla +quality_type = fast +setting_version = 22 +type = quality variant = 0.6 mm +weight = 0 [values] -cool_min_layer_time = 5 -cool_min_speed = 10 infill_sparse_density = 20 retraction_prime_speed = =retraction_speed -speed_layer_0 = =round(speed_print * 30 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 20 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_print * 30 / 50) top_bottom_thickness = 1.2 + 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 72144e5cfa..c172116a67 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 @@ -1,21 +1,19 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus_connect +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -1 material = generic_tough_pla +quality_type = draft +setting_version = 22 +type = quality variant = 0.8 mm +weight = -1 [values] -cool_min_layer_time = 5 -cool_min_speed = 10 infill_sparse_density = 20 -speed_layer_0 = =round(speed_print * 30 / 40) speed_print = 40 speed_wall_0 = =math.ceil(speed_print * 25 / 40) top_bottom_thickness = 1.2 + 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 42c185a769..d4deb83116 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 @@ -1,33 +1,27 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker2_plus_connect +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_tpu +quality_type = high +setting_version = 22 +type = quality variant = 0.25 mm +weight = 1 [values] adhesion_type = brim brim_line_count = 20 cool_fan_speed = 60 cool_fan_speed_min = =cool_fan_speed * 35 / 60 -cool_min_layer_time = 7 -cool_min_speed = 15 infill_sparse_density = 10 layer_0_z_overlap = 0.1 raft_airgap = 0.2 -raft_base_line_spacing = 1 -raft_interface_line_spacing = 1 -raft_interface_line_width = 0.2 -raft_surface_line_width = 0.2 retraction_count_max = 15 retraction_hop_enabled = 0.2 -speed_layer_0 = =math.ceil(speed_print * 30 / 40) +speed_infill = =math.ceil(speed_print * 40 / 40) speed_print = 40 speed_support = 40 speed_topbottom = =math.ceil(speed_print * 35 / 40) @@ -38,4 +32,4 @@ support_angle = 45 support_enable = True support_z_distance = =layer_height * 2 top_bottom_thickness = 1.2 -speed_infill = =math.ceil(speed_print * 40 / 40) + 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 acf28f2ad3..a2b133afe6 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 @@ -1,31 +1,24 @@ [general] -version = 4 -name = Fine definition = ultimaker2_plus_connect +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_tpu +quality_type = normal +setting_version = 22 +type = quality variant = 0.4 mm +weight = 0 [values] adhesion_type = brim brim_line_count = 20 cool_fan_speed = 60 cool_fan_speed_min = =cool_fan_speed * 35 / 60 -cool_min_layer_time = 10 -cool_min_speed = 15 infill_sparse_density = 10 -raft_base_line_spacing = 2 -raft_base_line_width = 0.8 -raft_interface_line_spacing = 1 -raft_margin = 12 retraction_count_max = 15 retraction_hop_enabled = 0.2 -speed_layer_0 = =math.ceil(speed_print * 30 / 40) speed_print = 40 speed_support = 40 speed_topbottom = =math.ceil(speed_print * 35 / 40) @@ -36,3 +29,4 @@ support_angle = 45 support_enable = True support_z_distance = =layer_height * 2 top_bottom_thickness = 1.2 + 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 db3a812f97..090f8d08ee 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 @@ -1,34 +1,27 @@ [general] -version = 4 -name = Normal definition = ultimaker2_plus_connect +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_tpu +quality_type = fast +setting_version = 22 +type = quality variant = 0.6 mm +weight = -1 [values] adhesion_type = brim brim_line_count = 20 cool_fan_speed = 80 cool_fan_speed_min = =cool_fan_speed -cool_min_speed = 15 infill_sparse_density = 10 layer_0_z_overlap = 0.12 raft_airgap = 0.24 -raft_base_line_spacing = 1.2 -raft_base_line_width = 0.6 -raft_interface_line_spacing = 1.2 -raft_interface_line_width = 0.57 -raft_margin = 15 -raft_surface_line_width = 0.5 retraction_count_max = 15 retraction_hop_enabled = 0.2 -speed_layer_0 = =math.ceil(speed_print * 30 / 45) +speed_infill = =math.ceil(speed_print * 45 / 45) speed_print = 45 speed_support = 40 speed_topbottom = =math.ceil(speed_print * 35 / 45) @@ -39,4 +32,4 @@ support_angle = 45 support_enable = True support_z_distance = =layer_height * 2 top_bottom_thickness = 1.2 -speed_infill = =math.ceil(speed_print * 45 / 45) + 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 13423278e2..8b3691007f 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 @@ -1,19 +1,19 @@ [general] -version = 4 -name = Fine definition = ultimaker3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.25 +weight = 0 [values] cool_fan_speed = 40 infill_overlap = =0 if infill_sparse_density > 80 else 15 -material_final_print_temperature = =material_print_temperature - 5 retraction_prime_speed = 25 speed_topbottom = =math.ceil(speed_print * 30 / 55) + 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 a24b18563d..af1361012e 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 @@ -1,17 +1,18 @@ [general] -version = 4 -name = Fine definition = ultimaker3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_cpe +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.25 +weight = 0 [values] speed_infill = =math.ceil(speed_print * 40 / 55) speed_topbottom = =math.ceil(speed_print * 30 / 55) top_bottom_thickness = 0.8 + 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 3507862091..01ff2c06cb 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 @@ -1,28 +1,21 @@ [general] -version = 4 -name = Fine definition = ultimaker3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_nylon +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.25 +weight = 0 [values] -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 12 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 ooze_shield_angle = 40 -raft_acceleration = =acceleration_layer_0 -raft_airgap = =round(layer_height_0 * 0.85, 2) -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 3) -raft_jerk = =jerk_layer_0 -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) +raft_airgap = 0.15 retraction_min_travel = 5 skin_overlap = 50 speed_print = 70 @@ -31,3 +24,4 @@ speed_wall = =math.ceil(speed_print * 30 / 70) switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 + 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 e4af6a3846..40ced2d597 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 @@ -1,40 +1,33 @@ [general] -version = 4 -name = Fine - Experimental definition = ultimaker3 +name = Fine - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_pc -variant = AA 0.25 is_experimental = True +material = generic_pc +quality_type = normal +setting_version = 22 +type = quality +variant = AA 0.25 +weight = 0 [values] adhesion_type = brim brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + layer_height -cool_fan_speed_max = 50 -cool_min_layer_time_fan_speed_max = 5 -cool_min_speed = 5 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 -jerk_print = 25 machine_min_cool_heat_time_window = 15 multiple_mesh_overlap = 0 ooze_shield_angle = 40 prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 -raft_interface_thickness = =max(layer_height * 1.5, 0.225) retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 retraction_prime_speed = 15 skin_overlap = 30 -speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_travel = 250 @@ -45,3 +38,4 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 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 ce7087bf3a..143955118e 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 @@ -1,20 +1,20 @@ [general] -version = 4 -name = Fine definition = ultimaker3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.25 +weight = 0 [values] +material_print_temperature = =default_material_print_temperature - 5 +retraction_combing = all speed_infill = =math.ceil(speed_print * 40 / 55) speed_topbottom = =math.ceil(speed_print * 30 / 55) top_bottom_thickness = 0.8 -material_print_temperature = =default_material_print_temperature - 5 -retraction_combing_max_distance = 8 -retraction_combing = all + 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 770601ed22..f3e0c2a226 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 @@ -1,35 +1,30 @@ [general] -version = 4 -name = Fine definition = ultimaker3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.25 +weight = 0 [values] brim_width = 8 -cool_fan_full_at_height = =layer_height_0 -cool_min_speed = 10 infill_overlap = =0 if infill_sparse_density > 80 else 10 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = 190 retraction_hop = 0.2 skin_overlap = 5 -speed_layer_0 = =speed_print speed_print = 30 -speed_travel_layer_0 = 120 speed_wall = =math.ceil(speed_print * 25 / 30) speed_wall_0 = =math.ceil(speed_print * 20 / 30) top_bottom_thickness = 0.72 travel_avoid_distance = 0.4 wall_0_inset = 0.015 wall_0_wipe_dist = 0.25 + 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 f26fcd025f..d92bd0fc01 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 @@ -1,32 +1,25 @@ [general] -version = 4 -name = Fine - Experimental definition = ultimaker3 +name = Fine - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_pp -variant = AA 0.25 is_experimental = True +material = generic_pp +quality_type = normal +setting_version = 22 +type = quality +variant = AA 0.25 +weight = 0 [values] brim_width = 10 -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 5 -cool_min_speed = 2.5 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 -jerk_enabled = True -jerk_print = 25 machine_min_cool_heat_time_window = 15 -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_final_print_temperature = =material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 5 +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 15 -material_print_temperature_layer_0 = =material_print_temperature + 3 multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_size = 16 @@ -37,10 +30,8 @@ retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 retraction_prime_speed = 13 -speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_travel = 300 -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 25) support_angle = 50 @@ -50,3 +41,4 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 1 travel_avoid_distance = 3 wall_0_inset = 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 2efc031ab1..e5f179322f 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 @@ -1,34 +1,29 @@ [general] -version = 4 -name = Fine definition = ultimaker3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_tough_pla +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.25 +weight = 0 [values] brim_width = 8 -cool_fan_full_at_height = =layer_height_0 -cool_min_speed = 7 infill_overlap = =0 if infill_sparse_density > 80 else 10 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature - 15 skin_overlap = 5 -speed_layer_0 = =math.ceil(speed_print * 30 / 30) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) -speed_travel_layer_0 = 120 speed_wall = =math.ceil(speed_print * 25 / 30) speed_wall_0 = =math.ceil(speed_print * 20 / 30) top_bottom_thickness = 0.72 wall_0_inset = 0.015 wall_0_wipe_dist = 0.25 + 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 aca5d70367..c45711f591 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 @@ -1,26 +1,24 @@ [general] -version = 4 -name = Fast definition = ultimaker3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature + 10 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 prime_tower_enable = False skin_overlap = 20 speed_print = 60 -speed_layer_0 = =math.ceil(speed_print * 20 / 60) speed_topbottom = =math.ceil(speed_print * 35 / 60) speed_wall = =math.ceil(speed_print * 45 / 60) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) + 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 f200457a62..31e1d618c5 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 @@ -1,27 +1,23 @@ [general] -version = 4 -name = Normal definition = ultimaker3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_abs +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] -cool_min_speed = 7 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -material_standby_temperature = 100 prime_tower_enable = False speed_print = 60 -speed_layer_0 = =math.ceil(speed_print * 20 / 60) speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_wall = =math.ceil(speed_print * 40 / 60) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) + 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 2e2ae52399..5a34221c3f 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 @@ -1,27 +1,22 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker3 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality variant = AA 0.4 +weight = 1 [values] -cool_min_speed = 12 machine_nozzle_cool_down_speed = 0.8 machine_nozzle_heat_up_speed = 1.5 -material_standby_temperature = 100 material_print_temperature = =default_material_print_temperature - 5 -material_print_temperature_layer_0 = =material_print_temperature + 15 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 prime_tower_enable = False speed_print = 50 -speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 30 / 50) + 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 eae553f0ee..e24f639e45 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 @@ -1,25 +1,21 @@ [general] -version = 4 -name = Fine definition = ultimaker3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_print_temperature_layer_0 = =material_print_temperature + 10 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -material_standby_temperature = 100 prime_tower_enable = False speed_print = 55 -speed_layer_0 = =math.ceil(speed_print * 20 / 55) speed_topbottom = =math.ceil(speed_print * 30 / 55) speed_wall = =math.ceil(speed_print * 30 / 55) + 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 c2117937ef..c805a1f372 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 @@ -1,34 +1,31 @@ [general] -version = 4 -name = Fast definition = ultimaker3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_bam +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] brim_replaces_support = False -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed 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: see CURA-4248 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 skin_overlap = 20 -speed_layer_0 = =math.ceil(speed_print * 20 / 70) 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) -top_bottom_thickness = 1 -support_brim_enable = True -support_interface_enable = True -support_interface_density = =min(extruderValues('material_surface_energy')) -support_top_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height -support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height support_angle = 45 +support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height +support_brim_enable = True +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/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg index 64a6db0573..e3bfdb70a6 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 @@ -1,33 +1,31 @@ [general] -version = 4 -name = Normal definition = ultimaker3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_bam +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] brim_replaces_support = False -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -# prime_tower_enable: see CURA-4248 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 speed_print = 80 -speed_layer_0 = =math.ceil(speed_print * 20 / 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) -top_bottom_thickness = 1 -support_brim_enable = True -support_interface_enable = True -support_interface_density = =min(extruderValues('material_surface_energy')) -support_top_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 1) * layer_height -support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height support_angle = 45 +support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height +support_brim_enable = True +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/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg index b3cb9eb2f7..be177c0262 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 @@ -1,31 +1,28 @@ [general] -version = 4 -name = Fine definition = ultimaker3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_bam +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] brim_replaces_support = False -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed -cool_min_speed = 7 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_print_temperature = =default_material_print_temperature - 10 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 skin_overlap = 10 -speed_layer_0 = =math.ceil(speed_print * 20 / 70) -support_brim_enable = True -support_interface_enable = True -support_interface_density = =min(extruderValues('material_surface_energy')) -support_top_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 1) * layer_height -support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height support_angle = 45 +support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height +support_brim_enable = True +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/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg index 7a69d14931..d5de190eaa 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 @@ -1,30 +1,23 @@ [general] -version = 4 -name = Fast definition = ultimaker3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_cpe_plus +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] -cool_fan_speed_max = 80 -cool_min_speed = 5 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 -jerk_print = 25 layer_height = 0.2 machine_min_cool_heat_time_window = 15 -material_final_print_temperature = =material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 5 material_print_temperature = =default_material_print_temperature + 10 -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True @@ -32,7 +25,6 @@ retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True skin_overlap = 20 -speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 40 / 50) speed_travel = 250 @@ -40,3 +32,4 @@ speed_wall = =math.ceil(speed_print * 50 / 50) speed_wall_0 = =math.ceil(speed_wall * 40 / 50) support_z_distance = =layer_height wall_0_inset = 0 + 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 e7b6c725dd..625ca038f4 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 @@ -1,30 +1,23 @@ [general] -version = 4 -name = Normal definition = ultimaker3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_cpe_plus +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] -cool_fan_speed_max = 80 -cool_min_speed = 6 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 -jerk_print = 25 layer_height = 0.15 machine_min_cool_heat_time_window = 15 -material_final_print_temperature = =material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 5 material_print_temperature = =default_material_print_temperature + 10 -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True @@ -32,7 +25,6 @@ retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True skin_overlap = 20 -speed_layer_0 = =math.ceil(speed_print * 20 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_travel = 250 @@ -40,3 +32,4 @@ speed_wall = =math.ceil(speed_print * 45 / 45) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) support_z_distance = =layer_height wall_0_inset = 0 + 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 fb2e0330ef..670f6af244 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 @@ -1,32 +1,25 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker3 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_cpe_plus +quality_type = high +setting_version = 22 +type = quality variant = AA 0.4 +weight = 1 [values] -cool_fan_speed_max = 50 -cool_min_speed = 5 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 -jerk_print = 25 layer_height = 0.06 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 - 5 material_print_temperature = =default_material_print_temperature + 2 -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True @@ -34,7 +27,6 @@ retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True skin_overlap = 20 -speed_layer_0 = =math.ceil(speed_print * 20 / 40) speed_print = 40 speed_topbottom = =math.ceil(speed_print * 30 / 35) speed_travel = 250 @@ -42,3 +34,4 @@ speed_wall = =math.ceil(speed_print * 35 / 40) speed_wall_0 = =math.ceil(speed_wall * 30 / 35) support_z_distance = =layer_height wall_0_inset = 0 + 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 074270e0ec..3ae067ed7b 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 @@ -1,31 +1,24 @@ [general] -version = 4 -name = Fine definition = ultimaker3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_cpe_plus +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] -cool_fan_speed_max = 50 -cool_min_speed = 7 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 -jerk_print = 25 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 - 5 material_print_temperature = =default_material_print_temperature + 5 -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True @@ -33,7 +26,6 @@ retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True skin_overlap = 20 -speed_layer_0 = =math.ceil(speed_print * 20 / 40) speed_print = 40 speed_topbottom = =math.ceil(speed_print * 30 / 35) speed_travel = 250 @@ -41,3 +33,4 @@ speed_wall = =math.ceil(speed_print * 35 / 40) speed_wall_0 = =math.ceil(speed_wall * 30 / 35) support_z_distance = =layer_height wall_0_inset = 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 e43e125e89..0278f07805 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 @@ -1,24 +1,21 @@ [general] -version = 4 -name = Fast definition = ultimaker3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_cpe +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] material_print_temperature = =default_material_print_temperature + 10 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -material_standby_temperature = 100 skin_overlap = 20 speed_print = 60 -speed_layer_0 = =math.ceil(speed_print * 20 / 60) speed_topbottom = =math.ceil(speed_print * 35 / 60) speed_wall = =math.ceil(speed_print * 45 / 60) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) + 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 b676573793..6bfa219c56 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 @@ -1,24 +1,20 @@ [general] -version = 4 -name = Normal definition = ultimaker3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_cpe +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] -cool_min_speed = 7 material_print_temperature = =default_material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -material_standby_temperature = 100 speed_print = 60 -speed_layer_0 = =math.ceil(speed_print * 20 / 60) speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_wall = =math.ceil(speed_print * 40 / 60) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) + 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 5fe79e7351..d237d1def0 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 @@ -1,25 +1,21 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker3 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_cpe +quality_type = high +setting_version = 22 +type = quality variant = AA 0.4 +weight = 1 [values] -cool_min_speed = 12 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 5 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -material_standby_temperature = 100 speed_print = 50 -speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 30 / 50) + 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 a21f8c3bdf..cbc754bdf3 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 @@ -1,23 +1,20 @@ [general] -version = 4 -name = Fine definition = ultimaker3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_cpe +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -material_standby_temperature = 100 speed_print = 55 -speed_layer_0 = =math.ceil(speed_print * 20 / 55) speed_topbottom = =math.ceil(speed_print * 30 / 55) speed_wall = =math.ceil(speed_print * 30 / 55) + 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 5d08d0534b..498e061888 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 @@ -1,33 +1,23 @@ [general] -version = 4 -name = Fast definition = ultimaker3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_nylon +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] adhesion_type = brim -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 10 material_print_temperature = =default_material_print_temperature + 10 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -material_standby_temperature = 100 ooze_shield_angle = 40 -raft_acceleration = =acceleration_layer_0 -raft_airgap = =round(layer_height_0 * 0.85, 2) -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) -raft_jerk = =jerk_layer_0 -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) +raft_airgap = 0.25 skin_overlap = 50 -speed_layer_0 = =math.ceil(speed_print * 20 / 70) switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 + 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 0f6323ba1d..429d42f0ab 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 @@ -1,33 +1,23 @@ [general] -version = 4 -name = Normal definition = ultimaker3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_nylon +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] adhesion_type = brim -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 10 material_print_temperature = =default_material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -material_standby_temperature = 100 ooze_shield_angle = 40 -raft_acceleration = =acceleration_layer_0 -raft_airgap = =round(layer_height_0 * 0.85, 2) -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) -raft_jerk = =jerk_layer_0 -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) +raft_airgap = 0.25 skin_overlap = 50 -speed_layer_0 = =math.ceil(speed_print * 20 / 70) switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 + 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 8e16021f89..b54be179d1 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 @@ -1,32 +1,22 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker3 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_nylon +quality_type = high +setting_version = 22 +type = quality variant = AA 0.4 +weight = 1 [values] adhesion_type = brim -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 15 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -material_standby_temperature = 100 ooze_shield_angle = 40 -raft_acceleration = =acceleration_layer_0 -raft_airgap = =round(layer_height_0 * 0.85, 2) -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) -raft_jerk = =jerk_layer_0 -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) +raft_airgap = 0.25 skin_overlap = 50 -speed_layer_0 = =math.ceil(speed_print * 20 / 70) switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 + 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 432c6ef3d9..4e78688e6f 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 @@ -1,32 +1,22 @@ [general] -version = 4 -name = Fine definition = ultimaker3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_nylon +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] adhesion_type = brim -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 12 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -material_standby_temperature = 100 ooze_shield_angle = 40 -raft_acceleration = =acceleration_layer_0 -raft_airgap = =round(layer_height_0 * 0.85, 2) -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) -raft_jerk = =jerk_layer_0 -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) +raft_airgap = 0.25 skin_overlap = 50 -speed_layer_0 = =math.ceil(speed_print * 20 / 70) switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 + 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 df4ea5ffab..73e2798c35 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 @@ -1,49 +1,38 @@ [general] -version = 4 -name = Fast definition = ultimaker3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pc +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] adhesion_type = raft brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + layer_height -cool_fan_speed_max = 90 -cool_min_layer_time_fan_speed_max = 5 -cool_min_speed = 6 - infill_overlap = 0 infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 -jerk_print = 25 layer_height = 0.2 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 - 5 material_print_temperature = =default_material_print_temperature + 10 -material_standby_temperature = 100 multiple_mesh_overlap = 0 ooze_shield_angle = 40 prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 -raft_interface_thickness = =max(layer_height * 1.5, 0.225) retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 retraction_prime_speed = 15 skin_overlap = 30 -speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_travel = 250 @@ -54,3 +43,4 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 0 + 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 5d01ce5f28..47c5b8fedc 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 @@ -1,47 +1,37 @@ [general] -version = 4 -name = Normal definition = ultimaker3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pc +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] adhesion_type = raft brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + layer_height -cool_fan_speed_max = 85 -cool_min_layer_time_fan_speed_max = 5 -cool_min_speed = 7 infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 -jerk_print = 25 layer_height = 0.15 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 - 5 material_print_temperature = =default_material_print_temperature + 10 -material_standby_temperature = 100 multiple_mesh_overlap = 0 ooze_shield_angle = 40 prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 -raft_interface_thickness = =max(layer_height * 1.5, 0.225) retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 retraction_prime_speed = 15 skin_overlap = 30 -speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_travel = 250 @@ -52,3 +42,4 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 0 + 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 dd6b9063b9..806bdaecde 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 @@ -1,49 +1,38 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker3 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pc +quality_type = high +setting_version = 22 +type = quality variant = AA 0.4 +weight = 1 [values] adhesion_type = raft brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + layer_height -cool_fan_speed_max = 50 -cool_min_layer_time_fan_speed_max = 5 -cool_min_speed = 8 - infill_overlap = 0 infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 -jerk_print = 25 layer_height = 0.06 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 - 5 material_print_temperature = =default_material_print_temperature - 10 -material_standby_temperature = 100 multiple_mesh_overlap = 0 ooze_shield_angle = 40 prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 -raft_interface_thickness = =max(layer_height * 1.5, 0.225) retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 retraction_prime_speed = 15 skin_overlap = 30 -speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_travel = 250 @@ -54,3 +43,4 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 0 + 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 7bed5ac6d2..859f59664b 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 @@ -1,46 +1,35 @@ [general] -version = 4 -name = Fine definition = ultimaker3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pc +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] adhesion_type = raft brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + layer_height -cool_fan_speed_max = 50 -cool_min_layer_time_fan_speed_max = 5 -cool_min_speed = 5 - infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 -jerk_print = 25 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 - 5 -material_standby_temperature = 100 multiple_mesh_overlap = 0 ooze_shield_angle = 40 prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 -raft_interface_thickness = =max(layer_height * 1.5, 0.225) retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 retraction_prime_speed = 15 skin_overlap = 30 -speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_travel = 250 @@ -51,3 +40,4 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 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 77e631a969..72990ea79e 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 @@ -1,26 +1,22 @@ [general] -version = 4 -name = Fast definition = ultimaker3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] material_print_temperature = =default_material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature -material_final_print_temperature = =material_print_temperature - 5 -material_standby_temperature = 100 +retraction_combing = all skin_overlap = 20 speed_print = 60 -speed_layer_0 = =math.ceil(speed_print * 20 / 60) speed_topbottom = =math.ceil(speed_print * 35 / 60) speed_wall = =math.ceil(speed_print * 45 / 60) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) -retraction_combing_max_distance = 8 -retraction_combing = all + 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 3a6c9fcfd5..5b26b05953 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 @@ -1,27 +1,22 @@ [general] -version = 4 -name = Normal definition = ultimaker3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_petg +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] -cool_min_speed = 7 material_print_temperature = =default_material_print_temperature -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -material_standby_temperature = 100 +retraction_combing = all +speed_infill = =math.ceil(speed_print * 50 / 60) speed_print = 60 -speed_layer_0 = =math.ceil(speed_print * 20 / 60) speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_wall = =math.ceil(speed_print * 40 / 60) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -speed_infill = =math.ceil(speed_print * 50 / 60) -retraction_combing_max_distance = 8 -retraction_combing = all + 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 335593cab2..9ecea87834 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 @@ -1,27 +1,23 @@ [general] -version = 4 -name = Fine definition = ultimaker3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 5 -material_initial_print_temperature = =material_print_temperature - 10 -material_final_print_temperature = =material_print_temperature - 15 -material_standby_temperature = 100 +retraction_combing = all +speed_infill = =math.ceil(speed_print * 45 / 55) speed_print = 55 -speed_layer_0 = =math.ceil(speed_print * 20 / 55) speed_topbottom = =math.ceil(speed_print * 30 / 55) speed_wall = =math.ceil(speed_print * 30 / 55) -speed_infill = =math.ceil(speed_print * 45 / 55) -retraction_combing_max_distance = 8 -retraction_combing = all + 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 d260cfbc2d..1d44e48193 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 @@ -1,27 +1,24 @@ [general] -version = 4 -name = Fast definition = ultimaker3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -material_standby_temperature = 100 prime_tower_enable = False skin_overlap = 20 -speed_layer_0 = =math.ceil(speed_print * 20 / 70) speed_topbottom = =math.ceil(speed_print * 40 / 70) speed_wall = =math.ceil(speed_print * 55 / 70) speed_wall_0 = =math.ceil(speed_wall * 45 / 50) top_bottom_thickness = 1 + 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 757d988b76..6b99ed5a70 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 @@ -1,26 +1,23 @@ [general] -version = 4 -name = Normal definition = ultimaker3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pla +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_standby_temperature = 100 prime_tower_enable = False speed_print = 80 -speed_layer_0 = =math.ceil(speed_print * 20 / 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) top_bottom_thickness = 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 7ee4ae5fd9..97be45babc 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 @@ -1,28 +1,24 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker3 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality variant = AA 0.4 +weight = 1 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed -cool_min_speed = 10 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -material_standby_temperature = 100 prime_tower_enable = False skin_overlap = 10 speed_print = 60 -speed_layer_0 = =math.ceil(speed_print * 20 / 60) speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_wall = =math.ceil(speed_print * 30 / 60) top_bottom_thickness = 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 35ffb3a3f3..f305caa82d 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 @@ -1,24 +1,20 @@ [general] -version = 4 -name = Fine definition = ultimaker3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed -cool_min_speed = 7 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_standby_temperature = 100 prime_tower_enable = False skin_overlap = 10 -speed_layer_0 = =math.ceil(speed_print * 20 / 70) top_bottom_thickness = 1 + 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 c151870622..bc39d11e3f 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 @@ -1,38 +1,28 @@ [general] -version = 4 -name = Fast definition = ultimaker3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pp +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] brim_width = 20 -cool_fan_speed_max = 100 -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 7 -cool_min_speed = 2.5 - infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 -jerk_enabled = True -jerk_print = 25 layer_height = 0.2 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_final_print_temperature = =material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 5 +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 5 -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_size = 16 @@ -44,11 +34,9 @@ retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 retraction_prime_speed = 18 -speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_travel = 300 -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 25) support_angle = 50 @@ -56,3 +44,4 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 wall_0_inset = 0 + 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 7e21bec438..f1fc634a3f 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 @@ -1,38 +1,28 @@ [general] -version = 4 -name = Normal definition = ultimaker3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pp +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] brim_width = 20 -cool_fan_speed_max = 100 -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 7 -cool_min_speed = 2.5 - infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 -jerk_enabled = True -jerk_print = 25 layer_height = 0.15 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_bed_temperature_layer_0 = =material_bed_temperature + 5 -material_final_print_temperature = =material_print_temperature - 12 -material_initial_print_temperature = =material_print_temperature - 2 +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 13 -material_print_temperature_layer_0 = =material_print_temperature + 3 -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_size = 16 @@ -43,11 +33,9 @@ retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 retraction_prime_speed = 18 -speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_travel = 300 -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 25) support_angle = 50 @@ -56,3 +44,4 @@ switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 top_bottom_thickness = 1.1 wall_0_inset = 0 + 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 c47bfb3c18..1bd725e85d 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 @@ -1,36 +1,27 @@ [general] -version = 4 -name = Fine definition = ultimaker3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pp +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] brim_width = 20 -cool_fan_speed_max = 100 -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 7 -cool_min_speed = 2.5 - infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 -jerk_print = 25 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_final_print_temperature = =material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 5 +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 15 -material_print_temperature_layer_0 = =material_print_temperature + 3 -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_size = 16 @@ -41,11 +32,9 @@ retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 retraction_prime_speed = 18 -speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_travel = 300 -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 25) support_angle = 50 @@ -54,3 +43,4 @@ switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 top_bottom_thickness = 1 wall_0_inset = 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 227b16db92..477f85f5b6 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 @@ -1,32 +1,26 @@ [general] -version = 4 -name = Fast definition = ultimaker3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_tough_pla +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed -cool_min_speed = 7 -jerk_print = 25 -layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature -10 -material_standby_temperature = 100 prime_tower_enable = False skin_overlap = 20 -speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_print = 50 speed_roofing = =math.ceil(speed_wall * 20 / 24) speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 36 / 50) speed_wall_0 = =math.ceil(speed_print * 26 / 50) top_bottom_thickness = 1.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 e668141c2f..13e980cf6a 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 @@ -1,28 +1,24 @@ [general] -version = 4 -name = Normal definition = ultimaker3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_tough_pla +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed -layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature -10 -material_standby_temperature = 100 prime_tower_enable = False -speed_layer_0 = =math.ceil(speed_print * 20 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) top_bottom_thickness = 1.2 + 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 12d0256deb..636034bab1 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 @@ -1,30 +1,25 @@ [general] -version = 4 -name = Fine definition = ultimaker3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_tough_pla +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed -cool_min_speed = 7 -layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 15 -material_standby_temperature = 100 prime_tower_enable = False skin_overlap = 10 -speed_layer_0 = =math.ceil(speed_print * 20 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) top_bottom_thickness = 1.2 + 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 9c02ed5200..74b4c4c485 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 @@ -1,38 +1,31 @@ [general] -version = 4 -name = Fast definition = ultimaker3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] brim_width = 8.75 -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 4 gradual_infill_step_height = =5 * layer_height - infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 -jerk_print = 25 layer_height = 0.2 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 +material_final_print_temperature = =material_print_temperature - 10 material_flow = 106 -material_initial_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 2 -material_print_temperature_layer_0 = =material_print_temperature + 15 -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_wipe_enabled = True retraction_count_max = 15 @@ -43,7 +36,6 @@ retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 skin_line_width = =round(line_width / 0.8, 2) skin_overlap = 5 -speed_layer_0 = =math.ceil(speed_print * 18 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) speed_travel = 300 @@ -56,3 +48,4 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 0.7 travel_avoid_distance = 1.5 wall_0_inset = 0 + 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 fe3f453f9c..8d4bf4bc39 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 @@ -1,38 +1,31 @@ [general] -version = 4 -name = Normal definition = ultimaker3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_tpu +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] brim_width = 8.75 -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 4 gradual_infill_step_height = =5 * layer_height - infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 -jerk_print = 25 layer_height = 0.15 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 +material_final_print_temperature = =material_print_temperature - 10 material_flow = 106 -material_initial_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 2 -material_print_temperature_layer_0 = =material_print_temperature + 15 -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_wipe_enabled = True retraction_amount = 7 @@ -44,7 +37,6 @@ retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 skin_line_width = =round(line_width / 0.8, 2) skin_overlap = 5 -speed_layer_0 = =math.ceil(speed_print * 18 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) speed_travel = 300 @@ -57,3 +49,4 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 0.7 travel_avoid_distance = 1.5 wall_0_inset = 0 + 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 c824bc59ab..519b3bdd44 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 @@ -1,36 +1,29 @@ [general] -version = 4 -name = Fine definition = ultimaker3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_tpu +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] brim_width = 8.75 -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 4 gradual_infill_step_height = =5 * layer_height - infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 -jerk_print = 25 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 +material_final_print_temperature = =material_print_temperature - 10 material_flow = 106 -material_initial_print_temperature = =material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature + 17 -material_standby_temperature = 100 +material_initial_print_temperature = =material_print_temperature - 10 multiple_mesh_overlap = 0 prime_tower_wipe_enabled = True retraction_count_max = 15 @@ -41,7 +34,6 @@ retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 skin_line_width = =round(line_width / 0.8, 2) skin_overlap = 5 -speed_layer_0 = =math.ceil(speed_print * 18 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) speed_travel = 300 @@ -54,3 +46,4 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 0.7 travel_avoid_distance = 1.5 wall_0_inset = 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 2720faa577..adb2500a70 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 @@ -1,20 +1,20 @@ [general] -version = 4 -name = Fast definition = ultimaker3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] material_print_temperature = =default_material_print_temperature + 25 -material_standby_temperature = 100 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) + 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 fd8e40e1a6..ae7d70cb11 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 @@ -1,22 +1,22 @@ [general] -version = 4 -name = Sprint definition = ultimaker3 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_abs +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] layer_height = 0.4 material_print_temperature = =default_material_print_temperature + 30 -material_standby_temperature = 100 +speed_infill = =math.ceil(speed_print * 37 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 37 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -speed_infill = =math.ceil(speed_print * 37 / 50) + 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 5936e1edbd..679fe38c7c 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 @@ -1,21 +1,21 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker3 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_abs +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] layer_height = 0.3 material_print_temperature = =default_material_print_temperature + 27 -material_standby_temperature = 100 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) + 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 4a92c4e0ef..afa3b10a6b 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 @@ -1,34 +1,30 @@ [general] -version = 4 -name = Fast - Experimental definition = ultimaker3 +name = Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 -material = generic_cpe_plus -variant = AA 0.8 is_experimental = True +material = generic_cpe_plus +quality_type = draft +setting_version = 22 +type = quality +variant = AA 0.8 +weight = -2 [values] brim_width = 14 -cool_fan_full_at_height = =layer_height_0 + 14 * layer_height machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 10 -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 prime_tower_enable = True retraction_hop = 0.1 retraction_hop_enabled = False skin_overlap = 0 -speed_layer_0 = =math.ceil(speed_print * 15 / 50) speed_print = 50 -speed_slowdown_layers = 15 speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_z_distance = =layer_height top_bottom_thickness = 1.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 58a7da1b9d..4134e74d7f 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 @@ -1,36 +1,32 @@ [general] -version = 4 -name = Sprint - Experimental definition = ultimaker3 +name = Sprint - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 -material = generic_cpe_plus -variant = AA 0.8 is_experimental = True +material = generic_cpe_plus +quality_type = superdraft +setting_version = 22 +type = quality +variant = AA 0.8 +weight = -4 [values] brim_width = 14 -cool_fan_full_at_height = =layer_height_0 + 7 * layer_height layer_height = 0.4 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 prime_tower_enable = True retraction_hop = 0.1 retraction_hop_enabled = False skin_overlap = 0 -speed_layer_0 = =math.ceil(speed_print * 15 / 50) +speed_infill = =math.ceil(speed_print * 40 / 50) speed_print = 50 -speed_slowdown_layers = 8 speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 35 / 40) -speed_infill = =math.ceil(speed_print * 40 / 50) support_z_distance = =layer_height top_bottom_thickness = 1.2 + 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 901db7e3ab..31d12a0fb3 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 @@ -1,36 +1,31 @@ [general] -version = 4 -name = Extra Fast - Experimental definition = ultimaker3 +name = Extra Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 -material = generic_cpe_plus -variant = AA 0.8 is_experimental = True +material = generic_cpe_plus +quality_type = verydraft +setting_version = 22 +type = quality +variant = AA 0.8 +weight = -3 [values] brim_width = 14 -cool_fan_full_at_height = =layer_height_0 + 9 * layer_height - layer_height = 0.3 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 7 -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 prime_tower_enable = True retraction_hop = 0.1 retraction_hop_enabled = False skin_overlap = 0 -speed_layer_0 = =math.ceil(speed_print * 15 / 50) speed_print = 50 -speed_slowdown_layers = 10 speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_z_distance = =layer_height top_bottom_thickness = 1.2 + 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 3f277bdf50..47a160b63d 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 @@ -1,21 +1,21 @@ [general] -version = 4 -name = Fast definition = ultimaker3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_cpe +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] brim_width = 15 material_print_temperature = =default_material_print_temperature + 15 -material_standby_temperature = 100 prime_tower_enable = True speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) + 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 1cfd1a7132..fa6985645a 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 @@ -1,24 +1,24 @@ [general] -version = 4 -name = Sprint definition = ultimaker3 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_cpe +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] brim_width = 15 layer_height = 0.4 material_print_temperature = =default_material_print_temperature + 20 -material_standby_temperature = 100 prime_tower_enable = True +speed_infill = =math.ceil(speed_print * 33 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 30 / 45) speed_wall = =math.ceil(speed_print * 33 / 45) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -speed_infill = =math.ceil(speed_print * 33 / 45) + 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 0cb877bc19..ba0421ad11 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 @@ -1,22 +1,22 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker3 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_cpe +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] brim_width = 15 layer_height = 0.3 material_print_temperature = =default_material_print_temperature + 17 -material_standby_temperature = 100 prime_tower_enable = True speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) + 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 b90e50c955..4f44e7fe59 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 @@ -1,31 +1,25 @@ [general] -version = 4 -name = Fast definition = ultimaker3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_nylon +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] brim_width = 5.6 -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 10 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 -material_standby_temperature = 100 ooze_shield_angle = 40 prime_tower_enable = True -raft_acceleration = =acceleration_layer_0 -raft_airgap = =round(layer_height_0 * 0.85, 2) -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) +raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 + 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 cd6fa26ba8..f13bb3bbc7 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 @@ -1,32 +1,26 @@ [general] -version = 4 -name = Sprint definition = ultimaker3 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_nylon +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] brim_width = 5.6 -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 10 layer_height = 0.4 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 -material_standby_temperature = 100 ooze_shield_angle = 40 prime_tower_enable = True -raft_acceleration = =acceleration_layer_0 -raft_airgap = =round(layer_height_0 * 0.85, 2) -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) +raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 + 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 b075a97c8e..c945d31b54 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 @@ -1,32 +1,26 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker3 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_nylon +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] brim_width = 5.6 -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 10 layer_height = 0.3 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 -material_standby_temperature = 100 ooze_shield_angle = 40 prime_tower_enable = True -raft_acceleration = =acceleration_layer_0 -raft_airgap = =round(layer_height_0 * 0.85, 2) -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) +raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 + 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 30ed901c9e..189621449c 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 @@ -1,29 +1,24 @@ [general] -version = 4 -name = Fast - Experimental definition = ultimaker3 +name = Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 -material = generic_pc -variant = AA 0.8 is_experimental = True +material = generic_pc +quality_type = draft +setting_version = 22 +type = quality +variant = AA 0.8 +weight = -2 [values] brim_width = 14 -cool_fan_full_at_height = =layer_height_0 + 14 * layer_height material_print_temperature = =default_material_print_temperature - 5 -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 raft_airgap = 0.5 -raft_margin = 15 skin_overlap = 0 -speed_layer_0 = =math.ceil(speed_print * 15 / 50) speed_print = 50 -speed_slowdown_layers = 15 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) + 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 d1785e2892..513cbf51c2 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 @@ -1,31 +1,25 @@ [general] -version = 4 -name = Sprint - Experimental definition = ultimaker3 +name = Sprint - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 -material = generic_pc -variant = AA 0.8 is_experimental = True +material = generic_pc +quality_type = superdraft +setting_version = 22 +type = quality +variant = AA 0.8 +weight = -4 [values] brim_width = 14 -cool_fan_full_at_height = =layer_height_0 + 7 * layer_height - layer_height = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 raft_airgap = 0.5 -raft_margin = 15 skin_overlap = 0 -speed_layer_0 = =math.ceil(speed_print * 15 / 50) +speed_infill = =math.ceil(speed_print * 37 / 50) speed_print = 50 -speed_slowdown_layers = 8 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 37 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -speed_infill = =math.ceil(speed_print * 37 / 50) + 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 2b18f0b407..c205489670 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 @@ -1,31 +1,25 @@ [general] -version = 4 -name = Extra Fast - Experimental definition = ultimaker3 +name = Extra Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 -material = generic_pc -variant = AA 0.8 is_experimental = True +material = generic_pc +quality_type = verydraft +setting_version = 22 +type = quality +variant = AA 0.8 +weight = -3 [values] brim_width = 14 -cool_fan_full_at_height = =layer_height_0 + 9 * layer_height - layer_height = 0.3 material_print_temperature = =default_material_print_temperature - 2 -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 raft_airgap = 0.5 -raft_margin = 15 skin_overlap = 0 -speed_layer_0 = =math.ceil(speed_print * 15 / 50) speed_print = 50 -speed_slowdown_layers = 10 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) + 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 fc1a36f83f..3eafff9a07 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 @@ -1,23 +1,22 @@ [general] -version = 4 -name = Fast definition = ultimaker3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] brim_width = 7 material_print_temperature = =default_material_print_temperature - 5 -material_standby_temperature = 100 prime_tower_enable = True +retraction_combing = all speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) -retraction_combing_max_distance = 8 -retraction_combing = all + 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 f8d6b4df20..fe36a86948 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 @@ -1,26 +1,25 @@ [general] -version = 4 -name = Sprint definition = ultimaker3 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_petg +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] brim_width = 7 layer_height = 0.4 material_print_temperature = =default_material_print_temperature - 5 -material_standby_temperature = 100 prime_tower_enable = True +retraction_combing = all +speed_infill = =math.ceil(speed_print * 33 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 30 / 45) speed_wall = =math.ceil(speed_print * 33 / 45) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -speed_infill = =math.ceil(speed_print * 33 / 45) -retraction_combing_max_distance = 8 -retraction_combing = all + 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 2e34cf5d2b..2bba762e2d 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 @@ -1,24 +1,23 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker3 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_petg +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] brim_width = 7 layer_height = 0.3 material_print_temperature = =default_material_print_temperature - 5 -material_standby_temperature = 100 prime_tower_enable = True +retraction_combing = all speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) -retraction_combing_max_distance = 8 -retraction_combing = all + 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 7e0fdd459a..57a830402a 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 @@ -1,34 +1,28 @@ [general] -version = 4 -name = Fast definition = ultimaker3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 -material_standby_temperature = 100 prime_tower_enable = True -retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) +speed_wall_x = =speed_wall support_angle = 70 top_bottom_thickness = =layer_height * 4 + 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 228358c8a0..40f710327f 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 @@ -1,37 +1,30 @@ [general] -version = 4 -name = Sprint definition = ultimaker3 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_pla +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' layer_height = 0.4 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 15 -material_standby_temperature = 100 prime_tower_enable = True -raft_margin = 10 -retract_at_layer_change = False +speed_infill = =math.ceil(speed_print * 35 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 35 / 45) -speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) -speed_infill = =math.ceil(speed_print * 35 / 45) +speed_wall_x = =speed_wall support_angle = 70 top_bottom_thickness = =layer_height * 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 df8a7a4d29..702c64bb78 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 @@ -1,35 +1,29 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker3 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_pla +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' layer_height = 0.3 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 -material_standby_temperature = 100 prime_tower_enable = True -retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) +speed_wall_x = =speed_wall support_angle = 70 top_bottom_thickness = =layer_height * 4 + 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 5ac58234fd..031cefbe46 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 @@ -1,31 +1,24 @@ [general] -version = 4 -name = Fast definition = ultimaker3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pp +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] brim_width = 25 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 17 -top_skin_expand_distance = =line_width * 2 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' -material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature = =default_material_print_temperature - 2 -material_print_temperature_layer_0 = =default_material_print_temperature + 2 -material_standby_temperature = 100 multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 10 -retract_at_layer_change = False retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 @@ -37,4 +30,6 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 +top_skin_expand_distance = =line_width * 2 wall_0_wipe_dist = =line_width * 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 0975a2dcaa..551e05f0bd 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 @@ -1,41 +1,36 @@ [general] -version = 4 -name = Sprint definition = ultimaker3 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_pp +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] brim_width = 25 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 17 -top_skin_expand_distance = =line_width * 2 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' -material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature = =default_material_print_temperature + 2 -material_print_temperature_layer_0 = =default_material_print_temperature + 2 -material_standby_temperature = 100 multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 20 -retract_at_layer_change = False retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 retraction_min_travel = 1.5 retraction_prime_speed = 15 +speed_infill = =math.ceil(speed_wall * 30 / 30) speed_travel = 300 speed_wall_x = =math.ceil(speed_wall * 30 / 30) -speed_infill = =math.ceil(speed_wall * 30 / 30) switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 +top_skin_expand_distance = =line_width * 2 wall_0_wipe_dist = =line_width * 2 + 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 a18414cf7e..4ad2973eb1 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 @@ -1,31 +1,24 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker3 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_pp +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] brim_width = 25 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 17 -top_skin_expand_distance = =line_width * 2 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' layer_height = 0.3 -material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 2 -material_standby_temperature = 100 multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 15 -retract_at_layer_change = False retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 @@ -37,4 +30,6 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 +top_skin_expand_distance = =line_width * 2 wall_0_wipe_dist = =line_width * 2 + 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 569a214004..95acfbe1e1 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 @@ -1,30 +1,24 @@ [general] -version = 4 -name = Fast definition = ultimaker3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_tough_pla +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' -layer_height_0 = 0.4 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 0 prime_tower_enable = False -retract_at_layer_change = False speed_print = 45 support_angle = 70 top_bottom_thickness = =layer_height * 6 + 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 85442a1a0e..bb16356c0e 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 @@ -1,31 +1,23 @@ [general] -version = 4 -name = Sprint definition = ultimaker3 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_tough_pla +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' -layer_height_0 = 0.4 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 5 prime_tower_enable = False -raft_margin = 10 -retract_at_layer_change = False speed_infill = =math.ceil(speed_print * 30 / 30) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) @@ -33,3 +25,4 @@ speed_wall = =math.ceil(speed_print * 25/ 30) speed_wall_0 = =math.ceil(speed_print * 20 / 30) support_angle = 70 top_bottom_thickness = =layer_height * 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 ffc82adfb2..f966c0c56a 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 @@ -1,35 +1,27 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker3 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_tough_pla +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' -layer_height_0 = 0.4 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 5 -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 prime_tower_enable = False -retract_at_layer_change = False speed_infill = =math.ceil(speed_print * 30 / 35) speed_topbottom = =math.ceil(speed_print * 20 / 35) speed_wall = =math.ceil(speed_print * 25/ 35) speed_wall_0 = =math.ceil(speed_print * 20 / 35) support_angle = 70 top_bottom_thickness = =layer_height * 4 + 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 9d5a364a53..ac65ddbacd 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 @@ -1,35 +1,30 @@ [general] -version = 4 -name = Fast definition = ultimaker3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] brim_width = 8.75 -cool_min_layer_time_fan_speed_max = 6 -top_skin_expand_distance = =line_width * 2 gradual_infill_step_height = =4 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 -material_final_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature - 10 material_flow = 105 -material_initial_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 -material_print_temperature_layer_0 = =material_print_temperature + 19 -material_standby_temperature = 100 multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 -retract_at_layer_change = False retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 @@ -46,5 +41,7 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 +top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 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 07c6aa807e..be99f146bb 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 @@ -1,52 +1,49 @@ [general] -version = 4 -name = Sprint definition = ultimaker3 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_tpu +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] brim_width = 8.75 -cool_min_layer_time_fan_speed_max = 6 -top_skin_expand_distance = =line_width * 2 gradual_infill_step_height = =4 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 15 layer_height = 0.4 machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 -material_final_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature - 10 material_flow = 105 -material_initial_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 2 -material_print_temperature_layer_0 = =material_print_temperature +15 -material_standby_temperature = 100 multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 -retract_at_layer_change = False retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 +speed_infill = =speed_print speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) speed_travel = 300 speed_wall = =speed_print speed_wall_x = =speed_print -speed_infill = =speed_print support_angle = 50 switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 +top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 2 + 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 bc8a252e97..4b21f7e531 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 @@ -1,35 +1,30 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker3 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_tpu +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] brim_width = 8.75 -cool_min_layer_time_fan_speed_max = 6 -top_skin_expand_distance = =line_width * 2 gradual_infill_step_height = =4 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 15 layer_height = 0.3 machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 -material_final_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature - 10 material_flow = 105 -material_initial_print_temperature = =material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature + 17 -material_standby_temperature = 100 +material_initial_print_temperature = =material_print_temperature - 10 multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 -retract_at_layer_change = False retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 @@ -46,5 +41,7 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 +top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 2 + 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 5ac88c13bc..8569b4edf2 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 @@ -1,25 +1,24 @@ [general] -version = 4 -name = Fast definition = ultimaker3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pva +quality_type = draft +setting_version = 22 +type = quality variant = BB 0.4 +weight = -2 [values] brim_replaces_support = False +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature + 10 -material_standby_temperature = 100 prime_tower_enable = False retraction_count_max = 5 skin_overlap = 20 +skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) support_brim_enable = True support_interface_enable = True -skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) -cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -support_use_towers = True + 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 bc3928bab4..27eb5ebadc 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 @@ -1,25 +1,25 @@ [general] -version = 4 -name = Normal definition = ultimaker3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pva +quality_type = fast +setting_version = 22 +type = quality variant = BB 0.4 +weight = -1 [values] brim_replaces_support = False +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature + 5 -material_standby_temperature = 100 prime_tower_enable = False retraction_count_max = 5 skin_overlap = 15 -support_brim_enable = True -support_interface_enable = True skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) -cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -support_use_towers = True +support_brim_enable = True +support_infill_sparse_thickness = =2*layer_height +support_interface_enable = True + 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 9dd15079c7..f9c6c09143 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 @@ -1,23 +1,23 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker3 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pva +quality_type = high +setting_version = 22 +type = quality variant = BB 0.4 +weight = 1 [values] brim_replaces_support = False -material_standby_temperature = 100 +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) prime_tower_enable = False retraction_count_max = 5 -support_brim_enable = True -support_interface_enable = True skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) -cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -support_use_towers = True +support_brim_enable = True +support_infill_sparse_thickness = =3*layer_height +support_interface_enable = True + 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 7e22a08939..b3588e1892 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 @@ -1,23 +1,23 @@ [general] -version = 4 -name = Fine definition = ultimaker3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pva +quality_type = normal +setting_version = 22 +type = quality variant = BB 0.4 +weight = 0 [values] brim_replaces_support = False -material_standby_temperature = 100 +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) prime_tower_enable = False retraction_count_max = 5 -support_brim_enable = True -support_interface_enable = True skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) -cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -support_use_towers = True +support_brim_enable = True +support_infill_sparse_thickness = =2*layer_height +support_interface_enable = True + 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 d7003ca582..6b07a1ae82 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 @@ -1,23 +1,22 @@ [general] -version = 4 -name = Fast definition = ultimaker3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pva +quality_type = draft +setting_version = 22 +type = quality variant = BB 0.8 +weight = -2 [values] brim_replaces_support = False +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature + 5 -material_standby_temperature = 100 retraction_count_max = 5 +skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) support_brim_enable = True support_interface_enable = True -skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) -cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -support_use_towers = True + 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 e298848a90..39443367ae 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 @@ -1,23 +1,21 @@ [general] -version = 4 -name = Sprint definition = ultimaker3 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_pva +quality_type = superdraft +setting_version = 22 +type = quality variant = BB 0.8 +weight = -4 [values] brim_replaces_support = False -layer_height = 0.4 -material_standby_temperature = 100 +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) retraction_count_max = 5 +skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) support_brim_enable = True support_interface_enable = True -skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) -cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -support_use_towers = True + 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 f52206e9b3..d43237b232 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 @@ -1,24 +1,21 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker3 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_pva +quality_type = verydraft +setting_version = 22 +type = quality variant = BB 0.8 +weight = -3 [values] brim_replaces_support = False -layer_height = 0.3 -material_standby_temperature = 100 -retraction_count_max = 5 -support_brim_enable = True -support_infill_sparse_thickness = 0.3 -support_interface_enable = True -skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -support_use_towers = True +retraction_count_max = 5 +skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) +support_brim_enable = True +support_interface_enable = True + diff --git a/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg index d0a429231c..820c25f6ba 100644 --- a/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Fast definition = ultimaker3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] layer_height = 0.2 + diff --git a/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg index fd9ec86036..1db93cc34f 100644 --- a/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = ultimaker3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.15 -support_infill_sparse_thickness = =2*layer_height + diff --git a/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg index 3522f0b5a0..c27bc8b96c 100644 --- a/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg @@ -1,15 +1,15 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker3 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] layer_height = 0.06 -support_infill_sparse_thickness = =3*layer_height + diff --git a/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg index 5955a587f4..3f1f52f563 100644 --- a/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg @@ -1,15 +1,15 @@ [general] -version = 4 -name = Fine definition = ultimaker3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.1 -support_infill_sparse_thickness = =2*layer_height + diff --git a/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg index 0fb3a6e514..be0be2dfbf 100644 --- a/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Sprint definition = ultimaker3 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 global_quality = True +quality_type = superdraft +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.4 + diff --git a/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg index 4d0613d444..53addba134 100644 --- a/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker3 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 global_quality = True +quality_type = verydraft +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.3 + 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 1d845be30d..2d7da87e55 100644 --- a/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Coarse Quality definition = ultimaker_original +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.4 + 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 aab6bf55a9..8f77b3b330 100644 --- a/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Draft Quality definition = ultimaker_original +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] layer_height = 0.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 4ea763039b..c28b33c715 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Extra Coarse Quality definition = ultimaker_original +name = Extra Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = -4 global_quality = True +quality_type = extra coarse +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.6 + 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 2c182407e6..931ba6a129 100644 --- a/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Normal definition = ultimaker_original +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.15 + 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 b3cce73f97..74ab824a8d 100644 --- a/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker_original +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] layer_height = 0.06 + 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 db21b37b30..0229a765f4 100644 --- a/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Fine definition = ultimaker_original +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.1 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg similarity index 72% rename from resources/quality/ultimaker_s3/um_s3_aa0.25_ABS_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg index a45773f596..ed8b8c2704 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg @@ -1,18 +1,17 @@ [general] -version = 4 -name = Fine definition = ultimaker_s3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.25 +weight = 0 [values] -cool_fan_speed = 40 infill_overlap = =0 if infill_sparse_density > 80 else 15 -material_final_print_temperature = =material_print_temperature - 5 speed_topbottom = =math.ceil(speed_print * 30 / 55) + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg similarity index 83% rename from resources/quality/ultimaker_s3/um_s3_aa0.25_CPE_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg index 5ced8748b1..2cba4bb788 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg @@ -1,18 +1,18 @@ [general] -version = 4 -name = Fine definition = ultimaker_s3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_cpe +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.25 +weight = 0 [values] -retraction_combing_max_distance = 50 speed_infill = =math.ceil(speed_print * 40 / 55) speed_topbottom = =math.ceil(speed_print * 30 / 55) top_bottom_thickness = 0.8 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_Nylon_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg similarity index 61% rename from resources/quality/ultimaker_s3/um_s3_aa0.25_Nylon_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg index 671c079def..0a3d2060b3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg @@ -1,28 +1,21 @@ [general] -version = 4 -name = Fine definition = ultimaker_s3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_nylon +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.25 +weight = 0 [values] -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 12 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 ooze_shield_angle = 40 -raft_acceleration = =acceleration_layer_0 raft_airgap = 0.4 -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 3) -raft_jerk = =jerk_layer_0 -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) retraction_min_travel = 5 skin_overlap = 50 speed_print = 70 @@ -32,5 +25,3 @@ switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 -raft_surface_speed = 45 -speed_layer_0 = 10 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg similarity index 73% rename from resources/quality/ultimaker_s3/um_s3_aa0.25_PC_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg index 886807a836..6e41b29ec0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg @@ -1,40 +1,31 @@ [general] -version = 4 -name = Fine - Experimental definition = ultimaker_s3 +name = Fine - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_pc -variant = AA 0.25 is_experimental = True +material = generic_pc +quality_type = normal +setting_version = 22 +type = quality +variant = AA 0.25 +weight = 0 [values] -adhesion_type = brim brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + layer_height -cool_fan_speed_max = 50 -cool_min_layer_time_fan_speed_max = 5 -cool_min_speed = 5 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 -jerk_enabled = True -jerk_print = 25 machine_min_cool_heat_time_window = 15 multiple_mesh_overlap = 0 ooze_shield_angle = 40 prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 -raft_interface_thickness = =max(layer_height * 1.5, 0.225) retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 skin_overlap = 30 -speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) @@ -44,3 +35,4 @@ 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_s3/um_s3_aa0.25_PETG_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg similarity index 67% rename from resources/quality/ultimaker_s3/um_s3_aa0.25_PETG_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg index 6c3a7e7a81..ffaf1dd591 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg @@ -1,23 +1,19 @@ [general] -version = 4 -name = Fine definition = ultimaker_s3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.25 +weight = 0 [values] -retraction_combing_max_distance = 8 +material_print_temperature = =default_material_print_temperature - 5 speed_infill = =math.ceil(speed_print * 40 / 55) speed_topbottom = =math.ceil(speed_print * 30 / 55) top_bottom_thickness = 0.8 -initial_layer_line_width_factor = 100 -material_print_temperature = =default_material_print_temperature - 5 -material_shrinkage_percentage_xy = 100.5 -material_shrinkage_percentage_z = 100.1 \ No newline at end of file diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg similarity index 63% rename from resources/quality/ultimaker_s3/um_s3_aa0.25_PLA_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg index ef7623fe0a..f3241c06a4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg @@ -1,37 +1,30 @@ [general] -version = 4 -name = Fine definition = ultimaker_s3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.25 +weight = 0 [values] brim_width = 8 -cool_fan_full_at_height = =layer_height_0 -cool_min_speed = 10 infill_overlap = =0 if infill_sparse_density > 80 else 10 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = 190 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 retraction_hop = 0.2 skin_overlap = 5 -speed_layer_0 = =speed_print speed_print = 30 -speed_travel_layer_0 = 120 speed_wall = =math.ceil(speed_print * 25 / 30) speed_wall_0 = =math.ceil(speed_print * 20 / 30) top_bottom_thickness = 0.72 travel_avoid_distance = 0.4 wall_0_inset = 0.015 wall_0_wipe_dist = 0.25 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg similarity index 77% rename from resources/quality/ultimaker_s3/um_s3_aa0.25_PP_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg index 8ae871f4fe..90ac201992 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg @@ -1,31 +1,25 @@ [general] -version = 4 -name = Fine - Experimental definition = ultimaker_s3 +name = Fine - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_pp -variant = AA 0.25 is_experimental = True +material = generic_pp +quality_type = normal +setting_version = 22 +type = quality +variant = AA 0.25 +weight = 0 [values] brim_width = 10 -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 5 -cool_min_speed = 2.5 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 -jerk_print = 25 machine_min_cool_heat_time_window = 15 -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_final_print_temperature = =material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 5 +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 15 -material_print_temperature_layer_0 = =material_print_temperature + 3 multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_size = 16 @@ -36,9 +30,7 @@ retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 retraction_prime_speed = 15 -speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 25) support_angle = 50 @@ -48,3 +40,4 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 1 travel_avoid_distance = 3 wall_0_inset = 0 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg similarity index 63% rename from resources/quality/ultimaker_s3/um_s3_aa0.25_TPLA_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg index a19b438a9a..3292a7a89e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg @@ -1,36 +1,29 @@ [general] -version = 4 -name = Fine definition = ultimaker_s3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_tough_pla +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.25 +weight = 0 [values] brim_width = 8 -cool_fan_full_at_height = =layer_height_0 -cool_min_speed = 7 infill_overlap = =0 if infill_sparse_density > 80 else 10 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature - 15 -material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 100.1 skin_overlap = 5 -speed_layer_0 = =math.ceil(speed_print * 30 / 30) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) -speed_travel_layer_0 = 120 speed_wall = =math.ceil(speed_print * 25 / 30) speed_wall_0 = =math.ceil(speed_print * 20 / 30) top_bottom_thickness = 0.72 wall_0_inset = 0.015 wall_0_wipe_dist = 0.25 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_Draft_Print.inst.cfg deleted file mode 100644 index e5b88f2d77..0000000000 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_Draft_Print.inst.cfg +++ /dev/null @@ -1,37 +0,0 @@ -[general] -version = 4 -name = Fast -definition = ultimaker_s3 - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 -material = generic_nylon -variant = AA 0.4 - -[values] -adhesion_type = brim -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 10 - - -material_print_temperature = =default_material_print_temperature + 10 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -material_standby_temperature = 100 -ooze_shield_angle = 40 -raft_acceleration = =acceleration_layer_0 -raft_airgap = 0.4 -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) -raft_jerk = =jerk_layer_0 -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) -retraction_prime_speed = =retraction_speed -skin_overlap = 50 -speed_layer_0 = 10 -switch_extruder_prime_speed = 30 -switch_extruder_retraction_amount = 30 -switch_extruder_retraction_speeds = 40 -raft_surface_speed = 45 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_Fast_Print.inst.cfg deleted file mode 100644 index 1c0ac78324..0000000000 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_Fast_Print.inst.cfg +++ /dev/null @@ -1,37 +0,0 @@ -[general] -version = 4 -name = Normal -definition = ultimaker_s3 - -[metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 -material = generic_nylon -variant = AA 0.4 - -[values] -adhesion_type = brim -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 10 - - -material_print_temperature = =default_material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -material_standby_temperature = 100 -ooze_shield_angle = 40 -raft_acceleration = =acceleration_layer_0 -raft_airgap = 0.4 -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) -raft_jerk = =jerk_layer_0 -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) -retraction_prime_speed = =retraction_speed -skin_overlap = 50 -speed_layer_0 = 10 -switch_extruder_prime_speed = 30 -switch_extruder_retraction_amount = 30 -switch_extruder_retraction_speeds = 40 -raft_surface_speed = 45 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_High_Quality.inst.cfg deleted file mode 100644 index 1e133a2148..0000000000 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_High_Quality.inst.cfg +++ /dev/null @@ -1,36 +0,0 @@ -[general] -version = 4 -name = Extra Fine -definition = ultimaker_s3 - -[metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 -material = generic_nylon -variant = AA 0.4 - -[values] -adhesion_type = brim -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 15 - - -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -material_standby_temperature = 100 -ooze_shield_angle = 40 -raft_acceleration = =acceleration_layer_0 -raft_airgap = 0.4 -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) -raft_jerk = =jerk_layer_0 -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) -retraction_prime_speed = =retraction_speed -skin_overlap = 50 -speed_layer_0 = 10 -switch_extruder_prime_speed = 30 -switch_extruder_retraction_amount = 30 -switch_extruder_retraction_speeds = 40 -raft_surface_speed = 45 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_Normal_Quality.inst.cfg deleted file mode 100644 index 4256f134cc..0000000000 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_Nylon_Normal_Quality.inst.cfg +++ /dev/null @@ -1,36 +0,0 @@ -[general] -version = 4 -name = Fine -definition = ultimaker_s3 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_nylon -variant = AA 0.4 - -[values] -adhesion_type = brim -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 12 - - -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -material_standby_temperature = 100 -ooze_shield_angle = 40 -raft_acceleration = =acceleration_layer_0 -raft_airgap = 0.4 -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) -raft_jerk = =jerk_layer_0 -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) -retraction_prime_speed = =retraction_speed -skin_overlap = 50 -speed_layer_0 = 10 -switch_extruder_prime_speed = 30 -switch_extruder_retraction_amount = 30 -switch_extruder_retraction_speeds = 40 -raft_surface_speed = 45 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg similarity index 81% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_High_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg index 5e6ec3e259..ad57f4d87d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg @@ -1,30 +1,25 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker_s3 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality variant = AA 0.4 +weight = 1 [values] -cool_min_speed = 12 machine_nozzle_cool_down_speed = 0.8 machine_nozzle_heat_up_speed = 1.5 -material_print_temperature = =default_material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature - 15 material_final_print_temperature = =material_print_temperature - 20 +material_print_temperature = =default_material_print_temperature + 5 prime_tower_enable = False +raft_airgap = 0.15 +speed_infill = =math.ceil(speed_print * 40 / 50) speed_print = 50 -speed_layer_0 = 10 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 30 / 50) - -speed_infill = =math.ceil(speed_print * 40 / 50) - -raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg similarity index 83% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg index 33d620ede2..075c1fd4aa 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg @@ -1,31 +1,26 @@ [general] -version = 4 -name = Normal definition = ultimaker_s3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_abs +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] -cool_min_speed = 7 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_print_temperature = =default_material_print_temperature + 15 -material_initial_print_temperature = =material_print_temperature - 15 material_final_print_temperature = =material_print_temperature - 20 +material_print_temperature = =default_material_print_temperature + 15 prime_tower_enable = False +raft_airgap = 0.15 +speed_infill = =math.ceil(speed_print * 45 / 60) speed_print = 60 -speed_layer_0 = 10 speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_wall = =math.ceil(speed_print * 40 / 60) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) - -speed_infill = =math.ceil(speed_print * 45 / 60) - -raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg similarity index 84% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg index 4141c023aa..5c2bb0f6f4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg @@ -1,29 +1,25 @@ [general] -version = 4 -name = Fine definition = ultimaker_s3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_print_temperature = =default_material_print_temperature + 10 -material_initial_print_temperature = =material_print_temperature - 15 material_final_print_temperature = =material_print_temperature - 20 +material_print_temperature = =default_material_print_temperature + 10 prime_tower_enable = False +raft_airgap = 0.15 +speed_infill = =math.ceil(speed_print * 40 / 55) speed_print = 55 -speed_layer_0 = 10 speed_topbottom = =math.ceil(speed_print * 30 / 55) speed_wall = =math.ceil(speed_print * 30 / 55) - -speed_infill = =math.ceil(speed_print * 40 / 55) - -raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg similarity index 85% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg index 1ba0ffd3cd..c942908d83 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg @@ -1,29 +1,27 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_print_temperature = =default_material_print_temperature + 20 -material_initial_print_temperature = =material_print_temperature - 15 material_final_print_temperature = =material_print_temperature - 20 +material_print_temperature = =default_material_print_temperature + 20 prime_tower_enable = False +raft_airgap = 0.15 skin_overlap = 20 +speed_infill = =math.ceil(speed_print * 50 / 60) speed_print = 60 -speed_layer_0 = 10 speed_topbottom = =math.ceil(speed_print * 35 / 60) speed_wall = =math.ceil(speed_print * 45 / 60) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) -speed_infill = =math.ceil(speed_print * 50 / 60) -raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg similarity index 81% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg index 87415ecb05..5e0f66fbf2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg @@ -1,33 +1,31 @@ [general] -version = 4 -name = Normal definition = ultimaker_s3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_bam +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] brim_replaces_support = False -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -# prime_tower_enable: see CURA-4248 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 speed_print = 80 -speed_layer_0 = =math.ceil(speed_print * 20 / 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) -top_bottom_thickness = 1 -support_brim_enable = True -support_interface_enable = True -support_interface_density = =min(extruderValues('material_surface_energy')) -support_top_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 1) * layer_height -support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height support_angle = 45 +support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height +support_brim_enable = True +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_s3/um_s3_aa0.4_BAM_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg similarity index 72% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg index 13e07744b1..7aa817c882 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg @@ -1,32 +1,28 @@ [general] -version = 4 -name = Fine definition = ultimaker_s3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_bam +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] brim_replaces_support = False -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed -cool_min_speed = 7 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_print_temperature = =default_material_print_temperature - 10 -# prime_tower_enable: see CURA-4248 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 skin_overlap = 10 -speed_layer_0 = =math.ceil(speed_print * 20 / 70) -support_brim_enable = True -support_interface_enable = True -support_interface_density = =min(extruderValues('material_surface_energy')) -support_top_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 1) * layer_height -support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height support_angle = 45 +support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height +support_brim_enable = True +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_s3/um_s3_aa0.4_BAM_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg similarity index 82% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg index 593781314a..9b02d3c64f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg @@ -1,34 +1,31 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_bam +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] brim_replaces_support = False -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed 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: see CURA-4248 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 skin_overlap = 20 -speed_layer_0 = =math.ceil(speed_print * 20 / 70) 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) -top_bottom_thickness = 1 -support_brim_enable = True -support_interface_enable = True -support_interface_density = =min(extruderValues('material_surface_energy')) -support_top_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height -support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height support_angle = 45 +support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height +support_brim_enable = True +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_s3/um_s3_aa0.4_BAM_VeryDraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg similarity index 80% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_VeryDraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg index a8b51892c7..a591c13b21 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_BAM_VeryDraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg @@ -1,34 +1,32 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s3 +name = Extra Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -2 -material = generic_bam -variant = AA 0.4 is_experimental = True +material = generic_bam +quality_type = verydraft +setting_version = 22 +type = quality +variant = AA 0.4 +weight = -3 [values] brim_replaces_support = False -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed 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 skin_overlap = 20 -speed_layer_0 = =math.ceil(speed_print * 20 / 70) 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) -top_bottom_thickness = 1 -support_brim_enable = True -support_interface_enable = True -support_interface_density = =min(extruderValues('material_surface_energy')) -support_top_distance = 0.3 -support_bottom_distance = 0.3 support_angle = 45 +support_bottom_distance = 0.3 +support_brim_enable = True +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_s3/um_s3_aa0.4_CPEP_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg similarity index 69% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_High_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg index ef8cb6847a..7d8d426e50 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg @@ -1,43 +1,35 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker_s3 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_cpe_plus +quality_type = high +setting_version = 22 +type = quality variant = AA 0.4 +weight = 1 [values] -cool_fan_speed_max = 50 -cool_min_speed = 5 - infill_overlap = 0 infill_wipe_dist = 0 -jerk_print = 25 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 - 5 material_print_temperature = =default_material_print_temperature + 2 -material_print_temperature_layer_0 = =material_print_temperature multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True -retraction_combing_max_distance = 50 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True retraction_prime_speed = =retraction_speed skin_overlap = 20 -speed_layer_0 = =math.ceil(speed_print * 20 / 40) speed_print = 40 speed_topbottom = =math.ceil(speed_print * 30 / 35) speed_wall = =math.ceil(speed_print * 35 / 40) speed_wall_0 = =math.ceil(speed_wall * 30 / 35) support_z_distance = =layer_height wall_0_inset = 0 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg similarity index 66% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg index e6270bd4c5..ae11e6d777 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg @@ -1,43 +1,33 @@ [general] -version = 4 -name = Normal definition = ultimaker_s3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_cpe_plus +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] -cool_fan_speed_max = 80 -cool_min_speed = 6 - infill_overlap = 0 infill_wipe_dist = 0 -jerk_enabled = True -jerk_print = 25 machine_min_cool_heat_time_window = 15 -material_final_print_temperature = =material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 5 material_print_temperature = =default_material_print_temperature + 10 -material_print_temperature_layer_0 = =material_print_temperature multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True -retraction_combing_max_distance = 50 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True retraction_prime_speed = =retraction_speed skin_overlap = 20 -speed_layer_0 = =math.ceil(speed_print * 20 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) - speed_wall = =math.ceil(speed_print * 45 / 45) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) support_z_distance = =layer_height wall_0_inset = 0 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg similarity index 69% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg index 4f99061468..2a426c07bd 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg @@ -1,43 +1,35 @@ [general] -version = 4 -name = Fine definition = ultimaker_s3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_cpe_plus +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] -cool_fan_speed_max = 50 -cool_min_speed = 7 - infill_overlap = 0 infill_wipe_dist = 0 -jerk_print = 25 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 - 5 material_print_temperature = =default_material_print_temperature + 5 -material_print_temperature_layer_0 = =material_print_temperature multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True -retraction_combing_max_distance = 50 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True retraction_prime_speed = =retraction_speed skin_overlap = 20 -speed_layer_0 = =math.ceil(speed_print * 20 / 40) speed_print = 40 speed_topbottom = =math.ceil(speed_print * 30 / 35) speed_wall = =math.ceil(speed_print * 35 / 40) speed_wall_0 = =math.ceil(speed_wall * 30 / 35) support_z_distance = =layer_height wall_0_inset = 0 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg similarity index 67% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg index 35c97346bb..32bf3053b0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -1,42 +1,33 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_cpe_plus +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] -cool_fan_speed_max = 80 -cool_min_speed = 5 - infill_overlap = 0 infill_wipe_dist = 0 -jerk_print = 25 machine_min_cool_heat_time_window = 15 -material_final_print_temperature = =material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 5 material_print_temperature = =default_material_print_temperature + 10 -material_print_temperature_layer_0 = =material_print_temperature multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True -retraction_combing_max_distance = 50 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True retraction_prime_speed = =retraction_speed skin_overlap = 20 -speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 40 / 50) - speed_wall = =math.ceil(speed_print * 50 / 50) speed_wall_0 = =math.ceil(speed_wall * 40 / 50) support_z_distance = =layer_height wall_0_inset = 0 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg similarity index 63% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_High_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg index 360984cc12..8a399bd637 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg @@ -1,29 +1,24 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker_s3 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_cpe +quality_type = high +setting_version = 22 +type = quality variant = AA 0.4 +weight = 1 [values] -cool_min_speed = 12 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 5 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -retraction_combing_max_distance = 50 retraction_prime_speed = =retraction_speed +speed_infill = =math.ceil(speed_print * 40 / 50) speed_print = 50 -speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 30 / 50) -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -speed_infill = =math.ceil(speed_print * 40 / 50) \ No newline at end of file diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg similarity index 62% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg index b8c8538a00..e6f19344df 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg @@ -1,28 +1,23 @@ [general] -version = 4 -name = Normal definition = ultimaker_s3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_cpe +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] -cool_min_speed = 7 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' material_print_temperature = =default_material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -retraction_combing_max_distance = 50 retraction_prime_speed = =retraction_speed +speed_infill = =math.ceil(speed_print * 50 / 60) speed_print = 60 -speed_layer_0 = =math.ceil(speed_print * 20 / 60) speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_wall = =math.ceil(speed_print * 40 / 60) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -speed_infill = =math.ceil(speed_print * 50 / 60) \ No newline at end of file diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg similarity index 61% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg index 8db4957fa9..730f7cd2f3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg @@ -1,27 +1,23 @@ [general] -version = 4 -name = Fine definition = ultimaker_s3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_cpe +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -retraction_combing_max_distance = 50 retraction_prime_speed = =retraction_speed +speed_infill = =math.ceil(speed_print * 45 / 55) speed_print = 55 -speed_layer_0 = =math.ceil(speed_print * 20 / 55) speed_topbottom = =math.ceil(speed_print * 30 / 55) speed_wall = =math.ceil(speed_print * 30 / 55) -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -speed_infill = =math.ceil(speed_print * 45 / 55) \ No newline at end of file diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg similarity index 70% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg index 2553121d76..8a3f4ab272 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg @@ -1,28 +1,24 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_cpe +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' material_print_temperature = =default_material_print_temperature + 10 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -retraction_combing_max_distance = 50 retraction_prime_speed = =retraction_speed skin_overlap = 20 +speed_infill = =math.ceil(speed_print * 50 / 60) speed_print = 60 -speed_layer_0 = =math.ceil(speed_print * 20 / 60) speed_topbottom = =math.ceil(speed_print * 35 / 60) speed_wall = =math.ceil(speed_print * 45 / 60) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -speed_infill = =math.ceil(speed_print * 50 / 60) 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 new file mode 100644 index 0000000000..666ed67770 --- /dev/null +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_s3 +name = Extra Fine +version = 4 + +[metadata] +material = generic_nylon +quality_type = high +setting_version = 22 +type = quality +variant = AA 0.4 +weight = 1 + +[values] +ooze_shield_angle = 40 +raft_airgap = 0.4 +retraction_prime_speed = =retraction_speed +skin_overlap = 50 +switch_extruder_prime_speed = 30 +switch_extruder_retraction_amount = 30 +switch_extruder_retraction_speeds = 40 + 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 new file mode 100644 index 0000000000..71132921d6 --- /dev/null +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = ultimaker_s3 +name = Normal +version = 4 + +[metadata] +material = generic_nylon +quality_type = fast +setting_version = 22 +type = quality +variant = AA 0.4 +weight = -1 + +[values] +material_print_temperature = =default_material_print_temperature + 5 +ooze_shield_angle = 40 +raft_airgap = 0.4 +retraction_prime_speed = =retraction_speed +skin_overlap = 50 +switch_extruder_prime_speed = 30 +switch_extruder_retraction_amount = 30 +switch_extruder_retraction_speeds = 40 + 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 new file mode 100644 index 0000000000..37850c907f --- /dev/null +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_s3 +name = Fine +version = 4 + +[metadata] +material = generic_nylon +quality_type = normal +setting_version = 22 +type = quality +variant = AA 0.4 +weight = 0 + +[values] +ooze_shield_angle = 40 +raft_airgap = 0.4 +retraction_prime_speed = =retraction_speed +skin_overlap = 50 +switch_extruder_prime_speed = 30 +switch_extruder_retraction_amount = 30 +switch_extruder_retraction_speeds = 40 + 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 new file mode 100644 index 0000000000..73cfcb9344 --- /dev/null +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = ultimaker_s3 +name = Fast +version = 4 + +[metadata] +material = generic_nylon +quality_type = draft +setting_version = 22 +type = quality +variant = AA 0.4 +weight = -2 + +[values] +material_print_temperature = =default_material_print_temperature + 10 +ooze_shield_angle = 40 +raft_airgap = 0.4 +retraction_prime_speed = =retraction_speed +skin_overlap = 50 +switch_extruder_prime_speed = 30 +switch_extruder_retraction_amount = 30 +switch_extruder_retraction_speeds = 40 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PC_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg similarity index 69% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_PC_High_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg index 02454a7203..92708c8e66 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PC_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg @@ -1,48 +1,35 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker_s3 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pc +quality_type = high +setting_version = 22 +type = quality variant = AA 0.4 +weight = 1 [values] -adhesion_type = brim brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + layer_height -cool_fan_speed_max = 50 -cool_min_layer_time_fan_speed_max = 5 -cool_min_speed = 8 - infill_overlap = 0 infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 -jerk_enabled = True -jerk_print = 25 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 - 5 material_print_temperature = =default_material_print_temperature - 10 -material_standby_temperature = 100 multiple_mesh_overlap = 0 ooze_shield_angle = 40 prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 -raft_interface_thickness = =max(layer_height * 1.5, 0.225) retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 skin_overlap = 30 -speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) @@ -52,3 +39,4 @@ 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_s3/um_s3_aa0.4_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg similarity index 69% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_PC_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg index 2c9f109400..2abcc4eabd 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg @@ -1,45 +1,34 @@ [general] -version = 4 -name = Normal definition = ultimaker_s3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pc +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] -adhesion_type = brim brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + layer_height -cool_fan_speed_max = 85 -cool_min_layer_time_fan_speed_max = 5 -cool_min_speed = 7 infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 -jerk_print = 25 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 - 5 material_print_temperature = =default_material_print_temperature + 10 -material_standby_temperature = 100 multiple_mesh_overlap = 0 ooze_shield_angle = 40 prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 -raft_interface_thickness = =max(layer_height * 1.5, 0.225) retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 skin_overlap = 30 -speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) @@ -49,3 +38,4 @@ 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_s3/um_s3_aa0.4_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg similarity index 66% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_PC_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg index ce382e3dcf..16543c9ce3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg @@ -1,46 +1,33 @@ [general] -version = 4 -name = Fine definition = ultimaker_s3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pc +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] -adhesion_type = brim brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + layer_height -cool_fan_speed_max = 50 -cool_min_layer_time_fan_speed_max = 5 -cool_min_speed = 5 - infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 -jerk_enabled = True -jerk_print = 25 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 - 5 -material_standby_temperature = 100 multiple_mesh_overlap = 0 ooze_shield_angle = 40 prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 -raft_interface_thickness = =max(layer_height * 1.5, 0.225) retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 skin_overlap = 30 -speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) @@ -50,3 +37,4 @@ 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_s3/um_s3_aa0.4_PC_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg similarity index 68% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_PC_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg index c5c3570350..5dbb058cb8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PC_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg @@ -1,48 +1,35 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pc +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] -adhesion_type = brim brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + layer_height -cool_fan_speed_max = 90 -cool_min_layer_time_fan_speed_max = 5 -cool_min_speed = 6 - infill_overlap = 0 infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 -jerk_enabled = True -jerk_print = 25 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 - 5 material_print_temperature = =default_material_print_temperature + 10 -material_standby_temperature = 100 multiple_mesh_overlap = 0 ooze_shield_angle = 40 prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 -raft_interface_thickness = =max(layer_height * 1.5, 0.225) retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 skin_overlap = 30 -speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) @@ -52,3 +39,4 @@ 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_s3/um_s3_aa0.4_PETG_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg similarity index 59% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_High_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg index 5b65d2351b..fdbdb811c1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg @@ -1,31 +1,23 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker_s3 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_petg +quality_type = high +setting_version = 22 +type = quality variant = AA 0.4 +weight = 1 [values] -cool_min_speed = 12 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 10 -material_final_print_temperature = =material_print_temperature - 15 -material_shrinkage_percentage_xy = 100.5 -material_shrinkage_percentage_z = 100.1 -retraction_combing_max_distance = 8 +speed_infill = =math.ceil(speed_print * 40 / 50) speed_print = 50 -speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 30 / 50) -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -speed_infill = =math.ceil(speed_print * 40 / 50) -initial_layer_line_width_factor = 100 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg similarity index 57% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg index 7c2ad43944..d71148e5ce 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg @@ -1,30 +1,22 @@ [general] -version = 4 -name = Normal definition = ultimaker_s3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_petg +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] -cool_min_speed = 7 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' material_print_temperature = =default_material_print_temperature -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -material_shrinkage_percentage_xy = 100.5 -material_shrinkage_percentage_z = 100.1 -retraction_combing_max_distance = 8 +speed_infill = =math.ceil(speed_print * 50 / 60) speed_print = 60 -speed_layer_0 = =math.ceil(speed_print * 20 / 60) speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_wall = =math.ceil(speed_print * 40 / 60) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -speed_infill = =math.ceil(speed_print * 50 / 60) -initial_layer_line_width_factor = 100 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg similarity index 60% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg index 20b668ca51..69f6059c00 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg @@ -1,30 +1,23 @@ [general] -version = 4 -name = Fine definition = ultimaker_s3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 5 -material_initial_print_temperature = =material_print_temperature - 10 -material_final_print_temperature = =material_print_temperature - 15 -material_shrinkage_percentage_xy = 100.5 -material_shrinkage_percentage_z = 100.1 -retraction_combing_max_distance = 8 +speed_infill = =math.ceil(speed_print * 45 / 55) speed_print = 55 -speed_layer_0 = =math.ceil(speed_print * 20 / 55) speed_topbottom = =math.ceil(speed_print * 30 / 55) speed_wall = =math.ceil(speed_print * 30 / 55) -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -speed_infill = =math.ceil(speed_print * 45 / 55) -initial_layer_line_width_factor = 100 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg similarity index 60% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg index aa1ba2ef27..02b09887a6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg @@ -1,30 +1,23 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' material_print_temperature = =default_material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature -material_final_print_temperature = =material_print_temperature - 5 -material_shrinkage_percentage_xy = 100.5 -material_shrinkage_percentage_z = 100.1 -retraction_combing_max_distance = 8 skin_overlap = 20 +speed_infill = =math.ceil(speed_print * 50 / 60) speed_print = 60 -speed_layer_0 = =math.ceil(speed_print * 20 / 60) speed_topbottom = =math.ceil(speed_print * 35 / 60) speed_wall = =math.ceil(speed_print * 45 / 60) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -speed_infill = =math.ceil(speed_print * 50 / 60) -initial_layer_line_width_factor = 100 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg similarity index 65% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_High_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg index 6f230a94cd..17dc6150bc 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg @@ -1,34 +1,26 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker_s3 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality variant = AA 0.4 +weight = 1 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed -cool_min_speed = 10 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = False +raft_airgap = 0.25 retraction_prime_speed = =retraction_speed skin_overlap = 10 speed_print = 50 -speed_layer_0 = 10 speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 35 / 50) top_bottom_thickness = 1 -layer_height_0 = 0.2 -raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg similarity index 65% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg index f60adf89f3..f076447401 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg @@ -1,32 +1,25 @@ [general] -version = 4 -name = Normal definition = ultimaker_s3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pla +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = False +raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_print = 70 -speed_layer_0 = 10 speed_topbottom = =math.ceil(speed_print * 35 / 70) speed_wall = =math.ceil(speed_print * 45 / 70) speed_wall_0 = =math.ceil(speed_wall * 35 / 70) top_bottom_thickness = 1 -layer_height_0 = 0.2 -raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg similarity index 56% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg index 57fad8111c..8f54cb3dd9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg @@ -1,30 +1,22 @@ [general] -version = 4 -name = Fine definition = ultimaker_s3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed -cool_min_speed = 7 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = False +raft_airgap = 0.25 retraction_prime_speed = =retraction_speed skin_overlap = 10 -speed_layer_0 = 10 top_bottom_thickness = 1 -layer_height_0 = 0.2 -raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg similarity index 70% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg index c82fb9c68d..e38e29772c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg @@ -1,36 +1,29 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed +acceleration_wall = 2000 +acceleration_wall_0 = 2000 +infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = False +raft_airgap = 0.25 retraction_prime_speed = =retraction_speed skin_overlap = 20 -speed_layer_0 = 10 speed_topbottom = =math.ceil(speed_print * 40 / 70) speed_wall = =math.ceil(speed_print * 55 / 70) speed_wall_0 = =math.ceil(speed_wall * 45 / 50) top_bottom_thickness = 0.8 -infill_sparse_density = 15 -layer_height_0 = 0.2 -acceleration_wall = 2000 -acceleration_wall_0 = 2000 -raft_airgap = 0.25 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_VeryDraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg similarity index 65% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_VeryDraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg index 62a5516b2c..f0c2a8baa2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PLA_VeryDraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg @@ -1,42 +1,33 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s3 +name = Extra Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -2 -material = generic_pla -variant = AA 0.4 is_experimental = True +material = generic_pla +quality_type = verydraft +setting_version = 22 +type = quality +variant = AA 0.4 +weight = -3 [values] -infill_sparse_density = 15 acceleration_print = 2000 +acceleration_topbottom = 1000 acceleration_wall = 1500 acceleration_wall_0 = 1000 -acceleration_topbottom = 1000 -speed_print = 50 -speed_wall = 50 - -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed - -material_print_temperature = =default_material_print_temperature + 10 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 - +material_print_temperature = =default_material_print_temperature + 10 prime_tower_enable = False +raft_airgap = 0.25 retraction_prime_speed = =retraction_speed skin_overlap = 20 +speed_print = 50 +speed_wall = 50 top_bottom_thickness = 0.9 +wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' - -raft_airgap = =0.25 -wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) \ No newline at end of file diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PP_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg similarity index 75% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_PP_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg index dd35987ced..94bd77bb0a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg @@ -1,35 +1,27 @@ [general] -version = 4 -name = Normal definition = ultimaker_s3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pp +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] brim_width = 20 -cool_fan_speed_max = 100 -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 7 -cool_min_speed = 2.5 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 -jerk_print = 25 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_bed_temperature_layer_0 = =material_bed_temperature + 5 -material_final_print_temperature = =material_print_temperature - 12 -material_initial_print_temperature = =material_print_temperature - 2 +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 13 -material_print_temperature_layer_0 = =material_print_temperature + 3 -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_size = 16 @@ -39,11 +31,8 @@ retraction_extra_prime_amount = 0.8 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) - -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 25) support_angle = 50 @@ -52,3 +41,4 @@ switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 top_bottom_thickness = 1.1 wall_0_inset = 0 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg similarity index 75% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_PP_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg index 5eff4b3248..a33459c48b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg @@ -1,37 +1,27 @@ [general] -version = 4 -name = Fine definition = ultimaker_s3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pp +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] brim_width = 20 -cool_fan_speed_max = 100 -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 7 -cool_min_speed = 2.5 - infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 -jerk_print = 25 - machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_final_print_temperature = =material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 5 +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 15 -material_print_temperature_layer_0 = =material_print_temperature + 3 -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_size = 16 @@ -41,11 +31,8 @@ retraction_extra_prime_amount = 0.8 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) - -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 25) support_angle = 50 @@ -54,3 +41,4 @@ switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 top_bottom_thickness = 1 wall_0_inset = 0 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg similarity index 75% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_PP_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg index 88089479ad..9c263be5fa 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg @@ -1,36 +1,27 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pp +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] brim_width = 20 -cool_fan_speed_max = 100 -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 7 -cool_min_speed = 2.5 - infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 -jerk_print = 25 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_final_print_temperature = =material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 5 +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 5 -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_size = 16 @@ -40,10 +31,8 @@ retraction_extra_prime_amount = 0.8 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 25) support_angle = 50 @@ -51,3 +40,4 @@ 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_s3/um_s3_aa0.4_TPLA_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg similarity index 64% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_High_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg index 1046c70272..a2d05aee51 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg @@ -1,34 +1,26 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker_s3 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_tough_pla +quality_type = high +setting_version = 22 +type = quality variant = AA 0.4 +weight = 1 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed -cool_min_speed = 10 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 15 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = False retraction_prime_speed = =retraction_speed skin_overlap = 10 speed_print = 45 -speed_layer_0 = =math.ceil(speed_print * 20 / 45) speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) top_bottom_thickness = 1.2 -layer_height_0 = 0.2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg similarity index 64% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg index 3f08161091..d94df8b8f3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg @@ -1,31 +1,25 @@ [general] -version = 4 -name = Normal definition = ultimaker_s3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_tough_pla +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed -layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_print_temperature = =default_material_print_temperature -10 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 100.1 +material_print_temperature = =default_material_print_temperature - 10 prime_tower_enable = False retraction_prime_speed = =retraction_speed -speed_layer_0 = =math.ceil(speed_print * 20 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) top_bottom_thickness = 1.2 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg similarity index 64% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg index 48443ce029..b9ce7d8e90 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg @@ -1,33 +1,26 @@ [general] -version = 4 -name = Fine definition = ultimaker_s3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_tough_pla +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed -cool_min_speed = 7 -layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 15 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = False retraction_prime_speed = =retraction_speed skin_overlap = 10 -speed_layer_0 = =math.ceil(speed_print * 20 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) top_bottom_thickness = 1.2 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg similarity index 64% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg index c3837c7850..4d221a84c4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg @@ -1,35 +1,27 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_tough_pla +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed -cool_min_speed = 7 -jerk_print = 25 -layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_print_temperature = =default_material_print_temperature -10 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 100.1 +material_print_temperature = =default_material_print_temperature - 10 prime_tower_enable = False retraction_prime_speed = =retraction_speed skin_overlap = 20 -speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_print = 50 speed_roofing = =math.ceil(speed_wall * 20 / 24) speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 36 / 50) speed_wall_0 = =math.ceil(speed_print * 26 / 50) top_bottom_thickness = 1.2 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_VeryDraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg similarity index 65% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_VeryDraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg index 50206224a9..efdfe026c7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_VeryDraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg @@ -1,42 +1,33 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s3 +name = Extra Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -2 -material = generic_tough_pla -variant = AA 0.4 is_experimental = True +material = generic_tough_pla +quality_type = verydraft +setting_version = 22 +type = quality +variant = AA 0.4 +weight = -3 [values] -infill_sparse_density = 15 acceleration_print = 2000 +acceleration_topbottom = 1000 acceleration_wall = 1500 acceleration_wall_0 = 1000 -acceleration_topbottom = 1000 -speed_print = 50 -speed_wall = 50 - -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed - -material_print_temperature = =default_material_print_temperature - 5 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 100.1 - +material_print_temperature = =default_material_print_temperature - 5 prime_tower_enable = False +raft_airgap = 0.25 retraction_prime_speed = =retraction_speed skin_overlap = 20 +speed_print = 50 +speed_wall = 50 top_bottom_thickness = 1.2 +wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' - -raft_airgap = =0.25 -wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) \ No newline at end of file diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPU_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg similarity index 78% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_TPU_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg index d59d5c18f7..1620a0a022 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPU_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg @@ -1,38 +1,30 @@ [general] -version = 4 -name = Normal definition = ultimaker_s3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_tpu +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] brim_width = 8.75 -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 4 gradual_infill_step_height = =5 * layer_height - infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 -jerk_print = 25 - 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 +material_final_print_temperature = =material_print_temperature - 10 material_flow = 106 -material_initial_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 2 -material_print_temperature_layer_0 = =material_print_temperature + 15 -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_wipe_enabled = True retraction_count_max = 15 @@ -41,7 +33,6 @@ retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) skin_overlap = 5 -speed_layer_0 = =math.ceil(speed_print * 18 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) speed_wall = =math.ceil(speed_print * 25 / 25) @@ -53,3 +44,4 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 0.7 travel_avoid_distance = 1.5 wall_0_inset = 0 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPU_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg similarity index 76% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_TPU_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg index c0445e739c..5d47c9dad1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg @@ -1,38 +1,29 @@ [general] -version = 4 -name = Fine definition = ultimaker_s3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_tpu +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] brim_width = 8.75 -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 4 gradual_infill_step_height = =5 * layer_height - infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 -jerk_enabled = True -jerk_print = 25 - 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 +material_final_print_temperature = =material_print_temperature - 10 material_flow = 106 -material_initial_print_temperature = =material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature + 17 -material_standby_temperature = 100 +material_initial_print_temperature = =material_print_temperature - 10 multiple_mesh_overlap = 0 prime_tower_wipe_enabled = True retraction_count_max = 15 @@ -41,7 +32,6 @@ retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) skin_overlap = 5 -speed_layer_0 = =math.ceil(speed_print * 18 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) speed_wall = =math.ceil(speed_print * 25 / 25) @@ -53,3 +43,4 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 0.7 travel_avoid_distance = 1.5 wall_0_inset = 0 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg similarity index 78% rename from resources/quality/ultimaker_s3/um_s3_aa0.4_TPU_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg index 90a68d134e..510123220d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg @@ -1,37 +1,30 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] brim_width = 8.75 -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 4 gradual_infill_step_height = =5 * layer_height - infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 -jerk_print = 25 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 +material_final_print_temperature = =material_print_temperature - 10 material_flow = 106 -material_initial_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 2 -material_print_temperature_layer_0 = =material_print_temperature + 15 -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_wipe_enabled = True retraction_count_max = 15 @@ -40,7 +33,6 @@ retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) skin_overlap = 5 -speed_layer_0 = =math.ceil(speed_print * 18 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) speed_wall = =math.ceil(speed_print * 25 / 25) @@ -52,3 +44,4 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 0.7 travel_avoid_distance = 1.5 wall_0_inset = 0 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg similarity index 82% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_ABS_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg index 516e103d1b..4e20896edc 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg @@ -1,22 +1,20 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] - material_print_temperature = =default_material_print_temperature + 20 -material_standby_temperature = 100 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -retract_at_layer_change = False + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_ABS_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg similarity index 82% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_ABS_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg index 757f196340..ca17504121 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_ABS_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg @@ -1,22 +1,20 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s3 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_abs +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] - material_print_temperature = =default_material_print_temperature + 22 -material_standby_temperature = 100 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -retract_at_layer_change = False + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_ABS_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg similarity index 83% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_ABS_Superdraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg index 567f8b8c9f..27972c5ae6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_ABS_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg @@ -1,23 +1,21 @@ [general] -version = 4 -name = Sprint definition = ultimaker_s3 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_abs +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] - material_print_temperature = =default_material_print_temperature + 25 -material_standby_temperature = 100 +speed_infill = =math.ceil(speed_print * 37 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 37 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -speed_infill = =math.ceil(speed_print * 37 / 50) -retract_at_layer_change = False + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg similarity index 69% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg index 806da07969..4b9d07f15c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg @@ -1,37 +1,30 @@ [general] -version = 4 -name = Fast - Experimental definition = ultimaker_s3 +name = Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 -material = generic_cpe_plus -variant = AA 0.8 is_experimental = True +material = generic_cpe_plus +quality_type = draft +setting_version = 22 +type = quality +variant = AA 0.8 +weight = -2 [values] brim_width = 14 -cool_fan_full_at_height = =layer_height_0 + 14 * layer_height - - machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 10 -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 prime_tower_enable = True -retraction_combing_max_distance = 50 retraction_hop = 0.1 retraction_hop_enabled = False skin_overlap = 0 -speed_layer_0 = =math.ceil(speed_print * 15 / 50) speed_print = 50 -speed_slowdown_layers = 15 speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_z_distance = =layer_height top_bottom_thickness = 1.2 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg similarity index 70% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg index 5771c34f8d..1b337a023e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg @@ -1,37 +1,30 @@ [general] -version = 4 -name = Extra Fast - Experimental definition = ultimaker_s3 +name = Extra Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 -material = generic_cpe_plus -variant = AA 0.8 is_experimental = True +material = generic_cpe_plus +quality_type = verydraft +setting_version = 22 +type = quality +variant = AA 0.8 +weight = -3 [values] brim_width = 14 -cool_fan_full_at_height = =layer_height_0 + 9 * layer_height - - machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 7 -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 prime_tower_enable = True -retraction_combing_max_distance = 50 retraction_hop = 0.1 retraction_hop_enabled = False skin_overlap = 0 -speed_layer_0 = =math.ceil(speed_print * 15 / 50) speed_print = 50 -speed_slowdown_layers = 10 speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_z_distance = =layer_height top_bottom_thickness = 1.2 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg similarity index 71% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Superdraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg index 11b2706b28..31fda03ca0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg @@ -1,38 +1,31 @@ [general] -version = 4 -name = Sprint - Experimental definition = ultimaker_s3 +name = Sprint - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 -material = generic_cpe_plus -variant = AA 0.8 is_experimental = True +material = generic_cpe_plus +quality_type = superdraft +setting_version = 22 +type = quality +variant = AA 0.8 +weight = -4 [values] brim_width = 14 -cool_fan_full_at_height = =layer_height_0 + 7 * layer_height - - machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 prime_tower_enable = True -retraction_combing_max_distance = 50 retraction_hop = 0.1 retraction_hop_enabled = False skin_overlap = 0 -speed_layer_0 = =math.ceil(speed_print * 15 / 50) +speed_infill = =math.ceil(speed_print * 40 / 50) speed_print = 50 -speed_slowdown_layers = 8 speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 35 / 40) -speed_infill = =math.ceil(speed_print * 40 / 50) support_z_distance = =layer_height top_bottom_thickness = 1.2 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg similarity index 81% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_CPE_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg index 46f1985be1..9e334d613e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg @@ -1,23 +1,21 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_cpe +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] brim_width = 15 - material_print_temperature = =default_material_print_temperature + 15 -material_standby_temperature = 100 prime_tower_enable = True -retraction_combing_max_distance = 50 speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPE_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg similarity index 81% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_CPE_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg index 43d518be56..6a286ca3a0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPE_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg @@ -1,23 +1,21 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s3 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_cpe +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] brim_width = 15 - material_print_temperature = =default_material_print_temperature + 17 -material_standby_temperature = 100 prime_tower_enable = True -retraction_combing_max_distance = 50 speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPE_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg similarity index 76% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_CPE_Superdraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg index b72c4565ad..b8409d768d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPE_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg @@ -1,26 +1,23 @@ [general] -version = 4 -name = Sprint definition = ultimaker_s3 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_cpe +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] brim_width = 15 - material_print_temperature = =default_material_print_temperature + 20 -material_standby_temperature = 100 prime_tower_enable = True -retraction_combing_max_distance = 50 +speed_infill = =math.ceil(speed_print * 33 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 30 / 45) speed_wall = =math.ceil(speed_print * 33 / 45) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -speed_infill = =math.ceil(speed_print * 33 / 45) \ No newline at end of file diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg similarity index 55% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_Nylon_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg index d6887f655d..5268db94b5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg @@ -1,33 +1,25 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_nylon +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] brim_width = 5.6 -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 10 - - machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 -material_standby_temperature = 100 ooze_shield_angle = 40 prime_tower_enable = True -raft_acceleration = =acceleration_layer_0 -raft_airgap = =round(layer_height_0 * 0.85, 2) -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) +raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg similarity index 55% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_Nylon_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg index 766a84d843..53718d394b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_Nylon_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg @@ -1,33 +1,25 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s3 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_nylon +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] brim_width = 5.6 -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 10 - - machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 -material_standby_temperature = 100 ooze_shield_angle = 40 prime_tower_enable = True -raft_acceleration = =acceleration_layer_0 -raft_airgap = =round(layer_height_0 * 0.85, 2) -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) +raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg similarity index 55% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_Nylon_Superdraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg index c333d0e4b1..274625304b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_Nylon_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg @@ -1,33 +1,25 @@ [general] -version = 4 -name = Sprint definition = ultimaker_s3 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_nylon +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] brim_width = 5.6 -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 10 - - machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 -material_standby_temperature = 100 ooze_shield_angle = 40 prime_tower_enable = True -raft_acceleration = =acceleration_layer_0 -raft_airgap = =round(layer_height_0 * 0.85, 2) -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) +raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg similarity index 63% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_PC_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg index 3a16a00041..e13cd65c33 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg @@ -1,31 +1,24 @@ [general] -version = 4 -name = Fast - Experimental definition = ultimaker_s3 +name = Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 -material = generic_pc -variant = AA 0.8 is_experimental = True +material = generic_pc +quality_type = draft +setting_version = 22 +type = quality +variant = AA 0.8 +weight = -2 [values] brim_width = 14 -cool_fan_full_at_height = =layer_height_0 + 14 * layer_height - - material_print_temperature = =default_material_print_temperature - 5 -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 raft_airgap = 0.5 -raft_margin = 15 skin_overlap = 0 -speed_layer_0 = =math.ceil(speed_print * 15 / 50) speed_print = 50 -speed_slowdown_layers = 15 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PC_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg similarity index 64% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_PC_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg index 6343d64dc9..3a70102d94 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PC_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg @@ -1,31 +1,24 @@ [general] -version = 4 -name = Extra Fast - Experimental definition = ultimaker_s3 +name = Extra Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 -material = generic_pc -variant = AA 0.8 is_experimental = True +material = generic_pc +quality_type = verydraft +setting_version = 22 +type = quality +variant = AA 0.8 +weight = -3 [values] brim_width = 14 -cool_fan_full_at_height = =layer_height_0 + 9 * layer_height - - material_print_temperature = =default_material_print_temperature - 2 -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 raft_airgap = 0.5 -raft_margin = 15 skin_overlap = 0 -speed_layer_0 = =math.ceil(speed_print * 15 / 50) speed_print = 50 -speed_slowdown_layers = 10 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PC_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg similarity index 63% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_PC_Superdraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg index ce043bc020..a4df2c33b4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PC_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg @@ -1,31 +1,24 @@ [general] -version = 4 -name = Sprint - Experimental definition = ultimaker_s3 +name = Sprint - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 -material = generic_pc -variant = AA 0.8 is_experimental = True +material = generic_pc +quality_type = superdraft +setting_version = 22 +type = quality +variant = AA 0.8 +weight = -4 [values] brim_width = 14 -cool_fan_full_at_height = =layer_height_0 + 7 * layer_height - - -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 raft_airgap = 0.5 -raft_margin = 15 skin_overlap = 0 -speed_layer_0 = =math.ceil(speed_print * 15 / 50) +speed_infill = =math.ceil(speed_print * 37 / 50) speed_print = 50 -speed_slowdown_layers = 8 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 37 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -speed_infill = =math.ceil(speed_print * 37 / 50) + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg similarity index 66% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_PETG_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg index ad9ef89a03..d901c6c0dd 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg @@ -1,27 +1,22 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] brim_width = 7 - +cool_fan_speed = 20 material_print_temperature = =default_material_print_temperature - 5 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.5 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = True -retraction_combing_max_distance = 8 speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) -cool_fan_speed = 20 -initial_layer_line_width_factor = 100 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PETG_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg similarity index 64% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_PETG_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg index 60c06b80ce..0279882346 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PETG_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg @@ -1,29 +1,22 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s3 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_petg +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] brim_width = 7 - +cool_fan_speed = 20 material_print_temperature = =default_material_print_temperature - 5 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.5 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = True -retraction_combing_max_distance = 8 speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) -cool_fan_speed = 20 -layer_height_0 = 0.27 -initial_layer_line_width_factor = 100 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PETG_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg similarity index 71% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_PETG_Superdraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg index 1f131578a9..373d6a0b78 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PETG_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg @@ -1,29 +1,24 @@ [general] -version = 4 -name = Sprint definition = ultimaker_s3 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_petg +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] brim_width = 7 - +cool_fan_speed = 20 material_print_temperature = =default_material_print_temperature - 5 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.5 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = True -retraction_combing_max_distance = 8 +speed_infill = =math.ceil(speed_print * 33 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 30 / 45) speed_wall = =math.ceil(speed_print * 33 / 45) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -speed_infill = =math.ceil(speed_print * 33 / 45) -cool_fan_speed = 20 -initial_layer_line_width_factor = 100 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg similarity index 59% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_PLA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg index 1491af9743..1feae070fc 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg @@ -1,35 +1,27 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = True -support_angle = 70 -top_bottom_thickness = =layer_height * 4 -retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) -layer_height_0 = 0.4 +speed_wall_x = =speed_wall +support_angle = 70 +top_bottom_thickness = =layer_height * 4 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg similarity index 60% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_PLA_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg index 9f12894816..f93f0848db 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg @@ -1,35 +1,27 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s3 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_pla +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = True -support_angle = 70 -top_bottom_thickness = =layer_height * 4 -retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) -layer_height_0 = 0.4 +speed_wall_x = =speed_wall +support_angle = 70 +top_bottom_thickness = =layer_height * 4 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg similarity index 60% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_PLA_Superdraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg index fdad9fc5df..67f9cdfcf0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg @@ -1,37 +1,28 @@ [general] -version = 4 -name = Sprint definition = ultimaker_s3 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_pla +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 15 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = True -raft_margin = 10 -support_angle = 70 -top_bottom_thickness = =layer_height * 4 -retract_at_layer_change = False +speed_infill = =math.ceil(speed_print * 35 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 35 / 45) -speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) -speed_infill = =math.ceil(speed_print * 35 / 45) -layer_height_0 = 0.4 +speed_wall_x = =speed_wall +support_angle = 70 +top_bottom_thickness = =layer_height * 4 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg similarity index 74% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_PP_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg index ad56f48c17..edeb9dedc5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg @@ -1,31 +1,26 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pp +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] brim_width = 25 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 17 -top_skin_expand_distance = =line_width * 2 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' -material_bed_temperature_layer_0 = =material_bed_temperature +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 -material_print_temperature_layer_0 = =default_material_print_temperature + 2 -material_standby_temperature = 100 multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 10 -retract_at_layer_change = False retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 @@ -36,4 +31,6 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 +top_skin_expand_distance = =line_width * 2 wall_0_wipe_dist = =line_width * 2 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg similarity index 73% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_PP_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg index 4f6c3fa1ed..94a166c078 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg @@ -1,30 +1,25 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s3 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_pp +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] brim_width = 25 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 17 -top_skin_expand_distance = =line_width * 2 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' -material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 2 -material_standby_temperature = 100 +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 10 multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 15 -retract_at_layer_change = False retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 @@ -35,4 +30,6 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 +top_skin_expand_distance = =line_width * 2 wall_0_wipe_dist = =line_width * 2 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg similarity index 75% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_PP_Superdraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg index ee9576aed8..c8a8ff2c11 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg @@ -1,40 +1,37 @@ [general] -version = 4 -name = Sprint definition = ultimaker_s3 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_pp +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] brim_width = 25 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 17 -top_skin_expand_distance = =line_width * 2 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' -material_bed_temperature_layer_0 = =material_bed_temperature +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 2 -material_print_temperature_layer_0 = =default_material_print_temperature + 2 -material_standby_temperature = 100 multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 20 -retract_at_layer_change = False retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 retraction_min_travel = 1.5 retraction_prime_speed = 15 -speed_wall_x = =math.ceil(speed_wall * 30 / 30) speed_infill = =math.ceil(speed_wall * 30 / 30) +speed_wall_x = =math.ceil(speed_wall * 30 / 30) switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 +top_skin_expand_distance = =line_width * 2 wall_0_wipe_dist = =line_width * 2 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg similarity index 61% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg index 622bc635c7..6d8416967e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg @@ -1,35 +1,27 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_tough_pla +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' -layer_height_0 = 0.4 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 0 -material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = False -retract_at_layer_change = False speed_print = 45 speed_topbottom = =round(speed_print * 35 / 45) speed_wall = =round(speed_print * 40 / 45) speed_wall_0 = =round(speed_print * 35 / 45) support_angle = 70 top_bottom_thickness = =layer_height * 6 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg similarity index 55% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg index d4a02e65e8..22dbf354a7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg @@ -1,38 +1,28 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s3 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_tough_pla +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' -layer_height_0 = 0.4 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 5 -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = False -retract_at_layer_change = False speed_infill = =math.ceil(speed_print * 30 / 35) speed_print = 35 speed_topbottom = =math.ceil(speed_print * 20 / 35) -speed_wall = =math.ceil(speed_print * 25/ 35) +speed_wall = =math.ceil(speed_print * 25 / 35) speed_wall_0 = =math.ceil(speed_print * 20 / 35) support_angle = 70 top_bottom_thickness = =layer_height * 4 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg similarity index 58% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Superdraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg index f20bde1f59..0eb95a55e8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg @@ -1,37 +1,28 @@ [general] -version = 4 -name = Sprint definition = ultimaker_s3 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_tough_pla +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' -layer_height_0 = 0.4 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 5 -material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = False -raft_margin = 10 -retract_at_layer_change = False speed_infill = =math.ceil(speed_print * 30 / 30) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) -speed_wall = =math.ceil(speed_print * 25/ 30) +speed_wall = =math.ceil(speed_print * 25 / 30) speed_wall_0 = =math.ceil(speed_print * 20 / 30) support_angle = 70 top_bottom_thickness = =layer_height * 4 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg similarity index 82% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_TPU_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg index 2fba108a33..55166176e3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg @@ -1,33 +1,28 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] brim_width = 8.75 -cool_min_layer_time_fan_speed_max = 6 -top_skin_expand_distance = =line_width * 2 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 -material_final_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature - 10 material_flow = 105 -material_initial_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 -material_print_temperature_layer_0 = =material_print_temperature + 19 -material_standby_temperature = 100 multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 -retract_at_layer_change = False retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 @@ -43,5 +38,7 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 +top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 2 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg similarity index 81% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_TPU_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg index 2e06b86620..6472902a60 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg @@ -1,33 +1,28 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s3 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_tpu +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] brim_width = 8.75 -cool_min_layer_time_fan_speed_max = 6 -top_skin_expand_distance = =line_width * 2 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 -material_final_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature - 10 material_flow = 105 -material_initial_print_temperature = =material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature + 17 -material_standby_temperature = 100 +material_initial_print_temperature = =material_print_temperature - 10 multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 -retract_at_layer_change = False retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 @@ -43,5 +38,7 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 +top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 2 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg similarity index 82% rename from resources/quality/ultimaker_s3/um_s3_aa0.8_TPU_Superdraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg index 2fbc3d7118..0af9741ce9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg @@ -1,49 +1,46 @@ [general] -version = 4 -name = Sprint definition = ultimaker_s3 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_tpu +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] brim_width = 8.75 -cool_min_layer_time_fan_speed_max = 6 -top_skin_expand_distance = =line_width * 2 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 -material_final_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature - 10 material_flow = 105 -material_initial_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 2 -material_print_temperature_layer_0 = =material_print_temperature + 15 -material_standby_temperature = 100 multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 -retract_at_layer_change = False retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 +speed_infill = =speed_print speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) speed_wall = =speed_print speed_wall_x = =speed_print -speed_infill = =speed_print support_angle = 50 switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 +top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 2 + diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg similarity index 72% rename from resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_High_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg index 5bcaf96f5f..459b6471dc 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg @@ -1,23 +1,23 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker_s3 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pva +quality_type = high +setting_version = 22 +type = quality variant = BB 0.4 +weight = 1 [values] brim_replaces_support = False -material_standby_temperature = 100 +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) prime_tower_enable = False retraction_count_max = 5 +skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_brim_enable = True +support_infill_sparse_thickness = =3 * layer_height support_interface_enable = True -skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) -cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -support_use_towers = True + diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg similarity index 76% rename from resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg index 85e3e2530a..822ded7510 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg @@ -1,25 +1,25 @@ [general] -version = 4 -name = Normal definition = ultimaker_s3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pva +quality_type = fast +setting_version = 22 +type = quality variant = BB 0.4 +weight = -1 [values] brim_replaces_support = False +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature + 5 -material_standby_temperature = 100 prime_tower_enable = False retraction_count_max = 5 skin_overlap = 15 +skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_brim_enable = True +support_infill_sparse_thickness = =2 * layer_height support_interface_enable = True -skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) -cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -support_use_towers = True + diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg similarity index 72% rename from resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg index 7b31e48283..b5b56b9856 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg @@ -1,23 +1,23 @@ [general] -version = 4 -name = Fine definition = ultimaker_s3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pva +quality_type = normal +setting_version = 22 +type = quality variant = BB 0.4 +weight = 0 [values] brim_replaces_support = False -material_standby_temperature = 100 +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) prime_tower_enable = False retraction_count_max = 5 +skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_brim_enable = True +support_infill_sparse_thickness = =2 * layer_height support_interface_enable = True -skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) -cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -support_use_towers = True + diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg similarity index 76% rename from resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg index 852256ec7d..45b2daa4f2 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg @@ -1,25 +1,24 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pva +quality_type = draft +setting_version = 22 +type = quality variant = BB 0.4 +weight = -2 [values] brim_replaces_support = False +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature + 10 -material_standby_temperature = 100 prime_tower_enable = False retraction_count_max = 5 skin_overlap = 20 +skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_brim_enable = True support_interface_enable = True -skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) -cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -support_use_towers = True + diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg similarity index 71% rename from resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg index da87e8211f..6d4d6ad6ea 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg @@ -1,24 +1,23 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s3 +name = Extra Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 -material = generic_pva -variant = BB 0.4 is_experimental = True +material = generic_pva +quality_type = verydraft +setting_version = 22 +type = quality +variant = BB 0.4 +weight = -3 [values] brim_replaces_support = False -material_standby_temperature = 100 +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) retraction_count_max = 5 +skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_brim_enable = True support_infill_sparse_thickness = 0.3 support_interface_enable = True -skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) -cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -support_use_towers = True + diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg similarity index 74% rename from resources/quality/ultimaker_s3/um_s3_bb0.8_PVA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg index 7e2103043f..16582d3349 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg @@ -1,23 +1,22 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pva +quality_type = draft +setting_version = 22 +type = quality variant = BB 0.8 +weight = -2 [values] brim_replaces_support = False +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature + 5 -material_standby_temperature = 100 retraction_count_max = 5 +skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_brim_enable = True support_interface_enable = True -skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) -cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -support_use_towers = True + diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_PVA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg similarity index 73% rename from resources/quality/ultimaker_s3/um_s3_bb0.8_PVA_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg index 28f069a61a..db45276da4 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_PVA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg @@ -1,23 +1,22 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s3 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_pva +quality_type = verydraft +setting_version = 22 +type = quality variant = BB 0.8 +weight = -3 [values] brim_replaces_support = False -material_standby_temperature = 100 +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) retraction_count_max = 5 +skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_brim_enable = True support_infill_sparse_thickness = 0.3 support_interface_enable = True -skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) -cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -support_use_towers = True + diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_PVA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg similarity index 71% rename from resources/quality/ultimaker_s3/um_s3_bb0.8_PVA_Superdraft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg index 9b1583ed51..7eb199d85b 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_PVA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg @@ -1,22 +1,21 @@ [general] -version = 4 -name = Sprint definition = ultimaker_s3 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_pva +quality_type = superdraft +setting_version = 22 +type = quality variant = BB 0.8 +weight = -4 [values] brim_replaces_support = False -material_standby_temperature = 100 +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) retraction_count_max = 5 +skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_brim_enable = True support_interface_enable = True -skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) -cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -support_use_towers = True + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFCPE_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg similarity index 50% rename from resources/quality/ultimaker_s3/um_s3_cc0.4_CFFCPE_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg index 86de01d997..d6a3a45efa 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFCPE_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg @@ -1,29 +1,18 @@ [general] -version = 4 -name = Normal definition = ultimaker_s3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -2 material = generic_cffcpe +quality_type = fast +setting_version = 22 +type = quality variant = CC 0.4 +weight = -1 [values] -adhesion_type = skirt -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 - -initial_layer_line_width_factor = 130.0 - -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFCPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg similarity index 52% rename from resources/quality/ultimaker_s3/um_s3_cc0.4_CFFCPE_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg index 88174ae66d..d67bcf1a6f 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg @@ -1,29 +1,18 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_cffcpe +quality_type = draft +setting_version = 22 +type = quality variant = CC 0.4 +weight = -2 [values] -adhesion_type = skirt -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 - -initial_layer_line_width_factor = 130.0 - -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFPA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg similarity index 50% rename from resources/quality/ultimaker_s3/um_s3_cc0.4_CFFPA_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg index bb4d52b0de..4394d46fea 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFPA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg @@ -1,29 +1,18 @@ [general] -version = 4 -name = Normal definition = ultimaker_s3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -2 material = generic_cffpa +quality_type = fast +setting_version = 22 +type = quality variant = CC 0.4 +weight = -1 [values] -adhesion_type = skirt -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 - -initial_layer_line_width_factor = 130.0 - -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFPA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg similarity index 52% rename from resources/quality/ultimaker_s3/um_s3_cc0.4_CFFPA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg index 8b4c50b81e..c707e645c8 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_CFFPA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg @@ -1,29 +1,18 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_cffpa +quality_type = draft +setting_version = 22 +type = quality variant = CC 0.4 +weight = -2 [values] -adhesion_type = skirt -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 - -initial_layer_line_width_factor = 130.0 - -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFCPE_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg similarity index 50% rename from resources/quality/ultimaker_s3/um_s3_cc0.4_GFFCPE_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg index 1fddab1122..2f6c5f737b 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFCPE_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg @@ -1,29 +1,18 @@ [general] -version = 4 -name = Normal definition = ultimaker_s3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -2 material = generic_gffcpe +quality_type = fast +setting_version = 22 +type = quality variant = CC 0.4 +weight = -1 [values] -adhesion_type = brim -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 - -initial_layer_line_width_factor = 130.0 - -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFCPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg similarity index 52% rename from resources/quality/ultimaker_s3/um_s3_cc0.4_GFFCPE_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg index 6df2857707..6eaed0d9d3 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg @@ -1,29 +1,18 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_gffcpe +quality_type = draft +setting_version = 22 +type = quality variant = CC 0.4 +weight = -2 [values] -adhesion_type = brim -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 - -initial_layer_line_width_factor = 130.0 - -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFPA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg similarity index 50% rename from resources/quality/ultimaker_s3/um_s3_cc0.4_GFFPA_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg index 1db3242244..4002975436 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFPA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg @@ -1,29 +1,18 @@ [general] -version = 4 -name = Normal definition = ultimaker_s3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -2 material = generic_gffpa +quality_type = fast +setting_version = 22 +type = quality variant = CC 0.4 +weight = -1 [values] -adhesion_type = brim -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 - -initial_layer_line_width_factor = 130.0 - -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFPA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg similarity index 52% rename from resources/quality/ultimaker_s3/um_s3_cc0.4_GFFPA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg index 33d8895bad..0202873a8f 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_GFFPA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg @@ -1,29 +1,18 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_gffpa +quality_type = draft +setting_version = 22 +type = quality variant = CC 0.4 +weight = -2 [values] -adhesion_type = brim -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 - -initial_layer_line_width_factor = 130.0 - -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_PLA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg similarity index 60% rename from resources/quality/ultimaker_s3/um_s3_cc0.4_PLA_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg index 5a9f03349a..ea2902cd6c 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg @@ -1,37 +1,29 @@ [general] -version = 4 -name = Normal definition = ultimaker_s3 +name = Normal - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -2 -material = generic_pla -variant = CC 0.4 is_experimental = True +material = generic_pla +quality_type = fast +setting_version = 22 +type = quality +variant = CC 0.4 +weight = -1 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = True -retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) +speed_wall_x = =speed_wall support_angle = 70 top_bottom_thickness = =layer_height * 4 + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg similarity index 60% rename from resources/quality/ultimaker_s3/um_s3_cc0.4_PLA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg index 10d8666ade..bbbad9be1f 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg @@ -1,37 +1,29 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -3 -material = generic_pla -variant = CC 0.4 is_experimental = True +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = CC 0.4 +weight = -2 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = True -retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) +speed_wall_x = =speed_wall support_angle = 70 top_bottom_thickness = =layer_height * 4 + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_CFFCPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg similarity index 52% rename from resources/quality/ultimaker_s3/um_s3_cc0.6_CFFCPE_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg index c5843560c3..13a0fdc020 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_CFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg @@ -1,27 +1,18 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_cffcpe +quality_type = draft +setting_version = 22 +type = quality variant = CC 0.6 +weight = -2 [values] -adhesion_type = skirt -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 -initial_layer_line_width_factor = 130.0 -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_CFFPA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg similarity index 52% rename from resources/quality/ultimaker_s3/um_s3_cc0.6_CFFPA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg index f2638e6bd6..35aa427ab3 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_CFFPA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg @@ -1,27 +1,18 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_cffpa +quality_type = draft +setting_version = 22 +type = quality variant = CC 0.6 +weight = -2 [values] -adhesion_type = skirt -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 -initial_layer_line_width_factor = 130.0 -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_GFFCPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg similarity index 52% rename from resources/quality/ultimaker_s3/um_s3_cc0.6_GFFCPE_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg index 2df0244992..269088cdde 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_GFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg @@ -1,27 +1,18 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_gffcpe +quality_type = draft +setting_version = 22 +type = quality variant = CC 0.6 +weight = -2 [values] -adhesion_type = brim -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 -initial_layer_line_width_factor = 130.0 -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_GFFPA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg similarity index 52% rename from resources/quality/ultimaker_s3/um_s3_cc0.6_GFFPA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg index cf26243471..dcd140b0d4 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_GFFPA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg @@ -1,27 +1,18 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_gffpa +quality_type = draft +setting_version = 22 +type = quality variant = CC 0.6 +weight = -2 [values] -adhesion_type = brim -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 -initial_layer_line_width_factor = 130.0 -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_PLA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg similarity index 60% rename from resources/quality/ultimaker_s3/um_s3_cc0.6_PLA_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg index c561977e5b..402ae15eba 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_PLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg @@ -1,37 +1,29 @@ [general] -version = 4 -name = Normal definition = ultimaker_s3 +name = Normal - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -2 -material = generic_pla -variant = CC 0.6 is_experimental = True +material = generic_pla +quality_type = fast +setting_version = 22 +type = quality +variant = CC 0.6 +weight = -1 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = True -retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) +speed_wall_x = =speed_wall support_angle = 70 top_bottom_thickness = =layer_height * 4 + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg similarity index 60% rename from resources/quality/ultimaker_s3/um_s3_cc0.6_PLA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg index 237eda83e3..0c9154a233 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg @@ -1,37 +1,29 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -3 -material = generic_pla -variant = CC 0.6 is_experimental = True +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = CC 0.6 +weight = -2 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = True -retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) +speed_wall_x = =speed_wall support_angle = 70 top_bottom_thickness = =layer_height * 4 + 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 e621b4da79..7f29b2a7fc 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Fast definition = ultimaker_s3 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] layer_height = 0.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 3742eec814..a81faa637b 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = ultimaker_s3 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.15 -support_infill_sparse_thickness = =2*layer_height + 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 4c7dbe5b28..432531edba 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker_s3 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] layer_height = 0.06 -support_infill_sparse_thickness = =3*layer_height + 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 ff65fd5c57..c48aee9591 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Fine definition = ultimaker_s3 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.1 -support_infill_sparse_thickness = =2*layer_height + 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 5fbfe49654..73600ea4aa 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Sprint definition = ultimaker_s3 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 global_quality = True +quality_type = superdraft +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.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 0493de7ed4..8d331bb8f5 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s3 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 global_quality = True +quality_type = verydraft +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.3 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg similarity index 72% rename from resources/quality/ultimaker_s5/um_s5_aa0.25_ABS_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg index 563bddc534..13309023e1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg @@ -1,18 +1,17 @@ [general] -version = 4 -name = Fine definition = ultimaker_s5 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.25 +weight = 0 [values] -cool_fan_speed = 40 infill_overlap = =0 if infill_sparse_density > 80 else 15 -material_final_print_temperature = =material_print_temperature - 5 speed_topbottom = =math.ceil(speed_print * 30 / 55) + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg similarity index 83% rename from resources/quality/ultimaker_s5/um_s5_aa0.25_CPE_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg index f895450c0a..ba519667d0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg @@ -1,18 +1,18 @@ [general] -version = 4 -name = Fine definition = ultimaker_s5 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_cpe +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.25 +weight = 0 [values] -retraction_combing_max_distance = 50 speed_infill = =math.ceil(speed_print * 40 / 55) speed_topbottom = =math.ceil(speed_print * 30 / 55) top_bottom_thickness = 0.8 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_Nylon_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg similarity index 60% rename from resources/quality/ultimaker_s5/um_s5_aa0.25_Nylon_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg index 1d3d811ba7..34519adf1b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg @@ -1,29 +1,21 @@ [general] -version = 4 -name = Fine definition = ultimaker_s5 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_nylon +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.25 +weight = 0 [values] -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 12 - machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 ooze_shield_angle = 40 -raft_acceleration = =acceleration_layer_0 -raft_airgap = =round(layer_height_0 * 0.85, 2) -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 3) -raft_jerk = =jerk_layer_0 -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) +raft_airgap = 0.15 retraction_min_travel = 5 skin_overlap = 50 speed_print = 70 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg similarity index 75% rename from resources/quality/ultimaker_s5/um_s5_aa0.25_PC_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg index 0ee0d7cbe9..88ef354418 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg @@ -1,39 +1,31 @@ [general] -version = 4 -name = Fine - Experimental definition = ultimaker_s5 +name = Fine - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_pc -variant = AA 0.25 is_experimental = True +material = generic_pc +quality_type = normal +setting_version = 22 +type = quality +variant = AA 0.25 +weight = 0 [values] -adhesion_type = brim brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + layer_height -cool_fan_speed_max = 50 -cool_min_layer_time_fan_speed_max = 5 -cool_min_speed = 5 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 -jerk_print = 25 machine_min_cool_heat_time_window = 15 multiple_mesh_overlap = 0 ooze_shield_angle = 40 prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 -raft_interface_thickness = =max(layer_height * 1.5, 0.225) retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 skin_overlap = 30 -speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) @@ -43,3 +35,4 @@ 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_s5/um_s5_aa0.25_PETG_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg similarity index 67% rename from resources/quality/ultimaker_s5/um_s5_aa0.25_PETG_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg index 76c8372166..7b41e45d1c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg @@ -1,23 +1,19 @@ [general] -version = 4 -name = Fine definition = ultimaker_s5 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.25 +weight = 0 [values] -retraction_combing_max_distance = 8 +material_print_temperature = =default_material_print_temperature - 5 speed_infill = =math.ceil(speed_print * 40 / 55) speed_topbottom = =math.ceil(speed_print * 30 / 55) top_bottom_thickness = 0.8 -initial_layer_line_width_factor = 100 -material_print_temperature = =default_material_print_temperature - 5 -material_shrinkage_percentage_xy = 100.5 -material_shrinkage_percentage_z = 100.1 \ No newline at end of file diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg similarity index 63% rename from resources/quality/ultimaker_s5/um_s5_aa0.25_PLA_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg index d469288e35..dfa2383209 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg @@ -1,37 +1,30 @@ [general] -version = 4 -name = Fine definition = ultimaker_s5 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.25 +weight = 0 [values] brim_width = 8 -cool_fan_full_at_height = =layer_height_0 -cool_min_speed = 10 infill_overlap = =0 if infill_sparse_density > 80 else 10 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = 190 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 retraction_hop = 0.2 skin_overlap = 5 -speed_layer_0 = =speed_print speed_print = 30 -speed_travel_layer_0 = 120 speed_wall = =math.ceil(speed_print * 25 / 30) speed_wall_0 = =math.ceil(speed_print * 20 / 30) top_bottom_thickness = 0.72 travel_avoid_distance = 0.4 wall_0_inset = 0.015 wall_0_wipe_dist = 0.25 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg similarity index 77% rename from resources/quality/ultimaker_s5/um_s5_aa0.25_PP_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg index df673c641c..4b9d902b31 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg @@ -1,31 +1,25 @@ [general] -version = 4 -name = Fine - Experimental definition = ultimaker_s5 +name = Fine - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_pp -variant = AA 0.25 is_experimental = True +material = generic_pp +quality_type = normal +setting_version = 22 +type = quality +variant = AA 0.25 +weight = 0 [values] brim_width = 10 -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 5 -cool_min_speed = 2.5 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 -jerk_print = 25 machine_min_cool_heat_time_window = 15 -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_final_print_temperature = =material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 5 +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 15 -material_print_temperature_layer_0 = =material_print_temperature + 3 multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_size = 16 @@ -36,9 +30,7 @@ retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 retraction_prime_speed = 15 -speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 25) support_angle = 50 @@ -48,3 +40,4 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 1 travel_avoid_distance = 3 wall_0_inset = 0 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg similarity index 63% rename from resources/quality/ultimaker_s5/um_s5_aa0.25_TPLA_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg index 1e0b4c0044..1da66c507e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg @@ -1,36 +1,29 @@ [general] -version = 4 -name = Fine definition = ultimaker_s5 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_tough_pla +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.25 +weight = 0 [values] brim_width = 8 -cool_fan_full_at_height = =layer_height_0 -cool_min_speed = 7 infill_overlap = =0 if infill_sparse_density > 80 else 10 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature - 15 -material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 100.1 skin_overlap = 5 -speed_layer_0 = =math.ceil(speed_print * 30 / 30) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) -speed_travel_layer_0 = 120 speed_wall = =math.ceil(speed_print * 25 / 30) speed_wall_0 = =math.ceil(speed_print * 20 / 30) top_bottom_thickness = 0.72 wall_0_inset = 0.015 wall_0_wipe_dist = 0.25 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_Draft_Print.inst.cfg deleted file mode 100644 index 9271ecc864..0000000000 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_Draft_Print.inst.cfg +++ /dev/null @@ -1,35 +0,0 @@ -[general] -version = 4 -name = Fast -definition = ultimaker_s5 - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 -material = generic_nylon -variant = AA 0.4 - -[values] -adhesion_type = brim -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 10 -material_print_temperature = =default_material_print_temperature + 10 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -material_standby_temperature = 100 -ooze_shield_angle = 40 -raft_acceleration = =acceleration_layer_0 -raft_airgap = 0.4 -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) -raft_jerk = =jerk_layer_0 -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) -retraction_prime_speed = =retraction_speed -skin_overlap = 50 -speed_layer_0 = 10 -switch_extruder_prime_speed = 30 -switch_extruder_retraction_amount = 30 -switch_extruder_retraction_speeds = 40 -raft_surface_speed = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_Fast_Print.inst.cfg deleted file mode 100644 index eb4ced65c1..0000000000 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_Fast_Print.inst.cfg +++ /dev/null @@ -1,37 +0,0 @@ -[general] -version = 4 -name = Normal -definition = ultimaker_s5 - -[metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 -material = generic_nylon -variant = AA 0.4 - -[values] -adhesion_type = brim -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 10 - - -material_print_temperature = =default_material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -material_standby_temperature = 100 -ooze_shield_angle = 40 -raft_acceleration = =acceleration_layer_0 -raft_airgap = 0.4 -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) -raft_jerk = =jerk_layer_0 -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) -retraction_prime_speed = =retraction_speed -skin_overlap = 50 -speed_layer_0 = 10 -switch_extruder_prime_speed = 30 -switch_extruder_retraction_amount = 30 -switch_extruder_retraction_speeds = 40 -raft_surface_speed = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_High_Quality.inst.cfg deleted file mode 100644 index 7ba60c0fd4..0000000000 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_High_Quality.inst.cfg +++ /dev/null @@ -1,36 +0,0 @@ -[general] -version = 4 -name = Extra Fine -definition = ultimaker_s5 - -[metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 -material = generic_nylon -variant = AA 0.4 - -[values] -adhesion_type = brim -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 15 - - -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -material_standby_temperature = 100 -ooze_shield_angle = 40 -raft_acceleration = =acceleration_layer_0 -raft_airgap = 0.4 -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) -raft_jerk = =jerk_layer_0 -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) -retraction_prime_speed = =retraction_speed -skin_overlap = 50 -speed_layer_0 = 10 -switch_extruder_prime_speed = 30 -switch_extruder_retraction_amount = 30 -switch_extruder_retraction_speeds = 40 -raft_surface_speed = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_Normal_Quality.inst.cfg deleted file mode 100644 index e991199658..0000000000 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_Nylon_Normal_Quality.inst.cfg +++ /dev/null @@ -1,36 +0,0 @@ -[general] -version = 4 -name = Fine -definition = ultimaker_s5 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_nylon -variant = AA 0.4 - -[values] -adhesion_type = brim -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 12 - - -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -material_standby_temperature = 100 -ooze_shield_angle = 40 -raft_acceleration = =acceleration_layer_0 -raft_airgap = 0.4 -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) -raft_jerk = =jerk_layer_0 -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) -retraction_prime_speed = =retraction_speed -skin_overlap = 50 -speed_layer_0 = 10 -switch_extruder_prime_speed = 30 -switch_extruder_retraction_amount = 30 -switch_extruder_retraction_speeds = 40 -raft_surface_speed = 45 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg similarity index 81% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_High_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg index 0383c18746..8ecbf19956 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg @@ -1,30 +1,25 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker_s5 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_abs +quality_type = high +setting_version = 22 +type = quality variant = AA 0.4 +weight = 1 [values] -cool_min_speed = 12 machine_nozzle_cool_down_speed = 0.8 machine_nozzle_heat_up_speed = 1.5 -material_print_temperature = =default_material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature - 15 material_final_print_temperature = =material_print_temperature - 20 +material_print_temperature = =default_material_print_temperature + 5 prime_tower_enable = False +raft_airgap = 0.15 +speed_infill = =math.ceil(speed_print * 40 / 50) speed_print = 50 -speed_layer_0 = 10 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 30 / 50) - -speed_infill = =math.ceil(speed_print * 40 / 50) - -raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg similarity index 83% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg index 7001d74a46..f576b20987 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg @@ -1,28 +1,26 @@ [general] -version = 4 -name = Normal definition = ultimaker_s5 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_abs +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] -cool_min_speed = 7 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_print_temperature = =default_material_print_temperature + 15 -material_initial_print_temperature = =material_print_temperature - 15 material_final_print_temperature = =material_print_temperature - 20 +material_print_temperature = =default_material_print_temperature + 15 prime_tower_enable = False +raft_airgap = 0.15 +speed_infill = =math.ceil(speed_print * 45 / 60) speed_print = 60 -speed_layer_0 = 10 speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_wall = =math.ceil(speed_print * 40 / 60) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -speed_infill = =math.ceil(speed_print * 45 / 60) -raft_airgap = 0.15 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg similarity index 84% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg index 004a29cf0a..65e2cb0361 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg @@ -1,28 +1,25 @@ [general] -version = 4 -name = Fine definition = ultimaker_s5 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_print_temperature = =default_material_print_temperature + 10 -material_initial_print_temperature = =material_print_temperature - 15 material_final_print_temperature = =material_print_temperature - 20 +material_print_temperature = =default_material_print_temperature + 10 prime_tower_enable = False +raft_airgap = 0.15 +speed_infill = =math.ceil(speed_print * 40 / 55) speed_print = 55 -speed_layer_0 = 10 speed_topbottom = =math.ceil(speed_print * 30 / 55) speed_wall = =math.ceil(speed_print * 30 / 55) - -speed_infill = =math.ceil(speed_print * 40 / 55) -raft_airgap = 0.15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg similarity index 85% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg index 4769b27977..b67d9ce66d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg @@ -1,28 +1,27 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_print_temperature = =default_material_print_temperature + 20 -material_initial_print_temperature = =material_print_temperature - 15 material_final_print_temperature = =material_print_temperature - 20 +material_print_temperature = =default_material_print_temperature + 20 prime_tower_enable = False +raft_airgap = 0.15 skin_overlap = 20 +speed_infill = =math.ceil(speed_print * 50 / 60) speed_print = 60 -speed_layer_0 = 10 speed_topbottom = =math.ceil(speed_print * 35 / 60) speed_wall = =math.ceil(speed_print * 45 / 60) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) -speed_infill = =math.ceil(speed_print * 50 / 60) -raft_airgap = 0.15 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg similarity index 81% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg index e57c078d70..984b8f65a0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg @@ -1,33 +1,31 @@ [general] -version = 4 -name = Normal definition = ultimaker_s5 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_bam +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] brim_replaces_support = False -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -# prime_tower_enable: see CURA-4248 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 speed_print = 80 -speed_layer_0 = =math.ceil(speed_print * 20 / 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) -top_bottom_thickness = 1 -support_brim_enable = True -support_interface_enable = True -support_interface_density = =min(extruderValues('material_surface_energy')) -support_top_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 1) * layer_height -support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height support_angle = 45 +support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height +support_brim_enable = True +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_s5/um_s5_aa0.4_BAM_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg similarity index 72% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg index d63710b4b6..e00e857751 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg @@ -1,32 +1,28 @@ [general] -version = 4 -name = Fine definition = ultimaker_s5 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_bam +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] brim_replaces_support = False -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed -cool_min_speed = 7 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_print_temperature = =default_material_print_temperature - 10 -# prime_tower_enable: see CURA-4248 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 skin_overlap = 10 -speed_layer_0 = =math.ceil(speed_print * 20 / 70) -support_brim_enable = True -support_interface_enable = True -support_interface_density = =min(extruderValues('material_surface_energy')) -support_top_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 1) * layer_height -support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height support_angle = 45 +support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height +support_brim_enable = True +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_s5/um_s5_aa0.4_BAM_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg similarity index 82% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg index 28d7691462..b554c8f040 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg @@ -1,34 +1,31 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_bam +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] brim_replaces_support = False -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed 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: see CURA-4248 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 skin_overlap = 20 -speed_layer_0 = =math.ceil(speed_print * 20 / 70) 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) -top_bottom_thickness = 1 -support_brim_enable = True -support_interface_enable = True -support_interface_density = =min(extruderValues('material_surface_energy')) -support_top_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height -support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height support_angle = 45 +support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height +support_brim_enable = True +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_s5/um_s5_aa0.4_BAM_VeryDraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg similarity index 80% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_VeryDraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg index f6769a439f..eb4d1ae330 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_BAM_VeryDraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg @@ -1,34 +1,32 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s5 +name = Extra Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -2 -material = generic_bam -variant = AA 0.4 is_experimental = True +material = generic_bam +quality_type = verydraft +setting_version = 22 +type = quality +variant = AA 0.4 +weight = -3 [values] brim_replaces_support = False -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed 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 skin_overlap = 20 -speed_layer_0 = =math.ceil(speed_print * 20 / 70) 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) -top_bottom_thickness = 1 -support_brim_enable = True -support_interface_enable = True -support_interface_density = =min(extruderValues('material_surface_energy')) -support_top_distance = 0.3 -support_bottom_distance = 0.3 support_angle = 45 +support_bottom_distance = 0.3 +support_brim_enable = True +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_s5/um_s5_aa0.4_CPEP_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg similarity index 69% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_High_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg index 500f0a4428..bc9db7871b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg @@ -1,44 +1,35 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker_s5 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_cpe_plus +quality_type = high +setting_version = 22 +type = quality variant = AA 0.4 +weight = 1 [values] -cool_fan_speed_max = 50 -cool_min_speed = 5 - infill_overlap = 0 infill_wipe_dist = 0 -jerk_print = 25 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 - 5 material_print_temperature = =default_material_print_temperature + 2 -material_print_temperature_layer_0 = =material_print_temperature multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True -retraction_combing_max_distance = 50 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True retraction_prime_speed = =retraction_speed skin_overlap = 20 -speed_layer_0 = =math.ceil(speed_print * 20 / 40) speed_print = 40 speed_topbottom = =math.ceil(speed_print * 30 / 35) - speed_wall = =math.ceil(speed_print * 35 / 40) speed_wall_0 = =math.ceil(speed_wall * 30 / 35) support_z_distance = =layer_height wall_0_inset = 0 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg similarity index 67% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg index c493b0d445..42912d75a5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg @@ -1,42 +1,33 @@ [general] -version = 4 -name = Normal definition = ultimaker_s5 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_cpe_plus +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] -cool_fan_speed_max = 80 -cool_min_speed = 6 - infill_overlap = 0 infill_wipe_dist = 0 -jerk_print = 25 machine_min_cool_heat_time_window = 15 -material_final_print_temperature = =material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 5 material_print_temperature = =default_material_print_temperature + 10 -material_print_temperature_layer_0 = =material_print_temperature multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True -retraction_combing_max_distance = 50 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True retraction_prime_speed = =retraction_speed skin_overlap = 20 -speed_layer_0 = =math.ceil(speed_print * 20 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) - speed_wall = =math.ceil(speed_print * 45 / 45) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) support_z_distance = =layer_height wall_0_inset = 0 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg similarity index 69% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg index ccedad12ec..f356b8d678 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg @@ -1,43 +1,35 @@ [general] -version = 4 -name = Fine definition = ultimaker_s5 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_cpe_plus +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] -cool_fan_speed_max = 50 -cool_min_speed = 7 infill_overlap = 0 infill_wipe_dist = 0 -jerk_print = 25 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 - 5 material_print_temperature = =default_material_print_temperature + 5 -material_print_temperature_layer_0 = =material_print_temperature multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True -retraction_combing_max_distance = 50 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True retraction_prime_speed = =retraction_speed skin_overlap = 20 -speed_layer_0 = =math.ceil(speed_print * 20 / 40) speed_print = 40 speed_topbottom = =math.ceil(speed_print * 30 / 35) - speed_wall = =math.ceil(speed_print * 35 / 40) speed_wall_0 = =math.ceil(speed_wall * 30 / 35) support_z_distance = =layer_height wall_0_inset = 0 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg similarity index 67% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg index 267a36d681..06a1a739c6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -1,42 +1,33 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_cpe_plus +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] -cool_fan_speed_max = 80 -cool_min_speed = 5 - infill_overlap = 0 infill_wipe_dist = 0 -jerk_print = 25 machine_min_cool_heat_time_window = 15 -material_final_print_temperature = =material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 5 material_print_temperature = =default_material_print_temperature + 10 -material_print_temperature_layer_0 = =material_print_temperature multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True -retraction_combing_max_distance = 50 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True retraction_prime_speed = =retraction_speed skin_overlap = 20 -speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 40 / 50) - speed_wall = =math.ceil(speed_print * 50 / 50) speed_wall_0 = =math.ceil(speed_wall * 40 / 50) support_z_distance = =layer_height wall_0_inset = 0 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg similarity index 63% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_High_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg index 40d950871d..5e96ec7e28 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg @@ -1,29 +1,24 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker_s5 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_cpe +quality_type = high +setting_version = 22 +type = quality variant = AA 0.4 +weight = 1 [values] -cool_min_speed = 12 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 5 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -retraction_combing_max_distance = 50 retraction_prime_speed = =retraction_speed +speed_infill = =math.ceil(speed_print * 40 / 50) speed_print = 50 -speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 30 / 50) -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -speed_infill = =math.ceil(speed_print * 40 / 50) \ No newline at end of file diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg similarity index 62% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg index 68d2879f47..ec4cef925d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg @@ -1,28 +1,23 @@ [general] -version = 4 -name = Normal definition = ultimaker_s5 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_cpe +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] -cool_min_speed = 7 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' material_print_temperature = =default_material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -retraction_combing_max_distance = 50 retraction_prime_speed = =retraction_speed +speed_infill = =math.ceil(speed_print * 50 / 60) speed_print = 60 -speed_layer_0 = =math.ceil(speed_print * 20 / 60) speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_wall = =math.ceil(speed_print * 40 / 60) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -speed_infill = =math.ceil(speed_print * 50 / 60) \ No newline at end of file diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg similarity index 61% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg index a5cab8a96c..2928127314 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg @@ -1,27 +1,23 @@ [general] -version = 4 -name = Fine definition = ultimaker_s5 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_cpe +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -retraction_combing_max_distance = 50 retraction_prime_speed = =retraction_speed +speed_infill = =math.ceil(speed_print * 45 / 55) speed_print = 55 -speed_layer_0 = =math.ceil(speed_print * 20 / 55) speed_topbottom = =math.ceil(speed_print * 30 / 55) speed_wall = =math.ceil(speed_print * 30 / 55) -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -speed_infill = =math.ceil(speed_print * 45 / 55) \ No newline at end of file diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg similarity index 70% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg index bdfd6aadea..5b52299106 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg @@ -1,27 +1,24 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_cpe +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' material_print_temperature = =default_material_print_temperature + 10 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -retraction_combing_max_distance = 50 retraction_prime_speed = =retraction_speed skin_overlap = 20 +speed_infill = =math.ceil(speed_print * 50 / 60) speed_print = 60 -speed_layer_0 = =math.ceil(speed_print * 20 / 60) speed_topbottom = =math.ceil(speed_print * 35 / 60) speed_wall = =math.ceil(speed_print * 45 / 60) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -speed_infill = =math.ceil(speed_print * 50 / 60) + 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 new file mode 100644 index 0000000000..939a5c71a4 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_s5 +name = Extra Fine +version = 4 + +[metadata] +material = generic_nylon +quality_type = high +setting_version = 22 +type = quality +variant = AA 0.4 +weight = 1 + +[values] +ooze_shield_angle = 40 +raft_airgap = 0.4 +retraction_prime_speed = =retraction_speed +skin_overlap = 50 +switch_extruder_prime_speed = 30 +switch_extruder_retraction_amount = 30 +switch_extruder_retraction_speeds = 40 + 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 new file mode 100644 index 0000000000..7870694a9c --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = ultimaker_s5 +name = Normal +version = 4 + +[metadata] +material = generic_nylon +quality_type = fast +setting_version = 22 +type = quality +variant = AA 0.4 +weight = -1 + +[values] +material_print_temperature = =default_material_print_temperature + 5 +ooze_shield_angle = 40 +raft_airgap = 0.4 +retraction_prime_speed = =retraction_speed +skin_overlap = 50 +switch_extruder_prime_speed = 30 +switch_extruder_retraction_amount = 30 +switch_extruder_retraction_speeds = 40 + 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 new file mode 100644 index 0000000000..3f986ccff9 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_s5 +name = Fine +version = 4 + +[metadata] +material = generic_nylon +quality_type = normal +setting_version = 22 +type = quality +variant = AA 0.4 +weight = 0 + +[values] +ooze_shield_angle = 40 +raft_airgap = 0.4 +retraction_prime_speed = =retraction_speed +skin_overlap = 50 +switch_extruder_prime_speed = 30 +switch_extruder_retraction_amount = 30 +switch_extruder_retraction_speeds = 40 + 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 new file mode 100644 index 0000000000..73ec3ed2aa --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = ultimaker_s5 +name = Fast +version = 4 + +[metadata] +material = generic_nylon +quality_type = draft +setting_version = 22 +type = quality +variant = AA 0.4 +weight = -2 + +[values] +material_print_temperature = =default_material_print_temperature + 10 +ooze_shield_angle = 40 +raft_airgap = 0.4 +retraction_prime_speed = =retraction_speed +skin_overlap = 50 +switch_extruder_prime_speed = 30 +switch_extruder_retraction_amount = 30 +switch_extruder_retraction_speeds = 40 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PC_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg similarity index 69% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_PC_High_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg index aec7cc4293..2bdf654255 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PC_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg @@ -1,47 +1,35 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker_s5 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pc +quality_type = high +setting_version = 22 +type = quality variant = AA 0.4 +weight = 1 [values] -adhesion_type = brim brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + layer_height -cool_fan_speed_max = 50 -cool_min_layer_time_fan_speed_max = 5 -cool_min_speed = 8 - infill_overlap = 0 infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 -jerk_print = 25 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 - 5 material_print_temperature = =default_material_print_temperature - 10 -material_standby_temperature = 100 multiple_mesh_overlap = 0 ooze_shield_angle = 40 prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 -raft_interface_thickness = =max(layer_height * 1.5, 0.225) retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 skin_overlap = 30 -speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) @@ -51,3 +39,4 @@ 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_s5/um_s5_aa0.4_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg similarity index 69% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_PC_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg index f739e1c5ac..4b8ddee928 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg @@ -1,48 +1,36 @@ [general] -version = 4 -name = Normal definition = ultimaker_s5 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pc +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] -adhesion_type = brim brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + layer_height -cool_fan_speed_max = 85 -cool_min_layer_time_fan_speed_max = 5 -cool_min_speed = 7 infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 -jerk_print = 25 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 - 5 material_print_temperature = =default_material_print_temperature + 10 -material_standby_temperature = 100 multiple_mesh_overlap = 0 ooze_shield_angle = 40 prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 -raft_interface_thickness = =max(layer_height * 1.5, 0.225) retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 skin_overlap = 30 -speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) - speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 25 / 40) support_interface_density = 87.5 @@ -50,3 +38,4 @@ 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_s5/um_s5_aa0.4_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg similarity index 67% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_PC_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg index 3346f39efe..cc1afda669 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg @@ -1,45 +1,33 @@ [general] -version = 4 -name = Fine definition = ultimaker_s5 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pc +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] -adhesion_type = brim brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + layer_height -cool_fan_speed_max = 50 -cool_min_layer_time_fan_speed_max = 5 -cool_min_speed = 5 - infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 -jerk_print = 25 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 - 5 -material_standby_temperature = 100 multiple_mesh_overlap = 0 ooze_shield_angle = 40 prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 -raft_interface_thickness = =max(layer_height * 1.5, 0.225) retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 skin_overlap = 30 -speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) @@ -49,3 +37,4 @@ 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_s5/um_s5_aa0.4_PC_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg similarity index 69% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_PC_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg index 26184e715b..23a833acb3 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PC_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg @@ -1,46 +1,35 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pc +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] -adhesion_type = brim brim_width = 20 -cool_fan_full_at_height = =layer_height_0 + layer_height -cool_fan_speed_max = 90 -cool_min_layer_time_fan_speed_max = 5 -cool_min_speed = 6 infill_overlap = 0 infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 -jerk_print = 25 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 - 5 material_print_temperature = =default_material_print_temperature + 10 -material_standby_temperature = 100 multiple_mesh_overlap = 0 ooze_shield_angle = 40 prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 -raft_interface_thickness = =max(layer_height * 1.5, 0.225) retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 skin_overlap = 30 -speed_layer_0 = =math.ceil(speed_print * 25 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) @@ -50,3 +39,4 @@ 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_s5/um_s5_aa0.4_PETG_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg similarity index 59% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_High_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg index 2925e5ca6f..8bebbf4113 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg @@ -1,31 +1,23 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker_s5 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_petg +quality_type = high +setting_version = 22 +type = quality variant = AA 0.4 +weight = 1 [values] -cool_min_speed = 12 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 10 -material_final_print_temperature = =material_print_temperature - 15 -material_shrinkage_percentage_xy = 100.5 -material_shrinkage_percentage_z = 100.1 -retraction_combing_max_distance = 8 +speed_infill = =math.ceil(speed_print * 40 / 50) speed_print = 50 -speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 30 / 50) -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -speed_infill = =math.ceil(speed_print * 40 / 50) -initial_layer_line_width_factor = 100 \ No newline at end of file diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg similarity index 57% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg index 2a6b354674..ce957c1a50 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg @@ -1,30 +1,22 @@ [general] -version = 4 -name = Normal definition = ultimaker_s5 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_petg +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] -cool_min_speed = 7 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' material_print_temperature = =default_material_print_temperature -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 10 -material_shrinkage_percentage_xy = 100.5 -material_shrinkage_percentage_z = 100.1 -retraction_combing_max_distance = 8 +speed_infill = =math.ceil(speed_print * 50 / 60) speed_print = 60 -speed_layer_0 = =math.ceil(speed_print * 20 / 60) speed_topbottom = =math.ceil(speed_print * 30 / 60) speed_wall = =math.ceil(speed_print * 40 / 60) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -speed_infill = =math.ceil(speed_print * 50 / 60) -initial_layer_line_width_factor = 100 \ No newline at end of file diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg similarity index 60% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg index 7dbca8a664..4bba37dd01 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg @@ -1,29 +1,23 @@ [general] -version = 4 -name = Fine definition = ultimaker_s5 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 material_print_temperature = =default_material_print_temperature - 5 -material_initial_print_temperature = =material_print_temperature - 10 -material_final_print_temperature = =material_print_temperature - 15 -material_shrinkage_percentage_xy = 100.5 -material_shrinkage_percentage_z = 100.1 -retraction_combing_max_distance = 8 +speed_infill = =math.ceil(speed_print * 45 / 55) speed_print = 55 -speed_layer_0 = =math.ceil(speed_print * 20 / 55) speed_topbottom = =math.ceil(speed_print * 30 / 55) speed_wall = =math.ceil(speed_print * 30 / 55) -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -speed_infill = =math.ceil(speed_print * 45 / 55) -initial_layer_line_width_factor = 100 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg similarity index 60% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg index bedfaa177a..ec632de70c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg @@ -1,29 +1,23 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' material_print_temperature = =default_material_print_temperature + 5 -material_initial_print_temperature = =material_print_temperature -material_final_print_temperature = =material_print_temperature - 5 -material_shrinkage_percentage_xy = 100.5 -material_shrinkage_percentage_z = 100.1 -retraction_combing_max_distance = 8 skin_overlap = 20 +speed_infill = =math.ceil(speed_print * 50 / 60) speed_print = 60 -speed_layer_0 = =math.ceil(speed_print * 20 / 60) speed_topbottom = =math.ceil(speed_print * 35 / 60) speed_wall = =math.ceil(speed_print * 45 / 60) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -speed_infill = =math.ceil(speed_print * 50 / 60) -initial_layer_line_width_factor = 100 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg similarity index 65% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_High_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg index e803a92538..dbac302efb 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg @@ -1,33 +1,26 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker_s5 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pla +quality_type = high +setting_version = 22 +type = quality variant = AA 0.4 +weight = 1 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed -cool_min_speed = 10 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 5 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = False +raft_airgap = 0.25 retraction_prime_speed = =retraction_speed skin_overlap = 10 speed_print = 50 -speed_layer_0 = 10 speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 35 / 50) top_bottom_thickness = 1 -layer_height_0 = 0.2 -raft_airgap = 0.25 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg similarity index 65% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg index 408c65da04..262fa01441 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg @@ -1,31 +1,25 @@ [general] -version = 4 -name = Normal definition = ultimaker_s5 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pla +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = False +raft_airgap = 0.25 retraction_prime_speed = =retraction_speed speed_print = 70 -speed_layer_0 = 10 speed_topbottom = =math.ceil(speed_print * 35 / 70) speed_wall = =math.ceil(speed_print * 45 / 70) speed_wall_0 = =math.ceil(speed_wall * 35 / 70) top_bottom_thickness = 1 -layer_height_0 = 0.2 -raft_airgap = 0.25 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg similarity index 56% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg index 4653d1bdbb..3f759c42f5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg @@ -1,29 +1,22 @@ [general] -version = 4 -name = Fine definition = ultimaker_s5 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed -cool_min_speed = 7 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = False +raft_airgap = 0.25 retraction_prime_speed = =retraction_speed skin_overlap = 10 -speed_layer_0 = 10 top_bottom_thickness = 1 -layer_height_0 = 0.2 -raft_airgap = 0.25 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg similarity index 70% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg index e85891cdc8..5e9f94a628 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg @@ -1,35 +1,29 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed +acceleration_wall = 2000 +acceleration_wall_0 = 2000 +infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = False +raft_airgap = 0.25 retraction_prime_speed = =retraction_speed skin_overlap = 20 -speed_layer_0 = 10 speed_topbottom = =math.ceil(speed_print * 40 / 70) speed_wall = =math.ceil(speed_print * 55 / 70) speed_wall_0 = =math.ceil(speed_wall * 45 / 50) top_bottom_thickness = 0.8 -infill_sparse_density = 15 -layer_height_0 = 0.2 -acceleration_wall = 2000 -acceleration_wall_0 = 2000 -raft_airgap = 0.25 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_VeryDraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg similarity index 65% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_VeryDraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg index 74161daa57..59657e8460 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PLA_VeryDraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg @@ -1,42 +1,33 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s5 +name = Extra Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -2 -material = generic_pla -variant = AA 0.4 is_experimental = True +material = generic_pla +quality_type = verydraft +setting_version = 22 +type = quality +variant = AA 0.4 +weight = -3 [values] -infill_sparse_density = 15 acceleration_print = 2000 +acceleration_topbottom = 1000 acceleration_wall = 1500 acceleration_wall_0 = 1000 -acceleration_topbottom = 1000 -speed_print = 50 -speed_wall = 50 - -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed - -material_print_temperature = =default_material_print_temperature + 10 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 - +material_print_temperature = =default_material_print_temperature + 10 prime_tower_enable = False +raft_airgap = 0.25 retraction_prime_speed = =retraction_speed skin_overlap = 20 +speed_print = 50 +speed_wall = 50 top_bottom_thickness = 0.9 +wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' - -raft_airgap = =0.25 -wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) \ No newline at end of file diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PP_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg similarity index 75% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_PP_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg index bd01a9e7e6..55b045bab8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg @@ -1,36 +1,27 @@ [general] -version = 4 -name = Normal definition = ultimaker_s5 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pp +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] brim_width = 20 -cool_fan_speed_max = 100 -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 7 -cool_min_speed = 2.5 - infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 -jerk_print = 25 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_bed_temperature_layer_0 = =material_bed_temperature + 5 -material_final_print_temperature = =material_print_temperature - 12 -material_initial_print_temperature = =material_print_temperature - 2 +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 13 -material_print_temperature_layer_0 = =material_print_temperature + 3 -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_size = 16 @@ -40,11 +31,8 @@ retraction_extra_prime_amount = 0.8 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) - -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 25) support_angle = 50 @@ -53,3 +41,4 @@ switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 top_bottom_thickness = 1.1 wall_0_inset = 0 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg similarity index 75% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_PP_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg index 9cc83fa123..10b2635220 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg @@ -1,37 +1,27 @@ [general] -version = 4 -name = Fine definition = ultimaker_s5 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pp +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] brim_width = 20 -cool_fan_speed_max = 100 -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 7 -cool_min_speed = 2.5 - infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 -jerk_print = 25 - machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_final_print_temperature = =material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 5 +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 15 -material_print_temperature_layer_0 = =material_print_temperature + 3 -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_size = 16 @@ -41,11 +31,8 @@ retraction_extra_prime_amount = 0.8 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) - -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 25) support_angle = 50 @@ -54,3 +41,4 @@ switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 top_bottom_thickness = 1 wall_0_inset = 0 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg similarity index 75% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_PP_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg index 4ee2ec2f4e..1a2af02756 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg @@ -1,36 +1,27 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pp +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] brim_width = 20 -cool_fan_speed_max = 100 -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 7 -cool_min_speed = 2.5 - infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 -jerk_print = 25 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_final_print_temperature = =material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 5 +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 5 -material_print_temperature_layer_0 = =material_print_temperature + 5 -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_size = 16 @@ -40,10 +31,8 @@ retraction_extra_prime_amount = 0.8 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -speed_layer_0 = =math.ceil(speed_print * 15 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 25 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 25) support_angle = 50 @@ -51,3 +40,4 @@ 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_s5/um_s5_aa0.4_TPLA_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg similarity index 64% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_High_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg index def68b8525..0d30e70a41 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg @@ -1,33 +1,26 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker_s5 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_tough_pla +quality_type = high +setting_version = 22 +type = quality variant = AA 0.4 +weight = 1 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed -cool_min_speed = 10 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 15 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = False retraction_prime_speed = =retraction_speed skin_overlap = 10 speed_print = 45 -speed_layer_0 = =math.ceil(speed_print * 20 / 45) speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) top_bottom_thickness = 1.2 -layer_height_0 = 0.2 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg similarity index 64% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg index a2e585117b..bf64c24170 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg @@ -1,31 +1,25 @@ [general] -version = 4 -name = Normal definition = ultimaker_s5 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_tough_pla +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed -layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_print_temperature = =default_material_print_temperature -10 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 100.1 +material_print_temperature = =default_material_print_temperature - 10 prime_tower_enable = False retraction_prime_speed = =retraction_speed -speed_layer_0 = =math.ceil(speed_print * 20 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) top_bottom_thickness = 1.2 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg similarity index 64% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg index 5a55438f0e..65b351b697 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg @@ -1,33 +1,26 @@ [general] -version = 4 -name = Fine definition = ultimaker_s5 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_tough_pla +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed -cool_min_speed = 7 -layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 15 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = False retraction_prime_speed = =retraction_speed skin_overlap = 10 -speed_layer_0 = =math.ceil(speed_print * 20 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) top_bottom_thickness = 1.2 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg similarity index 64% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg index 535b85955a..9b4622c007 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg @@ -1,35 +1,27 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_tough_pla +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed -cool_min_speed = 7 -jerk_print = 25 -layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_print_temperature = =default_material_print_temperature -10 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 100.1 +material_print_temperature = =default_material_print_temperature - 10 prime_tower_enable = False retraction_prime_speed = =retraction_speed skin_overlap = 20 -speed_layer_0 = =math.ceil(speed_print * 20 / 50) speed_print = 50 speed_roofing = =math.ceil(speed_wall * 20 / 24) speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 36 / 50) speed_wall_0 = =math.ceil(speed_print * 26 / 50) top_bottom_thickness = 1.2 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_VeryDraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg similarity index 65% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_VeryDraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg index 48f65ed4da..ecc37d84b7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_VeryDraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg @@ -1,42 +1,33 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s5 +name = Extra Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -2 -material = generic_tough_pla -variant = AA 0.4 is_experimental = True +material = generic_tough_pla +quality_type = verydraft +setting_version = 22 +type = quality +variant = AA 0.4 +weight = -3 [values] -infill_sparse_density = 15 acceleration_print = 2000 +acceleration_topbottom = 1000 acceleration_wall = 1500 acceleration_wall_0 = 1000 -acceleration_topbottom = 1000 -speed_print = 50 -speed_wall = 50 - -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =cool_fan_speed - -material_print_temperature = =default_material_print_temperature - 5 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 100.1 - +material_print_temperature = =default_material_print_temperature - 5 prime_tower_enable = False +raft_airgap = 0.25 retraction_prime_speed = =retraction_speed skin_overlap = 20 +speed_print = 50 +speed_wall = 50 top_bottom_thickness = 1.2 +wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' - -raft_airgap = =0.25 -wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) \ No newline at end of file diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPU_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg similarity index 78% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_TPU_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg index 346bb31931..3d02e2be54 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPU_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg @@ -1,38 +1,30 @@ [general] -version = 4 -name = Normal definition = ultimaker_s5 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_tpu +quality_type = fast +setting_version = 22 +type = quality variant = AA 0.4 +weight = -1 [values] brim_width = 8.75 -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 4 gradual_infill_step_height = =5 * layer_height - infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 -jerk_print = 25 - 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 +material_final_print_temperature = =material_print_temperature - 10 material_flow = 106 -material_initial_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 2 -material_print_temperature_layer_0 = =material_print_temperature + 15 -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_wipe_enabled = True retraction_count_max = 15 @@ -41,7 +33,6 @@ retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) skin_overlap = 5 -speed_layer_0 = =math.ceil(speed_print * 18 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) speed_wall = =math.ceil(speed_print * 25 / 25) @@ -53,3 +44,4 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 0.7 travel_avoid_distance = 1.5 wall_0_inset = 0 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPU_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg similarity index 77% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_TPU_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg index e8617e309f..9953016492 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg @@ -1,37 +1,29 @@ [general] -version = 4 -name = Fine definition = ultimaker_s5 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_tpu +quality_type = normal +setting_version = 22 +type = quality variant = AA 0.4 +weight = 0 [values] brim_width = 8.75 -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 4 gradual_infill_step_height = =5 * layer_height - infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 -jerk_print = 25 - 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 +material_final_print_temperature = =material_print_temperature - 10 material_flow = 106 -material_initial_print_temperature = =material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature + 17 -material_standby_temperature = 100 +material_initial_print_temperature = =material_print_temperature - 10 multiple_mesh_overlap = 0 prime_tower_wipe_enabled = True retraction_count_max = 15 @@ -40,7 +32,6 @@ retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) skin_overlap = 5 -speed_layer_0 = =math.ceil(speed_print * 18 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) speed_wall = =math.ceil(speed_print * 25 / 25) @@ -52,3 +43,4 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 0.7 travel_avoid_distance = 1.5 wall_0_inset = 0 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg similarity index 78% rename from resources/quality/ultimaker_s5/um_s5_aa0.4_TPU_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg index dd4fe11a2c..097a0a2c16 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg @@ -1,38 +1,30 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.4 +weight = -2 [values] brim_width = 8.75 -cool_fan_speed_max = 100 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 4 gradual_infill_step_height = =5 * layer_height - infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 -jerk_print = 25 - 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 +material_final_print_temperature = =material_print_temperature - 10 material_flow = 106 -material_initial_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 2 -material_print_temperature_layer_0 = =material_print_temperature + 15 -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_wipe_enabled = True retraction_count_max = 15 @@ -41,7 +33,6 @@ retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) skin_overlap = 5 -speed_layer_0 = =math.ceil(speed_print * 18 / 25) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) speed_wall = =math.ceil(speed_print * 25 / 25) @@ -53,3 +44,4 @@ switch_extruder_retraction_speeds = 35 top_bottom_thickness = 0.7 travel_avoid_distance = 1.5 wall_0_inset = 0 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg similarity index 82% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_ABS_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg index ef542bed03..bb9a4c37b3 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg @@ -1,22 +1,20 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_abs +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] - material_print_temperature = =default_material_print_temperature + 20 -material_standby_temperature = 100 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -retract_at_layer_change = False + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_ABS_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg similarity index 82% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_ABS_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg index 5b91e9ecc4..2de9183f1e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_ABS_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg @@ -1,22 +1,20 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s5 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_abs +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] - material_print_temperature = =default_material_print_temperature + 22 -material_standby_temperature = 100 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -retract_at_layer_change = False + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_ABS_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg similarity index 83% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_ABS_Superdraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg index 88c5aee1a2..9be6cb8415 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_ABS_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg @@ -1,23 +1,21 @@ [general] -version = 4 -name = Sprint definition = ultimaker_s5 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_abs +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] - material_print_temperature = =default_material_print_temperature + 25 -material_standby_temperature = 100 +speed_infill = =math.ceil(speed_print * 37 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 37 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -speed_infill = =math.ceil(speed_print * 37 / 50) -retract_at_layer_change = False + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg similarity index 70% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg index 53f58530b9..197d372c69 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg @@ -1,36 +1,30 @@ [general] -version = 4 -name = Fast - Experimental definition = ultimaker_s5 +name = Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 -material = generic_cpe_plus -variant = AA 0.8 is_experimental = True +material = generic_cpe_plus +quality_type = draft +setting_version = 22 +type = quality +variant = AA 0.8 +weight = -2 [values] brim_width = 14 -cool_fan_full_at_height = =layer_height_0 + 14 * layer_height - machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 10 -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 prime_tower_enable = True -retraction_combing_max_distance = 50 retraction_hop = 0.1 retraction_hop_enabled = False skin_overlap = 0 -speed_layer_0 = =math.ceil(speed_print * 15 / 50) speed_print = 50 -speed_slowdown_layers = 15 speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_z_distance = =layer_height top_bottom_thickness = 1.2 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg similarity index 70% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg index 4dcbf91e6a..b3b1ea670a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg @@ -1,37 +1,30 @@ [general] -version = 4 -name = Extra Fast - Experimental definition = ultimaker_s5 +name = Extra Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 -material = generic_cpe_plus -variant = AA 0.8 is_experimental = True +material = generic_cpe_plus +quality_type = verydraft +setting_version = 22 +type = quality +variant = AA 0.8 +weight = -3 [values] brim_width = 14 -cool_fan_full_at_height = =layer_height_0 + 9 * layer_height - - machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 7 -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 prime_tower_enable = True -retraction_combing_max_distance = 50 retraction_hop = 0.1 retraction_hop_enabled = False skin_overlap = 0 -speed_layer_0 = =math.ceil(speed_print * 15 / 50) speed_print = 50 -speed_slowdown_layers = 10 speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_z_distance = =layer_height top_bottom_thickness = 1.2 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg similarity index 71% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Superdraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg index b5a7bf5de0..faaea1b543 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg @@ -1,38 +1,31 @@ [general] -version = 4 -name = Sprint - Experimental definition = ultimaker_s5 +name = Sprint - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 -material = generic_cpe_plus -variant = AA 0.8 is_experimental = True +material = generic_cpe_plus +quality_type = superdraft +setting_version = 22 +type = quality +variant = AA 0.8 +weight = -4 [values] brim_width = 14 -cool_fan_full_at_height = =layer_height_0 + 7 * layer_height - - machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 5 -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 prime_tower_enable = True -retraction_combing_max_distance = 50 retraction_hop = 0.1 retraction_hop_enabled = False skin_overlap = 0 -speed_layer_0 = =math.ceil(speed_print * 15 / 50) +speed_infill = =math.ceil(speed_print * 40 / 50) speed_print = 50 -speed_slowdown_layers = 8 speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 35 / 40) -speed_infill = =math.ceil(speed_print * 40 / 50) support_z_distance = =layer_height top_bottom_thickness = 1.2 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg similarity index 81% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_CPE_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg index f79c57f967..4da468aa97 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg @@ -1,23 +1,21 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_cpe +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] brim_width = 15 - material_print_temperature = =default_material_print_temperature + 15 -material_standby_temperature = 100 prime_tower_enable = True -retraction_combing_max_distance = 50 speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPE_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg similarity index 81% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_CPE_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg index d2ec9bdc00..bcb76b93f0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPE_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg @@ -1,23 +1,21 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s5 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_cpe +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] brim_width = 15 - material_print_temperature = =default_material_print_temperature + 17 -material_standby_temperature = 100 prime_tower_enable = True -retraction_combing_max_distance = 50 speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPE_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg similarity index 84% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_CPE_Superdraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg index 3f9bec36ab..3d561ab611 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPE_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg @@ -1,25 +1,23 @@ [general] -version = 4 -name = Sprint definition = ultimaker_s5 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_cpe +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] brim_width = 15 - material_print_temperature = =default_material_print_temperature + 20 -material_standby_temperature = 100 prime_tower_enable = True -retraction_combing_max_distance = 50 +speed_infill = =math.ceil(speed_print * 33 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 30 / 45) speed_wall = =math.ceil(speed_print * 33 / 45) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -speed_infill = =math.ceil(speed_print * 33 / 45) + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg similarity index 55% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_Nylon_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg index 5a1a8ee5c1..296d429e14 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg @@ -1,31 +1,25 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_nylon +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] brim_width = 5.6 -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 10 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 -material_standby_temperature = 100 ooze_shield_angle = 40 prime_tower_enable = True -raft_acceleration = =acceleration_layer_0 -raft_airgap = =round(layer_height_0 * 0.85, 2) -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) +raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg similarity index 55% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_Nylon_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg index c1b0737a24..516edc5ac3 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_Nylon_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg @@ -1,33 +1,25 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s5 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_nylon +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] brim_width = 5.6 -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 10 - - machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 -material_standby_temperature = 100 ooze_shield_angle = 40 prime_tower_enable = True -raft_acceleration = =acceleration_layer_0 -raft_airgap = =round(layer_height_0 * 0.85, 2) -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) +raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg similarity index 55% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_Nylon_Superdraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg index 89a55e3f6f..83c54957dc 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_Nylon_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg @@ -1,31 +1,25 @@ [general] -version = 4 -name = Sprint definition = ultimaker_s5 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_nylon +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] brim_width = 5.6 -cool_min_layer_time_fan_speed_max = 20 -cool_min_speed = 10 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 -material_standby_temperature = 100 ooze_shield_angle = 40 prime_tower_enable = True -raft_acceleration = =acceleration_layer_0 -raft_airgap = =round(layer_height_0 * 0.85, 2) -raft_interface_thickness = =round(machine_nozzle_size * 0.3 / 0.4, 2) -raft_margin = 10 -raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2) +raft_airgap = 0.45 support_angle = 70 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg similarity index 63% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_PC_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg index bb43019b98..5e04033239 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg @@ -1,31 +1,23 @@ [general] -version = 4 -name = Fast - Experimental definition = ultimaker_s5 +name = Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 -material = generic_pc -variant = AA 0.8 is_experimental = True +material = generic_pc +quality_type = draft +setting_version = 22 +type = quality +variant = AA 0.8 +weight = -2 [values] brim_width = 14 -cool_fan_full_at_height = =layer_height_0 + 14 * layer_height - - material_print_temperature = =default_material_print_temperature - 5 -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 raft_airgap = 0.5 -raft_margin = 15 skin_overlap = 0 -speed_layer_0 = =math.ceil(speed_print * 15 / 50) speed_print = 50 -speed_slowdown_layers = 15 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PC_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg similarity index 64% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_PC_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg index 0786997c50..380418c4cd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PC_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg @@ -1,29 +1,24 @@ [general] -version = 4 -name = Extra Fast - Experimental definition = ultimaker_s5 +name = Extra Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 -material = generic_pc -variant = AA 0.8 is_experimental = True +material = generic_pc +quality_type = verydraft +setting_version = 22 +type = quality +variant = AA 0.8 +weight = -3 [values] brim_width = 14 -cool_fan_full_at_height = =layer_height_0 + 9 * layer_height material_print_temperature = =default_material_print_temperature - 2 -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 raft_airgap = 0.5 -raft_margin = 15 skin_overlap = 0 -speed_layer_0 = =math.ceil(speed_print * 15 / 50) speed_print = 50 -speed_slowdown_layers = 10 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PC_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg similarity index 63% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_PC_Superdraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg index 72be6682c6..841bb44d8e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PC_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg @@ -1,31 +1,24 @@ [general] -version = 4 -name = Sprint - Experimental definition = ultimaker_s5 +name = Sprint - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 -material = generic_pc -variant = AA 0.8 is_experimental = True +material = generic_pc +quality_type = superdraft +setting_version = 22 +type = quality +variant = AA 0.8 +weight = -4 [values] brim_width = 14 -cool_fan_full_at_height = =layer_height_0 + 7 * layer_height - - -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 raft_airgap = 0.5 -raft_margin = 15 skin_overlap = 0 -speed_layer_0 = =math.ceil(speed_print * 15 / 50) +speed_infill = =math.ceil(speed_print * 37 / 50) speed_print = 50 -speed_slowdown_layers = 8 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 37 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -speed_infill = =math.ceil(speed_print * 37 / 50) + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg similarity index 66% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_PETG_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg index 6e6b0a09a4..6208ad9bec 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg @@ -1,27 +1,22 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_petg +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] brim_width = 7 - +cool_fan_speed = 20 material_print_temperature = =default_material_print_temperature - 5 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.5 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = True -retraction_combing_max_distance = 8 speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) -cool_fan_speed = 20 -initial_layer_line_width_factor = 100 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PETG_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg similarity index 66% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_PETG_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg index 1f95f693e8..98b0d3f5f8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PETG_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg @@ -1,28 +1,22 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s5 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_petg +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] brim_width = 7 - +cool_fan_speed = 20 material_print_temperature = =default_material_print_temperature - 5 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.5 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = True -retraction_combing_max_distance = 8 speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) -cool_fan_speed = 20 -initial_layer_line_width_factor = 100 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PETG_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg similarity index 71% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_PETG_Superdraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg index 5de1db358f..156113b809 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PETG_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg @@ -1,29 +1,24 @@ [general] -version = 4 -name = Sprint definition = ultimaker_s5 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_petg +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] brim_width = 7 - +cool_fan_speed = 20 material_print_temperature = =default_material_print_temperature - 5 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.5 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = True -retraction_combing_max_distance = 8 +speed_infill = =math.ceil(speed_print * 33 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 30 / 45) speed_wall = =math.ceil(speed_print * 33 / 45) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) -speed_infill = =math.ceil(speed_print * 33 / 45) -cool_fan_speed = 20 -initial_layer_line_width_factor = 100 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg similarity index 59% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_PLA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg index 9575708085..10bf06fbb5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg @@ -1,35 +1,27 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pla +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = True -support_angle = 70 -top_bottom_thickness = =layer_height * 4 -retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) -layer_height_0 = 0.4 +speed_wall_x = =speed_wall +support_angle = 70 +top_bottom_thickness = =layer_height * 4 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg similarity index 60% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_PLA_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg index e39360b6ca..1a63005ced 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg @@ -1,35 +1,27 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s5 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_pla +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = True -support_angle = 70 -top_bottom_thickness = =layer_height * 4 -retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) -layer_height_0 = 0.4 +speed_wall_x = =speed_wall +support_angle = 70 +top_bottom_thickness = =layer_height * 4 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg similarity index 60% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_PLA_Superdraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg index d85aeb3f9b..5e22cee246 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg @@ -1,37 +1,28 @@ [general] -version = 4 -name = Sprint definition = ultimaker_s5 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_pla +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 15 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = True -raft_margin = 10 -support_angle = 70 -top_bottom_thickness = =layer_height * 4 -retract_at_layer_change = False +speed_infill = =math.ceil(speed_print * 35 / 45) speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 35 / 45) -speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) -speed_infill = =math.ceil(speed_print * 35 / 45) -layer_height_0 = 0.4 +speed_wall_x = =speed_wall +support_angle = 70 +top_bottom_thickness = =layer_height * 4 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg similarity index 74% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_PP_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg index e6f87c3442..12534702c8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg @@ -1,31 +1,26 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pp +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] brim_width = 25 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 17 -top_skin_expand_distance = =line_width * 2 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' -material_bed_temperature_layer_0 = =material_bed_temperature +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 -material_print_temperature_layer_0 = =default_material_print_temperature + 2 -material_standby_temperature = 100 multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 10 -retract_at_layer_change = False retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 @@ -36,4 +31,6 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 +top_skin_expand_distance = =line_width * 2 wall_0_wipe_dist = =line_width * 2 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg similarity index 73% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_PP_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg index 67cd7d50ac..9e8a34c7bf 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg @@ -1,30 +1,25 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s5 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_pp +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] brim_width = 25 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 17 -top_skin_expand_distance = =line_width * 2 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' -material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =default_material_print_temperature + 2 -material_standby_temperature = 100 +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 10 multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 15 -retract_at_layer_change = False retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 @@ -35,4 +30,6 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 +top_skin_expand_distance = =line_width * 2 wall_0_wipe_dist = =line_width * 2 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg similarity index 75% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_PP_Superdraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg index 324b121ca7..604614dd77 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg @@ -1,40 +1,37 @@ [general] -version = 4 -name = Sprint definition = ultimaker_s5 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_pp +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] brim_width = 25 -cool_min_layer_time_fan_speed_max = 6 -cool_min_speed = 17 -top_skin_expand_distance = =line_width * 2 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' -material_bed_temperature_layer_0 = =material_bed_temperature +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 2 -material_print_temperature_layer_0 = =default_material_print_temperature + 2 -material_standby_temperature = 100 multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 20 -retract_at_layer_change = False retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 retraction_min_travel = 1.5 retraction_prime_speed = 15 -speed_wall_x = =math.ceil(speed_wall * 30 / 30) speed_infill = =math.ceil(speed_wall * 30 / 30) +speed_wall_x = =math.ceil(speed_wall * 30 / 30) switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.6 +top_skin_expand_distance = =line_width * 2 wall_0_wipe_dist = =line_width * 2 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg similarity index 61% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg index fbf2ad1733..3bc7ff58af 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg @@ -1,35 +1,27 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_tough_pla +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' -layer_height_0 = 0.4 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 0 -material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = False -retract_at_layer_change = False speed_print = 45 speed_topbottom = =round(speed_print * 35 / 45) speed_wall = =round(speed_print * 40 / 45) speed_wall_0 = =round(speed_print * 35 / 45) support_angle = 70 top_bottom_thickness = =layer_height * 6 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg similarity index 55% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg index cb2430636a..516b4e7d60 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg @@ -1,38 +1,28 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s5 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_tough_pla +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' -layer_height_0 = 0.4 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 5 -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = False -retract_at_layer_change = False speed_infill = =math.ceil(speed_print * 30 / 35) speed_print = 35 speed_topbottom = =math.ceil(speed_print * 20 / 35) -speed_wall = =math.ceil(speed_print * 25/ 35) +speed_wall = =math.ceil(speed_print * 25 / 35) speed_wall_0 = =math.ceil(speed_print * 20 / 35) support_angle = 70 top_bottom_thickness = =layer_height * 4 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg similarity index 58% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Superdraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg index 5683956267..3227e6c525 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg @@ -1,37 +1,28 @@ [general] -version = 4 -name = Sprint definition = ultimaker_s5 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_tough_pla +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cubic' -layer_height_0 = 0.4 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 5 -material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = False -raft_margin = 10 -retract_at_layer_change = False speed_infill = =math.ceil(speed_print * 30 / 30) speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) -speed_wall = =math.ceil(speed_print * 25/ 30) +speed_wall = =math.ceil(speed_print * 25 / 30) speed_wall_0 = =math.ceil(speed_print * 20 / 30) support_angle = 70 top_bottom_thickness = =layer_height * 4 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg similarity index 82% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_TPU_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg index e132129969..208a8e9412 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg @@ -1,33 +1,28 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -2 [values] brim_width = 8.75 -cool_min_layer_time_fan_speed_max = 6 -top_skin_expand_distance = =line_width * 2 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 -material_final_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature - 10 material_flow = 105 -material_initial_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature - 2 -material_print_temperature_layer_0 = =material_print_temperature + 19 -material_standby_temperature = 100 multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 -retract_at_layer_change = False retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 @@ -43,5 +38,7 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 +top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 2 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg similarity index 81% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_TPU_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg index c4d48a2f6c..20f44ff936 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg @@ -1,33 +1,28 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s5 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_tpu +quality_type = verydraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -3 [values] brim_width = 8.75 -cool_min_layer_time_fan_speed_max = 6 -top_skin_expand_distance = =line_width * 2 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 -material_final_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature - 10 material_flow = 105 -material_initial_print_temperature = =material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature + 17 -material_standby_temperature = 100 +material_initial_print_temperature = =material_print_temperature - 10 multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 -retract_at_layer_change = False retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 @@ -43,5 +38,7 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 +top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 2 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg similarity index 81% rename from resources/quality/ultimaker_s5/um_s5_aa0.8_TPU_Superdraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg index 410d07b902..814c3f77f8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg @@ -1,48 +1,45 @@ [general] -version = 4 -name = Sprint definition = ultimaker_s5 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_tpu +quality_type = superdraft +setting_version = 22 +type = quality variant = AA 0.8 +weight = -4 [values] brim_width = 8.75 -cool_min_layer_time_fan_speed_max = 6 -top_skin_expand_distance = =line_width * 2 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 15 machine_nozzle_cool_down_speed = 0.5 machine_nozzle_heat_up_speed = 2.5 -material_final_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature - 10 material_flow = 105 -material_initial_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature - 10 material_print_temperature = =default_material_print_temperature + 2 -material_print_temperature_layer_0 = =material_print_temperature + 15 -material_standby_temperature = 100 multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 -retract_at_layer_change = False retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False retraction_min_travel = =line_width * 2 +speed_infill = =speed_print speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) speed_wall = =speed_print speed_wall_x = =speed_print -speed_infill = =speed_print support_angle = 50 switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 top_bottom_thickness = 1.2 +top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 2 + diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg similarity index 72% rename from resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_High_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg index 17b3dd2467..b49657de73 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg @@ -1,23 +1,23 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker_s5 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = generic_pva +quality_type = high +setting_version = 22 +type = quality variant = BB 0.4 +weight = 1 [values] brim_replaces_support = False -material_standby_temperature = 100 +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) prime_tower_enable = False retraction_count_max = 5 +skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_brim_enable = True +support_infill_sparse_thickness = =3 * layer_height support_interface_enable = True -skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) -cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -support_use_towers = True + diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg similarity index 76% rename from resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg index f69ecfbb94..44418ae608 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg @@ -1,25 +1,25 @@ [general] -version = 4 -name = Normal definition = ultimaker_s5 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 material = generic_pva +quality_type = fast +setting_version = 22 +type = quality variant = BB 0.4 +weight = -1 [values] brim_replaces_support = False +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature + 5 -material_standby_temperature = 100 prime_tower_enable = False retraction_count_max = 5 skin_overlap = 15 +skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_brim_enable = True +support_infill_sparse_thickness = =2 * layer_height support_interface_enable = True -skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) -cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -support_use_towers = True + diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg similarity index 72% rename from resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Normal_Quality.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg index 47dcbe57fa..b8c7d9e722 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg @@ -1,23 +1,23 @@ [general] -version = 4 -name = Fine definition = ultimaker_s5 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pva +quality_type = normal +setting_version = 22 +type = quality variant = BB 0.4 +weight = 0 [values] brim_replaces_support = False -material_standby_temperature = 100 +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) prime_tower_enable = False retraction_count_max = 5 +skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_brim_enable = True +support_infill_sparse_thickness = =2 * layer_height support_interface_enable = True -skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) -cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -support_use_towers = True + diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg similarity index 76% rename from resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg index cdb8384f68..a30aafd298 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg @@ -1,25 +1,24 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pva +quality_type = draft +setting_version = 22 +type = quality variant = BB 0.4 +weight = -2 [values] brim_replaces_support = False +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature + 10 -material_standby_temperature = 100 prime_tower_enable = False retraction_count_max = 5 skin_overlap = 20 +skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_brim_enable = True support_interface_enable = True -skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) -cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -support_use_towers = True + diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg similarity index 72% rename from resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg index 6bacefc331..924769ab3d 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg @@ -1,25 +1,24 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s5 +name = Extra Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 -material = generic_pva -variant = BB 0.4 is_experimental = True +material = generic_pva +quality_type = verydraft +setting_version = 22 +type = quality +variant = BB 0.4 +weight = -3 [values] brim_replaces_support = False -material_standby_temperature = 100 +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) prime_tower_enable = False retraction_count_max = 5 +skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_brim_enable = True support_infill_sparse_thickness = 0.3 support_interface_enable = True -skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) -cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -support_use_towers = True + diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg similarity index 74% rename from resources/quality/ultimaker_s5/um_s5_bb0.8_PVA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg index 0259c3040f..3558380aee 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg @@ -1,23 +1,22 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_pva +quality_type = draft +setting_version = 22 +type = quality variant = BB 0.8 +weight = -2 [values] brim_replaces_support = False +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) material_print_temperature = =default_material_print_temperature + 5 -material_standby_temperature = 100 retraction_count_max = 5 +skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_brim_enable = True support_interface_enable = True -skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) -cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -support_use_towers = True + diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_PVA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg similarity index 73% rename from resources/quality/ultimaker_s5/um_s5_bb0.8_PVA_Verydraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg index 315ee5748f..544c68cb0e 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_PVA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg @@ -1,23 +1,22 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s5 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 material = generic_pva +quality_type = verydraft +setting_version = 22 +type = quality variant = BB 0.8 +weight = -3 [values] brim_replaces_support = False -material_standby_temperature = 100 +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) retraction_count_max = 5 +skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_brim_enable = True support_infill_sparse_thickness = 0.3 support_interface_enable = True -skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) -cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -support_use_towers = True + diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_PVA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg similarity index 71% rename from resources/quality/ultimaker_s5/um_s5_bb0.8_PVA_Superdraft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg index c1768abc54..11bfecdd70 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_PVA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg @@ -1,22 +1,21 @@ [general] -version = 4 -name = Sprint definition = ultimaker_s5 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 material = generic_pva +quality_type = superdraft +setting_version = 22 +type = quality variant = BB 0.8 +weight = -4 [values] brim_replaces_support = False -material_standby_temperature = 100 +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) retraction_count_max = 5 +skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_brim_enable = True support_interface_enable = True -skirt_brim_minimal_length = =min(2000, 175/(layer_height*line_width)) -cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -support_use_towers = True + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFCPE_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg similarity index 50% rename from resources/quality/ultimaker_s5/um_s5_cc0.4_CFFCPE_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg index c2e3a080a2..d94e98c98f 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFCPE_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg @@ -1,29 +1,18 @@ [general] -version = 4 -name = Normal definition = ultimaker_s5 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -2 material = generic_cffcpe +quality_type = fast +setting_version = 22 +type = quality variant = CC 0.4 +weight = -1 [values] -adhesion_type = skirt -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 - -initial_layer_line_width_factor = 130.0 - -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFCPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg similarity index 52% rename from resources/quality/ultimaker_s5/um_s5_cc0.4_CFFCPE_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg index 44df638c2f..cf0d6c974d 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg @@ -1,29 +1,18 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_cffcpe +quality_type = draft +setting_version = 22 +type = quality variant = CC 0.4 +weight = -2 [values] -adhesion_type = skirt -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 - -initial_layer_line_width_factor = 130.0 - -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFPA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg similarity index 50% rename from resources/quality/ultimaker_s5/um_s5_cc0.4_CFFPA_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg index 1115c306fd..3aea9462da 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFPA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg @@ -1,29 +1,18 @@ [general] -version = 4 -name = Normal definition = ultimaker_s5 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -2 material = generic_cffpa +quality_type = fast +setting_version = 22 +type = quality variant = CC 0.4 +weight = -1 [values] -adhesion_type = skirt -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 - -initial_layer_line_width_factor = 130.0 - -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFPA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg similarity index 52% rename from resources/quality/ultimaker_s5/um_s5_cc0.4_CFFPA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg index 3b6c3c2984..341a63af89 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_CFFPA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg @@ -1,29 +1,18 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_cffpa +quality_type = draft +setting_version = 22 +type = quality variant = CC 0.4 +weight = -2 [values] -adhesion_type = skirt -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 - -initial_layer_line_width_factor = 130.0 - -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFCPE_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg similarity index 50% rename from resources/quality/ultimaker_s5/um_s5_cc0.4_GFFCPE_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg index 169bd1365e..efa0f8a06c 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFCPE_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg @@ -1,29 +1,18 @@ [general] -version = 4 -name = Normal definition = ultimaker_s5 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -2 material = generic_gffcpe +quality_type = fast +setting_version = 22 +type = quality variant = CC 0.4 +weight = -1 [values] -adhesion_type = brim -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 - -initial_layer_line_width_factor = 130.0 - -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFCPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg similarity index 52% rename from resources/quality/ultimaker_s5/um_s5_cc0.4_GFFCPE_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg index 72f48e9c57..22e92179d5 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg @@ -1,29 +1,18 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_gffcpe +quality_type = draft +setting_version = 22 +type = quality variant = CC 0.4 +weight = -2 [values] -adhesion_type = brim -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 - -initial_layer_line_width_factor = 130.0 - -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFPA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg similarity index 50% rename from resources/quality/ultimaker_s5/um_s5_cc0.4_GFFPA_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg index 0c4d2babbd..8e406fdbbe 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFPA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg @@ -1,29 +1,18 @@ [general] -version = 4 -name = Normal definition = ultimaker_s5 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -2 material = generic_gffpa +quality_type = fast +setting_version = 22 +type = quality variant = CC 0.4 +weight = -1 [values] -adhesion_type = brim -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 - -initial_layer_line_width_factor = 130.0 - -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFPA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg similarity index 52% rename from resources/quality/ultimaker_s5/um_s5_cc0.4_GFFPA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg index ac59de30b6..3c38ad0605 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_GFFPA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg @@ -1,29 +1,18 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_gffpa +quality_type = draft +setting_version = 22 +type = quality variant = CC 0.4 +weight = -2 [values] -adhesion_type = brim -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 - -initial_layer_line_width_factor = 130.0 - -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_PLA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg similarity index 60% rename from resources/quality/ultimaker_s5/um_s5_cc0.4_PLA_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg index c11af88907..8b807c1eb5 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg @@ -1,37 +1,29 @@ [general] -version = 4 -name = Normal definition = ultimaker_s5 +name = Normal - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -2 -material = generic_pla -variant = CC 0.4 is_experimental = True +material = generic_pla +quality_type = fast +setting_version = 22 +type = quality +variant = CC 0.4 +weight = -1 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = True -retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) +speed_wall_x = =speed_wall support_angle = 70 top_bottom_thickness = =layer_height * 4 + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg similarity index 60% rename from resources/quality/ultimaker_s5/um_s5_cc0.4_PLA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg index d6f54f2e49..ebc58413e2 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg @@ -1,37 +1,29 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -3 -material = generic_pla -variant = CC 0.4 is_experimental = True +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = CC 0.4 +weight = -2 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = True -retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) +speed_wall_x = =speed_wall support_angle = 70 top_bottom_thickness = =layer_height * 4 + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_CFFCPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg similarity index 52% rename from resources/quality/ultimaker_s5/um_s5_cc0.6_CFFCPE_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg index 48c31f4cd2..a099c92675 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_CFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg @@ -1,28 +1,18 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_cffcpe +quality_type = draft +setting_version = 22 +type = quality variant = CC 0.6 +weight = -2 [values] -adhesion_type = skirt -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 - -initial_layer_line_width_factor = 130.0 -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_CFFPA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg similarity index 52% rename from resources/quality/ultimaker_s5/um_s5_cc0.6_CFFPA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg index 9ad29b3ab9..e77ace096d 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_CFFPA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg @@ -1,28 +1,18 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_cffpa +quality_type = draft +setting_version = 22 +type = quality variant = CC 0.6 +weight = -2 [values] -adhesion_type = skirt -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 - -initial_layer_line_width_factor = 130.0 -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_GFFCPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg similarity index 52% rename from resources/quality/ultimaker_s5/um_s5_cc0.6_GFFCPE_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg index d169225a50..78e515f592 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_GFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg @@ -1,28 +1,18 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_gffcpe +quality_type = draft +setting_version = 22 +type = quality variant = CC 0.6 +weight = -2 [values] -adhesion_type = brim -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 - -initial_layer_line_width_factor = 130.0 -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_GFFPA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg similarity index 52% rename from resources/quality/ultimaker_s5/um_s5_cc0.6_GFFPA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg index faa5070778..52f3737f11 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_GFFPA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg @@ -1,27 +1,18 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = generic_gffpa +quality_type = draft +setting_version = 22 +type = quality variant = CC 0.6 +weight = -2 [values] -adhesion_type = brim -cool_fan_enabled = True -cool_min_layer_time = 7 -cool_min_layer_time_fan_speed_max = 15 -cool_min_speed = 6 -initial_layer_line_width_factor = 130.0 -material_bed_temperature_layer_0 = =material_bed_temperature + 5 material_print_temperature = =default_material_print_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_standby_temperature = 100 skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_PLA_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg similarity index 60% rename from resources/quality/ultimaker_s5/um_s5_cc0.6_PLA_Fast_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg index 24515461c7..40d414cbcb 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_PLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg @@ -1,37 +1,29 @@ [general] -version = 4 -name = Normal definition = ultimaker_s5 +name = Normal - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -2 -material = generic_pla -variant = CC 0.6 is_experimental = True +material = generic_pla +quality_type = fast +setting_version = 22 +type = quality +variant = CC 0.6 +weight = -1 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = True -retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) +speed_wall_x = =speed_wall support_angle = 70 top_bottom_thickness = =layer_height * 4 + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg similarity index 60% rename from resources/quality/ultimaker_s5/um_s5_cc0.6_PLA_Draft_Print.inst.cfg rename to resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg index a2769f7e88..6144a2c3f0 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg @@ -1,37 +1,29 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast - Experimental +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -3 -material = generic_pla -variant = CC 0.6 is_experimental = True +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = CC 0.6 +weight = -2 [values] -cool_fan_full_at_height = =layer_height_0 + 2 * layer_height -cool_fan_speed_max = =100 -cool_min_speed = 2 gradual_infill_step_height = =3 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 -material_final_print_temperature = =max(-273.15, material_print_temperature - 15) -material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) material_print_temperature = =default_material_print_temperature + 10 -material_standby_temperature = 100 -material_shrinkage_percentage_xy = 100.2 -material_shrinkage_percentage_z = 100.1 prime_tower_enable = True -retract_at_layer_change = False speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) +speed_wall_x = =speed_wall support_angle = 70 top_bottom_thickness = =layer_height * 4 + 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 9bf9fad6bf..0922669236 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Fast definition = ultimaker_s5 +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] layer_height = 0.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 34d2946524..3dd039c01f 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = ultimaker_s5 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -1 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.15 -support_infill_sparse_thickness = =2*layer_height + 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 14b0a3bb4e..4c5b7f3462 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Extra Fine definition = ultimaker_s5 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] layer_height = 0.06 -support_infill_sparse_thickness = =3*layer_height + 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 ed099f85bd..18b14b14f9 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Fine definition = ultimaker_s5 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.1 -support_infill_sparse_thickness = =2*layer_height + 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 9ba5f03ce0..8f55162a47 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Sprint definition = ultimaker_s5 +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = superdraft -weight = -4 global_quality = True +quality_type = superdraft +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.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 e83e547fa9..1b89f8fdce 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Extra Fast definition = ultimaker_s5 +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = verydraft -weight = -3 global_quality = True +quality_type = verydraft +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.3 + 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 5506728111..f3c9f4557c 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_n0.30_l0.10 definition = uni_base +name = abs_n0.30_l0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = q010 -material = generic_abs +setting_version = 22 +type = quality variant = 0.30mm Nozzle [values] wall_thickness = =line_width*4 + 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 d24e5b0cb3..5593994feb 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_n0.30_l0.15 definition = uni_base +name = abs_n0.30_l0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = q015 -material = generic_abs +setting_version = 22 +type = quality variant = 0.30mm Nozzle [values] wall_thickness = =line_width*4 + 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 de92c21f94..1f8cba9c8c 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_n0.30_l0.20 definition = uni_base +name = abs_n0.30_l0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = q020 -material = generic_abs +setting_version = 22 +type = quality variant = 0.30mm Nozzle [values] wall_thickness = =line_width*4 + 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 5e7ad3ce18..c261f4a6bd 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_n0.30_l0.25 definition = uni_base +name = abs_n0.30_l0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = q025 -material = generic_abs +setting_version = 22 +type = quality variant = 0.30mm Nozzle [values] wall_thickness = =line_width*4 + 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 2a472929d4..b7ae054c4a 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_n0.40_l0.10 definition = uni_base +name = abs_n0.40_l0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = q010 -material = generic_abs +setting_version = 22 +type = quality variant = 0.40mm Nozzle [values] wall_thickness = =line_width*3 + 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 c0283fe416..71e42cbb5c 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_n0.40_l0.15 definition = uni_base +name = abs_n0.40_l0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = q015 -material = generic_abs +setting_version = 22 +type = quality variant = 0.40mm Nozzle [values] wall_thickness = =line_width*3 + 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 074c67c1fc..6540355cb7 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_n0.40_l0.20 definition = uni_base +name = abs_n0.40_l0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = q020 -material = generic_abs +setting_version = 22 +type = quality variant = 0.40mm Nozzle [values] wall_thickness = =line_width*3 + 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 4370079bfc..f2cb0f2b37 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_n0.40_l0.25 definition = uni_base +name = abs_n0.40_l0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = q025 -material = generic_abs +setting_version = 22 +type = quality variant = 0.40mm Nozzle [values] wall_thickness = =line_width*3 + 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 31fba6ca82..ebdd40c6be 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_n0.40_l0.30 definition = uni_base +name = abs_n0.40_l0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = q030 -material = generic_abs +setting_version = 22 +type = quality variant = 0.40mm Nozzle [values] wall_thickness = =line_width*3 + 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 159e182d24..dfb91488ba 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_n0.50_l0.15 definition = uni_base +name = abs_n0.50_l0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = q015 -material = generic_abs +setting_version = 22 +type = quality variant = 0.50mm Nozzle [values] wall_thickness = =line_width*3 + 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 0b631eab51..528315c479 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_n0.50_l0.20 definition = uni_base +name = abs_n0.50_l0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = q020 -material = generic_abs +setting_version = 22 +type = quality variant = 0.50mm Nozzle [values] wall_thickness = =line_width*3 + 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 94e74cbed8..4edfec56ff 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_n0.50_l0.25 definition = uni_base +name = abs_n0.50_l0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = q025 -material = generic_abs +setting_version = 22 +type = quality variant = 0.50mm Nozzle [values] wall_thickness = =line_width*3 + 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 bc00c22dab..a9edd8aef0 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_n0.50_l0.30 definition = uni_base +name = abs_n0.50_l0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = q030 -material = generic_abs +setting_version = 22 +type = quality variant = 0.50mm Nozzle [values] wall_thickness = =line_width*3 + 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 e9ecb81ef4..cff924336b 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_n0.50_l0.35 definition = uni_base +name = abs_n0.50_l0.35 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = q035 -material = generic_abs +setting_version = 22 +type = quality variant = 0.50mm Nozzle [values] wall_thickness = =line_width*3 + 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 fe5ca4229b..203f68c18b 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = hips_n0.30_l0.10 definition = uni_base +name = hips_n0.30_l0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_hips quality_type = q010 -material = generic_hips +setting_version = 22 +type = quality variant = 0.30mm Nozzle [values] wall_thickness = =line_width*4 + 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 1940e8b57f..3b0a4a9c75 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = hips_n0.30_l0.15 definition = uni_base +name = hips_n0.30_l0.15 +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = q015 material = generic_hips +quality_type = q015 +setting_version = 22 +type = quality variant = 0.30mm Nozzle [values] wall_thickness = =line_width*4 + 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 cbdc08f761..506f5b8f49 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = hips_n0.30_l0.20 definition = uni_base +name = hips_n0.30_l0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_hips quality_type = q020 -material = generic_hips +setting_version = 22 +type = quality variant = 0.30mm Nozzle [values] wall_thickness = =line_width*4 + 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 7a2e12c983..cebd2db2c6 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = hips_n0.30_l0.25 definition = uni_base +name = hips_n0.30_l0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_hips quality_type = q025 -material = generic_hips +setting_version = 22 +type = quality variant = 0.30mm Nozzle [values] wall_thickness = =line_width*4 + 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 8d79a7610e..5fd4d00661 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = hips_n0.40_l0.10 definition = uni_base +name = hips_n0.40_l0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_hips quality_type = q010 -material = generic_hips +setting_version = 22 +type = quality variant = 0.40mm Nozzle [values] wall_thickness = =line_width*3 + 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 d53c5800dd..bf01ff3a84 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = hips_n0.40_l0.15 definition = uni_base +name = hips_n0.40_l0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_hips quality_type = q015 -material = generic_hips +setting_version = 22 +type = quality variant = 0.40mm Nozzle [values] wall_thickness = =line_width*3 + 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 06587f30c1..58180de36e 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = hips_n0.40_l0.20 definition = uni_base +name = hips_n0.40_l0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_hips quality_type = q020 -material = generic_hips +setting_version = 22 +type = quality variant = 0.40mm Nozzle [values] wall_thickness = =line_width*3 + 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 733cb16855..4dae58ad45 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = hips_n0.40_l0.25 definition = uni_base +name = hips_n0.40_l0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = q025 -material = generic_abs +setting_version = 22 +type = quality variant = 0.40mm Nozzle [values] wall_thickness = =line_width*3 + 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 c129080c6a..3b3314bd6e 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = hips_n0.40_l0.30 definition = uni_base +name = hips_n0.40_l0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_hips quality_type = q030 -material = generic_hips +setting_version = 22 +type = quality variant = 0.40mm Nozzle [values] wall_thickness = =line_width*3 + 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 5a3d1b6335..8dd3de6ddd 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = hips_n0.50_l0.15 definition = uni_base +name = hips_n0.50_l0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_hips quality_type = q015 -material = generic_hips +setting_version = 22 +type = quality variant = 0.50mm Nozzle [values] wall_thickness = =line_width*3 + 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 4a3755f45d..4cc6e4fe01 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = hips_n0.50_l0.20 definition = uni_base +name = hips_n0.50_l0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_hips quality_type = q020 -material = generic_hips +setting_version = 22 +type = quality variant = 0.50mm Nozzle [values] wall_thickness = =line_width*3 + 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 55ffd52613..a0be80b817 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = hips_n0.50_l0.25 definition = uni_base +name = hips_n0.50_l0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_hips quality_type = q025 -material = generic_hips +setting_version = 22 +type = quality variant = 0.50mm Nozzle [values] wall_thickness = =line_width*3 + 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 430b0c5013..18e5e32104 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = hips_n0.50_l0.30 definition = uni_base +name = hips_n0.50_l0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_hips quality_type = q030 -material = generic_hips +setting_version = 22 +type = quality variant = 0.50mm Nozzle [values] wall_thickness = =line_width*3 + 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 35bf3b0468..0ef270c55a 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = hips_n0.50_l0.35 definition = uni_base +name = hips_n0.50_l0.35 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_hips quality_type = q035 -material = generic_hips +setting_version = 22 +type = quality variant = 0.50mm Nozzle [values] wall_thickness = =line_width*3 + diff --git a/resources/quality/uni_base/layer_0.05.inst.cfg b/resources/quality/uni_base/layer_0.05.inst.cfg index abc4d4b549..f9cc2b9319 100644 --- a/resources/quality/uni_base/layer_0.05.inst.cfg +++ b/resources/quality/uni_base/layer_0.05.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Ultra Quality definition = uni_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = q005 -weight = -1 global_quality = True +quality_type = q005 +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.05 layer_height_0 = 0.12 + diff --git a/resources/quality/uni_base/layer_0.10.inst.cfg b/resources/quality/uni_base/layer_0.10.inst.cfg index 2d5fa84e97..c8c12bbe0c 100644 --- a/resources/quality/uni_base/layer_0.10.inst.cfg +++ b/resources/quality/uni_base/layer_0.10.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = uni_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = q010 -weight = -2 global_quality = True +quality_type = q010 +setting_version = 22 +type = quality +weight = -2 [values] layer_height = 0.10 layer_height_0 = 0.12 + diff --git a/resources/quality/uni_base/layer_0.15.inst.cfg b/resources/quality/uni_base/layer_0.15.inst.cfg index fdf325677d..3d80994db8 100644 --- a/resources/quality/uni_base/layer_0.15.inst.cfg +++ b/resources/quality/uni_base/layer_0.15.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fast Super Quality definition = uni_base +name = Fast Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = q015 -weight = -3 global_quality = True +quality_type = q015 +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.15 layer_height_0 = 0.15 + diff --git a/resources/quality/uni_base/layer_0.20.inst.cfg b/resources/quality/uni_base/layer_0.20.inst.cfg index 5fc4201fef..ef5b96040a 100644 --- a/resources/quality/uni_base/layer_0.20.inst.cfg +++ b/resources/quality/uni_base/layer_0.20.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = uni_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = q020 -weight = -4 global_quality = True +quality_type = q020 +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.20 layer_height_0 = 0.20 + diff --git a/resources/quality/uni_base/layer_0.25.inst.cfg b/resources/quality/uni_base/layer_0.25.inst.cfg index cbb90a9a72..6e41376988 100644 --- a/resources/quality/uni_base/layer_0.25.inst.cfg +++ b/resources/quality/uni_base/layer_0.25.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fast Standard Quality definition = uni_base +name = Fast Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = q025 -weight = -5 global_quality = True +quality_type = q025 +setting_version = 22 +type = quality +weight = -5 [values] layer_height = 0.25 layer_height_0 = 0.25 + diff --git a/resources/quality/uni_base/layer_0.30.inst.cfg b/resources/quality/uni_base/layer_0.30.inst.cfg index 325821c366..e92496a1d2 100644 --- a/resources/quality/uni_base/layer_0.30.inst.cfg +++ b/resources/quality/uni_base/layer_0.30.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fast Print Quality definition = uni_base +name = Fast Print Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = q030 -weight = -6 global_quality = True +quality_type = q030 +setting_version = 22 +type = quality +weight = -6 [values] layer_height = 0.30 layer_height_0 = 0.30 + diff --git a/resources/quality/uni_base/layer_0.35.inst.cfg b/resources/quality/uni_base/layer_0.35.inst.cfg index 1a15f97ac6..443932fb54 100644 --- a/resources/quality/uni_base/layer_0.35.inst.cfg +++ b/resources/quality/uni_base/layer_0.35.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = uni_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = q035 -weight = -7 global_quality = True +quality_type = q035 +setting_version = 22 +type = quality +weight = -7 [values] layer_height = 0.35 layer_height_0 = 0.35 + diff --git a/resources/quality/uni_base/layer_0.40.inst.cfg b/resources/quality/uni_base/layer_0.40.inst.cfg index 15c46490fe..11fda6fa87 100644 --- a/resources/quality/uni_base/layer_0.40.inst.cfg +++ b/resources/quality/uni_base/layer_0.40.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Poor Draft Quality definition = uni_base +name = Poor Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = q040 -weight = -8 global_quality = True +quality_type = q040 +setting_version = 22 +type = quality +weight = -8 [values] layer_height = 0.40 layer_height_0 = 0.40 + 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 9db310e755..9841118e2b 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_n0.30_l0.10 definition = uni_base +name = petg_n0.30_l0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = q010 -material = generic_petg +setting_version = 22 +type = quality variant = 0.30mm Nozzle [values] wall_thickness = =line_width*4 + 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 0a744f0355..18e02aed4f 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_n0.30_l0.15 definition = uni_base +name = petg_n0.30_l0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = q015 -material = generic_petg +setting_version = 22 +type = quality variant = 0.30mm Nozzle [values] wall_thickness = =line_width*4 + 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 747af047df..a93a42df02 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_n0.30_l0.20 definition = uni_base +name = petg_n0.30_l0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = q020 -material = generic_petg +setting_version = 22 +type = quality variant = 0.30mm Nozzle [values] wall_thickness = =line_width*4 + 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 0300413561..79b2c22e7a 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_n0.30_l0.25 definition = uni_base +name = petg_n0.30_l0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = q025 -material = generic_petg +setting_version = 22 +type = quality variant = 0.30mm Nozzle [values] wall_thickness = =line_width*4 + 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 6e17a7d0af..6d05047b3d 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_n0.40_l0.10 definition = uni_base +name = petg_n0.40_l0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = q010 -material = generic_petg +setting_version = 22 +type = quality variant = 0.40mm Nozzle [values] wall_thickness = =line_width*3 + 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 cbb4a58160..79c9d10d86 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_n0.40_l0.15 definition = uni_base +name = petg_n0.40_l0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = q015 -material = generic_petg +setting_version = 22 +type = quality variant = 0.40mm Nozzle [values] wall_thickness = =line_width*3 + 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 c294a00fa0..6b99af5fe6 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_n0.40_l0.20 definition = uni_base +name = petg_n0.40_l0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = q020 -material = generic_petg +setting_version = 22 +type = quality variant = 0.40mm Nozzle [values] wall_thickness = =line_width*3 + 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 ba0976ec16..3e4ff411d5 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_n0.40_l0.25 definition = uni_base +name = petg_n0.40_l0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = q025 -material = generic_petg +setting_version = 22 +type = quality variant = 0.40mm Nozzle [values] wall_thickness = =line_width*3 + 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 be326c3869..3a6917a9b6 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_n0.40_l0.30 definition = uni_base +name = petg_n0.40_l0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = q030 -material = generic_petg +setting_version = 22 +type = quality variant = 0.40mm Nozzle [values] wall_thickness = =line_width*3 + 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 774955edc1..06fb65b9c1 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_n0.50_l0.15 definition = uni_base +name = petg_n0.50_l0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = q015 -material = generic_petg +setting_version = 22 +type = quality variant = 0.50mm Nozzle [values] wall_thickness = =line_width*3 + 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 300a4c5d98..cf28c3752f 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_n0.50_l0.20 definition = uni_base +name = petg_n0.50_l0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = q020 -material = generic_petg +setting_version = 22 +type = quality variant = 0.50mm Nozzle [values] wall_thickness = =line_width*3 + 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 1adcaba8a5..025ee67e81 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_n0.50_l0.25 definition = uni_base +name = petg_n0.50_l0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = q025 -material = generic_petg +setting_version = 22 +type = quality variant = 0.50mm Nozzle [values] wall_thickness = =line_width*3 + 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 80f16b3bcf..a80ee05200 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_n0.50_l0.30 definition = uni_base +name = petg_n0.50_l0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = q030 -material = generic_petg +setting_version = 22 +type = quality variant = 0.50mm Nozzle [values] wall_thickness = =line_width*3 + 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 cb92609a68..c2198ed29d 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_n0.50_l0.35 definition = uni_base +name = petg_n0.50_l0.35 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = q035 -material = generic_petg +setting_version = 22 +type = quality variant = 0.50mm Nozzle [values] wall_thickness = =line_width*3 + 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 0c2dbc3d3a..f36516d08d 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_n0.30_l0.10 definition = uni_base +name = pla_n0.30_l0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = q010 -material = generic_pla +setting_version = 22 +type = quality variant = 0.30mm Nozzle [values] wall_thickness = =line_width*4 + 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 ac4c4ae939..37016d040b 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_n0.30_l0.15 definition = uni_base +name = pla_n0.30_l0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = q015 -material = generic_pla +setting_version = 22 +type = quality variant = 0.30mm Nozzle [values] wall_thickness = =line_width*4 + 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 36bd73cae1..929803a398 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_n0.30_l0.20 definition = uni_base +name = pla_n0.30_l0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = q020 -material = generic_pla +setting_version = 22 +type = quality variant = 0.30mm Nozzle [values] wall_thickness = =line_width*4 + 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 0e89e7d591..39aa19d003 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_n0.30_l0.25 definition = uni_base +name = pla_n0.30_l0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = q025 -material = generic_pla +setting_version = 22 +type = quality variant = 0.30mm Nozzle [values] wall_thickness = =line_width*4 + 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 af75eaf2e5..6e0f68c476 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_n0.40_l0.10 definition = uni_base +name = pla_n0.40_l0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = q010 -material = generic_pla +setting_version = 22 +type = quality variant = 0.40mm Nozzle [values] wall_thickness = =line_width*3 + 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 8306845eca..e53e6b0b70 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_n0.40_l0.15 definition = uni_base +name = pla_n0.40_l0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = q015 -material = generic_pla +setting_version = 22 +type = quality variant = 0.40mm Nozzle [values] wall_thickness = =line_width*3 + 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 8974965527..84caa4a707 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_n0.40_l0.20 definition = uni_base +name = pla_n0.40_l0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = q020 -material = generic_pla +setting_version = 22 +type = quality variant = 0.40mm Nozzle [values] wall_thickness = =line_width*3 + 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 2a952da98e..d48114e887 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_n0.40_l0.25 definition = uni_base +name = pla_n0.40_l0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = q025 -material = generic_pla +setting_version = 22 +type = quality variant = 0.40mm Nozzle [values] wall_thickness = =line_width*3 + 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 2e6afa9656..be1401a075 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_n0.40_l0.30 definition = uni_base +name = pla_n0.40_l0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = q030 -material = generic_pla +setting_version = 22 +type = quality variant = 0.40mm Nozzle [values] wall_thickness = =line_width*3 + 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 ace2b29ff6..2052bbe970 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_n0.50_l0.15 definition = uni_base +name = pla_n0.50_l0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = q015 -material = generic_pla +setting_version = 22 +type = quality variant = 0.50mm Nozzle [values] wall_thickness = =line_width*3 + 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 c63ef305af..b262d36cf7 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_n0.50_l0.20 definition = uni_base +name = pla_n0.50_l0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = q020 -material = generic_pla +setting_version = 22 +type = quality variant = 0.50mm Nozzle [values] wall_thickness = =line_width*3 + 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 59a3cdec09..ec443cc82f 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_n0.50_l0.25 definition = uni_base +name = pla_n0.50_l0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = q025 -material = generic_pla +setting_version = 22 +type = quality variant = 0.50mm Nozzle [values] wall_thickness = =line_width*3 + 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 0590f6aa2b..fd0605bfdd 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_n0.50_l0.30 definition = uni_base +name = pla_n0.50_l0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = q030 -material = generic_pla +setting_version = 22 +type = quality variant = 0.50mm Nozzle [values] wall_thickness = =line_width*3 + 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 935154eda3..0605347cc5 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_n0.50_l0.35 definition = uni_base +name = pla_n0.50_l0.35 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = q035 -material = generic_pla +setting_version = 22 +type = quality variant = 0.50mm Nozzle [values] wall_thickness = =line_width*3 + 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 c7e8c087af..8a95ba4ab8 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 @@ -1,21 +1,21 @@ [general] -version = 4 -name = Extreme definition = vertex_delta_k8800 +name = Extreme +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extreme -weight = 2 material = Vertex_Delta_ABS +quality_type = extreme +setting_version = 22 +type = quality +weight = 2 [values] +cool_fan_speed = 0 layer_height_0 = 0.2 - material_final_print_temperature = 250 material_initial_print_temperature = 250 material_print_temperature = 250 -retraction_amount = 3 material_standby_temperature = 225 -cool_fan_speed = 0 +retraction_amount = 3 + 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 115caecb08..8bd8593036 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 @@ -1,21 +1,21 @@ [general] -version = 4 -name = High definition = vertex_delta_k8800 +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = Vertex_Delta_ABS +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] +cool_fan_speed = 0 layer_height_0 = 0.2 - material_final_print_temperature = 250 material_initial_print_temperature = 250 material_print_temperature = 250 -retraction_amount = 3 material_standby_temperature = 225 -cool_fan_speed = 0 +retraction_amount = 3 + 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 1418d67e2c..973eea0d5a 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 @@ -1,21 +1,21 @@ [general] -version = 4 -name = Normal definition = vertex_delta_k8800 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = Vertex_Delta_ABS +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] +cool_fan_speed = 00 layer_height_0 = 0.2 - material_final_print_temperature = 250 material_initial_print_temperature = 250 material_print_temperature = 250 -retraction_amount = 3 material_standby_temperature = 225 -cool_fan_speed = 00 +retraction_amount = 3 + 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 5c00d00628..cc67d80bb5 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Extreme definition = vertex_delta_k8800 +name = Extreme +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extreme -weight = 2 global_quality = True +quality_type = extreme +setting_version = 22 +type = quality +weight = 2 [values] layer_height = 0.05 + 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 49ffcced75..943befece3 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = High definition = vertex_delta_k8800 +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] layer_height = 0.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 599a1b57c4..ce5fd76579 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Normal definition = vertex_delta_k8800 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.2 + 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 b201095b0a..67c9b8b2e1 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 @@ -1,21 +1,21 @@ [general] -version = 4 -name = Extreme definition = vertex_delta_k8800 +name = Extreme +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extreme -weight = 2 material = Vertex_Delta_PET +quality_type = extreme +setting_version = 22 +type = quality +weight = 2 [values] +cool_fan_speed = 10 layer_height_0 = 0.2 - material_final_print_temperature = 240 material_initial_print_temperature = 240 material_print_temperature = 240 -retraction_amount = 3 material_standby_temperature = 215 -cool_fan_speed = 10 +retraction_amount = 3 + 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 14406b9367..d7f5cfef48 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 @@ -1,21 +1,21 @@ [general] -version = 4 -name = High definition = vertex_delta_k8800 +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = Vertex_Delta_PET +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] +cool_fan_speed = 10 layer_height_0 = 0.2 - material_final_print_temperature = 240 material_initial_print_temperature = 240 material_print_temperature = 240 -retraction_amount = 3 material_standby_temperature = 215 -cool_fan_speed = 10 +retraction_amount = 3 + 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 b4e5dd6f66..210ada27f4 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 @@ -1,21 +1,21 @@ [general] -version = 4 -name = Normal definition = vertex_delta_k8800 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = Vertex_Delta_PET +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] +cool_fan_speed = 10 layer_height_0 = 0.2 - material_final_print_temperature = 240 material_initial_print_temperature = 240 material_print_temperature = 240 -retraction_amount = 3 material_standby_temperature = 215 -cool_fan_speed = 10 +retraction_amount = 3 + 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 5d805dbee2..2eef80f6f9 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 @@ -1,21 +1,21 @@ [general] -version = 4 -name = Extreme definition = vertex_delta_k8800 +name = Extreme +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extreme -weight = 2 material = Vertex_Delta_PLA +quality_type = extreme +setting_version = 22 +type = quality +weight = 2 [values] +cool_fan_speed = 40 layer_height_0 = 0.2 - material_final_print_temperature = 200 material_initial_print_temperature = 200 material_print_temperature = 200 -retraction_amount = 3 material_standby_temperature = 175 -cool_fan_speed = 40 +retraction_amount = 3 + 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 2b82c80f88..55f23a2b79 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 @@ -1,21 +1,21 @@ [general] -version = 4 -name = High definition = vertex_delta_k8800 +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = Vertex_Delta_PLA +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] +cool_fan_speed = 40 layer_height_0 = 0.2 - material_final_print_temperature = 200 material_initial_print_temperature = 200 material_print_temperature = 200 -retraction_amount = 3 material_standby_temperature = 175 -cool_fan_speed = 40 +retraction_amount = 3 + 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 a8f986954b..daa1ee388a 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 @@ -1,21 +1,21 @@ [general] -version = 4 -name = Normal definition = vertex_delta_k8800 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = Vertex_Delta_PLA +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] +cool_fan_speed = 40 layer_height_0 = 0.2 - material_final_print_temperature = 200 material_initial_print_temperature = 200 material_print_temperature = 200 -retraction_amount = 3 material_standby_temperature = 175 -cool_fan_speed = 40 +retraction_amount = 3 + 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 e3e8cbd4e7..1cf2f69c28 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 @@ -1,21 +1,21 @@ [general] -version = 4 -name = Extreme definition = vertex_delta_k8800 +name = Extreme +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extreme -weight = 2 material = Vertex_Delta_TPU +quality_type = extreme +setting_version = 22 +type = quality +weight = 2 [values] +cool_fan_speed = 20 layer_height_0 = 0.2 - material_final_print_temperature = 220 material_initial_print_temperature = 220 material_print_temperature = 220 -retraction_amount = 3 material_standby_temperature = 195 -cool_fan_speed = 20 +retraction_amount = 3 + 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 42dba4b8f6..d9d7bd586b 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 @@ -1,21 +1,21 @@ [general] -version = 4 -name = High definition = vertex_delta_k8800 +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = 1 material = Vertex_Delta_TPU +quality_type = high +setting_version = 22 +type = quality +weight = 1 [values] +cool_fan_speed = 20 layer_height_0 = 0.2 - material_final_print_temperature = 220 material_initial_print_temperature = 220 material_print_temperature = 220 -retraction_amount = 3 material_standby_temperature = 195 -cool_fan_speed = 20 +retraction_amount = 3 + 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 67209fbab7..4abfc9cd55 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 @@ -1,21 +1,21 @@ [general] -version = 4 -name = Normal definition = vertex_delta_k8800 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = Vertex_Delta_TPU +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] +cool_fan_speed = 20 layer_height_0 = 0.2 - material_final_print_temperature = 220 material_initial_print_temperature = 220 material_print_temperature = 220 -retraction_amount = 3 material_standby_temperature = 195 -cool_fan_speed = 20 +retraction_amount = 3 + 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 new file mode 100644 index 0000000000..8400d63613 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex2plus +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..b4f6d84219 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex2plus +name = Ultra Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..43754cf4d0 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex2plus +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..51aca4c8f8 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex2plus +name = Ultra Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..123039f744 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex2plus +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..2778738cc4 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex2plus +name = Ultra Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..5ec01f3385 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex2plus +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..fcf9eac078 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex2plus +name = Low Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..4e4f96e9a6 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex2plus +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..bbc3c0c2cd --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex2plus +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..18741cb1f4 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex2plus +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..8235de7cf3 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex2plus +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..73d6ba0150 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex2plus +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..4c7b04faba --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex2plus +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..f12be97735 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex2plus +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..a3c95de877 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex2plus +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..26f09735ac --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex2plus +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..7d70600e6d --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex2plus +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..fcafe45b1a --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex2plus +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..3e7fad20e7 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex2plus +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..214992da9c --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex2plus +name = Super Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..fe33c34b00 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex2plus +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..cd03bbf51a --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex2plus +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..9b0210c925 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex2plus +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..1edcc0aca8 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex2plus +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..275409e394 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex2plus +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..76756b07f5 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex2plus +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..c95d7a0cbc --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex2plus +name = Draft Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..4a03f1bc16 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex2plus +name = Draft Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..dd10ada2c3 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex2plus +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..fb5b65747f --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex2plus +name = Draft Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] + diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg new file mode 100644 index 0000000000..1265bc0500 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = vivedino_trex2plus +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.20 +support_interface_height = =layer_height*6 +top_bottom_thickness = =layer_height_0+layer_height*4 +wall_thickness = =line_width*3 + diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg new file mode 100644 index 0000000000..2af82ca797 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = vivedino_trex2plus +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -5 + +[values] +layer_height = 0.32 +layer_height_0 = 0.32 +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg new file mode 100644 index 0000000000..faa561e87c --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = vivedino_trex2plus +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 22 +type = quality +weight = -4 + +[values] +layer_height = 0.28 +layer_height_0 = 0.28 +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg new file mode 100644 index 0000000000..7f7c62fac0 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = vivedino_trex2plus +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = standard +setting_version = 22 +type = quality +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 +support_interface_height = =layer_height*5 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*3 + diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg new file mode 100644 index 0000000000..74e59d4712 --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = vivedino_trex2plus +name = Super Quality +version = 4 + +[metadata] +global_quality = True +quality_type = super +setting_version = 22 +type = quality +weight = -1 + +[values] +layer_height = 0.12 +layer_height_0 = 0.12 +support_interface_height = =layer_height*8 +top_bottom_thickness = =layer_height_0+layer_height*6 +wall_thickness = =line_width*3 + diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg new file mode 100644 index 0000000000..d84b13132d --- /dev/null +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = vivedino_trex2plus +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +weight = 0 + +[values] +layer_height = 0.08 +layer_height_0 = 0.12 +support_interface_height = =layer_height*12 +top_bottom_thickness = =layer_height_0+layer_height*10 +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..a3ac617a88 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex3 +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..a38fbaf5ac --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex3 +name = Ultra Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..ffeb8a7186 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex3 +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..6b1e6cc04f --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex3 +name = Ultra Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..deb8efc072 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex3 +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..b18db947ba --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex3 +name = Ultra Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..56fc7ca255 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex3 +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..52c33c7a43 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex3 +name = Low Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..a43fa1416f --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex3 +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..7066b13d53 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex3 +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..d0b0765276 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex3 +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..f58eb4cc78 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex3 +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..65d0b2f86e --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex3 +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..83a7bf1d58 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex3 +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..9f075001b7 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex3 +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..b39c54e521 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex3 +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..7465e927a2 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex3 +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..d4beec1d17 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex3 +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..24823515fc --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex3 +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..ddb1057761 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex3 +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..d18ac9b743 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex3 +name = Super Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..bd7d1b0244 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex3 +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..7e5655563d --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex3 +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..05e47b6e01 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex3 +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..de0768bca2 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex3 +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..39d448b89c --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex3 +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..afc319902c --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex3 +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..6540732950 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex3 +name = Draft Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..5dc7b1b7bf --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vivedino_trex3 +name = Draft Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..0f548bc44a --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex3 +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..5e75225fe9 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vivedino_trex3 +name = Draft Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] + diff --git a/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg new file mode 100644 index 0000000000..10661dc372 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = vivedino_trex3 +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.20 +support_interface_height = =layer_height*6 +top_bottom_thickness = =layer_height_0+layer_height*4 +wall_thickness = =line_width*3 + diff --git a/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg new file mode 100644 index 0000000000..6de78a03e2 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = vivedino_trex3 +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -5 + +[values] +layer_height = 0.32 +layer_height_0 = 0.32 +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg new file mode 100644 index 0000000000..7727bd3a62 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = vivedino_trex3 +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 22 +type = quality +weight = -4 + +[values] +layer_height = 0.28 +layer_height_0 = 0.28 +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg new file mode 100644 index 0000000000..8548b27c88 --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = vivedino_trex3 +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = standard +setting_version = 22 +type = quality +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 +support_interface_height = =layer_height*5 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*3 + diff --git a/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg new file mode 100644 index 0000000000..209825b5ea --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = vivedino_trex3 +name = Super Quality +version = 4 + +[metadata] +global_quality = True +quality_type = super +setting_version = 22 +type = quality +weight = -1 + +[values] +layer_height = 0.12 +layer_height_0 = 0.12 +support_interface_height = =layer_height*8 +top_bottom_thickness = =layer_height_0+layer_height*6 +wall_thickness = =line_width*3 + diff --git a/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg new file mode 100644 index 0000000000..a4158b482e --- /dev/null +++ b/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = vivedino_trex3 +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +weight = 0 + +[values] +layer_height = 0.08 +layer_height_0 = 0.12 +support_interface_height = =layer_height*12 +top_bottom_thickness = =layer_height_0+layer_height*10 +wall_thickness = =line_width*3 + diff --git a/resources/quality/volumic/sh65_coarse.inst.cfg b/resources/quality/volumic/sh65_coarse.inst.cfg index e32a0a9b4d..f6002271a7 100644 --- a/resources/quality/volumic/sh65_coarse.inst.cfg +++ b/resources/quality/volumic/sh65_coarse.inst.cfg @@ -1,26 +1,27 @@ -[general] -version = 4 -name = Low -definition = sh65 - -[metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -1 -global_quality = True - -[values] -layer_height = 0.250 -top_bottom_thickness = 1 -wall_thickness = 1.2 -line_width = 0.4 -travel_avoid_distance = 1 -speed_infill = 100 -speed_layer_0 = 40 -speed_print = 100 -speed_topbottom = 80 -speed_travel = 140 -speed_wall = 40 -speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +[general] +definition = sh65 +name = Low +version = 4 + +[metadata] +global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -1 + +[values] +layer_height = 0.250 +line_width = 0.4 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/sh65_draft.inst.cfg b/resources/quality/volumic/sh65_draft.inst.cfg index 654a49df67..61844b3d8e 100644 --- a/resources/quality/volumic/sh65_draft.inst.cfg +++ b/resources/quality/volumic/sh65_draft.inst.cfg @@ -1,26 +1,27 @@ -[general] -version = 4 -name = Standard -definition = sh65 - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 -global_quality = True - -[values] -layer_height = 0.2 -top_bottom_thickness = 1 -wall_thickness = 1.2 -line_width = 0.4 -travel_avoid_distance = 1 -speed_infill = 100 -speed_layer_0 = 40 -speed_print = 100 -speed_topbottom = 80 -speed_travel = 140 -speed_wall = 40 -speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +[general] +definition = sh65 +name = Standard +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 + +[values] +layer_height = 0.2 +line_width = 0.4 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/sh65_extra_coarse.inst.cfg b/resources/quality/volumic/sh65_extra_coarse.inst.cfg index 94fa087483..6795e06c5b 100644 --- a/resources/quality/volumic/sh65_extra_coarse.inst.cfg +++ b/resources/quality/volumic/sh65_extra_coarse.inst.cfg @@ -1,26 +1,27 @@ -[general] -version = 4 -name = Very low -definition = sh65 - -[metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 0 -global_quality = True - -[values] -layer_height = 0.3 -top_bottom_thickness = 1.1 -wall_thickness = 1.2 -line_width = 0.4 -travel_avoid_distance = 1 -speed_infill = 100 -speed_layer_0 = 40 -speed_print = 100 -speed_topbottom = 80 -speed_travel = 140 -speed_wall = 40 -speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +[general] +definition = sh65 +name = Very low +version = 4 + +[metadata] +global_quality = True +quality_type = extra coarse +setting_version = 22 +type = quality +weight = 0 + +[values] +layer_height = 0.3 +line_width = 0.4 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 +top_bottom_thickness = 1.1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/sh65_fast.inst.cfg b/resources/quality/volumic/sh65_fast.inst.cfg index dc096fe89e..5cab024202 100644 --- a/resources/quality/volumic/sh65_fast.inst.cfg +++ b/resources/quality/volumic/sh65_fast.inst.cfg @@ -1,26 +1,27 @@ -[general] -version = 4 -name = Medium -definition = sh65 - -[metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -3 -global_quality = True - -[values] -layer_height = 0.15 -top_bottom_thickness = 1.05 -wall_thickness = 1.2 -line_width = 0.4 -travel_avoid_distance = 1 -speed_infill = 100 -speed_layer_0 = 40 -speed_print = 100 -speed_topbottom = 80 -speed_travel = 140 -speed_wall = 40 -speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +[general] +definition = sh65 +name = Medium +version = 4 + +[metadata] +global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -3 + +[values] +layer_height = 0.15 +line_width = 0.4 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 +top_bottom_thickness = 1.05 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/sh65_high.inst.cfg b/resources/quality/volumic/sh65_high.inst.cfg index 89ba3c4ba8..f9e974e5c8 100644 --- a/resources/quality/volumic/sh65_high.inst.cfg +++ b/resources/quality/volumic/sh65_high.inst.cfg @@ -1,26 +1,27 @@ -[general] -version = 4 -name = Very high -definition = sh65 - -[metadata] -setting_version = 20 -type = quality -quality_type = high -weight = -5 -global_quality = True - -[values] -layer_height = 0.05 -top_bottom_thickness = 1 -wall_thickness = 1.2 -line_width = 0.4 -travel_avoid_distance = 1 -speed_infill = 100 -speed_layer_0 = 40 -speed_print = 100 -speed_topbottom = 80 -speed_travel = 140 -speed_wall = 40 -speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +[general] +definition = sh65 +name = Very high +version = 4 + +[metadata] +global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = -5 + +[values] +layer_height = 0.05 +line_width = 0.4 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/sh65_normal.inst.cfg b/resources/quality/volumic/sh65_normal.inst.cfg index 3b6e81a86f..c96946f5a8 100644 --- a/resources/quality/volumic/sh65_normal.inst.cfg +++ b/resources/quality/volumic/sh65_normal.inst.cfg @@ -1,26 +1,27 @@ -[general] -version = 4 -name = High -definition = sh65 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -4 -global_quality = True - -[values] -layer_height = 0.1 -top_bottom_thickness = 1 -wall_thickness = 1.2 -line_width = 0.4 -travel_avoid_distance = 1 -speed_infill = 100 -speed_layer_0 = 40 -speed_print = 100 -speed_topbottom = 80 -speed_travel = 140 -speed_wall = 40 -speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +[general] +definition = sh65 +name = High +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -4 + +[values] +layer_height = 0.1 +line_width = 0.4 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg b/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg index 228bee32fb..01ae434bd0 100644 --- a/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Low definition = stream20dual_mk2 +name = Low +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -1 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.250 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg b/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg index 0135e0b598..203e63efe0 100644 --- a/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Standard definition = stream20dual_mk2 +name = Standard +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] layer_height = 0.2 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg index 4197fe7755..7d0269a611 100644 --- a/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Very low definition = stream20dual_mk2 +name = Very low +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 0 global_quality = True +quality_type = extra coarse +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.275 -top_bottom_thickness = 1.1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1.1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg b/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg index 89fe7a6bc5..58abc1beac 100644 --- a/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Medium definition = stream20dual_mk2 +name = Medium +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -3 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.15 -top_bottom_thickness = 1.05 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1.05 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream20dual_mk2_high.inst.cfg b/resources/quality/volumic/stream20dual_mk2_high.inst.cfg index 66274d9186..fbed3cb579 100644 --- a/resources/quality/volumic/stream20dual_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_high.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Very high definition = stream20dual_mk2 +name = Very high +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = -5 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = -5 [values] layer_height = 0.05 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg b/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg index 2cd0119d83..46d007e043 100644 --- a/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = High definition = stream20dual_mk2 +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -4 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.1 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg b/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg index 5546342dee..f30fc5bdde 100644 --- a/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Low definition = stream20pro_mk2 +name = Low +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -1 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.250 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg b/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg index 388db2627c..8bdddbdd1f 100644 --- a/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Standard definition = stream20pro_mk2 +name = Standard +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] layer_height = 0.2 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg index 5f2e89c2e5..610dd6e7a0 100644 --- a/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Very low definition = stream20pro_mk2 +name = Very low +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 0 global_quality = True +quality_type = extra coarse +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.275 -top_bottom_thickness = 1.1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1.1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg b/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg index b9fcf8d32c..b542119eba 100644 --- a/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Medium definition = stream20pro_mk2 +name = Medium +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -3 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.15 -top_bottom_thickness = 1.05 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1.05 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream20pro_mk2_high.inst.cfg b/resources/quality/volumic/stream20pro_mk2_high.inst.cfg index 84612ad732..703b59bf4a 100644 --- a/resources/quality/volumic/stream20pro_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_high.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Very high definition = stream20pro_mk2 +name = Very high +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = -5 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = -5 [values] layer_height = 0.05 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg b/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg index 167cef382a..f30aa09013 100644 --- a/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = High definition = stream20pro_mk2 +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -4 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.1 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg b/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg index 48fac53987..bdcbbdb5e7 100644 --- a/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Low definition = stream30dual_mk2 +name = Low +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -1 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.250 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg b/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg index 2fbe861a9f..c521eb96cc 100644 --- a/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Standard definition = stream30dual_mk2 +name = Standard +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] layer_height = 0.2 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg index 8cd0ba36ff..2b168507c3 100644 --- a/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Very low definition = stream30dual_mk2 +name = Very low +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 0 global_quality = True +quality_type = extra coarse +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.275 -top_bottom_thickness = 1.1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1.1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg b/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg index 7e046f8809..73a73817e1 100644 --- a/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Medium definition = stream30dual_mk2 +name = Medium +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -3 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.15 -top_bottom_thickness = 1.05 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1.05 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30dual_mk2_high.inst.cfg b/resources/quality/volumic/stream30dual_mk2_high.inst.cfg index b473a0fff9..a18d0e7178 100644 --- a/resources/quality/volumic/stream30dual_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_high.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Very high definition = stream30dual_mk2 +name = Very high +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = -5 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = -5 [values] layer_height = 0.05 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg b/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg index d86b2a8cff..5e46e5a4cb 100644 --- a/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = High definition = stream30dual_mk2 +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -4 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.1 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30mk3_coarse.inst.cfg b/resources/quality/volumic/stream30mk3_coarse.inst.cfg index 4efbac012d..82b9d849f4 100644 --- a/resources/quality/volumic/stream30mk3_coarse.inst.cfg +++ b/resources/quality/volumic/stream30mk3_coarse.inst.cfg @@ -1,26 +1,27 @@ -[general] -version = 4 -name = Low -definition = stream30mk3 - -[metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -1 -global_quality = True - -[values] -layer_height = 0.250 -top_bottom_thickness = 1 -wall_thickness = 1.2 -line_width = 0.4 -travel_avoid_distance = 1 -speed_infill = 100 -speed_layer_0 = 40 -speed_print = 100 -speed_topbottom = 80 -speed_travel = 140 -speed_wall = 40 -speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +[general] +definition = stream30mk3 +name = Low +version = 4 + +[metadata] +global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -1 + +[values] +layer_height = 0.250 +line_width = 0.4 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30mk3_draft.inst.cfg b/resources/quality/volumic/stream30mk3_draft.inst.cfg index 467a650ea5..a82fbc93ff 100644 --- a/resources/quality/volumic/stream30mk3_draft.inst.cfg +++ b/resources/quality/volumic/stream30mk3_draft.inst.cfg @@ -1,26 +1,27 @@ -[general] -version = 4 -name = Standard -definition = stream30mk3 - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 -global_quality = True - -[values] -layer_height = 0.2 -top_bottom_thickness = 1 -wall_thickness = 1.2 -line_width = 0.4 -travel_avoid_distance = 1 -speed_infill = 100 -speed_layer_0 = 40 -speed_print = 100 -speed_topbottom = 80 -speed_travel = 140 -speed_wall = 40 -speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +[general] +definition = stream30mk3 +name = Standard +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 + +[values] +layer_height = 0.2 +line_width = 0.4 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg b/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg index 5136ffc965..3d79662132 100644 --- a/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg @@ -1,26 +1,27 @@ -[general] -version = 4 -name = Very low -definition = stream30mk3 - -[metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 0 -global_quality = True - -[values] -layer_height = 0.3 -top_bottom_thickness = 1.1 -wall_thickness = 1.2 -line_width = 0.4 -travel_avoid_distance = 1 -speed_infill = 100 -speed_layer_0 = 40 -speed_print = 100 -speed_topbottom = 80 -speed_travel = 140 -speed_wall = 40 -speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +[general] +definition = stream30mk3 +name = Very low +version = 4 + +[metadata] +global_quality = True +quality_type = extra coarse +setting_version = 22 +type = quality +weight = 0 + +[values] +layer_height = 0.3 +line_width = 0.4 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 +top_bottom_thickness = 1.1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30mk3_fast.inst.cfg b/resources/quality/volumic/stream30mk3_fast.inst.cfg index 80f523e686..5f47d9dc52 100644 --- a/resources/quality/volumic/stream30mk3_fast.inst.cfg +++ b/resources/quality/volumic/stream30mk3_fast.inst.cfg @@ -1,26 +1,27 @@ -[general] -version = 4 -name = Medium -definition = stream30mk3 - -[metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -3 -global_quality = True - -[values] -layer_height = 0.15 -top_bottom_thickness = 1.05 -wall_thickness = 1.2 -line_width = 0.4 -travel_avoid_distance = 1 -speed_infill = 100 -speed_layer_0 = 40 -speed_print = 100 -speed_topbottom = 80 -speed_travel = 140 -speed_wall = 40 -speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +[general] +definition = stream30mk3 +name = Medium +version = 4 + +[metadata] +global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -3 + +[values] +layer_height = 0.15 +line_width = 0.4 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 +top_bottom_thickness = 1.05 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30mk3_high.inst.cfg b/resources/quality/volumic/stream30mk3_high.inst.cfg index 7632275dea..99070092d0 100644 --- a/resources/quality/volumic/stream30mk3_high.inst.cfg +++ b/resources/quality/volumic/stream30mk3_high.inst.cfg @@ -1,26 +1,27 @@ -[general] -version = 4 -name = Very high -definition = stream30mk3 - -[metadata] -setting_version = 20 -type = quality -quality_type = high -weight = -5 -global_quality = True - -[values] -layer_height = 0.05 -top_bottom_thickness = 1 -wall_thickness = 1.2 -line_width = 0.4 -travel_avoid_distance = 1 -speed_infill = 100 -speed_layer_0 = 40 -speed_print = 100 -speed_topbottom = 80 -speed_travel = 140 -speed_wall = 40 -speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +[general] +definition = stream30mk3 +name = Very high +version = 4 + +[metadata] +global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = -5 + +[values] +layer_height = 0.05 +line_width = 0.4 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30mk3_normal.inst.cfg b/resources/quality/volumic/stream30mk3_normal.inst.cfg index 9465951bb1..168eaa13a9 100644 --- a/resources/quality/volumic/stream30mk3_normal.inst.cfg +++ b/resources/quality/volumic/stream30mk3_normal.inst.cfg @@ -1,26 +1,27 @@ -[general] -version = 4 -name = High -definition = stream30mk3 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -4 -global_quality = True - -[values] -layer_height = 0.1 -top_bottom_thickness = 1 -wall_thickness = 1.2 -line_width = 0.4 -travel_avoid_distance = 1 -speed_infill = 100 -speed_layer_0 = 40 -speed_print = 100 -speed_topbottom = 80 -speed_travel = 140 -speed_wall = 40 -speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +[general] +definition = stream30mk3 +name = High +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -4 + +[values] +layer_height = 0.1 +line_width = 0.4 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg b/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg index faae4a013a..4ab380a91e 100644 --- a/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Low definition = stream30pro_mk2 +name = Low +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -1 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.250 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg b/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg index 04b7df91b0..9601e0ae6c 100644 --- a/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Standard definition = stream30pro_mk2 +name = Standard +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] layer_height = 0.2 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg index d7ec009191..5de2da310b 100644 --- a/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Very low definition = stream30pro_mk2 +name = Very low +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 0 global_quality = True +quality_type = extra coarse +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.275 -top_bottom_thickness = 1.1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1.1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg b/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg index b86ef52c26..8a0b9af92b 100644 --- a/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Medium definition = stream30pro_mk2 +name = Medium +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -3 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.15 -top_bottom_thickness = 1.05 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1.05 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30pro_mk2_high.inst.cfg b/resources/quality/volumic/stream30pro_mk2_high.inst.cfg index 319337d2d8..13c1186f61 100644 --- a/resources/quality/volumic/stream30pro_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_high.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Very high definition = stream30pro_mk2 +name = Very high +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = -5 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = -5 [values] layer_height = 0.05 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg b/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg index a622b94858..ead12ea85f 100644 --- a/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = High definition = stream30pro_mk2 +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -4 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.1 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 60 speed_layer_0 = 30 speed_print = 60 @@ -23,4 +20,8 @@ speed_topbottom = 48 speed_travel = 100 speed_wall = 30 speed_wall_0 = 30 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30ultra_coarse.inst.cfg b/resources/quality/volumic/stream30ultra_coarse.inst.cfg index 027a51b970..b03ca36b6e 100644 --- a/resources/quality/volumic/stream30ultra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultra_coarse.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Low definition = stream30ultra +name = Low +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -1 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.250 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 100 speed_layer_0 = 40 speed_print = 100 @@ -23,4 +20,8 @@ speed_topbottom = 80 speed_travel = 140 speed_wall = 40 speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30ultra_draft.inst.cfg b/resources/quality/volumic/stream30ultra_draft.inst.cfg index e9542cf8c3..98c9205303 100644 --- a/resources/quality/volumic/stream30ultra_draft.inst.cfg +++ b/resources/quality/volumic/stream30ultra_draft.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Standard definition = stream30ultra +name = Standard +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] layer_height = 0.2 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 100 speed_layer_0 = 40 speed_print = 100 @@ -23,4 +20,8 @@ speed_topbottom = 80 speed_travel = 140 speed_wall = 40 speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg index 58e4574ad9..88820df029 100644 --- a/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Very low definition = stream30ultra +name = Very low +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 0 global_quality = True +quality_type = extra coarse +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.3 -top_bottom_thickness = 1.1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 100 speed_layer_0 = 40 speed_print = 100 @@ -23,4 +20,8 @@ speed_topbottom = 80 speed_travel = 140 speed_wall = 40 speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1.1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30ultra_fast.inst.cfg b/resources/quality/volumic/stream30ultra_fast.inst.cfg index 8d65a81c9c..15e025f4ff 100644 --- a/resources/quality/volumic/stream30ultra_fast.inst.cfg +++ b/resources/quality/volumic/stream30ultra_fast.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Medium definition = stream30ultra +name = Medium +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -3 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.15 -top_bottom_thickness = 1.05 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 100 speed_layer_0 = 40 speed_print = 100 @@ -23,4 +20,8 @@ speed_topbottom = 80 speed_travel = 140 speed_wall = 40 speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1.05 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30ultra_high.inst.cfg b/resources/quality/volumic/stream30ultra_high.inst.cfg index 330b7aba80..b183ec6665 100644 --- a/resources/quality/volumic/stream30ultra_high.inst.cfg +++ b/resources/quality/volumic/stream30ultra_high.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Very high definition = stream30ultra +name = Very high +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = -5 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = -5 [values] layer_height = 0.05 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 100 speed_layer_0 = 40 speed_print = 100 @@ -23,4 +20,8 @@ speed_topbottom = 80 speed_travel = 140 speed_wall = 40 speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30ultra_normal.inst.cfg b/resources/quality/volumic/stream30ultra_normal.inst.cfg index 41d66a8db8..4db17e0066 100644 --- a/resources/quality/volumic/stream30ultra_normal.inst.cfg +++ b/resources/quality/volumic/stream30ultra_normal.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = High definition = stream30ultra +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -4 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.1 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 100 speed_layer_0 = 40 speed_print = 100 @@ -23,4 +20,8 @@ speed_topbottom = 80 speed_travel = 140 speed_wall = 40 speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg index f6586f2197..c3ca990cb2 100644 --- a/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg @@ -1,26 +1,27 @@ -[general] -version = 4 -name = Low -definition = stream30ultrasc2 - -[metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -1 -global_quality = True - -[values] -layer_height = 0.250 -top_bottom_thickness = 1 -wall_thickness = 1.2 -line_width = 0.4 -travel_avoid_distance = 1 -speed_infill = 100 -speed_layer_0 = 40 -speed_print = 100 -speed_topbottom = 80 -speed_travel = 140 -speed_wall = 40 -speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +[general] +definition = stream30ultrasc2 +name = Low +version = 4 + +[metadata] +global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -1 + +[values] +layer_height = 0.250 +line_width = 0.4 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg b/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg index ea9e86cf26..49b593c8a4 100644 --- a/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg @@ -1,26 +1,27 @@ -[general] -version = 4 -name = Standard -definition = stream30ultrasc2 - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 -global_quality = True - -[values] -layer_height = 0.2 -top_bottom_thickness = 1 -wall_thickness = 1.2 -line_width = 0.4 -travel_avoid_distance = 1 -speed_infill = 100 -speed_layer_0 = 40 -speed_print = 100 -speed_topbottom = 80 -speed_travel = 140 -speed_wall = 40 -speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +[general] +definition = stream30ultrasc2 +name = Standard +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 + +[values] +layer_height = 0.2 +line_width = 0.4 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg index 37d9d5fed6..72e5a4f16f 100644 --- a/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg @@ -1,26 +1,27 @@ -[general] -version = 4 -name = Very low -definition = stream30ultrasc2 - -[metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 0 -global_quality = True - -[values] -layer_height = 0.3 -top_bottom_thickness = 1.1 -wall_thickness = 1.2 -line_width = 0.4 -travel_avoid_distance = 1 -speed_infill = 100 -speed_layer_0 = 40 -speed_print = 100 -speed_topbottom = 80 -speed_travel = 140 -speed_wall = 40 -speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +[general] +definition = stream30ultrasc2 +name = Very low +version = 4 + +[metadata] +global_quality = True +quality_type = extra coarse +setting_version = 22 +type = quality +weight = 0 + +[values] +layer_height = 0.3 +line_width = 0.4 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 +top_bottom_thickness = 1.1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg b/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg index 24529efb8b..56a6998bc2 100644 --- a/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg @@ -1,26 +1,27 @@ -[general] -version = 4 -name = Medium -definition = stream30ultrasc2 - -[metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -3 -global_quality = True - -[values] -layer_height = 0.15 -top_bottom_thickness = 1.05 -wall_thickness = 1.2 -line_width = 0.4 -travel_avoid_distance = 1 -speed_infill = 100 -speed_layer_0 = 40 -speed_print = 100 -speed_topbottom = 80 -speed_travel = 140 -speed_wall = 40 -speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +[general] +definition = stream30ultrasc2 +name = Medium +version = 4 + +[metadata] +global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -3 + +[values] +layer_height = 0.15 +line_width = 0.4 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 +top_bottom_thickness = 1.05 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30ultrasc2_high.inst.cfg b/resources/quality/volumic/stream30ultrasc2_high.inst.cfg index 3898524647..94f01b46d9 100644 --- a/resources/quality/volumic/stream30ultrasc2_high.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_high.inst.cfg @@ -1,26 +1,27 @@ -[general] -version = 4 -name = Very high -definition = stream30ultrasc2 - -[metadata] -setting_version = 20 -type = quality -quality_type = high -weight = -5 -global_quality = True - -[values] -layer_height = 0.05 -top_bottom_thickness = 1 -wall_thickness = 1.2 -line_width = 0.4 -travel_avoid_distance = 1 -speed_infill = 100 -speed_layer_0 = 40 -speed_print = 100 -speed_topbottom = 80 -speed_travel = 140 -speed_wall = 40 -speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +[general] +definition = stream30ultrasc2 +name = Very high +version = 4 + +[metadata] +global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = -5 + +[values] +layer_height = 0.05 +line_width = 0.4 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg b/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg index d680bf8e0f..7284277d18 100644 --- a/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg @@ -1,26 +1,27 @@ -[general] -version = 4 -name = High -definition = stream30ultrasc2 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -4 -global_quality = True - -[values] -layer_height = 0.1 -top_bottom_thickness = 1 -wall_thickness = 1.2 -line_width = 0.4 -travel_avoid_distance = 1 -speed_infill = 100 -speed_layer_0 = 40 -speed_print = 100 -speed_topbottom = 80 -speed_travel = 140 -speed_wall = 40 -speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +[general] +definition = stream30ultrasc2 +name = High +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -4 + +[values] +layer_height = 0.1 +line_width = 0.4 +speed_infill = 100 +speed_layer_0 = 40 +speed_print = 100 +speed_topbottom = 80 +speed_travel = 140 +speed_wall = 40 +speed_wall_0 = 40 +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg index 0ff20a2879..616e45f935 100644 --- a/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Low definition = stream30ultrasc +name = Low +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -1 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.250 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 100 speed_layer_0 = 40 speed_print = 100 @@ -23,4 +20,8 @@ speed_topbottom = 80 speed_travel = 140 speed_wall = 40 speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30ultrasc_draft.inst.cfg b/resources/quality/volumic/stream30ultrasc_draft.inst.cfg index 4ffa18507d..d77fec91e2 100644 --- a/resources/quality/volumic/stream30ultrasc_draft.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_draft.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Standard definition = stream30ultrasc +name = Standard +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] layer_height = 0.2 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 100 speed_layer_0 = 40 speed_print = 100 @@ -23,4 +20,8 @@ speed_topbottom = 80 speed_travel = 140 speed_wall = 40 speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg index 467dfef316..27a0a8556c 100644 --- a/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Very low definition = stream30ultrasc +name = Very low +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 0 global_quality = True +quality_type = extra coarse +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.3 -top_bottom_thickness = 1.1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 100 speed_layer_0 = 40 speed_print = 100 @@ -23,4 +20,8 @@ speed_topbottom = 80 speed_travel = 140 speed_wall = 40 speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1.1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30ultrasc_fast.inst.cfg b/resources/quality/volumic/stream30ultrasc_fast.inst.cfg index d56c5f841c..d399f7a972 100644 --- a/resources/quality/volumic/stream30ultrasc_fast.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_fast.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Medium definition = stream30ultrasc +name = Medium +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = -3 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.15 -top_bottom_thickness = 1.05 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 100 speed_layer_0 = 40 speed_print = 100 @@ -23,4 +20,8 @@ speed_topbottom = 80 speed_travel = 140 speed_wall = 40 speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1.05 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30ultrasc_high.inst.cfg b/resources/quality/volumic/stream30ultrasc_high.inst.cfg index 031f32fbdd..6fc17a0c07 100644 --- a/resources/quality/volumic/stream30ultrasc_high.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_high.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = Very high definition = stream30ultrasc +name = Very high +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = high -weight = -5 global_quality = True +quality_type = high +setting_version = 22 +type = quality +weight = -5 [values] layer_height = 0.05 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 100 speed_layer_0 = 40 speed_print = 100 @@ -23,4 +20,8 @@ speed_topbottom = 80 speed_travel = 140 speed_wall = 40 speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/volumic/stream30ultrasc_normal.inst.cfg b/resources/quality/volumic/stream30ultrasc_normal.inst.cfg index 15f9cfdb7a..032c6787f6 100644 --- a/resources/quality/volumic/stream30ultrasc_normal.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_normal.inst.cfg @@ -1,21 +1,18 @@ [general] -version = 4 -name = High definition = stream30ultrasc +name = High +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -4 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.1 -top_bottom_thickness = 1 -wall_thickness = 1.2 line_width = 0.4 -travel_avoid_distance = 1 speed_infill = 100 speed_layer_0 = 40 speed_print = 100 @@ -23,4 +20,8 @@ speed_topbottom = 80 speed_travel = 140 speed_wall = 40 speed_wall_0 = 40 -speed_wall_x = 60 \ No newline at end of file +speed_wall_x = 60 +top_bottom_thickness = 1 +travel_avoid_distance = 1 +wall_thickness = 1.2 + diff --git a/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg b/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg index fa8fa697cc..d1c3338e9e 100644 --- a/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast global_quality = True +quality_type = extrafast +setting_version = 22 +type = quality [values] layer_height = 0.3 diff --git a/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg b/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg index ff2a3a49cc..eaa1ab94a9 100644 --- a/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fine definition = voron2_base +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafine global_quality = True +quality_type = extrafine +setting_version = 22 +type = quality [values] layer_height = 0.06 diff --git a/resources/quality/voron2/voron2_global_fast_quality.inst.cfg b/resources/quality/voron2/voron2_global_fast_quality.inst.cfg index f873a2a2fa..68d875074a 100644 --- a/resources/quality/voron2/voron2_global_fast_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_fast_quality.inst.cfg @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast global_quality = True +quality_type = fast +setting_version = 22 +type = quality [values] layer_height = 0.2 diff --git a/resources/quality/voron2/voron2_global_fine_quality.inst.cfg b/resources/quality/voron2/voron2_global_fine_quality.inst.cfg index f261822a1d..28f798ac3c 100644 --- a/resources/quality/voron2/voron2_global_fine_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_fine_quality.inst.cfg @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine definition = voron2_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine global_quality = True +quality_type = fine +setting_version = 22 +type = quality [values] layer_height = 0.1 diff --git a/resources/quality/voron2/voron2_global_normal_quality.inst.cfg b/resources/quality/voron2/voron2_global_normal_quality.inst.cfg index 1441fc6129..4da5a189bc 100644 --- a/resources/quality/voron2/voron2_global_normal_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_normal_quality.inst.cfg @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal global_quality = True +quality_type = normal +setting_version = 22 +type = quality [values] layer_height = 0.15 diff --git a/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg index 2f1ebd08b6..601f2e7938 100644 --- a/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint global_quality = True +quality_type = sprint +setting_version = 22 +type = quality [values] layer_height = 0.4 diff --git a/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg index 6238363e2a..73c001a0c0 100644 --- a/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Sprint definition = voron2_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint global_quality = True +quality_type = supersprint +setting_version = 22 +type = quality [values] layer_height = 0.5 diff --git a/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg index 72dd547a25..f0e8f84207 100644 --- a/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg @@ -1,13 +1,13 @@ [general] -version = 4 -name = Ultra Sprint definition = voron2_base +name = Ultra Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultrasprint global_quality = True +quality_type = ultrasprint +setting_version = 22 +type = quality [values] layer_height = 0.6 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 54bc61204a..807fe41ed8 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Extra Fine definition = voron2_base +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafine material = generic_abs +quality_type = extrafine +setting_version = 22 +type = quality variant = V6 0.25mm [values] speed_print = 300 + 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 2ba5358b52..cb536784b9 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_abs +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.25mm [values] 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 377a8e172e..34b45927ef 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine definition = voron2_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_abs +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.25mm [values] 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 da2e6bcbb9..ff77c263f5 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.25mm [values] 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 add63fe194..d239904200 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Extra Fine definition = voron2_base +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafine material = generic_nylon +quality_type = extrafine +setting_version = 22 +type = quality variant = V6 0.25mm [values] speed_print = 300 + 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 8450279109..f12c40aff3 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_nylon +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.25mm [values] 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 718926500b..6bc2d68be4 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine definition = voron2_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_nylon +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.25mm [values] 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 93563b3cc5..6a0a63e7c8 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_nylon +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.25mm [values] 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 e88bd12d86..8518310a7e 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Extra Fine definition = voron2_base +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafine material = generic_pc +quality_type = extrafine +setting_version = 22 +type = quality variant = V6 0.25mm [values] speed_print = 300 + 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 61e7f3414d..640856b1a3 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_pc +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.25mm [values] 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 f552755692..705d06eae4 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine definition = voron2_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_pc +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.25mm [values] 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 fcdd2c70e5..de7bdeb500 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pc +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.25mm [values] 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 4da4cf9bc3..a11e4262d0 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Extra Fine definition = voron2_base +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafine material = generic_petg +quality_type = extrafine +setting_version = 22 +type = quality variant = V6 0.25mm [values] speed_print = 300 + 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 62473d6348..491d0834c9 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_petg +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.25mm [values] 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 2587c9dd2d..9bdf9f755b 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine definition = voron2_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_petg +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.25mm [values] 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 297d04a3b0..ad3591ebad 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.25mm [values] 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 fbb8fd2268..4f10836289 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Extra Fine definition = voron2_base +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafine material = generic_pla +quality_type = extrafine +setting_version = 22 +type = quality variant = V6 0.25mm [values] speed_print = 300 + 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 404f3682e0..8f13a10f46 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_pla +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.25mm [values] 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 1ef5ff5651..f7f934ebae 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine definition = voron2_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_pla +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.25mm [values] 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 47972a417c..7611969448 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.25mm [values] 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 1997fc9f6c..77cfd3a2cb 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fine definition = voron2_base +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafine material = generic_abs +quality_type = extrafine +setting_version = 22 +type = quality variant = V6 0.30mm [values] 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 10abf9d278..14147f9d2a 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_abs +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.30mm [values] 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 1d0beca9c5..08db73af24 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine definition = voron2_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_abs +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.30mm [values] 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 f0158ac0bf..a23bf4a3b7 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.30mm [values] 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 43dd7d7ae0..38fb11d419 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fine definition = voron2_base +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafine material = generic_nylon +quality_type = extrafine +setting_version = 22 +type = quality variant = V6 0.30mm [values] 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 b92d1e1813..33fd3dac2f 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_nylon +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.30mm [values] 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 b794161566..24c351401d 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine definition = voron2_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_nylon +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.30mm [values] 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 0d8c896d63..406ce90e29 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_nylon +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.30mm [values] 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 1e111b3583..61e1ec3a7e 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fine definition = voron2_base +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafine material = generic_pc +quality_type = extrafine +setting_version = 22 +type = quality variant = V6 0.30mm [values] 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 f3460cddd5..030fabf15f 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_pc +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.30mm [values] 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 38caee8b40..2224d795bf 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine definition = voron2_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_pc +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.30mm [values] 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 bd39c08fc4..3d9349daa0 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pc +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.30mm [values] 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 87499d87c0..8e2a03761c 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fine definition = voron2_base +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafine material = generic_petg +quality_type = extrafine +setting_version = 22 +type = quality variant = V6 0.30mm [values] 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 ff5ef6051c..9dd178f0f3 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_petg +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.30mm [values] 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 ca572e1f0e..fcf74f3a4c 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine definition = voron2_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_petg +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.30mm [values] 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 d17a5e2753..20ff970fc6 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.30mm [values] 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 75f3c95e87..b3795a3ef5 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fine definition = voron2_base +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafine material = generic_pla +quality_type = extrafine +setting_version = 22 +type = quality variant = V6 0.30mm [values] 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 3e54c4bf1d..965d900bbb 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_pla +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.30mm [values] 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 d01f87561b..65aa7f0343 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine definition = voron2_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_pla +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.30mm [values] 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 438ab19e75..2a57475a78 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.30mm [values] 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 f83acb0af0..7846447eb7 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_abs +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.35mm [values] 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 b943b0fbe9..015a9c9aae 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine definition = voron2_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_abs +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.35mm [values] 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 dd6cb8ba65..87389e8e22 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.35mm [values] 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 1345d29c66..2516c35941 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_nylon +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.35mm [values] 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 141c25a2a0..03c36126e3 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine definition = voron2_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_nylon +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.35mm [values] 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 8039fc0c64..755376e626 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_nylon +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.35mm [values] 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 7d160463df..0852b1bf54 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_pc +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.35mm [values] 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 b23a053d23..268ba62a65 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine definition = voron2_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_pc +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.35mm [values] 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 368df77d69..51b4afc60a 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pc +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.35mm [values] 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 fe038df871..1f08c7bc50 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_petg +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.35mm [values] 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 ad01b6349c..facfc8056c 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine definition = voron2_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_petg +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.35mm [values] 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 728a8c283a..6661209790 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.35mm [values] 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 79aa3ea2d0..c60ceef721 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_pla +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.35mm [values] 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 4b32102019..0881d6ab96 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine definition = voron2_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_pla +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.35mm [values] 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 b7cdd86be3..6bf236e0f9 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.35mm [values] 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 45cea30d4b..2db034efeb 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_abs +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.40mm [values] 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 f8c9c2aee0..109f47e2ed 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_abs +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.40mm [values] 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 b4751632b4..d2c90a076d 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine definition = voron2_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_abs +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.40mm [values] 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 5672bb90bd..190acad43c 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.40mm [values] 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 3febbe8bbc..d5aa229407 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_nylon +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.40mm [values] 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 32cdd99202..5b36de7fbf 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_nylon +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.40mm [values] 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 4f8fa06e94..191c3b638a 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine definition = voron2_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_nylon +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.40mm [values] 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 a22bd23d0b..29c8875cea 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_nylon +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.40mm [values] 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 2a33d9ed39..62f9aa7c61 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_pc +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.40mm [values] 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 291bbea2b9..8527ebc5e0 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_pc +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.40mm [values] 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 94a864b051..de2688f502 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine definition = voron2_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_pc +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.40mm [values] 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 44234382be..2c310f8cdf 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pc +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.40mm [values] 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 e708523632..7823e91054 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_petg +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.40mm [values] 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 37b2482c15..72395f4992 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_petg +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.40mm [values] 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 7b6cca1784..f89dd4482d 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine definition = voron2_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_petg +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.40mm [values] 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 2876df2fad..e39dc24194 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.40mm [values] 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 7aeb059723..bc279381b5 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_pla +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.40mm [values] 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 d8ebfb27c9..d2bda88545 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_pla +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.40mm [values] 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 cc8aedbd9e..812bb23383 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fine definition = voron2_base +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = generic_pla +quality_type = fine +setting_version = 22 +type = quality variant = V6 0.40mm [values] 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 344b83442b..a0225cdf3c 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.40mm [values] 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 cc72ef9e56..32dcd984dc 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_abs +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.50mm [values] 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 dce6716da4..6c6030bfb3 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_abs +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.50mm [values] 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 c6986089ba..360ce976f6 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.50mm [values] 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 9200f4f418..27d1008e36 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_abs +quality_type = sprint +setting_version = 22 +type = quality variant = V6 0.50mm [values] 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 c505f6f1eb..4c6105e2fc 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_nylon +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.50mm [values] 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 e8e465cfca..78fb176a6e 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_nylon +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.50mm [values] 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 7f6954e7aa..c6d8677655 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_nylon +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.50mm [values] 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 716790277c..13dfcbabd3 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_nylon +quality_type = sprint +setting_version = 22 +type = quality variant = V6 0.50mm [values] 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 a291a8c639..1427d8af11 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_pc +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.50mm [values] 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 d7bb176b5f..7dd17ae462 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_pc +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.50mm [values] 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 06a419b385..5aaee843ca 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pc +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.50mm [values] 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 147f6647b1..3d0aa8c716 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_pc +quality_type = sprint +setting_version = 22 +type = quality variant = V6 0.50mm [values] 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 249a083926..848aaa56f8 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_petg +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.50mm [values] 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 075ddffc75..8146bf1668 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_petg +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.50mm [values] 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 7d56fab9b1..946e15b3c7 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.50mm [values] 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 8c3166015b..6f05dbb9aa 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_petg +quality_type = sprint +setting_version = 22 +type = quality variant = V6 0.50mm [values] 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 bdaa3ac7b5..9596c888d5 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_pla +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.50mm [values] 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 c39ed9e7b8..578b7f4f12 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_pla +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.50mm [values] 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 bc67de8c55..0f9fdcdf29 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = V6 0.50mm [values] 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 e4cdd12f50..09b6be0fb0 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_pla +quality_type = sprint +setting_version = 22 +type = quality variant = V6 0.50mm [values] 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 28f6423759..d091e8eb3e 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_abs +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.60mm [values] 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 6ca1623138..ff5838849a 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_abs +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.60mm [values] 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 63b443999b..d7c7a7da08 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_abs +quality_type = sprint +setting_version = 22 +type = quality variant = V6 0.60mm [values] 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 8ddd2e7950..bc86295891 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_nylon +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.60mm [values] 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 766a32f72d..7c7beb32fa 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_nylon +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.60mm [values] 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 bee752d22f..627f90a972 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_nylon +quality_type = sprint +setting_version = 22 +type = quality variant = V6 0.60mm [values] 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 818676283a..5343ff9dba 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_pc +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.60mm [values] 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 8b06ab8d13..10644c60d9 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_pc +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.60mm [values] 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 41783c365c..8cc8f02d7b 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_pc +quality_type = sprint +setting_version = 22 +type = quality variant = V6 0.60mm [values] 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 476945f98d..1e212ae713 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_petg +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.60mm [values] 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 ab9adb5cce..998805303c 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_petg +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.60mm [values] 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 77afe937e6..f07e9a9313 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_petg +quality_type = sprint +setting_version = 22 +type = quality variant = V6 0.60mm [values] 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 d091676141..ad505c9243 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_pla +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.60mm [values] 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 25bbf43a31..66c5fa28bb 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_pla +quality_type = fast +setting_version = 22 +type = quality variant = V6 0.60mm [values] 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 e06deae44a..63721b8a69 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_pla +quality_type = sprint +setting_version = 22 +type = quality variant = V6 0.60mm [values] 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 cf55cbbd2f..75c1416018 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_abs +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.80mm [values] 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 226a615d80..d1c87bb9b4 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_abs +quality_type = sprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] 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 d8e87ea6c7..fbc56b53e0 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Sprint definition = voron2_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_abs +quality_type = supersprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] 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 bae0fa7091..742d00a38c 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_nylon +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.80mm [values] 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 8571daecd4..842d4baa79 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_nylon +quality_type = sprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] 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 f82ce951f1..503edd35ff 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Sprint definition = voron2_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_nylon +quality_type = supersprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] 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 f9c38db792..6e6d9d17cc 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_pc +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.80mm [values] 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 9a63a1f5d5..52984fb095 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_pc +quality_type = sprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] 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 e2f91c96bc..9d2e267a30 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Sprint definition = voron2_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_pc +quality_type = supersprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] 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 51f7b84f17..896f8af639 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_petg +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.80mm [values] 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 f1012f0931..27ffdc10ca 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_petg +quality_type = sprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] 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 347df078c7..103912cd5c 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Sprint definition = voron2_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_petg +quality_type = supersprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] 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 c46398712a..0dff83cd4b 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_pla +quality_type = extrafast +setting_version = 22 +type = quality variant = V6 0.80mm [values] 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 25adc282ca..936f9c75c7 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_pla +quality_type = sprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] 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 b772a7d385..24800eb333 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Sprint definition = voron2_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_pla +quality_type = supersprint +setting_version = 22 +type = quality variant = V6 0.80mm [values] 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 6c282dfe80..97c0b3263c 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_abs +quality_type = extrafast +setting_version = 22 +type = quality variant = Volcano 0.40mm [values] 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 cdf294b3cf..74119f1824 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_abs +quality_type = fast +setting_version = 22 +type = quality variant = Volcano 0.40mm [values] 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 edf099b54e..5f7eedb9d7 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_abs +quality_type = normal +setting_version = 22 +type = quality variant = Volcano 0.40mm [values] 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 9a7c64fe76..d29432fa70 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_nylon +quality_type = extrafast +setting_version = 22 +type = quality variant = Volcano 0.40mm [values] 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 402285d965..9b8d157d5e 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_nylon +quality_type = fast +setting_version = 22 +type = quality variant = Volcano 0.40mm [values] 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 290273cf7a..a96a6d6c3f 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_nylon +quality_type = normal +setting_version = 22 +type = quality variant = Volcano 0.40mm [values] 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 72dceec9b6..4bec6f3a53 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_pc +quality_type = extrafast +setting_version = 22 +type = quality variant = Volcano 0.40mm [values] 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 bad8822fb1..a918a9e517 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_pc +quality_type = fast +setting_version = 22 +type = quality variant = Volcano 0.40mm [values] 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 403008ccfc..9f61ac52cc 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pc +quality_type = normal +setting_version = 22 +type = quality variant = Volcano 0.40mm [values] 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 f3678b1383..e1428ab8d5 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_petg +quality_type = extrafast +setting_version = 22 +type = quality variant = Volcano 0.40mm [values] 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 586dbef5f8..eb69a3af6c 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_petg +quality_type = fast +setting_version = 22 +type = quality variant = Volcano 0.40mm [values] 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 9d0222479a..33f27cd0da 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_petg +quality_type = normal +setting_version = 22 +type = quality variant = Volcano 0.40mm [values] 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 ea772b8572..b2e08fe899 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_pla +quality_type = extrafast +setting_version = 22 +type = quality variant = Volcano 0.40mm [values] 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 dc2e2b6820..5b1991be04 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_pla +quality_type = fast +setting_version = 22 +type = quality variant = Volcano 0.40mm [values] 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 b370c748af..9c9d57f0f7 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Normal definition = voron2_base +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal material = generic_pla +quality_type = normal +setting_version = 22 +type = quality variant = Volcano 0.40mm [values] 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 ecaaf8407a..270869fced 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_abs +quality_type = extrafast +setting_version = 22 +type = quality variant = Volcano 0.60mm [values] 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 c5f28602d3..ba14bb25fc 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_abs +quality_type = fast +setting_version = 22 +type = quality variant = Volcano 0.60mm [values] 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 eacc496297..d06264cb28 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_abs +quality_type = sprint +setting_version = 22 +type = quality variant = Volcano 0.60mm [values] 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 78ba037a5e..589c88ffd8 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_nylon +quality_type = extrafast +setting_version = 22 +type = quality variant = Volcano 0.60mm [values] 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 fe9dbe4496..f38c2900c1 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_nylon +quality_type = fast +setting_version = 22 +type = quality variant = Volcano 0.60mm [values] 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 21213622cd..c72942f9b1 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_nylon +quality_type = sprint +setting_version = 22 +type = quality variant = Volcano 0.60mm [values] 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 4c8b7441ce..ded1dea38a 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_pc +quality_type = extrafast +setting_version = 22 +type = quality variant = Volcano 0.60mm [values] 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 91c154102b..7cb82763e2 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_pc +quality_type = fast +setting_version = 22 +type = quality variant = Volcano 0.60mm [values] 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 1c8ebda507..a90951179c 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_pc +quality_type = sprint +setting_version = 22 +type = quality variant = Volcano 0.60mm [values] 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 c0ae3cb57d..abf3f6ae2b 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_petg +quality_type = extrafast +setting_version = 22 +type = quality variant = Volcano 0.60mm [values] 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 0cdf3982a5..5d08831931 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_petg +quality_type = fast +setting_version = 22 +type = quality variant = Volcano 0.60mm [values] 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 bbb640b8fe..2e5f186d3d 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_petg +quality_type = sprint +setting_version = 22 +type = quality variant = Volcano 0.60mm [values] 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 a9cb7ab432..12768f239e 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_pla +quality_type = extrafast +setting_version = 22 +type = quality variant = Volcano 0.60mm [values] 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 1eedd2852d..4d32ef9a48 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Fast definition = voron2_base +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast material = generic_pla +quality_type = fast +setting_version = 22 +type = quality variant = Volcano 0.60mm [values] 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 a1a2cba822..ce434aba61 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_pla +quality_type = sprint +setting_version = 22 +type = quality variant = Volcano 0.60mm [values] 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 a54c8838a5..0bdb6f9bf1 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_abs +quality_type = extrafast +setting_version = 22 +type = quality variant = Volcano 0.80mm [values] 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 6077096e70..59dc9ea4df 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_abs +quality_type = sprint +setting_version = 22 +type = quality variant = Volcano 0.80mm [values] 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 8ecb7fe418..f63011cd56 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Sprint definition = voron2_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_abs +quality_type = supersprint +setting_version = 22 +type = quality variant = Volcano 0.80mm [values] 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 28a9bc13ee..815c69c8b4 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_nylon +quality_type = extrafast +setting_version = 22 +type = quality variant = Volcano 0.80mm [values] 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 a80a1e67f0..6bdc89730c 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_nylon +quality_type = sprint +setting_version = 22 +type = quality variant = Volcano 0.80mm [values] 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 8b6219c0f2..4d7bff8c56 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Sprint definition = voron2_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_nylon +quality_type = supersprint +setting_version = 22 +type = quality variant = Volcano 0.80mm [values] 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 7d93999ed5..4c4d326974 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_pc +quality_type = extrafast +setting_version = 22 +type = quality variant = Volcano 0.80mm [values] 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 f219ca753a..7eb9b2989e 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_pc +quality_type = sprint +setting_version = 22 +type = quality variant = Volcano 0.80mm [values] 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 ba67f4abc5..97c00b70ca 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Sprint definition = voron2_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_pc +quality_type = supersprint +setting_version = 22 +type = quality variant = Volcano 0.80mm [values] 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 25bba48c74..78b15e3173 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_petg +quality_type = extrafast +setting_version = 22 +type = quality variant = Volcano 0.80mm [values] 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 00b096684f..fa489ea005 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_petg +quality_type = sprint +setting_version = 22 +type = quality variant = Volcano 0.80mm [values] 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 dfccf16612..c4cb559bce 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Sprint definition = voron2_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_petg +quality_type = supersprint +setting_version = 22 +type = quality variant = Volcano 0.80mm [values] 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 d651d54a22..2279251ee4 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Extra Fast definition = voron2_base +name = Extra Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extrafast material = generic_pla +quality_type = extrafast +setting_version = 22 +type = quality variant = Volcano 0.80mm [values] 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 1bd3084343..7df50dba1e 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_pla +quality_type = sprint +setting_version = 22 +type = quality variant = Volcano 0.80mm [values] 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 2631bdb0b6..6252c23a19 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Sprint definition = voron2_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_pla +quality_type = supersprint +setting_version = 22 +type = quality variant = Volcano 0.80mm [values] 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 913c2bb117..98f1612255 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_abs +quality_type = sprint +setting_version = 22 +type = quality variant = Volcano 1.00mm [values] 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 4d8b5bca42..97a24a3640 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Sprint definition = voron2_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_abs +quality_type = supersprint +setting_version = 22 +type = quality variant = Volcano 1.00mm [values] 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 11376dfb61..42cc3edab9 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Ultra Sprint definition = voron2_base +name = Ultra Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultrasprint material = generic_abs +quality_type = ultrasprint +setting_version = 22 +type = quality variant = Volcano 1.00mm [values] 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 b0e4e38442..a810800993 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_nylon +quality_type = sprint +setting_version = 22 +type = quality variant = Volcano 1.00mm [values] 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 ec55bdc9e6..9b50336562 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Sprint definition = voron2_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_nylon +quality_type = supersprint +setting_version = 22 +type = quality variant = Volcano 1.00mm [values] 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 8c2c152ac6..244ffb5bb2 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Ultra Sprint definition = voron2_base +name = Ultra Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultrasprint material = generic_nylon +quality_type = ultrasprint +setting_version = 22 +type = quality variant = Volcano 1.00mm [values] 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 9b8d6cb34e..c0a352add0 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_pc +quality_type = sprint +setting_version = 22 +type = quality variant = Volcano 1.00mm [values] 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 eec96a71b5..bb04609e98 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Sprint definition = voron2_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_pc +quality_type = supersprint +setting_version = 22 +type = quality variant = Volcano 1.00mm [values] 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 3f7751bf15..e35937e03d 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Ultra Sprint definition = voron2_base +name = Ultra Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultrasprint material = generic_pc +quality_type = ultrasprint +setting_version = 22 +type = quality variant = Volcano 1.00mm [values] 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 d38499f1c4..958fe470a3 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_petg +quality_type = sprint +setting_version = 22 +type = quality variant = Volcano 1.00mm [values] 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 fb0a0923e0..2ed2fae3e0 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Sprint definition = voron2_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_petg +quality_type = supersprint +setting_version = 22 +type = quality variant = Volcano 1.00mm [values] 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 4c3df9b92e..ee39521367 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Ultra Sprint definition = voron2_base +name = Ultra Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultrasprint material = generic_petg +quality_type = ultrasprint +setting_version = 22 +type = quality variant = Volcano 1.00mm [values] 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 bb25fb6148..cf846204df 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_pla +quality_type = sprint +setting_version = 22 +type = quality variant = Volcano 1.00mm [values] 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 40729794bb..04d8828300 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Sprint definition = voron2_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_pla +quality_type = supersprint +setting_version = 22 +type = quality variant = Volcano 1.00mm [values] 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 6ba8485c48..2dfb7ca04f 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Ultra Sprint definition = voron2_base +name = Ultra Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultrasprint material = generic_pla +quality_type = ultrasprint +setting_version = 22 +type = quality variant = Volcano 1.00mm [values] 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 29b11ecaa9..f1314e9c86 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_abs +quality_type = sprint +setting_version = 22 +type = quality variant = Volcano 1.20mm [values] 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 ac005af7c8..df746eb506 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Sprint definition = voron2_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_abs +quality_type = supersprint +setting_version = 22 +type = quality variant = Volcano 1.20mm [values] 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 e445354c80..1cd7aab2a6 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Ultra Sprint definition = voron2_base +name = Ultra Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultrasprint material = generic_abs +quality_type = ultrasprint +setting_version = 22 +type = quality variant = Volcano 1.20mm [values] 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 9969ab06a8..257500c2f6 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_nylon +quality_type = sprint +setting_version = 22 +type = quality variant = Volcano 1.20mm [values] 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 3bbb15c972..24839241ba 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Sprint definition = voron2_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_nylon +quality_type = supersprint +setting_version = 22 +type = quality variant = Volcano 1.20mm [values] 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 fff73c8953..71985a2626 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Ultra Sprint definition = voron2_base +name = Ultra Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultrasprint material = generic_nylon +quality_type = ultrasprint +setting_version = 22 +type = quality variant = Volcano 1.20mm [values] 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 d38ca85d1c..9dd007e614 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_pc +quality_type = sprint +setting_version = 22 +type = quality variant = Volcano 1.20mm [values] 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 f1b6fb2972..de1061db4d 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Sprint definition = voron2_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_pc +quality_type = supersprint +setting_version = 22 +type = quality variant = Volcano 1.20mm [values] 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 879d3c40d8..5a71bd3907 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Ultra Sprint definition = voron2_base +name = Ultra Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultrasprint material = generic_pc +quality_type = ultrasprint +setting_version = 22 +type = quality variant = Volcano 1.20mm [values] 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 cc2171aaab..d622a799d8 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_petg +quality_type = sprint +setting_version = 22 +type = quality variant = Volcano 1.20mm [values] 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 243322f8d6..81f97d6cf5 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Sprint definition = voron2_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_petg +quality_type = supersprint +setting_version = 22 +type = quality variant = Volcano 1.20mm [values] 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 050d941410..a0bc875d44 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Ultra Sprint definition = voron2_base +name = Ultra Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultrasprint material = generic_petg +quality_type = ultrasprint +setting_version = 22 +type = quality variant = Volcano 1.20mm [values] 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 554088534a..78f3195510 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Sprint definition = voron2_base +name = Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = sprint material = generic_pla +quality_type = sprint +setting_version = 22 +type = quality variant = Volcano 1.20mm [values] 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 bffe80f8f2..9f13d92c4f 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Super Sprint definition = voron2_base +name = Super Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = supersprint material = generic_pla +quality_type = supersprint +setting_version = 22 +type = quality variant = Volcano 1.20mm [values] 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 002e636f7c..2363a6959c 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 @@ -1,13 +1,13 @@ [general] -version = 4 -name = Ultra Sprint definition = voron2_base +name = Ultra Sprint +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ultrasprint material = generic_pla +quality_type = ultrasprint +setting_version = 22 +type = quality variant = Volcano 1.20mm [values] 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 new file mode 100644 index 0000000000..c6a3459f5b --- /dev/null +++ b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..157f0fd96b --- /dev/null +++ b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Ultra Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..481982f2a5 --- /dev/null +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..faa8b622d9 --- /dev/null +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Low Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = low +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..fa7787df93 --- /dev/null +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..0bd3884a2a --- /dev/null +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..513f9e5463 --- /dev/null +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..e9843de1b1 --- /dev/null +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Low Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..f67a0585fe --- /dev/null +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..9645040b22 --- /dev/null +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..9abe239b62 --- /dev/null +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..caf5339cad --- /dev/null +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Low Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = low +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..eb2615ddd2 --- /dev/null +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..636f2d2082 --- /dev/null +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = super +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..5c3e44cc57 --- /dev/null +++ b/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..7b69963f1d --- /dev/null +++ b/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..1a168c407e --- /dev/null +++ b/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle + +[values] +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..3d0ea75ea1 --- /dev/null +++ b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_pc +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..eba20c612c --- /dev/null +++ b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Ultra Quality +version = 4 + +[metadata] +material = generic_pc +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..7c16b9590e --- /dev/null +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pc +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..93977a721c --- /dev/null +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Low Quality +version = 4 + +[metadata] +material = generic_pc +quality_type = low +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..7b32091f5a --- /dev/null +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_pc +quality_type = standard +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..a6c8e4be9f --- /dev/null +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_pc +quality_type = super +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..b2fdcafebb --- /dev/null +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pc +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..32f5d5ff4e --- /dev/null +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Low Quality +version = 4 + +[metadata] +material = generic_pc +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..35f7bb0f99 --- /dev/null +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_pc +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..d20ca864cb --- /dev/null +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_pc +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..29df29a057 --- /dev/null +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pc +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..85adae2042 --- /dev/null +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Low Quality +version = 4 + +[metadata] +material = generic_pc +quality_type = low +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..ff4079d017 --- /dev/null +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_pc +quality_type = standard +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..c4467c7f8d --- /dev/null +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_pc +quality_type = super +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..1bba36d296 --- /dev/null +++ b/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_pc +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..70f6abcb22 --- /dev/null +++ b/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_pc +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..41d14cdac8 --- /dev/null +++ b/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_pc +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle + +[values] +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..282bffcfea --- /dev/null +++ b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..0949481154 --- /dev/null +++ b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Ultra Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..83c8e71d6c --- /dev/null +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..702204591c --- /dev/null +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..b2dca805f0 --- /dev/null +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..2f169f2518 --- /dev/null +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..726f99974b --- /dev/null +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..8408f97681 --- /dev/null +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..c57fa9d382 --- /dev/null +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..3393cd1afa --- /dev/null +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..8f08657774 --- /dev/null +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..95b8935e7b --- /dev/null +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..0ec9bb591e --- /dev/null +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..91f3d3a84a --- /dev/null +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..29aaf7e614 --- /dev/null +++ b/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..d280ba1cf6 --- /dev/null +++ b/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..207b3163e8 --- /dev/null +++ b/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..1ba4de6a04 --- /dev/null +++ b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..a4dd03021a --- /dev/null +++ b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vzbot_base +name = Ultra Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..cc42c9ef48 --- /dev/null +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vzbot_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..76c087ccb9 --- /dev/null +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vzbot_base +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..db142e567e --- /dev/null +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..0c45d949b8 --- /dev/null +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..98fa114268 --- /dev/null +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vzbot_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..15ef5287af --- /dev/null +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vzbot_base +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..5ce8e6b81c --- /dev/null +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..7eb9b18677 --- /dev/null +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..24fc4af465 --- /dev/null +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vzbot_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..b5681cdd88 --- /dev/null +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vzbot_base +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..344ea57651 --- /dev/null +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..6a55514659 --- /dev/null +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..18a3243485 --- /dev/null +++ b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vzbot_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..d3fcb1f82d --- /dev/null +++ b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vzbot_base +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..94fd3fd2bc --- /dev/null +++ b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..f98cced508 --- /dev/null +++ b/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vzbot_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..7d00f47c36 --- /dev/null +++ b/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = vzbot_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle + +[values] + 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 new file mode 100644 index 0000000000..2f350f3b61 --- /dev/null +++ b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_pva +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..b5c4c463cf --- /dev/null +++ b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Ultra Quality +version = 4 + +[metadata] +material = generic_pva +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..2f645e79dc --- /dev/null +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pva +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..4944bce967 --- /dev/null +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Low Quality +version = 4 + +[metadata] +material = generic_pva +quality_type = low +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..dfd3eb975d --- /dev/null +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_pva +quality_type = standard +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..28dccd8ab2 --- /dev/null +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_pva +quality_type = super +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..98a378727a --- /dev/null +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pva +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..972f9a2973 --- /dev/null +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Low Quality +version = 4 + +[metadata] +material = generic_pva +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..d788a8af61 --- /dev/null +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_pva +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..2f0f04f932 --- /dev/null +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_pva +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..1d77ef1972 --- /dev/null +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pva +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..b3c474ce4b --- /dev/null +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Low Quality +version = 4 + +[metadata] +material = generic_pva +quality_type = low +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..596e6bb6cf --- /dev/null +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_pva +quality_type = standard +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..2cbc4e515d --- /dev/null +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_pva +quality_type = super +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..a6ec48458f --- /dev/null +++ b/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_pva +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..80ed31a013 --- /dev/null +++ b/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_pva +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..bf9adb95a3 --- /dev/null +++ b/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_pva +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle + +[values] +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..2e65982ad3 --- /dev/null +++ b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_enable = False +speed_print = 150 + 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 new file mode 100644 index 0000000000..5c3ccc2b7e --- /dev/null +++ b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_enable = False +speed_print = 150 + 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 new file mode 100644 index 0000000000..d6b86e06d9 --- /dev/null +++ b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = super +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +retraction_enable = False +speed_print = 150 + 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 new file mode 100644 index 0000000000..3fdb89ec10 --- /dev/null +++ b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_enable = False +speed_print = 150 + 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 new file mode 100644 index 0000000000..5b15f3c811 --- /dev/null +++ b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_enable = False +speed_print = 150 + 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 new file mode 100644 index 0000000000..d702b8715e --- /dev/null +++ b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +retraction_enable = False +speed_print = 150 + 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 new file mode 100644 index 0000000000..14f8adc388 --- /dev/null +++ b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_enable = False +speed_print = 150 + 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 new file mode 100644 index 0000000000..9e203f6ee7 --- /dev/null +++ b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_enable = False +speed_print = 150 + 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 new file mode 100644 index 0000000000..2cacc0f92a --- /dev/null +++ b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = super +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +retraction_enable = False +speed_print = 150 + 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 new file mode 100644 index 0000000000..7269be8ab3 --- /dev/null +++ b/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +retraction_enable = False +speed_print = 150 + 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 new file mode 100644 index 0000000000..ab2fab7a05 --- /dev/null +++ b/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +retraction_enable = False +speed_print = 150 + 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 new file mode 100644 index 0000000000..43b6b458c0 --- /dev/null +++ b/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = vzbot_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle + +[values] +retraction_enable = False +speed_print = 150 + 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 new file mode 100644 index 0000000000..5594dda9ef --- /dev/null +++ b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = super +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..17739b73b4 --- /dev/null +++ b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Ultra Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = ultra +setting_version = 22 +type = quality +variant = 0.2mm Nozzle + +[values] +wall_thickness = =line_width*8 + 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 new file mode 100644 index 0000000000..f9903d7b06 --- /dev/null +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..a40ab396ae --- /dev/null +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Low Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = low +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..029ef05aa9 --- /dev/null +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = standard +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..3803d78c52 --- /dev/null +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = super +setting_version = 22 +type = quality +variant = 0.3mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..6cc56eefdb --- /dev/null +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..b0f3554036 --- /dev/null +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Low Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = low +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..f0f37b095d --- /dev/null +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = standard +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..b5ea731a26 --- /dev/null +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = super +setting_version = 22 +type = quality +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..a1adffd027 --- /dev/null +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = adaptive +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..fb00ba2763 --- /dev/null +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Low Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = low +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..e3bfc434c9 --- /dev/null +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = standard +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..dff4884e7c --- /dev/null +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = super +setting_version = 22 +type = quality +variant = 0.5mm Nozzle + +[values] +wall_thickness = =line_width*4 + 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 new file mode 100644 index 0000000000..fa7f4c4385 --- /dev/null +++ b/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = standard +setting_version = 22 +type = quality +variant = 0.6mm Nozzle + +[values] +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..78ba0a7812 --- /dev/null +++ b/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = draft +setting_version = 22 +type = quality +variant = 0.8mm Nozzle + +[values] +wall_thickness = =line_width*3 + 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 new file mode 100644 index 0000000000..e6e2e3efa8 --- /dev/null +++ b/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = vzbot_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = draft +setting_version = 22 +type = quality +variant = 1.0mm Nozzle + +[values] +wall_thickness = =line_width*3 + diff --git a/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg b/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg new file mode 100644 index 0000000000..8ba6ac5449 --- /dev/null +++ b/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = vzbot_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 22 +type = quality +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.20 +support_interface_height = =layer_height*6 +top_bottom_thickness = =layer_height_0+layer_height*4 +wall_thickness = =line_width*3 + diff --git a/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg b/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg new file mode 100644 index 0000000000..26b763930a --- /dev/null +++ b/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = vzbot_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -5 + +[values] +layer_height = 0.32 +layer_height_0 = 0.32 +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/vzbot/base/vzbot_global_low.inst.cfg b/resources/quality/vzbot/base/vzbot_global_low.inst.cfg new file mode 100644 index 0000000000..c1ae5ab0d6 --- /dev/null +++ b/resources/quality/vzbot/base/vzbot_global_low.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = vzbot_base +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 22 +type = quality +weight = -4 + +[values] +layer_height = 0.28 +layer_height_0 = 0.28 +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg b/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg new file mode 100644 index 0000000000..9d13b93d59 --- /dev/null +++ b/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = vzbot_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = standard +setting_version = 22 +type = quality +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/vzbot/base/vzbot_global_super.inst.cfg b/resources/quality/vzbot/base/vzbot_global_super.inst.cfg new file mode 100644 index 0000000000..cfeeddae38 --- /dev/null +++ b/resources/quality/vzbot/base/vzbot_global_super.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = vzbot_base +name = Super Quality +version = 4 + +[metadata] +global_quality = True +quality_type = super +setting_version = 22 +type = quality +weight = -1 + +[values] +layer_height = 0.12 +layer_height_0 = 0.12 +support_interface_height = =layer_height*8 +top_bottom_thickness = =layer_height_0+layer_height*6 +wall_thickness = =line_width*3 + diff --git a/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg b/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg new file mode 100644 index 0000000000..bd8cee28bc --- /dev/null +++ b/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = vzbot_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 22 +type = quality +weight = 0 + +[values] +layer_height = 0.08 +layer_height_0 = 0.12 +support_interface_height = =layer_height*12 +top_bottom_thickness = =layer_height_0+layer_height*10 +wall_thickness = =line_width*3 + 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 988b9bbacb..60db4d8da2 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 @@ -1,27 +1,27 @@ [general] -version = 4 -name = Draft definition = weedo_x40 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 material = Extrudr_GreenTECPro_Black_175 +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle +weight = 0 [values] -speed_print = 60 layer_height_0 = =round(layer_height * 1.25, 2) -material_print_temperature_layer_0 = =material_print_temperature + 10 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 5 material_bed_temperature = =default_material_bed_temperature -material_bed_temperature_layer_0= =material_bed_temperature + 10 +material_bed_temperature_layer_0 = =material_bed_temperature + 10 +material_final_print_temperature = =material_print_temperature - 5 material_flow_layer_0 = =material_flow + 4 -skirt_brim_material_flow= =material_flow + 4 +material_initial_print_temperature = =material_print_temperature - 5 +material_print_temperature_layer_0 = =material_print_temperature + 10 material_standby_temperature = 100 -support_z_distance = 0.2 +skirt_brim_material_flow = =material_flow + 4 +speed_print = 60 support_xy_distance = 0.8 +support_z_distance = 0.2 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 cec8414864..1c2d66e5ac 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 @@ -1,26 +1,26 @@ [general] -version = 4 -name = Extra Fine definition = weedo_x40 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra fine -weight = 0 material = Extrudr_GreenTECPro_Black_175 +quality_type = extra fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle +weight = 0 [values] -speed_print = 30 -material_print_temperature_layer_0 = =material_print_temperature + 10 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 5 material_bed_temperature = =default_material_bed_temperature -material_bed_temperature_layer_0= =material_bed_temperature + 10 +material_bed_temperature_layer_0 = =material_bed_temperature + 10 +material_final_print_temperature = =material_print_temperature - 5 material_flow_layer_0 = =material_flow + 4 -skirt_brim_material_flow= =material_flow + 4 +material_initial_print_temperature = =material_print_temperature - 5 +material_print_temperature_layer_0 = =material_print_temperature + 10 material_standby_temperature = 100 -support_z_distance = 0.2 +skirt_brim_material_flow = =material_flow + 4 +speed_print = 30 support_xy_distance = 0.8 +support_z_distance = 0.2 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 8359062e11..29a2e29e49 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 @@ -1,26 +1,26 @@ [general] -version = 4 -name = Fine definition = weedo_x40 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = Extrudr_GreenTECPro_Black_175 +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle +weight = 0 [values] -speed_print = 40 -material_print_temperature_layer_0 = =material_print_temperature + 10 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 5 material_bed_temperature = =default_material_bed_temperature -material_bed_temperature_layer_0= =material_bed_temperature + 10 +material_bed_temperature_layer_0 = =material_bed_temperature + 10 +material_final_print_temperature = =material_print_temperature - 5 material_flow_layer_0 = =material_flow + 4 -skirt_brim_material_flow= =material_flow + 4 +material_initial_print_temperature = =material_print_temperature - 5 +material_print_temperature_layer_0 = =material_print_temperature + 10 material_standby_temperature = 100 -support_z_distance = 0.2 +skirt_brim_material_flow = =material_flow + 4 +speed_print = 40 support_xy_distance = 0.8 +support_z_distance = 0.2 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 f507065654..9fdab35990 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 @@ -1,42 +1,26 @@ [general] -version = 4 -name = Normal definition = weedo_x40 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = Extrudr_GreenTECPro_Black_175 +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle +weight = 0 [values] -speed_print = 50 -material_print_temperature_layer_0 = =material_print_temperature + 10 -material_initial_print_temperature = =material_print_temperature - 5 -material_final_print_temperature = =material_print_temperature - 5 material_bed_temperature = =default_material_bed_temperature -material_bed_temperature_layer_0= =material_bed_temperature + 10 +material_bed_temperature_layer_0 = =material_bed_temperature + 10 +material_final_print_temperature = =material_print_temperature - 5 material_flow_layer_0 = =material_flow + 4 -skirt_brim_material_flow= =material_flow + 4 +material_initial_print_temperature = =material_print_temperature - 5 +material_print_temperature_layer_0 = =material_print_temperature + 10 material_standby_temperature = 100 -support_z_distance = 0.2 +skirt_brim_material_flow = =material_flow + 4 +speed_print = 50 support_xy_distance = 0.8 - - - - - - - - - - - - - - - - +support_z_distance = 0.2 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 15542545f5..3c3ad46dd2 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 @@ -1,19 +1,19 @@ [general] -version = 4 -name = Draft definition = weedo_x40 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 material = verbatim_bvoh_175 +quality_type = draft +setting_version = 22 +type = quality variant = 0.4mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.25, 2) speed_print = 30 -support_z_distance = 0 support_xy_distance = 0.2 +support_z_distance = 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 1f386cef5e..3cf19e9bb5 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 @@ -1,18 +1,19 @@ [general] -version = 4 -name = Extra Fine definition = weedo_x40 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra fine -weight = 0 material = verbatim_bvoh_175 +quality_type = extra fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.5, 2) speed_print = 30 -support_z_distance = 0 support_xy_distance = 0.2 +support_z_distance = 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 2e067944ac..9fcb579495 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 @@ -1,18 +1,19 @@ [general] -version = 4 -name = Fine definition = weedo_x40 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = verbatim_bvoh_175 +quality_type = fine +setting_version = 22 +type = quality variant = 0.4mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.5, 2) speed_print = 30 -support_z_distance = 0 support_xy_distance = 0.2 +support_z_distance = 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 ae4bd81ca2..6abccb4456 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 @@ -1,18 +1,19 @@ [general] -version = 4 -name = Normal definition = weedo_x40 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = verbatim_bvoh_175 +quality_type = normal +setting_version = 22 +type = quality variant = 0.4mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.5, 2) speed_print = 30 -support_z_distance = 0 support_xy_distance = 0.2 +support_z_distance = 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 db94cb8022..8173539ea1 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 @@ -1,18 +1,19 @@ [general] -version = 4 -name = Draft definition = weedo_x40 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 0 material = verbatim_bvoh_175 +quality_type = coarse +setting_version = 22 +type = quality variant = 0.6mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.25, 2) speed_print = 30 -support_z_distance = 0 support_xy_distance = 0.2 +support_z_distance = 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 c6aa0d67e5..cebd7bdacb 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 @@ -1,18 +1,19 @@ [general] -version = 4 -name = Draft definition = weedo_x40 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 material = verbatim_bvoh_175 +quality_type = draft +setting_version = 22 +type = quality variant = 0.6mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.25, 2) speed_print = 30 -support_z_distance = 0 support_xy_distance = 0.2 +support_z_distance = 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 746524f862..83e3b111d5 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 @@ -1,18 +1,19 @@ [general] -version = 4 -name = Fine definition = weedo_x40 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = verbatim_bvoh_175 +quality_type = fine +setting_version = 22 +type = quality variant = 0.6mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.5, 2) speed_print = 30 -support_z_distance = 0 support_xy_distance = 0.2 +support_z_distance = 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 67c2d82eb7..907dc2b9cf 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 @@ -1,18 +1,19 @@ [general] -version = 4 -name = Normal definition = weedo_x40 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = verbatim_bvoh_175 +quality_type = normal +setting_version = 22 +type = quality variant = 0.6mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.5, 2) speed_print = 30 -support_z_distance = 0 support_xy_distance = 0.2 +support_z_distance = 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 05e0b77b26..bdf527a477 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 @@ -1,17 +1,17 @@ -[general] -version = 4 -name = Draft -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -1 -material = generic_abs_175 -variant = 0.4mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 60 - +[general] +definition = weedo_x40 +name = Draft +version = 4 + +[metadata] +material = generic_abs_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + 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 1d66f651b3..5bddc81ee1 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 @@ -1,16 +1,16 @@ -[general] -version = 4 -name = Extra Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = extra fine -weight = 1 -material = generic_abs_175 -variant = 0.4mm Nozzle - - -[values] -speed_print = 30 +[general] +definition = weedo_x40 +name = Extra Fine +version = 4 + +[metadata] +material = generic_abs_175 +quality_type = extra fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +speed_print = 30 + 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 924d1c4db9..c906dc8709 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 @@ -1,17 +1,16 @@ -[general] -version = 4 -name = Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 -material = generic_abs_175 -variant = 0.4mm Nozzle - - -[values] -speed_print = 35 - +[general] +definition = weedo_x40 +name = Fine +version = 4 + +[metadata] +material = generic_abs_175 +quality_type = fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 35 + 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 258fe641ee..631cf77259 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 @@ -1,17 +1,16 @@ -[general] -version = 4 -name = Normal -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_abs_175 -variant = 0.4mm Nozzle - -[values] -speed_print = 40 - - +[general] +definition = weedo_x40 +name = Normal +version = 4 + +[metadata] +material = generic_abs_175 +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 40 + 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 ab40d8c336..b8142f94b7 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 @@ -1,17 +1,17 @@ -[general] -version = 4 -name = Draft -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 -material = generic_asa_175 -variant = 0.4mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 60 - +[general] +definition = weedo_x40 +name = Draft +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + 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 10f0dfda19..a9909d525e 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 @@ -1,16 +1,16 @@ -[general] -version = 4 -name = Extra Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = extra fine -weight = 1 -material = generic_asa_175 -variant = 0.4mm Nozzle - - -[values] -speed_print = 30 +[general] +definition = weedo_x40 +name = Extra Fine +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = extra fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +speed_print = 30 + 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 1a06b16fc4..50e65d73a0 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 @@ -1,16 +1,16 @@ -[general] -version = 4 -name = Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 -material = generic_asa_175 -variant = 0.4mm Nozzle - - -[values] -speed_print = 35 +[general] +definition = weedo_x40 +name = Fine +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 35 + 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 9fc019b203..37e53fb8ee 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 @@ -1,16 +1,16 @@ -[general] -version = 4 -name = Normal -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_asa_175 -variant = 0.4mm Nozzle - -[values] -speed_print = 40 - +[general] +definition = weedo_x40 +name = Normal +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 40 + 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 f7bb4e49c7..a61293d3e7 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 @@ -1,21 +1,21 @@ -[general] -version = 4 -name = Draft -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 -material = generic_bvoh_175 -variant = 0.4mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 -support_brim_enable = True -support_interface_enable = True - +[general] +definition = weedo_x40 +name = Draft +version = 4 + +[metadata] +material = generic_bvoh_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 30 +support_brim_enable = True +support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 39166e900a..41df293410 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 @@ -1,20 +1,20 @@ -[general] -version = 4 -name = Extra Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = extra fine -weight = 0 -material = generic_bvoh_175 -variant = 0.4mm Nozzle - -[values] -speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 -support_brim_enable = True -support_interface_enable = True - +[general] +definition = weedo_x40 +name = Extra Fine +version = 4 + +[metadata] +material = generic_bvoh_175 +quality_type = extra fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 30 +support_brim_enable = True +support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 1464fe02d4..c88ec8a8ae 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 @@ -1,20 +1,20 @@ -[general] -version = 4 -name = Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 -material = generic_bvoh_175 -variant = 0.4mm Nozzle - -[values] -speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 -support_brim_enable = True -support_interface_enable = True - +[general] +definition = weedo_x40 +name = Fine +version = 4 + +[metadata] +material = generic_bvoh_175 +quality_type = fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 30 +support_brim_enable = True +support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 1dbe07e8a0..6e4fad4732 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 @@ -1,20 +1,20 @@ -[general] -version = 4 -name = Normal -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_bvoh_175 -variant = 0.4mm Nozzle - -[values] -speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 -support_brim_enable = True -support_interface_enable = True - +[general] +definition = weedo_x40 +name = Normal +version = 4 + +[metadata] +material = generic_bvoh_175 +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 30 +support_brim_enable = True +support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 c964cf9e19..611863084e 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 @@ -1,18 +1,17 @@ -[general] -version = 4 -name = Draft -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 -material = generic_cpe_175 -variant = 0.4mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 60 - - +[general] +definition = weedo_x40 +name = Draft +version = 4 + +[metadata] +material = generic_cpe_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + 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 3f3c0d4b0a..db76f97ead 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 @@ -1,17 +1,16 @@ -[general] -version = 4 -name = Extra Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = extra fine -weight = 1 -material = generic_cpe_175 -variant = 0.4mm Nozzle - - -[values] -speed_print = 30 - +[general] +definition = weedo_x40 +name = Extra Fine +version = 4 + +[metadata] +material = generic_cpe_175 +quality_type = extra fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +speed_print = 30 + 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 4e5669a4ba..46a410f048 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 @@ -1,16 +1,16 @@ -[general] -version = 4 -name = Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 -material = generic_cpe_175 -variant = 0.4mm Nozzle - - -[values] -speed_print = 35 +[general] +definition = weedo_x40 +name = Fine +version = 4 + +[metadata] +material = generic_cpe_175 +quality_type = fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 35 + 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 e60ceda27c..24f1bd07b5 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 @@ -1,17 +1,16 @@ -[general] -version = 4 -name = Normal -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_cpe_175 -variant = 0.4mm Nozzle - -[values] -speed_print = 40 - - +[general] +definition = weedo_x40 +name = Normal +version = 4 + +[metadata] +material = generic_cpe_175 +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 40 + 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 344cdf9111..924dd7033b 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 @@ -1,18 +1,17 @@ -[general] -version = 4 -name = Draft -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 -material = generic_hips_175 -variant = 0.4mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 60 - - +[general] +definition = weedo_x40 +name = Draft +version = 4 + +[metadata] +material = generic_hips_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + 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 bd65a7edaf..d417854443 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 @@ -1,16 +1,16 @@ -[general] -version = 4 -name = Extra Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = extra fine -weight = 1 -material = generic_hips_175 -variant = 0.4mm Nozzle - - -[values] -speed_print = 30 +[general] +definition = weedo_x40 +name = Extra Fine +version = 4 + +[metadata] +material = generic_hips_175 +quality_type = extra fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +speed_print = 30 + 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 8ad87675e7..a8b36663f4 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 @@ -1,17 +1,16 @@ -[general] -version = 4 -name = Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 -material = generic_hips_175 -variant = 0.4mm Nozzle - - -[values] -speed_print = 35 - +[general] +definition = weedo_x40 +name = Fine +version = 4 + +[metadata] +material = generic_hips_175 +quality_type = fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 35 + 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 e057284762..59b4791956 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 @@ -1,17 +1,16 @@ -[general] -version = 4 -name = Normal -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_hips_175 -variant = 0.4mm Nozzle - -[values] -speed_print = 40 - - +[general] +definition = weedo_x40 +name = Normal +version = 4 + +[metadata] +material = generic_hips_175 +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 40 + 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 c919bb7dc7..ed173db390 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 @@ -1,18 +1,17 @@ -[general] -version = 4 -name = Draft -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 -material = generic_petg_175 -variant = 0.4mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 60 - - +[general] +definition = weedo_x40 +name = Draft +version = 4 + +[metadata] +material = generic_petg_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + 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 ef7425e745..19a2740616 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 @@ -1,17 +1,16 @@ -[general] -version = 4 -name = Extra Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = extra fine -weight = 1 -material = generic_petg_175 -variant = 0.4mm Nozzle - - -[values] -speed_print = 30 - +[general] +definition = weedo_x40 +name = Extra Fine +version = 4 + +[metadata] +material = generic_petg_175 +quality_type = extra fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +speed_print = 30 + 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 32915bd4d7..f6352fc9d3 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 @@ -1,18 +1,16 @@ -[general] -version = 4 -name = Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 -material = generic_petg_175 -variant = 0.4mm Nozzle - - -[values] -speed_print = 35 - - +[general] +definition = weedo_x40 +name = Fine +version = 4 + +[metadata] +material = generic_petg_175 +quality_type = fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 35 + 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 df2c4d6c21..9e757a0997 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 @@ -1,16 +1,16 @@ -[general] -version = 4 -name = Normal -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_petg_175 -variant = 0.4mm Nozzle - -[values] -speed_print = 40 - +[general] +definition = weedo_x40 +name = Normal +version = 4 + +[metadata] +material = generic_petg_175 +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 40 + 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 a56f72ca70..1b7365c7fa 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 @@ -1,17 +1,17 @@ -[general] -version = 4 -name = Draft -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 -material = generic_pla_175 -variant = 0.4mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 60 - +[general] +definition = weedo_x40 +name = Draft +version = 4 + +[metadata] +material = generic_pla_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + 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 1482e697a5..b2190f031c 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 @@ -1,16 +1,16 @@ -[general] -version = 4 -name = Extra Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = extra fine -weight = 1 -material = generic_pla_175 -variant = 0.4mm Nozzle - - -[values] -speed_print = 30 +[general] +definition = weedo_x40 +name = Extra Fine +version = 4 + +[metadata] +material = generic_pla_175 +quality_type = extra fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +speed_print = 30 + 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 a4b13ee4fa..a42f2d10a5 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 @@ -1,17 +1,16 @@ -[general] -version = 4 -name = Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 -material = generic_pla_175 -variant = 0.4mm Nozzle - - -[values] -speed_print = 35 - +[general] +definition = weedo_x40 +name = Fine +version = 4 + +[metadata] +material = generic_pla_175 +quality_type = fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 35 + 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 e6e9da2507..e774b3c18d 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 @@ -1,15 +1,16 @@ -[general] -version = 4 -name = Normal -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_pla_175 -variant = 0.4mm Nozzle - -[values] -speed_print = 40 +[general] +definition = weedo_x40 +name = Normal +version = 4 + +[metadata] +material = generic_pla_175 +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 40 + 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 33f2750a77..a8accaee83 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 @@ -1,21 +1,21 @@ -[general] -version = 4 -name = Draft -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 -material = generic_pva_175 -variant = 0.4mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 -support_brim_enable = True -support_interface_enable = True - +[general] +definition = weedo_x40 +name = Draft +version = 4 + +[metadata] +material = generic_pva_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 30 +support_brim_enable = True +support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 a7e97ff27b..91bd443d36 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 @@ -1,20 +1,20 @@ -[general] -version = 4 -name = Extra Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = extra fine -weight = 0 -material = generic_pva_175 -variant = 0.4mm Nozzle - -[values] -speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 -support_brim_enable = True -support_interface_enable = True - +[general] +definition = weedo_x40 +name = Extra Fine +version = 4 + +[metadata] +material = generic_pva_175 +quality_type = extra fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 30 +support_brim_enable = True +support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 edc0d1e320..5010b40147 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 @@ -1,20 +1,20 @@ -[general] -version = 4 -name = Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 -material = generic_pva_175 -variant = 0.4mm Nozzle - -[values] -speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 -support_brim_enable = True -support_interface_enable = True - +[general] +definition = weedo_x40 +name = Fine +version = 4 + +[metadata] +material = generic_pva_175 +quality_type = fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 30 +support_brim_enable = True +support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 76264fa7e7..47d62dccfe 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 @@ -1,20 +1,20 @@ -[general] -version = 4 -name = Normal -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_pva_175 -variant = 0.4mm Nozzle - -[values] -speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 -support_brim_enable = True -support_interface_enable = True - +[general] +definition = weedo_x40 +name = Normal +version = 4 + +[metadata] +material = generic_pva_175 +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 30 +support_brim_enable = True +support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 c65c43d4b1..2a08a6471b 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 @@ -1,16 +1,17 @@ -[general] -version = 4 -name = Draft -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 -material = generic_tpu_175 -variant = 0.4mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 60 +[general] +definition = weedo_x40 +name = Draft +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + 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 ad0635b33c..3c6619eea0 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 @@ -1,16 +1,16 @@ -[general] -version = 4 -name = Extra Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = extra fine -weight = 1 -material = generic_tpu_175 -variant = 0.4mm Nozzle - - -[values] -speed_print = 30 +[general] +definition = weedo_x40 +name = Extra Fine +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = extra fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +speed_print = 30 + 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 1e022547f9..f81efbd6c5 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 @@ -1,17 +1,16 @@ -[general] -version = 4 -name = Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 -material = generic_tpu_175 -variant = 0.4mm Nozzle - - -[values] -speed_print = 35 - +[general] +definition = weedo_x40 +name = Fine +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = fine +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 35 + 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 04dfacdbc9..ee81d48190 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 @@ -1,16 +1,16 @@ -[general] -version = 4 -name = Normal -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_tpu_175 -variant = 0.4mm Nozzle - -[values] -speed_print = 40 - +[general] +definition = weedo_x40 +name = Normal +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = normal +setting_version = 22 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 40 + 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 4ff41d1c2e..830f1d104f 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 @@ -1,17 +1,17 @@ -[general] -version = 4 -name = Coarse -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -1 -material = generic_abs_175 -variant = 0.6mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 60 - +[general] +definition = weedo_x40 +name = Coarse +version = 4 + +[metadata] +material = generic_abs_175 +quality_type = coarse +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -1 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + 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 7bba35d6f3..b4534aa43d 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 @@ -1,17 +1,17 @@ -[general] -version = 4 -name = Draft -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -1 -material = generic_abs_175 -variant = 0.6mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 50 - +[general] +definition = weedo_x40 +name = Draft +version = 4 + +[metadata] +material = generic_abs_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = -1 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 50 + 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 d339710508..409d247047 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 @@ -1,17 +1,16 @@ -[general] -version = 4 -name = Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 -material = generic_abs_175 -variant = 0.6mm Nozzle - - -[values] -speed_print = 30 - +[general] +definition = weedo_x40 +name = Fine +version = 4 + +[metadata] +material = generic_abs_175 +quality_type = fine +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +speed_print = 30 + 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 3b7b73d031..c5aacd1f12 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 @@ -1,17 +1,16 @@ -[general] -version = 4 -name = Normal -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_abs_175 -variant = 0.6mm Nozzle - -[values] -speed_print = 40 - - +[general] +definition = weedo_x40 +name = Normal +version = 4 + +[metadata] +material = generic_abs_175 +quality_type = normal +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +speed_print = 40 + 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 2d3d91081f..8c220bab91 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 @@ -1,17 +1,17 @@ -[general] -version = 4 -name = Coarse -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 0 -material = generic_asa_175 -variant = 0.6mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 60 - +[general] +definition = weedo_x40 +name = Coarse +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = coarse +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + 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 9def859470..583e2f289d 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 @@ -1,17 +1,17 @@ -[general] -version = 4 -name = Draft -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 -material = generic_asa_175 -variant = 0.6mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 50 - +[general] +definition = weedo_x40 +name = Draft +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 50 + 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 3a5b5dbaae..8dde36c340 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 @@ -1,16 +1,16 @@ -[general] -version = 4 -name = Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 -material = generic_asa_175 -variant = 0.6mm Nozzle - - -[values] -speed_print = 30 +[general] +definition = weedo_x40 +name = Fine +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = fine +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +speed_print = 30 + 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 ac122e936e..50d0826d11 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 @@ -1,16 +1,16 @@ -[general] -version = 4 -name = Normal -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_asa_175 -variant = 0.6mm Nozzle - -[values] -speed_print = 40 - +[general] +definition = weedo_x40 +name = Normal +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = normal +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +speed_print = 40 + 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 ad67b7cdc0..c02af71221 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 @@ -1,21 +1,21 @@ -[general] -version = 4 -name = Draft -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 0 -material = generic_bvoh_175 -variant = 0.6mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 -support_brim_enable = True -support_interface_enable = True - +[general] +definition = weedo_x40 +name = Draft +version = 4 + +[metadata] +material = generic_bvoh_175 +quality_type = coarse +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 30 +support_brim_enable = True +support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 ebcf5cf0e3..3defdf6af2 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 @@ -1,21 +1,21 @@ -[general] -version = 4 -name = Draft -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 -material = generic_bvoh_175 -variant = 0.6mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 -support_brim_enable = True -support_interface_enable = True - +[general] +definition = weedo_x40 +name = Draft +version = 4 + +[metadata] +material = generic_bvoh_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 30 +support_brim_enable = True +support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 9baed28e4f..f92080c1d8 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 @@ -1,20 +1,20 @@ -[general] -version = 4 -name = Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 -material = generic_bvoh_175 -variant = 0.6mm Nozzle - -[values] -speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 -support_brim_enable = True -support_interface_enable = True - +[general] +definition = weedo_x40 +name = Fine +version = 4 + +[metadata] +material = generic_bvoh_175 +quality_type = fine +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +speed_print = 30 +support_brim_enable = True +support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 cd44894bf7..5726f496e8 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 @@ -1,20 +1,20 @@ -[general] -version = 4 -name = Normal -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_bvoh_175 -variant = 0.6mm Nozzle - -[values] -speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 -support_brim_enable = True -support_interface_enable = True - +[general] +definition = weedo_x40 +name = Normal +version = 4 + +[metadata] +material = generic_bvoh_175 +quality_type = normal +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +speed_print = 30 +support_brim_enable = True +support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 82f214ca36..af4e729c37 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 @@ -1,18 +1,17 @@ -[general] -version = 4 -name = Coarse -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 0 -material = generic_cpe_175 -variant = 0.6mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 60 - - +[general] +definition = weedo_x40 +name = Coarse +version = 4 + +[metadata] +material = generic_cpe_175 +quality_type = coarse +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + 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 38553f64f9..a35080a762 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 @@ -1,18 +1,17 @@ -[general] -version = 4 -name = Draft -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 -material = generic_cpe_175 -variant = 0.6mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 50 - - +[general] +definition = weedo_x40 +name = Draft +version = 4 + +[metadata] +material = generic_cpe_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 50 + 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 e812cc0117..46108d5ffd 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 @@ -1,16 +1,16 @@ -[general] -version = 4 -name = Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 -material = generic_cpe_175 -variant = 0.6mm Nozzle - - -[values] -speed_print = 30 +[general] +definition = weedo_x40 +name = Fine +version = 4 + +[metadata] +material = generic_cpe_175 +quality_type = fine +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +speed_print = 30 + 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 fb903b8068..e75c205ef6 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 @@ -1,17 +1,16 @@ -[general] -version = 4 -name = Normal -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_cpe_175 -variant = 0.6mm Nozzle - -[values] -speed_print = 40 - - +[general] +definition = weedo_x40 +name = Normal +version = 4 + +[metadata] +material = generic_cpe_175 +quality_type = normal +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +speed_print = 40 + 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 0ea4b1864a..1522f67f29 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 @@ -1,18 +1,17 @@ -[general] -version = 4 -name = Draft -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 0 -material = generic_hips_175 -variant = 0.6mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 60 - - +[general] +definition = weedo_x40 +name = Draft +version = 4 + +[metadata] +material = generic_hips_175 +quality_type = coarse +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + 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 d7936bcac5..6c3a0a0518 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 @@ -1,18 +1,17 @@ -[general] -version = 4 -name = Draft -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 -material = generic_hips_175 -variant = 0.6mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 50 - - +[general] +definition = weedo_x40 +name = Draft +version = 4 + +[metadata] +material = generic_hips_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 50 + 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 31a982e224..351c79534e 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 @@ -1,17 +1,16 @@ -[general] -version = 4 -name = Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 -material = generic_hips_175 -variant = 0.6mm Nozzle - - -[values] -speed_print = 30 - +[general] +definition = weedo_x40 +name = Fine +version = 4 + +[metadata] +material = generic_hips_175 +quality_type = fine +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +speed_print = 30 + 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 2890cc9409..6e888de8f8 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 @@ -1,17 +1,16 @@ -[general] -version = 4 -name = Normal -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_hips_175 -variant = 0.6mm Nozzle - -[values] -speed_print = 40 - - +[general] +definition = weedo_x40 +name = Normal +version = 4 + +[metadata] +material = generic_hips_175 +quality_type = normal +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +speed_print = 40 + 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 f39f431da4..dad45e01b9 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 @@ -1,18 +1,17 @@ -[general] -version = 4 -name = Draft -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 0 -material = generic_petg_175 -variant = 0.6mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 60 - - +[general] +definition = weedo_x40 +name = Draft +version = 4 + +[metadata] +material = generic_petg_175 +quality_type = coarse +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + 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 a562dc72d7..4507853c6d 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 @@ -1,18 +1,17 @@ -[general] -version = 4 -name = Draft -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 -material = generic_petg_175 -variant = 0.6mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 50 - - +[general] +definition = weedo_x40 +name = Draft +version = 4 + +[metadata] +material = generic_petg_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 50 + 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 deb1a627af..5fd038f42b 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 @@ -1,18 +1,16 @@ -[general] -version = 4 -name = Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 -material = generic_petg_175 -variant = 0.6mm Nozzle - - -[values] -speed_print = 30 - - +[general] +definition = weedo_x40 +name = Fine +version = 4 + +[metadata] +material = generic_petg_175 +quality_type = fine +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +speed_print = 30 + 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 2630fb8f80..602877cc27 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 @@ -1,16 +1,16 @@ -[general] -version = 4 -name = Normal -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_petg_175 -variant = 0.6mm Nozzle - -[values] -speed_print = 40 - +[general] +definition = weedo_x40 +name = Normal +version = 4 + +[metadata] +material = generic_petg_175 +quality_type = normal +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +speed_print = 40 + 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 01e8391e3b..1413c53fcc 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 @@ -1,17 +1,17 @@ -[general] -version = 4 -name = Coarse -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 0 -material = generic_pla_175 -variant = 0.6mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 60 - +[general] +definition = weedo_x40 +name = Coarse +version = 4 + +[metadata] +material = generic_pla_175 +quality_type = coarse +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + 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 38781c67ee..53ea9b321e 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 @@ -1,17 +1,17 @@ -[general] -version = 4 -name = Draft -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 -material = generic_pla_175 -variant = 0.6mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 50 - +[general] +definition = weedo_x40 +name = Draft +version = 4 + +[metadata] +material = generic_pla_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 50 + 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 f7ef1d2338..a71118f84c 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 @@ -1,17 +1,16 @@ -[general] -version = 4 -name = Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 -material = generic_pla_175 -variant = 0.6mm Nozzle - - -[values] -speed_print = 30 - +[general] +definition = weedo_x40 +name = Fine +version = 4 + +[metadata] +material = generic_pla_175 +quality_type = fine +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +speed_print = 30 + 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 e4a1a47391..ea7f24ff14 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 @@ -1,15 +1,16 @@ -[general] -version = 4 -name = Normal -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_pla_175 -variant = 0.6mm Nozzle - -[values] -speed_print = 40 +[general] +definition = weedo_x40 +name = Normal +version = 4 + +[metadata] +material = generic_pla_175 +quality_type = normal +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +speed_print = 40 + 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 b94d1a21a5..ca45d7b230 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 @@ -1,21 +1,21 @@ -[general] -version = 4 -name = Coarse -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 0 -material = generic_pva_175 -variant = 0.6mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 -support_brim_enable = True -support_interface_enable = True - +[general] +definition = weedo_x40 +name = Coarse +version = 4 + +[metadata] +material = generic_pva_175 +quality_type = coarse +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 30 +support_brim_enable = True +support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 7b534e56c3..b91d19e648 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 @@ -1,21 +1,21 @@ -[general] -version = 4 -name = Draft -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 -material = generic_pva_175 -variant = 0.6mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 -support_brim_enable = True -support_interface_enable = True - +[general] +definition = weedo_x40 +name = Draft +version = 4 + +[metadata] +material = generic_pva_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 30 +support_brim_enable = True +support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 ca36d6315d..2d74cd443b 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 @@ -1,20 +1,20 @@ -[general] -version = 4 -name = Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 -material = generic_pva_175 -variant = 0.6mm Nozzle - -[values] -speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 -support_brim_enable = True -support_interface_enable = True - +[general] +definition = weedo_x40 +name = Fine +version = 4 + +[metadata] +material = generic_pva_175 +quality_type = fine +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +speed_print = 30 +support_brim_enable = True +support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 4b50ec5196..acbb00c60b 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 @@ -1,20 +1,20 @@ -[general] -version = 4 -name = Normal -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_pva_175 -variant = 0.6mm Nozzle - -[values] -speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 -support_brim_enable = True -support_interface_enable = True - +[general] +definition = weedo_x40 +name = Normal +version = 4 + +[metadata] +material = generic_pva_175 +quality_type = normal +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +speed_print = 30 +support_brim_enable = True +support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 e6cdaa09d9..3ff10fc432 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 @@ -1,16 +1,17 @@ -[general] -version = 4 -name = Coarse -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 0 -material = generic_tpu_175 -variant = 0.6mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 60 +[general] +definition = weedo_x40 +name = Coarse +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = coarse +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + 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 3c9cd7b8db..c682e158e6 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 @@ -1,16 +1,17 @@ -[general] -version = 4 -name = Draft -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 -material = generic_tpu_175 -variant = 0.6mm Nozzle - -[values] -layer_height_0 = =round(layer_height * 1.25, 2) -speed_print = 60 +[general] +definition = weedo_x40 +name = Draft +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +layer_height_0 = =round(layer_height * 1.25, 2) +speed_print = 60 + 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 14f892ac71..0d26fae8f8 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 @@ -1,17 +1,16 @@ -[general] -version = 4 -name = Fine -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 -material = generic_tpu_175 -variant = 0.6mm Nozzle - - -[values] -speed_print = 30 - +[general] +definition = weedo_x40 +name = Fine +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = fine +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +speed_print = 30 + 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 754e12a43d..fff16d13ec 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 @@ -1,16 +1,16 @@ -[general] -version = 4 -name = Normal -definition = weedo_x40 - -[metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 -material = generic_tpu_175 -variant = 0.6mm Nozzle - -[values] -speed_print = 40 - +[general] +definition = weedo_x40 +name = Normal +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = normal +setting_version = 22 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +speed_print = 40 + 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 45faeae37d..033e186337 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Coarse definition = weedo_x40 +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -1 material = generic_abs_175 +quality_type = coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = -1 [values] layer_height_0 = =round(layer_height * 1.25, 2) 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 04e725d08e..dc11c21700 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Draft definition = weedo_x40 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -1 material = generic_abs_175 +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = -1 [values] layer_height_0 = =round(layer_height * 1.25, 2) 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 f6aacd037d..a63d3438b3 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 @@ -1,16 +1,15 @@ [general] -version = 4 -name = Extra Coarse definition = weedo_x40 +name = Extra Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 0 material = generic_abs_175 +quality_type = extra coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle - +weight = 0 [values] speed_print = 30 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 ec3e0a7c5c..8073d88a4b 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 @@ -1,17 +1,16 @@ [general] -version = 4 -name = Normal definition = weedo_x40 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_abs_175 +quality_type = normal +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] speed_print = 40 - 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 c6b58af1ed..93da279149 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Coarse definition = weedo_x40 +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 0 material = generic_asa_175 +quality_type = coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.25, 2) 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 ef0e4783ee..dd90f0f653 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Draft definition = weedo_x40 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 material = generic_asa_175 +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.25, 2) 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 a3ec5251f4..9e2422757e 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Extra Coarse definition = weedo_x40 +name = Extra Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 0 material = generic_asa_175 +quality_type = extra coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle - +weight = 0 [values] speed_print = 30 + 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 82b9ed2754..ee0a564732 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = weedo_x40 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_asa_175 +quality_type = normal +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] speed_print = 40 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 386f918d8a..617677c786 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 @@ -1,21 +1,21 @@ [general] -version = 4 -name = Coarse definition = weedo_x40 +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 0 material = generic_bvoh_175 +quality_type = coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.25, 2) speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 support_brim_enable = True support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 0aa537f638..519328a14a 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 @@ -1,21 +1,21 @@ [general] -version = 4 -name = Draft definition = weedo_x40 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 material = generic_bvoh_175 +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.25, 2) speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 support_brim_enable = True support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 651fa8013a..07d8ac8f80 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 @@ -1,20 +1,20 @@ [general] -version = 4 -name = Extra Coarse definition = weedo_x40 +name = Extra Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 0 material = generic_bvoh_175 +quality_type = extra coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 support_brim_enable = True support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 14e847507e..e27acc9af1 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 @@ -1,20 +1,20 @@ [general] -version = 4 -name = Normal definition = weedo_x40 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_bvoh_175 +quality_type = normal +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 support_brim_enable = True support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 371650bac9..b87b07168f 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 @@ -1,18 +1,17 @@ [general] -version = 4 -name = Coarse definition = weedo_x40 +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 0 material = generic_cpe_175 +quality_type = coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.25, 2) speed_print = 60 - 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 59c93d613d..ce7792946e 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 @@ -1,18 +1,17 @@ [general] -version = 4 -name = Draft definition = weedo_x40 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 material = generic_cpe_175 +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.25, 2) speed_print = 50 - 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 731ab0067d..152159f5a7 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 @@ -1,16 +1,16 @@ [general] -version = 4 -name = Extra Coarse definition = weedo_x40 +name = Extra Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 0 material = generic_cpe_175 +quality_type = extra coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle - +weight = 0 [values] speed_print = 30 + 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 24443be282..ddf38e060f 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 @@ -1,17 +1,16 @@ [general] -version = 4 -name = Normal definition = weedo_x40 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_cpe_175 +quality_type = normal +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] speed_print = 40 - 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 21a063e5e5..bd07962ec9 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 @@ -1,18 +1,17 @@ [general] -version = 4 -name = Coarse definition = weedo_x40 +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 0 material = generic_hips_175 +quality_type = coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.25, 2) speed_print = 60 - 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 35408f4b64..804376c305 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 @@ -1,18 +1,17 @@ [general] -version = 4 -name = Draft definition = weedo_x40 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 material = generic_hips_175 +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.25, 2) speed_print = 50 - 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 a6db95f9f2..c921034de3 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 @@ -1,16 +1,15 @@ [general] -version = 4 -name = Extra Coarse definition = weedo_x40 +name = Extra Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 0 material = generic_hips_175 +quality_type = extra coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle - +weight = 0 [values] speed_print = 30 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 4c66ba53ca..b0f546a488 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 @@ -1,17 +1,16 @@ [general] -version = 4 -name = Normal definition = weedo_x40 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_hips_175 +quality_type = normal +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] speed_print = 40 - 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 f7a0d51465..4b37e8b61f 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 @@ -1,18 +1,17 @@ [general] -version = 4 -name = Coarse definition = weedo_x40 +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 0 material = generic_petg_175 +quality_type = coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.25, 2) speed_print = 60 - 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 7b69cedb39..c43d882515 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 @@ -1,18 +1,17 @@ [general] -version = 4 -name = Draft definition = weedo_x40 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 material = generic_petg_175 +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.25, 2) speed_print = 50 - 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 1bee071836..4f33319caf 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 @@ -1,18 +1,16 @@ [general] -version = 4 -name = Extra Coarse definition = weedo_x40 +name = Extra Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 0 material = generic_petg_175 +quality_type = extra coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle - +weight = 0 [values] speed_print = 30 - 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 f8c1a46e85..f42ace9ca7 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = weedo_x40 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_petg_175 +quality_type = normal +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] speed_print = 40 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 16ca883ad4..2b3590dca8 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Coarse definition = weedo_x40 +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 0 material = generic_pla_175 +quality_type = coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.25, 2) 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 4d2ea969a5..e233c8910a 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Draft definition = weedo_x40 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 material = generic_pla_175 +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.25, 2) 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 b0dcb0b6d3..b11c3cca6b 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 @@ -1,16 +1,15 @@ [general] -version = 4 -name = Extra Coarse definition = weedo_x40 +name = Extra Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 0 material = generic_pla_175 +quality_type = extra coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle - +weight = 0 [values] speed_print = 30 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 9db1dfe22b..f650fd251c 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Normal definition = weedo_x40 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla_175 +quality_type = normal +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] cool_fan_speed = 100 speed_print = 40 + 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 2b72cb5909..cbe818a971 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 @@ -1,21 +1,21 @@ [general] -version = 4 -name = Coarse definition = weedo_x40 +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 0 material = generic_pva_175 +quality_type = coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.25, 2) speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 support_brim_enable = True support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 34fe97eb6e..ba96247176 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 @@ -1,22 +1,21 @@ [general] -version = 4 -name = Draft definition = weedo_x40 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 material = generic_pva_175 +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.25, 2) - speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 support_brim_enable = True support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 94e2f6e4fc..c36eb39a12 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 @@ -1,21 +1,20 @@ [general] -version = 4 -name = Extra Coarse definition = weedo_x40 +name = Extra Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 0 material = generic_pva_175 +quality_type = extra coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] - speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 support_brim_enable = True support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 08fa405924..0794bce059 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 @@ -1,21 +1,20 @@ [general] -version = 4 -name = Normal definition = weedo_x40 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pva_175 +quality_type = normal +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] - speed_print = 30 -support_z_distance = 0 -support_xy_distance = 0.2 support_brim_enable = True support_interface_enable = True +support_xy_distance = 0.2 +support_z_distance = 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 9cd3967194..fb07cb601a 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Coarse definition = weedo_x40 +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = 0 material = generic_tpu_175 +quality_type = coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.25, 2) speed_print = 60 + 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 f003186054..aed0f028ba 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft definition = weedo_x40 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 material = generic_tpu_175 +quality_type = draft +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] layer_height_0 = =round(layer_height * 1.25, 2) speed_print = 60 + 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 efcfec3eac..fe6e427fd8 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 @@ -1,16 +1,15 @@ [general] -version = 4 -name = Extra Coarse definition = weedo_x40 +name = Extra Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = 0 material = generic_tpu_175 +quality_type = extra coarse +setting_version = 22 +type = quality variant = 0.8mm Nozzle - +weight = 0 [values] speed_print = 30 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 58629dd78a..2b03ccf60f 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 @@ -1,15 +1,15 @@ [general] -version = 4 -name = Normal definition = weedo_x40 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_tpu_175 +quality_type = normal +setting_version = 22 +type = quality variant = 0.8mm Nozzle +weight = 0 [values] speed_print = 40 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 c8bd8fcd25..2e0b53abc2 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Coarse definition = weedo_x40 +name = Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -4 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.28 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 c23882599f..a7ea903605 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Draft definition = weedo_x40 +name = Draft +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -4 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.24 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 5263e1c26f..0eebd3efd6 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 @@ -1,14 +1,14 @@ [general] -version = 4 -name = Extra Coarse definition = weedo_x40 +name = Extra Coarse +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra coarse -weight = -4 global_quality = True +quality_type = extra coarse +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.32 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 407dffa661..45d8a6375e 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = Extra Fine definition = weedo_x40 +name = Extra Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = extra fine -weight = -1 global_quality = True +quality_type = extra fine +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.12 + 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 478f7792c3..ddfeba0be4 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Fine definition = weedo_x40 +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = -2 global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = -2 [values] layer_height = 0.16 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 dd8757b7a2..a7eeb06d72 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg @@ -1,14 +1,14 @@ [general] -version = 4 -name = Normal definition = weedo_x40 +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -3 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.2 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 92822db83a..6372e7982e 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_1p0_pro +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_abs +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 20 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 45 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 6.0 retraction_speed = 40 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 20 +speed_travel = 45 +speed_wall = =speed_print + 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 9570fd6049..90995009fc 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_1p0_pro +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_abs +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 20 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 45 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 6.0 retraction_speed = 40 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 20 +speed_travel = 45 +speed_wall = =speed_print + 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 41133ab5e9..92a711f355 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_1p0_pro +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_abs +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 20 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 45 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 6.0 retraction_speed = 40 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 20 +speed_travel = 45 +speed_wall = =speed_print + 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 c2d41a12f3..5d013c8ae7 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_1p0_pro +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_abs +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 20 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 45 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 6.0 retraction_speed = 40 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 20 +speed_travel = 45 +speed_wall = =speed_print + 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 5ba4ef57d6..ebdc1f974e 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 @@ -1,31 +1,32 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_abs +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_wall = 20 -speed_print = 60 -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = 30 -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 3.0 -retraction_speed = 20 retraction_prime_speed = 15 +retraction_speed = 20 skirt_brim_speed = 30 -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 60 +speed_support = 30 +speed_topbottom = 10 +speed_travel = 120 +speed_wall = 20 + 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 b3a4619adf..df43e307a2 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 @@ -1,31 +1,32 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_abs +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_wall = 20 -speed_print = 60 -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = 30 -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 3.0 -retraction_speed = 20 retraction_prime_speed = 15 +retraction_speed = 20 skirt_brim_speed = 30 -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 60 +speed_support = 30 +speed_topbottom = 10 +speed_travel = 120 +speed_wall = 20 + 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 425b43ab97..39fe306e40 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 @@ -1,31 +1,32 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_abs +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_wall = 20 -speed_print = 60 -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = 30 -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 3.0 -retraction_speed = 20 retraction_prime_speed = 15 +retraction_speed = 20 skirt_brim_speed = 30 -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 60 +speed_support = 30 +speed_topbottom = 10 +speed_travel = 120 +speed_wall = 20 + 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 e5c61d2c4b..5cbada1509 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 @@ -1,31 +1,32 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_abs +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.3 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_wall = 20 -speed_print = 60 -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = 30 -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 3.0 -retraction_speed = 20 retraction_prime_speed = 15 +retraction_speed = 20 skirt_brim_speed = 30 -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 60 +speed_support = 30 +speed_topbottom = 10 +speed_travel = 120 +speed_wall = 20 + 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 new file mode 100644 index 0000000000..f2e8aeda46 --- /dev/null +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Coarse Quality +version = 4 + +[metadata] +material = xyzprinting_abs +quality_type = coarse +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -3 + +[values] +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.4 +layer_height_0 = 0.4 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 3 +retraction_prime_speed = =retraction_speed +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print +support_infill_rate = 20 + 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 new file mode 100644 index 0000000000..c53ee55e41 --- /dev/null +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Draft Quality +version = 4 + +[metadata] +material = xyzprinting_abs +quality_type = draft +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -2 + +[values] +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.3 +layer_height_0 = 0.4 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 3 +retraction_prime_speed = =retraction_speed +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print +support_infill_rate = 20 + 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 new file mode 100644 index 0000000000..ebb8cf5bdb --- /dev/null +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Fine Quality +version = 4 + +[metadata] +material = xyzprinting_abs +quality_type = fine +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = 0 + +[values] +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.1 +layer_height_0 = 0.2 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 3 +retraction_prime_speed = =retraction_speed +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print +support_infill_rate = 20 + 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 new file mode 100644 index 0000000000..cd66844ed0 --- /dev/null +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Normal Quality +version = 4 + +[metadata] +material = xyzprinting_abs +quality_type = normal +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -1 + +[values] +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.2 +layer_height_0 = 0.30 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 3 +retraction_prime_speed = =retraction_speed +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print +support_infill_rate = 20 + 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 fc2887c891..18a61320f8 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_super +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_abs +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 40 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_travel = 120 +speed_wall = =speed_print + 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 c2d9310692..595d814733 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_super +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_abs +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 40 skirt_brim_speed = =speed_print -infill_sparse_density = 10 +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_travel = 120 +speed_wall = =speed_print + 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 8f81b60e09..99f3b15bd9 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_super +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_abs +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 40 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_travel = 120 +speed_wall = =speed_print + 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 ac6aae3a2e..5e3200fcec 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_super +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_abs +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_topbottom = 10 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 40 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 85cb4ddee2..8a939f5e3e 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_1p0_pro +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_antibact_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 20 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 20 +speed_travel = 100 +speed_wall = =speed_print + 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 8d12ab17d9..df0940fd63 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_1p0_pro +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_antibact_pla +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 20 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 20 +speed_travel = 100 +speed_wall = =speed_print + 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 660b58d5fa..b2a0e36037 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_1p0_pro +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_antibact_pla +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 20 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 20 +speed_travel = 100 +speed_wall = =speed_print + 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 1e3aee314a..9dbb188b2d 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_1p0_pro +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_antibact_pla +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 20 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 20 +speed_travel = 100 +speed_wall = =speed_print + 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 731e9f47ea..b74aebf343 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_antibact_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 65 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.5 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 65 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 55d9f12704..b31a658e4e 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_antibact_pla +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 65 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.5 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 65 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 2159986358..baf32c97c8 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 @@ -1,28 +1,29 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine material = xyzprinting_antibact_pla +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 65 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.5 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 65 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 8ab5f3e46f..b9f88da61c 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_antibact_pla +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 65 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.5 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 65 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 0be08f3100..295cf6f81b 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_antibact_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 c460fde89e..6c0e844633 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_antibact_pla +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 330a02ede0..36f5929574 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_antibact_pla +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 84eb883dc6..3bf30cac0f 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_antibact_pla +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.3 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 fd269b8d52..529085f799 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_antibact_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 7.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 5b54794866..a4d60e73ca 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_antibact_pla +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 7.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 207b2100d8..8f412e9d81 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_antibact_pla +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 802e984ff7..dce8e99ed3 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_antibact_pla +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.3 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 a315491578..2d983942eb 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_antibact_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Stainless Steel 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 9dc187273c..492088f2a2 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_antibact_pla +quality_type = draft +setting_version = 22 +type = quality variant = Stainless Steel 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 fd21a7ee91..e4da7beb10 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_antibact_pla +quality_type = fine +setting_version = 22 +type = quality variant = Stainless Steel 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 d87621a531..4f6491dfbf 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_antibact_pla +quality_type = normal +setting_version = 22 +type = quality variant = Stainless Steel 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..bd4912d5a6 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg @@ -0,0 +1,34 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Coarse Quality +version = 4 + +[metadata] +material = xyzprinting_antibact_pla +quality_type = coarse +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -3 + +[values] +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.4 +layer_height_0 = 0.4 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 4.5 +retraction_prime_speed = 15 +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..aa198f9e35 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg @@ -0,0 +1,34 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Draft Quality +version = 4 + +[metadata] +material = xyzprinting_antibact_pla +quality_type = draft +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -2 + +[values] +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.3 +layer_height_0 = 0.4 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 4.5 +retraction_prime_speed = 15 +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..229e9f0e77 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg @@ -0,0 +1,34 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Fine Quality +version = 4 + +[metadata] +material = xyzprinting_antibact_pla +quality_type = fine +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = 0 + +[values] +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.1 +layer_height_0 = 0.2 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 4.5 +retraction_prime_speed = 15 +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..9692a06a34 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg @@ -0,0 +1,34 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Normal Quality +version = 4 + +[metadata] +material = xyzprinting_antibact_pla +quality_type = normal +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -1 + +[values] +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.2 +layer_height_0 = 0.30 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 4.5 +retraction_prime_speed = 15 +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print + 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 9c84281c7a..395fc53a70 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_super +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_antibact_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_topbottom = 10 -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.5 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 afd27ae722..395670e79c 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_super +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_antibact_pla +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_topbottom = 10 -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.5 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 510d48426a..38b0e2e230 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_super +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_antibact_pla +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_topbottom = 10 -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.5 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 1ecafc72bb..7ba3de4e79 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_super +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_antibact_pla +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_topbottom = 10 -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.5 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 cc345dbba7..9e165cd650 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_carbon_fiber +quality_type = coarse +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 6.0 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 90780031d5..2daccac140 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_carbon_fiber +quality_type = draft +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 6.0 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 5682d4b35a..aab14d8444 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_carbon_fiber +quality_type = fine +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 6.0 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 0850c8b68e..ac80cd0fcc 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_carbon_fiber +quality_type = normal +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 6.0 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 5b7de60137..d98194e70e 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_carbon_fiber +quality_type = coarse +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =40 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 8.0 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =40 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 4bcdc66683..e4e2f449ea 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_carbon_fiber +quality_type = draft +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =40 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 8.0 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =40 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 4419d9316c..851b2f3cef 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_carbon_fiber +quality_type = fine +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =40 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 8.0 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =40 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 7dd8374aa7..514d463fdc 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_carbon_fiber +quality_type = normal +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.3 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =40 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 8.0 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =40 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 18e946037b..4333f73cea 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_carbon_fiber +quality_type = coarse +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 40 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 8.0 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 40 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 23eee28cd7..2444d99971 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_carbon_fiber +quality_type = draft +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 40 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 8.0 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 40 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 c09a9740bc..36c6b782b9 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_carbon_fiber +quality_type = fine +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 40 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 8.0 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 40 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 0e81830472..51db981093 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_carbon_fiber +quality_type = normal +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.3 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 40 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 8.0 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 40 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 fb16ffc822..1f6b852c07 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_carbon_fiber +quality_type = coarse +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 8.0 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 124e5b2f29..23ad943a2f 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_carbon_fiber +quality_type = draft +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 8.0 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 a86cfa17d2..efda1f0adb 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_carbon_fiber +quality_type = fine +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 8.0 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 374742ca6f..14f03df4fd 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_carbon_fiber +quality_type = normal +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 8.0 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..666051dd42 --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Coarse Quality +version = 4 + +[metadata] +material = xyzprinting_carbon_fiber +quality_type = coarse +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -3 + +[values] +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.4 +layer_height_0 = 0.4 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 6.5 +retraction_prime_speed = 15 +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..387ca026e3 --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Draft Quality +version = 4 + +[metadata] +material = xyzprinting_carbon_fiber +quality_type = draft +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -2 + +[values] +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.3 +layer_height_0 = 0.4 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 6.5 +retraction_prime_speed = 15 +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..e6e6bf2956 --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Fine Quality +version = 4 + +[metadata] +material = xyzprinting_carbon_fiber +quality_type = fine +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = 0 + +[values] +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.1 +layer_height_0 = 0.2 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 6.5 +retraction_prime_speed = 15 +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..fd588fa274 --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Normal Quality +version = 4 + +[metadata] +material = xyzprinting_carbon_fiber +quality_type = normal +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -1 + +[values] +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.2 +layer_height_0 = 0.30 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 6.5 +retraction_prime_speed = 15 +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print + 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 ebaa6754eb..894afece46 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_super +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_carbon_fiber +quality_type = coarse +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_infill = 45 -speed_wall = =speed_print -speed_topbottom = 10 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 6.0 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 45 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 66566a6618..bba2d8f06b 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_super +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_carbon_fiber +quality_type = draft +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_infill = 45 -speed_wall = =speed_print -speed_topbottom = 10 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 6.0 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 45 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 56419af216..7485968470 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_super +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_carbon_fiber +quality_type = fine +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_infill = 45 -speed_wall = =speed_print -speed_topbottom = 10 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 6.0 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 45 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 024707b534..97a6df75a3 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_super +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_carbon_fiber +quality_type = normal +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_infill = 45 -speed_wall = =speed_print -speed_topbottom = 10 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 6.0 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 45 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 218be0c25a..12a816c06e 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_colorinkjet_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 65 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.5 retraction_speed = 30 skirt_brim_speed = 30 -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 65 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 394416097d..257b2c7746 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_colorinkjet_pla +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 65 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.5 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 65 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 18ea9f1f57..3261a8fb27 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_colorinkjet_pla +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 65 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.5 retraction_speed = 30 skirt_brim_speed = 30 -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 65 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 e2121793db..32df932fb6 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_colorinkjet_pla +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 65 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.5 retraction_speed = 30 skirt_brim_speed = 30 -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 65 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 202a074bfd..de70014369 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_colorinkjet_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Stainless Steel 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 46ac95c7ec..ad1a8f44b9 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_colorinkjet_pla +quality_type = draft +setting_version = 22 +type = quality variant = Stainless Steel 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 e624873954..b78710f8a0 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_colorinkjet_pla +quality_type = fine +setting_version = 22 +type = quality variant = Stainless Steel 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 9a9f637c42..9f803f3610 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_colorinkjet_pla +quality_type = normal +setting_version = 22 +type = quality variant = Stainless Steel 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 f4f581b823..f83b2ebe59 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_super +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_colorinkjet_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_topbottom = 10 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.5 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 ec627a7d92..2b7312c853 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_super +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_colorinkjet_pla +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_topbottom = 10 -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.5 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 3bb4123431..d1902eedc0 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_super +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_colorinkjet_pla +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_topbottom = 10 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.5 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 a9ac7c2706..0c6cfd7268 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_super +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_colorinkjet_pla +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_topbottom = 10 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.5 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 50bdbebdfe..08db3f2e4e 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_super +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_flexible +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 20 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_topbottom = 10 -speed_travel = 100 -infill_sparse_density = 20 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 6.0 retraction_speed = 40 -skirt_brim_speed = =speed_print \ No newline at end of file +skirt_brim_speed = =speed_print +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 3e9dd619f9..c815247dd4 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_super +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_flexible +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 20 layer_height = 0.3 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_topbottom = 10 -speed_travel = 100 -infill_sparse_density = 20 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 6.0 retraction_speed = 40 -skirt_brim_speed = =speed_print \ No newline at end of file +skirt_brim_speed = =speed_print +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 b82b3326dc..f019192a71 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_super +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_flexible +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 20 layer_height = 0.1 layer_height_0 = 0.2 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_topbottom = 10 -speed_travel = 100 -infill_sparse_density = 20 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 6.0 retraction_speed = 40 -skirt_brim_speed = =speed_print \ No newline at end of file +skirt_brim_speed = =speed_print +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 cb536269ff..6c50974030 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_super +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_flexible +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 20 layer_height = 0.2 layer_height_0 = 0.35 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_topbottom = 10 -speed_travel = 100 -infill_sparse_density = 20 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 6.0 retraction_speed = 40 -skirt_brim_speed = =speed_print \ No newline at end of file +skirt_brim_speed = =speed_print +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 c0502165a2..e448f131f6 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_metallic_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 560e212d7c..c169a450ad 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = 0 material = xyzprinting_metallic_pla +quality_type = draft +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 f04189e175..dc575ae9b4 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_metallic_pla +quality_type = fine +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 b53d5352a7..6a3233b1ea 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_metallic_pla +quality_type = normal +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 7604763b1c..95232ae85f 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_metallic_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 7.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 f3f7c0258a..23218c0ac0 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_metallic_pla +quality_type = draft +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 7.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 acd72ab2de..ad8762e6ad 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_metallic_pla +quality_type = fine +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 7.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 013068f63e..7ebf142395 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_metallic_pla +quality_type = normal +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.3 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 7.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 f3bf32a869..0d8d5217d0 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_metallic_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 7.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 225bfaa348..185021708b 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_metallic_pla +quality_type = draft +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 7.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 64f1044a53..8ff7608693 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_metallic_pla +quality_type = fine +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 7.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 0f0027f877..6af4cd7483 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_metallic_pla +quality_type = normal +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.3 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 7.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 35bbde5751..9dcc94a284 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_metallic_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = 40 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 bc74ec20f1..88d373084c 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_metallic_pla +quality_type = draft +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = 40 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 e3bcdbcd6a..a74fa56f94 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_metallic_pla +quality_type = fine +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = 40 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 8fab1447fc..cf0b95050f 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_metallic_pla +quality_type = normal +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = 40 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..705878fadc --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Coarse Quality +version = 4 + +[metadata] +material = xyzprinting_metallic_pla +quality_type = coarse +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -3 + +[values] +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.4 +layer_height_0 = 0.4 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 3 +retraction_prime_speed = =retraction_speed +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..b3020e861e --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Draft Quality +version = 4 + +[metadata] +material = xyzprinting_metallic_pla +quality_type = draft +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -2 + +[values] +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.3 +layer_height_0 = 0.4 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 3 +retraction_prime_speed = =retraction_speed +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..592fab50c9 --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Fine Quality +version = 4 + +[metadata] +material = xyzprinting_metallic_pla +quality_type = fine +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = 0 + +[values] +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.1 +layer_height_0 = 0.2 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 3 +retraction_prime_speed = =retraction_speed +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..b22706ddd1 --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Normal Quality +version = 4 + +[metadata] +material = xyzprinting_metallic_pla +quality_type = normal +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -1 + +[values] +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.2 +layer_height_0 = 0.30 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 3 +retraction_prime_speed = =retraction_speed +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print + 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 355ec0a4ab..e73335fc95 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_super +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_metallic_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 6.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 7035535497..55d1167d23 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_super +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_metallic_pla +quality_type = draft +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 6.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 18e60deb69..b92706ae7b 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_super +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_metallic_pla +quality_type = fine +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 6.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 19b2becfbf..cfb3f2ff97 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_super +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_metallic_pla +quality_type = normal +setting_version = 22 +type = quality variant = Hardened Steel 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 6.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..5a53c2a437 --- /dev/null +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Coarse Quality +version = 4 + +[metadata] +material = xyzprinting_nylon +quality_type = coarse +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -3 + +[values] +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +bridge_skin_speed = 50 +infill_sparse_density = 10 +layer_height = 0.4 +layer_height_0 = 0.4 +material_bed_temperature = 100 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 260 +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 6.0 +retraction_prime_speed = 15 +retraction_speed = 50 +speed_infill = =speed_print +speed_print = 40 +speed_support = =speed_print +speed_travel = 150 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..70ebfad1a2 --- /dev/null +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Draft Quality +version = 4 + +[metadata] +material = xyzprinting_nylon +quality_type = draft +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -2 + +[values] +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +bridge_skin_speed = 50 +infill_sparse_density = 10 +layer_height = 0.3 +layer_height_0 = 0.4 +material_bed_temperature = 100 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 260 +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 6.0 +retraction_prime_speed = 15 +retraction_speed = 50 +speed_infill = =speed_print +speed_print = 40 +speed_support = =speed_print +speed_travel = 150 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..3f8ad26804 --- /dev/null +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Fine Quality +version = 4 + +[metadata] +material = xyzprinting_nylon +quality_type = fine +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = 0 + +[values] +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +bridge_skin_speed = 50 +infill_sparse_density = 10 +layer_height = 0.1 +layer_height_0 = 0.2 +material_bed_temperature = 100 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 260 +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 6.0 +retraction_prime_speed = 15 +retraction_speed = 50 +speed_infill = =speed_print +speed_print = 40 +speed_support = =speed_print +speed_travel = 150 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..151556a2f4 --- /dev/null +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Normal Quality +version = 4 + +[metadata] +material = xyzprinting_nylon +quality_type = normal +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -1 + +[values] +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +bridge_skin_speed = 50 +infill_sparse_density = 10 +layer_height = 0.2 +layer_height_0 = 0.30 +material_bed_temperature = 100 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 260 +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 6.0 +retraction_prime_speed = 15 +retraction_speed = 50 +speed_infill = =speed_print +speed_print = 40 +speed_support = =speed_print +speed_travel = 150 +speed_wall = =speed_print + 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 a73a8e12e7..9237e4f137 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_super +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_nylon +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +brim_width = 5.0 +infill_sparse_density = 0 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 8.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 0 -brim_width = 5.0 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 120 +speed_wall = =speed_print + 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 1b9767b614..0d28ade067 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_super +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_nylon +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +brim_width = 5.0 +infill_sparse_density = 0 layer_height = 0.3 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 8.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 0 -brim_width = 5.0 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 120 +speed_wall = =speed_print + 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 06c28e0dc1..2b9f6f1218 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_super +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_nylon +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +brim_width = 5.0 +infill_sparse_density = 0 layer_height = 0.1 layer_height_0 = 0.2 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 8.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 0 -brim_width = 5.0 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 120 +speed_wall = =speed_print + 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 d17cfa0ebb..62666f8400 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_super +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_nylon +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +brim_width = 5.0 +infill_sparse_density = 0 layer_height = 0.2 layer_height_0 = 0.35 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 8.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 0 -brim_width = 5.0 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 120 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..7daf31408d --- /dev/null +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg @@ -0,0 +1,40 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Coarse Quality +version = 4 + +[metadata] +material = xyzprinting_pahtcf15 +quality_type = coarse +setting_version = 22 +type = quality +variant = Hardened Steel High Temp. 0.6mm Nozzle +weight = -3 + +[values] +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 +bridge_skin_speed = 50 +infill_material_flow = 85 +infill_sparse_density = 10 +layer_height = 0.4 +layer_height_0 = 0.4 +line_width = 0.4 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 7 +retraction_prime_speed = 15 +retraction_speed = 50 +speed_infill = 40 +speed_layer_0 = 15 +speed_print = 20 +speed_support = =speed_print +speed_travel = 150 +speed_wall = =speed_print +wall_line_width_x = 0.4 +wall_material_flow = 85 + 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 new file mode 100644 index 0000000000..a202067fd0 --- /dev/null +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg @@ -0,0 +1,40 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Draft Quality +version = 4 + +[metadata] +material = xyzprinting_pahtcf15 +quality_type = draft +setting_version = 22 +type = quality +variant = Hardened Steel High Temp. 0.6mm Nozzle +weight = -2 + +[values] +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 +bridge_skin_speed = 50 +infill_material_flow = 85 +infill_sparse_density = 10 +layer_height = 0.3 +layer_height_0 = 0.4 +line_width = 0.4 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 7 +retraction_prime_speed = 15 +retraction_speed = 50 +speed_infill = 40 +speed_layer_0 = 15 +speed_print = 20 +speed_support = =speed_print +speed_travel = 150 +speed_wall = =speed_print +wall_line_width_x = 0.4 +wall_material_flow = 85 + 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 new file mode 100644 index 0000000000..c5574e0dfd --- /dev/null +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg @@ -0,0 +1,40 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Fine Quality +version = 4 + +[metadata] +material = xyzprinting_pahtcf15 +quality_type = fine +setting_version = 22 +type = quality +variant = Hardened Steel High Temp. 0.6mm Nozzle +weight = 0 + +[values] +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 +bridge_skin_speed = 50 +infill_material_flow = 85 +infill_sparse_density = 10 +layer_height = 0.1 +layer_height_0 = 0.2 +line_width = 0.4 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 7 +retraction_prime_speed = 15 +retraction_speed = 50 +speed_infill = 40 +speed_layer_0 = 15 +speed_print = 20 +speed_support = =speed_print +speed_travel = 150 +speed_wall = =speed_print +wall_line_width_x = 0.4 +wall_material_flow = 85 + 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 new file mode 100644 index 0000000000..7c75c4db5a --- /dev/null +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg @@ -0,0 +1,40 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Normal Quality +version = 4 + +[metadata] +material = xyzprinting_pahtcf15 +quality_type = normal +setting_version = 22 +type = quality +variant = Hardened Steel High Temp. 0.6mm Nozzle +weight = -1 + +[values] +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 +bridge_skin_speed = 50 +infill_material_flow = 85 +infill_sparse_density = 10 +layer_height = 0.2 +layer_height_0 = 0.3 +line_width = 0.4 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 7 +retraction_prime_speed = 15 +retraction_speed = 50 +speed_infill = 40 +speed_layer_0 = 15 +speed_print = 20 +speed_support = =speed_print +speed_travel = 150 +speed_wall = =speed_print +wall_line_width_x = 0.4 +wall_material_flow = 85 + 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 new file mode 100644 index 0000000000..f012edda14 --- /dev/null +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg @@ -0,0 +1,33 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Coarse Quality +version = 4 + +[metadata] +material = xyzprinting_pc +quality_type = coarse +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -3 + +[values] +acceleration_infill = 1500.0 +bridge_skin_speed = 100 +infill_sparse_density = 10 +layer_height = 0.4 +layer_height_0 = 0.4 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 3.0 +retraction_prime_speed = 15 +retraction_speed = 50 +speed_infill = =speed_print +speed_print = 40 +speed_support = =speed_print +speed_travel = 150 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..b9f314ac65 --- /dev/null +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg @@ -0,0 +1,33 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Draft Quality +version = 4 + +[metadata] +material = xyzprinting_pc +quality_type = draft +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -2 + +[values] +acceleration_infill = 1500.0 +bridge_skin_speed = 100 +infill_sparse_density = 10 +layer_height = 0.3 +layer_height_0 = 0.4 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 3.0 +retraction_prime_speed = 15 +retraction_speed = 50 +speed_infill = =speed_print +speed_print = 40 +speed_support = =speed_print +speed_travel = 150 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..e8606611d7 --- /dev/null +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg @@ -0,0 +1,33 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Fine Quality +version = 4 + +[metadata] +material = xyzprinting_pc +quality_type = fine +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = 0 + +[values] +acceleration_infill = 1500.0 +bridge_skin_speed = 100 +infill_sparse_density = 10 +layer_height = 0.1 +layer_height_0 = 0.2 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 3.0 +retraction_prime_speed = 15 +retraction_speed = 50 +speed_infill = =speed_print +speed_print = 40 +speed_support = =speed_print +speed_travel = 150 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..b91caf62a4 --- /dev/null +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg @@ -0,0 +1,33 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Normal Quality +version = 4 + +[metadata] +material = xyzprinting_pc +quality_type = normal +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -1 + +[values] +acceleration_infill = 1500.0 +bridge_skin_speed = 100 +infill_sparse_density = 10 +layer_height = 0.2 +layer_height_0 = 0.30 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 3.0 +retraction_prime_speed = 15 +retraction_speed = 50 +speed_infill = =speed_print +speed_print = 40 +speed_support = =speed_print +speed_travel = 150 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..a1c197e007 --- /dev/null +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg @@ -0,0 +1,40 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Coarse Quality +version = 4 + +[metadata] +material = xyzprinting_pc +quality_type = coarse +setting_version = 22 +type = quality +variant = Hardened Steel High Temp. 0.6mm Nozzle +weight = -3 + +[values] +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 +adhesion_type = brim +bridge_skin_speed = 100 +infill_line_width = 0.6 +infill_sparse_density = 10 +layer_height = 0.4 +layer_height_0 = 0.4 +line_width = 0.6 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 5.5 +retraction_prime_speed = 15 +retraction_speed = 50 +speed_infill = =speed_print +speed_layer_0 = 15 +speed_print = 40 +speed_support = =speed_print +speed_travel = 150 +speed_wall = =speed_print +wall_line_width_x = 0.6 + 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 new file mode 100644 index 0000000000..a8345d3ea2 --- /dev/null +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg @@ -0,0 +1,40 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Draft Quality +version = 4 + +[metadata] +material = xyzprinting_pc +quality_type = draft +setting_version = 22 +type = quality +variant = Hardened Steel High Temp. 0.6mm Nozzle +weight = -2 + +[values] +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 +adhesion_type = brim +bridge_skin_speed = 100 +infill_line_width = 0.6 +infill_sparse_density = 10 +layer_height = 0.3 +layer_height_0 = 0.4 +line_width = 0.6 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 5.5 +retraction_prime_speed = 15 +retraction_speed = 50 +speed_infill = =speed_print +speed_layer_0 = 15 +speed_print = 40 +speed_support = =speed_print +speed_travel = 150 +speed_wall = =speed_print +wall_line_width_x = 0.6 + 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 new file mode 100644 index 0000000000..4dfbf5b0a2 --- /dev/null +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg @@ -0,0 +1,40 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Fine Quality +version = 4 + +[metadata] +material = xyzprinting_pc +quality_type = fine +setting_version = 22 +type = quality +variant = Hardened Steel High Temp. 0.6mm Nozzle +weight = 0 + +[values] +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 +adhesion_type = brim +bridge_skin_speed = 100 +infill_line_width = 0.6 +infill_sparse_density = 10 +layer_height = 0.1 +layer_height_0 = 0.2 +line_width = 0.6 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 5.5 +retraction_prime_speed = 15 +retraction_speed = 50 +speed_infill = =speed_print +speed_layer_0 = 15 +speed_print = 40 +speed_support = =speed_print +speed_travel = 150 +speed_wall = =speed_print +wall_line_width_x = 0.6 + 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 new file mode 100644 index 0000000000..da6b3e2bb6 --- /dev/null +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg @@ -0,0 +1,40 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Normal Quality +version = 4 + +[metadata] +material = xyzprinting_pc +quality_type = normal +setting_version = 22 +type = quality +variant = Hardened Steel High Temp. 0.6mm Nozzle +weight = -1 + +[values] +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 +adhesion_type = brim +bridge_skin_speed = 100 +infill_line_width = 0.6 +infill_sparse_density = 10 +layer_height = 0.2 +layer_height_0 = 0.30 +line_width = 0.6 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 5.5 +retraction_prime_speed = 15 +retraction_speed = 50 +speed_infill = =speed_print +speed_layer_0 = 15 +speed_print = 40 +speed_support = =speed_print +speed_travel = 150 +speed_wall = =speed_print +wall_line_width_x = 0.6 + 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 new file mode 100644 index 0000000000..e39dea3695 --- /dev/null +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg @@ -0,0 +1,37 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Coarse Quality +version = 4 + +[metadata] +material = xyzprinting_petcf15 +quality_type = coarse +setting_version = 22 +type = quality +variant = Hardened Steel High Temp. 0.6mm Nozzle +weight = -3 + +[values] +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 +bridge_skin_speed = 50 +infill_sparse_density = 10 +layer_height = 0.4 +layer_height_0 = 0.4 +material_bed_temperature = 70 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 7 +retraction_prime_speed = =retraction_speed +retraction_speed = 50 +speed_infill = 30 +speed_layer_0 = 15 +speed_print = 30 +speed_support = =speed_print +speed_travel = 150 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..28e232b3cc --- /dev/null +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg @@ -0,0 +1,37 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Draft Quality +version = 4 + +[metadata] +material = xyzprinting_petcf15 +quality_type = draft +setting_version = 22 +type = quality +variant = Hardened Steel High Temp. 0.6mm Nozzle +weight = -2 + +[values] +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 +bridge_skin_speed = 50 +infill_sparse_density = 10 +layer_height = 0.3 +layer_height_0 = 0.4 +material_bed_temperature = 70 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 7 +retraction_prime_speed = =retraction_speed +retraction_speed = 50 +speed_infill = 30 +speed_layer_0 = 15 +speed_print = 30 +speed_support = =speed_print +speed_travel = 150 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..ca6ac38c98 --- /dev/null +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg @@ -0,0 +1,37 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Fine Quality +version = 4 + +[metadata] +material = xyzprinting_petcf15 +quality_type = fine +setting_version = 22 +type = quality +variant = Hardened Steel High Temp. 0.6mm Nozzle +weight = 0 + +[values] +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 +bridge_skin_speed = 50 +infill_sparse_density = 10 +layer_height = 0.1 +layer_height_0 = 0.2 +material_bed_temperature = 70 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 7 +retraction_prime_speed = =retraction_speed +retraction_speed = 50 +speed_infill = 30 +speed_layer_0 = 15 +speed_print = 30 +speed_support = =speed_print +speed_travel = 150 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..d86fec1184 --- /dev/null +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg @@ -0,0 +1,37 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Normal Quality +version = 4 + +[metadata] +material = xyzprinting_petcf15 +quality_type = normal +setting_version = 22 +type = quality +variant = Hardened Steel High Temp. 0.6mm Nozzle +weight = -1 + +[values] +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 +bridge_skin_speed = 50 +infill_sparse_density = 10 +layer_height = 0.2 +layer_height_0 = 0.3 +material_bed_temperature = 70 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 7 +retraction_prime_speed = =retraction_speed +retraction_speed = 50 +speed_infill = 30 +speed_layer_0 = 15 +speed_print = 30 +speed_support = =speed_print +speed_travel = 150 +speed_wall = =speed_print + 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 5e531e1c24..f41645ef5a 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_1p0_pro +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_petg +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 20 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.5 retraction_speed = 25 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 20 +speed_travel = 100 +speed_wall = =speed_print + 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 402469864b..0b62de3512 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_1p0_pro +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_petg +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 20 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.5 retraction_speed = 25 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 20 +speed_travel = 100 +speed_wall = =speed_print + 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 de7ffe8913..252e0ee232 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_1p0_pro +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_petg +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 20 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.5 retraction_speed = 25 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 20 +speed_travel = 100 +speed_wall = =speed_print + 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 67fdb2717e..f2c540043f 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_1p0_pro +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_petg +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 20 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.5 retraction_speed = 25 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 20 +speed_travel = 100 +speed_wall = =speed_print + 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 2e2fa7cc04..8ebdd98ce2 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_petg +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_wall = 35 -speed_print = 30 -speed_topbottom = 10 -speed_infill = 50 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.5 retraction_speed = 25 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 50 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = 35 + 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 cfe072e728..135bb9412d 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_petg +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_wall = 35 -speed_print = 30 -speed_topbottom = 10 -speed_infill = 50 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.5 retraction_speed = 25 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 50 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = 35 + 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 d90ff6c758..8367001312 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_petg +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_wall = 35 -speed_print = 30 -speed_topbottom = 10 -speed_infill = 50 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.5 retraction_speed = 25 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 50 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = 35 + 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 cae759d562..e79478cef5 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_petg +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_wall = 35 -speed_print = 30 -speed_topbottom = 10 -speed_infill = 50 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.5 retraction_speed = 25 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 50 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = 35 + 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 345ca1a827..f8292483ad 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_petg +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 3.5 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 99fcaa34ac..dbc56a9ba1 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_petg +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 3.5 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 0159dbfa9a..f1db488d9a 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_petg +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 3.5 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 d30f928e17..d1795c0372 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_petg +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.3 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 3.5 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 2366baac31..33e2e70d18 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_petg +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 3.5 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 56ee92cfb1..06ad2ea0fc 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_petg +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 3.5 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 4e02e76e9e..d924074ab3 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_petg +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 3.5 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 435145303a..8f7d4487d4 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_petg +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.3 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 3.5 retraction_speed = 20 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 27a204ce55..c1f6a54560 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_petg +quality_type = coarse +setting_version = 22 +type = quality variant = Stainless Steel 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 0a01a5ff1a..b149a594dd 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_petg +quality_type = draft +setting_version = 22 +type = quality variant = Stainless Steel 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 07447aa336..526acc21a9 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_petg +quality_type = fine +setting_version = 22 +type = quality variant = Stainless Steel 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 78de24173e..11c99afd77 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_petg +quality_type = normal +setting_version = 22 +type = quality variant = Stainless Steel 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..e209a4a2fd --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Coarse Quality +version = 4 + +[metadata] +material = xyzprinting_petg +quality_type = coarse +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -3 + +[values] +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.4 +layer_height_0 = 0.4 +material_bed_temperature = 70 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 3 +retraction_prime_speed = =retraction_speed +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..7233571ca9 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Draft Quality +version = 4 + +[metadata] +material = xyzprinting_petg +quality_type = draft +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -2 + +[values] +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.3 +layer_height_0 = 0.4 +material_bed_temperature = 70 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 3 +retraction_prime_speed = =retraction_speed +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..2d57b58b46 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Fine Quality +version = 4 + +[metadata] +material = xyzprinting_petg +quality_type = fine +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = 0 + +[values] +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.1 +layer_height_0 = 0.2 +material_bed_temperature = 70 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 3 +retraction_prime_speed = =retraction_speed +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..c447696fd2 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Normal Quality +version = 4 + +[metadata] +material = xyzprinting_petg +quality_type = normal +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -1 + +[values] +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.2 +layer_height_0 = 0.30 +material_bed_temperature = 70 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 3 +retraction_prime_speed = =retraction_speed +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print + 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 e922a2da6f..ceba9259a2 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_super +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_petg +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 60 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = 30 -speed_topbottom = 10 -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = 25 skirt_brim_speed = =speed_support -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 60 +speed_support = 30 +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 303090d266..f43b8eaca8 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_super +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_petg +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 60 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = 30 -speed_topbottom = 10 -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = 25 skirt_brim_speed = =speed_support -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 60 +speed_support = 30 +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 87b7ac3c68..b08bdcdfe3 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_super +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_petg +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 60 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = 30 -speed_topbottom = 10 -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = 25 skirt_brim_speed = =speed_support -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 60 +speed_support = 30 +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 0bd9dd5625..c8751ef51e 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_super +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_petg +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 60 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = 30 -speed_topbottom = 10 -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = 25 skirt_brim_speed = =speed_support -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 60 +speed_support = 30 +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 75972101e6..c2768833ea 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_1p0_pro +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 20 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 20 +speed_travel = 100 +speed_wall = =speed_print + 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 2b9a568f4c..16a49bea43 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_1p0_pro +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_pla +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 20 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 20 +speed_travel = 100 +speed_wall = =speed_print + 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 d72d5a0929..6d5d776366 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_1p0_pro +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_pla +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 20 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 20 +speed_travel = 100 +speed_wall = =speed_print + 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 f73e0c35b7..f0631cd335 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_1p0_pro +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_pla +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 20 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 20 +speed_travel = 100 +speed_wall = =speed_print + 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 21ecc91bda..581d5cc11f 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 65 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.5 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 65 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 62b59ceed7..a3c4616ce2 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_pla +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 65 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.5 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 65 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 b42627879c..582f9f2431 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_pla +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 65 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.5 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 65 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 1f28e50af5..280beaffc5 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_pla +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 65 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.5 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 65 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 df7b6136e0..bc55d669bb 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 82279c9794..e785d674d8 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_pla +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 7f34eabc71..72faa03585 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_pla +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 ae26a479d0..503d268491 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_pla +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.3 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 6cb64326ba..d82b7a650b 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 67b3394834..f6bb8f9d6c 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_pla +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 b6128f2108..0dd024cb10 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_pla +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 9e72b54974..f74653aaa5 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_pla +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.3 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 86e350d9c8..92b3a3b202 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Stainless Steel 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 9778f2bea8..b9cd16449d 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_pla +quality_type = draft +setting_version = 22 +type = quality variant = Stainless Steel 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 -retraction_speed = =speed_print retraction_prime_speed = =retraction_speed +retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 b3867cc83d..fefdf4b01c 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_pla +quality_type = fine +setting_version = 22 +type = quality variant = Stainless Steel 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 63ee41e19c..c297a7c5b9 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_pla +quality_type = normal +setting_version = 22 +type = quality variant = Stainless Steel 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..562745810b --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg @@ -0,0 +1,34 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Coarse Quality +version = 4 + +[metadata] +material = xyzprinting_pla +quality_type = coarse +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -3 + +[values] +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.4 +layer_height_0 = 0.4 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 4.5 +retraction_prime_speed = 15 +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..2f7e354021 --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg @@ -0,0 +1,34 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Draft Quality +version = 4 + +[metadata] +material = xyzprinting_pla +quality_type = draft +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -2 + +[values] +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.3 +layer_height_0 = 0.4 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 4.5 +retraction_prime_speed = 15 +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..a2c8f9026e --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg @@ -0,0 +1,34 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Fine Quality +version = 4 + +[metadata] +material = xyzprinting_pla +quality_type = fine +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = 0 + +[values] +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.1 +layer_height_0 = 0.2 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 4.5 +retraction_prime_speed = 15 +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..c3e915b7cf --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg @@ -0,0 +1,34 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Normal Quality +version = 4 + +[metadata] +material = xyzprinting_pla +quality_type = normal +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -1 + +[values] +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.2 +layer_height_0 = 0.30 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 4.5 +retraction_prime_speed = 15 +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_travel = 80 +speed_wall = =speed_print + 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 cd0721aaed..089bd58712 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_super +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_topbottom = 10 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.5 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 e67a978a97..4f29f7b89d 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_super +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_pla +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_topbottom = 10 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.5 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 3807cb4303..4c7ce05420 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_super +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_pla +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_topbottom = 10 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.5 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 2df983040b..956491ca05 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_super +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_pla +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_topbottom = 10 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.5 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..effe0ae6ce --- /dev/null +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg @@ -0,0 +1,38 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Coarse Quality +version = 4 + +[metadata] +material = xyzprinting_ppgf30 +quality_type = coarse +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -3 + +[values] +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +bridge_skin_speed = 50 +brim_width = 20.0 +infill_material_flow = 85 +infill_sparse_density = 10 +layer_height = 0.4 +layer_height_0 = 0.4 +material_bed_temperature = 100 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 6 +retraction_prime_speed = 15 +retraction_speed = 50 +speed_infill = 30 +speed_print = 20 +speed_support = =speed_print +speed_travel = 200 +speed_wall = =speed_print +wall_material_flow = 85 + 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 new file mode 100644 index 0000000000..d376594bf8 --- /dev/null +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg @@ -0,0 +1,38 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Draft Quality +version = 4 + +[metadata] +material = xyzprinting_ppgf30 +quality_type = draft +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -2 + +[values] +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +bridge_skin_speed = 50 +brim_width = 20.0 +infill_material_flow = 85 +infill_sparse_density = 10 +layer_height = 0.3 +layer_height_0 = 0.4 +material_bed_temperature = 100 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 6 +retraction_prime_speed = 15 +retraction_speed = 50 +speed_infill = 30 +speed_print = 20 +speed_support = =speed_print +speed_travel = 200 +speed_wall = =speed_print +wall_material_flow = 85 + 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 new file mode 100644 index 0000000000..9e7c659b9f --- /dev/null +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg @@ -0,0 +1,33 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Fine Quality +version = 4 + +[metadata] +material = xyzprinting_ppgf30 +quality_type = fine +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = 0 + +[values] +bridge_skin_speed = 50 +infill_sparse_density = 10 +layer_height = 0.1 +layer_height_0 = 0.2 +material_bed_temperature = 90 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 6 +retraction_prime_speed = 15 +retraction_speed = 50 +speed_infill = 30 +speed_print = 20 +speed_support = =speed_print +speed_travel = 200 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..9442f440bb --- /dev/null +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg @@ -0,0 +1,38 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Normal Quality +version = 4 + +[metadata] +material = xyzprinting_ppgf30 +quality_type = normal +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -1 + +[values] +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +bridge_skin_speed = 50 +brim_width = 20.0 +infill_material_flow = 85 +infill_sparse_density = 10 +layer_height = 0.2 +layer_height_0 = 0.3 +material_bed_temperature = 100 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 6 +retraction_prime_speed = 15 +retraction_speed = 50 +speed_infill = 30 +speed_print = 20 +speed_support = =speed_print +speed_travel = 200 +speed_wall = =speed_print +wall_material_flow = 85 + 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 ba6d8a397a..b9f7178137 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_1p0_pro +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_tough_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 20 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 20 +speed_travel = 100 +speed_wall = =speed_print + 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 3a18e37e32..5ab51306a3 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_1p0_pro +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_tough_pla +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 20 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 20 +speed_travel = 100 +speed_wall = =speed_print + 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 5fe402c160..24026eda66 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_1p0_pro +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_tough_pla +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 20 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 20 +speed_travel = 100 +speed_wall = =speed_print + 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 36640bc57a..fc8c33bcaa 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_1p0_pro +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_tough_pla +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 20 -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 20 +speed_travel = 100 +speed_wall = =speed_print + 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 821f8d28a7..c1e5bc2ab6 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_tough_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 65 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.5 retraction_speed = 30 skirt_brim_speed = 30 -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 65 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 3b02b86f2a..bd11bb9b2f 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_tough_pla +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 65 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.5 retraction_speed = 30 skirt_brim_speed = 30 -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 65 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 f30a83c6f8..7522344ea1 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_tough_pla +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 65 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.5 retraction_speed = 30 skirt_brim_speed = 30 -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 65 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 21d8fa9d1a..a5b98f0be7 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_tough_pla +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 65 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.5 retraction_speed = 30 skirt_brim_speed = 30 -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 65 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 eeaf2fe528..811f816545 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_tough_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 86a84dbe32..b7ca4dad12 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_tough_pla +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 0f399e8098..8ff536484e 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_tough_pla +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 87d3f8c1d6..7a087f8de7 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_tough_pla +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.3 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 3a119db307..c820fb7374 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_tough_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 478a469ec4..f67c83b8a1 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_tough_pla +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 0417eda4f1..3d0c91f8d0 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_tough_pla +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 fbc48b1ca5..8129fa14bc 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_tough_pla +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.3 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = 15 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 2e33f02edb..6d8294f321 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_tough_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Stainless Steel 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 1b54aa0132..6671af7abb 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_tough_pla +quality_type = draft +setting_version = 22 +type = quality variant = Stainless Steel 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 ee14f606e5..5faad48dee 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_tough_pla +quality_type = fine +setting_version = 22 +type = quality variant = Stainless Steel 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 9d7669f721..cb7662e85b 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 @@ -1,29 +1,30 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_tough_pla +quality_type = normal +setting_version = 22 +type = quality variant = Stainless Steel 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_wall = =speed_print -speed_topbottom = 10 -speed_infill = 60 -speed_support = =speed_print -speed_travel = 100 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.0 retraction_speed = =speed_print skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 100 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..2f374f711c --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg @@ -0,0 +1,35 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Coarse Quality +version = 4 + +[metadata] +material = xyzprinting_tough_pla +quality_type = coarse +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -3 + +[values] +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.4 +layer_height_0 = 0.4 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 4.5 +retraction_prime_speed = 15 +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 80 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..df90cef5e1 --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg @@ -0,0 +1,35 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Draft Quality +version = 4 + +[metadata] +material = xyzprinting_tough_pla +quality_type = draft +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -2 + +[values] +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.3 +layer_height_0 = 0.4 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 4.5 +retraction_prime_speed = 15 +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 80 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..e16fecd809 --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg @@ -0,0 +1,35 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Fine Quality +version = 4 + +[metadata] +material = xyzprinting_tough_pla +quality_type = fine +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = 0 + +[values] +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.1 +layer_height_0 = 0.2 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 4.5 +retraction_prime_speed = 15 +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 80 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..c301df97ec --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg @@ -0,0 +1,35 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Normal Quality +version = 4 + +[metadata] +material = xyzprinting_tough_pla +quality_type = normal +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -1 + +[values] +adhesion_type = skirt +bridge_skin_speed = 20 +infill_sparse_density = 10 +layer_height = 0.2 +layer_height_0 = 0.30 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 4.5 +retraction_prime_speed = 15 +retraction_speed = 20 +speed_infill = 60 +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 80 +speed_wall = =speed_print + 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 be7a300af6..07f2d2e970 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_super +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_tough_pla +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_topbottom = 10 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.5 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 23596bd07e..d7d418b886 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_super +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_tough_pla +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_topbottom = 10 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.5 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 1fef58c478..b91c31863a 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_super +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_tough_pla +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_topbottom = 10 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.5 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 4c49317e34..b5f25b6438 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_super +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_tough_pla +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 30 -speed_topbottom = 10 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = =speed_print -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 5.5 retraction_speed = 50 skirt_brim_speed = =speed_print -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 30 +speed_support = =speed_print +speed_topbottom = 10 +speed_travel = 120 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..25f0d8bf96 --- /dev/null +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Coarse Quality +version = 4 + +[metadata] +material = xyzprinting_tpu +quality_type = coarse +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -3 + +[values] +acceleration_infill = 1500.0 +acceleration_wall = 1000.0 +bridge_skin_speed = 100 +brim_width = 5.0 +infill_sparse_density = 10 +layer_height = 0.4 +layer_height_0 = 0.4 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 6 +retraction_prime_speed = =15 +retraction_speed = 50 +speed_infill = =speed_print +speed_print = 15 +speed_support = =speed_print +speed_travel = 200 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..f29002d365 --- /dev/null +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Draft Quality +version = 4 + +[metadata] +material = xyzprinting_tpu +quality_type = draft +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -2 + +[values] +acceleration_infill = 1500.0 +acceleration_wall = 1000.0 +bridge_skin_speed = 100 +brim_width = 5.0 +infill_sparse_density = 10 +layer_height = 0.3 +layer_height_0 = 0.4 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 6 +retraction_prime_speed = =15 +retraction_speed = 50 +speed_infill = =speed_print +speed_print = 15 +speed_support = =speed_print +speed_travel = 200 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..99d716b04c --- /dev/null +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Fine Quality +version = 4 + +[metadata] +material = xyzprinting_tpu +quality_type = fine +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = 0 + +[values] +acceleration_infill = 1500.0 +acceleration_wall = 1000.0 +bridge_skin_speed = 100 +brim_width = 5.0 +infill_sparse_density = 10 +layer_height = 0.1 +layer_height_0 = 0.2 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 6 +retraction_prime_speed = =15 +retraction_speed = 50 +speed_infill = =speed_print +speed_print = 15 +speed_support = =speed_print +speed_travel = 200 +speed_wall = =speed_print + 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 new file mode 100644 index 0000000000..32603cbb9b --- /dev/null +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Normal Quality +version = 4 + +[metadata] +material = xyzprinting_tpu +quality_type = normal +setting_version = 22 +type = quality +variant = Hardened Steel 0.4mm Nozzle +weight = -1 + +[values] +acceleration_infill = 1500.0 +acceleration_wall = 1000.0 +bridge_skin_speed = 100 +brim_width = 5.0 +infill_sparse_density = 10 +layer_height = 0.2 +layer_height_0 = 0.3 +material_bed_temperature = 60 +material_bed_temperature_layer_0 = =material_bed_temperature +material_diameter = 1.75 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature +retraction_amount = 6 +retraction_prime_speed = =15 +retraction_speed = 50 +speed_infill = =speed_print +speed_print = 15 +speed_support = =speed_print +speed_travel = 200 +speed_wall = =speed_print + 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 cdd10c037f..1a842c234c 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_super +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 material = xyzprinting_tpu +quality_type = coarse +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -3 [values] +brim_width = 5.0 +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 15 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = 30 -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = 30 skirt_brim_speed = 30 -brim_width = 5.0 -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 15 +speed_support = 30 +speed_travel = 120 +speed_wall = =speed_print + 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 c58cb58a90..d5f733f24e 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_super +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 material = xyzprinting_tpu +quality_type = draft +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -2 [values] +brim_width = 5.0 +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 15 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = 30 -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = 30 skirt_brim_speed = 30 -brim_width = 5.0 -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 15 +speed_support = 30 +speed_travel = 120 +speed_wall = =speed_print + 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 94d879d9b7..81d50301b5 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_super +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 material = xyzprinting_tpu +quality_type = fine +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = 0 [values] +brim_width = 5.0 +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 15 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = 30 -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = 30 skirt_brim_speed = 30 -brim_width = 5.0 -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 15 +speed_support = 30 +speed_travel = 120 +speed_wall = =speed_print + 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 326d783309..48ee7515a6 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 @@ -1,30 +1,31 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_super +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 material = xyzprinting_tpu +quality_type = normal +setting_version = 22 +type = quality variant = Copper 0.4mm Nozzle +weight = -1 [values] +brim_width = 5.0 +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.35 material_bed_temperature_layer_0 = =material_bed_temperature -material_print_temperature_layer_0 = =material_print_temperature -material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature -speed_print = 15 -speed_wall = =speed_print -speed_infill = =speed_print -speed_support = 30 -speed_travel = 120 +material_initial_print_temperature = =material_print_temperature +material_print_temperature_layer_0 = =material_print_temperature retraction_amount = 4.0 retraction_speed = 30 skirt_brim_speed = 30 -brim_width = 5.0 -infill_sparse_density = 10 \ No newline at end of file +speed_infill = =speed_print +speed_print = 15 +speed_support = 30 +speed_travel = 120 +speed_wall = =speed_print + 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 c10c9b4cce..f10186620c 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_1p0_pro +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -infill_sparse_density = 10 \ No newline at end of file + 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 ad37a22dc6..441f20b96e 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_1p0_pro +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.3 -infill_sparse_density = 10 \ No newline at end of file + 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 4bc48c97e5..8aed00c108 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_1p0_pro +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -infill_sparse_density = 10 \ No newline at end of file + 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 ca3c4e9688..a6cce09509 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_1p0_pro +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -infill_sparse_density = 10 \ No newline at end of file + 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 009858d718..627a583163 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -infill_sparse_density = 10 \ No newline at end of file + 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 29347c4f16..adf3edf197 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.3 -infill_sparse_density = 10 \ No newline at end of file + 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 0ebdc130e3..73096761d4 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -infill_sparse_density = 10 \ No newline at end of file + 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 1894adf7e5..6a59c3f495 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_1p0a_pro +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -infill_sparse_density = 10 \ No newline at end of file + 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 bbee3c2010..2ab9c6dd3c 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -infill_sparse_density = 10 \ No newline at end of file + 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 ed66ae76d3..125dbe516e 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.3 -infill_sparse_density = 10 \ No newline at end of file + 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 1a7270df73..dceb31ce0b 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -infill_sparse_density = 10 \ No newline at end of file + 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 79ba44e0c7..948a405306 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_pro_xeplus +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -infill_sparse_density = 10 \ No newline at end of file + 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 c69b6b5319..b79a41ac4e 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -infill_sparse_density = 10 \ No newline at end of file + 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 b7db17a61d..13760e7dee 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.3 -infill_sparse_density = 10 \ No newline at end of file + 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 375c3c024d..e13b324c14 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -infill_sparse_density = 10 \ No newline at end of file + 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 859016ff32..6d9434d0c8 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_pro_xplus +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -infill_sparse_density = 10 \ No newline at end of file + 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 e3ed234453..7f7d839e97 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -infill_sparse_density = 10 \ No newline at end of file + 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 67774fda4d..031ba33f7f 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.3 -infill_sparse_density = 10 \ No newline at end of file + 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 43f9c5fb90..44fc013460 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -infill_sparse_density = 10 \ No newline at end of file + 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 84f781a6c1..468c89d14a 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_jr_w_pro +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -infill_sparse_density = 10 \ No newline at end of file + 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 new file mode 100644 index 0000000000..4c17bca4ef --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Fine Quality +version = 4 + +[metadata] +global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = 0 + +[values] +infill_sparse_density = 10 +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 + 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 new file mode 100644 index 0000000000..70688d38bf --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Normal Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -1 + +[values] +infill_sparse_density = 10 +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 + 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 new file mode 100644 index 0000000000..d491bac5ea --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 + +[values] +infill_sparse_density = 10 +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 + 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 new file mode 100644 index 0000000000..a9131265b9 --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Coarse Quality +version = 4 + +[metadata] +global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -3 + +[values] +infill_sparse_density = 10 +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 + 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 5cc8c167b1..266cdf8bcd 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Fine Quality definition = xyzprinting_da_vinci_super +name = Fine Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 0 global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = 0 [values] +infill_sparse_density = 10 layer_height = 0.1 layer_height_0 = 0.2 -infill_sparse_density = 10 \ No newline at end of file + 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 c05391efe0..4ec758bc56 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Normal Quality definition = xyzprinting_da_vinci_super +name = Normal Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = -1 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = -1 [values] +infill_sparse_density = 10 layer_height = 0.2 layer_height_0 = 0.3 -infill_sparse_density = 10 \ No newline at end of file + 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 46f76b4d1d..7dd545c180 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Draft Quality definition = xyzprinting_da_vinci_super +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = draft -weight = -2 global_quality = True +quality_type = draft +setting_version = 22 +type = quality +weight = -2 [values] +infill_sparse_density = 10 layer_height = 0.3 layer_height_0 = 0.4 -infill_sparse_density = 10 \ No newline at end of file + 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 cfdbce64d3..e9f9c5548f 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 @@ -1,16 +1,17 @@ [general] -version = 4 -name = Coarse Quality definition = xyzprinting_da_vinci_super +name = Coarse Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = coarse -weight = -3 global_quality = True +quality_type = coarse +setting_version = 22 +type = quality +weight = -3 [values] +infill_sparse_density = 10 layer_height = 0.4 layer_height_0 = 0.4 -infill_sparse_density = 10 \ No newline at end of file + 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 c1354c38da..29c4883c8a 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.20_lay0.05 definition = zav_base +name = abs_noz0.20_lay0.05 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_005 -material = generic_abs -variant = 0.20mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.20mm_ZAV_Nozzle [values] wall_thickness = =line_width*5 + 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 8501496af0..02835da022 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.20_lay0.10 definition = zav_base +name = abs_noz0.20_lay0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_010 -material = generic_abs -variant = 0.20mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.20mm_ZAV_Nozzle [values] wall_thickness = =line_width*5 + 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 8fd70aaadd..adcfdf8083 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.20_lay0.15 definition = zav_base +name = abs_noz0.20_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_015 -material = generic_abs -variant = 0.20mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.20mm_ZAV_Nozzle [values] wall_thickness = =line_width*5 + 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 f12e500eea..228205bb66 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.25_lay0.05 definition = zav_base +name = abs_noz0.25_lay0.05 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_005 -material = generic_abs -variant = 0.25mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.25mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 ac7c9eceb2..4a1e655226 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.25_lay0.10 definition = zav_base +name = abs_noz0.25_lay0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_010 -material = generic_abs -variant = 0.25mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.25mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 dd96e37f62..2cae8e47a7 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.25_lay0.15 definition = zav_base +name = abs_noz0.25_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_015 -material = generic_abs -variant = 0.25mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.25mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 733fc7b01b..2bffc1cdbb 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.25_lay0.20 definition = zav_base +name = abs_noz0.25_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_020 -material = generic_abs -variant = 0.25mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.25mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 6a1ba17ba6..be2ffd421a 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.30_lay0.10 definition = zav_base +name = abs_noz0.30_lay0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_010 -material = generic_abs -variant = 0.30mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.30mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 d8bffeb0ce..102049778b 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.30_lay0.15 definition = zav_base +name = abs_noz0.30_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_015 -material = generic_abs -variant = 0.30mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.30mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 982680f585..046e1c87bd 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.30_lay0.20 definition = zav_base +name = abs_noz0.30_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_020 -material = generic_abs -variant = 0.30mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.30mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 7375d6325f..b88d47fa6f 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.30_lay0.25 definition = zav_base +name = abs_noz0.30_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_025 -material = generic_abs -variant = 0.30mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.30mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 113efec9ca..0bd539c4f7 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.35_lay0.10 definition = zav_base +name = abs_noz0.35_lay0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_010 -material = generic_abs -variant = 0.35mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.35mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 340e9612a1..cd9afd7a4b 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.35_lay0.15 definition = zav_base +name = abs_noz0.35_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_015 -material = generic_abs -variant = 0.35mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.35mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 ad1cd03fc6..080d63fea0 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.35_lay0.20 definition = zav_base +name = abs_noz0.35_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_020 -material = generic_abs -variant = 0.35mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.35mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 0a15e6d09e..a32f9f1f1d 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.35_lay0.25 definition = zav_base +name = abs_noz0.35_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_025 -material = generic_abs -variant = 0.35mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.35mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 c98f823b06..0635795d95 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.40_lay0.10 definition = zav_base +name = abs_noz0.40_lay0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_010 -material = generic_abs -variant = 0.40mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.40mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 942ea7da8a..3defa66ad5 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.40_lay0.15 definition = zav_base +name = abs_noz0.40_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_015 -material = generic_abs -variant = 0.40mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.40mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 319b7f7a0c..1b906624ee 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.40_lay0.20 definition = zav_base +name = abs_noz0.40_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_020 -material = generic_abs -variant = 0.40mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.40mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 9f31a29ed3..12a8ec6ba7 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.40_lay0.25 definition = zav_base +name = abs_noz0.40_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_025 -material = generic_abs -variant = 0.40mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.40mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 bdc83cb58b..ee41b6498b 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.40_lay0.30 definition = zav_base +name = abs_noz0.40_lay0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_030 -material = generic_abs -variant = 0.40mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.40mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 3fd67e1fa4..555fa476b0 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.45_lay0.10 definition = zav_base +name = abs_noz0.45_lay0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_010 -material = generic_abs -variant = 0.45mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.45mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 adb517d05c..c2d9bef558 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.45_lay0.15 definition = zav_base +name = abs_noz0.45_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_015 -material = generic_abs -variant = 0.45mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.45mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 5b1d96c428..11c14792d0 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.45_lay0.20 definition = zav_base +name = abs_noz0.45_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_020 -material = generic_abs -variant = 0.45mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.45mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 9bfc0dfffa..b152a1f905 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.45_lay0.25 definition = zav_base +name = abs_noz0.45_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_025 -material = generic_abs -variant = 0.45mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.45mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 93663586d3..70326714ba 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.45_lay0.30 definition = zav_base +name = abs_noz0.45_lay0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_030 -material = generic_abs -variant = 0.45mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.45mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 05f173192a..d02d437029 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.45_lay0.35 definition = zav_base +name = abs_noz0.45_lay0.35 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_035 -material = generic_abs -variant = 0.45mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.45mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 d61fa9adab..1c8ac21745 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.50_lay0.15 definition = zav_base +name = abs_noz0.50_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_015 -material = generic_abs -variant = 0.50mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.50mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 74730d6bfd..e0f9017630 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.50_lay0.20 definition = zav_base +name = abs_noz0.50_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_020 -material = generic_abs -variant = 0.50mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.50mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 69bd4d5b39..2d789cb1a8 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.50_lay0.25 definition = zav_base +name = abs_noz0.50_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_025 -material = generic_abs -variant = 0.50mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.50mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 97f15f12f9..e6ae6f2012 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.50_lay0.30 definition = zav_base +name = abs_noz0.50_lay0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_030 -material = generic_abs -variant = 0.50mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.50mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 d7d2ef00dc..aa79fa3cd1 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.50_lay0.35 definition = zav_base +name = abs_noz0.50_lay0.35 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_035 -material = generic_abs -variant = 0.50mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.50mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 d201ac0a1c..f1c171d147 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.60_lay0.15 definition = zav_base +name = abs_noz0.60_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_015 -material = generic_abs -variant = 0.60mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.60mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 f7e4dbf735..1183f56258 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.60_lay0.20 definition = zav_base +name = abs_noz0.60_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_020 -material = generic_abs -variant = 0.60mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.60mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 d5dec44c28..cd8227a794 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.60_lay0.25 definition = zav_base +name = abs_noz0.60_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_025 -material = generic_abs -variant = 0.60mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.60mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 220a01c2ad..b936a23ec2 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.60_lay0.30 definition = zav_base +name = abs_noz0.60_lay0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_030 -material = generic_abs -variant = 0.60mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.60mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 de8f6834ab..4f4fd90dea 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.60_lay0.35 definition = zav_base +name = abs_noz0.60_lay0.35 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_035 -material = generic_abs -variant = 0.60mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.60mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 fa35480c34..ab4c21d9eb 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.60_lay0.40 definition = zav_base +name = abs_noz0.60_lay0.40 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_040 -material = generic_abs -variant = 0.60mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.60mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 3a152d3d14..51fbac0be0 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.80_lay0.20 definition = zav_base +name = abs_noz0.80_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_020 -material = generic_abs -variant = 0.80mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.80mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 3d43e5b2fb..f02f6d1a3d 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.80_lay0.25 definition = zav_base +name = abs_noz0.80_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_025 -material = generic_abs -variant = 0.80mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.80mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 390356652c..575dd45b33 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.80_lay0.30 definition = zav_base +name = abs_noz0.80_lay0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_030 -material = generic_abs -variant = 0.80mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.80mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 81fe2b5d31..42ca6e9656 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.80_lay0.35 definition = zav_base +name = abs_noz0.80_lay0.35 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_035 -material = generic_abs -variant = 0.80mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.80mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 38b536082d..7cc7a48912 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz0.80_lay0.40 definition = zav_base +name = abs_noz0.80_lay0.40 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_040 -material = generic_abs -variant = 0.80mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.80mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 6c5507e9fd..a6b5631adb 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz1.00_lay0.25 definition = zav_base +name = abs_noz1.00_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_025 -material = generic_abs -variant = 1.00mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 1.00mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 9f56112a51..645c565be0 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz1.00_lay0.30 definition = zav_base +name = abs_noz1.00_lay0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_030 -material = generic_abs -variant = 1.00mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 1.00mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 26b646a04d..77df9c65ce 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz1.00_lay0.35 definition = zav_base +name = abs_noz1.00_lay0.35 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_035 -material = generic_abs -variant = 1.00mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 1.00mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 c6463c7572..1589129fec 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = abs_noz1.00_lay0.40 definition = zav_base +name = abs_noz1.00_lay0.40 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_abs quality_type = ZAV_layer_040 -material = generic_abs -variant = 1.00mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 1.00mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 3cbfedf7c7..019344886e 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.20_lay0.05 definition = zav_base +name = petg_noz0.20_lay0.05 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_005 -material = generic_petg -variant = 0.20mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.20mm_ZAV_Nozzle [values] wall_thickness = =line_width*5 + 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 4199e9bb00..fc53c3f830 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.20_lay0.10 definition = zav_base +name = petg_noz0.20_lay0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_010 -material = generic_petg -variant = 0.20mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.20mm_ZAV_Nozzle [values] wall_thickness = =line_width*5 + 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 0b09c31c41..208d90d980 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.20_lay0.15 definition = zav_base +name = petg_noz0.20_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_015 -material = generic_petg -variant = 0.20mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.20mm_ZAV_Nozzle [values] wall_thickness = =line_width*5 + 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 25090ac7e7..be84b22ab3 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.25_lay0.05 definition = zav_base +name = petg_noz0.25_lay0.05 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_005 -material = generic_petg -variant = 0.25mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.25mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 77269c0902..676f4d3a5a 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.25_lay0.10 definition = zav_base +name = petg_noz0.25_lay0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_010 -material = generic_petg -variant = 0.25mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.25mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 2dde462faa..8b43a0dfc8 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.25_lay0.15 definition = zav_base +name = petg_noz0.25_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_015 -material = generic_petg -variant = 0.25mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.25mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 01900ca6d0..c6e8abbac8 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.25_lay0.20 definition = zav_base +name = petg_noz0.25_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_020 -material = generic_petg -variant = 0.25mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.25mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 40ad5198de..9ad587cb8b 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.30_lay0.10 definition = zav_base +name = petg_noz0.30_lay0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_010 -material = generic_petg -variant = 0.30mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.30mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 3ad30b3183..2416a15f1a 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.30_lay0.15 definition = zav_base +name = petg_noz0.30_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_015 -material = generic_petg -variant = 0.30mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.30mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 237106ca7b..bf8f1edcfb 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.30_lay0.20 definition = zav_base +name = petg_noz0.30_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_020 -material = generic_petg -variant = 0.30mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.30mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 08f92ba729..c53303a943 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.30_lay0.25 definition = zav_base +name = petg_noz0.30_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_025 -material = generic_petg -variant = 0.30mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.30mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 0798a8aa93..97f46add80 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.35_lay0.10 definition = zav_base +name = petg_noz0.35_lay0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_010 -material = generic_petg -variant = 0.35mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.35mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 a32fa78e74..e955f348c3 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.35_lay0.15 definition = zav_base +name = petg_noz0.35_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_015 -material = generic_petg -variant = 0.35mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.35mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 0014ecb1b1..6636cc5df4 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.35_lay0.20 definition = zav_base +name = petg_noz0.35_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_020 -material = generic_petg -variant = 0.35mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.35mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 8863978183..80a411f4ee 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.35_lay0.25 definition = zav_base +name = petg_noz0.35_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_025 -material = generic_petg -variant = 0.35mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.35mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 7db7da5079..268a3b5fde 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.40_lay0.10 definition = zav_base +name = petg_noz0.40_lay0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_010 -material = generic_petg -variant = 0.40mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.40mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 de0c8a8124..5fc2fefe60 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.40_lay0.15 definition = zav_base +name = petg_noz0.40_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_015 -material = generic_petg -variant = 0.40mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.40mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 6c6bce6f09..1b025eff1b 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.40_lay0.20 definition = zav_base +name = petg_noz0.40_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_020 -material = generic_petg -variant = 0.40mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.40mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 f8efbbf7ae..3a1099913d 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.40_lay0.25 definition = zav_base +name = petg_noz0.40_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_025 -material = generic_petg -variant = 0.40mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.40mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 361c12ce78..ce35c74a9e 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.40_lay0.30 definition = zav_base +name = petg_noz0.40_lay0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_030 -material = generic_petg -variant = 0.40mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.40mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 4b39bbda4f..b41a1c2d77 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.45_lay0.10 definition = zav_base +name = petg_noz0.45_lay0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_010 -material = generic_petg -variant = 0.45mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.45mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 e398cba2b9..967ca447d2 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.45_lay0.15 definition = zav_base +name = petg_noz0.45_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_015 -material = generic_petg -variant = 0.45mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.45mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 7d03c0b7d9..fd6749a78a 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.45_lay0.20 definition = zav_base +name = petg_noz0.45_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_020 -material = generic_petg -variant = 0.45mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.45mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 f92e2e81d7..1f93f38971 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.45_lay0.25 definition = zav_base +name = petg_noz0.45_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_025 -material = generic_petg -variant = 0.45mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.45mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 0050e66440..f0f4746157 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.45_lay0.30 definition = zav_base +name = petg_noz0.45_lay0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_030 -material = generic_petg -variant = 0.45mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.45mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 41b4cb1842..2512eda337 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.45_lay0.35 definition = zav_base +name = petg_noz0.45_lay0.35 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_035 -material = generic_petg -variant = 0.45mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.45mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 4e60dfb539..f129210b39 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.50_lay0.15 definition = zav_base +name = petg_noz0.50_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_015 -material = generic_petg -variant = 0.50mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.50mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 b70ab25d82..0d28659b59 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.50_lay0.20 definition = zav_base +name = petg_noz0.50_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_020 -material = generic_petg -variant = 0.50mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.50mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 b33e220af8..93bd938038 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.50_lay0.25 definition = zav_base +name = petg_noz0.50_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_025 -material = generic_petg -variant = 0.50mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.50mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 c627fbbfec..a4986efd93 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.50_lay0.30 definition = zav_base +name = petg_noz0.50_lay0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_030 -material = generic_petg -variant = 0.50mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.50mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 a3ae64b90e..56150eb593 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.50_lay0.35 definition = zav_base +name = petg_noz0.50_lay0.35 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_035 -material = generic_petg -variant = 0.50mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.50mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 01de68ee5a..dcd11674bb 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.60_lay0.15 definition = zav_base +name = petg_noz0.60_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_015 -material = generic_petg -variant = 0.60mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.60mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 f477a07612..a287a857eb 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.60_lay0.20 definition = zav_base +name = petg_noz0.60_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_020 -material = generic_petg -variant = 0.60mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.60mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 1f56965bf3..c2e5f1111a 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.60_lay0.25 definition = zav_base +name = petg_noz0.60_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_025 -material = generic_petg -variant = 0.60mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.60mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 52500a8484..cbd29ceefd 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.60_lay0.30 definition = zav_base +name = petg_noz0.60_lay0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_030 -material = generic_petg -variant = 0.60mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.60mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 18f2382660..65329a712d 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.60_lay0.35 definition = zav_base +name = petg_noz0.60_lay0.35 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_035 -material = generic_petg -variant = 0.60mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.60mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 aba5d56440..fe790d3b0b 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.60_lay0.40 definition = zav_base +name = petg_noz0.60_lay0.40 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_040 -material = generic_petg -variant = 0.60mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.60mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 57b8a48e31..2fa55f2947 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.80_lay0.20 definition = zav_base +name = petg_noz0.80_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_020 -material = generic_petg -variant = 0.80mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.80mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 346739372d..1487ce9dc1 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.80_lay0.25 definition = zav_base +name = petg_noz0.80_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_025 -material = generic_petg -variant = 0.80mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.80mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 d6b8657b6c..466720c749 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.80_lay0.30 definition = zav_base +name = petg_noz0.80_lay0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_030 -material = generic_petg -variant = 0.80mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.80mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 f03cd53044..1258357326 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.80_lay0.35 definition = zav_base +name = petg_noz0.80_lay0.35 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_035 -material = generic_petg -variant = 0.80mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.80mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 ec9e251a0e..92280179de 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz0.80_lay0.40 definition = zav_base +name = petg_noz0.80_lay0.40 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_040 -material = generic_petg -variant = 0.80mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.80mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 b68bff2980..1e4765a869 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz1.00_lay0.25 definition = zav_base +name = petg_noz1.00_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_025 -material = generic_petg -variant = 1.00mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 1.00mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 d3a33e7550..8035afca89 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz1.00_lay0.30 definition = zav_base +name = petg_noz1.00_lay0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_030 -material = generic_petg -variant = 1.00mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 1.00mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 f653dca4e4..8d90e28f21 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz1.00_lay0.35 definition = zav_base +name = petg_noz1.00_lay0.35 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_035 -material = generic_petg -variant = 1.00mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 1.00mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 9e1b686777..ff1d103b51 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = petg_noz1.00_lay0.40 definition = zav_base +name = petg_noz1.00_lay0.40 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_petg quality_type = ZAV_layer_040 -material = generic_petg -variant = 1.00mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 1.00mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 0a338ae7df..7039988817 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.20_lay0.05 definition = zav_base +name = pla_noz0.20_lay0.05 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_005 -material = generic_pla -variant = 0.20mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.20mm_ZAV_Nozzle [values] wall_thickness = =line_width*5 + 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 cb44823f1a..44df8539bd 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.20_lay0.10 definition = zav_base +name = pla_noz0.20_lay0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_010 -material = generic_pla -variant = 0.20mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.20mm_ZAV_Nozzle [values] wall_thickness = =line_width*5 + 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 10d3bedc8d..4b1036b238 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.20_lay0.15 definition = zav_base +name = pla_noz0.20_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_015 -material = generic_pla -variant = 0.20mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.20mm_ZAV_Nozzle [values] wall_thickness = =line_width*5 + 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 214bd1a0b4..092f9664c6 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.25_lay0.05 definition = zav_base +name = pla_noz0.25_lay0.05 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_005 -material = generic_pla -variant = 0.25mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.25mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 d9bd3e8ad7..18aec55b97 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.25_lay0.10 definition = zav_base +name = pla_noz0.25_lay0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_010 -material = generic_pla -variant = 0.25mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.25mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 675dde0b3b..ff75c4473e 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.25_lay0.15 definition = zav_base +name = pla_noz0.25_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_015 -material = generic_pla -variant = 0.25mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.25mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 a94697a4b3..ebd407c71a 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.25_lay0.20 definition = zav_base +name = pla_noz0.25_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_020 -material = generic_pla -variant = 0.25mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.25mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 0c2a29bed4..de44e9432a 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.30_lay0.10 definition = zav_base +name = pla_noz0.30_lay0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_010 -material = generic_pla -variant = 0.30mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.30mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 449f212d8a..104ad9bb79 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.30_lay0.15 definition = zav_base +name = pla_noz0.30_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_015 -material = generic_pla -variant = 0.30mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.30mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 54e02a6054..6a65a21a3d 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.30_lay0.20 definition = zav_base +name = pla_noz0.30_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_020 -material = generic_pla -variant = 0.30mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.30mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 166bf54768..b1e6920048 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.30_lay0.25 definition = zav_base +name = pla_noz0.30_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_025 -material = generic_pla -variant = 0.30mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.30mm_ZAV_Nozzle [values] wall_thickness = =line_width*4 + 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 2a8cd7368a..72aef2b2de 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.35_lay0.10 definition = zav_base +name = pla_noz0.35_lay0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_010 -material = generic_pla -variant = 0.35mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.35mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 76f0038dcf..61a004c456 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.35_lay0.15 definition = zav_base +name = pla_noz0.35_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_015 -material = generic_pla -variant = 0.35mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.35mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 244ce21eb2..7d81acca8a 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.35_lay0.20 definition = zav_base +name = pla_noz0.35_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_020 -material = generic_pla -variant = 0.35mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.35mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 2fa883e4c0..56c1623625 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.35_lay0.25 definition = zav_base +name = pla_noz0.35_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_025 -material = generic_pla -variant = 0.35mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.35mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 a347266881..27d7f6a72d 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.40_lay0.10 definition = zav_base +name = pla_noz0.40_lay0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_010 -material = generic_pla -variant = 0.40mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.40mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 4fad842b5d..1a4390c9b0 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.40_lay0.15 definition = zav_base +name = pla_noz0.40_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_015 -material = generic_pla -variant = 0.40mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.40mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 51f7c1b8fb..d168ee1021 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.40_lay0.20 definition = zav_base +name = pla_noz0.40_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_020 -material = generic_pla -variant = 0.40mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.40mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 67851938e7..d98250ffef 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.40_lay0.25 definition = zav_base +name = pla_noz0.40_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_025 -material = generic_pla -variant = 0.40mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.40mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 64ab4c143e..b84b2247ea 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.40_lay0.30 definition = zav_base +name = pla_noz0.40_lay0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_030 -material = generic_pla -variant = 0.40mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.40mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 038c4970bc..e0183f4ac6 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.45_lay0.10 definition = zav_base +name = pla_noz0.45_lay0.10 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_010 -material = generic_pla -variant = 0.45mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.45mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 1726d4fe62..da91e51add 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.45_lay0.15 definition = zav_base +name = pla_noz0.45_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_015 -material = generic_pla -variant = 0.45mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.45mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 c53a6aae57..32c0092593 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.45_lay0.20 definition = zav_base +name = pla_noz0.45_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_020 -material = generic_pla -variant = 0.45mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.45mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 d84f6f5a09..e1a05305d5 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.45_lay0.25 definition = zav_base +name = pla_noz0.45_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_025 -material = generic_pla -variant = 0.45mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.45mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 3560af533f..cb2868ecb4 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.45_lay0.30 definition = zav_base +name = pla_noz0.45_lay0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_030 -material = generic_pla -variant = 0.45mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.45mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 1dc62ef454..7ec72a8a80 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.45_lay0.35 definition = zav_base +name = pla_noz0.45_lay0.35 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_035 -material = generic_pla -variant = 0.45mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.45mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 514406f1a1..646656843d 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.50_lay0.15 definition = zav_base +name = pla_noz0.50_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_015 -material = generic_pla -variant = 0.50mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.50mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 fd78bd9887..4d236b723b 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.50_lay0.20 definition = zav_base +name = pla_noz0.50_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_020 -material = generic_pla -variant = 0.50mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.50mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 573e15acdb..a75d5f6653 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.50_lay0.25 definition = zav_base +name = pla_noz0.50_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_025 -material = generic_pla -variant = 0.50mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.50mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 744642337b..61aa9b3f0a 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.50_lay0.30 definition = zav_base +name = pla_noz0.50_lay0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_030 -material = generic_pla -variant = 0.50mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.50mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 58be5f2987..c3e5963988 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.50_lay0.35 definition = zav_base +name = pla_noz0.50_lay0.35 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_035 -material = generic_pla -variant = 0.50mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.50mm_ZAV_Nozzle [values] wall_thickness = =line_width*3 + 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 d770a28d55..4d58f8de3c 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.60_lay0.15 definition = zav_base +name = pla_noz0.60_lay0.15 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_015 -material = generic_pla -variant = 0.60mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.60mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 cf9b2722f1..a80320fe86 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.60_lay0.20 definition = zav_base +name = pla_noz0.60_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_020 -material = generic_pla -variant = 0.60mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.60mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 e522192323..8bc55ffebc 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.60_lay0.25 definition = zav_base +name = pla_noz0.60_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_025 -material = generic_pla -variant = 0.60mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.60mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 c46c0ba73e..47460c884e 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.60_lay0.30 definition = zav_base +name = pla_noz0.60_lay0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_030 -material = generic_pla -variant = 0.60mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.60mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 59cd6e9108..a940ece953 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.60_lay0.35 definition = zav_base +name = pla_noz0.60_lay0.35 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_035 -material = generic_pla -variant = 0.60mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.60mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 e1139a3c98..09bfdb8cdc 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.60_lay0.40 definition = zav_base +name = pla_noz0.60_lay0.40 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_040 -material = generic_pla -variant = 0.60mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.60mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 2427997e89..12238edb52 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.80_lay0.20 definition = zav_base +name = pla_noz0.80_lay0.20 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_020 -material = generic_pla -variant = 0.80mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.80mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 527cbd225a..8f8054ea99 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.80_lay0.25 definition = zav_base +name = pla_noz0.80_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_025 -material = generic_pla -variant = 0.80mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.80mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 bcda55b0aa..3c4151c237 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.80_lay0.30 definition = zav_base +name = pla_noz0.80_lay0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_030 -material = generic_pla -variant = 0.80mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.80mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 3fea79f4e5..f7d1cb13d0 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.80_lay0.35 definition = zav_base +name = pla_noz0.80_lay0.35 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_035 -material = generic_pla -variant = 0.80mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.80mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 bfb1cfca56..e4c48cbd47 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz0.80_lay0.40 definition = zav_base +name = pla_noz0.80_lay0.40 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_040 -material = generic_pla -variant = 0.80mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 0.80mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 6556bb361f..e0aa85b29c 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz1.00_lay0.25 definition = zav_base +name = pla_noz1.00_lay0.25 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_025 -material = generic_pla -variant = 1.00mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 1.00mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 bd8c9528b8..830845db85 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz1.00_lay0.30 definition = zav_base +name = pla_noz1.00_lay0.30 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_030 -material = generic_pla -variant = 1.00mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 1.00mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 d22c818c3b..d166b3683d 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz1.00_lay0.35 definition = zav_base +name = pla_noz1.00_lay0.35 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_035 -material = generic_pla -variant = 1.00mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 1.00mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 db71ff15e2..db41444bed 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 @@ -1,14 +1,15 @@ [general] -version = 4 -name = pla_noz1.00_lay0.40 definition = zav_base +name = pla_noz1.00_lay0.40 +version = 4 [metadata] -setting_version = 20 -type = quality +material = generic_pla quality_type = ZAV_layer_040 -material = generic_pla -variant = 1.00mm_ZAV_Nozzle +setting_version = 22 +type = quality +variant = 1.00mm_ZAV_Nozzle [values] wall_thickness = =line_width*2 + 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 6f0f24ab64..bfe990a261 100644 --- a/resources/quality/zav_base/zav_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.05.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Ultra Quality definition = zav_base +name = Ultra Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ZAV_layer_005 -weight = -1 global_quality = True +quality_type = ZAV_layer_005 +setting_version = 22 +type = quality +weight = -1 [values] layer_height = 0.05 layer_height_0 = 0.12 + 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 71acd1d30f..1d472b6a7c 100644 --- a/resources/quality/zav_base/zav_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.10.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Super Quality definition = zav_base +name = Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ZAV_layer_010 -weight = -2 global_quality = True +quality_type = ZAV_layer_010 +setting_version = 22 +type = quality +weight = -2 [values] layer_height = 0.10 layer_height_0 = 0.12 + 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 aa2ee6485a..1e4f18a996 100644 --- a/resources/quality/zav_base/zav_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.15.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fast Super Quality definition = zav_base +name = Fast Super Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ZAV_layer_015 -weight = -3 global_quality = True +quality_type = ZAV_layer_015 +setting_version = 22 +type = quality +weight = -3 [values] layer_height = 0.15 layer_height_0 = 0.15 + 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 77b0f18440..b576e28178 100644 --- a/resources/quality/zav_base/zav_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.20.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Standard Quality definition = zav_base +name = Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ZAV_layer_020 -weight = -4 global_quality = True +quality_type = ZAV_layer_020 +setting_version = 22 +type = quality +weight = -4 [values] layer_height = 0.20 layer_height_0 = 0.20 + 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 32254105f2..a7069d1409 100644 --- a/resources/quality/zav_base/zav_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.25.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fast Standard Quality definition = zav_base +name = Fast Standard Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ZAV_layer_025 -weight = -5 global_quality = True +quality_type = ZAV_layer_025 +setting_version = 22 +type = quality +weight = -5 [values] layer_height = 0.25 -layer_height_0 = 0.25 \ No newline at end of file +layer_height_0 = 0.25 + 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 07039720b2..c575a0e4d2 100644 --- a/resources/quality/zav_base/zav_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.30.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Fast Print Quality definition = zav_base +name = Fast Print Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ZAV_layer_030 -weight = -6 global_quality = True +quality_type = ZAV_layer_030 +setting_version = 22 +type = quality +weight = -6 [values] layer_height = 0.30 -layer_height_0 = 0.30 \ No newline at end of file +layer_height_0 = 0.30 + 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 3fc8fc09e1..1b0e10edcd 100644 --- a/resources/quality/zav_base/zav_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.35.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Draft Quality definition = zav_base +name = Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ZAV_layer_035 -weight = -7 global_quality = True +quality_type = ZAV_layer_035 +setting_version = 22 +type = quality +weight = -7 [values] layer_height = 0.35 -layer_height_0 = 0.35 \ No newline at end of file +layer_height_0 = 0.35 + 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 0689c60852..1587fe0f25 100644 --- a/resources/quality/zav_base/zav_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.40.inst.cfg @@ -1,15 +1,16 @@ [general] -version = 4 -name = Poor Draft Quality definition = zav_base +name = Poor Draft Quality +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = ZAV_layer_040 -weight = -8 global_quality = True +quality_type = ZAV_layer_040 +setting_version = 22 +type = quality +weight = -8 [values] layer_height = 0.40 -layer_height_0 = 0.40 \ No newline at end of file +layer_height_0 = 0.40 + diff --git a/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg b/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg index 4d20a6d1e8..26c80e6a84 100644 --- a/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Fast definition = zyyx_agile +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = 1 global_quality = True +quality_type = fast +setting_version = 22 +type = quality +weight = 1 [values] layer_height = 0.3 + diff --git a/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg b/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg index b92004f550..df7928149f 100644 --- a/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Fine definition = zyyx_agile +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 1 global_quality = True +quality_type = fine +setting_version = 22 +type = quality +weight = 1 [values] layer_height = 0.1 + diff --git a/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg b/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg index ded7ca8ca3..afa1010fa0 100644 --- a/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Normal definition = zyyx_agile +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 global_quality = True +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] layer_height = 0.2 + diff --git a/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg index 5c849f0cce..6a09f183c3 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg @@ -1,27 +1,28 @@ [general] -version = 4 -name = Fast definition = zyyx_agile +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = 1 material = generic_tpu +quality_type = fast +setting_version = 22 +type = quality +weight = 1 [values] -layer_height = 0.3 -wall_thickness = 0.8 -top_bottom_thickness = 1.0 -infill_sparse_density = 10 +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 -adhesion_type = brim -material_flow = 105 -raft_airgap = 0.2 +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 index e12c681930..35531d33bc 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg @@ -1,27 +1,28 @@ [general] -version = 4 -name = Fine definition = zyyx_agile +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 1 material = generic_tpu +quality_type = fine +setting_version = 22 +type = quality +weight = 1 [values] -layer_height = 0.12 -wall_thickness = 1.2 -top_bottom_thickness = 1.0 -infill_sparse_density = 15 +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 -adhesion_type = brim -material_flow = 105 -raft_airgap = 0.1 +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 index 3b15e29932..ed44af21e2 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg @@ -1,27 +1,28 @@ [general] -version = 4 -name = Normal definition = zyyx_agile +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_tpu +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.2 -wall_thickness = 1.2 -top_bottom_thickness = 1.0 -infill_sparse_density = 15 +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 -adhesion_type = brim -material_flow = 105 -raft_airgap = 0.2 +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 index 90606ab3f7..a0e76d45cd 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg @@ -1,27 +1,28 @@ [general] -version = 4 -name = Fast definition = zyyx_agile +name = Fast +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fast -weight = 1 material = generic_pla +quality_type = fast +setting_version = 22 +type = quality +weight = 1 [values] -layer_height = 0.3 -wall_thickness = 0.8 -top_bottom_thickness = 1.0 -infill_sparse_density = 10 +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 -adhesion_type = brim -material_flow = 95 -raft_airgap = 0.15 +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 index 41564a81e0..a97fec7061 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg @@ -1,27 +1,28 @@ [general] -version = 4 -name = Fine definition = zyyx_agile +name = Fine +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = fine -weight = 1 material = generic_pla +quality_type = fine +setting_version = 22 +type = quality +weight = 1 [values] -layer_height = 0.1 -wall_thickness = 1.2 -top_bottom_thickness = 1.0 -infill_sparse_density = 15 +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) -adhesion_type = brim -material_flow = 95 -raft_airgap = 0.08 +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/zyyx_agile_pro_pla_normal.inst.cfg index e550eefa2b..ed4a905783 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg @@ -1,27 +1,28 @@ [general] -version = 4 -name = Normal definition = zyyx_agile +name = Normal +version = 4 [metadata] -setting_version = 20 -type = quality -quality_type = normal -weight = 0 material = generic_pla +quality_type = normal +setting_version = 22 +type = quality +weight = 0 [values] -layer_height = 0.2 -wall_thickness = 1.2 -top_bottom_thickness = 1.0 -infill_sparse_density = 15 +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 +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) -adhesion_type = brim -material_flow = 95 -raft_airgap = 0.15 +top_bottom_thickness = 1.0 +wall_thickness = 1.2 + diff --git a/resources/setting_visibility/advanced.cfg b/resources/setting_visibility/advanced.cfg index 768dad20a5..a744c8eae8 100644 --- a/resources/setting_visibility/advanced.cfg +++ b/resources/setting_visibility/advanced.cfg @@ -139,6 +139,7 @@ magic_spiralize smooth_spiralized_contours [experimental] +interlocking_enable conical_overhang_enabled support_conical_enabled adaptive_layer_height_enabled diff --git a/resources/setting_visibility/expert.cfg b/resources/setting_visibility/expert.cfg index ea6536a44c..2439df8785 100644 --- a/resources/setting_visibility/expert.cfg +++ b/resources/setting_visibility/expert.cfg @@ -38,6 +38,7 @@ fill_outline_gaps xy_offset xy_offset_layer_0 hole_xy_offset +hole_xy_offset_max_diameter z_seam_type z_seam_position z_seam_x @@ -58,6 +59,7 @@ top_bottom_pattern_0 skin_monotonic connect_skin_polygons skin_angles +small_skin_width skin_no_small_gaps_heuristic skin_outline_count ironing_enabled @@ -135,6 +137,9 @@ support_roof_material_flow support_bottom_material_flow prime_tower_flow material_flow_layer_0 +wall_x_material_flow_layer_0 +wall_0_material_flow_layer_0 +skin_material_flow_layer_0 material_standby_temperature material_alternate_walls @@ -274,6 +279,9 @@ minimum_support_area support_interface_enable support_roof_enable support_bottom_enable +support_interface_wall_count +support_roof_wall_count +support_bottom_wall_count support_interface_height support_roof_height support_bottom_height @@ -296,11 +304,13 @@ adhesion_extruder_nr raft_surface_extruder_nr skirt_line_count skirt_gap +skirt_height skirt_brim_minimal_length brim_width brim_gap brim_line_count brim_outside_only +brim_smart_ordering raft_margin raft_smoothing raft_airgap @@ -376,8 +386,13 @@ roofing_pattern roofing_monotonic roofing_angles infill_enable_travel_optimization -material_flow_dependent_temperature 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 diff --git a/resources/texts/change_log.txt b/resources/texts/change_log.txt index 33ac01743d..644e9d69ac 100644 --- a/resources/texts/change_log.txt +++ b/resources/texts/change_log.txt @@ -1,3 +1,316 @@ +[5.3] +This release does not yet contain the new tree support implementation by ThomasRahm. You can download a special Cura version for that here. + +* Interlocking Structure Generation +- This new setting enables you to interlock multiple materials together, even if those materials are not compatible, contributed by BagelOrb. Try it for yourself with this test model. + +* Brim per Material +- A brim can now be printed with multiple materials in the same model, contributed by BagelOrb + +* Updated Recommended Print Settings Menu +- The number of settings available in the recommended have expanded. The redesign will make it easier to use intent profiles or save custom profiles. + +* Other new features and improvements: +- Improved the Zseam behavior so Hide Seam is generated less randomly. +- Fixed the order in which concentric top/bottom patterns are printed. +- Replaced mentions of Ultimaker by UltiMaker to correctly reflect the merger. +- Updated Load Project window with a new design. +- Added tooling to automatically generate translation files to reduce the chance of human error. +- Added quality type to slice meta-data so it can be displayed in the Ultimaker Digital Factory. +- Added a new way to update profiles by adding a Save/Compare Settings Button in custom window. +- Improved onboarding so it is easier to add your first cloud printer or a non-UltiMaker printer. +- Included options to download .MSI and .PKG for easier software distribution. +- Smoothed some support generation, so support is generated less jittery. +- Reduced unnecessary support generation for small overhang regions, like textures. +- Improved support generation so the support doesn't fold around the model. +- Reduced stringing for Lift Head setting by removing the move in XY. +- Added a Minimum Layer Time Temperature setting. +- Added settings for Support Interface Wall Line Count, Support Roof Line Count, and Support Floor Line Count. +- Added Brim Inside Avoid Margin setting, contributed by BagelOrb +- Added prefix 'Printing' to post processing plugin script "DisplayFilenameAndLayerOnLCD" contributed by brunohenriquy +- Added Enable, G-code Before, and G-code After To Filament Change, contributed by victornpb +- Added support for per-object retraction settings, contributed by jeremysalwen +- Updated PauseAtHeight so M18 becomes M84 when disarming, contributed by Cycov +- Added an option to keep stepper motors engaged to Pause At Height, contributed by Cycov +- Added an option to Beep at Pause to Pause At Height, contributed by Cycov +- Added Additional Gcode Fields to Pause At Height, contributed by Cycov +- Make Layer Number the default in Pause At Height, contributed by discip +- Added more information when rotating a model using the arrows, contributed by Fabbro03 +- Added the "CTRL +" shortcut to open Preferences window, contributed by Ladnessness +- Added the option to add Machine Action buttons in the Printer Preferences, contributed by julianCast + +* Bug fixes: +- Fixed a slicing crash if they were placed in the center of the buildplate. +- Fixed a slicing crash that would happen if Adaptive Layers Maximum Variation had a negative value. +- Fixed a bug where an "object of type SettingFunction is not JSON serializable" error would prevent users from using certain plug-ins. +- Fixed a bug where hole expansion would affect interlocking holes. +- Fixed a bug where fuzzy skin would also apply to interlocking structures. +- Fixed a bug where you could not load gcodes in Cura in some cases +- Fixed a bug where some models would slice slower with Skin-Edge Support Layers +- Fixed a bug where layers were skipped by inserting support interface on a raft +- Fixed a bug where Relative Extrusion was not calculated correctly when using Retract Continue. +- Fixed a bug that would prevent advanced users from slicing a batch with multiple STLs in a script. +- Fixed a bug where skirt lines would not follow the convex contours of models. +- Fixed a bug where Exclusing Slicing Tolerance was not applied correctly to bottom-layer(s). +- Fixed a bug where small travels were not retracted correctly. +- Fixed a bug where the printjob time showed 0 minutes if adaptive layer height was enabled. +- Fixed a bug with Skin Overlap where the skin would overlap with the roofing. +- Fixed a bug where Support Interface would be generated on top of support. +- Fixed a bug where the Floor Support Interface would not be generated in certain models. +- Fixed a bug where a long material list would disappear from the screen. +- Fixed a bug where support is not generated correctly if Support Pattern is Concentric. +- Fixed a bug where an increased Skin Removal Width would cut off part of the skin area. +- Fixed a bug where Support Towers would be generated but would support nothing. +- Fixed a bug where Small Feature Size would also be applied to inner-wall loops. +- Fixed a bug where adhesion would be printed outside of the buildplate, contributed by BagelOrb +- Fixed a bug where a primetower brim was printed when it shouldn't, contributed by BagelOrb +- Fixed a bug where Ooze/Draft shields did not avoid prime tower, contributed by BagelOrb +- Fixed a bug where not all Mac users could not use USB printing, contributed by Sovenger +- Fixed input value for platform offset when adding a logo, contributed by drewdoggy +- Fixed a bug where the travel move at the end of a layer unretracts, contributed by richfelker +- Fixed a bug where WallToolPaths are not simplified, contributed by Piezoid +- Fixed a bug where iterators were moving out of range, contributed by Piezoid and plaintoothpaste +- Fixed a bug where the Maximum Area Deviation value was too small, contributed by Piezoid +- Fixed a bug where we did not 'pickle' DefinitionContainers correctly, contributed by Piezoid +- Fixed a bug where an airgap was present in Spiralized Outer Contour, contributed by richfelker +- Fixed a bug where speeds defined for slower layers would impact speeds accelerations and jerks for the whole print, contributed by richfelker +- Fixed a bug where materials with longer names in Materials Preferences were harder to read, contributed by Ghostkeeper + +* Bugs resolved in the Beta Release +- Fixed a bug where no support would be generated for narrow ridges +- Fixed a bug where Hole Horizontal Expansion would remove part of the model +- Fixed a bug where Support Horizontal Expansion was broken +- Fixed a bug where Enable Conical Support would prevent support from being generated +- Fixed a bug where the brim would be printed from inside out +- Fixed a bug where the brim width would not be respected in multi-extrusion +- Fixed a bug where missing Geetech A10, Geetech Mizar S, and Geetech A30 definitions would cause a corrupt error message +- Fixed a bug where you could not resize the Recommended settings window +- Fixed a bug where wiping in the walls (as opposed to infill) wasn't working + +* Printer definitions, profiles and materials: +- Support Towers are working again and enabled by default for all printers. +- Updated Support Horizontal Expansion, Support Join Distance, and Minimum Support Area Settings for UltiMaker printers to improve support reliability. +- Updated intent and quality files for UltiMaker printers to have more consistent file names. +- Updated default Support Interface Pattern to ZigZag for UltiMaker printers +- Updated Maximum Combing Distance for UltiMaker printers +- Updated UltiMaker ABS Silver Metallic to the correct UltiMaker ABS Silver +- Updated AnkerMake M5 definitions, contributed by just-trey +- Updated Anycubic i3 Mega S/Pro profile, contributed by NilsRo +- Updated Creality Ender CR10 start GCode, contributed by InstantMuffin +- Updated Creality Sermoon V1 profiles to include hotend specifics, contributed by Iggomez +- Updated Geetech A10M, A10, A20, A20M, A20T, A30M, MizarS, contributed by whoseyoung +- Updated PPGF30 temperature from 235 to 240, introduced by heed818 +- Updated Rigid3D machine definitions, contributed by mehmetsutas +- Updated Sovol SV01, SV02, and SV03, contributed by eropple +- Updated Sovol's SV01 and SV02 bed dimensions, contributed by eropple +- Updated VzBot definition, contributed by ckvsoft +- Added AnkerMake M5, contributed by just-trey +- Added Anycubic Kobra Go, contributed by Razzeee +- Added Artillery Hornet, contributed by wilds +- Added Biqu Hurakan, contributed by looxonline +- Added Blocks ONE MKII, Blocks One, Blocks Pro S100, Blocks Pro S30, Blocks R21, Blocks RD50, and Blocks Zero, contributed by jgrilo-blocks +- Added Creality CR-10 Smart, contributed by eropple +- Added Creality Ender-3 S1 Plus, and Ender-3 S1 Pro, contributed by izilzty +- Added Creality Sermoon V1, and Sermoon V1 Pro, contributed by Iggomez +- Added Dagoma Sigma, and updated Dagome Pro430, contributed by 0r31 +- Added Elegoo Neptune 1, Neptune 2s, Neptune 3, Neptune 3 Max, Neptune 3 Plus, Neptune 3 Pro, and Neptune X, contributed by NARUTOfzr +- Added FablabBcn PastePrinter, contributed by EDUARDOCHAMORRO +- Added Flsun V400, contributed by dengdaitianhei +- Added Fusion3 F410, contributed by 64bittuning +- Added Geetech A10Pro, A30Pro, A30T, E180, GiantArmD200, I3ProB, i3ProC, I3PrW, MeCreator, MeCreator2, MeDucer, Mizar, MizarM, MizarMax, MizarMax, MizarPro, and Thunder, contributed by whoseyoung +- Added Klema 180, Klema 250, Klema 250 Pro, Klema 250 Twin, and Klema 500, contributed by polyntsev +- Added Modix V3 BIG-120X, V3 BIG-120Z, V3 BIG-180X, V3 BIG-40, V3 BIG-60, V3 BIG-Meter, V4 BIG 60, V4 120x, V4 120z, V4 180x, and V4 BIG-Meter contributed by Modix3D +- Added SnakeOil Standard 180, and SnakeOil Standard 250, contributed by ChipCE +- Added Sovol SV01PRO, SV05, and SV06, contributed by eropple +- Added UMO+ DXU, contributed by ansonl +- Added Voron Trident 250, Trident 300, and Trident 350, contributed by RagingRoosevelt + +* Community translations: +- Updated French translations, contributed by xommit +- Updated a typo in Japanese translations, contributed by tamorikawa + +* Known critical issues: +- Translations are not complete yet, we hope to resolve this before 5.4. +- Part of models are not being Fuzzyfied when fuzzy skin is enable yet, we hope to resolve this before 5.4. +- The experimental setting Wire printing seems to be broken +- Reports have been coming in that Cura is running slow on Windows 11 We are collecting cases here. +- Multiple external monitors on Windows (especially if from the same brand) might be a problem under some circumstances. +- Does Cura (not) work on your OS (version)? See this article for clarification. + +[5.2.2] + +* Introducing the UltiMaker S7 +- Included support for the new UltiMaker S7 + +* Bug fixes: +- Allow UltiMaker S7 printers to receive Material Profiles + +* Printer definitions, profiles and materials: +- Improved Initial Layer settings for UltiMaker S7, S5, and S3 printers +- Disabled Support Towers for UltiMaker S7, S5, and S3 printers +- Cleaned up material profiles, by removing duplicate setting segments, and unused elements +- Updated preferred quality type for all UltiMaker 3D printers + + +[5.2.1] + +* Bug fixes: +- Restored Italian translations (was French) +- Restored simplified Chinese translations (was Czech) + +[5.2] + +* Abstract Cloud Printer Type +Online cloud printers are now grouped by type. You can slice with the ('abstract') printer type, and afterwards choose a specific printer to print with. + +* Support For 'Guest'-Type Accounts (In Digital Factory) +Users with the ‘Guest’ role can prepare print jobs in Ultimaker Cura and send them to the printers via Digital Factory. These print jobs will not start until they are approved by a user with an 'Member' or 'Admin' role. + +* More Control Over Initial Layer Flow +Three new settings: 'Initial Layer Outer Wall Flow', 'Initial Layer Inner Wall Flow', 'Initial Layer Bottom Flow', to better counteract the 'elephants foot' phenomenon. + +* Other new features and improvements: +- Auto-remove holes from not completely solid models in vase-mode +- Add setting for 'tree support max diameter' +- Add option to drop-down models to the build-plate individually, contributed to Piezoid +- Added a preference to make the tray icon optional, contributed by fieldOfView +- (Community Developer Update: Proper workflow for 'installing from source' on Windows! See our wiki.) + +* Bug fixes: +- Fixed a crash to do with the serialization of functions, contributed by Piezoid +- Fixed a crash that could occur when a user has non-latin characters in their Windows username +- Another 'Tree Support Starts in Air' fix +- Restore tooltips (if available) for Intents in Recommended print settings +- Fix startup on 'Zorin OS' (a Linux flavor), contributed by Tim453 +- On Windows, (admin) users should be able to uninstall via 'Programs and Features' again +- Correct version number in Windows uninstaller +- Uninstalling didn't remove all files in Windows +- (Windows) An uninstall could only be done by the original user that installed +- Don't ignore bottom pattern when spiralizing +- Don't 'Union All' for 'Merged Meshes Overlap' +- Seam placement was not in the correct corner in some cases +- Cutting meshes with 'surface' set to 'both' cut through the mesh +- Brim lines where ordered the wrong way in some cases +- Random seam is now more random +- Correctly apply combing when spiralizing, contributed by smartavionics +- Don't spam the user with spurious 'Cura Notification's (Windows only) +- Don't spam the logs with duplicated deprecated warnings, contributed by Patschke +- Properly update the infill percentage in the top bar after an intent profile switch +- In certain rare situations, layers would be printed multiple times when monotonic fill was on +- Put tree support infill density at 0% by default +- Machine settings: Also save values when closing the window, not just when focus' changed +- Reduce clickable area of settings checkboxes, to prevent mis-clicks +- Fixed a crash when an unnamed tool would be accessed (possibly related to plugin use) +- Fix an issue where a plugin would crash because of a missing dependency +- Many helpful code refactors, contributed by digitalfrost +- Fix for to-mouse zoom on screens with scaling factor, contributed by seaniepie +- Models could not be multiplied in one-at-a-time mode + +* Printer definitions, profiles and materials: +- Added Creality Ender 3 S1 profile, contributed by Sebazzz +- Added Anycubic Kobra (Max), contributed by ANYCUBIC-3D +- Added HCTECH printers, contributed by 3d-hctech +- Added da Vinci Pro EVO, contributed by heed818 +- Fix FLSUN QQ-S platform orientation, contributed by RVillani +- Fix Kingroon printers from going outside the build-volume in the end-gcode, contributed by odaki +- Added Geetech Mizar_S, contributed by Geeetech3D +- Added Tank-M printer, contributed by KOONOVO3DPrinter +- Update Renkforce RF100XL definition, contributed by imakecodes +- Added VzBot profiles, contributed by ckvsoft +- Added (additional) mingda printers, contributed by jianshu-du +- Added Naxe machines, contributed by Naxecorp +- Added T-Rex 2+, T-Rex 3, contributed by jim-edwards +- Update FLsun SR, contributed xPakrikx +- Update Anycubic mega zero, contributed by NOVAXIM +- Added some Renkforce machines, contributed by goofoo3d + +* Community translations: +- Updated the Brazilian Portuguese translation, contributed by Patola +- Updated the Czech translation, contributed by sustmi + +* Known critical issues: +- While some small fixes have been made already, the placement of the seam is still more scattered than before 5.0. (Will try to fix in stable.) +- Support is sometimes missing in detailed parts, where previous releases supported them properly (still). (Will probably not be fixed in stable. This is currently slated for 5.3) +- Multiple external monitors on Windows (especially if from the same brand) might be a problem under some circumstances. (Will probably not be fixed in stable.) + +* Does Cura (not) work on your OS (version)? See this article for clarification. + +[5.1.1] +* New features: +- Added support for the Ultimaker S3 and Ultimaker S5 updated mainbord + + +MacOS 10.15 is no longer supported. Technically this means Ultimaker will stop testing and developing for such operating systems. However, even though it is no longer supported, there is still a high likelihood the application keeps functioning. + +[5.1] +For an overview of the new features in Cura 5.1, please watch our video. + +* Improved toolpath simplification algorithm +The algorithm that reduces the resolution of the print has been rewritten, providing a more constant resolution to allow for greater precision without causing buffer underruns. + +* Added option to alternate wall direction +A new setting causes the direction of printing walls to alternate between layers and adjacent walls, which reduces warping in the print. + +* Adjusted combing boundaries to reduce scarring +Travel moves through the inside of the models are adjusted so that they should keep more distance from the model where possible, yet allowing travels through narrow parts without retractions. + +* Reduced acceleration and jerk commands for travel moves +We added the option to disable acceleration and jerk commands for travel moves. If disabled, they will take on the acceleration of the printed part of its destination. This greatly reduces file size and buffer underruns. + +* Project files know which packages they require +Newly created project files will now store which packages they require from the Ultimaker Marketplace. If a project needs a material from there, the user will be prompted to download it. + +* Other new features and improvements: +- The interface to select the printing profile in Recommended Mode has been redesigned. +- Implemented multi-threaded slicing for MacOS, to bring it in line with other operating systems, contributed by Piezoid. +- Cura now links toolpaths to project files in the Digital Factory. +- Improved performance of loading STL files on Linux. +- Packages from the Marketplace can now contain intent profiles. +- The application now makes heavy use of Conan to make it easier and faster to build releases of Cura. +- Start and end g-code can now refer to the currently active profile with replacement keys. +- To provide proper compatibility with both older and newer Linux distribution, this release contains two Linux builds. + +* Bug fixes: +- Fix resetting configuration if it gets corrupt. +- Monotonic ordering now works again for top surfaces. +- Fix a bug where Remove Raft Inside Corners didn't always remove all corners. +- Fix the position of the toolbar if the toolbar is too tall to fit. +- Intents in the Recommended Mode now show a description again. +- Remove Inside Corners and Raft Base Wall Count can now be changed per extruder, though they will affect the entire print. +- Fix opening STL files with special characters in their header. +- Fix crash at start-up on newer Linux distributions. +- Fix priming when printing a raft with a different extruder for some of its layers. +- Fix a case where the inner wall ends up protruding through the outside of the model. +- Improve some details on dark mode colouring. +- Fix an error sometimes occurring when uninstalling plug-ins. +- Fix a rendering issue with pop-up dialogues on MacOS. +- Fix Discard or Keep Changes dialog showing an outdated setting value. +- Horizontal Scaling Shrinkage Compensation no longer adjusts the size of the build volume, allowing the full size of the build plate to be used. +- Fixed overextrusion when using gradual infill with thin strips of infill. +- Fix opening STL files with special characters in their file header. +- Fix slicing failure when using Randomize Infill Start in some cases. +- Restore reminder to sync materials with your printer when using cloud printers with custom materials. +- The tool bar should no longer show up in the monitor stage. +- Exporting materials should now retain settings unknown to Cura as well. + +* Printer definitions, profiles and materials: +- Improved profiles for PVA and support for Ultimaker printers. +- Adjust retraction speed and distance for Voron, contributed by Haxk20 and Cbc02009 +- Heat up extruder and build plate at the same time for Ender 3 Pro, contributed by XDazld. +- Add new Tough PLA colours. +- Add DD0.4 print cores for Ultimaker printers. +- Add MakerGear M2 printer, contributed by Wanders78746. +- Add Trimarker Nebula Plus printer, contributed by MatiGabaglio. +- Various small profile improvements. + +* Community translations: +- Updated the Brazilian Portuguese translation, contributed by Patola. +- Updated the Czech translation, contributed by sustmi. + +* Known critical issues: +- The placement of the seam has gotten more scattered than in previous releases. +- Support is sometimes missing in detailed parts, where previous releases supported them properly. + [5.0] Watch the launch event to learn more about Ultimaker Cura 5.0. @@ -305,4 +618,4 @@ When searching in the settings visibility menu you will also search in the descr [4.10] -The release notes of versions <= 4.10 can be found in our releases GitHub page. \ No newline at end of file +The release notes of versions <= 4.10 can be found in our releases GitHub page. diff --git a/resources/themes/cura-dark/images/add_printer.svg b/resources/themes/cura-dark/images/add_printer.svg new file mode 100644 index 0000000000..06f838bc76 --- /dev/null +++ b/resources/themes/cura-dark/images/add_printer.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/themes/cura-dark/images/cura_connected_printers.svg b/resources/themes/cura-dark/images/cura_connected_printers.svg new file mode 100644 index 0000000000..d7d0dc9d23 --- /dev/null +++ b/resources/themes/cura-dark/images/cura_connected_printers.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/themes/cura-dark/images/third_party_printer.svg b/resources/themes/cura-dark/images/third_party_printer.svg new file mode 100644 index 0000000000..6ffe5c20f3 --- /dev/null +++ b/resources/themes/cura-dark/images/third_party_printer.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/themes/cura-dark/images/ultimaker_printer.svg b/resources/themes/cura-dark/images/ultimaker_printer.svg new file mode 100644 index 0000000000..e5a99a6e5c --- /dev/null +++ b/resources/themes/cura-dark/images/ultimaker_printer.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/themes/cura-dark/theme.json b/resources/themes/cura-dark/theme.json index 34696fb35e..ead7bbcb2f 100644 --- a/resources/themes/cura-dark/theme.json +++ b/resources/themes/cura-dark/theme.json @@ -1,6 +1,6 @@ { "metadata": { - "name": "Ultimaker Dark", + "name": "UltiMaker Dark", "inherits": "cura-light" }, @@ -48,7 +48,6 @@ "lining": "border_main", "viewport_overlay": "background_1", - "primary": [12, 169, 227, 255], "primary_text": "text_default", "secondary": [95, 95, 95, 255], @@ -81,7 +80,7 @@ "text": "text_default", "text_detail": [255, 255, 255, 172], "text_link": "accent_1", - "text_inactive": [255, 255, 255, 88], + "text_inactive": [118, 118, 118, 255], "text_hover": [255, 255, 255, 204], "text_scene": [255, 255, 255, 162], "text_scene_hover": [255, 255, 255, 204], diff --git a/resources/themes/cura-light/icons/default/Download.svg b/resources/themes/cura-light/icons/default/Download.svg index cbe0da2a99..fb94cd78b4 100644 --- a/resources/themes/cura-light/icons/default/Download.svg +++ b/resources/themes/cura-light/icons/default/Download.svg @@ -1,3 +1,3 @@ - - + + diff --git a/resources/themes/cura-light/icons/default/Hammer.svg b/resources/themes/cura-light/icons/default/Hammer.svg new file mode 100644 index 0000000000..c32f27a0e2 --- /dev/null +++ b/resources/themes/cura-light/icons/default/Hammer.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/themes/cura-light/icons/default/People.svg b/resources/themes/cura-light/icons/default/People.svg index 8632b37f7c..6692cbb427 100644 --- a/resources/themes/cura-light/icons/default/People.svg +++ b/resources/themes/cura-light/icons/default/People.svg @@ -1,3 +1,3 @@ - - + + diff --git a/resources/themes/cura-light/icons/default/PrintWalls.svg b/resources/themes/cura-light/icons/default/PrintWalls.svg new file mode 100644 index 0000000000..f582a5599d --- /dev/null +++ b/resources/themes/cura-light/icons/default/PrintWalls.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/resources/themes/cura-light/icons/default/Save.svg b/resources/themes/cura-light/icons/default/Save.svg new file mode 100644 index 0000000000..61887b084c --- /dev/null +++ b/resources/themes/cura-light/icons/default/Save.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/resources/themes/cura-light/icons/default/Settings.svg b/resources/themes/cura-light/icons/default/Settings.svg index 204f2a5b6f..22000feb16 100644 --- a/resources/themes/cura-light/icons/default/Settings.svg +++ b/resources/themes/cura-light/icons/default/Settings.svg @@ -1,3 +1,3 @@ - + diff --git a/resources/themes/cura-light/icons/high/Certificate.svg b/resources/themes/cura-light/icons/high/Certificate.svg index b588bddd8b..4d2c5ba0cf 100644 --- a/resources/themes/cura-light/icons/high/Certificate.svg +++ b/resources/themes/cura-light/icons/high/Certificate.svg @@ -1,3 +1,3 @@ - + diff --git a/resources/themes/cura-light/icons/high/Settings.svg b/resources/themes/cura-light/icons/high/Settings.svg index 1cd2ff324e..23774a3beb 100644 --- a/resources/themes/cura-light/icons/high/Settings.svg +++ b/resources/themes/cura-light/icons/high/Settings.svg @@ -1,3 +1,3 @@ - - + + diff --git a/resources/themes/cura-light/images/add_printer.svg b/resources/themes/cura-light/images/add_printer.svg new file mode 100644 index 0000000000..3d814f48ef --- /dev/null +++ b/resources/themes/cura-light/images/add_printer.svg @@ -0,0 +1 @@ + diff --git a/resources/themes/cura-light/images/cura_connected_printers.svg b/resources/themes/cura-light/images/cura_connected_printers.svg new file mode 100644 index 0000000000..d18302bdf1 --- /dev/null +++ b/resources/themes/cura-light/images/cura_connected_printers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/themes/cura-light/images/logo.svg b/resources/themes/cura-light/images/logo.svg index 611840e248..63449bb296 100644 --- a/resources/themes/cura-light/images/logo.svg +++ b/resources/themes/cura-light/images/logo.svg @@ -1,18 +1,20 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/resources/themes/cura-light/images/third_party_printer.svg b/resources/themes/cura-light/images/third_party_printer.svg new file mode 100644 index 0000000000..14e73c2d9e --- /dev/null +++ b/resources/themes/cura-light/images/third_party_printer.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/themes/cura-light/images/ultimaker_printer.svg b/resources/themes/cura-light/images/ultimaker_printer.svg new file mode 100644 index 0000000000..e65682fe53 --- /dev/null +++ b/resources/themes/cura-light/images/ultimaker_printer.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/themes/cura-light/theme.json b/resources/themes/cura-light/theme.json index 83eb13f0cb..ad32573288 100644 --- a/resources/themes/cura-light/theme.json +++ b/resources/themes/cura-light/theme.json @@ -1,6 +1,6 @@ { "metadata": { - "name": "Ultimaker" + "name": "UltiMaker" }, "fonts": { @@ -172,6 +172,26 @@ "size": 0.9, "weight": 700, "family": "Noto Sans" + }, + "tiny_emphasis": { + "size": 0.7, + "weight": 700, + "family": "Noto Sans" + }, + "tiny_emphasis_ja_JP": { + "size": 0.7, + "weight": 700, + "family": "Noto Sans" + }, + "tiny_emphasis_zh_CN": { + "size": 0.7, + "weight": 700, + "family": "Noto Sans" + }, + "tiny_emphasis_zh_TW": { + "size": 0.7, + "weight": 700, + "family": "Noto Sans" } }, @@ -218,7 +238,7 @@ "lining": [192, 193, 194, 255], "viewport_overlay": [246, 246, 246, 255], - "primary": [25, 110, 240, 255], + "primary": "accent_1", "primary_hover": [48, 182, 231, 255], "primary_text": [255, 255, 255, 255], "text_selection": [156, 195, 255, 127], @@ -269,7 +289,7 @@ "text": [25, 25, 25, 255], "text_disabled": [180, 180, 180, 255], "text_detail": [174, 174, 174, 128], - "text_link": [25, 110, 240, 255], + "text_link": "accent_1", "text_inactive": [174, 174, 174, 255], "text_medium": [128, 128, 128, 255], "text_scene": [102, 102, 102, 255], @@ -354,6 +374,10 @@ "checkbox_text": "text_default", "checkbox_text_disabled": "text_disabled", + "switch": "background_1", + "switch_state_checked": "accent_1", + "switch_state_unchecked": "text_disabled", + "radio": "background_1", "radio_disabled": "background_2", "radio_selected": "accent_1", @@ -486,9 +510,9 @@ "print_setup_widget": [38.0, 30.0], "print_setup_extruder_box": [0.0, 6.0], - "print_setup_slider_groove": [0.16, 0.16], - "print_setup_slider_handle": [1.0, 1.0], - "print_setup_slider_tickmarks": [0.32, 0.32], + "slider_widget_groove": [0.16, 0.16], + "slider_widget_handle": [1.3, 1.3], + "slider_widget_tickmarks": [0.5, 0.5], "print_setup_big_item": [28, 2.5], "print_setup_icon": [1.2, 1.2], "drag_icon": [1.416, 0.25], @@ -564,6 +588,9 @@ "medium_button": [2.5, 2.5], "medium_button_icon": [2, 2], + "large_button": [3.0, 3.0], + "large_button_icon": [2.8, 2.8], + "context_menu": [20, 2], "icon_indicator": [1, 1], @@ -646,6 +673,8 @@ "recommended_button_icon": [1.7, 1.7], + "recommended_section_setting_item": [14.0, 2.0], + "reset_profile_icon": [1, 1] } } diff --git a/resources/variants/arjun300_0.2.inst.cfg b/resources/variants/arjun/arjun300_0.2.inst.cfg similarity index 87% rename from resources/variants/arjun300_0.2.inst.cfg rename to resources/variants/arjun/arjun300_0.2.inst.cfg index 435337a17e..577c9cea82 100644 --- a/resources/variants/arjun300_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_0.2.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjun300 name = 0.2 mm Nozzle version = 4 -definition = arjun300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/arjun300_0.3.inst.cfg b/resources/variants/arjun/arjun300_0.3.inst.cfg similarity index 87% rename from resources/variants/arjun300_0.3.inst.cfg rename to resources/variants/arjun/arjun300_0.3.inst.cfg index e2d7a36888..23e5d5d3b9 100644 --- a/resources/variants/arjun300_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_0.3.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjun300 name = 0.3 mm Nozzle version = 4 -definition = arjun300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/arjun300_0.4.inst.cfg b/resources/variants/arjun/arjun300_0.4.inst.cfg similarity index 87% rename from resources/variants/arjun300_0.4.inst.cfg rename to resources/variants/arjun/arjun300_0.4.inst.cfg index 0f6ea768ae..4b966b4b15 100644 --- a/resources/variants/arjun300_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_0.4.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjun300 name = 0.4 mm Nozzle version = 4 -definition = arjun300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/arjun300_0.5.inst.cfg b/resources/variants/arjun/arjun300_0.5.inst.cfg similarity index 87% rename from resources/variants/arjun300_0.5.inst.cfg rename to resources/variants/arjun/arjun300_0.5.inst.cfg index b8740d3b0c..279755a8e2 100644 --- a/resources/variants/arjun300_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_0.5.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjun300 name = 0.5 mm Nozzle version = 4 -definition = arjun300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/arjun300_0.6.inst.cfg b/resources/variants/arjun/arjun300_0.6.inst.cfg similarity index 87% rename from resources/variants/arjun300_0.6.inst.cfg rename to resources/variants/arjun/arjun300_0.6.inst.cfg index 8c81636936..79ccd38286 100644 --- a/resources/variants/arjun300_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_0.6.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjun300 name = 0.6 mm Nozzle version = 4 -definition = arjun300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/arjun300_0.8.inst.cfg b/resources/variants/arjun/arjun300_0.8.inst.cfg similarity index 87% rename from resources/variants/arjun300_0.8.inst.cfg rename to resources/variants/arjun/arjun300_0.8.inst.cfg index 609ef6588c..c0be27c671 100644 --- a/resources/variants/arjun300_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_0.8.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjun300 name = 0.8 mm Nozzle version = 4 -definition = arjun300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/arjun300_dm_0.2.inst.cfg b/resources/variants/arjun/arjun300_dm_0.2.inst.cfg similarity index 88% rename from resources/variants/arjun300_dm_0.2.inst.cfg rename to resources/variants/arjun/arjun300_dm_0.2.inst.cfg index 53de3e380b..441881b7b2 100644 --- a/resources/variants/arjun300_dm_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.2.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjun_duplication name = 0.2 mm Nozzle version = 4 -definition = arjun_duplication [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/arjun300_dm_0.3.inst.cfg b/resources/variants/arjun/arjun300_dm_0.3.inst.cfg similarity index 88% rename from resources/variants/arjun300_dm_0.3.inst.cfg rename to resources/variants/arjun/arjun300_dm_0.3.inst.cfg index 2f1c19e407..38737edbd7 100644 --- a/resources/variants/arjun300_dm_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.3.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjun_duplication name = 0.3 mm Nozzle version = 4 -definition = arjun_duplication [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/arjun300_dm_0.4.inst.cfg b/resources/variants/arjun/arjun300_dm_0.4.inst.cfg similarity index 88% rename from resources/variants/arjun300_dm_0.4.inst.cfg rename to resources/variants/arjun/arjun300_dm_0.4.inst.cfg index 1576f94cae..ef5cf7b7f5 100644 --- a/resources/variants/arjun300_dm_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.4.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjun_duplication name = 0.4 mm Nozzle version = 4 -definition = arjun_duplication [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/arjun300_dm_0.5.inst.cfg b/resources/variants/arjun/arjun300_dm_0.5.inst.cfg similarity index 88% rename from resources/variants/arjun300_dm_0.5.inst.cfg rename to resources/variants/arjun/arjun300_dm_0.5.inst.cfg index ec3e2c4213..6e6f03f923 100644 --- a/resources/variants/arjun300_dm_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.5.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjun_duplication name = 0.5 mm Nozzle version = 4 -definition = arjun_duplication [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/arjun300_dm_0.6.inst.cfg b/resources/variants/arjun/arjun300_dm_0.6.inst.cfg similarity index 88% rename from resources/variants/arjun300_dm_0.6.inst.cfg rename to resources/variants/arjun/arjun300_dm_0.6.inst.cfg index d76076a667..0fe27b5fcd 100644 --- a/resources/variants/arjun300_dm_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.6.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjun_duplication name = 0.6 mm Nozzle version = 4 -definition = arjun_duplication [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/arjun300_dm_0.8.inst.cfg b/resources/variants/arjun/arjun300_dm_0.8.inst.cfg similarity index 88% rename from resources/variants/arjun300_dm_0.8.inst.cfg rename to resources/variants/arjun/arjun300_dm_0.8.inst.cfg index 608dcc07ef..5700539ff4 100644 --- a/resources/variants/arjun300_dm_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.8.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjun_duplication name = 0.8 mm Nozzle version = 4 -definition = arjun_duplication [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/arjun300_mm_0.2.inst.cfg b/resources/variants/arjun/arjun300_mm_0.2.inst.cfg similarity index 88% rename from resources/variants/arjun300_mm_0.2.inst.cfg rename to resources/variants/arjun/arjun300_mm_0.2.inst.cfg index e48a1ce169..bbdf6bc7f3 100644 --- a/resources/variants/arjun300_mm_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.2.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjun_mirrored name = 0.2 mm Nozzle version = 4 -definition = arjun_mirrored [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/arjun300_mm_0.3.inst.cfg b/resources/variants/arjun/arjun300_mm_0.3.inst.cfg similarity index 88% rename from resources/variants/arjun300_mm_0.3.inst.cfg rename to resources/variants/arjun/arjun300_mm_0.3.inst.cfg index 5548cd7f06..3d2e71f3ef 100644 --- a/resources/variants/arjun300_mm_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.3.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjun_mirrored name = 0.3 mm Nozzle version = 4 -definition = arjun_mirrored [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/arjun300_mm_0.4.inst.cfg b/resources/variants/arjun/arjun300_mm_0.4.inst.cfg similarity index 88% rename from resources/variants/arjun300_mm_0.4.inst.cfg rename to resources/variants/arjun/arjun300_mm_0.4.inst.cfg index 14efb38042..155231c20f 100644 --- a/resources/variants/arjun300_mm_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.4.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjun_mirrored name = 0.4 mm Nozzle version = 4 -definition = arjun_mirrored [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/arjun300_mm_0.5.inst.cfg b/resources/variants/arjun/arjun300_mm_0.5.inst.cfg similarity index 88% rename from resources/variants/arjun300_mm_0.5.inst.cfg rename to resources/variants/arjun/arjun300_mm_0.5.inst.cfg index e05b81134d..1ae108dd58 100644 --- a/resources/variants/arjun300_mm_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.5.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjun_mirrored name = 0.5 mm Nozzle version = 4 -definition = arjun_mirrored [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/arjun300_mm_0.6.inst.cfg b/resources/variants/arjun/arjun300_mm_0.6.inst.cfg similarity index 88% rename from resources/variants/arjun300_mm_0.6.inst.cfg rename to resources/variants/arjun/arjun300_mm_0.6.inst.cfg index d6fabf8bce..5716d2037f 100644 --- a/resources/variants/arjun300_mm_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.6.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjun_mirrored name = 0.6 mm Nozzle version = 4 -definition = arjun_mirrored [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/arjun300_mm_0.8.inst.cfg b/resources/variants/arjun/arjun300_mm_0.8.inst.cfg similarity index 88% rename from resources/variants/arjun300_mm_0.8.inst.cfg rename to resources/variants/arjun/arjun300_mm_0.8.inst.cfg index e42c93177b..7274d191a7 100644 --- a/resources/variants/arjun300_mm_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.8.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjun_mirrored name = 0.8 mm Nozzle version = 4 -definition = arjun_mirrored [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/arjun300_pva_0.2.inst.cfg b/resources/variants/arjun/arjun300_pva_0.2.inst.cfg similarity index 93% rename from resources/variants/arjun300_pva_0.2.inst.cfg rename to resources/variants/arjun/arjun300_pva_0.2.inst.cfg index 6570382f4b..26440e5486 100644 --- a/resources/variants/arjun300_pva_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.2.inst.cfg @@ -1,32 +1,32 @@ [general] +definition = arjun300 name = PVA 0.2 mm Nozzle version = 4 -definition = arjun300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +gradual_support_infill_steps = 2 machine_nozzle_size = 0.2 -support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height -support_offset = 3 +support_angle = 45 support_bottom_height = =layer_height * 2 support_bottom_pattern = zigzag support_bottom_stair_step_height = =layer_height support_infill_rate = 50 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 +support_interface_pattern = concentric support_interface_skip_height = =layer_height support_join_distance = 3 -support_xy_distance = =machine_nozzle_size / 2 -support_xy_distance_overhang = =machine_nozzle_size / 2 -support_angle = 45 +support_offset = 3 support_pattern = triangles support_use_towers = False +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0 -gradual_support_infill_steps = 2 -support_interface_density = 100 -support_interface_pattern = concentric \ No newline at end of file + diff --git a/resources/variants/arjun300_pva_0.3.inst.cfg b/resources/variants/arjun/arjun300_pva_0.3.inst.cfg similarity index 93% rename from resources/variants/arjun300_pva_0.3.inst.cfg rename to resources/variants/arjun/arjun300_pva_0.3.inst.cfg index 4495be6e6a..5edaddba92 100644 --- a/resources/variants/arjun300_pva_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.3.inst.cfg @@ -1,32 +1,32 @@ [general] +definition = arjun300 name = PVA 0.3 mm Nozzle version = 4 -definition = arjun300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +gradual_support_infill_steps = 2 machine_nozzle_size = 0.3 -support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height -support_offset = 3 +support_angle = 45 support_bottom_height = =layer_height * 2 support_bottom_pattern = zigzag support_bottom_stair_step_height = =layer_height support_infill_rate = 50 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 +support_interface_pattern = concentric support_interface_skip_height = =layer_height support_join_distance = 3 -support_xy_distance = =machine_nozzle_size / 2 -support_xy_distance_overhang = =machine_nozzle_size / 2 -support_angle = 45 +support_offset = 3 support_pattern = triangles support_use_towers = False +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0 -gradual_support_infill_steps = 2 -support_interface_density = 100 -support_interface_pattern = concentric \ No newline at end of file + diff --git a/resources/variants/arjun300_pva_0.4.inst.cfg b/resources/variants/arjun/arjun300_pva_0.4.inst.cfg similarity index 93% rename from resources/variants/arjun300_pva_0.4.inst.cfg rename to resources/variants/arjun/arjun300_pva_0.4.inst.cfg index 3e049c7c9f..a5ca8ffb7a 100644 --- a/resources/variants/arjun300_pva_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.4.inst.cfg @@ -1,32 +1,32 @@ [general] +definition = arjun300 name = PVA 0.4 mm Nozzle version = 4 -definition = arjun300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +gradual_support_infill_steps = 2 machine_nozzle_size = 0.4 -support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height -support_offset = 3 +support_angle = 45 support_bottom_height = =layer_height * 2 support_bottom_pattern = zigzag support_bottom_stair_step_height = =layer_height support_infill_rate = 50 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 +support_interface_pattern = concentric support_interface_skip_height = =layer_height support_join_distance = 3 -support_xy_distance = =machine_nozzle_size / 2 -support_xy_distance_overhang = =machine_nozzle_size / 2 -support_angle = 45 +support_offset = 3 support_pattern = triangles support_use_towers = False +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0 -gradual_support_infill_steps = 2 -support_interface_density = 100 -support_interface_pattern = concentric \ No newline at end of file + diff --git a/resources/variants/arjun300_pva_0.5.inst.cfg b/resources/variants/arjun/arjun300_pva_0.5.inst.cfg similarity index 93% rename from resources/variants/arjun300_pva_0.5.inst.cfg rename to resources/variants/arjun/arjun300_pva_0.5.inst.cfg index 8365f9d3b4..2145714b0d 100644 --- a/resources/variants/arjun300_pva_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.5.inst.cfg @@ -1,32 +1,32 @@ [general] +definition = arjun300 name = PVA 0.5 mm Nozzle version = 4 -definition = arjun300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +gradual_support_infill_steps = 2 machine_nozzle_size = 0.5 -support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height -support_offset = 3 +support_angle = 45 support_bottom_height = =layer_height * 2 support_bottom_pattern = zigzag support_bottom_stair_step_height = =layer_height support_infill_rate = 50 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 +support_interface_pattern = concentric support_interface_skip_height = =layer_height support_join_distance = 3 -support_xy_distance = =machine_nozzle_size / 2 -support_xy_distance_overhang = =machine_nozzle_size / 2 -support_angle = 45 +support_offset = 3 support_pattern = triangles support_use_towers = False +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0 -gradual_support_infill_steps = 2 -support_interface_density = 100 -support_interface_pattern = concentric \ No newline at end of file + diff --git a/resources/variants/arjun300_pva_0.6.inst.cfg b/resources/variants/arjun/arjun300_pva_0.6.inst.cfg similarity index 93% rename from resources/variants/arjun300_pva_0.6.inst.cfg rename to resources/variants/arjun/arjun300_pva_0.6.inst.cfg index f8e81cd144..40e0c5f3ba 100644 --- a/resources/variants/arjun300_pva_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.6.inst.cfg @@ -1,32 +1,32 @@ [general] +definition = arjun300 name = PVA 0.6 mm Nozzle version = 4 -definition = arjun300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +gradual_support_infill_steps = 2 machine_nozzle_size = 0.6 -support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height -support_offset = 3 +support_angle = 45 support_bottom_height = =layer_height * 2 support_bottom_pattern = zigzag support_bottom_stair_step_height = =layer_height support_infill_rate = 50 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 +support_interface_pattern = concentric support_interface_skip_height = =layer_height support_join_distance = 3 -support_xy_distance = =machine_nozzle_size / 2 -support_xy_distance_overhang = =machine_nozzle_size / 2 -support_angle = 45 +support_offset = 3 support_pattern = triangles support_use_towers = False +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0 -gradual_support_infill_steps = 2 -support_interface_density = 100 -support_interface_pattern = concentric \ No newline at end of file + diff --git a/resources/variants/arjun300_pva_0.8.inst.cfg b/resources/variants/arjun/arjun300_pva_0.8.inst.cfg similarity index 93% rename from resources/variants/arjun300_pva_0.8.inst.cfg rename to resources/variants/arjun/arjun300_pva_0.8.inst.cfg index 8fe8929efa..ee6e5557fb 100644 --- a/resources/variants/arjun300_pva_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.8.inst.cfg @@ -1,32 +1,32 @@ [general] +definition = arjun300 name = PVA 0.8 mm Nozzle version = 4 -definition = arjun300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +gradual_support_infill_steps = 2 machine_nozzle_size = 0.8 -support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height -support_offset = 3 +support_angle = 45 support_bottom_height = =layer_height * 2 support_bottom_pattern = zigzag support_bottom_stair_step_height = =layer_height support_infill_rate = 50 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 +support_interface_pattern = concentric support_interface_skip_height = =layer_height support_join_distance = 3 -support_xy_distance = =machine_nozzle_size / 2 -support_xy_distance_overhang = =machine_nozzle_size / 2 -support_angle = 45 +support_offset = 3 support_pattern = triangles support_use_towers = False +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0 -gradual_support_infill_steps = 2 -support_interface_density = 100 -support_interface_pattern = concentric \ No newline at end of file + diff --git a/resources/variants/arjunpro300_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_0.2.inst.cfg similarity index 88% rename from resources/variants/arjunpro300_0.2.inst.cfg rename to resources/variants/arjun/arjunpro300_0.2.inst.cfg index d2f541b762..f5d1506610 100644 --- a/resources/variants/arjunpro300_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.2.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjunpro300 name = 0.2 mm Nozzle version = 4 -definition = arjunpro300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/arjunpro300_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_0.3.inst.cfg similarity index 88% rename from resources/variants/arjunpro300_0.3.inst.cfg rename to resources/variants/arjun/arjunpro300_0.3.inst.cfg index 94bd84d8de..ad2c0ad0c7 100644 --- a/resources/variants/arjunpro300_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.3.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjunpro300 name = 0.3 mm Nozzle version = 4 -definition = arjunpro300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/arjunpro300_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_0.4.inst.cfg similarity index 88% rename from resources/variants/arjunpro300_0.4.inst.cfg rename to resources/variants/arjun/arjunpro300_0.4.inst.cfg index aa225cd72e..ace0f0bb40 100644 --- a/resources/variants/arjunpro300_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.4.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjunpro300 name = 0.4 mm Nozzle version = 4 -definition = arjunpro300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/arjunpro300_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_0.5.inst.cfg similarity index 88% rename from resources/variants/arjunpro300_0.5.inst.cfg rename to resources/variants/arjun/arjunpro300_0.5.inst.cfg index 718361f5e0..085a1d5ea2 100644 --- a/resources/variants/arjunpro300_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.5.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjunpro300 name = 0.5 mm Nozzle version = 4 -definition = arjunpro300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/arjunpro300_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_0.6.inst.cfg similarity index 88% rename from resources/variants/arjunpro300_0.6.inst.cfg rename to resources/variants/arjun/arjunpro300_0.6.inst.cfg index 267c3d5797..2976b3a7b0 100644 --- a/resources/variants/arjunpro300_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.6.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjunpro300 name = 0.6 mm Nozzle version = 4 -definition = arjunpro300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/arjunpro300_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_0.8.inst.cfg similarity index 88% rename from resources/variants/arjunpro300_0.8.inst.cfg rename to resources/variants/arjun/arjunpro300_0.8.inst.cfg index 997488e923..bee58c2f5f 100644 --- a/resources/variants/arjunpro300_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.8.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjunpro300 name = 0.8 mm Nozzle version = 4 -definition = arjunpro300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/arjunpro300_dm_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg similarity index 88% rename from resources/variants/arjunpro300_dm_0.2.inst.cfg rename to resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg index 08fd4b6981..091ad83670 100644 --- a/resources/variants/arjunpro300_dm_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjunpro_duplication name = 0.2 mm Nozzle version = 4 -definition = arjunpro_duplication [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/arjunpro300_dm_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg similarity index 88% rename from resources/variants/arjunpro300_dm_0.3.inst.cfg rename to resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg index 1ccc1bffa2..b6f9eb6522 100644 --- a/resources/variants/arjunpro300_dm_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjunpro_duplication name = 0.3 mm Nozzle version = 4 -definition = arjunpro_duplication [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/arjunpro300_dm_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg similarity index 88% rename from resources/variants/arjunpro300_dm_0.4.inst.cfg rename to resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg index 1b56700576..c60c55ad05 100644 --- a/resources/variants/arjunpro300_dm_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjunpro_duplication name = 0.4 mm Nozzle version = 4 -definition = arjunpro_duplication [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/arjunpro300_dm_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg similarity index 88% rename from resources/variants/arjunpro300_dm_0.5.inst.cfg rename to resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg index 6051dd54f0..0ad2553b8e 100644 --- a/resources/variants/arjunpro300_dm_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjunpro_duplication name = 0.5 mm Nozzle version = 4 -definition = arjunpro_duplication [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/arjunpro300_dm_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg similarity index 88% rename from resources/variants/arjunpro300_dm_0.6.inst.cfg rename to resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg index 6f1aecaf8e..581f430e03 100644 --- a/resources/variants/arjunpro300_dm_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjunpro_duplication name = 0.6 mm Nozzle version = 4 -definition = arjunpro_duplication [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/arjunpro300_dm_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg similarity index 88% rename from resources/variants/arjunpro300_dm_0.8.inst.cfg rename to resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg index d0ffe4377d..7bbe603969 100644 --- a/resources/variants/arjunpro300_dm_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjunpro_duplication name = 0.8 mm Nozzle version = 4 -definition = arjunpro_duplication [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/arjunpro300_mm_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg similarity index 88% rename from resources/variants/arjunpro300_mm_0.2.inst.cfg rename to resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg index 790ba5541a..45a05c0eea 100644 --- a/resources/variants/arjunpro300_mm_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjunpro_mirrored name = 0.2 mm Nozzle version = 4 -definition = arjunpro_mirrored [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/arjunpro300_mm_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg similarity index 88% rename from resources/variants/arjunpro300_mm_0.3.inst.cfg rename to resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg index cf47c39b5d..4475cdcded 100644 --- a/resources/variants/arjunpro300_mm_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjunpro_mirrored name = 0.3 mm Nozzle version = 4 -definition = arjunpro_mirrored [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/arjunpro300_mm_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg similarity index 88% rename from resources/variants/arjunpro300_mm_0.4.inst.cfg rename to resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg index a70bf54ace..02c50dfac7 100644 --- a/resources/variants/arjunpro300_mm_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjunpro_mirrored name = 0.4 mm Nozzle version = 4 -definition = arjunpro_mirrored [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/arjunpro300_mm_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg similarity index 88% rename from resources/variants/arjunpro300_mm_0.5.inst.cfg rename to resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg index 1dff7b55d9..07443b9d26 100644 --- a/resources/variants/arjunpro300_mm_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjunpro_mirrored name = 0.5 mm Nozzle version = 4 -definition = arjunpro_mirrored [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/arjunpro300_mm_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg similarity index 88% rename from resources/variants/arjunpro300_mm_0.6.inst.cfg rename to resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg index 6aacf3de12..b0ed67209c 100644 --- a/resources/variants/arjunpro300_mm_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjunpro_mirrored name = 0.6 mm Nozzle version = 4 -definition = arjunpro_mirrored [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/arjunpro300_mm_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg similarity index 88% rename from resources/variants/arjunpro300_mm_0.8.inst.cfg rename to resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg index 44880a66c8..64733eeff1 100644 --- a/resources/variants/arjunpro300_mm_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = arjunpro_mirrored name = 0.8 mm Nozzle version = 4 -definition = arjunpro_mirrored [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/arjunpro300_pva_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg similarity index 93% rename from resources/variants/arjunpro300_pva_0.2.inst.cfg rename to resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg index d31fd852e5..60d7f77d7b 100644 --- a/resources/variants/arjunpro300_pva_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg @@ -1,32 +1,32 @@ [general] +definition = arjunpro300 name = PVA 0.2 mm Nozzle version = 4 -definition = arjunpro300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +gradual_support_infill_steps = 2 machine_nozzle_size = 0.2 -support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height -support_offset = 3 +support_angle = 45 support_bottom_height = =layer_height * 2 support_bottom_pattern = zigzag support_bottom_stair_step_height = =layer_height support_infill_rate = 50 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 +support_interface_pattern = concentric support_interface_skip_height = =layer_height support_join_distance = 3 -support_xy_distance = =machine_nozzle_size / 2 -support_xy_distance_overhang = =machine_nozzle_size / 2 -support_angle = 45 +support_offset = 3 support_pattern = triangles support_use_towers = False +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0 -gradual_support_infill_steps = 2 -support_interface_density = 100 -support_interface_pattern = concentric \ No newline at end of file + diff --git a/resources/variants/arjunpro300_pva_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg similarity index 93% rename from resources/variants/arjunpro300_pva_0.3.inst.cfg rename to resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg index b6f489c20b..f4c0c7e37a 100644 --- a/resources/variants/arjunpro300_pva_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg @@ -1,32 +1,32 @@ [general] +definition = arjunpro300 name = PVA 0.3 mm Nozzle version = 4 -definition = arjunpro300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +gradual_support_infill_steps = 2 machine_nozzle_size = 0.3 -support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height -support_offset = 3 +support_angle = 45 support_bottom_height = =layer_height * 2 support_bottom_pattern = zigzag support_bottom_stair_step_height = =layer_height support_infill_rate = 50 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 +support_interface_pattern = concentric support_interface_skip_height = =layer_height support_join_distance = 3 -support_xy_distance = =machine_nozzle_size / 2 -support_xy_distance_overhang = =machine_nozzle_size / 2 -support_angle = 45 +support_offset = 3 support_pattern = triangles support_use_towers = False +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0 -gradual_support_infill_steps = 2 -support_interface_density = 100 -support_interface_pattern = concentric \ No newline at end of file + diff --git a/resources/variants/arjunpro300_pva_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg similarity index 93% rename from resources/variants/arjunpro300_pva_0.4.inst.cfg rename to resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg index 2f0478a89f..25f40aa829 100644 --- a/resources/variants/arjunpro300_pva_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg @@ -1,32 +1,32 @@ [general] +definition = arjunpro300 name = PVA 0.4 mm Nozzle version = 4 -definition = arjunpro300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +gradual_support_infill_steps = 2 machine_nozzle_size = 0.4 -support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height -support_offset = 3 +support_angle = 45 support_bottom_height = =layer_height * 2 support_bottom_pattern = zigzag support_bottom_stair_step_height = =layer_height support_infill_rate = 50 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 +support_interface_pattern = concentric support_interface_skip_height = =layer_height support_join_distance = 3 -support_xy_distance = =machine_nozzle_size / 2 -support_xy_distance_overhang = =machine_nozzle_size / 2 -support_angle = 45 +support_offset = 3 support_pattern = triangles support_use_towers = False +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0 -gradual_support_infill_steps = 2 -support_interface_density = 100 -support_interface_pattern = concentric \ No newline at end of file + diff --git a/resources/variants/arjunpro300_pva_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg similarity index 93% rename from resources/variants/arjunpro300_pva_0.5.inst.cfg rename to resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg index a6e9316468..cbb9ea3deb 100644 --- a/resources/variants/arjunpro300_pva_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg @@ -1,32 +1,32 @@ [general] +definition = arjunpro300 name = PVA 0.5 mm Nozzle version = 4 -definition = arjunpro300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +gradual_support_infill_steps = 2 machine_nozzle_size = 0.5 -support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height -support_offset = 3 +support_angle = 45 support_bottom_height = =layer_height * 2 support_bottom_pattern = zigzag support_bottom_stair_step_height = =layer_height support_infill_rate = 50 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 +support_interface_pattern = concentric support_interface_skip_height = =layer_height support_join_distance = 3 -support_xy_distance = =machine_nozzle_size / 2 -support_xy_distance_overhang = =machine_nozzle_size / 2 -support_angle = 45 +support_offset = 3 support_pattern = triangles support_use_towers = False +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0 -gradual_support_infill_steps = 2 -support_interface_density = 100 -support_interface_pattern = concentric \ No newline at end of file + diff --git a/resources/variants/arjunpro300_pva_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg similarity index 93% rename from resources/variants/arjunpro300_pva_0.6.inst.cfg rename to resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg index 6036eb82a4..d9459b476a 100644 --- a/resources/variants/arjunpro300_pva_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg @@ -1,32 +1,32 @@ [general] +definition = arjunpro300 name = PVA 0.6 mm Nozzle version = 4 -definition = arjunpro300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +gradual_support_infill_steps = 2 machine_nozzle_size = 0.6 -support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height -support_offset = 3 +support_angle = 45 support_bottom_height = =layer_height * 2 support_bottom_pattern = zigzag support_bottom_stair_step_height = =layer_height support_infill_rate = 50 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 +support_interface_pattern = concentric support_interface_skip_height = =layer_height support_join_distance = 3 -support_xy_distance = =machine_nozzle_size / 2 -support_xy_distance_overhang = =machine_nozzle_size / 2 -support_angle = 45 +support_offset = 3 support_pattern = triangles support_use_towers = False +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0 -gradual_support_infill_steps = 2 -support_interface_density = 100 -support_interface_pattern = concentric \ No newline at end of file + diff --git a/resources/variants/arjunpro300_pva_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg similarity index 93% rename from resources/variants/arjunpro300_pva_0.8.inst.cfg rename to resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg index 67ab3ddce5..cf5df5f37d 100644 --- a/resources/variants/arjunpro300_pva_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg @@ -1,32 +1,32 @@ [general] +definition = arjunpro300 name = PVA 0.8 mm Nozzle version = 4 -definition = arjunpro300 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +gradual_support_infill_steps = 2 machine_nozzle_size = 0.8 -support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height -support_offset = 3 +support_angle = 45 support_bottom_height = =layer_height * 2 support_bottom_pattern = zigzag support_bottom_stair_step_height = =layer_height support_infill_rate = 50 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 +support_interface_pattern = concentric support_interface_skip_height = =layer_height support_join_distance = 3 -support_xy_distance = =machine_nozzle_size / 2 -support_xy_distance_overhang = =machine_nozzle_size / 2 -support_angle = 45 +support_offset = 3 support_pattern = triangles support_use_towers = False +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0 -gradual_support_infill_steps = 2 -support_interface_density = 100 -support_interface_pattern = concentric \ No newline at end of file + diff --git a/resources/variants/artillery_base_0.2.inst.cfg b/resources/variants/artillery/artillery_base_0.2.inst.cfg similarity index 87% rename from resources/variants/artillery_base_0.2.inst.cfg rename to resources/variants/artillery/artillery_base_0.2.inst.cfg index 7a97d16925..f2ff1eecce 100644 --- a/resources/variants/artillery_base_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = artillery_base name = 0.2mm Nozzle version = 4 -definition = artillery_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/artillery_base_0.3.inst.cfg b/resources/variants/artillery/artillery_base_0.3.inst.cfg similarity index 87% rename from resources/variants/artillery_base_0.3.inst.cfg rename to resources/variants/artillery/artillery_base_0.3.inst.cfg index 968c5a2895..1c2e7e39b1 100644 --- a/resources/variants/artillery_base_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = artillery_base name = 0.3mm Nozzle version = 4 -definition = artillery_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/artillery_base_0.4.inst.cfg b/resources/variants/artillery/artillery_base_0.4.inst.cfg similarity index 87% rename from resources/variants/artillery_base_0.4.inst.cfg rename to resources/variants/artillery/artillery_base_0.4.inst.cfg index 0684147900..ced36c984c 100644 --- a/resources/variants/artillery_base_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = artillery_base name = 0.4mm Nozzle version = 4 -definition = artillery_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/artillery_base_0.6.inst.cfg b/resources/variants/artillery/artillery_base_0.6.inst.cfg similarity index 87% rename from resources/variants/artillery_base_0.6.inst.cfg rename to resources/variants/artillery/artillery_base_0.6.inst.cfg index c657a509d6..8a5d140461 100644 --- a/resources/variants/artillery_base_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = artillery_base name = 0.6mm Nozzle version = 4 -definition = artillery_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/artillery_base_0.8.inst.cfg b/resources/variants/artillery/artillery_base_0.8.inst.cfg similarity index 87% rename from resources/variants/artillery_base_0.8.inst.cfg rename to resources/variants/artillery/artillery_base_0.8.inst.cfg index 70c1edcbe8..f2b8936aa6 100644 --- a/resources/variants/artillery_base_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = artillery_base name = 0.8mm Nozzle version = 4 -definition = artillery_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/artillery_base_1.0.inst.cfg b/resources/variants/artillery/artillery_base_1.0.inst.cfg similarity index 87% rename from resources/variants/artillery_base_1.0.inst.cfg rename to resources/variants/artillery/artillery_base_1.0.inst.cfg index f114ce98fe..8aef4b3919 100644 --- a/resources/variants/artillery_base_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_base_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = artillery_base name = 1.0mm Nozzle version = 4 -definition = artillery_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/artillery_genius_0.2.inst.cfg b/resources/variants/artillery/artillery_genius_0.2.inst.cfg similarity index 87% rename from resources/variants/artillery_genius_0.2.inst.cfg rename to resources/variants/artillery/artillery_genius_0.2.inst.cfg index 22e284cf5e..81f21a9803 100644 --- a/resources/variants/artillery_genius_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = artillery_genius name = 0.2mm Nozzle version = 4 -definition = artillery_genius [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/artillery_genius_0.3.inst.cfg b/resources/variants/artillery/artillery_genius_0.3.inst.cfg similarity index 87% rename from resources/variants/artillery_genius_0.3.inst.cfg rename to resources/variants/artillery/artillery_genius_0.3.inst.cfg index f2e44ab84d..aeee90957a 100644 --- a/resources/variants/artillery_genius_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = artillery_genius name = 0.3mm Nozzle version = 4 -definition = artillery_genius [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/artillery_genius_0.4.inst.cfg b/resources/variants/artillery/artillery_genius_0.4.inst.cfg similarity index 87% rename from resources/variants/artillery_genius_0.4.inst.cfg rename to resources/variants/artillery/artillery_genius_0.4.inst.cfg index d3f3d72290..9ae2dcd26c 100644 --- a/resources/variants/artillery_genius_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = artillery_genius name = 0.4mm Nozzle version = 4 -definition = artillery_genius [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/artillery_genius_0.5.inst.cfg b/resources/variants/artillery/artillery_genius_0.5.inst.cfg similarity index 87% rename from resources/variants/artillery_genius_0.5.inst.cfg rename to resources/variants/artillery/artillery_genius_0.5.inst.cfg index edecd90265..1ceec2ae13 100644 --- a/resources/variants/artillery_genius_0.5.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = artillery_genius name = 0.5mm Nozzle version = 4 -definition = artillery_genius [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/artillery_genius_0.6.inst.cfg b/resources/variants/artillery/artillery_genius_0.6.inst.cfg similarity index 87% rename from resources/variants/artillery_genius_0.6.inst.cfg rename to resources/variants/artillery/artillery_genius_0.6.inst.cfg index 2a108c2f12..ca4f68f56d 100644 --- a/resources/variants/artillery_genius_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = artillery_genius name = 0.6mm Nozzle version = 4 -definition = artillery_genius [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/artillery_genius_0.8.inst.cfg b/resources/variants/artillery/artillery_genius_0.8.inst.cfg similarity index 87% rename from resources/variants/artillery_genius_0.8.inst.cfg rename to resources/variants/artillery/artillery_genius_0.8.inst.cfg index f769a05498..a25fe2ead9 100644 --- a/resources/variants/artillery_genius_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = artillery_genius name = 0.8mm Nozzle version = 4 -definition = artillery_genius [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/artillery_genius_1.0.inst.cfg b/resources/variants/artillery/artillery_genius_1.0.inst.cfg similarity index 87% rename from resources/variants/artillery_genius_1.0.inst.cfg rename to resources/variants/artillery/artillery_genius_1.0.inst.cfg index 9eefdde2eb..9fe74fa826 100644 --- a/resources/variants/artillery_genius_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_genius_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = artillery_genius name = 1.0mm Nozzle version = 4 -definition = artillery_genius [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/artillery/artillery_hornet_0.2.inst.cfg b/resources/variants/artillery/artillery_hornet_0.2.inst.cfg new file mode 100644 index 0000000000..6d28800ee5 --- /dev/null +++ b/resources/variants/artillery/artillery_hornet_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = artillery_hornet +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/artillery/artillery_hornet_0.3.inst.cfg b/resources/variants/artillery/artillery_hornet_0.3.inst.cfg new file mode 100644 index 0000000000..c57bd0ff2c --- /dev/null +++ b/resources/variants/artillery/artillery_hornet_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = artillery_hornet +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/artillery/artillery_hornet_0.4.inst.cfg b/resources/variants/artillery/artillery_hornet_0.4.inst.cfg new file mode 100644 index 0000000000..b9dc76e966 --- /dev/null +++ b/resources/variants/artillery/artillery_hornet_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = artillery_hornet +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/artillery/artillery_hornet_0.5.inst.cfg b/resources/variants/artillery/artillery_hornet_0.5.inst.cfg new file mode 100644 index 0000000000..51ce6bc2bd --- /dev/null +++ b/resources/variants/artillery/artillery_hornet_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = artillery_hornet +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/artillery/artillery_hornet_0.6.inst.cfg b/resources/variants/artillery/artillery_hornet_0.6.inst.cfg new file mode 100644 index 0000000000..690360bf15 --- /dev/null +++ b/resources/variants/artillery/artillery_hornet_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = artillery_hornet +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/artillery/artillery_hornet_0.8.inst.cfg b/resources/variants/artillery/artillery_hornet_0.8.inst.cfg new file mode 100644 index 0000000000..14de186199 --- /dev/null +++ b/resources/variants/artillery/artillery_hornet_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = artillery_hornet +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/artillery/artillery_hornet_1.0.inst.cfg b/resources/variants/artillery/artillery_hornet_1.0.inst.cfg new file mode 100644 index 0000000000..4ca3b07d68 --- /dev/null +++ b/resources/variants/artillery/artillery_hornet_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = artillery_hornet +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/artillery_sidewinder_x1_0.2.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg similarity index 88% rename from resources/variants/artillery_sidewinder_x1_0.2.inst.cfg rename to resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg index 0349ad6d1b..1c1d017ca4 100644 --- a/resources/variants/artillery_sidewinder_x1_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = artillery_sidewinder_x1 name = 0.2mm Nozzle version = 4 -definition = artillery_sidewinder_x1 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/artillery_sidewinder_x1_0.3.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg similarity index 88% rename from resources/variants/artillery_sidewinder_x1_0.3.inst.cfg rename to resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg index 04882e77d4..a6ac9c3a72 100644 --- a/resources/variants/artillery_sidewinder_x1_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = artillery_sidewinder_x1 name = 0.3mm Nozzle version = 4 -definition = artillery_sidewinder_x1 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/artillery_sidewinder_x1_0.4.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg similarity index 88% rename from resources/variants/artillery_sidewinder_x1_0.4.inst.cfg rename to resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg index c281233316..3dbeb3e612 100644 --- a/resources/variants/artillery_sidewinder_x1_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = artillery_sidewinder_x1 name = 0.4mm Nozzle version = 4 -definition = artillery_sidewinder_x1 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/artillery_sidewinder_x1_0.6.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg similarity index 88% rename from resources/variants/artillery_sidewinder_x1_0.6.inst.cfg rename to resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg index 98ea76d8ae..e0baaf8ff8 100644 --- a/resources/variants/artillery_sidewinder_x1_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = artillery_sidewinder_x1 name = 0.6mm Nozzle version = 4 -definition = artillery_sidewinder_x1 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/artillery_sidewinder_x1_0.8.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg similarity index 88% rename from resources/variants/artillery_sidewinder_x1_0.8.inst.cfg rename to resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg index 077cdec063..1191969b3f 100644 --- a/resources/variants/artillery_sidewinder_x1_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = artillery_sidewinder_x1 name = 0.8mm Nozzle version = 4 -definition = artillery_sidewinder_x1 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/artillery_sidewinder_x1_1.0.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg similarity index 88% rename from resources/variants/artillery_sidewinder_x1_1.0.inst.cfg rename to resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg index 1e720fbfb4..9983a82721 100644 --- a/resources/variants/artillery_sidewinder_x1_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = artillery_sidewinder_x1 name = 1.0mm Nozzle version = 4 -definition = artillery_sidewinder_x1 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/atmat_asterion_ht_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg similarity index 87% rename from resources/variants/atmat_asterion_ht_v6_0.40.inst.cfg rename to resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg index 55124d2651..bff7834759 100644 --- a/resources/variants/atmat_asterion_ht_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = atmat_asterion_ht name = V6 0.40mm version = 4 -definition = atmat_asterion_ht [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/atmat_asterion_ht_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg similarity index 88% rename from resources/variants/atmat_asterion_ht_v6_0.80.inst.cfg rename to resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg index 2decbd9e7b..9a2eb1303a 100644 --- a/resources/variants/atmat_asterion_ht_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = atmat_asterion_ht name = V6 0.80mm version = 4 -definition = atmat_asterion_ht [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 support_angle = 55 + diff --git a/resources/variants/atmat_asterion_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg similarity index 87% rename from resources/variants/atmat_asterion_v6_0.40.inst.cfg rename to resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg index 8ae2e8bae2..43ffb12626 100644 --- a/resources/variants/atmat_asterion_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = atmat_asterion name = V6 0.40mm version = 4 -definition = atmat_asterion [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/atmat_asterion_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg similarity index 88% rename from resources/variants/atmat_asterion_v6_0.80.inst.cfg rename to resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg index 076527c9e5..ecdd2feef8 100644 --- a/resources/variants/atmat_asterion_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = atmat_asterion name = V6 0.80mm version = 4 -definition = atmat_asterion [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 support_angle = 55 + diff --git a/resources/variants/atmat_galaxy_500_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg similarity index 87% rename from resources/variants/atmat_galaxy_500_v6_0.40.inst.cfg rename to resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg index b5a5c90122..e3df8ef738 100644 --- a/resources/variants/atmat_galaxy_500_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = atmat_galaxy_500 name = V6 0.40mm version = 4 -definition = atmat_galaxy_500 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/atmat_galaxy_500_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg similarity index 88% rename from resources/variants/atmat_galaxy_500_v6_0.80.inst.cfg rename to resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg index 3571e8de62..359c455dd5 100644 --- a/resources/variants/atmat_galaxy_500_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = atmat_galaxy_500 name = V6 0.80mm version = 4 -definition = atmat_galaxy_500 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 support_angle = 55 + diff --git a/resources/variants/atmat_galaxy_600_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg similarity index 87% rename from resources/variants/atmat_galaxy_600_v6_0.40.inst.cfg rename to resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg index 1d8a530f86..3ff08a0486 100644 --- a/resources/variants/atmat_galaxy_600_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = atmat_galaxy_600 name = V6 0.40mm version = 4 -definition = atmat_galaxy_600 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/atmat_galaxy_600_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg similarity index 88% rename from resources/variants/atmat_galaxy_600_v6_0.80.inst.cfg rename to resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg index 5031a6f48a..d0265cec28 100644 --- a/resources/variants/atmat_galaxy_600_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = atmat_galaxy_600 name = V6 0.80mm version = 4 -definition = atmat_galaxy_600 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 support_angle = 55 + diff --git a/resources/variants/atmat_signal_pro_300_v1_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg similarity index 88% rename from resources/variants/atmat_signal_pro_300_v1_v6_0.40.inst.cfg rename to resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg index ece7b152a8..828e64805b 100644 --- a/resources/variants/atmat_signal_pro_300_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = atmat_signal_pro_300_v1 name = V6 0.40mm version = 4 -definition = atmat_signal_pro_300_v1 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/atmat_signal_pro_300_v1_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg similarity index 89% rename from resources/variants/atmat_signal_pro_300_v1_v6_0.80.inst.cfg rename to resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg index bad02c79bc..775ccd5373 100644 --- a/resources/variants/atmat_signal_pro_300_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = atmat_signal_pro_300_v1 name = V6 0.80mm version = 4 -definition = atmat_signal_pro_300_v1 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 support_angle = 55 + diff --git a/resources/variants/atmat_signal_pro_300_v2_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg similarity index 88% rename from resources/variants/atmat_signal_pro_300_v2_v6_0.40.inst.cfg rename to resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg index 46b519f8f4..25f75703ae 100644 --- a/resources/variants/atmat_signal_pro_300_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = atmat_signal_pro_300_v2 name = V6 0.40mm version = 4 -definition = atmat_signal_pro_300_v2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/atmat_signal_pro_300_v2_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg similarity index 89% rename from resources/variants/atmat_signal_pro_300_v2_v6_0.80.inst.cfg rename to resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg index 0da4e80fe1..e3df372858 100644 --- a/resources/variants/atmat_signal_pro_300_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = atmat_signal_pro_300_v2 name = V6 0.80mm version = 4 -definition = atmat_signal_pro_300_v2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 support_angle = 55 + diff --git a/resources/variants/atmat_signal_pro_400_v1_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg similarity index 88% rename from resources/variants/atmat_signal_pro_400_v1_v6_0.40.inst.cfg rename to resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg index 50454cce38..a757ec6ad1 100644 --- a/resources/variants/atmat_signal_pro_400_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = atmat_signal_pro_400_v1 name = V6 0.40mm version = 4 -definition = atmat_signal_pro_400_v1 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/atmat_signal_pro_400_v1_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg similarity index 89% rename from resources/variants/atmat_signal_pro_400_v1_v6_0.80.inst.cfg rename to resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg index 9776b2c884..3c8dedb3a3 100644 --- a/resources/variants/atmat_signal_pro_400_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = atmat_signal_pro_400_v1 name = V6 0.80mm version = 4 -definition = atmat_signal_pro_400_v1 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 support_angle = 55 + diff --git a/resources/variants/atmat_signal_pro_400_v2_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg similarity index 88% rename from resources/variants/atmat_signal_pro_400_v2_v6_0.40.inst.cfg rename to resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg index cd5434f4e9..7a2891e9ce 100644 --- a/resources/variants/atmat_signal_pro_400_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = atmat_signal_pro_400_v2 name = V6 0.40mm version = 4 -definition = atmat_signal_pro_400_v2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/atmat_signal_pro_400_v2_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg similarity index 89% rename from resources/variants/atmat_signal_pro_400_v2_v6_0.80.inst.cfg rename to resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg index 93f360b5eb..b4e33629dd 100644 --- a/resources/variants/atmat_signal_pro_400_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = atmat_signal_pro_400_v2 name = V6 0.80mm version = 4 -definition = atmat_signal_pro_400_v2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 support_angle = 55 + diff --git a/resources/variants/atmat_signal_pro_500_v1_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg similarity index 88% rename from resources/variants/atmat_signal_pro_500_v1_v6_0.40.inst.cfg rename to resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg index 3f78a20346..d71af8d02a 100644 --- a/resources/variants/atmat_signal_pro_500_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = atmat_signal_pro_500_v1 name = V6 0.40mm version = 4 -definition = atmat_signal_pro_500_v1 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/atmat_signal_pro_500_v1_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg similarity index 89% rename from resources/variants/atmat_signal_pro_500_v1_v6_0.80.inst.cfg rename to resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg index 83827d3890..e1e1012e7f 100644 --- a/resources/variants/atmat_signal_pro_500_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = atmat_signal_pro_500_v1 name = V6 0.80mm version = 4 -definition = atmat_signal_pro_500_v1 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 support_angle = 55 + diff --git a/resources/variants/atmat_signal_pro_500_v2_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg similarity index 88% rename from resources/variants/atmat_signal_pro_500_v2_v6_0.40.inst.cfg rename to resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg index 1b63970dc3..80706e803d 100644 --- a/resources/variants/atmat_signal_pro_500_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = atmat_signal_pro_500_v2 name = V6 0.40mm version = 4 -definition = atmat_signal_pro_500_v2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/atmat_signal_pro_500_v2_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg similarity index 89% rename from resources/variants/atmat_signal_pro_500_v2_v6_0.80.inst.cfg rename to resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg index 504040a51b..533e8e0ed8 100644 --- a/resources/variants/atmat_signal_pro_500_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = atmat_signal_pro_500_v2 name = V6 0.80mm version = 4 -definition = atmat_signal_pro_500_v2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 support_angle = 55 + diff --git a/resources/variants/atmat_signal_xl_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg similarity index 87% rename from resources/variants/atmat_signal_xl_v6_0.40.inst.cfg rename to resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg index c1cb655230..86ff65c533 100644 --- a/resources/variants/atmat_signal_xl_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = atmat_signal_xl name = V6 0.40mm version = 4 -definition = atmat_signal_xl [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/atmat_signal_xl_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg similarity index 88% rename from resources/variants/atmat_signal_xl_v6_0.80.inst.cfg rename to resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg index 0875333c37..3f8f603c37 100644 --- a/resources/variants/atmat_signal_xl_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = atmat_signal_xl name = V6 0.80mm version = 4 -definition = atmat_signal_xl [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 support_angle = 55 + diff --git a/resources/variants/atmat_signal_xxl_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg similarity index 87% rename from resources/variants/atmat_signal_xxl_v6_0.40.inst.cfg rename to resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg index 59e3c4a867..461ff2a018 100644 --- a/resources/variants/atmat_signal_xxl_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = atmat_signal_xxl name = V6 0.40mm version = 4 -definition = atmat_signal_xxl [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/atmat_signal_xxl_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg similarity index 88% rename from resources/variants/atmat_signal_xxl_v6_0.80.inst.cfg rename to resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg index 48d3121fd0..186e18b881 100644 --- a/resources/variants/atmat_signal_xxl_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = atmat_signal_xxl name = V6 0.80mm version = 4 -definition = atmat_signal_xxl [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 support_angle = 55 + diff --git a/resources/variants/atmat_signal_xxxl_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg similarity index 87% rename from resources/variants/atmat_signal_xxxl_v6_0.40.inst.cfg rename to resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg index 7577fd89ad..3261fd1b4e 100644 --- a/resources/variants/atmat_signal_xxxl_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = atmat_signal_xxxl name = V6 0.40mm version = 4 -definition = atmat_signal_xxxl [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/atmat_signal_xxxl_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg similarity index 88% rename from resources/variants/atmat_signal_xxxl_v6_0.80.inst.cfg rename to resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg index 705a399c9d..2b60dace64 100644 --- a/resources/variants/atmat_signal_xxxl_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = atmat_signal_xxxl name = V6 0.80mm version = 4 -definition = atmat_signal_xxxl [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 support_angle = 55 + diff --git a/resources/variants/atom3_all_metal_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg similarity index 81% rename from resources/variants/atom3_all_metal_brass_0.2.inst.cfg rename to resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg index 8bf3ec21ee..482efd61b5 100644 --- a/resources/variants/atom3_all_metal_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = atom3 name = All metal hotend + 0.2mm brass nozzle version = 4 -definition = atom3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 retraction_amount = 3 -retraction_speed = 50 \ No newline at end of file +retraction_speed = 50 + diff --git a/resources/variants/atom3_all_metal_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg similarity index 81% rename from resources/variants/atom3_all_metal_brass_0.4.inst.cfg rename to resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg index 1b0dcc4ca4..11fc3b222e 100644 --- a/resources/variants/atom3_all_metal_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = atom3 name = All metal hotend + 0.4mm brass nozzle version = 4 -definition = atom3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 retraction_amount = 3 -retraction_speed = 50 \ No newline at end of file +retraction_speed = 50 + diff --git a/resources/variants/atom3_all_metal_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg similarity index 81% rename from resources/variants/atom3_all_metal_brass_0.6.inst.cfg rename to resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg index 3e0b5460dc..0cd4aa92ea 100644 --- a/resources/variants/atom3_all_metal_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = atom3 name = All metal hotend + 0.6mm brass nozzle version = 4 -definition = atom3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 retraction_amount = 3 -retraction_speed = 50 \ No newline at end of file +retraction_speed = 50 + diff --git a/resources/variants/atom3_lite_all_metal_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg similarity index 81% rename from resources/variants/atom3_lite_all_metal_brass_0.2.inst.cfg rename to resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg index 91b7f74874..33c16b9e3b 100644 --- a/resources/variants/atom3_lite_all_metal_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = atom3_lite name = All metal hotend + 0.2mm brass nozzle version = 4 -definition = atom3_lite [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 retraction_amount = 3 -retraction_speed = 50 \ No newline at end of file +retraction_speed = 50 + diff --git a/resources/variants/atom3_lite_all_metal_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg similarity index 81% rename from resources/variants/atom3_lite_all_metal_brass_0.4.inst.cfg rename to resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg index 29fe1e75bc..13bd63686d 100644 --- a/resources/variants/atom3_lite_all_metal_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = atom3_lite name = All metal hotend + 0.4mm brass nozzle version = 4 -definition = atom3_lite [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 retraction_amount = 3 -retraction_speed = 50 \ No newline at end of file +retraction_speed = 50 + diff --git a/resources/variants/atom3_lite_all_metal_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg similarity index 77% rename from resources/variants/atom3_lite_all_metal_brass_0.6.inst.cfg rename to resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg index f3ae7682c5..869e0d3cc2 100644 --- a/resources/variants/atom3_lite_all_metal_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg @@ -1,14 +1,15 @@ - [general] +[general] +definition = atom3_lite name = All metal hotend + 0.6mm brass nozzle version = 4 -definition = atom3_lite [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 retraction_amount = 3 -retraction_speed = 50 \ No newline at end of file +retraction_speed = 50 + diff --git a/resources/variants/atom3_lite_ptfe_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg similarity index 81% rename from resources/variants/atom3_lite_ptfe_brass_0.2.inst.cfg rename to resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg index 791cdd2f0a..e7a5571602 100644 --- a/resources/variants/atom3_lite_ptfe_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = atom3_lite name = PTFE hotend + 0.2mm brass nozzle version = 4 -definition = atom3_lite [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 retraction_amount = 7 -retraction_speed = 70 \ No newline at end of file +retraction_speed = 70 + diff --git a/resources/variants/atom3_lite_ptfe_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg similarity index 81% rename from resources/variants/atom3_lite_ptfe_brass_0.4.inst.cfg rename to resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg index 3705293a79..c52d2bd3ab 100644 --- a/resources/variants/atom3_lite_ptfe_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = atom3_lite name = PTFE hotend + 0.4mm brass nozzle version = 4 -definition = atom3_lite [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 retraction_amount = 7 -retraction_speed = 70 \ No newline at end of file +retraction_speed = 70 + diff --git a/resources/variants/atom3_lite_ptfe_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg similarity index 81% rename from resources/variants/atom3_lite_ptfe_brass_0.6.inst.cfg rename to resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg index efb277ab5d..1d46ba5767 100644 --- a/resources/variants/atom3_lite_ptfe_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = atom3_lite name = PTFE hotend + 0.6mm brass nozzle version = 4 -definition = atom3_lite [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 retraction_amount = 7 -retraction_speed = 70 \ No newline at end of file +retraction_speed = 70 + diff --git a/resources/variants/atom3_ptfe_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg similarity index 81% rename from resources/variants/atom3_ptfe_brass_0.2.inst.cfg rename to resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg index 2caeb88275..3702ab8599 100644 --- a/resources/variants/atom3_ptfe_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = atom3 name = PTFE hotend + 0.2mm brass nozzle version = 4 -definition = atom3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 retraction_amount = 7 -retraction_speed = 70 \ No newline at end of file +retraction_speed = 70 + diff --git a/resources/variants/atom3_ptfe_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg similarity index 81% rename from resources/variants/atom3_ptfe_brass_0.4.inst.cfg rename to resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg index aa75b8d7ea..e121b2d94e 100644 --- a/resources/variants/atom3_ptfe_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = atom3 name = PTFE hotend + 0.4mm brass nozzle version = 4 -definition = atom3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 retraction_amount = 7 -retraction_speed = 70 \ No newline at end of file +retraction_speed = 70 + diff --git a/resources/variants/atom3_ptfe_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg similarity index 81% rename from resources/variants/atom3_ptfe_brass_0.6.inst.cfg rename to resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg index 7995a37a59..168d4ee001 100644 --- a/resources/variants/atom3_ptfe_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = atom3 name = PTFE hotend + 0.6mm brass nozzle version = 4 -definition = atom3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 retraction_amount = 7 -retraction_speed = 70 \ No newline at end of file +retraction_speed = 70 + diff --git a/resources/variants/biqu_b1_0.2.inst.cfg b/resources/variants/biqu/biqu_b1_0.2.inst.cfg similarity index 87% rename from resources/variants/biqu_b1_0.2.inst.cfg rename to resources/variants/biqu/biqu_b1_0.2.inst.cfg index 884b2da01a..bd07a70198 100755 --- a/resources/variants/biqu_b1_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_b1 name = 0.2mm Nozzle version = 4 -definition = biqu_b1 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/biqu_b1_0.3.inst.cfg b/resources/variants/biqu/biqu_b1_0.3.inst.cfg similarity index 87% rename from resources/variants/biqu_b1_0.3.inst.cfg rename to resources/variants/biqu/biqu_b1_0.3.inst.cfg index 266c1f08da..1a657b5874 100755 --- a/resources/variants/biqu_b1_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_b1 name = 0.3mm Nozzle version = 4 -definition = biqu_b1 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/biqu_b1_0.4.inst.cfg b/resources/variants/biqu/biqu_b1_0.4.inst.cfg similarity index 87% rename from resources/variants/biqu_b1_0.4.inst.cfg rename to resources/variants/biqu/biqu_b1_0.4.inst.cfg index 08d3f94235..34544d9d2b 100755 --- a/resources/variants/biqu_b1_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_b1 name = 0.4mm Nozzle version = 4 -definition = biqu_b1 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/biqu_b1_0.5.inst.cfg b/resources/variants/biqu/biqu_b1_0.5.inst.cfg similarity index 87% rename from resources/variants/biqu_b1_0.5.inst.cfg rename to resources/variants/biqu/biqu_b1_0.5.inst.cfg index ee207a7387..e20297039a 100755 --- a/resources/variants/biqu_b1_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_b1 name = 0.5mm Nozzle version = 4 -definition = biqu_b1 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/biqu_b1_0.6.inst.cfg b/resources/variants/biqu/biqu_b1_0.6.inst.cfg similarity index 87% rename from resources/variants/biqu_b1_0.6.inst.cfg rename to resources/variants/biqu/biqu_b1_0.6.inst.cfg index 53714e9f29..620b5c385d 100755 --- a/resources/variants/biqu_b1_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_b1 name = 0.6mm Nozzle version = 4 -definition = biqu_b1 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/biqu_b1_0.8.inst.cfg b/resources/variants/biqu/biqu_b1_0.8.inst.cfg similarity index 87% rename from resources/variants/biqu_b1_0.8.inst.cfg rename to resources/variants/biqu/biqu_b1_0.8.inst.cfg index b61610fa19..2ba4ad8235 100755 --- a/resources/variants/biqu_b1_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_b1 name = 0.8mm Nozzle version = 4 -definition = biqu_b1 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/biqu_b1_abl_0.2.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg similarity index 87% rename from resources/variants/biqu_b1_abl_0.2.inst.cfg rename to resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg index 35f0b470b4..dd3838dcb3 100755 --- a/resources/variants/biqu_b1_abl_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_b1_abl name = 0.2mm Nozzle version = 4 -definition = biqu_b1_abl [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/biqu_b1_abl_0.3.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg similarity index 87% rename from resources/variants/biqu_b1_abl_0.3.inst.cfg rename to resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg index 77623ba278..665915ca7b 100755 --- a/resources/variants/biqu_b1_abl_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_b1_abl name = 0.3mm Nozzle version = 4 -definition = biqu_b1_abl [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/biqu_b1_abl_0.4.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg similarity index 87% rename from resources/variants/biqu_b1_abl_0.4.inst.cfg rename to resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg index 81a52825f7..c9d4b008d4 100755 --- a/resources/variants/biqu_b1_abl_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_b1_abl name = 0.4mm Nozzle version = 4 -definition = biqu_b1_abl [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/biqu_b1_abl_0.5.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg similarity index 87% rename from resources/variants/biqu_b1_abl_0.5.inst.cfg rename to resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg index 72ae2f5878..6669153af0 100755 --- a/resources/variants/biqu_b1_abl_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_b1_abl name = 0.5mm Nozzle version = 4 -definition = biqu_b1_abl [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/biqu_b1_abl_0.6.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg similarity index 87% rename from resources/variants/biqu_b1_abl_0.6.inst.cfg rename to resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg index 3dc40ecd02..ec42aefc61 100755 --- a/resources/variants/biqu_b1_abl_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_b1_abl name = 0.6mm Nozzle version = 4 -definition = biqu_b1_abl [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/biqu_b1_abl_0.8.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg similarity index 87% rename from resources/variants/biqu_b1_abl_0.8.inst.cfg rename to resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg index 4573e77c26..670956305c 100755 --- a/resources/variants/biqu_b1_abl_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_b1_abl name = 0.8mm Nozzle version = 4 -definition = biqu_b1_abl [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/biqu_base_0.2.inst.cfg b/resources/variants/biqu/biqu_base_0.2.inst.cfg similarity index 87% rename from resources/variants/biqu_base_0.2.inst.cfg rename to resources/variants/biqu/biqu_base_0.2.inst.cfg index f35c2fbb55..13643d69ec 100755 --- a/resources/variants/biqu_base_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_base name = 0.2mm Nozzle version = 4 -definition = biqu_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/biqu_base_0.3.inst.cfg b/resources/variants/biqu/biqu_base_0.3.inst.cfg similarity index 87% rename from resources/variants/biqu_base_0.3.inst.cfg rename to resources/variants/biqu/biqu_base_0.3.inst.cfg index 333b17cd6b..3d92db130a 100755 --- a/resources/variants/biqu_base_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_base name = 0.3mm Nozzle version = 4 -definition = biqu_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/biqu_base_0.4.inst.cfg b/resources/variants/biqu/biqu_base_0.4.inst.cfg similarity index 87% rename from resources/variants/biqu_base_0.4.inst.cfg rename to resources/variants/biqu/biqu_base_0.4.inst.cfg index f7cacc954f..57494b698b 100755 --- a/resources/variants/biqu_base_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_base name = 0.4mm Nozzle version = 4 -definition = biqu_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/biqu_base_0.5.inst.cfg b/resources/variants/biqu/biqu_base_0.5.inst.cfg similarity index 87% rename from resources/variants/biqu_base_0.5.inst.cfg rename to resources/variants/biqu/biqu_base_0.5.inst.cfg index eddf72b931..cc8c9768a0 100755 --- a/resources/variants/biqu_base_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_base name = 0.5mm Nozzle version = 4 -definition = biqu_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/biqu_base_0.6.inst.cfg b/resources/variants/biqu/biqu_base_0.6.inst.cfg similarity index 87% rename from resources/variants/biqu_base_0.6.inst.cfg rename to resources/variants/biqu/biqu_base_0.6.inst.cfg index 56036e50bc..36de865412 100755 --- a/resources/variants/biqu_base_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_base name = 0.6mm Nozzle version = 4 -definition = biqu_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/biqu_base_0.8.inst.cfg b/resources/variants/biqu/biqu_base_0.8.inst.cfg similarity index 87% rename from resources/variants/biqu_base_0.8.inst.cfg rename to resources/variants/biqu/biqu_base_0.8.inst.cfg index 6c450e423f..45f79ec846 100755 --- a/resources/variants/biqu_base_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_base name = 0.8mm Nozzle version = 4 -definition = biqu_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/biqu_bx_abl_0.2.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg similarity index 87% rename from resources/variants/biqu_bx_abl_0.2.inst.cfg rename to resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg index 24b12175ab..e1477d6752 100755 --- a/resources/variants/biqu_bx_abl_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_bx_abl name = 0.2mm Nozzle version = 4 -definition = biqu_bx_abl [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/biqu_bx_abl_0.3.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg similarity index 87% rename from resources/variants/biqu_bx_abl_0.3.inst.cfg rename to resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg index 257d32662c..e811da5750 100755 --- a/resources/variants/biqu_bx_abl_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_bx_abl name = 0.3mm Nozzle version = 4 -definition = biqu_bx_abl [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/biqu_bx_abl_0.4.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg similarity index 87% rename from resources/variants/biqu_bx_abl_0.4.inst.cfg rename to resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg index 32008f33f3..5fe4548441 100755 --- a/resources/variants/biqu_bx_abl_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_bx_abl name = 0.4mm Nozzle version = 4 -definition = biqu_bx_abl [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/biqu_bx_abl_0.5.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg similarity index 87% rename from resources/variants/biqu_bx_abl_0.5.inst.cfg rename to resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg index e90c6bd8ea..f55767ede3 100755 --- a/resources/variants/biqu_bx_abl_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_bx_abl name = 0.5mm Nozzle version = 4 -definition = biqu_bx_abl [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/biqu_bx_abl_0.6.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg similarity index 87% rename from resources/variants/biqu_bx_abl_0.6.inst.cfg rename to resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg index 44169e7f05..f19b140683 100755 --- a/resources/variants/biqu_bx_abl_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_bx_abl name = 0.6mm Nozzle version = 4 -definition = biqu_bx_abl [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/biqu_bx_abl_0.8.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg similarity index 87% rename from resources/variants/biqu_bx_abl_0.8.inst.cfg rename to resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg index 13c491a1ba..7acc8686fb 100755 --- a/resources/variants/biqu_bx_abl_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = biqu_bx_abl name = 0.8mm Nozzle version = 4 -definition = biqu_bx_abl [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg new file mode 100755 index 0000000000..86bb2dd670 --- /dev/null +++ b/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = biqu_hurakan +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg new file mode 100755 index 0000000000..4eb7a8011a --- /dev/null +++ b/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = biqu_hurakan +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg new file mode 100755 index 0000000000..807cb5ddd6 --- /dev/null +++ b/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = biqu_hurakan +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg new file mode 100755 index 0000000000..daceb747d7 --- /dev/null +++ b/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = biqu_hurakan +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg new file mode 100755 index 0000000000..544623031b --- /dev/null +++ b/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = biqu_hurakan +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg new file mode 100755 index 0000000000..8ec6520673 --- /dev/null +++ b/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = biqu_hurakan +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_mkii_0.20.inst.cfg b/resources/variants/blocks/blocks_mkii_0.20.inst.cfg new file mode 100644 index 0000000000..167ef6d559 --- /dev/null +++ b/resources/variants/blocks/blocks_mkii_0.20.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_mkii +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/blocks/blocks_mkii_0.30.inst.cfg b/resources/variants/blocks/blocks_mkii_0.30.inst.cfg new file mode 100644 index 0000000000..eb0d901496 --- /dev/null +++ b/resources/variants/blocks/blocks_mkii_0.30.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_mkii +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/blocks/blocks_mkii_0.40.inst.cfg b/resources/variants/blocks/blocks_mkii_0.40.inst.cfg new file mode 100644 index 0000000000..ec2f987458 --- /dev/null +++ b/resources/variants/blocks/blocks_mkii_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_mkii +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_mkii_0.50.inst.cfg b/resources/variants/blocks/blocks_mkii_0.50.inst.cfg new file mode 100644 index 0000000000..ae89e82761 --- /dev/null +++ b/resources/variants/blocks/blocks_mkii_0.50.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_mkii +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_mkii_0.60.inst.cfg b/resources/variants/blocks/blocks_mkii_0.60.inst.cfg new file mode 100644 index 0000000000..0426baadd7 --- /dev/null +++ b/resources/variants/blocks/blocks_mkii_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_mkii +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_mkii_0.80.inst.cfg b/resources/variants/blocks/blocks_mkii_0.80.inst.cfg new file mode 100644 index 0000000000..cc602bfdc8 --- /dev/null +++ b/resources/variants/blocks/blocks_mkii_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_mkii +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_one_0.20.inst.cfg b/resources/variants/blocks/blocks_one_0.20.inst.cfg new file mode 100644 index 0000000000..fe8cb9c865 --- /dev/null +++ b/resources/variants/blocks/blocks_one_0.20.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_one +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/blocks/blocks_one_0.30.inst.cfg b/resources/variants/blocks/blocks_one_0.30.inst.cfg new file mode 100644 index 0000000000..65b86a5d55 --- /dev/null +++ b/resources/variants/blocks/blocks_one_0.30.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_one +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/blocks/blocks_one_0.40.inst.cfg b/resources/variants/blocks/blocks_one_0.40.inst.cfg new file mode 100644 index 0000000000..1c6e33046c --- /dev/null +++ b/resources/variants/blocks/blocks_one_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_one +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_one_0.50.inst.cfg b/resources/variants/blocks/blocks_one_0.50.inst.cfg new file mode 100644 index 0000000000..6163a0a0d5 --- /dev/null +++ b/resources/variants/blocks/blocks_one_0.50.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_one +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_one_0.60.inst.cfg b/resources/variants/blocks/blocks_one_0.60.inst.cfg new file mode 100644 index 0000000000..82b6799ae9 --- /dev/null +++ b/resources/variants/blocks/blocks_one_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_one +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_one_0.80.inst.cfg b/resources/variants/blocks/blocks_one_0.80.inst.cfg new file mode 100644 index 0000000000..abca2ad27c --- /dev/null +++ b/resources/variants/blocks/blocks_one_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_one +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_pros100_0.40.inst.cfg b/resources/variants/blocks/blocks_pros100_0.40.inst.cfg new file mode 100644 index 0000000000..1855a2ed5e --- /dev/null +++ b/resources/variants/blocks/blocks_pros100_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros100 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_pros100_0.50.inst.cfg b/resources/variants/blocks/blocks_pros100_0.50.inst.cfg new file mode 100644 index 0000000000..b731e20f89 --- /dev/null +++ b/resources/variants/blocks/blocks_pros100_0.50.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros100 +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_pros100_0.60.inst.cfg b/resources/variants/blocks/blocks_pros100_0.60.inst.cfg new file mode 100644 index 0000000000..c3a6ac9bbb --- /dev/null +++ b/resources/variants/blocks/blocks_pros100_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros100 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_pros100_0.80.inst.cfg b/resources/variants/blocks/blocks_pros100_0.80.inst.cfg new file mode 100644 index 0000000000..a08712376b --- /dev/null +++ b/resources/variants/blocks/blocks_pros100_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros100 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_pros100_1.0.inst.cfg b/resources/variants/blocks/blocks_pros100_1.0.inst.cfg new file mode 100644 index 0000000000..3f968bf520 --- /dev/null +++ b/resources/variants/blocks/blocks_pros100_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros100 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/blocks/blocks_pros100_1.2.inst.cfg b/resources/variants/blocks/blocks_pros100_1.2.inst.cfg new file mode 100644 index 0000000000..cba7d886f5 --- /dev/null +++ b/resources/variants/blocks/blocks_pros100_1.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros100 +name = 1.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.2 + diff --git a/resources/variants/blocks/blocks_pros30_0.40.inst.cfg b/resources/variants/blocks/blocks_pros30_0.40.inst.cfg new file mode 100644 index 0000000000..d568665760 --- /dev/null +++ b/resources/variants/blocks/blocks_pros30_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros30 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_pros30_0.50.inst.cfg b/resources/variants/blocks/blocks_pros30_0.50.inst.cfg new file mode 100644 index 0000000000..f023173e28 --- /dev/null +++ b/resources/variants/blocks/blocks_pros30_0.50.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros30 +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_pros30_0.60.inst.cfg b/resources/variants/blocks/blocks_pros30_0.60.inst.cfg new file mode 100644 index 0000000000..7479ff06a4 --- /dev/null +++ b/resources/variants/blocks/blocks_pros30_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros30 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_pros30_0.80.inst.cfg b/resources/variants/blocks/blocks_pros30_0.80.inst.cfg new file mode 100644 index 0000000000..4ffb9f2a13 --- /dev/null +++ b/resources/variants/blocks/blocks_pros30_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros30 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_pros30_1.0.inst.cfg b/resources/variants/blocks/blocks_pros30_1.0.inst.cfg new file mode 100644 index 0000000000..eca0070ed3 --- /dev/null +++ b/resources/variants/blocks/blocks_pros30_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros30 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/blocks/blocks_pros30_1.2.inst.cfg b/resources/variants/blocks/blocks_pros30_1.2.inst.cfg new file mode 100644 index 0000000000..4b1eda711a --- /dev/null +++ b/resources/variants/blocks/blocks_pros30_1.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros30 +name = 1.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.2 + diff --git a/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg new file mode 100644 index 0000000000..6d26776aad --- /dev/null +++ b/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = HT - 0.3mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg new file mode 100644 index 0000000000..e3c44dfd88 --- /dev/null +++ b/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = HT - 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg new file mode 100644 index 0000000000..67a08f1eca --- /dev/null +++ b/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = HT - 0.5mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg new file mode 100644 index 0000000000..0bf24b9a8b --- /dev/null +++ b/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = HT - 0.6mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg new file mode 100644 index 0000000000..6730ce6147 --- /dev/null +++ b/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = HT - 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg new file mode 100644 index 0000000000..29d404547e --- /dev/null +++ b/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = ST - 0.2mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg new file mode 100644 index 0000000000..10aa052741 --- /dev/null +++ b/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = ST - 0.3mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg new file mode 100644 index 0000000000..6e596d6f55 --- /dev/null +++ b/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = ST - 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg new file mode 100644 index 0000000000..90eb8127dd --- /dev/null +++ b/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = ST - 0.5mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg new file mode 100644 index 0000000000..58f45943b9 --- /dev/null +++ b/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = ST - 0.6mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg new file mode 100644 index 0000000000..4b63981c60 --- /dev/null +++ b/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = ST - 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg b/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg new file mode 100644 index 0000000000..ed49040e45 --- /dev/null +++ b/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = ST - 1.0mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg b/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg new file mode 100644 index 0000000000..a1ca742b05 --- /dev/null +++ b/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = ST - 1.2mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.20 + diff --git a/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg new file mode 100644 index 0000000000..e6255aaf4b --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = HT - 0.3mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg new file mode 100644 index 0000000000..0af109a035 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = HT - 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg new file mode 100644 index 0000000000..d34ed63474 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = HT - 0.5mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg new file mode 100644 index 0000000000..531bbc5159 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = HT - 0.6mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg new file mode 100644 index 0000000000..df29382e6b --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = HT - 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg new file mode 100644 index 0000000000..c340c7f8dc --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = ST - 0.2mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg new file mode 100644 index 0000000000..577c37ac1b --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = ST - 0.3mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg new file mode 100644 index 0000000000..174794aa8b --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = ST - 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg new file mode 100644 index 0000000000..d51641b656 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = ST - 0.5mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg new file mode 100644 index 0000000000..bfb6e03bd6 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = ST - 0.6mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg new file mode 100644 index 0000000000..ee98152381 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = ST - 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg new file mode 100644 index 0000000000..2f017c559b --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = ST - 1.0mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg new file mode 100644 index 0000000000..ca99d82177 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = ST - 1.2mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.20 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg new file mode 100644 index 0000000000..aebe3c094e --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = HT - 0.3mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg new file mode 100644 index 0000000000..d834ee11e7 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = HT - 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg new file mode 100644 index 0000000000..1903f4b568 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = HT - 0.5mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg new file mode 100644 index 0000000000..27986f2d81 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = HT - 0.6mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg new file mode 100644 index 0000000000..29f328c9c1 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = HT - 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg new file mode 100644 index 0000000000..333f640286 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = ST - 0.2mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg new file mode 100644 index 0000000000..3c21f6eb33 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = ST - 0.3mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg new file mode 100644 index 0000000000..d1600007ea --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = ST - 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg new file mode 100644 index 0000000000..7ce36f41c2 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = ST - 0.5mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg new file mode 100644 index 0000000000..4d345c42b9 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = ST - 0.6mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg new file mode 100644 index 0000000000..34ebf3f7c0 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = ST - 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg new file mode 100644 index 0000000000..ce6e8f932c --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = ST - 1.0mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg new file mode 100644 index 0000000000..373e6e8ad2 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = ST - 1.2mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.20 + diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg new file mode 100644 index 0000000000..cef05a9ea8 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = HT - 0.3mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg new file mode 100644 index 0000000000..c6d548b993 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = HT - 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg new file mode 100644 index 0000000000..ff2ef479fa --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = HT - 0.5mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg new file mode 100644 index 0000000000..562ed73e92 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = HT - 0.6mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg new file mode 100644 index 0000000000..277a0dcb9e --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = HT - 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg new file mode 100644 index 0000000000..d813be4123 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = ST - 0.2mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg new file mode 100644 index 0000000000..505a0b7813 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = ST - 0.3mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg new file mode 100644 index 0000000000..1184a97360 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = ST - 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg new file mode 100644 index 0000000000..51b8dd0926 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = ST - 0.5mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg new file mode 100644 index 0000000000..24ab1bc207 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = ST - 0.6mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg new file mode 100644 index 0000000000..e3a6b373db --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = ST - 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg new file mode 100644 index 0000000000..da5bb72adb --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = ST - 1.0mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg new file mode 100644 index 0000000000..ca99d82177 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = ST - 1.2mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.20 + diff --git a/resources/variants/blocks/blocks_zero_0.20.inst.cfg b/resources/variants/blocks/blocks_zero_0.20.inst.cfg new file mode 100644 index 0000000000..d37c55e927 --- /dev/null +++ b/resources/variants/blocks/blocks_zero_0.20.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_zero +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/blocks/blocks_zero_0.30.inst.cfg b/resources/variants/blocks/blocks_zero_0.30.inst.cfg new file mode 100644 index 0000000000..9d669d5c71 --- /dev/null +++ b/resources/variants/blocks/blocks_zero_0.30.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_zero +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/blocks/blocks_zero_0.40.inst.cfg b/resources/variants/blocks/blocks_zero_0.40.inst.cfg new file mode 100644 index 0000000000..c8ed122a98 --- /dev/null +++ b/resources/variants/blocks/blocks_zero_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_zero +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_zero_0.50.inst.cfg b/resources/variants/blocks/blocks_zero_0.50.inst.cfg new file mode 100644 index 0000000000..fa96761466 --- /dev/null +++ b/resources/variants/blocks/blocks_zero_0.50.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_zero +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_zero_0.60.inst.cfg b/resources/variants/blocks/blocks_zero_0.60.inst.cfg new file mode 100644 index 0000000000..e6560787db --- /dev/null +++ b/resources/variants/blocks/blocks_zero_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_zero +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_zero_0.80.inst.cfg b/resources/variants/blocks/blocks_zero_0.80.inst.cfg new file mode 100644 index 0000000000..4d4f0d2cea --- /dev/null +++ b/resources/variants/blocks/blocks_zero_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_zero +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/cartesio_0.25.inst.cfg b/resources/variants/cartesio/cartesio_0.25.inst.cfg similarity index 91% rename from resources/variants/cartesio_0.25.inst.cfg rename to resources/variants/cartesio/cartesio_0.25.inst.cfg index f2dc12b706..bfd0306f16 100644 --- a/resources/variants/cartesio_0.25.inst.cfg +++ b/resources/variants/cartesio/cartesio_0.25.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = cartesio name = 0.25mm thermoplastic extruder version = 4 -definition = cartesio [metadata] author = Cartesio -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.25 machine_nozzle_tip_outer_diameter = 1.05 + diff --git a/resources/variants/cartesio_0.4.inst.cfg b/resources/variants/cartesio/cartesio_0.4.inst.cfg similarity index 91% rename from resources/variants/cartesio_0.4.inst.cfg rename to resources/variants/cartesio/cartesio_0.4.inst.cfg index c4a4099b99..3e8936d09b 100644 --- a/resources/variants/cartesio_0.4.inst.cfg +++ b/resources/variants/cartesio/cartesio_0.4.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = cartesio name = 0.4mm thermoplastic extruder version = 4 -definition = cartesio [metadata] author = Cartesio -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 machine_nozzle_tip_outer_diameter = 0.8 + diff --git a/resources/variants/cartesio_0.8.inst.cfg b/resources/variants/cartesio/cartesio_0.8.inst.cfg similarity index 92% rename from resources/variants/cartesio_0.8.inst.cfg rename to resources/variants/cartesio/cartesio_0.8.inst.cfg index 0b1db6a711..6e87eb69b4 100644 --- a/resources/variants/cartesio_0.8.inst.cfg +++ b/resources/variants/cartesio/cartesio_0.8.inst.cfg @@ -1,16 +1,16 @@ [general] +definition = cartesio name = 0.8mm thermoplastic extruder version = 4 -definition = cartesio [metadata] author = Cartesio -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 1.05 - prime_tower_line_width = 0.69 + diff --git a/resources/variants/crazy3dprint_base_0.40.inst.cfg b/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg similarity index 87% rename from resources/variants/crazy3dprint_base_0.40.inst.cfg rename to resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg index a0e1b0fd3a..730ec5b5f7 100644 --- a/resources/variants/crazy3dprint_base_0.40.inst.cfg +++ b/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = crazy3dprint_base name = 0.4mm Nozzle version = 4 -definition = crazy3dprint_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/crazy3dprint_cz_300_0.40.inst.cfg b/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg similarity index 87% rename from resources/variants/crazy3dprint_cz_300_0.40.inst.cfg rename to resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg index e37a9458b4..8855dd7021 100644 --- a/resources/variants/crazy3dprint_cz_300_0.40.inst.cfg +++ b/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = crazy3dprint_cz_300 name = 0.4mm Nozzle version = 4 -definition = crazy3dprint_cz_300 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality_base_0.2.inst.cfg b/resources/variants/creality/creality_base_0.2.inst.cfg similarity index 87% rename from resources/variants/creality_base_0.2.inst.cfg rename to resources/variants/creality/creality_base_0.2.inst.cfg index edfe490862..d163876973 100644 --- a/resources/variants/creality_base_0.2.inst.cfg +++ b/resources/variants/creality/creality_base_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_base name = 0.2mm Nozzle version = 4 -definition = creality_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality_base_0.3.inst.cfg b/resources/variants/creality/creality_base_0.3.inst.cfg similarity index 87% rename from resources/variants/creality_base_0.3.inst.cfg rename to resources/variants/creality/creality_base_0.3.inst.cfg index a6f2aff32e..c21f6d9c94 100644 --- a/resources/variants/creality_base_0.3.inst.cfg +++ b/resources/variants/creality/creality_base_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_base name = 0.3mm Nozzle version = 4 -definition = creality_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality_base_0.4.inst.cfg b/resources/variants/creality/creality_base_0.4.inst.cfg similarity index 87% rename from resources/variants/creality_base_0.4.inst.cfg rename to resources/variants/creality/creality_base_0.4.inst.cfg index 94d613eec0..7b450e3de0 100644 --- a/resources/variants/creality_base_0.4.inst.cfg +++ b/resources/variants/creality/creality_base_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_base name = 0.4mm Nozzle version = 4 -definition = creality_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality_base_0.5.inst.cfg b/resources/variants/creality/creality_base_0.5.inst.cfg similarity index 87% rename from resources/variants/creality_base_0.5.inst.cfg rename to resources/variants/creality/creality_base_0.5.inst.cfg index a50e3ebb60..d78687ce4b 100644 --- a/resources/variants/creality_base_0.5.inst.cfg +++ b/resources/variants/creality/creality_base_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_base name = 0.5mm Nozzle version = 4 -definition = creality_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality_base_0.6.inst.cfg b/resources/variants/creality/creality_base_0.6.inst.cfg similarity index 87% rename from resources/variants/creality_base_0.6.inst.cfg rename to resources/variants/creality/creality_base_0.6.inst.cfg index 405b0eab99..6022e0bf1b 100644 --- a/resources/variants/creality_base_0.6.inst.cfg +++ b/resources/variants/creality/creality_base_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_base name = 0.6mm Nozzle version = 4 -definition = creality_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality_base_0.8.inst.cfg b/resources/variants/creality/creality_base_0.8.inst.cfg similarity index 87% rename from resources/variants/creality_base_0.8.inst.cfg rename to resources/variants/creality/creality_base_0.8.inst.cfg index 6c4a6f3664..ff41e7e562 100644 --- a/resources/variants/creality_base_0.8.inst.cfg +++ b/resources/variants/creality/creality_base_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_base name = 0.8mm Nozzle version = 4 -definition = creality_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality_base_1.0.inst.cfg b/resources/variants/creality/creality_base_1.0.inst.cfg similarity index 87% rename from resources/variants/creality_base_1.0.inst.cfg rename to resources/variants/creality/creality_base_1.0.inst.cfg index ca3731e3b6..1a18b2fcb7 100644 --- a/resources/variants/creality_base_1.0.inst.cfg +++ b/resources/variants/creality/creality_base_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_base name = 1.0mm Nozzle version = 4 -definition = creality_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality_cr100_0.4.inst.cfg b/resources/variants/creality/creality_cr100_0.4.inst.cfg similarity index 87% rename from resources/variants/creality_cr100_0.4.inst.cfg rename to resources/variants/creality/creality_cr100_0.4.inst.cfg index b6e05618cb..a0b2f5caa4 100644 --- a/resources/variants/creality_cr100_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr100_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr100 name = 0.4mm Nozzle version = 4 -definition = creality_cr100 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality_cr10_0.2.inst.cfg b/resources/variants/creality/creality_cr10_0.2.inst.cfg similarity index 87% rename from resources/variants/creality_cr10_0.2.inst.cfg rename to resources/variants/creality/creality_cr10_0.2.inst.cfg index cce2d773b5..afeb46fa7e 100644 --- a/resources/variants/creality_cr10_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10 name = 0.2mm Nozzle version = 4 -definition = creality_cr10 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality_cr10_0.3.inst.cfg b/resources/variants/creality/creality_cr10_0.3.inst.cfg similarity index 87% rename from resources/variants/creality_cr10_0.3.inst.cfg rename to resources/variants/creality/creality_cr10_0.3.inst.cfg index 56dece7a38..5babe4a2d0 100644 --- a/resources/variants/creality_cr10_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10 name = 0.3mm Nozzle version = 4 -definition = creality_cr10 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality_cr10_0.4.inst.cfg b/resources/variants/creality/creality_cr10_0.4.inst.cfg similarity index 87% rename from resources/variants/creality_cr10_0.4.inst.cfg rename to resources/variants/creality/creality_cr10_0.4.inst.cfg index a5154ab029..6267bb8215 100644 --- a/resources/variants/creality_cr10_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10 name = 0.4mm Nozzle version = 4 -definition = creality_cr10 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality_cr10_0.5.inst.cfg b/resources/variants/creality/creality_cr10_0.5.inst.cfg similarity index 87% rename from resources/variants/creality_cr10_0.5.inst.cfg rename to resources/variants/creality/creality_cr10_0.5.inst.cfg index e04b23a42f..939e73dbcd 100644 --- a/resources/variants/creality_cr10_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10 name = 0.5mm Nozzle version = 4 -definition = creality_cr10 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality_cr10_0.6.inst.cfg b/resources/variants/creality/creality_cr10_0.6.inst.cfg similarity index 87% rename from resources/variants/creality_cr10_0.6.inst.cfg rename to resources/variants/creality/creality_cr10_0.6.inst.cfg index 20795b4751..1f87327645 100644 --- a/resources/variants/creality_cr10_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10 name = 0.6mm Nozzle version = 4 -definition = creality_cr10 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality_cr10_0.8.inst.cfg b/resources/variants/creality/creality_cr10_0.8.inst.cfg similarity index 87% rename from resources/variants/creality_cr10_0.8.inst.cfg rename to resources/variants/creality/creality_cr10_0.8.inst.cfg index 751956d1f5..9cf84420b8 100644 --- a/resources/variants/creality_cr10_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10 name = 0.8mm Nozzle version = 4 -definition = creality_cr10 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality_cr10_1.0.inst.cfg b/resources/variants/creality/creality_cr10_1.0.inst.cfg similarity index 87% rename from resources/variants/creality_cr10_1.0.inst.cfg rename to resources/variants/creality/creality_cr10_1.0.inst.cfg index 40bc7edc96..285cb7837c 100644 --- a/resources/variants/creality_cr10_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10 name = 1.0mm Nozzle version = 4 -definition = creality_cr10 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality_cr10max_0.2.inst.cfg b/resources/variants/creality/creality_cr10max_0.2.inst.cfg similarity index 87% rename from resources/variants/creality_cr10max_0.2.inst.cfg rename to resources/variants/creality/creality_cr10max_0.2.inst.cfg index 723227c21d..412c2d3016 100644 --- a/resources/variants/creality_cr10max_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10max name = 0.2mm Nozzle version = 4 -definition = creality_cr10max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality_cr10max_0.3.inst.cfg b/resources/variants/creality/creality_cr10max_0.3.inst.cfg similarity index 87% rename from resources/variants/creality_cr10max_0.3.inst.cfg rename to resources/variants/creality/creality_cr10max_0.3.inst.cfg index 43982ae85c..5ee839276e 100644 --- a/resources/variants/creality_cr10max_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10max name = 0.3mm Nozzle version = 4 -definition = creality_cr10max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality_cr10max_0.4.inst.cfg b/resources/variants/creality/creality_cr10max_0.4.inst.cfg similarity index 87% rename from resources/variants/creality_cr10max_0.4.inst.cfg rename to resources/variants/creality/creality_cr10max_0.4.inst.cfg index 4ab8b1c1aa..04b56b2592 100644 --- a/resources/variants/creality_cr10max_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10max name = 0.4mm Nozzle version = 4 -definition = creality_cr10max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality_cr10max_0.5.inst.cfg b/resources/variants/creality/creality_cr10max_0.5.inst.cfg similarity index 87% rename from resources/variants/creality_cr10max_0.5.inst.cfg rename to resources/variants/creality/creality_cr10max_0.5.inst.cfg index a6568358f7..b398c33ecf 100644 --- a/resources/variants/creality_cr10max_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10max name = 0.5mm Nozzle version = 4 -definition = creality_cr10max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality_cr10max_0.6.inst.cfg b/resources/variants/creality/creality_cr10max_0.6.inst.cfg similarity index 87% rename from resources/variants/creality_cr10max_0.6.inst.cfg rename to resources/variants/creality/creality_cr10max_0.6.inst.cfg index f9280b94ac..8708331abf 100644 --- a/resources/variants/creality_cr10max_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10max name = 0.6mm Nozzle version = 4 -definition = creality_cr10max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality_cr10max_0.8.inst.cfg b/resources/variants/creality/creality_cr10max_0.8.inst.cfg similarity index 87% rename from resources/variants/creality_cr10max_0.8.inst.cfg rename to resources/variants/creality/creality_cr10max_0.8.inst.cfg index 05ae4d4b52..526c12726e 100644 --- a/resources/variants/creality_cr10max_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10max name = 0.8mm Nozzle version = 4 -definition = creality_cr10max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality_cr10max_1.0.inst.cfg b/resources/variants/creality/creality_cr10max_1.0.inst.cfg similarity index 87% rename from resources/variants/creality_cr10max_1.0.inst.cfg rename to resources/variants/creality/creality_cr10max_1.0.inst.cfg index 2aba2ddbf6..d7ba5c8ecc 100644 --- a/resources/variants/creality_cr10max_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10max_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10max name = 1.0mm Nozzle version = 4 -definition = creality_cr10max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality_cr10mini_0.2.inst.cfg b/resources/variants/creality/creality_cr10mini_0.2.inst.cfg similarity index 87% rename from resources/variants/creality_cr10mini_0.2.inst.cfg rename to resources/variants/creality/creality_cr10mini_0.2.inst.cfg index 5bfd8ab56c..a83558e759 100644 --- a/resources/variants/creality_cr10mini_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10mini name = 0.2mm Nozzle version = 4 -definition = creality_cr10mini [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality_cr10mini_0.3.inst.cfg b/resources/variants/creality/creality_cr10mini_0.3.inst.cfg similarity index 87% rename from resources/variants/creality_cr10mini_0.3.inst.cfg rename to resources/variants/creality/creality_cr10mini_0.3.inst.cfg index 0181eefbfb..64b46bd4e9 100644 --- a/resources/variants/creality_cr10mini_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10mini name = 0.3mm Nozzle version = 4 -definition = creality_cr10mini [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality_cr10mini_0.4.inst.cfg b/resources/variants/creality/creality_cr10mini_0.4.inst.cfg similarity index 87% rename from resources/variants/creality_cr10mini_0.4.inst.cfg rename to resources/variants/creality/creality_cr10mini_0.4.inst.cfg index 1db129d67a..52b976b78c 100644 --- a/resources/variants/creality_cr10mini_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10mini name = 0.4mm Nozzle version = 4 -definition = creality_cr10mini [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality_cr10mini_0.5.inst.cfg b/resources/variants/creality/creality_cr10mini_0.5.inst.cfg similarity index 87% rename from resources/variants/creality_cr10mini_0.5.inst.cfg rename to resources/variants/creality/creality_cr10mini_0.5.inst.cfg index a5cbf67776..135b7d488c 100644 --- a/resources/variants/creality_cr10mini_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10mini name = 0.5mm Nozzle version = 4 -definition = creality_cr10mini [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality_cr10mini_0.6.inst.cfg b/resources/variants/creality/creality_cr10mini_0.6.inst.cfg similarity index 87% rename from resources/variants/creality_cr10mini_0.6.inst.cfg rename to resources/variants/creality/creality_cr10mini_0.6.inst.cfg index 0558e128e2..b719afa194 100644 --- a/resources/variants/creality_cr10mini_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10mini name = 0.6mm Nozzle version = 4 -definition = creality_cr10mini [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality_cr10mini_0.8.inst.cfg b/resources/variants/creality/creality_cr10mini_0.8.inst.cfg similarity index 87% rename from resources/variants/creality_cr10mini_0.8.inst.cfg rename to resources/variants/creality/creality_cr10mini_0.8.inst.cfg index 8923889c98..9dfd0181d0 100644 --- a/resources/variants/creality_cr10mini_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10mini name = 0.8mm Nozzle version = 4 -definition = creality_cr10mini [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality_cr10mini_1.0.inst.cfg b/resources/variants/creality/creality_cr10mini_1.0.inst.cfg similarity index 87% rename from resources/variants/creality_cr10mini_1.0.inst.cfg rename to resources/variants/creality/creality_cr10mini_1.0.inst.cfg index 1dbe2e0789..6fe3a59bf6 100644 --- a/resources/variants/creality_cr10mini_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10mini name = 1.0mm Nozzle version = 4 -definition = creality_cr10mini [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality_cr10s4_0.2.inst.cfg b/resources/variants/creality/creality_cr10s4_0.2.inst.cfg similarity index 87% rename from resources/variants/creality_cr10s4_0.2.inst.cfg rename to resources/variants/creality/creality_cr10s4_0.2.inst.cfg index 0a4433cb59..6e064cef5e 100644 --- a/resources/variants/creality_cr10s4_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10s4 name = 0.2mm Nozzle version = 4 -definition = creality_cr10s4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality_cr10s4_0.3.inst.cfg b/resources/variants/creality/creality_cr10s4_0.3.inst.cfg similarity index 87% rename from resources/variants/creality_cr10s4_0.3.inst.cfg rename to resources/variants/creality/creality_cr10s4_0.3.inst.cfg index a673180752..dc28938456 100644 --- a/resources/variants/creality_cr10s4_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10s4 name = 0.3mm Nozzle version = 4 -definition = creality_cr10s4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality_cr10s4_0.4.inst.cfg b/resources/variants/creality/creality_cr10s4_0.4.inst.cfg similarity index 87% rename from resources/variants/creality_cr10s4_0.4.inst.cfg rename to resources/variants/creality/creality_cr10s4_0.4.inst.cfg index f34202a2b5..8151b7fdfb 100644 --- a/resources/variants/creality_cr10s4_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10s4 name = 0.4mm Nozzle version = 4 -definition = creality_cr10s4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality_cr10s4_0.5.inst.cfg b/resources/variants/creality/creality_cr10s4_0.5.inst.cfg similarity index 87% rename from resources/variants/creality_cr10s4_0.5.inst.cfg rename to resources/variants/creality/creality_cr10s4_0.5.inst.cfg index e7bc7f1799..af422f3a2b 100644 --- a/resources/variants/creality_cr10s4_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10s4 name = 0.5mm Nozzle version = 4 -definition = creality_cr10s4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality_cr10s4_0.6.inst.cfg b/resources/variants/creality/creality_cr10s4_0.6.inst.cfg similarity index 87% rename from resources/variants/creality_cr10s4_0.6.inst.cfg rename to resources/variants/creality/creality_cr10s4_0.6.inst.cfg index e7f7f30283..41c7c3e1b2 100644 --- a/resources/variants/creality_cr10s4_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10s4 name = 0.6mm Nozzle version = 4 -definition = creality_cr10s4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality_cr10s4_0.8.inst.cfg b/resources/variants/creality/creality_cr10s4_0.8.inst.cfg similarity index 87% rename from resources/variants/creality_cr10s4_0.8.inst.cfg rename to resources/variants/creality/creality_cr10s4_0.8.inst.cfg index 8b4cef0a7f..cdb30a7bdd 100644 --- a/resources/variants/creality_cr10s4_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10s4 name = 0.8mm Nozzle version = 4 -definition = creality_cr10s4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality_cr10s4_1.0.inst.cfg b/resources/variants/creality/creality_cr10s4_1.0.inst.cfg similarity index 87% rename from resources/variants/creality_cr10s4_1.0.inst.cfg rename to resources/variants/creality/creality_cr10s4_1.0.inst.cfg index 17db567c62..4e40f38ba4 100644 --- a/resources/variants/creality_cr10s4_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10s4 name = 1.0mm Nozzle version = 4 -definition = creality_cr10s4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality_cr10s5_0.2.inst.cfg b/resources/variants/creality/creality_cr10s5_0.2.inst.cfg similarity index 87% rename from resources/variants/creality_cr10s5_0.2.inst.cfg rename to resources/variants/creality/creality_cr10s5_0.2.inst.cfg index 67d3c1f260..288ed89049 100644 --- a/resources/variants/creality_cr10s5_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10s5 name = 0.2mm Nozzle version = 4 -definition = creality_cr10s5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality_cr10s5_0.3.inst.cfg b/resources/variants/creality/creality_cr10s5_0.3.inst.cfg similarity index 87% rename from resources/variants/creality_cr10s5_0.3.inst.cfg rename to resources/variants/creality/creality_cr10s5_0.3.inst.cfg index 301b885de1..1f5c0518df 100644 --- a/resources/variants/creality_cr10s5_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10s5 name = 0.3mm Nozzle version = 4 -definition = creality_cr10s5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality_cr10s5_0.4.inst.cfg b/resources/variants/creality/creality_cr10s5_0.4.inst.cfg similarity index 87% rename from resources/variants/creality_cr10s5_0.4.inst.cfg rename to resources/variants/creality/creality_cr10s5_0.4.inst.cfg index bc62ba237a..8f081c75ae 100644 --- a/resources/variants/creality_cr10s5_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10s5 name = 0.4mm Nozzle version = 4 -definition = creality_cr10s5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality_cr10s5_0.5.inst.cfg b/resources/variants/creality/creality_cr10s5_0.5.inst.cfg similarity index 87% rename from resources/variants/creality_cr10s5_0.5.inst.cfg rename to resources/variants/creality/creality_cr10s5_0.5.inst.cfg index 6079c70efa..bd57815fa5 100644 --- a/resources/variants/creality_cr10s5_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10s5 name = 0.5mm Nozzle version = 4 -definition = creality_cr10s5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality_cr10s5_0.6.inst.cfg b/resources/variants/creality/creality_cr10s5_0.6.inst.cfg similarity index 87% rename from resources/variants/creality_cr10s5_0.6.inst.cfg rename to resources/variants/creality/creality_cr10s5_0.6.inst.cfg index 09309112a9..f6994925a4 100644 --- a/resources/variants/creality_cr10s5_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10s5 name = 0.6mm Nozzle version = 4 -definition = creality_cr10s5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality_cr10s5_0.8.inst.cfg b/resources/variants/creality/creality_cr10s5_0.8.inst.cfg similarity index 87% rename from resources/variants/creality_cr10s5_0.8.inst.cfg rename to resources/variants/creality/creality_cr10s5_0.8.inst.cfg index 4875a0ebad..58a8f9b487 100644 --- a/resources/variants/creality_cr10s5_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10s5 name = 0.8mm Nozzle version = 4 -definition = creality_cr10s5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality_cr10s5_1.0.inst.cfg b/resources/variants/creality/creality_cr10s5_1.0.inst.cfg similarity index 87% rename from resources/variants/creality_cr10s5_1.0.inst.cfg rename to resources/variants/creality/creality_cr10s5_1.0.inst.cfg index 440642e968..099900111e 100644 --- a/resources/variants/creality_cr10s5_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10s5 name = 1.0mm Nozzle version = 4 -definition = creality_cr10s5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality_cr10s_0.2.inst.cfg b/resources/variants/creality/creality_cr10s_0.2.inst.cfg similarity index 87% rename from resources/variants/creality_cr10s_0.2.inst.cfg rename to resources/variants/creality/creality_cr10s_0.2.inst.cfg index d8a7a6076b..31d415dbc1 100644 --- a/resources/variants/creality_cr10s_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10s name = 0.2mm Nozzle version = 4 -definition = creality_cr10s [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality_cr10s_0.3.inst.cfg b/resources/variants/creality/creality_cr10s_0.3.inst.cfg similarity index 87% rename from resources/variants/creality_cr10s_0.3.inst.cfg rename to resources/variants/creality/creality_cr10s_0.3.inst.cfg index e7a3989905..75696e2e53 100644 --- a/resources/variants/creality_cr10s_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10s name = 0.3mm Nozzle version = 4 -definition = creality_cr10s [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality_cr10s_0.4.inst.cfg b/resources/variants/creality/creality_cr10s_0.4.inst.cfg similarity index 87% rename from resources/variants/creality_cr10s_0.4.inst.cfg rename to resources/variants/creality/creality_cr10s_0.4.inst.cfg index f1a5f5c36b..ddc5d01d0e 100644 --- a/resources/variants/creality_cr10s_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10s name = 0.4mm Nozzle version = 4 -definition = creality_cr10s [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality_cr10s_0.5.inst.cfg b/resources/variants/creality/creality_cr10s_0.5.inst.cfg similarity index 87% rename from resources/variants/creality_cr10s_0.5.inst.cfg rename to resources/variants/creality/creality_cr10s_0.5.inst.cfg index a920286579..9591d2248c 100644 --- a/resources/variants/creality_cr10s_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10s name = 0.5mm Nozzle version = 4 -definition = creality_cr10s [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality_cr10s_0.6.inst.cfg b/resources/variants/creality/creality_cr10s_0.6.inst.cfg similarity index 87% rename from resources/variants/creality_cr10s_0.6.inst.cfg rename to resources/variants/creality/creality_cr10s_0.6.inst.cfg index b29151160a..a67f6b10d2 100644 --- a/resources/variants/creality_cr10s_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10s name = 0.6mm Nozzle version = 4 -definition = creality_cr10s [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality_cr10s_0.8.inst.cfg b/resources/variants/creality/creality_cr10s_0.8.inst.cfg similarity index 87% rename from resources/variants/creality_cr10s_0.8.inst.cfg rename to resources/variants/creality/creality_cr10s_0.8.inst.cfg index 454aea7977..58ec50067c 100644 --- a/resources/variants/creality_cr10s_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10s name = 0.8mm Nozzle version = 4 -definition = creality_cr10s [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality_cr10s_1.0.inst.cfg b/resources/variants/creality/creality_cr10s_1.0.inst.cfg similarity index 87% rename from resources/variants/creality_cr10s_1.0.inst.cfg rename to resources/variants/creality/creality_cr10s_1.0.inst.cfg index 0cd1fede49..bea99edabd 100644 --- a/resources/variants/creality_cr10s_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10s_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10s name = 1.0mm Nozzle version = 4 -definition = creality_cr10s [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality/creality_cr10smart_0.2.inst.cfg b/resources/variants/creality/creality_cr10smart_0.2.inst.cfg new file mode 100644 index 0000000000..5f702aa530 --- /dev/null +++ b/resources/variants/creality/creality_cr10smart_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_cr10smart +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality/creality_cr10smart_0.3.inst.cfg b/resources/variants/creality/creality_cr10smart_0.3.inst.cfg new file mode 100644 index 0000000000..c42ec54840 --- /dev/null +++ b/resources/variants/creality/creality_cr10smart_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_cr10smart +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality/creality_cr10smart_0.4.inst.cfg b/resources/variants/creality/creality_cr10smart_0.4.inst.cfg new file mode 100644 index 0000000000..bc126d3f2d --- /dev/null +++ b/resources/variants/creality/creality_cr10smart_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_cr10smart +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality/creality_cr10smart_0.5.inst.cfg b/resources/variants/creality/creality_cr10smart_0.5.inst.cfg new file mode 100644 index 0000000000..20b89226e1 --- /dev/null +++ b/resources/variants/creality/creality_cr10smart_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_cr10smart +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality/creality_cr10smart_0.6.inst.cfg b/resources/variants/creality/creality_cr10smart_0.6.inst.cfg new file mode 100644 index 0000000000..fab1010ae6 --- /dev/null +++ b/resources/variants/creality/creality_cr10smart_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_cr10smart +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality/creality_cr10smart_0.8.inst.cfg b/resources/variants/creality/creality_cr10smart_0.8.inst.cfg new file mode 100644 index 0000000000..041ac8c3b6 --- /dev/null +++ b/resources/variants/creality/creality_cr10smart_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_cr10smart +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality/creality_cr10smart_1.0.inst.cfg b/resources/variants/creality/creality_cr10smart_1.0.inst.cfg new file mode 100644 index 0000000000..51373cdf99 --- /dev/null +++ b/resources/variants/creality/creality_cr10smart_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_cr10smart +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality_cr10spro_0.2.inst.cfg b/resources/variants/creality/creality_cr10spro_0.2.inst.cfg similarity index 87% rename from resources/variants/creality_cr10spro_0.2.inst.cfg rename to resources/variants/creality/creality_cr10spro_0.2.inst.cfg index c25e541f3a..dde7298711 100644 --- a/resources/variants/creality_cr10spro_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10spro name = 0.2mm Nozzle version = 4 -definition = creality_cr10spro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality_cr10spro_0.3.inst.cfg b/resources/variants/creality/creality_cr10spro_0.3.inst.cfg similarity index 87% rename from resources/variants/creality_cr10spro_0.3.inst.cfg rename to resources/variants/creality/creality_cr10spro_0.3.inst.cfg index 8e55f7f7d8..301174ba67 100644 --- a/resources/variants/creality_cr10spro_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10spro name = 0.3mm Nozzle version = 4 -definition = creality_cr10spro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality_cr10spro_0.4.inst.cfg b/resources/variants/creality/creality_cr10spro_0.4.inst.cfg similarity index 87% rename from resources/variants/creality_cr10spro_0.4.inst.cfg rename to resources/variants/creality/creality_cr10spro_0.4.inst.cfg index 953655b269..92d934776b 100644 --- a/resources/variants/creality_cr10spro_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10spro name = 0.4mm Nozzle version = 4 -definition = creality_cr10spro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality_cr10spro_0.5.inst.cfg b/resources/variants/creality/creality_cr10spro_0.5.inst.cfg similarity index 87% rename from resources/variants/creality_cr10spro_0.5.inst.cfg rename to resources/variants/creality/creality_cr10spro_0.5.inst.cfg index b095acd512..f6745d55b2 100644 --- a/resources/variants/creality_cr10spro_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10spro name = 0.5mm Nozzle version = 4 -definition = creality_cr10spro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality_cr10spro_0.6.inst.cfg b/resources/variants/creality/creality_cr10spro_0.6.inst.cfg similarity index 87% rename from resources/variants/creality_cr10spro_0.6.inst.cfg rename to resources/variants/creality/creality_cr10spro_0.6.inst.cfg index 6b17ab91d5..f046370e09 100644 --- a/resources/variants/creality_cr10spro_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10spro name = 0.6mm Nozzle version = 4 -definition = creality_cr10spro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality_cr10spro_0.8.inst.cfg b/resources/variants/creality/creality_cr10spro_0.8.inst.cfg similarity index 87% rename from resources/variants/creality_cr10spro_0.8.inst.cfg rename to resources/variants/creality/creality_cr10spro_0.8.inst.cfg index 05cf9741ee..8373a2c819 100644 --- a/resources/variants/creality_cr10spro_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10spro name = 0.8mm Nozzle version = 4 -definition = creality_cr10spro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality_cr10spro_1.0.inst.cfg b/resources/variants/creality/creality_cr10spro_1.0.inst.cfg similarity index 87% rename from resources/variants/creality_cr10spro_1.0.inst.cfg rename to resources/variants/creality/creality_cr10spro_1.0.inst.cfg index b6e18ddf9b..2e127dd9fa 100644 --- a/resources/variants/creality_cr10spro_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr10spro name = 1.0mm Nozzle version = 4 -definition = creality_cr10spro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality_cr20_0.2.inst.cfg b/resources/variants/creality/creality_cr20_0.2.inst.cfg similarity index 87% rename from resources/variants/creality_cr20_0.2.inst.cfg rename to resources/variants/creality/creality_cr20_0.2.inst.cfg index d3382f8658..ea037b6ffb 100644 --- a/resources/variants/creality_cr20_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr20 name = 0.2mm Nozzle version = 4 -definition = creality_cr20 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality_cr20_0.3.inst.cfg b/resources/variants/creality/creality_cr20_0.3.inst.cfg similarity index 87% rename from resources/variants/creality_cr20_0.3.inst.cfg rename to resources/variants/creality/creality_cr20_0.3.inst.cfg index 4312a40f5d..33262eeffc 100644 --- a/resources/variants/creality_cr20_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr20 name = 0.3mm Nozzle version = 4 -definition = creality_cr20 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality_cr20_0.4.inst.cfg b/resources/variants/creality/creality_cr20_0.4.inst.cfg similarity index 87% rename from resources/variants/creality_cr20_0.4.inst.cfg rename to resources/variants/creality/creality_cr20_0.4.inst.cfg index 7b48d03f5d..cd7e827812 100644 --- a/resources/variants/creality_cr20_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr20 name = 0.4mm Nozzle version = 4 -definition = creality_cr20 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality_cr20_0.5.inst.cfg b/resources/variants/creality/creality_cr20_0.5.inst.cfg similarity index 87% rename from resources/variants/creality_cr20_0.5.inst.cfg rename to resources/variants/creality/creality_cr20_0.5.inst.cfg index 81c5fc9f2d..eeaf6d7f53 100644 --- a/resources/variants/creality_cr20_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr20 name = 0.5mm Nozzle version = 4 -definition = creality_cr20 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality_cr20_0.6.inst.cfg b/resources/variants/creality/creality_cr20_0.6.inst.cfg similarity index 87% rename from resources/variants/creality_cr20_0.6.inst.cfg rename to resources/variants/creality/creality_cr20_0.6.inst.cfg index de1a0ba1d8..091117252a 100644 --- a/resources/variants/creality_cr20_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr20 name = 0.6mm Nozzle version = 4 -definition = creality_cr20 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality_cr20_0.8.inst.cfg b/resources/variants/creality/creality_cr20_0.8.inst.cfg similarity index 87% rename from resources/variants/creality_cr20_0.8.inst.cfg rename to resources/variants/creality/creality_cr20_0.8.inst.cfg index e584195626..d30e5e5d94 100644 --- a/resources/variants/creality_cr20_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr20 name = 0.8mm Nozzle version = 4 -definition = creality_cr20 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality_cr20_1.0.inst.cfg b/resources/variants/creality/creality_cr20_1.0.inst.cfg similarity index 87% rename from resources/variants/creality_cr20_1.0.inst.cfg rename to resources/variants/creality/creality_cr20_1.0.inst.cfg index a4f3dab157..e049a09d90 100644 --- a/resources/variants/creality_cr20_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr20_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr20 name = 1.0mm Nozzle version = 4 -definition = creality_cr20 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality_cr20pro_0.2.inst.cfg b/resources/variants/creality/creality_cr20pro_0.2.inst.cfg similarity index 87% rename from resources/variants/creality_cr20pro_0.2.inst.cfg rename to resources/variants/creality/creality_cr20pro_0.2.inst.cfg index 13c516276b..6a95f5a294 100644 --- a/resources/variants/creality_cr20pro_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr20pro name = 0.2mm Nozzle version = 4 -definition = creality_cr20pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality_cr20pro_0.3.inst.cfg b/resources/variants/creality/creality_cr20pro_0.3.inst.cfg similarity index 87% rename from resources/variants/creality_cr20pro_0.3.inst.cfg rename to resources/variants/creality/creality_cr20pro_0.3.inst.cfg index 6ddf35beec..a1c35d864f 100644 --- a/resources/variants/creality_cr20pro_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr20pro name = 0.3mm Nozzle version = 4 -definition = creality_cr20pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality_cr20pro_0.4.inst.cfg b/resources/variants/creality/creality_cr20pro_0.4.inst.cfg similarity index 87% rename from resources/variants/creality_cr20pro_0.4.inst.cfg rename to resources/variants/creality/creality_cr20pro_0.4.inst.cfg index 97ab307c44..74dd69988b 100644 --- a/resources/variants/creality_cr20pro_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr20pro name = 0.4mm Nozzle version = 4 -definition = creality_cr20pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality_cr20pro_0.5.inst.cfg b/resources/variants/creality/creality_cr20pro_0.5.inst.cfg similarity index 87% rename from resources/variants/creality_cr20pro_0.5.inst.cfg rename to resources/variants/creality/creality_cr20pro_0.5.inst.cfg index 3741a8cc34..0f58c2a686 100644 --- a/resources/variants/creality_cr20pro_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr20pro name = 0.5mm Nozzle version = 4 -definition = creality_cr20pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality_cr20pro_0.6.inst.cfg b/resources/variants/creality/creality_cr20pro_0.6.inst.cfg similarity index 87% rename from resources/variants/creality_cr20pro_0.6.inst.cfg rename to resources/variants/creality/creality_cr20pro_0.6.inst.cfg index e8e6924334..f8c1f8850c 100644 --- a/resources/variants/creality_cr20pro_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr20pro name = 0.6mm Nozzle version = 4 -definition = creality_cr20pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality_cr20pro_0.8.inst.cfg b/resources/variants/creality/creality_cr20pro_0.8.inst.cfg similarity index 87% rename from resources/variants/creality_cr20pro_0.8.inst.cfg rename to resources/variants/creality/creality_cr20pro_0.8.inst.cfg index 8f98bfbf36..83998525b4 100644 --- a/resources/variants/creality_cr20pro_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr20pro name = 0.8mm Nozzle version = 4 -definition = creality_cr20pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality_cr20pro_1.0.inst.cfg b/resources/variants/creality/creality_cr20pro_1.0.inst.cfg similarity index 87% rename from resources/variants/creality_cr20pro_1.0.inst.cfg rename to resources/variants/creality/creality_cr20pro_1.0.inst.cfg index 7454e0156f..52516050cd 100644 --- a/resources/variants/creality_cr20pro_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr20pro name = 1.0mm Nozzle version = 4 -definition = creality_cr20pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality_cr6se_0.2.inst.cfg b/resources/variants/creality/creality_cr6se_0.2.inst.cfg similarity index 87% rename from resources/variants/creality_cr6se_0.2.inst.cfg rename to resources/variants/creality/creality_cr6se_0.2.inst.cfg index ee919e89b1..3d3fb182f9 100644 --- a/resources/variants/creality_cr6se_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr6se name = 0.2mm Nozzle version = 4 -definition = creality_cr6se [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality_cr6se_0.3.inst.cfg b/resources/variants/creality/creality_cr6se_0.3.inst.cfg similarity index 87% rename from resources/variants/creality_cr6se_0.3.inst.cfg rename to resources/variants/creality/creality_cr6se_0.3.inst.cfg index d85627822f..feeeac902d 100644 --- a/resources/variants/creality_cr6se_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr6se name = 0.3mm Nozzle version = 4 -definition = creality_cr6se [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality_cr6se_0.4.inst.cfg b/resources/variants/creality/creality_cr6se_0.4.inst.cfg similarity index 87% rename from resources/variants/creality_cr6se_0.4.inst.cfg rename to resources/variants/creality/creality_cr6se_0.4.inst.cfg index af00bdaa83..7af510f84f 100644 --- a/resources/variants/creality_cr6se_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr6se name = 0.4mm Nozzle version = 4 -definition = creality_cr6se [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality_cr6se_0.5.inst.cfg b/resources/variants/creality/creality_cr6se_0.5.inst.cfg similarity index 87% rename from resources/variants/creality_cr6se_0.5.inst.cfg rename to resources/variants/creality/creality_cr6se_0.5.inst.cfg index a976ee18a2..35abb7341d 100644 --- a/resources/variants/creality_cr6se_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr6se name = 0.5mm Nozzle version = 4 -definition = creality_cr6se [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality_cr6se_0.6.inst.cfg b/resources/variants/creality/creality_cr6se_0.6.inst.cfg similarity index 87% rename from resources/variants/creality_cr6se_0.6.inst.cfg rename to resources/variants/creality/creality_cr6se_0.6.inst.cfg index 0dbb211a33..300487bd15 100644 --- a/resources/variants/creality_cr6se_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr6se name = 0.6mm Nozzle version = 4 -definition = creality_cr6se [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality_cr6se_0.8.inst.cfg b/resources/variants/creality/creality_cr6se_0.8.inst.cfg similarity index 87% rename from resources/variants/creality_cr6se_0.8.inst.cfg rename to resources/variants/creality/creality_cr6se_0.8.inst.cfg index 73b452f277..262e286962 100644 --- a/resources/variants/creality_cr6se_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr6se name = 0.8mm Nozzle version = 4 -definition = creality_cr6se [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality_cr6se_1.0.inst.cfg b/resources/variants/creality/creality_cr6se_1.0.inst.cfg similarity index 87% rename from resources/variants/creality_cr6se_1.0.inst.cfg rename to resources/variants/creality/creality_cr6se_1.0.inst.cfg index 3dd0a9d6e7..9d56cbe2d0 100644 --- a/resources/variants/creality_cr6se_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr6se_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_cr6se name = 1.0mm Nozzle version = 4 -definition = creality_cr6se [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality_ender2_0.2.inst.cfg b/resources/variants/creality/creality_ender2_0.2.inst.cfg similarity index 87% rename from resources/variants/creality_ender2_0.2.inst.cfg rename to resources/variants/creality/creality_ender2_0.2.inst.cfg index 70317f751c..d7d9b84b81 100644 --- a/resources/variants/creality_ender2_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender2 name = 0.2mm Nozzle version = 4 -definition = creality_ender2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality_ender2_0.3.inst.cfg b/resources/variants/creality/creality_ender2_0.3.inst.cfg similarity index 87% rename from resources/variants/creality_ender2_0.3.inst.cfg rename to resources/variants/creality/creality_ender2_0.3.inst.cfg index 8c93d69210..bea726a419 100644 --- a/resources/variants/creality_ender2_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender2 name = 0.3mm Nozzle version = 4 -definition = creality_ender2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality_ender2_0.4.inst.cfg b/resources/variants/creality/creality_ender2_0.4.inst.cfg similarity index 87% rename from resources/variants/creality_ender2_0.4.inst.cfg rename to resources/variants/creality/creality_ender2_0.4.inst.cfg index b76d0ea9fe..c5a3718023 100644 --- a/resources/variants/creality_ender2_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender2 name = 0.4mm Nozzle version = 4 -definition = creality_ender2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality_ender2_0.5.inst.cfg b/resources/variants/creality/creality_ender2_0.5.inst.cfg similarity index 87% rename from resources/variants/creality_ender2_0.5.inst.cfg rename to resources/variants/creality/creality_ender2_0.5.inst.cfg index e8192409e0..322d4cf86a 100644 --- a/resources/variants/creality_ender2_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender2 name = 0.5mm Nozzle version = 4 -definition = creality_ender2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality_ender2_0.6.inst.cfg b/resources/variants/creality/creality_ender2_0.6.inst.cfg similarity index 87% rename from resources/variants/creality_ender2_0.6.inst.cfg rename to resources/variants/creality/creality_ender2_0.6.inst.cfg index 7850be03d7..71ad4b4e0a 100644 --- a/resources/variants/creality_ender2_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender2 name = 0.6mm Nozzle version = 4 -definition = creality_ender2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality_ender2_0.8.inst.cfg b/resources/variants/creality/creality_ender2_0.8.inst.cfg similarity index 87% rename from resources/variants/creality_ender2_0.8.inst.cfg rename to resources/variants/creality/creality_ender2_0.8.inst.cfg index 7832a63cd3..f74437fe8c 100644 --- a/resources/variants/creality_ender2_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender2 name = 0.8mm Nozzle version = 4 -definition = creality_ender2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality_ender2_1.0.inst.cfg b/resources/variants/creality/creality_ender2_1.0.inst.cfg similarity index 87% rename from resources/variants/creality_ender2_1.0.inst.cfg rename to resources/variants/creality/creality_ender2_1.0.inst.cfg index da966f6e5b..18b9b33507 100644 --- a/resources/variants/creality_ender2_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender2_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender2 name = 1.0mm Nozzle version = 4 -definition = creality_ender2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality_ender3_0.2.inst.cfg b/resources/variants/creality/creality_ender3_0.2.inst.cfg similarity index 87% rename from resources/variants/creality_ender3_0.2.inst.cfg rename to resources/variants/creality/creality_ender3_0.2.inst.cfg index c843a72e2f..969a476b0b 100644 --- a/resources/variants/creality_ender3_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender3 name = 0.2mm Nozzle version = 4 -definition = creality_ender3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality_ender3_0.3.inst.cfg b/resources/variants/creality/creality_ender3_0.3.inst.cfg similarity index 87% rename from resources/variants/creality_ender3_0.3.inst.cfg rename to resources/variants/creality/creality_ender3_0.3.inst.cfg index 010aa73c4d..34e6ce4f3b 100644 --- a/resources/variants/creality_ender3_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender3 name = 0.3mm Nozzle version = 4 -definition = creality_ender3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality_ender3_0.4.inst.cfg b/resources/variants/creality/creality_ender3_0.4.inst.cfg similarity index 87% rename from resources/variants/creality_ender3_0.4.inst.cfg rename to resources/variants/creality/creality_ender3_0.4.inst.cfg index 8b5a14d48f..7bf09221a1 100644 --- a/resources/variants/creality_ender3_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender3 name = 0.4mm Nozzle version = 4 -definition = creality_ender3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality_ender3_0.5.inst.cfg b/resources/variants/creality/creality_ender3_0.5.inst.cfg similarity index 87% rename from resources/variants/creality_ender3_0.5.inst.cfg rename to resources/variants/creality/creality_ender3_0.5.inst.cfg index 6ffcfa183c..ed37671788 100644 --- a/resources/variants/creality_ender3_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender3 name = 0.5mm Nozzle version = 4 -definition = creality_ender3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality_ender3_0.6.inst.cfg b/resources/variants/creality/creality_ender3_0.6.inst.cfg similarity index 87% rename from resources/variants/creality_ender3_0.6.inst.cfg rename to resources/variants/creality/creality_ender3_0.6.inst.cfg index f06974ded0..b890bbe67c 100644 --- a/resources/variants/creality_ender3_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender3 name = 0.6mm Nozzle version = 4 -definition = creality_ender3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality_ender3_0.8.inst.cfg b/resources/variants/creality/creality_ender3_0.8.inst.cfg similarity index 87% rename from resources/variants/creality_ender3_0.8.inst.cfg rename to resources/variants/creality/creality_ender3_0.8.inst.cfg index 0a6c4e37ea..30099acc04 100644 --- a/resources/variants/creality_ender3_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender3 name = 0.8mm Nozzle version = 4 -definition = creality_ender3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality_ender3_1.0.inst.cfg b/resources/variants/creality/creality_ender3_1.0.inst.cfg similarity index 87% rename from resources/variants/creality_ender3_1.0.inst.cfg rename to resources/variants/creality/creality_ender3_1.0.inst.cfg index 9eff65190c..c30af4410a 100644 --- a/resources/variants/creality_ender3_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender3 name = 1.0mm Nozzle version = 4 -definition = creality_ender3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality_ender3max_0.2.inst.cfg b/resources/variants/creality/creality_ender3max_0.2.inst.cfg similarity index 73% rename from resources/variants/creality_ender3max_0.2.inst.cfg rename to resources/variants/creality/creality_ender3max_0.2.inst.cfg index 71db90ab2c..8eb336c356 100644 --- a/resources/variants/creality_ender3max_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender3max name = 0.2mm Nozzle version = 4 -definition = creality_ender3max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.2 \ No newline at end of file +machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality_ender3max_0.3.inst.cfg b/resources/variants/creality/creality_ender3max_0.3.inst.cfg similarity index 73% rename from resources/variants/creality_ender3max_0.3.inst.cfg rename to resources/variants/creality/creality_ender3max_0.3.inst.cfg index e79f846c4c..24f21f93de 100644 --- a/resources/variants/creality_ender3max_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender3max name = 0.3mm Nozzle version = 4 -definition = creality_ender3max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.3 \ No newline at end of file +machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality_ender3max_0.4.inst.cfg b/resources/variants/creality/creality_ender3max_0.4.inst.cfg similarity index 73% rename from resources/variants/creality_ender3max_0.4.inst.cfg rename to resources/variants/creality/creality_ender3max_0.4.inst.cfg index 2b52df9746..0b13727228 100644 --- a/resources/variants/creality_ender3max_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender3max name = 0.4mm Nozzle version = 4 -definition = creality_ender3max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.4 \ No newline at end of file +machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality_ender3max_0.5.inst.cfg b/resources/variants/creality/creality_ender3max_0.5.inst.cfg similarity index 73% rename from resources/variants/creality_ender3max_0.5.inst.cfg rename to resources/variants/creality/creality_ender3max_0.5.inst.cfg index 94f5d5a650..b0527d929c 100644 --- a/resources/variants/creality_ender3max_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender3max name = 0.5mm Nozzle version = 4 -definition = creality_ender3max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.5 \ No newline at end of file +machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality_ender3max_0.6.inst.cfg b/resources/variants/creality/creality_ender3max_0.6.inst.cfg similarity index 73% rename from resources/variants/creality_ender3max_0.6.inst.cfg rename to resources/variants/creality/creality_ender3max_0.6.inst.cfg index 892a1b68d9..1970ecd725 100644 --- a/resources/variants/creality_ender3max_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender3max name = 0.6mm Nozzle version = 4 -definition = creality_ender3max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.6 \ No newline at end of file +machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality_ender3max_0.8.inst.cfg b/resources/variants/creality/creality_ender3max_0.8.inst.cfg similarity index 73% rename from resources/variants/creality_ender3max_0.8.inst.cfg rename to resources/variants/creality/creality_ender3max_0.8.inst.cfg index 49a7aa577c..23d78b0584 100644 --- a/resources/variants/creality_ender3max_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender3max name = 0.8mm Nozzle version = 4 -definition = creality_ender3max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.8 \ No newline at end of file +machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality_ender3max_1.0.inst.cfg b/resources/variants/creality/creality_ender3max_1.0.inst.cfg similarity index 73% rename from resources/variants/creality_ender3max_1.0.inst.cfg rename to resources/variants/creality/creality_ender3max_1.0.inst.cfg index 46f6ed8f8d..42450e2282 100644 --- a/resources/variants/creality_ender3max_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3max_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender3max name = 1.0mm Nozzle version = 4 -definition = creality_ender3max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 1.0 \ No newline at end of file +machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality_ender3pro_0.2.inst.cfg b/resources/variants/creality/creality_ender3pro_0.2.inst.cfg similarity index 87% rename from resources/variants/creality_ender3pro_0.2.inst.cfg rename to resources/variants/creality/creality_ender3pro_0.2.inst.cfg index 50b1a4903f..813436be65 100644 --- a/resources/variants/creality_ender3pro_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender3pro name = 0.2mm Nozzle version = 4 -definition = creality_ender3pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality_ender3pro_0.3.inst.cfg b/resources/variants/creality/creality_ender3pro_0.3.inst.cfg similarity index 87% rename from resources/variants/creality_ender3pro_0.3.inst.cfg rename to resources/variants/creality/creality_ender3pro_0.3.inst.cfg index 8fddfdb396..5eadcfb975 100644 --- a/resources/variants/creality_ender3pro_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender3pro name = 0.3mm Nozzle version = 4 -definition = creality_ender3pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality_ender3pro_0.4.inst.cfg b/resources/variants/creality/creality_ender3pro_0.4.inst.cfg similarity index 87% rename from resources/variants/creality_ender3pro_0.4.inst.cfg rename to resources/variants/creality/creality_ender3pro_0.4.inst.cfg index 1a7e236164..aeb092a76b 100644 --- a/resources/variants/creality_ender3pro_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender3pro name = 0.4mm Nozzle version = 4 -definition = creality_ender3pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality_ender3pro_0.5.inst.cfg b/resources/variants/creality/creality_ender3pro_0.5.inst.cfg similarity index 87% rename from resources/variants/creality_ender3pro_0.5.inst.cfg rename to resources/variants/creality/creality_ender3pro_0.5.inst.cfg index 290e942e6f..5a5d1fcbf9 100644 --- a/resources/variants/creality_ender3pro_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender3pro name = 0.5mm Nozzle version = 4 -definition = creality_ender3pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality_ender3pro_0.6.inst.cfg b/resources/variants/creality/creality_ender3pro_0.6.inst.cfg similarity index 87% rename from resources/variants/creality_ender3pro_0.6.inst.cfg rename to resources/variants/creality/creality_ender3pro_0.6.inst.cfg index 13668f89ff..fcd5707c4c 100644 --- a/resources/variants/creality_ender3pro_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender3pro name = 0.6mm Nozzle version = 4 -definition = creality_ender3pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality_ender3pro_0.8.inst.cfg b/resources/variants/creality/creality_ender3pro_0.8.inst.cfg similarity index 87% rename from resources/variants/creality_ender3pro_0.8.inst.cfg rename to resources/variants/creality/creality_ender3pro_0.8.inst.cfg index a3ccfcf6b5..42767a94a7 100644 --- a/resources/variants/creality_ender3pro_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender3pro name = 0.8mm Nozzle version = 4 -definition = creality_ender3pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality_ender3pro_1.0.inst.cfg b/resources/variants/creality/creality_ender3pro_1.0.inst.cfg similarity index 87% rename from resources/variants/creality_ender3pro_1.0.inst.cfg rename to resources/variants/creality/creality_ender3pro_1.0.inst.cfg index 7329791bfd..b1689a2891 100644 --- a/resources/variants/creality_ender3pro_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender3pro name = 1.0mm Nozzle version = 4 -definition = creality_ender3pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality/creality_ender3s1_0.2.inst.cfg b/resources/variants/creality/creality_ender3s1_0.2.inst.cfg new file mode 100644 index 0000000000..ac944ab1dc --- /dev/null +++ b/resources/variants/creality/creality_ender3s1_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3s1 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality/creality_ender3s1_0.3.inst.cfg b/resources/variants/creality/creality_ender3s1_0.3.inst.cfg new file mode 100644 index 0000000000..d58e18d238 --- /dev/null +++ b/resources/variants/creality/creality_ender3s1_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3s1 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality/creality_ender3s1_0.4.inst.cfg b/resources/variants/creality/creality_ender3s1_0.4.inst.cfg new file mode 100644 index 0000000000..fdaddc91ab --- /dev/null +++ b/resources/variants/creality/creality_ender3s1_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3s1 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality/creality_ender3s1_0.5.inst.cfg b/resources/variants/creality/creality_ender3s1_0.5.inst.cfg new file mode 100644 index 0000000000..0093cc7356 --- /dev/null +++ b/resources/variants/creality/creality_ender3s1_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3s1 +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality/creality_ender3s1_0.6.inst.cfg b/resources/variants/creality/creality_ender3s1_0.6.inst.cfg new file mode 100644 index 0000000000..e1aa8a4448 --- /dev/null +++ b/resources/variants/creality/creality_ender3s1_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3s1 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality/creality_ender3s1_0.8.inst.cfg b/resources/variants/creality/creality_ender3s1_0.8.inst.cfg new file mode 100644 index 0000000000..0b584c6e87 --- /dev/null +++ b/resources/variants/creality/creality_ender3s1_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3s1 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality/creality_ender3s1_1.0.inst.cfg b/resources/variants/creality/creality_ender3s1_1.0.inst.cfg new file mode 100644 index 0000000000..a1de29ad89 --- /dev/null +++ b/resources/variants/creality/creality_ender3s1_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3s1 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg new file mode 100644 index 0000000000..a8ed1f1d37 --- /dev/null +++ b/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3s1plus +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg new file mode 100644 index 0000000000..039c47debe --- /dev/null +++ b/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3s1plus +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg new file mode 100644 index 0000000000..a410190389 --- /dev/null +++ b/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3s1plus +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg new file mode 100644 index 0000000000..81d93cef97 --- /dev/null +++ b/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3s1plus +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg new file mode 100644 index 0000000000..7804f5ed15 --- /dev/null +++ b/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3s1plus +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg new file mode 100644 index 0000000000..882f18b408 --- /dev/null +++ b/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3s1plus +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg b/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg new file mode 100644 index 0000000000..c76ff38862 --- /dev/null +++ b/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3s1plus +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg new file mode 100644 index 0000000000..3697ba6288 --- /dev/null +++ b/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3s1pro +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg new file mode 100644 index 0000000000..3b7675aa6a --- /dev/null +++ b/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3s1pro +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg new file mode 100644 index 0000000000..37eb70d09c --- /dev/null +++ b/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3s1pro +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg new file mode 100644 index 0000000000..c4c1b18347 --- /dev/null +++ b/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3s1pro +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg new file mode 100644 index 0000000000..d609218f5e --- /dev/null +++ b/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3s1pro +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg new file mode 100644 index 0000000000..ee7a039075 --- /dev/null +++ b/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3s1pro +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg b/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg new file mode 100644 index 0000000000..4c8200ec9c --- /dev/null +++ b/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3s1pro +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality_ender4_0.2.inst.cfg b/resources/variants/creality/creality_ender4_0.2.inst.cfg similarity index 87% rename from resources/variants/creality_ender4_0.2.inst.cfg rename to resources/variants/creality/creality_ender4_0.2.inst.cfg index cee5b66196..cc9e0b9d79 100644 --- a/resources/variants/creality_ender4_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender4 name = 0.2mm Nozzle version = 4 -definition = creality_ender4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality_ender4_0.3.inst.cfg b/resources/variants/creality/creality_ender4_0.3.inst.cfg similarity index 87% rename from resources/variants/creality_ender4_0.3.inst.cfg rename to resources/variants/creality/creality_ender4_0.3.inst.cfg index 6bf34eb12e..fd9c0d85c7 100644 --- a/resources/variants/creality_ender4_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender4 name = 0.3mm Nozzle version = 4 -definition = creality_ender4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality_ender4_0.4.inst.cfg b/resources/variants/creality/creality_ender4_0.4.inst.cfg similarity index 87% rename from resources/variants/creality_ender4_0.4.inst.cfg rename to resources/variants/creality/creality_ender4_0.4.inst.cfg index b9e7181a64..431454efad 100644 --- a/resources/variants/creality_ender4_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender4 name = 0.4mm Nozzle version = 4 -definition = creality_ender4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality_ender4_0.5.inst.cfg b/resources/variants/creality/creality_ender4_0.5.inst.cfg similarity index 87% rename from resources/variants/creality_ender4_0.5.inst.cfg rename to resources/variants/creality/creality_ender4_0.5.inst.cfg index ed66f18a6d..89c5b10479 100644 --- a/resources/variants/creality_ender4_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender4 name = 0.5mm Nozzle version = 4 -definition = creality_ender4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality_ender4_0.6.inst.cfg b/resources/variants/creality/creality_ender4_0.6.inst.cfg similarity index 87% rename from resources/variants/creality_ender4_0.6.inst.cfg rename to resources/variants/creality/creality_ender4_0.6.inst.cfg index de468dbc60..42be35588c 100644 --- a/resources/variants/creality_ender4_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender4 name = 0.6mm Nozzle version = 4 -definition = creality_ender4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality_ender4_0.8.inst.cfg b/resources/variants/creality/creality_ender4_0.8.inst.cfg similarity index 87% rename from resources/variants/creality_ender4_0.8.inst.cfg rename to resources/variants/creality/creality_ender4_0.8.inst.cfg index 8d8f7e14db..c695d8d92f 100644 --- a/resources/variants/creality_ender4_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender4 name = 0.8mm Nozzle version = 4 -definition = creality_ender4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality_ender4_1.0.inst.cfg b/resources/variants/creality/creality_ender4_1.0.inst.cfg similarity index 87% rename from resources/variants/creality_ender4_1.0.inst.cfg rename to resources/variants/creality/creality_ender4_1.0.inst.cfg index f48648aa4b..c7b4738042 100644 --- a/resources/variants/creality_ender4_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender4_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender4 name = 1.0mm Nozzle version = 4 -definition = creality_ender4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality_ender5_0.2.inst.cfg b/resources/variants/creality/creality_ender5_0.2.inst.cfg similarity index 87% rename from resources/variants/creality_ender5_0.2.inst.cfg rename to resources/variants/creality/creality_ender5_0.2.inst.cfg index 86532f65ec..9caa965f98 100644 --- a/resources/variants/creality_ender5_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender5 name = 0.2mm Nozzle version = 4 -definition = creality_ender5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality_ender5_0.3.inst.cfg b/resources/variants/creality/creality_ender5_0.3.inst.cfg similarity index 87% rename from resources/variants/creality_ender5_0.3.inst.cfg rename to resources/variants/creality/creality_ender5_0.3.inst.cfg index cf9dc6ab83..290994c543 100644 --- a/resources/variants/creality_ender5_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender5 name = 0.3mm Nozzle version = 4 -definition = creality_ender5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality_ender5_0.4.inst.cfg b/resources/variants/creality/creality_ender5_0.4.inst.cfg similarity index 87% rename from resources/variants/creality_ender5_0.4.inst.cfg rename to resources/variants/creality/creality_ender5_0.4.inst.cfg index 8fa3ac4e06..311b19acaf 100644 --- a/resources/variants/creality_ender5_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender5 name = 0.4mm Nozzle version = 4 -definition = creality_ender5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality_ender5_0.5.inst.cfg b/resources/variants/creality/creality_ender5_0.5.inst.cfg similarity index 87% rename from resources/variants/creality_ender5_0.5.inst.cfg rename to resources/variants/creality/creality_ender5_0.5.inst.cfg index 0a3a679e6e..905089c0c0 100644 --- a/resources/variants/creality_ender5_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender5 name = 0.5mm Nozzle version = 4 -definition = creality_ender5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality_ender5_0.6.inst.cfg b/resources/variants/creality/creality_ender5_0.6.inst.cfg similarity index 87% rename from resources/variants/creality_ender5_0.6.inst.cfg rename to resources/variants/creality/creality_ender5_0.6.inst.cfg index 432dfd2c1b..219aa4cd1f 100644 --- a/resources/variants/creality_ender5_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender5 name = 0.6mm Nozzle version = 4 -definition = creality_ender5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality_ender5_0.8.inst.cfg b/resources/variants/creality/creality_ender5_0.8.inst.cfg similarity index 87% rename from resources/variants/creality_ender5_0.8.inst.cfg rename to resources/variants/creality/creality_ender5_0.8.inst.cfg index a45fba42a6..cce7eef2d6 100644 --- a/resources/variants/creality_ender5_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender5 name = 0.8mm Nozzle version = 4 -definition = creality_ender5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality_ender5_1.0.inst.cfg b/resources/variants/creality/creality_ender5_1.0.inst.cfg similarity index 87% rename from resources/variants/creality_ender5_1.0.inst.cfg rename to resources/variants/creality/creality_ender5_1.0.inst.cfg index 7af803e101..848e52b9e3 100644 --- a/resources/variants/creality_ender5_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender5_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender5 name = 1.0mm Nozzle version = 4 -definition = creality_ender5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality_ender5plus_0.2.inst.cfg b/resources/variants/creality/creality_ender5plus_0.2.inst.cfg similarity index 87% rename from resources/variants/creality_ender5plus_0.2.inst.cfg rename to resources/variants/creality/creality_ender5plus_0.2.inst.cfg index b1d42f5d70..3890f62429 100644 --- a/resources/variants/creality_ender5plus_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender5plus name = 0.2mm Nozzle version = 4 -definition = creality_ender5plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality_ender5plus_0.3.inst.cfg b/resources/variants/creality/creality_ender5plus_0.3.inst.cfg similarity index 87% rename from resources/variants/creality_ender5plus_0.3.inst.cfg rename to resources/variants/creality/creality_ender5plus_0.3.inst.cfg index c7feda68fc..3b6871266c 100644 --- a/resources/variants/creality_ender5plus_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender5plus name = 0.3mm Nozzle version = 4 -definition = creality_ender5plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality_ender5plus_0.4.inst.cfg b/resources/variants/creality/creality_ender5plus_0.4.inst.cfg similarity index 87% rename from resources/variants/creality_ender5plus_0.4.inst.cfg rename to resources/variants/creality/creality_ender5plus_0.4.inst.cfg index 56d7667924..13bf3cd0fb 100644 --- a/resources/variants/creality_ender5plus_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender5plus name = 0.4mm Nozzle version = 4 -definition = creality_ender5plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality_ender5plus_0.5.inst.cfg b/resources/variants/creality/creality_ender5plus_0.5.inst.cfg similarity index 87% rename from resources/variants/creality_ender5plus_0.5.inst.cfg rename to resources/variants/creality/creality_ender5plus_0.5.inst.cfg index ef0bf4ac68..d42832dbcf 100644 --- a/resources/variants/creality_ender5plus_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender5plus name = 0.5mm Nozzle version = 4 -definition = creality_ender5plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality_ender5plus_0.6.inst.cfg b/resources/variants/creality/creality_ender5plus_0.6.inst.cfg similarity index 87% rename from resources/variants/creality_ender5plus_0.6.inst.cfg rename to resources/variants/creality/creality_ender5plus_0.6.inst.cfg index 94e572eda6..d39802eed7 100644 --- a/resources/variants/creality_ender5plus_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender5plus name = 0.6mm Nozzle version = 4 -definition = creality_ender5plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality_ender5plus_0.8.inst.cfg b/resources/variants/creality/creality_ender5plus_0.8.inst.cfg similarity index 87% rename from resources/variants/creality_ender5plus_0.8.inst.cfg rename to resources/variants/creality/creality_ender5plus_0.8.inst.cfg index fb37eae6dc..c6125f4099 100644 --- a/resources/variants/creality_ender5plus_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender5plus name = 0.8mm Nozzle version = 4 -definition = creality_ender5plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality_ender5plus_1.0.inst.cfg b/resources/variants/creality/creality_ender5plus_1.0.inst.cfg similarity index 87% rename from resources/variants/creality_ender5plus_1.0.inst.cfg rename to resources/variants/creality/creality_ender5plus_1.0.inst.cfg index 23cd521529..dbb895e317 100644 --- a/resources/variants/creality_ender5plus_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = creality_ender5plus name = 1.0mm Nozzle version = 4 -definition = creality_ender5plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality_ender6_0.2.inst.cfg b/resources/variants/creality/creality_ender6_0.2.inst.cfg similarity index 82% rename from resources/variants/creality_ender6_0.2.inst.cfg rename to resources/variants/creality/creality_ender6_0.2.inst.cfg index cbaaa9a8bf..e21c3659f4 100644 --- a/resources/variants/creality_ender6_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.2.inst.cfg @@ -1,12 +1,13 @@ -[general] -name = 0.2mm Nozzle -version = 4 -definition = creality_ender6 - -[metadata] -setting_version = 20 -type = variant -hardware_type = nozzle - -[values] -machine_nozzle_size = 0.2 +[general] +definition = creality_ender6 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality_ender6_0.3.inst.cfg b/resources/variants/creality/creality_ender6_0.3.inst.cfg similarity index 82% rename from resources/variants/creality_ender6_0.3.inst.cfg rename to resources/variants/creality/creality_ender6_0.3.inst.cfg index f16f34285e..c129731e9b 100644 --- a/resources/variants/creality_ender6_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.3.inst.cfg @@ -1,12 +1,13 @@ -[general] -name = 0.3mm Nozzle -version = 4 -definition = creality_ender6 - -[metadata] -setting_version = 20 -type = variant -hardware_type = nozzle - -[values] -machine_nozzle_size = 0.3 +[general] +definition = creality_ender6 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality_ender6_0.4.inst.cfg b/resources/variants/creality/creality_ender6_0.4.inst.cfg similarity index 82% rename from resources/variants/creality_ender6_0.4.inst.cfg rename to resources/variants/creality/creality_ender6_0.4.inst.cfg index cb3071dc69..b1e14dfb45 100644 --- a/resources/variants/creality_ender6_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.4.inst.cfg @@ -1,12 +1,13 @@ -[general] -name = 0.4mm Nozzle -version = 4 -definition = creality_ender6 - -[metadata] -setting_version = 20 -type = variant -hardware_type = nozzle - -[values] -machine_nozzle_size = 0.4 +[general] +definition = creality_ender6 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality_ender6_0.5.inst.cfg b/resources/variants/creality/creality_ender6_0.5.inst.cfg similarity index 82% rename from resources/variants/creality_ender6_0.5.inst.cfg rename to resources/variants/creality/creality_ender6_0.5.inst.cfg index cd26258433..b4f0aa9199 100644 --- a/resources/variants/creality_ender6_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.5.inst.cfg @@ -1,12 +1,13 @@ -[general] -name = 0.5mm Nozzle -version = 4 -definition = creality_ender6 - -[metadata] -setting_version = 20 -type = variant -hardware_type = nozzle - -[values] -machine_nozzle_size = 0.5 +[general] +definition = creality_ender6 +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality_ender6_0.6.inst.cfg b/resources/variants/creality/creality_ender6_0.6.inst.cfg similarity index 82% rename from resources/variants/creality_ender6_0.6.inst.cfg rename to resources/variants/creality/creality_ender6_0.6.inst.cfg index 278a31f118..e1cba4411c 100644 --- a/resources/variants/creality_ender6_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.6.inst.cfg @@ -1,12 +1,13 @@ -[general] -name = 0.6mm Nozzle -version = 4 -definition = creality_ender6 - -[metadata] -setting_version = 20 -type = variant -hardware_type = nozzle - -[values] -machine_nozzle_size = 0.6 +[general] +definition = creality_ender6 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality_ender6_0.8.inst.cfg b/resources/variants/creality/creality_ender6_0.8.inst.cfg similarity index 82% rename from resources/variants/creality_ender6_0.8.inst.cfg rename to resources/variants/creality/creality_ender6_0.8.inst.cfg index 94241194e6..d8ebefe705 100644 --- a/resources/variants/creality_ender6_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.8.inst.cfg @@ -1,12 +1,13 @@ -[general] -name = 0.8mm Nozzle -version = 4 -definition = creality_ender6 - -[metadata] -setting_version = 20 -type = variant -hardware_type = nozzle - -[values] -machine_nozzle_size = 0.8 +[general] +definition = creality_ender6 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality_ender6_1.0.inst.cfg b/resources/variants/creality/creality_ender6_1.0.inst.cfg similarity index 82% rename from resources/variants/creality_ender6_1.0.inst.cfg rename to resources/variants/creality/creality_ender6_1.0.inst.cfg index c2ee38f8b2..e4f2aea7e6 100644 --- a/resources/variants/creality_ender6_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender6_1.0.inst.cfg @@ -1,12 +1,13 @@ -[general] -name = 1.0mm Nozzle -version = 4 -definition = creality_ender6 - -[metadata] -setting_version = 20 -type = variant -hardware_type = nozzle - -[values] -machine_nozzle_size = 1.0 +[general] +definition = creality_ender6 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality_sermoond1_0.2.inst.cfg b/resources/variants/creality/creality_sermoond1_0.2.inst.cfg similarity index 82% rename from resources/variants/creality_sermoond1_0.2.inst.cfg rename to resources/variants/creality/creality_sermoond1_0.2.inst.cfg index cfb9559a01..e3f4be7934 100644 --- a/resources/variants/creality_sermoond1_0.2.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.2.inst.cfg @@ -1,12 +1,13 @@ -[general] -name = 0.2mm Nozzle -version = 4 -definition = creality_sermoond1 - -[metadata] -setting_version = 20 -type = variant -hardware_type = nozzle - -[values] -machine_nozzle_size = 0.2 +[general] +definition = creality_sermoond1 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality_sermoond1_0.3.inst.cfg b/resources/variants/creality/creality_sermoond1_0.3.inst.cfg similarity index 82% rename from resources/variants/creality_sermoond1_0.3.inst.cfg rename to resources/variants/creality/creality_sermoond1_0.3.inst.cfg index d3aa81b887..e78ba1f27d 100644 --- a/resources/variants/creality_sermoond1_0.3.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.3.inst.cfg @@ -1,12 +1,13 @@ -[general] -name = 0.3mm Nozzle -version = 4 -definition = creality_sermoond1 - -[metadata] -setting_version = 20 -type = variant -hardware_type = nozzle - -[values] -machine_nozzle_size = 0.3 +[general] +definition = creality_sermoond1 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality_sermoond1_0.4.inst.cfg b/resources/variants/creality/creality_sermoond1_0.4.inst.cfg similarity index 82% rename from resources/variants/creality_sermoond1_0.4.inst.cfg rename to resources/variants/creality/creality_sermoond1_0.4.inst.cfg index 4bd0af2851..03c6120b0d 100644 --- a/resources/variants/creality_sermoond1_0.4.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.4.inst.cfg @@ -1,12 +1,13 @@ -[general] -name = 0.4mm Nozzle -version = 4 -definition = creality_sermoond1 - -[metadata] -setting_version = 20 -type = variant -hardware_type = nozzle - -[values] -machine_nozzle_size = 0.4 +[general] +definition = creality_sermoond1 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality_sermoond1_0.5.inst.cfg b/resources/variants/creality/creality_sermoond1_0.5.inst.cfg similarity index 82% rename from resources/variants/creality_sermoond1_0.5.inst.cfg rename to resources/variants/creality/creality_sermoond1_0.5.inst.cfg index 30cdbdfa56..7201411432 100644 --- a/resources/variants/creality_sermoond1_0.5.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.5.inst.cfg @@ -1,12 +1,13 @@ -[general] -name = 0.5mm Nozzle -version = 4 -definition = creality_sermoond1 - -[metadata] -setting_version = 20 -type = variant -hardware_type = nozzle - -[values] -machine_nozzle_size = 0.5 +[general] +definition = creality_sermoond1 +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality_sermoond1_0.6.inst.cfg b/resources/variants/creality/creality_sermoond1_0.6.inst.cfg similarity index 82% rename from resources/variants/creality_sermoond1_0.6.inst.cfg rename to resources/variants/creality/creality_sermoond1_0.6.inst.cfg index 49ee1ac207..d7e7ef4082 100644 --- a/resources/variants/creality_sermoond1_0.6.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.6.inst.cfg @@ -1,12 +1,13 @@ -[general] -name = 0.6mm Nozzle -version = 4 -definition = creality_sermoond1 - -[metadata] -setting_version = 20 -type = variant -hardware_type = nozzle - -[values] -machine_nozzle_size = 0.6 +[general] +definition = creality_sermoond1 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality_sermoond1_0.8.inst.cfg b/resources/variants/creality/creality_sermoond1_0.8.inst.cfg similarity index 82% rename from resources/variants/creality_sermoond1_0.8.inst.cfg rename to resources/variants/creality/creality_sermoond1_0.8.inst.cfg index 2283b9d39b..714a46c4d2 100644 --- a/resources/variants/creality_sermoond1_0.8.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.8.inst.cfg @@ -1,12 +1,13 @@ -[general] -name = 0.8mm Nozzle -version = 4 -definition = creality_sermoond1 - -[metadata] -setting_version = 20 -type = variant -hardware_type = nozzle - -[values] -machine_nozzle_size = 0.8 +[general] +definition = creality_sermoond1 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality_sermoond1_1.0.inst.cfg b/resources/variants/creality/creality_sermoond1_1.0.inst.cfg similarity index 82% rename from resources/variants/creality_sermoond1_1.0.inst.cfg rename to resources/variants/creality/creality_sermoond1_1.0.inst.cfg index 30a2d6ee78..e48fcb9bbd 100644 --- a/resources/variants/creality_sermoond1_1.0.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_1.0.inst.cfg @@ -1,12 +1,13 @@ -[general] -name = 1.0mm Nozzle -version = 4 -definition = creality_sermoond1 - -[metadata] -setting_version = 20 -type = variant -hardware_type = nozzle - -[values] -machine_nozzle_size = 1.0 +[general] +definition = creality_sermoond1 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg b/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg new file mode 100644 index 0000000000..7955b804b4 --- /dev/null +++ b/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_sermoonv1 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + 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 new file mode 100644 index 0000000000..c87bcdbb9c --- /dev/null +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg @@ -0,0 +1,107 @@ +[general] +definition = dagoma_pro_430_bowden +name = Brass 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +acceleration_enabled = True +acceleration_layer_0 = =acceleration_topbottom +acceleration_print = 1500 +acceleration_print_layer_0 = =acceleration_layer_0 +acceleration_skirt_brim = 3000 +acceleration_travel = =acceleration_print +acceleration_travel_layer_0 = 2000.0 +acceleration_wall = =math.ceil(acceleration_print * 1000 / 1250) +adhesion_type = skirt +bridge_fan_speed_2 = 100 +bridge_fan_speed_3 = 100 +bridge_settings_enabled = True +bridge_skin_density = 95.0 +bridge_skin_density_2 = 85 +bridge_skin_density_3 = 100 +bridge_skin_speed_2 = 37.5 +bridge_wall_min_length = 2.0 +carve_multiple_volumes = True +coasting_enable = True +cool_fan_full_at_height = 0.6 +cool_fan_speed_min = 100 +cool_min_layer_time = 6.0 +cool_min_speed = 5 +expand_skins_expand_distance = 0.8 +infill_line_distance = =0 if infill_sparse_density == 0 else (infill_line_width * 100) / infill_sparse_density * (2 if infill_pattern == 'grid' else (3 if infill_pattern == 'triangles' or infill_pattern == 'trihexagon' or infill_pattern == 'cubic' or infill_pattern == 'cubicsubdiv' else (2 if infill_pattern == 'tetrahedral' or infill_pattern == 'quarter_cubic' else (1 if infill_pattern == 'cross' or infill_pattern == 'cross_3d' else (1.6 if infill_pattern == 'lightning' else 1))))) +infill_overlap = 2 +infill_pattern = grid +infill_sparse_density = 15 +infill_sparse_thickness = 0.4 +infill_wall_line_count = 1 +infill_wipe_dist = 0.2 +initial_layer_line_width_factor = 100 +jerk_enabled = False +layer_height_0 = 0.25 +line_width = =machine_nozzle_size +machine_nozzle_id = Brass 0.4mm +machine_nozzle_size = 0.4 +material_bed_temperature = 50 +material_bed_temperature_layer_0 = 80 +material_final_print_temperature = =max(-273.15, material_print_temperature - 15) +material_flow_layer_0 = 95 +material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) +material_print_temperature = =default_material_print_temperature + 5 +meshfix_maximum_deviation = 0.025 +meshfix_maximum_resolution = 1.5 +meshfix_maximum_travel_resolution = 0.5 +minimum_polygon_circumference = 0.4 +multiple_mesh_overlap = 0.15 +retract_at_layer_change = True +retraction_amount = 3.0 +retraction_combing = noskin +retraction_combing_max_distance = 5.0 +retraction_count_max = 25 +retraction_extrusion_window = 1 +retraction_hop = 0.0 +retraction_hop_enabled = True +retraction_speed = 40 +roofing_layer_count = 1 +roofing_line_width = 0.3 +roofing_material_flow = 95 +skin_edge_support_thickness = 0.0 +skin_monotonic = True +skin_no_small_gaps_heuristic = False +skin_outline_count = 2 +skin_overlap = 5 +skin_preshrink = 0.8 +skirt_brim_speed = 35 +skirt_gap = 2.0 +skirt_line_count = 2 +small_feature_speed_factor_0 = 35 +small_hole_max_size = 4.0 +speed_infill = 60 +speed_layer_0 = 14 +speed_slowdown_layers = 4 +speed_support = 100 +speed_travel = 180 +speed_travel_layer_0 = 27 +support_angle = 65 +support_enable = False +support_fan_enable = True +support_infill_rate = 15 +support_pattern = zigzag +support_structure = normal +support_top_distance = 0.1 +support_type = buildplate +support_xy_distance = 1.5 +support_xy_overrides_z = xy_overrides_z +top_bottom_thickness = 0.8 +top_thickness = 0.8 +travel_avoid_distance = 3 +travel_avoid_supports = True +wall_line_count = 2 +wall_thickness = =line_width * 2 +z_seam_corner = z_seam_corner_inner +zig_zaggify_infill = False + 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 new file mode 100644 index 0000000000..e40fe89651 --- /dev/null +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = dagoma_pro_430_bowden +name = Brass 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +adhesion_type = none +bridge_settings_enabled = True +bridge_wall_material_flow = 60 +bridge_wall_speed = 30 +cool_min_layer_time = 10 +gradual_infill_step_height = 2 +gradual_infill_steps = 0 +infill_before_walls = False +infill_overlap = 5 +infill_sparse_density = 7 +initial_layer_line_width_factor = 100 +inset_direction = inside_out +jerk_enabled = True +jerk_infill = 10 +line_width = 0.7 +machine_nozzle_id = Brass 0.8mm +machine_nozzle_size = 0.8 +material_flow_layer_0 = 150 +retraction_speed = 30 +roofing_layer_count = 1 +roofing_material_flow = =skin_material_flow +speed_infill = =speed_print +speed_topbottom = =speed_print / 2 +speed_wall_x = 40 +top_layers = 4 +travel_avoid_supports = True +wall_line_count = 2 +z_seam_corner = z_seam_corner_none +z_seam_position = backleft +z_seam_type = sharpest_corner + 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 new file mode 100644 index 0000000000..590e5cd9bb --- /dev/null +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = dagoma_pro_430_bowden +name = Brass 1.0mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +adhesion_type = none +bridge_settings_enabled = True +bridge_wall_material_flow = 60 +bridge_wall_speed = 30 +gradual_infill_step_height = 2 +gradual_infill_steps = 0 +infill_before_walls = False +infill_overlap = 5 +infill_sparse_density = 7 +initial_layer_line_width_factor = 100 +inset_direction = inside_out +jerk_enabled = True +jerk_infill = 10 +layer_height_0 = 0.3 +line_width = 0.9 +machine_nozzle_id = Brass 1.0mm +machine_nozzle_size = 1.0 +material_print_temperature_layer_0 = =default_material_print_temperature + 25 +retraction_speed = 30 +roofing_layer_count = 1 +roofing_material_flow = =skin_material_flow +speed_infill = 35 +speed_topbottom = =speed_print / 2 +speed_wall_x = 40 +top_layers = 4 +travel_avoid_supports = True +wall_line_count = 2 +z_seam_corner = z_seam_corner_none +z_seam_position = backleft +z_seam_type = sharpest_corner + 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 new file mode 100644 index 0000000000..b4b4005e61 --- /dev/null +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg @@ -0,0 +1,104 @@ +[general] +definition = dagoma_pro_430_bowden +name = Steel 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +acceleration_enabled = True +acceleration_layer_0 = =acceleration_topbottom +acceleration_print = 1500 +acceleration_print_layer_0 = =acceleration_layer_0 +acceleration_skirt_brim = 3000 +acceleration_travel = =acceleration_print +acceleration_travel_layer_0 = 2000.0 +acceleration_wall = =math.ceil(acceleration_print * 1000 / 1250) +adhesion_type = skirt +bridge_fan_speed_2 = 100 +bridge_fan_speed_3 = 100 +bridge_settings_enabled = True +bridge_skin_density = 95.0 +bridge_skin_density_2 = 85 +bridge_skin_density_3 = 100 +bridge_skin_speed_2 = 37.5 +bridge_wall_min_length = 2.0 +carve_multiple_volumes = True +coasting_enable = True +cool_fan_full_at_height = 0.6 +cool_fan_speed_min = 100 +cool_min_layer_time = 6.0 +cool_min_speed = 5 +expand_skins_expand_distance = 0.8 +infill_line_distance = =0 if infill_sparse_density == 0 else (infill_line_width * 100) / infill_sparse_density * (2 if infill_pattern == 'grid' else (3 if infill_pattern == 'triangles' or infill_pattern == 'trihexagon' or infill_pattern == 'cubic' or infill_pattern == 'cubicsubdiv' else (2 if infill_pattern == 'tetrahedral' or infill_pattern == 'quarter_cubic' else (1 if infill_pattern == 'cross' or infill_pattern == 'cross_3d' else (1.6 if infill_pattern == 'lightning' else 1))))) +infill_overlap = 2 +infill_pattern = grid +infill_sparse_density = 15 +infill_sparse_thickness = 0.4 +infill_wall_line_count = 1 +infill_wipe_dist = 0.2 +initial_layer_line_width_factor = 100 +jerk_enabled = False +layer_height_0 = 0.25 +line_width = =machine_nozzle_size +machine_nozzle_id = Steel 0.4mm +machine_nozzle_size = 0.4 +material_bed_temperature = 50 +material_bed_temperature_layer_0 = 80 +material_final_print_temperature = =max(-273.15, material_print_temperature - 15) +material_flow_layer_0 = 95 +material_initial_print_temperature = =max(-273.15, material_print_temperature - 10) +meshfix_maximum_deviation = 0.025 +meshfix_maximum_resolution = 1.5 +meshfix_maximum_travel_resolution = 0.5 +minimum_polygon_circumference = 0.4 +multiple_mesh_overlap = 0.15 +retract_at_layer_change = True +retraction_combing = noskin +retraction_combing_max_distance = 5.0 +retraction_count_max = 25 +retraction_extrusion_window = 1 +retraction_hop = 0.0 +retraction_hop_enabled = True +roofing_layer_count = 1 +roofing_line_width = 0.3 +roofing_material_flow = 95 +skin_edge_support_thickness = 0.0 +skin_monotonic = True +skin_no_small_gaps_heuristic = False +skin_outline_count = 2 +skin_overlap = 5 +skin_preshrink = 0.8 +skirt_brim_speed = 35 +skirt_gap = 2.0 +skirt_line_count = 2 +small_feature_speed_factor = 75 +small_feature_speed_factor_0 = 35 +small_hole_max_size = 4.0 +speed_infill = 60 +speed_layer_0 = 14 +speed_slowdown_layers = 4 +speed_support = 100 +speed_travel = 180 +speed_travel_layer_0 = 27 +support_angle = 65 +support_enable = False +support_fan_enable = True +support_infill_rate = 15 +support_pattern = zigzag +support_structure = tree +support_type = buildplate +support_xy_distance = 1.5 +support_xy_overrides_z = xy_overrides_z +top_bottom_thickness = 0.8 +top_thickness = 0.8 +travel_avoid_distance = 3 +travel_avoid_supports = True +wall_line_count = 2 +wall_thickness = =line_width * 2 +z_seam_corner = z_seam_corner_inner +zig_zaggify_infill = False + 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 new file mode 100644 index 0000000000..e79dcfdcd0 --- /dev/null +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = dagoma_pro_430_bowden +name = Steel 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +adhesion_type = none +infill_before_walls = False +line_width = 0.7 +machine_nozzle_id = Steel 0.8mm +machine_nozzle_size = 0.8 +speed_print = 50 + 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 new file mode 100644 index 0000000000..4856377ec5 --- /dev/null +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Brass 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +adhesion_type = none +infill_before_walls = False +machine_nozzle_id = Brass 0.4mm +machine_nozzle_size = 0.4 +retraction_speed = 10 + 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 new file mode 100644 index 0000000000..dbc7c0e8ef --- /dev/null +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Brass 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_id = Brass 0.8mm +machine_nozzle_size = 0.8 + 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 new file mode 100644 index 0000000000..692c4f25cd --- /dev/null +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Brass 1.0mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_id = Brass 1.0mm +machine_nozzle_size = 1.0 + 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 new file mode 100644 index 0000000000..46bf6148c4 --- /dev/null +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Steel 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_id = Steel 0.4mm +machine_nozzle_size = 0.4 + 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 new file mode 100644 index 0000000000..4bcdd1cb58 --- /dev/null +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dagoma_pro_430_directdrive +name = Steel 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_id = Steel 0.8mm +machine_nozzle_size = 0.8 + 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 new file mode 100644 index 0000000000..0a15ae8316 --- /dev/null +++ b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dagoma_pro_430_dual +name = Brass 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_id = Brass 0.4mm +machine_nozzle_size = 0.4 + 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 new file mode 100644 index 0000000000..f090565c4c --- /dev/null +++ b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dagoma_pro_430_dual +name = Brass 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_id = Brass 0.8mm +machine_nozzle_size = 0.8 + 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 new file mode 100644 index 0000000000..a15400a6db --- /dev/null +++ b/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dagoma_pro_430_dual +name = Brass 1.0mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_id = Brass 1.0mm +machine_nozzle_size = 1.0 + 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 new file mode 100644 index 0000000000..4b0b6853f2 --- /dev/null +++ b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dagoma_pro_430_dual +name = Steel 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_id = Steel 0.4mm +machine_nozzle_size = 0.4 + 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 new file mode 100644 index 0000000000..12e4881d48 --- /dev/null +++ b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dagoma_pro_430_dual +name = Steel 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_id = Steel 0.8mm +machine_nozzle_size = 0.8 + diff --git a/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg new file mode 100644 index 0000000000..4008817b37 --- /dev/null +++ b/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg @@ -0,0 +1,76 @@ +[general] +definition = dagoma_sigma +name = 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +acceleration_enabled = True +acceleration_infill = 3000 +acceleration_print = 1500 +acceleration_travel = 1500 +acceleration_travel_layer_0 = 2000 +acceleration_wall_0 = 850 +acceleration_wall_x = 1600 +bridge_fan_speed_2 = 100.0 +bridge_fan_speed_3 = 100.0 +bridge_settings_enabled = True +bridge_skin_density = 95.0 +bridge_skin_density_2 = 85.0 +bridge_skin_density_3 = 95.0 +bridge_wall_min_length = 2.0 +bridge_wall_speed = 25.0 +carve_multiple_volumes = True +coasting_enable = True +cool_fan_full_at_height = 0.6 +cool_min_layer_time = 6.0 +cool_min_speed = 5.0 +infill_overlap = 2.0 +infill_sparse_density = 15 +infill_sparse_thickness = 0.4 +infill_wall_line_count = 1 +layer_height_0 = 0.25 +line_width = 0.4 +machine_nozzle_id = 0.4mm +machine_nozzle_size = 0.4 +retract_at_layer_change = True +retraction_combing = noskin +retraction_combing_max_distance = 5.0 +retraction_count_max = 25 +retraction_extrusion_window = 1.0 +retraction_hop = 0.0 +retraction_hop_enabled = True +retraction_speed = 45 +roofing_layer_count = 1 +roofing_line_width = 0.3 +roofing_material_flow = 95 +roofing_monotonic = True +skin_outline_count = 2 +skirt_gap = 2.0 +small_hole_max_size = 4.0 +speed_infill = 60 +speed_layer_0 = 14 +speed_travel = 140 +speed_travel_layer_0 = 27 +support_angle = 50.0 +support_fan_enable = True +support_infill_rate = =15 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 15 +support_infill_sparse_thickness = =resolveOrValue('layer_height') +support_interface_enable = False +support_interface_height = 1.0 +support_interface_pattern = zigzag +support_structure = tree +support_top_distance = 0.1 +support_type = buildplate +support_xy_distance = 1.5 +support_xy_distance_overhang = =machine_nozzle_size / 2 +support_z_distance = 0.2 +top_bottom_thickness = 0.8 +top_thickness = 0.8 +travel_avoid_distance = 3.0 +travel_avoid_supports = True + diff --git a/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg new file mode 100644 index 0000000000..ea1c867366 --- /dev/null +++ b/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg @@ -0,0 +1,31 @@ +[general] +definition = dagoma_sigma +name = 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +gradual_infill_steps = 0 +infill_before_walls = False +infill_pattern = grid +infill_sparse_density = 10 +inset_direction = inside_out +line_width = 0.7 +machine_nozzle_id = 0.8mm +machine_nozzle_size = 0.8 +roofing_layer_count = 1 +speed_infill = 35 +speed_print = 40 +speed_roofing = 27.5 +speed_topbottom = 27.5 +speed_wall_0 = 20 +speed_wall_x = 25 +top_bottom_thickness = 0.8 +top_layers = 4 +wall_line_count = 2 +z_seam_corner = z_seam_corner_none + diff --git a/resources/variants/dagoma_pro_430_bowden_steel_0.4.inst.cfg b/resources/variants/dagoma_pro_430_bowden_steel_0.4.inst.cfg deleted file mode 100644 index 02526a6755..0000000000 --- a/resources/variants/dagoma_pro_430_bowden_steel_0.4.inst.cfg +++ /dev/null @@ -1,15 +0,0 @@ -[general] -name = 0.4 -version = 4 -definition = dagoma_pro_430_bowden - -[metadata] -setting_version = 20 -type = variant -hardware_type = nozzle - -[values] -machine_nozzle_id = 0.4 -machine_nozzle_size = 0.4 -machine_nozzle_head_distance = 5 -machine_nozzle_tip_outer_diameter = 1 diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg index b75ad52b10..291d9cc555 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = deltacomb_dc20 name = FBE 0.25mm version = 4 -definition = deltacomb_dc20 [metadata] author = Deltacomb 3D -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.25 \ No newline at end of file +machine_nozzle_size = 0.25 + diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg index d88743c080..a8c5aed70b 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = deltacomb_dc20 name = FBE 0.40mm version = 4 -definition = deltacomb_dc20 [metadata] author = Deltacomb 3D -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.40 + diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg index 40ece32f1e..73ecc333b3 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = deltacomb_dc20 name = FBE 0.60mm version = 4 -definition = deltacomb_dc20 [metadata] author = Deltacomb 3D -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.60 + diff --git a/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg index 1cfb3494b9..af9f1010d8 100755 --- a/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc20 name = V-FBE 0.80mm version = 4 -definition = deltacomb_dc20 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.80 + diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg index 6c2870b1bb..9653ed674c 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc20dual name = DBE 0.25mm version = 4 -definition = deltacomb_dc20dual [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.25 \ No newline at end of file +machine_nozzle_size = 0.25 + diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg index 1cdfd55660..0afd0643d8 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc20dual name = DBE 0.40mm version = 4 -definition = deltacomb_dc20dual [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.40 + diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg index 8b87aedc4e..b7648046f7 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc20dual name = DBE 0.60mm version = 4 -definition = deltacomb_dc20dual [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.60 + diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg index 555a9aedfc..524758ad65 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc20dual name = V-DBE 0.80mm version = 4 -definition = deltacomb_dc20dual [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.80 + diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg index f47b3f17eb..e93cfb33d0 100755 --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc20flux name = FBE 0.25mm version = 4 -definition = deltacomb_dc20flux [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.25 \ No newline at end of file +machine_nozzle_size = 0.25 + diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg index 2e11b932df..099be9cc5e 100755 --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc20flux name = FBE 0.40mm version = 4 -definition = deltacomb_dc20flux [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.40 + diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg index 5c0d503c8a..34eb1f7b2a 100755 --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc20flux name = FBE 0.60mm version = 4 -definition = deltacomb_dc20flux [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.60 + diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg index 581aafcbb3..6bc0485807 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc21 name = FBE 0.25mm version = 4 -definition = deltacomb_dc21 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.25 \ No newline at end of file +machine_nozzle_size = 0.25 + diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg index f333040c7b..6d057424c7 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc21 name = FBE 0.40mm version = 4 -definition = deltacomb_dc21 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.40 + diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg index 38c952e849..0c6221f45d 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc21 name = FBE 0.60mm version = 4 -definition = deltacomb_dc21 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.60 + diff --git a/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg index 81d767255a..0edb30443a 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc21 name = V-FBE 0.80mm version = 4 -definition = deltacomb_dc21 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.80 + diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg index 37b6ff31f5..98cadeed24 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc21dual name = DBE 0.25mm version = 4 -definition = deltacomb_dc21dual [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.25 \ No newline at end of file +machine_nozzle_size = 0.25 + diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg index 1d756493e5..0bec048c02 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc21dual name = DBE 0.40mm version = 4 -definition = deltacomb_dc21dual [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.40 + diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg index 6d00051e27..73dfd41134 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc21dual name = DBE 0.60mm version = 4 -definition = deltacomb_dc21dual [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.60 + diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg index cc504aa483..cf7a19bc71 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc21dual name = V-DBE 0.80mm version = 4 -definition = deltacomb_dc21dual [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.80 + diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg index 5144bbf58d..aab69dd988 100755 --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc21flux name = FBE 0.25mm version = 4 -definition = deltacomb_dc21flux [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.25 \ No newline at end of file +machine_nozzle_size = 0.25 + diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg index 5a7503e644..72e267f34f 100755 --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc21flux name = FBE 0.40mm version = 4 -definition = deltacomb_dc21flux [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.40 + diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg index f2ca2354cf..7a3ffa4745 100755 --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc21flux name = FBE 0.60mm version = 4 -definition = deltacomb_dc21flux [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.60 + diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg index 7f219c369c..e05a8e4e2d 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc30 name = FBE 0.25mm version = 4 -definition = deltacomb_dc30 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.25 \ No newline at end of file +machine_nozzle_size = 0.25 + diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg index 22983b8683..3fa9cdc970 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc30 name = FBE 0.40mm version = 4 -definition = deltacomb_dc30 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.40 + diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg index 35d01906ca..8ffd17d733 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc30 name = FBE 0.60mm version = 4 -definition = deltacomb_dc30 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.60 + diff --git a/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg index ade1758215..7c2ebcfe70 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc30 name = V-FBE 0.80mm version = 4 -definition = deltacomb_dc30 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.80 + diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg index a02da6204f..80a83e0d6b 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc30dual name = DBE 0.25mm version = 4 -definition = deltacomb_dc30dual [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.25 \ No newline at end of file +machine_nozzle_size = 0.25 + diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg index 8200cc9dc7..3cdcb1927c 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc30dual name = DBE 0.40mm version = 4 -definition = deltacomb_dc30dual [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.40 + diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg index c316e97457..63fb310681 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc30dual name = DBE 0.60mm version = 4 -definition = deltacomb_dc30dual [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.60 + diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg index b505a16540..56de1f467a 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc30dual name = V-DBE 0.80mm version = 4 -definition = deltacomb_dc30dual [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.80 + diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg index bbdac73540..809cd48e85 100755 --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc30flux name = FBE 0.25mm version = 4 -definition = deltacomb_dc30flux [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.25 \ No newline at end of file +machine_nozzle_size = 0.25 + diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg index 40c1d6def7..410b162d1d 100755 --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc30flux name = FBE 0.40mm version = 4 -definition = deltacomb_dc30flux [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.40 + diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg index 6f946e8ff3..cb7adbdefc 100755 --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = deltacomb_dc30flux name = FBE 0.60mm version = 4 -definition = deltacomb_dc30flux [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.60 + diff --git a/resources/variants/diy220_0.2.inst.cfg b/resources/variants/diy/diy220_0.2.inst.cfg similarity index 87% rename from resources/variants/diy220_0.2.inst.cfg rename to resources/variants/diy/diy220_0.2.inst.cfg index 69db2f722d..c427394af9 100644 --- a/resources/variants/diy220_0.2.inst.cfg +++ b/resources/variants/diy/diy220_0.2.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = diy220 name = 0.2 mm Nozzle version = 4 -definition = diy220 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/diy220_0.3.inst.cfg b/resources/variants/diy/diy220_0.3.inst.cfg similarity index 87% rename from resources/variants/diy220_0.3.inst.cfg rename to resources/variants/diy/diy220_0.3.inst.cfg index 5184a4417b..0b59336572 100644 --- a/resources/variants/diy220_0.3.inst.cfg +++ b/resources/variants/diy/diy220_0.3.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = diy220 name = 0.3 mm Nozzle version = 4 -definition = diy220 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/diy220_0.4.inst.cfg b/resources/variants/diy/diy220_0.4.inst.cfg similarity index 87% rename from resources/variants/diy220_0.4.inst.cfg rename to resources/variants/diy/diy220_0.4.inst.cfg index fe504fca23..9579c201e5 100644 --- a/resources/variants/diy220_0.4.inst.cfg +++ b/resources/variants/diy/diy220_0.4.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = diy220 name = 0.4 mm Nozzle version = 4 -definition = diy220 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/diy220_0.5.inst.cfg b/resources/variants/diy/diy220_0.5.inst.cfg similarity index 87% rename from resources/variants/diy220_0.5.inst.cfg rename to resources/variants/diy/diy220_0.5.inst.cfg index 9f8b73c599..d04fd167e2 100644 --- a/resources/variants/diy220_0.5.inst.cfg +++ b/resources/variants/diy/diy220_0.5.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = diy220 name = 0.5 mm Nozzle version = 4 -definition = diy220 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/diy220_0.6.inst.cfg b/resources/variants/diy/diy220_0.6.inst.cfg similarity index 87% rename from resources/variants/diy220_0.6.inst.cfg rename to resources/variants/diy/diy220_0.6.inst.cfg index 821f193b6f..519b04d186 100644 --- a/resources/variants/diy220_0.6.inst.cfg +++ b/resources/variants/diy/diy220_0.6.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = diy220 name = 0.6 mm Nozzle version = 4 -definition = diy220 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/diy220_0.8.inst.cfg b/resources/variants/diy/diy220_0.8.inst.cfg similarity index 87% rename from resources/variants/diy220_0.8.inst.cfg rename to resources/variants/diy/diy220_0.8.inst.cfg index 938ae71723..b27a536efb 100644 --- a/resources/variants/diy220_0.8.inst.cfg +++ b/resources/variants/diy/diy220_0.8.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = diy220 name = 0.8 mm Nozzle version = 4 -definition = diy220 [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/dxu_0.25.inst.cfg b/resources/variants/dxu/dxu_0.25.inst.cfg similarity index 69% rename from resources/variants/dxu_0.25.inst.cfg rename to resources/variants/dxu/dxu_0.25.inst.cfg index bc2f225b27..16ee7f4e15 100644 --- a/resources/variants/dxu_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_0.25.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = dxu name = 0.25 mm version = 4 -definition = dxu [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.25 -machine_nozzle_tip_outer_diameter = 0.8 \ No newline at end of file +machine_nozzle_tip_outer_diameter = 0.8 + diff --git a/resources/variants/dxu_0.4.inst.cfg b/resources/variants/dxu/dxu_0.4.inst.cfg similarity index 68% rename from resources/variants/dxu_0.4.inst.cfg rename to resources/variants/dxu/dxu_0.4.inst.cfg index 46cd2f377e..ecf4cbf83c 100644 --- a/resources/variants/dxu_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_0.4.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = dxu name = 0.4 mm version = 4 -definition = dxu [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 -machine_nozzle_tip_outer_diameter = 1.05 \ No newline at end of file +machine_nozzle_tip_outer_diameter = 1.05 + diff --git a/resources/variants/dxu_0.6.inst.cfg b/resources/variants/dxu/dxu_0.6.inst.cfg similarity index 68% rename from resources/variants/dxu_0.6.inst.cfg rename to resources/variants/dxu/dxu_0.6.inst.cfg index d23bc8f1b6..4d04dac66b 100644 --- a/resources/variants/dxu_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_0.6.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = dxu name = 0.6 mm version = 4 -definition = dxu [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 -machine_nozzle_tip_outer_diameter = 1.25 \ No newline at end of file +machine_nozzle_tip_outer_diameter = 1.25 + diff --git a/resources/variants/dxu_0.8.inst.cfg b/resources/variants/dxu/dxu_0.8.inst.cfg similarity index 68% rename from resources/variants/dxu_0.8.inst.cfg rename to resources/variants/dxu/dxu_0.8.inst.cfg index 3585bd9c63..1a6f0f22be 100644 --- a/resources/variants/dxu_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_0.8.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = dxu name = 0.8 mm version = 4 -definition = dxu [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 -machine_nozzle_tip_outer_diameter = 1.35 \ No newline at end of file +machine_nozzle_tip_outer_diameter = 1.35 + diff --git a/resources/variants/dxu_dual_0.25.inst.cfg b/resources/variants/dxu/dxu_dual_0.25.inst.cfg similarity index 70% rename from resources/variants/dxu_dual_0.25.inst.cfg rename to resources/variants/dxu/dxu_dual_0.25.inst.cfg index 8e354c10f9..9a6516bb7b 100644 --- a/resources/variants/dxu_dual_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.25.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = dxu_dual name = 0.25 mm version = 4 -definition = dxu_dual [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.25 -machine_nozzle_tip_outer_diameter = 0.8 \ No newline at end of file +machine_nozzle_tip_outer_diameter = 0.8 + diff --git a/resources/variants/dxu_dual_0.4.inst.cfg b/resources/variants/dxu/dxu_dual_0.4.inst.cfg similarity index 69% rename from resources/variants/dxu_dual_0.4.inst.cfg rename to resources/variants/dxu/dxu_dual_0.4.inst.cfg index 7daea17a91..10daf54b52 100644 --- a/resources/variants/dxu_dual_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.4.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = dxu_dual name = 0.4 mm version = 4 -definition = dxu_dual [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 -machine_nozzle_tip_outer_diameter = 1.05 \ No newline at end of file +machine_nozzle_tip_outer_diameter = 1.05 + diff --git a/resources/variants/dxu_dual_0.6.inst.cfg b/resources/variants/dxu/dxu_dual_0.6.inst.cfg similarity index 69% rename from resources/variants/dxu_dual_0.6.inst.cfg rename to resources/variants/dxu/dxu_dual_0.6.inst.cfg index 8272da71d6..798377f3ac 100644 --- a/resources/variants/dxu_dual_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.6.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = dxu_dual name = 0.6 mm version = 4 -definition = dxu_dual [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 -machine_nozzle_tip_outer_diameter = 1.25 \ No newline at end of file +machine_nozzle_tip_outer_diameter = 1.25 + diff --git a/resources/variants/dxu_dual_0.8.inst.cfg b/resources/variants/dxu/dxu_dual_0.8.inst.cfg similarity index 69% rename from resources/variants/dxu_dual_0.8.inst.cfg rename to resources/variants/dxu/dxu_dual_0.8.inst.cfg index 63b41f92b1..a392b95292 100644 --- a/resources/variants/dxu_dual_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.8.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = dxu_dual name = 0.8 mm version = 4 -definition = dxu_dual [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 -machine_nozzle_tip_outer_diameter = 1.35 \ No newline at end of file +machine_nozzle_tip_outer_diameter = 1.35 + diff --git a/resources/variants/dxu/dxu_umo_0.25.inst.cfg b/resources/variants/dxu/dxu_umo_0.25.inst.cfg new file mode 100644 index 0000000000..2fc196bf19 --- /dev/null +++ b/resources/variants/dxu/dxu_umo_0.25.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dxu_umo +name = 0.25 mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.25 +machine_nozzle_tip_outer_diameter = 0.8 + diff --git a/resources/variants/dxu/dxu_umo_0.4.inst.cfg b/resources/variants/dxu/dxu_umo_0.4.inst.cfg new file mode 100644 index 0000000000..d98fdbcc7b --- /dev/null +++ b/resources/variants/dxu/dxu_umo_0.4.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dxu_umo +name = 0.4 mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 +machine_nozzle_tip_outer_diameter = 1.05 + diff --git a/resources/variants/dxu/dxu_umo_0.6.inst.cfg b/resources/variants/dxu/dxu_umo_0.6.inst.cfg new file mode 100644 index 0000000000..9d564db4a1 --- /dev/null +++ b/resources/variants/dxu/dxu_umo_0.6.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dxu_umo +name = 0.6 mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 +machine_nozzle_tip_outer_diameter = 1.25 + diff --git a/resources/variants/dxu/dxu_umo_0.8.inst.cfg b/resources/variants/dxu/dxu_umo_0.8.inst.cfg new file mode 100644 index 0000000000..fc66713880 --- /dev/null +++ b/resources/variants/dxu/dxu_umo_0.8.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dxu_umo +name = 0.8 mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 +machine_nozzle_tip_outer_diameter = 1.35 + diff --git a/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg new file mode 100644 index 0000000000..fc4fffcb4e --- /dev/null +++ b/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dxu_umo_dual +name = 0.25 mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.25 +machine_nozzle_tip_outer_diameter = 0.8 + diff --git a/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg new file mode 100644 index 0000000000..85f5b17d2d --- /dev/null +++ b/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dxu_umo_dual +name = 0.4 mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 +machine_nozzle_tip_outer_diameter = 1.05 + diff --git a/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg new file mode 100644 index 0000000000..5af2ac18a1 --- /dev/null +++ b/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dxu_umo_dual +name = 0.6 mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 +machine_nozzle_tip_outer_diameter = 1.25 + diff --git a/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg new file mode 100644 index 0000000000..eae270181b --- /dev/null +++ b/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dxu_umo_dual +name = 0.8 mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 +machine_nozzle_tip_outer_diameter = 1.35 + diff --git a/resources/variants/fabtotum_hyb35.inst.cfg b/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg similarity index 92% rename from resources/variants/fabtotum_hyb35.inst.cfg rename to resources/variants/fabtotum/fabtotum_hyb35.inst.cfg index 015169872b..627675315c 100644 --- a/resources/variants/fabtotum_hyb35.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg @@ -1,17 +1,18 @@ [general] +definition = fabtotum name = Hybrid 0.35 mm version = 4 -definition = fabtotum [metadata] author = FABtotum -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.35 -retraction_speed = 23 retraction_amount = 2.5 retraction_count_max = 25 retraction_min_travel = 0.1 +retraction_speed = 23 + diff --git a/resources/variants/fabtotum_lite04.inst.cfg b/resources/variants/fabtotum/fabtotum_lite04.inst.cfg similarity index 92% rename from resources/variants/fabtotum_lite04.inst.cfg rename to resources/variants/fabtotum/fabtotum_lite04.inst.cfg index f3ee555941..1367297a48 100644 --- a/resources/variants/fabtotum_lite04.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_lite04.inst.cfg @@ -1,17 +1,18 @@ [general] +definition = fabtotum name = Lite 0.4 mm version = 4 -definition = fabtotum [metadata] author = FABtotum -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 -retraction_speed = 23 retraction_amount = 2.5 retraction_count_max = 25 retraction_min_travel = 0.1 +retraction_speed = 23 + diff --git a/resources/variants/fabtotum_lite06.inst.cfg b/resources/variants/fabtotum/fabtotum_lite06.inst.cfg similarity index 92% rename from resources/variants/fabtotum_lite06.inst.cfg rename to resources/variants/fabtotum/fabtotum_lite06.inst.cfg index 02d2e8b254..57c84f42f7 100644 --- a/resources/variants/fabtotum_lite06.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_lite06.inst.cfg @@ -1,17 +1,18 @@ [general] +definition = fabtotum name = Lite 0.6 mm version = 4 -definition = fabtotum [metadata] author = FABtotum -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 -retraction_speed = 23 retraction_amount = 2.5 retraction_count_max = 25 retraction_min_travel = 0.1 +retraction_speed = 23 + diff --git a/resources/variants/fabtotum_pro02.inst.cfg b/resources/variants/fabtotum/fabtotum_pro02.inst.cfg similarity index 92% rename from resources/variants/fabtotum_pro02.inst.cfg rename to resources/variants/fabtotum/fabtotum_pro02.inst.cfg index 7f5eaeca48..6808a33586 100644 --- a/resources/variants/fabtotum_pro02.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro02.inst.cfg @@ -1,17 +1,18 @@ [general] +definition = fabtotum name = Pro 0.2 mm version = 4 -definition = fabtotum [metadata] author = FABtotum -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 -retraction_speed = 48 retraction_amount = 1.0 retraction_count_max = 50 retraction_min_travel = 0.1 +retraction_speed = 48 + diff --git a/resources/variants/fabtotum_pro04.inst.cfg b/resources/variants/fabtotum/fabtotum_pro04.inst.cfg similarity index 92% rename from resources/variants/fabtotum_pro04.inst.cfg rename to resources/variants/fabtotum/fabtotum_pro04.inst.cfg index ddce52a4c4..bab320bb9a 100644 --- a/resources/variants/fabtotum_pro04.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro04.inst.cfg @@ -1,17 +1,18 @@ [general] +definition = fabtotum name = Pro 0.4 mm version = 4 -definition = fabtotum [metadata] author = FABtotum -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 -retraction_speed = 48 retraction_amount = 1.0 retraction_count_max = 50 retraction_min_travel = 0.1 +retraction_speed = 48 + diff --git a/resources/variants/fabtotum_pro06.inst.cfg b/resources/variants/fabtotum/fabtotum_pro06.inst.cfg similarity index 92% rename from resources/variants/fabtotum_pro06.inst.cfg rename to resources/variants/fabtotum/fabtotum_pro06.inst.cfg index b24a1c2850..616f1984d4 100644 --- a/resources/variants/fabtotum_pro06.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro06.inst.cfg @@ -1,17 +1,18 @@ [general] +definition = fabtotum name = Pro 0.6 mm version = 4 -definition = fabtotum [metadata] author = FABtotum -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 -retraction_speed = 48 retraction_amount = 1.0 retraction_count_max = 50 retraction_min_travel = 0.1 +retraction_speed = 48 + diff --git a/resources/variants/fabtotum_pro08.inst.cfg b/resources/variants/fabtotum/fabtotum_pro08.inst.cfg similarity index 92% rename from resources/variants/fabtotum_pro08.inst.cfg rename to resources/variants/fabtotum/fabtotum_pro08.inst.cfg index 3374124c01..ecf117c1dd 100644 --- a/resources/variants/fabtotum_pro08.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro08.inst.cfg @@ -1,17 +1,18 @@ [general] +definition = fabtotum name = Pro 0.8 mm version = 4 -definition = fabtotum [metadata] author = FABtotum -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 -retraction_speed = 48 retraction_amount = 1.0 retraction_count_max = 50 retraction_min_travel = 0.1 +retraction_speed = 48 + diff --git a/resources/variants/farm2_ce_printhead_0.2.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg similarity index 87% rename from resources/variants/farm2_ce_printhead_0.2.inst.cfg rename to resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg index e645e873a4..b32fab27a9 100644 --- a/resources/variants/farm2_ce_printhead_0.2.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = farm2_ce name = PrintHead 0.2 mm version = 4 -definition = farm2_ce [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/farm2_ce_printhead_0.3.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg similarity index 87% rename from resources/variants/farm2_ce_printhead_0.3.inst.cfg rename to resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg index a725cea11e..dc61348f5e 100644 --- a/resources/variants/farm2_ce_printhead_0.3.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = farm2_ce name = PrintHead 0.3 mm version = 4 -definition = farm2_ce [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/farm2_ce_printhead_0.4.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg similarity index 87% rename from resources/variants/farm2_ce_printhead_0.4.inst.cfg rename to resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg index f230140459..f6317d5a6b 100644 --- a/resources/variants/farm2_ce_printhead_0.4.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = farm2_ce name = PrintHead 0.4 mm version = 4 -definition = farm2_ce [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/farm2_ce_printhead_0.5.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg similarity index 87% rename from resources/variants/farm2_ce_printhead_0.5.inst.cfg rename to resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg index 0a31e2229c..f6d668441f 100644 --- a/resources/variants/farm2_ce_printhead_0.5.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = farm2_ce name = PrintHead 0.5 mm version = 4 -definition = farm2_ce [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/farm2_printhead_0.2.inst.cfg b/resources/variants/farm2/farm2_printhead_0.2.inst.cfg similarity index 87% rename from resources/variants/farm2_printhead_0.2.inst.cfg rename to resources/variants/farm2/farm2_printhead_0.2.inst.cfg index e54d01d296..884f277d71 100644 --- a/resources/variants/farm2_printhead_0.2.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = farm2 name = PrintHead 0.2 mm version = 4 -definition = farm2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/farm2_printhead_0.3.inst.cfg b/resources/variants/farm2/farm2_printhead_0.3.inst.cfg similarity index 87% rename from resources/variants/farm2_printhead_0.3.inst.cfg rename to resources/variants/farm2/farm2_printhead_0.3.inst.cfg index e2fdf4104f..348d84f431 100644 --- a/resources/variants/farm2_printhead_0.3.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = farm2 name = PrintHead 0.3 mm version = 4 -definition = farm2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/farm2_printhead_0.4.inst.cfg b/resources/variants/farm2/farm2_printhead_0.4.inst.cfg similarity index 87% rename from resources/variants/farm2_printhead_0.4.inst.cfg rename to resources/variants/farm2/farm2_printhead_0.4.inst.cfg index 426d2f36b4..fb324a7b94 100644 --- a/resources/variants/farm2_printhead_0.4.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = farm2 name = PrintHead 0.4 mm version = 4 -definition = farm2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/farm2_printhead_0.5.inst.cfg b/resources/variants/farm2/farm2_printhead_0.5.inst.cfg similarity index 87% rename from resources/variants/farm2_printhead_0.5.inst.cfg rename to resources/variants/farm2/farm2_printhead_0.5.inst.cfg index 2536f956da..51e1998f73 100644 --- a/resources/variants/farm2_printhead_0.5.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = farm2 name = PrintHead 0.5 mm version = 4 -definition = farm2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/felixpro2_0.25.inst.cfg b/resources/variants/felix/felixpro2_0.25.inst.cfg similarity index 89% rename from resources/variants/felixpro2_0.25.inst.cfg rename to resources/variants/felix/felixpro2_0.25.inst.cfg index 796038cfa3..c29733b4b5 100644 --- a/resources/variants/felixpro2_0.25.inst.cfg +++ b/resources/variants/felix/felixpro2_0.25.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = felixpro2dual name = 0.25 mm version = 4 -definition = felixpro2dual [metadata] author = pnks -type = variant -setting_version = 20 hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.25 layer_height_0 = 0.15 +machine_nozzle_size = 0.25 + diff --git a/resources/variants/felixpro2_0.35.inst.cfg b/resources/variants/felix/felixpro2_0.35.inst.cfg similarity index 89% rename from resources/variants/felixpro2_0.35.inst.cfg rename to resources/variants/felix/felixpro2_0.35.inst.cfg index cbf8ea0347..3e63477be2 100644 --- a/resources/variants/felixpro2_0.35.inst.cfg +++ b/resources/variants/felix/felixpro2_0.35.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = felixpro2dual name = 0.35 mm version = 4 -definition = felixpro2dual [metadata] author = pnks -type = variant -setting_version = 20 hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.35 layer_height_0 = 0.2 +machine_nozzle_size = 0.35 + diff --git a/resources/variants/felixpro2_0.50.inst.cfg b/resources/variants/felix/felixpro2_0.50.inst.cfg similarity index 88% rename from resources/variants/felixpro2_0.50.inst.cfg rename to resources/variants/felix/felixpro2_0.50.inst.cfg index 1bdbcd00cf..7aa71ab40a 100644 --- a/resources/variants/felixpro2_0.50.inst.cfg +++ b/resources/variants/felix/felixpro2_0.50.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = felixpro2dual name = 0.50 mm version = 4 -definition = felixpro2dual [metadata] author = pnks -type = variant -setting_version = 20 hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/felixpro2_0.70.inst.cfg b/resources/variants/felix/felixpro2_0.70.inst.cfg similarity index 89% rename from resources/variants/felixpro2_0.70.inst.cfg rename to resources/variants/felix/felixpro2_0.70.inst.cfg index 8194f791e5..7650505cb9 100644 --- a/resources/variants/felixpro2_0.70.inst.cfg +++ b/resources/variants/felix/felixpro2_0.70.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = felixpro2dual name = 0.70 mm version = 4 -definition = felixpro2dual [metadata] author = pnks -type = variant -setting_version = 20 hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.70 layer_height_0 = 0.4 +machine_nozzle_size = 0.70 + diff --git a/resources/variants/felixtec4_0.25.inst.cfg b/resources/variants/felix/felixtec4_0.25.inst.cfg similarity index 89% rename from resources/variants/felixtec4_0.25.inst.cfg rename to resources/variants/felix/felixtec4_0.25.inst.cfg index ae1997c612..f07db13308 100644 --- a/resources/variants/felixtec4_0.25.inst.cfg +++ b/resources/variants/felix/felixtec4_0.25.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = felixtec4dual name = 0.25 mm version = 4 -definition = felixtec4dual [metadata] author = kerog777 -type = variant -setting_version = 20 hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.25 layer_height_0 = 0.15 +machine_nozzle_size = 0.25 + diff --git a/resources/variants/felixtec4_0.35.inst.cfg b/resources/variants/felix/felixtec4_0.35.inst.cfg similarity index 89% rename from resources/variants/felixtec4_0.35.inst.cfg rename to resources/variants/felix/felixtec4_0.35.inst.cfg index 1810156ad5..590a3a3664 100644 --- a/resources/variants/felixtec4_0.35.inst.cfg +++ b/resources/variants/felix/felixtec4_0.35.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = felixtec4dual name = 0.35 mm version = 4 -definition = felixtec4dual [metadata] author = kerog777 -type = variant -setting_version = 20 hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.35 layer_height_0 = 0.2 +machine_nozzle_size = 0.35 + diff --git a/resources/variants/felixtec4_0.50.inst.cfg b/resources/variants/felix/felixtec4_0.50.inst.cfg similarity index 88% rename from resources/variants/felixtec4_0.50.inst.cfg rename to resources/variants/felix/felixtec4_0.50.inst.cfg index b483a33f6a..5c75a42e06 100644 --- a/resources/variants/felixtec4_0.50.inst.cfg +++ b/resources/variants/felix/felixtec4_0.50.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = felixtec4dual name = 0.50 mm version = 4 -definition = felixtec4dual [metadata] author = kerog777 -type = variant hardware_type = nozzle -setting_version = 20 +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/felixtec4_0.70.inst.cfg b/resources/variants/felix/felixtec4_0.70.inst.cfg similarity index 89% rename from resources/variants/felixtec4_0.70.inst.cfg rename to resources/variants/felix/felixtec4_0.70.inst.cfg index fd10bcce6b..b5ff8d4884 100644 --- a/resources/variants/felixtec4_0.70.inst.cfg +++ b/resources/variants/felix/felixtec4_0.70.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = felixtec4dual name = 0.70 mm version = 4 -definition = felixtec4dual [metadata] author = kerog777 -type = variant hardware_type = nozzle -setting_version = 20 +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.70 layer_height_0 = 0.4 +machine_nozzle_size = 0.70 + diff --git a/resources/variants/flashforge_base_0.20.inst.cfg b/resources/variants/flashforge/flashforge_base_0.20.inst.cfg similarity index 87% rename from resources/variants/flashforge_base_0.20.inst.cfg rename to resources/variants/flashforge/flashforge_base_0.20.inst.cfg index 7c1c59eb50..daf917a360 100644 --- a/resources/variants/flashforge_base_0.20.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.20.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flashforge_base name = 0.2mm Nozzle version = 4 -definition = flashforge_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/flashforge_base_0.30.inst.cfg b/resources/variants/flashforge/flashforge_base_0.30.inst.cfg similarity index 87% rename from resources/variants/flashforge_base_0.30.inst.cfg rename to resources/variants/flashforge/flashforge_base_0.30.inst.cfg index 1335b98fa8..fce9cb55f4 100644 --- a/resources/variants/flashforge_base_0.30.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.30.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flashforge_base name = 0.3mm Nozzle version = 4 -definition = flashforge_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/flashforge_base_0.40.inst.cfg b/resources/variants/flashforge/flashforge_base_0.40.inst.cfg similarity index 87% rename from resources/variants/flashforge_base_0.40.inst.cfg rename to resources/variants/flashforge/flashforge_base_0.40.inst.cfg index bce90fdda7..0744c7c68e 100644 --- a/resources/variants/flashforge_base_0.40.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flashforge_base name = 0.4mm Nozzle version = 4 -definition = flashforge_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/flashforge_base_0.50.inst.cfg b/resources/variants/flashforge/flashforge_base_0.50.inst.cfg similarity index 87% rename from resources/variants/flashforge_base_0.50.inst.cfg rename to resources/variants/flashforge/flashforge_base_0.50.inst.cfg index de3c523eba..6a0f694e22 100644 --- a/resources/variants/flashforge_base_0.50.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.50.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flashforge_base name = 0.5mm Nozzle version = 4 -definition = flashforge_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/flashforge_base_0.60.inst.cfg b/resources/variants/flashforge/flashforge_base_0.60.inst.cfg similarity index 87% rename from resources/variants/flashforge_base_0.60.inst.cfg rename to resources/variants/flashforge/flashforge_base_0.60.inst.cfg index dfe978ce26..67d3fcd4c6 100644 --- a/resources/variants/flashforge_base_0.60.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.60.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flashforge_base name = 0.6mm Nozzle version = 4 -definition = flashforge_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/flashforge_dreamer_nx_0.20.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg similarity index 88% rename from resources/variants/flashforge_dreamer_nx_0.20.inst.cfg rename to resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg index 343580315b..2336dc5429 100644 --- a/resources/variants/flashforge_dreamer_nx_0.20.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flashforge_dreamer_nx name = 0.2mm Nozzle version = 4 -definition = flashforge_dreamer_nx [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/flashforge_dreamer_nx_0.30.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg similarity index 88% rename from resources/variants/flashforge_dreamer_nx_0.30.inst.cfg rename to resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg index 2103e02521..a3944902b3 100644 --- a/resources/variants/flashforge_dreamer_nx_0.30.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flashforge_dreamer_nx name = 0.3mm Nozzle version = 4 -definition = flashforge_dreamer_nx [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/flashforge_dreamer_nx_0.40.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg similarity index 88% rename from resources/variants/flashforge_dreamer_nx_0.40.inst.cfg rename to resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg index c2704a6677..b63fabe945 100644 --- a/resources/variants/flashforge_dreamer_nx_0.40.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flashforge_dreamer_nx name = 0.4mm Nozzle version = 4 -definition = flashforge_dreamer_nx [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/flashforge_dreamer_nx_0.50.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg similarity index 88% rename from resources/variants/flashforge_dreamer_nx_0.50.inst.cfg rename to resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg index 06c9ed8b52..ec81a7c2e9 100644 --- a/resources/variants/flashforge_dreamer_nx_0.50.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flashforge_dreamer_nx name = 0.5mm Nozzle version = 4 -definition = flashforge_dreamer_nx [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/flashforge_dreamer_nx_0.60.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg similarity index 88% rename from resources/variants/flashforge_dreamer_nx_0.60.inst.cfg rename to resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg index fc204e0999..53ff0d67a7 100644 --- a/resources/variants/flashforge_dreamer_nx_0.60.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flashforge_dreamer_nx name = 0.6mm Nozzle version = 4 -definition = flashforge_dreamer_nx [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/flyingbear_base_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg similarity index 87% rename from resources/variants/flyingbear_base_0.25.inst.cfg rename to resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg index 146a959185..39a0d590c9 100644 --- a/resources/variants/flyingbear_base_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flyingbear_base name = 0.25mm Nozzle version = 4 -definition = flyingbear_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.25 + diff --git a/resources/variants/flyingbear_base_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg similarity index 87% rename from resources/variants/flyingbear_base_0.30.inst.cfg rename to resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg index ef514da329..ec73fcc525 100644 --- a/resources/variants/flyingbear_base_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flyingbear_base name = 0.3mm Nozzle version = 4 -definition = flyingbear_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/flyingbear_base_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg similarity index 87% rename from resources/variants/flyingbear_base_0.40.inst.cfg rename to resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg index 47b5ee244d..16d8371149 100644 --- a/resources/variants/flyingbear_base_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flyingbear_base name = 0.4mm Nozzle version = 4 -definition = flyingbear_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/flyingbear_base_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg similarity index 87% rename from resources/variants/flyingbear_base_0.50.inst.cfg rename to resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg index 631bb0a814..cc22daaec0 100644 --- a/resources/variants/flyingbear_base_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flyingbear_base name = 0.5mm Nozzle version = 4 -definition = flyingbear_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/flyingbear_base_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg similarity index 87% rename from resources/variants/flyingbear_base_0.60.inst.cfg rename to resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg index 767324604e..03b72994c5 100644 --- a/resources/variants/flyingbear_base_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flyingbear_base name = 0.6mm Nozzle version = 4 -definition = flyingbear_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/flyingbear_base_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg similarity index 87% rename from resources/variants/flyingbear_base_0.80.inst.cfg rename to resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg index 988158e6cb..dd543e2675 100644 --- a/resources/variants/flyingbear_base_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flyingbear_base name = 0.8mm Nozzle version = 4 -definition = flyingbear_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/flyingbear_ghost_4s_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg similarity index 88% rename from resources/variants/flyingbear_ghost_4s_0.25.inst.cfg rename to resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg index d54a97ea47..5bae98edc1 100644 --- a/resources/variants/flyingbear_ghost_4s_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flyingbear_ghost_4s name = 0.25mm Nozzle version = 4 -definition = flyingbear_ghost_4s [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.25 + diff --git a/resources/variants/flyingbear_ghost_4s_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg similarity index 87% rename from resources/variants/flyingbear_ghost_4s_0.30.inst.cfg rename to resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg index 21485d8ddd..233f3eb2be 100644 --- a/resources/variants/flyingbear_ghost_4s_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flyingbear_ghost_4s name = 0.3mm Nozzle version = 4 -definition = flyingbear_ghost_4s [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/flyingbear_ghost_4s_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg similarity index 87% rename from resources/variants/flyingbear_ghost_4s_0.40.inst.cfg rename to resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg index 1d0e609dff..4c1365fbee 100644 --- a/resources/variants/flyingbear_ghost_4s_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flyingbear_ghost_4s name = 0.4mm Nozzle version = 4 -definition = flyingbear_ghost_4s [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/flyingbear_ghost_4s_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg similarity index 87% rename from resources/variants/flyingbear_ghost_4s_0.50.inst.cfg rename to resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg index dd2ddf2d0f..24739c79cc 100644 --- a/resources/variants/flyingbear_ghost_4s_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flyingbear_ghost_4s name = 0.5mm Nozzle version = 4 -definition = flyingbear_ghost_4s [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/flyingbear_ghost_4s_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg similarity index 87% rename from resources/variants/flyingbear_ghost_4s_0.60.inst.cfg rename to resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg index 5500dca618..06620b39cf 100644 --- a/resources/variants/flyingbear_ghost_4s_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flyingbear_ghost_4s name = 0.6mm Nozzle version = 4 -definition = flyingbear_ghost_4s [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/flyingbear_ghost_4s_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg similarity index 87% rename from resources/variants/flyingbear_ghost_4s_0.80.inst.cfg rename to resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg index 67bc8cb477..32fb9abcdc 100644 --- a/resources/variants/flyingbear_ghost_4s_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flyingbear_ghost_4s name = 0.8mm Nozzle version = 4 -definition = flyingbear_ghost_4s [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/flyingbear_ghost_5_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg similarity index 88% rename from resources/variants/flyingbear_ghost_5_0.25.inst.cfg rename to resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg index e5372966ef..69457b3e96 100644 --- a/resources/variants/flyingbear_ghost_5_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flyingbear_ghost_5 name = 0.25mm Nozzle version = 4 -definition = flyingbear_ghost_5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.25 + diff --git a/resources/variants/flyingbear_ghost_5_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg similarity index 87% rename from resources/variants/flyingbear_ghost_5_0.30.inst.cfg rename to resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg index 958f3b4892..9bff6523b5 100644 --- a/resources/variants/flyingbear_ghost_5_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flyingbear_ghost_5 name = 0.3mm Nozzle version = 4 -definition = flyingbear_ghost_5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/flyingbear_ghost_5_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg similarity index 87% rename from resources/variants/flyingbear_ghost_5_0.40.inst.cfg rename to resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg index d1f5dfb782..5e1bf0c0e3 100644 --- a/resources/variants/flyingbear_ghost_5_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flyingbear_ghost_5 name = 0.4mm Nozzle version = 4 -definition = flyingbear_ghost_5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/flyingbear_ghost_5_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg similarity index 87% rename from resources/variants/flyingbear_ghost_5_0.50.inst.cfg rename to resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg index abce68ca69..5dcc310b58 100644 --- a/resources/variants/flyingbear_ghost_5_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flyingbear_ghost_5 name = 0.5mm Nozzle version = 4 -definition = flyingbear_ghost_5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/flyingbear_ghost_5_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg similarity index 87% rename from resources/variants/flyingbear_ghost_5_0.60.inst.cfg rename to resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg index a53b91aa2d..97bda89193 100644 --- a/resources/variants/flyingbear_ghost_5_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flyingbear_ghost_5 name = 0.6mm Nozzle version = 4 -definition = flyingbear_ghost_5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/flyingbear_ghost_5_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg similarity index 87% rename from resources/variants/flyingbear_ghost_5_0.80.inst.cfg rename to resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg index 1d9cb29608..79e4dfcfe5 100644 --- a/resources/variants/flyingbear_ghost_5_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = flyingbear_ghost_5 name = 0.8mm Nozzle version = 4 -definition = flyingbear_ghost_5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/fusion3/fusion3_0.4.inst.cfg b/resources/variants/fusion3/fusion3_0.4.inst.cfg new file mode 100644 index 0000000000..261f26604f --- /dev/null +++ b/resources/variants/fusion3/fusion3_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = fusion3_f410 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/fusion3/fusion3_0.6.inst.cfg b/resources/variants/fusion3/fusion3_0.6.inst.cfg new file mode 100644 index 0000000000..005f95660e --- /dev/null +++ b/resources/variants/fusion3/fusion3_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = fusion3_f410 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/fusion3/fusion3_0.8.inst.cfg b/resources/variants/fusion3/fusion3_0.8.inst.cfg new file mode 100644 index 0000000000..7d0fdd0cea --- /dev/null +++ b/resources/variants/fusion3/fusion3_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = fusion3_f410 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg b/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg new file mode 100644 index 0000000000..261f26604f --- /dev/null +++ b/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = fusion3_f410 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg b/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg new file mode 100644 index 0000000000..005f95660e --- /dev/null +++ b/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = fusion3_f410 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg b/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg new file mode 100644 index 0000000000..7d0fdd0cea --- /dev/null +++ b/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = fusion3_f410 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg new file mode 100644 index 0000000000..9a9e9878e9 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_A10Pro +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg new file mode 100644 index 0000000000..2202e0a978 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_A10Pro +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg new file mode 100644 index 0000000000..fc88f40611 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_A10Pro +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg new file mode 100644 index 0000000000..698b17ef68 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_A10Pro +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg new file mode 100644 index 0000000000..65f63a11a1 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_A10Pro +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg new file mode 100644 index 0000000000..1430a9d5cb --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_A10Pro +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg new file mode 100644 index 0000000000..8c29cae1bb --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_A10Pro +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg new file mode 100644 index 0000000000..7be8d97e01 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_A20 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg new file mode 100644 index 0000000000..3201d2b9c3 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_A20 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg new file mode 100644 index 0000000000..568b11da35 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_A20 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg new file mode 100644 index 0000000000..720f7f2dce --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_A20 +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg new file mode 100644 index 0000000000..ecdddc5cbd --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_A20 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg new file mode 100644 index 0000000000..5e85dd0b29 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_A20 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg new file mode 100644 index 0000000000..fdb5b146bc --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_A20 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg new file mode 100644 index 0000000000..2f00ab9655 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_A30Pro +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg new file mode 100644 index 0000000000..c19b8e959f --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_A30Pro +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg new file mode 100644 index 0000000000..9d2ab142a9 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_A30Pro +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg new file mode 100644 index 0000000000..8ade0c96d5 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_A30Pro +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg new file mode 100644 index 0000000000..5fe235062e --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_A30Pro +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg new file mode 100644 index 0000000000..fe6e60220c --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_A30Pro +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg new file mode 100644 index 0000000000..19de98bcf7 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_A30Pro +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg new file mode 100644 index 0000000000..ee96e1c069 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_E180 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg new file mode 100644 index 0000000000..e86a3f4265 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_E180 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg new file mode 100644 index 0000000000..187ad167f9 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_E180 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg new file mode 100644 index 0000000000..73f36e97c9 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_E180 +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg new file mode 100644 index 0000000000..b685d8b0ac --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_E180 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg new file mode 100644 index 0000000000..3a961ab375 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_E180 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg new file mode 100644 index 0000000000..45e7f7b6fc --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_E180 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg new file mode 100644 index 0000000000..1500608c0f --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_GiantArmD200 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg new file mode 100644 index 0000000000..028454782f --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_GiantArmD200 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg new file mode 100644 index 0000000000..6a0384123b --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_GiantArmD200 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg new file mode 100644 index 0000000000..8beb28df6d --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_GiantArmD200 +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg new file mode 100644 index 0000000000..690db843a8 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_GiantArmD200 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg new file mode 100644 index 0000000000..5548239364 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_GiantArmD200 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg new file mode 100644 index 0000000000..64b436c163 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_GiantArmD200 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg new file mode 100644 index 0000000000..81ed9dfa9d --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_I3ProB +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg new file mode 100644 index 0000000000..c987c0d089 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_I3ProB +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg new file mode 100644 index 0000000000..24f2565020 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_I3ProB +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg new file mode 100644 index 0000000000..c6fdbe00ec --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_I3ProB +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg new file mode 100644 index 0000000000..0025650b9e --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_I3ProB +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg new file mode 100644 index 0000000000..0b85e69206 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_I3ProB +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg new file mode 100644 index 0000000000..655f01f84d --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_I3ProB +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg new file mode 100644 index 0000000000..d7f363ad54 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_I3ProW +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg new file mode 100644 index 0000000000..78e32292a9 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_I3ProW +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg new file mode 100644 index 0000000000..24b83a1403 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_I3ProW +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg new file mode 100644 index 0000000000..e2fb8c11c4 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_I3ProW +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg new file mode 100644 index 0000000000..050609fd6c --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_I3ProW +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg new file mode 100644 index 0000000000..3a95ad3e79 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_I3ProW +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg new file mode 100644 index 0000000000..c7cd51bc8d --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_I3ProW +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +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 new file mode 100644 index 0000000000..c1256d94e6 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MeCreator2 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg new file mode 100644 index 0000000000..a68a22081d --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MeCreator2 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg new file mode 100644 index 0000000000..1197b82844 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MeCreator2 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg new file mode 100644 index 0000000000..7b816051bc --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MeCreator2 +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg new file mode 100644 index 0000000000..44ac8d0d84 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MeCreator2 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg new file mode 100644 index 0000000000..b5ed03911f --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MeCreator2 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg new file mode 100644 index 0000000000..cf1b29a5db --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MeCreator2 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg new file mode 100644 index 0000000000..b615fdf956 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MeCreator +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg new file mode 100644 index 0000000000..fdcac4247c --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MeCreator +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg new file mode 100644 index 0000000000..e8a30cb72d --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MeCreator +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg new file mode 100644 index 0000000000..96e2165217 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MeCreator +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg new file mode 100644 index 0000000000..05de4f03fc --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MeCreator +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg new file mode 100644 index 0000000000..e1ca78c632 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MeCreator +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg new file mode 100644 index 0000000000..3bc4fb4791 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MeCreator +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg new file mode 100644 index 0000000000..29098cad27 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MeDucer +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg new file mode 100644 index 0000000000..14ab2423ad --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MeDucer +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg new file mode 100644 index 0000000000..ff64aaf57c --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MeDucer +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg new file mode 100644 index 0000000000..cb75505ad8 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MeDucer +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg new file mode 100644 index 0000000000..4a606afa5e --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MeDucer +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg new file mode 100644 index 0000000000..de9f4a6eac --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MeDucer +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg new file mode 100644 index 0000000000..b8d702dd92 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MeDucer +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg new file mode 100644 index 0000000000..b275807626 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MizarMax +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg new file mode 100644 index 0000000000..444cd8c49e --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MizarMax +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg new file mode 100644 index 0000000000..b12b83d69d --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MizarMax +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg new file mode 100644 index 0000000000..fd808f3a2d --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MizarMax +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg new file mode 100644 index 0000000000..304bf82ed6 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MizarMax +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg new file mode 100644 index 0000000000..e2a2d917bd --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MizarMax +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg new file mode 100644 index 0000000000..503ee47523 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MizarMax +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg new file mode 100644 index 0000000000..008949a21a --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MizarPro +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg new file mode 100644 index 0000000000..011102c56d --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MizarPro +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg new file mode 100644 index 0000000000..31b0a7b290 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MizarPro +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg new file mode 100644 index 0000000000..4cf9cdde6a --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MizarPro +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg new file mode 100644 index 0000000000..a514327da3 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MizarPro +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg new file mode 100644 index 0000000000..78e14970c6 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MizarPro +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg new file mode 100644 index 0000000000..731eebadcf --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MizarPro +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg new file mode 100644 index 0000000000..f3372f5130 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MizarS +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg new file mode 100644 index 0000000000..2c1b42a7d3 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MizarS +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg new file mode 100644 index 0000000000..f47174704d --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MizarS +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg new file mode 100644 index 0000000000..103013e221 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MizarS +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg new file mode 100644 index 0000000000..f4ba7996b6 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MizarS +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg new file mode 100644 index 0000000000..06e9293f08 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MizarS +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg new file mode 100644 index 0000000000..2f15045922 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_MizarS +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg new file mode 100644 index 0000000000..27897ba995 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_Mizar +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg new file mode 100644 index 0000000000..cbda21f3a8 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_Mizar +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg new file mode 100644 index 0000000000..7f3b37557b --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_Mizar +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg new file mode 100644 index 0000000000..7f928eb7d7 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_Mizar +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg new file mode 100644 index 0000000000..f50565bd15 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_Mizar +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg new file mode 100644 index 0000000000..7c164087d8 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_Mizar +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg new file mode 100644 index 0000000000..a4239bb42f --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_Mizar +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg new file mode 100644 index 0000000000..f28d501781 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_Thunder +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg new file mode 100644 index 0000000000..4fbb3f0926 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_Thunder +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg new file mode 100644 index 0000000000..99e2398e70 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_Thunder +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg new file mode 100644 index 0000000000..d017e391d9 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_Thunder +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg new file mode 100644 index 0000000000..670d6e9668 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_Thunder +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg new file mode 100644 index 0000000000..850ebfc9ac --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_Thunder +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg new file mode 100644 index 0000000000..009a647ab0 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_Thunder +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/gmax15plus_025_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg similarity index 89% rename from resources/variants/gmax15plus_025_e3d.inst.cfg rename to resources/variants/gmax/gmax15plus_025_e3d.inst.cfg index 3972875887..f3ffadd4ef 100644 --- a/resources/variants/gmax15plus_025_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = gmax15plus name = 0.25mm E3D (Difficult) version = 4 -definition = gmax15plus [metadata] author = gcreate -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.25 + diff --git a/resources/variants/gmax15plus_04_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg similarity index 74% rename from resources/variants/gmax15plus_04_e3d.inst.cfg rename to resources/variants/gmax/gmax15plus_04_e3d.inst.cfg index a3a7c8c0b7..3eb5c892d8 100644 --- a/resources/variants/gmax15plus_04_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = gmax15plus name = 0.4mm E3D version = 4 -definition = gmax15plus [metadata] author = gcreate -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.4 \ No newline at end of file +machine_nozzle_size = 0.4 + diff --git a/resources/variants/gmax15plus_05_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg similarity index 75% rename from resources/variants/gmax15plus_05_e3d.inst.cfg rename to resources/variants/gmax/gmax15plus_05_e3d.inst.cfg index 60ab506a4d..9a2e0b9baa 100644 --- a/resources/variants/gmax15plus_05_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = gmax15plus name = 0.5mm E3D (Default) version = 4 -definition = gmax15plus [metadata] author = gcreate -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.5 \ No newline at end of file +machine_nozzle_size = 0.5 + diff --git a/resources/variants/gmax15plus_05_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg similarity index 88% rename from resources/variants/gmax15plus_05_jhead.inst.cfg rename to resources/variants/gmax/gmax15plus_05_jhead.inst.cfg index b14d2fcb25..2aa34bdedd 100644 --- a/resources/variants/gmax15plus_05_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = gmax15plus name = 0.5mm J-Head version = 4 -definition = gmax15plus [metadata] author = gcreate -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/gmax15plus_06_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg similarity index 74% rename from resources/variants/gmax15plus_06_e3d.inst.cfg rename to resources/variants/gmax/gmax15plus_06_e3d.inst.cfg index b90263bec8..97da3458b8 100644 --- a/resources/variants/gmax15plus_06_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = gmax15plus name = 0.6mm E3D version = 4 -definition = gmax15plus [metadata] author = gcreate -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.6 \ No newline at end of file +machine_nozzle_size = 0.6 + diff --git a/resources/variants/gmax15plus_08_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg similarity index 74% rename from resources/variants/gmax15plus_08_e3d.inst.cfg rename to resources/variants/gmax/gmax15plus_08_e3d.inst.cfg index 9bdff47bef..d76fb1ab6d 100644 --- a/resources/variants/gmax15plus_08_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = gmax15plus name = 0.8mm E3D version = 4 -definition = gmax15plus [metadata] author = gcreate -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.8 \ No newline at end of file +machine_nozzle_size = 0.8 + diff --git a/resources/variants/gmax15plus_10_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg similarity index 74% rename from resources/variants/gmax15plus_10_jhead.inst.cfg rename to resources/variants/gmax/gmax15plus_10_jhead.inst.cfg index 3d63e9eb2b..10241ec4ae 100644 --- a/resources/variants/gmax15plus_10_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = gmax15plus name = 1.0mm J-Head version = 4 -definition = gmax15plus [metadata] author = gcreate -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.5 \ No newline at end of file +machine_nozzle_size = 0.5 + diff --git a/resources/variants/gmax15plus_12_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg similarity index 75% rename from resources/variants/gmax15plus_12_e3d.inst.cfg rename to resources/variants/gmax/gmax15plus_12_e3d.inst.cfg index fe0d86bcfe..75bd587aca 100644 --- a/resources/variants/gmax15plus_12_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = gmax15plus name = 1.2mm E3D Volcano version = 4 -definition = gmax15plus [metadata] author = gcreate -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 1.2 \ No newline at end of file +machine_nozzle_size = 1.2 + diff --git a/resources/variants/gmax15plus_dual_025_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg similarity index 89% rename from resources/variants/gmax15plus_dual_025_e3d.inst.cfg rename to resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg index 35a9f54a53..304dd70619 100644 --- a/resources/variants/gmax15plus_dual_025_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = gmax15plus_dual name = 0.25mm E3D (Difficult) version = 4 -definition = gmax15plus_dual [metadata] author = gcreate -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.25 + diff --git a/resources/variants/gmax15plus_dual_04_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg similarity index 75% rename from resources/variants/gmax15plus_dual_04_e3d.inst.cfg rename to resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg index 679f9d0204..ba54ecbc23 100644 --- a/resources/variants/gmax15plus_dual_04_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = gmax15plus_dual name = 0.4mm E3D version = 4 -definition = gmax15plus_dual [metadata] author = gcreate -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.4 \ No newline at end of file +machine_nozzle_size = 0.4 + diff --git a/resources/variants/gmax15plus_dual_05_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg similarity index 89% rename from resources/variants/gmax15plus_dual_05_e3d.inst.cfg rename to resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg index 8816f29f17..ec91df6fc0 100644 --- a/resources/variants/gmax15plus_dual_05_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = gmax15plus_dual name = 0.5mm E3D (Default) version = 4 -definition = gmax15plus_dual [metadata] author = gcreate -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/gmax15plus_dual_05_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg similarity index 88% rename from resources/variants/gmax15plus_dual_05_jhead.inst.cfg rename to resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg index 93de0cd4b2..7ac4be04d4 100644 --- a/resources/variants/gmax15plus_dual_05_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = gmax15plus_dual name = 0.5mm J-Head version = 4 -definition = gmax15plus_dual [metadata] author = gcreate -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/gmax15plus_dual_06_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg similarity index 88% rename from resources/variants/gmax15plus_dual_06_e3d.inst.cfg rename to resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg index fa5a9a6dfe..43f487f522 100644 --- a/resources/variants/gmax15plus_dual_06_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = gmax15plus_dual name = 0.6mm E3D version = 4 -definition = gmax15plus_dual [metadata] author = gcreate -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/gmax15plus_dual_08_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg similarity index 88% rename from resources/variants/gmax15plus_dual_08_e3d.inst.cfg rename to resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg index ac97243dbd..41c3a810cf 100644 --- a/resources/variants/gmax15plus_dual_08_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = gmax15plus_dual name = 0.8mm E3D version = 4 -definition = gmax15plus_dual [metadata] author = gcreate -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/gmax15plus_dual_10_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg similarity index 88% rename from resources/variants/gmax15plus_dual_10_jhead.inst.cfg rename to resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg index bb6bf32b20..3a9fbc00b3 100644 --- a/resources/variants/gmax15plus_dual_10_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = gmax15plus_dual name = 1.0mm J-Head version = 4 -definition = gmax15plus_dual [metadata] author = gcreate -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/goofoo_base_0.4.inst.cfg b/resources/variants/goofoo/goofoo_base_0.4.inst.cfg similarity index 87% rename from resources/variants/goofoo_base_0.4.inst.cfg rename to resources/variants/goofoo/goofoo_base_0.4.inst.cfg index 4c59dc3d1e..b37d8481fb 100644 --- a/resources/variants/goofoo_base_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_base_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_base name = 0.4mm Nozzle version = 4 -definition = goofoo_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/goofoo_cube_0.7.inst.cfg b/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg similarity index 69% rename from resources/variants/goofoo_cube_0.7.inst.cfg rename to resources/variants/goofoo/goofoo_cube_0.7.inst.cfg index 93c819d702..fa289fd3f6 100644 --- a/resources/variants/goofoo_cube_0.7.inst.cfg +++ b/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg @@ -1,12 +1,13 @@ -[general] -name = 0.7mm Nozzle -version = 4 -definition = goofoo_cube - -[metadata] -setting_version = 20 -type = variant -hardware_type = nozzle - -[values] -machine_nozzle_size = 0.7 \ No newline at end of file +[general] +definition = goofoo_cube +name = 0.7mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.7 + diff --git a/resources/variants/goofoo_e-one_0.2.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg similarity index 87% rename from resources/variants/goofoo_e-one_0.2.inst.cfg rename to resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg index ef65c52a8f..d58c829c09 100644 --- a/resources/variants/goofoo_e-one_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_e-one name = 0.2mm Nozzle version = 4 -definition = goofoo_e-one [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/goofoo_e-one_0.4.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg similarity index 87% rename from resources/variants/goofoo_e-one_0.4.inst.cfg rename to resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg index 0ffd73a95f..aeed0bafc0 100644 --- a/resources/variants/goofoo_e-one_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_e-one name = 0.4mm Nozzle version = 4 -definition = goofoo_e-one [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/goofoo_e-one_0.6.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg similarity index 87% rename from resources/variants/goofoo_e-one_0.6.inst.cfg rename to resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg index d9bbc74928..147a685eca 100644 --- a/resources/variants/goofoo_e-one_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_e-one name = 0.6mm Nozzle version = 4 -definition = goofoo_e-one [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/goofoo_e-one_0.8.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg similarity index 87% rename from resources/variants/goofoo_e-one_0.8.inst.cfg rename to resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg index eafcb9ff2f..0248637e1a 100644 --- a/resources/variants/goofoo_e-one_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_e-one name = 0.8mm Nozzle version = 4 -definition = goofoo_e-one [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/goofoo_e-one_1.0.inst.cfg b/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg similarity index 87% rename from resources/variants/goofoo_e-one_1.0.inst.cfg rename to resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg index 73ecf3e79f..70b1eebafa 100644 --- a/resources/variants/goofoo_e-one_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_e-one name = 1.0mm Nozzle version = 4 -definition = goofoo_e-one [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/goofoo_gemini_0.2.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg similarity index 87% rename from resources/variants/goofoo_gemini_0.2.inst.cfg rename to resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg index 317e6a0bdb..c73ab7ad5b 100644 --- a/resources/variants/goofoo_gemini_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_gemini name = 0.2mm Nozzle version = 4 -definition = goofoo_gemini [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/goofoo_gemini_0.4.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg similarity index 87% rename from resources/variants/goofoo_gemini_0.4.inst.cfg rename to resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg index b3f19a0d71..c68dc99c95 100644 --- a/resources/variants/goofoo_gemini_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_gemini name = 0.4mm Nozzle version = 4 -definition = goofoo_gemini [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/goofoo_gemini_0.6.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg similarity index 87% rename from resources/variants/goofoo_gemini_0.6.inst.cfg rename to resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg index 2b5295058e..2114e78b0a 100644 --- a/resources/variants/goofoo_gemini_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_gemini name = 0.6mm Nozzle version = 4 -definition = goofoo_gemini [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/goofoo_gemini_0.8.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg similarity index 87% rename from resources/variants/goofoo_gemini_0.8.inst.cfg rename to resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg index cb2c0ec001..cf72e50f95 100644 --- a/resources/variants/goofoo_gemini_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_gemini name = 0.8mm Nozzle version = 4 -definition = goofoo_gemini [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/goofoo_gemini_1.0.inst.cfg b/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg similarity index 87% rename from resources/variants/goofoo_gemini_1.0.inst.cfg rename to resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg index 70216a3d67..2ee9a5892d 100644 --- a/resources/variants/goofoo_gemini_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_gemini name = 1.0mm Nozzle version = 4 -definition = goofoo_gemini [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/goofoo_giant_0.2.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg similarity index 87% rename from resources/variants/goofoo_giant_0.2.inst.cfg rename to resources/variants/goofoo/goofoo_giant_0.2.inst.cfg index 22586f07c3..7b6bb6168b 100644 --- a/resources/variants/goofoo_giant_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_giant name = 0.2mm Nozzle version = 4 -definition = goofoo_giant [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/goofoo_giant_0.4.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg similarity index 87% rename from resources/variants/goofoo_giant_0.4.inst.cfg rename to resources/variants/goofoo/goofoo_giant_0.4.inst.cfg index 5ca8990776..646bd838d9 100644 --- a/resources/variants/goofoo_giant_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_giant name = 0.4mm Nozzle version = 4 -definition = goofoo_giant [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/goofoo_giant_0.6.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg similarity index 87% rename from resources/variants/goofoo_giant_0.6.inst.cfg rename to resources/variants/goofoo/goofoo_giant_0.6.inst.cfg index b2af4c060d..e27af8852f 100644 --- a/resources/variants/goofoo_giant_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_giant name = 0.6mm Nozzle version = 4 -definition = goofoo_giant [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/goofoo_giant_0.8.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg similarity index 87% rename from resources/variants/goofoo_giant_0.8.inst.cfg rename to resources/variants/goofoo/goofoo_giant_0.8.inst.cfg index 71dcf0e561..2668a4abf5 100644 --- a/resources/variants/goofoo_giant_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_giant name = 0.8mm Nozzle version = 4 -definition = goofoo_giant [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/goofoo_giant_1.0.inst.cfg b/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg similarity index 87% rename from resources/variants/goofoo_giant_1.0.inst.cfg rename to resources/variants/goofoo/goofoo_giant_1.0.inst.cfg index 9d1f01b212..ddd0196d45 100644 --- a/resources/variants/goofoo_giant_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_giant name = 1.0mm Nozzle version = 4 -definition = goofoo_giant [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/goofoo_max_0.2.inst.cfg b/resources/variants/goofoo/goofoo_max_0.2.inst.cfg similarity index 87% rename from resources/variants/goofoo_max_0.2.inst.cfg rename to resources/variants/goofoo/goofoo_max_0.2.inst.cfg index 58e69b3895..1f1ac3e61d 100644 --- a/resources/variants/goofoo_max_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_max name = 0.2mm Nozzle version = 4 -definition = goofoo_max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/goofoo_max_0.4.inst.cfg b/resources/variants/goofoo/goofoo_max_0.4.inst.cfg similarity index 87% rename from resources/variants/goofoo_max_0.4.inst.cfg rename to resources/variants/goofoo/goofoo_max_0.4.inst.cfg index a68ab5826b..8e9fe3bf93 100644 --- a/resources/variants/goofoo_max_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_max name = 0.4mm Nozzle version = 4 -definition = goofoo_max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/goofoo_max_0.6.inst.cfg b/resources/variants/goofoo/goofoo_max_0.6.inst.cfg similarity index 87% rename from resources/variants/goofoo_max_0.6.inst.cfg rename to resources/variants/goofoo/goofoo_max_0.6.inst.cfg index 3881d09fa9..4a8838a97b 100644 --- a/resources/variants/goofoo_max_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_max name = 0.6mm Nozzle version = 4 -definition = goofoo_max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/goofoo_max_0.8.inst.cfg b/resources/variants/goofoo/goofoo_max_0.8.inst.cfg similarity index 87% rename from resources/variants/goofoo_max_0.8.inst.cfg rename to resources/variants/goofoo/goofoo_max_0.8.inst.cfg index 79ae54e0e0..9cba9c182b 100644 --- a/resources/variants/goofoo_max_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_max name = 0.8mm Nozzle version = 4 -definition = goofoo_max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/goofoo_max_1.0.inst.cfg b/resources/variants/goofoo/goofoo_max_1.0.inst.cfg similarity index 87% rename from resources/variants/goofoo_max_1.0.inst.cfg rename to resources/variants/goofoo/goofoo_max_1.0.inst.cfg index ef4d9a6858..378879d8fc 100644 --- a/resources/variants/goofoo_max_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_max name = 1.0mm Nozzle version = 4 -definition = goofoo_max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/goofoo_mido_0.2.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg similarity index 87% rename from resources/variants/goofoo_mido_0.2.inst.cfg rename to resources/variants/goofoo/goofoo_mido_0.2.inst.cfg index d21eb223e9..cb320b755a 100644 --- a/resources/variants/goofoo_mido_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_mido name = 0.2mm Nozzle version = 4 -definition = goofoo_mido [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/goofoo_mido_0.4.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg similarity index 87% rename from resources/variants/goofoo_mido_0.4.inst.cfg rename to resources/variants/goofoo/goofoo_mido_0.4.inst.cfg index 5c35653c9c..7aa7995d5f 100644 --- a/resources/variants/goofoo_mido_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_mido name = 0.4mm Nozzle version = 4 -definition = goofoo_mido [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/goofoo_mido_0.6.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg similarity index 87% rename from resources/variants/goofoo_mido_0.6.inst.cfg rename to resources/variants/goofoo/goofoo_mido_0.6.inst.cfg index edfb3cf5eb..d4f0f0ebbc 100644 --- a/resources/variants/goofoo_mido_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_mido name = 0.6mm Nozzle version = 4 -definition = goofoo_mido [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/goofoo_mido_0.8.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg similarity index 87% rename from resources/variants/goofoo_mido_0.8.inst.cfg rename to resources/variants/goofoo/goofoo_mido_0.8.inst.cfg index c455e3cfcc..49016ad3bc 100644 --- a/resources/variants/goofoo_mido_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_mido name = 0.8mm Nozzle version = 4 -definition = goofoo_mido [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/goofoo_mido_1.0.inst.cfg b/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg similarity index 87% rename from resources/variants/goofoo_mido_1.0.inst.cfg rename to resources/variants/goofoo/goofoo_mido_1.0.inst.cfg index 4bf8f4b457..e79ef6553a 100644 --- a/resources/variants/goofoo_mido_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_mido name = 1.0mm Nozzle version = 4 -definition = goofoo_mido [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/goofoo_miniplus_0.2.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg similarity index 87% rename from resources/variants/goofoo_miniplus_0.2.inst.cfg rename to resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg index eac5e0869e..d1fbaabb38 100644 --- a/resources/variants/goofoo_miniplus_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_miniplus name = 0.2mm Nozzle version = 4 -definition = goofoo_miniplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/goofoo_miniplus_0.4.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg similarity index 87% rename from resources/variants/goofoo_miniplus_0.4.inst.cfg rename to resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg index 18f724fd4c..63f75c8f07 100644 --- a/resources/variants/goofoo_miniplus_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_miniplus name = 0.4mm Nozzle version = 4 -definition = goofoo_miniplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/goofoo_miniplus_0.6.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg similarity index 87% rename from resources/variants/goofoo_miniplus_0.6.inst.cfg rename to resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg index 91a4eabd83..d4457a95f3 100644 --- a/resources/variants/goofoo_miniplus_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_miniplus name = 0.6mm Nozzle version = 4 -definition = goofoo_miniplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/goofoo_miniplus_0.8.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg similarity index 87% rename from resources/variants/goofoo_miniplus_0.8.inst.cfg rename to resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg index dcca7505a7..8c755e45e9 100644 --- a/resources/variants/goofoo_miniplus_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_miniplus name = 0.8mm Nozzle version = 4 -definition = goofoo_miniplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/goofoo_miniplus_1.0.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg similarity index 87% rename from resources/variants/goofoo_miniplus_1.0.inst.cfg rename to resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg index 7e7dd2388f..441ca6516c 100644 --- a/resources/variants/goofoo_miniplus_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_miniplus name = 1.0mm Nozzle version = 4 -definition = goofoo_miniplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/goofoo_nova_0.2.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg similarity index 87% rename from resources/variants/goofoo_nova_0.2.inst.cfg rename to resources/variants/goofoo/goofoo_nova_0.2.inst.cfg index 367de03805..dd9bb88f48 100644 --- a/resources/variants/goofoo_nova_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_nova name = 0.2mm Nozzle version = 4 -definition = goofoo_nova [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/goofoo_nova_0.4.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg similarity index 87% rename from resources/variants/goofoo_nova_0.4.inst.cfg rename to resources/variants/goofoo/goofoo_nova_0.4.inst.cfg index e447646cba..bfee7afe9a 100644 --- a/resources/variants/goofoo_nova_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_nova name = 0.4mm Nozzle version = 4 -definition = goofoo_nova [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/goofoo_nova_0.6.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg similarity index 87% rename from resources/variants/goofoo_nova_0.6.inst.cfg rename to resources/variants/goofoo/goofoo_nova_0.6.inst.cfg index f86ab60234..1fcb914625 100644 --- a/resources/variants/goofoo_nova_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_nova name = 0.6mm Nozzle version = 4 -definition = goofoo_nova [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/goofoo_nova_0.8.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg similarity index 87% rename from resources/variants/goofoo_nova_0.8.inst.cfg rename to resources/variants/goofoo/goofoo_nova_0.8.inst.cfg index 80c399104d..71d1d2dc52 100644 --- a/resources/variants/goofoo_nova_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_nova name = 0.8mm Nozzle version = 4 -definition = goofoo_nova [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/goofoo_nova_1.0.inst.cfg b/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg similarity index 87% rename from resources/variants/goofoo_nova_1.0.inst.cfg rename to resources/variants/goofoo/goofoo_nova_1.0.inst.cfg index 10ba00c1f6..3f9c883b81 100644 --- a/resources/variants/goofoo_nova_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_nova name = 1.0mm Nozzle version = 4 -definition = goofoo_nova [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/goofoo_plus_0.2.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg similarity index 87% rename from resources/variants/goofoo_plus_0.2.inst.cfg rename to resources/variants/goofoo/goofoo_plus_0.2.inst.cfg index d497da75be..32ab5c41d4 100644 --- a/resources/variants/goofoo_plus_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_plus name = 0.2mm Nozzle version = 4 -definition = goofoo_plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/goofoo_plus_0.4.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg similarity index 87% rename from resources/variants/goofoo_plus_0.4.inst.cfg rename to resources/variants/goofoo/goofoo_plus_0.4.inst.cfg index e32c5ce175..0af036d5a3 100644 --- a/resources/variants/goofoo_plus_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_plus name = 0.4mm Nozzle version = 4 -definition = goofoo_plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/goofoo_plus_0.6.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg similarity index 87% rename from resources/variants/goofoo_plus_0.6.inst.cfg rename to resources/variants/goofoo/goofoo_plus_0.6.inst.cfg index 118cf95c64..1f1735b711 100644 --- a/resources/variants/goofoo_plus_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_plus name = 0.6mm Nozzle version = 4 -definition = goofoo_plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/goofoo_plus_0.8.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg similarity index 87% rename from resources/variants/goofoo_plus_0.8.inst.cfg rename to resources/variants/goofoo/goofoo_plus_0.8.inst.cfg index d9072ca529..c960de06d4 100644 --- a/resources/variants/goofoo_plus_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_plus name = 0.8mm Nozzle version = 4 -definition = goofoo_plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/goofoo_plus_1.0.inst.cfg b/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg similarity index 87% rename from resources/variants/goofoo_plus_1.0.inst.cfg rename to resources/variants/goofoo/goofoo_plus_1.0.inst.cfg index 3bd7a81bf8..2b1d126cb7 100644 --- a/resources/variants/goofoo_plus_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_plus name = 1.0mm Nozzle version = 4 -definition = goofoo_plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/goofoo_t-one_0.2.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg similarity index 87% rename from resources/variants/goofoo_t-one_0.2.inst.cfg rename to resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg index 07396655ce..c3ba8d4f4a 100644 --- a/resources/variants/goofoo_t-one_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_t-one name = 0.2mm Nozzle version = 4 -definition = goofoo_t-one [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/goofoo_t-one_0.4.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg similarity index 87% rename from resources/variants/goofoo_t-one_0.4.inst.cfg rename to resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg index 388ef28b56..6e18bd2358 100644 --- a/resources/variants/goofoo_t-one_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_t-one name = 0.4mm Nozzle version = 4 -definition = goofoo_t-one [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/goofoo_t-one_0.6.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg similarity index 87% rename from resources/variants/goofoo_t-one_0.6.inst.cfg rename to resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg index a36393a162..0d1414e420 100644 --- a/resources/variants/goofoo_t-one_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_t-one name = 0.6mm Nozzle version = 4 -definition = goofoo_t-one [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/goofoo_t-one_0.8.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg similarity index 87% rename from resources/variants/goofoo_t-one_0.8.inst.cfg rename to resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg index ff65276da8..2160585bf9 100644 --- a/resources/variants/goofoo_t-one_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_t-one name = 0.8mm Nozzle version = 4 -definition = goofoo_t-one [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/goofoo_t-one_1.0.inst.cfg b/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg similarity index 87% rename from resources/variants/goofoo_t-one_1.0.inst.cfg rename to resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg index c175c90049..0d03fe5d62 100644 --- a/resources/variants/goofoo_t-one_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_t-one name = 1.0mm Nozzle version = 4 -definition = goofoo_t-one [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/goofoo_tiny_0.2.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg similarity index 87% rename from resources/variants/goofoo_tiny_0.2.inst.cfg rename to resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg index a5163a5818..a72d9bb26a 100644 --- a/resources/variants/goofoo_tiny_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_tiny name = 0.2mm Nozzle version = 4 -definition = goofoo_tiny [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/goofoo_tiny_0.4.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg similarity index 87% rename from resources/variants/goofoo_tiny_0.4.inst.cfg rename to resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg index c167336cfe..9858154106 100644 --- a/resources/variants/goofoo_tiny_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_tiny name = 0.4mm Nozzle version = 4 -definition = goofoo_tiny [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/goofoo_tiny_0.6.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg similarity index 87% rename from resources/variants/goofoo_tiny_0.6.inst.cfg rename to resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg index b822932c42..a3f7b0fcf5 100644 --- a/resources/variants/goofoo_tiny_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_tiny name = 0.6mm Nozzle version = 4 -definition = goofoo_tiny [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/goofoo_tiny_0.8.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg similarity index 87% rename from resources/variants/goofoo_tiny_0.8.inst.cfg rename to resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg index 0e7d31f8cf..0036f5babd 100644 --- a/resources/variants/goofoo_tiny_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_tiny name = 0.8mm Nozzle version = 4 -definition = goofoo_tiny [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/goofoo_tiny_1.0.inst.cfg b/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg similarity index 87% rename from resources/variants/goofoo_tiny_1.0.inst.cfg rename to resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg index fe7ef15be2..2906a243ba 100644 --- a/resources/variants/goofoo_tiny_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_tiny name = 1.0mm Nozzle version = 4 -definition = goofoo_tiny [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/goofoo_tinyplus_0.2.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg similarity index 87% rename from resources/variants/goofoo_tinyplus_0.2.inst.cfg rename to resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg index aba59e5c36..d1d06fd35e 100644 --- a/resources/variants/goofoo_tinyplus_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_tinyplus name = 0.2mm Nozzle version = 4 -definition = goofoo_tinyplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/goofoo_tinyplus_0.4.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg similarity index 87% rename from resources/variants/goofoo_tinyplus_0.4.inst.cfg rename to resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg index 6d9e7b4bce..87fe1cb645 100644 --- a/resources/variants/goofoo_tinyplus_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_tinyplus name = 0.4mm Nozzle version = 4 -definition = goofoo_tinyplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/goofoo_tinyplus_0.6.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg similarity index 87% rename from resources/variants/goofoo_tinyplus_0.6.inst.cfg rename to resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg index be658ebde4..05f5c41e4d 100644 --- a/resources/variants/goofoo_tinyplus_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_tinyplus name = 0.6mm Nozzle version = 4 -definition = goofoo_tinyplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/goofoo_tinyplus_0.8.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg similarity index 87% rename from resources/variants/goofoo_tinyplus_0.8.inst.cfg rename to resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg index f635ed1bc9..ba6734bc99 100644 --- a/resources/variants/goofoo_tinyplus_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_tinyplus name = 0.8mm Nozzle version = 4 -definition = goofoo_tinyplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/goofoo_tinyplus_1.0.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg similarity index 87% rename from resources/variants/goofoo_tinyplus_1.0.inst.cfg rename to resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg index ae22524621..564189bab5 100644 --- a/resources/variants/goofoo_tinyplus_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = goofoo_tinyplus name = 1.0mm Nozzle version = 4 -definition = goofoo_tinyplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/hms434_0.4tpnozzle.inst.cfg b/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg similarity index 89% rename from resources/variants/hms434_0.4tpnozzle.inst.cfg rename to resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg index c02345a478..144b0401c0 100644 --- a/resources/variants/hms434_0.4tpnozzle.inst.cfg +++ b/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = hms434 name = 0.4mm TP extruder version = 4 -definition = hms434 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 machine_nozzle_tip_outer_diameter = 1.05 + diff --git a/resources/variants/hms434_0.8tpnozzle.inst.cfg b/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg similarity index 89% rename from resources/variants/hms434_0.8tpnozzle.inst.cfg rename to resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg index 48d632b3d0..75062afd05 100644 --- a/resources/variants/hms434_0.8tpnozzle.inst.cfg +++ b/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = hms434 name = 0.8mm TP extruder version = 4 -definition = hms434 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 1.05 + diff --git a/resources/variants/imade3d_jellybox_0.4.inst.cfg b/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg similarity index 88% rename from resources/variants/imade3d_jellybox_0.4.inst.cfg rename to resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg index 9e34ad0571..34e6780ff0 100644 --- a/resources/variants/imade3d_jellybox_0.4.inst.cfg +++ b/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = imade3d_jellybox name = 0.4 mm version = 4 -definition = imade3d_jellybox [metadata] author = IMADE3D -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/imade3d_jellybox_2_0.4.inst.cfg b/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg similarity index 88% rename from resources/variants/imade3d_jellybox_2_0.4.inst.cfg rename to resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg index b6b793d166..beb652c36c 100644 --- a/resources/variants/imade3d_jellybox_2_0.4.inst.cfg +++ b/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = imade3d_jellybox_2 name = 0.4 mm version = 4 -definition = imade3d_jellybox_2 [metadata] author = IMADE3D -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/kingroon_kp3_0.2.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg similarity index 87% rename from resources/variants/kingroon_kp3_0.2.inst.cfg rename to resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg index fc85835e19..923f826dfd 100644 --- a/resources/variants/kingroon_kp3_0.2.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = kingroon_kp3 name = 0.2mm Nozzle version = 4 -definition = kingroon_kp3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/kingroon_kp3_0.3.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg similarity index 87% rename from resources/variants/kingroon_kp3_0.3.inst.cfg rename to resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg index 41781f2877..587f9597f5 100644 --- a/resources/variants/kingroon_kp3_0.3.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = kingroon_kp3 name = 0.3mm Nozzle version = 4 -definition = kingroon_kp3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/kingroon_kp3_0.4.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg similarity index 87% rename from resources/variants/kingroon_kp3_0.4.inst.cfg rename to resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg index 06213d0879..33823a9182 100644 --- a/resources/variants/kingroon_kp3_0.4.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = kingroon_kp3 name = 0.4mm Nozzle version = 4 -definition = kingroon_kp3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/kingroon_kp3_0.5.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg similarity index 87% rename from resources/variants/kingroon_kp3_0.5.inst.cfg rename to resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg index 1c72672e93..c8eb6ccaba 100644 --- a/resources/variants/kingroon_kp3_0.5.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = kingroon_kp3 name = 0.5mm Nozzle version = 4 -definition = kingroon_kp3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/kingroon_kp3_0.6.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg similarity index 87% rename from resources/variants/kingroon_kp3_0.6.inst.cfg rename to resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg index efca763110..8babba283c 100644 --- a/resources/variants/kingroon_kp3_0.6.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = kingroon_kp3 name = 0.6mm Nozzle version = 4 -definition = kingroon_kp3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/kingroon_kp3_0.8.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg similarity index 87% rename from resources/variants/kingroon_kp3_0.8.inst.cfg rename to resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg index be4e284404..cbcef16f41 100644 --- a/resources/variants/kingroon_kp3_0.8.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = kingroon_kp3 name = 0.8mm Nozzle version = 4 -definition = kingroon_kp3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/kingroon_kp3_1.0.inst.cfg b/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg similarity index 87% rename from resources/variants/kingroon_kp3_1.0.inst.cfg rename to resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg index e092679ce4..0d5b4f0b01 100644 --- a/resources/variants/kingroon_kp3_1.0.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = kingroon_kp3 name = 1.0mm Nozzle version = 4 -definition = kingroon_kp3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/kingroon_kp3s_0.2.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg similarity index 87% rename from resources/variants/kingroon_kp3s_0.2.inst.cfg rename to resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg index e3617bfbbb..4a68bb7e11 100644 --- a/resources/variants/kingroon_kp3s_0.2.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = kingroon_kp3s name = 0.2mm Nozzle version = 4 -definition = kingroon_kp3s [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/kingroon_kp3s_0.3.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg similarity index 87% rename from resources/variants/kingroon_kp3s_0.3.inst.cfg rename to resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg index 9f05429d5d..f49df9fd33 100644 --- a/resources/variants/kingroon_kp3s_0.3.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = kingroon_kp3s name = 0.3mm Nozzle version = 4 -definition = kingroon_kp3s [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/kingroon_kp3s_0.4.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg similarity index 87% rename from resources/variants/kingroon_kp3s_0.4.inst.cfg rename to resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg index d24e661ff0..92c337beb3 100644 --- a/resources/variants/kingroon_kp3s_0.4.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = kingroon_kp3s name = 0.4mm Nozzle version = 4 -definition = kingroon_kp3s [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/kingroon_kp3s_0.5.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg similarity index 87% rename from resources/variants/kingroon_kp3s_0.5.inst.cfg rename to resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg index 43d4152897..c4b4428406 100644 --- a/resources/variants/kingroon_kp3s_0.5.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = kingroon_kp3s name = 0.5mm Nozzle version = 4 -definition = kingroon_kp3s [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/kingroon_kp3s_0.6.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg similarity index 87% rename from resources/variants/kingroon_kp3s_0.6.inst.cfg rename to resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg index d643f571c4..d52eb29e8d 100644 --- a/resources/variants/kingroon_kp3s_0.6.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = kingroon_kp3s name = 0.6mm Nozzle version = 4 -definition = kingroon_kp3s [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/kingroon_kp3s_0.8.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg similarity index 87% rename from resources/variants/kingroon_kp3s_0.8.inst.cfg rename to resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg index ec0630dc11..7907785dfb 100644 --- a/resources/variants/kingroon_kp3s_0.8.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = kingroon_kp3s name = 0.8mm Nozzle version = 4 -definition = kingroon_kp3s [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/kingroon_kp3s_1.0.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg similarity index 87% rename from resources/variants/kingroon_kp3s_1.0.inst.cfg rename to resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg index 9107daeb26..e7f24084c3 100644 --- a/resources/variants/kingroon_kp3s_1.0.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = kingroon_kp3s name = 1.0mm Nozzle version = 4 -definition = kingroon_kp3s [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/kosher220_0.2.inst.cfg b/resources/variants/kosher/kosher220_0.2.inst.cfg similarity index 87% rename from resources/variants/kosher220_0.2.inst.cfg rename to resources/variants/kosher/kosher220_0.2.inst.cfg index 04a14fa8cf..9f18ba241c 100644 --- a/resources/variants/kosher220_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_0.2.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = kosher name = 0.2 mm Nozzle version = 4 -definition = kosher [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/kosher220_0.3.inst.cfg b/resources/variants/kosher/kosher220_0.3.inst.cfg similarity index 87% rename from resources/variants/kosher220_0.3.inst.cfg rename to resources/variants/kosher/kosher220_0.3.inst.cfg index 5204a4bf82..dd2f8c5f5e 100644 --- a/resources/variants/kosher220_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_0.3.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = kosher name = 0.3 mm Nozzle version = 4 -definition = kosher [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/kosher220_0.4.inst.cfg b/resources/variants/kosher/kosher220_0.4.inst.cfg similarity index 87% rename from resources/variants/kosher220_0.4.inst.cfg rename to resources/variants/kosher/kosher220_0.4.inst.cfg index 6ff5777b17..13e50382a5 100644 --- a/resources/variants/kosher220_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_0.4.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = kosher name = 0.4 mm Nozzle version = 4 -definition = kosher [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/kosher220_0.5.inst.cfg b/resources/variants/kosher/kosher220_0.5.inst.cfg similarity index 87% rename from resources/variants/kosher220_0.5.inst.cfg rename to resources/variants/kosher/kosher220_0.5.inst.cfg index 44d8987b8c..84a205114c 100644 --- a/resources/variants/kosher220_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_0.5.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = kosher name = 0.5 mm Nozzle version = 4 -definition = kosher [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/kosher220_0.6.inst.cfg b/resources/variants/kosher/kosher220_0.6.inst.cfg similarity index 87% rename from resources/variants/kosher220_0.6.inst.cfg rename to resources/variants/kosher/kosher220_0.6.inst.cfg index 48c173755d..817cc898f4 100644 --- a/resources/variants/kosher220_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_0.6.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = kosher name = 0.6 mm Nozzle version = 4 -definition = kosher [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/kosher220_0.8.inst.cfg b/resources/variants/kosher/kosher220_0.8.inst.cfg similarity index 87% rename from resources/variants/kosher220_0.8.inst.cfg rename to resources/variants/kosher/kosher220_0.8.inst.cfg index a749100c06..fa1ba81ba0 100644 --- a/resources/variants/kosher220_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_0.8.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = kosher name = 0.8 mm Nozzle version = 4 -definition = kosher [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/kosher220_dm_0.2.inst.cfg b/resources/variants/kosher/kosher220_dm_0.2.inst.cfg similarity index 88% rename from resources/variants/kosher220_dm_0.2.inst.cfg rename to resources/variants/kosher/kosher220_dm_0.2.inst.cfg index 6f4001efcc..4e9cdb9c0e 100644 --- a/resources/variants/kosher220_dm_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.2.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = kosher_duplication name = 0.2 mm Nozzle version = 4 -definition = kosher_duplication [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/kosher220_dm_0.3.inst.cfg b/resources/variants/kosher/kosher220_dm_0.3.inst.cfg similarity index 88% rename from resources/variants/kosher220_dm_0.3.inst.cfg rename to resources/variants/kosher/kosher220_dm_0.3.inst.cfg index eb1533f78d..5d5f10e7e1 100644 --- a/resources/variants/kosher220_dm_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.3.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = kosher_duplication name = 0.3 mm Nozzle version = 4 -definition = kosher_duplication [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/kosher220_dm_0.4.inst.cfg b/resources/variants/kosher/kosher220_dm_0.4.inst.cfg similarity index 88% rename from resources/variants/kosher220_dm_0.4.inst.cfg rename to resources/variants/kosher/kosher220_dm_0.4.inst.cfg index dd3e4d9df9..91f26e2a9a 100644 --- a/resources/variants/kosher220_dm_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.4.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = kosher_duplication name = 0.4 mm Nozzle version = 4 -definition = kosher_duplication [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/kosher220_dm_0.5.inst.cfg b/resources/variants/kosher/kosher220_dm_0.5.inst.cfg similarity index 88% rename from resources/variants/kosher220_dm_0.5.inst.cfg rename to resources/variants/kosher/kosher220_dm_0.5.inst.cfg index bd32c5ca24..1d864fb7cc 100644 --- a/resources/variants/kosher220_dm_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.5.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = kosher_duplication name = 0.5 mm Nozzle version = 4 -definition = kosher_duplication [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/kosher220_dm_0.6.inst.cfg b/resources/variants/kosher/kosher220_dm_0.6.inst.cfg similarity index 88% rename from resources/variants/kosher220_dm_0.6.inst.cfg rename to resources/variants/kosher/kosher220_dm_0.6.inst.cfg index 9ce1f7e7a8..46216a8ccd 100644 --- a/resources/variants/kosher220_dm_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.6.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = kosher_duplication name = 0.6 mm Nozzle version = 4 -definition = kosher_duplication [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/kosher220_dm_0.8.inst.cfg b/resources/variants/kosher/kosher220_dm_0.8.inst.cfg similarity index 88% rename from resources/variants/kosher220_dm_0.8.inst.cfg rename to resources/variants/kosher/kosher220_dm_0.8.inst.cfg index 1731c5f910..08e3d294b2 100644 --- a/resources/variants/kosher220_dm_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.8.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = kosher_duplication name = 0.8 mm Nozzle version = 4 -definition = kosher_duplication [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/kosher220_mm_0.2.inst.cfg b/resources/variants/kosher/kosher220_mm_0.2.inst.cfg similarity index 88% rename from resources/variants/kosher220_mm_0.2.inst.cfg rename to resources/variants/kosher/kosher220_mm_0.2.inst.cfg index 48121ed983..d7e41a9984 100644 --- a/resources/variants/kosher220_mm_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.2.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = kosher_mirror name = 0.2 mm Nozzle version = 4 -definition = kosher_mirror [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/kosher220_mm_0.3.inst.cfg b/resources/variants/kosher/kosher220_mm_0.3.inst.cfg similarity index 88% rename from resources/variants/kosher220_mm_0.3.inst.cfg rename to resources/variants/kosher/kosher220_mm_0.3.inst.cfg index 1d2ae834a6..86694cc2db 100644 --- a/resources/variants/kosher220_mm_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.3.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = kosher_mirror name = 0.3 mm Nozzle version = 4 -definition = kosher_mirror [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/kosher220_mm_0.4.inst.cfg b/resources/variants/kosher/kosher220_mm_0.4.inst.cfg similarity index 88% rename from resources/variants/kosher220_mm_0.4.inst.cfg rename to resources/variants/kosher/kosher220_mm_0.4.inst.cfg index 32512bcc00..80539d1bc9 100644 --- a/resources/variants/kosher220_mm_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.4.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = kosher_mirror name = 0.4 mm Nozzle version = 4 -definition = kosher_mirror [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/kosher220_mm_0.5.inst.cfg b/resources/variants/kosher/kosher220_mm_0.5.inst.cfg similarity index 88% rename from resources/variants/kosher220_mm_0.5.inst.cfg rename to resources/variants/kosher/kosher220_mm_0.5.inst.cfg index 1e27953aad..9d6aebfda6 100644 --- a/resources/variants/kosher220_mm_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.5.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = kosher_mirror name = 0.5 mm Nozzle version = 4 -definition = kosher_mirror [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/kosher220_mm_0.6.inst.cfg b/resources/variants/kosher/kosher220_mm_0.6.inst.cfg similarity index 88% rename from resources/variants/kosher220_mm_0.6.inst.cfg rename to resources/variants/kosher/kosher220_mm_0.6.inst.cfg index 145e45cb7a..4a433c838e 100644 --- a/resources/variants/kosher220_mm_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.6.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = kosher_mirror name = 0.6 mm Nozzle version = 4 -definition = kosher_mirror [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/kosher220_mm_0.8.inst.cfg b/resources/variants/kosher/kosher220_mm_0.8.inst.cfg similarity index 88% rename from resources/variants/kosher220_mm_0.8.inst.cfg rename to resources/variants/kosher/kosher220_mm_0.8.inst.cfg index 739473260a..d452fef294 100644 --- a/resources/variants/kosher220_mm_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.8.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = kosher_mirror name = 0.8 mm Nozzle version = 4 -definition = kosher_mirror [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/kosher220_pva_0.2.inst.cfg b/resources/variants/kosher/kosher220_pva_0.2.inst.cfg similarity index 93% rename from resources/variants/kosher220_pva_0.2.inst.cfg rename to resources/variants/kosher/kosher220_pva_0.2.inst.cfg index 60c1e5e85a..e5893c3e65 100644 --- a/resources/variants/kosher220_pva_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.2.inst.cfg @@ -1,32 +1,32 @@ [general] +definition = kosher name = PVA 0.2 mm Nozzle version = 4 -definition = kosher [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +gradual_support_infill_steps = 2 machine_nozzle_size = 0.2 -support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height -support_offset = 3 +support_angle = 45 support_bottom_height = =layer_height * 2 support_bottom_pattern = zigzag support_bottom_stair_step_height = =layer_height support_infill_rate = 50 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 +support_interface_pattern = concentric support_interface_skip_height = =layer_height support_join_distance = 3 -support_xy_distance = =machine_nozzle_size / 2 -support_xy_distance_overhang = =machine_nozzle_size / 2 -support_angle = 45 +support_offset = 3 support_pattern = triangles support_use_towers = False +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0 -gradual_support_infill_steps = 2 -support_interface_density = 100 -support_interface_pattern = concentric \ No newline at end of file + diff --git a/resources/variants/kosher220_pva_0.3.inst.cfg b/resources/variants/kosher/kosher220_pva_0.3.inst.cfg similarity index 93% rename from resources/variants/kosher220_pva_0.3.inst.cfg rename to resources/variants/kosher/kosher220_pva_0.3.inst.cfg index 5e5af9f02e..e1fbeaaf69 100644 --- a/resources/variants/kosher220_pva_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.3.inst.cfg @@ -1,32 +1,32 @@ [general] +definition = kosher_duplication name = PVA 0.3 mm Nozzle version = 4 -definition = kosher_duplication [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +gradual_support_infill_steps = 2 machine_nozzle_size = 0.3 -support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height -support_offset = 3 +support_angle = 45 support_bottom_height = =layer_height * 2 support_bottom_pattern = zigzag support_bottom_stair_step_height = =layer_height support_infill_rate = 50 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 +support_interface_pattern = concentric support_interface_skip_height = =layer_height support_join_distance = 3 -support_xy_distance = =machine_nozzle_size / 2 -support_xy_distance_overhang = =machine_nozzle_size / 2 -support_angle = 45 +support_offset = 3 support_pattern = triangles support_use_towers = False +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0 -gradual_support_infill_steps = 2 -support_interface_density = 100 -support_interface_pattern = concentric \ No newline at end of file + diff --git a/resources/variants/kosher220_pva_0.4.inst.cfg b/resources/variants/kosher/kosher220_pva_0.4.inst.cfg similarity index 93% rename from resources/variants/kosher220_pva_0.4.inst.cfg rename to resources/variants/kosher/kosher220_pva_0.4.inst.cfg index dd9144df68..40de699118 100644 --- a/resources/variants/kosher220_pva_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.4.inst.cfg @@ -1,32 +1,32 @@ [general] +definition = kosher name = PVA 0.4 mm Nozzle version = 4 -definition = kosher [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +gradual_support_infill_steps = 2 machine_nozzle_size = 0.4 -support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height -support_offset = 3 +support_angle = 45 support_bottom_height = =layer_height * 2 support_bottom_pattern = zigzag support_bottom_stair_step_height = =layer_height support_infill_rate = 50 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 +support_interface_pattern = concentric support_interface_skip_height = =layer_height support_join_distance = 3 -support_xy_distance = =machine_nozzle_size / 2 -support_xy_distance_overhang = =machine_nozzle_size / 2 -support_angle = 45 +support_offset = 3 support_pattern = triangles support_use_towers = False +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0 -gradual_support_infill_steps = 2 -support_interface_density = 100 -support_interface_pattern = concentric \ No newline at end of file + diff --git a/resources/variants/kosher220_pva_0.5.inst.cfg b/resources/variants/kosher/kosher220_pva_0.5.inst.cfg similarity index 93% rename from resources/variants/kosher220_pva_0.5.inst.cfg rename to resources/variants/kosher/kosher220_pva_0.5.inst.cfg index 110742f082..2a4c88d022 100644 --- a/resources/variants/kosher220_pva_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.5.inst.cfg @@ -1,32 +1,32 @@ [general] +definition = kosher name = PVA 0.5 mm Nozzle version = 4 -definition = kosher [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +gradual_support_infill_steps = 2 machine_nozzle_size = 0.5 -support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height -support_offset = 3 +support_angle = 45 support_bottom_height = =layer_height * 2 support_bottom_pattern = zigzag support_bottom_stair_step_height = =layer_height support_infill_rate = 50 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 +support_interface_pattern = concentric support_interface_skip_height = =layer_height support_join_distance = 3 -support_xy_distance = =machine_nozzle_size / 2 -support_xy_distance_overhang = =machine_nozzle_size / 2 -support_angle = 45 +support_offset = 3 support_pattern = triangles support_use_towers = False +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0 -gradual_support_infill_steps = 2 -support_interface_density = 100 -support_interface_pattern = concentric \ No newline at end of file + diff --git a/resources/variants/kosher220_pva_0.6.inst.cfg b/resources/variants/kosher/kosher220_pva_0.6.inst.cfg similarity index 93% rename from resources/variants/kosher220_pva_0.6.inst.cfg rename to resources/variants/kosher/kosher220_pva_0.6.inst.cfg index 6909527101..a3781a00bd 100644 --- a/resources/variants/kosher220_pva_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.6.inst.cfg @@ -1,32 +1,32 @@ [general] +definition = kosher name = PVA 0.6 mm Nozzle version = 4 -definition = kosher [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +gradual_support_infill_steps = 2 machine_nozzle_size = 0.6 -support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height -support_offset = 3 +support_angle = 45 support_bottom_height = =layer_height * 2 support_bottom_pattern = zigzag support_bottom_stair_step_height = =layer_height support_infill_rate = 50 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 +support_interface_pattern = concentric support_interface_skip_height = =layer_height support_join_distance = 3 -support_xy_distance = =machine_nozzle_size / 2 -support_xy_distance_overhang = =machine_nozzle_size / 2 -support_angle = 45 +support_offset = 3 support_pattern = triangles support_use_towers = False +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0 -gradual_support_infill_steps = 2 -support_interface_density = 100 -support_interface_pattern = concentric \ No newline at end of file + diff --git a/resources/variants/kosher220_pva_0.8.inst.cfg b/resources/variants/kosher/kosher220_pva_0.8.inst.cfg similarity index 93% rename from resources/variants/kosher220_pva_0.8.inst.cfg rename to resources/variants/kosher/kosher220_pva_0.8.inst.cfg index 17482d9b26..4faf6729b6 100644 --- a/resources/variants/kosher220_pva_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.8.inst.cfg @@ -1,32 +1,32 @@ [general] +definition = kosher name = PVA 0.8 mm Nozzle version = 4 -definition = kosher [metadata] - -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +gradual_support_infill_steps = 2 machine_nozzle_size = 0.8 -support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height -support_offset = 3 +support_angle = 45 support_bottom_height = =layer_height * 2 support_bottom_pattern = zigzag support_bottom_stair_step_height = =layer_height support_infill_rate = 50 +support_infill_sparse_thickness = =(layer_height * 2) if (layer_height * 2) <= 0.75 * machine_nozzle_size else layer_height +support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 +support_interface_pattern = concentric support_interface_skip_height = =layer_height support_join_distance = 3 -support_xy_distance = =machine_nozzle_size / 2 -support_xy_distance_overhang = =machine_nozzle_size / 2 -support_angle = 45 +support_offset = 3 support_pattern = triangles support_use_towers = False +support_xy_distance = =machine_nozzle_size / 2 +support_xy_distance_overhang = =machine_nozzle_size / 2 support_z_distance = 0 -gradual_support_infill_steps = 2 -support_interface_density = 100 -support_interface_pattern = concentric \ No newline at end of file + diff --git a/resources/variants/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg similarity index 87% rename from resources/variants/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg rename to resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg index 3cfcb36511..0e498466d1 100644 --- a/resources/variants/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg +++ b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = leapfrog_bolt_pro name = Brass 0.4 version = 4 -definition = leapfrog_bolt_pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg similarity index 87% rename from resources/variants/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg rename to resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg index cd310e625d..5b6b78faae 100644 --- a/resources/variants/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg +++ b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = leapfrog_bolt_pro name = NozzleX 0.4 version = 4 -definition = leapfrog_bolt_pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/liquid_vo04.inst.cfg b/resources/variants/liquid/liquid_vo04.inst.cfg similarity index 98% rename from resources/variants/liquid_vo04.inst.cfg rename to resources/variants/liquid/liquid_vo04.inst.cfg index 3d91f31c71..b6a2166d9c 100644 --- a/resources/variants/liquid_vo04.inst.cfg +++ b/resources/variants/liquid/liquid_vo04.inst.cfg @@ -1,12 +1,12 @@ [general] +definition = liquid name = VO 0.4 version = 4 -definition = liquid [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] brim_width = 7 @@ -41,3 +41,4 @@ switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length top_bottom_thickness = 1.2 wall_thickness = 1.3 + diff --git a/resources/variants/liquid_vo06.inst.cfg b/resources/variants/liquid/liquid_vo06.inst.cfg similarity index 98% rename from resources/variants/liquid_vo06.inst.cfg rename to resources/variants/liquid/liquid_vo06.inst.cfg index 7c903f78a0..19039b3c78 100644 --- a/resources/variants/liquid_vo06.inst.cfg +++ b/resources/variants/liquid/liquid_vo06.inst.cfg @@ -1,12 +1,12 @@ [general] +definition = liquid name = VO 0.6 version = 4 -definition = liquid [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] brim_width = 7 @@ -44,3 +44,4 @@ switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length top_bottom_thickness = =layer_height * 6 wall_thickness = =line_width * 3 + diff --git a/resources/variants/liquid_vo08.inst.cfg b/resources/variants/liquid/liquid_vo08.inst.cfg similarity index 98% rename from resources/variants/liquid_vo08.inst.cfg rename to resources/variants/liquid/liquid_vo08.inst.cfg index a738c633a9..58cbea1b9d 100644 --- a/resources/variants/liquid_vo08.inst.cfg +++ b/resources/variants/liquid/liquid_vo08.inst.cfg @@ -1,12 +1,12 @@ [general] +definition = liquid name = VO 0.8 version = 4 -definition = liquid [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] acceleration_enabled = True @@ -63,3 +63,4 @@ wall_0_inset = 0 wall_line_width_0 = =wall_line_width wall_line_width_x = =wall_line_width wall_thickness = 2 + diff --git a/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg new file mode 100644 index 0000000000..0cafffacc7 --- /dev/null +++ b/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = lnl3d_d3 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg new file mode 100644 index 0000000000..146aff28db --- /dev/null +++ b/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = lnl3d_d3 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg new file mode 100644 index 0000000000..d6e273309d --- /dev/null +++ b/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = lnl3d_d3 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg new file mode 100644 index 0000000000..238c9bde55 --- /dev/null +++ b/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = lnl3d_d3 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg new file mode 100644 index 0000000000..a8f05aa01b --- /dev/null +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = lnl3d_d3_vulcan +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg new file mode 100644 index 0000000000..e7c7124d85 --- /dev/null +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = lnl3d_d3_vulcan +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg new file mode 100644 index 0000000000..aee1c069f8 --- /dev/null +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = lnl3d_d3_vulcan +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg new file mode 100644 index 0000000000..a383d94a15 --- /dev/null +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = lnl3d_d3_vulcan +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg new file mode 100644 index 0000000000..059dbe1656 --- /dev/null +++ b/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = lnl3d_d5 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg new file mode 100644 index 0000000000..d50c897d36 --- /dev/null +++ b/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = lnl3d_d5 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg new file mode 100644 index 0000000000..0d9fe1fd11 --- /dev/null +++ b/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = lnl3d_d5 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg new file mode 100644 index 0000000000..67a3cac721 --- /dev/null +++ b/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = lnl3d_d5 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg new file mode 100644 index 0000000000..c81cbbe277 --- /dev/null +++ b/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = lnl3d_d6 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg new file mode 100644 index 0000000000..cd8e2485ea --- /dev/null +++ b/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = lnl3d_d6 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg new file mode 100644 index 0000000000..7b627bd768 --- /dev/null +++ b/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = lnl3d_d6 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg new file mode 100644 index 0000000000..4345b950a5 --- /dev/null +++ b/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = lnl3d_d6 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/longer/longer_base_0.4.inst.cfg b/resources/variants/longer/longer_base_0.4.inst.cfg index c111be740c..d024b576e3 100644 --- a/resources/variants/longer/longer_base_0.4.inst.cfg +++ b/resources/variants/longer/longer_base_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = longer_base name = 0.4mm Nozzle version = 4 -definition = longer_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/longer/longer_cube2_0.4.inst.cfg b/resources/variants/longer/longer_cube2_0.4.inst.cfg index fd0a4f2c1e..6c2af6a0f3 100644 --- a/resources/variants/longer/longer_cube2_0.4.inst.cfg +++ b/resources/variants/longer/longer_cube2_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = longer_cube2 name = 0.4mm Nozzle version = 4 -definition = longer_cube2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/longer/longer_lk1_0.4.inst.cfg b/resources/variants/longer/longer_lk1_0.4.inst.cfg index 13894ba737..7743e4c9cb 100644 --- a/resources/variants/longer/longer_lk1_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = longer_lk1 name = 0.4mm Nozzle version = 4 -definition = longer_lk1 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/longer/longer_lk1plus_0.4.inst.cfg b/resources/variants/longer/longer_lk1plus_0.4.inst.cfg index e53c7afd86..b19e2fd096 100644 --- a/resources/variants/longer/longer_lk1plus_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1plus_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = longer_lk1plus name = 0.4mm Nozzle version = 4 -definition = longer_lk1plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/longer/longer_lk1pro_0.4.inst.cfg b/resources/variants/longer/longer_lk1pro_0.4.inst.cfg index 7d958ee0be..be0e81f22a 100644 --- a/resources/variants/longer/longer_lk1pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1pro_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = longer_lk1pro name = 0.4mm Nozzle version = 4 -definition = longer_lk1pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/longer/longer_lk4_0.4.inst.cfg b/resources/variants/longer/longer_lk4_0.4.inst.cfg index 3d836509b9..d5cba95d68 100644 --- a/resources/variants/longer/longer_lk4_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk4_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = longer_lk4 name = 0.4mm Nozzle version = 4 -definition = longer_lk4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/longer/longer_lk4pro_0.4.inst.cfg b/resources/variants/longer/longer_lk4pro_0.4.inst.cfg index c42799f7af..b68012fe19 100644 --- a/resources/variants/longer/longer_lk4pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk4pro_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = longer_lk4pro name = 0.4mm Nozzle version = 4 -definition = longer_lk4pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/longer/longer_lk4x_0.4.inst.cfg b/resources/variants/longer/longer_lk4x_0.4.inst.cfg new file mode 100644 index 0000000000..839df818c4 --- /dev/null +++ b/resources/variants/longer/longer_lk4x_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = longer_lk4x +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/longer/longer_lk5_0.4.inst.cfg b/resources/variants/longer/longer_lk5_0.4.inst.cfg index 746ce1f327..b34e18ae04 100644 --- a/resources/variants/longer/longer_lk5_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk5_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = longer_lk5 name = 0.4mm Nozzle version = 4 -definition = longer_lk5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/longer/longer_lk5pro_0.4.inst.cfg b/resources/variants/longer/longer_lk5pro_0.4.inst.cfg index 68680cc66d..5416c7a810 100644 --- a/resources/variants/longer/longer_lk5pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk5pro_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = longer_lk5pro name = 0.4mm Nozzle version = 4 -definition = longer_lk5pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/Mark2_for_Ultimaker2_0.25.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg similarity index 94% rename from resources/variants/Mark2_for_Ultimaker2_0.25.inst.cfg rename to resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg index 0f0bf82d43..2ce7a6d1a3 100644 --- a/resources/variants/Mark2_for_Ultimaker2_0.25.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg @@ -1,12 +1,12 @@ [general] +definition = Mark2_for_Ultimaker2 name = 0.25 mm version = 4 -definition = Mark2_for_Ultimaker2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] coasting_min_volume = 0.17 @@ -17,3 +17,4 @@ raft_airgap = 0.25 speed_topbottom = =round(speed_print / 1.5, 1) speed_wall = =round(speed_print / 1.2, 1) speed_wall_0 = =1 if speed_wall < 5 else (speed_wall - 5) + diff --git a/resources/variants/Mark2_for_Ultimaker2_0.4.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg similarity index 94% rename from resources/variants/Mark2_for_Ultimaker2_0.4.inst.cfg rename to resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg index d98e82cdeb..e7847ad492 100644 --- a/resources/variants/Mark2_for_Ultimaker2_0.4.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg @@ -1,17 +1,17 @@ [general] +definition = Mark2_for_Ultimaker2 name = 0.4 mm version = 4 -definition = Mark2_for_Ultimaker2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 machine_nozzle_tip_outer_diameter = 1.05 +speed_topbottom = =round(speed_print / 2.25, 1) speed_wall = =round(speed_print / 1.25, 1) speed_wall_0 = =max(speed_wall - 10, 1) -speed_topbottom = =round(speed_print / 2.25, 1) diff --git a/resources/variants/Mark2_for_Ultimaker2_0.6.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg similarity index 94% rename from resources/variants/Mark2_for_Ultimaker2_0.6.inst.cfg rename to resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg index fb34361080..c8631a6be3 100644 --- a/resources/variants/Mark2_for_Ultimaker2_0.6.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg @@ -1,18 +1,18 @@ [general] +definition = Mark2_for_Ultimaker2 name = 0.6 mm version = 4 -definition = Mark2_for_Ultimaker2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +coasting_volume = 1.36 machine_nozzle_size = 0.6 machine_nozzle_tip_outer_diameter = 1.25 -coasting_volume = 1.36 +speed_topbottom = =round(speed_print / 2, 1) speed_wall = =round(speed_print * 4 / 3, 1) speed_wall_0 = =1 if speed_wall < 10 else (speed_wall - 10) -speed_topbottom = =round(speed_print / 2, 1) diff --git a/resources/variants/Mark2_for_Ultimaker2_0.8.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg similarity index 94% rename from resources/variants/Mark2_for_Ultimaker2_0.8.inst.cfg rename to resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg index 6fd001b050..df41a39ab1 100644 --- a/resources/variants/Mark2_for_Ultimaker2_0.8.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg @@ -1,18 +1,18 @@ [general] +definition = Mark2_for_Ultimaker2 name = 0.8 mm version = 4 -definition = Mark2_for_Ultimaker2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +coasting_volume = 3.22 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 1.35 -coasting_volume = 3.22 +speed_topbottom = =round(speed_print / 2, 1) speed_wall = =round(speed_print * 4 / 3, 1) speed_wall_0 = =1 if speed_wall < 10 else (speed_wall - 10) -speed_topbottom = =round(speed_print / 2, 1) diff --git a/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg new file mode 100644 index 0000000000..9fedbdcd4e --- /dev/null +++ b/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_1000pro +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg new file mode 100644 index 0000000000..2f80c7df75 --- /dev/null +++ b/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_1000pro +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg new file mode 100644 index 0000000000..9a065336fd --- /dev/null +++ b/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_1000pro +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg new file mode 100644 index 0000000000..e84f7d89f9 --- /dev/null +++ b/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_1000pro +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg new file mode 100644 index 0000000000..b40a27f68c --- /dev/null +++ b/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_1000pro +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg new file mode 100644 index 0000000000..937bcb1448 --- /dev/null +++ b/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_1000pro +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg b/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg new file mode 100644 index 0000000000..f731d6d051 --- /dev/null +++ b/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_1000pro +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/mingda/mingda_4h_0.2.inst.cfg b/resources/variants/mingda/mingda_4h_0.2.inst.cfg new file mode 100644 index 0000000000..75f5d1d79c --- /dev/null +++ b/resources/variants/mingda/mingda_4h_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_4h +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/mingda/mingda_4h_0.3.inst.cfg b/resources/variants/mingda/mingda_4h_0.3.inst.cfg new file mode 100644 index 0000000000..cb4e88ff8f --- /dev/null +++ b/resources/variants/mingda/mingda_4h_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_4h +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/mingda/mingda_4h_0.4.inst.cfg b/resources/variants/mingda/mingda_4h_0.4.inst.cfg new file mode 100644 index 0000000000..5db585bfcc --- /dev/null +++ b/resources/variants/mingda/mingda_4h_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_4h +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/mingda/mingda_4h_0.5.inst.cfg b/resources/variants/mingda/mingda_4h_0.5.inst.cfg new file mode 100644 index 0000000000..2bda5e1a22 --- /dev/null +++ b/resources/variants/mingda/mingda_4h_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_4h +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/mingda/mingda_4h_0.6.inst.cfg b/resources/variants/mingda/mingda_4h_0.6.inst.cfg new file mode 100644 index 0000000000..488f88f2c9 --- /dev/null +++ b/resources/variants/mingda/mingda_4h_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_4h +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/mingda/mingda_4h_0.8.inst.cfg b/resources/variants/mingda/mingda_4h_0.8.inst.cfg new file mode 100644 index 0000000000..bc92392977 --- /dev/null +++ b/resources/variants/mingda/mingda_4h_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_4h +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/mingda/mingda_4h_1.0.inst.cfg b/resources/variants/mingda/mingda_4h_1.0.inst.cfg new file mode 100644 index 0000000000..8a7b50a044 --- /dev/null +++ b/resources/variants/mingda/mingda_4h_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_4h +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/mingda/mingda_600pro_0.2.inst.cfg b/resources/variants/mingda/mingda_600pro_0.2.inst.cfg new file mode 100644 index 0000000000..8cb6baa560 --- /dev/null +++ b/resources/variants/mingda/mingda_600pro_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_600pro +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/mingda/mingda_600pro_0.3.inst.cfg b/resources/variants/mingda/mingda_600pro_0.3.inst.cfg new file mode 100644 index 0000000000..51f9e8ab55 --- /dev/null +++ b/resources/variants/mingda/mingda_600pro_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_600pro +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/mingda/mingda_600pro_0.4.inst.cfg b/resources/variants/mingda/mingda_600pro_0.4.inst.cfg new file mode 100644 index 0000000000..0035577e85 --- /dev/null +++ b/resources/variants/mingda/mingda_600pro_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_600pro +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/mingda/mingda_600pro_0.5.inst.cfg b/resources/variants/mingda/mingda_600pro_0.5.inst.cfg new file mode 100644 index 0000000000..1041e0d20d --- /dev/null +++ b/resources/variants/mingda/mingda_600pro_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_600pro +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/mingda/mingda_600pro_0.6.inst.cfg b/resources/variants/mingda/mingda_600pro_0.6.inst.cfg new file mode 100644 index 0000000000..dbc0fd3d71 --- /dev/null +++ b/resources/variants/mingda/mingda_600pro_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_600pro +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/mingda/mingda_600pro_0.8.inst.cfg b/resources/variants/mingda/mingda_600pro_0.8.inst.cfg new file mode 100644 index 0000000000..f8c9c71fde --- /dev/null +++ b/resources/variants/mingda/mingda_600pro_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_600pro +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/mingda/mingda_600pro_1.0.inst.cfg b/resources/variants/mingda/mingda_600pro_1.0.inst.cfg new file mode 100644 index 0000000000..27b4ffee84 --- /dev/null +++ b/resources/variants/mingda/mingda_600pro_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_600pro +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/mingda/mingda_6h_0.2.inst.cfg b/resources/variants/mingda/mingda_6h_0.2.inst.cfg new file mode 100644 index 0000000000..65b78cecc3 --- /dev/null +++ b/resources/variants/mingda/mingda_6h_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_6h +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/mingda/mingda_6h_0.3.inst.cfg b/resources/variants/mingda/mingda_6h_0.3.inst.cfg new file mode 100644 index 0000000000..3e38a46e8e --- /dev/null +++ b/resources/variants/mingda/mingda_6h_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_6h +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/mingda/mingda_6h_0.4.inst.cfg b/resources/variants/mingda/mingda_6h_0.4.inst.cfg new file mode 100644 index 0000000000..cd6d2d2e86 --- /dev/null +++ b/resources/variants/mingda/mingda_6h_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_6h +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/mingda/mingda_6h_0.5.inst.cfg b/resources/variants/mingda/mingda_6h_0.5.inst.cfg new file mode 100644 index 0000000000..1c92a90edb --- /dev/null +++ b/resources/variants/mingda/mingda_6h_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_6h +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/mingda/mingda_6h_0.6.inst.cfg b/resources/variants/mingda/mingda_6h_0.6.inst.cfg new file mode 100644 index 0000000000..081b149f82 --- /dev/null +++ b/resources/variants/mingda/mingda_6h_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_6h +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/mingda/mingda_6h_0.8.inst.cfg b/resources/variants/mingda/mingda_6h_0.8.inst.cfg new file mode 100644 index 0000000000..55e19ddf14 --- /dev/null +++ b/resources/variants/mingda/mingda_6h_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_6h +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/mingda/mingda_6h_1.0.inst.cfg b/resources/variants/mingda/mingda_6h_1.0.inst.cfg new file mode 100644 index 0000000000..0767b232fb --- /dev/null +++ b/resources/variants/mingda/mingda_6h_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = mingda_6h +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/mingda_base_0.2.inst.cfg b/resources/variants/mingda/mingda_base_0.2.inst.cfg similarity index 87% rename from resources/variants/mingda_base_0.2.inst.cfg rename to resources/variants/mingda/mingda_base_0.2.inst.cfg index e2f8932413..0648b25eda 100644 --- a/resources/variants/mingda_base_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_base name = 0.2mm Nozzle version = 4 -definition = mingda_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/mingda_base_0.3.inst.cfg b/resources/variants/mingda/mingda_base_0.3.inst.cfg similarity index 87% rename from resources/variants/mingda_base_0.3.inst.cfg rename to resources/variants/mingda/mingda_base_0.3.inst.cfg index d2938f0ae6..9864095aeb 100644 --- a/resources/variants/mingda_base_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_base name = 0.3mm Nozzle version = 4 -definition = mingda_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/mingda_base_0.4.inst.cfg b/resources/variants/mingda/mingda_base_0.4.inst.cfg similarity index 87% rename from resources/variants/mingda_base_0.4.inst.cfg rename to resources/variants/mingda/mingda_base_0.4.inst.cfg index 6226c5760f..a65958f2df 100644 --- a/resources/variants/mingda_base_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_base name = 0.4mm Nozzle version = 4 -definition = mingda_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/mingda_base_0.6.inst.cfg b/resources/variants/mingda/mingda_base_0.6.inst.cfg similarity index 87% rename from resources/variants/mingda_base_0.6.inst.cfg rename to resources/variants/mingda/mingda_base_0.6.inst.cfg index 8c01b73aeb..f50df518bf 100644 --- a/resources/variants/mingda_base_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_base name = 0.6mm Nozzle version = 4 -definition = mingda_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/mingda_base_0.8.inst.cfg b/resources/variants/mingda/mingda_base_0.8.inst.cfg similarity index 87% rename from resources/variants/mingda_base_0.8.inst.cfg rename to resources/variants/mingda/mingda_base_0.8.inst.cfg index a52aa60830..360cf533c5 100644 --- a/resources/variants/mingda_base_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_base name = 0.8mm Nozzle version = 4 -definition = mingda_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/mingda_base_1.0.inst.cfg b/resources/variants/mingda/mingda_base_1.0.inst.cfg similarity index 87% rename from resources/variants/mingda_base_1.0.inst.cfg rename to resources/variants/mingda/mingda_base_1.0.inst.cfg index d7aad52822..559410315c 100644 --- a/resources/variants/mingda_base_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_base_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_base name = 1.0mm Nozzle version = 4 -definition = mingda_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/mingda_d2_0.2.inst.cfg b/resources/variants/mingda/mingda_d2_0.2.inst.cfg similarity index 87% rename from resources/variants/mingda_d2_0.2.inst.cfg rename to resources/variants/mingda/mingda_d2_0.2.inst.cfg index 6c2c3f7331..5d799a609c 100644 --- a/resources/variants/mingda_d2_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_d2 name = 0.2mm Nozzle version = 4 -definition = mingda_d2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/mingda_d2_0.3.inst.cfg b/resources/variants/mingda/mingda_d2_0.3.inst.cfg similarity index 87% rename from resources/variants/mingda_d2_0.3.inst.cfg rename to resources/variants/mingda/mingda_d2_0.3.inst.cfg index 60e3ac634c..8743b0469c 100644 --- a/resources/variants/mingda_d2_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_d2 name = 0.3mm Nozzle version = 4 -definition = mingda_d2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/mingda_d2_0.4.inst.cfg b/resources/variants/mingda/mingda_d2_0.4.inst.cfg similarity index 87% rename from resources/variants/mingda_d2_0.4.inst.cfg rename to resources/variants/mingda/mingda_d2_0.4.inst.cfg index 09f017e01f..8f4c2f1a44 100644 --- a/resources/variants/mingda_d2_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_d2 name = 0.4mm Nozzle version = 4 -definition = mingda_d2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/mingda_d2_0.5.inst.cfg b/resources/variants/mingda/mingda_d2_0.5.inst.cfg similarity index 87% rename from resources/variants/mingda_d2_0.5.inst.cfg rename to resources/variants/mingda/mingda_d2_0.5.inst.cfg index ce573d66a0..b9bb2d683a 100644 --- a/resources/variants/mingda_d2_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_d2 name = 0.5mm Nozzle version = 4 -definition = mingda_d2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/mingda_d2_0.6.inst.cfg b/resources/variants/mingda/mingda_d2_0.6.inst.cfg similarity index 87% rename from resources/variants/mingda_d2_0.6.inst.cfg rename to resources/variants/mingda/mingda_d2_0.6.inst.cfg index 4c8913b2f7..b9b009e80c 100644 --- a/resources/variants/mingda_d2_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_d2 name = 0.6mm Nozzle version = 4 -definition = mingda_d2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/mingda_d2_0.8.inst.cfg b/resources/variants/mingda/mingda_d2_0.8.inst.cfg similarity index 87% rename from resources/variants/mingda_d2_0.8.inst.cfg rename to resources/variants/mingda/mingda_d2_0.8.inst.cfg index 26ed37a326..cf92b6cd2b 100644 --- a/resources/variants/mingda_d2_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_d2 name = 0.8mm Nozzle version = 4 -definition = mingda_d2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/mingda_d2_1.0.inst.cfg b/resources/variants/mingda/mingda_d2_1.0.inst.cfg similarity index 87% rename from resources/variants/mingda_d2_1.0.inst.cfg rename to resources/variants/mingda/mingda_d2_1.0.inst.cfg index eed699b2ec..e37c306bc7 100644 --- a/resources/variants/mingda_d2_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_d2_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_d2 name = 1.0mm Nozzle version = 4 -definition = mingda_d2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/mingda_d3pro_0.2.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg similarity index 87% rename from resources/variants/mingda_d3pro_0.2.inst.cfg rename to resources/variants/mingda/mingda_d3pro_0.2.inst.cfg index d705b220c4..8e399533a3 100644 --- a/resources/variants/mingda_d3pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_d3pro name = 0.2mm Nozzle version = 4 -definition = mingda_d3pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/mingda_d3pro_0.3.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg similarity index 87% rename from resources/variants/mingda_d3pro_0.3.inst.cfg rename to resources/variants/mingda/mingda_d3pro_0.3.inst.cfg index 686edde3f0..7be7d69a37 100644 --- a/resources/variants/mingda_d3pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_d3pro name = 0.3mm Nozzle version = 4 -definition = mingda_d3pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/mingda_d3pro_0.4.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg similarity index 87% rename from resources/variants/mingda_d3pro_0.4.inst.cfg rename to resources/variants/mingda/mingda_d3pro_0.4.inst.cfg index 6b065af0f9..a4141ea0d1 100644 --- a/resources/variants/mingda_d3pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_d3pro name = 0.4mm Nozzle version = 4 -definition = mingda_d3pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/mingda_d3pro_0.5.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg similarity index 87% rename from resources/variants/mingda_d3pro_0.5.inst.cfg rename to resources/variants/mingda/mingda_d3pro_0.5.inst.cfg index b76f1449df..44fb6f5afe 100644 --- a/resources/variants/mingda_d3pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_d3pro name = 0.5mm Nozzle version = 4 -definition = mingda_d3pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/mingda_d3pro_0.6.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg similarity index 87% rename from resources/variants/mingda_d3pro_0.6.inst.cfg rename to resources/variants/mingda/mingda_d3pro_0.6.inst.cfg index 5da731d772..3e22aa033d 100644 --- a/resources/variants/mingda_d3pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_d3pro name = 0.6mm Nozzle version = 4 -definition = mingda_d3pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/mingda_d3pro_0.8.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg similarity index 87% rename from resources/variants/mingda_d3pro_0.8.inst.cfg rename to resources/variants/mingda/mingda_d3pro_0.8.inst.cfg index cab940cac2..f426af89e5 100644 --- a/resources/variants/mingda_d3pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_d3pro name = 0.8mm Nozzle version = 4 -definition = mingda_d3pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/mingda_d3pro_1.0.inst.cfg b/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg similarity index 87% rename from resources/variants/mingda_d3pro_1.0.inst.cfg rename to resources/variants/mingda/mingda_d3pro_1.0.inst.cfg index 5714d3f928..596418b7df 100644 --- a/resources/variants/mingda_d3pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_d3pro name = 1.0mm Nozzle version = 4 -definition = mingda_d3pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/mingda_d4pro_0.2.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg similarity index 87% rename from resources/variants/mingda_d4pro_0.2.inst.cfg rename to resources/variants/mingda/mingda_d4pro_0.2.inst.cfg index 7a9775cd00..b0578e5b48 100644 --- a/resources/variants/mingda_d4pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_d4pro name = 0.2mm Nozzle version = 4 -definition = mingda_d4pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/mingda_d4pro_0.3.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg similarity index 87% rename from resources/variants/mingda_d4pro_0.3.inst.cfg rename to resources/variants/mingda/mingda_d4pro_0.3.inst.cfg index b7da734477..9ae9d8878a 100644 --- a/resources/variants/mingda_d4pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_d4pro name = 0.3mm Nozzle version = 4 -definition = mingda_d4pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/mingda_d4pro_0.4.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg similarity index 87% rename from resources/variants/mingda_d4pro_0.4.inst.cfg rename to resources/variants/mingda/mingda_d4pro_0.4.inst.cfg index 83dee1ba69..8c57a7aca6 100644 --- a/resources/variants/mingda_d4pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_d4pro name = 0.4mm Nozzle version = 4 -definition = mingda_d4pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/mingda_d4pro_0.5.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg similarity index 87% rename from resources/variants/mingda_d4pro_0.5.inst.cfg rename to resources/variants/mingda/mingda_d4pro_0.5.inst.cfg index b5a0665982..4ec36f2c5d 100644 --- a/resources/variants/mingda_d4pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_d4pro name = 0.5mm Nozzle version = 4 -definition = mingda_d4pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/mingda_d4pro_0.6.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg similarity index 87% rename from resources/variants/mingda_d4pro_0.6.inst.cfg rename to resources/variants/mingda/mingda_d4pro_0.6.inst.cfg index 1c73dd34bf..934329e29b 100644 --- a/resources/variants/mingda_d4pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_d4pro name = 0.6mm Nozzle version = 4 -definition = mingda_d4pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/mingda_d4pro_0.8.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg similarity index 87% rename from resources/variants/mingda_d4pro_0.8.inst.cfg rename to resources/variants/mingda/mingda_d4pro_0.8.inst.cfg index 2d78a4e22b..492fb69ce6 100644 --- a/resources/variants/mingda_d4pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_d4pro name = 0.8mm Nozzle version = 4 -definition = mingda_d4pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/mingda_d4pro_1.0.inst.cfg b/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg similarity index 87% rename from resources/variants/mingda_d4pro_1.0.inst.cfg rename to resources/variants/mingda/mingda_d4pro_1.0.inst.cfg index 7e658b8ebb..b3cf883b0f 100644 --- a/resources/variants/mingda_d4pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_d4pro name = 1.0mm Nozzle version = 4 -definition = mingda_d4pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/mingda_magician_max_0.2.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg similarity index 87% rename from resources/variants/mingda_magician_max_0.2.inst.cfg rename to resources/variants/mingda/mingda_magician_max_0.2.inst.cfg index cfbf31d78a..4fda39ef43 100644 --- a/resources/variants/mingda_magician_max_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_magician_max name = 0.2mm Nozzle version = 4 -definition = mingda_magician_max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/mingda_magician_max_0.3.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg similarity index 87% rename from resources/variants/mingda_magician_max_0.3.inst.cfg rename to resources/variants/mingda/mingda_magician_max_0.3.inst.cfg index d53deb0962..0aeacb4707 100644 --- a/resources/variants/mingda_magician_max_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_magician_max name = 0.3mm Nozzle version = 4 -definition = mingda_magician_max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/mingda_magician_max_0.4.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg similarity index 87% rename from resources/variants/mingda_magician_max_0.4.inst.cfg rename to resources/variants/mingda/mingda_magician_max_0.4.inst.cfg index e90c783bcd..bef2a46d78 100644 --- a/resources/variants/mingda_magician_max_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_magician_max name = 0.4mm Nozzle version = 4 -definition = mingda_magician_max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/mingda_magician_max_0.5.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg similarity index 87% rename from resources/variants/mingda_magician_max_0.5.inst.cfg rename to resources/variants/mingda/mingda_magician_max_0.5.inst.cfg index 68f527e488..cf9b29ab36 100644 --- a/resources/variants/mingda_magician_max_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_magician_max name = 0.5mm Nozzle version = 4 -definition = mingda_magician_max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/mingda_magician_max_0.6.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg similarity index 87% rename from resources/variants/mingda_magician_max_0.6.inst.cfg rename to resources/variants/mingda/mingda_magician_max_0.6.inst.cfg index 4ab7fa4e09..37e46faec1 100644 --- a/resources/variants/mingda_magician_max_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_magician_max name = 0.6mm Nozzle version = 4 -definition = mingda_magician_max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/mingda_magician_max_0.8.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg similarity index 87% rename from resources/variants/mingda_magician_max_0.8.inst.cfg rename to resources/variants/mingda/mingda_magician_max_0.8.inst.cfg index c79110c981..15685a3903 100644 --- a/resources/variants/mingda_magician_max_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_magician_max name = 0.8mm Nozzle version = 4 -definition = mingda_magician_max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/mingda_magician_max_1.0.inst.cfg b/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg similarity index 87% rename from resources/variants/mingda_magician_max_1.0.inst.cfg rename to resources/variants/mingda/mingda_magician_max_1.0.inst.cfg index b436e814a5..bcd8277a49 100644 --- a/resources/variants/mingda_magician_max_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_magician_max name = 1.0mm Nozzle version = 4 -definition = mingda_magician_max [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/mingda_magician_pro_0.2.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg similarity index 87% rename from resources/variants/mingda_magician_pro_0.2.inst.cfg rename to resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg index b4f2284f05..c0531cc852 100644 --- a/resources/variants/mingda_magician_pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_magician_pro name = 0.2mm Nozzle version = 4 -definition = mingda_magician_pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/mingda_magician_pro_0.3.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg similarity index 87% rename from resources/variants/mingda_magician_pro_0.3.inst.cfg rename to resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg index 23212e803b..6199ccfdc9 100644 --- a/resources/variants/mingda_magician_pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_magician_pro name = 0.3mm Nozzle version = 4 -definition = mingda_magician_pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/mingda_magician_pro_0.4.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg similarity index 87% rename from resources/variants/mingda_magician_pro_0.4.inst.cfg rename to resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg index a6e571da9b..43b7ff34e6 100644 --- a/resources/variants/mingda_magician_pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_magician_pro name = 0.4mm Nozzle version = 4 -definition = mingda_magician_pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/mingda_magician_pro_0.5.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg similarity index 87% rename from resources/variants/mingda_magician_pro_0.5.inst.cfg rename to resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg index 94e2a5892f..0306b32863 100644 --- a/resources/variants/mingda_magician_pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_magician_pro name = 0.5mm Nozzle version = 4 -definition = mingda_magician_pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/mingda_magician_pro_0.6.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg similarity index 87% rename from resources/variants/mingda_magician_pro_0.6.inst.cfg rename to resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg index 8d6d0f6fd3..6cf09ed8fe 100644 --- a/resources/variants/mingda_magician_pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_magician_pro name = 0.6mm Nozzle version = 4 -definition = mingda_magician_pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/mingda_magician_pro_0.8.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg similarity index 87% rename from resources/variants/mingda_magician_pro_0.8.inst.cfg rename to resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg index 50251a6eb6..319514c395 100644 --- a/resources/variants/mingda_magician_pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_magician_pro name = 0.8mm Nozzle version = 4 -definition = mingda_magician_pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/mingda_magician_pro_1.0.inst.cfg b/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg similarity index 87% rename from resources/variants/mingda_magician_pro_1.0.inst.cfg rename to resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg index 3e45fb0544..cdd044af5c 100644 --- a/resources/variants/mingda_magician_pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_magician_pro name = 1.0mm Nozzle version = 4 -definition = mingda_magician_pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/mingda_magician_x_0.2.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg similarity index 87% rename from resources/variants/mingda_magician_x_0.2.inst.cfg rename to resources/variants/mingda/mingda_magician_x_0.2.inst.cfg index ba7ddc95a2..18e659950b 100644 --- a/resources/variants/mingda_magician_x_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_magician_x name = 0.2mm Nozzle version = 4 -definition = mingda_magician_x [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/mingda_magician_x_0.3.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg similarity index 87% rename from resources/variants/mingda_magician_x_0.3.inst.cfg rename to resources/variants/mingda/mingda_magician_x_0.3.inst.cfg index 2aff96e4a6..a08f4aae64 100644 --- a/resources/variants/mingda_magician_x_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_magician_x name = 0.3mm Nozzle version = 4 -definition = mingda_magician_x [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/mingda_magician_x_0.4.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg similarity index 87% rename from resources/variants/mingda_magician_x_0.4.inst.cfg rename to resources/variants/mingda/mingda_magician_x_0.4.inst.cfg index 2536c56a20..ee626d27c3 100644 --- a/resources/variants/mingda_magician_x_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_magician_x name = 0.4mm Nozzle version = 4 -definition = mingda_magician_x [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/mingda_magician_x_0.5.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg similarity index 87% rename from resources/variants/mingda_magician_x_0.5.inst.cfg rename to resources/variants/mingda/mingda_magician_x_0.5.inst.cfg index 341f57be97..a3c51043d5 100644 --- a/resources/variants/mingda_magician_x_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_magician_x name = 0.5mm Nozzle version = 4 -definition = mingda_magician_x [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/mingda_magician_x_0.6.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg similarity index 87% rename from resources/variants/mingda_magician_x_0.6.inst.cfg rename to resources/variants/mingda/mingda_magician_x_0.6.inst.cfg index 1f303af2e3..283c129171 100644 --- a/resources/variants/mingda_magician_x_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_magician_x name = 0.6mm Nozzle version = 4 -definition = mingda_magician_x [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/mingda_magician_x_0.8.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg similarity index 87% rename from resources/variants/mingda_magician_x_0.8.inst.cfg rename to resources/variants/mingda/mingda_magician_x_0.8.inst.cfg index 9ffa501b5a..dede9bdcd8 100644 --- a/resources/variants/mingda_magician_x_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_magician_x name = 0.8mm Nozzle version = 4 -definition = mingda_magician_x [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/mingda_magician_x_1.0.inst.cfg b/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg similarity index 87% rename from resources/variants/mingda_magician_x_1.0.inst.cfg rename to resources/variants/mingda/mingda_magician_x_1.0.inst.cfg index d947f185e4..69b8b21bea 100644 --- a/resources/variants/mingda_magician_x_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_magician_x name = 1.0mm Nozzle version = 4 -definition = mingda_magician_x [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/mingda_rock3_0.2.inst.cfg b/resources/variants/mingda/mingda_rock3_0.2.inst.cfg similarity index 87% rename from resources/variants/mingda_rock3_0.2.inst.cfg rename to resources/variants/mingda/mingda_rock3_0.2.inst.cfg index 428e8b8436..468981aaad 100644 --- a/resources/variants/mingda_rock3_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_rock3 name = 0.2mm Nozzle version = 4 -definition = mingda_rock3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/mingda_rock3_0.3.inst.cfg b/resources/variants/mingda/mingda_rock3_0.3.inst.cfg similarity index 87% rename from resources/variants/mingda_rock3_0.3.inst.cfg rename to resources/variants/mingda/mingda_rock3_0.3.inst.cfg index 717945c276..aaaad83576 100644 --- a/resources/variants/mingda_rock3_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_rock3 name = 0.3mm Nozzle version = 4 -definition = mingda_rock3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/mingda_rock3_0.4.inst.cfg b/resources/variants/mingda/mingda_rock3_0.4.inst.cfg similarity index 87% rename from resources/variants/mingda_rock3_0.4.inst.cfg rename to resources/variants/mingda/mingda_rock3_0.4.inst.cfg index d5eeb13714..c476451a98 100644 --- a/resources/variants/mingda_rock3_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_rock3 name = 0.4mm Nozzle version = 4 -definition = mingda_rock3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/mingda_rock3_0.5.inst.cfg b/resources/variants/mingda/mingda_rock3_0.5.inst.cfg similarity index 87% rename from resources/variants/mingda_rock3_0.5.inst.cfg rename to resources/variants/mingda/mingda_rock3_0.5.inst.cfg index be980c32ce..a759c5471a 100644 --- a/resources/variants/mingda_rock3_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_rock3 name = 0.5mm Nozzle version = 4 -definition = mingda_rock3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/mingda_rock3_0.6.inst.cfg b/resources/variants/mingda/mingda_rock3_0.6.inst.cfg similarity index 87% rename from resources/variants/mingda_rock3_0.6.inst.cfg rename to resources/variants/mingda/mingda_rock3_0.6.inst.cfg index 07f6dffc17..fa03c399cf 100644 --- a/resources/variants/mingda_rock3_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_rock3 name = 0.6mm Nozzle version = 4 -definition = mingda_rock3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/mingda_rock3_0.8.inst.cfg b/resources/variants/mingda/mingda_rock3_0.8.inst.cfg similarity index 87% rename from resources/variants/mingda_rock3_0.8.inst.cfg rename to resources/variants/mingda/mingda_rock3_0.8.inst.cfg index 76ab342113..79083181cd 100644 --- a/resources/variants/mingda_rock3_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_rock3 name = 0.8mm Nozzle version = 4 -definition = mingda_rock3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/mingda_rock3_1.0.inst.cfg b/resources/variants/mingda/mingda_rock3_1.0.inst.cfg similarity index 87% rename from resources/variants/mingda_rock3_1.0.inst.cfg rename to resources/variants/mingda/mingda_rock3_1.0.inst.cfg index fb4e92d0f5..0c9f1ba2a2 100644 --- a/resources/variants/mingda_rock3_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = mingda_rock3 name = 1.0mm Nozzle version = 4 -definition = mingda_rock3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/modix/modix_v3_base_0.4.inst.cfg b/resources/variants/modix/modix_v3_base_0.4.inst.cfg new file mode 100644 index 0000000000..cb017ace96 --- /dev/null +++ b/resources/variants/modix/modix_v3_base_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v3_base +name = 0.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/modix/modix_v3_base_0.6.inst.cfg b/resources/variants/modix/modix_v3_base_0.6.inst.cfg new file mode 100644 index 0000000000..649d953823 --- /dev/null +++ b/resources/variants/modix/modix_v3_base_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v3_base +name = 0.6 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/modix/modix_v3_base_0.8.inst.cfg b/resources/variants/modix/modix_v3_base_0.8.inst.cfg new file mode 100644 index 0000000000..5c0008601b --- /dev/null +++ b/resources/variants/modix/modix_v3_base_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v3_base +name = 0.8 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/modix/modix_v3_base_1.0.inst.cfg b/resources/variants/modix/modix_v3_base_1.0.inst.cfg new file mode 100644 index 0000000000..272242aa7d --- /dev/null +++ b/resources/variants/modix/modix_v3_base_1.0.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v3_base +name = 1.0 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.0 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v3_base_1.2.inst.cfg b/resources/variants/modix/modix_v3_base_1.2.inst.cfg new file mode 100644 index 0000000000..53ebdd056d --- /dev/null +++ b/resources/variants/modix/modix_v3_base_1.2.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v3_base +name = 1.2 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.2 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v3_base_1.4.inst.cfg b/resources/variants/modix/modix_v3_base_1.4.inst.cfg new file mode 100644 index 0000000000..cfd9bdfd95 --- /dev/null +++ b/resources/variants/modix/modix_v3_base_1.4.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v3_base +name = 1.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.4 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg b/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg new file mode 100644 index 0000000000..de4f6f39aa --- /dev/null +++ b/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v3_big120X +name = 0.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg b/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg new file mode 100644 index 0000000000..07dc1b5d1a --- /dev/null +++ b/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v3_big120X +name = 0.6 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg b/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg new file mode 100644 index 0000000000..84479b17f5 --- /dev/null +++ b/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v3_big120X +name = 0.8 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg b/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg new file mode 100644 index 0000000000..1e47572d40 --- /dev/null +++ b/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v3_big120X +name = 1.0 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.0 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg b/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg new file mode 100644 index 0000000000..642c348886 --- /dev/null +++ b/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v3_big120X +name = 1.2 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.2 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg b/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg new file mode 100644 index 0000000000..cec17a4aa8 --- /dev/null +++ b/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v3_big120X +name = 1.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.4 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg b/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg new file mode 100644 index 0000000000..c0f50e57ed --- /dev/null +++ b/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v3_big120Z +name = 0.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg b/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg new file mode 100644 index 0000000000..06fb3b0f02 --- /dev/null +++ b/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v3_big120Z +name = 0.6 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg b/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg new file mode 100644 index 0000000000..ef87979b9f --- /dev/null +++ b/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v3_big120Z +name = 0.8 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg b/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg new file mode 100644 index 0000000000..2f94e456cf --- /dev/null +++ b/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v3_big120Z +name = 1.0 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.0 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg b/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg new file mode 100644 index 0000000000..113efb8610 --- /dev/null +++ b/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v3_big120Z +name = 1.2 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.2 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg b/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg new file mode 100644 index 0000000000..e6e6b6095d --- /dev/null +++ b/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v3_big120Z +name = 1.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.4 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg b/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg new file mode 100644 index 0000000000..0a1957e0e9 --- /dev/null +++ b/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v3_big180X +name = 0.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg b/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg new file mode 100644 index 0000000000..85f48319d2 --- /dev/null +++ b/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v3_big180X +name = 0.6 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg b/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg new file mode 100644 index 0000000000..e191ca9398 --- /dev/null +++ b/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v3_big180X +name = 0.8 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg b/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg new file mode 100644 index 0000000000..d525a6ad83 --- /dev/null +++ b/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v3_big180X +name = 1.0 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.0 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg b/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg new file mode 100644 index 0000000000..25f248964f --- /dev/null +++ b/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v3_big180X +name = 1.2 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.2 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg b/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg new file mode 100644 index 0000000000..af6f22f9c3 --- /dev/null +++ b/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v3_big180X +name = 1.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.4 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v3_big40_0.4.inst.cfg b/resources/variants/modix/modix_v3_big40_0.4.inst.cfg new file mode 100644 index 0000000000..6de9e19257 --- /dev/null +++ b/resources/variants/modix/modix_v3_big40_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v3_big40 +name = 0.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/modix/modix_v3_big40_0.6.inst.cfg b/resources/variants/modix/modix_v3_big40_0.6.inst.cfg new file mode 100644 index 0000000000..2e838b6f61 --- /dev/null +++ b/resources/variants/modix/modix_v3_big40_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v3_big40 +name = 0.6 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/modix/modix_v3_big40_0.8.inst.cfg b/resources/variants/modix/modix_v3_big40_0.8.inst.cfg new file mode 100644 index 0000000000..1d3eb15e01 --- /dev/null +++ b/resources/variants/modix/modix_v3_big40_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v3_big40 +name = 0.8 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/modix/modix_v3_big40_1.0.inst.cfg b/resources/variants/modix/modix_v3_big40_1.0.inst.cfg new file mode 100644 index 0000000000..bd35c7a25c --- /dev/null +++ b/resources/variants/modix/modix_v3_big40_1.0.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v3_big40 +name = 1.0 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.0 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v3_big40_1.2.inst.cfg b/resources/variants/modix/modix_v3_big40_1.2.inst.cfg new file mode 100644 index 0000000000..1f95020a3c --- /dev/null +++ b/resources/variants/modix/modix_v3_big40_1.2.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v3_big40 +name = 1.2 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.2 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v3_big40_1.4.inst.cfg b/resources/variants/modix/modix_v3_big40_1.4.inst.cfg new file mode 100644 index 0000000000..7694865f21 --- /dev/null +++ b/resources/variants/modix/modix_v3_big40_1.4.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v3_big40 +name = 1.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.4 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v3_big60_0.4.inst.cfg b/resources/variants/modix/modix_v3_big60_0.4.inst.cfg new file mode 100644 index 0000000000..513942ae11 --- /dev/null +++ b/resources/variants/modix/modix_v3_big60_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v3_big60 +name = 0.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/modix/modix_v3_big60_0.6.inst.cfg b/resources/variants/modix/modix_v3_big60_0.6.inst.cfg new file mode 100644 index 0000000000..0ffce3eff8 --- /dev/null +++ b/resources/variants/modix/modix_v3_big60_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v3_big60 +name = 0.6 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/modix/modix_v3_big60_0.8.inst.cfg b/resources/variants/modix/modix_v3_big60_0.8.inst.cfg new file mode 100644 index 0000000000..6c06692a93 --- /dev/null +++ b/resources/variants/modix/modix_v3_big60_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v3_big60 +name = 0.8 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/modix/modix_v3_big60_1.0.inst.cfg b/resources/variants/modix/modix_v3_big60_1.0.inst.cfg new file mode 100644 index 0000000000..564703d114 --- /dev/null +++ b/resources/variants/modix/modix_v3_big60_1.0.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v3_big60 +name = 1.0 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.0 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v3_big60_1.2.inst.cfg b/resources/variants/modix/modix_v3_big60_1.2.inst.cfg new file mode 100644 index 0000000000..60cedbe3de --- /dev/null +++ b/resources/variants/modix/modix_v3_big60_1.2.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v3_big60 +name = 1.2 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.2 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v3_big60_1.4.inst.cfg b/resources/variants/modix/modix_v3_big60_1.4.inst.cfg new file mode 100644 index 0000000000..e34222a3db --- /dev/null +++ b/resources/variants/modix/modix_v3_big60_1.4.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v3_big60 +name = 1.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.4 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg new file mode 100644 index 0000000000..426adc3082 --- /dev/null +++ b/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v3_big_meter +name = 0.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg new file mode 100644 index 0000000000..55c62d85b8 --- /dev/null +++ b/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v3_big_meter +name = 0.6 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg new file mode 100644 index 0000000000..fb8389e1e2 --- /dev/null +++ b/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v3_big_meter +name = 0.8 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg new file mode 100644 index 0000000000..61ef19159b --- /dev/null +++ b/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v3_big_meter +name = 1.0 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.0 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg new file mode 100644 index 0000000000..710f713918 --- /dev/null +++ b/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v3_big_meter +name = 1.2 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.2 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg new file mode 100644 index 0000000000..37b12893b5 --- /dev/null +++ b/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v3_big_meter +name = 1.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.4 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v4_base_0.4.inst.cfg b/resources/variants/modix/modix_v4_base_0.4.inst.cfg new file mode 100644 index 0000000000..41dbef049a --- /dev/null +++ b/resources/variants/modix/modix_v4_base_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v4_base +name = 0.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/modix/modix_v4_base_0.6.inst.cfg b/resources/variants/modix/modix_v4_base_0.6.inst.cfg new file mode 100644 index 0000000000..854259e4e1 --- /dev/null +++ b/resources/variants/modix/modix_v4_base_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v4_base +name = 0.6 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/modix/modix_v4_base_0.8.inst.cfg b/resources/variants/modix/modix_v4_base_0.8.inst.cfg new file mode 100644 index 0000000000..b20cd0f3ce --- /dev/null +++ b/resources/variants/modix/modix_v4_base_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v4_base +name = 0.8 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/modix/modix_v4_base_1.0.inst.cfg b/resources/variants/modix/modix_v4_base_1.0.inst.cfg new file mode 100644 index 0000000000..49281a641f --- /dev/null +++ b/resources/variants/modix/modix_v4_base_1.0.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v4_base +name = 1.0 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.0 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v4_base_1.2.inst.cfg b/resources/variants/modix/modix_v4_base_1.2.inst.cfg new file mode 100644 index 0000000000..e9f38e4bcc --- /dev/null +++ b/resources/variants/modix/modix_v4_base_1.2.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v4_base +name = 1.2 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.2 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v4_base_1.4.inst.cfg b/resources/variants/modix/modix_v4_base_1.4.inst.cfg new file mode 100644 index 0000000000..156ad71801 --- /dev/null +++ b/resources/variants/modix/modix_v4_base_1.4.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v4_base +name = 1.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.4 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg b/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg new file mode 100644 index 0000000000..4a1edc2e9a --- /dev/null +++ b/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v4_big120X +name = 0.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg b/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg new file mode 100644 index 0000000000..502ec9d80b --- /dev/null +++ b/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v4_big120X +name = 0.6 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg b/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg new file mode 100644 index 0000000000..e32506f020 --- /dev/null +++ b/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v4_big120X +name = 0.8 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg b/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg new file mode 100644 index 0000000000..8014e1af36 --- /dev/null +++ b/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v4_big120X +name = 1.0 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.0 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg b/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg new file mode 100644 index 0000000000..63b898164c --- /dev/null +++ b/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v4_big120X +name = 1.2 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.2 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg b/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg new file mode 100644 index 0000000000..a99530b13a --- /dev/null +++ b/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v4_big120X +name = 1.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.4 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg b/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg new file mode 100644 index 0000000000..8527d717a7 --- /dev/null +++ b/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v4_big120Z +name = 0.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg b/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg new file mode 100644 index 0000000000..8796b02d5e --- /dev/null +++ b/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v4_big120Z +name = 0.6 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg b/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg new file mode 100644 index 0000000000..58a1a48566 --- /dev/null +++ b/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v4_big120Z +name = 0.8 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg b/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg new file mode 100644 index 0000000000..884f21be34 --- /dev/null +++ b/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v4_big120Z +name = 1.0 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.0 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg b/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg new file mode 100644 index 0000000000..d880f3ae96 --- /dev/null +++ b/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v4_big120Z +name = 1.2 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.2 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg b/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg new file mode 100644 index 0000000000..5852ce2f76 --- /dev/null +++ b/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v4_big120Z +name = 1.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.4 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg b/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg new file mode 100644 index 0000000000..3f10dc14dd --- /dev/null +++ b/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v4_big180X +name = 0.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg b/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg new file mode 100644 index 0000000000..4c0c019f72 --- /dev/null +++ b/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v4_big180X +name = 0.6 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg b/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg new file mode 100644 index 0000000000..721629f388 --- /dev/null +++ b/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v4_big180X +name = 0.8 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg b/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg new file mode 100644 index 0000000000..c8071626d8 --- /dev/null +++ b/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v4_big180X +name = 1.0 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.0 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg b/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg new file mode 100644 index 0000000000..86b37a4d4a --- /dev/null +++ b/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v4_big180X +name = 1.2 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.2 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg b/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg new file mode 100644 index 0000000000..dbb6dc9004 --- /dev/null +++ b/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v4_big180X +name = 1.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.4 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v4_big60_0.4.inst.cfg b/resources/variants/modix/modix_v4_big60_0.4.inst.cfg new file mode 100644 index 0000000000..9a7c1b2c1f --- /dev/null +++ b/resources/variants/modix/modix_v4_big60_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v4_big60 +name = 0.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/modix/modix_v4_big60_0.6.inst.cfg b/resources/variants/modix/modix_v4_big60_0.6.inst.cfg new file mode 100644 index 0000000000..e0a946bb6a --- /dev/null +++ b/resources/variants/modix/modix_v4_big60_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v4_big60 +name = 0.6 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/modix/modix_v4_big60_0.8.inst.cfg b/resources/variants/modix/modix_v4_big60_0.8.inst.cfg new file mode 100644 index 0000000000..4491035dd9 --- /dev/null +++ b/resources/variants/modix/modix_v4_big60_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v4_big60 +name = 0.8 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/modix/modix_v4_big60_1.0.inst.cfg b/resources/variants/modix/modix_v4_big60_1.0.inst.cfg new file mode 100644 index 0000000000..1d5ca3e448 --- /dev/null +++ b/resources/variants/modix/modix_v4_big60_1.0.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v4_big60 +name = 1.0 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.0 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v4_big60_1.2.inst.cfg b/resources/variants/modix/modix_v4_big60_1.2.inst.cfg new file mode 100644 index 0000000000..e2d630a8c4 --- /dev/null +++ b/resources/variants/modix/modix_v4_big60_1.2.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v4_big60 +name = 1.2 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.2 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v4_big60_1.4.inst.cfg b/resources/variants/modix/modix_v4_big60_1.4.inst.cfg new file mode 100644 index 0000000000..1fd7f0bd4c --- /dev/null +++ b/resources/variants/modix/modix_v4_big60_1.4.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v4_big60 +name = 1.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.4 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg new file mode 100644 index 0000000000..ed406c9ad7 --- /dev/null +++ b/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v4_big_meter +name = 0.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg new file mode 100644 index 0000000000..f0b40510d7 --- /dev/null +++ b/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v4_big_meter +name = 0.6 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg new file mode 100644 index 0000000000..d69e9964bf --- /dev/null +++ b/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = modix_v4_big_meter +name = 0.8 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg new file mode 100644 index 0000000000..814e94fb88 --- /dev/null +++ b/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v4_big_meter +name = 1.0 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.0 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg new file mode 100644 index 0000000000..5d78378275 --- /dev/null +++ b/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v4_big_meter +name = 1.2 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.2 +support_angle = 45 + diff --git a/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg new file mode 100644 index 0000000000..570c683c81 --- /dev/null +++ b/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = modix_v4_big_meter +name = 1.4 mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +infill_pattern = lines +machine_nozzle_size = 1.4 +support_angle = 45 + diff --git a/resources/variants/nwa3d_a31_04.inst.cfg b/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg similarity index 88% rename from resources/variants/nwa3d_a31_04.inst.cfg rename to resources/variants/nwa3d/nwa3d_a31_04.inst.cfg index 6189f76c08..71595314b6 100644 --- a/resources/variants/nwa3d_a31_04.inst.cfg +++ b/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = nwa3d_a31 name = Standard 0.4mm version = 4 -definition = nwa3d_a31 [metadata] author = DragonJe -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/nwa3d_a31_06.inst.cfg b/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg similarity index 88% rename from resources/variants/nwa3d_a31_06.inst.cfg rename to resources/variants/nwa3d/nwa3d_a31_06.inst.cfg index 6422f161ee..ceaec2b6e1 100644 --- a/resources/variants/nwa3d_a31_06.inst.cfg +++ b/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = nwa3d_a31 name = Engineering 0.6mm version = 4 -definition = nwa3d_a31 [metadata] author = DragonJe -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/renkforce_basic3_0.2.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg similarity index 87% rename from resources/variants/renkforce_basic3_0.2.inst.cfg rename to resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg index b62ea7652a..60b83e57e4 100644 --- a/resources/variants/renkforce_basic3_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = renkforce_basic3 name = 0.2mm Nozzle version = 4 -definition = renkforce_basic3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/renkforce_basic3_0.4.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg similarity index 87% rename from resources/variants/renkforce_basic3_0.4.inst.cfg rename to resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg index f3ed1530bb..9091a6144c 100644 --- a/resources/variants/renkforce_basic3_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = renkforce_basic3 name = 0.4mm Nozzle version = 4 -definition = renkforce_basic3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/renkforce_basic3_0.6.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg similarity index 87% rename from resources/variants/renkforce_basic3_0.6.inst.cfg rename to resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg index f9af034a92..9f107a665a 100644 --- a/resources/variants/renkforce_basic3_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = renkforce_basic3 name = 0.6mm Nozzle version = 4 -definition = renkforce_basic3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/renkforce_basic3_0.8.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg similarity index 87% rename from resources/variants/renkforce_basic3_0.8.inst.cfg rename to resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg index 98feb11fbb..f63ca79ed2 100644 --- a/resources/variants/renkforce_basic3_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = renkforce_basic3 name = 0.8mm Nozzle version = 4 -definition = renkforce_basic3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/renkforce_basic3_1.0.inst.cfg b/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg similarity index 87% rename from resources/variants/renkforce_basic3_1.0.inst.cfg rename to resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg index 45b5cf5a2b..a8c515229c 100644 --- a/resources/variants/renkforce_basic3_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = renkforce_basic3 name = 1.0mm Nozzle version = 4 -definition = renkforce_basic3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg b/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg new file mode 100644 index 0000000000..53d4d0a279 --- /dev/null +++ b/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = renkforce_cubeone +name = 0.7mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.7 + diff --git a/resources/variants/renkforce_pro3_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg similarity index 87% rename from resources/variants/renkforce_pro3_0.2.inst.cfg rename to resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg index a823e94870..21ba3e3fa4 100644 --- a/resources/variants/renkforce_pro3_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = renkforce_pro3 name = 0.2mm Nozzle version = 4 -definition = renkforce_pro3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/renkforce_pro3_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg similarity index 87% rename from resources/variants/renkforce_pro3_0.4.inst.cfg rename to resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg index 373f8fdd52..5b52a0479e 100644 --- a/resources/variants/renkforce_pro3_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = renkforce_pro3 name = 0.4mm Nozzle version = 4 -definition = renkforce_pro3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/renkforce_pro3_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg similarity index 87% rename from resources/variants/renkforce_pro3_0.6.inst.cfg rename to resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg index 6102e36f9d..89d204ff0b 100644 --- a/resources/variants/renkforce_pro3_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = renkforce_pro3 name = 0.6mm Nozzle version = 4 -definition = renkforce_pro3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/renkforce_pro3_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg similarity index 87% rename from resources/variants/renkforce_pro3_0.8.inst.cfg rename to resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg index a9f845b292..37d6d17c56 100644 --- a/resources/variants/renkforce_pro3_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = renkforce_pro3 name = 0.8mm Nozzle version = 4 -definition = renkforce_pro3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/renkforce_pro3_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg similarity index 87% rename from resources/variants/renkforce_pro3_1.0.inst.cfg rename to resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg index 8eaea99edb..8ebb971022 100644 --- a/resources/variants/renkforce_pro3_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = renkforce_pro3 name = 1.0mm Nozzle version = 4 -definition = renkforce_pro3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/renkforce_pro6_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg similarity index 87% rename from resources/variants/renkforce_pro6_0.2.inst.cfg rename to resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg index 6d9459ed43..203cbb5b8d 100644 --- a/resources/variants/renkforce_pro6_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = renkforce_pro6 name = 0.4mm Nozzle version = 4 -definition = renkforce_pro6 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/renkforce_pro6_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg similarity index 87% rename from resources/variants/renkforce_pro6_0.4.inst.cfg rename to resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg index 11f5594837..b71d1b2d84 100644 --- a/resources/variants/renkforce_pro6_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = renkforce_pro6 name = 0.4mm Nozzle version = 4 -definition = renkforce_pro6 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/renkforce_pro6_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg similarity index 87% rename from resources/variants/renkforce_pro6_0.6.inst.cfg rename to resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg index 99851560e5..6796ef989a 100644 --- a/resources/variants/renkforce_pro6_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = renkforce_pro6 name = 0.6mm Nozzle version = 4 -definition = renkforce_pro6 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/renkforce_pro6_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg similarity index 87% rename from resources/variants/renkforce_pro6_0.8.inst.cfg rename to resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg index e10fbc3e26..d9114dc05a 100644 --- a/resources/variants/renkforce_pro6_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = renkforce_pro6 name = 0.8mm Nozzle version = 4 -definition = renkforce_pro6 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/renkforce_pro6_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg similarity index 87% rename from resources/variants/renkforce_pro6_1.0.inst.cfg rename to resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg index fe01d4989b..83332acfa9 100644 --- a/resources/variants/renkforce_pro6_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = renkforce_pro6 name = 1.0mm Nozzle version = 4 -definition = renkforce_pro6 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg new file mode 100644 index 0000000000..5e276f3584 --- /dev/null +++ b/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = renkforce_pro6plus +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg new file mode 100644 index 0000000000..51b3389ea6 --- /dev/null +++ b/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = renkforce_pro6plus +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg new file mode 100644 index 0000000000..7eb129d4d5 --- /dev/null +++ b/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = renkforce_pro6plus +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg new file mode 100644 index 0000000000..79f9ad7959 --- /dev/null +++ b/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = renkforce_pro6plus +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg new file mode 100755 index 0000000000..703fc81fd3 --- /dev/null +++ b/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = renkforce_pro7dual +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg new file mode 100755 index 0000000000..64a558c3dd --- /dev/null +++ b/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = renkforce_pro7dual +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg new file mode 100755 index 0000000000..e3f73d3644 --- /dev/null +++ b/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = renkforce_pro7dual +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg new file mode 100755 index 0000000000..7c060510e3 --- /dev/null +++ b/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = renkforce_pro7dual +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg new file mode 100755 index 0000000000..1c9a155153 --- /dev/null +++ b/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = renkforce_pro7dual +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg new file mode 100644 index 0000000000..cdc699ec08 --- /dev/null +++ b/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_base +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg new file mode 100644 index 0000000000..6d61a4aab8 --- /dev/null +++ b/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_base +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg new file mode 100644 index 0000000000..9b9c3448ba --- /dev/null +++ b/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_base +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg new file mode 100644 index 0000000000..599fdf099d --- /dev/null +++ b/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_base +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg new file mode 100644 index 0000000000..509e7f2025 --- /dev/null +++ b/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_base +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg new file mode 100644 index 0000000000..eb2f8fa9fd --- /dev/null +++ b/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_base +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg b/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg new file mode 100644 index 0000000000..0eedaad4a1 --- /dev/null +++ b/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_base +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg new file mode 100644 index 0000000000..cdc699ec08 --- /dev/null +++ b/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_base +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg new file mode 100644 index 0000000000..6d61a4aab8 --- /dev/null +++ b/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_base +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg new file mode 100644 index 0000000000..9b9c3448ba --- /dev/null +++ b/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_base +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg new file mode 100644 index 0000000000..599fdf099d --- /dev/null +++ b/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_base +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg new file mode 100644 index 0000000000..509e7f2025 --- /dev/null +++ b/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_base +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg new file mode 100644 index 0000000000..eb2f8fa9fd --- /dev/null +++ b/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_base +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg b/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg new file mode 100644 index 0000000000..0eedaad4a1 --- /dev/null +++ b/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_base +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg new file mode 100644 index 0000000000..cdc699ec08 --- /dev/null +++ b/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_base +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg new file mode 100644 index 0000000000..6d61a4aab8 --- /dev/null +++ b/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_base +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg new file mode 100644 index 0000000000..9b9c3448ba --- /dev/null +++ b/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_base +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg new file mode 100644 index 0000000000..599fdf099d --- /dev/null +++ b/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_base +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg new file mode 100644 index 0000000000..509e7f2025 --- /dev/null +++ b/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_base +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg new file mode 100644 index 0000000000..eb2f8fa9fd --- /dev/null +++ b/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_base +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg b/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg new file mode 100644 index 0000000000..0eedaad4a1 --- /dev/null +++ b/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_base +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/sovol/sovol_sv01_0.2.inst.cfg b/resources/variants/sovol/sovol_sv01_0.2.inst.cfg new file mode 100644 index 0000000000..8cb6eb9fd6 --- /dev/null +++ b/resources/variants/sovol/sovol_sv01_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv01 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/sovol/sovol_sv01_0.3.inst.cfg b/resources/variants/sovol/sovol_sv01_0.3.inst.cfg new file mode 100644 index 0000000000..6c1cf8aa25 --- /dev/null +++ b/resources/variants/sovol/sovol_sv01_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv01 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/sovol/sovol_sv01_0.4.inst.cfg b/resources/variants/sovol/sovol_sv01_0.4.inst.cfg new file mode 100644 index 0000000000..fcdd265d04 --- /dev/null +++ b/resources/variants/sovol/sovol_sv01_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv01 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/sovol/sovol_sv01_0.5.inst.cfg b/resources/variants/sovol/sovol_sv01_0.5.inst.cfg new file mode 100644 index 0000000000..5fbd113f8e --- /dev/null +++ b/resources/variants/sovol/sovol_sv01_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv01 +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/sovol/sovol_sv01_0.6.inst.cfg b/resources/variants/sovol/sovol_sv01_0.6.inst.cfg new file mode 100644 index 0000000000..1cb46e18f5 --- /dev/null +++ b/resources/variants/sovol/sovol_sv01_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv01 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/sovol/sovol_sv01_0.8.inst.cfg b/resources/variants/sovol/sovol_sv01_0.8.inst.cfg new file mode 100644 index 0000000000..2aeab0e239 --- /dev/null +++ b/resources/variants/sovol/sovol_sv01_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv01 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/sovol/sovol_sv01_1.0.inst.cfg b/resources/variants/sovol/sovol_sv01_1.0.inst.cfg new file mode 100644 index 0000000000..4b822dc95b --- /dev/null +++ b/resources/variants/sovol/sovol_sv01_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv01 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg new file mode 100644 index 0000000000..cdbcdb3337 --- /dev/null +++ b/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv01pro +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg new file mode 100644 index 0000000000..d984439be4 --- /dev/null +++ b/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv01pro +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg new file mode 100644 index 0000000000..db9fe5749b --- /dev/null +++ b/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv01pro +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg new file mode 100644 index 0000000000..9b34ca0a2e --- /dev/null +++ b/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv01pro +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg new file mode 100644 index 0000000000..247f3ac25c --- /dev/null +++ b/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv01pro +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg new file mode 100644 index 0000000000..12e667ae05 --- /dev/null +++ b/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv01pro +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg b/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg new file mode 100644 index 0000000000..ac71470ed6 --- /dev/null +++ b/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv01pro +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/sovol/sovol_sv03_0.2.inst.cfg b/resources/variants/sovol/sovol_sv03_0.2.inst.cfg new file mode 100644 index 0000000000..d8cb16668c --- /dev/null +++ b/resources/variants/sovol/sovol_sv03_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv03 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/sovol/sovol_sv03_0.3.inst.cfg b/resources/variants/sovol/sovol_sv03_0.3.inst.cfg new file mode 100644 index 0000000000..068bdbc98f --- /dev/null +++ b/resources/variants/sovol/sovol_sv03_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv03 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/sovol/sovol_sv03_0.4.inst.cfg b/resources/variants/sovol/sovol_sv03_0.4.inst.cfg new file mode 100644 index 0000000000..8f60d5fe1f --- /dev/null +++ b/resources/variants/sovol/sovol_sv03_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv03 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/sovol/sovol_sv03_0.5.inst.cfg b/resources/variants/sovol/sovol_sv03_0.5.inst.cfg new file mode 100644 index 0000000000..97cddbd75c --- /dev/null +++ b/resources/variants/sovol/sovol_sv03_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv03 +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/sovol/sovol_sv03_0.6.inst.cfg b/resources/variants/sovol/sovol_sv03_0.6.inst.cfg new file mode 100644 index 0000000000..a89fe331f9 --- /dev/null +++ b/resources/variants/sovol/sovol_sv03_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv03 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/sovol/sovol_sv03_0.8.inst.cfg b/resources/variants/sovol/sovol_sv03_0.8.inst.cfg new file mode 100644 index 0000000000..27e6366a21 --- /dev/null +++ b/resources/variants/sovol/sovol_sv03_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv03 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/sovol/sovol_sv03_1.0.inst.cfg b/resources/variants/sovol/sovol_sv03_1.0.inst.cfg new file mode 100644 index 0000000000..3cb063e03e --- /dev/null +++ b/resources/variants/sovol/sovol_sv03_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv03 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/sovol/sovol_sv05_0.2.inst.cfg b/resources/variants/sovol/sovol_sv05_0.2.inst.cfg new file mode 100644 index 0000000000..17e45bc4eb --- /dev/null +++ b/resources/variants/sovol/sovol_sv05_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv05 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/sovol/sovol_sv05_0.3.inst.cfg b/resources/variants/sovol/sovol_sv05_0.3.inst.cfg new file mode 100644 index 0000000000..207bfe8750 --- /dev/null +++ b/resources/variants/sovol/sovol_sv05_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv05 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/sovol/sovol_sv05_0.4.inst.cfg b/resources/variants/sovol/sovol_sv05_0.4.inst.cfg new file mode 100644 index 0000000000..cb766a176f --- /dev/null +++ b/resources/variants/sovol/sovol_sv05_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv05 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/sovol/sovol_sv05_0.5.inst.cfg b/resources/variants/sovol/sovol_sv05_0.5.inst.cfg new file mode 100644 index 0000000000..40877fe343 --- /dev/null +++ b/resources/variants/sovol/sovol_sv05_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv05 +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/sovol/sovol_sv05_0.6.inst.cfg b/resources/variants/sovol/sovol_sv05_0.6.inst.cfg new file mode 100644 index 0000000000..043f6621ab --- /dev/null +++ b/resources/variants/sovol/sovol_sv05_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv05 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/sovol/sovol_sv05_0.8.inst.cfg b/resources/variants/sovol/sovol_sv05_0.8.inst.cfg new file mode 100644 index 0000000000..1bf2de97a7 --- /dev/null +++ b/resources/variants/sovol/sovol_sv05_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv05 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/sovol/sovol_sv05_1.0.inst.cfg b/resources/variants/sovol/sovol_sv05_1.0.inst.cfg new file mode 100644 index 0000000000..2ccf5ce5b7 --- /dev/null +++ b/resources/variants/sovol/sovol_sv05_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv05 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/sovol/sovol_sv06_0.2.inst.cfg b/resources/variants/sovol/sovol_sv06_0.2.inst.cfg new file mode 100644 index 0000000000..0feeee93b7 --- /dev/null +++ b/resources/variants/sovol/sovol_sv06_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv06 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/sovol/sovol_sv06_0.3.inst.cfg b/resources/variants/sovol/sovol_sv06_0.3.inst.cfg new file mode 100644 index 0000000000..f6badce399 --- /dev/null +++ b/resources/variants/sovol/sovol_sv06_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv06 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/sovol/sovol_sv06_0.4.inst.cfg b/resources/variants/sovol/sovol_sv06_0.4.inst.cfg new file mode 100644 index 0000000000..1ef526b59a --- /dev/null +++ b/resources/variants/sovol/sovol_sv06_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv06 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/sovol/sovol_sv06_0.5.inst.cfg b/resources/variants/sovol/sovol_sv06_0.5.inst.cfg new file mode 100644 index 0000000000..b702272de8 --- /dev/null +++ b/resources/variants/sovol/sovol_sv06_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv06 +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/sovol/sovol_sv06_0.6.inst.cfg b/resources/variants/sovol/sovol_sv06_0.6.inst.cfg new file mode 100644 index 0000000000..cc2cfb918f --- /dev/null +++ b/resources/variants/sovol/sovol_sv06_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv06 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/sovol/sovol_sv06_0.8.inst.cfg b/resources/variants/sovol/sovol_sv06_0.8.inst.cfg new file mode 100644 index 0000000000..645d9af388 --- /dev/null +++ b/resources/variants/sovol/sovol_sv06_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv06 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/sovol/sovol_sv06_1.0.inst.cfg b/resources/variants/sovol/sovol_sv06_1.0.inst.cfg new file mode 100644 index 0000000000..f012540e97 --- /dev/null +++ b/resources/variants/sovol/sovol_sv06_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = sovol_sv06 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/strateo3d_high_temp_04.inst.cfg b/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg similarity index 94% rename from resources/variants/strateo3d_high_temp_04.inst.cfg rename to resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg index 1091760b4e..4bf51a967a 100644 --- a/resources/variants/strateo3d_high_temp_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg @@ -1,20 +1,21 @@ [general] +definition = strateo3d name = High temp 0.4 version = 4 -definition = strateo3d [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +layer_height = 0.2 +layer_height_0 = 0.3 machine_nozzle_id = HT0.4 machine_nozzle_size = 0.4 machine_nozzle_tip_outer_diameter = 1.0 -layer_height = 0.2 -layer_height_0 = 0.3 prime_tower_enable = True retract_at_layer_change = False support_angle = 45 support_use_towers = True + diff --git a/resources/variants/strateo3d_standard_04.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg similarity index 87% rename from resources/variants/strateo3d_standard_04.inst.cfg rename to resources/variants/strateo3d/strateo3d_standard_04.inst.cfg index 6806c3ef67..3d705453d8 100644 --- a/resources/variants/strateo3d_standard_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg @@ -1,20 +1,21 @@ [general] +definition = strateo3d name = Standard 0.4 version = 4 -definition = strateo3d [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +layer_height = 0.2 +layer_height_0 = 0.3 machine_nozzle_id = Standard 0.4 machine_nozzle_size = 0.4 machine_nozzle_tip_outer_diameter = 1.0 -layer_height = 0.2 -layer_height_0 = 0.3 prime_tower_enable = True retract_at_layer_change = False support_angle = 60 -support_use_towers = True \ No newline at end of file +support_use_towers = True + diff --git a/resources/variants/strateo3d_standard_06.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg similarity index 87% rename from resources/variants/strateo3d_standard_06.inst.cfg rename to resources/variants/strateo3d/strateo3d_standard_06.inst.cfg index 9ab25f5bc1..3443f64531 100644 --- a/resources/variants/strateo3d_standard_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg @@ -1,20 +1,21 @@ [general] +definition = strateo3d name = Standard 0.6 version = 4 -definition = strateo3d [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +layer_height = 0.3 +layer_height_0 = 0.4 machine_nozzle_id = Standard 0.6 machine_nozzle_size = 0.6 machine_nozzle_tip_outer_diameter = 1.5 -layer_height = 0.3 -layer_height_0 = 0.4 prime_tower_enable = True retract_at_layer_change = False support_angle = 55 -support_use_towers = True \ No newline at end of file +support_use_towers = True + diff --git a/resources/variants/strateo3d_standard_08.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg similarity index 87% rename from resources/variants/strateo3d_standard_08.inst.cfg rename to resources/variants/strateo3d/strateo3d_standard_08.inst.cfg index 435f34f270..f436ce1fe7 100644 --- a/resources/variants/strateo3d_standard_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg @@ -1,20 +1,21 @@ [general] +definition = strateo3d name = Standard 0.8 version = 4 -definition = strateo3d [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +layer_height = 0.4 +layer_height_0 = 0.5 machine_nozzle_id = Standard 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 -layer_height = 0.4 -layer_height_0 = 0.5 prime_tower_enable = True retract_at_layer_change = True support_angle = 50 -support_use_towers = True \ No newline at end of file +support_use_towers = True + diff --git a/resources/variants/strateo3d_standard_10.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg similarity index 88% rename from resources/variants/strateo3d_standard_10.inst.cfg rename to resources/variants/strateo3d/strateo3d_standard_10.inst.cfg index 46f85ef2ad..b957d58d9f 100644 --- a/resources/variants/strateo3d_standard_10.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg @@ -1,20 +1,21 @@ [general] +definition = strateo3d name = Standard 1.0 Experimental version = 4 -definition = strateo3d [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +layer_height = 0.5 +layer_height_0 = 0.6 machine_nozzle_id = Standard 1.0 Experimental machine_nozzle_size = 1.0 machine_nozzle_tip_outer_diameter = 2.5 -layer_height = 0.5 -layer_height_0 = 0.6 prime_tower_enable = True retract_at_layer_change = True support_angle = 50 -support_use_towers = True \ No newline at end of file +support_use_towers = True + diff --git a/resources/variants/strateo3d_standard_12.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg similarity index 88% rename from resources/variants/strateo3d_standard_12.inst.cfg rename to resources/variants/strateo3d/strateo3d_standard_12.inst.cfg index 4a8ea196c8..3a35f9c4a2 100644 --- a/resources/variants/strateo3d_standard_12.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg @@ -1,20 +1,21 @@ [general] +definition = strateo3d name = Standard 1.2 Experimental version = 4 -definition = strateo3d [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +layer_height = 0.6 +layer_height_0 = 0.7 machine_nozzle_id = Standard 1.2 Experimental machine_nozzle_size = 1.2 machine_nozzle_tip_outer_diameter = 3.0 -layer_height = 0.6 -layer_height_0 = 0.7 prime_tower_enable = True retract_at_layer_change = True support_angle = 50 -support_use_towers = True \ No newline at end of file +support_use_towers = True + diff --git a/resources/variants/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg similarity index 92% rename from resources/variants/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg rename to resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg index c983214ef7..634cb55aae 100644 --- a/resources/variants/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = structur3d_discov3ry1_complete_um2plus name = 0.20mm (Clear) version = 4 -definition = structur3d_discov3ry1_complete_um2plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_id = 0.20mm (Clear) machine_nozzle_size = 0.20 machine_nozzle_tip_outer_diameter = 0.30 + diff --git a/resources/variants/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg similarity index 92% rename from resources/variants/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg rename to resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg index bd431f0422..736dc65e3b 100644 --- a/resources/variants/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = structur3d_discov3ry1_complete_um2plus name = 0.25mm (Red) version = 4 -definition = structur3d_discov3ry1_complete_um2plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_id = 0.25mm (Red) machine_nozzle_size = 0.25 machine_nozzle_tip_outer_diameter = 0.35 + diff --git a/resources/variants/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg similarity index 92% rename from resources/variants/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg rename to resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg index 8df046a824..e8c6ccbb37 100644 --- a/resources/variants/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = structur3d_discov3ry1_complete_um2plus name = 0.41mm (Blue) version = 4 -definition = structur3d_discov3ry1_complete_um2plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_id = 0.41mm (Blue) machine_nozzle_size = 0.41 machine_nozzle_tip_outer_diameter = 0.51 + diff --git a/resources/variants/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg similarity index 92% rename from resources/variants/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg rename to resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg index cd4b9ab2f6..2cb0ceec7d 100644 --- a/resources/variants/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = structur3d_discov3ry1_complete_um2plus name = 0.58mm (Pink) version = 4 -definition = structur3d_discov3ry1_complete_um2plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_id = 0.58mm (Pink) machine_nozzle_size = 0.58 machine_nozzle_tip_outer_diameter = 0.68 + diff --git a/resources/variants/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg similarity index 92% rename from resources/variants/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg rename to resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg index 9dd15300fc..dca75697a4 100644 --- a/resources/variants/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = structur3d_discov3ry1_complete_um2plus name = 0.84mm (Green) version = 4 -definition = structur3d_discov3ry1_complete_um2plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_id = 0.84mm (Green) machine_nozzle_size = 0.84 machine_nozzle_tip_outer_diameter = 0.94 + diff --git a/resources/variants/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg similarity index 92% rename from resources/variants/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg rename to resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg index 7d13f8a569..b3313dfc25 100644 --- a/resources/variants/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = structur3d_discov3ry1_complete_um2plus name = 1.19mm (Grey) version = 4 -definition = structur3d_discov3ry1_complete_um2plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_id = 1.19mm (Grey) machine_nozzle_size = 1.19 machine_nozzle_tip_outer_diameter = 1.29 + diff --git a/resources/variants/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg similarity index 92% rename from resources/variants/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg rename to resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg index 7cecf36184..a3290a298a 100644 --- a/resources/variants/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = structur3d_discov3ry1_complete_um2plus name = 1.60mm (Olive) version = 4 -definition = structur3d_discov3ry1_complete_um2plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_id = 1.60mm (Olive) machine_nozzle_size = 1.60 machine_nozzle_tip_outer_diameter = 1.70 + diff --git a/resources/variants/tizyx_evy_0.2.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg similarity index 87% rename from resources/variants/tizyx_evy_0.2.inst.cfg rename to resources/variants/tizyx/tizyx_evy_0.2.inst.cfg index 589bc2b45e..4a3161ad31 100644 --- a/resources/variants/tizyx_evy_0.2.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = tizyx_evy name = 0.2mm version = 4 -definition = tizyx_evy [metadata] author = TiZYX -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/tizyx_evy_0.3.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg similarity index 87% rename from resources/variants/tizyx_evy_0.3.inst.cfg rename to resources/variants/tizyx/tizyx_evy_0.3.inst.cfg index d2f8e6f714..bd492a2224 100644 --- a/resources/variants/tizyx_evy_0.3.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = tizyx_evy name = 0.3mm version = 4 -definition = tizyx_evy [metadata] author = TiZYX -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/tizyx_evy_0.4.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg similarity index 87% rename from resources/variants/tizyx_evy_0.4.inst.cfg rename to resources/variants/tizyx/tizyx_evy_0.4.inst.cfg index dec9f40f06..d92f980541 100644 --- a/resources/variants/tizyx_evy_0.4.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = tizyx_evy name = 0.4mm version = 4 -definition = tizyx_evy [metadata] author = TiZYX -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/tizyx_evy_0.5.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg similarity index 88% rename from resources/variants/tizyx_evy_0.5.inst.cfg rename to resources/variants/tizyx/tizyx_evy_0.5.inst.cfg index dc074e1572..0c70e642fa 100644 --- a/resources/variants/tizyx_evy_0.5.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg @@ -1,13 +1,13 @@ [general] +definition = tizyx_evy name = 0.5mm version = 4 -definition = tizyx_evy [metadata] author = TiZYX -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 diff --git a/resources/variants/tizyx_evy_0.6.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg similarity index 87% rename from resources/variants/tizyx_evy_0.6.inst.cfg rename to resources/variants/tizyx/tizyx_evy_0.6.inst.cfg index bb49d1055f..a8f810227c 100644 --- a/resources/variants/tizyx_evy_0.6.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = tizyx_evy name = 0.6mm version = 4 -definition = tizyx_evy [metadata] author = TiZYX -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/tizyx_evy_0.8.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg similarity index 87% rename from resources/variants/tizyx_evy_0.8.inst.cfg rename to resources/variants/tizyx/tizyx_evy_0.8.inst.cfg index 31fef2ab4b..9d5134ba87 100644 --- a/resources/variants/tizyx_evy_0.8.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = tizyx_evy name = 0.8mm version = 4 -definition = tizyx_evy [metadata] author = TiZYX -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/tizyx_evy_1.0.inst.cfg b/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg similarity index 87% rename from resources/variants/tizyx_evy_1.0.inst.cfg rename to resources/variants/tizyx/tizyx_evy_1.0.inst.cfg index 69ca4a36ae..040840898a 100644 --- a/resources/variants/tizyx_evy_1.0.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = tizyx_evy name = 1.0mm version = 4 -definition = tizyx_evy [metadata] author = TiZYX -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/tizyx_evy_dual_classic.inst.cfg b/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg similarity index 77% rename from resources/variants/tizyx_evy_dual_classic.inst.cfg rename to resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg index c05b0f2a0a..42c8a0cd1a 100644 --- a/resources/variants/tizyx_evy_dual_classic.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg @@ -1,15 +1,16 @@ [general] +definition = tizyx_evy_dual name = Classic Extruder version = 4 -definition = tizyx_evy_dual [metadata] author = TiZYX -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 switch_extruder_retraction_amount = 100 -switch_extruder_retraction_speeds = 70 \ No newline at end of file +switch_extruder_retraction_speeds = 70 + diff --git a/resources/variants/tizyx_evy_dual_direct_drive.inst.cfg b/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg similarity index 77% rename from resources/variants/tizyx_evy_dual_direct_drive.inst.cfg rename to resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg index 24f9f3dfd5..e9174895d6 100644 --- a/resources/variants/tizyx_evy_dual_direct_drive.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg @@ -1,15 +1,16 @@ [general] +definition = tizyx_evy_dual name = Direct Drive version = 4 -definition = tizyx_evy_dual [metadata] author = TiZYX -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 switch_extruder_retraction_amount = 72 -switch_extruder_retraction_speeds = 70 \ No newline at end of file +switch_extruder_retraction_speeds = 70 + diff --git a/resources/variants/tizyx_k25_0.2.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg similarity index 86% rename from resources/variants/tizyx_k25_0.2.inst.cfg rename to resources/variants/tizyx/tizyx_k25_0.2.inst.cfg index 35be5a2381..1dac332589 100644 --- a/resources/variants/tizyx_k25_0.2.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = tizyx_k25 name = 0.2 mm version = 4 -definition = tizyx_k25 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/tizyx_k25_0.3.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg similarity index 86% rename from resources/variants/tizyx_k25_0.3.inst.cfg rename to resources/variants/tizyx/tizyx_k25_0.3.inst.cfg index 142fa2167f..604408728f 100644 --- a/resources/variants/tizyx_k25_0.3.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = tizyx_k25 name = 0.3 mm version = 4 -definition = tizyx_k25 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/tizyx_k25_0.4.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg similarity index 86% rename from resources/variants/tizyx_k25_0.4.inst.cfg rename to resources/variants/tizyx/tizyx_k25_0.4.inst.cfg index 04e9691b81..74446c4ef1 100644 --- a/resources/variants/tizyx_k25_0.4.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = tizyx_k25 name = 0.4 mm version = 4 -definition = tizyx_k25 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/tizyx_k25_0.5.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg similarity index 87% rename from resources/variants/tizyx_k25_0.5.inst.cfg rename to resources/variants/tizyx/tizyx_k25_0.5.inst.cfg index 0745a76f45..cf95246908 100644 --- a/resources/variants/tizyx_k25_0.5.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg @@ -1,12 +1,12 @@ [general] +definition = tizyx_k25 name = 0.5 mm version = 4 -definition = tizyx_k25 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 diff --git a/resources/variants/tizyx_k25_0.6.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg similarity index 86% rename from resources/variants/tizyx_k25_0.6.inst.cfg rename to resources/variants/tizyx/tizyx_k25_0.6.inst.cfg index 348c27c694..3f700e6fc6 100644 --- a/resources/variants/tizyx_k25_0.6.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = tizyx_k25 name = 0.6 mm version = 4 -definition = tizyx_k25 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/tizyx_k25_0.8.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg similarity index 86% rename from resources/variants/tizyx_k25_0.8.inst.cfg rename to resources/variants/tizyx/tizyx_k25_0.8.inst.cfg index a245060e34..f384dbc514 100644 --- a/resources/variants/tizyx_k25_0.8.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = tizyx_k25 name = 0.8 mm version = 4 -definition = tizyx_k25 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/tizyx_k25_1.0.inst.cfg b/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg similarity index 86% rename from resources/variants/tizyx_k25_1.0.inst.cfg rename to resources/variants/tizyx/tizyx_k25_1.0.inst.cfg index 9701fb8088..85341749fa 100644 --- a/resources/variants/tizyx_k25_1.0.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = tizyx_k25 name = 1.0 mm version = 4 -definition = tizyx_k25 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/tronxy_d01_0.2.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg similarity index 78% rename from resources/variants/tronxy_d01_0.2.inst.cfg rename to resources/variants/tronxy/tronxy_d01_0.2.inst.cfg index fee8a43487..40a1d23b46 100644 --- a/resources/variants/tronxy_d01_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_d01 name = 0.2mm Nozzle version = 4 -definition = tronxy_d01 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_d01_0.3.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg similarity index 78% rename from resources/variants/tronxy_d01_0.3.inst.cfg rename to resources/variants/tronxy/tronxy_d01_0.3.inst.cfg index fd25013953..9e04c91659 100644 --- a/resources/variants/tronxy_d01_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_d01 name = 0.3mm Nozzle version = 4 -definition = tronxy_d01 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_d01_0.4.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg similarity index 78% rename from resources/variants/tronxy_d01_0.4.inst.cfg rename to resources/variants/tronxy/tronxy_d01_0.4.inst.cfg index 7d173aa327..a695a7b898 100644 --- a/resources/variants/tronxy_d01_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_d01 name = 0.4mm Nozzle version = 4 -definition = tronxy_d01 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_d01_0.5.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg similarity index 78% rename from resources/variants/tronxy_d01_0.5.inst.cfg rename to resources/variants/tronxy/tronxy_d01_0.5.inst.cfg index c20d840fdd..2fed2b9f4c 100644 --- a/resources/variants/tronxy_d01_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_d01 name = 0.5mm Nozzle version = 4 -definition = tronxy_d01 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_d01_0.6.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg similarity index 78% rename from resources/variants/tronxy_d01_0.6.inst.cfg rename to resources/variants/tronxy/tronxy_d01_0.6.inst.cfg index ac114eeb57..1c64d304f1 100644 --- a/resources/variants/tronxy_d01_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_d01 name = 0.6mm Nozzle version = 4 -definition = tronxy_d01 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_d01_0.8.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg similarity index 78% rename from resources/variants/tronxy_d01_0.8.inst.cfg rename to resources/variants/tronxy/tronxy_d01_0.8.inst.cfg index a94da31c6f..6a19699f34 100644 --- a/resources/variants/tronxy_d01_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_d01 name = 0.8mm Nozzle version = 4 -definition = tronxy_d01 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x5sa_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg similarity index 78% rename from resources/variants/tronxy_x5sa_0.2.inst.cfg rename to resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg index 5e230f29df..764aa1fe12 100644 --- a/resources/variants/tronxy_x5sa_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x5sa name = 0.2mm Nozzle version = 4 -definition = tronxy_x5sa [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x5sa_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg similarity index 78% rename from resources/variants/tronxy_x5sa_0.3.inst.cfg rename to resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg index 0c51e07fef..fb79bbcc37 100644 --- a/resources/variants/tronxy_x5sa_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x5sa name = 0.3mm Nozzle version = 4 -definition = tronxy_x5sa [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x5sa_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg similarity index 78% rename from resources/variants/tronxy_x5sa_0.4.inst.cfg rename to resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg index f8995e4844..2367710a73 100644 --- a/resources/variants/tronxy_x5sa_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x5sa name = 0.4mm Nozzle version = 4 -definition = tronxy_x5sa [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x5sa_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg similarity index 78% rename from resources/variants/tronxy_x5sa_0.5.inst.cfg rename to resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg index cdc7c8f6e7..78de9fbbf8 100644 --- a/resources/variants/tronxy_x5sa_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x5sa name = 0.5mm Nozzle version = 4 -definition = tronxy_x5sa [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x5sa_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg similarity index 78% rename from resources/variants/tronxy_x5sa_0.6.inst.cfg rename to resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg index 86d14ad460..902db8e378 100644 --- a/resources/variants/tronxy_x5sa_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x5sa name = 0.6mm Nozzle version = 4 -definition = tronxy_x5sa [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x5sa_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg similarity index 78% rename from resources/variants/tronxy_x5sa_0.8.inst.cfg rename to resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg index 5f1e69c69d..06cc0beb0f 100644 --- a/resources/variants/tronxy_x5sa_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x5sa name = 0.8mm Nozzle version = 4 -definition = tronxy_x5sa [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x5sa_400_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg similarity index 78% rename from resources/variants/tronxy_x5sa_400_0.2.inst.cfg rename to resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg index d2e987ae34..2789bd3714 100644 --- a/resources/variants/tronxy_x5sa_400_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x5sa_400 name = 0.2mm Nozzle version = 4 -definition = tronxy_x5sa_400 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x5sa_400_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg similarity index 78% rename from resources/variants/tronxy_x5sa_400_0.3.inst.cfg rename to resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg index 463b07ed5f..32dfae92e3 100644 --- a/resources/variants/tronxy_x5sa_400_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x5sa_400 name = 0.3mm Nozzle version = 4 -definition = tronxy_x5sa_400 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x5sa_400_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg similarity index 78% rename from resources/variants/tronxy_x5sa_400_0.4.inst.cfg rename to resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg index 43d4f49c98..a135b89579 100644 --- a/resources/variants/tronxy_x5sa_400_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x5sa_400 name = 0.4mm Nozzle version = 4 -definition = tronxy_x5sa_400 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x5sa_400_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg similarity index 78% rename from resources/variants/tronxy_x5sa_400_0.5.inst.cfg rename to resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg index 78f9a40462..76bbf7c4c2 100644 --- a/resources/variants/tronxy_x5sa_400_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x5sa_400 name = 0.5mm Nozzle version = 4 -definition = tronxy_x5sa_400 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x5sa_400_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg similarity index 78% rename from resources/variants/tronxy_x5sa_400_0.6.inst.cfg rename to resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg index 74cc85c53d..25aa27be37 100644 --- a/resources/variants/tronxy_x5sa_400_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x5sa_400 name = 0.6mm Nozzle version = 4 -definition = tronxy_x5sa_400 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x5sa_400_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg similarity index 78% rename from resources/variants/tronxy_x5sa_400_0.8.inst.cfg rename to resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg index 3a181e9736..efe536c1ce 100644 --- a/resources/variants/tronxy_x5sa_400_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x5sa_400 name = 0.8mm Nozzle version = 4 -definition = tronxy_x5sa_400 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x5sa_500_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg similarity index 78% rename from resources/variants/tronxy_x5sa_500_0.2.inst.cfg rename to resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg index 8426c56187..987aebfbed 100644 --- a/resources/variants/tronxy_x5sa_500_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x5sa_500 name = 0.2mm Nozzle version = 4 -definition = tronxy_x5sa_500 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x5sa_500_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg similarity index 78% rename from resources/variants/tronxy_x5sa_500_0.3.inst.cfg rename to resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg index f7ad7992b6..7c0dd2d648 100644 --- a/resources/variants/tronxy_x5sa_500_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x5sa_500 name = 0.3mm Nozzle version = 4 -definition = tronxy_x5sa_500 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x5sa_500_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg similarity index 78% rename from resources/variants/tronxy_x5sa_500_0.4.inst.cfg rename to resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg index c8ae427bfe..671ea01991 100644 --- a/resources/variants/tronxy_x5sa_500_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x5sa_500 name = 0.4mm Nozzle version = 4 -definition = tronxy_x5sa_500 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x5sa_500_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg similarity index 78% rename from resources/variants/tronxy_x5sa_500_0.5.inst.cfg rename to resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg index 69314b36e5..a275d9d7d9 100644 --- a/resources/variants/tronxy_x5sa_500_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x5sa_500 name = 0.5mm Nozzle version = 4 -definition = tronxy_x5sa_500 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x5sa_500_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg similarity index 78% rename from resources/variants/tronxy_x5sa_500_0.6.inst.cfg rename to resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg index fad8126356..a46103edaa 100644 --- a/resources/variants/tronxy_x5sa_500_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x5sa_500 name = 0.6mm Nozzle version = 4 -definition = tronxy_x5sa_500 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x5sa_500_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg similarity index 78% rename from resources/variants/tronxy_x5sa_500_0.8.inst.cfg rename to resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg index 83fa24c6b9..c9ff4eee7b 100644 --- a/resources/variants/tronxy_x5sa_500_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x5sa_500 name = 0.8mm Nozzle version = 4 -definition = tronxy_x5sa_500 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x_0.2.inst.cfg similarity index 77% rename from resources/variants/tronxy_x_0.2.inst.cfg rename to resources/variants/tronxy/tronxy_x_0.2.inst.cfg index db117834ee..804ee11837 100644 --- a/resources/variants/tronxy_x_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.2.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x name = 0.2mm Nozzle version = 4 -definition = tronxy_x [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x_0.3.inst.cfg similarity index 77% rename from resources/variants/tronxy_x_0.3.inst.cfg rename to resources/variants/tronxy/tronxy_x_0.3.inst.cfg index f9532f863b..ed1a34ccd4 100644 --- a/resources/variants/tronxy_x_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.3.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x name = 0.3mm Nozzle version = 4 -definition = tronxy_x [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x_0.4.inst.cfg similarity index 77% rename from resources/variants/tronxy_x_0.4.inst.cfg rename to resources/variants/tronxy/tronxy_x_0.4.inst.cfg index a15e34b475..30cdb91f79 100644 --- a/resources/variants/tronxy_x_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.4.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x name = 0.4mm Nozzle version = 4 -definition = tronxy_x [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x_0.5.inst.cfg similarity index 77% rename from resources/variants/tronxy_x_0.5.inst.cfg rename to resources/variants/tronxy/tronxy_x_0.5.inst.cfg index 6f34a8545b..5b637198c3 100644 --- a/resources/variants/tronxy_x_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.5.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x name = 0.5mm Nozzle version = 4 -definition = tronxy_x [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x_0.6.inst.cfg similarity index 77% rename from resources/variants/tronxy_x_0.6.inst.cfg rename to resources/variants/tronxy/tronxy_x_0.6.inst.cfg index 9380bc657b..6e48dc855e 100644 --- a/resources/variants/tronxy_x_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.6.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x name = 0.6mm Nozzle version = 4 -definition = tronxy_x [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_x_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x_0.8.inst.cfg similarity index 77% rename from resources/variants/tronxy_x_0.8.inst.cfg rename to resources/variants/tronxy/tronxy_x_0.8.inst.cfg index cb6b71ee54..8340de4d80 100644 --- a/resources/variants/tronxy_x_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.8.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_x name = 0.8mm Nozzle version = 4 -definition = tronxy_x [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_xy2_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg similarity index 78% rename from resources/variants/tronxy_xy2_0.2.inst.cfg rename to resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg index d550e039a6..c3f734e5c5 100644 --- a/resources/variants/tronxy_xy2_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy2 name = 0.2mm Nozzle version = 4 -definition = tronxy_xy2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_xy2_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg similarity index 78% rename from resources/variants/tronxy_xy2_0.3.inst.cfg rename to resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg index c668c44b94..f2abb657ad 100644 --- a/resources/variants/tronxy_xy2_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy2 name = 0.3mm Nozzle version = 4 -definition = tronxy_xy2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_xy2_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg similarity index 78% rename from resources/variants/tronxy_xy2_0.4.inst.cfg rename to resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg index b30bc50ba5..3f5a42d8e6 100644 --- a/resources/variants/tronxy_xy2_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy2 name = 0.4mm Nozzle version = 4 -definition = tronxy_xy2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_xy2_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg similarity index 78% rename from resources/variants/tronxy_xy2_0.5.inst.cfg rename to resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg index 99c4de482b..aa585f0f54 100644 --- a/resources/variants/tronxy_xy2_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy2 name = 0.5mm Nozzle version = 4 -definition = tronxy_xy2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_xy2_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg similarity index 78% rename from resources/variants/tronxy_xy2_0.6.inst.cfg rename to resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg index 347cb552ef..45edf49985 100644 --- a/resources/variants/tronxy_xy2_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy2 name = 0.6mm Nozzle version = 4 -definition = tronxy_xy2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_xy2_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg similarity index 78% rename from resources/variants/tronxy_xy2_0.8.inst.cfg rename to resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg index fecd30c7b4..36f2217782 100644 --- a/resources/variants/tronxy_xy2_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy2 name = 0.8mm Nozzle version = 4 -definition = tronxy_xy2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_xy2pro_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg similarity index 78% rename from resources/variants/tronxy_xy2pro_0.2.inst.cfg rename to resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg index 132aaa2563..e37c5d62ad 100644 --- a/resources/variants/tronxy_xy2pro_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy2pro name = 0.2mm Nozzle version = 4 -definition = tronxy_xy2pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_xy2pro_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg similarity index 78% rename from resources/variants/tronxy_xy2pro_0.3.inst.cfg rename to resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg index 866844793f..1b75373c94 100644 --- a/resources/variants/tronxy_xy2pro_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy2pro name = 0.3mm Nozzle version = 4 -definition = tronxy_xy2pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_xy2pro_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg similarity index 90% rename from resources/variants/tronxy_xy2pro_0.4.inst.cfg rename to resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg index 5e1b808148..8d7eea1d9a 100644 --- a/resources/variants/tronxy_xy2pro_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy2pro name = 0.4mm Nozzle version = 4 -definition = tronxy_xy2pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 -zig_zaggify_infill = True retraction_combing = noskin +zig_zaggify_infill = True + diff --git a/resources/variants/tronxy_xy2pro_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg similarity index 78% rename from resources/variants/tronxy_xy2pro_0.5.inst.cfg rename to resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg index 7c99ccb0a0..8a3044a9d9 100644 --- a/resources/variants/tronxy_xy2pro_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy2pro name = 0.5mm Nozzle version = 4 -definition = tronxy_xy2pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_xy2pro_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg similarity index 78% rename from resources/variants/tronxy_xy2pro_0.6.inst.cfg rename to resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg index 0b092d1f3c..8630fdcc7d 100644 --- a/resources/variants/tronxy_xy2pro_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy2pro name = 0.6mm Nozzle version = 4 -definition = tronxy_xy2pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_xy2pro_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg similarity index 78% rename from resources/variants/tronxy_xy2pro_0.8.inst.cfg rename to resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg index 545a200b78..e8b980bc7e 100644 --- a/resources/variants/tronxy_xy2pro_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy2pro name = 0.8mm Nozzle version = 4 -definition = tronxy_xy2pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_xy3_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg similarity index 78% rename from resources/variants/tronxy_xy3_0.2.inst.cfg rename to resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg index fdaea0cb8b..821ef65fc0 100644 --- a/resources/variants/tronxy_xy3_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy3 name = 0.2mm Nozzle version = 4 -definition = tronxy_xy3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_xy3_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg similarity index 78% rename from resources/variants/tronxy_xy3_0.3.inst.cfg rename to resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg index 8f62502c51..c5bd4ce26c 100644 --- a/resources/variants/tronxy_xy3_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy3 name = 0.3mm Nozzle version = 4 -definition = tronxy_xy3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_xy3_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg similarity index 78% rename from resources/variants/tronxy_xy3_0.4.inst.cfg rename to resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg index efbbf96fb0..462cfdd08b 100644 --- a/resources/variants/tronxy_xy3_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy3 name = 0.4mm Nozzle version = 4 -definition = tronxy_xy3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_xy3_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg similarity index 78% rename from resources/variants/tronxy_xy3_0.5.inst.cfg rename to resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg index 12cd038287..12325f6474 100644 --- a/resources/variants/tronxy_xy3_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy3 name = 0.5mm Nozzle version = 4 -definition = tronxy_xy3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_xy3_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg similarity index 78% rename from resources/variants/tronxy_xy3_0.6.inst.cfg rename to resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg index 68a744beb6..cc667ce66b 100644 --- a/resources/variants/tronxy_xy3_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy3 name = 0.6mm Nozzle version = 4 -definition = tronxy_xy3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_xy3_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg similarity index 78% rename from resources/variants/tronxy_xy3_0.8.inst.cfg rename to resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg index a78bb13a79..706eba90f9 100644 --- a/resources/variants/tronxy_xy3_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy3 name = 0.8mm Nozzle version = 4 -definition = tronxy_xy3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_xy3proV2_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg similarity index 78% rename from resources/variants/tronxy_xy3proV2_0.2.inst.cfg rename to resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg index 73ae380b84..48a16c2686 100644 --- a/resources/variants/tronxy_xy3proV2_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy3proV2 name = 0.2mm Nozzle version = 4 -definition = tronxy_xy3proV2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_xy3proV2_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg similarity index 78% rename from resources/variants/tronxy_xy3proV2_0.3.inst.cfg rename to resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg index 26e062e33d..c3c9f85b98 100644 --- a/resources/variants/tronxy_xy3proV2_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy3proV2 name = 0.3mm Nozzle version = 4 -definition = tronxy_xy3proV2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_xy3proV2_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg similarity index 78% rename from resources/variants/tronxy_xy3proV2_0.4.inst.cfg rename to resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg index 97706ddb48..db81b08c2a 100644 --- a/resources/variants/tronxy_xy3proV2_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy3proV2 name = 0.4mm Nozzle version = 4 -definition = tronxy_xy3proV2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_xy3proV2_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg similarity index 78% rename from resources/variants/tronxy_xy3proV2_0.5.inst.cfg rename to resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg index 6aa7f21c84..0cf66885ff 100644 --- a/resources/variants/tronxy_xy3proV2_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy3proV2 name = 0.5mm Nozzle version = 4 -definition = tronxy_xy3proV2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_xy3proV2_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg similarity index 78% rename from resources/variants/tronxy_xy3proV2_0.6.inst.cfg rename to resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg index 593752d47e..bee63cb671 100644 --- a/resources/variants/tronxy_xy3proV2_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy3proV2 name = 0.6mm Nozzle version = 4 -definition = tronxy_xy3proV2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/tronxy_xy3proV2_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg similarity index 78% rename from resources/variants/tronxy_xy3proV2_0.8.inst.cfg rename to resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg index c4985f67b2..b4b8fcaaf7 100644 --- a/resources/variants/tronxy_xy3proV2_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg @@ -1,14 +1,15 @@ [general] +definition = tronxy_xy3proV2 name = 0.8mm Nozzle version = 4 -definition = tronxy_xy3proV2 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 +retraction_combing = noskin zig_zaggify_infill = True -retraction_combing = noskin \ No newline at end of file + diff --git a/resources/variants/two_trees_base_0.2.inst.cfg b/resources/variants/two_trees/two_trees_base_0.2.inst.cfg similarity index 87% rename from resources/variants/two_trees_base_0.2.inst.cfg rename to resources/variants/two_trees/two_trees_base_0.2.inst.cfg index 5148f824a3..b0b48054fa 100644 --- a/resources/variants/two_trees_base_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_base name = 0.2mm Nozzle version = 4 -definition = two_trees_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/two_trees_base_0.3.inst.cfg b/resources/variants/two_trees/two_trees_base_0.3.inst.cfg similarity index 87% rename from resources/variants/two_trees_base_0.3.inst.cfg rename to resources/variants/two_trees/two_trees_base_0.3.inst.cfg index b6052e4e24..bf4c206b70 100644 --- a/resources/variants/two_trees_base_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_base name = 0.3mm Nozzle version = 4 -definition = two_trees_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/two_trees_base_0.4.inst.cfg b/resources/variants/two_trees/two_trees_base_0.4.inst.cfg similarity index 87% rename from resources/variants/two_trees_base_0.4.inst.cfg rename to resources/variants/two_trees/two_trees_base_0.4.inst.cfg index fbeefc7d30..50b64732fa 100644 --- a/resources/variants/two_trees_base_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_base name = 0.4mm Nozzle version = 4 -definition = two_trees_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/two_trees_base_0.5.inst.cfg b/resources/variants/two_trees/two_trees_base_0.5.inst.cfg similarity index 87% rename from resources/variants/two_trees_base_0.5.inst.cfg rename to resources/variants/two_trees/two_trees_base_0.5.inst.cfg index 5aa7cfa833..dda348b557 100644 --- a/resources/variants/two_trees_base_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_base name = 0.5mm Nozzle version = 4 -definition = two_trees_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/two_trees_base_0.6.inst.cfg b/resources/variants/two_trees/two_trees_base_0.6.inst.cfg similarity index 87% rename from resources/variants/two_trees_base_0.6.inst.cfg rename to resources/variants/two_trees/two_trees_base_0.6.inst.cfg index 32fee11939..e5e503c2af 100644 --- a/resources/variants/two_trees_base_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_base name = 0.6mm Nozzle version = 4 -definition = two_trees_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/two_trees_base_0.8.inst.cfg b/resources/variants/two_trees/two_trees_base_0.8.inst.cfg similarity index 87% rename from resources/variants/two_trees_base_0.8.inst.cfg rename to resources/variants/two_trees/two_trees_base_0.8.inst.cfg index c1b5ceac5f..dd80346549 100644 --- a/resources/variants/two_trees_base_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_base name = 0.8mm Nozzle version = 4 -definition = two_trees_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/two_trees_base_1.0.inst.cfg b/resources/variants/two_trees/two_trees_base_1.0.inst.cfg similarity index 87% rename from resources/variants/two_trees_base_1.0.inst.cfg rename to resources/variants/two_trees/two_trees_base_1.0.inst.cfg index 72b7d37d5c..2f33edf8b3 100644 --- a/resources/variants/two_trees_base_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_base name = 1.0mm Nozzle version = 4 -definition = two_trees_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/two_trees_bluer_0.2.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg similarity index 87% rename from resources/variants/two_trees_bluer_0.2.inst.cfg rename to resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg index 53db8f015c..42273edd7a 100644 --- a/resources/variants/two_trees_bluer_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_bluer name = 0.2mm Nozzle version = 4 -definition = two_trees_bluer [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/two_trees_bluer_0.3.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg similarity index 87% rename from resources/variants/two_trees_bluer_0.3.inst.cfg rename to resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg index 2dca30b545..c0a5591e09 100644 --- a/resources/variants/two_trees_bluer_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_bluer name = 0.3mm Nozzle version = 4 -definition = two_trees_bluer [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/two_trees_bluer_0.4.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg similarity index 87% rename from resources/variants/two_trees_bluer_0.4.inst.cfg rename to resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg index a39681804f..9e2c0077f7 100644 --- a/resources/variants/two_trees_bluer_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_bluer name = 0.4mm Nozzle version = 4 -definition = two_trees_bluer [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/two_trees_bluer_0.5.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg similarity index 87% rename from resources/variants/two_trees_bluer_0.5.inst.cfg rename to resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg index 41f57358cf..170fa9abb5 100644 --- a/resources/variants/two_trees_bluer_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_bluer name = 0.5mm Nozzle version = 4 -definition = two_trees_bluer [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/two_trees_bluer_0.6.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg similarity index 87% rename from resources/variants/two_trees_bluer_0.6.inst.cfg rename to resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg index 456c5334ac..008606f0b8 100644 --- a/resources/variants/two_trees_bluer_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_bluer name = 0.6mm Nozzle version = 4 -definition = two_trees_bluer [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/two_trees_bluer_0.8.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg similarity index 87% rename from resources/variants/two_trees_bluer_0.8.inst.cfg rename to resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg index b71d3889ac..a25a5f275d 100644 --- a/resources/variants/two_trees_bluer_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_bluer name = 0.8mm Nozzle version = 4 -definition = two_trees_bluer [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/two_trees_bluer_1.0.inst.cfg b/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg similarity index 87% rename from resources/variants/two_trees_bluer_1.0.inst.cfg rename to resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg index c8b34940f1..e6286486de 100644 --- a/resources/variants/two_trees_bluer_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_bluer name = 1.0mm Nozzle version = 4 -definition = two_trees_bluer [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/two_trees_bluerplus_0.2.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg similarity index 87% rename from resources/variants/two_trees_bluerplus_0.2.inst.cfg rename to resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg index 2b501cf420..f3de8c6d99 100644 --- a/resources/variants/two_trees_bluerplus_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_bluerplus name = 0.2mm Nozzle version = 4 -definition = two_trees_bluerplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/two_trees_bluerplus_0.3.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg similarity index 87% rename from resources/variants/two_trees_bluerplus_0.3.inst.cfg rename to resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg index 22433ee694..d7d8be1d68 100644 --- a/resources/variants/two_trees_bluerplus_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_bluerplus name = 0.3mm Nozzle version = 4 -definition = two_trees_bluerplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/two_trees_bluerplus_0.4.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg similarity index 87% rename from resources/variants/two_trees_bluerplus_0.4.inst.cfg rename to resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg index ce0a6c028f..25d8a264ca 100644 --- a/resources/variants/two_trees_bluerplus_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_bluerplus name = 0.4mm Nozzle version = 4 -definition = two_trees_bluerplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/two_trees_bluerplus_0.5.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg similarity index 87% rename from resources/variants/two_trees_bluerplus_0.5.inst.cfg rename to resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg index cb8ed82ccf..92f0c6323c 100644 --- a/resources/variants/two_trees_bluerplus_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_bluerplus name = 0.5mm Nozzle version = 4 -definition = two_trees_bluerplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/two_trees_bluerplus_0.6.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg similarity index 87% rename from resources/variants/two_trees_bluerplus_0.6.inst.cfg rename to resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg index ebf50205fa..4b0255019d 100644 --- a/resources/variants/two_trees_bluerplus_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_bluerplus name = 0.6mm Nozzle version = 4 -definition = two_trees_bluerplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/two_trees_bluerplus_0.8.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg similarity index 87% rename from resources/variants/two_trees_bluerplus_0.8.inst.cfg rename to resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg index a4289dbff8..9e6e78f7fc 100644 --- a/resources/variants/two_trees_bluerplus_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_bluerplus name = 0.8mm Nozzle version = 4 -definition = two_trees_bluerplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/two_trees_bluerplus_1.0.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg similarity index 87% rename from resources/variants/two_trees_bluerplus_1.0.inst.cfg rename to resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg index 82e1daeaa2..c8f50ab926 100644 --- a/resources/variants/two_trees_bluerplus_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_bluerplus name = 1.0mm Nozzle version = 4 -definition = two_trees_bluerplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/two_trees_sapphireplus_0.2.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg similarity index 88% rename from resources/variants/two_trees_sapphireplus_0.2.inst.cfg rename to resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg index dc43e2bd2d..a2a849dd6a 100644 --- a/resources/variants/two_trees_sapphireplus_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_sapphireplus name = 0.2mm Nozzle version = 4 -definition = two_trees_sapphireplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/two_trees_sapphireplus_0.3.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg similarity index 88% rename from resources/variants/two_trees_sapphireplus_0.3.inst.cfg rename to resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg index 84a48f4913..9e0ff0f8f1 100644 --- a/resources/variants/two_trees_sapphireplus_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_sapphireplus name = 0.3mm Nozzle version = 4 -definition = two_trees_sapphireplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/two_trees_sapphireplus_0.4.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg similarity index 88% rename from resources/variants/two_trees_sapphireplus_0.4.inst.cfg rename to resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg index a6d9015497..7ec834604c 100644 --- a/resources/variants/two_trees_sapphireplus_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_sapphireplus name = 0.4mm Nozzle version = 4 -definition = two_trees_sapphireplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/two_trees_sapphireplus_0.5.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg similarity index 88% rename from resources/variants/two_trees_sapphireplus_0.5.inst.cfg rename to resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg index 81d1033eaa..0f25445187 100644 --- a/resources/variants/two_trees_sapphireplus_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_sapphireplus name = 0.5mm Nozzle version = 4 -definition = two_trees_sapphireplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/two_trees_sapphireplus_0.6.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg similarity index 88% rename from resources/variants/two_trees_sapphireplus_0.6.inst.cfg rename to resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg index 0f812edf0d..ea4f869435 100644 --- a/resources/variants/two_trees_sapphireplus_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_sapphireplus name = 0.6mm Nozzle version = 4 -definition = two_trees_sapphireplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/two_trees_sapphireplus_0.8.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg similarity index 88% rename from resources/variants/two_trees_sapphireplus_0.8.inst.cfg rename to resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg index c01761cff9..4d8a971361 100644 --- a/resources/variants/two_trees_sapphireplus_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_sapphireplus name = 0.8mm Nozzle version = 4 -definition = two_trees_sapphireplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/two_trees_sapphireplus_1.0.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg similarity index 88% rename from resources/variants/two_trees_sapphireplus_1.0.inst.cfg rename to resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg index 892893422a..7366f7cef9 100644 --- a/resources/variants/two_trees_sapphireplus_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_sapphireplus name = 1.0mm Nozzle version = 4 -definition = two_trees_sapphireplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/two_trees_sapphirepro_0.2.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg similarity index 88% rename from resources/variants/two_trees_sapphirepro_0.2.inst.cfg rename to resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg index 56d1bd1f7a..09083d9c7d 100644 --- a/resources/variants/two_trees_sapphirepro_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_sapphirepro name = 0.2mm Nozzle version = 4 -definition = two_trees_sapphirepro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/two_trees_sapphirepro_0.3.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg similarity index 88% rename from resources/variants/two_trees_sapphirepro_0.3.inst.cfg rename to resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg index 42390d30e0..4167cead95 100644 --- a/resources/variants/two_trees_sapphirepro_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_sapphirepro name = 0.3mm Nozzle version = 4 -definition = two_trees_sapphirepro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/two_trees_sapphirepro_0.4.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg similarity index 88% rename from resources/variants/two_trees_sapphirepro_0.4.inst.cfg rename to resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg index fabcae2e43..50fba07f50 100644 --- a/resources/variants/two_trees_sapphirepro_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_sapphirepro name = 0.4mm Nozzle version = 4 -definition = two_trees_sapphirepro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/two_trees_sapphirepro_0.5.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg similarity index 88% rename from resources/variants/two_trees_sapphirepro_0.5.inst.cfg rename to resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg index 7fe73475cc..df8b31288a 100644 --- a/resources/variants/two_trees_sapphirepro_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_sapphirepro name = 0.5mm Nozzle version = 4 -definition = two_trees_sapphirepro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/two_trees_sapphirepro_0.6.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg similarity index 88% rename from resources/variants/two_trees_sapphirepro_0.6.inst.cfg rename to resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg index 4acba1310d..b82025b8ae 100644 --- a/resources/variants/two_trees_sapphirepro_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_sapphirepro name = 0.6mm Nozzle version = 4 -definition = two_trees_sapphirepro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/two_trees_sapphirepro_0.8.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg similarity index 88% rename from resources/variants/two_trees_sapphirepro_0.8.inst.cfg rename to resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg index 540d8b650c..775e46775d 100644 --- a/resources/variants/two_trees_sapphirepro_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_sapphirepro name = 0.8mm Nozzle version = 4 -definition = two_trees_sapphirepro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/two_trees_sapphirepro_1.0.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg similarity index 88% rename from resources/variants/two_trees_sapphirepro_1.0.inst.cfg rename to resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg index e0b8c76ef0..a6e6680209 100644 --- a/resources/variants/two_trees_sapphirepro_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = two_trees_sapphirepro name = 1.0mm Nozzle version = 4 -definition = two_trees_sapphirepro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg index 65096d0998..0e6d8e2cf4 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg @@ -1,14 +1,16 @@ [general] +definition = ultimaker2_extended_olsson name = 0.25 mm version = 4 -definition = ultimaker2_extended_olsson [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +cool_min_layer_time = 0 machine_nozzle_size = 0.25 machine_nozzle_tip_outer_diameter = 0.8 -wall_thickness = =wall_line_width_0 + wall_line_width_x * 2 \ No newline at end of file +wall_thickness = =wall_line_width_0 + wall_line_width_x * 2 + diff --git a/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg index 9da8810ee2..3edc01a2fa 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = ultimaker2_extended_olsson name = 0.4 mm version = 4 -definition = ultimaker2_extended_olsson [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 machine_nozzle_tip_outer_diameter = 1.05 + diff --git a/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg index 9b8b5aff45..2694d2b862 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = ultimaker2_extended_olsson name = 0.6 mm version = 4 -definition = ultimaker2_extended_olsson [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 machine_nozzle_tip_outer_diameter = 1.25 + diff --git a/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg index 8026843c77..66806f698d 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = ultimaker2_extended_olsson name = 0.8 mm version = 4 -definition = ultimaker2_extended_olsson [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 1.35 + diff --git a/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg index 0a33c25f3f..79d87fc124 100644 --- a/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg @@ -1,19 +1,21 @@ [general] +definition = ultimaker2_extended_plus name = 0.25 mm version = 4 -definition = ultimaker2_extended_plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +coasting_min_volume = 0.17 +coasting_volume = 0.1 +cool_min_layer_time = 0 machine_nozzle_size = 0.25 machine_nozzle_tip_outer_diameter = 0.8 -coasting_volume = 0.1 -coasting_min_volume = 0.17 +speed_topbottom = =round(speed_print / 1.5, 1) speed_wall = =round(speed_print / 1.2, 1) speed_wall_0 = =1 if speed_wall < 5 else (speed_wall - 5) -speed_topbottom = =round(speed_print / 1.5, 1) wall_thickness = =wall_line_width_0 + wall_line_width_x * 2 + diff --git a/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg index dc723040d5..cfdb8d8cb3 100644 --- a/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg @@ -1,16 +1,17 @@ [general] +definition = ultimaker2_extended_plus name = 0.4 mm version = 4 -definition = ultimaker2_extended_plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 machine_nozzle_tip_outer_diameter = 1.05 +speed_topbottom = =round(speed_print / 2.25, 1) speed_wall = =round(speed_print / 1.25, 1) speed_wall_0 = =1 if speed_wall < 10 else (speed_wall - 10) -speed_topbottom = =round(speed_print / 2.25, 1) + diff --git a/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg index a6b886b39d..66aa764c60 100644 --- a/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg @@ -1,17 +1,18 @@ [general] +definition = ultimaker2_extended_plus name = 0.6 mm version = 4 -definition = ultimaker2_extended_plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +coasting_volume = 1.36 machine_nozzle_size = 0.6 machine_nozzle_tip_outer_diameter = 1.25 -coasting_volume = 1.36 +speed_topbottom = =round(speed_print / 2, 1) speed_wall = =round(speed_print * 4 / 3, 1) speed_wall_0 = =1 if speed_wall < 10 else (speed_wall - 10) -speed_topbottom = =round(speed_print / 2, 1) + diff --git a/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg index b017797143..bccd63f423 100644 --- a/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg @@ -1,17 +1,18 @@ [general] +definition = ultimaker2_extended_plus name = 0.8 mm version = 4 -definition = ultimaker2_extended_plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +coasting_volume = 3.22 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 1.35 -coasting_volume = 3.22 +speed_topbottom = =round(speed_print / 2, 1) speed_wall = =round(speed_print * 4 / 3, 1) speed_wall_0 = =1 if speed_wall < 10 else (speed_wall - 10) -speed_topbottom = =round(speed_print / 2, 1) + diff --git a/resources/variants/ultimaker2_olsson_0.25.inst.cfg b/resources/variants/ultimaker2_olsson_0.25.inst.cfg index 7159b97081..8b759962ed 100644 --- a/resources/variants/ultimaker2_olsson_0.25.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.25.inst.cfg @@ -1,15 +1,17 @@ [general] +definition = ultimaker2_olsson name = 0.25 mm version = 4 -definition = ultimaker2_olsson [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +cool_min_layer_time = 0 machine_nozzle_size = 0.25 machine_nozzle_tip_outer_diameter = 0.8 raft_airgap = 0.25 -wall_thickness = =wall_line_width_0 + wall_line_width_x * 2 \ No newline at end of file +wall_thickness = =wall_line_width_0 + wall_line_width_x * 2 + diff --git a/resources/variants/ultimaker2_olsson_0.4.inst.cfg b/resources/variants/ultimaker2_olsson_0.4.inst.cfg index 076a12c9f0..650782d9c9 100644 --- a/resources/variants/ultimaker2_olsson_0.4.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.4.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = ultimaker2_olsson name = 0.4 mm version = 4 -definition = ultimaker2_olsson [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 machine_nozzle_tip_outer_diameter = 1.05 + diff --git a/resources/variants/ultimaker2_olsson_0.6.inst.cfg b/resources/variants/ultimaker2_olsson_0.6.inst.cfg index 58364b1c9a..646aba5b0b 100644 --- a/resources/variants/ultimaker2_olsson_0.6.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.6.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = ultimaker2_olsson name = 0.6 mm version = 4 -definition = ultimaker2_olsson [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 machine_nozzle_tip_outer_diameter = 1.25 + diff --git a/resources/variants/ultimaker2_olsson_0.8.inst.cfg b/resources/variants/ultimaker2_olsson_0.8.inst.cfg index 335242a51e..77c689c8c3 100644 --- a/resources/variants/ultimaker2_olsson_0.8.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.8.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = ultimaker2_olsson name = 0.8 mm version = 4 -definition = ultimaker2_olsson [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 1.35 + diff --git a/resources/variants/ultimaker2_plus_0.25.inst.cfg b/resources/variants/ultimaker2_plus_0.25.inst.cfg index 15cbe91229..106a1cde2a 100644 --- a/resources/variants/ultimaker2_plus_0.25.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.25.inst.cfg @@ -1,20 +1,22 @@ [general] +definition = ultimaker2_plus name = 0.25 mm version = 4 -definition = ultimaker2_plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] coasting_min_volume = 0.17 coasting_volume = 0.1 +cool_min_layer_time = 0 machine_nozzle_size = 0.25 machine_nozzle_tip_outer_diameter = 0.8 raft_airgap = 0.25 speed_topbottom = =round(speed_print / 1.5, 1) speed_wall = =round(speed_print / 1.2, 1) speed_wall_0 = =1 if speed_wall < 5 else (speed_wall - 5) -wall_thickness = =wall_line_width_0 + wall_line_width_x * 2 \ No newline at end of file +wall_thickness = =wall_line_width_0 + wall_line_width_x * 2 + diff --git a/resources/variants/ultimaker2_plus_0.4.inst.cfg b/resources/variants/ultimaker2_plus_0.4.inst.cfg index 8eb717bc7b..22ef7d7858 100644 --- a/resources/variants/ultimaker2_plus_0.4.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.4.inst.cfg @@ -1,16 +1,17 @@ [general] +definition = ultimaker2_plus name = 0.4 mm version = 4 -definition = ultimaker2_plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 machine_nozzle_tip_outer_diameter = 1.05 +speed_topbottom = =round(speed_print / 2.25, 1) speed_wall = =round(speed_print / 1.25, 1) speed_wall_0 = =max(speed_wall - 10, 1) -speed_topbottom = =round(speed_print / 2.25, 1) + diff --git a/resources/variants/ultimaker2_plus_0.6.inst.cfg b/resources/variants/ultimaker2_plus_0.6.inst.cfg index 550f823619..41c589f878 100644 --- a/resources/variants/ultimaker2_plus_0.6.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.6.inst.cfg @@ -1,17 +1,18 @@ [general] +definition = ultimaker2_plus name = 0.6 mm version = 4 -definition = ultimaker2_plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +coasting_volume = 1.36 machine_nozzle_size = 0.6 machine_nozzle_tip_outer_diameter = 1.25 -coasting_volume = 1.36 +speed_topbottom = =round(speed_print / 2, 1) speed_wall = =round(speed_print * 4 / 3, 1) speed_wall_0 = =1 if speed_wall < 10 else (speed_wall - 10) -speed_topbottom = =round(speed_print / 2, 1) + diff --git a/resources/variants/ultimaker2_plus_0.8.inst.cfg b/resources/variants/ultimaker2_plus_0.8.inst.cfg index 38b34c4c13..5eeaef9576 100644 --- a/resources/variants/ultimaker2_plus_0.8.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.8.inst.cfg @@ -1,17 +1,18 @@ [general] +definition = ultimaker2_plus name = 0.8 mm version = 4 -definition = ultimaker2_plus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +coasting_volume = 3.22 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 1.35 -coasting_volume = 3.22 +speed_topbottom = =round(speed_print / 2, 1) speed_wall = =round(speed_print * 4 / 3, 1) speed_wall_0 = =1 if speed_wall < 10 else (speed_wall - 10) -speed_topbottom = =round(speed_print / 2, 1) + diff --git a/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg index 06bc0da879..dc909a7155 100644 --- a/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg @@ -1,16 +1,17 @@ [general] +definition = ultimaker2_plus_connect name = 0.25 mm version = 4 -definition = ultimaker2_plus_connect [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] coasting_min_volume = 0.17 coasting_volume = 0.1 +cool_min_layer_time = 0 machine_nozzle_size = 0.25 machine_nozzle_tip_outer_diameter = 0.8 raft_airgap = 0.25 @@ -18,4 +19,5 @@ retraction_prime_speed = =retraction_speed speed_topbottom = =round(speed_print / 1.5, 1) speed_wall = =round(speed_print / 1.2, 1) speed_wall_0 = =1 if speed_wall < 5 else (speed_wall - 5) -wall_thickness = =wall_line_width_0 + wall_line_width_x * 2 \ No newline at end of file +wall_thickness = =wall_line_width_0 + wall_line_width_x * 2 + diff --git a/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg index c02b4421e7..f4da1e9bc8 100644 --- a/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg @@ -1,16 +1,17 @@ [general] +definition = ultimaker2_plus_connect name = 0.4 mm version = 4 -definition = ultimaker2_plus_connect [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 machine_nozzle_tip_outer_diameter = 1.05 +speed_topbottom = =round(speed_print / 2.25, 1) speed_wall = =round(speed_print / 1.25, 1) speed_wall_0 = =max(speed_wall - 10, 1) -speed_topbottom = =round(speed_print / 2.25, 1) + diff --git a/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg index 51217bc7b4..efb4f98609 100644 --- a/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg @@ -1,17 +1,18 @@ [general] +definition = ultimaker2_plus_connect name = 0.6 mm version = 4 -definition = ultimaker2_plus_connect [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +coasting_volume = 1.36 machine_nozzle_size = 0.6 machine_nozzle_tip_outer_diameter = 1.25 -coasting_volume = 1.36 +speed_topbottom = =round(speed_print / 2, 1) speed_wall = =round(speed_print * 3 / 4, 1) speed_wall_0 = =1 if speed_wall < 10 else (speed_wall - 10) -speed_topbottom = =round(speed_print / 2, 1) + diff --git a/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg index addfc28901..a4306331f1 100644 --- a/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg @@ -1,19 +1,20 @@ [general] +definition = ultimaker2_plus_connect name = 0.8 mm version = 4 -definition = ultimaker2_plus_connect [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +coasting_volume = 3.22 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 1.35 -coasting_volume = 3.22 -retraction_speed = 25 retraction_prime_speed = =retraction_speed +retraction_speed = 25 +speed_topbottom = =round(speed_print / 2, 1) speed_wall = =round(speed_print * 3 / 4, 1) speed_wall_0 = =1 if speed_wall < 10 else (speed_wall - 10) -speed_topbottom = =round(speed_print / 2, 1) + diff --git a/resources/variants/ultimaker3_aa0.25.inst.cfg b/resources/variants/ultimaker3_aa0.25.inst.cfg index 79b8afeebd..1f1152ba41 100644 --- a/resources/variants/ultimaker3_aa0.25.inst.cfg +++ b/resources/variants/ultimaker3_aa0.25.inst.cfg @@ -1,35 +1,24 @@ [general] +definition = ultimaker3 name = AA 0.25 version = 4 -definition = ultimaker3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] brim_width = 7 -layer_height_0 = 0.17 +cool_min_layer_time = 0 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = AA 0.25 machine_nozzle_size = 0.25 machine_nozzle_tip_outer_diameter = 0.65 -material_final_print_temperature = =material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 5 -raft_airgap = 0.3 -raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2 -raft_interface_line_spacing = =raft_interface_line_width + 0.2 -raft_interface_line_width = =line_width * 2 -raft_interface_thickness = =layer_height * 1.5 -raft_jerk = =jerk_print -raft_margin = 15 -raft_surface_layers = 2 retraction_min_travel = 0.7 retraction_prime_speed = =retraction_speed skin_overlap = 15 -speed_layer_0 = 20 speed_print = 55 speed_topbottom = 20 speed_wall = =math.ceil(speed_print * 30 / 55) @@ -42,3 +31,4 @@ switch_extruder_retraction_amount = =machine_heat_zone_length top_bottom_thickness = 1.2 wall_thickness = =wall_line_width_0 + wall_line_width_x * 2 xy_offset_layer_0 = =(-0.2 if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset + diff --git a/resources/variants/ultimaker3_aa0.8.inst.cfg b/resources/variants/ultimaker3_aa0.8.inst.cfg index a5ae2a383e..40febf632f 100644 --- a/resources/variants/ultimaker3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_aa0.8.inst.cfg @@ -1,18 +1,16 @@ [general] +definition = ultimaker3 name = AA 0.8 version = 4 -definition = ultimaker3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] brim_width = 7 cool_fan_speed = 7 -cool_fan_speed_max = 100 -cool_min_speed = 5 default_material_print_temperature = 200 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' @@ -25,19 +23,15 @@ machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = AA 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 -material_final_print_temperature = =material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 5 -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_wipe_enabled = True -retract_at_layer_change = =not magic_spiralize +raft_surface_layers = 1 retraction_amount = 6.5 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 skin_overlap = 5 -speed_layer_0 = 20 speed_print = 35 speed_topbottom = =math.ceil(speed_print * 25 / 35) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) @@ -49,3 +43,4 @@ switch_extruder_prime_speed = 20 switch_extruder_retraction_amount = 16.5 top_bottom_thickness = 1.4 wall_0_inset = 0 + diff --git a/resources/variants/ultimaker3_aa04.inst.cfg b/resources/variants/ultimaker3_aa04.inst.cfg index 68a3a8768f..e9afd4620c 100644 --- a/resources/variants/ultimaker3_aa04.inst.cfg +++ b/resources/variants/ultimaker3_aa04.inst.cfg @@ -1,27 +1,18 @@ [general] +definition = ultimaker3 name = AA 0.4 version = 4 -definition = ultimaker3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] brim_width = 7 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = AA 0.4 machine_nozzle_tip_outer_diameter = 1.0 -raft_acceleration = =acceleration_print -raft_airgap = 0.3 -raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2 -raft_interface_line_spacing = =raft_interface_line_width + 0.2 -raft_interface_line_width = =line_width * 2 -raft_interface_thickness = =layer_height * 1.5 -raft_jerk = =jerk_print -raft_margin = 15 -raft_surface_layers = 2 retraction_amount = 6.5 retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed @@ -37,3 +28,4 @@ switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length top_bottom_thickness = 1.2 xy_offset_layer_0 = =(-0.2 if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset + diff --git a/resources/variants/ultimaker3_bb0.8.inst.cfg b/resources/variants/ultimaker3_bb0.8.inst.cfg index d0cc437b1b..6dedea2336 100644 --- a/resources/variants/ultimaker3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_bb0.8.inst.cfg @@ -1,22 +1,21 @@ [general] +definition = ultimaker3 name = BB 0.8 version = 4 -definition = ultimaker3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] acceleration_enabled = True acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 3500) acceleration_support = =math.ceil(acceleration_print * 2000 / 3500) -acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / 1500) +acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) brim_width = 3 cool_fan_speed = 50 -cool_min_speed = 5 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 @@ -28,32 +27,20 @@ machine_nozzle_id = BB 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 material_print_temperature = =default_material_print_temperature + 10 -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_wipe_enabled = True -raft_acceleration = =acceleration_layer_0 -raft_airgap = 0 -raft_base_speed = 20 -raft_base_thickness = 0.3 -raft_interface_line_spacing = 0.5 -raft_interface_line_width = 0.5 -raft_interface_speed = 20 -raft_interface_thickness = 0.2 -raft_margin = 10 -raft_speed = 25 raft_surface_layers = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 3 retraction_prime_speed = 15 skin_overlap = 5 -speed_layer_0 = 20 speed_prime_tower = =math.ceil(speed_print * 7 / 35) speed_print = 35 speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) +speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_angle = 60 support_bottom_height = =layer_height * 2 @@ -63,3 +50,4 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 12 top_bottom_thickness = 1 wall_0_inset = 0 + diff --git a/resources/variants/ultimaker3_bb04.inst.cfg b/resources/variants/ultimaker3_bb04.inst.cfg index 49837e24ea..50f49d8623 100644 --- a/resources/variants/ultimaker3_bb04.inst.cfg +++ b/resources/variants/ultimaker3_bb04.inst.cfg @@ -1,32 +1,28 @@ [general] +definition = ultimaker3 name = BB 0.4 version = 4 -definition = ultimaker3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 3500) acceleration_support = =math.ceil(acceleration_print * 2000 / 3500) -acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / 1500) -cool_fan_speed_max = =cool_fan_speed +acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = BB 0.4 machine_nozzle_tip_outer_diameter = 1.0 -raft_base_speed = 20 -raft_interface_speed = 20 -raft_speed = 25 retraction_min_travel = =3 * line_width -speed_layer_0 = 20 speed_prime_tower = =math.ceil(speed_print * 10 / 35) speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) +speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_bottom_height = =layer_height * 2 support_interface_enable = True switch_extruder_retraction_amount = 12 + diff --git a/resources/variants/ultimaker3_extended_aa0.25.inst.cfg b/resources/variants/ultimaker3_extended_aa0.25.inst.cfg index ea9b294671..44b669e781 100644 --- a/resources/variants/ultimaker3_extended_aa0.25.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa0.25.inst.cfg @@ -1,35 +1,24 @@ [general] +definition = ultimaker3_extended name = AA 0.25 version = 4 -definition = ultimaker3_extended [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] brim_width = 7 -layer_height_0 = 0.17 +cool_min_layer_time = 0 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = AA 0.25 machine_nozzle_size = 0.25 machine_nozzle_tip_outer_diameter = 0.65 -material_final_print_temperature = =material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 5 -raft_airgap = 0.3 -raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2 -raft_interface_line_spacing = =raft_interface_line_width + 0.2 -raft_interface_line_width = =line_width * 2 -raft_interface_thickness = =layer_height * 1.5 -raft_jerk = =jerk_print -raft_margin = 15 -raft_surface_layers = 2 retraction_min_travel = 0.7 retraction_prime_speed = =retraction_speed skin_overlap = 15 -speed_layer_0 = 20 speed_print = 55 speed_topbottom = 20 speed_wall = =math.ceil(speed_print * 30 / 55) @@ -41,4 +30,5 @@ switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length top_bottom_thickness = 1.2 wall_thickness = =wall_line_width_0 + wall_line_width_x * 2 -xy_offset_layer_0 = =(-0.2 if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file +xy_offset_layer_0 = =(-0.2 if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset + diff --git a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg index de525e3caf..6797523969 100644 --- a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg @@ -1,18 +1,16 @@ [general] +definition = ultimaker3_extended name = AA 0.8 version = 4 -definition = ultimaker3_extended [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] brim_width = 7 cool_fan_speed = 7 -cool_fan_speed_max = 100 -cool_min_speed = 5 default_material_print_temperature = 200 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' @@ -25,19 +23,15 @@ machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = AA 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 -material_final_print_temperature = =material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 5 -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_wipe_enabled = True -retract_at_layer_change = True +raft_surface_layers = 1 retraction_amount = 6.5 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 skin_overlap = 5 -speed_layer_0 = 20 speed_print = 35 speed_topbottom = =math.ceil(speed_print * 25 / 35) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) @@ -49,3 +43,4 @@ switch_extruder_prime_speed = 20 switch_extruder_retraction_amount = 16.5 top_bottom_thickness = 1.4 wall_0_inset = 0 + diff --git a/resources/variants/ultimaker3_extended_aa04.inst.cfg b/resources/variants/ultimaker3_extended_aa04.inst.cfg index e928d24745..ef66df6477 100644 --- a/resources/variants/ultimaker3_extended_aa04.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa04.inst.cfg @@ -1,27 +1,18 @@ [general] +definition = ultimaker3_extended name = AA 0.4 version = 4 -definition = ultimaker3_extended [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] brim_width = 7 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = AA 0.4 machine_nozzle_tip_outer_diameter = 1.0 -raft_acceleration = =acceleration_print -raft_airgap = 0.3 -raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2 -raft_interface_line_spacing = =raft_interface_line_width + 0.2 -raft_interface_line_width = =line_width * 2 -raft_interface_thickness = =layer_height * 1.5 -raft_jerk = =jerk_print -raft_margin = 15 -raft_surface_layers = 2 retraction_amount = 6.5 retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed @@ -36,4 +27,5 @@ support_z_distance = =layer_height * 2 switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length top_bottom_thickness = 1.2 -xy_offset_layer_0 = =(-0.2 if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset \ No newline at end of file +xy_offset_layer_0 = =(-0.2 if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset + diff --git a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg index 205ae4b0f2..319f101377 100644 --- a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg @@ -1,22 +1,21 @@ [general] +definition = ultimaker3_extended name = BB 0.8 version = 4 -definition = ultimaker3_extended [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] acceleration_enabled = True acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 3500) acceleration_support = =math.ceil(acceleration_print * 2000 / 3500) -acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / 1500) +acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) brim_width = 3 cool_fan_speed = 50 -cool_min_speed = 5 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 @@ -28,32 +27,20 @@ machine_nozzle_id = BB 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 material_print_temperature = =default_material_print_temperature + 10 -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_wipe_enabled = True -raft_acceleration = =acceleration_layer_0 -raft_airgap = 0 -raft_base_speed = 20 -raft_base_thickness = 0.3 -raft_interface_line_spacing = 0.5 -raft_interface_line_width = 0.5 -raft_interface_speed = 20 -raft_interface_thickness = 0.2 -raft_margin = 10 -raft_speed = 25 raft_surface_layers = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 3 retraction_prime_speed = 15 skin_overlap = 5 -speed_layer_0 = 20 speed_prime_tower = =math.ceil(speed_print * 7 / 35) speed_print = 35 speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) +speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_angle = 60 support_bottom_height = =layer_height * 2 @@ -63,3 +50,4 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 12 top_bottom_thickness = 1 wall_0_inset = 0 + diff --git a/resources/variants/ultimaker3_extended_bb04.inst.cfg b/resources/variants/ultimaker3_extended_bb04.inst.cfg index 94a687c951..12d45c483b 100644 --- a/resources/variants/ultimaker3_extended_bb04.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb04.inst.cfg @@ -1,32 +1,28 @@ [general] +definition = ultimaker3_extended name = BB 0.4 version = 4 -definition = ultimaker3_extended [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 3500) acceleration_support = =math.ceil(acceleration_print * 2000 / 3500) -acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / 1500) -cool_fan_speed_max = =cool_fan_speed +acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = BB 0.4 machine_nozzle_tip_outer_diameter = 1.0 -raft_base_speed = 20 -raft_interface_speed = 20 -raft_speed = 25 retraction_min_travel = =3 * line_width -speed_layer_0 = 20 speed_prime_tower = =math.ceil(speed_print * 10 / 35) speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) +speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_bottom_height = =layer_height * 2 support_interface_enable = True switch_extruder_retraction_amount = 12 + diff --git a/resources/variants/ultimaker_s3_aa0.25.inst.cfg b/resources/variants/ultimaker_s3_aa0.25.inst.cfg index c62479b084..b281fdac70 100644 --- a/resources/variants/ultimaker_s3_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.25.inst.cfg @@ -1,36 +1,24 @@ [general] +definition = ultimaker_s3 name = AA 0.25 version = 4 -definition = ultimaker_s3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] brim_width = 7 -layer_height_0 = 0.17 +cool_min_layer_time = 0 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = AA 0.25 machine_nozzle_size = 0.25 machine_nozzle_tip_outer_diameter = 0.65 -material_final_print_temperature = =material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 5 -raft_airgap = 0.3 -raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2 -raft_interface_line_spacing = =raft_interface_line_width + 0.2 -raft_interface_line_width = =line_width * 2 -raft_interface_thickness = =layer_height * 1.5 -raft_jerk = =jerk_print -raft_margin = 15 -raft_surface_layers = 2 - retraction_min_travel = 0.7 retraction_prime_speed = =retraction_speed skin_overlap = 15 -speed_layer_0 = 20 speed_print = 55 speed_topbottom = 20 speed_wall = =math.ceil(speed_print * 30 / 55) @@ -42,3 +30,4 @@ switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length top_bottom_thickness = 1.2 wall_thickness = =wall_line_width_0 + wall_line_width_x * 2 + diff --git a/resources/variants/ultimaker_s3_aa0.8.inst.cfg b/resources/variants/ultimaker_s3_aa0.8.inst.cfg index bc1f092e63..9cf7222b15 100644 --- a/resources/variants/ultimaker_s3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.8.inst.cfg @@ -1,18 +1,16 @@ [general] +definition = ultimaker_s3 name = AA 0.8 version = 4 -definition = ultimaker_s3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] brim_width = 7 cool_fan_speed = 7 -cool_fan_speed_max = 100 -cool_min_speed = 5 default_material_print_temperature = 200 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' @@ -25,20 +23,16 @@ machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = AA 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 -material_final_print_temperature = =material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 5 -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_wipe_enabled = True -retract_at_layer_change = =not magic_spiralize +raft_surface_layers = 1 retraction_amount = 6.5 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 retraction_speed = 25 skin_overlap = 5 -speed_layer_0 = 20 speed_print = 35 speed_topbottom = =math.ceil(speed_print * 25 / 35) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) @@ -50,3 +44,4 @@ switch_extruder_prime_speed = 20 switch_extruder_retraction_amount = 16.5 top_bottom_thickness = 1.4 wall_0_inset = 0 + diff --git a/resources/variants/ultimaker_s3_aa04.inst.cfg b/resources/variants/ultimaker_s3_aa04.inst.cfg index d69988c9f5..ebce89e58d 100644 --- a/resources/variants/ultimaker_s3_aa04.inst.cfg +++ b/resources/variants/ultimaker_s3_aa04.inst.cfg @@ -1,27 +1,18 @@ [general] +definition = ultimaker_s3 name = AA 0.4 version = 4 -definition = ultimaker_s3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] brim_width = 7 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = AA 0.4 machine_nozzle_tip_outer_diameter = 1.0 -raft_acceleration = =acceleration_print -raft_airgap = 0.3 -raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2 -raft_interface_line_spacing = =raft_interface_line_width + 0.2 -raft_interface_line_width = =line_width * 2 -raft_interface_thickness = =layer_height * 1.5 -raft_jerk = =jerk_print -raft_margin = 15 -raft_surface_layers = 2 retraction_amount = 6.5 retraction_min_travel = =line_width * 2 skin_overlap = 15 @@ -35,3 +26,4 @@ support_z_distance = =layer_height * 2 switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length top_bottom_thickness = 1.2 + diff --git a/resources/variants/ultimaker_s3_bb0.8.inst.cfg b/resources/variants/ultimaker_s3_bb0.8.inst.cfg index 60dfcafd33..6ea5b34559 100644 --- a/resources/variants/ultimaker_s3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_bb0.8.inst.cfg @@ -1,21 +1,20 @@ [general] +definition = ultimaker_s3 name = BB 0.8 version = 4 -definition = ultimaker_s3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -acceleration_support = =math.ceil(acceleration_print * 2000 / 3500) -acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) -acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / 1500) acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 3500) +acceleration_support = =math.ceil(acceleration_print * 2000 / 3500) +acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / 1500) +acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) brim_width = 3 cool_fan_speed = 50 -cool_min_speed = 5 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 @@ -27,32 +26,20 @@ machine_nozzle_id = BB 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 material_print_temperature = =default_material_print_temperature + 10 -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_wipe_enabled = True -raft_acceleration = =acceleration_layer_0 -raft_airgap = 0 -raft_base_speed = 20 -raft_base_thickness = 0.3 -raft_interface_line_spacing = 0.5 -raft_interface_line_width = 0.5 -raft_interface_speed = 20 -raft_interface_thickness = 0.2 -raft_margin = 10 -raft_speed = 25 raft_surface_layers = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 3 skin_overlap = 5 -speed_layer_0 = 20 +speed_prime_tower = =math.ceil(speed_print * 7 / 35) speed_print = 35 speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) +speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) -speed_prime_tower = =math.ceil(speed_print * 7 / 35) support_angle = 60 support_bottom_height = =layer_height * 2 support_interface_enable = True @@ -61,3 +48,4 @@ switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 12 top_bottom_thickness = 1 wall_0_inset = 0 + diff --git a/resources/variants/ultimaker_s3_bb04.inst.cfg b/resources/variants/ultimaker_s3_bb04.inst.cfg index 526f724eea..54df4e4ac9 100644 --- a/resources/variants/ultimaker_s3_bb04.inst.cfg +++ b/resources/variants/ultimaker_s3_bb04.inst.cfg @@ -1,32 +1,28 @@ [general] +definition = ultimaker_s3 name = BB 0.4 version = 4 -definition = ultimaker_s3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -acceleration_support = =math.ceil(acceleration_print * 2000 / 3500) -acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) -acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / 1500) acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 3500) -cool_fan_speed_max = =cool_fan_speed +acceleration_support = =math.ceil(acceleration_print * 2000 / 3500) +acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / 1500) +acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = BB 0.4 machine_nozzle_tip_outer_diameter = 1.0 -raft_base_speed = 20 -raft_interface_speed = 20 -raft_speed = 25 retraction_min_travel = =3 * line_width -speed_layer_0 = 20 speed_prime_tower = =math.ceil(speed_print * 10 / 35) speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) +speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_bottom_height = =layer_height * 2 support_interface_enable = True switch_extruder_retraction_amount = 12 + diff --git a/resources/variants/ultimaker_s3_cc04.inst.cfg b/resources/variants/ultimaker_s3_cc04.inst.cfg index ce432577ac..19192bfba6 100644 --- a/resources/variants/ultimaker_s3_cc04.inst.cfg +++ b/resources/variants/ultimaker_s3_cc04.inst.cfg @@ -1,35 +1,24 @@ [general] +definition = ultimaker_s3 name = CC 0.4 version = 4 -definition = ultimaker_s3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] brim_width = 7 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = CC 0.4 machine_nozzle_size = 0.4 -raft_acceleration = =acceleration_print -raft_airgap = 0.3 -raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2 -raft_interface_line_spacing = =raft_interface_line_width + 0.2 -raft_interface_line_width = =line_width * 2 -raft_interface_thickness = =layer_height * 1.5 -raft_jerk = =jerk_print -raft_margin = 15 -raft_surface_layers = 2 retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed speed_infill = =speed_print -speed_layer_0 = 20 speed_print = 45 speed_support = =speed_topbottom speed_topbottom = =math.ceil(speed_print * 25 / 45) -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 30 / 45) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) speed_wall_x = =speed_wall @@ -40,3 +29,4 @@ support_z_distance = =layer_height * 2 switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length top_bottom_thickness = =layer_height * 6 + diff --git a/resources/variants/ultimaker_s3_cc06.inst.cfg b/resources/variants/ultimaker_s3_cc06.inst.cfg index 69f478d128..925a9f68d6 100644 --- a/resources/variants/ultimaker_s3_cc06.inst.cfg +++ b/resources/variants/ultimaker_s3_cc06.inst.cfg @@ -1,35 +1,24 @@ [general] +definition = ultimaker_s3 name = CC 0.6 version = 4 -definition = ultimaker_s3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] brim_width = 7 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = CC 0.6 machine_nozzle_size = 0.6 -raft_acceleration = =acceleration_print -raft_airgap = 0.3 -raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2 -raft_interface_line_spacing = =raft_interface_line_width + 0.2 -raft_interface_line_width = =line_width * 2 -raft_interface_thickness = =layer_height * 1.5 -raft_jerk = =jerk_print -raft_margin = 15 -raft_surface_layers = 2 retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed speed_infill = =speed_print -speed_layer_0 = 20 speed_print = 45 speed_support = =speed_topbottom speed_topbottom = =math.ceil(speed_print * 25 / 45) -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 30 / 45) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) speed_wall_x = =speed_wall @@ -40,3 +29,4 @@ support_z_distance = =layer_height * 2 switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length top_bottom_thickness = =layer_height * 6 + diff --git a/resources/variants/ultimaker_s3_dd04.inst.cfg b/resources/variants/ultimaker_s3_dd04.inst.cfg index 7a31d85f1d..bf93b66be7 100644 --- a/resources/variants/ultimaker_s3_dd04.inst.cfg +++ b/resources/variants/ultimaker_s3_dd04.inst.cfg @@ -1,12 +1,12 @@ [general] +definition = ultimaker_s3 name = DD 0.4 version = 4 -definition = ultimaker_s3 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_cool_down_speed = 0.9 @@ -14,3 +14,4 @@ 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_s5_aa0.25.inst.cfg b/resources/variants/ultimaker_s5_aa0.25.inst.cfg index 664c252577..cbe7f53dfa 100644 --- a/resources/variants/ultimaker_s5_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.25.inst.cfg @@ -1,35 +1,24 @@ [general] +definition = ultimaker_s5 name = AA 0.25 version = 4 -definition = ultimaker_s5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] brim_width = 7 -layer_height_0 = 0.17 +cool_min_layer_time = 0 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = AA 0.25 machine_nozzle_size = 0.25 machine_nozzle_tip_outer_diameter = 0.65 -material_final_print_temperature = =material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 5 -raft_airgap = 0.3 -raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2 -raft_interface_line_spacing = =raft_interface_line_width + 0.2 -raft_interface_line_width = =line_width * 2 -raft_interface_thickness = =layer_height * 1.5 -raft_jerk = =jerk_print -raft_margin = 15 -raft_surface_layers = 2 retraction_min_travel = 0.7 retraction_prime_speed = =retraction_speed skin_overlap = 15 -speed_layer_0 = 20 speed_print = 55 speed_topbottom = 20 speed_wall = =math.ceil(speed_print * 30 / 55) @@ -42,3 +31,4 @@ switch_extruder_retraction_amount = =machine_heat_zone_length top_bottom_thickness = 1.2 wall_thickness = =wall_line_width_0 + wall_line_width_x * 2 xy_offset_layer_0 = =(-0.2 if adhesion_type == "skirt" or adhesion_type == "none" else 0) + xy_offset + diff --git a/resources/variants/ultimaker_s5_aa0.8.inst.cfg b/resources/variants/ultimaker_s5_aa0.8.inst.cfg index 9b1dfa0dc8..a54f735c2e 100644 --- a/resources/variants/ultimaker_s5_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.8.inst.cfg @@ -1,23 +1,20 @@ [general] +definition = ultimaker_s5 name = AA 0.8 version = 4 -definition = ultimaker_s5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] brim_width = 7 cool_fan_speed = 7 -cool_fan_speed_max = 100 -cool_min_speed = 5 default_material_print_temperature = 200 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 -jerk_enabled = True jerk_print = 25 layer_height = 0.2 machine_min_cool_heat_time_window = 15 @@ -26,20 +23,16 @@ machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = AA 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 -material_final_print_temperature = =material_print_temperature - 10 -material_initial_print_temperature = =material_print_temperature - 5 -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_wipe_enabled = True -retract_at_layer_change = =not magic_spiralize +raft_surface_layers = 1 retraction_amount = 6.5 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 retraction_speed = 25 skin_overlap = 5 -speed_layer_0 = 20 speed_print = 35 speed_topbottom = =math.ceil(speed_print * 25 / 35) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) @@ -51,3 +44,4 @@ switch_extruder_prime_speed = 20 switch_extruder_retraction_amount = 16.5 top_bottom_thickness = 1.4 wall_0_inset = 0 + diff --git a/resources/variants/ultimaker_s5_aa04.inst.cfg b/resources/variants/ultimaker_s5_aa04.inst.cfg index bb1c355321..1f24459530 100644 --- a/resources/variants/ultimaker_s5_aa04.inst.cfg +++ b/resources/variants/ultimaker_s5_aa04.inst.cfg @@ -1,27 +1,18 @@ [general] +definition = ultimaker_s5 name = AA 0.4 version = 4 -definition = ultimaker_s5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] brim_width = 7 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = AA 0.4 machine_nozzle_tip_outer_diameter = 1.0 -raft_acceleration = =acceleration_print -raft_airgap = 0.3 -raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2 -raft_interface_line_spacing = =raft_interface_line_width + 0.2 -raft_interface_line_width = =line_width * 2 -raft_interface_thickness = =layer_height * 1.5 -raft_jerk = =jerk_print -raft_margin = 15 -raft_surface_layers = 2 retraction_amount = 6.5 retraction_min_travel = =line_width * 2 skin_overlap = 15 @@ -35,3 +26,4 @@ support_z_distance = =layer_height * 2 switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length top_bottom_thickness = 1.2 + diff --git a/resources/variants/ultimaker_s5_aluminum.inst.cfg b/resources/variants/ultimaker_s5_aluminum.inst.cfg index 20d9aeb95e..b13d4b5c86 100644 --- a/resources/variants/ultimaker_s5_aluminum.inst.cfg +++ b/resources/variants/ultimaker_s5_aluminum.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = ultimaker_s5 name = Aluminum version = 4 -definition = ultimaker_s5 [metadata] -setting_version = 20 -type = variant hardware_type = buildplate +setting_version = 22 +type = variant [values] -material_bed_temperature = =default_material_bed_temperature + 10 machine_buildplate_type = aluminum +material_bed_temperature = =default_material_bed_temperature + 10 + diff --git a/resources/variants/ultimaker_s5_bb0.8.inst.cfg b/resources/variants/ultimaker_s5_bb0.8.inst.cfg index 4e9d687d8a..98fb4da612 100644 --- a/resources/variants/ultimaker_s5_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_bb0.8.inst.cfg @@ -1,21 +1,20 @@ [general] +definition = ultimaker_s5 name = BB 0.8 version = 4 -definition = ultimaker_s5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -acceleration_support = =math.ceil(acceleration_print * 2000 / 3500) -acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) -acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / 1500) acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 3500) +acceleration_support = =math.ceil(acceleration_print * 2000 / 3500) +acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / 1500) +acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) brim_width = 3 cool_fan_speed = 50 -cool_min_speed = 5 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 @@ -27,35 +26,24 @@ machine_nozzle_id = BB 0.8 machine_nozzle_size = 0.8 machine_nozzle_tip_outer_diameter = 2.0 material_print_temperature = =default_material_print_temperature + 10 -material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_wipe_enabled = True -raft_acceleration = =acceleration_layer_0 -raft_airgap = 0 -raft_base_speed = 20 -raft_base_thickness = 0.3 -raft_interface_line_spacing = 0.5 -raft_interface_line_width = 0.5 -raft_interface_speed = 20 -raft_interface_thickness = 0.2 -raft_margin = 10 -raft_speed = 25 raft_surface_layers = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 3 skin_overlap = 5 -speed_layer_0 = 20 +speed_prime_tower = =math.ceil(speed_print * 7 / 35) speed_print = 35 speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) +speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) -speed_prime_tower = =math.ceil(speed_print * 7 / 35) support_angle = 60 support_z_distance = 0 switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 12 top_bottom_thickness = 1 wall_0_inset = 0 + diff --git a/resources/variants/ultimaker_s5_bb04.inst.cfg b/resources/variants/ultimaker_s5_bb04.inst.cfg index 18770b1c4d..55b556777c 100644 --- a/resources/variants/ultimaker_s5_bb04.inst.cfg +++ b/resources/variants/ultimaker_s5_bb04.inst.cfg @@ -1,32 +1,28 @@ [general] +definition = ultimaker_s5 name = BB 0.4 version = 4 -definition = ultimaker_s5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -acceleration_support = =math.ceil(acceleration_print * 2000 / 3500) -acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) -acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / 1500) acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 3500) -cool_fan_speed_max = =cool_fan_speed +acceleration_support = =math.ceil(acceleration_print * 2000 / 3500) +acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / 1500) +acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = BB 0.4 machine_nozzle_tip_outer_diameter = 1.0 -raft_base_speed = 20 -raft_interface_speed = 20 -raft_speed = 25 retraction_min_travel = =3 * line_width -speed_layer_0 = 20 speed_prime_tower = =math.ceil(speed_print * 10 / 35) speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) +speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_bottom_height = =layer_height * 2 support_interface_enable = True switch_extruder_retraction_amount = 12 + diff --git a/resources/variants/ultimaker_s5_cc04.inst.cfg b/resources/variants/ultimaker_s5_cc04.inst.cfg index 36c9a0e417..ef64dc0ae4 100644 --- a/resources/variants/ultimaker_s5_cc04.inst.cfg +++ b/resources/variants/ultimaker_s5_cc04.inst.cfg @@ -1,35 +1,24 @@ [general] +definition = ultimaker_s5 name = CC 0.4 version = 4 -definition = ultimaker_s5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] brim_width = 7 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = CC 0.4 machine_nozzle_size = 0.4 -raft_acceleration = =acceleration_print -raft_airgap = 0.3 -raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2 -raft_interface_line_spacing = =raft_interface_line_width + 0.2 -raft_interface_line_width = =line_width * 2 -raft_interface_thickness = =layer_height * 1.5 -raft_jerk = =jerk_print -raft_margin = 15 -raft_surface_layers = 2 retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed speed_infill = =speed_print -speed_layer_0 = 20 speed_print = 45 speed_support = =speed_topbottom speed_topbottom = =math.ceil(speed_print * 25 / 45) -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 30 / 45) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) speed_wall_x = =speed_wall @@ -40,3 +29,4 @@ support_z_distance = =layer_height * 2 switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length top_bottom_thickness = =layer_height * 6 + diff --git a/resources/variants/ultimaker_s5_cc06.inst.cfg b/resources/variants/ultimaker_s5_cc06.inst.cfg index c5ade7780f..ba33bab17b 100644 --- a/resources/variants/ultimaker_s5_cc06.inst.cfg +++ b/resources/variants/ultimaker_s5_cc06.inst.cfg @@ -1,35 +1,24 @@ [general] +definition = ultimaker_s5 name = CC 0.6 version = 4 -definition = ultimaker_s5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] brim_width = 7 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = CC 0.6 machine_nozzle_size = 0.6 -raft_acceleration = =acceleration_print -raft_airgap = 0.3 -raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2 -raft_interface_line_spacing = =raft_interface_line_width + 0.2 -raft_interface_line_width = =line_width * 2 -raft_interface_thickness = =layer_height * 1.5 -raft_jerk = =jerk_print -raft_margin = 15 -raft_surface_layers = 2 retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed speed_infill = =speed_print -speed_layer_0 = 20 speed_print = 45 speed_support = =speed_topbottom speed_topbottom = =math.ceil(speed_print * 25 / 45) -speed_travel_layer_0 = 50 speed_wall = =math.ceil(speed_print * 30 / 45) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) speed_wall_x = =speed_wall @@ -40,3 +29,4 @@ support_z_distance = =layer_height * 2 switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length top_bottom_thickness = =layer_height * 6 + diff --git a/resources/variants/ultimaker_s5_dd04.inst.cfg b/resources/variants/ultimaker_s5_dd04.inst.cfg index faad9ceefe..bcf9dae131 100644 --- a/resources/variants/ultimaker_s5_dd04.inst.cfg +++ b/resources/variants/ultimaker_s5_dd04.inst.cfg @@ -1,12 +1,12 @@ [general] +definition = ultimaker_s5 name = DD 0.4 version = 4 -definition = ultimaker_s5 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_cool_down_speed = 0.9 @@ -14,3 +14,4 @@ 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_s5_glass.inst.cfg b/resources/variants/ultimaker_s5_glass.inst.cfg index 2e646854f9..dff0498792 100644 --- a/resources/variants/ultimaker_s5_glass.inst.cfg +++ b/resources/variants/ultimaker_s5_glass.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = ultimaker_s5 name = Glass version = 4 -definition = ultimaker_s5 [metadata] -setting_version = 20 -type = variant hardware_type = buildplate +setting_version = 22 +type = variant [values] -material_bed_temperature = =default_material_bed_temperature machine_buildplate_type = glass +material_bed_temperature = =default_material_bed_temperature + diff --git a/resources/variants/ultimaker_s7_aa0.25.inst.cfg b/resources/variants/ultimaker_s7_aa0.25.inst.cfg new file mode 100644 index 0000000000..1e9b4d157d --- /dev/null +++ b/resources/variants/ultimaker_s7_aa0.25.inst.cfg @@ -0,0 +1,33 @@ +[general] +definition = ultimaker_s7 +name = AA 0.25 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +brim_width = 7 +cool_min_layer_time = 0 +machine_nozzle_cool_down_speed = 0.85 +machine_nozzle_heat_up_speed = 1.5 +machine_nozzle_id = AA 0.25 +machine_nozzle_size = 0.25 +machine_nozzle_tip_outer_diameter = 0.65 +retraction_min_travel = 0.7 +retraction_prime_speed = =retraction_speed +skin_overlap = 15 +speed_print = 55 +speed_topbottom = 20 +speed_wall = =math.ceil(speed_print * 30 / 55) +support_angle = 60 +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance +support_z_distance = =layer_height * 2 +switch_extruder_prime_speed = =switch_extruder_retraction_speeds +switch_extruder_retraction_amount = =machine_heat_zone_length +top_bottom_thickness = 1.2 +wall_thickness = =wall_line_width_0 + wall_line_width_x * 2 + diff --git a/resources/variants/ultimaker_s7_aa0.8.inst.cfg b/resources/variants/ultimaker_s7_aa0.8.inst.cfg new file mode 100644 index 0000000000..683833cb38 --- /dev/null +++ b/resources/variants/ultimaker_s7_aa0.8.inst.cfg @@ -0,0 +1,47 @@ +[general] +definition = ultimaker_s7 +name = AA 0.8 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +brim_width = 7 +cool_fan_speed = 7 +default_material_print_temperature = 200 +infill_overlap = 0 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_wipe_dist = 0 +jerk_print = 25 +layer_height = 0.2 +machine_min_cool_heat_time_window = 15 +machine_nozzle_cool_down_speed = 0.85 +machine_nozzle_heat_up_speed = 1.5 +machine_nozzle_id = AA 0.8 +machine_nozzle_size = 0.8 +machine_nozzle_tip_outer_diameter = 2.0 +multiple_mesh_overlap = 0 +prime_tower_enable = False +prime_tower_wipe_enabled = True +raft_surface_layers = 1 +retraction_amount = 6.5 +retraction_hop = 2 +retraction_hop_only_when_collides = True +retraction_min_travel = =line_width * 2 +retraction_speed = 25 +skin_overlap = 5 +speed_print = 35 +speed_topbottom = =math.ceil(speed_print * 25 / 35) +speed_wall_0 = =math.ceil(speed_wall * 25 / 30) +support_angle = 60 +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance +support_z_distance = =layer_height * 2 +switch_extruder_prime_speed = 20 +switch_extruder_retraction_amount = 16.5 +top_bottom_thickness = 1.4 +wall_0_inset = 0 + diff --git a/resources/variants/ultimaker_s7_aa04.inst.cfg b/resources/variants/ultimaker_s7_aa04.inst.cfg new file mode 100644 index 0000000000..57f9d105fe --- /dev/null +++ b/resources/variants/ultimaker_s7_aa04.inst.cfg @@ -0,0 +1,29 @@ +[general] +definition = ultimaker_s7 +name = AA 0.4 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +brim_width = 7 +machine_nozzle_cool_down_speed = 0.9 +machine_nozzle_id = AA 0.4 +machine_nozzle_tip_outer_diameter = 1.0 +retraction_amount = 6.5 +retraction_min_travel = =line_width * 2 +skin_overlap = 15 +speed_print = 70 +speed_topbottom = =math.ceil(speed_print * 30 / 70) +speed_wall = =math.ceil(speed_print * 30 / 70) +support_angle = 60 +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance +support_z_distance = =layer_height * 2 +switch_extruder_prime_speed = =switch_extruder_retraction_speeds +switch_extruder_retraction_amount = =machine_heat_zone_length +top_bottom_thickness = 1.2 + diff --git a/resources/variants/ultimaker_s7_bb0.8.inst.cfg b/resources/variants/ultimaker_s7_bb0.8.inst.cfg new file mode 100644 index 0000000000..b4867b1178 --- /dev/null +++ b/resources/variants/ultimaker_s7_bb0.8.inst.cfg @@ -0,0 +1,50 @@ +[general] +definition = ultimaker_s7 +name = BB 0.8 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 3500) +acceleration_support = =math.ceil(acceleration_print * 2000 / 3500) +acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / 1500) +acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) +brim_width = 3 +cool_fan_speed = 50 +infill_overlap = 0 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_wipe_dist = 0 +jerk_print = 25 +layer_height = 0.2 +machine_min_cool_heat_time_window = 15 +machine_nozzle_heat_up_speed = 1.5 +machine_nozzle_id = BB 0.8 +machine_nozzle_size = 0.8 +machine_nozzle_tip_outer_diameter = 2.0 +material_print_temperature = =default_material_print_temperature + 10 +multiple_mesh_overlap = 0 +prime_tower_enable = False +prime_tower_wipe_enabled = True +raft_surface_layers = 1 +retraction_amount = 4.5 +retraction_hop = 2 +retraction_hop_only_when_collides = True +retraction_min_travel = =line_width * 3 +skin_overlap = 5 +speed_prime_tower = =math.ceil(speed_print * 7 / 35) +speed_print = 35 +speed_support = =math.ceil(speed_print * 25 / 35) +speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) +speed_support_interface = =math.ceil(speed_support * 20 / 25) +speed_wall_0 = =math.ceil(speed_wall * 25 / 30) +support_angle = 60 +support_z_distance = 0 +switch_extruder_prime_speed = 15 +switch_extruder_retraction_amount = 12 +top_bottom_thickness = 1 +wall_0_inset = 0 + diff --git a/resources/variants/ultimaker_s7_bb04.inst.cfg b/resources/variants/ultimaker_s7_bb04.inst.cfg new file mode 100644 index 0000000000..00bd9edf77 --- /dev/null +++ b/resources/variants/ultimaker_s7_bb04.inst.cfg @@ -0,0 +1,29 @@ +[general] +definition = ultimaker_s7 +name = BB 0.4 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 3500) +acceleration_support = =math.ceil(acceleration_print * 2000 / 3500) +acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / 1500) +acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) +machine_nozzle_heat_up_speed = 1.5 +machine_nozzle_id = BB 0.4 +machine_nozzle_tip_outer_diameter = 1.0 +retraction_amount = 4.5 +retraction_min_travel = =3 * line_width +speed_prime_tower = =math.ceil(speed_print * 10 / 35) +speed_support = =math.ceil(speed_print * 25 / 35) +speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) +speed_support_interface = =math.ceil(speed_support * 20 / 25) +speed_wall_0 = =math.ceil(speed_wall * 25 / 30) +support_bottom_height = =layer_height * 2 +support_interface_enable = True +switch_extruder_retraction_amount = 12 + diff --git a/resources/variants/ultimaker_s7_cc04.inst.cfg b/resources/variants/ultimaker_s7_cc04.inst.cfg new file mode 100644 index 0000000000..d46d387330 --- /dev/null +++ b/resources/variants/ultimaker_s7_cc04.inst.cfg @@ -0,0 +1,32 @@ +[general] +definition = ultimaker_s7 +name = CC 0.4 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +brim_width = 7 +machine_nozzle_cool_down_speed = 0.9 +machine_nozzle_id = CC 0.4 +machine_nozzle_size = 0.4 +retraction_min_travel = =line_width * 2 +retraction_prime_speed = =retraction_speed +speed_infill = =speed_print +speed_print = 45 +speed_support = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 25 / 45) +speed_wall = =math.ceil(speed_print * 30 / 45) +speed_wall_0 = =math.ceil(speed_wall * 25 / 30) +speed_wall_x = =speed_wall +support_angle = 60 +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance +support_z_distance = =layer_height * 2 +switch_extruder_prime_speed = =switch_extruder_retraction_speeds +switch_extruder_retraction_amount = =machine_heat_zone_length +top_bottom_thickness = =layer_height * 6 + diff --git a/resources/variants/ultimaker_s7_cc06.inst.cfg b/resources/variants/ultimaker_s7_cc06.inst.cfg new file mode 100644 index 0000000000..d0c0d3670f --- /dev/null +++ b/resources/variants/ultimaker_s7_cc06.inst.cfg @@ -0,0 +1,32 @@ +[general] +definition = ultimaker_s7 +name = CC 0.6 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +brim_width = 7 +machine_nozzle_cool_down_speed = 0.9 +machine_nozzle_id = CC 0.6 +machine_nozzle_size = 0.6 +retraction_min_travel = =line_width * 2 +retraction_prime_speed = =retraction_speed +speed_infill = =speed_print +speed_print = 45 +speed_support = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 25 / 45) +speed_wall = =math.ceil(speed_print * 30 / 45) +speed_wall_0 = =math.ceil(speed_wall * 25 / 30) +speed_wall_x = =speed_wall +support_angle = 60 +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance +support_z_distance = =layer_height * 2 +switch_extruder_prime_speed = =switch_extruder_retraction_speeds +switch_extruder_retraction_amount = =machine_heat_zone_length +top_bottom_thickness = =layer_height * 6 + diff --git a/resources/variants/ultimaker_s7_dd04.inst.cfg b/resources/variants/ultimaker_s7_dd04.inst.cfg new file mode 100644 index 0000000000..a9c0bb6602 --- /dev/null +++ b/resources/variants/ultimaker_s7_dd04.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = ultimaker_s7 +name = DD 0.4 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +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/uni_200_0.30.inst.cfg b/resources/variants/uni/uni_200_0.30.inst.cfg similarity index 87% rename from resources/variants/uni_200_0.30.inst.cfg rename to resources/variants/uni/uni_200_0.30.inst.cfg index a10fc7235b..8c5c61f102 100644 --- a/resources/variants/uni_200_0.30.inst.cfg +++ b/resources/variants/uni/uni_200_0.30.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = uni_200 name = 0.30mm Nozzle version = 4 -definition = uni_200 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/uni_200_0.40.inst.cfg b/resources/variants/uni/uni_200_0.40.inst.cfg similarity index 87% rename from resources/variants/uni_200_0.40.inst.cfg rename to resources/variants/uni/uni_200_0.40.inst.cfg index 2fa8514166..34e44afa05 100644 --- a/resources/variants/uni_200_0.40.inst.cfg +++ b/resources/variants/uni/uni_200_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = uni_200 name = 0.40mm Nozzle version = 4 -definition = uni_200 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/uni_200_0.50.inst.cfg b/resources/variants/uni/uni_200_0.50.inst.cfg similarity index 87% rename from resources/variants/uni_200_0.50.inst.cfg rename to resources/variants/uni/uni_200_0.50.inst.cfg index 0faa82bcb6..0dbdc55796 100644 --- a/resources/variants/uni_200_0.50.inst.cfg +++ b/resources/variants/uni/uni_200_0.50.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = uni_200 name = 0.50mm Nozzle version = 4 -definition = uni_200 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/uni_250_0.30.inst.cfg b/resources/variants/uni/uni_250_0.30.inst.cfg similarity index 87% rename from resources/variants/uni_250_0.30.inst.cfg rename to resources/variants/uni/uni_250_0.30.inst.cfg index b34e30c290..f135aa3178 100644 --- a/resources/variants/uni_250_0.30.inst.cfg +++ b/resources/variants/uni/uni_250_0.30.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = uni_250 name = 0.30mm Nozzle version = 4 -definition = uni_250 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/uni_250_0.40.inst.cfg b/resources/variants/uni/uni_250_0.40.inst.cfg similarity index 87% rename from resources/variants/uni_250_0.40.inst.cfg rename to resources/variants/uni/uni_250_0.40.inst.cfg index 00e86f3a25..e2fde31e5e 100644 --- a/resources/variants/uni_250_0.40.inst.cfg +++ b/resources/variants/uni/uni_250_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = uni_250 name = 0.40mm Nozzle version = 4 -definition = uni_250 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/uni_250_0.50.inst.cfg b/resources/variants/uni/uni_250_0.50.inst.cfg similarity index 87% rename from resources/variants/uni_250_0.50.inst.cfg rename to resources/variants/uni/uni_250_0.50.inst.cfg index d1e2c073ed..6e5d54e6af 100644 --- a/resources/variants/uni_250_0.50.inst.cfg +++ b/resources/variants/uni/uni_250_0.50.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = uni_250 name = 0.50mm Nozzle version = 4 -definition = uni_250 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/uni_300_0.30.inst.cfg b/resources/variants/uni/uni_300_0.30.inst.cfg similarity index 87% rename from resources/variants/uni_300_0.30.inst.cfg rename to resources/variants/uni/uni_300_0.30.inst.cfg index c5399476ec..322ed8c133 100644 --- a/resources/variants/uni_300_0.30.inst.cfg +++ b/resources/variants/uni/uni_300_0.30.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = uni_300 name = 0.30mm Nozzle version = 4 -definition = uni_300 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/uni_300_0.40.inst.cfg b/resources/variants/uni/uni_300_0.40.inst.cfg similarity index 87% rename from resources/variants/uni_300_0.40.inst.cfg rename to resources/variants/uni/uni_300_0.40.inst.cfg index 74225271cc..f9366b8a54 100644 --- a/resources/variants/uni_300_0.40.inst.cfg +++ b/resources/variants/uni/uni_300_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = uni_300 name = 0.40mm Nozzle version = 4 -definition = uni_300 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/uni_300_0.50.inst.cfg b/resources/variants/uni/uni_300_0.50.inst.cfg similarity index 87% rename from resources/variants/uni_300_0.50.inst.cfg rename to resources/variants/uni/uni_300_0.50.inst.cfg index 1647785ecc..3d264e8375 100644 --- a/resources/variants/uni_300_0.50.inst.cfg +++ b/resources/variants/uni/uni_300_0.50.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = uni_300 name = 0.50mm Nozzle version = 4 -definition = uni_300 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/uni_base_0.30.inst.cfg b/resources/variants/uni/uni_base_0.30.inst.cfg similarity index 87% rename from resources/variants/uni_base_0.30.inst.cfg rename to resources/variants/uni/uni_base_0.30.inst.cfg index 4cd89d10d8..34424ef287 100644 --- a/resources/variants/uni_base_0.30.inst.cfg +++ b/resources/variants/uni/uni_base_0.30.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = uni_base name = 0.30mm Nozzle version = 4 -definition = uni_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/uni_base_0.40.inst.cfg b/resources/variants/uni/uni_base_0.40.inst.cfg similarity index 87% rename from resources/variants/uni_base_0.40.inst.cfg rename to resources/variants/uni/uni_base_0.40.inst.cfg index e0eb808593..6449e28026 100644 --- a/resources/variants/uni_base_0.40.inst.cfg +++ b/resources/variants/uni/uni_base_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = uni_base name = 0.40mm Nozzle version = 4 -definition = uni_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/uni_base_0.50.inst.cfg b/resources/variants/uni/uni_base_0.50.inst.cfg similarity index 87% rename from resources/variants/uni_base_0.50.inst.cfg rename to resources/variants/uni/uni_base_0.50.inst.cfg index 7a3f3f146f..1106b4ba98 100644 --- a/resources/variants/uni_base_0.50.inst.cfg +++ b/resources/variants/uni/uni_base_0.50.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = uni_base name = 0.50mm Nozzle version = 4 -definition = uni_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/uni_mini_0.30.inst.cfg b/resources/variants/uni/uni_mini_0.30.inst.cfg similarity index 87% rename from resources/variants/uni_mini_0.30.inst.cfg rename to resources/variants/uni/uni_mini_0.30.inst.cfg index 10c3c623cb..de0c0b6d71 100644 --- a/resources/variants/uni_mini_0.30.inst.cfg +++ b/resources/variants/uni/uni_mini_0.30.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = uni_mini name = 0.30mm Nozzle version = 4 -definition = uni_mini [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/uni_mini_0.40.inst.cfg b/resources/variants/uni/uni_mini_0.40.inst.cfg similarity index 87% rename from resources/variants/uni_mini_0.40.inst.cfg rename to resources/variants/uni/uni_mini_0.40.inst.cfg index 4a6fda6370..4b40d2bc77 100644 --- a/resources/variants/uni_mini_0.40.inst.cfg +++ b/resources/variants/uni/uni_mini_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = uni_mini name = 0.40mm Nozzle version = 4 -definition = uni_mini [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/uni_mini_0.50.inst.cfg b/resources/variants/uni/uni_mini_0.50.inst.cfg similarity index 87% rename from resources/variants/uni_mini_0.50.inst.cfg rename to resources/variants/uni/uni_mini_0.50.inst.cfg index 4de27e37d1..b6c96a0283 100644 --- a/resources/variants/uni_mini_0.50.inst.cfg +++ b/resources/variants/uni/uni_mini_0.50.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = uni_mini name = 0.50mm Nozzle version = 4 -definition = uni_mini [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg new file mode 100644 index 0000000000..c505c64831 --- /dev/null +++ b/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vivedino_trex2plus +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg new file mode 100644 index 0000000000..cb67e87aaa --- /dev/null +++ b/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vivedino_trex2plus +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg new file mode 100644 index 0000000000..c5ad54b52b --- /dev/null +++ b/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vivedino_trex2plus +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg new file mode 100644 index 0000000000..dda1465bc1 --- /dev/null +++ b/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vivedino_trex2plus +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg new file mode 100644 index 0000000000..ce4a0daf5e --- /dev/null +++ b/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vivedino_trex3 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg new file mode 100644 index 0000000000..c1e15ee4d8 --- /dev/null +++ b/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vivedino_trex3 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg new file mode 100644 index 0000000000..53e39a4842 --- /dev/null +++ b/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vivedino_trex3 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg new file mode 100644 index 0000000000..84d866c76b --- /dev/null +++ b/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vivedino_trex3 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/voron0_120_v6_0.25.inst.cfg b/resources/variants/voron/voron0_120_v6_0.25.inst.cfg similarity index 87% rename from resources/variants/voron0_120_v6_0.25.inst.cfg rename to resources/variants/voron/voron0_120_v6_0.25.inst.cfg index 1c417f9132..e2a29b5e2e 100644 --- a/resources/variants/voron0_120_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.25.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron0_120 name = V6 0.25mm version = 4 -definition = voron0_120 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.25 + diff --git a/resources/variants/voron0_120_v6_0.30.inst.cfg b/resources/variants/voron/voron0_120_v6_0.30.inst.cfg similarity index 87% rename from resources/variants/voron0_120_v6_0.30.inst.cfg rename to resources/variants/voron/voron0_120_v6_0.30.inst.cfg index b13505fbaf..a22bb078c6 100644 --- a/resources/variants/voron0_120_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.30.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron0_120 name = V6 0.30mm version = 4 -definition = voron0_120 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/voron0_120_v6_0.40.inst.cfg b/resources/variants/voron/voron0_120_v6_0.40.inst.cfg similarity index 87% rename from resources/variants/voron0_120_v6_0.40.inst.cfg rename to resources/variants/voron/voron0_120_v6_0.40.inst.cfg index 80c02d10d5..fa8590ccca 100644 --- a/resources/variants/voron0_120_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron0_120 name = V6 0.40mm version = 4 -definition = voron0_120 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/voron0_120_v6_0.50.inst.cfg b/resources/variants/voron/voron0_120_v6_0.50.inst.cfg similarity index 87% rename from resources/variants/voron0_120_v6_0.50.inst.cfg rename to resources/variants/voron/voron0_120_v6_0.50.inst.cfg index 3e3c2dc71f..07ebee1182 100644 --- a/resources/variants/voron0_120_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.50.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron0_120 name = V6 0.50mm version = 4 -definition = voron0_120 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/voron0_120_v6_0.60.inst.cfg b/resources/variants/voron/voron0_120_v6_0.60.inst.cfg similarity index 87% rename from resources/variants/voron0_120_v6_0.60.inst.cfg rename to resources/variants/voron/voron0_120_v6_0.60.inst.cfg index 920f267c8e..8486c644e9 100644 --- a/resources/variants/voron0_120_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.60.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron0_120 name = V6 0.60mm version = 4 -definition = voron0_120 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/voron0_120_v6_0.80.inst.cfg b/resources/variants/voron/voron0_120_v6_0.80.inst.cfg similarity index 87% rename from resources/variants/voron0_120_v6_0.80.inst.cfg rename to resources/variants/voron/voron0_120_v6_0.80.inst.cfg index 4fa33b559f..0a84fa9320 100644 --- a/resources/variants/voron0_120_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.80.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron0_120 name = V6 0.80mm version = 4 -definition = voron0_120 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/voron2_250_v6_0.25.inst.cfg b/resources/variants/voron/voron2_250_v6_0.25.inst.cfg similarity index 87% rename from resources/variants/voron2_250_v6_0.25.inst.cfg rename to resources/variants/voron/voron2_250_v6_0.25.inst.cfg index 40edebcbad..003af1860b 100644 --- a/resources/variants/voron2_250_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.25.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_250 name = V6 0.25mm version = 4 -definition = voron2_250 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.25 + diff --git a/resources/variants/voron2_250_v6_0.30.inst.cfg b/resources/variants/voron/voron2_250_v6_0.30.inst.cfg similarity index 87% rename from resources/variants/voron2_250_v6_0.30.inst.cfg rename to resources/variants/voron/voron2_250_v6_0.30.inst.cfg index 61813ba0e5..dacf75fff7 100644 --- a/resources/variants/voron2_250_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.30.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_250 name = V6 0.30mm version = 4 -definition = voron2_250 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.30 + diff --git a/resources/variants/voron2_250_v6_0.35.inst.cfg b/resources/variants/voron/voron2_250_v6_0.35.inst.cfg similarity index 87% rename from resources/variants/voron2_250_v6_0.35.inst.cfg rename to resources/variants/voron/voron2_250_v6_0.35.inst.cfg index 0bf3a37aea..fe1bf4c7cd 100644 --- a/resources/variants/voron2_250_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.35.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_250 name = V6 0.35mm version = 4 -definition = voron2_250 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.35 + diff --git a/resources/variants/voron2_250_v6_0.40.inst.cfg b/resources/variants/voron/voron2_250_v6_0.40.inst.cfg similarity index 87% rename from resources/variants/voron2_250_v6_0.40.inst.cfg rename to resources/variants/voron/voron2_250_v6_0.40.inst.cfg index b64ba5a935..0ddac759b1 100644 --- a/resources/variants/voron2_250_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_250 name = V6 0.40mm version = 4 -definition = voron2_250 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/voron2_250_v6_0.50.inst.cfg b/resources/variants/voron/voron2_250_v6_0.50.inst.cfg similarity index 87% rename from resources/variants/voron2_250_v6_0.50.inst.cfg rename to resources/variants/voron/voron2_250_v6_0.50.inst.cfg index 1d46de7c9e..17cbb0edc4 100644 --- a/resources/variants/voron2_250_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.50.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_250 name = V6 0.50mm version = 4 -definition = voron2_250 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/voron2_250_v6_0.60.inst.cfg b/resources/variants/voron/voron2_250_v6_0.60.inst.cfg similarity index 87% rename from resources/variants/voron2_250_v6_0.60.inst.cfg rename to resources/variants/voron/voron2_250_v6_0.60.inst.cfg index 9861d15daa..1d037bf31f 100644 --- a/resources/variants/voron2_250_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.60.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_250 name = V6 0.60mm version = 4 -definition = voron2_250 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/voron2_250_v6_0.80.inst.cfg b/resources/variants/voron/voron2_250_v6_0.80.inst.cfg similarity index 87% rename from resources/variants/voron2_250_v6_0.80.inst.cfg rename to resources/variants/voron/voron2_250_v6_0.80.inst.cfg index 0f66d4b3f5..9869adb2c7 100644 --- a/resources/variants/voron2_250_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.80.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_250 name = V6 0.80mm version = 4 -definition = voron2_250 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/voron2_250_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg similarity index 87% rename from resources/variants/voron2_250_volcano_0.40.inst.cfg rename to resources/variants/voron/voron2_250_volcano_0.40.inst.cfg index 49777a5eaa..371495b316 100644 --- a/resources/variants/voron2_250_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_250 name = Volcano 0.40mm version = 4 -definition = voron2_250 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/voron2_250_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg similarity index 87% rename from resources/variants/voron2_250_volcano_0.60.inst.cfg rename to resources/variants/voron/voron2_250_volcano_0.60.inst.cfg index f479fa0d44..a939c1ae21 100644 --- a/resources/variants/voron2_250_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_250 name = Volcano 0.60mm version = 4 -definition = voron2_250 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/voron2_250_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg similarity index 87% rename from resources/variants/voron2_250_volcano_0.80.inst.cfg rename to resources/variants/voron/voron2_250_volcano_0.80.inst.cfg index bc67a41a36..717907672a 100644 --- a/resources/variants/voron2_250_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_250 name = Volcano 0.80mm version = 4 -definition = voron2_250 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/voron2_250_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg similarity index 87% rename from resources/variants/voron2_250_volcano_1.00.inst.cfg rename to resources/variants/voron/voron2_250_volcano_1.00.inst.cfg index b3d96b83ea..f2ffb7771a 100644 --- a/resources/variants/voron2_250_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_250 name = Volcano 1.00mm version = 4 -definition = voron2_250 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/voron2_250_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg similarity index 87% rename from resources/variants/voron2_250_volcano_1.20.inst.cfg rename to resources/variants/voron/voron2_250_volcano_1.20.inst.cfg index 1c31ce96a8..fda1a1341b 100644 --- a/resources/variants/voron2_250_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_250 name = Volcano 1.20mm version = 4 -definition = voron2_250 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.2 + diff --git a/resources/variants/voron2_300_v6_0.25.inst.cfg b/resources/variants/voron/voron2_300_v6_0.25.inst.cfg similarity index 87% rename from resources/variants/voron2_300_v6_0.25.inst.cfg rename to resources/variants/voron/voron2_300_v6_0.25.inst.cfg index 86705951b4..224e50eb85 100644 --- a/resources/variants/voron2_300_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.25.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_300 name = V6 0.25mm version = 4 -definition = voron2_300 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.25 + diff --git a/resources/variants/voron2_300_v6_0.30.inst.cfg b/resources/variants/voron/voron2_300_v6_0.30.inst.cfg similarity index 87% rename from resources/variants/voron2_300_v6_0.30.inst.cfg rename to resources/variants/voron/voron2_300_v6_0.30.inst.cfg index 99aae77246..b8eeeec8b4 100644 --- a/resources/variants/voron2_300_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.30.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_300 name = V6 0.30mm version = 4 -definition = voron2_300 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.30 + diff --git a/resources/variants/voron2_300_v6_0.35.inst.cfg b/resources/variants/voron/voron2_300_v6_0.35.inst.cfg similarity index 87% rename from resources/variants/voron2_300_v6_0.35.inst.cfg rename to resources/variants/voron/voron2_300_v6_0.35.inst.cfg index 29bc419b2c..f07bd3e7be 100644 --- a/resources/variants/voron2_300_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.35.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_300 name = V6 0.35mm version = 4 -definition = voron2_300 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.35 + diff --git a/resources/variants/voron2_300_v6_0.40.inst.cfg b/resources/variants/voron/voron2_300_v6_0.40.inst.cfg similarity index 87% rename from resources/variants/voron2_300_v6_0.40.inst.cfg rename to resources/variants/voron/voron2_300_v6_0.40.inst.cfg index d95036e3be..1540fabec1 100644 --- a/resources/variants/voron2_300_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_300 name = V6 0.40mm version = 4 -definition = voron2_300 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/voron2_300_v6_0.50.inst.cfg b/resources/variants/voron/voron2_300_v6_0.50.inst.cfg similarity index 87% rename from resources/variants/voron2_300_v6_0.50.inst.cfg rename to resources/variants/voron/voron2_300_v6_0.50.inst.cfg index df5b61f48b..2f408ec6ac 100644 --- a/resources/variants/voron2_300_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.50.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_300 name = V6 0.50mm version = 4 -definition = voron2_300 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/voron2_300_v6_0.60.inst.cfg b/resources/variants/voron/voron2_300_v6_0.60.inst.cfg similarity index 87% rename from resources/variants/voron2_300_v6_0.60.inst.cfg rename to resources/variants/voron/voron2_300_v6_0.60.inst.cfg index ac303dc82b..2030eba596 100644 --- a/resources/variants/voron2_300_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.60.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_300 name = V6 0.60mm version = 4 -definition = voron2_300 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/voron2_300_v6_0.80.inst.cfg b/resources/variants/voron/voron2_300_v6_0.80.inst.cfg similarity index 87% rename from resources/variants/voron2_300_v6_0.80.inst.cfg rename to resources/variants/voron/voron2_300_v6_0.80.inst.cfg index a76487288e..47cfe743f7 100644 --- a/resources/variants/voron2_300_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.80.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_300 name = V6 0.80mm version = 4 -definition = voron2_300 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/voron2_300_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg similarity index 87% rename from resources/variants/voron2_300_volcano_0.40.inst.cfg rename to resources/variants/voron/voron2_300_volcano_0.40.inst.cfg index 3c2055d412..3b61c9c392 100644 --- a/resources/variants/voron2_300_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_300 name = Volcano 0.40mm version = 4 -definition = voron2_300 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/voron2_300_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg similarity index 87% rename from resources/variants/voron2_300_volcano_0.60.inst.cfg rename to resources/variants/voron/voron2_300_volcano_0.60.inst.cfg index 267dd2319e..d578191e1e 100644 --- a/resources/variants/voron2_300_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_300 name = Volcano 0.60mm version = 4 -definition = voron2_300 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/voron2_300_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg similarity index 87% rename from resources/variants/voron2_300_volcano_0.80.inst.cfg rename to resources/variants/voron/voron2_300_volcano_0.80.inst.cfg index c8b651de6c..f705c43108 100644 --- a/resources/variants/voron2_300_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_300 name = Volcano 0.80mm version = 4 -definition = voron2_300 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/voron2_300_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg similarity index 87% rename from resources/variants/voron2_300_volcano_1.00.inst.cfg rename to resources/variants/voron/voron2_300_volcano_1.00.inst.cfg index 2ea749e355..4bf563951b 100644 --- a/resources/variants/voron2_300_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_300 name = Volcano 1.00mm version = 4 -definition = voron2_300 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/voron2_300_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg similarity index 87% rename from resources/variants/voron2_300_volcano_1.20.inst.cfg rename to resources/variants/voron/voron2_300_volcano_1.20.inst.cfg index 71caf0ad4b..97e8a3284b 100644 --- a/resources/variants/voron2_300_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_300 name = Volcano 1.20mm version = 4 -definition = voron2_300 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.2 + diff --git a/resources/variants/voron2_350_v6_0.25.inst.cfg b/resources/variants/voron/voron2_350_v6_0.25.inst.cfg similarity index 87% rename from resources/variants/voron2_350_v6_0.25.inst.cfg rename to resources/variants/voron/voron2_350_v6_0.25.inst.cfg index 6d436755bc..86c1c6f4ad 100644 --- a/resources/variants/voron2_350_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.25.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_350 name = V6 0.25mm version = 4 -definition = voron2_350 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.25 + diff --git a/resources/variants/voron2_350_v6_0.30.inst.cfg b/resources/variants/voron/voron2_350_v6_0.30.inst.cfg similarity index 87% rename from resources/variants/voron2_350_v6_0.30.inst.cfg rename to resources/variants/voron/voron2_350_v6_0.30.inst.cfg index 793e0db9e8..0e3d7acefd 100644 --- a/resources/variants/voron2_350_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.30.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_350 name = V6 0.30mm version = 4 -definition = voron2_350 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.30 + diff --git a/resources/variants/voron2_350_v6_0.35.inst.cfg b/resources/variants/voron/voron2_350_v6_0.35.inst.cfg similarity index 87% rename from resources/variants/voron2_350_v6_0.35.inst.cfg rename to resources/variants/voron/voron2_350_v6_0.35.inst.cfg index e39d1c9be2..512153beda 100644 --- a/resources/variants/voron2_350_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.35.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_350 name = V6 0.35mm version = 4 -definition = voron2_350 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.35 + diff --git a/resources/variants/voron2_350_v6_0.40.inst.cfg b/resources/variants/voron/voron2_350_v6_0.40.inst.cfg similarity index 87% rename from resources/variants/voron2_350_v6_0.40.inst.cfg rename to resources/variants/voron/voron2_350_v6_0.40.inst.cfg index ec19197f9c..d6fe7433d6 100644 --- a/resources/variants/voron2_350_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_350 name = V6 0.40mm version = 4 -definition = voron2_350 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/voron2_350_v6_0.50.inst.cfg b/resources/variants/voron/voron2_350_v6_0.50.inst.cfg similarity index 87% rename from resources/variants/voron2_350_v6_0.50.inst.cfg rename to resources/variants/voron/voron2_350_v6_0.50.inst.cfg index f69402a137..b16e3b8e81 100644 --- a/resources/variants/voron2_350_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.50.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_350 name = V6 0.50mm version = 4 -definition = voron2_350 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/voron2_350_v6_0.60.inst.cfg b/resources/variants/voron/voron2_350_v6_0.60.inst.cfg similarity index 87% rename from resources/variants/voron2_350_v6_0.60.inst.cfg rename to resources/variants/voron/voron2_350_v6_0.60.inst.cfg index 67aba63a9a..477b72e0fa 100644 --- a/resources/variants/voron2_350_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.60.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_350 name = V6 0.60mm version = 4 -definition = voron2_350 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/voron2_350_v6_0.80.inst.cfg b/resources/variants/voron/voron2_350_v6_0.80.inst.cfg similarity index 87% rename from resources/variants/voron2_350_v6_0.80.inst.cfg rename to resources/variants/voron/voron2_350_v6_0.80.inst.cfg index 6bf82dcedf..40cb92eba5 100644 --- a/resources/variants/voron2_350_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.80.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_350 name = V6 0.80mm version = 4 -definition = voron2_350 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/voron2_350_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg similarity index 87% rename from resources/variants/voron2_350_volcano_0.40.inst.cfg rename to resources/variants/voron/voron2_350_volcano_0.40.inst.cfg index bef5b6cc03..ec16aaa269 100644 --- a/resources/variants/voron2_350_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_350 name = Volcano 0.40mm version = 4 -definition = voron2_350 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/voron2_350_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg similarity index 87% rename from resources/variants/voron2_350_volcano_0.60.inst.cfg rename to resources/variants/voron/voron2_350_volcano_0.60.inst.cfg index a66086f0fa..de966abb4e 100644 --- a/resources/variants/voron2_350_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_350 name = Volcano 0.60mm version = 4 -definition = voron2_350 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/voron2_350_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg similarity index 87% rename from resources/variants/voron2_350_volcano_0.80.inst.cfg rename to resources/variants/voron/voron2_350_volcano_0.80.inst.cfg index b618425278..fccb25f12b 100644 --- a/resources/variants/voron2_350_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_350 name = Volcano 0.80mm version = 4 -definition = voron2_350 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/voron2_350_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg similarity index 87% rename from resources/variants/voron2_350_volcano_1.00.inst.cfg rename to resources/variants/voron/voron2_350_volcano_1.00.inst.cfg index 0b3d783be0..f24c10015d 100644 --- a/resources/variants/voron2_350_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_350 name = Volcano 1.00mm version = 4 -definition = voron2_350 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/voron2_350_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg similarity index 87% rename from resources/variants/voron2_350_volcano_1.20.inst.cfg rename to resources/variants/voron/voron2_350_volcano_1.20.inst.cfg index 5b991afa2a..599c5064aa 100644 --- a/resources/variants/voron2_350_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_350 name = Volcano 1.20mm version = 4 -definition = voron2_350 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.2 + diff --git a/resources/variants/voron2_custom_v6_0.25.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg similarity index 87% rename from resources/variants/voron2_custom_v6_0.25.inst.cfg rename to resources/variants/voron/voron2_custom_v6_0.25.inst.cfg index f219f2db1f..a5869586f6 100644 --- a/resources/variants/voron2_custom_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_custom name = V6 0.25mm version = 4 -definition = voron2_custom [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.25 + diff --git a/resources/variants/voron2_custom_v6_0.30.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg similarity index 87% rename from resources/variants/voron2_custom_v6_0.30.inst.cfg rename to resources/variants/voron/voron2_custom_v6_0.30.inst.cfg index 94d65b7fe3..edb540b1a2 100644 --- a/resources/variants/voron2_custom_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_custom name = V6 0.30mm version = 4 -definition = voron2_custom [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.30 + diff --git a/resources/variants/voron2_custom_v6_0.35.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg similarity index 87% rename from resources/variants/voron2_custom_v6_0.35.inst.cfg rename to resources/variants/voron/voron2_custom_v6_0.35.inst.cfg index 3aa9325a05..a2bb53398d 100644 --- a/resources/variants/voron2_custom_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_custom name = V6 0.35mm version = 4 -definition = voron2_custom [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.35 + diff --git a/resources/variants/voron2_custom_v6_0.40.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg similarity index 87% rename from resources/variants/voron2_custom_v6_0.40.inst.cfg rename to resources/variants/voron/voron2_custom_v6_0.40.inst.cfg index bea32ae3e0..749f18a3dd 100644 --- a/resources/variants/voron2_custom_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_custom name = V6 0.40mm version = 4 -definition = voron2_custom [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/voron2_custom_v6_0.50.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg similarity index 87% rename from resources/variants/voron2_custom_v6_0.50.inst.cfg rename to resources/variants/voron/voron2_custom_v6_0.50.inst.cfg index 01e0086ccd..c6c21baaf0 100644 --- a/resources/variants/voron2_custom_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_custom name = V6 0.50mm version = 4 -definition = voron2_custom [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/voron2_custom_v6_0.60.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg similarity index 87% rename from resources/variants/voron2_custom_v6_0.60.inst.cfg rename to resources/variants/voron/voron2_custom_v6_0.60.inst.cfg index 4de2900131..8e8a1e7900 100644 --- a/resources/variants/voron2_custom_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_custom name = V6 0.60mm version = 4 -definition = voron2_custom [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/voron2_custom_v6_0.80.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg similarity index 87% rename from resources/variants/voron2_custom_v6_0.80.inst.cfg rename to resources/variants/voron/voron2_custom_v6_0.80.inst.cfg index b6cf830a5b..89bee318c7 100644 --- a/resources/variants/voron2_custom_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_custom name = V6 0.80mm version = 4 -definition = voron2_custom [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/voron2_custom_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg similarity index 87% rename from resources/variants/voron2_custom_volcano_0.40.inst.cfg rename to resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg index f2d3909675..daf4c54a06 100644 --- a/resources/variants/voron2_custom_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_custom name = Volcano 0.40mm version = 4 -definition = voron2_custom [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/voron2_custom_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg similarity index 87% rename from resources/variants/voron2_custom_volcano_0.60.inst.cfg rename to resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg index 648901577a..e0d62380f9 100644 --- a/resources/variants/voron2_custom_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_custom name = Volcano 0.60mm version = 4 -definition = voron2_custom [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/voron2_custom_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg similarity index 87% rename from resources/variants/voron2_custom_volcano_0.80.inst.cfg rename to resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg index cc15bc5116..312908a37c 100644 --- a/resources/variants/voron2_custom_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_custom name = Volcano 0.80mm version = 4 -definition = voron2_custom [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/voron2_custom_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg similarity index 87% rename from resources/variants/voron2_custom_volcano_1.00.inst.cfg rename to resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg index 1f1c06dd1a..6f62852f17 100644 --- a/resources/variants/voron2_custom_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_custom name = Volcano 1.00mm version = 4 -definition = voron2_custom [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/voron2_custom_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg similarity index 87% rename from resources/variants/voron2_custom_volcano_1.20.inst.cfg rename to resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg index bbca4835cf..c5d3452bef 100644 --- a/resources/variants/voron2_custom_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = voron2_custom name = Volcano 1.20mm version = 4 -definition = voron2_custom [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.2 + diff --git a/resources/variants/voron/voron_trident_250_0.40.inst.cfg b/resources/variants/voron/voron_trident_250_0.40.inst.cfg new file mode 100644 index 0000000000..aea8777365 --- /dev/null +++ b/resources/variants/voron/voron_trident_250_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = voron_trident_250 +name = V6 0.40mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/voron/voron_trident_250_0.60.inst.cfg b/resources/variants/voron/voron_trident_250_0.60.inst.cfg new file mode 100644 index 0000000000..fe7ceef87e --- /dev/null +++ b/resources/variants/voron/voron_trident_250_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = voron_trident_250 +name = V6 0.60mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/voron/voron_trident_250_0.80.inst.cfg b/resources/variants/voron/voron_trident_250_0.80.inst.cfg new file mode 100644 index 0000000000..911fd5bc23 --- /dev/null +++ b/resources/variants/voron/voron_trident_250_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = voron_trident_250 +name = V6 0.80mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/voron/voron_trident_300_0.40.inst.cfg b/resources/variants/voron/voron_trident_300_0.40.inst.cfg new file mode 100644 index 0000000000..5d427352bb --- /dev/null +++ b/resources/variants/voron/voron_trident_300_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = voron_trident_300 +name = V6 0.40mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/voron/voron_trident_300_0.60.inst.cfg b/resources/variants/voron/voron_trident_300_0.60.inst.cfg new file mode 100644 index 0000000000..569e9ecc33 --- /dev/null +++ b/resources/variants/voron/voron_trident_300_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = voron_trident_300 +name = V6 0.60mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/voron/voron_trident_300_0.80.inst.cfg b/resources/variants/voron/voron_trident_300_0.80.inst.cfg new file mode 100644 index 0000000000..d9d23712ae --- /dev/null +++ b/resources/variants/voron/voron_trident_300_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = voron_trident_300 +name = V6 0.80mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/voron/voron_trident_350_0.40.inst.cfg b/resources/variants/voron/voron_trident_350_0.40.inst.cfg new file mode 100644 index 0000000000..8340efe9ab --- /dev/null +++ b/resources/variants/voron/voron_trident_350_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = voron_trident_350 +name = V6 0.40mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/voron/voron_trident_350_0.60.inst.cfg b/resources/variants/voron/voron_trident_350_0.60.inst.cfg new file mode 100644 index 0000000000..f93347b676 --- /dev/null +++ b/resources/variants/voron/voron_trident_350_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = voron_trident_350 +name = V6 0.60mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/voron/voron_trident_350_0.80.inst.cfg b/resources/variants/voron/voron_trident_350_0.80.inst.cfg new file mode 100644 index 0000000000..cd5cbf4410 --- /dev/null +++ b/resources/variants/voron/voron_trident_350_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = voron_trident_350 +name = V6 0.80mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/vzbot/vzbot_235_0.2.inst.cfg b/resources/variants/vzbot/vzbot_235_0.2.inst.cfg new file mode 100644 index 0000000000..fa2cb94114 --- /dev/null +++ b/resources/variants/vzbot/vzbot_235_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_235 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/vzbot/vzbot_235_0.3.inst.cfg b/resources/variants/vzbot/vzbot_235_0.3.inst.cfg new file mode 100644 index 0000000000..a06febff04 --- /dev/null +++ b/resources/variants/vzbot/vzbot_235_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_235 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/vzbot/vzbot_235_0.4.inst.cfg b/resources/variants/vzbot/vzbot_235_0.4.inst.cfg new file mode 100644 index 0000000000..8247a4d708 --- /dev/null +++ b/resources/variants/vzbot/vzbot_235_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_235 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/vzbot/vzbot_235_0.5.inst.cfg b/resources/variants/vzbot/vzbot_235_0.5.inst.cfg new file mode 100644 index 0000000000..564aecbf92 --- /dev/null +++ b/resources/variants/vzbot/vzbot_235_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_235 +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/vzbot/vzbot_235_0.6.inst.cfg b/resources/variants/vzbot/vzbot_235_0.6.inst.cfg new file mode 100644 index 0000000000..c84d0f5c57 --- /dev/null +++ b/resources/variants/vzbot/vzbot_235_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_235 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/vzbot/vzbot_235_0.8.inst.cfg b/resources/variants/vzbot/vzbot_235_0.8.inst.cfg new file mode 100644 index 0000000000..dfe232062f --- /dev/null +++ b/resources/variants/vzbot/vzbot_235_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_235 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/vzbot/vzbot_235_1.0.inst.cfg b/resources/variants/vzbot/vzbot_235_1.0.inst.cfg new file mode 100644 index 0000000000..1df83fd532 --- /dev/null +++ b/resources/variants/vzbot/vzbot_235_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_235 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/vzbot/vzbot_330_0.2.inst.cfg b/resources/variants/vzbot/vzbot_330_0.2.inst.cfg new file mode 100644 index 0000000000..316e2a476c --- /dev/null +++ b/resources/variants/vzbot/vzbot_330_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_330 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/vzbot/vzbot_330_0.3.inst.cfg b/resources/variants/vzbot/vzbot_330_0.3.inst.cfg new file mode 100644 index 0000000000..431f262e63 --- /dev/null +++ b/resources/variants/vzbot/vzbot_330_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_330 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/vzbot/vzbot_330_0.4.inst.cfg b/resources/variants/vzbot/vzbot_330_0.4.inst.cfg new file mode 100644 index 0000000000..bb954427a7 --- /dev/null +++ b/resources/variants/vzbot/vzbot_330_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_330 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/vzbot/vzbot_330_0.5.inst.cfg b/resources/variants/vzbot/vzbot_330_0.5.inst.cfg new file mode 100644 index 0000000000..eac9b47c5e --- /dev/null +++ b/resources/variants/vzbot/vzbot_330_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_330 +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/vzbot/vzbot_330_0.6.inst.cfg b/resources/variants/vzbot/vzbot_330_0.6.inst.cfg new file mode 100644 index 0000000000..6ecac4a4e6 --- /dev/null +++ b/resources/variants/vzbot/vzbot_330_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_330 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/vzbot/vzbot_330_0.8.inst.cfg b/resources/variants/vzbot/vzbot_330_0.8.inst.cfg new file mode 100644 index 0000000000..654970c441 --- /dev/null +++ b/resources/variants/vzbot/vzbot_330_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_330 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/vzbot/vzbot_330_1.0.inst.cfg b/resources/variants/vzbot/vzbot_330_1.0.inst.cfg new file mode 100644 index 0000000000..0285df5ae5 --- /dev/null +++ b/resources/variants/vzbot/vzbot_330_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_330 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/vzbot/vzbot_base_0.2.inst.cfg b/resources/variants/vzbot/vzbot_base_0.2.inst.cfg new file mode 100644 index 0000000000..5be96194af --- /dev/null +++ b/resources/variants/vzbot/vzbot_base_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_base +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/vzbot/vzbot_base_0.3.inst.cfg b/resources/variants/vzbot/vzbot_base_0.3.inst.cfg new file mode 100644 index 0000000000..05f66d75fe --- /dev/null +++ b/resources/variants/vzbot/vzbot_base_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_base +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/vzbot/vzbot_base_0.4.inst.cfg b/resources/variants/vzbot/vzbot_base_0.4.inst.cfg new file mode 100644 index 0000000000..37bcf18c7a --- /dev/null +++ b/resources/variants/vzbot/vzbot_base_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_base +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/vzbot/vzbot_base_0.5.inst.cfg b/resources/variants/vzbot/vzbot_base_0.5.inst.cfg new file mode 100644 index 0000000000..d212c38eb1 --- /dev/null +++ b/resources/variants/vzbot/vzbot_base_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_base +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/vzbot/vzbot_base_0.6.inst.cfg b/resources/variants/vzbot/vzbot_base_0.6.inst.cfg new file mode 100644 index 0000000000..85760340fa --- /dev/null +++ b/resources/variants/vzbot/vzbot_base_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_base +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/vzbot/vzbot_base_0.8.inst.cfg b/resources/variants/vzbot/vzbot_base_0.8.inst.cfg new file mode 100644 index 0000000000..86f2a6fc18 --- /dev/null +++ b/resources/variants/vzbot/vzbot_base_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_base +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/vzbot/vzbot_base_1.0.inst.cfg b/resources/variants/vzbot/vzbot_base_1.0.inst.cfg new file mode 100644 index 0000000000..7466d2aa72 --- /dev/null +++ b/resources/variants/vzbot/vzbot_base_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_base +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg new file mode 100644 index 0000000000..d146c74792 --- /dev/null +++ b/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_custom +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg new file mode 100644 index 0000000000..e0dd0299db --- /dev/null +++ b/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_custom +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg new file mode 100644 index 0000000000..bf7d9d6117 --- /dev/null +++ b/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_custom +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg new file mode 100644 index 0000000000..bf0da7276e --- /dev/null +++ b/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_custom +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg new file mode 100644 index 0000000000..3524f585de --- /dev/null +++ b/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_custom +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg new file mode 100644 index 0000000000..c8db19a83c --- /dev/null +++ b/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_custom +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg b/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg new file mode 100644 index 0000000000..df7635ecb5 --- /dev/null +++ b/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = vzbot_custom +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/weedo_x40_weedo_0.4.inst.cfg b/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg similarity index 87% rename from resources/variants/weedo_x40_weedo_0.4.inst.cfg rename to resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg index cf626e62ac..a350aa9eef 100644 --- a/resources/variants/weedo_x40_weedo_0.4.inst.cfg +++ b/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = weedo_x40 name = 0.4mm Nozzle version = 4 -definition = weedo_x40 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/weedo_x40_weedo_0.6.inst.cfg b/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg similarity index 87% rename from resources/variants/weedo_x40_weedo_0.6.inst.cfg rename to resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg index cf67c40978..9f55df85c0 100644 --- a/resources/variants/weedo_x40_weedo_0.6.inst.cfg +++ b/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = weedo_x40 name = 0.6mm Nozzle version = 4 -definition = weedo_x40 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/weedo_x40_weedo_0.8.inst.cfg b/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg similarity index 87% rename from resources/variants/weedo_x40_weedo_0.8.inst.cfg rename to resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg index c9afadf4aa..0deade0869 100644 --- a/resources/variants/weedo_x40_weedo_0.8.inst.cfg +++ b/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = weedo_x40 name = 0.8mm Nozzle version = 4 -definition = weedo_x40 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/xyzprinting_base_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg similarity index 87% rename from resources/variants/xyzprinting_base_0.40.inst.cfg rename to resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg index 61b6c22e98..9181d01928 100644 --- a/resources/variants/xyzprinting_base_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] +definition = xyzprinting_base name = 0.4mm Nozzle version = 4 -definition = xyzprinting_base [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/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 similarity index 74% rename from resources/variants/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg rename to resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg index 21bff4ac30..157baad8b4 100644 --- a/resources/variants/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 @@ -1,13 +1,14 @@ [general] +definition = xyzprinting_da_vinci_1p0_pro name = Copper 0.4mm Nozzle version = 4 -definition = xyzprinting_da_vinci_1p0_pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +machine_nozzle_id = Copper 0.4mm Nozzle machine_nozzle_size = 0.4 -machine_nozzle_id = Copper 0.4mm Nozzle \ No newline at end of file + diff --git a/resources/variants/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 similarity index 74% rename from resources/variants/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg rename to resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg index 3eaa537267..6d9f9123e0 100644 --- a/resources/variants/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 @@ -1,13 +1,14 @@ [general] +definition = xyzprinting_da_vinci_jr_1p0a_pro name = Copper 0.4mm Nozzle version = 4 -definition = xyzprinting_da_vinci_jr_1p0a_pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +machine_nozzle_id = Copper 0.4mm Nozzle machine_nozzle_size = 0.4 -machine_nozzle_id = Copper 0.4mm Nozzle \ No newline at end of file + diff --git a/resources/variants/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 similarity index 72% rename from resources/variants/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg rename to resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg index 7438b3137b..7d4c829d96 100644 --- a/resources/variants/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 @@ -1,13 +1,14 @@ [general] +definition = xyzprinting_da_vinci_jr_1p0a_pro name = Hardened Steel 0.4mm Nozzle version = 4 -definition = xyzprinting_da_vinci_jr_1p0a_pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +machine_nozzle_id = Hardened Steel 0.4mm Nozzle machine_nozzle_size = 0.4 -machine_nozzle_id = Hardened Steel 0.4mm Nozzle \ No newline at end of file + diff --git a/resources/variants/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 similarity index 91% rename from resources/variants/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg rename to resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg index 1596afe256..40062a321a 100644 --- a/resources/variants/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 @@ -1,13 +1,14 @@ [general] +definition = xyzprinting_da_vinci_jr_pro_xeplus name = Copper 0.4mm Nozzle version = 4 -definition = xyzprinting_da_vinci_jr_pro_xeplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.4 machine_nozzle_id = Copper 0.4mm Nozzle +machine_nozzle_size = 0.4 + diff --git a/resources/variants/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 similarity index 91% rename from resources/variants/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg rename to resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg index 8b454ffd0a..0aaef4de4a 100644 --- a/resources/variants/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 @@ -1,13 +1,14 @@ [general] +definition = xyzprinting_da_vinci_jr_pro_xeplus name = Hardened Steel 0.4mm Nozzle version = 4 -definition = xyzprinting_da_vinci_jr_pro_xeplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.4 machine_nozzle_id = Hardened Steel 0.4mm Nozzle +machine_nozzle_size = 0.4 + diff --git a/resources/variants/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 similarity index 90% rename from resources/variants/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg rename to resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg index e809c2805e..491861dfa7 100644 --- a/resources/variants/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 @@ -1,13 +1,14 @@ [general] +definition = xyzprinting_da_vinci_jr_pro_xplus name = Copper 0.4mm Nozzle version = 4 -definition = xyzprinting_da_vinci_jr_pro_xplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.4 machine_nozzle_id = Copper 0.4mm Nozzle +machine_nozzle_size = 0.4 + diff --git a/resources/variants/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 similarity index 91% rename from resources/variants/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg rename to resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg index 0a1141cbb0..3c56030b11 100644 --- a/resources/variants/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 @@ -1,13 +1,14 @@ [general] +definition = xyzprinting_da_vinci_jr_pro_xplus name = Hardened Steel 0.4mm Nozzle version = 4 -definition = xyzprinting_da_vinci_jr_pro_xplus [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.4 machine_nozzle_id = Hardened Steel 0.4mm Nozzle +machine_nozzle_size = 0.4 + diff --git a/resources/variants/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 similarity index 72% rename from resources/variants/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg rename to resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg index cc90d08d61..a0f71419ed 100644 --- a/resources/variants/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 @@ -1,13 +1,14 @@ [general] +definition = xyzprinting_da_vinci_jr_w_pro name = Hardened Steel 0.4mm Nozzle version = 4 -definition = xyzprinting_da_vinci_jr_w_pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +machine_nozzle_id = Hardened Steel 0.4mm Nozzle machine_nozzle_size = 0.4 -machine_nozzle_id = Hardened Steel 0.4mm Nozzle \ No newline at end of file + diff --git a/resources/variants/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 similarity index 72% rename from resources/variants/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg rename to resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg index 2b5dd8f184..1b1ad1c185 100644 --- a/resources/variants/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 @@ -1,13 +1,14 @@ [general] +definition = xyzprinting_da_vinci_jr_w_pro name = Stainless Steel 0.4mm Nozzle version = 4 -definition = xyzprinting_da_vinci_jr_w_pro [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] +machine_nozzle_id = Stainless Steel 0.4mm Nozzle machine_nozzle_size = 0.4 -machine_nozzle_id = Stainless Steel 0.4mm Nozzle \ No newline at end of file + 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 new file mode 100644 index 0000000000..78b5989c1c --- /dev/null +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Hardened Steel 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_id = Hardened Steel 0.4mm Nozzle +machine_nozzle_size = 0.4 + 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 new file mode 100644 index 0000000000..fc276f5997 --- /dev/null +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = xyzprinting_da_vinci_pro_evo +name = Hardened Steel High Temp. 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 22 +type = variant + +[values] +machine_nozzle_id = Hardened Steel High Temp. 0.6mm Nozzle +machine_nozzle_size = 0.6 + diff --git a/resources/variants/xyzprinting_da_vinci_super_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg similarity index 90% rename from resources/variants/xyzprinting_da_vinci_super_copper_0.40.inst.cfg rename to resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg index 328d7df137..7362bc7552 100644 --- a/resources/variants/xyzprinting_da_vinci_super_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = xyzprinting_da_vinci_super name = Copper 0.4mm Nozzle version = 4 -definition = xyzprinting_da_vinci_super [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.4 machine_nozzle_id = Copper 0.4mm Nozzle +machine_nozzle_size = 0.4 + diff --git a/resources/variants/xyzprinting_da_vinci_super_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg similarity index 91% rename from resources/variants/xyzprinting_da_vinci_super_hs_0.40.inst.cfg rename to resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg index abdb0041fd..ae4bb64582 100644 --- a/resources/variants/xyzprinting_da_vinci_super_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = xyzprinting_da_vinci_super name = Hardened Steel 0.4mm Nozzle version = 4 -definition = xyzprinting_da_vinci_super [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] -machine_nozzle_size = 0.4 machine_nozzle_id = Hardened Steel 0.4mm Nozzle +machine_nozzle_size = 0.4 + diff --git a/resources/variants/zav_base_0.20.inst.cfg b/resources/variants/zav/zav_base_0.20.inst.cfg similarity index 73% rename from resources/variants/zav_base_0.20.inst.cfg rename to resources/variants/zav/zav_base_0.20.inst.cfg index 31773522e9..4e44a094a2 100644 --- a/resources/variants/zav_base_0.20.inst.cfg +++ b/resources/variants/zav/zav_base_0.20.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.20mm_ZAV_Nozzle -version = 4 definition = zav_base +name = 0.20mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/zav_base_0.25.inst.cfg b/resources/variants/zav/zav_base_0.25.inst.cfg similarity index 73% rename from resources/variants/zav_base_0.25.inst.cfg rename to resources/variants/zav/zav_base_0.25.inst.cfg index 86dcf25383..a33ac4b63c 100644 --- a/resources/variants/zav_base_0.25.inst.cfg +++ b/resources/variants/zav/zav_base_0.25.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.25mm_ZAV_Nozzle -version = 4 definition = zav_base +name = 0.25mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.25 + diff --git a/resources/variants/zav_base_0.30.inst.cfg b/resources/variants/zav/zav_base_0.30.inst.cfg similarity index 73% rename from resources/variants/zav_base_0.30.inst.cfg rename to resources/variants/zav/zav_base_0.30.inst.cfg index 02ce05d5a5..f00379132b 100644 --- a/resources/variants/zav_base_0.30.inst.cfg +++ b/resources/variants/zav/zav_base_0.30.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.30mm_ZAV_Nozzle -version = 4 definition = zav_base +name = 0.30mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/zav_base_0.35.inst.cfg b/resources/variants/zav/zav_base_0.35.inst.cfg similarity index 73% rename from resources/variants/zav_base_0.35.inst.cfg rename to resources/variants/zav/zav_base_0.35.inst.cfg index 75af3f362f..a89f471161 100644 --- a/resources/variants/zav_base_0.35.inst.cfg +++ b/resources/variants/zav/zav_base_0.35.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.35mm_ZAV_Nozzle -version = 4 definition = zav_base +name = 0.35mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.35 + diff --git a/resources/variants/zav_base_0.40.inst.cfg b/resources/variants/zav/zav_base_0.40.inst.cfg similarity index 73% rename from resources/variants/zav_base_0.40.inst.cfg rename to resources/variants/zav/zav_base_0.40.inst.cfg index ab0c247cc5..d0c0e2aa07 100644 --- a/resources/variants/zav_base_0.40.inst.cfg +++ b/resources/variants/zav/zav_base_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.40mm_ZAV_Nozzle -version = 4 definition = zav_base +name = 0.40mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/zav_base_0.45.inst.cfg b/resources/variants/zav/zav_base_0.45.inst.cfg similarity index 73% rename from resources/variants/zav_base_0.45.inst.cfg rename to resources/variants/zav/zav_base_0.45.inst.cfg index ef78321972..717f95274d 100644 --- a/resources/variants/zav_base_0.45.inst.cfg +++ b/resources/variants/zav/zav_base_0.45.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.45mm_ZAV_Nozzle -version = 4 definition = zav_base +name = 0.45mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.45 + diff --git a/resources/variants/zav_base_0.50.inst.cfg b/resources/variants/zav/zav_base_0.50.inst.cfg similarity index 73% rename from resources/variants/zav_base_0.50.inst.cfg rename to resources/variants/zav/zav_base_0.50.inst.cfg index b9a855a575..e9acba6ec1 100644 --- a/resources/variants/zav_base_0.50.inst.cfg +++ b/resources/variants/zav/zav_base_0.50.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.50mm_ZAV_Nozzle -version = 4 definition = zav_base +name = 0.50mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/zav_base_0.60.inst.cfg b/resources/variants/zav/zav_base_0.60.inst.cfg similarity index 73% rename from resources/variants/zav_base_0.60.inst.cfg rename to resources/variants/zav/zav_base_0.60.inst.cfg index 6c36067e96..4eb3a28ecb 100644 --- a/resources/variants/zav_base_0.60.inst.cfg +++ b/resources/variants/zav/zav_base_0.60.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.60mm_ZAV_Nozzle -version = 4 definition = zav_base +name = 0.60mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/zav_base_0.80.inst.cfg b/resources/variants/zav/zav_base_0.80.inst.cfg similarity index 73% rename from resources/variants/zav_base_0.80.inst.cfg rename to resources/variants/zav/zav_base_0.80.inst.cfg index dcd7d65128..936bcc18d5 100644 --- a/resources/variants/zav_base_0.80.inst.cfg +++ b/resources/variants/zav/zav_base_0.80.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.80mm_ZAV_Nozzle -version = 4 definition = zav_base +name = 0.80mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/zav_base_1.00.inst.cfg b/resources/variants/zav/zav_base_1.00.inst.cfg similarity index 73% rename from resources/variants/zav_base_1.00.inst.cfg rename to resources/variants/zav/zav_base_1.00.inst.cfg index 501fa3ca30..3beda59b75 100644 --- a/resources/variants/zav_base_1.00.inst.cfg +++ b/resources/variants/zav/zav_base_1.00.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 1.00mm_ZAV_Nozzle -version = 4 definition = zav_base +name = 1.00mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/zav_big_0.20.inst.cfg b/resources/variants/zav/zav_big_0.20.inst.cfg similarity index 73% rename from resources/variants/zav_big_0.20.inst.cfg rename to resources/variants/zav/zav_big_0.20.inst.cfg index d217275e4d..819d5f0ee5 100644 --- a/resources/variants/zav_big_0.20.inst.cfg +++ b/resources/variants/zav/zav_big_0.20.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.20mm_ZAV_Nozzle -version = 4 definition = zav_big +name = 0.20mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/zav_big_0.25.inst.cfg b/resources/variants/zav/zav_big_0.25.inst.cfg similarity index 73% rename from resources/variants/zav_big_0.25.inst.cfg rename to resources/variants/zav/zav_big_0.25.inst.cfg index 8c4412eada..6fd29ce394 100644 --- a/resources/variants/zav_big_0.25.inst.cfg +++ b/resources/variants/zav/zav_big_0.25.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.25mm_ZAV_Nozzle -version = 4 definition = zav_big +name = 0.25mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.25 + diff --git a/resources/variants/zav_big_0.30.inst.cfg b/resources/variants/zav/zav_big_0.30.inst.cfg similarity index 73% rename from resources/variants/zav_big_0.30.inst.cfg rename to resources/variants/zav/zav_big_0.30.inst.cfg index aba2e32e05..02d876e641 100644 --- a/resources/variants/zav_big_0.30.inst.cfg +++ b/resources/variants/zav/zav_big_0.30.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.30mm_ZAV_Nozzle -version = 4 definition = zav_big +name = 0.30mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/zav_big_0.35.inst.cfg b/resources/variants/zav/zav_big_0.35.inst.cfg similarity index 73% rename from resources/variants/zav_big_0.35.inst.cfg rename to resources/variants/zav/zav_big_0.35.inst.cfg index 75e75f40ff..e9def8ef5f 100644 --- a/resources/variants/zav_big_0.35.inst.cfg +++ b/resources/variants/zav/zav_big_0.35.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.35mm_ZAV_Nozzle -version = 4 definition = zav_big +name = 0.35mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.35 + diff --git a/resources/variants/zav_big_0.40.inst.cfg b/resources/variants/zav/zav_big_0.40.inst.cfg similarity index 73% rename from resources/variants/zav_big_0.40.inst.cfg rename to resources/variants/zav/zav_big_0.40.inst.cfg index 70dc568bae..b7086e0a4b 100644 --- a/resources/variants/zav_big_0.40.inst.cfg +++ b/resources/variants/zav/zav_big_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.40mm_ZAV_Nozzle -version = 4 definition = zav_big +name = 0.40mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/zav_big_0.45.inst.cfg b/resources/variants/zav/zav_big_0.45.inst.cfg similarity index 73% rename from resources/variants/zav_big_0.45.inst.cfg rename to resources/variants/zav/zav_big_0.45.inst.cfg index dbee670deb..676dce58dd 100644 --- a/resources/variants/zav_big_0.45.inst.cfg +++ b/resources/variants/zav/zav_big_0.45.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.45mm_ZAV_Nozzle -version = 4 definition = zav_big +name = 0.45mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.45 + diff --git a/resources/variants/zav_big_0.50.inst.cfg b/resources/variants/zav/zav_big_0.50.inst.cfg similarity index 73% rename from resources/variants/zav_big_0.50.inst.cfg rename to resources/variants/zav/zav_big_0.50.inst.cfg index 9bd2b4d00c..34cba143ed 100644 --- a/resources/variants/zav_big_0.50.inst.cfg +++ b/resources/variants/zav/zav_big_0.50.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.50mm_ZAV_Nozzle -version = 4 definition = zav_big +name = 0.50mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/zav_big_0.60.inst.cfg b/resources/variants/zav/zav_big_0.60.inst.cfg similarity index 73% rename from resources/variants/zav_big_0.60.inst.cfg rename to resources/variants/zav/zav_big_0.60.inst.cfg index fed52a95de..8ffe1f0474 100644 --- a/resources/variants/zav_big_0.60.inst.cfg +++ b/resources/variants/zav/zav_big_0.60.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.60mm_ZAV_Nozzle -version = 4 definition = zav_big +name = 0.60mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/zav_big_0.80.inst.cfg b/resources/variants/zav/zav_big_0.80.inst.cfg similarity index 73% rename from resources/variants/zav_big_0.80.inst.cfg rename to resources/variants/zav/zav_big_0.80.inst.cfg index 79f1c96b81..362065f210 100644 --- a/resources/variants/zav_big_0.80.inst.cfg +++ b/resources/variants/zav/zav_big_0.80.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.80mm_ZAV_Nozzle -version = 4 definition = zav_big +name = 0.80mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/zav_big_1.00.inst.cfg b/resources/variants/zav/zav_big_1.00.inst.cfg similarity index 73% rename from resources/variants/zav_big_1.00.inst.cfg rename to resources/variants/zav/zav_big_1.00.inst.cfg index 54a6ced552..df2a745057 100644 --- a/resources/variants/zav_big_1.00.inst.cfg +++ b/resources/variants/zav/zav_big_1.00.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 1.00mm_ZAV_Nozzle -version = 4 definition = zav_big +name = 1.00mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/zav_bigplus_0.20.inst.cfg b/resources/variants/zav/zav_bigplus_0.20.inst.cfg similarity index 73% rename from resources/variants/zav_bigplus_0.20.inst.cfg rename to resources/variants/zav/zav_bigplus_0.20.inst.cfg index 87f2b80ce3..4fa17d9e1f 100644 --- a/resources/variants/zav_bigplus_0.20.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.20.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.20mm_ZAV_Nozzle -version = 4 definition = zav_bigplus +name = 0.20mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/zav_bigplus_0.25.inst.cfg b/resources/variants/zav/zav_bigplus_0.25.inst.cfg similarity index 74% rename from resources/variants/zav_bigplus_0.25.inst.cfg rename to resources/variants/zav/zav_bigplus_0.25.inst.cfg index b4998e45e2..e9a4d63228 100644 --- a/resources/variants/zav_bigplus_0.25.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.25.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.25mm_ZAV_Nozzle -version = 4 definition = zav_bigplus +name = 0.25mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.25 + diff --git a/resources/variants/zav_bigplus_0.30.inst.cfg b/resources/variants/zav/zav_bigplus_0.30.inst.cfg similarity index 73% rename from resources/variants/zav_bigplus_0.30.inst.cfg rename to resources/variants/zav/zav_bigplus_0.30.inst.cfg index 5be877da9e..31c10f4b68 100644 --- a/resources/variants/zav_bigplus_0.30.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.30.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.30mm_ZAV_Nozzle -version = 4 definition = zav_bigplus +name = 0.30mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/zav_bigplus_0.35.inst.cfg b/resources/variants/zav/zav_bigplus_0.35.inst.cfg similarity index 74% rename from resources/variants/zav_bigplus_0.35.inst.cfg rename to resources/variants/zav/zav_bigplus_0.35.inst.cfg index 0cd82bebca..0e0cff36db 100644 --- a/resources/variants/zav_bigplus_0.35.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.35.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.35mm_ZAV_Nozzle -version = 4 definition = zav_bigplus +name = 0.35mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.35 + diff --git a/resources/variants/zav_bigplus_0.40.inst.cfg b/resources/variants/zav/zav_bigplus_0.40.inst.cfg similarity index 73% rename from resources/variants/zav_bigplus_0.40.inst.cfg rename to resources/variants/zav/zav_bigplus_0.40.inst.cfg index e2f295d539..5648641180 100644 --- a/resources/variants/zav_bigplus_0.40.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.40mm_ZAV_Nozzle -version = 4 definition = zav_bigplus +name = 0.40mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/zav_bigplus_0.45.inst.cfg b/resources/variants/zav/zav_bigplus_0.45.inst.cfg similarity index 74% rename from resources/variants/zav_bigplus_0.45.inst.cfg rename to resources/variants/zav/zav_bigplus_0.45.inst.cfg index 165b362a8e..9365c882fb 100644 --- a/resources/variants/zav_bigplus_0.45.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.45.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.45mm_ZAV_Nozzle -version = 4 definition = zav_bigplus +name = 0.45mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.45 + diff --git a/resources/variants/zav_bigplus_0.50.inst.cfg b/resources/variants/zav/zav_bigplus_0.50.inst.cfg similarity index 73% rename from resources/variants/zav_bigplus_0.50.inst.cfg rename to resources/variants/zav/zav_bigplus_0.50.inst.cfg index 7a06e8195a..6fa5aae4a3 100644 --- a/resources/variants/zav_bigplus_0.50.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.50.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.50mm_ZAV_Nozzle -version = 4 definition = zav_bigplus +name = 0.50mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/zav_bigplus_0.60.inst.cfg b/resources/variants/zav/zav_bigplus_0.60.inst.cfg similarity index 73% rename from resources/variants/zav_bigplus_0.60.inst.cfg rename to resources/variants/zav/zav_bigplus_0.60.inst.cfg index c83f35cf0c..1d56233594 100644 --- a/resources/variants/zav_bigplus_0.60.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.60.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.60mm_ZAV_Nozzle -version = 4 definition = zav_bigplus +name = 0.60mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/zav_bigplus_0.80.inst.cfg b/resources/variants/zav/zav_bigplus_0.80.inst.cfg similarity index 73% rename from resources/variants/zav_bigplus_0.80.inst.cfg rename to resources/variants/zav/zav_bigplus_0.80.inst.cfg index 8d7e49f17b..38e0c446fa 100644 --- a/resources/variants/zav_bigplus_0.80.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.80.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.80mm_ZAV_Nozzle -version = 4 definition = zav_bigplus +name = 0.80mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/zav_bigplus_1.00.inst.cfg b/resources/variants/zav/zav_bigplus_1.00.inst.cfg similarity index 73% rename from resources/variants/zav_bigplus_1.00.inst.cfg rename to resources/variants/zav/zav_bigplus_1.00.inst.cfg index 4887b9d30e..b183720df7 100644 --- a/resources/variants/zav_bigplus_1.00.inst.cfg +++ b/resources/variants/zav/zav_bigplus_1.00.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 1.00mm_ZAV_Nozzle -version = 4 definition = zav_bigplus +name = 1.00mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/zav_l_0.20.inst.cfg b/resources/variants/zav/zav_l_0.20.inst.cfg similarity index 72% rename from resources/variants/zav_l_0.20.inst.cfg rename to resources/variants/zav/zav_l_0.20.inst.cfg index bf5f664a62..570ad1e804 100644 --- a/resources/variants/zav_l_0.20.inst.cfg +++ b/resources/variants/zav/zav_l_0.20.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.20mm_ZAV_Nozzle -version = 4 definition = zav_l +name = 0.20mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/zav_l_0.25.inst.cfg b/resources/variants/zav/zav_l_0.25.inst.cfg similarity index 73% rename from resources/variants/zav_l_0.25.inst.cfg rename to resources/variants/zav/zav_l_0.25.inst.cfg index c77151f211..0bb46590a2 100644 --- a/resources/variants/zav_l_0.25.inst.cfg +++ b/resources/variants/zav/zav_l_0.25.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.25mm_ZAV_Nozzle -version = 4 definition = zav_l +name = 0.25mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.25 + diff --git a/resources/variants/zav_l_0.30.inst.cfg b/resources/variants/zav/zav_l_0.30.inst.cfg similarity index 72% rename from resources/variants/zav_l_0.30.inst.cfg rename to resources/variants/zav/zav_l_0.30.inst.cfg index ca04f061f5..2031947fe3 100644 --- a/resources/variants/zav_l_0.30.inst.cfg +++ b/resources/variants/zav/zav_l_0.30.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.30mm_ZAV_Nozzle -version = 4 definition = zav_l +name = 0.30mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/zav_l_0.35.inst.cfg b/resources/variants/zav/zav_l_0.35.inst.cfg similarity index 73% rename from resources/variants/zav_l_0.35.inst.cfg rename to resources/variants/zav/zav_l_0.35.inst.cfg index 603c5e2a2e..c94b03b593 100644 --- a/resources/variants/zav_l_0.35.inst.cfg +++ b/resources/variants/zav/zav_l_0.35.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.35mm_ZAV_Nozzle -version = 4 definition = zav_l +name = 0.35mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.35 + diff --git a/resources/variants/zav_l_0.40.inst.cfg b/resources/variants/zav/zav_l_0.40.inst.cfg similarity index 72% rename from resources/variants/zav_l_0.40.inst.cfg rename to resources/variants/zav/zav_l_0.40.inst.cfg index 8a554e3fd8..a9439a7422 100644 --- a/resources/variants/zav_l_0.40.inst.cfg +++ b/resources/variants/zav/zav_l_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.40mm_ZAV_Nozzle -version = 4 definition = zav_l +name = 0.40mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/zav_l_0.45.inst.cfg b/resources/variants/zav/zav_l_0.45.inst.cfg similarity index 73% rename from resources/variants/zav_l_0.45.inst.cfg rename to resources/variants/zav/zav_l_0.45.inst.cfg index 6a1b88ae7a..c2962b60ba 100644 --- a/resources/variants/zav_l_0.45.inst.cfg +++ b/resources/variants/zav/zav_l_0.45.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.45mm_ZAV_Nozzle -version = 4 definition = zav_l +name = 0.45mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.45 + diff --git a/resources/variants/zav_l_0.50.inst.cfg b/resources/variants/zav/zav_l_0.50.inst.cfg similarity index 72% rename from resources/variants/zav_l_0.50.inst.cfg rename to resources/variants/zav/zav_l_0.50.inst.cfg index 183b1c71a4..d0ce3b7f88 100644 --- a/resources/variants/zav_l_0.50.inst.cfg +++ b/resources/variants/zav/zav_l_0.50.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.50mm_ZAV_Nozzle -version = 4 definition = zav_l +name = 0.50mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/zav_l_0.60.inst.cfg b/resources/variants/zav/zav_l_0.60.inst.cfg similarity index 72% rename from resources/variants/zav_l_0.60.inst.cfg rename to resources/variants/zav/zav_l_0.60.inst.cfg index 96d9335d0f..eec1d7d3a2 100644 --- a/resources/variants/zav_l_0.60.inst.cfg +++ b/resources/variants/zav/zav_l_0.60.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.60mm_ZAV_Nozzle -version = 4 definition = zav_l +name = 0.60mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/zav_l_0.80.inst.cfg b/resources/variants/zav/zav_l_0.80.inst.cfg similarity index 72% rename from resources/variants/zav_l_0.80.inst.cfg rename to resources/variants/zav/zav_l_0.80.inst.cfg index ee863e81c6..9a151bc35b 100644 --- a/resources/variants/zav_l_0.80.inst.cfg +++ b/resources/variants/zav/zav_l_0.80.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.80mm_ZAV_Nozzle -version = 4 definition = zav_l +name = 0.80mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/zav_l_1.00.inst.cfg b/resources/variants/zav/zav_l_1.00.inst.cfg similarity index 72% rename from resources/variants/zav_l_1.00.inst.cfg rename to resources/variants/zav/zav_l_1.00.inst.cfg index ad5f7a1357..32e430d209 100644 --- a/resources/variants/zav_l_1.00.inst.cfg +++ b/resources/variants/zav/zav_l_1.00.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 1.00mm_ZAV_Nozzle -version = 4 definition = zav_l +name = 1.00mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/zav_max_0.20.inst.cfg b/resources/variants/zav/zav_max_0.20.inst.cfg similarity index 73% rename from resources/variants/zav_max_0.20.inst.cfg rename to resources/variants/zav/zav_max_0.20.inst.cfg index 2def0d756a..e02d20d6b5 100644 --- a/resources/variants/zav_max_0.20.inst.cfg +++ b/resources/variants/zav/zav_max_0.20.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.20mm_ZAV_Nozzle -version = 4 definition = zav_max +name = 0.20mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/zav_max_0.25.inst.cfg b/resources/variants/zav/zav_max_0.25.inst.cfg similarity index 73% rename from resources/variants/zav_max_0.25.inst.cfg rename to resources/variants/zav/zav_max_0.25.inst.cfg index ce817e2d64..453ab07d8f 100644 --- a/resources/variants/zav_max_0.25.inst.cfg +++ b/resources/variants/zav/zav_max_0.25.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.25mm_ZAV_Nozzle -version = 4 definition = zav_max +name = 0.25mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.25 + diff --git a/resources/variants/zav_max_0.30.inst.cfg b/resources/variants/zav/zav_max_0.30.inst.cfg similarity index 73% rename from resources/variants/zav_max_0.30.inst.cfg rename to resources/variants/zav/zav_max_0.30.inst.cfg index 6813b6b889..cbc4dca202 100644 --- a/resources/variants/zav_max_0.30.inst.cfg +++ b/resources/variants/zav/zav_max_0.30.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.30mm_ZAV_Nozzle -version = 4 definition = zav_max +name = 0.30mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/zav_max_0.35.inst.cfg b/resources/variants/zav/zav_max_0.35.inst.cfg similarity index 73% rename from resources/variants/zav_max_0.35.inst.cfg rename to resources/variants/zav/zav_max_0.35.inst.cfg index 2f3f59a196..bb82e132c5 100644 --- a/resources/variants/zav_max_0.35.inst.cfg +++ b/resources/variants/zav/zav_max_0.35.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.35mm_ZAV_Nozzle -version = 4 definition = zav_max +name = 0.35mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.35 + diff --git a/resources/variants/zav_max_0.40.inst.cfg b/resources/variants/zav/zav_max_0.40.inst.cfg similarity index 73% rename from resources/variants/zav_max_0.40.inst.cfg rename to resources/variants/zav/zav_max_0.40.inst.cfg index 4a54767b1c..b3d86fc8e7 100644 --- a/resources/variants/zav_max_0.40.inst.cfg +++ b/resources/variants/zav/zav_max_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.40mm_ZAV_Nozzle -version = 4 definition = zav_max +name = 0.40mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/zav_max_0.45.inst.cfg b/resources/variants/zav/zav_max_0.45.inst.cfg similarity index 73% rename from resources/variants/zav_max_0.45.inst.cfg rename to resources/variants/zav/zav_max_0.45.inst.cfg index 76406ed9cf..c94ba4c136 100644 --- a/resources/variants/zav_max_0.45.inst.cfg +++ b/resources/variants/zav/zav_max_0.45.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.45mm_ZAV_Nozzle -version = 4 definition = zav_max +name = 0.45mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.45 + diff --git a/resources/variants/zav_max_0.50.inst.cfg b/resources/variants/zav/zav_max_0.50.inst.cfg similarity index 73% rename from resources/variants/zav_max_0.50.inst.cfg rename to resources/variants/zav/zav_max_0.50.inst.cfg index 247c25e8be..cd2deaa611 100644 --- a/resources/variants/zav_max_0.50.inst.cfg +++ b/resources/variants/zav/zav_max_0.50.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.50mm_ZAV_Nozzle -version = 4 definition = zav_max +name = 0.50mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/zav_max_0.60.inst.cfg b/resources/variants/zav/zav_max_0.60.inst.cfg similarity index 73% rename from resources/variants/zav_max_0.60.inst.cfg rename to resources/variants/zav/zav_max_0.60.inst.cfg index e9b12b8fed..d18e1b0f4c 100644 --- a/resources/variants/zav_max_0.60.inst.cfg +++ b/resources/variants/zav/zav_max_0.60.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.60mm_ZAV_Nozzle -version = 4 definition = zav_max +name = 0.60mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/zav_max_0.80.inst.cfg b/resources/variants/zav/zav_max_0.80.inst.cfg similarity index 73% rename from resources/variants/zav_max_0.80.inst.cfg rename to resources/variants/zav/zav_max_0.80.inst.cfg index 88c1ff6bc3..e65fcfa069 100644 --- a/resources/variants/zav_max_0.80.inst.cfg +++ b/resources/variants/zav/zav_max_0.80.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.80mm_ZAV_Nozzle -version = 4 definition = zav_max +name = 0.80mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/zav_max_1.00.inst.cfg b/resources/variants/zav/zav_max_1.00.inst.cfg similarity index 73% rename from resources/variants/zav_max_1.00.inst.cfg rename to resources/variants/zav/zav_max_1.00.inst.cfg index f23cb6b1e8..4b75bb9fc0 100644 --- a/resources/variants/zav_max_1.00.inst.cfg +++ b/resources/variants/zav/zav_max_1.00.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 1.00mm_ZAV_Nozzle -version = 4 definition = zav_max +name = 1.00mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/zav_maxpro_0.20.inst.cfg b/resources/variants/zav/zav_maxpro_0.20.inst.cfg similarity index 73% rename from resources/variants/zav_maxpro_0.20.inst.cfg rename to resources/variants/zav/zav_maxpro_0.20.inst.cfg index 1961bcbe70..0f250052ab 100644 --- a/resources/variants/zav_maxpro_0.20.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.20.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.20mm_ZAV_Nozzle -version = 4 definition = zav_maxpro +name = 0.20mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/zav_maxpro_0.25.inst.cfg b/resources/variants/zav/zav_maxpro_0.25.inst.cfg similarity index 73% rename from resources/variants/zav_maxpro_0.25.inst.cfg rename to resources/variants/zav/zav_maxpro_0.25.inst.cfg index 523f6ca623..a9f2ec8058 100644 --- a/resources/variants/zav_maxpro_0.25.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.25.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.25mm_ZAV_Nozzle -version = 4 definition = zav_maxpro +name = 0.25mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.25 + diff --git a/resources/variants/zav_maxpro_0.30.inst.cfg b/resources/variants/zav/zav_maxpro_0.30.inst.cfg similarity index 73% rename from resources/variants/zav_maxpro_0.30.inst.cfg rename to resources/variants/zav/zav_maxpro_0.30.inst.cfg index 2939f48702..0fcd614828 100644 --- a/resources/variants/zav_maxpro_0.30.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.30.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.30mm_ZAV_Nozzle -version = 4 definition = zav_maxpro +name = 0.30mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/zav_maxpro_0.35.inst.cfg b/resources/variants/zav/zav_maxpro_0.35.inst.cfg similarity index 73% rename from resources/variants/zav_maxpro_0.35.inst.cfg rename to resources/variants/zav/zav_maxpro_0.35.inst.cfg index b7fb8f3b5f..e7d8de04df 100644 --- a/resources/variants/zav_maxpro_0.35.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.35.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.35mm_ZAV_Nozzle -version = 4 definition = zav_maxpro +name = 0.35mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.35 + diff --git a/resources/variants/zav_maxpro_0.40.inst.cfg b/resources/variants/zav/zav_maxpro_0.40.inst.cfg similarity index 73% rename from resources/variants/zav_maxpro_0.40.inst.cfg rename to resources/variants/zav/zav_maxpro_0.40.inst.cfg index 069b2898d6..b8e7e3f509 100644 --- a/resources/variants/zav_maxpro_0.40.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.40mm_ZAV_Nozzle -version = 4 definition = zav_maxpro +name = 0.40mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/zav_maxpro_0.45.inst.cfg b/resources/variants/zav/zav_maxpro_0.45.inst.cfg similarity index 73% rename from resources/variants/zav_maxpro_0.45.inst.cfg rename to resources/variants/zav/zav_maxpro_0.45.inst.cfg index c9a21963d3..6b7bd64bf3 100644 --- a/resources/variants/zav_maxpro_0.45.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.45.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.45mm_ZAV_Nozzle -version = 4 definition = zav_maxpro +name = 0.45mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.45 + diff --git a/resources/variants/zav_maxpro_0.50.inst.cfg b/resources/variants/zav/zav_maxpro_0.50.inst.cfg similarity index 73% rename from resources/variants/zav_maxpro_0.50.inst.cfg rename to resources/variants/zav/zav_maxpro_0.50.inst.cfg index fc3b0e7fb0..7db70a401a 100644 --- a/resources/variants/zav_maxpro_0.50.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.50.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.50mm_ZAV_Nozzle -version = 4 definition = zav_maxpro +name = 0.50mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/zav_maxpro_0.60.inst.cfg b/resources/variants/zav/zav_maxpro_0.60.inst.cfg similarity index 73% rename from resources/variants/zav_maxpro_0.60.inst.cfg rename to resources/variants/zav/zav_maxpro_0.60.inst.cfg index 2b53d56ed1..ba8e30d5b9 100644 --- a/resources/variants/zav_maxpro_0.60.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.60.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.60mm_ZAV_Nozzle -version = 4 definition = zav_maxpro +name = 0.60mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/zav_maxpro_0.80.inst.cfg b/resources/variants/zav/zav_maxpro_0.80.inst.cfg similarity index 73% rename from resources/variants/zav_maxpro_0.80.inst.cfg rename to resources/variants/zav/zav_maxpro_0.80.inst.cfg index 5d8ef3c6d2..e8fe9a1bf4 100644 --- a/resources/variants/zav_maxpro_0.80.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.80.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.80mm_ZAV_Nozzle -version = 4 definition = zav_maxpro +name = 0.80mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/zav_maxpro_1.00.inst.cfg b/resources/variants/zav/zav_maxpro_1.00.inst.cfg similarity index 73% rename from resources/variants/zav_maxpro_1.00.inst.cfg rename to resources/variants/zav/zav_maxpro_1.00.inst.cfg index 225ab963ce..4c65159ccf 100644 --- a/resources/variants/zav_maxpro_1.00.inst.cfg +++ b/resources/variants/zav/zav_maxpro_1.00.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 1.00mm_ZAV_Nozzle -version = 4 definition = zav_maxpro +name = 1.00mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/resources/variants/zav_mini_0.20.inst.cfg b/resources/variants/zav/zav_mini_0.20.inst.cfg similarity index 73% rename from resources/variants/zav_mini_0.20.inst.cfg rename to resources/variants/zav/zav_mini_0.20.inst.cfg index cb0cc6ac47..10a6733a1b 100644 --- a/resources/variants/zav_mini_0.20.inst.cfg +++ b/resources/variants/zav/zav_mini_0.20.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.20mm_ZAV_Nozzle -version = 4 definition = zav_mini +name = 0.20mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.2 + diff --git a/resources/variants/zav_mini_0.25.inst.cfg b/resources/variants/zav/zav_mini_0.25.inst.cfg similarity index 73% rename from resources/variants/zav_mini_0.25.inst.cfg rename to resources/variants/zav/zav_mini_0.25.inst.cfg index c3d9f494eb..5b32e6cab0 100644 --- a/resources/variants/zav_mini_0.25.inst.cfg +++ b/resources/variants/zav/zav_mini_0.25.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.25mm_ZAV_Nozzle -version = 4 definition = zav_mini +name = 0.25mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.25 + diff --git a/resources/variants/zav_mini_0.30.inst.cfg b/resources/variants/zav/zav_mini_0.30.inst.cfg similarity index 73% rename from resources/variants/zav_mini_0.30.inst.cfg rename to resources/variants/zav/zav_mini_0.30.inst.cfg index 5c0ff4d031..e3680c1c00 100644 --- a/resources/variants/zav_mini_0.30.inst.cfg +++ b/resources/variants/zav/zav_mini_0.30.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.30mm_ZAV_Nozzle -version = 4 definition = zav_mini +name = 0.30mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.3 + diff --git a/resources/variants/zav_mini_0.35.inst.cfg b/resources/variants/zav/zav_mini_0.35.inst.cfg similarity index 73% rename from resources/variants/zav_mini_0.35.inst.cfg rename to resources/variants/zav/zav_mini_0.35.inst.cfg index 6b8e5517c9..b0b2dc4cb7 100644 --- a/resources/variants/zav_mini_0.35.inst.cfg +++ b/resources/variants/zav/zav_mini_0.35.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.35mm_ZAV_Nozzle -version = 4 definition = zav_mini +name = 0.35mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.35 + diff --git a/resources/variants/zav_mini_0.40.inst.cfg b/resources/variants/zav/zav_mini_0.40.inst.cfg similarity index 73% rename from resources/variants/zav_mini_0.40.inst.cfg rename to resources/variants/zav/zav_mini_0.40.inst.cfg index e2e8af1337..8ad44c42fb 100644 --- a/resources/variants/zav_mini_0.40.inst.cfg +++ b/resources/variants/zav/zav_mini_0.40.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.40mm_ZAV_Nozzle -version = 4 definition = zav_mini +name = 0.40mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.4 + diff --git a/resources/variants/zav_mini_0.45.inst.cfg b/resources/variants/zav/zav_mini_0.45.inst.cfg similarity index 73% rename from resources/variants/zav_mini_0.45.inst.cfg rename to resources/variants/zav/zav_mini_0.45.inst.cfg index bdf446f71e..787f44e6da 100644 --- a/resources/variants/zav_mini_0.45.inst.cfg +++ b/resources/variants/zav/zav_mini_0.45.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.45mm_ZAV_Nozzle -version = 4 definition = zav_mini +name = 0.45mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.45 + diff --git a/resources/variants/zav_mini_0.50.inst.cfg b/resources/variants/zav/zav_mini_0.50.inst.cfg similarity index 73% rename from resources/variants/zav_mini_0.50.inst.cfg rename to resources/variants/zav/zav_mini_0.50.inst.cfg index a4ec5593cc..dfd4c5b36e 100644 --- a/resources/variants/zav_mini_0.50.inst.cfg +++ b/resources/variants/zav/zav_mini_0.50.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.50mm_ZAV_Nozzle -version = 4 definition = zav_mini +name = 0.50mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.5 + diff --git a/resources/variants/zav_mini_0.60.inst.cfg b/resources/variants/zav/zav_mini_0.60.inst.cfg similarity index 73% rename from resources/variants/zav_mini_0.60.inst.cfg rename to resources/variants/zav/zav_mini_0.60.inst.cfg index ca9424d776..3588219551 100644 --- a/resources/variants/zav_mini_0.60.inst.cfg +++ b/resources/variants/zav/zav_mini_0.60.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.60mm_ZAV_Nozzle -version = 4 definition = zav_mini +name = 0.60mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.6 + diff --git a/resources/variants/zav_mini_0.80.inst.cfg b/resources/variants/zav/zav_mini_0.80.inst.cfg similarity index 73% rename from resources/variants/zav_mini_0.80.inst.cfg rename to resources/variants/zav/zav_mini_0.80.inst.cfg index 90ac3e2422..1808205871 100644 --- a/resources/variants/zav_mini_0.80.inst.cfg +++ b/resources/variants/zav/zav_mini_0.80.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 0.80mm_ZAV_Nozzle -version = 4 definition = zav_mini +name = 0.80mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 0.8 + diff --git a/resources/variants/zav_mini_1.00.inst.cfg b/resources/variants/zav/zav_mini_1.00.inst.cfg similarity index 73% rename from resources/variants/zav_mini_1.00.inst.cfg rename to resources/variants/zav/zav_mini_1.00.inst.cfg index 89e7617e95..f47f8777f3 100644 --- a/resources/variants/zav_mini_1.00.inst.cfg +++ b/resources/variants/zav/zav_mini_1.00.inst.cfg @@ -1,12 +1,13 @@ [general] -name = 1.00mm_ZAV_Nozzle -version = 4 definition = zav_mini +name = 1.00mm_ZAV_Nozzle +version = 4 [metadata] -setting_version = 20 -type = variant hardware_type = nozzle +setting_version = 22 +type = variant [values] machine_nozzle_size = 1.0 + diff --git a/run_coverage.py b/run_coverage.py deleted file mode 100644 index 2fd60f9342..0000000000 --- a/run_coverage.py +++ /dev/null @@ -1,22 +0,0 @@ -import pytest -from pathlib import Path - -# Small helper script to run the coverage of main code & all plugins - -path = Path("plugins") -args = ["--cov" ,"cura" , "--cov-report", "html"] -all_paths = [] -for p in path.glob('**/*'): - if p.is_dir(): - if p.name in ["__pycache__", "tests"]: - continue - args.append("--cov") - args.append(str(p)) - all_paths.append(str(p)) - -for path in all_paths: - args.append(path) -args.append(".") -args.append("-x") -pytest.main(args) - diff --git a/run_in_docker.sh b/run_in_docker.sh deleted file mode 100644 index eb364fd887..0000000000 --- a/run_in_docker.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -Xvfb :1 -screen 0 1280x800x16 & -export DISPLAY=:1.0 -python3 cura_app.py --headless \ No newline at end of file diff --git a/run_mypy.py b/run_mypy.py deleted file mode 100644 index 4486085064..0000000000 --- a/run_mypy.py +++ /dev/null @@ -1,85 +0,0 @@ -#!/usr/bin/env python -import os -import sys -from multiprocessing.dummy import Pool -from functools import partial -from subprocess import call - -# A quick Python implementation of unix 'where' command. -def where(exe_name: str, search_path: str = os.getenv("PATH")) -> str: - if search_path is None: - search_path = "" - paths = search_path.split(os.pathsep) - result = "" - print(" -> sys.executable location: %s" % sys.executable) - sys_exec_dir = os.path.dirname(sys.executable) - root_dir = os.path.dirname(sys_exec_dir) - paths += [sys_exec_dir, - os.path.join(root_dir, "bin"), - os.path.join(root_dir, "scripts"), - ] - paths = set(paths) - - for path in sorted(paths): - print(" -> Searching %s" % path) - candidate_path = os.path.join(path, exe_name) - if os.path.exists(candidate_path): - result = candidate_path - break - return result - - -def findModules(path): - result = [] - for entry in os.scandir(path): - if entry.is_dir() and os.path.exists(os.path.join(path, entry.name, "__init__.py")): - result.append(entry.name) - return result - - -def main(): - # Find Uranium via the PYTHONPATH var - uraniumUMPath = where("UM", os.getenv("PYTHONPATH")) - if uraniumUMPath is None: - uraniumUMPath = os.path.join("..", "Uranium") - uraniumPath = os.path.dirname(uraniumUMPath) - - mypy_path_parts = [".", os.path.join(".", "plugins"), os.path.join(".", "plugins", "VersionUpgrade"), - uraniumPath, os.path.join(uraniumPath, "stubs")] - if sys.platform == "win32": - os.putenv("MYPYPATH", ";".join(mypy_path_parts)) - else: - os.putenv("MYPYPATH", ":".join(mypy_path_parts)) - - # Mypy really needs to be run via its Python script otherwise it can't find its data files. - mypy_exe_name = "mypy.exe" if sys.platform == "win32" else "mypy" - mypy_exe_dir = where(mypy_exe_name) - mypy_module = os.path.join(os.path.dirname(mypy_exe_dir), mypy_exe_name) - print("Found mypy exe path: %s" % mypy_exe_dir) - print("Found mypy module path: %s" % mypy_module) - - plugins = findModules("plugins") - plugins.sort() - - mods = ["cura"] + plugins + findModules("plugins/VersionUpgrade") - success_code = 0 - - pool = Pool(2) # Run two commands at once - - if sys.platform == "win32": - commands = ["%s -p %s --ignore-missing-imports" % (mypy_module, mod) for mod in mods] - else: - commands = ["%s %s -p %s --ignore-missing-imports" % (sys.executable, mypy_module, mod) for mod in mods] - - for i, returncode in enumerate(pool.imap(partial(call, shell=True), commands)): - if returncode != 0: - print("\nCommand {command} failed checking (code {errcode}). :(".format(command = commands[i], errcode = returncode)) - success_code = 1 - if success_code: - print("MYPY check was completed, but did not pass") - else: - print("MYPY check was completed and passed with flying colors") - return success_code - -if __name__ == "__main__": - sys.exit(main()) \ No newline at end of file diff --git a/scripts/fix_translation_memory.py b/scripts/fix_translation_memory.py new file mode 100644 index 0000000000..610fb93ac6 --- /dev/null +++ b/scripts/fix_translation_memory.py @@ -0,0 +1,85 @@ +##% Script to fix a corrupted Translation memory from existing po files + +import os +import re +import argparse +from pathlib import Path +from fuzzywuzzy import fuzz +from fuzzywuzzy import process +import xml.etree.ElementTree as ET +from xml.sax.saxutils import unescape, escape, quoteattr + + +def load_existing_xmtm(path: Path) -> ET.Element: + """Load existing xmtm file and return the root element""" + tree = ET.parse(path) + return tree.getroot() + +def load_existing_po(path: Path) -> dict: + """Load existing po file and return a dictionary of msgid and msgstr""" + content = path.read_text(encoding="utf-8") + content = "".join(content.splitlines()[16:]) + # TODO: check languages with plural forms + return dict(re.findall(r'[^#]msgid.?\"+\s?([\s|\S]+?)\"*?msgstr.?\"([\s|\S]+?)\"?#', content)) + +def sanitize(text: str) -> str: + """Sanitize the text""" + # TODO: check if Digitial Factory Ultimaker etc handled correctly + text = text.replace("\"\"", "").replace("\"#~", "") + text = text.replace("Ultimaker", "UltiMaker") + text = text.replace("UltiMaker Digital Library", "Ultimaker Digital Library") + text = text.replace("UltiMaker Digital Factory", "Ultimaker Digital Factory") + text = text.replace("UltiMaker Marketplace", "Ultimaker Marketplace") + return unescape(text) + +def main(tmx_source_path: Path, tmx_target_path: Path, i18n_path: Path): + + po_content = {} + for file in i18n_path.rglob("*.po"): + print(os.path.join(i18n_path, file)) + po_content[file.relative_to(i18n_path).parts[0].replace("_", "-")] = load_existing_po(Path(os.path.join(i18n_path, file))) + + root = load_existing_xmtm(tmx_source_path) + root_old = ET.ElementTree(root) + # ET.indent(root_old, ' ') + root_old.write("old.tmx", encoding="utf-8", xml_declaration=True) + to_be_removed = [] + for tu in root.iter("tu"): + # TODO: also add logic for other pot files + if [t.text for t in tu.findall("prop") if t.attrib["type"] == "x-smartling-file"][0] not in ("cura.pot", "fdmprinter.def.json.pot", "fdmextruder.def.json.pot", "uranium.pot"): + continue + tuvs = tu.findall("tuv") + key_source = tuvs[0].find("seg").text + key_lang = tuvs[1].attrib["{http://www.w3.org/XML/1998/namespace}lang"] + if key_lang in po_content and key_source in po_content[key_lang]: + replaced_translation = po_content[key_lang][key_source] + else: + fuzz_match_ratio = [fuzz.ratio(sanitize(k), key_source) for k in po_content[key_lang].keys()] + fuzz_max_ratio = max(fuzz_match_ratio) + fuzz_match_key = list(po_content[key_lang].keys())[fuzz_match_ratio.index(fuzz_max_ratio)] + if fuzz_max_ratio > 90: + replaced_translation = po_content[key_lang][fuzz_match_key] + tuvs[0].find("seg").text = sanitize(fuzz_match_key) + else: + print(f"[{key_lang}] {key_source} == {fuzz_match_key} [{fuzz_max_ratio}]") + continue + tuvs[1].find("seg").text = sanitize(replaced_translation) + # if the tvus[1].find("seg").text is a single ", remove the tu element as whole (since this is an untranslated string) + if tuvs[1].find("seg").text == "\"": + to_be_removed.append(tu) + + print(f"Removed {len(to_be_removed)} elements") + body = root.find("body") + for tu in to_be_removed: + body.remove(tu) + fixed_root = ET.ElementTree(root) + fixed_root.write(tmx_target_path, encoding="utf-8", xml_declaration=True) + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Fix a corrupted Translation memory from existing po files") + parser.add_argument("tmx_source_path", type=Path, help="Path to the source TMX file") + parser.add_argument("tmx_target_path", type=Path, help="Path to the target TMX file") + parser.add_argument("i18n_path", type=Path, help="Path to the i18n folder") + args = parser.parse_args() + main(args.tmx_source_path, args.tmx_target_path, args.i18n_path) diff --git a/scripts/rename_cura_1_tags.sh b/scripts/rename_cura_1_tags.sh old mode 100644 new mode 100755 index 8391ed08c2..624bd28d82 --- a/scripts/rename_cura_1_tags.sh +++ b/scripts/rename_cura_1_tags.sh @@ -11,4 +11,4 @@ do git tag -d $i; #Delete old tag. git push origin 1.$i :$i #Rename the tag remotely too. fi -done \ No newline at end of file +done diff --git a/test-in-docker.sh b/test-in-docker.sh deleted file mode 100755 index e5a1116646..0000000000 --- a/test-in-docker.sh +++ /dev/null @@ -1,5 +0,0 @@ -sudo rm -rf ./build ./Uranium -sudo docker run -it --rm \ - -v "$(pwd):/srv/cura" ultimaker/cura-build-environment \ - /srv/cura/docker/build.sh -sudo rm -rf ./build ./Uranium diff --git a/tests/API/TestAccount.py b/tests/API/TestAccount.py index 1ad73462c2..9d62646eff 100644 --- a/tests/API/TestAccount.py +++ b/tests/API/TestAccount.py @@ -1,3 +1,6 @@ +# Copyright (c) 2022 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + from unittest.mock import MagicMock, patch import pytest @@ -26,7 +29,8 @@ def test_login(): mocked_auth_service.startAuthorizationFlow.assert_called_once_with(False) # Fake a successful login - account._onLoginStateChanged(True) + with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance"): # Don't want triggers for account information to actually make HTTP requests. + account._onLoginStateChanged(True) # Attempting to log in again shouldn't change anything. account.login() @@ -59,7 +63,8 @@ def test_logout(): assert not account.isLoggedIn # Pretend the stage changed - account._onLoginStateChanged(True) + with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance"): # Don't want triggers for account information to actually make HTTP requests. + account._onLoginStateChanged(True) assert account.isLoggedIn account.logout() @@ -72,12 +77,14 @@ def test_errorLoginState(application): account._authorization_service = mocked_auth_service account.loginStateChanged = MagicMock() - account._onLoginStateChanged(True, "BLARG!") + 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._onLoginStateChanged(True) - account._onLoginStateChanged(False, "OMGZOMG!") + with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance"): + account._onLoginStateChanged(True) + account._onLoginStateChanged(False, "OMGZOMG!") account.loginStateChanged.emit.called_with(False) def test_sync_success(): @@ -86,18 +93,19 @@ def test_sync_success(): service1 = "test_service1" service2 = "test_service2" - account.setSyncState(service1, SyncState.SYNCING) - assert account.syncState == SyncState.SYNCING + with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance"): # Don't want triggers for account information to actually make HTTP requests. + account.setSyncState(service1, SyncState.SYNCING) + assert account.syncState == SyncState.SYNCING - account.setSyncState(service2, SyncState.SYNCING) - assert account.syncState == SyncState.SYNCING + account.setSyncState(service2, SyncState.SYNCING) + assert account.syncState == SyncState.SYNCING - account.setSyncState(service1, SyncState.SUCCESS) - # service2 still syncing - assert account.syncState == SyncState.SYNCING + account.setSyncState(service1, SyncState.SUCCESS) + # service2 still syncing + assert account.syncState == SyncState.SYNCING - account.setSyncState(service2, SyncState.SUCCESS) - assert account.syncState == SyncState.SUCCESS + account.setSyncState(service2, SyncState.SUCCESS) + assert account.syncState == SyncState.SUCCESS def test_sync_update_action(): @@ -107,23 +115,24 @@ def test_sync_update_action(): mockUpdateCallback = MagicMock() - account.setSyncState(service1, SyncState.SYNCING) - assert account.syncState == SyncState.SYNCING + with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance"): # Don't want triggers for account information to actually make HTTP requests. + account.setSyncState(service1, SyncState.SYNCING) + assert account.syncState == SyncState.SYNCING - account.setUpdatePackagesAction(mockUpdateCallback) - account.onUpdatePackagesClicked() - mockUpdateCallback.assert_called_once_with() - account.setSyncState(service1, SyncState.SUCCESS) + account.setUpdatePackagesAction(mockUpdateCallback) + account.onUpdatePackagesClicked() + mockUpdateCallback.assert_called_once_with() + account.setSyncState(service1, SyncState.SUCCESS) - account.sync() # starting a new sync resets the update action to None + account.sync() # starting a new sync resets the update action to None - account.setSyncState(service1, SyncState.SYNCING) - assert account.syncState == SyncState.SYNCING + account.setSyncState(service1, SyncState.SYNCING) + assert account.syncState == SyncState.SYNCING - account.onUpdatePackagesClicked() # Should not be connected to an action anymore - mockUpdateCallback.assert_called_once_with() # No additional calls - assert account.updatePackagesEnabled is False - account.setSyncState(service1, SyncState.SUCCESS) + account.onUpdatePackagesClicked() # Should not be connected to an action anymore + mockUpdateCallback.assert_called_once_with() # No additional calls + assert account.updatePackagesEnabled is False + account.setSyncState(service1, SyncState.SUCCESS) diff --git a/tests/PrinterOutput/TestPrinterOutputDevice.py b/tests/PrinterOutput/TestPrinterOutputDevice.py index 7913e156b0..c3d6d32549 100644 --- a/tests/PrinterOutput/TestPrinterOutputDevice.py +++ b/tests/PrinterOutput/TestPrinterOutputDevice.py @@ -71,7 +71,7 @@ def test_uniqueConfigurations(printer_output_device): loaded_right_extruder = ExtruderConfigurationModel(1) loaded_right_extruder.setMaterial(loaded_material) printer.printerConfiguration.setExtruderConfigurations([loaded_left_extruder, loaded_right_extruder]) - assert printer_output_device.uniqueConfigurations == [configuration, printer.printerConfiguration] + assert set(printer_output_device.uniqueConfigurations) == set([configuration, printer.printerConfiguration]) def test_uniqueConfigurations_empty_is_filtered_out(printer_output_device): diff --git a/tests/Settings/TestProfiles.py b/tests/Settings/TestProfiles.py index 5761f712c4..2da455d16d 100644 --- a/tests/Settings/TestProfiles.py +++ b/tests/Settings/TestProfiles.py @@ -106,13 +106,11 @@ def test_validateQualityProfiles(file_name): has_unknown_settings = not quality_setting_keys.issubset(all_setting_ids) if has_unknown_settings: - print("The following setting(s) %s are defined in the quality %s, but not in fdmprinter.def.json" % ([key for key in quality_setting_keys if key not in all_setting_ids], file_name)) - assert False + assert False, "The following setting(s) %s are defined in the quality %s, but not in fdmprinter.def.json" % ([key for key in quality_setting_keys if key not in all_setting_ids], file_name) except Exception as e: # File can't be read, header sections missing, whatever the case, this shouldn't happen! - print("Got an Exception while reading the file [%s]: %s" % (file_name, e)) - assert False + assert False, f"Got an Exception while reading the file [{file_name}]: {e}" @pytest.mark.parametrize("file_name", intent_filepaths) @@ -163,8 +161,7 @@ def test_validateVariantProfiles(file_name): assert False, "The following setting(s) %s are defined in the variant %s, but not in fdmprinter.def.json" % ([key for key in variant_setting_keys if key not in all_setting_ids], file_name) except Exception as e: # File can't be read, header sections missing, whatever the case, this shouldn't happen! - print("Got an Exception while reading the file [%s]: %s" % (file_name, e)) - assert False + assert False, "Got an exception while reading the file {file_name}: {err}".format(file_name = file_name, err = str(e)) @pytest.mark.parametrize("file_name", quality_filepaths + variant_filepaths + intent_filepaths) @@ -182,5 +179,4 @@ def test_versionUpToDate(file_name): assert int(parser["metadata"]["setting_version"]) == CuraApplication.SettingVersion, "The version of this profile is not up to date!" except Exception as e: # File can't be read, header sections missing, whatever the case, this shouldn't happen! - print("Got an exception while reading the file {file_name}: {err}".format(file_name = file_name, err = str(e))) - assert False \ No newline at end of file + assert False, "Got an exception while reading the file {file_name}: {err}".format(file_name = file_name, err = str(e)) \ No newline at end of file diff --git a/tests/TestBuildVolume.py b/tests/TestBuildVolume.py index 9a1c29da6c..5012784bdf 100644 --- a/tests/TestBuildVolume.py +++ b/tests/TestBuildVolume.py @@ -86,12 +86,12 @@ class TestCalculateBedAdhesionSize: ({"adhesion_type": {"value": "skirt"}}, 0), ({"adhesion_type": {"value": "raft"}}, 0), ({"adhesion_type": {"value": "none"}}, 0), - ({"adhesion_type": {"value": "skirt"}, "skirt_line_count": {"value": 2}, "initial_layer_line_width_factor": {"value": 1}, "skirt_brim_line_width": {"value": 2}}, 0.02), + ({"adhesion_type": {"value": "skirt"}, "skirt_line_count": {"value": 2}, "initial_layer_line_width_factor": {"value": 1}, "skirt_brim_line_width": {"value": 2}}, 0), # Even though it's marked as skirt, it should behave as a brim as the prime tower has a brim (skirt line count is still at 0!) - ({"adhesion_type": {"value": "skirt"}, "prime_tower_brim_enable": {"value": True}, "skirt_brim_line_width": {"value": 2}, "initial_layer_line_width_factor": {"value": 3}}, -0.06), + ({"adhesion_type": {"value": "skirt"}, "prime_tower_brim_enable": {"value": True}, "skirt_brim_line_width": {"value": 2}, "initial_layer_line_width_factor": {"value": 3}}, 0), ({"brim_line_count": {"value": 1}, "skirt_brim_line_width": {"value": 2}, "initial_layer_line_width_factor": {"value": 3}}, 0), - ({"brim_line_count": {"value": 2}, "skirt_brim_line_width": {"value": 2}, "initial_layer_line_width_factor": {"value": 3}}, 0.06), - ({"brim_line_count": {"value": 9000000}, "skirt_brim_line_width": {"value": 90000}, "initial_layer_line_width_factor": {"value": 9000}}, 100), # Clamped at half the max size of buildplate + ({"brim_line_count": {"value": 2}, "skirt_brim_line_width": {"value": 2}, "initial_layer_line_width_factor": {"value": 3}}, 0), + ({"brim_line_count": {"value": 9000000}, "skirt_brim_line_width": {"value": 90000}, "initial_layer_line_width_factor": {"value": 9000}}, 0), # Clamped at half the max size of buildplate ]) def test_singleExtruder(self, build_volume: BuildVolume, setting_dict, result): self.createAndSetGlobalStack(build_volume) @@ -106,14 +106,6 @@ class TestCalculateBedAdhesionSize: with patch.dict(self.setting_property_dict, patched_dictionary): assert build_volume._calculateBedAdhesionSize([]) == result - def test_unknownBedAdhesion(self, build_volume: BuildVolume): - self.createAndSetGlobalStack(build_volume) - patched_dictionary = self.setting_property_dict.copy() - patched_dictionary.update({"adhesion_type": {"value": "OMGZOMGBBQ"}}) - with patch.dict(self.setting_property_dict, patched_dictionary): - with pytest.raises(Exception): - build_volume._calculateBedAdhesionSize([]) - class TestComputeDisallowedAreasStatic: setting_property_dict = {"machine_disallowed_areas": {"value": [[[-200, 112.5], [ -82, 112.5], [ -84, 102.5], [-115, 102.5]]]}, "machine_width": {"value": 200}, @@ -146,7 +138,7 @@ class TestComputeDisallowedAreasStatic: build_volume._global_container_stack = mocked_stack with patch("cura.Settings.ExtruderManager.ExtruderManager.getInstance"): result = build_volume._computeDisallowedAreasStatic(0, [mocked_extruder]) - assert result == {"zomg": [Polygon([[-84.0, 102.5], [-115.0, 102.5], [-200.0, 112.5], [-82.0, 112.5]])]} + assert result == {"zomg": [Polygon([[-84.0,102.5], [-115.0,102.5], [-200.0,112.5], [-82.0,112.5]]), Polygon([[-100.0,-100.0], [-100.0,100.0], [-99.9,99.9], [-99.9,-99.9]]), Polygon([[100.0,100.0], [100.0,-100.0], [99.9,-99.9], [99.9,99.9]]), Polygon([[-100.0,100.0], [100.0,100.0], [99.9,99.9], [-99.9,99.9]]), Polygon([[100.0,-100.0], [-100.0,-100.0], [-99.9,-99.9], [99.9,-99.9]])]} def test_computeDisalowedAreasMutliExtruder(self, build_volume): mocked_stack = MagicMock() @@ -160,7 +152,12 @@ class TestComputeDisallowedAreasStatic: build_volume._global_container_stack = mocked_stack with patch("cura.Settings.ExtruderManager.ExtruderManager.getInstance", MagicMock(return_value = extruder_manager)): result = build_volume._computeDisallowedAreasStatic(0, [mocked_extruder]) - assert result == {"zomg": [Polygon([[-84.0, 102.5], [-115.0, 102.5], [-200.0, 112.5], [-82.0, 112.5]])]} + assert result == {"zomg": [Polygon([[-84.0, 102.5], [-115.0, 102.5], [-200.0, 112.5], [-82.0, 112.5]]), + Polygon([[-100.0, -100.0], [-100.0, 100.0], [-99.9, 99.9], [-99.9, -99.9]]), + Polygon([[100.0, 100.0], [100.0, -100.0], [99.9, -99.9], [99.9, 99.9]]), + Polygon([[-100.0, 100.0], [100.0, 100.0], [99.9, 99.9], [-99.9, 99.9]]), + Polygon([[100.0, -100.0], [-100.0, -100.0], [-99.9, -99.9], [99.9, -99.9]])]} + class TestUpdateRaftThickness: setting_property_dict = {"raft_base_thickness": {"value": 1}, diff --git a/tests/conftest.py b/tests/conftest.py index efe9141e29..377a525ba7 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -6,6 +6,7 @@ from unittest.mock import MagicMock, patch import pytest +from UM.Application import Application from UM.Qt.QtApplication import QtApplication # QtApplication import is required, even though it isn't used. from cura.CuraApplication import CuraApplication @@ -22,6 +23,12 @@ def application() -> CuraApplication: app = MagicMock() return app +@pytest.fixture() +def um_application() -> Application: + app = MagicMock() + app.getInstance = MagicMock(return_value=app) + return app + # Returns a MachineActionManager instance. @pytest.fixture() @@ -43,14 +50,15 @@ def container_registry(application, global_stack) -> ContainerRegistry: @pytest.fixture() -def extruder_manager(application, container_registry) -> ExtruderManager: +def extruder_manager(application, um_application, container_registry) -> ExtruderManager: if ExtruderManager.getInstance() is not None: # Reset the data ExtruderManager._ExtruderManager__instance = None with patch("cura.CuraApplication.CuraApplication.getInstance", MagicMock(return_value=application)): with patch("UM.Settings.ContainerRegistry.ContainerRegistry.getInstance", MagicMock(return_value=container_registry)): - manager = ExtruderManager() + with patch("UM.Application.Application.getInstance", um_application): + manager = ExtruderManager() return manager